@skeletonlabs/skeleton-react 4.6.1 → 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 +354 -288
- package/dist/index.mjs +552 -378
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react4 from "react";
|
|
2
2
|
import { ComponentProps, JSX, PropsWithChildren, ReactNode } from "react";
|
|
3
3
|
import { Api, ItemProps, Props } from "@zag-js/accordion";
|
|
4
4
|
import { PropTypes } from "@zag-js/react";
|
|
@@ -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
|
|
@@ -42,15 +43,15 @@ interface PropsWithElement<T extends keyof JSX.IntrinsicElements> {
|
|
|
42
43
|
//#endregion
|
|
43
44
|
//#region src/components/accordion/anatomy/item-content.d.ts
|
|
44
45
|
interface AccordionItemContentProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
45
|
-
declare function ItemContent(props: AccordionItemContentProps):
|
|
46
|
+
declare function ItemContent(props: AccordionItemContentProps): react4.JSX.Element;
|
|
46
47
|
//#endregion
|
|
47
48
|
//#region src/components/accordion/anatomy/item-indicator.d.ts
|
|
48
49
|
interface AccordionItemIndicatorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
49
|
-
declare function ItemIndicator$3(props: AccordionItemIndicatorProps):
|
|
50
|
+
declare function ItemIndicator$3(props: AccordionItemIndicatorProps): react4.JSX.Element;
|
|
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,23 +64,23 @@ 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'> {}
|
|
76
|
-
declare function ItemTrigger(props: AccordionItemTriggerProps):
|
|
77
|
+
declare function ItemTrigger(props: AccordionItemTriggerProps): react4.JSX.Element;
|
|
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;
|
|
@@ -87,23 +88,23 @@ declare const Accordion: typeof Root$18 & {
|
|
|
87
88
|
//#endregion
|
|
88
89
|
//#region src/components/app-bar/anatomy/root.d.ts
|
|
89
90
|
interface AppBarRootProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
90
|
-
declare function AppBarRoot(props: AppBarRootProps):
|
|
91
|
+
declare function AppBarRoot(props: AppBarRootProps): react4.JSX.Element;
|
|
91
92
|
//#endregion
|
|
92
93
|
//#region src/components/app-bar/anatomy/toolbar.d.ts
|
|
93
94
|
interface AppBarToolbarProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
94
|
-
declare function AppBarToolbar(props: AppBarToolbarProps):
|
|
95
|
+
declare function AppBarToolbar(props: AppBarToolbarProps): react4.JSX.Element;
|
|
95
96
|
//#endregion
|
|
96
97
|
//#region src/components/app-bar/anatomy/lead.d.ts
|
|
97
98
|
interface AppBarLeadProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
98
|
-
declare function AppBarLead(props: AppBarLeadProps):
|
|
99
|
+
declare function AppBarLead(props: AppBarLeadProps): react4.JSX.Element;
|
|
99
100
|
//#endregion
|
|
100
101
|
//#region src/components/app-bar/anatomy/headline.d.ts
|
|
101
102
|
interface AppBarHeadlineProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
102
|
-
declare function AppBarHeadline(props: AppBarHeadlineProps):
|
|
103
|
+
declare function AppBarHeadline(props: AppBarHeadlineProps): react4.JSX.Element;
|
|
103
104
|
//#endregion
|
|
104
105
|
//#region src/components/app-bar/anatomy/trail.d.ts
|
|
105
106
|
interface AppBarTrailProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
106
|
-
declare function AppBarTrail(props: AppBarTrailProps):
|
|
107
|
+
declare function AppBarTrail(props: AppBarTrailProps): react4.JSX.Element;
|
|
107
108
|
//#endregion
|
|
108
109
|
//#region src/components/app-bar/modules/anatomy.d.ts
|
|
109
110
|
declare const AppBar: typeof AppBarRoot & {
|
|
@@ -115,11 +116,11 @@ declare const AppBar: typeof AppBarRoot & {
|
|
|
115
116
|
//#endregion
|
|
116
117
|
//#region src/components/avatar/anatomy/fallback.d.ts
|
|
117
118
|
interface AvatarFallbackProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
118
|
-
declare function Fallback(props: AvatarFallbackProps):
|
|
119
|
+
declare function Fallback(props: AvatarFallbackProps): react4.JSX.Element;
|
|
119
120
|
//#endregion
|
|
120
121
|
//#region src/components/avatar/anatomy/image.d.ts
|
|
121
122
|
interface AvatarImageProps extends PropsWithElement<'img'>, HTMLAttributes<'img', 'children'> {}
|
|
122
|
-
declare function Image(props: AvatarImageProps):
|
|
123
|
+
declare function Image(props: AvatarImageProps): react4.JSX.Element;
|
|
123
124
|
//#endregion
|
|
124
125
|
//#region src/components/avatar/anatomy/root.d.ts
|
|
125
126
|
interface AvatarRootProps extends Omit<Props$1, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -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,40 +174,40 @@ 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
|
|
192
193
|
interface ComboboxClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
193
|
-
declare function ClearTrigger$2(props: ComboboxClearTriggerProps):
|
|
194
|
+
declare function ClearTrigger$2(props: ComboboxClearTriggerProps): react4.JSX.Element;
|
|
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'> {}
|
|
201
|
-
declare function Control$7(props: ComboboxControlProps):
|
|
202
|
+
declare function Control$7(props: ComboboxControlProps): react4.JSX.Element;
|
|
202
203
|
//#endregion
|
|
203
204
|
//#region src/components/combobox/anatomy/input.d.ts
|
|
204
205
|
interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
205
|
-
declare function Input$3(props: ComboboxInputProps):
|
|
206
|
+
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'> {}
|
|
@@ -214,23 +215,23 @@ declare function ItemGroup$3(props: ComboboxItemGroupProps): react_jsx_runtime0.
|
|
|
214
215
|
//#endregion
|
|
215
216
|
//#region src/components/combobox/anatomy/item-group-label.d.ts
|
|
216
217
|
interface ComboboxItemGroupLabelProps extends Omit<ItemGroupLabelProps, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
217
|
-
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps):
|
|
218
|
+
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps): react4.JSX.Element;
|
|
218
219
|
//#endregion
|
|
219
220
|
//#region src/components/combobox/anatomy/item-indicator.d.ts
|
|
220
221
|
interface ComboboxItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
221
|
-
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps):
|
|
222
|
+
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps): react4.JSX.Element;
|
|
222
223
|
//#endregion
|
|
223
224
|
//#region src/components/combobox/anatomy/item-text.d.ts
|
|
224
225
|
interface ComboboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
225
|
-
declare function ItemText$4(props: ComboboxItemTextProps):
|
|
226
|
+
declare function ItemText$4(props: ComboboxItemTextProps): react4.JSX.Element;
|
|
226
227
|
//#endregion
|
|
227
228
|
//#region src/components/combobox/anatomy/label.d.ts
|
|
228
229
|
interface ComboboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
229
|
-
declare function Label$10(props: ComboboxLabelProps):
|
|
230
|
+
declare function Label$10(props: ComboboxLabelProps): react4.JSX.Element;
|
|
230
231
|
//#endregion
|
|
231
232
|
//#region src/components/combobox/anatomy/positioner.d.ts
|
|
232
233
|
interface ComboboxPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
233
|
-
declare function Positioner$6(props: ComboboxPositionerProps):
|
|
234
|
+
declare function Positioner$6(props: ComboboxPositionerProps): react4.JSX.Element;
|
|
234
235
|
//#endregion
|
|
235
236
|
//#region src/components/combobox/anatomy/root.d.ts
|
|
236
237
|
interface ComboboxRootProps extends Omit<Props$3, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
@@ -243,75 +244,75 @@ 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'> {}
|
|
282
|
-
declare function Control$6(props: DatePickerControlProps):
|
|
283
|
+
declare function Control$6(props: DatePickerControlProps): react4.JSX.Element;
|
|
283
284
|
//#endregion
|
|
284
285
|
//#region src/components/date-picker/anatomy/input.d.ts
|
|
285
286
|
interface DatePickerInputProps extends InputProps, PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
286
|
-
declare function Input$2(props: DatePickerInputProps):
|
|
287
|
+
declare function Input$2(props: DatePickerInputProps): react4.JSX.Element;
|
|
287
288
|
//#endregion
|
|
288
289
|
//#region src/components/date-picker/anatomy/label.d.ts
|
|
289
290
|
interface DatePickerLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
290
|
-
declare function Label$9(props: DatePickerLabelProps):
|
|
291
|
+
declare function Label$9(props: DatePickerLabelProps): react4.JSX.Element;
|
|
291
292
|
//#endregion
|
|
292
293
|
//#region src/components/date-picker/anatomy/month-select.d.ts
|
|
293
294
|
interface DatePickerMonthSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
294
|
-
declare function MonthSelect(props: DatePickerMonthSelectProps):
|
|
295
|
+
declare function MonthSelect(props: DatePickerMonthSelectProps): react4.JSX.Element;
|
|
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'> {}
|
|
302
|
-
declare function Positioner$5(props: DatePickerPositionerProps):
|
|
303
|
+
declare function Positioner$5(props: DatePickerPositionerProps): react4.JSX.Element;
|
|
303
304
|
//#endregion
|
|
304
305
|
//#region src/components/date-picker/anatomy/preset-trigger.d.ts
|
|
305
306
|
interface DatePickerPresetTriggerProps extends PresetTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
306
|
-
declare function PresetTrigger(props: DatePickerPresetTriggerProps):
|
|
307
|
+
declare function PresetTrigger(props: DatePickerPresetTriggerProps): react4.JSX.Element;
|
|
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'> {}
|
|
314
|
-
declare function RangeText(props: DatePickerRangeTextProps):
|
|
315
|
+
declare function RangeText(props: DatePickerRangeTextProps): react4.JSX.Element;
|
|
315
316
|
//#endregion
|
|
316
317
|
//#region src/components/date-picker/anatomy/root.d.ts
|
|
317
318
|
interface DatePickerRootProps extends Omit<Props$4, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -324,21 +325,21 @@ 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'> {}
|
|
337
|
-
declare function Table(props: DatePickerTableProps):
|
|
338
|
+
declare function Table(props: DatePickerTableProps): react4.JSX.Element;
|
|
338
339
|
//#endregion
|
|
339
340
|
//#region src/components/date-picker/anatomy/table-body.d.ts
|
|
340
341
|
interface DatePickerTableBodyProps extends PropsWithElement<'tbody'>, HTMLAttributes<'tbody'> {}
|
|
341
|
-
declare function TableBody(props: DatePickerTableBodyProps):
|
|
342
|
+
declare function TableBody(props: DatePickerTableBodyProps): react4.JSX.Element;
|
|
342
343
|
//#endregion
|
|
343
344
|
//#region src/internal/union.d.ts
|
|
344
345
|
type Union<T, U> = { [K in keyof T]: K extends keyof U ? U[K] | T[K] : T[K] } & Omit<U, keyof T>;
|
|
@@ -349,23 +350,23 @@ declare function TableCell(props: DatePickerTableCellProps): react_jsx_runtime0.
|
|
|
349
350
|
//#endregion
|
|
350
351
|
//#region src/components/date-picker/anatomy/table-cell-trigger.d.ts
|
|
351
352
|
interface DatePickerTableCellTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
352
|
-
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps):
|
|
353
|
+
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps): react4.JSX.Element;
|
|
353
354
|
//#endregion
|
|
354
355
|
//#region src/components/date-picker/anatomy/table-head.d.ts
|
|
355
356
|
interface DatePickerTableHeadProps extends PropsWithElement<'thead'>, HTMLAttributes<'thead'> {}
|
|
356
|
-
declare function TableHead(props: DatePickerTableHeadProps):
|
|
357
|
+
declare function TableHead(props: DatePickerTableHeadProps): react4.JSX.Element;
|
|
357
358
|
//#endregion
|
|
358
359
|
//#region src/components/date-picker/anatomy/table-header.d.ts
|
|
359
360
|
interface DatePickerTableHeaderProps extends PropsWithElement<'th'>, HTMLAttributes<'th'> {}
|
|
360
|
-
declare function TableHeader(props: DatePickerTableHeaderProps):
|
|
361
|
+
declare function TableHeader(props: DatePickerTableHeaderProps): react4.JSX.Element;
|
|
361
362
|
//#endregion
|
|
362
363
|
//#region src/components/date-picker/anatomy/table-row.d.ts
|
|
363
364
|
interface DatePickerTableRowProps extends PropsWithElement<'tr'>, HTMLAttributes<'tr'> {}
|
|
364
|
-
declare function TableRow(props: DatePickerTableRowProps):
|
|
365
|
+
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'> {}
|
|
@@ -373,35 +374,35 @@ declare function View(props: DatePickerViewProps): react_jsx_runtime0.JSX.Elemen
|
|
|
373
374
|
//#endregion
|
|
374
375
|
//#region src/components/date-picker/anatomy/view-control.d.ts
|
|
375
376
|
interface DatePickerViewControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
376
|
-
declare function ViewControl(props: DatePickerViewControlProps):
|
|
377
|
+
declare function ViewControl(props: DatePickerViewControlProps): react4.JSX.Element;
|
|
377
378
|
//#endregion
|
|
378
379
|
//#region src/components/date-picker/anatomy/view-trigger.d.ts
|
|
379
380
|
interface DatePickerViewTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
380
|
-
declare function ViewTrigger(props: DatePickerViewTriggerProps):
|
|
381
|
+
declare function ViewTrigger(props: DatePickerViewTriggerProps): react4.JSX.Element;
|
|
381
382
|
//#endregion
|
|
382
383
|
//#region src/components/date-picker/anatomy/year-select.d.ts
|
|
383
384
|
interface DatePickerYearSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
384
|
-
declare function YearSelect(props: DatePickerYearSelectProps):
|
|
385
|
+
declare function YearSelect(props: DatePickerYearSelectProps): react4.JSX.Element;
|
|
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;
|
|
@@ -413,23 +414,23 @@ declare const DatePicker: typeof Root$16 & {
|
|
|
413
414
|
//#endregion
|
|
414
415
|
//#region src/components/dialog/anatomy/backdrop.d.ts
|
|
415
416
|
interface DialogBackdropProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
416
|
-
declare function Backdrop(props: DialogBackdropProps):
|
|
417
|
+
declare function Backdrop(props: DialogBackdropProps): react4.JSX.Element;
|
|
417
418
|
//#endregion
|
|
418
419
|
//#region src/components/dialog/anatomy/close-trigger.d.ts
|
|
419
420
|
interface DialogCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
420
|
-
declare function CloseTrigger$3(props: DialogCloseTriggerProps):
|
|
421
|
+
declare function CloseTrigger$3(props: DialogCloseTriggerProps): react4.JSX.Element;
|
|
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'> {}
|
|
428
|
-
declare function Description$2(props: DialogDescriptionProps):
|
|
429
|
+
declare function Description$2(props: DialogDescriptionProps): react4.JSX.Element;
|
|
429
430
|
//#endregion
|
|
430
431
|
//#region src/components/dialog/anatomy/positioner.d.ts
|
|
431
432
|
interface DialogPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
432
|
-
declare function Positioner$4(props: DialogPositionerProps):
|
|
433
|
+
declare function Positioner$4(props: DialogPositionerProps): react4.JSX.Element;
|
|
433
434
|
//#endregion
|
|
434
435
|
//#region src/components/dialog/anatomy/root.d.ts
|
|
435
436
|
interface DialogRootProps extends PropsWithChildren, Omit<Props$5, 'id'> {}
|
|
@@ -442,30 +443,30 @@ 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'> {}
|
|
455
|
-
declare function Title$3(props: DialogTitleProps):
|
|
456
|
+
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;
|
|
@@ -473,39 +474,39 @@ declare const Dialog: typeof Root$15 & {
|
|
|
473
474
|
//#endregion
|
|
474
475
|
//#region src/components/file-upload/anatomy/clear-trigger.d.ts
|
|
475
476
|
interface FileUploadClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
476
|
-
declare function ClearTrigger$1(props: FileUploadClearTriggerProps):
|
|
477
|
+
declare function ClearTrigger$1(props: FileUploadClearTriggerProps): react4.JSX.Element;
|
|
477
478
|
//#endregion
|
|
478
479
|
//#region src/components/file-upload/anatomy/dropzone.d.ts
|
|
479
480
|
interface FileUploadDropzoneProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
480
|
-
declare function Dropzone(props: FileUploadDropzoneProps):
|
|
481
|
+
declare function Dropzone(props: FileUploadDropzoneProps): react4.JSX.Element;
|
|
481
482
|
//#endregion
|
|
482
483
|
//#region src/components/file-upload/anatomy/hidden-input.d.ts
|
|
483
484
|
interface FileUploadHiddenInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
484
|
-
declare function HiddenInput$4(props: FileUploadHiddenInputProps):
|
|
485
|
+
declare function HiddenInput$4(props: FileUploadHiddenInputProps): react4.JSX.Element;
|
|
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'> {}
|
|
492
|
-
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps):
|
|
493
|
+
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps): react4.JSX.Element;
|
|
493
494
|
//#endregion
|
|
494
495
|
//#region src/components/file-upload/anatomy/item-group.d.ts
|
|
495
496
|
interface FileUploadItemGroupProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
496
|
-
declare function ItemGroup$2(props: FileUploadItemGroupProps):
|
|
497
|
+
declare function ItemGroup$2(props: FileUploadItemGroupProps): react4.JSX.Element;
|
|
497
498
|
//#endregion
|
|
498
499
|
//#region src/components/file-upload/anatomy/item-name.d.ts
|
|
499
500
|
interface FileUploadItemNameProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
500
|
-
declare function ItemName(props: FileUploadItemNameProps):
|
|
501
|
+
declare function ItemName(props: FileUploadItemNameProps): react4.JSX.Element;
|
|
501
502
|
//#endregion
|
|
502
503
|
//#region src/components/file-upload/anatomy/item-size-text.d.ts
|
|
503
504
|
interface FileUploadItemSizeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
504
|
-
declare function ItemSizeText(props: FileUploadItemSizeTextProps):
|
|
505
|
+
declare function ItemSizeText(props: FileUploadItemSizeTextProps): react4.JSX.Element;
|
|
505
506
|
//#endregion
|
|
506
507
|
//#region src/components/file-upload/anatomy/label.d.ts
|
|
507
508
|
interface FileUploadLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
508
|
-
declare function Label$8(props: FileUploadLabelProps):
|
|
509
|
+
declare function Label$8(props: FileUploadLabelProps): react4.JSX.Element;
|
|
509
510
|
//#endregion
|
|
510
511
|
//#region src/components/file-upload/anatomy/root.d.ts
|
|
511
512
|
interface FileUploadRootProps extends Omit<Props$6, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {}
|
|
@@ -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;
|
|
@@ -548,35 +549,35 @@ declare const FileUpload: typeof Root$14 & {
|
|
|
548
549
|
//#endregion
|
|
549
550
|
//#region src/components/floating-panel/anatomy/body.d.ts
|
|
550
551
|
interface FloatingPanelBodyProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
551
|
-
declare function Body(props: FloatingPanelBodyProps):
|
|
552
|
+
declare function Body(props: FloatingPanelBodyProps): react4.JSX.Element;
|
|
552
553
|
//#endregion
|
|
553
554
|
//#region src/components/floating-panel/anatomy/close-trigger.d.ts
|
|
554
555
|
interface FloatingPanelCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
555
|
-
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps):
|
|
556
|
+
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps): react4.JSX.Element;
|
|
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'> {}
|
|
563
|
-
declare function Control$5(props: FloatingPanelControlProps):
|
|
564
|
+
declare function Control$5(props: FloatingPanelControlProps): react4.JSX.Element;
|
|
564
565
|
//#endregion
|
|
565
566
|
//#region src/components/floating-panel/anatomy/drag-trigger.d.ts
|
|
566
567
|
interface FloatingPanelDragTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
567
|
-
declare function DragTrigger(props: FloatingPanelDragTriggerProps):
|
|
568
|
+
declare function DragTrigger(props: FloatingPanelDragTriggerProps): react4.JSX.Element;
|
|
568
569
|
//#endregion
|
|
569
570
|
//#region src/components/floating-panel/anatomy/header.d.ts
|
|
570
571
|
interface FloatingPanelHeaderProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
571
|
-
declare function Header(props: FloatingPanelHeaderProps):
|
|
572
|
+
declare function Header(props: FloatingPanelHeaderProps): react4.JSX.Element;
|
|
572
573
|
//#endregion
|
|
573
574
|
//#region src/components/floating-panel/anatomy/positioner.d.ts
|
|
574
575
|
interface FloatingPanelPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
575
|
-
declare function Positioner$3(props: FloatingPanelPositionerProps):
|
|
576
|
+
declare function Positioner$3(props: FloatingPanelPositionerProps): react4.JSX.Element;
|
|
576
577
|
//#endregion
|
|
577
578
|
//#region src/components/floating-panel/anatomy/resize-trigger.d.ts
|
|
578
579
|
interface FloatingPanelResizeTriggerProps extends ResizeTriggerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
579
|
-
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps):
|
|
580
|
+
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps): react4.JSX.Element;
|
|
580
581
|
//#endregion
|
|
581
582
|
//#region src/components/floating-panel/anatomy/root.d.ts
|
|
582
583
|
interface FloatingPanelRootProps extends PropsWithChildren, Omit<Props$7, 'id'> {}
|
|
@@ -589,33 +590,33 @@ 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'> {}
|
|
602
|
-
declare function StageTrigger(props: FloatingPanelStageTriggerProps):
|
|
603
|
+
declare function StageTrigger(props: FloatingPanelStageTriggerProps): react4.JSX.Element;
|
|
603
604
|
//#endregion
|
|
604
605
|
//#region src/components/floating-panel/anatomy/title.d.ts
|
|
605
606
|
interface FloatingPanelTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
606
|
-
declare function Title$2(props: FloatingPanelTitleProps):
|
|
607
|
+
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;
|
|
@@ -636,23 +637,23 @@ declare function ItemGroup$1(props: ListboxItemGroupProps): react_jsx_runtime0.J
|
|
|
636
637
|
//#endregion
|
|
637
638
|
//#region src/components/listbox/anatomy/item-group-label.d.ts
|
|
638
639
|
interface ListboxItemGroupLabelProps extends Omit<ItemGroupLabelProps$1, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
639
|
-
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps):
|
|
640
|
+
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react4.JSX.Element;
|
|
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'> {}
|
|
647
|
-
declare function Input$1(props: ListboxInputProps):
|
|
648
|
+
declare function Input$1(props: ListboxInputProps): react4.JSX.Element;
|
|
648
649
|
//#endregion
|
|
649
650
|
//#region src/components/listbox/anatomy/item-indicator.d.ts
|
|
650
651
|
interface ListboxItemIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
651
|
-
declare function ItemIndicator$1(props: ListboxItemIndicatorProps):
|
|
652
|
+
declare function ItemIndicator$1(props: ListboxItemIndicatorProps): react4.JSX.Element;
|
|
652
653
|
//#endregion
|
|
653
654
|
//#region src/components/listbox/anatomy/item-text.d.ts
|
|
654
655
|
interface ListboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
655
|
-
declare function ItemText$3(props: ListboxItemTextProps):
|
|
656
|
+
declare function ItemText$3(props: ListboxItemTextProps): react4.JSX.Element;
|
|
656
657
|
//#endregion
|
|
657
658
|
//#region src/components/listbox/modules/provider.d.ts
|
|
658
659
|
declare function useListbox(props: Omit<Props$8, 'id'>): Api$8<PropTypes>;
|
|
@@ -661,55 +662,55 @@ 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'> {}
|
|
674
|
-
declare function Label$7(props: ListboxLabelProps):
|
|
675
|
+
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
|
};
|
|
693
694
|
//#endregion
|
|
694
695
|
//#region src/components/menu/anatomy/arrow.d.ts
|
|
695
696
|
interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
696
|
-
declare function Arrow$2(props: MenuArrowProps):
|
|
697
|
+
declare function Arrow$2(props: MenuArrowProps): react4.JSX.Element;
|
|
697
698
|
//#endregion
|
|
698
699
|
//#region src/components/menu/anatomy/arrow-tip.d.ts
|
|
699
700
|
interface MenuArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
700
|
-
declare function ArrowTip$2(props: MenuArrowTipProps):
|
|
701
|
+
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'> {}
|
|
708
|
-
declare function ContextTrigger(props: MenuContextTriggerProps):
|
|
709
|
+
declare function ContextTrigger(props: MenuContextTriggerProps): react4.JSX.Element;
|
|
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'> {}
|
|
@@ -717,7 +718,7 @@ declare function ItemGroup(props: MenuItemGroupProps): react_jsx_runtime0.JSX.El
|
|
|
717
718
|
//#endregion
|
|
718
719
|
//#region src/components/menu/anatomy/item-group-label.d.ts
|
|
719
720
|
interface MenuItemGroupLabelProps extends Omit<ItemGroupLabelProps$2, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
720
|
-
declare function ItemGroupLabel(props: MenuItemGroupLabelProps):
|
|
721
|
+
declare function ItemGroupLabel(props: MenuItemGroupLabelProps): react4.JSX.Element;
|
|
721
722
|
//#endregion
|
|
722
723
|
//#region src/components/menu/anatomy/option-item.d.ts
|
|
723
724
|
interface MenuOptionItemProps extends OptionItemProps, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -725,19 +726,19 @@ declare function OptionItem(props: MenuOptionItemProps): react_jsx_runtime0.JSX.
|
|
|
725
726
|
//#endregion
|
|
726
727
|
//#region src/components/menu/anatomy/item-text.d.ts
|
|
727
728
|
interface MenuItemTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
728
|
-
declare function ItemText$2(props: MenuItemTextProps):
|
|
729
|
+
declare function ItemText$2(props: MenuItemTextProps): react4.JSX.Element;
|
|
729
730
|
//#endregion
|
|
730
731
|
//#region src/components/menu/anatomy/item-indicator.d.ts
|
|
731
732
|
interface MenuItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
732
|
-
declare function ItemIndicator(props: MenuItemIndicatorProps):
|
|
733
|
+
declare function ItemIndicator(props: MenuItemIndicatorProps): react4.JSX.Element;
|
|
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'> {}
|
|
740
|
-
declare function Positioner$2(props: MenuPositionerProps):
|
|
741
|
+
declare function Positioner$2(props: MenuPositionerProps): react4.JSX.Element;
|
|
741
742
|
//#endregion
|
|
742
743
|
//#region src/components/menu/anatomy/root.d.ts
|
|
743
744
|
interface MenuRootProps extends Omit<Props$9, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div', 'id' | 'dir'>, 'onSelect' | 'aria-label'> {}
|
|
@@ -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):
|
|
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
|
};
|
|
@@ -806,27 +807,27 @@ declare function NavigationRoot(props: NavigationRootProps): react_jsx_runtime0.
|
|
|
806
807
|
//#endregion
|
|
807
808
|
//#region src/components/navigation/anatomy/menu.d.ts
|
|
808
809
|
interface NavigationMenuProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
809
|
-
declare function NavigationMenu(props: NavigationMenuProps):
|
|
810
|
+
declare function NavigationMenu(props: NavigationMenuProps): react4.JSX.Element;
|
|
810
811
|
//#endregion
|
|
811
812
|
//#region src/components/navigation/anatomy/header.d.ts
|
|
812
813
|
interface NavigationHeaderProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
813
|
-
declare function NavigationHeader(props: NavigationHeaderProps):
|
|
814
|
+
declare function NavigationHeader(props: NavigationHeaderProps): react4.JSX.Element;
|
|
814
815
|
//#endregion
|
|
815
816
|
//#region src/components/navigation/anatomy/content.d.ts
|
|
816
817
|
interface NavigationContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
817
|
-
declare function NavigationContent(props: NavigationContentProps):
|
|
818
|
+
declare function NavigationContent(props: NavigationContentProps): react4.JSX.Element;
|
|
818
819
|
//#endregion
|
|
819
820
|
//#region src/components/navigation/anatomy/footer.d.ts
|
|
820
821
|
interface NavigationFooterProps extends PropsWithElement<'footer'>, HTMLAttributes<'footer'> {}
|
|
821
|
-
declare function NavigationFooter(props: NavigationFooterProps):
|
|
822
|
+
declare function NavigationFooter(props: NavigationFooterProps): react4.JSX.Element;
|
|
822
823
|
//#endregion
|
|
823
824
|
//#region src/components/navigation/anatomy/group.d.ts
|
|
824
825
|
interface NavigationGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
825
|
-
declare function NavigationGroup(props: NavigationGroupProps):
|
|
826
|
+
declare function NavigationGroup(props: NavigationGroupProps): react4.JSX.Element;
|
|
826
827
|
//#endregion
|
|
827
828
|
//#region src/components/navigation/anatomy/label.d.ts
|
|
828
829
|
interface NavigationLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
829
|
-
declare function NavigationLabel(props: NavigationLabelProps):
|
|
830
|
+
declare function NavigationLabel(props: NavigationLabelProps): react4.JSX.Element;
|
|
830
831
|
//#endregion
|
|
831
832
|
//#region src/components/navigation/modules/anatomy.d.ts
|
|
832
833
|
declare const Navigation: typeof NavigationRoot & {
|
|
@@ -840,27 +841,27 @@ declare const Navigation: typeof NavigationRoot & {
|
|
|
840
841
|
//#endregion
|
|
841
842
|
//#region src/components/pagination/anatomy/ellipsis.d.ts
|
|
842
843
|
interface PaginationEllipsisProps extends EllipsisProps, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
843
|
-
declare function Ellipsis(props: PaginationEllipsisProps):
|
|
844
|
+
declare function Ellipsis(props: PaginationEllipsisProps): react4.JSX.Element;
|
|
844
845
|
//#endregion
|
|
845
846
|
//#region src/components/pagination/anatomy/first-trigger.d.ts
|
|
846
847
|
interface PaginationFirstTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
847
|
-
declare function FirstTrigger(props: PaginationFirstTriggerProps):
|
|
848
|
+
declare function FirstTrigger(props: PaginationFirstTriggerProps): react4.JSX.Element;
|
|
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'> {}
|
|
855
|
-
declare function LastTrigger(props: PaginationLastTriggerProps):
|
|
856
|
+
declare function LastTrigger(props: PaginationLastTriggerProps): react4.JSX.Element;
|
|
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):
|
|
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):
|
|
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,34 +885,34 @@ 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
|
|
896
897
|
//#region src/components/popover/anatomy/anchor.d.ts
|
|
897
898
|
interface PopoverAnchorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
898
|
-
declare function Anchor(props: PopoverAnchorProps):
|
|
899
|
+
declare function Anchor(props: PopoverAnchorProps): react4.JSX.Element;
|
|
899
900
|
//#endregion
|
|
900
901
|
//#region src/components/popover/anatomy/close-trigger.d.ts
|
|
901
902
|
interface PopoverCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
902
|
-
declare function CloseTrigger$1(props: PopoverCloseTriggerProps):
|
|
903
|
+
declare function CloseTrigger$1(props: PopoverCloseTriggerProps): react4.JSX.Element;
|
|
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'> {}
|
|
910
|
-
declare function Description$1(props: PopoverDescriptionProps):
|
|
911
|
+
declare function Description$1(props: PopoverDescriptionProps): react4.JSX.Element;
|
|
911
912
|
//#endregion
|
|
912
913
|
//#region src/components/popover/anatomy/positioner.d.ts
|
|
913
914
|
interface PopoverPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
914
|
-
declare function Positioner$1(props: PopoverPositionerProps):
|
|
915
|
+
declare function Positioner$1(props: PopoverPositionerProps): react4.JSX.Element;
|
|
915
916
|
//#endregion
|
|
916
917
|
//#region src/components/popover/anatomy/root.d.ts
|
|
917
918
|
interface PopoverRootProps extends PropsWithChildren, Omit<Props$11, 'id'> {}
|
|
@@ -924,38 +925,38 @@ 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'> {}
|
|
937
|
-
declare function Title$1(props: PopoverTitleProps):
|
|
938
|
+
declare function Title$1(props: PopoverTitleProps): react4.JSX.Element;
|
|
938
939
|
//#endregion
|
|
939
940
|
//#region src/components/popover/anatomy/arrow.d.ts
|
|
940
941
|
interface PopoverArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
941
|
-
declare function Arrow$1(props: PopoverArrowProps):
|
|
942
|
+
declare function Arrow$1(props: PopoverArrowProps): react4.JSX.Element;
|
|
942
943
|
//#endregion
|
|
943
944
|
//#region src/components/popover/anatomy/arrow-tip.d.ts
|
|
944
945
|
interface PopoverArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
945
|
-
declare function ArrowTip$1(props: PopoverArrowTipProps):
|
|
946
|
+
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;
|
|
@@ -985,11 +986,11 @@ declare const Portal: typeof Root$9;
|
|
|
985
986
|
//#endregion
|
|
986
987
|
//#region src/components/progress/anatomy/label.d.ts
|
|
987
988
|
interface ProgressLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
988
|
-
declare function Label$6(props: ProgressLabelProps):
|
|
989
|
+
declare function Label$6(props: ProgressLabelProps): react4.JSX.Element;
|
|
989
990
|
//#endregion
|
|
990
991
|
//#region src/components/progress/anatomy/range.d.ts
|
|
991
992
|
interface ProgressRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
992
|
-
declare function Range$1(props: ProgressRangeProps):
|
|
993
|
+
declare function Range$1(props: ProgressRangeProps): react4.JSX.Element;
|
|
993
994
|
//#endregion
|
|
994
995
|
//#region src/components/progress/anatomy/root.d.ts
|
|
995
996
|
interface ProgressRootProps extends Omit<Props$12, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1002,38 +1003,38 @@ 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'> {}
|
|
1015
|
-
declare function Track$1(props: ProgressTrackProps):
|
|
1016
|
+
declare function Track$1(props: ProgressTrackProps): react4.JSX.Element;
|
|
1016
1017
|
//#endregion
|
|
1017
1018
|
//#region src/components/progress/anatomy/value-text.d.ts
|
|
1018
1019
|
interface ProgressValueTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1019
|
-
declare function ValueText$1(props: ProgressValueTextProps):
|
|
1020
|
+
declare function ValueText$1(props: ProgressValueTextProps): react4.JSX.Element;
|
|
1020
1021
|
//#endregion
|
|
1021
1022
|
//#region src/components/progress/anatomy/circle.d.ts
|
|
1022
1023
|
interface ProgressCircleProps extends PropsWithElement<'svg'>, HTMLAttributes<'svg'> {}
|
|
1023
|
-
declare function Circle(props: ProgressCircleProps):
|
|
1024
|
+
declare function Circle(props: ProgressCircleProps): react4.JSX.Element;
|
|
1024
1025
|
//#endregion
|
|
1025
1026
|
//#region src/components/progress/anatomy/circle-range.d.ts
|
|
1026
1027
|
interface ProgressCircleRangeProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1027
|
-
declare function CircleRange(props: ProgressCircleRangeProps):
|
|
1028
|
+
declare function CircleRange(props: ProgressCircleRangeProps): react4.JSX.Element;
|
|
1028
1029
|
//#endregion
|
|
1029
1030
|
//#region src/components/progress/anatomy/circle-track.d.ts
|
|
1030
1031
|
interface ProgressCircleTrackProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1031
|
-
declare function CircleTrack(props: ProgressCircleTrackProps):
|
|
1032
|
+
declare function CircleTrack(props: ProgressCircleTrackProps): react4.JSX.Element;
|
|
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;
|
|
@@ -1045,11 +1046,11 @@ declare const Progress: typeof Root$8 & {
|
|
|
1045
1046
|
//#endregion
|
|
1046
1047
|
//#region src/components/rating-group/anatomy/control.d.ts
|
|
1047
1048
|
interface RatingGroupControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1048
|
-
declare function Control$4(props: RatingGroupControlProps):
|
|
1049
|
+
declare function Control$4(props: RatingGroupControlProps): react4.JSX.Element;
|
|
1049
1050
|
//#endregion
|
|
1050
1051
|
//#region src/components/rating-group/anatomy/hidden-input.d.ts
|
|
1051
1052
|
interface RatingGroupHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'id' | 'dir' | 'children'> {}
|
|
1052
|
-
declare function HiddenInput$3(props: RatingGroupHiddenInputProps):
|
|
1053
|
+
declare function HiddenInput$3(props: RatingGroupHiddenInputProps): react4.JSX.Element;
|
|
1053
1054
|
//#endregion
|
|
1054
1055
|
//#region src/components/rating-group/anatomy/item.d.ts
|
|
1055
1056
|
interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HTMLAttributes<'span', 'id' | 'dir'> {
|
|
@@ -1072,11 +1073,11 @@ 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'> {}
|
|
1079
|
-
declare function Label$5(props: RatingGroupLabelProps):
|
|
1080
|
+
declare function Label$5(props: RatingGroupLabelProps): react4.JSX.Element;
|
|
1080
1081
|
//#endregion
|
|
1081
1082
|
//#region src/components/rating-group/anatomy/root.d.ts
|
|
1082
1083
|
interface RatingGroupRootProps extends Omit<Props$13, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1089,47 +1090,47 @@ 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
|
|
1110
1111
|
//#region src/components/segmented-control/anatomy/control.d.ts
|
|
1111
1112
|
interface SegmentedControlControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1112
|
-
declare function Control$3(props: SegmentedControlControlProps):
|
|
1113
|
+
declare function Control$3(props: SegmentedControlControlProps): react4.JSX.Element;
|
|
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'> {}
|
|
1120
|
-
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps):
|
|
1121
|
+
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps): react4.JSX.Element;
|
|
1121
1122
|
//#endregion
|
|
1122
1123
|
//#region src/components/segmented-control/anatomy/item-text.d.ts
|
|
1123
1124
|
interface SegmentedControlItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1124
|
-
declare function ItemText$1(props: SegmentedControlItemTextProps):
|
|
1125
|
+
declare function ItemText$1(props: SegmentedControlItemTextProps): react4.JSX.Element;
|
|
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'> {}
|
|
1132
|
-
declare function Label$4(props: SegmentedControlLabelProps):
|
|
1133
|
+
declare function Label$4(props: SegmentedControlLabelProps): react4.JSX.Element;
|
|
1133
1134
|
//#endregion
|
|
1134
1135
|
//#region src/components/segmented-control/modules/provider.d.ts
|
|
1135
1136
|
declare function useSegmentedControl(props?: Omit<Props$14, 'id'>): Api$14<PropTypes>;
|
|
@@ -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,39 +1153,39 @@ 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
|
};
|
|
1164
1165
|
//#endregion
|
|
1165
1166
|
//#region src/components/slider/anatomy/control.d.ts
|
|
1166
1167
|
interface SliderControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1167
|
-
declare function Control$2(props: SliderControlProps):
|
|
1168
|
+
declare function Control$2(props: SliderControlProps): react4.JSX.Element;
|
|
1168
1169
|
//#endregion
|
|
1169
1170
|
//#region src/components/slider/anatomy/hidden-input.d.ts
|
|
1170
1171
|
interface SliderHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1171
|
-
declare function HiddenInput$2(props: SliderHiddenInputProps):
|
|
1172
|
+
declare function HiddenInput$2(props: SliderHiddenInputProps): react4.JSX.Element;
|
|
1172
1173
|
//#endregion
|
|
1173
1174
|
//#region src/components/slider/anatomy/label.d.ts
|
|
1174
1175
|
interface SliderLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1175
|
-
declare function Label$3(props: SliderLabelProps):
|
|
1176
|
+
declare function Label$3(props: SliderLabelProps): react4.JSX.Element;
|
|
1176
1177
|
//#endregion
|
|
1177
1178
|
//#region src/components/slider/anatomy/marker-group.d.ts
|
|
1178
1179
|
interface SliderMarkerGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1179
|
-
declare function MarkerGroup(props: SliderMarkerGroupProps):
|
|
1180
|
+
declare function MarkerGroup(props: SliderMarkerGroupProps): react4.JSX.Element;
|
|
1180
1181
|
//#endregion
|
|
1181
1182
|
//#region src/components/slider/anatomy/marker.d.ts
|
|
1182
1183
|
interface SliderMarkerProps extends MarkerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1183
|
-
declare function Marker(props: SliderMarkerProps):
|
|
1184
|
+
declare function Marker(props: SliderMarkerProps): react4.JSX.Element;
|
|
1184
1185
|
//#endregion
|
|
1185
1186
|
//#region src/components/slider/anatomy/range.d.ts
|
|
1186
1187
|
interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1187
|
-
declare function Range(props: SliderRangeProps):
|
|
1188
|
+
declare function Range(props: SliderRangeProps): react4.JSX.Element;
|
|
1188
1189
|
//#endregion
|
|
1189
1190
|
//#region src/components/slider/modules/provider.d.ts
|
|
1190
1191
|
declare function useSlider(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
@@ -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'> {}
|
|
@@ -1211,16 +1212,16 @@ declare function Thumb$1(props: SliderThumbProps): react_jsx_runtime0.JSX.Elemen
|
|
|
1211
1212
|
//#endregion
|
|
1212
1213
|
//#region src/components/slider/anatomy/track.d.ts
|
|
1213
1214
|
interface SliderTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1214
|
-
declare function Track(props: SliderTrackProps):
|
|
1215
|
+
declare function Track(props: SliderTrackProps): react4.JSX.Element;
|
|
1215
1216
|
//#endregion
|
|
1216
1217
|
//#region src/components/slider/anatomy/value-text.d.ts
|
|
1217
1218
|
interface SliderValueTextProps extends PropsWithElement<'output'>, HTMLAttributes<'output'> {}
|
|
1218
|
-
declare function ValueText(props: SliderValueTextProps):
|
|
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,20 +1233,85 @@ 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
|
-
declare function Control$1(props: SwitchControlProps):
|
|
1303
|
+
declare function Control$1(props: SwitchControlProps): react4.JSX.Element;
|
|
1238
1304
|
//#endregion
|
|
1239
1305
|
//#region src/components/switch/anatomy/hidden-input.d.ts
|
|
1240
1306
|
interface SwitchHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1241
|
-
declare function HiddenInput$1(props: SwitchHiddenInputProps):
|
|
1307
|
+
declare function HiddenInput$1(props: SwitchHiddenInputProps): react4.JSX.Element;
|
|
1242
1308
|
//#endregion
|
|
1243
1309
|
//#region src/components/switch/anatomy/label.d.ts
|
|
1244
1310
|
interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1245
|
-
declare function Label$2(props: SwitchLabelProps):
|
|
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 {
|
|
@@ -1261,10 +1327,10 @@ declare function RootProvider$4(props: SwitchRootProviderProps): react_jsx_runti
|
|
|
1261
1327
|
//#endregion
|
|
1262
1328
|
//#region src/components/switch/anatomy/thumb.d.ts
|
|
1263
1329
|
interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1264
|
-
declare function Thumb(props: SwitchThumbProps):
|
|
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
|
|
@@ -1279,22 +1345,22 @@ declare const Switch: typeof Root$5 & {
|
|
|
1279
1345
|
//#endregion
|
|
1280
1346
|
//#region src/components/tabs/anatomy/content.d.ts
|
|
1281
1347
|
interface TabsContentProps extends ContentProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1282
|
-
declare function Content$1(props: TabsContentProps):
|
|
1348
|
+
declare function Content$1(props: TabsContentProps): react4.JSX.Element;
|
|
1283
1349
|
//#endregion
|
|
1284
1350
|
//#region src/components/tabs/anatomy/indicator.d.ts
|
|
1285
1351
|
interface TabsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1286
|
-
declare function Indicator(props: TabsIndicatorProps):
|
|
1352
|
+
declare function Indicator(props: TabsIndicatorProps): react4.JSX.Element;
|
|
1287
1353
|
//#endregion
|
|
1288
1354
|
//#region src/components/tabs/anatomy/list.d.ts
|
|
1289
1355
|
interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1290
|
-
declare function List(props: TabsListProps):
|
|
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 {
|
|
@@ -1310,7 +1376,7 @@ declare function RootProvider$3(props: TabsRootProviderProps): react_jsx_runtime
|
|
|
1310
1376
|
//#endregion
|
|
1311
1377
|
//#region src/components/tabs/anatomy/trigger.d.ts
|
|
1312
1378
|
interface TabsTriggerProps extends TriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
1313
|
-
declare function Trigger$1(props: TabsTriggerProps):
|
|
1379
|
+
declare function Trigger$1(props: TabsTriggerProps): react4.JSX.Element;
|
|
1314
1380
|
//#endregion
|
|
1315
1381
|
//#region src/components/tabs/modules/anatomy.d.ts
|
|
1316
1382
|
declare const Tabs: typeof Root$4 & {
|
|
@@ -1324,50 +1390,50 @@ declare const Tabs: typeof Root$4 & {
|
|
|
1324
1390
|
//#endregion
|
|
1325
1391
|
//#region src/components/tags-input/anatomy/clear-trigger.d.ts
|
|
1326
1392
|
interface TagsInputClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1327
|
-
declare function ClearTrigger(props: TagsInputClearTriggerProps):
|
|
1393
|
+
declare function ClearTrigger(props: TagsInputClearTriggerProps): react4.JSX.Element;
|
|
1328
1394
|
//#endregion
|
|
1329
1395
|
//#region src/components/tags-input/anatomy/control.d.ts
|
|
1330
1396
|
interface TagsInputControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1331
|
-
declare function Control(props: TagsInputControlProps):
|
|
1397
|
+
declare function Control(props: TagsInputControlProps): react4.JSX.Element;
|
|
1332
1398
|
//#endregion
|
|
1333
1399
|
//#region src/components/tags-input/anatomy/hidden-input.d.ts
|
|
1334
1400
|
interface TagsInputHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1335
|
-
declare function HiddenInput(props: TagsInputHiddenInputProps):
|
|
1401
|
+
declare function HiddenInput(props: TagsInputHiddenInputProps): react4.JSX.Element;
|
|
1336
1402
|
//#endregion
|
|
1337
1403
|
//#region src/components/tags-input/anatomy/input.d.ts
|
|
1338
1404
|
interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1339
|
-
declare function Input(props: TagsInputInputProps):
|
|
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
|
|
1346
1412
|
interface TagsInputItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1347
|
-
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps):
|
|
1413
|
+
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps): react4.JSX.Element;
|
|
1348
1414
|
//#endregion
|
|
1349
1415
|
//#region src/components/tags-input/anatomy/item-input.d.ts
|
|
1350
1416
|
interface TagsInputItemInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1351
|
-
declare function ItemInput(props: TagsInputItemInputProps):
|
|
1417
|
+
declare function ItemInput(props: TagsInputItemInputProps): react4.JSX.Element;
|
|
1352
1418
|
//#endregion
|
|
1353
1419
|
//#region src/components/tags-input/anatomy/item-preview.d.ts
|
|
1354
1420
|
interface TagsInputItemPreviewProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1355
|
-
declare function ItemPreview(props: TagsInputItemPreviewProps):
|
|
1421
|
+
declare function ItemPreview(props: TagsInputItemPreviewProps): react4.JSX.Element;
|
|
1356
1422
|
//#endregion
|
|
1357
1423
|
//#region src/components/tags-input/anatomy/item-text.d.ts
|
|
1358
1424
|
interface TagsInputItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1359
|
-
declare function ItemText(props: TagsInputItemTextProps):
|
|
1425
|
+
declare function ItemText(props: TagsInputItemTextProps): react4.JSX.Element;
|
|
1360
1426
|
//#endregion
|
|
1361
1427
|
//#region src/components/tags-input/anatomy/label.d.ts
|
|
1362
1428
|
interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1363
|
-
declare function Label$1(props: TagsInputLabelProps):
|
|
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 {
|
|
@@ -1399,22 +1465,22 @@ declare const TagsInput: typeof Root$3 & {
|
|
|
1399
1465
|
//#endregion
|
|
1400
1466
|
//#region src/components/toast/anatomy/close-trigger.d.ts
|
|
1401
1467
|
interface ToastCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1402
|
-
declare function CloseTrigger(props: ToastCloseTriggerProps):
|
|
1468
|
+
declare function CloseTrigger(props: ToastCloseTriggerProps): react4.JSX.Element;
|
|
1403
1469
|
//#endregion
|
|
1404
1470
|
//#region src/components/toast/anatomy/description.d.ts
|
|
1405
1471
|
interface ToastDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1406
|
-
declare function Description(props: ToastDescriptionProps):
|
|
1472
|
+
declare function Description(props: ToastDescriptionProps): react4.JSX.Element;
|
|
1407
1473
|
//#endregion
|
|
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
|
|
1415
1481
|
//#region src/components/toast/anatomy/message.d.ts
|
|
1416
1482
|
interface ToastMessageProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1417
|
-
declare function Message(props: ToastMessageProps):
|
|
1483
|
+
declare function Message(props: ToastMessageProps): react4.JSX.Element;
|
|
1418
1484
|
//#endregion
|
|
1419
1485
|
//#region src/components/toast/anatomy/root.d.ts
|
|
1420
1486
|
interface ToastRootProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -1424,17 +1490,17 @@ 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
|
|
1431
1497
|
//#region src/components/toast/anatomy/title.d.ts
|
|
1432
1498
|
interface ToastTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1433
|
-
declare function Title(props: ToastTitleProps):
|
|
1499
|
+
declare function Title(props: ToastTitleProps): react4.JSX.Element;
|
|
1434
1500
|
//#endregion
|
|
1435
1501
|
//#region src/components/toast/anatomy/action-trigger.d.ts
|
|
1436
1502
|
interface ToastActionTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1437
|
-
declare function ActionTrigger(props: ToastActionTriggerProps):
|
|
1503
|
+
declare function ActionTrigger(props: ToastActionTriggerProps): react4.JSX.Element;
|
|
1438
1504
|
//#endregion
|
|
1439
1505
|
//#region src/components/toast/modules/anatomy.d.ts
|
|
1440
1506
|
declare const Toast: typeof Root$2 & {
|
|
@@ -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$
|
|
1452
|
-
declare function Item$1(props: ToggleGroupItemProps):
|
|
1517
|
+
interface ToggleGroupItemProps extends ItemProps$10, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
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 {
|
|
@@ -1479,26 +1545,26 @@ declare const ToggleGroup: typeof ToggleGroupRoot & {
|
|
|
1479
1545
|
//#endregion
|
|
1480
1546
|
//#region src/components/tooltip/anatomy/arrow.d.ts
|
|
1481
1547
|
interface TooltipArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1482
|
-
declare function Arrow(props: TooltipArrowProps):
|
|
1548
|
+
declare function Arrow(props: TooltipArrowProps): react4.JSX.Element;
|
|
1483
1549
|
//#endregion
|
|
1484
1550
|
//#region src/components/tooltip/anatomy/arrow-tip.d.ts
|
|
1485
1551
|
interface TooltipArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1486
|
-
declare function ArrowTip(props: TooltipArrowTipProps):
|
|
1552
|
+
declare function ArrowTip(props: TooltipArrowTipProps): react4.JSX.Element;
|
|
1487
1553
|
//#endregion
|
|
1488
1554
|
//#region src/components/tooltip/anatomy/content.d.ts
|
|
1489
1555
|
interface TooltipContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1490
|
-
declare function Content(props: TooltipContentProps):
|
|
1556
|
+
declare function Content(props: TooltipContentProps): react4.JSX.Element;
|
|
1491
1557
|
//#endregion
|
|
1492
1558
|
//#region src/components/tooltip/anatomy/positioner.d.ts
|
|
1493
1559
|
interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
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 {
|
|
@@ -1514,7 +1580,7 @@ declare function RootProvider$1(props: TooltipRootProviderProps): react_jsx_runt
|
|
|
1514
1580
|
//#endregion
|
|
1515
1581
|
//#region src/components/tooltip/anatomy/trigger.d.ts
|
|
1516
1582
|
interface TooltipTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1517
|
-
declare function Trigger(props: TooltipTriggerProps):
|
|
1583
|
+
declare function Trigger(props: TooltipTriggerProps): react4.JSX.Element;
|
|
1518
1584
|
//#endregion
|
|
1519
1585
|
//#region src/components/tooltip/modules/anatomy.d.ts
|
|
1520
1586
|
declare const Tooltip: typeof Root$1 & {
|
|
@@ -1529,31 +1595,31 @@ declare const Tooltip: typeof Root$1 & {
|
|
|
1529
1595
|
//#endregion
|
|
1530
1596
|
//#region src/components/tree-view/anatomy/branch-content.d.ts
|
|
1531
1597
|
interface TreeViewBranchContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1532
|
-
declare function BranchContent(props: TreeViewBranchContentProps):
|
|
1598
|
+
declare function BranchContent(props: TreeViewBranchContentProps): react4.JSX.Element;
|
|
1533
1599
|
//#endregion
|
|
1534
1600
|
//#region src/components/tree-view/anatomy/branch-control.d.ts
|
|
1535
1601
|
interface TreeViewBranchControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1536
|
-
declare function BranchControl(props: TreeViewBranchControlProps):
|
|
1602
|
+
declare function BranchControl(props: TreeViewBranchControlProps): react4.JSX.Element;
|
|
1537
1603
|
//#endregion
|
|
1538
1604
|
//#region src/components/tree-view/anatomy/branch-indent-guide.d.ts
|
|
1539
1605
|
interface TreeViewBranchIndentGuideProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1540
|
-
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps):
|
|
1606
|
+
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps): react4.JSX.Element;
|
|
1541
1607
|
//#endregion
|
|
1542
1608
|
//#region src/components/tree-view/anatomy/branch-indicator.d.ts
|
|
1543
1609
|
interface TreeViewBranchIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1544
|
-
declare function BranchIndicator(props: TreeViewBranchIndicatorProps):
|
|
1610
|
+
declare function BranchIndicator(props: TreeViewBranchIndicatorProps): react4.JSX.Element;
|
|
1545
1611
|
//#endregion
|
|
1546
1612
|
//#region src/components/tree-view/anatomy/branch-text.d.ts
|
|
1547
1613
|
interface TreeViewBranchTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1548
|
-
declare function BranchText(props: TreeViewBranchTextProps):
|
|
1614
|
+
declare function BranchText(props: TreeViewBranchTextProps): react4.JSX.Element;
|
|
1549
1615
|
//#endregion
|
|
1550
1616
|
//#region src/components/tree-view/anatomy/branch.d.ts
|
|
1551
1617
|
interface TreeViewBranchProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1552
|
-
declare function Branch(props: TreeViewBranchProps):
|
|
1618
|
+
declare function Branch(props: TreeViewBranchProps): react4.JSX.Element;
|
|
1553
1619
|
//#endregion
|
|
1554
1620
|
//#region src/components/tree-view/anatomy/item.d.ts
|
|
1555
1621
|
interface TreeViewItemProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1556
|
-
declare function Item(props: TreeViewItemProps):
|
|
1622
|
+
declare function Item(props: TreeViewItemProps): react4.JSX.Element;
|
|
1557
1623
|
//#endregion
|
|
1558
1624
|
//#region src/components/tree-view/anatomy/label.d.ts
|
|
1559
1625
|
interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'> {
|
|
@@ -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,12 +1660,12 @@ 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
|
|
1601
1667
|
interface TreeViewTreeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1602
|
-
declare function Tree(props: TreeViewTreeProps):
|
|
1668
|
+
declare function Tree(props: TreeViewTreeProps): react4.JSX.Element;
|
|
1603
1669
|
//#endregion
|
|
1604
1670
|
//#region src/components/tree-view/modules/anatomy.d.ts
|
|
1605
1671
|
declare const TreeView: typeof Root & {
|
|
@@ -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 };
|