@skeletonlabs/skeleton-react 4.3.4 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +239 -136
- package/dist/index.mjs +753 -451
- package/package.json +32 -31
package/dist/index.d.mts
CHANGED
|
@@ -10,19 +10,20 @@ import { Api as Api$4, DateValue, DayTableCellProps, InputProps, PresetTriggerPr
|
|
|
10
10
|
import { Api as Api$5, Props as Props$5 } from "@zag-js/dialog";
|
|
11
11
|
import { Api as Api$6, ItemProps as ItemProps$2, Props as Props$6 } from "@zag-js/file-upload";
|
|
12
12
|
import { Api as Api$7, ItemGroupLabelProps as ItemGroupLabelProps$1, ItemGroupProps as ItemGroupProps$1, ItemProps as ItemProps$3, Props as Props$7 } from "@zag-js/listbox";
|
|
13
|
-
import { Api as Api$8,
|
|
14
|
-
import { Api as Api$9, Props as Props$9 } from "@zag-js/
|
|
15
|
-
import { Api as Api$10, Props as Props$10 } from "@zag-js/
|
|
16
|
-
import { Api as Api$11,
|
|
17
|
-
import { Api as Api$12, ItemProps as ItemProps$6, Props as Props$12 } from "@zag-js/
|
|
18
|
-
import { Api as Api$13,
|
|
19
|
-
import { Api as Api$14, Props as Props$14 } from "@zag-js/
|
|
20
|
-
import { Api as Api$15,
|
|
21
|
-
import { Api as Api$16,
|
|
22
|
-
import { Api as Api$17,
|
|
23
|
-
import { Api as Api$18,
|
|
24
|
-
import { Api as Api$19, Props as Props$19 } from "@zag-js/
|
|
25
|
-
import { Api as Api$20,
|
|
13
|
+
import { Api as Api$8, ItemGroupLabelProps as ItemGroupLabelProps$2, ItemGroupProps as ItemGroupProps$2, ItemProps as ItemProps$4, OptionItemProps, Props as Props$8, Service } from "@zag-js/menu";
|
|
14
|
+
import { Api as Api$9, EllipsisProps, ItemProps as ItemProps$5, Props as Props$9 } from "@zag-js/pagination";
|
|
15
|
+
import { Api as Api$10, Props as Props$10 } from "@zag-js/popover";
|
|
16
|
+
import { Api as Api$11, Props as Props$11 } from "@zag-js/progress";
|
|
17
|
+
import { Api as Api$12, ItemProps as ItemProps$6, Props as Props$12 } from "@zag-js/rating-group";
|
|
18
|
+
import { Api as Api$13, ItemProps as ItemProps$7, Props as Props$13 } from "@zag-js/radio-group";
|
|
19
|
+
import { Api as Api$14, MarkerProps, Props as Props$14, ThumbProps } from "@zag-js/slider";
|
|
20
|
+
import { Api as Api$15, Props as Props$15 } from "@zag-js/switch";
|
|
21
|
+
import { Api as Api$16, ContentProps, Props as Props$16, TriggerProps } from "@zag-js/tabs";
|
|
22
|
+
import { Api as Api$17, ItemProps as ItemProps$8, Props as Props$17 } from "@zag-js/tags-input";
|
|
23
|
+
import { Api as Api$18, Options, Props as Props$18, Store, createStore as createToaster } from "@zag-js/toast";
|
|
24
|
+
import { Api as Api$19, ItemProps as ItemProps$9, Props as Props$19 } from "@zag-js/toggle-group";
|
|
25
|
+
import { Api as Api$20, Props as Props$20 } from "@zag-js/tooltip";
|
|
26
|
+
import { Api as Api$21, NodeProps, Props as Props$21, TreeNode, collection as createTreeViewCollection } from "@zag-js/tree-view";
|
|
26
27
|
import { CollectionItem, CollectionOptions, ListCollection } from "@zag-js/collection";
|
|
27
28
|
|
|
28
29
|
//#region src/internal/html-attributes.d.ts
|
|
@@ -44,15 +45,15 @@ declare function ItemContent(props: AccordionItemContentProps): react0.JSX.Eleme
|
|
|
44
45
|
//#endregion
|
|
45
46
|
//#region src/components/accordion/anatomy/item-indicator.d.ts
|
|
46
47
|
interface AccordionItemIndicatorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
47
|
-
declare function ItemIndicator$
|
|
48
|
+
declare function ItemIndicator$3(props: AccordionItemIndicatorProps): react0.JSX.Element;
|
|
48
49
|
//#endregion
|
|
49
50
|
//#region src/components/accordion/anatomy/item.d.ts
|
|
50
51
|
interface AccordionItemProps extends ItemProps, PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
51
|
-
declare function Item$
|
|
52
|
+
declare function Item$10(props: AccordionItemProps): react_jsx_runtime0.JSX.Element;
|
|
52
53
|
//#endregion
|
|
53
54
|
//#region src/components/accordion/anatomy/root.d.ts
|
|
54
55
|
interface AccordionRootProps extends Omit<Props, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
55
|
-
declare function Root$
|
|
56
|
+
declare function Root$17(props: AccordionRootProps): react_jsx_runtime0.JSX.Element;
|
|
56
57
|
//#endregion
|
|
57
58
|
//#region src/components/accordion/modules/provider.d.ts
|
|
58
59
|
declare function useAccordion(props?: Omit<Props, 'id'>): Api<PropTypes>;
|
|
@@ -61,25 +62,25 @@ declare function useAccordion(props?: Omit<Props, 'id'>): Api<PropTypes>;
|
|
|
61
62
|
interface AccordionRootContextProps {
|
|
62
63
|
children: (accordion: ReturnType<typeof useAccordion>) => ReactNode;
|
|
63
64
|
}
|
|
64
|
-
declare function RootContext$
|
|
65
|
+
declare function RootContext$21(props: AccordionRootContextProps): ReactNode;
|
|
65
66
|
//#endregion
|
|
66
67
|
//#region src/components/accordion/anatomy/root-provider.d.ts
|
|
67
68
|
interface AccordionRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
68
69
|
value: ReturnType<typeof useAccordion>;
|
|
69
70
|
}
|
|
70
|
-
declare function RootProvider$
|
|
71
|
+
declare function RootProvider$15(props: AccordionRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
71
72
|
//#endregion
|
|
72
73
|
//#region src/components/accordion/anatomy/item-trigger.d.ts
|
|
73
74
|
interface AccordionItemTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
74
75
|
declare function ItemTrigger(props: AccordionItemTriggerProps): react0.JSX.Element;
|
|
75
76
|
//#endregion
|
|
76
77
|
//#region src/components/accordion/modules/anatomy.d.ts
|
|
77
|
-
declare const Accordion: typeof Root$
|
|
78
|
-
Provider: typeof RootProvider$
|
|
79
|
-
Context: typeof RootContext$
|
|
80
|
-
Item: typeof Item$
|
|
78
|
+
declare const Accordion: typeof Root$17 & {
|
|
79
|
+
Provider: typeof RootProvider$15;
|
|
80
|
+
Context: typeof RootContext$21;
|
|
81
|
+
Item: typeof Item$10;
|
|
81
82
|
ItemTrigger: typeof ItemTrigger;
|
|
82
|
-
ItemIndicator: typeof ItemIndicator$
|
|
83
|
+
ItemIndicator: typeof ItemIndicator$3;
|
|
83
84
|
ItemContent: typeof ItemContent;
|
|
84
85
|
};
|
|
85
86
|
//#endregion
|
|
@@ -130,7 +131,7 @@ declare function useAvatar(props?: Omit<Props$1, 'id'>): Api$1<PropTypes>;
|
|
|
130
131
|
interface AvatarRootContextProps {
|
|
131
132
|
children: (avatar: ReturnType<typeof useAvatar>) => ReactNode;
|
|
132
133
|
}
|
|
133
|
-
declare function RootContext$
|
|
134
|
+
declare function RootContext$20(props: AvatarRootContextProps): ReactNode;
|
|
134
135
|
//#endregion
|
|
135
136
|
//#region src/components/avatar/anatomy/root-provider.d.ts
|
|
136
137
|
interface AvatarRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -141,14 +142,14 @@ declare function AvatarRootProvider(props: AvatarRootProviderProps): react_jsx_r
|
|
|
141
142
|
//#region src/components/avatar/modules/anatomy.d.ts
|
|
142
143
|
declare const Avatar: typeof AvatarRoot & {
|
|
143
144
|
Provider: typeof AvatarRootProvider;
|
|
144
|
-
Context: typeof RootContext$
|
|
145
|
+
Context: typeof RootContext$20;
|
|
145
146
|
Image: typeof Image;
|
|
146
147
|
Fallback: typeof Fallback;
|
|
147
148
|
};
|
|
148
149
|
//#endregion
|
|
149
150
|
//#region src/components/collapsible/anatomy/content.d.ts
|
|
150
151
|
interface CollapsibleContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
151
|
-
declare function Content$
|
|
152
|
+
declare function Content$8(props: CollapsibleContentProps): react0.JSX.Element;
|
|
152
153
|
//#endregion
|
|
153
154
|
//#region src/components/collapsible/anatomy/root.d.ts
|
|
154
155
|
interface CollapsibleRootProps extends Omit<Props$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -161,7 +162,7 @@ declare function useCollapsible(props?: Omit<Props$2, 'id'>): Api$2<PropTypes>;
|
|
|
161
162
|
interface CollapsibleRootContextProps {
|
|
162
163
|
children: (collapsible: ReturnType<typeof useCollapsible>) => ReactNode;
|
|
163
164
|
}
|
|
164
|
-
declare function RootContext$
|
|
165
|
+
declare function RootContext$19(props: CollapsibleRootContextProps): ReactNode;
|
|
165
166
|
//#endregion
|
|
166
167
|
//#region src/components/collapsible/anatomy/root-provider.d.ts
|
|
167
168
|
interface CollapsibleRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -171,52 +172,52 @@ declare function CollapsibleRootProvider(props: CollapsibleRootProviderProps): r
|
|
|
171
172
|
//#endregion
|
|
172
173
|
//#region src/components/collapsible/anatomy/trigger.d.ts
|
|
173
174
|
interface CollapsibleTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
174
|
-
declare function Trigger$
|
|
175
|
+
declare function Trigger$8(props: CollapsibleTriggerProps): react0.JSX.Element;
|
|
175
176
|
//#endregion
|
|
176
177
|
//#region src/components/collapsible/anatomy/indicator.d.ts
|
|
177
178
|
interface CollapsibleIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
178
|
-
declare function Indicator$
|
|
179
|
+
declare function Indicator$3(props: CollapsibleIndicatorProps): react0.JSX.Element;
|
|
179
180
|
//#endregion
|
|
180
181
|
//#region src/components/collapsible/modules/anatomy.d.ts
|
|
181
182
|
declare const Collapsible: typeof CollapsibleRoot & {
|
|
182
183
|
Provider: typeof CollapsibleRootProvider;
|
|
183
|
-
Context: typeof RootContext$
|
|
184
|
-
Trigger: typeof Trigger$
|
|
185
|
-
Indicator: typeof Indicator$
|
|
186
|
-
Content: typeof Content$
|
|
184
|
+
Context: typeof RootContext$19;
|
|
185
|
+
Trigger: typeof Trigger$8;
|
|
186
|
+
Indicator: typeof Indicator$3;
|
|
187
|
+
Content: typeof Content$8;
|
|
187
188
|
};
|
|
188
189
|
//#endregion
|
|
189
190
|
//#region src/components/combobox/anatomy/content.d.ts
|
|
190
191
|
interface ComboboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
191
|
-
declare function Content$
|
|
192
|
+
declare function Content$7(props: ComboboxContentProps): react0.JSX.Element;
|
|
192
193
|
//#endregion
|
|
193
194
|
//#region src/components/combobox/anatomy/control.d.ts
|
|
194
195
|
interface ComboboxControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
195
196
|
declare function Control$6(props: ComboboxControlProps): react0.JSX.Element;
|
|
196
197
|
//#endregion
|
|
197
198
|
//#region src/components/combobox/anatomy/input.d.ts
|
|
198
|
-
interface ComboboxInputProps extends PropsWithElement<'input'>,
|
|
199
|
+
interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
199
200
|
declare function Input$3(props: ComboboxInputProps): react0.JSX.Element;
|
|
200
201
|
//#endregion
|
|
201
202
|
//#region src/components/combobox/anatomy/item.d.ts
|
|
202
203
|
interface ComboboxItemProps extends ItemProps$1, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
203
|
-
declare function Item$
|
|
204
|
+
declare function Item$9(props: ComboboxItemProps): react_jsx_runtime0.JSX.Element;
|
|
204
205
|
//#endregion
|
|
205
206
|
//#region src/components/combobox/anatomy/item-group.d.ts
|
|
206
207
|
interface ComboboxItemGroupProps extends Omit<ItemGroupProps, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id'> {}
|
|
207
|
-
declare function ItemGroup$
|
|
208
|
+
declare function ItemGroup$3(props: ComboboxItemGroupProps): react_jsx_runtime0.JSX.Element;
|
|
208
209
|
//#endregion
|
|
209
210
|
//#region src/components/combobox/anatomy/item-group-label.d.ts
|
|
210
211
|
interface ComboboxItemGroupLabelProps extends Omit<ItemGroupLabelProps, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
211
|
-
declare function ItemGroupLabel$
|
|
212
|
+
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps): react0.JSX.Element;
|
|
212
213
|
//#endregion
|
|
213
214
|
//#region src/components/combobox/anatomy/item-indicator.d.ts
|
|
214
215
|
interface ComboboxItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
215
|
-
declare function ItemIndicator$
|
|
216
|
+
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps): react0.JSX.Element;
|
|
216
217
|
//#endregion
|
|
217
218
|
//#region src/components/combobox/anatomy/item-text.d.ts
|
|
218
219
|
interface ComboboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
219
|
-
declare function ItemText$
|
|
220
|
+
declare function ItemText$4(props: ComboboxItemTextProps): react0.JSX.Element;
|
|
220
221
|
//#endregion
|
|
221
222
|
//#region src/components/combobox/anatomy/label.d.ts
|
|
222
223
|
interface ComboboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
@@ -224,11 +225,11 @@ declare function Label$10(props: ComboboxLabelProps): react0.JSX.Element;
|
|
|
224
225
|
//#endregion
|
|
225
226
|
//#region src/components/combobox/anatomy/positioner.d.ts
|
|
226
227
|
interface ComboboxPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
227
|
-
declare function Positioner$
|
|
228
|
+
declare function Positioner$5(props: ComboboxPositionerProps): react0.JSX.Element;
|
|
228
229
|
//#endregion
|
|
229
230
|
//#region src/components/combobox/anatomy/root.d.ts
|
|
230
231
|
interface ComboboxRootProps extends Omit<Props$3, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
231
|
-
declare function Root$
|
|
232
|
+
declare function Root$16(props: ComboboxRootProps): react_jsx_runtime0.JSX.Element;
|
|
232
233
|
//#endregion
|
|
233
234
|
//#region src/components/combobox/modules/provider.d.ts
|
|
234
235
|
declare function useCombobox(props?: Omit<Props$3, 'id'>): Api$3<PropTypes>;
|
|
@@ -237,38 +238,38 @@ declare function useCombobox(props?: Omit<Props$3, 'id'>): Api$3<PropTypes>;
|
|
|
237
238
|
interface ComboboxRootContextProps {
|
|
238
239
|
children: (combobox: ReturnType<typeof useCombobox>) => ReactNode;
|
|
239
240
|
}
|
|
240
|
-
declare function RootContext$
|
|
241
|
+
declare function RootContext$18(props: ComboboxRootContextProps): ReactNode;
|
|
241
242
|
//#endregion
|
|
242
243
|
//#region src/components/combobox/anatomy/root-provider.d.ts
|
|
243
244
|
interface ComboboxRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {
|
|
244
245
|
value: ReturnType<typeof useCombobox>;
|
|
245
246
|
}
|
|
246
|
-
declare function RootProvider$
|
|
247
|
+
declare function RootProvider$14(props: ComboboxRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
247
248
|
//#endregion
|
|
248
249
|
//#region src/components/combobox/anatomy/trigger.d.ts
|
|
249
250
|
interface ComboboxTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
250
|
-
declare function Trigger$
|
|
251
|
+
declare function Trigger$7(props: ComboboxTriggerProps): react0.JSX.Element;
|
|
251
252
|
//#endregion
|
|
252
253
|
//#region src/components/combobox/modules/anatomy.d.ts
|
|
253
|
-
declare const Combobox: typeof Root$
|
|
254
|
-
Provider: typeof RootProvider$
|
|
255
|
-
Context: typeof RootContext$
|
|
254
|
+
declare const Combobox: typeof Root$16 & {
|
|
255
|
+
Provider: typeof RootProvider$14;
|
|
256
|
+
Context: typeof RootContext$18;
|
|
256
257
|
Label: typeof Label$10;
|
|
257
258
|
Control: typeof Control$6;
|
|
258
259
|
Input: typeof Input$3;
|
|
259
|
-
Trigger: typeof Trigger$
|
|
260
|
-
Positioner: typeof Positioner$
|
|
261
|
-
Content: typeof Content$
|
|
262
|
-
ItemGroup: typeof ItemGroup$
|
|
263
|
-
ItemGroupLabel: typeof ItemGroupLabel$
|
|
264
|
-
Item: typeof Item$
|
|
265
|
-
ItemText: typeof ItemText$
|
|
266
|
-
ItemIndicator: typeof ItemIndicator$
|
|
260
|
+
Trigger: typeof Trigger$7;
|
|
261
|
+
Positioner: typeof Positioner$5;
|
|
262
|
+
Content: typeof Content$7;
|
|
263
|
+
ItemGroup: typeof ItemGroup$3;
|
|
264
|
+
ItemGroupLabel: typeof ItemGroupLabel$2;
|
|
265
|
+
Item: typeof Item$9;
|
|
266
|
+
ItemText: typeof ItemText$4;
|
|
267
|
+
ItemIndicator: typeof ItemIndicator$2;
|
|
267
268
|
};
|
|
268
269
|
//#endregion
|
|
269
270
|
//#region src/components/date-picker/anatomy/content.d.ts
|
|
270
271
|
interface DatePickerContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
271
|
-
declare function Content$
|
|
272
|
+
declare function Content$6(props: DatePickerContentProps): react0.JSX.Element;
|
|
272
273
|
//#endregion
|
|
273
274
|
//#region src/components/date-picker/anatomy/control.d.ts
|
|
274
275
|
interface DatePickerControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -292,7 +293,7 @@ declare function NextTrigger$1(props: DatePickerNextTriggerProps): react0.JSX.El
|
|
|
292
293
|
//#endregion
|
|
293
294
|
//#region src/components/date-picker/anatomy/positioner.d.ts
|
|
294
295
|
interface DatePickerPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
295
|
-
declare function Positioner$
|
|
296
|
+
declare function Positioner$4(props: DatePickerPositionerProps): react0.JSX.Element;
|
|
296
297
|
//#endregion
|
|
297
298
|
//#region src/components/date-picker/anatomy/preset-trigger.d.ts
|
|
298
299
|
interface DatePickerPresetTriggerProps extends PresetTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
@@ -308,7 +309,7 @@ declare function RangeText(props: DatePickerRangeTextProps): react0.JSX.Element;
|
|
|
308
309
|
//#endregion
|
|
309
310
|
//#region src/components/date-picker/anatomy/root.d.ts
|
|
310
311
|
interface DatePickerRootProps extends Omit<Props$4, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
311
|
-
declare function Root$
|
|
312
|
+
declare function Root$15(props: DatePickerRootProps): react_jsx_runtime0.JSX.Element;
|
|
312
313
|
//#endregion
|
|
313
314
|
//#region src/components/date-picker/modules/provider.d.ts
|
|
314
315
|
declare function useDatePicker(props?: Omit<Props$4, 'id'>): Api$4<PropTypes>;
|
|
@@ -317,13 +318,13 @@ declare function useDatePicker(props?: Omit<Props$4, 'id'>): Api$4<PropTypes>;
|
|
|
317
318
|
interface DatePickerRootContextProps {
|
|
318
319
|
children: (datePicker: ReturnType<typeof useDatePicker>) => ReactNode;
|
|
319
320
|
}
|
|
320
|
-
declare function RootContext$
|
|
321
|
+
declare function RootContext$17(props: DatePickerRootContextProps): ReactNode;
|
|
321
322
|
//#endregion
|
|
322
323
|
//#region src/components/date-picker/anatomy/root-provider.d.ts
|
|
323
324
|
interface DatePickerRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
324
325
|
value: ReturnType<typeof useDatePicker>;
|
|
325
326
|
}
|
|
326
|
-
declare function RootProvider$
|
|
327
|
+
declare function RootProvider$13(props: DatePickerRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
327
328
|
//#endregion
|
|
328
329
|
//#region src/components/date-picker/anatomy/table.d.ts
|
|
329
330
|
interface DatePickerTableProps extends PropsWithElement<'table'>, HTMLAttributes<'table'> {}
|
|
@@ -358,7 +359,7 @@ declare function TableRow(props: DatePickerTableRowProps): react0.JSX.Element;
|
|
|
358
359
|
//#endregion
|
|
359
360
|
//#region src/components/date-picker/anatomy/trigger.d.ts
|
|
360
361
|
interface DatePickerTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
361
|
-
declare function Trigger$
|
|
362
|
+
declare function Trigger$6(props: DatePickerTriggerProps): react0.JSX.Element;
|
|
362
363
|
//#endregion
|
|
363
364
|
//#region src/components/date-picker/anatomy/view.d.ts
|
|
364
365
|
interface DatePickerViewProps extends ViewProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -377,16 +378,16 @@ interface DatePickerYearSelectProps extends PropsWithElement<'select'>, HTMLAttr
|
|
|
377
378
|
declare function YearSelect(props: DatePickerYearSelectProps): react0.JSX.Element;
|
|
378
379
|
//#endregion
|
|
379
380
|
//#region src/components/date-picker/modules/anatomy.d.ts
|
|
380
|
-
declare const DatePicker: typeof Root$
|
|
381
|
-
Provider: typeof RootProvider$
|
|
382
|
-
Context: typeof RootContext$
|
|
381
|
+
declare const DatePicker: typeof Root$15 & {
|
|
382
|
+
Provider: typeof RootProvider$13;
|
|
383
|
+
Context: typeof RootContext$17;
|
|
383
384
|
Label: typeof Label$9;
|
|
384
385
|
Control: typeof Control$5;
|
|
385
386
|
PresetTrigger: typeof PresetTrigger;
|
|
386
387
|
Input: typeof Input$2;
|
|
387
|
-
Trigger: typeof Trigger$
|
|
388
|
-
Positioner: typeof Positioner$
|
|
389
|
-
Content: typeof Content$
|
|
388
|
+
Trigger: typeof Trigger$6;
|
|
389
|
+
Positioner: typeof Positioner$4;
|
|
390
|
+
Content: typeof Content$6;
|
|
390
391
|
YearSelect: typeof YearSelect;
|
|
391
392
|
MonthSelect: typeof MonthSelect;
|
|
392
393
|
View: typeof View;
|
|
@@ -414,7 +415,7 @@ declare function CloseTrigger$2(props: DialogCloseTriggerProps): react0.JSX.Elem
|
|
|
414
415
|
//#endregion
|
|
415
416
|
//#region src/components/dialog/anatomy/content.d.ts
|
|
416
417
|
interface DialogContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
417
|
-
declare function Content$
|
|
418
|
+
declare function Content$5(props: DialogContentProps): react0.JSX.Element;
|
|
418
419
|
//#endregion
|
|
419
420
|
//#region src/components/dialog/anatomy/description.d.ts
|
|
420
421
|
interface DialogDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -422,11 +423,11 @@ declare function Description$2(props: DialogDescriptionProps): react0.JSX.Elemen
|
|
|
422
423
|
//#endregion
|
|
423
424
|
//#region src/components/dialog/anatomy/positioner.d.ts
|
|
424
425
|
interface DialogPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
425
|
-
declare function Positioner$
|
|
426
|
+
declare function Positioner$3(props: DialogPositionerProps): react0.JSX.Element;
|
|
426
427
|
//#endregion
|
|
427
428
|
//#region src/components/dialog/anatomy/root.d.ts
|
|
428
429
|
interface DialogRootProps extends PropsWithChildren, Omit<Props$5, 'id'> {}
|
|
429
|
-
declare function Root$
|
|
430
|
+
declare function Root$14(props: DialogRootProps): react_jsx_runtime0.JSX.Element;
|
|
430
431
|
//#endregion
|
|
431
432
|
//#region src/components/dialog/modules/provider.d.ts
|
|
432
433
|
declare function useDialog(props?: Omit<Props$5, 'id'>): Api$5<PropTypes>;
|
|
@@ -435,13 +436,13 @@ declare function useDialog(props?: Omit<Props$5, 'id'>): Api$5<PropTypes>;
|
|
|
435
436
|
interface DialogRootContextProps {
|
|
436
437
|
children: (dialog: ReturnType<typeof useDialog>) => ReactNode;
|
|
437
438
|
}
|
|
438
|
-
declare function RootContext$
|
|
439
|
+
declare function RootContext$16(props: DialogRootContextProps): ReactNode;
|
|
439
440
|
//#endregion
|
|
440
441
|
//#region src/components/dialog/anatomy/root-provider.d.ts
|
|
441
442
|
interface DialogRootProviderProps extends PropsWithChildren {
|
|
442
443
|
value: ReturnType<typeof useDialog>;
|
|
443
444
|
}
|
|
444
|
-
declare function RootProvider$
|
|
445
|
+
declare function RootProvider$12(props: DialogRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
445
446
|
//#endregion
|
|
446
447
|
//#region src/components/dialog/anatomy/title.d.ts
|
|
447
448
|
interface DialogTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -449,16 +450,16 @@ declare function Title$2(props: DialogTitleProps): react0.JSX.Element;
|
|
|
449
450
|
//#endregion
|
|
450
451
|
//#region src/components/dialog/anatomy/trigger.d.ts
|
|
451
452
|
interface DialogTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
452
|
-
declare function Trigger$
|
|
453
|
+
declare function Trigger$5(props: DialogTriggerProps): react0.JSX.Element;
|
|
453
454
|
//#endregion
|
|
454
455
|
//#region src/components/dialog/modules/anatomy.d.ts
|
|
455
|
-
declare const Dialog: typeof Root$
|
|
456
|
-
Provider: typeof RootProvider$
|
|
457
|
-
Context: typeof RootContext$
|
|
458
|
-
Trigger: typeof Trigger$
|
|
456
|
+
declare const Dialog: typeof Root$14 & {
|
|
457
|
+
Provider: typeof RootProvider$12;
|
|
458
|
+
Context: typeof RootContext$16;
|
|
459
|
+
Trigger: typeof Trigger$5;
|
|
459
460
|
Backdrop: typeof Backdrop;
|
|
460
|
-
Positioner: typeof Positioner$
|
|
461
|
-
Content: typeof Content$
|
|
461
|
+
Positioner: typeof Positioner$3;
|
|
462
|
+
Content: typeof Content$5;
|
|
462
463
|
Title: typeof Title$2;
|
|
463
464
|
Description: typeof Description$2;
|
|
464
465
|
CloseTrigger: typeof CloseTrigger$2;
|
|
@@ -474,7 +475,7 @@ declare function HiddenInput$4(props: FileUploadHiddenInputProps): react0.JSX.El
|
|
|
474
475
|
//#endregion
|
|
475
476
|
//#region src/components/file-upload/anatomy/item.d.ts
|
|
476
477
|
interface FileUploadItemProps extends ItemProps$2, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
477
|
-
declare function Item$
|
|
478
|
+
declare function Item$8(props: FileUploadItemProps): react_jsx_runtime0.JSX.Element;
|
|
478
479
|
//#endregion
|
|
479
480
|
//#region src/components/file-upload/anatomy/item-delete-trigger.d.ts
|
|
480
481
|
interface FileUploadItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
@@ -482,7 +483,7 @@ declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps): r
|
|
|
482
483
|
//#endregion
|
|
483
484
|
//#region src/components/file-upload/anatomy/item-group.d.ts
|
|
484
485
|
interface FileUploadItemGroupProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
485
|
-
declare function ItemGroup$
|
|
486
|
+
declare function ItemGroup$2(props: FileUploadItemGroupProps): react0.JSX.Element;
|
|
486
487
|
//#endregion
|
|
487
488
|
//#region src/components/file-upload/anatomy/item-name.d.ts
|
|
488
489
|
interface FileUploadItemNameProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -498,7 +499,7 @@ declare function Label$8(props: FileUploadLabelProps): react0.JSX.Element;
|
|
|
498
499
|
//#endregion
|
|
499
500
|
//#region src/components/file-upload/anatomy/root.d.ts
|
|
500
501
|
interface FileUploadRootProps extends Omit<Props$6, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {}
|
|
501
|
-
declare function Root$
|
|
502
|
+
declare function Root$13(props: FileUploadRootProps): react_jsx_runtime0.JSX.Element;
|
|
502
503
|
//#endregion
|
|
503
504
|
//#region src/components/file-upload/modules/provider.d.ts
|
|
504
505
|
declare function useFileUpload(props?: Omit<Props$6, 'id'>): Api$6<PropTypes>;
|
|
@@ -507,28 +508,28 @@ declare function useFileUpload(props?: Omit<Props$6, 'id'>): Api$6<PropTypes>;
|
|
|
507
508
|
interface FileUploadRootContextProps {
|
|
508
509
|
children: (fileUpload: ReturnType<typeof useFileUpload>) => ReactNode;
|
|
509
510
|
}
|
|
510
|
-
declare function RootContext$
|
|
511
|
+
declare function RootContext$15(props: FileUploadRootContextProps): ReactNode;
|
|
511
512
|
//#endregion
|
|
512
513
|
//#region src/components/file-upload/anatomy/root-provider.d.ts
|
|
513
514
|
interface FileUploadRootProviderProps extends PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {
|
|
514
515
|
value: ReturnType<typeof useFileUpload>;
|
|
515
516
|
}
|
|
516
|
-
declare function RootProvider$
|
|
517
|
+
declare function RootProvider$11(props: FileUploadRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
517
518
|
//#endregion
|
|
518
519
|
//#region src/components/file-upload/anatomy/trigger.d.ts
|
|
519
520
|
interface FileUploadTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
520
|
-
declare function Trigger$
|
|
521
|
+
declare function Trigger$4(props: FileUploadTriggerProps): react0.JSX.Element;
|
|
521
522
|
//#endregion
|
|
522
523
|
//#region src/components/file-upload/modules/anatomy.d.ts
|
|
523
|
-
declare const FileUpload: typeof Root$
|
|
524
|
-
Provider: typeof RootProvider$
|
|
525
|
-
Context: typeof RootContext$
|
|
524
|
+
declare const FileUpload: typeof Root$13 & {
|
|
525
|
+
Provider: typeof RootProvider$11;
|
|
526
|
+
Context: typeof RootContext$15;
|
|
526
527
|
Label: typeof Label$8;
|
|
527
528
|
Dropzone: typeof Dropzone;
|
|
528
|
-
Trigger: typeof Trigger$
|
|
529
|
+
Trigger: typeof Trigger$4;
|
|
529
530
|
HiddenInput: typeof HiddenInput$4;
|
|
530
|
-
ItemGroup: typeof ItemGroup$
|
|
531
|
-
Item: typeof Item$
|
|
531
|
+
ItemGroup: typeof ItemGroup$2;
|
|
532
|
+
Item: typeof Item$8;
|
|
532
533
|
ItemName: typeof ItemName;
|
|
533
534
|
ItemSizeText: typeof ItemSizeText;
|
|
534
535
|
ItemDeleteTrigger: typeof ItemDeleteTrigger$1;
|
|
@@ -536,19 +537,19 @@ declare const FileUpload: typeof Root$12 & {
|
|
|
536
537
|
//#endregion
|
|
537
538
|
//#region src/components/listbox/anatomy/root.d.ts
|
|
538
539
|
interface ListboxRootProps extends Omit<Props$7, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
539
|
-
declare function Root$
|
|
540
|
+
declare function Root$12(props: ListboxRootProps): react_jsx_runtime0.JSX.Element;
|
|
540
541
|
//#endregion
|
|
541
542
|
//#region src/components/listbox/anatomy/item-group.d.ts
|
|
542
543
|
interface ListboxItemGroupProps extends Omit<ItemGroupProps$1, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id'> {}
|
|
543
|
-
declare function ItemGroup(props: ListboxItemGroupProps): react_jsx_runtime0.JSX.Element;
|
|
544
|
+
declare function ItemGroup$1(props: ListboxItemGroupProps): react_jsx_runtime0.JSX.Element;
|
|
544
545
|
//#endregion
|
|
545
546
|
//#region src/components/listbox/anatomy/item-group-label.d.ts
|
|
546
547
|
interface ListboxItemGroupLabelProps extends Omit<ItemGroupLabelProps$1, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
547
|
-
declare function ItemGroupLabel(props: ListboxItemGroupLabelProps): react0.JSX.Element;
|
|
548
|
+
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react0.JSX.Element;
|
|
548
549
|
//#endregion
|
|
549
550
|
//#region src/components/listbox/anatomy/item.d.ts
|
|
550
551
|
interface ListboxItemProps extends ItemProps$3, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
551
|
-
declare function Item$
|
|
552
|
+
declare function Item$7(props: ListboxItemProps): react_jsx_runtime0.JSX.Element;
|
|
552
553
|
//#endregion
|
|
553
554
|
//#region src/components/listbox/anatomy/input.d.ts
|
|
554
555
|
interface ListboxInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
@@ -556,11 +557,11 @@ declare function Input$1(props: ListboxInputProps): react0.JSX.Element;
|
|
|
556
557
|
//#endregion
|
|
557
558
|
//#region src/components/listbox/anatomy/item-indicator.d.ts
|
|
558
559
|
interface ListboxItemIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
559
|
-
declare function ItemIndicator(props: ListboxItemIndicatorProps): react0.JSX.Element;
|
|
560
|
+
declare function ItemIndicator$1(props: ListboxItemIndicatorProps): react0.JSX.Element;
|
|
560
561
|
//#endregion
|
|
561
562
|
//#region src/components/listbox/anatomy/item-text.d.ts
|
|
562
563
|
interface ListboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
563
|
-
declare function ItemText$
|
|
564
|
+
declare function ItemText$3(props: ListboxItemTextProps): react0.JSX.Element;
|
|
564
565
|
//#endregion
|
|
565
566
|
//#region src/components/listbox/modules/provider.d.ts
|
|
566
567
|
declare function useListbox(props: Omit<Props$7, 'id'>): Api$7<PropTypes>;
|
|
@@ -569,13 +570,13 @@ declare function useListbox(props: Omit<Props$7, 'id'>): Api$7<PropTypes>;
|
|
|
569
570
|
interface ListboxRootContextProps {
|
|
570
571
|
children: (listbox: ReturnType<typeof useListbox>) => ReactNode;
|
|
571
572
|
}
|
|
572
|
-
declare function RootContext$
|
|
573
|
+
declare function RootContext$14(props: ListboxRootContextProps): ReactNode;
|
|
573
574
|
//#endregion
|
|
574
575
|
//#region src/components/listbox/anatomy/root-provider.d.ts
|
|
575
576
|
interface ListboxRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {
|
|
576
577
|
value: ReturnType<typeof useListbox>;
|
|
577
578
|
}
|
|
578
|
-
declare function RootProvider$
|
|
579
|
+
declare function RootProvider$10(props: ListboxRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
579
580
|
//#endregion
|
|
580
581
|
//#region src/components/listbox/anatomy/label.d.ts
|
|
581
582
|
interface ListboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
@@ -583,20 +584,122 @@ declare function Label$7(props: ListboxLabelProps): react0.JSX.Element;
|
|
|
583
584
|
//#endregion
|
|
584
585
|
//#region src/components/listbox/anatomy/content.d.ts
|
|
585
586
|
interface ListboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
586
|
-
declare function Content$
|
|
587
|
+
declare function Content$4(props: ListboxContentProps): react0.JSX.Element;
|
|
587
588
|
//#endregion
|
|
588
589
|
//#region src/components/listbox/modules/anatomy.d.ts
|
|
589
|
-
declare const Listbox: typeof Root$
|
|
590
|
-
Provider: typeof RootProvider$
|
|
591
|
-
Context: typeof RootContext$
|
|
590
|
+
declare const Listbox: typeof Root$12 & {
|
|
591
|
+
Provider: typeof RootProvider$10;
|
|
592
|
+
Context: typeof RootContext$14;
|
|
592
593
|
Label: typeof Label$7;
|
|
593
594
|
Input: typeof Input$1;
|
|
595
|
+
Content: typeof Content$4;
|
|
596
|
+
ItemGroup: typeof ItemGroup$1;
|
|
597
|
+
ItemGroupLabel: typeof ItemGroupLabel$1;
|
|
598
|
+
Item: typeof Item$7;
|
|
599
|
+
ItemText: typeof ItemText$3;
|
|
600
|
+
ItemIndicator: typeof ItemIndicator$1;
|
|
601
|
+
};
|
|
602
|
+
//#endregion
|
|
603
|
+
//#region src/components/menu/anatomy/arrow.d.ts
|
|
604
|
+
interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
605
|
+
declare function Arrow$2(props: MenuArrowProps): react0.JSX.Element;
|
|
606
|
+
//#endregion
|
|
607
|
+
//#region src/components/menu/anatomy/arrow-tip.d.ts
|
|
608
|
+
interface MenuArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
609
|
+
declare function ArrowTip$2(props: MenuArrowTipProps): react0.JSX.Element;
|
|
610
|
+
//#endregion
|
|
611
|
+
//#region src/components/menu/anatomy/content.d.ts
|
|
612
|
+
interface MenuContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
613
|
+
declare function Content$3(props: MenuContentProps): react0.JSX.Element;
|
|
614
|
+
//#endregion
|
|
615
|
+
//#region src/components/menu/anatomy/context-trigger.d.ts
|
|
616
|
+
interface MenuContextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
617
|
+
declare function ContextTrigger(props: MenuContextTriggerProps): react0.JSX.Element;
|
|
618
|
+
//#endregion
|
|
619
|
+
//#region src/components/menu/anatomy/item.d.ts
|
|
620
|
+
interface MenuItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
621
|
+
declare function Item$6(props: MenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
622
|
+
//#endregion
|
|
623
|
+
//#region src/components/menu/anatomy/item-group.d.ts
|
|
624
|
+
interface MenuItemGroupProps extends Omit<ItemGroupProps$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
625
|
+
declare function ItemGroup(props: MenuItemGroupProps): react_jsx_runtime0.JSX.Element;
|
|
626
|
+
//#endregion
|
|
627
|
+
//#region src/components/menu/anatomy/item-group-label.d.ts
|
|
628
|
+
interface MenuItemGroupLabelProps extends Omit<ItemGroupLabelProps$2, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
629
|
+
declare function ItemGroupLabel(props: MenuItemGroupLabelProps): react0.JSX.Element;
|
|
630
|
+
//#endregion
|
|
631
|
+
//#region src/components/menu/anatomy/option-item.d.ts
|
|
632
|
+
interface MenuOptionItemProps extends OptionItemProps, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
633
|
+
declare function OptionItem(props: MenuOptionItemProps): react_jsx_runtime0.JSX.Element;
|
|
634
|
+
//#endregion
|
|
635
|
+
//#region src/components/menu/anatomy/item-text.d.ts
|
|
636
|
+
interface MenuItemTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
637
|
+
declare function ItemText$2(props: MenuItemTextProps): react0.JSX.Element;
|
|
638
|
+
//#endregion
|
|
639
|
+
//#region src/components/menu/anatomy/item-indicator.d.ts
|
|
640
|
+
interface MenuItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
641
|
+
declare function ItemIndicator(props: MenuItemIndicatorProps): react0.JSX.Element;
|
|
642
|
+
//#endregion
|
|
643
|
+
//#region src/components/menu/anatomy/indicator.d.ts
|
|
644
|
+
interface MenuIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
645
|
+
declare function Indicator$2(props: MenuIndicatorProps): react0.JSX.Element;
|
|
646
|
+
//#endregion
|
|
647
|
+
//#region src/components/menu/anatomy/positioner.d.ts
|
|
648
|
+
interface MenuPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
649
|
+
declare function Positioner$2(props: MenuPositionerProps): react0.JSX.Element;
|
|
650
|
+
//#endregion
|
|
651
|
+
//#region src/components/menu/anatomy/root.d.ts
|
|
652
|
+
interface MenuRootProps extends Omit<Props$8, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div', 'id' | 'dir'>, 'onSelect' | 'aria-label'> {}
|
|
653
|
+
declare function Root$11(props: MenuRootProps): react_jsx_runtime0.JSX.Element;
|
|
654
|
+
//#endregion
|
|
655
|
+
//#region src/components/menu/modules/provider.d.ts
|
|
656
|
+
declare function useMenu(props?: Omit<Props$8, 'id'>): Api$8<PropTypes> & {
|
|
657
|
+
service: Service;
|
|
658
|
+
};
|
|
659
|
+
//#endregion
|
|
660
|
+
//#region src/components/menu/anatomy/root-context.d.ts
|
|
661
|
+
interface MenuRootContextProps {
|
|
662
|
+
children: (menu: ReturnType<typeof useMenu>) => ReactNode;
|
|
663
|
+
}
|
|
664
|
+
declare function RootContext$13(props: MenuRootContextProps): ReactNode;
|
|
665
|
+
//#endregion
|
|
666
|
+
//#region src/components/menu/anatomy/root-provider.d.ts
|
|
667
|
+
interface MenuRootProviderProps extends PropsWithChildren {
|
|
668
|
+
value: ReturnType<typeof useMenu>;
|
|
669
|
+
}
|
|
670
|
+
declare function RootProvider$9(props: MenuRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
671
|
+
//#endregion
|
|
672
|
+
//#region src/components/menu/anatomy/separator.d.ts
|
|
673
|
+
interface MenuSeparatorProps extends PropsWithElement<'hr'>, HTMLAttributes<'hr', 'id' | 'dir' | 'children'> {}
|
|
674
|
+
declare function Separator(props: MenuSeparatorProps): react0.JSX.Element;
|
|
675
|
+
//#endregion
|
|
676
|
+
//#region src/components/menu/anatomy/trigger.d.ts
|
|
677
|
+
interface MenuTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
678
|
+
declare function Trigger$3(props: MenuTriggerProps): react0.JSX.Element;
|
|
679
|
+
//#endregion
|
|
680
|
+
//#region src/components/menu/anatomy/trigger-item.d.ts
|
|
681
|
+
interface MenuTriggerItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
682
|
+
declare function TriggerItem(props: MenuTriggerItemProps): react_jsx_runtime0.JSX.Element;
|
|
683
|
+
//#endregion
|
|
684
|
+
//#region src/components/menu/modules/anatomy.d.ts
|
|
685
|
+
declare const Menu: typeof Root$11 & {
|
|
686
|
+
Provider: typeof RootProvider$9;
|
|
687
|
+
Context: typeof RootContext$13;
|
|
688
|
+
Trigger: typeof Trigger$3;
|
|
689
|
+
ContextTrigger: typeof ContextTrigger;
|
|
690
|
+
Indicator: typeof Indicator$2;
|
|
691
|
+
Positioner: typeof Positioner$2;
|
|
594
692
|
Content: typeof Content$3;
|
|
595
693
|
ItemGroup: typeof ItemGroup;
|
|
596
694
|
ItemGroupLabel: typeof ItemGroupLabel;
|
|
597
695
|
Item: typeof Item$6;
|
|
696
|
+
OptionItem: typeof OptionItem;
|
|
697
|
+
TriggerItem: typeof TriggerItem;
|
|
598
698
|
ItemText: typeof ItemText$2;
|
|
599
699
|
ItemIndicator: typeof ItemIndicator;
|
|
700
|
+
Separator: typeof Separator;
|
|
701
|
+
Arrow: typeof Arrow$2;
|
|
702
|
+
ArrowTip: typeof ArrowTip$2;
|
|
600
703
|
};
|
|
601
704
|
//#endregion
|
|
602
705
|
//#region src/components/navigation/anatomy/root.d.ts
|
|
@@ -653,7 +756,7 @@ interface PaginationFirstTriggerProps extends PropsWithElement<'button'>, HTMLAt
|
|
|
653
756
|
declare function FirstTrigger(props: PaginationFirstTriggerProps): react0.JSX.Element;
|
|
654
757
|
//#endregion
|
|
655
758
|
//#region src/components/pagination/anatomy/item.d.ts
|
|
656
|
-
interface PaginationItemProps extends ItemProps$
|
|
759
|
+
interface PaginationItemProps extends ItemProps$5, PropsWithElement<'a'>, HTMLAttributes<'a', 'type'> {}
|
|
657
760
|
declare function Item$5(props: PaginationItemProps): react0.JSX.Element;
|
|
658
761
|
//#endregion
|
|
659
762
|
//#region src/components/pagination/anatomy/last-trigger.d.ts
|
|
@@ -669,7 +772,7 @@ interface PaginationPrevTriggerProps extends PropsWithElement<'button'>, HTMLAtt
|
|
|
669
772
|
declare function PrevTrigger(props: PaginationPrevTriggerProps): react0.JSX.Element;
|
|
670
773
|
//#endregion
|
|
671
774
|
//#region src/components/pagination/modules/provider.d.ts
|
|
672
|
-
declare function usePagination(props?: Omit<Props$
|
|
775
|
+
declare function usePagination(props?: Omit<Props$9, 'id'>): Api$9<PropTypes>;
|
|
673
776
|
//#endregion
|
|
674
777
|
//#region src/components/pagination/anatomy/root-context.d.ts
|
|
675
778
|
interface PaginationRootContextProps {
|
|
@@ -684,7 +787,7 @@ interface PaginationRootProviderProps extends PropsWithElement<'nav'>, HTMLAttri
|
|
|
684
787
|
declare function PaginationRootProvider(props: PaginationRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
685
788
|
//#endregion
|
|
686
789
|
//#region src/components/pagination/anatomy/root.d.ts
|
|
687
|
-
interface PaginationRootProps extends Omit<Props$
|
|
790
|
+
interface PaginationRootProps extends Omit<Props$9, 'id'>, PropsWithElement<'nav'>, HTMLAttributes<'nav', 'id' | 'dir'> {}
|
|
688
791
|
declare function PaginationRoot(props: PaginationRootProps): react_jsx_runtime0.JSX.Element;
|
|
689
792
|
//#endregion
|
|
690
793
|
//#region src/components/pagination/modules/anatomy.d.ts
|
|
@@ -716,11 +819,11 @@ interface PopoverPositionerProps extends PropsWithElement<'div'>, HTMLAttributes
|
|
|
716
819
|
declare function Positioner$1(props: PopoverPositionerProps): react0.JSX.Element;
|
|
717
820
|
//#endregion
|
|
718
821
|
//#region src/components/popover/anatomy/root.d.ts
|
|
719
|
-
interface PopoverRootProps extends PropsWithChildren, Omit<Props$
|
|
822
|
+
interface PopoverRootProps extends PropsWithChildren, Omit<Props$10, 'id'> {}
|
|
720
823
|
declare function Root$10(props: PopoverRootProps): react_jsx_runtime0.JSX.Element;
|
|
721
824
|
//#endregion
|
|
722
825
|
//#region src/components/popover/modules/provider.d.ts
|
|
723
|
-
declare function usePopover(props?: Omit<Props$
|
|
826
|
+
declare function usePopover(props?: Omit<Props$10, 'id'>): Api$10<PropTypes>;
|
|
724
827
|
//#endregion
|
|
725
828
|
//#region src/components/popover/anatomy/root-context.d.ts
|
|
726
829
|
interface PopoverRootContextProps {
|
|
@@ -793,11 +896,11 @@ interface ProgressRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'di
|
|
|
793
896
|
declare function Range$1(props: ProgressRangeProps): react0.JSX.Element;
|
|
794
897
|
//#endregion
|
|
795
898
|
//#region src/components/progress/anatomy/root.d.ts
|
|
796
|
-
interface ProgressRootProps extends Omit<Props$
|
|
899
|
+
interface ProgressRootProps extends Omit<Props$11, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
797
900
|
declare function Root$8(props: ProgressRootProps): react_jsx_runtime0.JSX.Element;
|
|
798
901
|
//#endregion
|
|
799
902
|
//#region src/components/progress/modules/provider.d.ts
|
|
800
|
-
declare function useProgress(props?: Omit<Props$
|
|
903
|
+
declare function useProgress(props?: Omit<Props$11, 'id'>): Api$11<PropTypes>;
|
|
801
904
|
//#endregion
|
|
802
905
|
//#region src/components/progress/anatomy/root-context.d.ts
|
|
803
906
|
interface ProgressRootContextProps {
|
|
@@ -853,7 +956,7 @@ interface RatingGroupHiddenInputProps extends PropsWithElement<'input'>, HTMLAtt
|
|
|
853
956
|
declare function HiddenInput$3(props: RatingGroupHiddenInputProps): react0.JSX.Element;
|
|
854
957
|
//#endregion
|
|
855
958
|
//#region src/components/rating-group/anatomy/item.d.ts
|
|
856
|
-
interface RatingGroupItemProps extends ItemProps$
|
|
959
|
+
interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HTMLAttributes<'span', 'id' | 'dir'> {
|
|
857
960
|
/**
|
|
858
961
|
* The content to render when the item is in the empty state.
|
|
859
962
|
*
|
|
@@ -880,11 +983,11 @@ interface RatingGroupLabelProps extends PropsWithElement<'label'>, HTMLAttribute
|
|
|
880
983
|
declare function Label$5(props: RatingGroupLabelProps): react0.JSX.Element;
|
|
881
984
|
//#endregion
|
|
882
985
|
//#region src/components/rating-group/anatomy/root.d.ts
|
|
883
|
-
interface RatingGroupRootProps extends Omit<Props$
|
|
986
|
+
interface RatingGroupRootProps extends Omit<Props$12, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
884
987
|
declare function Root$7(props: RatingGroupRootProps): react_jsx_runtime0.JSX.Element;
|
|
885
988
|
//#endregion
|
|
886
989
|
//#region src/components/rating-group/modules/provider.d.ts
|
|
887
|
-
declare function useRatingGroup(props?: Omit<Props$
|
|
990
|
+
declare function useRatingGroup(props?: Omit<Props$12, 'id'>): Api$12<PropTypes>;
|
|
888
991
|
//#endregion
|
|
889
992
|
//#region src/components/rating-group/anatomy/root-context.d.ts
|
|
890
993
|
interface RatingGroupRootContextProps {
|
|
@@ -925,7 +1028,7 @@ interface SegmentedControlItemTextProps extends PropsWithElement<'span'>, HTMLAt
|
|
|
925
1028
|
declare function ItemText$1(props: SegmentedControlItemTextProps): react0.JSX.Element;
|
|
926
1029
|
//#endregion
|
|
927
1030
|
//#region src/components/segmented-control/anatomy/item.d.ts
|
|
928
|
-
interface SegmentedControlItemProps extends ItemProps$
|
|
1031
|
+
interface SegmentedControlItemProps extends ItemProps$7, PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
929
1032
|
declare function Item$3(props: SegmentedControlItemProps): react_jsx_runtime0.JSX.Element;
|
|
930
1033
|
//#endregion
|
|
931
1034
|
//#region src/components/segmented-control/anatomy/label.d.ts
|
|
@@ -933,7 +1036,7 @@ interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttri
|
|
|
933
1036
|
declare function Label$4(props: SegmentedControlLabelProps): react0.JSX.Element;
|
|
934
1037
|
//#endregion
|
|
935
1038
|
//#region src/components/segmented-control/modules/provider.d.ts
|
|
936
|
-
declare function useSegmentedControl(props?: Omit<Props$
|
|
1039
|
+
declare function useSegmentedControl(props?: Omit<Props$13, 'id'>): Api$13<PropTypes>;
|
|
937
1040
|
//#endregion
|
|
938
1041
|
//#region src/components/segmented-control/anatomy/root-context.d.ts
|
|
939
1042
|
interface SegmentedControlRootContextProps {
|
|
@@ -948,7 +1051,7 @@ interface SegmentedControlRootProviderProps extends PropsWithElement<'div'>, HTM
|
|
|
948
1051
|
declare function RootProvider$5(props: SegmentedControlRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
949
1052
|
//#endregion
|
|
950
1053
|
//#region src/components/segmented-control/anatomy/root.d.ts
|
|
951
|
-
interface SegmentedControlRootProps extends Omit<Props$
|
|
1054
|
+
interface SegmentedControlRootProps extends Omit<Props$13, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
952
1055
|
declare function Root$6(props: SegmentedControlRootProps): react_jsx_runtime0.JSX.Element;
|
|
953
1056
|
//#endregion
|
|
954
1057
|
//#region src/components/segmented-control/modules/anatomy.d.ts
|
|
@@ -988,7 +1091,7 @@ interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'
|
|
|
988
1091
|
declare function Range(props: SliderRangeProps): react0.JSX.Element;
|
|
989
1092
|
//#endregion
|
|
990
1093
|
//#region src/components/slider/modules/provider.d.ts
|
|
991
|
-
declare function useSlider(props?: Omit<Props$
|
|
1094
|
+
declare function useSlider(props?: Omit<Props$14, 'id'>): Api$14<PropTypes>;
|
|
992
1095
|
//#endregion
|
|
993
1096
|
//#region src/components/slider/anatomy/root-context.d.ts
|
|
994
1097
|
interface SliderRootContextProps {
|
|
@@ -1003,7 +1106,7 @@ interface SliderRootProviderProps extends PropsWithElement<'div'>, HTMLAttribute
|
|
|
1003
1106
|
declare function SliderRootProvider(props: SliderRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1004
1107
|
//#endregion
|
|
1005
1108
|
//#region src/components/slider/anatomy/root.d.ts
|
|
1006
|
-
interface SliderRootProps extends Omit<Props$
|
|
1109
|
+
interface SliderRootProps extends Omit<Props$14, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'aria-label' | 'aria-labelledby'> {}
|
|
1007
1110
|
declare function SliderRoot(props: SliderRootProps): react_jsx_runtime0.JSX.Element;
|
|
1008
1111
|
//#endregion
|
|
1009
1112
|
//#region src/components/slider/anatomy/thumb.d.ts
|
|
@@ -1046,7 +1149,7 @@ interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'spa
|
|
|
1046
1149
|
declare function Label$2(props: SwitchLabelProps): react0.JSX.Element;
|
|
1047
1150
|
//#endregion
|
|
1048
1151
|
//#region src/components/switch/modules/provider.d.ts
|
|
1049
|
-
declare function useSwitch(props?: Omit<Props$
|
|
1152
|
+
declare function useSwitch(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
1050
1153
|
//#endregion
|
|
1051
1154
|
//#region src/components/switch/anatomy/root-context.d.ts
|
|
1052
1155
|
interface SwitchRootContextProps {
|
|
@@ -1065,7 +1168,7 @@ interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'spa
|
|
|
1065
1168
|
declare function Thumb(props: SwitchThumbProps): react0.JSX.Element;
|
|
1066
1169
|
//#endregion
|
|
1067
1170
|
//#region src/components/switch/anatomy/root.d.ts
|
|
1068
|
-
interface SwitchRootProps extends Omit<Props$
|
|
1171
|
+
interface SwitchRootProps extends Omit<Props$15, 'id'>, PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
1069
1172
|
declare function Root$5(props: SwitchRootProps): react_jsx_runtime0.JSX.Element;
|
|
1070
1173
|
//#endregion
|
|
1071
1174
|
//#region src/components/switch/modules/anatomy.d.ts
|
|
@@ -1091,11 +1194,11 @@ interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', '
|
|
|
1091
1194
|
declare function List(props: TabsListProps): react0.JSX.Element;
|
|
1092
1195
|
//#endregion
|
|
1093
1196
|
//#region src/components/tabs/anatomy/root.d.ts
|
|
1094
|
-
interface TabsRootProps extends Omit<Props$
|
|
1197
|
+
interface TabsRootProps extends Omit<Props$16, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1095
1198
|
declare function Root$4(props: TabsRootProps): react_jsx_runtime0.JSX.Element;
|
|
1096
1199
|
//#endregion
|
|
1097
1200
|
//#region src/components/tabs/modules/provider.d.ts
|
|
1098
|
-
declare function useTabs(props?: Omit<Props$
|
|
1201
|
+
declare function useTabs(props?: Omit<Props$16, 'id'>): Api$16<PropTypes>;
|
|
1099
1202
|
//#endregion
|
|
1100
1203
|
//#region src/components/tabs/anatomy/root-context.d.ts
|
|
1101
1204
|
interface TabsRootContextProps {
|
|
@@ -1140,7 +1243,7 @@ interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<
|
|
|
1140
1243
|
declare function Input(props: TagsInputInputProps): react0.JSX.Element;
|
|
1141
1244
|
//#endregion
|
|
1142
1245
|
//#region src/components/tags-input/anatomy/item.d.ts
|
|
1143
|
-
interface TagsInputItemProps extends ItemProps$
|
|
1246
|
+
interface TagsInputItemProps extends ItemProps$8, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1144
1247
|
declare function Item$2(props: TagsInputItemProps): react_jsx_runtime0.JSX.Element;
|
|
1145
1248
|
//#endregion
|
|
1146
1249
|
//#region src/components/tags-input/anatomy/item-delete-trigger.d.ts
|
|
@@ -1164,11 +1267,11 @@ interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<
|
|
|
1164
1267
|
declare function Label$1(props: TagsInputLabelProps): react0.JSX.Element;
|
|
1165
1268
|
//#endregion
|
|
1166
1269
|
//#region src/components/tags-input/anatomy/root.d.ts
|
|
1167
|
-
interface TagsInputRootProps extends Omit<Props$
|
|
1270
|
+
interface TagsInputRootProps extends Omit<Props$17, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1168
1271
|
declare function Root$3(props: TagsInputRootProps): react_jsx_runtime0.JSX.Element;
|
|
1169
1272
|
//#endregion
|
|
1170
1273
|
//#region src/components/tags-input/modules/provider.d.ts
|
|
1171
|
-
declare function useTagsInput(props?: Omit<Props$
|
|
1274
|
+
declare function useTagsInput(props?: Omit<Props$17, 'id'>): Api$17<PropTypes>;
|
|
1172
1275
|
//#endregion
|
|
1173
1276
|
//#region src/components/tags-input/anatomy/root-context.d.ts
|
|
1174
1277
|
interface TagsInputRootContextProps {
|
|
@@ -1209,7 +1312,7 @@ declare function Description(props: ToastDescriptionProps): react0.JSX.Element;
|
|
|
1209
1312
|
//#region src/components/toast/anatomy/group.d.ts
|
|
1210
1313
|
interface ToastGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'children'> {
|
|
1211
1314
|
toaster: Store;
|
|
1212
|
-
children?: (toast: Props$
|
|
1315
|
+
children?: (toast: Props$18) => JSX.Element | null;
|
|
1213
1316
|
}
|
|
1214
1317
|
declare function Group(props: ToastGroupProps): react_jsx_runtime0.JSX.Element;
|
|
1215
1318
|
//#endregion
|
|
@@ -1225,7 +1328,7 @@ declare function Root$2(props: ToastRootProps): react_jsx_runtime0.JSX.Element;
|
|
|
1225
1328
|
//#endregion
|
|
1226
1329
|
//#region src/components/toast/anatomy/root-context.d.ts
|
|
1227
1330
|
interface ToastRootContextProps {
|
|
1228
|
-
children: (toast: Api$
|
|
1331
|
+
children: (toast: Api$18<PropTypes>) => ReactNode;
|
|
1229
1332
|
}
|
|
1230
1333
|
declare function RootContext$3(props: ToastRootContextProps): ReactNode;
|
|
1231
1334
|
//#endregion
|
|
@@ -1249,15 +1352,15 @@ declare const Toast: typeof Root$2 & {
|
|
|
1249
1352
|
};
|
|
1250
1353
|
//#endregion
|
|
1251
1354
|
//#region src/components/toggle-group/anatomy/item.d.ts
|
|
1252
|
-
interface ToggleGroupItemProps extends ItemProps$
|
|
1355
|
+
interface ToggleGroupItemProps extends ItemProps$9, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1253
1356
|
declare function Item$1(props: ToggleGroupItemProps): react0.JSX.Element;
|
|
1254
1357
|
//#endregion
|
|
1255
1358
|
//#region src/components/toggle-group/anatomy/root.d.ts
|
|
1256
|
-
interface ToggleGroupRootProps extends Omit<Props$
|
|
1359
|
+
interface ToggleGroupRootProps extends Omit<Props$19, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1257
1360
|
declare function ToggleGroupRoot(props: ToggleGroupRootProps): react_jsx_runtime0.JSX.Element;
|
|
1258
1361
|
//#endregion
|
|
1259
1362
|
//#region src/components/toggle-group/modules/provider.d.ts
|
|
1260
|
-
declare function useToggleGroup(props?: Omit<Props$
|
|
1363
|
+
declare function useToggleGroup(props?: Omit<Props$19, 'id'>): Api$19<PropTypes>;
|
|
1261
1364
|
//#endregion
|
|
1262
1365
|
//#region src/components/toggle-group/anatomy/root-context.d.ts
|
|
1263
1366
|
interface ToggleGroupRootContextProps {
|
|
@@ -1295,11 +1398,11 @@ interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes
|
|
|
1295
1398
|
declare function Positioner(props: TooltipPositionerProps): react_jsx_runtime0.JSX.Element;
|
|
1296
1399
|
//#endregion
|
|
1297
1400
|
//#region src/components/tooltip/anatomy/root.d.ts
|
|
1298
|
-
interface TooltipRootProps extends PropsWithChildren, Omit<Props$
|
|
1401
|
+
interface TooltipRootProps extends PropsWithChildren, Omit<Props$20, 'id'> {}
|
|
1299
1402
|
declare function Root$1(props: TooltipRootProps): react_jsx_runtime0.JSX.Element;
|
|
1300
1403
|
//#endregion
|
|
1301
1404
|
//#region src/components/tooltip/modules/provider.d.ts
|
|
1302
|
-
declare function useTooltip(props?: Omit<Props$
|
|
1405
|
+
declare function useTooltip(props?: Omit<Props$20, 'id'>): Api$20<PropTypes>;
|
|
1303
1406
|
//#endregion
|
|
1304
1407
|
//#region src/components/tooltip/anatomy/root-context.d.ts
|
|
1305
1408
|
interface TooltipRootContextProps {
|
|
@@ -1380,7 +1483,7 @@ interface TreeViewNodeProviderProps extends PropsWithChildren {
|
|
|
1380
1483
|
declare function NodeProvider(props: TreeViewNodeProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1381
1484
|
//#endregion
|
|
1382
1485
|
//#region src/components/tree-view/modules/provider.d.ts
|
|
1383
|
-
declare function useTreeView<T extends TreeNode = TreeNode>(props?: Omit<Props$
|
|
1486
|
+
declare function useTreeView<T extends TreeNode = TreeNode>(props?: Omit<Props$21<T>, 'id'>): Api$21<PropTypes>;
|
|
1384
1487
|
//#endregion
|
|
1385
1488
|
//#region src/components/tree-view/anatomy/root-context.d.ts
|
|
1386
1489
|
interface TreeViewRootContextProps {
|
|
@@ -1395,7 +1498,7 @@ interface TreeViewRootProviderProps extends PropsWithElement<'div'>, HTMLAttribu
|
|
|
1395
1498
|
declare function RootProvider(props: TreeViewRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1396
1499
|
//#endregion
|
|
1397
1500
|
//#region src/components/tree-view/anatomy/root.d.ts
|
|
1398
|
-
interface TreeViewRootProps<T extends TreeNode = TreeNode> extends Omit<Props$
|
|
1501
|
+
interface TreeViewRootProps<T extends TreeNode = TreeNode> extends Omit<Props$21<T>, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1399
1502
|
declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>): react_jsx_runtime0.JSX.Element;
|
|
1400
1503
|
//#endregion
|
|
1401
1504
|
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
@@ -1422,5 +1525,5 @@ declare const TreeView: typeof Root & {
|
|
|
1422
1525
|
//#region src/hooks/use-list-collection.d.ts
|
|
1423
1526
|
declare function useListCollection<T extends CollectionItem = CollectionItem>(options: CollectionOptions<T>): ListCollection<T>;
|
|
1424
1527
|
//#endregion
|
|
1425
|
-
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 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 FileUploadDropzoneProps, type FileUploadHiddenInputProps, type FileUploadItemDeleteTriggerProps, type FileUploadItemGroupProps, type FileUploadItemNameProps, type FileUploadItemProps, type FileUploadItemSizeTextProps, type FileUploadLabelProps, type FileUploadRootContextProps, type FileUploadRootProps, type FileUploadRootProviderProps, type FileUploadTriggerProps, Listbox, type ListboxContentProps, type ListboxInputProps, type ListboxItemGroupLabelProps, type ListboxItemGroupProps, type ListboxItemIndicatorProps, type ListboxItemProps, type ListboxItemTextProps, type ListboxLabelProps, type ListboxRootContextProps, type ListboxRootProps, type ListboxRootProviderProps, 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 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, useListCollection, useListbox, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
|
1528
|
+
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 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 FileUploadDropzoneProps, type FileUploadHiddenInputProps, type FileUploadItemDeleteTriggerProps, type FileUploadItemGroupProps, type FileUploadItemNameProps, type FileUploadItemProps, type FileUploadItemSizeTextProps, type FileUploadLabelProps, type FileUploadRootContextProps, type FileUploadRootProps, type FileUploadRootProviderProps, type FileUploadTriggerProps, 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 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, useListCollection, useListbox, useMenu, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
|
1426
1529
|
//# sourceMappingURL=index.d.mts.map
|