@vertz/theme-shadcn 0.2.22 → 0.2.24
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.
- package/dist/base.d.ts +2 -1
- package/dist/base.js +4 -2
- package/dist/configs.js +1 -1
- package/dist/index.d.ts +272 -443
- package/dist/index.js +891 -1085
- package/dist/shared/{chunk-gjsm05ga.js → chunk-f0wk9320.js} +4 -2
- package/dist/shared/{chunk-gzfp8m46.js → chunk-kmh677y0.js} +1 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { GlobalCSSOutput, Theme } from "@vertz/ui";
|
|
2
|
+
/** Color token values: a map of color names to contextual/shade values. */
|
|
3
|
+
type PaletteTokens = Record<string, Record<string, string>>;
|
|
2
4
|
type PaletteName = "zinc" | "slate" | "stone" | "neutral" | "gray";
|
|
5
|
+
declare const palettes: Record<PaletteName, PaletteTokens>;
|
|
3
6
|
/**
|
|
4
7
|
* Visual style preset. Each style applies different spacing, border-radius,
|
|
5
8
|
* colors, and visual treatment to all components.
|
|
@@ -31,151 +34,25 @@ interface ResolvedThemeBase {
|
|
|
31
34
|
/** Global CSS (reset, typography, radius). Auto-injected via globalCss(). */
|
|
32
35
|
globals: GlobalCSSOutput;
|
|
33
36
|
}
|
|
34
|
-
|
|
35
|
-
import {
|
|
37
|
+
declare const RADIUS_VALUES: Record<"none" | "sm" | "md" | "lg" | "xl", string>;
|
|
38
|
+
import { VariantFunction as VariantFunction3 } from "@vertz/ui";
|
|
39
|
+
import { ComposedAlertProps, ComposedBadgeProps, ComposedButtonProps, ComposedInputProps, ComposedLabelProps, ComposedPaginationProps, ComposedSeparatorProps, ComposedSkeletonCircleProps, ComposedSkeletonProps, ComposedSkeletonTextProps, ComposedTextareaProps, StyledPrimitive, ToastOptions as ToastOptions2 } from "@vertz/ui-primitives";
|
|
40
|
+
import { ComposedAlert, ComposedAvatar, ComposedBreadcrumb, ComposedCard, ComposedEmptyState, ComposedFormGroup, ComposedTable } from "@vertz/ui-primitives";
|
|
36
41
|
import { ChildValue } from "@vertz/ui";
|
|
37
|
-
interface AlertProps {
|
|
38
|
-
variant?: "default" | "destructive";
|
|
39
|
-
className?: string;
|
|
40
|
-
/** @deprecated Use `className` instead. */
|
|
41
|
-
class?: string;
|
|
42
|
-
children?: ChildValue;
|
|
43
|
-
}
|
|
44
|
-
interface AlertComponents {
|
|
45
|
-
Alert: (props: AlertProps) => HTMLDivElement;
|
|
46
|
-
AlertTitle: (props: AlertProps) => HTMLHeadingElement;
|
|
47
|
-
AlertDescription: (props: AlertProps) => HTMLDivElement;
|
|
48
|
-
}
|
|
49
|
-
import { ChildValue as ChildValue2 } from "@vertz/ui";
|
|
50
|
-
interface AvatarProps {
|
|
51
|
-
className?: string;
|
|
52
|
-
/** @deprecated Use `className` instead. */
|
|
53
|
-
class?: string;
|
|
54
|
-
children?: ChildValue2;
|
|
55
|
-
}
|
|
56
|
-
interface AvatarImageProps {
|
|
57
|
-
src: string;
|
|
58
|
-
alt: string;
|
|
59
|
-
className?: string;
|
|
60
|
-
/** @deprecated Use `className` instead. */
|
|
61
|
-
class?: string;
|
|
62
|
-
}
|
|
63
|
-
interface AvatarComponents {
|
|
64
|
-
Avatar: (props: AvatarProps) => HTMLDivElement;
|
|
65
|
-
AvatarImage: (props: AvatarImageProps) => HTMLImageElement;
|
|
66
|
-
AvatarFallback: (props: AvatarProps) => HTMLDivElement;
|
|
67
|
-
}
|
|
68
|
-
import { ChildValue as ChildValue3 } from "@vertz/ui";
|
|
69
|
-
interface BadgeProps {
|
|
70
|
-
color?: string;
|
|
71
|
-
className?: string;
|
|
72
|
-
/** @deprecated Use `className` instead. */
|
|
73
|
-
class?: string;
|
|
74
|
-
children?: ChildValue3;
|
|
75
|
-
}
|
|
76
|
-
interface BreadcrumbItem {
|
|
77
|
-
label: string;
|
|
78
|
-
href?: string;
|
|
79
|
-
}
|
|
80
|
-
interface BreadcrumbProps {
|
|
81
|
-
items: BreadcrumbItem[];
|
|
82
|
-
separator?: string;
|
|
83
|
-
className?: string;
|
|
84
|
-
/** @deprecated Use `className` instead. */
|
|
85
|
-
class?: string;
|
|
86
|
-
}
|
|
87
|
-
type BreadcrumbComponents = (props: BreadcrumbProps) => HTMLElement;
|
|
88
|
-
import { ChildValue as ChildValue4 } from "@vertz/ui";
|
|
89
|
-
import { ElementEventHandlers } from "@vertz/ui-primitives";
|
|
90
|
-
interface ButtonProps extends ElementEventHandlers {
|
|
91
|
-
intent?: string;
|
|
92
|
-
size?: string;
|
|
93
|
-
className?: string;
|
|
94
|
-
/** @deprecated Use `className` instead. */
|
|
95
|
-
class?: string;
|
|
96
|
-
children?: ChildValue4;
|
|
97
|
-
disabled?: boolean;
|
|
98
|
-
type?: "button" | "submit" | "reset";
|
|
99
|
-
[key: string]: unknown;
|
|
100
|
-
}
|
|
101
|
-
import { ChildValue as ChildValue5 } from "@vertz/ui";
|
|
102
|
-
interface CardProps {
|
|
103
|
-
className?: string;
|
|
104
|
-
/** @deprecated Use `className` instead. */
|
|
105
|
-
class?: string;
|
|
106
|
-
children?: ChildValue5;
|
|
107
|
-
}
|
|
108
|
-
interface CardComponents {
|
|
109
|
-
Card: (props: CardProps) => HTMLDivElement;
|
|
110
|
-
CardHeader: (props: CardProps) => HTMLDivElement;
|
|
111
|
-
CardTitle: (props: CardProps) => HTMLHeadingElement;
|
|
112
|
-
CardDescription: (props: CardProps) => HTMLParagraphElement;
|
|
113
|
-
CardContent: (props: CardProps) => HTMLDivElement;
|
|
114
|
-
CardFooter: (props: CardProps) => HTMLDivElement;
|
|
115
|
-
CardAction: (props: CardProps) => HTMLDivElement;
|
|
116
|
-
}
|
|
117
|
-
import { ChildValue as ChildValue6 } from "@vertz/ui";
|
|
118
|
-
interface FormGroupProps {
|
|
119
|
-
className?: string;
|
|
120
|
-
/** @deprecated Use `className` instead. */
|
|
121
|
-
class?: string;
|
|
122
|
-
children?: ChildValue6;
|
|
123
|
-
}
|
|
124
|
-
interface FormErrorProps {
|
|
125
|
-
className?: string;
|
|
126
|
-
/** @deprecated Use `className` instead. */
|
|
127
|
-
class?: string;
|
|
128
|
-
children?: ChildValue6;
|
|
129
|
-
}
|
|
130
|
-
interface FormGroupComponents {
|
|
131
|
-
FormGroup: (props: FormGroupProps) => HTMLDivElement;
|
|
132
|
-
FormError: (props: FormErrorProps) => HTMLSpanElement;
|
|
133
|
-
}
|
|
134
|
-
import { ElementEventHandlers as ElementEventHandlers2 } from "@vertz/ui-primitives";
|
|
135
|
-
interface InputProps extends ElementEventHandlers2 {
|
|
136
|
-
className?: string;
|
|
137
|
-
/** @deprecated Use `className` instead. */
|
|
138
|
-
class?: string;
|
|
139
|
-
name?: string;
|
|
140
|
-
placeholder?: string;
|
|
141
|
-
type?: string;
|
|
142
|
-
disabled?: boolean;
|
|
143
|
-
value?: string;
|
|
144
|
-
[key: string]: unknown;
|
|
145
|
-
}
|
|
146
|
-
import { ChildValue as ChildValue7 } from "@vertz/ui";
|
|
147
|
-
interface LabelProps {
|
|
148
|
-
className?: string;
|
|
149
|
-
/** @deprecated Use `className` instead. */
|
|
150
|
-
class?: string;
|
|
151
|
-
for?: string;
|
|
152
|
-
children?: ChildValue7;
|
|
153
|
-
}
|
|
154
|
-
interface PaginationProps {
|
|
155
|
-
currentPage: number;
|
|
156
|
-
totalPages: number;
|
|
157
|
-
onPageChange: (page: number) => void;
|
|
158
|
-
siblingCount?: number;
|
|
159
|
-
className?: string;
|
|
160
|
-
/** @deprecated Use `className` instead. */
|
|
161
|
-
class?: string;
|
|
162
|
-
}
|
|
163
|
-
type PaginationComponents = (props: PaginationProps) => HTMLElement;
|
|
164
|
-
import { ChildValue as ChildValue8 } from "@vertz/ui";
|
|
165
42
|
interface AccordionRootProps {
|
|
166
43
|
type?: "single" | "multiple";
|
|
167
44
|
defaultValue?: string[];
|
|
168
|
-
children?:
|
|
45
|
+
children?: ChildValue;
|
|
169
46
|
}
|
|
170
47
|
interface AccordionSlotProps {
|
|
171
|
-
children?:
|
|
48
|
+
children?: ChildValue;
|
|
172
49
|
className?: string;
|
|
173
50
|
/** @deprecated Use `className` instead. */
|
|
174
51
|
class?: string;
|
|
175
52
|
}
|
|
176
53
|
interface AccordionItemProps {
|
|
177
54
|
value: string;
|
|
178
|
-
children?:
|
|
55
|
+
children?: ChildValue;
|
|
179
56
|
className?: string;
|
|
180
57
|
/** @deprecated Use `className` instead. */
|
|
181
58
|
class?: string;
|
|
@@ -186,33 +63,6 @@ interface ThemedAccordionComponent {
|
|
|
186
63
|
Trigger: (props: AccordionSlotProps) => HTMLElement;
|
|
187
64
|
Content: (props: AccordionSlotProps) => HTMLElement;
|
|
188
65
|
}
|
|
189
|
-
import { ChildValue as ChildValue9 } from "@vertz/ui";
|
|
190
|
-
interface AlertDialogRootProps {
|
|
191
|
-
children?: ChildValue9;
|
|
192
|
-
onOpenChange?: (open: boolean) => void;
|
|
193
|
-
onAction?: () => void;
|
|
194
|
-
}
|
|
195
|
-
interface AlertDialogSlotProps {
|
|
196
|
-
children?: ChildValue9;
|
|
197
|
-
className?: string;
|
|
198
|
-
/** @deprecated Use `className` instead. */
|
|
199
|
-
class?: string;
|
|
200
|
-
}
|
|
201
|
-
interface AlertDialogButtonSlotProps extends AlertDialogSlotProps {
|
|
202
|
-
onClick?: () => void;
|
|
203
|
-
disabled?: boolean;
|
|
204
|
-
}
|
|
205
|
-
interface ThemedAlertDialogComponent {
|
|
206
|
-
(props: AlertDialogRootProps): HTMLElement;
|
|
207
|
-
Trigger: (props: AlertDialogSlotProps) => HTMLElement;
|
|
208
|
-
Content: (props: AlertDialogSlotProps) => HTMLElement;
|
|
209
|
-
Header: (props: AlertDialogSlotProps) => HTMLElement;
|
|
210
|
-
Title: (props: AlertDialogSlotProps) => HTMLElement;
|
|
211
|
-
Description: (props: AlertDialogSlotProps) => HTMLElement;
|
|
212
|
-
Footer: (props: AlertDialogSlotProps) => HTMLElement;
|
|
213
|
-
Cancel: (props: AlertDialogButtonSlotProps) => HTMLElement;
|
|
214
|
-
Action: (props: AlertDialogButtonSlotProps) => HTMLElement;
|
|
215
|
-
}
|
|
216
66
|
import { ComposedCalendarProps } from "@vertz/ui-primitives";
|
|
217
67
|
interface CalendarRootProps {
|
|
218
68
|
mode?: ComposedCalendarProps["mode"];
|
|
@@ -224,18 +74,19 @@ interface CalendarRootProps {
|
|
|
224
74
|
weekStartsOn?: ComposedCalendarProps["weekStartsOn"];
|
|
225
75
|
onValueChange?: ComposedCalendarProps["onValueChange"];
|
|
226
76
|
onMonthChange?: (month: Date) => void;
|
|
77
|
+
captionLayout?: ComposedCalendarProps["captionLayout"];
|
|
227
78
|
}
|
|
228
79
|
type ThemedCalendarComponent = (props: CalendarRootProps) => HTMLElement;
|
|
229
|
-
import { ChildValue as
|
|
80
|
+
import { ChildValue as ChildValue2 } from "@vertz/ui";
|
|
230
81
|
interface CarouselRootProps {
|
|
231
82
|
orientation?: "horizontal" | "vertical";
|
|
232
83
|
loop?: boolean;
|
|
233
84
|
defaultIndex?: number;
|
|
234
85
|
onSlideChange?: (index: number) => void;
|
|
235
|
-
children?:
|
|
86
|
+
children?: ChildValue2;
|
|
236
87
|
}
|
|
237
88
|
interface CarouselSlotProps {
|
|
238
|
-
children?:
|
|
89
|
+
children?: ChildValue2;
|
|
239
90
|
className?: string;
|
|
240
91
|
/** @deprecated Use `className` instead. */
|
|
241
92
|
class?: string;
|
|
@@ -246,24 +97,24 @@ interface ThemedCarouselComponent {
|
|
|
246
97
|
Previous: (props: CarouselSlotProps) => HTMLElement;
|
|
247
98
|
Next: (props: CarouselSlotProps) => HTMLElement;
|
|
248
99
|
}
|
|
249
|
-
import { ChildValue as
|
|
100
|
+
import { ChildValue as ChildValue3 } from "@vertz/ui";
|
|
250
101
|
import { CheckedState } from "@vertz/ui-primitives";
|
|
251
102
|
interface CheckboxRootProps {
|
|
252
|
-
children?:
|
|
103
|
+
children?: ChildValue3;
|
|
253
104
|
defaultChecked?: CheckedState;
|
|
254
105
|
disabled?: boolean;
|
|
255
106
|
onCheckedChange?: (checked: CheckedState) => void;
|
|
256
107
|
}
|
|
257
108
|
type ThemedCheckboxComponent = (props: CheckboxRootProps) => HTMLElement;
|
|
258
|
-
import { ChildValue as
|
|
109
|
+
import { ChildValue as ChildValue4 } from "@vertz/ui";
|
|
259
110
|
interface CollapsibleRootProps {
|
|
260
111
|
defaultOpen?: boolean;
|
|
261
112
|
disabled?: boolean;
|
|
262
113
|
onOpenChange?: (open: boolean) => void;
|
|
263
|
-
children?:
|
|
114
|
+
children?: ChildValue4;
|
|
264
115
|
}
|
|
265
116
|
interface CollapsibleSlotProps {
|
|
266
|
-
children?:
|
|
117
|
+
children?: ChildValue4;
|
|
267
118
|
className?: string;
|
|
268
119
|
/** @deprecated Use `className` instead. */
|
|
269
120
|
class?: string;
|
|
@@ -273,23 +124,23 @@ interface ThemedCollapsibleComponent {
|
|
|
273
124
|
Trigger: (props: CollapsibleSlotProps) => HTMLElement;
|
|
274
125
|
Content: (props: CollapsibleSlotProps) => HTMLElement;
|
|
275
126
|
}
|
|
276
|
-
import { ChildValue as
|
|
127
|
+
import { ChildValue as ChildValue5 } from "@vertz/ui";
|
|
277
128
|
interface CommandRootProps {
|
|
278
129
|
filter?: (value: string, search: string) => boolean;
|
|
279
130
|
onSelect?: (value: string) => void;
|
|
280
131
|
onInputChange?: (value: string) => void;
|
|
281
132
|
placeholder?: string;
|
|
282
|
-
children?:
|
|
133
|
+
children?: ChildValue5;
|
|
283
134
|
}
|
|
284
135
|
interface CommandSlotProps {
|
|
285
|
-
children?:
|
|
136
|
+
children?: ChildValue5;
|
|
286
137
|
className?: string;
|
|
287
138
|
/** @deprecated Use `className` instead. */
|
|
288
139
|
class?: string;
|
|
289
140
|
}
|
|
290
141
|
interface CommandItemProps {
|
|
291
142
|
value: string;
|
|
292
|
-
children?:
|
|
143
|
+
children?: ChildValue5;
|
|
293
144
|
keywords?: string[];
|
|
294
145
|
className?: string;
|
|
295
146
|
/** @deprecated Use `className` instead. */
|
|
@@ -297,7 +148,7 @@ interface CommandItemProps {
|
|
|
297
148
|
}
|
|
298
149
|
interface CommandGroupProps {
|
|
299
150
|
label: string;
|
|
300
|
-
children?:
|
|
151
|
+
children?: ChildValue5;
|
|
301
152
|
className?: string;
|
|
302
153
|
/** @deprecated Use `className` instead. */
|
|
303
154
|
class?: string;
|
|
@@ -311,33 +162,33 @@ interface ThemedCommandComponent {
|
|
|
311
162
|
Group: (props: CommandGroupProps) => HTMLElement;
|
|
312
163
|
Separator: (props: CommandSlotProps) => HTMLElement;
|
|
313
164
|
}
|
|
314
|
-
import { ChildValue as
|
|
165
|
+
import { ChildValue as ChildValue6 } from "@vertz/ui";
|
|
315
166
|
interface ContextMenuRootProps {
|
|
316
167
|
onSelect?: (value: string) => void;
|
|
317
|
-
children?:
|
|
168
|
+
children?: ChildValue6;
|
|
318
169
|
}
|
|
319
170
|
interface ContextMenuSlotProps {
|
|
320
|
-
children?:
|
|
171
|
+
children?: ChildValue6;
|
|
321
172
|
className?: string;
|
|
322
173
|
/** @deprecated Use `className` instead. */
|
|
323
174
|
class?: string;
|
|
324
175
|
}
|
|
325
176
|
interface ContextMenuItemProps {
|
|
326
177
|
value: string;
|
|
327
|
-
children?:
|
|
178
|
+
children?: ChildValue6;
|
|
328
179
|
className?: string;
|
|
329
180
|
/** @deprecated Use `className` instead. */
|
|
330
181
|
class?: string;
|
|
331
182
|
}
|
|
332
183
|
interface ContextMenuGroupProps {
|
|
333
184
|
label: string;
|
|
334
|
-
children?:
|
|
185
|
+
children?: ChildValue6;
|
|
335
186
|
className?: string;
|
|
336
187
|
/** @deprecated Use `className` instead. */
|
|
337
188
|
class?: string;
|
|
338
189
|
}
|
|
339
190
|
interface ContextMenuLabelProps {
|
|
340
|
-
children?:
|
|
191
|
+
children?: ChildValue6;
|
|
341
192
|
className?: string;
|
|
342
193
|
/** @deprecated Use `className` instead. */
|
|
343
194
|
class?: string;
|
|
@@ -351,7 +202,8 @@ interface ThemedContextMenuComponent {
|
|
|
351
202
|
Label: (props: ContextMenuLabelProps) => HTMLElement;
|
|
352
203
|
Separator: (props: ContextMenuSlotProps) => HTMLElement;
|
|
353
204
|
}
|
|
354
|
-
import { ChildValue as
|
|
205
|
+
import { ChildValue as ChildValue7 } from "@vertz/ui";
|
|
206
|
+
import { ComposedCalendarProps as ComposedCalendarProps2 } from "@vertz/ui-primitives";
|
|
355
207
|
interface DatePickerRootProps {
|
|
356
208
|
mode?: "single" | "range";
|
|
357
209
|
defaultValue?: Date | {
|
|
@@ -369,10 +221,11 @@ interface DatePickerRootProps {
|
|
|
369
221
|
to: Date;
|
|
370
222
|
} | null) => void;
|
|
371
223
|
onOpenChange?: (open: boolean) => void;
|
|
372
|
-
|
|
224
|
+
captionLayout?: ComposedCalendarProps2["captionLayout"];
|
|
225
|
+
children?: ChildValue7;
|
|
373
226
|
}
|
|
374
227
|
interface DatePickerSlotProps {
|
|
375
|
-
children?:
|
|
228
|
+
children?: ChildValue7;
|
|
376
229
|
className?: string;
|
|
377
230
|
/** @deprecated Use `className` instead. */
|
|
378
231
|
class?: string;
|
|
@@ -382,40 +235,33 @@ interface ThemedDatePickerComponent {
|
|
|
382
235
|
Trigger: (props: DatePickerSlotProps) => HTMLElement;
|
|
383
236
|
Content: (props: DatePickerSlotProps) => HTMLElement;
|
|
384
237
|
}
|
|
385
|
-
import { ChildValue as
|
|
386
|
-
|
|
387
|
-
children?: ChildValue16;
|
|
388
|
-
onOpenChange?: (open: boolean) => void;
|
|
389
|
-
}
|
|
238
|
+
import { ChildValue as ChildValue8 } from "@vertz/ui";
|
|
239
|
+
import { JSX } from "@vertz/ui/jsx-runtime";
|
|
390
240
|
interface DialogSlotProps {
|
|
391
|
-
children?:
|
|
241
|
+
children?: ChildValue8;
|
|
392
242
|
className?: string;
|
|
393
243
|
/** @deprecated Use `className` instead. */
|
|
394
244
|
class?: string;
|
|
395
245
|
}
|
|
396
|
-
interface DialogContentProps extends DialogSlotProps {
|
|
397
|
-
showClose?: boolean;
|
|
398
|
-
}
|
|
399
246
|
interface ThemedDialogComponent {
|
|
400
|
-
(props:
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
Close: (props: DialogSlotProps) => HTMLElement;
|
|
247
|
+
Header: (props: DialogSlotProps) => JSX.Element;
|
|
248
|
+
Title: (props: DialogSlotProps) => JSX.Element;
|
|
249
|
+
Description: (props: DialogSlotProps) => JSX.Element;
|
|
250
|
+
Footer: (props: DialogSlotProps) => JSX.Element;
|
|
251
|
+
Body: (props: DialogSlotProps) => JSX.Element;
|
|
252
|
+
Close: (props: DialogSlotProps) => JSX.Element;
|
|
253
|
+
Cancel: (props: DialogSlotProps) => JSX.Element;
|
|
408
254
|
}
|
|
409
|
-
import { ChildValue as
|
|
255
|
+
import { ChildValue as ChildValue9 } from "@vertz/ui";
|
|
410
256
|
import { SheetSide } from "@vertz/ui-primitives";
|
|
411
257
|
type DrawerSide = SheetSide;
|
|
412
258
|
interface DrawerRootProps {
|
|
413
259
|
side?: DrawerSide;
|
|
414
260
|
onOpenChange?: (open: boolean) => void;
|
|
415
|
-
children?:
|
|
261
|
+
children?: ChildValue9;
|
|
416
262
|
}
|
|
417
263
|
interface DrawerSlotProps {
|
|
418
|
-
children?:
|
|
264
|
+
children?: ChildValue9;
|
|
419
265
|
className?: string;
|
|
420
266
|
/** @deprecated Use `className` instead. */
|
|
421
267
|
class?: string;
|
|
@@ -430,34 +276,34 @@ interface ThemedDrawerComponent {
|
|
|
430
276
|
Footer: (props: DrawerSlotProps) => HTMLElement;
|
|
431
277
|
Handle: (props: DrawerSlotProps) => HTMLElement;
|
|
432
278
|
}
|
|
433
|
-
import { ChildValue as
|
|
279
|
+
import { ChildValue as ChildValue10 } from "@vertz/ui";
|
|
434
280
|
interface DropdownMenuRootProps {
|
|
435
281
|
onSelect?: (value: string) => void;
|
|
436
282
|
onOpenChange?: (open: boolean) => void;
|
|
437
|
-
children?:
|
|
283
|
+
children?: ChildValue10;
|
|
438
284
|
}
|
|
439
285
|
interface DropdownMenuSlotProps {
|
|
440
|
-
children?:
|
|
286
|
+
children?: ChildValue10;
|
|
441
287
|
className?: string;
|
|
442
288
|
/** @deprecated Use `className` instead. */
|
|
443
289
|
class?: string;
|
|
444
290
|
}
|
|
445
291
|
interface DropdownMenuItemProps {
|
|
446
292
|
value: string;
|
|
447
|
-
children?:
|
|
293
|
+
children?: ChildValue10;
|
|
448
294
|
className?: string;
|
|
449
295
|
/** @deprecated Use `className` instead. */
|
|
450
296
|
class?: string;
|
|
451
297
|
}
|
|
452
298
|
interface DropdownMenuGroupProps {
|
|
453
299
|
label: string;
|
|
454
|
-
children?:
|
|
300
|
+
children?: ChildValue10;
|
|
455
301
|
className?: string;
|
|
456
302
|
/** @deprecated Use `className` instead. */
|
|
457
303
|
class?: string;
|
|
458
304
|
}
|
|
459
305
|
interface DropdownMenuLabelProps {
|
|
460
|
-
children?:
|
|
306
|
+
children?: ChildValue10;
|
|
461
307
|
className?: string;
|
|
462
308
|
/** @deprecated Use `className` instead. */
|
|
463
309
|
class?: string;
|
|
@@ -471,15 +317,15 @@ interface ThemedDropdownMenuComponent {
|
|
|
471
317
|
Label: (props: DropdownMenuLabelProps) => HTMLElement;
|
|
472
318
|
Separator: (props: DropdownMenuSlotProps) => HTMLElement;
|
|
473
319
|
}
|
|
474
|
-
import { ChildValue as
|
|
320
|
+
import { ChildValue as ChildValue11 } from "@vertz/ui";
|
|
475
321
|
interface HoverCardRootProps {
|
|
476
322
|
openDelay?: number;
|
|
477
323
|
closeDelay?: number;
|
|
478
324
|
onOpenChange?: (open: boolean) => void;
|
|
479
|
-
children?:
|
|
325
|
+
children?: ChildValue11;
|
|
480
326
|
}
|
|
481
327
|
interface HoverCardSlotProps {
|
|
482
|
-
children?:
|
|
328
|
+
children?: ChildValue11;
|
|
483
329
|
className?: string;
|
|
484
330
|
/** @deprecated Use `className` instead. */
|
|
485
331
|
class?: string;
|
|
@@ -489,37 +335,37 @@ interface ThemedHoverCardComponent {
|
|
|
489
335
|
Trigger: (props: HoverCardSlotProps) => HTMLElement;
|
|
490
336
|
Content: (props: HoverCardSlotProps) => HTMLElement;
|
|
491
337
|
}
|
|
492
|
-
import { ChildValue as
|
|
338
|
+
import { ChildValue as ChildValue12 } from "@vertz/ui";
|
|
493
339
|
interface MenubarRootProps {
|
|
494
340
|
onSelect?: (value: string) => void;
|
|
495
|
-
children?:
|
|
341
|
+
children?: ChildValue12;
|
|
496
342
|
}
|
|
497
343
|
interface MenubarMenuProps {
|
|
498
344
|
value: string;
|
|
499
|
-
children?:
|
|
345
|
+
children?: ChildValue12;
|
|
500
346
|
}
|
|
501
347
|
interface MenubarSlotProps {
|
|
502
|
-
children?:
|
|
348
|
+
children?: ChildValue12;
|
|
503
349
|
className?: string;
|
|
504
350
|
/** @deprecated Use `className` instead. */
|
|
505
351
|
class?: string;
|
|
506
352
|
}
|
|
507
353
|
interface MenubarItemProps {
|
|
508
354
|
value: string;
|
|
509
|
-
children?:
|
|
355
|
+
children?: ChildValue12;
|
|
510
356
|
className?: string;
|
|
511
357
|
/** @deprecated Use `className` instead. */
|
|
512
358
|
class?: string;
|
|
513
359
|
}
|
|
514
360
|
interface MenubarGroupProps {
|
|
515
361
|
label: string;
|
|
516
|
-
children?:
|
|
362
|
+
children?: ChildValue12;
|
|
517
363
|
className?: string;
|
|
518
364
|
/** @deprecated Use `className` instead. */
|
|
519
365
|
class?: string;
|
|
520
366
|
}
|
|
521
367
|
interface MenubarLabelProps {
|
|
522
|
-
children?:
|
|
368
|
+
children?: ChildValue12;
|
|
523
369
|
className?: string;
|
|
524
370
|
/** @deprecated Use `className` instead. */
|
|
525
371
|
class?: string;
|
|
@@ -534,26 +380,26 @@ interface ThemedMenubarComponent {
|
|
|
534
380
|
Label: (props: MenubarLabelProps) => HTMLElement;
|
|
535
381
|
Separator: (props: MenubarSlotProps) => HTMLElement;
|
|
536
382
|
}
|
|
537
|
-
import { ChildValue as
|
|
383
|
+
import { ChildValue as ChildValue13 } from "@vertz/ui";
|
|
538
384
|
interface NavigationMenuRootProps {
|
|
539
385
|
orientation?: "horizontal" | "vertical";
|
|
540
386
|
delayOpen?: number;
|
|
541
387
|
delayClose?: number;
|
|
542
|
-
children?:
|
|
388
|
+
children?: ChildValue13;
|
|
543
389
|
}
|
|
544
390
|
interface NavigationMenuSlotProps {
|
|
545
|
-
children?:
|
|
391
|
+
children?: ChildValue13;
|
|
546
392
|
className?: string;
|
|
547
393
|
/** @deprecated Use `className` instead. */
|
|
548
394
|
class?: string;
|
|
549
395
|
}
|
|
550
396
|
interface NavigationMenuItemProps {
|
|
551
397
|
value: string;
|
|
552
|
-
children?:
|
|
398
|
+
children?: ChildValue13;
|
|
553
399
|
}
|
|
554
400
|
interface NavigationMenuLinkProps {
|
|
555
401
|
href: string;
|
|
556
|
-
children?:
|
|
402
|
+
children?: ChildValue13;
|
|
557
403
|
className?: string;
|
|
558
404
|
/** @deprecated Use `className` instead. */
|
|
559
405
|
class?: string;
|
|
@@ -572,13 +418,13 @@ interface ThemedNavigationMenuComponent {
|
|
|
572
418
|
Link: (props: NavigationMenuLinkProps) => HTMLElement;
|
|
573
419
|
Viewport: (props: NavigationMenuViewportProps) => HTMLElement;
|
|
574
420
|
}
|
|
575
|
-
import { ChildValue as
|
|
421
|
+
import { ChildValue as ChildValue14 } from "@vertz/ui";
|
|
576
422
|
interface PopoverRootProps {
|
|
577
423
|
onOpenChange?: (open: boolean) => void;
|
|
578
|
-
children?:
|
|
424
|
+
children?: ChildValue14;
|
|
579
425
|
}
|
|
580
426
|
interface PopoverSlotProps {
|
|
581
|
-
children?:
|
|
427
|
+
children?: ChildValue14;
|
|
582
428
|
className?: string;
|
|
583
429
|
/** @deprecated Use `className` instead. */
|
|
584
430
|
class?: string;
|
|
@@ -588,30 +434,30 @@ interface ThemedPopoverComponent {
|
|
|
588
434
|
Trigger: (props: PopoverSlotProps) => HTMLElement;
|
|
589
435
|
Content: (props: PopoverSlotProps) => HTMLElement;
|
|
590
436
|
}
|
|
591
|
-
import { ChildValue as
|
|
437
|
+
import { ChildValue as ChildValue15 } from "@vertz/ui";
|
|
592
438
|
interface ProgressRootProps {
|
|
593
|
-
children?:
|
|
439
|
+
children?: ChildValue15;
|
|
594
440
|
defaultValue?: number;
|
|
595
441
|
min?: number;
|
|
596
442
|
max?: number;
|
|
597
443
|
}
|
|
598
444
|
type ThemedProgressComponent = (props: ProgressRootProps) => HTMLElement;
|
|
599
|
-
import { ChildValue as
|
|
445
|
+
import { ChildValue as ChildValue16 } from "@vertz/ui";
|
|
600
446
|
interface RadioGroupRootProps {
|
|
601
|
-
children?:
|
|
447
|
+
children?: ChildValue16;
|
|
602
448
|
defaultValue?: string;
|
|
603
449
|
onValueChange?: (value: string) => void;
|
|
604
450
|
}
|
|
605
451
|
interface RadioGroupItemProps {
|
|
606
452
|
value: string;
|
|
607
453
|
disabled?: boolean;
|
|
608
|
-
children?:
|
|
454
|
+
children?: ChildValue16;
|
|
609
455
|
}
|
|
610
456
|
interface ThemedRadioGroupComponent {
|
|
611
457
|
(props: RadioGroupRootProps): HTMLElement;
|
|
612
458
|
Item: (props: RadioGroupItemProps) => HTMLElement;
|
|
613
459
|
}
|
|
614
|
-
import { ChildValue as
|
|
460
|
+
import { ChildValue as ChildValue17 } from "@vertz/ui";
|
|
615
461
|
import { PanelOptions } from "@vertz/ui-primitives";
|
|
616
462
|
interface ResizablePanelStyleClasses {
|
|
617
463
|
readonly root: string;
|
|
@@ -621,10 +467,10 @@ interface ResizablePanelStyleClasses {
|
|
|
621
467
|
interface ResizablePanelRootProps {
|
|
622
468
|
orientation?: "horizontal" | "vertical";
|
|
623
469
|
onResize?: (sizes: number[]) => void;
|
|
624
|
-
children?:
|
|
470
|
+
children?: ChildValue17;
|
|
625
471
|
}
|
|
626
472
|
interface ResizablePanelPanelProps extends PanelOptions {
|
|
627
|
-
children?:
|
|
473
|
+
children?: ChildValue17;
|
|
628
474
|
className?: string;
|
|
629
475
|
/** @deprecated Use `className` instead. */
|
|
630
476
|
class?: string;
|
|
@@ -640,35 +486,35 @@ interface ThemedResizablePanelComponent {
|
|
|
640
486
|
Handle: (props: ResizablePanelHandleProps) => HTMLElement;
|
|
641
487
|
}
|
|
642
488
|
declare function createThemedResizablePanel(styles: ResizablePanelStyleClasses): ThemedResizablePanelComponent;
|
|
643
|
-
import { ChildValue as
|
|
489
|
+
import { ChildValue as ChildValue18 } from "@vertz/ui";
|
|
644
490
|
interface ScrollAreaRootProps {
|
|
645
491
|
orientation?: "vertical" | "horizontal" | "both";
|
|
646
|
-
children?:
|
|
492
|
+
children?: ChildValue18;
|
|
647
493
|
}
|
|
648
494
|
type ThemedScrollAreaComponent = (props: ScrollAreaRootProps) => HTMLElement;
|
|
649
|
-
import { ChildValue as
|
|
495
|
+
import { ChildValue as ChildValue19 } from "@vertz/ui";
|
|
650
496
|
interface SelectRootProps {
|
|
651
497
|
defaultValue?: string;
|
|
652
498
|
placeholder?: string;
|
|
653
499
|
onValueChange?: (value: string) => void;
|
|
654
|
-
children?:
|
|
500
|
+
children?: ChildValue19;
|
|
655
501
|
}
|
|
656
502
|
interface SelectSlotProps {
|
|
657
|
-
children?:
|
|
503
|
+
children?: ChildValue19;
|
|
658
504
|
className?: string;
|
|
659
505
|
/** @deprecated Use `className` instead. */
|
|
660
506
|
class?: string;
|
|
661
507
|
}
|
|
662
508
|
interface SelectItemProps {
|
|
663
509
|
value: string;
|
|
664
|
-
children?:
|
|
510
|
+
children?: ChildValue19;
|
|
665
511
|
className?: string;
|
|
666
512
|
/** @deprecated Use `className` instead. */
|
|
667
513
|
class?: string;
|
|
668
514
|
}
|
|
669
515
|
interface SelectGroupProps {
|
|
670
516
|
label: string;
|
|
671
|
-
children?:
|
|
517
|
+
children?: ChildValue19;
|
|
672
518
|
className?: string;
|
|
673
519
|
/** @deprecated Use `className` instead. */
|
|
674
520
|
class?: string;
|
|
@@ -681,15 +527,15 @@ interface ThemedSelectComponent {
|
|
|
681
527
|
Group: (props: SelectGroupProps) => HTMLElement;
|
|
682
528
|
Separator: (props: SelectSlotProps) => HTMLElement;
|
|
683
529
|
}
|
|
684
|
-
import { ChildValue as
|
|
530
|
+
import { ChildValue as ChildValue20 } from "@vertz/ui";
|
|
685
531
|
import { SheetSide as SheetSide2 } from "@vertz/ui-primitives";
|
|
686
532
|
interface SheetRootProps {
|
|
687
533
|
side?: SheetSide2;
|
|
688
534
|
onOpenChange?: (open: boolean) => void;
|
|
689
|
-
children?:
|
|
535
|
+
children?: ChildValue20;
|
|
690
536
|
}
|
|
691
537
|
interface SheetSlotProps {
|
|
692
|
-
children?:
|
|
538
|
+
children?: ChildValue20;
|
|
693
539
|
className?: string;
|
|
694
540
|
/** @deprecated Use `className` instead. */
|
|
695
541
|
class?: string;
|
|
@@ -705,9 +551,9 @@ interface ThemedSheetComponent {
|
|
|
705
551
|
Description: (props: SheetSlotProps) => HTMLElement;
|
|
706
552
|
Close: (props: SheetSlotProps) => HTMLElement;
|
|
707
553
|
}
|
|
708
|
-
import { ChildValue as
|
|
554
|
+
import { ChildValue as ChildValue21 } from "@vertz/ui";
|
|
709
555
|
interface SliderRootProps {
|
|
710
|
-
children?:
|
|
556
|
+
children?: ChildValue21;
|
|
711
557
|
defaultValue?: number;
|
|
712
558
|
min?: number;
|
|
713
559
|
max?: number;
|
|
@@ -716,37 +562,37 @@ interface SliderRootProps {
|
|
|
716
562
|
onValueChange?: (value: number) => void;
|
|
717
563
|
}
|
|
718
564
|
type ThemedSliderComponent = (props: SliderRootProps) => HTMLElement;
|
|
719
|
-
import { ChildValue as
|
|
565
|
+
import { ChildValue as ChildValue22 } from "@vertz/ui";
|
|
720
566
|
interface ThemedSwitchProps {
|
|
721
|
-
children?:
|
|
567
|
+
children?: ChildValue22;
|
|
722
568
|
defaultChecked?: boolean;
|
|
723
569
|
disabled?: boolean;
|
|
724
570
|
onCheckedChange?: (checked: boolean) => void;
|
|
725
571
|
size?: "default" | "sm";
|
|
726
572
|
}
|
|
727
573
|
type ThemedSwitchComponent = (props: ThemedSwitchProps) => HTMLElement;
|
|
728
|
-
import { ChildValue as
|
|
574
|
+
import { ChildValue as ChildValue23 } from "@vertz/ui";
|
|
729
575
|
interface TabsRootProps {
|
|
730
576
|
defaultValue?: string;
|
|
731
577
|
variant?: "default" | "line";
|
|
732
|
-
children?:
|
|
578
|
+
children?: ChildValue23;
|
|
733
579
|
}
|
|
734
580
|
interface TabsSlotProps {
|
|
735
|
-
children?:
|
|
581
|
+
children?: ChildValue23;
|
|
736
582
|
className?: string;
|
|
737
583
|
/** @deprecated Use `className` instead. */
|
|
738
584
|
class?: string;
|
|
739
585
|
}
|
|
740
586
|
interface TabsTriggerProps {
|
|
741
587
|
value: string;
|
|
742
|
-
children?:
|
|
588
|
+
children?: ChildValue23;
|
|
743
589
|
className?: string;
|
|
744
590
|
/** @deprecated Use `className` instead. */
|
|
745
591
|
class?: string;
|
|
746
592
|
}
|
|
747
593
|
interface TabsContentProps {
|
|
748
594
|
value: string;
|
|
749
|
-
children?:
|
|
595
|
+
children?: ChildValue23;
|
|
750
596
|
className?: string;
|
|
751
597
|
/** @deprecated Use `className` instead. */
|
|
752
598
|
class?: string;
|
|
@@ -763,17 +609,17 @@ type ThemedToastResult = ToastElements & {
|
|
|
763
609
|
announce: (content: string) => ToastMessage;
|
|
764
610
|
dismiss: (id: string) => void;
|
|
765
611
|
};
|
|
766
|
-
import { ChildValue as
|
|
612
|
+
import { ChildValue as ChildValue24 } from "@vertz/ui";
|
|
767
613
|
interface ToggleRootProps {
|
|
768
|
-
children?:
|
|
614
|
+
children?: ChildValue24;
|
|
769
615
|
defaultPressed?: boolean;
|
|
770
616
|
disabled?: boolean;
|
|
771
617
|
onPressedChange?: (pressed: boolean) => void;
|
|
772
618
|
}
|
|
773
619
|
type ThemedToggleComponent = (props: ToggleRootProps) => HTMLElement;
|
|
774
|
-
import { ChildValue as
|
|
620
|
+
import { ChildValue as ChildValue25 } from "@vertz/ui";
|
|
775
621
|
interface ToggleGroupRootProps {
|
|
776
|
-
children?:
|
|
622
|
+
children?: ChildValue25;
|
|
777
623
|
type?: "single" | "multiple";
|
|
778
624
|
defaultValue?: string[];
|
|
779
625
|
orientation?: "horizontal" | "vertical";
|
|
@@ -782,19 +628,19 @@ interface ToggleGroupRootProps {
|
|
|
782
628
|
}
|
|
783
629
|
interface ToggleGroupItemProps {
|
|
784
630
|
value: string;
|
|
785
|
-
children?:
|
|
631
|
+
children?: ChildValue25;
|
|
786
632
|
}
|
|
787
633
|
interface ThemedToggleGroupComponent {
|
|
788
634
|
(props: ToggleGroupRootProps): HTMLElement;
|
|
789
635
|
Item: (props: ToggleGroupItemProps) => HTMLElement;
|
|
790
636
|
}
|
|
791
|
-
import { ChildValue as
|
|
637
|
+
import { ChildValue as ChildValue26 } from "@vertz/ui";
|
|
792
638
|
interface TooltipRootProps {
|
|
793
639
|
delay?: number;
|
|
794
|
-
children?:
|
|
640
|
+
children?: ChildValue26;
|
|
795
641
|
}
|
|
796
642
|
interface TooltipSlotProps {
|
|
797
|
-
children?:
|
|
643
|
+
children?: ChildValue26;
|
|
798
644
|
className?: string;
|
|
799
645
|
/** @deprecated Use `className` instead. */
|
|
800
646
|
class?: string;
|
|
@@ -804,144 +650,102 @@ interface ThemedTooltipComponent {
|
|
|
804
650
|
Trigger: (props: TooltipSlotProps) => HTMLElement;
|
|
805
651
|
Content: (props: TooltipSlotProps) => HTMLElement;
|
|
806
652
|
}
|
|
807
|
-
|
|
808
|
-
orientation?: "horizontal" | "vertical";
|
|
809
|
-
className?: string;
|
|
810
|
-
/** @deprecated Use `className` instead. */
|
|
811
|
-
class?: string;
|
|
812
|
-
}
|
|
813
|
-
interface SkeletonProps {
|
|
814
|
-
className?: string;
|
|
815
|
-
/** @deprecated Use `className` instead. */
|
|
816
|
-
class?: string;
|
|
817
|
-
width?: string;
|
|
818
|
-
height?: string;
|
|
819
|
-
}
|
|
820
|
-
interface SkeletonComponents {
|
|
821
|
-
Skeleton: (props?: SkeletonProps) => HTMLDivElement;
|
|
822
|
-
}
|
|
823
|
-
import { ChildValue as ChildValue35 } from "@vertz/ui";
|
|
824
|
-
interface TableProps {
|
|
825
|
-
className?: string;
|
|
826
|
-
/** @deprecated Use `className` instead. */
|
|
827
|
-
class?: string;
|
|
828
|
-
children?: ChildValue35;
|
|
829
|
-
}
|
|
830
|
-
interface TableComponents {
|
|
831
|
-
Table: (props: TableProps) => HTMLDivElement;
|
|
832
|
-
TableHeader: (props: TableProps) => HTMLTableSectionElement;
|
|
833
|
-
TableBody: (props: TableProps) => HTMLTableSectionElement;
|
|
834
|
-
TableRow: (props: TableProps) => HTMLTableRowElement;
|
|
835
|
-
TableHead: (props: TableProps) => HTMLTableCellElement;
|
|
836
|
-
TableCell: (props: TableProps) => HTMLTableCellElement;
|
|
837
|
-
TableCaption: (props: TableProps) => HTMLTableCaptionElement;
|
|
838
|
-
TableFooter: (props: TableProps) => HTMLTableSectionElement;
|
|
839
|
-
}
|
|
840
|
-
import { ElementEventHandlers as ElementEventHandlers3 } from "@vertz/ui-primitives";
|
|
841
|
-
interface TextareaProps extends ElementEventHandlers3 {
|
|
842
|
-
className?: string;
|
|
843
|
-
/** @deprecated Use `className` instead. */
|
|
844
|
-
class?: string;
|
|
845
|
-
name?: string;
|
|
846
|
-
placeholder?: string;
|
|
847
|
-
disabled?: boolean;
|
|
848
|
-
value?: string;
|
|
849
|
-
rows?: number;
|
|
850
|
-
[key: string]: unknown;
|
|
851
|
-
}
|
|
852
|
-
import { CSSOutput as CSSOutput15, StyleEntry as StyleEntry6 } from "@vertz/ui";
|
|
653
|
+
import { CSSOutput as CSSOutput4, StyleEntry as StyleEntry5 } from "@vertz/ui";
|
|
853
654
|
type BreadcrumbBlocks = {
|
|
854
|
-
nav:
|
|
855
|
-
list:
|
|
856
|
-
item:
|
|
857
|
-
link:
|
|
858
|
-
page:
|
|
859
|
-
separator:
|
|
655
|
+
nav: StyleEntry5[];
|
|
656
|
+
list: StyleEntry5[];
|
|
657
|
+
item: StyleEntry5[];
|
|
658
|
+
link: StyleEntry5[];
|
|
659
|
+
page: StyleEntry5[];
|
|
660
|
+
separator: StyleEntry5[];
|
|
860
661
|
};
|
|
861
662
|
/** Create breadcrumb css() styles. */
|
|
862
|
-
declare function createBreadcrumbStyles():
|
|
863
|
-
import { CSSOutput as
|
|
663
|
+
declare function createBreadcrumbStyles(): CSSOutput4<BreadcrumbBlocks>;
|
|
664
|
+
import { CSSOutput as CSSOutput5, StyleEntry as StyleEntry7 } from "@vertz/ui";
|
|
864
665
|
type CalendarBlocks = {
|
|
865
|
-
root:
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
666
|
+
root: StyleEntry7[];
|
|
667
|
+
rootNoBorder: StyleEntry7[];
|
|
668
|
+
header: StyleEntry7[];
|
|
669
|
+
title: StyleEntry7[];
|
|
670
|
+
navButton: StyleEntry7[];
|
|
671
|
+
grid: StyleEntry7[];
|
|
672
|
+
headCell: StyleEntry7[];
|
|
673
|
+
cell: StyleEntry7[];
|
|
674
|
+
dayButton: StyleEntry7[];
|
|
675
|
+
monthSelect: StyleEntry7[];
|
|
676
|
+
yearSelect: StyleEntry7[];
|
|
873
677
|
};
|
|
874
678
|
/** Create calendar css() styles. */
|
|
875
|
-
declare function createCalendarStyles():
|
|
876
|
-
import { CSSOutput as
|
|
679
|
+
declare function createCalendarStyles(): CSSOutput5<CalendarBlocks>;
|
|
680
|
+
import { CSSOutput as CSSOutput7, StyleEntry as StyleEntry8 } from "@vertz/ui";
|
|
877
681
|
type CarouselBlocks = {
|
|
878
|
-
root:
|
|
879
|
-
viewport:
|
|
880
|
-
slide:
|
|
881
|
-
prevButton:
|
|
882
|
-
nextButton:
|
|
682
|
+
root: StyleEntry8[];
|
|
683
|
+
viewport: StyleEntry8[];
|
|
684
|
+
slide: StyleEntry8[];
|
|
685
|
+
prevButton: StyleEntry8[];
|
|
686
|
+
nextButton: StyleEntry8[];
|
|
883
687
|
};
|
|
884
688
|
/** Create carousel css() styles following shadcn conventions. */
|
|
885
|
-
declare function createCarouselStyles():
|
|
886
|
-
import { CSSOutput as
|
|
689
|
+
declare function createCarouselStyles(): CSSOutput7<CarouselBlocks>;
|
|
690
|
+
import { CSSOutput as CSSOutput9, StyleEntry as StyleEntry10 } from "@vertz/ui";
|
|
887
691
|
type CollapsibleBlocks = {
|
|
888
|
-
content:
|
|
692
|
+
content: StyleEntry10[];
|
|
889
693
|
};
|
|
890
694
|
/** Create collapsible css() styles. */
|
|
891
|
-
declare function createCollapsibleStyles():
|
|
892
|
-
import { CSSOutput as
|
|
695
|
+
declare function createCollapsibleStyles(): CSSOutput9<CollapsibleBlocks>;
|
|
696
|
+
import { CSSOutput as CSSOutput10, StyleEntry as StyleEntry11 } from "@vertz/ui";
|
|
893
697
|
type CommandBlocks = {
|
|
894
|
-
root:
|
|
895
|
-
input:
|
|
896
|
-
list:
|
|
897
|
-
item:
|
|
898
|
-
group:
|
|
899
|
-
groupHeading:
|
|
900
|
-
separator:
|
|
901
|
-
empty:
|
|
698
|
+
root: StyleEntry11[];
|
|
699
|
+
input: StyleEntry11[];
|
|
700
|
+
list: StyleEntry11[];
|
|
701
|
+
item: StyleEntry11[];
|
|
702
|
+
group: StyleEntry11[];
|
|
703
|
+
groupHeading: StyleEntry11[];
|
|
704
|
+
separator: StyleEntry11[];
|
|
705
|
+
empty: StyleEntry11[];
|
|
902
706
|
};
|
|
903
707
|
/** Create command css() styles. */
|
|
904
|
-
declare function createCommandStyles():
|
|
905
|
-
import { CSSOutput as
|
|
708
|
+
declare function createCommandStyles(): CSSOutput10<CommandBlocks>;
|
|
709
|
+
import { CSSOutput as CSSOutput11, StyleEntry as StyleEntry12 } from "@vertz/ui";
|
|
906
710
|
type ContextMenuBlocks = {
|
|
907
|
-
content:
|
|
908
|
-
item:
|
|
909
|
-
group:
|
|
910
|
-
label:
|
|
911
|
-
separator:
|
|
711
|
+
content: StyleEntry12[];
|
|
712
|
+
item: StyleEntry12[];
|
|
713
|
+
group: StyleEntry12[];
|
|
714
|
+
label: StyleEntry12[];
|
|
715
|
+
separator: StyleEntry12[];
|
|
912
716
|
};
|
|
913
717
|
/** Create context-menu css() styles. */
|
|
914
|
-
declare function createContextMenuStyles():
|
|
915
|
-
import { CSSOutput as
|
|
718
|
+
declare function createContextMenuStyles(): CSSOutput11<ContextMenuBlocks>;
|
|
719
|
+
import { CSSOutput as CSSOutput12, StyleEntry as StyleEntry13 } from "@vertz/ui";
|
|
916
720
|
type DatePickerBlocks = {
|
|
917
|
-
trigger:
|
|
918
|
-
content:
|
|
721
|
+
trigger: StyleEntry13[];
|
|
722
|
+
content: StyleEntry13[];
|
|
919
723
|
};
|
|
920
724
|
/** Create date-picker css() styles. */
|
|
921
|
-
declare function createDatePickerStyles():
|
|
922
|
-
import { CSSOutput as
|
|
725
|
+
declare function createDatePickerStyles(): CSSOutput12<DatePickerBlocks>;
|
|
726
|
+
import { CSSOutput as CSSOutput14, StyleEntry as StyleEntry15 } from "@vertz/ui";
|
|
923
727
|
type DrawerBlocks = {
|
|
924
|
-
overlay:
|
|
925
|
-
panelLeft:
|
|
926
|
-
panelRight:
|
|
927
|
-
panelTop:
|
|
928
|
-
panelBottom:
|
|
929
|
-
header:
|
|
930
|
-
title:
|
|
931
|
-
description:
|
|
932
|
-
footer:
|
|
933
|
-
handle:
|
|
934
|
-
close:
|
|
728
|
+
overlay: StyleEntry15[];
|
|
729
|
+
panelLeft: StyleEntry15[];
|
|
730
|
+
panelRight: StyleEntry15[];
|
|
731
|
+
panelTop: StyleEntry15[];
|
|
732
|
+
panelBottom: StyleEntry15[];
|
|
733
|
+
header: StyleEntry15[];
|
|
734
|
+
title: StyleEntry15[];
|
|
735
|
+
description: StyleEntry15[];
|
|
736
|
+
footer: StyleEntry15[];
|
|
737
|
+
handle: StyleEntry15[];
|
|
738
|
+
close: StyleEntry15[];
|
|
935
739
|
};
|
|
936
740
|
/** Create drawer css() styles. */
|
|
937
|
-
declare function createDrawerStyles():
|
|
938
|
-
import { CSSOutput as
|
|
741
|
+
declare function createDrawerStyles(): CSSOutput14<DrawerBlocks>;
|
|
742
|
+
import { CSSOutput as CSSOutput18, StyleEntry as StyleEntry18 } from "@vertz/ui";
|
|
939
743
|
type HoverCardBlocks = {
|
|
940
744
|
content: StyleEntry18[];
|
|
941
745
|
};
|
|
942
746
|
/** Create hover card css() styles. */
|
|
943
|
-
declare function createHoverCardStyles():
|
|
944
|
-
import { CSSOutput as
|
|
747
|
+
declare function createHoverCardStyles(): CSSOutput18<HoverCardBlocks>;
|
|
748
|
+
import { CSSOutput as CSSOutput21, StyleEntry as StyleEntry21 } from "@vertz/ui";
|
|
945
749
|
type MenubarBlocks = {
|
|
946
750
|
root: StyleEntry21[];
|
|
947
751
|
trigger: StyleEntry21[];
|
|
@@ -951,8 +755,8 @@ type MenubarBlocks = {
|
|
|
951
755
|
label: StyleEntry21[];
|
|
952
756
|
};
|
|
953
757
|
/** Create menubar css() styles. */
|
|
954
|
-
declare function createMenubarStyles():
|
|
955
|
-
import { CSSOutput as
|
|
758
|
+
declare function createMenubarStyles(): CSSOutput21<MenubarBlocks>;
|
|
759
|
+
import { CSSOutput as CSSOutput22, StyleEntry as StyleEntry22 } from "@vertz/ui";
|
|
956
760
|
type NavigationMenuBlocks = {
|
|
957
761
|
root: StyleEntry22[];
|
|
958
762
|
list: StyleEntry22[];
|
|
@@ -962,27 +766,28 @@ type NavigationMenuBlocks = {
|
|
|
962
766
|
viewport: StyleEntry22[];
|
|
963
767
|
};
|
|
964
768
|
/** Create navigation menu css() styles. */
|
|
965
|
-
declare function createNavigationMenuStyles():
|
|
966
|
-
import { CSSOutput as
|
|
769
|
+
declare function createNavigationMenuStyles(): CSSOutput22<NavigationMenuBlocks>;
|
|
770
|
+
import { CSSOutput as CSSOutput23, StyleEntry as StyleEntry23 } from "@vertz/ui";
|
|
967
771
|
type PaginationBlocks = {
|
|
968
772
|
nav: StyleEntry23[];
|
|
969
773
|
list: StyleEntry23[];
|
|
970
774
|
item: StyleEntry23[];
|
|
971
775
|
link: StyleEntry23[];
|
|
972
776
|
linkActive: StyleEntry23[];
|
|
777
|
+
navButton: StyleEntry23[];
|
|
973
778
|
ellipsis: StyleEntry23[];
|
|
974
779
|
};
|
|
975
780
|
/** Create pagination css() styles. */
|
|
976
|
-
declare function createPaginationStyles():
|
|
977
|
-
import { CSSOutput as
|
|
781
|
+
declare function createPaginationStyles(): CSSOutput23<PaginationBlocks>;
|
|
782
|
+
import { CSSOutput as CSSOutput27, StyleEntry as StyleEntry27 } from "@vertz/ui";
|
|
978
783
|
type ResizablePanelBlocks = {
|
|
979
784
|
root: StyleEntry27[];
|
|
980
785
|
panel: StyleEntry27[];
|
|
981
786
|
handle: StyleEntry27[];
|
|
982
787
|
};
|
|
983
788
|
/** Create resizable panel css() styles following shadcn conventions. */
|
|
984
|
-
declare function createResizablePanelStyles():
|
|
985
|
-
import { CSSOutput as
|
|
789
|
+
declare function createResizablePanelStyles(): CSSOutput27<ResizablePanelBlocks>;
|
|
790
|
+
import { CSSOutput as CSSOutput28, StyleEntry as StyleEntry28 } from "@vertz/ui";
|
|
986
791
|
type ScrollAreaBlocks = {
|
|
987
792
|
root: StyleEntry28[];
|
|
988
793
|
viewport: StyleEntry28[];
|
|
@@ -990,24 +795,24 @@ type ScrollAreaBlocks = {
|
|
|
990
795
|
thumb: StyleEntry28[];
|
|
991
796
|
};
|
|
992
797
|
/** Create scroll-area css() styles following shadcn conventions. */
|
|
993
|
-
declare function createScrollAreaStyles():
|
|
994
|
-
import { CSSOutput as
|
|
798
|
+
declare function createScrollAreaStyles(): CSSOutput28<ScrollAreaBlocks>;
|
|
799
|
+
import { CSSOutput as CSSOutput39, StyleEntry as StyleEntry39 } from "@vertz/ui";
|
|
995
800
|
type ToggleBlocks = {
|
|
996
801
|
root: StyleEntry39[];
|
|
997
802
|
};
|
|
998
803
|
/** Create toggle css() styles. */
|
|
999
|
-
declare function createToggleStyles():
|
|
1000
|
-
import { CSSOutput as
|
|
804
|
+
declare function createToggleStyles(): CSSOutput39<ToggleBlocks>;
|
|
805
|
+
import { CSSOutput as CSSOutput40, StyleEntry as StyleEntry40 } from "@vertz/ui";
|
|
1001
806
|
type ToggleGroupBlocks = {
|
|
1002
807
|
root: StyleEntry40[];
|
|
1003
808
|
item: StyleEntry40[];
|
|
1004
809
|
};
|
|
1005
810
|
/** Create toggle group css() styles. */
|
|
1006
|
-
declare function createToggleGroupStyles():
|
|
811
|
+
declare function createToggleGroupStyles(): CSSOutput40<ToggleGroupBlocks>;
|
|
1007
812
|
/** Pre-built style definitions returned by configureTheme(). */
|
|
1008
813
|
interface ThemeStyles {
|
|
1009
814
|
/** Button variant function: `button({ intent: 'primary', size: 'md' })` */
|
|
1010
|
-
button:
|
|
815
|
+
button: VariantFunction3<{
|
|
1011
816
|
intent: Record<string, string[]>;
|
|
1012
817
|
size: Record<string, string[]>;
|
|
1013
818
|
}>;
|
|
@@ -1020,7 +825,7 @@ interface ThemeStyles {
|
|
|
1020
825
|
readonly css: string;
|
|
1021
826
|
};
|
|
1022
827
|
/** Badge variant function: `badge({ color: 'blue' })` */
|
|
1023
|
-
badge:
|
|
828
|
+
badge: VariantFunction3<{
|
|
1024
829
|
color: Record<string, string[]>;
|
|
1025
830
|
}>;
|
|
1026
831
|
/** Card css() result with root, header, title, description, content, footer. */
|
|
@@ -1140,17 +945,6 @@ interface ThemeStyles {
|
|
|
1140
945
|
readonly thumb: string;
|
|
1141
946
|
readonly css: string;
|
|
1142
947
|
};
|
|
1143
|
-
/** AlertDialog css() styles. */
|
|
1144
|
-
alertDialog: {
|
|
1145
|
-
readonly overlay: string;
|
|
1146
|
-
readonly panel: string;
|
|
1147
|
-
readonly title: string;
|
|
1148
|
-
readonly description: string;
|
|
1149
|
-
readonly footer: string;
|
|
1150
|
-
readonly cancel: string;
|
|
1151
|
-
readonly action: string;
|
|
1152
|
-
readonly css: string;
|
|
1153
|
-
};
|
|
1154
948
|
/** Accordion css() styles. */
|
|
1155
949
|
accordion: {
|
|
1156
950
|
readonly item: string;
|
|
@@ -1186,9 +980,21 @@ interface ThemeStyles {
|
|
|
1186
980
|
readonly fallbackXl: string;
|
|
1187
981
|
readonly css: string;
|
|
1188
982
|
};
|
|
983
|
+
/** EmptyState css() styles. */
|
|
984
|
+
emptyState: {
|
|
985
|
+
readonly root: string;
|
|
986
|
+
readonly icon: string;
|
|
987
|
+
readonly title: string;
|
|
988
|
+
readonly description: string;
|
|
989
|
+
readonly action: string;
|
|
990
|
+
readonly css: string;
|
|
991
|
+
};
|
|
1189
992
|
/** Skeleton css() styles. */
|
|
1190
993
|
skeleton: {
|
|
1191
|
-
readonly
|
|
994
|
+
readonly root: string;
|
|
995
|
+
readonly textRoot: string;
|
|
996
|
+
readonly textLine: string;
|
|
997
|
+
readonly circleRoot: string;
|
|
1192
998
|
readonly css: string;
|
|
1193
999
|
};
|
|
1194
1000
|
/** Table css() styles. */
|
|
@@ -1250,9 +1056,7 @@ interface ThemeStyles {
|
|
|
1250
1056
|
}
|
|
1251
1057
|
/** Themed primitive factories returned by configureTheme(). */
|
|
1252
1058
|
interface ThemedPrimitives {
|
|
1253
|
-
/** Themed
|
|
1254
|
-
AlertDialog: ThemedAlertDialogComponent;
|
|
1255
|
-
/** Themed Dialog — composable JSX component with Dialog.Trigger, Dialog.Content, Dialog.Title, Dialog.Description, Dialog.Footer. */
|
|
1059
|
+
/** Themed Dialog — stack-aware sub-components: Dialog.Header, Dialog.Title, Dialog.Description, Dialog.Footer, Dialog.Body, Dialog.Close, Dialog.Cancel. */
|
|
1256
1060
|
Dialog: ThemedDialogComponent;
|
|
1257
1061
|
/** Themed DropdownMenu — composable JSX component with DropdownMenu.Trigger, DropdownMenu.Content, etc. */
|
|
1258
1062
|
DropdownMenu: ThemedDropdownMenuComponent;
|
|
@@ -1309,36 +1113,57 @@ interface ThemedPrimitives {
|
|
|
1309
1113
|
/** Themed ToggleGroup — composable JSX component with ToggleGroup.Item sub-components. */
|
|
1310
1114
|
ToggleGroup: ThemedToggleGroupComponent;
|
|
1311
1115
|
}
|
|
1116
|
+
/** Props for the themed Button component (extends composed primitive props with variant support). */
|
|
1117
|
+
interface ThemedButtonProps extends Omit<ComposedButtonProps, "classes"> {
|
|
1118
|
+
intent?: string;
|
|
1119
|
+
size?: string;
|
|
1120
|
+
}
|
|
1121
|
+
/** Props for the themed Badge component (extends composed primitive props with color variant). */
|
|
1122
|
+
interface ThemedBadgeProps extends Omit<ComposedBadgeProps, "classes"> {
|
|
1123
|
+
color?: string;
|
|
1124
|
+
}
|
|
1125
|
+
/** Props for the themed Alert component (extends composed primitive props with variant support). */
|
|
1126
|
+
interface ThemedAlertProps extends Omit<ComposedAlertProps, "classes"> {
|
|
1127
|
+
variant?: "default" | "destructive";
|
|
1128
|
+
}
|
|
1312
1129
|
/** Component functions returned by configureTheme(). */
|
|
1313
1130
|
interface ThemeComponents {
|
|
1314
|
-
/** Alert
|
|
1315
|
-
Alert:
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1131
|
+
/** Alert component with variant support and sub-components (Alert.Title, Alert.Description). */
|
|
1132
|
+
Alert: ((props: ThemedAlertProps) => HTMLElement) & {
|
|
1133
|
+
Title: typeof ComposedAlert.Title;
|
|
1134
|
+
Description: typeof ComposedAlert.Description;
|
|
1135
|
+
};
|
|
1136
|
+
/** Button component with intent/size variants. */
|
|
1137
|
+
Button: (props: ThemedButtonProps) => HTMLElement;
|
|
1138
|
+
/** Badge component with color variants. */
|
|
1139
|
+
Badge: (props: ThemedBadgeProps) => HTMLElement;
|
|
1140
|
+
/** Breadcrumb suite with Item sub-component for router-integrated navigation. */
|
|
1141
|
+
Breadcrumb: StyledPrimitive<typeof ComposedBreadcrumb>;
|
|
1142
|
+
/** Card suite with sub-components (Card.Header, Card.Title, etc.). */
|
|
1143
|
+
Card: StyledPrimitive<typeof ComposedCard>;
|
|
1144
|
+
/** Input component with theme styles. */
|
|
1145
|
+
Input: (props: Omit<ComposedInputProps, "classes">) => HTMLElement;
|
|
1146
|
+
/** Textarea component with theme styles. */
|
|
1147
|
+
Textarea: (props: Omit<ComposedTextareaProps, "classes">) => HTMLElement;
|
|
1148
|
+
/** Label component with theme styles. */
|
|
1149
|
+
Label: (props: Omit<ComposedLabelProps, "classes">) => HTMLElement;
|
|
1330
1150
|
/** Pagination component — page navigation controls. */
|
|
1331
|
-
Pagination:
|
|
1332
|
-
/** Separator component
|
|
1333
|
-
Separator: (props:
|
|
1334
|
-
/** FormGroup
|
|
1335
|
-
FormGroup:
|
|
1336
|
-
/** Avatar
|
|
1337
|
-
Avatar:
|
|
1151
|
+
Pagination: (props: Omit<ComposedPaginationProps, "classes">) => HTMLElement;
|
|
1152
|
+
/** Separator component with theme styles. */
|
|
1153
|
+
Separator: (props: Omit<ComposedSeparatorProps, "classes">) => HTMLElement;
|
|
1154
|
+
/** FormGroup with sub-components (FormGroup.FormError). */
|
|
1155
|
+
FormGroup: StyledPrimitive<typeof ComposedFormGroup>;
|
|
1156
|
+
/** Avatar with sub-components (Avatar.Image, Avatar.Fallback). */
|
|
1157
|
+
Avatar: StyledPrimitive<typeof ComposedAvatar>;
|
|
1158
|
+
/** EmptyState component — placeholder for empty content areas with Icon, Title, Description, Action. */
|
|
1159
|
+
EmptyState: StyledPrimitive<typeof ComposedEmptyState>;
|
|
1338
1160
|
/** Skeleton component — loading placeholder with pulse animation. */
|
|
1339
|
-
Skeleton:
|
|
1340
|
-
|
|
1341
|
-
|
|
1161
|
+
Skeleton: ((props: Omit<ComposedSkeletonProps, "classes">) => HTMLElement) & {
|
|
1162
|
+
Text: (props: Omit<ComposedSkeletonTextProps, "classes">) => HTMLElement;
|
|
1163
|
+
Circle: (props: Omit<ComposedSkeletonCircleProps, "classes">) => HTMLElement;
|
|
1164
|
+
};
|
|
1165
|
+
/** Table suite with sub-components (Table.Header, Table.Body, Table.Row, etc.). */
|
|
1166
|
+
Table: StyledPrimitive<typeof ComposedTable>;
|
|
1342
1167
|
/** Themed primitive factories. */
|
|
1343
1168
|
primitives: ThemedPrimitives;
|
|
1344
1169
|
}
|
|
@@ -1358,23 +1183,27 @@ interface ResolvedTheme extends ResolvedThemeBase {
|
|
|
1358
1183
|
* component styles, use `configureThemeBase()` from `@vertz/theme-shadcn/base`.
|
|
1359
1184
|
*/
|
|
1360
1185
|
declare function configureTheme(config?: ThemeConfig): ResolvedTheme;
|
|
1186
|
+
import { ComposedAvatar as ComposedAvatar2, ComposedBreadcrumb as ComposedBreadcrumb2, ComposedCard as ComposedCard2, ComposedEmptyState as ComposedEmptyState2, ComposedFormGroup as ComposedFormGroup2, ComposedInputProps as ComposedInputProps2, ComposedLabelProps as ComposedLabelProps2, ComposedPaginationProps as ComposedPaginationProps2, ComposedSeparatorProps as ComposedSeparatorProps2, ComposedSkeletonCircleProps as ComposedSkeletonCircleProps2, ComposedSkeletonProps as ComposedSkeletonProps2, ComposedSkeletonTextProps as ComposedSkeletonTextProps2, ComposedTable as ComposedTable2, ComposedTextareaProps as ComposedTextareaProps2, StyledPrimitive as StyledPrimitive2 } from "@vertz/ui-primitives";
|
|
1361
1187
|
declare module "@vertz/ui/components" {
|
|
1362
1188
|
interface ThemeComponentMap {
|
|
1363
|
-
Button: (props:
|
|
1364
|
-
Badge: (props:
|
|
1365
|
-
Input: (props:
|
|
1366
|
-
Textarea: (props:
|
|
1367
|
-
Label: (props:
|
|
1368
|
-
Separator: (props:
|
|
1369
|
-
Breadcrumb:
|
|
1370
|
-
Pagination:
|
|
1371
|
-
Alert:
|
|
1372
|
-
Card:
|
|
1373
|
-
FormGroup:
|
|
1374
|
-
Avatar:
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1189
|
+
Button: (props: ThemedButtonProps) => HTMLElement;
|
|
1190
|
+
Badge: (props: ThemedBadgeProps) => HTMLElement;
|
|
1191
|
+
Input: (props: Omit<ComposedInputProps2, "classes">) => HTMLElement;
|
|
1192
|
+
Textarea: (props: Omit<ComposedTextareaProps2, "classes">) => HTMLElement;
|
|
1193
|
+
Label: (props: Omit<ComposedLabelProps2, "classes">) => HTMLElement;
|
|
1194
|
+
Separator: (props: Omit<ComposedSeparatorProps2, "classes">) => HTMLElement;
|
|
1195
|
+
Breadcrumb: StyledPrimitive2<typeof ComposedBreadcrumb2>;
|
|
1196
|
+
Pagination: (props: Omit<ComposedPaginationProps2, "classes">) => HTMLElement;
|
|
1197
|
+
Alert: ThemeComponents["Alert"];
|
|
1198
|
+
Card: StyledPrimitive2<typeof ComposedCard2>;
|
|
1199
|
+
FormGroup: StyledPrimitive2<typeof ComposedFormGroup2>;
|
|
1200
|
+
Avatar: StyledPrimitive2<typeof ComposedAvatar2>;
|
|
1201
|
+
EmptyState: StyledPrimitive2<typeof ComposedEmptyState2>;
|
|
1202
|
+
Skeleton: ((props: Omit<ComposedSkeletonProps2, "classes">) => HTMLElement) & {
|
|
1203
|
+
Text: (props: Omit<ComposedSkeletonTextProps2, "classes">) => HTMLElement;
|
|
1204
|
+
Circle: (props: Omit<ComposedSkeletonCircleProps2, "classes">) => HTMLElement;
|
|
1205
|
+
};
|
|
1206
|
+
Table: StyledPrimitive2<typeof ComposedTable2>;
|
|
1378
1207
|
Dialog: ThemedDialogComponent;
|
|
1379
1208
|
DropdownMenu: ThemedDropdownMenuComponent;
|
|
1380
1209
|
Select: ThemedSelectComponent;
|
|
@@ -1405,4 +1234,4 @@ declare module "@vertz/ui/components" {
|
|
|
1405
1234
|
ToggleGroup: ThemedToggleGroupComponent;
|
|
1406
1235
|
}
|
|
1407
1236
|
}
|
|
1408
|
-
export { configureTheme, ThemedPrimitives, ThemeStyles, ThemeStyle, ThemeConfig, ThemeComponents, ResolvedThemeBase, ResolvedTheme };
|
|
1237
|
+
export { palettes, configureTheme, ThemedPrimitives, ThemeStyles, ThemeStyle, ThemeConfig, ThemeComponents, ResolvedThemeBase, ResolvedTheme, RADIUS_VALUES, PaletteName };
|