No description
Find a file
hamish 2700b027ee Fix overlapping events covered by full-cell backing box / li (QA finding)
Side-by-side column packing was being defeated two ways:
1. The event <li>'s `dark:before` painted an opaque bg-background box across the
   FULL day-column at inset-1 — covering the adjacent column's card in dark mode.
2. Each <li> is a full-width grid item, so the topmost overlapping <li>
   intercepted pointer events over its empty half, blocking clicks on the
   neighbour card.

Fix (week-view + multi-day-view):
- Drop the full-cell `dark:before` backing; move the opaque dark backing to the
  column-positioned wrapper (`dark:bg-background`), so it only covers its own card.
- Make the <li> `pointer-events-none` and the wrapper `pointer-events-auto`, so an
  event only captures pointer events over its actual card, not the whole column.

e2e: week-view-overlap now also clicks BOTH overlapping events and asserts each
selects (neither covered/intercepted). svelte-check 0 errors; 8/8 e2e pass.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-03 16:34:38 +10:00
.vscode Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
e2e Fix overlapping events covered by full-cell backing box / li (QA finding) 2026-06-03 16:34:38 +10:00
src Fix overlapping events covered by full-cell backing box / li (QA finding) 2026-06-03 16:34:38 +10:00
static Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
.gitignore Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
.npmrc Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
.prettierignore Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
.prettierrc Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
eslint.config.js Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
package.json Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
playwright.config.ts Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
pnpm-lock.yaml Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
pnpm-workspace.yaml Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
README.md Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
svelte.config.js Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
tsconfig.json Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00
vite.config.ts Port Saturn (React/Next.js) to Svelte 5 + SvelteKit (svaturn) 2026-06-03 14:16:52 +10:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
npx sv@0.15.3 create --template minimal --types ts --no-install .

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.