@motion-proto/live-tokens 0.7.1 → 0.9.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 (96) hide show
  1. package/.claude/skills/live-tokens-add-component/SKILL.md +488 -0
  2. package/README.md +34 -0
  3. package/dist-plugin/index.cjs +707 -90
  4. package/dist-plugin/index.d.cts +1 -0
  5. package/dist-plugin/index.d.ts +1 -0
  6. package/dist-plugin/index.js +707 -90
  7. package/package.json +6 -2
  8. package/src/app/site.css +1 -1
  9. package/src/editor/component-editor/CollapsibleSectionEditor.svelte +34 -27
  10. package/src/editor/component-editor/DialogEditor.svelte +4 -4
  11. package/src/editor/component-editor/NotificationEditor.svelte +3 -1
  12. package/src/editor/component-editor/SectionDividerEditor.svelte +439 -112
  13. package/src/editor/component-editor/StandardButtonsEditor.svelte +13 -1
  14. package/src/editor/component-editor/editors.d.ts +10 -0
  15. package/src/editor/component-editor/index.ts +16 -1
  16. package/src/editor/component-editor/registry.ts +103 -26
  17. package/src/editor/component-editor/scaffolding/AngleDial.svelte +52 -13
  18. package/src/editor/component-editor/scaffolding/ComponentFileManager.svelte +10 -11
  19. package/src/editor/component-editor/scaffolding/ComponentsTab.svelte +2 -2
  20. package/src/editor/component-editor/scaffolding/LinkedBlock.svelte +0 -1
  21. package/src/editor/component-editor/scaffolding/RadialShapePad.svelte +483 -0
  22. package/src/editor/component-editor/scaffolding/ShadowBackdrop.svelte +15 -2
  23. package/src/editor/component-editor/scaffolding/StateBlock.svelte +103 -15
  24. package/src/editor/component-editor/scaffolding/TokenLayout.svelte +9 -6
  25. package/src/editor/component-editor/scaffolding/TypeEditor.svelte +13 -1
  26. package/src/editor/component-editor/scaffolding/VariantGroup.svelte +239 -25
  27. package/src/editor/component-editor/scaffolding/buildTypeGroupTokens.ts +1 -0
  28. package/src/editor/component-editor/scaffolding/componentSources.ts +3 -3
  29. package/src/editor/component-editor/scaffolding/defaultSections.ts +15 -10
  30. package/src/editor/component-editor/scaffolding/types.ts +11 -0
  31. package/src/editor/core/components/componentConfigKeys.ts +22 -3
  32. package/src/editor/core/components/componentConfigService.ts +2 -2
  33. package/src/editor/core/components/componentPersist.ts +7 -5
  34. package/src/editor/core/manifests/manifestService.ts +58 -3
  35. package/src/editor/core/palettes/familySwap.ts +99 -0
  36. package/src/editor/core/palettes/paletteDerivation.ts +69 -0
  37. package/src/editor/core/palettes/tokenRegistry.ts +4 -1
  38. package/src/editor/core/store/editorStore.ts +206 -12
  39. package/src/editor/core/store/editorTypes.ts +55 -12
  40. package/src/editor/core/store/gradientSource.ts +192 -0
  41. package/src/editor/core/themes/migrations/2026-05-19-collapsiblesection-drop-frame-surface.ts +28 -0
  42. package/src/editor/core/themes/migrations/2026-05-19-sectiondivider-rich-gradient.ts +35 -0
  43. package/src/editor/core/themes/migrations/2026-05-20-sectiondivider-slim-variants.ts +82 -0
  44. package/src/editor/core/themes/migrations/2026-05-21-sectiondivider-spacing-to-padding.ts +24 -0
  45. package/src/editor/core/themes/migrations/2026-05-22-sectiondivider-intrinsics-to-css.ts +81 -0
  46. package/src/editor/core/themes/migrations/index.ts +10 -0
  47. package/src/editor/core/themes/slices/components.ts +27 -4
  48. package/src/editor/core/themes/slices/gradients.ts +88 -13
  49. package/src/editor/core/themes/themeInit.ts +2 -2
  50. package/src/editor/core/themes/themeTypes.ts +56 -1
  51. package/src/editor/index.ts +10 -1
  52. package/src/editor/overlay/ColumnsOverlay.svelte +0 -1
  53. package/src/editor/overlay/LiveEditorOverlay.svelte +1 -4
  54. package/src/editor/pages/ComponentEditorPage.svelte +53 -3
  55. package/src/editor/pages/EditorShell.svelte +53 -3
  56. package/src/editor/styles/ui-editor.css +1 -0
  57. package/src/editor/styles/ui-form-controls.css +19 -20
  58. package/src/editor/ui/BezierCurveEditor.svelte +114 -63
  59. package/src/editor/ui/EditorViewSwitcher.svelte +0 -1
  60. package/src/editor/ui/FileLoadList.svelte +22 -5
  61. package/src/editor/ui/FontStackEditor.svelte +214 -76
  62. package/src/editor/ui/GradientEditor.svelte +435 -215
  63. package/src/editor/ui/GradientStopPicker.svelte +11 -3
  64. package/src/editor/ui/ManifestFileManager.svelte +71 -4
  65. package/src/editor/ui/PaletteEditor.svelte +52 -79
  66. package/src/editor/ui/ProjectFontsSection.svelte +328 -293
  67. package/src/editor/ui/ThemeFileManager.svelte +0 -4
  68. package/src/editor/ui/UIFontFamilySelector.svelte +0 -1
  69. package/src/editor/ui/UIFontSizeSelector.svelte +3 -0
  70. package/src/editor/ui/UIInfoPopover.svelte +0 -1
  71. package/src/editor/ui/UILetterSpacingSelector.svelte +65 -0
  72. package/src/editor/ui/UIPaletteSelector.svelte +31 -4
  73. package/src/editor/ui/UIPillButton.svelte +33 -3
  74. package/src/editor/ui/UISegmentedControl.svelte +114 -0
  75. package/src/editor/ui/UITokenSelector.svelte +4 -1
  76. package/src/editor/ui/VariablesTab.svelte +41 -35
  77. package/src/editor/ui/palette/OverridesPanel.svelte +14 -37
  78. package/src/editor/ui/palette/PaletteBase.svelte +3 -3
  79. package/src/editor/ui/sections/ColumnsSection.svelte +1 -2
  80. package/src/editor/ui/sections/GradientsSection.svelte +1 -1
  81. package/src/editor/ui/sections/OverlaysSection.svelte +1 -1
  82. package/src/editor/ui/sections/ShadowsSection.svelte +1 -1
  83. package/src/system/components/Button.svelte +2 -2
  84. package/src/system/components/Card.svelte +29 -1
  85. package/src/system/components/CollapsibleSection.svelte +25 -2
  86. package/src/system/components/Dialog.svelte +24 -4
  87. package/src/system/components/FloatingTokenTags.css +43 -24
  88. package/src/system/components/FloatingTokenTags.svelte +88 -137
  89. package/src/system/components/Notification.svelte +8 -1
  90. package/src/system/components/SectionDivider.svelte +532 -381
  91. package/src/system/styles/CONVENTIONS.md +1 -1
  92. package/src/system/styles/fonts.css +3 -16
  93. package/src/system/styles/tokens.css +356 -1199
  94. package/src/system/styles/tokens.generated.css +544 -0
  95. package/src/editor/component-editor/scaffolding/DividerEditor.svelte +0 -94
  96. package/src/editor/component-editor/scaffolding/GradientCard.svelte +0 -296
@@ -0,0 +1,483 @@
1
+ <script lang="ts">
2
+ /**
3
+ * 2D shape control for a radial gradient. Two independent stretch
4
+ * factors (X and Y, both 1 → 8) define the ellipse's semi-axes; rendering
5
+ * uses `base * aspectX` and `base * aspectY` so the data also encodes
6
+ * size (both = 8 is a circle 8× bigger than both = 1).
7
+ *
8
+ * Three concurrent affordances stay synced:
9
+ * - 2D pad with a draggable handle that lives at (aspectX, aspectY).
10
+ * The visible ellipse is drawn with semi-axes equal to the handle's
11
+ * offset from center, so the dot you drag IS the corner of the shape.
12
+ * - Horizontal slider beneath the pad — drags X only.
13
+ * - Vertical slider beside the pad — drags Y only.
14
+ *
15
+ * Range chosen so 1 = "no stretch" and 8 = "8× stretch" — same units the
16
+ * user sees in the W : H ratio readout.
17
+ */
18
+ import UIPillButton from '../../ui/UIPillButton.svelte';
19
+ interface Props {
20
+ /** Horizontal stretch (1 = unscaled, default). */
21
+ x?: number;
22
+ /** Vertical stretch (1 = unscaled, default). */
23
+ y?: number;
24
+ /** Edge length of the square pad in px. Sliders extend the bounding box. */
25
+ size?: number;
26
+ /** Clamp bounds for each axis. */
27
+ min?: number;
28
+ max?: number;
29
+ onchange?: (payload: { x: number; y: number }) => void;
30
+ }
31
+
32
+ let {
33
+ x = $bindable(1),
34
+ y = $bindable(1),
35
+ size = 80,
36
+ min = 1,
37
+ max = 8,
38
+ onchange,
39
+ }: Props = $props();
40
+
41
+ let padEl: HTMLDivElement | undefined = $state();
42
+ let xSliderEl: HTMLDivElement | undefined = $state();
43
+ let ySliderEl: HTMLDivElement | undefined = $state();
44
+ let drag: 'pad' | 'x' | 'y' | null = $state(null);
45
+
46
+ // Quadrant the handle currently lives in. The stored aspect values are
47
+ // always positive (CSS radial-gradient semi-axes must be), but the dot can
48
+ // be dragged into any of the four quadrants. The ellipse is symmetric, so
49
+ // mirroring the handle reads as "this corner" — the rendered shape is
50
+ // identical. Sign is session-local; on reload the dot defaults to top-right.
51
+ let signX = $state(1);
52
+ let signY = $state(1);
53
+
54
+ /** Inset (px) the pad uses to keep the corner handle inside its border.
55
+ * Sliders use a separate inset since their end-labels sit outside the
56
+ * rail entirely now. */
57
+ const PAD_INSET = 6;
58
+ const SLIDER_INSET = 0;
59
+
60
+ function clamp(v: number, lo: number, hi: number): number {
61
+ return Math.max(lo, Math.min(hi, v));
62
+ }
63
+
64
+ /** Snap near-integer values so the user can land cleanly on {1,2,…,8}. */
65
+ function snap(v: number): number {
66
+ const rounded = Math.round(v);
67
+ if (Math.abs(v - rounded) < 0.05) return rounded;
68
+ return Math.round(v * 10) / 10;
69
+ }
70
+
71
+ function emit(nx: number, ny: number) {
72
+ const cx = clamp(snap(nx), min, max);
73
+ const cy = clamp(snap(ny), min, max);
74
+ if (cx === x && cy === y) return;
75
+ x = cx;
76
+ y = cy;
77
+ onchange?.({ x: cx, y: cy });
78
+ }
79
+
80
+ /** Pad pointer → (aspectX, aspectY). The pointer's signed distance from
81
+ * center decides the quadrant; magnitude maps linearly into (min, max).
82
+ * signX/signY are updated here so the handle renders in the quadrant the
83
+ * user actually dragged to, even though the returned aspect values stay
84
+ * positive. Clamping at the edges is handled by `emit`. */
85
+ function aspectFromPad(e: PointerEvent): { x: number; y: number } {
86
+ const rect = padEl!.getBoundingClientRect();
87
+ const cx = rect.left + rect.width / 2;
88
+ const cy = rect.top + rect.height / 2;
89
+ const span = rect.width / 2 - PAD_INSET;
90
+ const dx = e.clientX - cx;
91
+ const dy = cy - e.clientY;
92
+ if (dx !== 0) signX = dx >= 0 ? 1 : -1;
93
+ if (dy !== 0) signY = dy >= 0 ? 1 : -1;
94
+ const nx = min + (Math.abs(dx) / span) * (max - min);
95
+ const ny = min + (Math.abs(dy) / span) * (max - min);
96
+ return { x: nx, y: ny };
97
+ }
98
+
99
+ function valueFromLinearSlider(el: HTMLDivElement, clientPx: number, axis: 'h' | 'v'): number {
100
+ const rect = el.getBoundingClientRect();
101
+ const len = axis === 'h' ? rect.width - 2 * SLIDER_INSET : rect.height - 2 * SLIDER_INSET;
102
+ const pos = axis === 'h'
103
+ ? clientPx - (rect.left + SLIDER_INSET)
104
+ : (rect.bottom - SLIDER_INSET) - clientPx;
105
+ const t = clamp(pos / len, 0, 1);
106
+ return min + t * (max - min);
107
+ }
108
+
109
+ function onPadDown(e: PointerEvent) {
110
+ drag = 'pad';
111
+ padEl!.setPointerCapture(e.pointerId);
112
+ const { x: nx, y: ny } = aspectFromPad(e);
113
+ emit(nx, ny);
114
+ }
115
+ function onXDown(e: PointerEvent) {
116
+ drag = 'x';
117
+ xSliderEl!.setPointerCapture(e.pointerId);
118
+ emit(valueFromLinearSlider(xSliderEl!, e.clientX, 'h'), y);
119
+ }
120
+ function onYDown(e: PointerEvent) {
121
+ drag = 'y';
122
+ ySliderEl!.setPointerCapture(e.pointerId);
123
+ emit(x, valueFromLinearSlider(ySliderEl!, e.clientY, 'v'));
124
+ }
125
+
126
+ function onMove(e: PointerEvent) {
127
+ if (drag === 'pad') {
128
+ const { x: nx, y: ny } = aspectFromPad(e);
129
+ emit(nx, ny);
130
+ } else if (drag === 'x') {
131
+ emit(valueFromLinearSlider(xSliderEl!, e.clientX, 'h'), y);
132
+ } else if (drag === 'y') {
133
+ emit(x, valueFromLinearSlider(ySliderEl!, e.clientY, 'v'));
134
+ }
135
+ }
136
+ function onUp(e: PointerEvent) {
137
+ if (!drag) return;
138
+ const target = drag === 'pad' ? padEl! : drag === 'x' ? xSliderEl! : ySliderEl!;
139
+ target.releasePointerCapture(e.pointerId);
140
+ drag = null;
141
+ }
142
+
143
+ /** Position of the pad handle and the rendered ellipse's bounding corner.
144
+ * Aspect values map to pixel magnitudes; signX/signY pick which of the
145
+ * ellipse's four corners the handle sits on. The ellipse itself is always
146
+ * centered with positive semi-axes (it's symmetric, so the shape reads
147
+ * identically in any quadrant). */
148
+ let pad = $derived.by(() => {
149
+ const span = size / 2 - PAD_INSET;
150
+ const tx = (x - min) / (max - min);
151
+ const ty = (y - min) / (max - min);
152
+ const rx = tx * span;
153
+ const ry = ty * span;
154
+ const center = size / 2;
155
+ return { center, rx, ry, handleX: center + signX * rx, handleY: center - signY * ry };
156
+ });
157
+
158
+ let xThumb = $derived(((x - min) / (max - min)));
159
+ let yThumb = $derived(((y - min) / (max - min)));
160
+
161
+ function parseAxisInput(raw: string): number | null {
162
+ const n = parseFloat(raw.trim());
163
+ return Number.isFinite(n) ? n : null;
164
+ }
165
+
166
+ function onXInput(e: Event) {
167
+ const v = parseAxisInput((e.target as HTMLInputElement).value);
168
+ if (v !== null) emit(v, y);
169
+ }
170
+ function onYInput(e: Event) {
171
+ const v = parseAxisInput((e.target as HTMLInputElement).value);
172
+ if (v !== null) emit(x, v);
173
+ }
174
+ </script>
175
+
176
+ <svelte:window onpointermove={onMove} onpointerup={onUp} onpointercancel={onUp} />
177
+
178
+ <div class="shape-pad">
179
+ <div class="pad-body">
180
+ <div class="grid">
181
+ <div
182
+ bind:this={padEl}
183
+ class="pad"
184
+ class:dragging={drag === 'pad'}
185
+ style="width: {size}px; height: {size}px;"
186
+ onpointerdown={onPadDown}
187
+ role="application"
188
+ aria-label="Drag to set the radial gradient's width and height"
189
+ >
190
+ <span class="axis axis-h" aria-hidden="true"></span>
191
+ <span class="axis axis-v" aria-hidden="true"></span>
192
+ <svg class="ellipse" viewBox="0 0 {size} {size}" aria-hidden="true">
193
+ <ellipse
194
+ cx={pad.center}
195
+ cy={pad.center}
196
+ rx={Math.max(3, pad.rx)}
197
+ ry={Math.max(3, pad.ry)}
198
+ fill="none"
199
+ stroke="currentColor"
200
+ stroke-width="1"
201
+ />
202
+ <line
203
+ x1={pad.center}
204
+ y1={pad.center}
205
+ x2={pad.handleX}
206
+ y2={pad.handleY}
207
+ stroke="currentColor"
208
+ stroke-width="1"
209
+ stroke-dasharray="2 2"
210
+ opacity="0.4"
211
+ />
212
+ </svg>
213
+ <span
214
+ class="handle"
215
+ class:dragging={drag === 'pad'}
216
+ style="left: {pad.handleX}px; top: {pad.handleY}px;"
217
+ aria-hidden="true"
218
+ ></span>
219
+ </div>
220
+
221
+ <div
222
+ bind:this={ySliderEl}
223
+ class="slider slider-v"
224
+ class:dragging={drag === 'y'}
225
+ style="height: {size}px;"
226
+ onpointerdown={onYDown}
227
+ role="slider"
228
+ aria-orientation="vertical"
229
+ aria-valuemin={min}
230
+ aria-valuemax={max}
231
+ aria-valuenow={y}
232
+ aria-label="Vertical stretch"
233
+ tabindex="0"
234
+ onkeydown={(e) => {
235
+ if (e.key === 'ArrowUp') { e.preventDefault(); emit(x, y + 0.5); }
236
+ else if (e.key === 'ArrowDown') { e.preventDefault(); emit(x, y - 0.5); }
237
+ }}
238
+ >
239
+ <span class="track" aria-hidden="true"></span>
240
+ <span class="thumb" style="bottom: calc({yThumb * 100}% - 4px);" aria-hidden="true"></span>
241
+ </div>
242
+
243
+ <div
244
+ bind:this={xSliderEl}
245
+ class="slider slider-h"
246
+ class:dragging={drag === 'x'}
247
+ style="width: {size}px;"
248
+ onpointerdown={onXDown}
249
+ role="slider"
250
+ aria-orientation="horizontal"
251
+ aria-valuemin={min}
252
+ aria-valuemax={max}
253
+ aria-valuenow={x}
254
+ aria-label="Horizontal stretch"
255
+ tabindex="0"
256
+ onkeydown={(e) => {
257
+ if (e.key === 'ArrowLeft') { e.preventDefault(); emit(x - 0.5, y); }
258
+ else if (e.key === 'ArrowRight') { e.preventDefault(); emit(x + 0.5, y); }
259
+ }}
260
+ >
261
+ <span class="track" aria-hidden="true"></span>
262
+ <span class="thumb" style="left: calc({xThumb * 100}% - 4px);" aria-hidden="true"></span>
263
+ </div>
264
+ </div>
265
+
266
+ <div class="readouts">
267
+ <label class="num-field">
268
+ <span class="num-label">W</span>
269
+ <input
270
+ type="number"
271
+ min={min}
272
+ max={max}
273
+ step="0.1"
274
+ value={x}
275
+ onchange={onXInput}
276
+ />
277
+ </label>
278
+ <label class="num-field">
279
+ <span class="num-label">H</span>
280
+ <input
281
+ type="number"
282
+ min={min}
283
+ max={max}
284
+ step="0.1"
285
+ value={y}
286
+ onchange={onYInput}
287
+ />
288
+ </label>
289
+ <UIPillButton
290
+ variant="secondary"
291
+ size="compact"
292
+ icon="fa-arrows-rotate"
293
+ title="Reset to circle (1 : 1)"
294
+ disabled={x === 1 && y === 1}
295
+ onclick={() => emit(1, 1)}
296
+ />
297
+ </div>
298
+ </div>
299
+ </div>
300
+
301
+ <style>
302
+ /* Two-column body: pad + sliders on the left, W/H/Reset on the right.
303
+ The section header ("Gradient shape") is owned by GradientEditor so it
304
+ can sit on the same baseline as the parent's section label. */
305
+ .shape-pad {
306
+ display: inline-flex;
307
+ color: var(--ui-text-secondary);
308
+ font-size: var(--ui-font-size-sm);
309
+ }
310
+
311
+ .pad-body {
312
+ display: inline-flex;
313
+ align-items: flex-start;
314
+ gap: var(--ui-space-12);
315
+ }
316
+
317
+ /* Pad in the top-left, Y slider snugged to its right edge, X slider
318
+ snugged to its bottom edge. Zero gaps so the rails read as extensions
319
+ of the pad's own axis lines rather than separate widgets. */
320
+ .grid {
321
+ display: grid;
322
+ grid-template-columns: max-content max-content;
323
+ grid-template-rows: max-content max-content;
324
+ gap: 0;
325
+ align-items: start;
326
+ }
327
+
328
+ .pad {
329
+ position: relative;
330
+ grid-row: 1;
331
+ grid-column: 1;
332
+ background: var(--ui-surface-lowest);
333
+ border: 1px solid var(--ui-border);
334
+ border-radius: var(--ui-radius-sm);
335
+ cursor: crosshair;
336
+ color: var(--ui-text-primary);
337
+ touch-action: none;
338
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
339
+ }
340
+ .pad:focus-visible { outline: 2px solid var(--ui-text-primary); outline-offset: 2px; }
341
+ .pad.dragging { cursor: grabbing; }
342
+
343
+ /* Faint center cross — anchors the gradient origin and shows the user
344
+ where the (1,1) state lives (handle parks right at the cross). */
345
+ .axis {
346
+ position: absolute;
347
+ background: var(--ui-border-low);
348
+ pointer-events: none;
349
+ }
350
+ .axis-h { left: 4px; right: 4px; top: 50%; height: 1px; }
351
+ .axis-v { top: 4px; bottom: 4px; left: 50%; width: 1px; }
352
+
353
+ .ellipse {
354
+ position: absolute;
355
+ inset: 0;
356
+ pointer-events: none;
357
+ color: var(--ui-text-primary);
358
+ }
359
+
360
+ /* Bigger, brighter dot than v1 + a subtle outer ring on hover so it reads
361
+ as "this is the thing you grab." The dashed line back to center makes
362
+ the relationship between handle position and shape semi-axes legible. */
363
+ .handle {
364
+ position: absolute;
365
+ width: 11px;
366
+ height: 11px;
367
+ margin-left: -5.5px;
368
+ margin-top: -5.5px;
369
+ border-radius: 50%;
370
+ background: var(--ui-text-primary);
371
+ border: 2px solid var(--ui-surface-lowest);
372
+ box-shadow: 0 0 0 1px var(--ui-text-primary), 0 0 6px rgba(255, 255, 255, 0.15);
373
+ cursor: grab;
374
+ pointer-events: none;
375
+ transition: box-shadow var(--ui-transition-fast);
376
+ }
377
+ .pad:hover .handle {
378
+ box-shadow: 0 0 0 1px var(--ui-text-primary), 0 0 10px rgba(255, 255, 255, 0.25);
379
+ }
380
+ .handle.dragging,
381
+ .pad.dragging .handle {
382
+ cursor: grabbing;
383
+ box-shadow: 0 0 0 2px var(--ui-text-primary), 0 0 12px rgba(255, 255, 255, 0.35);
384
+ }
385
+
386
+ /* Slider rails. Each rail hugs the pad edge it represents: X under the
387
+ pad's bottom, Y to the right of the pad's right edge. The thumbs are
388
+ small arrow triangles whose tips touch the rail — they read as "this
389
+ points at the value" instead of a dot drifting along the rail. */
390
+ .slider {
391
+ position: relative;
392
+ flex: none;
393
+ cursor: pointer;
394
+ touch-action: none;
395
+ }
396
+ .slider:focus-visible { outline: 2px solid var(--ui-text-primary); outline-offset: 2px; }
397
+
398
+ /* Horizontal slider: rail along the very top (flush against the pad's
399
+ bottom border), arrow thumb sits below pointing up at the rail. */
400
+ .slider-h {
401
+ grid-row: 2;
402
+ grid-column: 1;
403
+ height: 14px;
404
+ }
405
+ /* Vertical slider: rail along the very left (flush against the pad's
406
+ right border), arrow thumb sits to the right pointing left at the
407
+ rail. */
408
+ .slider-v {
409
+ grid-row: 1;
410
+ grid-column: 2;
411
+ width: 14px;
412
+ }
413
+
414
+ .track {
415
+ position: absolute;
416
+ background: var(--ui-border);
417
+ }
418
+ .slider-h .track { left: 0; right: 0; top: 0; height: 1px; border-radius: 1px; }
419
+ .slider-v .track { top: 0; bottom: 0; left: 0; width: 1px; border-radius: 1px; }
420
+
421
+ /* Arrow thumb — CSS triangle. The transparent borders create the legs
422
+ and the colored border creates the tip. We use `border-bottom` to make
423
+ the tip point UP, `border-right` to make it point LEFT. */
424
+ .thumb {
425
+ position: absolute;
426
+ width: 0;
427
+ height: 0;
428
+ pointer-events: none;
429
+ }
430
+ .slider-h .thumb {
431
+ top: 2px;
432
+ border-left: 4px solid transparent;
433
+ border-right: 4px solid transparent;
434
+ border-bottom: 6px solid var(--ui-text-primary);
435
+ }
436
+ .slider-v .thumb {
437
+ left: 2px;
438
+ border-top: 4px solid transparent;
439
+ border-bottom: 4px solid transparent;
440
+ border-right: 6px solid var(--ui-text-primary);
441
+ }
442
+ .slider.dragging .thumb {
443
+ filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.35));
444
+ }
445
+
446
+
447
+ /* Vertical stack beside the pad: W input, H input, Reset. Right-aligned
448
+ so the input field's right edges and the Reset button's right edge all
449
+ share a single vertical line — reads as a tidy aligned column. */
450
+ .readouts {
451
+ display: inline-flex;
452
+ flex-direction: column;
453
+ align-items: flex-end;
454
+ gap: var(--ui-space-6);
455
+ }
456
+
457
+ .num-field {
458
+ display: inline-flex;
459
+ align-items: center;
460
+ gap: var(--ui-space-6);
461
+ color: var(--ui-text-secondary);
462
+ }
463
+ .num-label {
464
+ font-family: var(--ui-font-mono);
465
+ font-size: var(--ui-font-size-xs);
466
+ color: var(--ui-text-tertiary);
467
+ }
468
+ .num-field input {
469
+ width: 3.25rem;
470
+ padding: var(--ui-space-2) var(--ui-space-6);
471
+ background: var(--ui-surface-lowest);
472
+ border: 1px solid var(--ui-border-low);
473
+ border-radius: var(--ui-radius-sm);
474
+ color: var(--ui-text-primary);
475
+ font-family: var(--ui-font-mono);
476
+ font-size: var(--ui-font-size-sm);
477
+ text-align: right;
478
+ }
479
+ .num-field input::-webkit-outer-spin-button,
480
+ .num-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
481
+
482
+
483
+ </style>
@@ -34,7 +34,7 @@
34
34
  </script>
35
35
 
36
36
  <div class="shadow-backdrop" class:with-controls={!!controls} style={backgroundStyle}>
37
- <div class="shadow-backdrop-content" style="padding: {padding};">
37
+ <div class="shadow-backdrop-content" style="padding: {padding} {padding} {padding} 1.5rem;">
38
38
  {@render children?.()}
39
39
  </div>
40
40
  {#if controls}
@@ -58,15 +58,28 @@
58
58
 
59
59
  .shadow-backdrop.with-controls {
60
60
  grid-template-columns: minmax(0, 1fr) auto;
61
+ grid-template-areas: "preview controls";
61
62
  }
62
63
 
63
64
  .shadow-backdrop-content {
64
65
  display: grid;
65
- place-items: center;
66
+ align-items: center;
67
+ justify-items: start;
66
68
  min-width: 0;
69
+ grid-area: preview;
67
70
  }
68
71
 
69
72
  .shadow-backdrop-controls {
70
73
  padding: var(--ui-space-8);
74
+ grid-area: controls;
75
+ }
76
+
77
+ @container variant-group (max-width: 32rem) {
78
+ .shadow-backdrop.with-controls {
79
+ grid-template-columns: minmax(0, 1fr);
80
+ grid-template-areas:
81
+ "controls"
82
+ "preview";
83
+ }
71
84
  }
72
85
  </style>