@signal9/era-ui 33.0.1 → 34.0.1

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.
@@ -4,10 +4,13 @@
4
4
  * Every surface is a slab lit from above and slightly left: raised faces catch
5
5
  * light on top/left and cast a hard shade on bottom/right; wells invert the
6
6
  * bevel to read as recessed; a pressed control flips its bevel. Edge colors are
7
- * a step of white or black mixed over the surface color, so the chisel keeps
8
- * each theme's hue; light mode raises the contrast the way the original did on
9
- * pale gray. Shadows are hard-edged (0 blur): crispness is this material's
10
- * signature. Elevation is expressed by the chisel, not tone.
7
+ * translucent white and black cast over the ACTUAL face beneath them, so the
8
+ * chisel belongs equally to a neutral slab, a semantic tone, or a consumer's
9
+ * custom accent. Never pre-mix these colors against --color-2: that paints a
10
+ * neutral frame over colored faces and erases their relief. Light mode raises
11
+ * the contrast the way the original did on pale gray. Shadows are hard-edged
12
+ * (0 blur): crispness is this material's signature. Elevation is expressed by
13
+ * the chisel, not tone.
11
14
  *
12
15
  * LIGHT DIRECTION — one global knob. --era-bevel-side scales the HORIZONTAL
13
16
  * cast of every chisel (the left highlight / right shade) against the fixed
@@ -32,23 +35,21 @@
32
35
  --era-bevel-side: 0.6;
33
36
  --era-bevel-x1: calc(1px * var(--era-bevel-side));
34
37
  --era-bevel-x2: calc(2px * var(--era-bevel-side));
35
- --era-bevel-rim: inset 0 0 0 1px
36
- light-dark(
37
- color-mix(in oklch, oklch(0 0 0) 24%, var(--color-2)),
38
- color-mix(in oklch, oklch(0 0 0) 42%, var(--color-2))
39
- );
38
+ /* Optical primitives are overlays, not resolved colors. The browser
39
+ * composites them against each element's own background, which is the
40
+ * material contract that lets arbitrary face colors retain one light model. */
41
+ --era-bevel-light: light-dark(oklch(1 0 0 / 0.7), oklch(1 0 0 / 0.12));
42
+ --era-bevel-shade: light-dark(oklch(0 0 0 / 0.28), oklch(0 0 0 / 0.4));
43
+ --era-bevel-light-strong: light-dark(oklch(1 0 0 / 0.8), oklch(1 0 0 / 0.14));
44
+ --era-bevel-shade-strong: light-dark(oklch(0 0 0 / 0.34), oklch(0 0 0 / 0.45));
45
+ --era-bevel-light-secondary: light-dark(oklch(1 0 0 / 0.4), oklch(1 0 0 / 0.06));
46
+ --era-bevel-shade-secondary: light-dark(oklch(0 0 0 / 0.16), oklch(0 0 0 / 0.22));
47
+ --era-bevel-well-light: light-dark(oklch(1 0 0 / 0.55), oklch(1 0 0 / 0.08));
48
+ --era-bevel-rim-color: light-dark(oklch(0 0 0 / 0.24), oklch(0 0 0 / 0.42));
49
+ --era-bevel-rim: inset 0 0 0 1px var(--era-bevel-rim-color);
40
50
  --era-shadow:
41
- inset var(--era-bevel-x1) 1px 0 0
42
- light-dark(
43
- color-mix(in oklch, oklch(1 0 0) 70%, var(--color-2)),
44
- color-mix(in oklch, oklch(1 0 0) 12%, var(--color-2))
45
- ),
46
- inset calc(-1 * var(--era-bevel-x1)) -1px 0 0
47
- light-dark(
48
- color-mix(in oklch, oklch(0 0 0) 28%, var(--color-2)),
49
- color-mix(in oklch, oklch(0 0 0) 40%, var(--color-2))
50
- ),
51
- var(--era-bevel-rim);
51
+ inset var(--era-bevel-x1) 1px 0 0 var(--era-bevel-light),
52
+ inset calc(-1 * var(--era-bevel-x1)) -1px 0 0 var(--era-bevel-shade), var(--era-bevel-rim);
52
53
  /* ELEVATION IS A CHISEL, NOT A TONE — bevel's whole premise, and the reason
53
54
  * it opts out of the flat implementation's raised-tier tone step. Flat mixes the elevated
54
55
  * fill 6% toward --color-bright so flat can separate a floating panel
@@ -60,42 +61,17 @@
60
61
  /* Floating slab: double chisel + hard offset drop — period-correct
61
62
  * separation without soft blur. */
62
63
  --era-shadow-lg:
63
- inset var(--era-bevel-x1) 1px 0 0
64
- light-dark(
65
- color-mix(in oklch, oklch(1 0 0) 80%, var(--color-2)),
66
- color-mix(in oklch, oklch(1 0 0) 14%, var(--color-2))
67
- ),
68
- inset calc(-1 * var(--era-bevel-x1)) -1px 0 0
69
- light-dark(
70
- color-mix(in oklch, oklch(0 0 0) 34%, var(--color-2)),
71
- color-mix(in oklch, oklch(0 0 0) 45%, var(--color-2))
72
- ),
73
- inset var(--era-bevel-x2) 2px 0 0
74
- light-dark(
75
- color-mix(in oklch, oklch(1 0 0) 40%, var(--color-2)),
76
- color-mix(in oklch, oklch(1 0 0) 6%, var(--color-2))
77
- ),
78
- inset calc(-1 * var(--era-bevel-x2)) -2px 0 0
79
- light-dark(
80
- color-mix(in oklch, oklch(0 0 0) 16%, var(--color-2)),
81
- color-mix(in oklch, oklch(0 0 0) 22%, var(--color-2))
82
- ),
64
+ inset var(--era-bevel-x1) 1px 0 0 var(--era-bevel-light-strong),
65
+ inset calc(-1 * var(--era-bevel-x1)) -1px 0 0 var(--era-bevel-shade-strong),
66
+ inset var(--era-bevel-x2) 2px 0 0 var(--era-bevel-light-secondary),
67
+ inset calc(-1 * var(--era-bevel-x2)) -2px 0 0 var(--era-bevel-shade-secondary),
83
68
  calc(4px * var(--era-bevel-side)) 4px 0 0 light-dark(oklch(0 0 0 / 0.18), oklch(0 0 0 / 0.25)),
84
69
  var(--era-bevel-rim);
85
70
  /* Recessed well: the raised bevel inverted, highlight dimmed so the
86
71
  * bottom rim reads as catching less light than a raised top edge. */
87
72
  --era-shadow-well:
88
- inset var(--era-bevel-x1) 1px 0 0
89
- light-dark(
90
- color-mix(in oklch, oklch(0 0 0) 28%, var(--color-2)),
91
- color-mix(in oklch, oklch(0 0 0) 40%, var(--color-2))
92
- ),
93
- inset calc(-1 * var(--era-bevel-x1)) -1px 0 0
94
- light-dark(
95
- color-mix(in oklch, oklch(1 0 0) 55%, var(--color-2)),
96
- color-mix(in oklch, oklch(1 0 0) 8%, var(--color-2))
97
- ),
98
- var(--era-bevel-rim);
73
+ inset var(--era-bevel-x1) 1px 0 0 var(--era-bevel-shade),
74
+ inset calc(-1 * var(--era-bevel-x1)) -1px 0 0 var(--era-bevel-well-light), var(--era-bevel-rim);
99
75
  --era-shadow-pressed: var(--era-shadow-well);
100
76
  --era-highlight: light-dark(
101
77
  color-mix(in oklch, var(--color-bright) 9%, transparent),
@@ -10,9 +10,9 @@ export { axisRegistry, axisKeys, type AxisKey, type AxisMeta, type AxisLevel } f
10
10
  * editor's floating chrome. era's portalling components go through AxisRelay;
11
11
  * these have no context to relay through and no markup to spread onto.
12
12
  *
13
- * Exported because it shipped in the tarball reachable from nothing. `./*`
14
- * resolves to a directory's index.js, so a module the index does not re-export
15
- * is published and unimportable — a consumer measured it at runtime, got 13
13
+ * Exported because it once shipped in the tarball reachable from nothing. The
14
+ * package subpath resolves to this directory's index.js, so a module the index
15
+ * does not re-export is published and unimportable — a consumer measured it at runtime, got 13
16
16
  * names, and correctly refused to deep-import past the exports map to reach the
17
17
  * fourteenth. They kept a thirty-line copy instead, which is the right call and
18
18
  * exactly the duplication axes-at.ts was extracted to prevent.
@@ -10,9 +10,9 @@ export { axisRegistry, axisKeys } from './axes.js';
10
10
  * editor's floating chrome. era's portalling components go through AxisRelay;
11
11
  * these have no context to relay through and no markup to spread onto.
12
12
  *
13
- * Exported because it shipped in the tarball reachable from nothing. `./*`
14
- * resolves to a directory's index.js, so a module the index does not re-export
15
- * is published and unimportable — a consumer measured it at runtime, got 13
13
+ * Exported because it once shipped in the tarball reachable from nothing. The
14
+ * package subpath resolves to this directory's index.js, so a module the index
15
+ * does not re-export is published and unimportable — a consumer measured it at runtime, got 13
16
16
  * names, and correctly refused to deep-import past the exports map to reach the
17
17
  * fourteenth. They kept a thirty-line copy instead, which is the right call and
18
18
  * exactly the duplication axes-at.ts was extracted to prevent.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signal9/era-ui",
3
- "version": "33.0.1",
3
+ "version": "34.0.1",
4
4
  "packageManager": "npm@11.19.0",
5
5
  "engines": {
6
6
  "node": ">=24 <27",
@@ -36,6 +36,10 @@
36
36
  "check:agent-guidance": "node --experimental-strip-types scripts/check-agent-guidance.ts",
37
37
  "check:api": "node --experimental-strip-types scripts/check-api-report.ts",
38
38
  "api:update": "node --experimental-strip-types scripts/check-api-report.ts --update",
39
+ "api:update:breaking": "node --experimental-strip-types scripts/check-api-report.ts --update --breaking",
40
+ "check:css-api": "node --experimental-strip-types scripts/check-css-api.ts",
41
+ "css-api:update": "node --experimental-strip-types scripts/check-css-api.ts --update",
42
+ "css-api:update:breaking": "node --experimental-strip-types scripts/check-css-api.ts --update --breaking",
39
43
  "check:package-consumer": "node scripts/check-package-consumer.mjs",
40
44
  "check:themes": "node --experimental-strip-types scripts/check-themes.ts",
41
45
  "check:classes": "node --experimental-strip-types scripts/check-classes.ts",
@@ -68,7 +72,7 @@
68
72
  },
69
73
  "files": [
70
74
  "dist",
71
- "skill",
75
+ "skills/era-ui",
72
76
  "CHANGELOG.md",
73
77
  "!dist/**/*.test.*",
74
78
  "!dist/**/*.spec.*",
@@ -93,20 +97,480 @@
93
97
  "svelte": "./dist/index.js",
94
98
  "default": "./dist/index.js"
95
99
  },
96
- "./*": {
97
- "types": "./dist/ui/*/index.d.ts",
98
- "svelte": "./dist/ui/*/index.js",
99
- "default": "./dist/ui/*/index.js"
100
+ "./accordion": {
101
+ "types": "./dist/ui/accordion/index.d.ts",
102
+ "svelte": "./dist/ui/accordion/index.js",
103
+ "default": "./dist/ui/accordion/index.js"
104
+ },
105
+ "./alert-dialog": {
106
+ "types": "./dist/ui/alert-dialog/index.d.ts",
107
+ "svelte": "./dist/ui/alert-dialog/index.js",
108
+ "default": "./dist/ui/alert-dialog/index.js"
109
+ },
110
+ "./aspect-ratio": {
111
+ "types": "./dist/ui/aspect-ratio/index.d.ts",
112
+ "svelte": "./dist/ui/aspect-ratio/index.js",
113
+ "default": "./dist/ui/aspect-ratio/index.js"
114
+ },
115
+ "./avatar": {
116
+ "types": "./dist/ui/avatar/index.d.ts",
117
+ "svelte": "./dist/ui/avatar/index.js",
118
+ "default": "./dist/ui/avatar/index.js"
119
+ },
120
+ "./badge": {
121
+ "types": "./dist/ui/badge/index.d.ts",
122
+ "svelte": "./dist/ui/badge/index.js",
123
+ "default": "./dist/ui/badge/index.js"
124
+ },
125
+ "./bar": {
126
+ "types": "./dist/ui/bar/index.d.ts",
127
+ "svelte": "./dist/ui/bar/index.js",
128
+ "default": "./dist/ui/bar/index.js"
129
+ },
130
+ "./button": {
131
+ "types": "./dist/ui/button/index.d.ts",
132
+ "svelte": "./dist/ui/button/index.js",
133
+ "default": "./dist/ui/button/index.js"
134
+ },
135
+ "./button-group": {
136
+ "types": "./dist/ui/button-group/index.d.ts",
137
+ "svelte": "./dist/ui/button-group/index.js",
138
+ "default": "./dist/ui/button-group/index.js"
139
+ },
140
+ "./calendar": {
141
+ "types": "./dist/ui/calendar/index.d.ts",
142
+ "svelte": "./dist/ui/calendar/index.js",
143
+ "default": "./dist/ui/calendar/index.js"
144
+ },
145
+ "./card": {
146
+ "types": "./dist/ui/card/index.d.ts",
147
+ "svelte": "./dist/ui/card/index.js",
148
+ "default": "./dist/ui/card/index.js"
149
+ },
150
+ "./checkbox": {
151
+ "types": "./dist/ui/checkbox/index.d.ts",
152
+ "svelte": "./dist/ui/checkbox/index.js",
153
+ "default": "./dist/ui/checkbox/index.js"
154
+ },
155
+ "./chip": {
156
+ "types": "./dist/ui/chip/index.d.ts",
157
+ "svelte": "./dist/ui/chip/index.js",
158
+ "default": "./dist/ui/chip/index.js"
159
+ },
160
+ "./code-block": {
161
+ "types": "./dist/ui/code-block/index.d.ts",
162
+ "svelte": "./dist/ui/code-block/index.js",
163
+ "default": "./dist/ui/code-block/index.js"
164
+ },
165
+ "./collapsible": {
166
+ "types": "./dist/ui/collapsible/index.d.ts",
167
+ "svelte": "./dist/ui/collapsible/index.js",
168
+ "default": "./dist/ui/collapsible/index.js"
169
+ },
170
+ "./combobox": {
171
+ "types": "./dist/ui/combobox/index.d.ts",
172
+ "svelte": "./dist/ui/combobox/index.js",
173
+ "default": "./dist/ui/combobox/index.js"
174
+ },
175
+ "./command": {
176
+ "types": "./dist/ui/command/index.d.ts",
177
+ "svelte": "./dist/ui/command/index.js",
178
+ "default": "./dist/ui/command/index.js"
179
+ },
180
+ "./command-bar": {
181
+ "types": "./dist/ui/command-bar/index.d.ts",
182
+ "svelte": "./dist/ui/command-bar/index.js",
183
+ "default": "./dist/ui/command-bar/index.js"
184
+ },
185
+ "./context-menu": {
186
+ "types": "./dist/ui/context-menu/index.d.ts",
187
+ "svelte": "./dist/ui/context-menu/index.js",
188
+ "default": "./dist/ui/context-menu/index.js"
189
+ },
190
+ "./copy-button": {
191
+ "types": "./dist/ui/copy-button/index.d.ts",
192
+ "svelte": "./dist/ui/copy-button/index.js",
193
+ "default": "./dist/ui/copy-button/index.js"
194
+ },
195
+ "./cycle": {
196
+ "types": "./dist/ui/cycle/index.d.ts",
197
+ "svelte": "./dist/ui/cycle/index.js",
198
+ "default": "./dist/ui/cycle/index.js"
199
+ },
200
+ "./date-field": {
201
+ "types": "./dist/ui/date-field/index.d.ts",
202
+ "svelte": "./dist/ui/date-field/index.js",
203
+ "default": "./dist/ui/date-field/index.js"
204
+ },
205
+ "./date-picker": {
206
+ "types": "./dist/ui/date-picker/index.d.ts",
207
+ "svelte": "./dist/ui/date-picker/index.js",
208
+ "default": "./dist/ui/date-picker/index.js"
209
+ },
210
+ "./date-range-field": {
211
+ "types": "./dist/ui/date-range-field/index.d.ts",
212
+ "svelte": "./dist/ui/date-range-field/index.js",
213
+ "default": "./dist/ui/date-range-field/index.js"
214
+ },
215
+ "./date-range-picker": {
216
+ "types": "./dist/ui/date-range-picker/index.d.ts",
217
+ "svelte": "./dist/ui/date-range-picker/index.js",
218
+ "default": "./dist/ui/date-range-picker/index.js"
219
+ },
220
+ "./dialog": {
221
+ "types": "./dist/ui/dialog/index.d.ts",
222
+ "svelte": "./dist/ui/dialog/index.js",
223
+ "default": "./dist/ui/dialog/index.js"
224
+ },
225
+ "./dropdown-menu": {
226
+ "types": "./dist/ui/dropdown-menu/index.d.ts",
227
+ "svelte": "./dist/ui/dropdown-menu/index.js",
228
+ "default": "./dist/ui/dropdown-menu/index.js"
229
+ },
230
+ "./file-upload": {
231
+ "types": "./dist/ui/file-upload/index.d.ts",
232
+ "svelte": "./dist/ui/file-upload/index.js",
233
+ "default": "./dist/ui/file-upload/index.js"
234
+ },
235
+ "./input": {
236
+ "types": "./dist/ui/input/index.d.ts",
237
+ "svelte": "./dist/ui/input/index.js",
238
+ "default": "./dist/ui/input/index.js"
239
+ },
240
+ "./kv": {
241
+ "types": "./dist/ui/kv/index.d.ts",
242
+ "svelte": "./dist/ui/kv/index.js",
243
+ "default": "./dist/ui/kv/index.js"
244
+ },
245
+ "./label": {
246
+ "types": "./dist/ui/label/index.d.ts",
247
+ "svelte": "./dist/ui/label/index.js",
248
+ "default": "./dist/ui/label/index.js"
249
+ },
250
+ "./link-preview": {
251
+ "types": "./dist/ui/link-preview/index.d.ts",
252
+ "svelte": "./dist/ui/link-preview/index.js",
253
+ "default": "./dist/ui/link-preview/index.js"
254
+ },
255
+ "./logo": {
256
+ "types": "./dist/ui/logo/index.d.ts",
257
+ "svelte": "./dist/ui/logo/index.js",
258
+ "default": "./dist/ui/logo/index.js"
259
+ },
260
+ "./menu": {
261
+ "types": "./dist/ui/menu/index.d.ts",
262
+ "svelte": "./dist/ui/menu/index.js",
263
+ "default": "./dist/ui/menu/index.js"
264
+ },
265
+ "./menubar": {
266
+ "types": "./dist/ui/menubar/index.d.ts",
267
+ "svelte": "./dist/ui/menubar/index.js",
268
+ "default": "./dist/ui/menubar/index.js"
269
+ },
270
+ "./meter": {
271
+ "types": "./dist/ui/meter/index.d.ts",
272
+ "svelte": "./dist/ui/meter/index.js",
273
+ "default": "./dist/ui/meter/index.js"
274
+ },
275
+ "./mode": {
276
+ "types": "./dist/ui/mode/index.d.ts",
277
+ "svelte": "./dist/ui/mode/index.js",
278
+ "default": "./dist/ui/mode/index.js"
279
+ },
280
+ "./nav": {
281
+ "types": "./dist/ui/nav/index.d.ts",
282
+ "svelte": "./dist/ui/nav/index.js",
283
+ "default": "./dist/ui/nav/index.js"
284
+ },
285
+ "./navigation-menu": {
286
+ "types": "./dist/ui/navigation-menu/index.d.ts",
287
+ "svelte": "./dist/ui/navigation-menu/index.js",
288
+ "default": "./dist/ui/navigation-menu/index.js"
289
+ },
290
+ "./pagination": {
291
+ "types": "./dist/ui/pagination/index.d.ts",
292
+ "svelte": "./dist/ui/pagination/index.js",
293
+ "default": "./dist/ui/pagination/index.js"
294
+ },
295
+ "./pane": {
296
+ "types": "./dist/ui/pane/index.d.ts",
297
+ "svelte": "./dist/ui/pane/index.js",
298
+ "default": "./dist/ui/pane/index.js"
299
+ },
300
+ "./pin-input": {
301
+ "types": "./dist/ui/pin-input/index.d.ts",
302
+ "svelte": "./dist/ui/pin-input/index.js",
303
+ "default": "./dist/ui/pin-input/index.js"
304
+ },
305
+ "./popover": {
306
+ "types": "./dist/ui/popover/index.d.ts",
307
+ "svelte": "./dist/ui/popover/index.js",
308
+ "default": "./dist/ui/popover/index.js"
309
+ },
310
+ "./progress": {
311
+ "types": "./dist/ui/progress/index.d.ts",
312
+ "svelte": "./dist/ui/progress/index.js",
313
+ "default": "./dist/ui/progress/index.js"
314
+ },
315
+ "./provider": {
316
+ "types": "./dist/ui/provider/index.d.ts",
317
+ "svelte": "./dist/ui/provider/index.js",
318
+ "default": "./dist/ui/provider/index.js"
319
+ },
320
+ "./radio-group": {
321
+ "types": "./dist/ui/radio-group/index.d.ts",
322
+ "svelte": "./dist/ui/radio-group/index.js",
323
+ "default": "./dist/ui/radio-group/index.js"
324
+ },
325
+ "./range-calendar": {
326
+ "types": "./dist/ui/range-calendar/index.d.ts",
327
+ "svelte": "./dist/ui/range-calendar/index.js",
328
+ "default": "./dist/ui/range-calendar/index.js"
329
+ },
330
+ "./rating-group": {
331
+ "types": "./dist/ui/rating-group/index.d.ts",
332
+ "svelte": "./dist/ui/rating-group/index.js",
333
+ "default": "./dist/ui/rating-group/index.js"
334
+ },
335
+ "./scroll-area": {
336
+ "types": "./dist/ui/scroll-area/index.d.ts",
337
+ "svelte": "./dist/ui/scroll-area/index.js",
338
+ "default": "./dist/ui/scroll-area/index.js"
339
+ },
340
+ "./select": {
341
+ "types": "./dist/ui/select/index.d.ts",
342
+ "svelte": "./dist/ui/select/index.js",
343
+ "default": "./dist/ui/select/index.js"
344
+ },
345
+ "./separator": {
346
+ "types": "./dist/ui/separator/index.d.ts",
347
+ "svelte": "./dist/ui/separator/index.js",
348
+ "default": "./dist/ui/separator/index.js"
349
+ },
350
+ "./sheet": {
351
+ "types": "./dist/ui/sheet/index.d.ts",
352
+ "svelte": "./dist/ui/sheet/index.js",
353
+ "default": "./dist/ui/sheet/index.js"
354
+ },
355
+ "./skeleton": {
356
+ "types": "./dist/ui/skeleton/index.d.ts",
357
+ "svelte": "./dist/ui/skeleton/index.js",
358
+ "default": "./dist/ui/skeleton/index.js"
359
+ },
360
+ "./slider": {
361
+ "types": "./dist/ui/slider/index.d.ts",
362
+ "svelte": "./dist/ui/slider/index.js",
363
+ "default": "./dist/ui/slider/index.js"
364
+ },
365
+ "./step": {
366
+ "types": "./dist/ui/step/index.d.ts",
367
+ "svelte": "./dist/ui/step/index.js",
368
+ "default": "./dist/ui/step/index.js"
369
+ },
370
+ "./switch": {
371
+ "types": "./dist/ui/switch/index.d.ts",
372
+ "svelte": "./dist/ui/switch/index.js",
373
+ "default": "./dist/ui/switch/index.js"
374
+ },
375
+ "./table": {
376
+ "types": "./dist/ui/table/index.d.ts",
377
+ "svelte": "./dist/ui/table/index.js",
378
+ "default": "./dist/ui/table/index.js"
379
+ },
380
+ "./tabs": {
381
+ "types": "./dist/ui/tabs/index.d.ts",
382
+ "svelte": "./dist/ui/tabs/index.js",
383
+ "default": "./dist/ui/tabs/index.js"
384
+ },
385
+ "./time-field": {
386
+ "types": "./dist/ui/time-field/index.d.ts",
387
+ "svelte": "./dist/ui/time-field/index.js",
388
+ "default": "./dist/ui/time-field/index.js"
389
+ },
390
+ "./time-range-field": {
391
+ "types": "./dist/ui/time-range-field/index.d.ts",
392
+ "svelte": "./dist/ui/time-range-field/index.js",
393
+ "default": "./dist/ui/time-range-field/index.js"
394
+ },
395
+ "./timeline": {
396
+ "types": "./dist/ui/timeline/index.d.ts",
397
+ "svelte": "./dist/ui/timeline/index.js",
398
+ "default": "./dist/ui/timeline/index.js"
399
+ },
400
+ "./toggle": {
401
+ "types": "./dist/ui/toggle/index.d.ts",
402
+ "svelte": "./dist/ui/toggle/index.js",
403
+ "default": "./dist/ui/toggle/index.js"
404
+ },
405
+ "./toggle-group": {
406
+ "types": "./dist/ui/toggle-group/index.d.ts",
407
+ "svelte": "./dist/ui/toggle-group/index.js",
408
+ "default": "./dist/ui/toggle-group/index.js"
409
+ },
410
+ "./toolbar": {
411
+ "types": "./dist/ui/toolbar/index.d.ts",
412
+ "svelte": "./dist/ui/toolbar/index.js",
413
+ "default": "./dist/ui/toolbar/index.js"
414
+ },
415
+ "./tooltip": {
416
+ "types": "./dist/ui/tooltip/index.d.ts",
417
+ "svelte": "./dist/ui/tooltip/index.js",
418
+ "default": "./dist/ui/tooltip/index.js"
419
+ },
420
+ "./tree": {
421
+ "types": "./dist/ui/tree/index.d.ts",
422
+ "svelte": "./dist/ui/tree/index.js",
423
+ "default": "./dist/ui/tree/index.js"
424
+ },
425
+ "./video-player": {
426
+ "types": "./dist/ui/video-player/index.d.ts",
427
+ "svelte": "./dist/ui/video-player/index.js",
428
+ "default": "./dist/ui/video-player/index.js"
100
429
  },
101
430
  "./ai": {
102
431
  "types": "./dist/ai/index.d.ts",
103
432
  "svelte": "./dist/ai/index.js",
104
433
  "default": "./dist/ai/index.js"
105
434
  },
106
- "./ai/*": {
107
- "types": "./dist/ai/*/index.d.ts",
108
- "svelte": "./dist/ai/*/index.js",
109
- "default": "./dist/ai/*/index.js"
435
+ "./ai/actions": {
436
+ "types": "./dist/ai/actions/index.d.ts",
437
+ "svelte": "./dist/ai/actions/index.js",
438
+ "default": "./dist/ai/actions/index.js"
439
+ },
440
+ "./ai/artifact": {
441
+ "types": "./dist/ai/artifact/index.d.ts",
442
+ "svelte": "./dist/ai/artifact/index.js",
443
+ "default": "./dist/ai/artifact/index.js"
444
+ },
445
+ "./ai/chain-of-thought": {
446
+ "types": "./dist/ai/chain-of-thought/index.d.ts",
447
+ "svelte": "./dist/ai/chain-of-thought/index.js",
448
+ "default": "./dist/ai/chain-of-thought/index.js"
449
+ },
450
+ "./ai/confirmation": {
451
+ "types": "./dist/ai/confirmation/index.d.ts",
452
+ "svelte": "./dist/ai/confirmation/index.js",
453
+ "default": "./dist/ai/confirmation/index.js"
454
+ },
455
+ "./ai/context": {
456
+ "types": "./dist/ai/context/index.d.ts",
457
+ "svelte": "./dist/ai/context/index.js",
458
+ "default": "./dist/ai/context/index.js"
459
+ },
460
+ "./ai/conversation": {
461
+ "types": "./dist/ai/conversation/index.d.ts",
462
+ "svelte": "./dist/ai/conversation/index.js",
463
+ "default": "./dist/ai/conversation/index.js"
464
+ },
465
+ "./ai/conversations": {
466
+ "types": "./dist/ai/conversations/index.d.ts",
467
+ "svelte": "./dist/ai/conversations/index.js",
468
+ "default": "./dist/ai/conversations/index.js"
469
+ },
470
+ "./ai/error-panel": {
471
+ "types": "./dist/ai/error-panel/index.d.ts",
472
+ "svelte": "./dist/ai/error-panel/index.js",
473
+ "default": "./dist/ai/error-panel/index.js"
474
+ },
475
+ "./ai/inline-citation": {
476
+ "types": "./dist/ai/inline-citation/index.d.ts",
477
+ "svelte": "./dist/ai/inline-citation/index.js",
478
+ "default": "./dist/ai/inline-citation/index.js"
479
+ },
480
+ "./ai/message": {
481
+ "types": "./dist/ai/message/index.d.ts",
482
+ "svelte": "./dist/ai/message/index.js",
483
+ "default": "./dist/ai/message/index.js"
484
+ },
485
+ "./ai/model-selector": {
486
+ "types": "./dist/ai/model-selector/index.d.ts",
487
+ "svelte": "./dist/ai/model-selector/index.js",
488
+ "default": "./dist/ai/model-selector/index.js"
489
+ },
490
+ "./ai/open-in-chat": {
491
+ "types": "./dist/ai/open-in-chat/index.d.ts",
492
+ "svelte": "./dist/ai/open-in-chat/index.js",
493
+ "default": "./dist/ai/open-in-chat/index.js"
494
+ },
495
+ "./ai/plan": {
496
+ "types": "./dist/ai/plan/index.d.ts",
497
+ "svelte": "./dist/ai/plan/index.js",
498
+ "default": "./dist/ai/plan/index.js"
499
+ },
500
+ "./ai/prompt-input": {
501
+ "types": "./dist/ai/prompt-input/index.d.ts",
502
+ "svelte": "./dist/ai/prompt-input/index.js",
503
+ "default": "./dist/ai/prompt-input/index.js"
504
+ },
505
+ "./ai/queue": {
506
+ "types": "./dist/ai/queue/index.d.ts",
507
+ "svelte": "./dist/ai/queue/index.js",
508
+ "default": "./dist/ai/queue/index.js"
509
+ },
510
+ "./ai/reasoning": {
511
+ "types": "./dist/ai/reasoning/index.d.ts",
512
+ "svelte": "./dist/ai/reasoning/index.js",
513
+ "default": "./dist/ai/reasoning/index.js"
514
+ },
515
+ "./ai/response": {
516
+ "types": "./dist/ai/response/index.d.ts",
517
+ "svelte": "./dist/ai/response/index.js",
518
+ "default": "./dist/ai/response/index.js"
519
+ },
520
+ "./ai/run-status": {
521
+ "types": "./dist/ai/run-status/index.d.ts",
522
+ "svelte": "./dist/ai/run-status/index.js",
523
+ "default": "./dist/ai/run-status/index.js"
524
+ },
525
+ "./ai/runtime-feed": {
526
+ "types": "./dist/ai/runtime-feed/index.d.ts",
527
+ "svelte": "./dist/ai/runtime-feed/index.js",
528
+ "default": "./dist/ai/runtime-feed/index.js"
529
+ },
530
+ "./ai/sources": {
531
+ "types": "./dist/ai/sources/index.d.ts",
532
+ "svelte": "./dist/ai/sources/index.js",
533
+ "default": "./dist/ai/sources/index.js"
534
+ },
535
+ "./ai/structured-value": {
536
+ "types": "./dist/ai/structured-value/index.d.ts",
537
+ "svelte": "./dist/ai/structured-value/index.js",
538
+ "default": "./dist/ai/structured-value/index.js"
539
+ },
540
+ "./ai/suggestion": {
541
+ "types": "./dist/ai/suggestion/index.d.ts",
542
+ "svelte": "./dist/ai/suggestion/index.js",
543
+ "default": "./dist/ai/suggestion/index.js"
544
+ },
545
+ "./ai/swarm": {
546
+ "types": "./dist/ai/swarm/index.d.ts",
547
+ "svelte": "./dist/ai/swarm/index.js",
548
+ "default": "./dist/ai/swarm/index.js"
549
+ },
550
+ "./ai/task": {
551
+ "types": "./dist/ai/task/index.d.ts",
552
+ "svelte": "./dist/ai/task/index.js",
553
+ "default": "./dist/ai/task/index.js"
554
+ },
555
+ "./ai/todo": {
556
+ "types": "./dist/ai/todo/index.d.ts",
557
+ "svelte": "./dist/ai/todo/index.js",
558
+ "default": "./dist/ai/todo/index.js"
559
+ },
560
+ "./ai/tool": {
561
+ "types": "./dist/ai/tool/index.d.ts",
562
+ "svelte": "./dist/ai/tool/index.js",
563
+ "default": "./dist/ai/tool/index.js"
564
+ },
565
+ "./ai/web-preview": {
566
+ "types": "./dist/ai/web-preview/index.d.ts",
567
+ "svelte": "./dist/ai/web-preview/index.js",
568
+ "default": "./dist/ai/web-preview/index.js"
569
+ },
570
+ "./ai/workflow": {
571
+ "types": "./dist/ai/workflow/index.d.ts",
572
+ "svelte": "./dist/ai/workflow/index.js",
573
+ "default": "./dist/ai/workflow/index.js"
110
574
  },
111
575
  "./theme": {
112
576
  "types": "./dist/theme/index.d.ts",