@nomideusz/svelte-calendar 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/README.md +568 -517
  2. package/dist/adapters/memory.d.ts +7 -2
  3. package/dist/adapters/memory.js +9 -6
  4. package/dist/adapters/recurring.d.ts +7 -2
  5. package/dist/adapters/recurring.js +9 -6
  6. package/dist/calendar/Calendar.svelte +21 -1
  7. package/dist/calendar/Calendar.svelte.d.ts +1 -0
  8. package/dist/calendar/Toolbar.svelte +5 -2
  9. package/dist/calendar/Toolbar.svelte.d.ts +2 -0
  10. package/dist/core/index.d.ts +1 -0
  11. package/dist/core/index.js +2 -0
  12. package/dist/core/palette.d.ts +23 -0
  13. package/dist/core/palette.js +109 -0
  14. package/dist/engine/view-state.svelte.d.ts +1 -0
  15. package/dist/engine/view-state.svelte.js +3 -0
  16. package/dist/index.d.ts +1 -1
  17. package/dist/index.js +1 -1
  18. package/dist/views/agenda/Agenda.svelte +117 -5
  19. package/dist/views/agenda/Agenda.svelte.d.ts +1 -0
  20. package/dist/views/day/DayGrid.svelte +39 -3
  21. package/dist/views/day/DayGrid.svelte.d.ts +2 -0
  22. package/dist/views/day/DayTimeline.svelte +31 -3
  23. package/dist/views/day/DayTimeline.svelte.d.ts +5 -1
  24. package/dist/views/schedule/WeekSchedule.svelte +4 -0
  25. package/dist/views/schedule/WeekSchedule.svelte.d.ts +2 -0
  26. package/dist/views/settings/Settings.svelte +451 -173
  27. package/dist/views/settings/Settings.svelte.d.ts +22 -6
  28. package/dist/views/week/WeekGrid.svelte +44 -11
  29. package/dist/views/week/WeekGrid.svelte.d.ts +1 -0
  30. package/dist/views/week/WeekHeatmap.svelte +8 -7
  31. package/dist/views/week/WeekHeatmap.svelte.d.ts +1 -0
  32. package/dist/widget/CalendarWidget.svelte +0 -2
  33. package/dist/widget/widget.d.ts +1 -7
  34. package/dist/widget/widget.js +44 -3
  35. package/package.json +65 -67
  36. package/widget/widget.js +260 -260
package/README.md CHANGED
@@ -1,517 +1,568 @@
1
- # @nomideusz/svelte-calendar
2
-
3
- A themeable, pluggable **Svelte 5** calendar component library with **Day** and **Week** views — ready for yoga studios, tour bookings, concerts, language schools, and more.
4
-
5
- ## ViewsConcept-Paired
6
-
7
- Views are organised into **concepts** that span both Day and Week granularity.
8
- Switching between Day and Week preserves the active concept.
9
-
10
- | Concept | Day View | Week View | Description |
11
- |---------|----------|-----------|-------------|
12
- | **Grid** | DayGrid | WeekGrid | The primary planner — time blocks on a scrollable grid. |
13
- | **Timeline** | DayTimeline | — | Horizontal day timeline. Day-only. |
14
- | **Agenda** | Agenda `mode="day"` | Agenda `mode="week"` | List / feed — Done, Now, Next (day) or grouped-by-day scroll (week). |
15
- | **Heatmap** | — | WeekHeatmap | Density view — 24 cells per day showing busy/free intensity. Week-only. |
16
- | **Schedule** | | WeekSchedule | Zero-config weekly schedule display. Single import convenience wrapper. |
17
-
18
- ## Installation
19
-
20
- ```bash
21
- pnpm add @nomideusz/svelte-calendar
22
- ```
23
-
24
- > **Peer dependency:** Svelte 5 (`^5.0.0`)
25
-
26
- ## Quick Start
27
-
28
- ```svelte
29
- <script lang="ts">
30
- import {
31
- Calendar,
32
- DayGrid,
33
- DayTimeline,
34
- Agenda,
35
- WeekGrid,
36
- WeekHeatmap,
37
- createMemoryAdapter,
38
- midnight,
39
- } from '@nomideusz/svelte-calendar';
40
- import type { CalendarView, TimelineEvent } from '@nomideusz/svelte-calendar';
41
-
42
- const events: TimelineEvent[] = [
43
- {
44
- id: '1', title: 'Yoga Flow',
45
- start: new Date('2025-03-01T09:00'), end: new Date('2025-03-01T10:00'),
46
- color: '#818cf8', subtitle: 'With Anna', tags: ['Beginner'],
47
- },
48
- {
49
- id: '2', title: 'Meditation',
50
- start: new Date('2025-03-01T12:00'), end: new Date('2025-03-01T12:45'),
51
- color: '#34d399',
52
- },
53
- ];
54
-
55
- // Adapters provide the data layer (in-memory, REST, etc.)
56
- const adapter = createMemoryAdapter(events);
57
-
58
- // Concepts are paired by label — switching Day↔Week preserves the concept
59
- const views: CalendarView[] = [
60
- { id: 'day-grid', label: 'Grid', granularity: 'day', component: DayGrid },
61
- { id: 'week-grid', label: 'Grid', granularity: 'week', component: WeekGrid },
62
- { id: 'day-agenda', label: 'Agenda', granularity: 'day', component: Agenda, props: { mode: 'day' } },
63
- { id: 'week-agenda', label: 'Agenda', granularity: 'week', component: Agenda, props: { mode: 'week' } },
64
- { id: 'week-heatmap', label: 'Heatmap', granularity: 'week', component: WeekHeatmap },
65
- ];
66
- </script>
67
-
68
- <Calendar
69
- {views}
70
- {adapter}
71
- defaultView="week-grid"
72
- theme={midnight}
73
- height={600}
74
- oneventclick={(ev) => console.log('clicked', ev.id)}
75
- oneventcreate={(range) => console.log('create', range.start, range.end)}
76
- />
77
- ```
78
-
79
- ## Recurring Weekly Schedules
80
-
81
- Define a weekly schedule once — the adapter auto-projects it onto whatever week the calendar is viewing. No manual date math needed.
82
-
83
- ```svelte
84
- <script lang="ts">
85
- import { Calendar, WeekGrid, createRecurringAdapter, neutral } from '@nomideusz/svelte-calendar';
86
- import type { CalendarView, RecurringEvent } from '@nomideusz/svelte-calendar';
87
-
88
- const schedule: RecurringEvent[] = [
89
- { id: '1', title: 'Morning Yoga', dayOfWeek: 1, startTime: '07:00', endTime: '08:30', color: '#818cf8' },
90
- { id: '2', title: 'Pilates', dayOfWeek: 3, startTime: '18:00', endTime: '19:00', color: '#f472b6' },
91
- { id: '3', title: 'Sound Bath', dayOfWeek: 5, startTime: '19:00', endTime: '20:00', color: '#2dd4bf', subtitle: 'Crystal bowls', tags: ['Relaxing'] },
92
- ];
93
-
94
- const adapter = createRecurringAdapter(schedule);
95
- const views: CalendarView[] = [
96
- { id: 'week-grid', label: 'Grid', granularity: 'week', component: WeekGrid },
97
- ];
98
- </script>
99
-
100
- <Calendar {views} {adapter} defaultView="week-grid" theme={neutral} readOnly />
101
- ```
102
-
103
- ### RecurringEvent
104
-
105
- | Field | Type | Description |
106
- |-------|------|-------------|
107
- | `id` | `string` | Unique identifier |
108
- | `title` | `string` | Event title |
109
- | `dayOfWeek` | `1–7` | ISO weekday (1 = Monday … 7 = Sunday) |
110
- | `startTime` | `string` | Start time in `"HH:MM"` format |
111
- | `endTime` | `string` | End time in `"HH:MM"` format |
112
- | `color` | `string?` | Accent color |
113
- | `subtitle` | `string?` | Subtitle (rendered below title) |
114
- | `tags` | `string[]?` | Tag pills |
115
- | `category` | `string?` | Category for grouping / colorMap |
116
- | `data` | `Record?` | Arbitrary payload |
117
-
118
- ## WeekSchedule Zero-Config Convenience
119
-
120
- One import, one component. Pre-wires adapter, views, and toolbar internally:
121
-
122
- ```svelte
123
- <script>
124
- import { WeekSchedule } from '@nomideusz/svelte-calendar';
125
- import { neutral } from '@nomideusz/svelte-calendar';
126
-
127
- const schedule = [
128
- { id: '1', title: 'Yoga', dayOfWeek: 1, startTime: '07:00', endTime: '08:30', color: '#818cf8' },
129
- { id: '2', title: 'Pilates', dayOfWeek: 3, startTime: '18:00', endTime: '19:00', color: '#f472b6' },
130
- ];
131
- </script>
132
-
133
- <WeekSchedule {schedule} theme={neutral} locale="pl-PL" height={560} readOnly />
134
- ```
135
-
136
- Works with concrete events too:
137
-
138
- ```svelte
139
- <WeekSchedule events={myEvents} theme={neutral} height={560} />
140
- ```
141
-
142
- ## Read-Only Mode
143
-
144
- Pass `readOnly` to disable drag, resize, and click-to-create interactions:
145
-
146
- ```svelte
147
- <Calendar {views} {adapter} readOnly />
148
- ```
149
-
150
- In read-only mode:
151
- - Drag handles and resize affordances are disabled
152
- - Empty-slot creation clicks are suppressed
153
- - `oneventcreate` and `oneventmove` callbacks are not fired
154
- - `oneventclick` still works for navigation/display purposes
155
-
156
- ## Visible Hours
157
-
158
- Crop the grid to relevant hours — no more scrolling past empty early morning / late night rows:
159
-
160
- ```svelte
161
- <!-- Only show 6 AM to 9 PM -->
162
- <Calendar {views} {adapter} visibleHours={[6, 21]} />
163
-
164
- <!-- Works on WeekSchedule too -->
165
- <WeekSchedule {schedule} visibleHours={[7, 20]} />
166
- ```
167
-
168
- The `visibleHours` prop is a `[startHour, endHour)` tuple. It applies to the WeekHeatmap grid cells and is passed through to all views.
169
-
170
- ## Subtitle & Tags on Events
171
-
172
- `TimelineEvent` now supports `subtitle` and `tags` fields rendered automatically by `EventBlock`:
173
-
174
- ```ts
175
- const events: TimelineEvent[] = [
176
- {
177
- id: '1',
178
- title: 'Power Vinyasa',
179
- start: new Date('2025-03-01T10:00'),
180
- end: new Date('2025-03-01T11:15'),
181
- color: '#f472b6',
182
- subtitle: 'With Marco', // shown below the title
183
- tags: ['Advanced', 'Hot'], // rendered as small color pills
184
- },
185
- ];
186
- ```
187
-
188
- - **subtitle** — displayed as secondary text below the title in card and row variants
189
- - **tags** — rendered as small accent-colored pills
190
-
191
- ## Color Map & Auto-Coloring
192
-
193
- Instead of setting `color` on every event, let the adapter assign colors by category or title:
194
-
195
- ```ts
196
- // Explicit mapping
197
- const adapter = createMemoryAdapter(events, {
198
- colorMap: {
199
- yoga: '#818cf8',
200
- wellness: '#34d399',
201
- },
202
- });
203
-
204
- // Or auto-assign from a built-in 15-color palette
205
- const adapter = createMemoryAdapter(events, { autoColor: true });
206
- ```
207
-
208
- Both `createMemoryAdapter` and `createRecurringAdapter` accept `colorMap` and `autoColor` options. Events with an explicit `color` field always take priority.
209
-
210
- ## Settings Panel
211
-
212
- The `Settings` component provides a theme picker and dynamic fields for controlling view parameters:
213
-
214
- ```svelte
215
- <script lang="ts">
216
- import { Settings } from '@nomideusz/svelte-calendar';
217
- import type { SettingsField, PresetName } from '@nomideusz/svelte-calendar';
218
-
219
- let theme: PresetName = $state('midnight');
220
- let values = $state({ hourHeight: 60, elastic: true });
221
-
222
- const fields: SettingsField[] = [
223
- { key: 'hourHeight', label: 'Hour Height', type: 'range', min: 40, max: 120, step: 5 },
224
- { key: 'elastic', label: 'Elastic Compression', type: 'toggle' },
225
- ];
226
- </script>
227
-
228
- <Settings {fields} bind:values bind:theme />
229
- ```
230
-
231
- ## Themes
232
-
233
- Five built-in presets each view reads from the same `--dt-*` CSS custom property contract:
234
-
235
- | Preset | Tone |
236
- |--------|------|
237
- | `midnight` | Dark (deep navy/slate, red accent) |
238
- | `parchment` | Warm light (cream, burnt sienna accents) |
239
- | `indigo` | Cool light (white surface, indigo accents) |
240
- | `neutral` | **Site-friendly** — white/gray, blue accent, `inherit` fonts so it matches your site |
241
- | `bare` | **Unstyled skeleton** — all `transparent`/`inherit`/`currentColor`, absorbs host styles entirely |
242
-
243
- ```svelte
244
- <script>
245
- import { midnight, parchment, indigo, neutral, bare, presets } from '@nomideusz/svelte-calendar';
246
- </script>
247
-
248
- <!-- Blends into your site with no extra work -->
249
- <Calendar {views} {adapter} theme={neutral} />
250
-
251
- <!-- Or use the presets map -->
252
- <WeekGrid style={presets['parchment']} events={events} />
253
- ```
254
-
255
- ### Matching Your Site
256
-
257
- The `neutral` preset inherits font families from your page (`--dt-sans: inherit; --dt-serif: inherit`) and uses a standard blue accent. For most sites this is all you need.
258
-
259
- If you need full control, start from `bare` — it sets everything to `transparent`/`inherit`/`currentColor` — then override only the tokens you care about:
260
-
261
- ```ts
262
- import { bare } from '@nomideusz/svelte-calendar';
263
-
264
- const myTheme = `
265
- ${bare}
266
- --dt-accent: #e11d48;
267
- --dt-bg: var(--my-app-surface);
268
- --dt-text: var(--my-app-text);
269
- --dt-border: var(--my-app-border);
270
- `;
271
- ```
272
-
273
- ### Custom Themes
274
-
275
- Pass any string of `--dt-*` custom property declarations:
276
-
277
- ```ts
278
- const custom = `
279
- --dt-bg: #0a0a0a;
280
- --dt-surface: #111;
281
- --dt-border: rgba(255,255,255,0.06);
282
- --dt-text: #e0e0e0;
283
- --dt-accent: #10b981;
284
- /* ...see presets.ts for the full token list */
285
- `;
286
- ```
287
-
288
- <details>
289
- <summary><strong>Full token reference</strong></summary>
290
-
291
- | Token | Purpose |
292
- |-------|----------|
293
- | `--dt-bg` | Main background |
294
- | `--dt-surface` | Elevated surface (cards, popovers) |
295
- | `--dt-border` | Default border |
296
- | `--dt-border-day` | Day-column dividers |
297
- | `--dt-text` | Primary text |
298
- | `--dt-text-2` | Secondary text |
299
- | `--dt-text-3` | Tertiary / muted text |
300
- | `--dt-accent` | Accent color (buttons, now-indicator, highlights) |
301
- | `--dt-accent-dim` | Accent at ~12% opacity |
302
- | `--dt-glow` | Accent glow / focus ring |
303
- | `--dt-today-bg` | Today column highlight |
304
- | `--dt-btn-text` | Button label color |
305
- | `--dt-scrollbar` | Scrollbar thumb |
306
- | `--dt-success` | Success / completed indicator |
307
- | `--dt-serif` | Serif font stack |
308
- | `--dt-sans` | Sans-serif font stack |
309
- | `--dt-mono` | Monospace font stack |
310
- | `--dt-hm-empty` | Heatmap: empty cell |
311
- | `--dt-hm-low` | Heatmap: low density |
312
- | `--dt-hm-mid` | Heatmap: medium density |
313
- | `--dt-hm-high` | Heatmap: high density |
314
- | `--dt-hm-max` | Heatmap: maximum density |
315
-
316
- </details>
317
-
318
- ## Accessibility
319
-
320
- All interactive elements include proper ARIA attributes and keyboard support:
321
-
322
- - **EventBlock** — `role="button"`, `aria-label` (title + time + duration + status), `tabindex="0"`, Enter/Space activates
323
- - **EmptySlot** — `role="button"`, `aria-label` (time range + duration), keyboard-accessible for event creation
324
- - **NowIndicator** — `role="status"`, `aria-live="polite"` announces the current time
325
- - **Calendar** — `role="region"`, `aria-label="Calendar"`
326
- - **Toolbar** — `aria-label="Calendar navigation"`
327
- - Focus-visible outlines on all interactive primitives
328
-
329
- ## Locale & i18n
330
-
331
- The calendar uses `Intl.DateTimeFormat` for all date/time formatting. Pass a BCP 47 locale tag to the `Calendar` shell:
332
-
333
- ```svelte
334
- <Calendar {views} {adapter} locale="pl-PL" dir="rtl" />
335
- ```
336
-
337
- | Prop | Type | Default | Description |
338
- |------|------|---------|-------------|
339
- | `locale` | `string` | `'en-US'` | BCP 47 tag — controls weekday names, month names, date formats |
340
- | `dir` | `'ltr' \| 'rtl' \| 'auto'` | — | Text direction (for Arabic, Hebrew, etc.) |
341
-
342
- The `locale` prop automatically switches between 12-hour and 24-hour time display based on the locale's hour cycle.
343
-
344
- ### Programmatic locale control
345
-
346
- ```ts
347
- import { setDefaultLocale, getDefaultLocale, is24HourLocale } from '@nomideusz/svelte-calendar';
348
-
349
- setDefaultLocale('de-DE'); // All formatting functions now use German
350
- is24HourLocale('en-US'); // false (12h)
351
- is24HourLocale('de-DE'); // true (24h)
352
- ```
353
-
354
- All formatting functions (`weekdayShort`, `monthLong`, `fmtDay`, `fmtWeekRange`, etc.) accept an optional `locale` parameter to override per-call.
355
-
356
- ## Timezones
357
-
358
- Timezone utilities are included via `date-fns-tz`:
359
-
360
- ```ts
361
- import {
362
- toZonedTime,
363
- fromZonedTime,
364
- nowInZone,
365
- formatInTimeZone,
366
- } from '@nomideusz/svelte-calendar';
367
-
368
- // Display a UTC date in a specific timezone
369
- const nyTime = toZonedTime(utcDate, 'America/New_York');
370
-
371
- // Convert back to UTC for storage
372
- const utc = fromZonedTime(displayDate, 'America/New_York');
373
-
374
- // Current time in Tokyo
375
- const tokyoNow = nowInZone('Asia/Tokyo');
376
-
377
- // Locale-aware formatting in a timezone
378
- formatInTimeZone(date, 'Europe/Warsaw', { hour: 'numeric', minute: '2-digit' }, 'pl-PL');
379
- // "14:30"
380
- ```
381
-
382
- The engine's `createViewState` also accepts a `timezone` option:
383
-
384
- ```ts
385
- const viewState = createViewState({
386
- defaultView: 'week-grid',
387
- timezone: 'America/New_York', // stored on viewState.timezone
388
- });
389
- ```
390
-
391
- ## Architecture
392
-
393
- ```
394
- src/lib/
395
- ├── core/ # Clock, time utils, locale, types
396
- ├── engine/ # Reactive state: event-store, view-state, selection, drag
397
- ├── adapters/ # Data layer: memory, recurring, REST adapters
398
- ├── primitives/ # Low-level UI atoms: NowIndicator, EventBlock, TimeGutter...
399
- ├── calendar/ # Calendar shell, Toolbar
400
- ├── views/ # View components (day/, week/, agenda/, schedule/, settings/)
401
- └── theme/ # Preset themes and token definitions
402
- ```
403
-
404
- ## Engine
405
-
406
- ```ts
407
- import {
408
- createEventStore,
409
- createViewState,
410
- createSelection,
411
- createDragState,
412
- } from '@nomideusz/svelte-calendar';
413
- ```
414
-
415
- - **`createEventStore(adapter)`** — reactive event list with fetch/add/update/remove
416
- - **`createViewState(options)`** current view, date range, navigation (prev/next/today)
417
- - **`createSelection()`** selected event tracking
418
- - **`createDragState()`** — drag-to-create and drag-to-move state machine
419
-
420
- ## Adapters
421
-
422
- | Adapter | Use |
423
- |---------|-----|
424
- | `createMemoryAdapter(events, options?)` | In-memory — great for demos and prototyping. Supports `colorMap` and `autoColor`. |
425
- | `createRecurringAdapter(schedule, options?)` | Weekly recurring schedules — auto-projects onto viewed weeks. Read-only. |
426
- | `createRestAdapter(options)` | Fetch from a REST API with configurable endpoints. |
427
-
428
- ## Standalone Views
429
-
430
- Each view works independently without the Calendar shell:
431
-
432
- ```svelte
433
- <!-- Horizontal day timeline -->
434
- <DayTimeline style={midnight} events={events} />
435
-
436
- <!-- Vertical day grid with elastic night compression -->
437
- <DayGrid style={midnight} events={events} height={600} elastic />
438
-
439
- <!-- Agenda in day mode -->
440
- <Agenda mode="day" events={events} height={520} />
441
-
442
- <!-- Week density heatmap -->
443
- <WeekHeatmap style={parchment} events={events} height={320} />
444
- ```
445
-
446
- ## Embeddable Widget
447
-
448
- Drop a single `<script>` tag into **any** HTML page — no Svelte, no build tools, no npm needed.
449
-
450
- ### From CDN
451
-
452
- ```html
453
- <script src="https://cdn.jsdelivr.net/npm/@nomideusz/svelte-calendar/widget/widget.js"></script>
454
-
455
- <day-calendar
456
- api="https://myschool.com/api/events"
457
- theme="neutral"
458
- height="600"
459
- ></day-calendar>
460
- ```
461
-
462
- That's it. Two lines.
463
-
464
- ### With inline events (no API)
465
-
466
- ```html
467
- <script src="https://cdn.jsdelivr.net/npm/@nomideusz/svelte-calendar/widget/widget.js"></script>
468
-
469
- <day-calendar
470
- theme="midnight"
471
- height="500"
472
- events='[
473
- { "id": "1", "title": "Yoga Flow", "start": "2025-03-01T09:00", "end": "2025-03-01T10:00", "color": "#818cf8" },
474
- { "id": "2", "title": "Meditation", "start": "2025-03-01T12:00", "end": "2025-03-01T12:45", "color": "#34d399" }
475
- ]'
476
- ></day-calendar>
477
- ```
478
-
479
- ### Widget attributes
480
-
481
- | Attribute | Default | Description |
482
- |-----------|---------|-------------|
483
- | `api` | — | REST API base URL — fetches from `{api}/events?start=...&end=...` |
484
- | `events` | | JSON string of events (alternative to `api`) |
485
- | `theme` | `neutral` | Preset: `midnight`, `parchment`, `indigo`, `neutral`, `bare` |
486
- | `view` | `week-grid` | Default view: `day-grid`, `week-grid`, `day-timeline`, `day-agenda`, `week-agenda`, `week-heatmap` |
487
- | `height` | `600` | Height in pixels |
488
- | `locale` | | BCP 47 locale (`en-US`, `pl-PL`, `ar-SA`, etc.) |
489
- | `dir` | — | Text direction: `ltr`, `rtl`, `auto` |
490
- | `mondaystart` | `true` | Start week on Monday (`true`/`false`) |
491
- | `headers` | — | JSON string of HTTP headers for the REST adapter |
492
-
493
- ### REST API contract
494
-
495
- When using the `api` attribute, the widget expects your endpoint to accept:
496
-
497
- ```
498
- GET {api}/events?start={ISO}&end={ISO}
499
- ```
500
-
501
- And return either:
502
- - `[{ id, title, start, end, color? }, ...]`
503
- - `{ events: [{ id, title, start, end, color? }, ...] }`
504
-
505
- ## Development
506
-
507
- ```bash
508
- pnpm install
509
- pnpm dev # SvelteKit dev server (demo app)
510
- pnpm check # Type check
511
- pnpm run package # Build the library into dist/
512
- pnpm run build:widget # Build standalone widget.js
513
- ```
514
-
515
- ## License
516
-
517
- MIT
1
+ # @nomideusz/svelte-calendar
2
+
3
+ [![GitHub stars](https://img.shields.io/github/stars/nomideusz/svelte-calendar?style=social)](https://github.com/nomideusz/svelte-calendar)
4
+
5
+ A themeable, pluggable **Svelte 5** calendar component library with **Day** and **Week** views ready for yoga studios, tour bookings, concerts, language schools, and more.
6
+
7
+ > **Active development** this library is under active development. APIs may evolve between minor versions. Feedback, issues, and PRs are welcome on [GitHub](https://github.com/nomideusz/svelte-calendar).
8
+
9
+ ## Views — Concept-Paired
10
+
11
+ Views are organised into **concepts** that span both Day and Week granularity.
12
+ Switching between Day and Week preserves the active concept.
13
+
14
+ | Concept | Day View | Week View | Description |
15
+ |---------|----------|-----------|-------------|
16
+ | **Grid** | DayGrid | WeekGrid | The primary planner time blocks on a scrollable grid. |
17
+ | **Timeline** | DayTimeline | — | Horizontal day timeline. Day-only. |
18
+ | **Agenda** | Agenda `mode="day"` | Agenda `mode="week"` | List / feed — Done, Now, Next (day) or grouped-by-day scroll (week). |
19
+ | **Heatmap** | — | WeekHeatmap | Density view — 24 cells per day showing busy/free intensity. Week-only. |
20
+ | **Schedule** | — | WeekSchedule | Zero-config weekly schedule display. Single import convenience wrapper. |
21
+
22
+ ## Installation
23
+
24
+ ```bash
25
+ pnpm add @nomideusz/svelte-calendar
26
+ ```
27
+
28
+ > **Peer dependency:** Svelte 5 (`^5.0.0`)
29
+
30
+ ## Quick Start
31
+
32
+ ```svelte
33
+ <script lang="ts">
34
+ import {
35
+ Calendar,
36
+ DayGrid,
37
+ DayTimeline,
38
+ Agenda,
39
+ WeekGrid,
40
+ WeekHeatmap,
41
+ createMemoryAdapter,
42
+ midnight,
43
+ } from '@nomideusz/svelte-calendar';
44
+ import type { CalendarView, TimelineEvent } from '@nomideusz/svelte-calendar';
45
+
46
+ const events: TimelineEvent[] = [
47
+ {
48
+ id: '1', title: 'Yoga Flow',
49
+ start: new Date('2025-03-01T09:00'), end: new Date('2025-03-01T10:00'),
50
+ color: '#818cf8', subtitle: 'With Anna', tags: ['Beginner'],
51
+ },
52
+ {
53
+ id: '2', title: 'Meditation',
54
+ start: new Date('2025-03-01T12:00'), end: new Date('2025-03-01T12:45'),
55
+ color: '#34d399',
56
+ },
57
+ ];
58
+
59
+ // Adapters provide the data layer (in-memory, REST, etc.)
60
+ const adapter = createMemoryAdapter(events);
61
+
62
+ // Concepts are paired by label switching Day↔Week preserves the concept
63
+ const views: CalendarView[] = [
64
+ { id: 'day-grid', label: 'Grid', granularity: 'day', component: DayGrid },
65
+ { id: 'week-grid', label: 'Grid', granularity: 'week', component: WeekGrid },
66
+ { id: 'day-agenda', label: 'Agenda', granularity: 'day', component: Agenda, props: { mode: 'day' } },
67
+ { id: 'week-agenda', label: 'Agenda', granularity: 'week', component: Agenda, props: { mode: 'week' } },
68
+ { id: 'week-heatmap', label: 'Heatmap', granularity: 'week', component: WeekHeatmap },
69
+ ];
70
+ </script>
71
+
72
+ <Calendar
73
+ {views}
74
+ {adapter}
75
+ defaultView="week-grid"
76
+ theme={midnight}
77
+ height={600}
78
+ oneventclick={(ev) => console.log('clicked', ev.id)}
79
+ oneventcreate={(range) => console.log('create', range.start, range.end)}
80
+ />
81
+ ```
82
+
83
+ ## Recurring Weekly Schedules
84
+
85
+ Define a weekly schedule once the adapter auto-projects it onto whatever week the calendar is viewing. No manual date math needed.
86
+
87
+ ```svelte
88
+ <script lang="ts">
89
+ import { Calendar, WeekGrid, createRecurringAdapter, neutral } from '@nomideusz/svelte-calendar';
90
+ import type { CalendarView, RecurringEvent } from '@nomideusz/svelte-calendar';
91
+
92
+ const schedule: RecurringEvent[] = [
93
+ { id: '1', title: 'Morning Yoga', dayOfWeek: 1, startTime: '07:00', endTime: '08:30', color: '#818cf8' },
94
+ { id: '2', title: 'Pilates', dayOfWeek: 3, startTime: '18:00', endTime: '19:00', color: '#f472b6' },
95
+ { id: '3', title: 'Sound Bath', dayOfWeek: 5, startTime: '19:00', endTime: '20:00', color: '#2dd4bf', subtitle: 'Crystal bowls', tags: ['Relaxing'] },
96
+ ];
97
+
98
+ const adapter = createRecurringAdapter(schedule);
99
+ const views: CalendarView[] = [
100
+ { id: 'week-grid', label: 'Grid', granularity: 'week', component: WeekGrid },
101
+ ];
102
+ </script>
103
+
104
+ <Calendar {views} {adapter} defaultView="week-grid" theme={neutral} readOnly />
105
+ ```
106
+
107
+ ### RecurringEvent
108
+
109
+ | Field | Type | Description |
110
+ |-------|------|-------------|
111
+ | `id` | `string` | Unique identifier |
112
+ | `title` | `string` | Event title |
113
+ | `dayOfWeek` | `1–7` | ISO weekday (1 = Monday … 7 = Sunday) |
114
+ | `startTime` | `string` | Start time in `"HH:MM"` format |
115
+ | `endTime` | `string` | End time in `"HH:MM"` format |
116
+ | `color` | `string?` | Accent color |
117
+ | `subtitle` | `string?` | Subtitle (rendered below title) |
118
+ | `tags` | `string[]?` | Tag pills |
119
+ | `category` | `string?` | Category for grouping / colorMap |
120
+ | `data` | `Record?` | Arbitrary payload |
121
+
122
+ ## WeekSchedule — Zero-Config Convenience
123
+
124
+ One import, one component. Pre-wires adapter, views, and toolbar internally:
125
+
126
+ ```svelte
127
+ <script>
128
+ import { WeekSchedule } from '@nomideusz/svelte-calendar';
129
+ import { neutral } from '@nomideusz/svelte-calendar';
130
+
131
+ const schedule = [
132
+ { id: '1', title: 'Yoga', dayOfWeek: 1, startTime: '07:00', endTime: '08:30', color: '#818cf8' },
133
+ { id: '2', title: 'Pilates', dayOfWeek: 3, startTime: '18:00', endTime: '19:00', color: '#f472b6' },
134
+ ];
135
+ </script>
136
+
137
+ <WeekSchedule {schedule} theme={neutral} locale="pl-PL" height={560} readOnly />
138
+ ```
139
+
140
+ Works with concrete events too:
141
+
142
+ ```svelte
143
+ <WeekSchedule events={myEvents} theme={neutral} height={560} />
144
+ ```
145
+
146
+ ## Read-Only Mode
147
+
148
+ Pass `readOnly` to disable drag, resize, and click-to-create interactions:
149
+
150
+ ```svelte
151
+ <Calendar {views} {adapter} readOnly />
152
+ ```
153
+
154
+ In read-only mode:
155
+ - Drag handles and resize affordances are disabled
156
+ - Empty-slot creation clicks are suppressed
157
+ - `oneventcreate` and `oneventmove` callbacks are not fired
158
+ - `oneventclick` still works for navigation/display purposes
159
+
160
+ ## Visible Hours
161
+
162
+ Crop the grid to relevant hours — no more scrolling past empty early morning / late night rows:
163
+
164
+ ```svelte
165
+ <!-- Only show 6 AM to 9 PM -->
166
+ <Calendar {views} {adapter} visibleHours={[6, 21]} />
167
+
168
+ <!-- Works on WeekSchedule too -->
169
+ <WeekSchedule {schedule} visibleHours={[7, 20]} />
170
+ ```
171
+
172
+ The `visibleHours` prop is a `[startHour, endHour)` tuple. It applies to the WeekHeatmap grid cells and is passed through to all views.
173
+
174
+ ## Subtitle & Tags on Events
175
+
176
+ `TimelineEvent` supports `subtitle` and `tags` fields — rendered automatically in **all views**:
177
+
178
+ ```ts
179
+ const events: TimelineEvent[] = [
180
+ {
181
+ id: '1',
182
+ title: 'Power Vinyasa',
183
+ start: new Date('2025-03-01T10:00'),
184
+ end: new Date('2025-03-01T11:15'),
185
+ color: '#f472b6',
186
+ subtitle: 'With Marco', // shown below the title
187
+ tags: ['Advanced', 'Hot'], // rendered as small color pills
188
+ },
189
+ ];
190
+ ```
191
+
192
+ - **subtitle** — secondary text below the title (all views: WeekGrid, DayGrid, DayTimeline, Agenda, EventBlock)
193
+ - **tags** accent-colored pills after the title (all views)
194
+ - In space-constrained views (DayGrid, DayTimeline), subtitle/tags appear only when the event block is tall/wide enough
195
+
196
+ ## Color Map & Auto-Coloring
197
+
198
+ Instead of setting `color` on every event, let the adapter assign colors by category or title:
199
+
200
+ ```ts
201
+ // Explicit mapping
202
+ const adapter = createMemoryAdapter(events, {
203
+ colorMap: {
204
+ yoga: '#818cf8',
205
+ wellness: '#34d399',
206
+ },
207
+ });
208
+
209
+ // Auto-assign from a built-in 15-color vivid palette
210
+ const adapter = createMemoryAdapter(events, { autoColor: true });
211
+ ```
212
+
213
+ ### Theme-Aware Auto-Coloring
214
+
215
+ Pass the theme's accent hex to `autoColor` and the palette is generated to harmonize with your theme — colors rotate via golden-angle hue spacing from the accent, with lightness adjusted for dark/light backgrounds:
216
+
217
+ ```ts
218
+ // Harmonious palette seeded from indigo accent
219
+ const adapter = createMemoryAdapter(events, { autoColor: '#6366f1' });
220
+
221
+ // Works with the recurring adapter too
222
+ const adapter = createRecurringAdapter(schedule, { autoColor: '#ef4444' });
223
+ ```
224
+
225
+ | `autoColor` value | Behaviour |
226
+ |---|---|
227
+ | `true` | Original 15-color vivid palette (fixed, theme-independent) |
228
+ | `'#ef4444'` | Golden-angle hue rotation from that accent; lightness adapted to dark/light |
229
+
230
+ You can also use the palette generator directly:
231
+
232
+ ```ts
233
+ import { generatePalette } from '@nomideusz/svelte-calendar';
234
+
235
+ generatePalette('#6366f1', 8); // 8 theme-harmonious hex colors
236
+ generatePalette(); // default vivid 15-color palette
237
+ ```
238
+
239
+ Both `createMemoryAdapter` and `createRecurringAdapter` accept `colorMap` and `autoColor` options. Events with an explicit `color` field always take priority.
240
+
241
+ ## Settings Panel
242
+
243
+ The `Settings` component provides a theme picker and dynamic fields for controlling view parameters. It renders as a compact horizontal panel with auto-fill columns so the calendar stays visible while adjusting options.
244
+
245
+ ```svelte
246
+ <script lang="ts">
247
+ import { Settings } from '@nomideusz/svelte-calendar';
248
+ import type { SettingsField, PresetName } from '@nomideusz/svelte-calendar';
249
+
250
+ let theme: PresetName = $state('midnight');
251
+ let values = $state({ hourHeight: 60, elastic: true, startHour: 6, endHour: 21, visibleHours: false });
252
+
253
+ const fields: SettingsField[] = [
254
+ { key: 'hourHeight', label: 'Hour Height', group: 'Layout', type: 'range', min: 40, max: 120, step: 5 },
255
+ { key: 'elastic', label: 'Elastic Compression', group: 'Behavior', type: 'toggle' },
256
+ { key: 'visibleHours', label: 'Visible Hours', group: 'Time Range', type: 'toggle' },
257
+ { key: 'startHour', label: 'Start Hour', group: 'Time Range', type: 'range', min: 0, max: 23, step: 1, enabledWhen: 'visibleHours' },
258
+ { key: 'endHour', label: 'End Hour', group: 'Time Range', type: 'range', min: 1, max: 24, step: 1, enabledWhen: 'visibleHours' },
259
+ ];
260
+ </script>
261
+
262
+ <Settings {fields} bind:values bind:theme />
263
+ ```
264
+
265
+ ### Field types
266
+
267
+ | Type | Properties | Description |
268
+ |------|-----------|-------------|
269
+ | `range` | `min`, `max`, `step`, `enabledWhen?` | Slider with label and value display. `enabledWhen` references a toggle key — disables the slider when the toggle is off. |
270
+ | `toggle` | — | Switch toggle (on/off) |
271
+ | `select` | `options: {value, label}[]` | Dropdown select |
272
+ | `segment` | `options: {value, label}[]` | Pill-button radio group |
273
+
274
+ All fields support `group` for column grouping and `label` for display text.
275
+
276
+ ## Themes
277
+
278
+ Five built-in presets — each view reads from the same `--dt-*` CSS custom property contract:
279
+
280
+ | Preset | Tone |
281
+ |--------|------|
282
+ | `midnight` | Dark (deep navy/slate, red accent) |
283
+ | `parchment` | Warm light (cream, burnt sienna accents) |
284
+ | `indigo` | Cool light (white surface, indigo accents) |
285
+ | `neutral` | **Site-friendly** — white/gray, blue accent, `inherit` fonts so it matches your site |
286
+ | `bare` | **Unstyled skeleton** — all `transparent`/`inherit`/`currentColor`, absorbs host styles entirely |
287
+
288
+ ```svelte
289
+ <script>
290
+ import { midnight, parchment, indigo, neutral, bare, presets } from '@nomideusz/svelte-calendar';
291
+ </script>
292
+
293
+ <!-- Blends into your site with no extra work -->
294
+ <Calendar {views} {adapter} theme={neutral} />
295
+
296
+ <!-- Or use the presets map -->
297
+ <WeekGrid style={presets['parchment']} events={events} />
298
+ ```
299
+
300
+ ### Matching Your Site
301
+
302
+ The `neutral` preset inherits font families from your page (`--dt-sans: inherit; --dt-serif: inherit`) and uses a standard blue accent. For most sites this is all you need.
303
+
304
+ If you need full control, start from `bare` it sets everything to `transparent`/`inherit`/`currentColor` — then override only the tokens you care about:
305
+
306
+ ```ts
307
+ import { bare } from '@nomideusz/svelte-calendar';
308
+
309
+ const myTheme = `
310
+ ${bare}
311
+ --dt-accent: #e11d48;
312
+ --dt-bg: var(--my-app-surface);
313
+ --dt-text: var(--my-app-text);
314
+ --dt-border: var(--my-app-border);
315
+ `;
316
+ ```
317
+
318
+ ### Custom Themes
319
+
320
+ Pass any string of `--dt-*` custom property declarations:
321
+
322
+ ```ts
323
+ const custom = `
324
+ --dt-bg: #0a0a0a;
325
+ --dt-surface: #111;
326
+ --dt-border: rgba(255,255,255,0.06);
327
+ --dt-text: #e0e0e0;
328
+ --dt-accent: #10b981;
329
+ /* ...see presets.ts for the full token list */
330
+ `;
331
+ ```
332
+
333
+ <details>
334
+ <summary><strong>Full token reference</strong></summary>
335
+
336
+ | Token | Purpose |
337
+ |-------|----------|
338
+ | `--dt-bg` | Main background |
339
+ | `--dt-surface` | Elevated surface (cards, popovers) |
340
+ | `--dt-border` | Default border |
341
+ | `--dt-border-day` | Day-column dividers |
342
+ | `--dt-text` | Primary text |
343
+ | `--dt-text-2` | Secondary text |
344
+ | `--dt-text-3` | Tertiary / muted text |
345
+ | `--dt-accent` | Accent color (buttons, now-indicator, highlights) |
346
+ | `--dt-accent-dim` | Accent at ~12% opacity |
347
+ | `--dt-glow` | Accent glow / focus ring |
348
+ | `--dt-today-bg` | Today column highlight |
349
+ | `--dt-btn-text` | Button label color |
350
+ | `--dt-scrollbar` | Scrollbar thumb |
351
+ | `--dt-success` | Success / completed indicator |
352
+ | `--dt-serif` | Serif font stack |
353
+ | `--dt-sans` | Sans-serif font stack |
354
+ | `--dt-mono` | Monospace font stack |
355
+ | `--dt-hm-empty` | Heatmap: empty cell |
356
+ | `--dt-hm-low` | Heatmap: low density |
357
+ | `--dt-hm-mid` | Heatmap: medium density |
358
+ | `--dt-hm-high` | Heatmap: high density |
359
+ | `--dt-hm-max` | Heatmap: maximum density |
360
+
361
+ </details>
362
+
363
+ ## Accessibility
364
+
365
+ All interactive elements include proper ARIA attributes and keyboard support:
366
+
367
+ - **EventBlock** — `role="button"`, `aria-label` (title + time + duration + status), `tabindex="0"`, Enter/Space activates
368
+ - **EmptySlot** `role="button"`, `aria-label` (time range + duration), keyboard-accessible for event creation
369
+ - **NowIndicator** — `role="status"`, `aria-live="polite"` announces the current time
370
+ - **Calendar** — `role="region"`, `aria-label="Calendar"`
371
+ - **Toolbar** `aria-label="Calendar navigation"`
372
+ - Focus-visible outlines on all interactive primitives
373
+
374
+ ## Locale & i18n
375
+
376
+ The calendar uses `Intl.DateTimeFormat` for all date/time formatting. Pass a BCP 47 locale tag to the `Calendar` shell:
377
+
378
+ ```svelte
379
+ <Calendar {views} {adapter} locale="pl-PL" dir="rtl" />
380
+ ```
381
+
382
+ | Prop | Type | Default | Description |
383
+ |------|------|---------|-------------|
384
+ | `locale` | `string` | `'en-US'` | BCP 47 tag — controls weekday names, month names, date formats |
385
+ | `dir` | `'ltr' \| 'rtl' \| 'auto'` | — | Text direction (for Arabic, Hebrew, etc.) |
386
+
387
+ The `locale` prop automatically switches between 12-hour and 24-hour time display based on the locale's hour cycle.
388
+
389
+ ### Programmatic locale control
390
+
391
+ ```ts
392
+ import { setDefaultLocale, getDefaultLocale, is24HourLocale } from '@nomideusz/svelte-calendar';
393
+
394
+ setDefaultLocale('de-DE'); // All formatting functions now use German
395
+ is24HourLocale('en-US'); // false (12h)
396
+ is24HourLocale('de-DE'); // true (24h)
397
+ ```
398
+
399
+ All formatting functions (`weekdayShort`, `monthLong`, `fmtDay`, `fmtWeekRange`, etc.) accept an optional `locale` parameter to override per-call.
400
+
401
+ ## Timezones
402
+
403
+ Timezone utilities are included via `date-fns-tz`:
404
+
405
+ ```ts
406
+ import {
407
+ toZonedTime,
408
+ fromZonedTime,
409
+ nowInZone,
410
+ formatInTimeZone,
411
+ } from '@nomideusz/svelte-calendar';
412
+
413
+ // Display a UTC date in a specific timezone
414
+ const nyTime = toZonedTime(utcDate, 'America/New_York');
415
+
416
+ // Convert back to UTC for storage
417
+ const utc = fromZonedTime(displayDate, 'America/New_York');
418
+
419
+ // Current time in Tokyo
420
+ const tokyoNow = nowInZone('Asia/Tokyo');
421
+
422
+ // Locale-aware formatting in a timezone
423
+ formatInTimeZone(date, 'Europe/Warsaw', { hour: 'numeric', minute: '2-digit' }, 'pl-PL');
424
+ // "14:30"
425
+ ```
426
+
427
+ The engine's `createViewState` also accepts a `timezone` option:
428
+
429
+ ```ts
430
+ const viewState = createViewState({
431
+ defaultView: 'week-grid',
432
+ timezone: 'America/New_York', // stored on viewState.timezone
433
+ });
434
+ ```
435
+
436
+ ## Architecture
437
+
438
+ ```
439
+ src/lib/
440
+ ├── core/ # Clock, time utils, locale, types
441
+ ├── engine/ # Reactive state: event-store, view-state, selection, drag
442
+ ├── adapters/ # Data layer: memory, recurring, REST adapters
443
+ ├── primitives/ # Low-level UI atoms: NowIndicator, EventBlock, TimeGutter...
444
+ ├── calendar/ # Calendar shell, Toolbar
445
+ ├── views/ # View components (day/, week/, agenda/, schedule/, settings/)
446
+ └── theme/ # Preset themes and token definitions
447
+ ```
448
+
449
+ ## Engine
450
+
451
+ ```ts
452
+ import {
453
+ createEventStore,
454
+ createViewState,
455
+ createSelection,
456
+ createDragState,
457
+ } from '@nomideusz/svelte-calendar';
458
+ ```
459
+
460
+ - **`createEventStore(adapter)`** — reactive event list with fetch/add/update/remove
461
+ - **`createViewState(options)`** — current view, date range, navigation (prev/next/today)
462
+ - **`createSelection()`** selected event tracking
463
+ - **`createDragState()`** — drag-to-create and drag-to-move state machine
464
+
465
+ ## Adapters
466
+
467
+ | Adapter | Use |
468
+ |---------|-----|
469
+ | `createMemoryAdapter(events, options?)` | In-memory — great for demos and prototyping. Supports `colorMap` and `autoColor` (including theme-aware). |
470
+ | `createRecurringAdapter(schedule, options?)` | Weekly recurring schedules — auto-projects onto viewed weeks. Read-only. Supports `colorMap` and `autoColor`. |
471
+ | `createRestAdapter(options)` | Fetch from a REST API using `/events` endpoints with configurable headers and response mappers (`mapEvents`, `mapEvent`). |
472
+
473
+ ## Standalone Views
474
+
475
+ Each view works independently without the Calendar shell:
476
+
477
+ ```svelte
478
+ <!-- Horizontal day timeline -->
479
+ <DayTimeline style={midnight} events={events} />
480
+
481
+ <!-- Vertical day grid with elastic night compression -->
482
+ <DayGrid style={midnight} events={events} height={600} elastic />
483
+
484
+ <!-- Agenda in day mode -->
485
+ <Agenda mode="day" events={events} height={520} />
486
+
487
+ <!-- Week density heatmap -->
488
+ <WeekHeatmap style={parchment} events={events} height={320} />
489
+ ```
490
+
491
+ ## Embeddable Widget
492
+
493
+ Drop a single `<script>` tag into **any** HTML page — no Svelte, no build tools, no npm needed.
494
+
495
+ ### From CDN
496
+
497
+ ```html
498
+ <script src="https://cdn.jsdelivr.net/npm/@nomideusz/svelte-calendar/widget/widget.js"></script>
499
+
500
+ <day-calendar
501
+ api="https://myschool.com/api/events"
502
+ theme="neutral"
503
+ height="600"
504
+ ></day-calendar>
505
+ ```
506
+
507
+ That's it. Two lines.
508
+
509
+ ### With inline events (no API)
510
+
511
+ ```html
512
+ <script src="https://cdn.jsdelivr.net/npm/@nomideusz/svelte-calendar/widget/widget.js"></script>
513
+
514
+ <day-calendar
515
+ theme="midnight"
516
+ height="500"
517
+ events='[
518
+ { "id": "1", "title": "Yoga Flow", "start": "2025-03-01T09:00", "end": "2025-03-01T10:00", "color": "#818cf8" },
519
+ { "id": "2", "title": "Meditation", "start": "2025-03-01T12:00", "end": "2025-03-01T12:45", "color": "#34d399" }
520
+ ]'
521
+ ></day-calendar>
522
+ ```
523
+
524
+ ### Widget attributes
525
+
526
+ | Attribute | Default | Description |
527
+ |-----------|---------|-------------|
528
+ | `api` | — | REST API base URL — fetches from `{api}/events?start=...&end=...` |
529
+ | `events` | — | JSON string of events (alternative to `api`) |
530
+ | `theme` | `neutral` | Preset: `midnight`, `parchment`, `indigo`, `neutral`, `bare` |
531
+ | `view` | `week-grid` | Default view: `day-grid`, `week-grid`, `day-timeline`, `day-agenda`, `week-agenda`, `week-heatmap` |
532
+ | `height` | `600` | Height in pixels |
533
+ | `locale` | — | BCP 47 locale (`en-US`, `pl-PL`, `ar-SA`, etc.) |
534
+ | `dir` | — | Text direction: `ltr`, `rtl`, `auto` |
535
+ | `mondaystart` | `true` | Start week on Monday (`true`/`false`) |
536
+ | `headers` | — | JSON string of HTTP headers for the REST adapter |
537
+
538
+ > `events` and `headers` must be valid JSON strings. Invalid JSON is ignored (`events`) or throws during adapter setup (`headers`).
539
+
540
+ ### REST API contract
541
+
542
+ When using the `api` attribute, the widget expects your endpoint to accept:
543
+
544
+ ```
545
+ GET {api}/events?start={ISO}&end={ISO}
546
+ ```
547
+
548
+ And return either:
549
+ - `[{ id, title, start, end, color? }, ...]`
550
+ - `{ events: [{ id, title, start, end, color? }, ...] }`
551
+
552
+ ## Development
553
+
554
+ ```bash
555
+ pnpm install
556
+ pnpm dev # SvelteKit dev server (demo app)
557
+ pnpm check # Type check
558
+ pnpm run package # Build the library into dist/
559
+ pnpm run build:widget # Build standalone widget.js
560
+
561
+ # npm publish only runs `package` automatically (via prepublishOnly)
562
+ # Run this too if you changed widget code:
563
+ pnpm run build:widget
564
+ ```
565
+
566
+ ## License
567
+
568
+ MIT