@skeletonlabs/skeleton-react 4.6.0 → 4.7.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.
- package/dist/index.d.mts +212 -146
- package/dist/index.mjs +774 -600
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -18,13 +18,14 @@ import { Api as Api$12, Props as Props$12 } from "@zag-js/progress";
|
|
|
18
18
|
import { Api as Api$13, ItemProps as ItemProps$6, Props as Props$13 } from "@zag-js/rating-group";
|
|
19
19
|
import { Api as Api$14, ItemProps as ItemProps$7, Props as Props$14 } from "@zag-js/radio-group";
|
|
20
20
|
import { Api as Api$15, MarkerProps, Props as Props$15, ThumbProps } from "@zag-js/slider";
|
|
21
|
-
import { Api as Api$16, Props as Props$16 } from "@zag-js/
|
|
22
|
-
import { Api as Api$17,
|
|
23
|
-
import { Api as Api$18,
|
|
24
|
-
import { Api as Api$19,
|
|
25
|
-
import { Api as Api$20,
|
|
26
|
-
import { Api as Api$21, Props as Props$21 } from "@zag-js/
|
|
27
|
-
import { Api as Api$22,
|
|
21
|
+
import { Api as Api$16, ItemProps as ItemProps$8, Props as Props$16 } from "@zag-js/steps";
|
|
22
|
+
import { Api as Api$17, Props as Props$17 } from "@zag-js/switch";
|
|
23
|
+
import { Api as Api$18, ContentProps, Props as Props$18, TriggerProps } from "@zag-js/tabs";
|
|
24
|
+
import { Api as Api$19, ItemProps as ItemProps$9, Props as Props$19 } from "@zag-js/tags-input";
|
|
25
|
+
import { Api as Api$20, Options, Props as Props$20, Store, createStore as createToaster } from "@zag-js/toast";
|
|
26
|
+
import { Api as Api$21, ItemProps as ItemProps$10, Props as Props$21 } from "@zag-js/toggle-group";
|
|
27
|
+
import { Api as Api$22, Props as Props$22 } from "@zag-js/tooltip";
|
|
28
|
+
import { Api as Api$23, NodeProps, Props as Props$23, TreeNode, collection as createTreeViewCollection } from "@zag-js/tree-view";
|
|
28
29
|
import { CollectionItem, CollectionOptions, ListCollection } from "@zag-js/collection";
|
|
29
30
|
|
|
30
31
|
//#region src/internal/html-attributes.d.ts
|
|
@@ -50,7 +51,7 @@ declare function ItemIndicator$3(props: AccordionItemIndicatorProps): react4.JSX
|
|
|
50
51
|
//#endregion
|
|
51
52
|
//#region src/components/accordion/anatomy/item.d.ts
|
|
52
53
|
interface AccordionItemProps extends ItemProps, PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
53
|
-
declare function Item$
|
|
54
|
+
declare function Item$11(props: AccordionItemProps): react_jsx_runtime0.JSX.Element;
|
|
54
55
|
//#endregion
|
|
55
56
|
//#region src/components/accordion/anatomy/root.d.ts
|
|
56
57
|
interface AccordionRootProps extends Omit<Props, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -63,13 +64,13 @@ declare function useAccordion(props?: Omit<Props, 'id'>): Api<PropTypes>;
|
|
|
63
64
|
interface AccordionRootContextProps {
|
|
64
65
|
children: (accordion: ReturnType<typeof useAccordion>) => ReactNode;
|
|
65
66
|
}
|
|
66
|
-
declare function RootContext$
|
|
67
|
+
declare function RootContext$23(props: AccordionRootContextProps): ReactNode;
|
|
67
68
|
//#endregion
|
|
68
69
|
//#region src/components/accordion/anatomy/root-provider.d.ts
|
|
69
70
|
interface AccordionRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
70
71
|
value: ReturnType<typeof useAccordion>;
|
|
71
72
|
}
|
|
72
|
-
declare function RootProvider$
|
|
73
|
+
declare function RootProvider$17(props: AccordionRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
73
74
|
//#endregion
|
|
74
75
|
//#region src/components/accordion/anatomy/item-trigger.d.ts
|
|
75
76
|
interface AccordionItemTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
@@ -77,9 +78,9 @@ declare function ItemTrigger(props: AccordionItemTriggerProps): react4.JSX.Eleme
|
|
|
77
78
|
//#endregion
|
|
78
79
|
//#region src/components/accordion/modules/anatomy.d.ts
|
|
79
80
|
declare const Accordion: typeof Root$18 & {
|
|
80
|
-
Provider: typeof RootProvider$
|
|
81
|
-
Context: typeof RootContext$
|
|
82
|
-
Item: typeof Item$
|
|
81
|
+
Provider: typeof RootProvider$17;
|
|
82
|
+
Context: typeof RootContext$23;
|
|
83
|
+
Item: typeof Item$11;
|
|
83
84
|
ItemTrigger: typeof ItemTrigger;
|
|
84
85
|
ItemIndicator: typeof ItemIndicator$3;
|
|
85
86
|
ItemContent: typeof ItemContent;
|
|
@@ -132,7 +133,7 @@ declare function useAvatar(props?: Omit<Props$1, 'id'>): Api$1<PropTypes>;
|
|
|
132
133
|
interface AvatarRootContextProps {
|
|
133
134
|
children: (avatar: ReturnType<typeof useAvatar>) => ReactNode;
|
|
134
135
|
}
|
|
135
|
-
declare function RootContext$
|
|
136
|
+
declare function RootContext$22(props: AvatarRootContextProps): ReactNode;
|
|
136
137
|
//#endregion
|
|
137
138
|
//#region src/components/avatar/anatomy/root-provider.d.ts
|
|
138
139
|
interface AvatarRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -143,14 +144,14 @@ declare function AvatarRootProvider(props: AvatarRootProviderProps): react_jsx_r
|
|
|
143
144
|
//#region src/components/avatar/modules/anatomy.d.ts
|
|
144
145
|
declare const Avatar: typeof AvatarRoot & {
|
|
145
146
|
Provider: typeof AvatarRootProvider;
|
|
146
|
-
Context: typeof RootContext$
|
|
147
|
+
Context: typeof RootContext$22;
|
|
147
148
|
Image: typeof Image;
|
|
148
149
|
Fallback: typeof Fallback;
|
|
149
150
|
};
|
|
150
151
|
//#endregion
|
|
151
152
|
//#region src/components/collapsible/anatomy/content.d.ts
|
|
152
153
|
interface CollapsibleContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
153
|
-
declare function Content$
|
|
154
|
+
declare function Content$10(props: CollapsibleContentProps): react4.JSX.Element;
|
|
154
155
|
//#endregion
|
|
155
156
|
//#region src/components/collapsible/anatomy/root.d.ts
|
|
156
157
|
interface CollapsibleRootProps extends Omit<Props$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -163,7 +164,7 @@ declare function useCollapsible(props?: Omit<Props$2, 'id'>): Api$2<PropTypes>;
|
|
|
163
164
|
interface CollapsibleRootContextProps {
|
|
164
165
|
children: (collapsible: ReturnType<typeof useCollapsible>) => ReactNode;
|
|
165
166
|
}
|
|
166
|
-
declare function RootContext$
|
|
167
|
+
declare function RootContext$21(props: CollapsibleRootContextProps): ReactNode;
|
|
167
168
|
//#endregion
|
|
168
169
|
//#region src/components/collapsible/anatomy/root-provider.d.ts
|
|
169
170
|
interface CollapsibleRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -173,19 +174,19 @@ declare function CollapsibleRootProvider(props: CollapsibleRootProviderProps): r
|
|
|
173
174
|
//#endregion
|
|
174
175
|
//#region src/components/collapsible/anatomy/trigger.d.ts
|
|
175
176
|
interface CollapsibleTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
176
|
-
declare function Trigger$
|
|
177
|
+
declare function Trigger$10(props: CollapsibleTriggerProps): react4.JSX.Element;
|
|
177
178
|
//#endregion
|
|
178
179
|
//#region src/components/collapsible/anatomy/indicator.d.ts
|
|
179
180
|
interface CollapsibleIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
180
|
-
declare function Indicator$
|
|
181
|
+
declare function Indicator$4(props: CollapsibleIndicatorProps): react4.JSX.Element;
|
|
181
182
|
//#endregion
|
|
182
183
|
//#region src/components/collapsible/modules/anatomy.d.ts
|
|
183
184
|
declare const Collapsible: typeof CollapsibleRoot & {
|
|
184
185
|
Provider: typeof CollapsibleRootProvider;
|
|
185
|
-
Context: typeof RootContext$
|
|
186
|
-
Trigger: typeof Trigger$
|
|
187
|
-
Indicator: typeof Indicator$
|
|
188
|
-
Content: typeof Content$
|
|
186
|
+
Context: typeof RootContext$21;
|
|
187
|
+
Trigger: typeof Trigger$10;
|
|
188
|
+
Indicator: typeof Indicator$4;
|
|
189
|
+
Content: typeof Content$10;
|
|
189
190
|
};
|
|
190
191
|
//#endregion
|
|
191
192
|
//#region src/components/combobox/anatomy/clear-trigger.d.ts
|
|
@@ -194,7 +195,7 @@ declare function ClearTrigger$2(props: ComboboxClearTriggerProps): react4.JSX.El
|
|
|
194
195
|
//#endregion
|
|
195
196
|
//#region src/components/combobox/anatomy/content.d.ts
|
|
196
197
|
interface ComboboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
197
|
-
declare function Content$
|
|
198
|
+
declare function Content$9(props: ComboboxContentProps): react4.JSX.Element;
|
|
198
199
|
//#endregion
|
|
199
200
|
//#region src/components/combobox/anatomy/control.d.ts
|
|
200
201
|
interface ComboboxControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -206,7 +207,7 @@ declare function Input$3(props: ComboboxInputProps): react4.JSX.Element;
|
|
|
206
207
|
//#endregion
|
|
207
208
|
//#region src/components/combobox/anatomy/item.d.ts
|
|
208
209
|
interface ComboboxItemProps extends ItemProps$1, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
209
|
-
declare function Item$
|
|
210
|
+
declare function Item$10(props: ComboboxItemProps): react_jsx_runtime0.JSX.Element;
|
|
210
211
|
//#endregion
|
|
211
212
|
//#region src/components/combobox/anatomy/item-group.d.ts
|
|
212
213
|
interface ComboboxItemGroupProps extends Omit<ItemGroupProps, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id'> {}
|
|
@@ -243,39 +244,39 @@ declare function useCombobox(props?: Omit<Props$3, 'id'>): Api$3<PropTypes>;
|
|
|
243
244
|
interface ComboboxRootContextProps {
|
|
244
245
|
children: (combobox: ReturnType<typeof useCombobox>) => ReactNode;
|
|
245
246
|
}
|
|
246
|
-
declare function RootContext$
|
|
247
|
+
declare function RootContext$20(props: ComboboxRootContextProps): ReactNode;
|
|
247
248
|
//#endregion
|
|
248
249
|
//#region src/components/combobox/anatomy/root-provider.d.ts
|
|
249
250
|
interface ComboboxRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {
|
|
250
251
|
value: ReturnType<typeof useCombobox>;
|
|
251
252
|
}
|
|
252
|
-
declare function RootProvider$
|
|
253
|
+
declare function RootProvider$16(props: ComboboxRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
253
254
|
//#endregion
|
|
254
255
|
//#region src/components/combobox/anatomy/trigger.d.ts
|
|
255
256
|
interface ComboboxTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
256
|
-
declare function Trigger$
|
|
257
|
+
declare function Trigger$9(props: ComboboxTriggerProps): react4.JSX.Element;
|
|
257
258
|
//#endregion
|
|
258
259
|
//#region src/components/combobox/modules/anatomy.d.ts
|
|
259
260
|
declare const Combobox: typeof Root$17 & {
|
|
260
|
-
Provider: typeof RootProvider$
|
|
261
|
-
Context: typeof RootContext$
|
|
261
|
+
Provider: typeof RootProvider$16;
|
|
262
|
+
Context: typeof RootContext$20;
|
|
262
263
|
Label: typeof Label$10;
|
|
263
264
|
Control: typeof Control$7;
|
|
264
265
|
Input: typeof Input$3;
|
|
265
|
-
Trigger: typeof Trigger$
|
|
266
|
+
Trigger: typeof Trigger$9;
|
|
266
267
|
ClearTrigger: typeof ClearTrigger$2;
|
|
267
268
|
Positioner: typeof Positioner$6;
|
|
268
|
-
Content: typeof Content$
|
|
269
|
+
Content: typeof Content$9;
|
|
269
270
|
ItemGroup: typeof ItemGroup$3;
|
|
270
271
|
ItemGroupLabel: typeof ItemGroupLabel$2;
|
|
271
|
-
Item: typeof Item$
|
|
272
|
+
Item: typeof Item$10;
|
|
272
273
|
ItemText: typeof ItemText$4;
|
|
273
274
|
ItemIndicator: typeof ItemIndicator$2;
|
|
274
275
|
};
|
|
275
276
|
//#endregion
|
|
276
277
|
//#region src/components/date-picker/anatomy/content.d.ts
|
|
277
278
|
interface DatePickerContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
278
|
-
declare function Content$
|
|
279
|
+
declare function Content$8(props: DatePickerContentProps): react4.JSX.Element;
|
|
279
280
|
//#endregion
|
|
280
281
|
//#region src/components/date-picker/anatomy/control.d.ts
|
|
281
282
|
interface DatePickerControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -295,7 +296,7 @@ declare function MonthSelect(props: DatePickerMonthSelectProps): react4.JSX.Elem
|
|
|
295
296
|
//#endregion
|
|
296
297
|
//#region src/components/date-picker/anatomy/next-trigger.d.ts
|
|
297
298
|
interface DatePickerNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
298
|
-
declare function NextTrigger$
|
|
299
|
+
declare function NextTrigger$2(props: DatePickerNextTriggerProps): react4.JSX.Element;
|
|
299
300
|
//#endregion
|
|
300
301
|
//#region src/components/date-picker/anatomy/positioner.d.ts
|
|
301
302
|
interface DatePickerPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -307,7 +308,7 @@ declare function PresetTrigger(props: DatePickerPresetTriggerProps): react4.JSX.
|
|
|
307
308
|
//#endregion
|
|
308
309
|
//#region src/components/date-picker/anatomy/prev-trigger.d.ts
|
|
309
310
|
interface DatePickerPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
310
|
-
declare function PrevTrigger$
|
|
311
|
+
declare function PrevTrigger$2(props: DatePickerPrevTriggerProps): react4.JSX.Element;
|
|
311
312
|
//#endregion
|
|
312
313
|
//#region src/components/date-picker/anatomy/range-text.d.ts
|
|
313
314
|
interface DatePickerRangeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -324,13 +325,13 @@ declare function useDatePicker(props?: Omit<Props$4, 'id'>): Api$4<PropTypes>;
|
|
|
324
325
|
interface DatePickerRootContextProps {
|
|
325
326
|
children: (datePicker: ReturnType<typeof useDatePicker>) => ReactNode;
|
|
326
327
|
}
|
|
327
|
-
declare function RootContext$
|
|
328
|
+
declare function RootContext$19(props: DatePickerRootContextProps): ReactNode;
|
|
328
329
|
//#endregion
|
|
329
330
|
//#region src/components/date-picker/anatomy/root-provider.d.ts
|
|
330
331
|
interface DatePickerRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
331
332
|
value: ReturnType<typeof useDatePicker>;
|
|
332
333
|
}
|
|
333
|
-
declare function RootProvider$
|
|
334
|
+
declare function RootProvider$15(props: DatePickerRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
334
335
|
//#endregion
|
|
335
336
|
//#region src/components/date-picker/anatomy/table.d.ts
|
|
336
337
|
interface DatePickerTableProps extends PropsWithElement<'table'>, HTMLAttributes<'table'> {}
|
|
@@ -365,7 +366,7 @@ declare function TableRow(props: DatePickerTableRowProps): react4.JSX.Element;
|
|
|
365
366
|
//#endregion
|
|
366
367
|
//#region src/components/date-picker/anatomy/trigger.d.ts
|
|
367
368
|
interface DatePickerTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
368
|
-
declare function Trigger$
|
|
369
|
+
declare function Trigger$8(props: DatePickerTriggerProps): react4.JSX.Element;
|
|
369
370
|
//#endregion
|
|
370
371
|
//#region src/components/date-picker/anatomy/view.d.ts
|
|
371
372
|
interface DatePickerViewProps extends ViewProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -385,23 +386,23 @@ declare function YearSelect(props: DatePickerYearSelectProps): react4.JSX.Elemen
|
|
|
385
386
|
//#endregion
|
|
386
387
|
//#region src/components/date-picker/modules/anatomy.d.ts
|
|
387
388
|
declare const DatePicker: typeof Root$16 & {
|
|
388
|
-
Provider: typeof RootProvider$
|
|
389
|
-
Context: typeof RootContext$
|
|
389
|
+
Provider: typeof RootProvider$15;
|
|
390
|
+
Context: typeof RootContext$19;
|
|
390
391
|
Label: typeof Label$9;
|
|
391
392
|
Control: typeof Control$6;
|
|
392
393
|
PresetTrigger: typeof PresetTrigger;
|
|
393
394
|
Input: typeof Input$2;
|
|
394
|
-
Trigger: typeof Trigger$
|
|
395
|
+
Trigger: typeof Trigger$8;
|
|
395
396
|
Positioner: typeof Positioner$5;
|
|
396
|
-
Content: typeof Content$
|
|
397
|
+
Content: typeof Content$8;
|
|
397
398
|
YearSelect: typeof YearSelect;
|
|
398
399
|
MonthSelect: typeof MonthSelect;
|
|
399
400
|
View: typeof View;
|
|
400
401
|
ViewControl: typeof ViewControl;
|
|
401
|
-
PrevTrigger: typeof PrevTrigger$
|
|
402
|
+
PrevTrigger: typeof PrevTrigger$2;
|
|
402
403
|
ViewTrigger: typeof ViewTrigger;
|
|
403
404
|
RangeText: typeof RangeText;
|
|
404
|
-
NextTrigger: typeof NextTrigger$
|
|
405
|
+
NextTrigger: typeof NextTrigger$2;
|
|
405
406
|
Table: typeof Table;
|
|
406
407
|
TableHead: typeof TableHead;
|
|
407
408
|
TableRow: typeof TableRow;
|
|
@@ -421,7 +422,7 @@ declare function CloseTrigger$3(props: DialogCloseTriggerProps): react4.JSX.Elem
|
|
|
421
422
|
//#endregion
|
|
422
423
|
//#region src/components/dialog/anatomy/content.d.ts
|
|
423
424
|
interface DialogContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
424
|
-
declare function Content$
|
|
425
|
+
declare function Content$7(props: DialogContentProps): react4.JSX.Element;
|
|
425
426
|
//#endregion
|
|
426
427
|
//#region src/components/dialog/anatomy/description.d.ts
|
|
427
428
|
interface DialogDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -442,13 +443,13 @@ declare function useDialog(props?: Omit<Props$5, 'id'>): Api$5<PropTypes>;
|
|
|
442
443
|
interface DialogRootContextProps {
|
|
443
444
|
children: (dialog: ReturnType<typeof useDialog>) => ReactNode;
|
|
444
445
|
}
|
|
445
|
-
declare function RootContext$
|
|
446
|
+
declare function RootContext$18(props: DialogRootContextProps): ReactNode;
|
|
446
447
|
//#endregion
|
|
447
448
|
//#region src/components/dialog/anatomy/root-provider.d.ts
|
|
448
449
|
interface DialogRootProviderProps extends PropsWithChildren {
|
|
449
450
|
value: ReturnType<typeof useDialog>;
|
|
450
451
|
}
|
|
451
|
-
declare function RootProvider$
|
|
452
|
+
declare function RootProvider$14(props: DialogRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
452
453
|
//#endregion
|
|
453
454
|
//#region src/components/dialog/anatomy/title.d.ts
|
|
454
455
|
interface DialogTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -456,16 +457,16 @@ declare function Title$3(props: DialogTitleProps): react4.JSX.Element;
|
|
|
456
457
|
//#endregion
|
|
457
458
|
//#region src/components/dialog/anatomy/trigger.d.ts
|
|
458
459
|
interface DialogTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
459
|
-
declare function Trigger$
|
|
460
|
+
declare function Trigger$7(props: DialogTriggerProps): react4.JSX.Element;
|
|
460
461
|
//#endregion
|
|
461
462
|
//#region src/components/dialog/modules/anatomy.d.ts
|
|
462
463
|
declare const Dialog: typeof Root$15 & {
|
|
463
|
-
Provider: typeof RootProvider$
|
|
464
|
-
Context: typeof RootContext$
|
|
465
|
-
Trigger: typeof Trigger$
|
|
464
|
+
Provider: typeof RootProvider$14;
|
|
465
|
+
Context: typeof RootContext$18;
|
|
466
|
+
Trigger: typeof Trigger$7;
|
|
466
467
|
Backdrop: typeof Backdrop;
|
|
467
468
|
Positioner: typeof Positioner$4;
|
|
468
|
-
Content: typeof Content$
|
|
469
|
+
Content: typeof Content$7;
|
|
469
470
|
Title: typeof Title$3;
|
|
470
471
|
Description: typeof Description$2;
|
|
471
472
|
CloseTrigger: typeof CloseTrigger$3;
|
|
@@ -485,7 +486,7 @@ declare function HiddenInput$4(props: FileUploadHiddenInputProps): react4.JSX.El
|
|
|
485
486
|
//#endregion
|
|
486
487
|
//#region src/components/file-upload/anatomy/item.d.ts
|
|
487
488
|
interface FileUploadItemProps extends ItemProps$2, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
488
|
-
declare function Item$
|
|
489
|
+
declare function Item$9(props: FileUploadItemProps): react_jsx_runtime0.JSX.Element;
|
|
489
490
|
//#endregion
|
|
490
491
|
//#region src/components/file-upload/anatomy/item-delete-trigger.d.ts
|
|
491
492
|
interface FileUploadItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
@@ -518,29 +519,29 @@ declare function useFileUpload(props?: Omit<Props$6, 'id'>): Api$6<PropTypes>;
|
|
|
518
519
|
interface FileUploadRootContextProps {
|
|
519
520
|
children: (fileUpload: ReturnType<typeof useFileUpload>) => ReactNode;
|
|
520
521
|
}
|
|
521
|
-
declare function RootContext$
|
|
522
|
+
declare function RootContext$17(props: FileUploadRootContextProps): ReactNode;
|
|
522
523
|
//#endregion
|
|
523
524
|
//#region src/components/file-upload/anatomy/root-provider.d.ts
|
|
524
525
|
interface FileUploadRootProviderProps extends PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {
|
|
525
526
|
value: ReturnType<typeof useFileUpload>;
|
|
526
527
|
}
|
|
527
|
-
declare function RootProvider$
|
|
528
|
+
declare function RootProvider$13(props: FileUploadRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
528
529
|
//#endregion
|
|
529
530
|
//#region src/components/file-upload/anatomy/trigger.d.ts
|
|
530
531
|
interface FileUploadTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
531
|
-
declare function Trigger$
|
|
532
|
+
declare function Trigger$6(props: FileUploadTriggerProps): react4.JSX.Element;
|
|
532
533
|
//#endregion
|
|
533
534
|
//#region src/components/file-upload/modules/anatomy.d.ts
|
|
534
535
|
declare const FileUpload: typeof Root$14 & {
|
|
535
|
-
Provider: typeof RootProvider$
|
|
536
|
-
Context: typeof RootContext$
|
|
536
|
+
Provider: typeof RootProvider$13;
|
|
537
|
+
Context: typeof RootContext$17;
|
|
537
538
|
Label: typeof Label$8;
|
|
538
539
|
Dropzone: typeof Dropzone;
|
|
539
|
-
Trigger: typeof Trigger$
|
|
540
|
+
Trigger: typeof Trigger$6;
|
|
540
541
|
ClearTrigger: typeof ClearTrigger$1;
|
|
541
542
|
HiddenInput: typeof HiddenInput$4;
|
|
542
543
|
ItemGroup: typeof ItemGroup$2;
|
|
543
|
-
Item: typeof Item$
|
|
544
|
+
Item: typeof Item$9;
|
|
544
545
|
ItemName: typeof ItemName;
|
|
545
546
|
ItemSizeText: typeof ItemSizeText;
|
|
546
547
|
ItemDeleteTrigger: typeof ItemDeleteTrigger$1;
|
|
@@ -556,7 +557,7 @@ declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps): react4.J
|
|
|
556
557
|
//#endregion
|
|
557
558
|
//#region src/components/floating-panel/anatomy/content.d.ts
|
|
558
559
|
interface FloatingPanelContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
559
|
-
declare function Content$
|
|
560
|
+
declare function Content$6(props: FloatingPanelContentProps): react4.JSX.Element;
|
|
560
561
|
//#endregion
|
|
561
562
|
//#region src/components/floating-panel/anatomy/control.d.ts
|
|
562
563
|
interface FloatingPanelControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -589,13 +590,13 @@ declare function useFloatingPanel(props?: Omit<Props$7, 'id'>): Api$7<PropTypes>
|
|
|
589
590
|
interface FloatingPanelRootContextProps {
|
|
590
591
|
children: (floatingPanel: ReturnType<typeof useFloatingPanel>) => ReactNode;
|
|
591
592
|
}
|
|
592
|
-
declare function RootContext$
|
|
593
|
+
declare function RootContext$16(props: FloatingPanelRootContextProps): ReactNode;
|
|
593
594
|
//#endregion
|
|
594
595
|
//#region src/components/floating-panel/anatomy/root-provider.d.ts
|
|
595
596
|
interface FloatingPanelRootProviderProps extends PropsWithChildren {
|
|
596
597
|
value: ReturnType<typeof useFloatingPanel>;
|
|
597
598
|
}
|
|
598
|
-
declare function RootProvider$
|
|
599
|
+
declare function RootProvider$12(props: FloatingPanelRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
599
600
|
//#endregion
|
|
600
601
|
//#region src/components/floating-panel/anatomy/stage-trigger.d.ts
|
|
601
602
|
interface FloatingPanelStageTriggerProps extends StageTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
@@ -607,15 +608,15 @@ declare function Title$2(props: FloatingPanelTitleProps): react4.JSX.Element;
|
|
|
607
608
|
//#endregion
|
|
608
609
|
//#region src/components/floating-panel/anatomy/trigger.d.ts
|
|
609
610
|
interface FloatingPanelTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
610
|
-
declare function Trigger$
|
|
611
|
+
declare function Trigger$5(props: FloatingPanelTriggerProps): react4.JSX.Element;
|
|
611
612
|
//#endregion
|
|
612
613
|
//#region src/components/floating-panel/modules/anatomy.d.ts
|
|
613
614
|
declare const FloatingPanel: typeof Root$13 & {
|
|
614
|
-
Provider: typeof RootProvider$
|
|
615
|
-
Context: typeof RootContext$
|
|
616
|
-
Trigger: typeof Trigger$
|
|
615
|
+
Provider: typeof RootProvider$12;
|
|
616
|
+
Context: typeof RootContext$16;
|
|
617
|
+
Trigger: typeof Trigger$5;
|
|
617
618
|
Positioner: typeof Positioner$3;
|
|
618
|
-
Content: typeof Content$
|
|
619
|
+
Content: typeof Content$6;
|
|
619
620
|
DragTrigger: typeof DragTrigger;
|
|
620
621
|
Header: typeof Header;
|
|
621
622
|
Title: typeof Title$2;
|
|
@@ -640,7 +641,7 @@ declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react4.JSX
|
|
|
640
641
|
//#endregion
|
|
641
642
|
//#region src/components/listbox/anatomy/item.d.ts
|
|
642
643
|
interface ListboxItemProps extends ItemProps$3, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
643
|
-
declare function Item$
|
|
644
|
+
declare function Item$8(props: ListboxItemProps): react_jsx_runtime0.JSX.Element;
|
|
644
645
|
//#endregion
|
|
645
646
|
//#region src/components/listbox/anatomy/input.d.ts
|
|
646
647
|
interface ListboxInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
@@ -661,13 +662,13 @@ declare function useListbox(props: Omit<Props$8, 'id'>): Api$8<PropTypes>;
|
|
|
661
662
|
interface ListboxRootContextProps {
|
|
662
663
|
children: (listbox: ReturnType<typeof useListbox>) => ReactNode;
|
|
663
664
|
}
|
|
664
|
-
declare function RootContext$
|
|
665
|
+
declare function RootContext$15(props: ListboxRootContextProps): ReactNode;
|
|
665
666
|
//#endregion
|
|
666
667
|
//#region src/components/listbox/anatomy/root-provider.d.ts
|
|
667
668
|
interface ListboxRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {
|
|
668
669
|
value: ReturnType<typeof useListbox>;
|
|
669
670
|
}
|
|
670
|
-
declare function RootProvider$
|
|
671
|
+
declare function RootProvider$11(props: ListboxRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
671
672
|
//#endregion
|
|
672
673
|
//#region src/components/listbox/anatomy/label.d.ts
|
|
673
674
|
interface ListboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
@@ -675,18 +676,18 @@ declare function Label$7(props: ListboxLabelProps): react4.JSX.Element;
|
|
|
675
676
|
//#endregion
|
|
676
677
|
//#region src/components/listbox/anatomy/content.d.ts
|
|
677
678
|
interface ListboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
678
|
-
declare function Content$
|
|
679
|
+
declare function Content$5(props: ListboxContentProps): react4.JSX.Element;
|
|
679
680
|
//#endregion
|
|
680
681
|
//#region src/components/listbox/modules/anatomy.d.ts
|
|
681
682
|
declare const Listbox: typeof Root$12 & {
|
|
682
|
-
Provider: typeof RootProvider$
|
|
683
|
-
Context: typeof RootContext$
|
|
683
|
+
Provider: typeof RootProvider$11;
|
|
684
|
+
Context: typeof RootContext$15;
|
|
684
685
|
Label: typeof Label$7;
|
|
685
686
|
Input: typeof Input$1;
|
|
686
|
-
Content: typeof Content$
|
|
687
|
+
Content: typeof Content$5;
|
|
687
688
|
ItemGroup: typeof ItemGroup$1;
|
|
688
689
|
ItemGroupLabel: typeof ItemGroupLabel$1;
|
|
689
|
-
Item: typeof Item$
|
|
690
|
+
Item: typeof Item$8;
|
|
690
691
|
ItemText: typeof ItemText$3;
|
|
691
692
|
ItemIndicator: typeof ItemIndicator$1;
|
|
692
693
|
};
|
|
@@ -701,7 +702,7 @@ declare function ArrowTip$2(props: MenuArrowTipProps): react4.JSX.Element;
|
|
|
701
702
|
//#endregion
|
|
702
703
|
//#region src/components/menu/anatomy/content.d.ts
|
|
703
704
|
interface MenuContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
704
|
-
declare function Content$
|
|
705
|
+
declare function Content$4(props: MenuContentProps): react4.JSX.Element;
|
|
705
706
|
//#endregion
|
|
706
707
|
//#region src/components/menu/anatomy/context-trigger.d.ts
|
|
707
708
|
interface MenuContextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
@@ -709,7 +710,7 @@ declare function ContextTrigger(props: MenuContextTriggerProps): react4.JSX.Elem
|
|
|
709
710
|
//#endregion
|
|
710
711
|
//#region src/components/menu/anatomy/item.d.ts
|
|
711
712
|
interface MenuItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
712
|
-
declare function Item$
|
|
713
|
+
declare function Item$7(props: MenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
713
714
|
//#endregion
|
|
714
715
|
//#region src/components/menu/anatomy/item-group.d.ts
|
|
715
716
|
interface MenuItemGroupProps extends Omit<ItemGroupProps$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -733,7 +734,7 @@ declare function ItemIndicator(props: MenuItemIndicatorProps): react4.JSX.Elemen
|
|
|
733
734
|
//#endregion
|
|
734
735
|
//#region src/components/menu/anatomy/indicator.d.ts
|
|
735
736
|
interface MenuIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
736
|
-
declare function Indicator$
|
|
737
|
+
declare function Indicator$3(props: MenuIndicatorProps): react4.JSX.Element;
|
|
737
738
|
//#endregion
|
|
738
739
|
//#region src/components/menu/anatomy/positioner.d.ts
|
|
739
740
|
interface MenuPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -752,21 +753,21 @@ declare function useMenu(props?: Omit<Props$9, 'id'>): Api$9<PropTypes> & {
|
|
|
752
753
|
interface MenuRootContextProps {
|
|
753
754
|
children: (menu: ReturnType<typeof useMenu>) => ReactNode;
|
|
754
755
|
}
|
|
755
|
-
declare function RootContext$
|
|
756
|
+
declare function RootContext$14(props: MenuRootContextProps): ReactNode;
|
|
756
757
|
//#endregion
|
|
757
758
|
//#region src/components/menu/anatomy/root-provider.d.ts
|
|
758
759
|
interface MenuRootProviderProps extends PropsWithChildren {
|
|
759
760
|
value: ReturnType<typeof useMenu>;
|
|
760
761
|
}
|
|
761
|
-
declare function RootProvider$
|
|
762
|
+
declare function RootProvider$10(props: MenuRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
762
763
|
//#endregion
|
|
763
764
|
//#region src/components/menu/anatomy/separator.d.ts
|
|
764
765
|
interface MenuSeparatorProps extends PropsWithElement<'hr'>, HTMLAttributes<'hr', 'id' | 'dir' | 'children'> {}
|
|
765
|
-
declare function Separator(props: MenuSeparatorProps): react4.JSX.Element;
|
|
766
|
+
declare function Separator$1(props: MenuSeparatorProps): react4.JSX.Element;
|
|
766
767
|
//#endregion
|
|
767
768
|
//#region src/components/menu/anatomy/trigger.d.ts
|
|
768
769
|
interface MenuTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
769
|
-
declare function Trigger$
|
|
770
|
+
declare function Trigger$4(props: MenuTriggerProps): react4.JSX.Element;
|
|
770
771
|
//#endregion
|
|
771
772
|
//#region src/components/menu/anatomy/trigger-item.d.ts
|
|
772
773
|
interface MenuTriggerItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -774,21 +775,21 @@ declare function TriggerItem(props: MenuTriggerItemProps): react_jsx_runtime0.JS
|
|
|
774
775
|
//#endregion
|
|
775
776
|
//#region src/components/menu/modules/anatomy.d.ts
|
|
776
777
|
declare const Menu: typeof Root$11 & {
|
|
777
|
-
Provider: typeof RootProvider$
|
|
778
|
-
Context: typeof RootContext$
|
|
779
|
-
Trigger: typeof Trigger$
|
|
778
|
+
Provider: typeof RootProvider$10;
|
|
779
|
+
Context: typeof RootContext$14;
|
|
780
|
+
Trigger: typeof Trigger$4;
|
|
780
781
|
ContextTrigger: typeof ContextTrigger;
|
|
781
|
-
Indicator: typeof Indicator$
|
|
782
|
+
Indicator: typeof Indicator$3;
|
|
782
783
|
Positioner: typeof Positioner$2;
|
|
783
|
-
Content: typeof Content$
|
|
784
|
+
Content: typeof Content$4;
|
|
784
785
|
ItemGroup: typeof ItemGroup;
|
|
785
786
|
ItemGroupLabel: typeof ItemGroupLabel;
|
|
786
|
-
Item: typeof Item$
|
|
787
|
+
Item: typeof Item$7;
|
|
787
788
|
OptionItem: typeof OptionItem;
|
|
788
789
|
TriggerItem: typeof TriggerItem;
|
|
789
790
|
ItemText: typeof ItemText$2;
|
|
790
791
|
ItemIndicator: typeof ItemIndicator;
|
|
791
|
-
Separator: typeof Separator;
|
|
792
|
+
Separator: typeof Separator$1;
|
|
792
793
|
Arrow: typeof Arrow$2;
|
|
793
794
|
ArrowTip: typeof ArrowTip$2;
|
|
794
795
|
};
|
|
@@ -848,7 +849,7 @@ declare function FirstTrigger(props: PaginationFirstTriggerProps): react4.JSX.El
|
|
|
848
849
|
//#endregion
|
|
849
850
|
//#region src/components/pagination/anatomy/item.d.ts
|
|
850
851
|
interface PaginationItemProps extends ItemProps$5, PropsWithElement<'a'>, HTMLAttributes<'a', 'type'> {}
|
|
851
|
-
declare function Item$
|
|
852
|
+
declare function Item$6(props: PaginationItemProps): react4.JSX.Element;
|
|
852
853
|
//#endregion
|
|
853
854
|
//#region src/components/pagination/anatomy/last-trigger.d.ts
|
|
854
855
|
interface PaginationLastTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
@@ -856,11 +857,11 @@ declare function LastTrigger(props: PaginationLastTriggerProps): react4.JSX.Elem
|
|
|
856
857
|
//#endregion
|
|
857
858
|
//#region src/components/pagination/anatomy/next-trigger.d.ts
|
|
858
859
|
interface PaginationNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
859
|
-
declare function NextTrigger(props: PaginationNextTriggerProps): react4.JSX.Element;
|
|
860
|
+
declare function NextTrigger$1(props: PaginationNextTriggerProps): react4.JSX.Element;
|
|
860
861
|
//#endregion
|
|
861
862
|
//#region src/components/pagination/anatomy/prev-trigger.d.ts
|
|
862
863
|
interface PaginationPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
863
|
-
declare function PrevTrigger(props: PaginationPrevTriggerProps): react4.JSX.Element;
|
|
864
|
+
declare function PrevTrigger$1(props: PaginationPrevTriggerProps): react4.JSX.Element;
|
|
864
865
|
//#endregion
|
|
865
866
|
//#region src/components/pagination/modules/provider.d.ts
|
|
866
867
|
declare function usePagination(props?: Omit<Props$10, 'id'>): Api$10<PropTypes>;
|
|
@@ -869,7 +870,7 @@ declare function usePagination(props?: Omit<Props$10, 'id'>): Api$10<PropTypes>;
|
|
|
869
870
|
interface PaginationRootContextProps {
|
|
870
871
|
children: (pagination: ReturnType<typeof usePagination>) => ReactNode;
|
|
871
872
|
}
|
|
872
|
-
declare function RootContext$
|
|
873
|
+
declare function RootContext$13(props: PaginationRootContextProps): ReactNode;
|
|
873
874
|
//#endregion
|
|
874
875
|
//#region src/components/pagination/anatomy/root-provider.d.ts
|
|
875
876
|
interface PaginationRootProviderProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav', 'id' | 'dir'> {
|
|
@@ -884,12 +885,12 @@ declare function PaginationRoot(props: PaginationRootProps): react_jsx_runtime0.
|
|
|
884
885
|
//#region src/components/pagination/modules/anatomy.d.ts
|
|
885
886
|
declare const Pagination: typeof PaginationRoot & {
|
|
886
887
|
Provider: typeof PaginationRootProvider;
|
|
887
|
-
Context: typeof RootContext$
|
|
888
|
+
Context: typeof RootContext$13;
|
|
888
889
|
FirstTrigger: typeof FirstTrigger;
|
|
889
|
-
PrevTrigger: typeof PrevTrigger;
|
|
890
|
-
Item: typeof Item$
|
|
890
|
+
PrevTrigger: typeof PrevTrigger$1;
|
|
891
|
+
Item: typeof Item$6;
|
|
891
892
|
Ellipsis: typeof Ellipsis;
|
|
892
|
-
NextTrigger: typeof NextTrigger;
|
|
893
|
+
NextTrigger: typeof NextTrigger$1;
|
|
893
894
|
LastTrigger: typeof LastTrigger;
|
|
894
895
|
};
|
|
895
896
|
//#endregion
|
|
@@ -903,7 +904,7 @@ declare function CloseTrigger$1(props: PopoverCloseTriggerProps): react4.JSX.Ele
|
|
|
903
904
|
//#endregion
|
|
904
905
|
//#region src/components/popover/anatomy/content.d.ts
|
|
905
906
|
interface PopoverContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
906
|
-
declare function Content$
|
|
907
|
+
declare function Content$3(props: PopoverContentProps): react4.JSX.Element;
|
|
907
908
|
//#endregion
|
|
908
909
|
//#region src/components/popover/anatomy/description.d.ts
|
|
909
910
|
interface PopoverDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -924,13 +925,13 @@ declare function usePopover(props?: Omit<Props$11, 'id'>): Api$11<PropTypes>;
|
|
|
924
925
|
interface PopoverRootContextProps {
|
|
925
926
|
children: (popover: ReturnType<typeof usePopover>) => ReactNode;
|
|
926
927
|
}
|
|
927
|
-
declare function RootContext$
|
|
928
|
+
declare function RootContext$12(props: PopoverRootContextProps): ReactNode;
|
|
928
929
|
//#endregion
|
|
929
930
|
//#region src/components/popover/anatomy/root-provider.d.ts
|
|
930
931
|
interface PopoverRootProviderProps extends PropsWithChildren {
|
|
931
932
|
value: ReturnType<typeof usePopover>;
|
|
932
933
|
}
|
|
933
|
-
declare function RootProvider$
|
|
934
|
+
declare function RootProvider$9(props: PopoverRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
934
935
|
//#endregion
|
|
935
936
|
//#region src/components/popover/anatomy/title.d.ts
|
|
936
937
|
interface PopoverTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -946,16 +947,16 @@ declare function ArrowTip$1(props: PopoverArrowTipProps): react4.JSX.Element;
|
|
|
946
947
|
//#endregion
|
|
947
948
|
//#region src/components/popover/anatomy/trigger.d.ts
|
|
948
949
|
interface PopoverTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
949
|
-
declare function Trigger$
|
|
950
|
+
declare function Trigger$3(props: PopoverTriggerProps): react4.JSX.Element;
|
|
950
951
|
//#endregion
|
|
951
952
|
//#region src/components/popover/modules/anatomy.d.ts
|
|
952
953
|
declare const Popover: typeof Root$10 & {
|
|
953
|
-
Provider: typeof RootProvider$
|
|
954
|
-
Context: typeof RootContext$
|
|
954
|
+
Provider: typeof RootProvider$9;
|
|
955
|
+
Context: typeof RootContext$12;
|
|
955
956
|
Anchor: typeof Anchor;
|
|
956
|
-
Trigger: typeof Trigger$
|
|
957
|
+
Trigger: typeof Trigger$3;
|
|
957
958
|
Positioner: typeof Positioner$1;
|
|
958
|
-
Content: typeof Content$
|
|
959
|
+
Content: typeof Content$3;
|
|
959
960
|
Arrow: typeof Arrow$1;
|
|
960
961
|
ArrowTip: typeof ArrowTip$1;
|
|
961
962
|
Title: typeof Title$1;
|
|
@@ -1002,13 +1003,13 @@ declare function useProgress(props?: Omit<Props$12, 'id'>): Api$12<PropTypes>;
|
|
|
1002
1003
|
interface ProgressRootContextProps {
|
|
1003
1004
|
children: (progress: ReturnType<typeof useProgress>) => ReactNode;
|
|
1004
1005
|
}
|
|
1005
|
-
declare function RootContext$
|
|
1006
|
+
declare function RootContext$11(props: ProgressRootContextProps): ReactNode;
|
|
1006
1007
|
//#endregion
|
|
1007
1008
|
//#region src/components/progress/anatomy/root-provider.d.ts
|
|
1008
1009
|
interface ProgressRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1009
1010
|
value: ReturnType<typeof useProgress>;
|
|
1010
1011
|
}
|
|
1011
|
-
declare function RootProvider$
|
|
1012
|
+
declare function RootProvider$8(props: ProgressRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1012
1013
|
//#endregion
|
|
1013
1014
|
//#region src/components/progress/anatomy/track.d.ts
|
|
1014
1015
|
interface ProgressTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -1032,8 +1033,8 @@ declare function CircleTrack(props: ProgressCircleTrackProps): react4.JSX.Elemen
|
|
|
1032
1033
|
//#endregion
|
|
1033
1034
|
//#region src/components/progress/modules/anatomy.d.ts
|
|
1034
1035
|
declare const Progress: typeof Root$8 & {
|
|
1035
|
-
Provider: typeof RootProvider$
|
|
1036
|
-
Context: typeof RootContext$
|
|
1036
|
+
Provider: typeof RootProvider$8;
|
|
1037
|
+
Context: typeof RootContext$11;
|
|
1037
1038
|
Label: typeof Label$6;
|
|
1038
1039
|
ValueText: typeof ValueText$1;
|
|
1039
1040
|
Track: typeof Track$1;
|
|
@@ -1072,7 +1073,7 @@ interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HT
|
|
|
1072
1073
|
*/
|
|
1073
1074
|
full?: ReactNode;
|
|
1074
1075
|
}
|
|
1075
|
-
declare function Item$
|
|
1076
|
+
declare function Item$5(props: RatingGroupItemProps): react4.JSX.Element;
|
|
1076
1077
|
//#endregion
|
|
1077
1078
|
//#region src/components/rating-group/anatomy/label.d.ts
|
|
1078
1079
|
interface RatingGroupLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
@@ -1089,21 +1090,21 @@ declare function useRatingGroup(props?: Omit<Props$13, 'id'>): Api$13<PropTypes>
|
|
|
1089
1090
|
interface RatingGroupRootContextProps {
|
|
1090
1091
|
children: (ratingGroup: ReturnType<typeof useRatingGroup>) => ReactNode;
|
|
1091
1092
|
}
|
|
1092
|
-
declare function RootContext$
|
|
1093
|
+
declare function RootContext$10(props: RatingGroupRootContextProps): ReactNode;
|
|
1093
1094
|
//#endregion
|
|
1094
1095
|
//#region src/components/rating-group/anatomy/root-provider.d.ts
|
|
1095
1096
|
interface RatingGroupRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1096
1097
|
value: ReturnType<typeof useRatingGroup>;
|
|
1097
1098
|
}
|
|
1098
|
-
declare function RootProvider$
|
|
1099
|
+
declare function RootProvider$7(props: RatingGroupRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1099
1100
|
//#endregion
|
|
1100
1101
|
//#region src/components/rating-group/modules/anatomy.d.ts
|
|
1101
1102
|
declare const RatingGroup: typeof Root$7 & {
|
|
1102
|
-
Provider: typeof RootProvider$
|
|
1103
|
-
Context: typeof RootContext$
|
|
1103
|
+
Provider: typeof RootProvider$7;
|
|
1104
|
+
Context: typeof RootContext$10;
|
|
1104
1105
|
Label: typeof Label$5;
|
|
1105
1106
|
Control: typeof Control$4;
|
|
1106
|
-
Item: typeof Item$
|
|
1107
|
+
Item: typeof Item$5;
|
|
1107
1108
|
HiddenInput: typeof HiddenInput$3;
|
|
1108
1109
|
};
|
|
1109
1110
|
//#endregion
|
|
@@ -1113,7 +1114,7 @@ declare function Control$3(props: SegmentedControlControlProps): react4.JSX.Elem
|
|
|
1113
1114
|
//#endregion
|
|
1114
1115
|
//#region src/components/segmented-control/anatomy/indicator.d.ts
|
|
1115
1116
|
interface SegmentedControlIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1116
|
-
declare function Indicator$
|
|
1117
|
+
declare function Indicator$2(props: SegmentedControlIndicatorProps): react4.JSX.Element;
|
|
1117
1118
|
//#endregion
|
|
1118
1119
|
//#region src/components/segmented-control/anatomy/item-hidden-input.d.ts
|
|
1119
1120
|
interface SegmentedControlItemHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
@@ -1125,7 +1126,7 @@ declare function ItemText$1(props: SegmentedControlItemTextProps): react4.JSX.El
|
|
|
1125
1126
|
//#endregion
|
|
1126
1127
|
//#region src/components/segmented-control/anatomy/item.d.ts
|
|
1127
1128
|
interface SegmentedControlItemProps extends ItemProps$7, PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1128
|
-
declare function Item$
|
|
1129
|
+
declare function Item$4(props: SegmentedControlItemProps): react_jsx_runtime0.JSX.Element;
|
|
1129
1130
|
//#endregion
|
|
1130
1131
|
//#region src/components/segmented-control/anatomy/label.d.ts
|
|
1131
1132
|
interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
@@ -1138,13 +1139,13 @@ declare function useSegmentedControl(props?: Omit<Props$14, 'id'>): Api$14<PropT
|
|
|
1138
1139
|
interface SegmentedControlRootContextProps {
|
|
1139
1140
|
children: (ratingGroup: ReturnType<typeof useSegmentedControl>) => ReactNode;
|
|
1140
1141
|
}
|
|
1141
|
-
declare function RootContext$
|
|
1142
|
+
declare function RootContext$9(props: SegmentedControlRootContextProps): ReactNode;
|
|
1142
1143
|
//#endregion
|
|
1143
1144
|
//#region src/components/segmented-control/anatomy/root-provider.d.ts
|
|
1144
1145
|
interface SegmentedControlRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1145
1146
|
value: ReturnType<typeof useSegmentedControl>;
|
|
1146
1147
|
}
|
|
1147
|
-
declare function RootProvider$
|
|
1148
|
+
declare function RootProvider$6(props: SegmentedControlRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1148
1149
|
//#endregion
|
|
1149
1150
|
//#region src/components/segmented-control/anatomy/root.d.ts
|
|
1150
1151
|
interface SegmentedControlRootProps extends Omit<Props$14, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1152,12 +1153,12 @@ declare function Root$6(props: SegmentedControlRootProps): react_jsx_runtime0.JS
|
|
|
1152
1153
|
//#endregion
|
|
1153
1154
|
//#region src/components/segmented-control/modules/anatomy.d.ts
|
|
1154
1155
|
declare const SegmentedControl: typeof Root$6 & {
|
|
1155
|
-
Provider: typeof RootProvider$
|
|
1156
|
-
Context: typeof RootContext$
|
|
1156
|
+
Provider: typeof RootProvider$6;
|
|
1157
|
+
Context: typeof RootContext$9;
|
|
1157
1158
|
Label: typeof Label$4;
|
|
1158
1159
|
Control: typeof Control$3;
|
|
1159
|
-
Indicator: typeof Indicator$
|
|
1160
|
-
Item: typeof Item$
|
|
1160
|
+
Indicator: typeof Indicator$2;
|
|
1161
|
+
Item: typeof Item$4;
|
|
1161
1162
|
ItemText: typeof ItemText$1;
|
|
1162
1163
|
ItemHiddenInput: typeof ItemHiddenInput;
|
|
1163
1164
|
};
|
|
@@ -1193,7 +1194,7 @@ declare function useSlider(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
|
1193
1194
|
interface SliderRootContextProps {
|
|
1194
1195
|
children: (slider: ReturnType<typeof useSlider>) => ReactNode;
|
|
1195
1196
|
}
|
|
1196
|
-
declare function RootContext$
|
|
1197
|
+
declare function RootContext$8(props: SliderRootContextProps): ReactNode;
|
|
1197
1198
|
//#endregion
|
|
1198
1199
|
//#region src/components/slider/anatomy/root-provider.d.ts
|
|
1199
1200
|
interface SliderRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -1203,7 +1204,7 @@ declare function SliderRootProvider(props: SliderRootProviderProps): react_jsx_r
|
|
|
1203
1204
|
//#endregion
|
|
1204
1205
|
//#region src/components/slider/anatomy/root.d.ts
|
|
1205
1206
|
interface SliderRootProps extends Omit<Props$15, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'aria-label' | 'aria-labelledby'> {}
|
|
1206
|
-
declare function SliderRoot(props: SliderRootProps): react_jsx_runtime0.JSX.Element;
|
|
1207
|
+
declare function SliderRoot$1(props: SliderRootProps): react_jsx_runtime0.JSX.Element;
|
|
1207
1208
|
//#endregion
|
|
1208
1209
|
//#region src/components/slider/anatomy/thumb.d.ts
|
|
1209
1210
|
interface SliderThumbProps extends ThumbProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -1218,9 +1219,9 @@ interface SliderValueTextProps extends PropsWithElement<'output'>, HTMLAttribute
|
|
|
1218
1219
|
declare function ValueText(props: SliderValueTextProps): react4.JSX.Element;
|
|
1219
1220
|
//#endregion
|
|
1220
1221
|
//#region src/components/slider/modules/anatomy.d.ts
|
|
1221
|
-
declare const Slider: typeof SliderRoot & {
|
|
1222
|
+
declare const Slider: typeof SliderRoot$1 & {
|
|
1222
1223
|
Provider: typeof SliderRootProvider;
|
|
1223
|
-
Context: typeof RootContext$
|
|
1224
|
+
Context: typeof RootContext$8;
|
|
1224
1225
|
Label: typeof Label$3;
|
|
1225
1226
|
ValueText: typeof ValueText;
|
|
1226
1227
|
Control: typeof Control$2;
|
|
@@ -1232,6 +1233,71 @@ declare const Slider: typeof SliderRoot & {
|
|
|
1232
1233
|
Marker: typeof Marker;
|
|
1233
1234
|
};
|
|
1234
1235
|
//#endregion
|
|
1236
|
+
//#region src/components/steps/anatomy/content.d.ts
|
|
1237
|
+
interface StepsContentProps extends ItemProps$8, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1238
|
+
declare function Content$2(props: StepsContentProps): react4.JSX.Element;
|
|
1239
|
+
//#endregion
|
|
1240
|
+
//#region src/components/steps/anatomy/indicator.d.ts
|
|
1241
|
+
interface StepsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1242
|
+
declare function Indicator$1(props: StepsIndicatorProps): react4.JSX.Element;
|
|
1243
|
+
//#endregion
|
|
1244
|
+
//#region src/components/steps/anatomy/item.d.ts
|
|
1245
|
+
interface StepsItemProps extends ItemProps$8, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1246
|
+
declare function Item$3(props: StepsItemProps): react_jsx_runtime0.JSX.Element;
|
|
1247
|
+
//#endregion
|
|
1248
|
+
//#region src/components/steps/anatomy/list.d.ts
|
|
1249
|
+
interface StepsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1250
|
+
declare function List$1(props: StepsListProps): react4.JSX.Element;
|
|
1251
|
+
//#endregion
|
|
1252
|
+
//#region src/components/steps/anatomy/next-trigger.d.ts
|
|
1253
|
+
interface StepsNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1254
|
+
declare function NextTrigger(props: StepsNextTriggerProps): react4.JSX.Element;
|
|
1255
|
+
//#endregion
|
|
1256
|
+
//#region src/components/steps/anatomy/prev-trigger.d.ts
|
|
1257
|
+
interface StepsPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1258
|
+
declare function PrevTrigger(props: StepsPrevTriggerProps): react4.JSX.Element;
|
|
1259
|
+
//#endregion
|
|
1260
|
+
//#region src/components/steps/anatomy/root.d.ts
|
|
1261
|
+
interface StepsRootProps extends Omit<Props$16, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1262
|
+
declare function SliderRoot(props: StepsRootProps): react_jsx_runtime0.JSX.Element;
|
|
1263
|
+
//#endregion
|
|
1264
|
+
//#region src/components/steps/modules/provider.d.ts
|
|
1265
|
+
declare function useSteps(props?: Omit<Props$16, 'id'>): Api$16<PropTypes>;
|
|
1266
|
+
//#endregion
|
|
1267
|
+
//#region src/components/steps/anatomy/root-context.d.ts
|
|
1268
|
+
interface StepsRootContextProps {
|
|
1269
|
+
children: (steps: ReturnType<typeof useSteps>) => ReactNode;
|
|
1270
|
+
}
|
|
1271
|
+
declare function RootContext$7(props: StepsRootContextProps): ReactNode;
|
|
1272
|
+
//#endregion
|
|
1273
|
+
//#region src/components/steps/anatomy/root-provider.d.ts
|
|
1274
|
+
interface StepsRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1275
|
+
value: ReturnType<typeof useSteps>;
|
|
1276
|
+
}
|
|
1277
|
+
declare function RootProvider$5(props: StepsRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1278
|
+
//#endregion
|
|
1279
|
+
//#region src/components/steps/anatomy/separator.d.ts
|
|
1280
|
+
interface StepsSeparatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1281
|
+
declare function Separator(props: StepsSeparatorProps): react4.JSX.Element;
|
|
1282
|
+
//#endregion
|
|
1283
|
+
//#region src/components/steps/anatomy/trigger.d.ts
|
|
1284
|
+
interface StepsTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1285
|
+
declare function Trigger$2(props: StepsTriggerProps): react4.JSX.Element;
|
|
1286
|
+
//#endregion
|
|
1287
|
+
//#region src/components/steps/modules/anatomy.d.ts
|
|
1288
|
+
declare const Steps: typeof SliderRoot & {
|
|
1289
|
+
Provider: typeof RootProvider$5;
|
|
1290
|
+
Context: typeof RootContext$7;
|
|
1291
|
+
List: typeof List$1;
|
|
1292
|
+
Item: typeof Item$3;
|
|
1293
|
+
Trigger: typeof Trigger$2;
|
|
1294
|
+
Indicator: typeof Indicator$1;
|
|
1295
|
+
Separator: typeof Separator;
|
|
1296
|
+
Content: typeof Content$2;
|
|
1297
|
+
PrevTrigger: typeof PrevTrigger;
|
|
1298
|
+
NextTrigger: typeof NextTrigger;
|
|
1299
|
+
};
|
|
1300
|
+
//#endregion
|
|
1235
1301
|
//#region src/components/switch/anatomy/control.d.ts
|
|
1236
1302
|
interface SwitchControlProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1237
1303
|
declare function Control$1(props: SwitchControlProps): react4.JSX.Element;
|
|
@@ -1245,7 +1311,7 @@ interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'spa
|
|
|
1245
1311
|
declare function Label$2(props: SwitchLabelProps): react4.JSX.Element;
|
|
1246
1312
|
//#endregion
|
|
1247
1313
|
//#region src/components/switch/modules/provider.d.ts
|
|
1248
|
-
declare function useSwitch(props?: Omit<Props$
|
|
1314
|
+
declare function useSwitch(props?: Omit<Props$17, 'id'>): Api$17<PropTypes>;
|
|
1249
1315
|
//#endregion
|
|
1250
1316
|
//#region src/components/switch/anatomy/root-context.d.ts
|
|
1251
1317
|
interface SwitchRootContextProps {
|
|
@@ -1264,7 +1330,7 @@ interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'spa
|
|
|
1264
1330
|
declare function Thumb(props: SwitchThumbProps): react4.JSX.Element;
|
|
1265
1331
|
//#endregion
|
|
1266
1332
|
//#region src/components/switch/anatomy/root.d.ts
|
|
1267
|
-
interface SwitchRootProps extends Omit<Props$
|
|
1333
|
+
interface SwitchRootProps extends Omit<Props$17, 'id'>, PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
1268
1334
|
declare function Root$5(props: SwitchRootProps): react_jsx_runtime0.JSX.Element;
|
|
1269
1335
|
//#endregion
|
|
1270
1336
|
//#region src/components/switch/modules/anatomy.d.ts
|
|
@@ -1290,11 +1356,11 @@ interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', '
|
|
|
1290
1356
|
declare function List(props: TabsListProps): react4.JSX.Element;
|
|
1291
1357
|
//#endregion
|
|
1292
1358
|
//#region src/components/tabs/anatomy/root.d.ts
|
|
1293
|
-
interface TabsRootProps extends Omit<Props$
|
|
1359
|
+
interface TabsRootProps extends Omit<Props$18, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1294
1360
|
declare function Root$4(props: TabsRootProps): react_jsx_runtime0.JSX.Element;
|
|
1295
1361
|
//#endregion
|
|
1296
1362
|
//#region src/components/tabs/modules/provider.d.ts
|
|
1297
|
-
declare function useTabs(props?: Omit<Props$
|
|
1363
|
+
declare function useTabs(props?: Omit<Props$18, 'id'>): Api$18<PropTypes>;
|
|
1298
1364
|
//#endregion
|
|
1299
1365
|
//#region src/components/tabs/anatomy/root-context.d.ts
|
|
1300
1366
|
interface TabsRootContextProps {
|
|
@@ -1339,7 +1405,7 @@ interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<
|
|
|
1339
1405
|
declare function Input(props: TagsInputInputProps): react4.JSX.Element;
|
|
1340
1406
|
//#endregion
|
|
1341
1407
|
//#region src/components/tags-input/anatomy/item.d.ts
|
|
1342
|
-
interface TagsInputItemProps extends ItemProps$
|
|
1408
|
+
interface TagsInputItemProps extends ItemProps$9, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1343
1409
|
declare function Item$2(props: TagsInputItemProps): react_jsx_runtime0.JSX.Element;
|
|
1344
1410
|
//#endregion
|
|
1345
1411
|
//#region src/components/tags-input/anatomy/item-delete-trigger.d.ts
|
|
@@ -1363,11 +1429,11 @@ interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<
|
|
|
1363
1429
|
declare function Label$1(props: TagsInputLabelProps): react4.JSX.Element;
|
|
1364
1430
|
//#endregion
|
|
1365
1431
|
//#region src/components/tags-input/anatomy/root.d.ts
|
|
1366
|
-
interface TagsInputRootProps extends Omit<Props$
|
|
1432
|
+
interface TagsInputRootProps extends Omit<Props$19, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1367
1433
|
declare function Root$3(props: TagsInputRootProps): react_jsx_runtime0.JSX.Element;
|
|
1368
1434
|
//#endregion
|
|
1369
1435
|
//#region src/components/tags-input/modules/provider.d.ts
|
|
1370
|
-
declare function useTagsInput(props?: Omit<Props$
|
|
1436
|
+
declare function useTagsInput(props?: Omit<Props$19, 'id'>): Api$19<PropTypes>;
|
|
1371
1437
|
//#endregion
|
|
1372
1438
|
//#region src/components/tags-input/anatomy/root-context.d.ts
|
|
1373
1439
|
interface TagsInputRootContextProps {
|
|
@@ -1408,7 +1474,7 @@ declare function Description(props: ToastDescriptionProps): react4.JSX.Element;
|
|
|
1408
1474
|
//#region src/components/toast/anatomy/group.d.ts
|
|
1409
1475
|
interface ToastGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'children'> {
|
|
1410
1476
|
toaster: Store;
|
|
1411
|
-
children?: (toast: Props$
|
|
1477
|
+
children?: (toast: Props$20) => JSX.Element | null;
|
|
1412
1478
|
}
|
|
1413
1479
|
declare function Group(props: ToastGroupProps): react_jsx_runtime0.JSX.Element;
|
|
1414
1480
|
//#endregion
|
|
@@ -1424,7 +1490,7 @@ declare function Root$2(props: ToastRootProps): react_jsx_runtime0.JSX.Element;
|
|
|
1424
1490
|
//#endregion
|
|
1425
1491
|
//#region src/components/toast/anatomy/root-context.d.ts
|
|
1426
1492
|
interface ToastRootContextProps {
|
|
1427
|
-
children: (toast: Api$
|
|
1493
|
+
children: (toast: Api$20<PropTypes>) => ReactNode;
|
|
1428
1494
|
}
|
|
1429
1495
|
declare function RootContext$3(props: ToastRootContextProps): ReactNode;
|
|
1430
1496
|
//#endregion
|
|
@@ -1448,15 +1514,15 @@ declare const Toast: typeof Root$2 & {
|
|
|
1448
1514
|
};
|
|
1449
1515
|
//#endregion
|
|
1450
1516
|
//#region src/components/toggle-group/anatomy/item.d.ts
|
|
1451
|
-
interface ToggleGroupItemProps extends ItemProps$
|
|
1517
|
+
interface ToggleGroupItemProps extends ItemProps$10, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1452
1518
|
declare function Item$1(props: ToggleGroupItemProps): react4.JSX.Element;
|
|
1453
1519
|
//#endregion
|
|
1454
1520
|
//#region src/components/toggle-group/anatomy/root.d.ts
|
|
1455
|
-
interface ToggleGroupRootProps extends Omit<Props$
|
|
1521
|
+
interface ToggleGroupRootProps extends Omit<Props$21, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1456
1522
|
declare function ToggleGroupRoot(props: ToggleGroupRootProps): react_jsx_runtime0.JSX.Element;
|
|
1457
1523
|
//#endregion
|
|
1458
1524
|
//#region src/components/toggle-group/modules/provider.d.ts
|
|
1459
|
-
declare function useToggleGroup(props?: Omit<Props$
|
|
1525
|
+
declare function useToggleGroup(props?: Omit<Props$21, 'id'>): Api$21<PropTypes>;
|
|
1460
1526
|
//#endregion
|
|
1461
1527
|
//#region src/components/toggle-group/anatomy/root-context.d.ts
|
|
1462
1528
|
interface ToggleGroupRootContextProps {
|
|
@@ -1494,11 +1560,11 @@ interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes
|
|
|
1494
1560
|
declare function Positioner(props: TooltipPositionerProps): react_jsx_runtime0.JSX.Element;
|
|
1495
1561
|
//#endregion
|
|
1496
1562
|
//#region src/components/tooltip/anatomy/root.d.ts
|
|
1497
|
-
interface TooltipRootProps extends PropsWithChildren, Omit<Props$
|
|
1563
|
+
interface TooltipRootProps extends PropsWithChildren, Omit<Props$22, 'id'> {}
|
|
1498
1564
|
declare function Root$1(props: TooltipRootProps): react_jsx_runtime0.JSX.Element;
|
|
1499
1565
|
//#endregion
|
|
1500
1566
|
//#region src/components/tooltip/modules/provider.d.ts
|
|
1501
|
-
declare function useTooltip(props?: Omit<Props$
|
|
1567
|
+
declare function useTooltip(props?: Omit<Props$22, 'id'>): Api$22<PropTypes>;
|
|
1502
1568
|
//#endregion
|
|
1503
1569
|
//#region src/components/tooltip/anatomy/root-context.d.ts
|
|
1504
1570
|
interface TooltipRootContextProps {
|
|
@@ -1579,7 +1645,7 @@ interface TreeViewNodeProviderProps extends PropsWithChildren {
|
|
|
1579
1645
|
declare function NodeProvider(props: TreeViewNodeProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1580
1646
|
//#endregion
|
|
1581
1647
|
//#region src/components/tree-view/modules/provider.d.ts
|
|
1582
|
-
declare function useTreeView<T extends TreeNode = TreeNode>(props?: Omit<Props$
|
|
1648
|
+
declare function useTreeView<T extends TreeNode = TreeNode>(props?: Omit<Props$23<T>, 'id'>): Api$23<PropTypes>;
|
|
1583
1649
|
//#endregion
|
|
1584
1650
|
//#region src/components/tree-view/anatomy/root-context.d.ts
|
|
1585
1651
|
interface TreeViewRootContextProps {
|
|
@@ -1594,7 +1660,7 @@ interface TreeViewRootProviderProps extends PropsWithElement<'div'>, HTMLAttribu
|
|
|
1594
1660
|
declare function RootProvider(props: TreeViewRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1595
1661
|
//#endregion
|
|
1596
1662
|
//#region src/components/tree-view/anatomy/root.d.ts
|
|
1597
|
-
interface TreeViewRootProps<T extends TreeNode = TreeNode> extends Omit<Props$
|
|
1663
|
+
interface TreeViewRootProps<T extends TreeNode = TreeNode> extends Omit<Props$23<T>, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1598
1664
|
declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>): react_jsx_runtime0.JSX.Element;
|
|
1599
1665
|
//#endregion
|
|
1600
1666
|
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
@@ -1621,4 +1687,4 @@ declare const TreeView: typeof Root & {
|
|
|
1621
1687
|
//#region src/hooks/use-list-collection.d.ts
|
|
1622
1688
|
declare function useListCollection<T extends CollectionItem = CollectionItem>(options: CollectionOptions<T>): ListCollection<T>;
|
|
1623
1689
|
//#endregion
|
|
1624
|
-
export { Accordion, type AccordionItemContentProps, type AccordionItemIndicatorProps, type AccordionItemProps, type AccordionItemTriggerProps, type AccordionRootContextProps, type AccordionRootProps, type AccordionRootProviderProps, AppBar, type AppBarHeadlineProps, type AppBarLeadProps, type AppBarRootProps, type AppBarToolbarProps, type AppBarTrailProps, Avatar, type AvatarFallbackProps, type AvatarImageProps, type AvatarRootContextProps, type AvatarRootProps, type AvatarRootProviderProps, Collapsible, type CollapsibleContentProps, type CollapsibleIndicatorProps, type CollapsibleRootContextProps, type CollapsibleRootProps, type CollapsibleRootProviderProps, type CollapsibleTriggerProps, Combobox, type ComboboxClearTriggerProps, type ComboboxContentProps, type ComboboxControlProps, type ComboboxInputProps, type ComboboxItemGroupLabelProps, type ComboboxItemGroupProps, type ComboboxItemIndicatorProps, type ComboboxItemProps, type ComboboxItemTextProps, type ComboboxLabelProps, type ComboboxPositionerProps, type ComboboxRootContextProps, type ComboboxRootProps, type ComboboxRootProviderProps, type ComboboxTriggerProps, DatePicker, type DatePickerContentProps, type DatePickerControlProps, type DatePickerInputProps, type DatePickerLabelProps, type DatePickerMonthSelectProps, type DatePickerNextTriggerProps, type DatePickerPositionerProps, type DatePickerPresetTriggerProps, type DatePickerPrevTriggerProps, type DatePickerRangeTextProps, type DatePickerRootContextProps, type DatePickerRootProps, type DatePickerRootProviderProps, type DatePickerTableBodyProps, type DatePickerTableCellProps, type DatePickerTableCellTriggerProps, type DatePickerTableHeadProps, type DatePickerTableHeaderProps, type DatePickerTableProps, type DatePickerTableRowProps, type DatePickerTriggerProps, type DatePickerViewControlProps, type DatePickerViewProps, type DatePickerViewTriggerProps, type DatePickerYearSelectProps, type DateValue, Dialog, type DialogBackdropProps, type DialogCloseTriggerProps, type DialogContentProps, type DialogDescriptionProps, type DialogPositionerProps, type DialogRootContextProps, type DialogRootProps, type DialogRootProviderProps, type DialogTitleProps, type DialogTriggerProps, FileUpload, type FileUploadClearTriggerProps, type FileUploadDropzoneProps, type FileUploadHiddenInputProps, type FileUploadItemDeleteTriggerProps, type FileUploadItemGroupProps, type FileUploadItemNameProps, type FileUploadItemProps, type FileUploadItemSizeTextProps, type FileUploadLabelProps, type FileUploadRootContextProps, type FileUploadRootProps, type FileUploadRootProviderProps, type FileUploadTriggerProps, FloatingPanel, type FloatingPanelBodyProps, type FloatingPanelCloseTriggerProps, type FloatingPanelContentProps, type FloatingPanelControlProps, type FloatingPanelDragTriggerProps, type FloatingPanelHeaderProps, type FloatingPanelPositionerProps, type FloatingPanelResizeTriggerProps, type FloatingPanelRootContextProps, type FloatingPanelRootProps, type FloatingPanelRootProviderProps, type FloatingPanelStageTriggerProps, type FloatingPanelTitleProps, type FloatingPanelTriggerProps, Listbox, type ListboxContentProps, type ListboxInputProps, type ListboxItemGroupLabelProps, type ListboxItemGroupProps, type ListboxItemIndicatorProps, type ListboxItemProps, type ListboxItemTextProps, type ListboxLabelProps, type ListboxRootContextProps, type ListboxRootProps, type ListboxRootProviderProps, Menu, type MenuArrowProps, type MenuArrowTipProps, type MenuContentProps, type MenuContextTriggerProps, type MenuIndicatorProps, type MenuItemGroupLabelProps, type MenuItemGroupProps, type MenuItemIndicatorProps, type MenuItemProps, type MenuItemTextProps, type MenuOptionItemProps, type MenuPositionerProps, type MenuRootContextProps, type MenuRootProps, type MenuRootProviderProps, type MenuSeparatorProps, type MenuTriggerItemProps, type MenuTriggerProps, Navigation, type NavigationContentProps, type NavigationFooterProps, type NavigationGroupProps, type NavigationHeaderProps, type NavigationLabelProps, type NavigationMenuProps, type NavigationRootProps, Pagination, type PaginationEllipsisProps, type PaginationFirstTriggerProps, type PaginationItemProps, type PaginationLastTriggerProps, type PaginationNextTriggerProps, type PaginationPrevTriggerProps, type PaginationRootContextProps, type PaginationRootProps, type PaginationRootProviderProps, Popover, type PopoverAnchorProps, type PopoverArrowProps, type PopoverArrowTipProps, type PopoverCloseTriggerProps, type PopoverContentProps, type PopoverDescriptionProps, type PopoverPositionerProps, type PopoverRootContextProps, type PopoverRootProps, type PopoverRootProviderProps, type PopoverTitleProps, type PopoverTriggerProps, Portal, type PortalRootProps, Progress, type ProgressCircleProps, type ProgressCircleRangeProps, type ProgressCircleTrackProps, type ProgressLabelProps, type ProgressRangeProps, type ProgressRootContextProps, type ProgressRootProps, type ProgressRootProviderProps, type ProgressTrackProps, type ProgressValueTextProps, RatingGroup, type RatingGroupControlProps, type RatingGroupHiddenInputProps, type RatingGroupItemProps, type RatingGroupLabelProps, type RatingGroupRootContextProps, type RatingGroupRootProps, type RatingGroupRootProviderProps, SegmentedControl, type SegmentedControlControlProps, type SegmentedControlIndicatorProps, type SegmentedControlItemHiddenInputProps, type SegmentedControlItemProps, type SegmentedControlItemTextProps, type SegmentedControlLabelProps, type SegmentedControlRootContextProps, type SegmentedControlRootProps, type SegmentedControlRootProviderProps, Slider, type SliderControlProps, type SliderHiddenInputProps, type SliderLabelProps, type SliderMarkerGroupProps, type SliderMarkerProps, type SliderRangeProps, type SliderRootContextProps, type SliderRootProps, type SliderRootProviderProps, type SliderThumbProps, type SliderTrackProps, type SliderValueTextProps, Switch, type SwitchControlProps, type SwitchHiddenInputProps, type SwitchLabelProps, type SwitchRootContextProps, type SwitchRootProps, type SwitchRootProviderProps, type SwitchThumbProps, Tabs, type TabsContentProps, type TabsIndicatorProps, type TabsListProps, type TabsRootContextProps, type TabsRootProps, type TabsRootProviderProps, type TabsTriggerProps, TagsInput, type TagsInputClearTriggerProps, type TagsInputControlProps, type TagsInputHiddenInputProps, type TagsInputInputProps, type TagsInputItemDeleteTriggerProps, type TagsInputItemInputProps, type TagsInputItemPreviewProps, type TagsInputItemProps, type TagsInputItemTextProps, type TagsInputLabelProps, type TagsInputRootContextProps, type TagsInputRootProps, type TagsInputRootProviderProps, Toast, type ToastActionTriggerProps, type ToastCloseTriggerProps, type ToastDescriptionProps, type ToastGroupProps, type ToastMessageProps, type ToastRootContextProps, type ToastRootProps, type ToastTitleProps, ToggleGroup, type ToggleGroupItemProps, type ToggleGroupRootContextProps, type ToggleGroupRootProps, type ToggleGroupRootProviderProps, Tooltip, type TooltipArrowProps, type TooltipArrowTipProps, type TooltipContentProps, type TooltipPositionerProps, type TooltipRootContextProps, type TooltipRootProps, type TooltipRootProviderProps, type TooltipTriggerProps, TreeView, type TreeViewBranchContentProps, type TreeViewBranchControlProps, type TreeViewBranchIndentGuideProps, type TreeViewBranchIndicatorProps, type TreeViewBranchProps, type TreeViewBranchTextProps, type TreeViewItemProps, type TreeViewLabelProps, type TreeViewNodeContextProps, type TreeViewNodeProviderProps, type TreeViewRootContextProps, type TreeViewRootProps, type TreeViewRootProviderProps, type TreeViewTreeProps, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useFloatingPanel, useListCollection, useListbox, useMenu, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
|
1690
|
+
export { Accordion, type AccordionItemContentProps, type AccordionItemIndicatorProps, type AccordionItemProps, type AccordionItemTriggerProps, type AccordionRootContextProps, type AccordionRootProps, type AccordionRootProviderProps, AppBar, type AppBarHeadlineProps, type AppBarLeadProps, type AppBarRootProps, type AppBarToolbarProps, type AppBarTrailProps, Avatar, type AvatarFallbackProps, type AvatarImageProps, type AvatarRootContextProps, type AvatarRootProps, type AvatarRootProviderProps, Collapsible, type CollapsibleContentProps, type CollapsibleIndicatorProps, type CollapsibleRootContextProps, type CollapsibleRootProps, type CollapsibleRootProviderProps, type CollapsibleTriggerProps, Combobox, type ComboboxClearTriggerProps, type ComboboxContentProps, type ComboboxControlProps, type ComboboxInputProps, type ComboboxItemGroupLabelProps, type ComboboxItemGroupProps, type ComboboxItemIndicatorProps, type ComboboxItemProps, type ComboboxItemTextProps, type ComboboxLabelProps, type ComboboxPositionerProps, type ComboboxRootContextProps, type ComboboxRootProps, type ComboboxRootProviderProps, type ComboboxTriggerProps, DatePicker, type DatePickerContentProps, type DatePickerControlProps, type DatePickerInputProps, type DatePickerLabelProps, type DatePickerMonthSelectProps, type DatePickerNextTriggerProps, type DatePickerPositionerProps, type DatePickerPresetTriggerProps, type DatePickerPrevTriggerProps, type DatePickerRangeTextProps, type DatePickerRootContextProps, type DatePickerRootProps, type DatePickerRootProviderProps, type DatePickerTableBodyProps, type DatePickerTableCellProps, type DatePickerTableCellTriggerProps, type DatePickerTableHeadProps, type DatePickerTableHeaderProps, type DatePickerTableProps, type DatePickerTableRowProps, type DatePickerTriggerProps, type DatePickerViewControlProps, type DatePickerViewProps, type DatePickerViewTriggerProps, type DatePickerYearSelectProps, type DateValue, Dialog, type DialogBackdropProps, type DialogCloseTriggerProps, type DialogContentProps, type DialogDescriptionProps, type DialogPositionerProps, type DialogRootContextProps, type DialogRootProps, type DialogRootProviderProps, type DialogTitleProps, type DialogTriggerProps, FileUpload, type FileUploadClearTriggerProps, type FileUploadDropzoneProps, type FileUploadHiddenInputProps, type FileUploadItemDeleteTriggerProps, type FileUploadItemGroupProps, type FileUploadItemNameProps, type FileUploadItemProps, type FileUploadItemSizeTextProps, type FileUploadLabelProps, type FileUploadRootContextProps, type FileUploadRootProps, type FileUploadRootProviderProps, type FileUploadTriggerProps, FloatingPanel, type FloatingPanelBodyProps, type FloatingPanelCloseTriggerProps, type FloatingPanelContentProps, type FloatingPanelControlProps, type FloatingPanelDragTriggerProps, type FloatingPanelHeaderProps, type FloatingPanelPositionerProps, type FloatingPanelResizeTriggerProps, type FloatingPanelRootContextProps, type FloatingPanelRootProps, type FloatingPanelRootProviderProps, type FloatingPanelStageTriggerProps, type FloatingPanelTitleProps, type FloatingPanelTriggerProps, Listbox, type ListboxContentProps, type ListboxInputProps, type ListboxItemGroupLabelProps, type ListboxItemGroupProps, type ListboxItemIndicatorProps, type ListboxItemProps, type ListboxItemTextProps, type ListboxLabelProps, type ListboxRootContextProps, type ListboxRootProps, type ListboxRootProviderProps, Menu, type MenuArrowProps, type MenuArrowTipProps, type MenuContentProps, type MenuContextTriggerProps, type MenuIndicatorProps, type MenuItemGroupLabelProps, type MenuItemGroupProps, type MenuItemIndicatorProps, type MenuItemProps, type MenuItemTextProps, type MenuOptionItemProps, type MenuPositionerProps, type MenuRootContextProps, type MenuRootProps, type MenuRootProviderProps, type MenuSeparatorProps, type MenuTriggerItemProps, type MenuTriggerProps, Navigation, type NavigationContentProps, type NavigationFooterProps, type NavigationGroupProps, type NavigationHeaderProps, type NavigationLabelProps, type NavigationMenuProps, type NavigationRootProps, Pagination, type PaginationEllipsisProps, type PaginationFirstTriggerProps, type PaginationItemProps, type PaginationLastTriggerProps, type PaginationNextTriggerProps, type PaginationPrevTriggerProps, type PaginationRootContextProps, type PaginationRootProps, type PaginationRootProviderProps, Popover, type PopoverAnchorProps, type PopoverArrowProps, type PopoverArrowTipProps, type PopoverCloseTriggerProps, type PopoverContentProps, type PopoverDescriptionProps, type PopoverPositionerProps, type PopoverRootContextProps, type PopoverRootProps, type PopoverRootProviderProps, type PopoverTitleProps, type PopoverTriggerProps, Portal, type PortalRootProps, Progress, type ProgressCircleProps, type ProgressCircleRangeProps, type ProgressCircleTrackProps, type ProgressLabelProps, type ProgressRangeProps, type ProgressRootContextProps, type ProgressRootProps, type ProgressRootProviderProps, type ProgressTrackProps, type ProgressValueTextProps, RatingGroup, type RatingGroupControlProps, type RatingGroupHiddenInputProps, type RatingGroupItemProps, type RatingGroupLabelProps, type RatingGroupRootContextProps, type RatingGroupRootProps, type RatingGroupRootProviderProps, SegmentedControl, type SegmentedControlControlProps, type SegmentedControlIndicatorProps, type SegmentedControlItemHiddenInputProps, type SegmentedControlItemProps, type SegmentedControlItemTextProps, type SegmentedControlLabelProps, type SegmentedControlRootContextProps, type SegmentedControlRootProps, type SegmentedControlRootProviderProps, Slider, type SliderControlProps, type SliderHiddenInputProps, type SliderLabelProps, type SliderMarkerGroupProps, type SliderMarkerProps, type SliderRangeProps, type SliderRootContextProps, type SliderRootProps, type SliderRootProviderProps, type SliderThumbProps, type SliderTrackProps, type SliderValueTextProps, Steps, type StepsContentProps, type StepsIndicatorProps, type StepsItemProps, type StepsListProps, type StepsNextTriggerProps, type StepsPrevTriggerProps, type StepsRootContextProps, type StepsRootProps, type StepsRootProviderProps, type StepsSeparatorProps, type StepsTriggerProps, Switch, type SwitchControlProps, type SwitchHiddenInputProps, type SwitchLabelProps, type SwitchRootContextProps, type SwitchRootProps, type SwitchRootProviderProps, type SwitchThumbProps, Tabs, type TabsContentProps, type TabsIndicatorProps, type TabsListProps, type TabsRootContextProps, type TabsRootProps, type TabsRootProviderProps, type TabsTriggerProps, TagsInput, type TagsInputClearTriggerProps, type TagsInputControlProps, type TagsInputHiddenInputProps, type TagsInputInputProps, type TagsInputItemDeleteTriggerProps, type TagsInputItemInputProps, type TagsInputItemPreviewProps, type TagsInputItemProps, type TagsInputItemTextProps, type TagsInputLabelProps, type TagsInputRootContextProps, type TagsInputRootProps, type TagsInputRootProviderProps, Toast, type ToastActionTriggerProps, type ToastCloseTriggerProps, type ToastDescriptionProps, type ToastGroupProps, type ToastMessageProps, type ToastRootContextProps, type ToastRootProps, type ToastTitleProps, ToggleGroup, type ToggleGroupItemProps, type ToggleGroupRootContextProps, type ToggleGroupRootProps, type ToggleGroupRootProviderProps, Tooltip, type TooltipArrowProps, type TooltipArrowTipProps, type TooltipContentProps, type TooltipPositionerProps, type TooltipRootContextProps, type TooltipRootProps, type TooltipRootProviderProps, type TooltipTriggerProps, TreeView, type TreeViewBranchContentProps, type TreeViewBranchControlProps, type TreeViewBranchIndentGuideProps, type TreeViewBranchIndicatorProps, type TreeViewBranchProps, type TreeViewBranchTextProps, type TreeViewItemProps, type TreeViewLabelProps, type TreeViewNodeContextProps, type TreeViewNodeProviderProps, type TreeViewRootContextProps, type TreeViewRootProps, type TreeViewRootProviderProps, type TreeViewTreeProps, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useFloatingPanel, useListCollection, useListbox, useMenu, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSteps, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|