@skeletonlabs/skeleton-react 4.9.0 → 4.11.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 +259 -258
- package/package.json +29 -29
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import * as react1 from "react";
|
|
1
2
|
import { ComponentProps, JSX, PropsWithChildren, ReactNode } from "react";
|
|
2
3
|
import { Api, ItemProps, Props } from "@zag-js/accordion";
|
|
3
4
|
import { PropTypes } from "@zag-js/react";
|
|
4
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
5
6
|
import { Api as Api$1, Props as Props$1 } from "@zag-js/avatar";
|
|
6
7
|
import { Api as Api$2, IndicatorProps, ItemProps as ItemProps$1, Props as Props$2 } from "@zag-js/carousel";
|
|
7
8
|
import { Api as Api$3, Props as Props$3 } from "@zag-js/collapsible";
|
|
@@ -43,19 +44,19 @@ interface PropsWithElement<T extends keyof JSX.IntrinsicElements> {
|
|
|
43
44
|
//#endregion
|
|
44
45
|
//#region src/components/accordion/anatomy/item-content.d.ts
|
|
45
46
|
interface AccordionItemContentProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
46
|
-
declare function ItemContent(props: AccordionItemContentProps):
|
|
47
|
+
declare function ItemContent(props: AccordionItemContentProps): react1.JSX.Element;
|
|
47
48
|
//#endregion
|
|
48
49
|
//#region src/components/accordion/anatomy/item-indicator.d.ts
|
|
49
50
|
interface AccordionItemIndicatorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
50
|
-
declare function ItemIndicator$3(props: AccordionItemIndicatorProps):
|
|
51
|
+
declare function ItemIndicator$3(props: AccordionItemIndicatorProps): react1.JSX.Element;
|
|
51
52
|
//#endregion
|
|
52
53
|
//#region src/components/accordion/anatomy/item.d.ts
|
|
53
54
|
interface AccordionItemProps extends ItemProps, PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
54
|
-
declare function Item$12(props: AccordionItemProps):
|
|
55
|
+
declare function Item$12(props: AccordionItemProps): react_jsx_runtime0.JSX.Element;
|
|
55
56
|
//#endregion
|
|
56
57
|
//#region src/components/accordion/anatomy/root.d.ts
|
|
57
58
|
interface AccordionRootProps extends Omit<Props, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
58
|
-
declare function Root$19(props: AccordionRootProps):
|
|
59
|
+
declare function Root$19(props: AccordionRootProps): react_jsx_runtime0.JSX.Element;
|
|
59
60
|
//#endregion
|
|
60
61
|
//#region src/components/accordion/modules/provider.d.ts
|
|
61
62
|
declare function useAccordion(props?: Omit<Props, 'id'>): Api<PropTypes>;
|
|
@@ -70,11 +71,11 @@ declare function RootContext$24(props: AccordionRootContextProps): ReactNode;
|
|
|
70
71
|
interface AccordionRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
71
72
|
value: ReturnType<typeof useAccordion>;
|
|
72
73
|
}
|
|
73
|
-
declare function RootProvider$18(props: AccordionRootProviderProps):
|
|
74
|
+
declare function RootProvider$18(props: AccordionRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
74
75
|
//#endregion
|
|
75
76
|
//#region src/components/accordion/anatomy/item-trigger.d.ts
|
|
76
77
|
interface AccordionItemTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
77
|
-
declare function ItemTrigger(props: AccordionItemTriggerProps):
|
|
78
|
+
declare function ItemTrigger(props: AccordionItemTriggerProps): react1.JSX.Element;
|
|
78
79
|
//#endregion
|
|
79
80
|
//#region src/components/accordion/modules/anatomy.d.ts
|
|
80
81
|
declare const Accordion: typeof Root$19 & {
|
|
@@ -88,23 +89,23 @@ declare const Accordion: typeof Root$19 & {
|
|
|
88
89
|
//#endregion
|
|
89
90
|
//#region src/components/app-bar/anatomy/root.d.ts
|
|
90
91
|
interface AppBarRootProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
91
|
-
declare function AppBarRoot(props: AppBarRootProps):
|
|
92
|
+
declare function AppBarRoot(props: AppBarRootProps): react1.JSX.Element;
|
|
92
93
|
//#endregion
|
|
93
94
|
//#region src/components/app-bar/anatomy/toolbar.d.ts
|
|
94
95
|
interface AppBarToolbarProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
95
|
-
declare function AppBarToolbar(props: AppBarToolbarProps):
|
|
96
|
+
declare function AppBarToolbar(props: AppBarToolbarProps): react1.JSX.Element;
|
|
96
97
|
//#endregion
|
|
97
98
|
//#region src/components/app-bar/anatomy/lead.d.ts
|
|
98
99
|
interface AppBarLeadProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
99
|
-
declare function AppBarLead(props: AppBarLeadProps):
|
|
100
|
+
declare function AppBarLead(props: AppBarLeadProps): react1.JSX.Element;
|
|
100
101
|
//#endregion
|
|
101
102
|
//#region src/components/app-bar/anatomy/headline.d.ts
|
|
102
103
|
interface AppBarHeadlineProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
103
|
-
declare function AppBarHeadline(props: AppBarHeadlineProps):
|
|
104
|
+
declare function AppBarHeadline(props: AppBarHeadlineProps): react1.JSX.Element;
|
|
104
105
|
//#endregion
|
|
105
106
|
//#region src/components/app-bar/anatomy/trail.d.ts
|
|
106
107
|
interface AppBarTrailProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
107
|
-
declare function AppBarTrail(props: AppBarTrailProps):
|
|
108
|
+
declare function AppBarTrail(props: AppBarTrailProps): react1.JSX.Element;
|
|
108
109
|
//#endregion
|
|
109
110
|
//#region src/components/app-bar/modules/anatomy.d.ts
|
|
110
111
|
declare const AppBar: typeof AppBarRoot & {
|
|
@@ -116,15 +117,15 @@ declare const AppBar: typeof AppBarRoot & {
|
|
|
116
117
|
//#endregion
|
|
117
118
|
//#region src/components/avatar/anatomy/fallback.d.ts
|
|
118
119
|
interface AvatarFallbackProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
119
|
-
declare function Fallback(props: AvatarFallbackProps):
|
|
120
|
+
declare function Fallback(props: AvatarFallbackProps): react1.JSX.Element;
|
|
120
121
|
//#endregion
|
|
121
122
|
//#region src/components/avatar/anatomy/image.d.ts
|
|
122
123
|
interface AvatarImageProps extends PropsWithElement<'img'>, HTMLAttributes<'img', 'children'> {}
|
|
123
|
-
declare function Image(props: AvatarImageProps):
|
|
124
|
+
declare function Image(props: AvatarImageProps): react1.JSX.Element;
|
|
124
125
|
//#endregion
|
|
125
126
|
//#region src/components/avatar/anatomy/root.d.ts
|
|
126
127
|
interface AvatarRootProps extends Omit<Props$1, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
127
|
-
declare function AvatarRoot(props: AvatarRootProps):
|
|
128
|
+
declare function AvatarRoot(props: AvatarRootProps): react_jsx_runtime0.JSX.Element;
|
|
128
129
|
//#endregion
|
|
129
130
|
//#region src/components/avatar/modules/provider.d.ts
|
|
130
131
|
declare function useAvatar(props?: Omit<Props$1, 'id'>): Api$1<PropTypes>;
|
|
@@ -139,7 +140,7 @@ declare function RootContext$23(props: AvatarRootContextProps): ReactNode;
|
|
|
139
140
|
interface AvatarRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
140
141
|
value: ReturnType<typeof useAvatar>;
|
|
141
142
|
}
|
|
142
|
-
declare function AvatarRootProvider(props: AvatarRootProviderProps):
|
|
143
|
+
declare function AvatarRootProvider(props: AvatarRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
143
144
|
//#endregion
|
|
144
145
|
//#region src/components/avatar/modules/anatomy.d.ts
|
|
145
146
|
declare const Avatar: typeof AvatarRoot & {
|
|
@@ -151,43 +152,43 @@ declare const Avatar: typeof AvatarRoot & {
|
|
|
151
152
|
//#endregion
|
|
152
153
|
//#region src/components/carousel/anatomy/autoplay-trigger.d.ts
|
|
153
154
|
interface CarouselAutoplayTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
154
|
-
declare function AutoplayTrigger(props: CarouselAutoplayTriggerProps):
|
|
155
|
+
declare function AutoplayTrigger(props: CarouselAutoplayTriggerProps): react1.JSX.Element;
|
|
155
156
|
//#endregion
|
|
156
157
|
//#region src/components/carousel/anatomy/control.d.ts
|
|
157
158
|
interface CarouselControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
158
|
-
declare function Control$8(props: CarouselControlProps):
|
|
159
|
+
declare function Control$8(props: CarouselControlProps): react1.JSX.Element;
|
|
159
160
|
//#endregion
|
|
160
161
|
//#region src/components/carousel/anatomy/indicator-group.d.ts
|
|
161
162
|
interface CarouselIndicatorGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
162
|
-
declare function IndicatorGroup(props: CarouselIndicatorGroupProps):
|
|
163
|
+
declare function IndicatorGroup(props: CarouselIndicatorGroupProps): react1.JSX.Element;
|
|
163
164
|
//#endregion
|
|
164
165
|
//#region src/components/carousel/anatomy/indicator.d.ts
|
|
165
166
|
interface CarouselIndicatorProps extends IndicatorProps, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
166
|
-
declare function Indicator$5(props: CarouselIndicatorProps):
|
|
167
|
+
declare function Indicator$5(props: CarouselIndicatorProps): react1.JSX.Element;
|
|
167
168
|
//#endregion
|
|
168
169
|
//#region src/components/carousel/anatomy/item-group.d.ts
|
|
169
170
|
interface CarouselItemGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
170
|
-
declare function ItemGroup$4(props: CarouselItemGroupProps):
|
|
171
|
+
declare function ItemGroup$4(props: CarouselItemGroupProps): react1.JSX.Element;
|
|
171
172
|
//#endregion
|
|
172
173
|
//#region src/components/carousel/anatomy/item.d.ts
|
|
173
174
|
interface CarouselItemProps extends ItemProps$1, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
174
|
-
declare function Item$11(props: CarouselItemProps):
|
|
175
|
+
declare function Item$11(props: CarouselItemProps): react1.JSX.Element;
|
|
175
176
|
//#endregion
|
|
176
177
|
//#region src/components/carousel/anatomy/next-trigger.d.ts
|
|
177
178
|
interface CarouselNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
178
|
-
declare function NextTrigger$3(props: CarouselNextTriggerProps):
|
|
179
|
+
declare function NextTrigger$3(props: CarouselNextTriggerProps): react1.JSX.Element;
|
|
179
180
|
//#endregion
|
|
180
181
|
//#region src/components/carousel/anatomy/prev-trigger.d.ts
|
|
181
182
|
interface CarouselPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
182
|
-
declare function PrevTrigger$3(props: CarouselPrevTriggerProps):
|
|
183
|
+
declare function PrevTrigger$3(props: CarouselPrevTriggerProps): react1.JSX.Element;
|
|
183
184
|
//#endregion
|
|
184
185
|
//#region src/components/carousel/anatomy/progress-text.d.ts
|
|
185
186
|
interface CarouselProgressTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
186
|
-
declare function ProgressText(props: CarouselProgressTextProps):
|
|
187
|
+
declare function ProgressText(props: CarouselProgressTextProps): react1.JSX.Element;
|
|
187
188
|
//#endregion
|
|
188
189
|
//#region src/components/carousel/anatomy/root.d.ts
|
|
189
190
|
interface CarouselRootProps extends Omit<Props$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
190
|
-
declare function Root$18(props: CarouselRootProps):
|
|
191
|
+
declare function Root$18(props: CarouselRootProps): react_jsx_runtime0.JSX.Element;
|
|
191
192
|
//#endregion
|
|
192
193
|
//#region src/components/carousel/modules/provider.d.ts
|
|
193
194
|
declare function useCarousel(props: Omit<Props$2, 'id'> & {
|
|
@@ -204,7 +205,7 @@ declare function RootContext$22(props: CarouselRootContextProps): ReactNode;
|
|
|
204
205
|
interface CarouselRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
205
206
|
value: ReturnType<typeof useCarousel>;
|
|
206
207
|
}
|
|
207
|
-
declare function RootProvider$17(props: CarouselRootProviderProps):
|
|
208
|
+
declare function RootProvider$17(props: CarouselRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
208
209
|
//#endregion
|
|
209
210
|
//#region src/components/carousel/modules/anatomy.d.ts
|
|
210
211
|
declare const Carousel: typeof Root$18 & {
|
|
@@ -223,11 +224,11 @@ declare const Carousel: typeof Root$18 & {
|
|
|
223
224
|
//#endregion
|
|
224
225
|
//#region src/components/collapsible/anatomy/content.d.ts
|
|
225
226
|
interface CollapsibleContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
226
|
-
declare function Content$10(props: CollapsibleContentProps):
|
|
227
|
+
declare function Content$10(props: CollapsibleContentProps): react1.JSX.Element;
|
|
227
228
|
//#endregion
|
|
228
229
|
//#region src/components/collapsible/anatomy/root.d.ts
|
|
229
230
|
interface CollapsibleRootProps extends Omit<Props$3, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
230
|
-
declare function CollapsibleRoot(props: CollapsibleRootProps):
|
|
231
|
+
declare function CollapsibleRoot(props: CollapsibleRootProps): react_jsx_runtime0.JSX.Element;
|
|
231
232
|
//#endregion
|
|
232
233
|
//#region src/components/collapsible/modules/provider.d.ts
|
|
233
234
|
declare function useCollapsible(props?: Omit<Props$3, 'id'>): Api$3<PropTypes>;
|
|
@@ -242,15 +243,15 @@ declare function RootContext$21(props: CollapsibleRootContextProps): ReactNode;
|
|
|
242
243
|
interface CollapsibleRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
243
244
|
value: ReturnType<typeof useCollapsible>;
|
|
244
245
|
}
|
|
245
|
-
declare function CollapsibleRootProvider(props: CollapsibleRootProviderProps):
|
|
246
|
+
declare function CollapsibleRootProvider(props: CollapsibleRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
246
247
|
//#endregion
|
|
247
248
|
//#region src/components/collapsible/anatomy/trigger.d.ts
|
|
248
249
|
interface CollapsibleTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
249
|
-
declare function Trigger$10(props: CollapsibleTriggerProps):
|
|
250
|
+
declare function Trigger$10(props: CollapsibleTriggerProps): react1.JSX.Element;
|
|
250
251
|
//#endregion
|
|
251
252
|
//#region src/components/collapsible/anatomy/indicator.d.ts
|
|
252
253
|
interface CollapsibleIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
253
|
-
declare function Indicator$4(props: CollapsibleIndicatorProps):
|
|
254
|
+
declare function Indicator$4(props: CollapsibleIndicatorProps): react1.JSX.Element;
|
|
254
255
|
//#endregion
|
|
255
256
|
//#region src/components/collapsible/modules/anatomy.d.ts
|
|
256
257
|
declare const Collapsible: typeof CollapsibleRoot & {
|
|
@@ -263,51 +264,51 @@ declare const Collapsible: typeof CollapsibleRoot & {
|
|
|
263
264
|
//#endregion
|
|
264
265
|
//#region src/components/combobox/anatomy/clear-trigger.d.ts
|
|
265
266
|
interface ComboboxClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
266
|
-
declare function ClearTrigger$2(props: ComboboxClearTriggerProps):
|
|
267
|
+
declare function ClearTrigger$2(props: ComboboxClearTriggerProps): react1.JSX.Element;
|
|
267
268
|
//#endregion
|
|
268
269
|
//#region src/components/combobox/anatomy/content.d.ts
|
|
269
270
|
interface ComboboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
270
|
-
declare function Content$9(props: ComboboxContentProps):
|
|
271
|
+
declare function Content$9(props: ComboboxContentProps): react1.JSX.Element;
|
|
271
272
|
//#endregion
|
|
272
273
|
//#region src/components/combobox/anatomy/control.d.ts
|
|
273
274
|
interface ComboboxControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
274
|
-
declare function Control$7(props: ComboboxControlProps):
|
|
275
|
+
declare function Control$7(props: ComboboxControlProps): react1.JSX.Element;
|
|
275
276
|
//#endregion
|
|
276
277
|
//#region src/components/combobox/anatomy/input.d.ts
|
|
277
278
|
interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
278
|
-
declare function Input$3(props: ComboboxInputProps):
|
|
279
|
+
declare function Input$3(props: ComboboxInputProps): react1.JSX.Element;
|
|
279
280
|
//#endregion
|
|
280
281
|
//#region src/components/combobox/anatomy/item.d.ts
|
|
281
282
|
interface ComboboxItemProps extends ItemProps$2, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
282
|
-
declare function Item$10(props: ComboboxItemProps):
|
|
283
|
+
declare function Item$10(props: ComboboxItemProps): react_jsx_runtime0.JSX.Element;
|
|
283
284
|
//#endregion
|
|
284
285
|
//#region src/components/combobox/anatomy/item-group.d.ts
|
|
285
286
|
interface ComboboxItemGroupProps extends Omit<ItemGroupProps, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id'> {}
|
|
286
|
-
declare function ItemGroup$3(props: ComboboxItemGroupProps):
|
|
287
|
+
declare function ItemGroup$3(props: ComboboxItemGroupProps): react_jsx_runtime0.JSX.Element;
|
|
287
288
|
//#endregion
|
|
288
289
|
//#region src/components/combobox/anatomy/item-group-label.d.ts
|
|
289
290
|
interface ComboboxItemGroupLabelProps extends Omit<ItemGroupLabelProps, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
290
|
-
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps):
|
|
291
|
+
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps): react1.JSX.Element;
|
|
291
292
|
//#endregion
|
|
292
293
|
//#region src/components/combobox/anatomy/item-indicator.d.ts
|
|
293
294
|
interface ComboboxItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
294
|
-
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps):
|
|
295
|
+
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps): react1.JSX.Element;
|
|
295
296
|
//#endregion
|
|
296
297
|
//#region src/components/combobox/anatomy/item-text.d.ts
|
|
297
298
|
interface ComboboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
298
|
-
declare function ItemText$4(props: ComboboxItemTextProps):
|
|
299
|
+
declare function ItemText$4(props: ComboboxItemTextProps): react1.JSX.Element;
|
|
299
300
|
//#endregion
|
|
300
301
|
//#region src/components/combobox/anatomy/label.d.ts
|
|
301
302
|
interface ComboboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
302
|
-
declare function Label$10(props: ComboboxLabelProps):
|
|
303
|
+
declare function Label$10(props: ComboboxLabelProps): react1.JSX.Element;
|
|
303
304
|
//#endregion
|
|
304
305
|
//#region src/components/combobox/anatomy/positioner.d.ts
|
|
305
306
|
interface ComboboxPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
306
|
-
declare function Positioner$6(props: ComboboxPositionerProps):
|
|
307
|
+
declare function Positioner$6(props: ComboboxPositionerProps): react1.JSX.Element;
|
|
307
308
|
//#endregion
|
|
308
309
|
//#region src/components/combobox/anatomy/root.d.ts
|
|
309
310
|
interface ComboboxRootProps extends Omit<Props$4, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
310
|
-
declare function Root$17(props: ComboboxRootProps):
|
|
311
|
+
declare function Root$17(props: ComboboxRootProps): react_jsx_runtime0.JSX.Element;
|
|
311
312
|
//#endregion
|
|
312
313
|
//#region src/components/combobox/modules/provider.d.ts
|
|
313
314
|
declare function useCombobox(props?: Omit<Props$4, 'id'>): Api$4<PropTypes>;
|
|
@@ -322,11 +323,11 @@ declare function RootContext$20(props: ComboboxRootContextProps): ReactNode;
|
|
|
322
323
|
interface ComboboxRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {
|
|
323
324
|
value: ReturnType<typeof useCombobox>;
|
|
324
325
|
}
|
|
325
|
-
declare function RootProvider$16(props: ComboboxRootProviderProps):
|
|
326
|
+
declare function RootProvider$16(props: ComboboxRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
326
327
|
//#endregion
|
|
327
328
|
//#region src/components/combobox/anatomy/trigger.d.ts
|
|
328
329
|
interface ComboboxTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
329
|
-
declare function Trigger$9(props: ComboboxTriggerProps):
|
|
330
|
+
declare function Trigger$9(props: ComboboxTriggerProps): react1.JSX.Element;
|
|
330
331
|
//#endregion
|
|
331
332
|
//#region src/components/combobox/modules/anatomy.d.ts
|
|
332
333
|
declare const Combobox: typeof Root$17 & {
|
|
@@ -348,47 +349,47 @@ declare const Combobox: typeof Root$17 & {
|
|
|
348
349
|
//#endregion
|
|
349
350
|
//#region src/components/date-picker/anatomy/content.d.ts
|
|
350
351
|
interface DatePickerContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
351
|
-
declare function Content$8(props: DatePickerContentProps):
|
|
352
|
+
declare function Content$8(props: DatePickerContentProps): react1.JSX.Element;
|
|
352
353
|
//#endregion
|
|
353
354
|
//#region src/components/date-picker/anatomy/control.d.ts
|
|
354
355
|
interface DatePickerControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
355
|
-
declare function Control$6(props: DatePickerControlProps):
|
|
356
|
+
declare function Control$6(props: DatePickerControlProps): react1.JSX.Element;
|
|
356
357
|
//#endregion
|
|
357
358
|
//#region src/components/date-picker/anatomy/input.d.ts
|
|
358
359
|
interface DatePickerInputProps extends InputProps, PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
359
|
-
declare function Input$2(props: DatePickerInputProps):
|
|
360
|
+
declare function Input$2(props: DatePickerInputProps): react1.JSX.Element;
|
|
360
361
|
//#endregion
|
|
361
362
|
//#region src/components/date-picker/anatomy/label.d.ts
|
|
362
363
|
interface DatePickerLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
363
|
-
declare function Label$9(props: DatePickerLabelProps):
|
|
364
|
+
declare function Label$9(props: DatePickerLabelProps): react1.JSX.Element;
|
|
364
365
|
//#endregion
|
|
365
366
|
//#region src/components/date-picker/anatomy/month-select.d.ts
|
|
366
367
|
interface DatePickerMonthSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
367
|
-
declare function MonthSelect(props: DatePickerMonthSelectProps):
|
|
368
|
+
declare function MonthSelect(props: DatePickerMonthSelectProps): react1.JSX.Element;
|
|
368
369
|
//#endregion
|
|
369
370
|
//#region src/components/date-picker/anatomy/next-trigger.d.ts
|
|
370
371
|
interface DatePickerNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
371
|
-
declare function NextTrigger$2(props: DatePickerNextTriggerProps):
|
|
372
|
+
declare function NextTrigger$2(props: DatePickerNextTriggerProps): react1.JSX.Element;
|
|
372
373
|
//#endregion
|
|
373
374
|
//#region src/components/date-picker/anatomy/positioner.d.ts
|
|
374
375
|
interface DatePickerPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
375
|
-
declare function Positioner$5(props: DatePickerPositionerProps):
|
|
376
|
+
declare function Positioner$5(props: DatePickerPositionerProps): react1.JSX.Element;
|
|
376
377
|
//#endregion
|
|
377
378
|
//#region src/components/date-picker/anatomy/preset-trigger.d.ts
|
|
378
379
|
interface DatePickerPresetTriggerProps extends PresetTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
379
|
-
declare function PresetTrigger(props: DatePickerPresetTriggerProps):
|
|
380
|
+
declare function PresetTrigger(props: DatePickerPresetTriggerProps): react1.JSX.Element;
|
|
380
381
|
//#endregion
|
|
381
382
|
//#region src/components/date-picker/anatomy/prev-trigger.d.ts
|
|
382
383
|
interface DatePickerPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
383
|
-
declare function PrevTrigger$2(props: DatePickerPrevTriggerProps):
|
|
384
|
+
declare function PrevTrigger$2(props: DatePickerPrevTriggerProps): react1.JSX.Element;
|
|
384
385
|
//#endregion
|
|
385
386
|
//#region src/components/date-picker/anatomy/range-text.d.ts
|
|
386
387
|
interface DatePickerRangeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
387
|
-
declare function RangeText(props: DatePickerRangeTextProps):
|
|
388
|
+
declare function RangeText(props: DatePickerRangeTextProps): react1.JSX.Element;
|
|
388
389
|
//#endregion
|
|
389
390
|
//#region src/components/date-picker/anatomy/root.d.ts
|
|
390
391
|
interface DatePickerRootProps extends Omit<Props$5, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
391
|
-
declare function Root$16(props: DatePickerRootProps):
|
|
392
|
+
declare function Root$16(props: DatePickerRootProps): react_jsx_runtime0.JSX.Element;
|
|
392
393
|
//#endregion
|
|
393
394
|
//#region src/components/date-picker/modules/provider.d.ts
|
|
394
395
|
declare function useDatePicker(props?: Omit<Props$5, 'id'>): Api$5<PropTypes>;
|
|
@@ -403,58 +404,58 @@ declare function RootContext$19(props: DatePickerRootContextProps): ReactNode;
|
|
|
403
404
|
interface DatePickerRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
404
405
|
value: ReturnType<typeof useDatePicker>;
|
|
405
406
|
}
|
|
406
|
-
declare function RootProvider$15(props: DatePickerRootProviderProps):
|
|
407
|
+
declare function RootProvider$15(props: DatePickerRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
407
408
|
//#endregion
|
|
408
409
|
//#region src/components/date-picker/anatomy/table.d.ts
|
|
409
410
|
interface DatePickerTableProps extends PropsWithElement<'table'>, HTMLAttributes<'table'> {}
|
|
410
|
-
declare function Table(props: DatePickerTableProps):
|
|
411
|
+
declare function Table(props: DatePickerTableProps): react1.JSX.Element;
|
|
411
412
|
//#endregion
|
|
412
413
|
//#region src/components/date-picker/anatomy/table-body.d.ts
|
|
413
414
|
interface DatePickerTableBodyProps extends PropsWithElement<'tbody'>, HTMLAttributes<'tbody'> {}
|
|
414
|
-
declare function TableBody(props: DatePickerTableBodyProps):
|
|
415
|
+
declare function TableBody(props: DatePickerTableBodyProps): react1.JSX.Element;
|
|
415
416
|
//#endregion
|
|
416
417
|
//#region src/internal/union.d.ts
|
|
417
418
|
type Union<T, U> = { [K in keyof T]: K extends keyof U ? U[K] | T[K] : T[K] } & Omit<U, keyof T>;
|
|
418
419
|
//#endregion
|
|
419
420
|
//#region src/components/date-picker/anatomy/table-cell.d.ts
|
|
420
421
|
interface DatePickerTableCellProps extends Union<TableCellProps, DayTableCellProps>, PropsWithElement<'td'>, HTMLAttributes<'td'> {}
|
|
421
|
-
declare function TableCell(props: DatePickerTableCellProps):
|
|
422
|
+
declare function TableCell(props: DatePickerTableCellProps): react_jsx_runtime0.JSX.Element;
|
|
422
423
|
//#endregion
|
|
423
424
|
//#region src/components/date-picker/anatomy/table-cell-trigger.d.ts
|
|
424
425
|
interface DatePickerTableCellTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
425
|
-
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps):
|
|
426
|
+
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps): react1.JSX.Element;
|
|
426
427
|
//#endregion
|
|
427
428
|
//#region src/components/date-picker/anatomy/table-head.d.ts
|
|
428
429
|
interface DatePickerTableHeadProps extends PropsWithElement<'thead'>, HTMLAttributes<'thead'> {}
|
|
429
|
-
declare function TableHead(props: DatePickerTableHeadProps):
|
|
430
|
+
declare function TableHead(props: DatePickerTableHeadProps): react1.JSX.Element;
|
|
430
431
|
//#endregion
|
|
431
432
|
//#region src/components/date-picker/anatomy/table-header.d.ts
|
|
432
433
|
interface DatePickerTableHeaderProps extends PropsWithElement<'th'>, HTMLAttributes<'th'> {}
|
|
433
|
-
declare function TableHeader(props: DatePickerTableHeaderProps):
|
|
434
|
+
declare function TableHeader(props: DatePickerTableHeaderProps): react1.JSX.Element;
|
|
434
435
|
//#endregion
|
|
435
436
|
//#region src/components/date-picker/anatomy/table-row.d.ts
|
|
436
437
|
interface DatePickerTableRowProps extends PropsWithElement<'tr'>, HTMLAttributes<'tr'> {}
|
|
437
|
-
declare function TableRow(props: DatePickerTableRowProps):
|
|
438
|
+
declare function TableRow(props: DatePickerTableRowProps): react1.JSX.Element;
|
|
438
439
|
//#endregion
|
|
439
440
|
//#region src/components/date-picker/anatomy/trigger.d.ts
|
|
440
441
|
interface DatePickerTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
441
|
-
declare function Trigger$8(props: DatePickerTriggerProps):
|
|
442
|
+
declare function Trigger$8(props: DatePickerTriggerProps): react1.JSX.Element;
|
|
442
443
|
//#endregion
|
|
443
444
|
//#region src/components/date-picker/anatomy/view.d.ts
|
|
444
445
|
interface DatePickerViewProps extends ViewProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
445
|
-
declare function View(props: DatePickerViewProps):
|
|
446
|
+
declare function View(props: DatePickerViewProps): react_jsx_runtime0.JSX.Element;
|
|
446
447
|
//#endregion
|
|
447
448
|
//#region src/components/date-picker/anatomy/view-control.d.ts
|
|
448
449
|
interface DatePickerViewControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
449
|
-
declare function ViewControl(props: DatePickerViewControlProps):
|
|
450
|
+
declare function ViewControl(props: DatePickerViewControlProps): react1.JSX.Element;
|
|
450
451
|
//#endregion
|
|
451
452
|
//#region src/components/date-picker/anatomy/view-trigger.d.ts
|
|
452
453
|
interface DatePickerViewTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
453
|
-
declare function ViewTrigger(props: DatePickerViewTriggerProps):
|
|
454
|
+
declare function ViewTrigger(props: DatePickerViewTriggerProps): react1.JSX.Element;
|
|
454
455
|
//#endregion
|
|
455
456
|
//#region src/components/date-picker/anatomy/year-select.d.ts
|
|
456
457
|
interface DatePickerYearSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
457
|
-
declare function YearSelect(props: DatePickerYearSelectProps):
|
|
458
|
+
declare function YearSelect(props: DatePickerYearSelectProps): react1.JSX.Element;
|
|
458
459
|
//#endregion
|
|
459
460
|
//#region src/components/date-picker/modules/anatomy.d.ts
|
|
460
461
|
declare const DatePicker: typeof Root$16 & {
|
|
@@ -486,27 +487,27 @@ declare const DatePicker: typeof Root$16 & {
|
|
|
486
487
|
//#endregion
|
|
487
488
|
//#region src/components/dialog/anatomy/backdrop.d.ts
|
|
488
489
|
interface DialogBackdropProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
489
|
-
declare function Backdrop(props: DialogBackdropProps):
|
|
490
|
+
declare function Backdrop(props: DialogBackdropProps): react1.JSX.Element;
|
|
490
491
|
//#endregion
|
|
491
492
|
//#region src/components/dialog/anatomy/close-trigger.d.ts
|
|
492
493
|
interface DialogCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
493
|
-
declare function CloseTrigger$3(props: DialogCloseTriggerProps):
|
|
494
|
+
declare function CloseTrigger$3(props: DialogCloseTriggerProps): react1.JSX.Element;
|
|
494
495
|
//#endregion
|
|
495
496
|
//#region src/components/dialog/anatomy/content.d.ts
|
|
496
497
|
interface DialogContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
497
|
-
declare function Content$7(props: DialogContentProps):
|
|
498
|
+
declare function Content$7(props: DialogContentProps): react1.JSX.Element;
|
|
498
499
|
//#endregion
|
|
499
500
|
//#region src/components/dialog/anatomy/description.d.ts
|
|
500
501
|
interface DialogDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
501
|
-
declare function Description$2(props: DialogDescriptionProps):
|
|
502
|
+
declare function Description$2(props: DialogDescriptionProps): react1.JSX.Element;
|
|
502
503
|
//#endregion
|
|
503
504
|
//#region src/components/dialog/anatomy/positioner.d.ts
|
|
504
505
|
interface DialogPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
505
|
-
declare function Positioner$4(props: DialogPositionerProps):
|
|
506
|
+
declare function Positioner$4(props: DialogPositionerProps): react1.JSX.Element;
|
|
506
507
|
//#endregion
|
|
507
508
|
//#region src/components/dialog/anatomy/root.d.ts
|
|
508
509
|
interface DialogRootProps extends PropsWithChildren, Omit<Props$6, 'id'> {}
|
|
509
|
-
declare function Root$15(props: DialogRootProps):
|
|
510
|
+
declare function Root$15(props: DialogRootProps): react_jsx_runtime0.JSX.Element;
|
|
510
511
|
//#endregion
|
|
511
512
|
//#region src/components/dialog/modules/provider.d.ts
|
|
512
513
|
declare function useDialog(props?: Omit<Props$6, 'id'>): Api$6<PropTypes>;
|
|
@@ -521,15 +522,15 @@ declare function RootContext$18(props: DialogRootContextProps): ReactNode;
|
|
|
521
522
|
interface DialogRootProviderProps extends PropsWithChildren {
|
|
522
523
|
value: ReturnType<typeof useDialog>;
|
|
523
524
|
}
|
|
524
|
-
declare function RootProvider$14(props: DialogRootProviderProps):
|
|
525
|
+
declare function RootProvider$14(props: DialogRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
525
526
|
//#endregion
|
|
526
527
|
//#region src/components/dialog/anatomy/title.d.ts
|
|
527
528
|
interface DialogTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
528
|
-
declare function Title$3(props: DialogTitleProps):
|
|
529
|
+
declare function Title$3(props: DialogTitleProps): react1.JSX.Element;
|
|
529
530
|
//#endregion
|
|
530
531
|
//#region src/components/dialog/anatomy/trigger.d.ts
|
|
531
532
|
interface DialogTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
532
|
-
declare function Trigger$7(props: DialogTriggerProps):
|
|
533
|
+
declare function Trigger$7(props: DialogTriggerProps): react1.JSX.Element;
|
|
533
534
|
//#endregion
|
|
534
535
|
//#region src/components/dialog/modules/anatomy.d.ts
|
|
535
536
|
declare const Dialog: typeof Root$15 & {
|
|
@@ -546,43 +547,43 @@ declare const Dialog: typeof Root$15 & {
|
|
|
546
547
|
//#endregion
|
|
547
548
|
//#region src/components/file-upload/anatomy/clear-trigger.d.ts
|
|
548
549
|
interface FileUploadClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
549
|
-
declare function ClearTrigger$1(props: FileUploadClearTriggerProps):
|
|
550
|
+
declare function ClearTrigger$1(props: FileUploadClearTriggerProps): react1.JSX.Element;
|
|
550
551
|
//#endregion
|
|
551
552
|
//#region src/components/file-upload/anatomy/dropzone.d.ts
|
|
552
553
|
interface FileUploadDropzoneProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
553
|
-
declare function Dropzone(props: FileUploadDropzoneProps):
|
|
554
|
+
declare function Dropzone(props: FileUploadDropzoneProps): react1.JSX.Element;
|
|
554
555
|
//#endregion
|
|
555
556
|
//#region src/components/file-upload/anatomy/hidden-input.d.ts
|
|
556
557
|
interface FileUploadHiddenInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
557
|
-
declare function HiddenInput$4(props: FileUploadHiddenInputProps):
|
|
558
|
+
declare function HiddenInput$4(props: FileUploadHiddenInputProps): react1.JSX.Element;
|
|
558
559
|
//#endregion
|
|
559
560
|
//#region src/components/file-upload/anatomy/item.d.ts
|
|
560
561
|
interface FileUploadItemProps extends ItemProps$3, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
561
|
-
declare function Item$9(props: FileUploadItemProps):
|
|
562
|
+
declare function Item$9(props: FileUploadItemProps): react_jsx_runtime0.JSX.Element;
|
|
562
563
|
//#endregion
|
|
563
564
|
//#region src/components/file-upload/anatomy/item-delete-trigger.d.ts
|
|
564
565
|
interface FileUploadItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
565
|
-
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps):
|
|
566
|
+
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps): react1.JSX.Element;
|
|
566
567
|
//#endregion
|
|
567
568
|
//#region src/components/file-upload/anatomy/item-group.d.ts
|
|
568
569
|
interface FileUploadItemGroupProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
569
|
-
declare function ItemGroup$2(props: FileUploadItemGroupProps):
|
|
570
|
+
declare function ItemGroup$2(props: FileUploadItemGroupProps): react1.JSX.Element;
|
|
570
571
|
//#endregion
|
|
571
572
|
//#region src/components/file-upload/anatomy/item-name.d.ts
|
|
572
573
|
interface FileUploadItemNameProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
573
|
-
declare function ItemName(props: FileUploadItemNameProps):
|
|
574
|
+
declare function ItemName(props: FileUploadItemNameProps): react1.JSX.Element;
|
|
574
575
|
//#endregion
|
|
575
576
|
//#region src/components/file-upload/anatomy/item-size-text.d.ts
|
|
576
577
|
interface FileUploadItemSizeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
577
|
-
declare function ItemSizeText(props: FileUploadItemSizeTextProps):
|
|
578
|
+
declare function ItemSizeText(props: FileUploadItemSizeTextProps): react1.JSX.Element;
|
|
578
579
|
//#endregion
|
|
579
580
|
//#region src/components/file-upload/anatomy/label.d.ts
|
|
580
581
|
interface FileUploadLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
581
|
-
declare function Label$8(props: FileUploadLabelProps):
|
|
582
|
+
declare function Label$8(props: FileUploadLabelProps): react1.JSX.Element;
|
|
582
583
|
//#endregion
|
|
583
584
|
//#region src/components/file-upload/anatomy/root.d.ts
|
|
584
585
|
interface FileUploadRootProps extends Omit<Props$7, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {}
|
|
585
|
-
declare function Root$14(props: FileUploadRootProps):
|
|
586
|
+
declare function Root$14(props: FileUploadRootProps): react_jsx_runtime0.JSX.Element;
|
|
586
587
|
//#endregion
|
|
587
588
|
//#region src/components/file-upload/modules/provider.d.ts
|
|
588
589
|
declare function useFileUpload(props?: Omit<Props$7, 'id'>): Api$7<PropTypes>;
|
|
@@ -597,11 +598,11 @@ declare function RootContext$17(props: FileUploadRootContextProps): ReactNode;
|
|
|
597
598
|
interface FileUploadRootProviderProps extends PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {
|
|
598
599
|
value: ReturnType<typeof useFileUpload>;
|
|
599
600
|
}
|
|
600
|
-
declare function RootProvider$13(props: FileUploadRootProviderProps):
|
|
601
|
+
declare function RootProvider$13(props: FileUploadRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
601
602
|
//#endregion
|
|
602
603
|
//#region src/components/file-upload/anatomy/trigger.d.ts
|
|
603
604
|
interface FileUploadTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
604
|
-
declare function Trigger$6(props: FileUploadTriggerProps):
|
|
605
|
+
declare function Trigger$6(props: FileUploadTriggerProps): react1.JSX.Element;
|
|
605
606
|
//#endregion
|
|
606
607
|
//#region src/components/file-upload/modules/anatomy.d.ts
|
|
607
608
|
declare const FileUpload: typeof Root$14 & {
|
|
@@ -621,39 +622,39 @@ declare const FileUpload: typeof Root$14 & {
|
|
|
621
622
|
//#endregion
|
|
622
623
|
//#region src/components/floating-panel/anatomy/body.d.ts
|
|
623
624
|
interface FloatingPanelBodyProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
624
|
-
declare function Body(props: FloatingPanelBodyProps):
|
|
625
|
+
declare function Body(props: FloatingPanelBodyProps): react1.JSX.Element;
|
|
625
626
|
//#endregion
|
|
626
627
|
//#region src/components/floating-panel/anatomy/close-trigger.d.ts
|
|
627
628
|
interface FloatingPanelCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
628
|
-
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps):
|
|
629
|
+
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps): react1.JSX.Element;
|
|
629
630
|
//#endregion
|
|
630
631
|
//#region src/components/floating-panel/anatomy/content.d.ts
|
|
631
632
|
interface FloatingPanelContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
632
|
-
declare function Content$6(props: FloatingPanelContentProps):
|
|
633
|
+
declare function Content$6(props: FloatingPanelContentProps): react1.JSX.Element;
|
|
633
634
|
//#endregion
|
|
634
635
|
//#region src/components/floating-panel/anatomy/control.d.ts
|
|
635
636
|
interface FloatingPanelControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
636
|
-
declare function Control$5(props: FloatingPanelControlProps):
|
|
637
|
+
declare function Control$5(props: FloatingPanelControlProps): react1.JSX.Element;
|
|
637
638
|
//#endregion
|
|
638
639
|
//#region src/components/floating-panel/anatomy/drag-trigger.d.ts
|
|
639
640
|
interface FloatingPanelDragTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
640
|
-
declare function DragTrigger(props: FloatingPanelDragTriggerProps):
|
|
641
|
+
declare function DragTrigger(props: FloatingPanelDragTriggerProps): react1.JSX.Element;
|
|
641
642
|
//#endregion
|
|
642
643
|
//#region src/components/floating-panel/anatomy/header.d.ts
|
|
643
644
|
interface FloatingPanelHeaderProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
644
|
-
declare function Header(props: FloatingPanelHeaderProps):
|
|
645
|
+
declare function Header(props: FloatingPanelHeaderProps): react1.JSX.Element;
|
|
645
646
|
//#endregion
|
|
646
647
|
//#region src/components/floating-panel/anatomy/positioner.d.ts
|
|
647
648
|
interface FloatingPanelPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
648
|
-
declare function Positioner$3(props: FloatingPanelPositionerProps):
|
|
649
|
+
declare function Positioner$3(props: FloatingPanelPositionerProps): react1.JSX.Element;
|
|
649
650
|
//#endregion
|
|
650
651
|
//#region src/components/floating-panel/anatomy/resize-trigger.d.ts
|
|
651
652
|
interface FloatingPanelResizeTriggerProps extends ResizeTriggerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
652
|
-
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps):
|
|
653
|
+
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps): react1.JSX.Element;
|
|
653
654
|
//#endregion
|
|
654
655
|
//#region src/components/floating-panel/anatomy/root.d.ts
|
|
655
656
|
interface FloatingPanelRootProps extends PropsWithChildren, Omit<Props$8, 'id'> {}
|
|
656
|
-
declare function Root$13(props: FloatingPanelRootProps):
|
|
657
|
+
declare function Root$13(props: FloatingPanelRootProps): react_jsx_runtime0.JSX.Element;
|
|
657
658
|
//#endregion
|
|
658
659
|
//#region src/components/floating-panel/modules/provider.d.ts
|
|
659
660
|
declare function useFloatingPanel(props?: Omit<Props$8, 'id'>): Api$8<PropTypes>;
|
|
@@ -668,19 +669,19 @@ declare function RootContext$16(props: FloatingPanelRootContextProps): ReactNode
|
|
|
668
669
|
interface FloatingPanelRootProviderProps extends PropsWithChildren {
|
|
669
670
|
value: ReturnType<typeof useFloatingPanel>;
|
|
670
671
|
}
|
|
671
|
-
declare function RootProvider$12(props: FloatingPanelRootProviderProps):
|
|
672
|
+
declare function RootProvider$12(props: FloatingPanelRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
672
673
|
//#endregion
|
|
673
674
|
//#region src/components/floating-panel/anatomy/stage-trigger.d.ts
|
|
674
675
|
interface FloatingPanelStageTriggerProps extends StageTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
675
|
-
declare function StageTrigger(props: FloatingPanelStageTriggerProps):
|
|
676
|
+
declare function StageTrigger(props: FloatingPanelStageTriggerProps): react1.JSX.Element;
|
|
676
677
|
//#endregion
|
|
677
678
|
//#region src/components/floating-panel/anatomy/title.d.ts
|
|
678
679
|
interface FloatingPanelTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
679
|
-
declare function Title$2(props: FloatingPanelTitleProps):
|
|
680
|
+
declare function Title$2(props: FloatingPanelTitleProps): react1.JSX.Element;
|
|
680
681
|
//#endregion
|
|
681
682
|
//#region src/components/floating-panel/anatomy/trigger.d.ts
|
|
682
683
|
interface FloatingPanelTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
683
|
-
declare function Trigger$5(props: FloatingPanelTriggerProps):
|
|
684
|
+
declare function Trigger$5(props: FloatingPanelTriggerProps): react1.JSX.Element;
|
|
684
685
|
//#endregion
|
|
685
686
|
//#region src/components/floating-panel/modules/anatomy.d.ts
|
|
686
687
|
declare const FloatingPanel: typeof Root$13 & {
|
|
@@ -701,31 +702,31 @@ declare const FloatingPanel: typeof Root$13 & {
|
|
|
701
702
|
//#endregion
|
|
702
703
|
//#region src/components/listbox/anatomy/root.d.ts
|
|
703
704
|
interface ListboxRootProps extends Omit<Props$9, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
704
|
-
declare function Root$12(props: ListboxRootProps):
|
|
705
|
+
declare function Root$12(props: ListboxRootProps): react_jsx_runtime0.JSX.Element;
|
|
705
706
|
//#endregion
|
|
706
707
|
//#region src/components/listbox/anatomy/item-group.d.ts
|
|
707
708
|
interface ListboxItemGroupProps extends Omit<ItemGroupProps$1, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id'> {}
|
|
708
|
-
declare function ItemGroup$1(props: ListboxItemGroupProps):
|
|
709
|
+
declare function ItemGroup$1(props: ListboxItemGroupProps): react_jsx_runtime0.JSX.Element;
|
|
709
710
|
//#endregion
|
|
710
711
|
//#region src/components/listbox/anatomy/item-group-label.d.ts
|
|
711
712
|
interface ListboxItemGroupLabelProps extends Omit<ItemGroupLabelProps$1, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
712
|
-
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps):
|
|
713
|
+
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react1.JSX.Element;
|
|
713
714
|
//#endregion
|
|
714
715
|
//#region src/components/listbox/anatomy/item.d.ts
|
|
715
716
|
interface ListboxItemProps extends ItemProps$4, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
716
|
-
declare function Item$8(props: ListboxItemProps):
|
|
717
|
+
declare function Item$8(props: ListboxItemProps): react_jsx_runtime0.JSX.Element;
|
|
717
718
|
//#endregion
|
|
718
719
|
//#region src/components/listbox/anatomy/input.d.ts
|
|
719
720
|
interface ListboxInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
720
|
-
declare function Input$1(props: ListboxInputProps):
|
|
721
|
+
declare function Input$1(props: ListboxInputProps): react1.JSX.Element;
|
|
721
722
|
//#endregion
|
|
722
723
|
//#region src/components/listbox/anatomy/item-indicator.d.ts
|
|
723
724
|
interface ListboxItemIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
724
|
-
declare function ItemIndicator$1(props: ListboxItemIndicatorProps):
|
|
725
|
+
declare function ItemIndicator$1(props: ListboxItemIndicatorProps): react1.JSX.Element;
|
|
725
726
|
//#endregion
|
|
726
727
|
//#region src/components/listbox/anatomy/item-text.d.ts
|
|
727
728
|
interface ListboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
728
|
-
declare function ItemText$3(props: ListboxItemTextProps):
|
|
729
|
+
declare function ItemText$3(props: ListboxItemTextProps): react1.JSX.Element;
|
|
729
730
|
//#endregion
|
|
730
731
|
//#region src/components/listbox/modules/provider.d.ts
|
|
731
732
|
declare function useListbox(props: Omit<Props$9, 'id'>): Api$9<PropTypes>;
|
|
@@ -740,15 +741,15 @@ declare function RootContext$15(props: ListboxRootContextProps): ReactNode;
|
|
|
740
741
|
interface ListboxRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {
|
|
741
742
|
value: ReturnType<typeof useListbox>;
|
|
742
743
|
}
|
|
743
|
-
declare function RootProvider$11(props: ListboxRootProviderProps):
|
|
744
|
+
declare function RootProvider$11(props: ListboxRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
744
745
|
//#endregion
|
|
745
746
|
//#region src/components/listbox/anatomy/label.d.ts
|
|
746
747
|
interface ListboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
747
|
-
declare function Label$7(props: ListboxLabelProps):
|
|
748
|
+
declare function Label$7(props: ListboxLabelProps): react1.JSX.Element;
|
|
748
749
|
//#endregion
|
|
749
750
|
//#region src/components/listbox/anatomy/content.d.ts
|
|
750
751
|
interface ListboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
751
|
-
declare function Content$5(props: ListboxContentProps):
|
|
752
|
+
declare function Content$5(props: ListboxContentProps): react1.JSX.Element;
|
|
752
753
|
//#endregion
|
|
753
754
|
//#region src/components/listbox/modules/anatomy.d.ts
|
|
754
755
|
declare const Listbox: typeof Root$12 & {
|
|
@@ -766,55 +767,55 @@ declare const Listbox: typeof Root$12 & {
|
|
|
766
767
|
//#endregion
|
|
767
768
|
//#region src/components/menu/anatomy/arrow.d.ts
|
|
768
769
|
interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
769
|
-
declare function Arrow$2(props: MenuArrowProps):
|
|
770
|
+
declare function Arrow$2(props: MenuArrowProps): react1.JSX.Element;
|
|
770
771
|
//#endregion
|
|
771
772
|
//#region src/components/menu/anatomy/arrow-tip.d.ts
|
|
772
773
|
interface MenuArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
773
|
-
declare function ArrowTip$2(props: MenuArrowTipProps):
|
|
774
|
+
declare function ArrowTip$2(props: MenuArrowTipProps): react1.JSX.Element;
|
|
774
775
|
//#endregion
|
|
775
776
|
//#region src/components/menu/anatomy/content.d.ts
|
|
776
777
|
interface MenuContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
777
|
-
declare function Content$4(props: MenuContentProps):
|
|
778
|
+
declare function Content$4(props: MenuContentProps): react1.JSX.Element;
|
|
778
779
|
//#endregion
|
|
779
780
|
//#region src/components/menu/anatomy/context-trigger.d.ts
|
|
780
781
|
interface MenuContextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
781
|
-
declare function ContextTrigger(props: MenuContextTriggerProps):
|
|
782
|
+
declare function ContextTrigger(props: MenuContextTriggerProps): react1.JSX.Element;
|
|
782
783
|
//#endregion
|
|
783
784
|
//#region src/components/menu/anatomy/item.d.ts
|
|
784
785
|
interface MenuItemProps extends ItemProps$5, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
785
|
-
declare function Item$7(props: MenuItemProps):
|
|
786
|
+
declare function Item$7(props: MenuItemProps): react_jsx_runtime0.JSX.Element;
|
|
786
787
|
//#endregion
|
|
787
788
|
//#region src/components/menu/anatomy/item-group.d.ts
|
|
788
789
|
interface MenuItemGroupProps extends Omit<ItemGroupProps$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
789
|
-
declare function ItemGroup(props: MenuItemGroupProps):
|
|
790
|
+
declare function ItemGroup(props: MenuItemGroupProps): react_jsx_runtime0.JSX.Element;
|
|
790
791
|
//#endregion
|
|
791
792
|
//#region src/components/menu/anatomy/item-group-label.d.ts
|
|
792
793
|
interface MenuItemGroupLabelProps extends Omit<ItemGroupLabelProps$2, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
793
|
-
declare function ItemGroupLabel(props: MenuItemGroupLabelProps):
|
|
794
|
+
declare function ItemGroupLabel(props: MenuItemGroupLabelProps): react1.JSX.Element;
|
|
794
795
|
//#endregion
|
|
795
796
|
//#region src/components/menu/anatomy/option-item.d.ts
|
|
796
797
|
interface MenuOptionItemProps extends OptionItemProps, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
797
|
-
declare function OptionItem(props: MenuOptionItemProps):
|
|
798
|
+
declare function OptionItem(props: MenuOptionItemProps): react_jsx_runtime0.JSX.Element;
|
|
798
799
|
//#endregion
|
|
799
800
|
//#region src/components/menu/anatomy/item-text.d.ts
|
|
800
801
|
interface MenuItemTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
801
|
-
declare function ItemText$2(props: MenuItemTextProps):
|
|
802
|
+
declare function ItemText$2(props: MenuItemTextProps): react1.JSX.Element;
|
|
802
803
|
//#endregion
|
|
803
804
|
//#region src/components/menu/anatomy/item-indicator.d.ts
|
|
804
805
|
interface MenuItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
805
|
-
declare function ItemIndicator(props: MenuItemIndicatorProps):
|
|
806
|
+
declare function ItemIndicator(props: MenuItemIndicatorProps): react1.JSX.Element;
|
|
806
807
|
//#endregion
|
|
807
808
|
//#region src/components/menu/anatomy/indicator.d.ts
|
|
808
809
|
interface MenuIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
809
|
-
declare function Indicator$3(props: MenuIndicatorProps):
|
|
810
|
+
declare function Indicator$3(props: MenuIndicatorProps): react1.JSX.Element;
|
|
810
811
|
//#endregion
|
|
811
812
|
//#region src/components/menu/anatomy/positioner.d.ts
|
|
812
813
|
interface MenuPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
813
|
-
declare function Positioner$2(props: MenuPositionerProps):
|
|
814
|
+
declare function Positioner$2(props: MenuPositionerProps): react1.JSX.Element;
|
|
814
815
|
//#endregion
|
|
815
816
|
//#region src/components/menu/anatomy/root.d.ts
|
|
816
817
|
interface MenuRootProps extends Omit<Props$10, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div', 'id' | 'dir'>, 'onSelect' | 'aria-label'> {}
|
|
817
|
-
declare function Root$11(props: MenuRootProps):
|
|
818
|
+
declare function Root$11(props: MenuRootProps): react_jsx_runtime0.JSX.Element;
|
|
818
819
|
//#endregion
|
|
819
820
|
//#region src/components/menu/modules/provider.d.ts
|
|
820
821
|
declare function useMenu(props?: Omit<Props$10, 'id'>): Api$10<PropTypes> & {
|
|
@@ -831,19 +832,19 @@ declare function RootContext$14(props: MenuRootContextProps): ReactNode;
|
|
|
831
832
|
interface MenuRootProviderProps extends PropsWithChildren {
|
|
832
833
|
value: ReturnType<typeof useMenu>;
|
|
833
834
|
}
|
|
834
|
-
declare function RootProvider$10(props: MenuRootProviderProps):
|
|
835
|
+
declare function RootProvider$10(props: MenuRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
835
836
|
//#endregion
|
|
836
837
|
//#region src/components/menu/anatomy/separator.d.ts
|
|
837
838
|
interface MenuSeparatorProps extends PropsWithElement<'hr'>, HTMLAttributes<'hr', 'id' | 'dir' | 'children'> {}
|
|
838
|
-
declare function Separator$1(props: MenuSeparatorProps):
|
|
839
|
+
declare function Separator$1(props: MenuSeparatorProps): react1.JSX.Element;
|
|
839
840
|
//#endregion
|
|
840
841
|
//#region src/components/menu/anatomy/trigger.d.ts
|
|
841
842
|
interface MenuTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
842
|
-
declare function Trigger$4(props: MenuTriggerProps):
|
|
843
|
+
declare function Trigger$4(props: MenuTriggerProps): react1.JSX.Element;
|
|
843
844
|
//#endregion
|
|
844
845
|
//#region src/components/menu/anatomy/trigger-item.d.ts
|
|
845
846
|
interface MenuTriggerItemProps extends ItemProps$5, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
846
|
-
declare function TriggerItem(props: MenuTriggerItemProps):
|
|
847
|
+
declare function TriggerItem(props: MenuTriggerItemProps): react_jsx_runtime0.JSX.Element;
|
|
847
848
|
//#endregion
|
|
848
849
|
//#region src/components/menu/modules/anatomy.d.ts
|
|
849
850
|
declare const Menu: typeof Root$11 & {
|
|
@@ -875,43 +876,43 @@ interface NavigationRootProps extends PropsWithElement<'div'>, HTMLAttributes<'d
|
|
|
875
876
|
* */
|
|
876
877
|
layout?: 'bar' | 'rail' | 'sidebar';
|
|
877
878
|
}
|
|
878
|
-
declare function NavigationRoot(props: NavigationRootProps):
|
|
879
|
+
declare function NavigationRoot(props: NavigationRootProps): react_jsx_runtime0.JSX.Element;
|
|
879
880
|
//#endregion
|
|
880
881
|
//#region src/components/navigation/anatomy/menu.d.ts
|
|
881
882
|
interface NavigationMenuProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
882
|
-
declare function NavigationMenu(props: NavigationMenuProps):
|
|
883
|
+
declare function NavigationMenu(props: NavigationMenuProps): react1.JSX.Element;
|
|
883
884
|
//#endregion
|
|
884
885
|
//#region src/components/navigation/anatomy/header.d.ts
|
|
885
886
|
interface NavigationHeaderProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
886
|
-
declare function NavigationHeader(props: NavigationHeaderProps):
|
|
887
|
+
declare function NavigationHeader(props: NavigationHeaderProps): react1.JSX.Element;
|
|
887
888
|
//#endregion
|
|
888
889
|
//#region src/components/navigation/anatomy/content.d.ts
|
|
889
890
|
interface NavigationContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
890
|
-
declare function NavigationContent(props: NavigationContentProps):
|
|
891
|
+
declare function NavigationContent(props: NavigationContentProps): react1.JSX.Element;
|
|
891
892
|
//#endregion
|
|
892
893
|
//#region src/components/navigation/anatomy/footer.d.ts
|
|
893
894
|
interface NavigationFooterProps extends PropsWithElement<'footer'>, HTMLAttributes<'footer'> {}
|
|
894
|
-
declare function NavigationFooter(props: NavigationFooterProps):
|
|
895
|
+
declare function NavigationFooter(props: NavigationFooterProps): react1.JSX.Element;
|
|
895
896
|
//#endregion
|
|
896
897
|
//#region src/components/navigation/anatomy/group.d.ts
|
|
897
898
|
interface NavigationGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
898
|
-
declare function NavigationGroup(props: NavigationGroupProps):
|
|
899
|
+
declare function NavigationGroup(props: NavigationGroupProps): react1.JSX.Element;
|
|
899
900
|
//#endregion
|
|
900
901
|
//#region src/components/navigation/anatomy/label.d.ts
|
|
901
902
|
interface NavigationLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
902
|
-
declare function NavigationLabel(props: NavigationLabelProps):
|
|
903
|
+
declare function NavigationLabel(props: NavigationLabelProps): react1.JSX.Element;
|
|
903
904
|
//#endregion
|
|
904
905
|
//#region src/components/navigation/anatomy/trigger.d.ts
|
|
905
906
|
interface NavigationTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
906
|
-
declare function NavigationTrigger(props: NavigationTriggerProps):
|
|
907
|
+
declare function NavigationTrigger(props: NavigationTriggerProps): react1.JSX.Element;
|
|
907
908
|
//#endregion
|
|
908
909
|
//#region src/components/navigation/anatomy/trigger-anchor.d.ts
|
|
909
910
|
interface NavigationTriggerAnchorProps extends PropsWithElement<'a'>, HTMLAttributes<'a'> {}
|
|
910
|
-
declare function NavigationTriggerAnchor(props: NavigationTriggerAnchorProps):
|
|
911
|
+
declare function NavigationTriggerAnchor(props: NavigationTriggerAnchorProps): react1.JSX.Element;
|
|
911
912
|
//#endregion
|
|
912
913
|
//#region src/components/navigation/anatomy/trigger-text.d.ts
|
|
913
914
|
interface NavigationTriggerTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
914
|
-
declare function NavigationTriggerText(props: NavigationTriggerTextProps):
|
|
915
|
+
declare function NavigationTriggerText(props: NavigationTriggerTextProps): react1.JSX.Element;
|
|
915
916
|
//#endregion
|
|
916
917
|
//#region src/components/navigation/modules/anatomy.d.ts
|
|
917
918
|
declare const Navigation: typeof NavigationRoot & {
|
|
@@ -928,27 +929,27 @@ declare const Navigation: typeof NavigationRoot & {
|
|
|
928
929
|
//#endregion
|
|
929
930
|
//#region src/components/pagination/anatomy/ellipsis.d.ts
|
|
930
931
|
interface PaginationEllipsisProps extends EllipsisProps, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
931
|
-
declare function Ellipsis(props: PaginationEllipsisProps):
|
|
932
|
+
declare function Ellipsis(props: PaginationEllipsisProps): react1.JSX.Element;
|
|
932
933
|
//#endregion
|
|
933
934
|
//#region src/components/pagination/anatomy/first-trigger.d.ts
|
|
934
935
|
interface PaginationFirstTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
935
|
-
declare function FirstTrigger(props: PaginationFirstTriggerProps):
|
|
936
|
+
declare function FirstTrigger(props: PaginationFirstTriggerProps): react1.JSX.Element;
|
|
936
937
|
//#endregion
|
|
937
938
|
//#region src/components/pagination/anatomy/item.d.ts
|
|
938
939
|
interface PaginationItemProps extends ItemProps$6, PropsWithElement<'a'>, HTMLAttributes<'a', 'type'> {}
|
|
939
|
-
declare function Item$6(props: PaginationItemProps):
|
|
940
|
+
declare function Item$6(props: PaginationItemProps): react1.JSX.Element;
|
|
940
941
|
//#endregion
|
|
941
942
|
//#region src/components/pagination/anatomy/last-trigger.d.ts
|
|
942
943
|
interface PaginationLastTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
943
|
-
declare function LastTrigger(props: PaginationLastTriggerProps):
|
|
944
|
+
declare function LastTrigger(props: PaginationLastTriggerProps): react1.JSX.Element;
|
|
944
945
|
//#endregion
|
|
945
946
|
//#region src/components/pagination/anatomy/next-trigger.d.ts
|
|
946
947
|
interface PaginationNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
947
|
-
declare function NextTrigger$1(props: PaginationNextTriggerProps):
|
|
948
|
+
declare function NextTrigger$1(props: PaginationNextTriggerProps): react1.JSX.Element;
|
|
948
949
|
//#endregion
|
|
949
950
|
//#region src/components/pagination/anatomy/prev-trigger.d.ts
|
|
950
951
|
interface PaginationPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
951
|
-
declare function PrevTrigger$1(props: PaginationPrevTriggerProps):
|
|
952
|
+
declare function PrevTrigger$1(props: PaginationPrevTriggerProps): react1.JSX.Element;
|
|
952
953
|
//#endregion
|
|
953
954
|
//#region src/components/pagination/modules/provider.d.ts
|
|
954
955
|
declare function usePagination(props?: Omit<Props$11, 'id'>): Api$11<PropTypes>;
|
|
@@ -963,11 +964,11 @@ declare function RootContext$13(props: PaginationRootContextProps): ReactNode;
|
|
|
963
964
|
interface PaginationRootProviderProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav', 'id' | 'dir'> {
|
|
964
965
|
value: ReturnType<typeof usePagination>;
|
|
965
966
|
}
|
|
966
|
-
declare function PaginationRootProvider(props: PaginationRootProviderProps):
|
|
967
|
+
declare function PaginationRootProvider(props: PaginationRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
967
968
|
//#endregion
|
|
968
969
|
//#region src/components/pagination/anatomy/root.d.ts
|
|
969
970
|
interface PaginationRootProps extends Omit<Props$11, 'id'>, PropsWithElement<'nav'>, HTMLAttributes<'nav', 'id' | 'dir'> {}
|
|
970
|
-
declare function PaginationRoot(props: PaginationRootProps):
|
|
971
|
+
declare function PaginationRoot(props: PaginationRootProps): react_jsx_runtime0.JSX.Element;
|
|
971
972
|
//#endregion
|
|
972
973
|
//#region src/components/pagination/modules/anatomy.d.ts
|
|
973
974
|
declare const Pagination: typeof PaginationRoot & {
|
|
@@ -983,27 +984,27 @@ declare const Pagination: typeof PaginationRoot & {
|
|
|
983
984
|
//#endregion
|
|
984
985
|
//#region src/components/popover/anatomy/anchor.d.ts
|
|
985
986
|
interface PopoverAnchorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
986
|
-
declare function Anchor(props: PopoverAnchorProps):
|
|
987
|
+
declare function Anchor(props: PopoverAnchorProps): react1.JSX.Element;
|
|
987
988
|
//#endregion
|
|
988
989
|
//#region src/components/popover/anatomy/close-trigger.d.ts
|
|
989
990
|
interface PopoverCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
990
|
-
declare function CloseTrigger$1(props: PopoverCloseTriggerProps):
|
|
991
|
+
declare function CloseTrigger$1(props: PopoverCloseTriggerProps): react1.JSX.Element;
|
|
991
992
|
//#endregion
|
|
992
993
|
//#region src/components/popover/anatomy/content.d.ts
|
|
993
994
|
interface PopoverContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
994
|
-
declare function Content$3(props: PopoverContentProps):
|
|
995
|
+
declare function Content$3(props: PopoverContentProps): react1.JSX.Element;
|
|
995
996
|
//#endregion
|
|
996
997
|
//#region src/components/popover/anatomy/description.d.ts
|
|
997
998
|
interface PopoverDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
998
|
-
declare function Description$1(props: PopoverDescriptionProps):
|
|
999
|
+
declare function Description$1(props: PopoverDescriptionProps): react1.JSX.Element;
|
|
999
1000
|
//#endregion
|
|
1000
1001
|
//#region src/components/popover/anatomy/positioner.d.ts
|
|
1001
1002
|
interface PopoverPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1002
|
-
declare function Positioner$1(props: PopoverPositionerProps):
|
|
1003
|
+
declare function Positioner$1(props: PopoverPositionerProps): react1.JSX.Element;
|
|
1003
1004
|
//#endregion
|
|
1004
1005
|
//#region src/components/popover/anatomy/root.d.ts
|
|
1005
1006
|
interface PopoverRootProps extends PropsWithChildren, Omit<Props$12, 'id'> {}
|
|
1006
|
-
declare function Root$10(props: PopoverRootProps):
|
|
1007
|
+
declare function Root$10(props: PopoverRootProps): react_jsx_runtime0.JSX.Element;
|
|
1007
1008
|
//#endregion
|
|
1008
1009
|
//#region src/components/popover/modules/provider.d.ts
|
|
1009
1010
|
declare function usePopover(props?: Omit<Props$12, 'id'>): Api$12<PropTypes>;
|
|
@@ -1018,23 +1019,23 @@ declare function RootContext$12(props: PopoverRootContextProps): ReactNode;
|
|
|
1018
1019
|
interface PopoverRootProviderProps extends PropsWithChildren {
|
|
1019
1020
|
value: ReturnType<typeof usePopover>;
|
|
1020
1021
|
}
|
|
1021
|
-
declare function RootProvider$9(props: PopoverRootProviderProps):
|
|
1022
|
+
declare function RootProvider$9(props: PopoverRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1022
1023
|
//#endregion
|
|
1023
1024
|
//#region src/components/popover/anatomy/title.d.ts
|
|
1024
1025
|
interface PopoverTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1025
|
-
declare function Title$1(props: PopoverTitleProps):
|
|
1026
|
+
declare function Title$1(props: PopoverTitleProps): react1.JSX.Element;
|
|
1026
1027
|
//#endregion
|
|
1027
1028
|
//#region src/components/popover/anatomy/arrow.d.ts
|
|
1028
1029
|
interface PopoverArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1029
|
-
declare function Arrow$1(props: PopoverArrowProps):
|
|
1030
|
+
declare function Arrow$1(props: PopoverArrowProps): react1.JSX.Element;
|
|
1030
1031
|
//#endregion
|
|
1031
1032
|
//#region src/components/popover/anatomy/arrow-tip.d.ts
|
|
1032
1033
|
interface PopoverArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1033
|
-
declare function ArrowTip$1(props: PopoverArrowTipProps):
|
|
1034
|
+
declare function ArrowTip$1(props: PopoverArrowTipProps): react1.JSX.Element;
|
|
1034
1035
|
//#endregion
|
|
1035
1036
|
//#region src/components/popover/anatomy/trigger.d.ts
|
|
1036
1037
|
interface PopoverTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1037
|
-
declare function Trigger$3(props: PopoverTriggerProps):
|
|
1038
|
+
declare function Trigger$3(props: PopoverTriggerProps): react1.JSX.Element;
|
|
1038
1039
|
//#endregion
|
|
1039
1040
|
//#region src/components/popover/modules/anatomy.d.ts
|
|
1040
1041
|
declare const Popover: typeof Root$10 & {
|
|
@@ -1066,22 +1067,22 @@ interface PortalRootProps extends Required<PropsWithChildren> {
|
|
|
1066
1067
|
*/
|
|
1067
1068
|
target?: HTMLElement;
|
|
1068
1069
|
}
|
|
1069
|
-
declare function Root$9(props: PortalRootProps):
|
|
1070
|
+
declare function Root$9(props: PortalRootProps): react_jsx_runtime0.JSX.Element;
|
|
1070
1071
|
//#endregion
|
|
1071
1072
|
//#region src/components/portal/modules/anatomy.d.ts
|
|
1072
1073
|
declare const Portal: typeof Root$9;
|
|
1073
1074
|
//#endregion
|
|
1074
1075
|
//#region src/components/progress/anatomy/label.d.ts
|
|
1075
1076
|
interface ProgressLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1076
|
-
declare function Label$6(props: ProgressLabelProps):
|
|
1077
|
+
declare function Label$6(props: ProgressLabelProps): react1.JSX.Element;
|
|
1077
1078
|
//#endregion
|
|
1078
1079
|
//#region src/components/progress/anatomy/range.d.ts
|
|
1079
1080
|
interface ProgressRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1080
|
-
declare function Range$1(props: ProgressRangeProps):
|
|
1081
|
+
declare function Range$1(props: ProgressRangeProps): react1.JSX.Element;
|
|
1081
1082
|
//#endregion
|
|
1082
1083
|
//#region src/components/progress/anatomy/root.d.ts
|
|
1083
1084
|
interface ProgressRootProps extends Omit<Props$13, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1084
|
-
declare function Root$8(props: ProgressRootProps):
|
|
1085
|
+
declare function Root$8(props: ProgressRootProps): react_jsx_runtime0.JSX.Element;
|
|
1085
1086
|
//#endregion
|
|
1086
1087
|
//#region src/components/progress/modules/provider.d.ts
|
|
1087
1088
|
declare function useProgress(props?: Omit<Props$13, 'id'>): Api$13<PropTypes>;
|
|
@@ -1096,27 +1097,27 @@ declare function RootContext$11(props: ProgressRootContextProps): ReactNode;
|
|
|
1096
1097
|
interface ProgressRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1097
1098
|
value: ReturnType<typeof useProgress>;
|
|
1098
1099
|
}
|
|
1099
|
-
declare function RootProvider$8(props: ProgressRootProviderProps):
|
|
1100
|
+
declare function RootProvider$8(props: ProgressRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1100
1101
|
//#endregion
|
|
1101
1102
|
//#region src/components/progress/anatomy/track.d.ts
|
|
1102
1103
|
interface ProgressTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1103
|
-
declare function Track$1(props: ProgressTrackProps):
|
|
1104
|
+
declare function Track$1(props: ProgressTrackProps): react1.JSX.Element;
|
|
1104
1105
|
//#endregion
|
|
1105
1106
|
//#region src/components/progress/anatomy/value-text.d.ts
|
|
1106
1107
|
interface ProgressValueTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1107
|
-
declare function ValueText$1(props: ProgressValueTextProps):
|
|
1108
|
+
declare function ValueText$1(props: ProgressValueTextProps): react1.JSX.Element;
|
|
1108
1109
|
//#endregion
|
|
1109
1110
|
//#region src/components/progress/anatomy/circle.d.ts
|
|
1110
1111
|
interface ProgressCircleProps extends PropsWithElement<'svg'>, HTMLAttributes<'svg'> {}
|
|
1111
|
-
declare function Circle(props: ProgressCircleProps):
|
|
1112
|
+
declare function Circle(props: ProgressCircleProps): react1.JSX.Element;
|
|
1112
1113
|
//#endregion
|
|
1113
1114
|
//#region src/components/progress/anatomy/circle-range.d.ts
|
|
1114
1115
|
interface ProgressCircleRangeProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1115
|
-
declare function CircleRange(props: ProgressCircleRangeProps):
|
|
1116
|
+
declare function CircleRange(props: ProgressCircleRangeProps): react1.JSX.Element;
|
|
1116
1117
|
//#endregion
|
|
1117
1118
|
//#region src/components/progress/anatomy/circle-track.d.ts
|
|
1118
1119
|
interface ProgressCircleTrackProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1119
|
-
declare function CircleTrack(props: ProgressCircleTrackProps):
|
|
1120
|
+
declare function CircleTrack(props: ProgressCircleTrackProps): react1.JSX.Element;
|
|
1120
1121
|
//#endregion
|
|
1121
1122
|
//#region src/components/progress/modules/anatomy.d.ts
|
|
1122
1123
|
declare const Progress: typeof Root$8 & {
|
|
@@ -1133,11 +1134,11 @@ declare const Progress: typeof Root$8 & {
|
|
|
1133
1134
|
//#endregion
|
|
1134
1135
|
//#region src/components/rating-group/anatomy/control.d.ts
|
|
1135
1136
|
interface RatingGroupControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1136
|
-
declare function Control$4(props: RatingGroupControlProps):
|
|
1137
|
+
declare function Control$4(props: RatingGroupControlProps): react1.JSX.Element;
|
|
1137
1138
|
//#endregion
|
|
1138
1139
|
//#region src/components/rating-group/anatomy/hidden-input.d.ts
|
|
1139
1140
|
interface RatingGroupHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'id' | 'dir' | 'children'> {}
|
|
1140
|
-
declare function HiddenInput$3(props: RatingGroupHiddenInputProps):
|
|
1141
|
+
declare function HiddenInput$3(props: RatingGroupHiddenInputProps): react1.JSX.Element;
|
|
1141
1142
|
//#endregion
|
|
1142
1143
|
//#region src/components/rating-group/anatomy/item.d.ts
|
|
1143
1144
|
interface RatingGroupItemProps extends ItemProps$7, PropsWithElement<'span'>, HTMLAttributes<'span', 'id' | 'dir'> {
|
|
@@ -1160,15 +1161,15 @@ interface RatingGroupItemProps extends ItemProps$7, PropsWithElement<'span'>, HT
|
|
|
1160
1161
|
*/
|
|
1161
1162
|
full?: ReactNode;
|
|
1162
1163
|
}
|
|
1163
|
-
declare function Item$5(props: RatingGroupItemProps):
|
|
1164
|
+
declare function Item$5(props: RatingGroupItemProps): react1.JSX.Element;
|
|
1164
1165
|
//#endregion
|
|
1165
1166
|
//#region src/components/rating-group/anatomy/label.d.ts
|
|
1166
1167
|
interface RatingGroupLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
1167
|
-
declare function Label$5(props: RatingGroupLabelProps):
|
|
1168
|
+
declare function Label$5(props: RatingGroupLabelProps): react1.JSX.Element;
|
|
1168
1169
|
//#endregion
|
|
1169
1170
|
//#region src/components/rating-group/anatomy/root.d.ts
|
|
1170
1171
|
interface RatingGroupRootProps extends Omit<Props$14, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1171
|
-
declare function Root$7(props: RatingGroupRootProps):
|
|
1172
|
+
declare function Root$7(props: RatingGroupRootProps): react_jsx_runtime0.JSX.Element;
|
|
1172
1173
|
//#endregion
|
|
1173
1174
|
//#region src/components/rating-group/modules/provider.d.ts
|
|
1174
1175
|
declare function useRatingGroup(props?: Omit<Props$14, 'id'>): Api$14<PropTypes>;
|
|
@@ -1183,7 +1184,7 @@ declare function RootContext$10(props: RatingGroupRootContextProps): ReactNode;
|
|
|
1183
1184
|
interface RatingGroupRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1184
1185
|
value: ReturnType<typeof useRatingGroup>;
|
|
1185
1186
|
}
|
|
1186
|
-
declare function RootProvider$7(props: RatingGroupRootProviderProps):
|
|
1187
|
+
declare function RootProvider$7(props: RatingGroupRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1187
1188
|
//#endregion
|
|
1188
1189
|
//#region src/components/rating-group/modules/anatomy.d.ts
|
|
1189
1190
|
declare const RatingGroup: typeof Root$7 & {
|
|
@@ -1197,27 +1198,27 @@ declare const RatingGroup: typeof Root$7 & {
|
|
|
1197
1198
|
//#endregion
|
|
1198
1199
|
//#region src/components/segmented-control/anatomy/control.d.ts
|
|
1199
1200
|
interface SegmentedControlControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1200
|
-
declare function Control$3(props: SegmentedControlControlProps):
|
|
1201
|
+
declare function Control$3(props: SegmentedControlControlProps): react1.JSX.Element;
|
|
1201
1202
|
//#endregion
|
|
1202
1203
|
//#region src/components/segmented-control/anatomy/indicator.d.ts
|
|
1203
1204
|
interface SegmentedControlIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1204
|
-
declare function Indicator$2(props: SegmentedControlIndicatorProps):
|
|
1205
|
+
declare function Indicator$2(props: SegmentedControlIndicatorProps): react1.JSX.Element;
|
|
1205
1206
|
//#endregion
|
|
1206
1207
|
//#region src/components/segmented-control/anatomy/item-hidden-input.d.ts
|
|
1207
1208
|
interface SegmentedControlItemHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1208
|
-
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps):
|
|
1209
|
+
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps): react1.JSX.Element;
|
|
1209
1210
|
//#endregion
|
|
1210
1211
|
//#region src/components/segmented-control/anatomy/item-text.d.ts
|
|
1211
1212
|
interface SegmentedControlItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1212
|
-
declare function ItemText$1(props: SegmentedControlItemTextProps):
|
|
1213
|
+
declare function ItemText$1(props: SegmentedControlItemTextProps): react1.JSX.Element;
|
|
1213
1214
|
//#endregion
|
|
1214
1215
|
//#region src/components/segmented-control/anatomy/item.d.ts
|
|
1215
1216
|
interface SegmentedControlItemProps extends ItemProps$8, PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1216
|
-
declare function Item$4(props: SegmentedControlItemProps):
|
|
1217
|
+
declare function Item$4(props: SegmentedControlItemProps): react_jsx_runtime0.JSX.Element;
|
|
1217
1218
|
//#endregion
|
|
1218
1219
|
//#region src/components/segmented-control/anatomy/label.d.ts
|
|
1219
1220
|
interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1220
|
-
declare function Label$4(props: SegmentedControlLabelProps):
|
|
1221
|
+
declare function Label$4(props: SegmentedControlLabelProps): react1.JSX.Element;
|
|
1221
1222
|
//#endregion
|
|
1222
1223
|
//#region src/components/segmented-control/modules/provider.d.ts
|
|
1223
1224
|
declare function useSegmentedControl(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
@@ -1232,11 +1233,11 @@ declare function RootContext$9(props: SegmentedControlRootContextProps): ReactNo
|
|
|
1232
1233
|
interface SegmentedControlRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1233
1234
|
value: ReturnType<typeof useSegmentedControl>;
|
|
1234
1235
|
}
|
|
1235
|
-
declare function RootProvider$6(props: SegmentedControlRootProviderProps):
|
|
1236
|
+
declare function RootProvider$6(props: SegmentedControlRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1236
1237
|
//#endregion
|
|
1237
1238
|
//#region src/components/segmented-control/anatomy/root.d.ts
|
|
1238
1239
|
interface SegmentedControlRootProps extends Omit<Props$15, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1239
|
-
declare function Root$6(props: SegmentedControlRootProps):
|
|
1240
|
+
declare function Root$6(props: SegmentedControlRootProps): react_jsx_runtime0.JSX.Element;
|
|
1240
1241
|
//#endregion
|
|
1241
1242
|
//#region src/components/segmented-control/modules/anatomy.d.ts
|
|
1242
1243
|
declare const SegmentedControl: typeof Root$6 & {
|
|
@@ -1252,27 +1253,27 @@ declare const SegmentedControl: typeof Root$6 & {
|
|
|
1252
1253
|
//#endregion
|
|
1253
1254
|
//#region src/components/slider/anatomy/control.d.ts
|
|
1254
1255
|
interface SliderControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1255
|
-
declare function Control$2(props: SliderControlProps):
|
|
1256
|
+
declare function Control$2(props: SliderControlProps): react1.JSX.Element;
|
|
1256
1257
|
//#endregion
|
|
1257
1258
|
//#region src/components/slider/anatomy/hidden-input.d.ts
|
|
1258
1259
|
interface SliderHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1259
|
-
declare function HiddenInput$2(props: SliderHiddenInputProps):
|
|
1260
|
+
declare function HiddenInput$2(props: SliderHiddenInputProps): react1.JSX.Element;
|
|
1260
1261
|
//#endregion
|
|
1261
1262
|
//#region src/components/slider/anatomy/label.d.ts
|
|
1262
1263
|
interface SliderLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1263
|
-
declare function Label$3(props: SliderLabelProps):
|
|
1264
|
+
declare function Label$3(props: SliderLabelProps): react1.JSX.Element;
|
|
1264
1265
|
//#endregion
|
|
1265
1266
|
//#region src/components/slider/anatomy/marker-group.d.ts
|
|
1266
1267
|
interface SliderMarkerGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1267
|
-
declare function MarkerGroup(props: SliderMarkerGroupProps):
|
|
1268
|
+
declare function MarkerGroup(props: SliderMarkerGroupProps): react1.JSX.Element;
|
|
1268
1269
|
//#endregion
|
|
1269
1270
|
//#region src/components/slider/anatomy/marker.d.ts
|
|
1270
1271
|
interface SliderMarkerProps extends MarkerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1271
|
-
declare function Marker(props: SliderMarkerProps):
|
|
1272
|
+
declare function Marker(props: SliderMarkerProps): react1.JSX.Element;
|
|
1272
1273
|
//#endregion
|
|
1273
1274
|
//#region src/components/slider/anatomy/range.d.ts
|
|
1274
1275
|
interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1275
|
-
declare function Range(props: SliderRangeProps):
|
|
1276
|
+
declare function Range(props: SliderRangeProps): react1.JSX.Element;
|
|
1276
1277
|
//#endregion
|
|
1277
1278
|
//#region src/components/slider/modules/provider.d.ts
|
|
1278
1279
|
declare function useSlider(props?: Omit<Props$16, 'id'>): Api$16<PropTypes>;
|
|
@@ -1287,23 +1288,23 @@ declare function RootContext$8(props: SliderRootContextProps): ReactNode;
|
|
|
1287
1288
|
interface SliderRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1288
1289
|
value: ReturnType<typeof useSlider>;
|
|
1289
1290
|
}
|
|
1290
|
-
declare function SliderRootProvider(props: SliderRootProviderProps):
|
|
1291
|
+
declare function SliderRootProvider(props: SliderRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1291
1292
|
//#endregion
|
|
1292
1293
|
//#region src/components/slider/anatomy/root.d.ts
|
|
1293
1294
|
interface SliderRootProps extends Omit<Props$16, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'aria-label' | 'aria-labelledby'> {}
|
|
1294
|
-
declare function SliderRoot$1(props: SliderRootProps):
|
|
1295
|
+
declare function SliderRoot$1(props: SliderRootProps): react_jsx_runtime0.JSX.Element;
|
|
1295
1296
|
//#endregion
|
|
1296
1297
|
//#region src/components/slider/anatomy/thumb.d.ts
|
|
1297
1298
|
interface SliderThumbProps extends ThumbProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1298
|
-
declare function Thumb$1(props: SliderThumbProps):
|
|
1299
|
+
declare function Thumb$1(props: SliderThumbProps): react_jsx_runtime0.JSX.Element;
|
|
1299
1300
|
//#endregion
|
|
1300
1301
|
//#region src/components/slider/anatomy/track.d.ts
|
|
1301
1302
|
interface SliderTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1302
|
-
declare function Track(props: SliderTrackProps):
|
|
1303
|
+
declare function Track(props: SliderTrackProps): react1.JSX.Element;
|
|
1303
1304
|
//#endregion
|
|
1304
1305
|
//#region src/components/slider/anatomy/value-text.d.ts
|
|
1305
1306
|
interface SliderValueTextProps extends PropsWithElement<'output'>, HTMLAttributes<'output'> {}
|
|
1306
|
-
declare function ValueText(props: SliderValueTextProps):
|
|
1307
|
+
declare function ValueText(props: SliderValueTextProps): react1.JSX.Element;
|
|
1307
1308
|
//#endregion
|
|
1308
1309
|
//#region src/components/slider/modules/anatomy.d.ts
|
|
1309
1310
|
declare const Slider: typeof SliderRoot$1 & {
|
|
@@ -1322,31 +1323,31 @@ declare const Slider: typeof SliderRoot$1 & {
|
|
|
1322
1323
|
//#endregion
|
|
1323
1324
|
//#region src/components/steps/anatomy/content.d.ts
|
|
1324
1325
|
interface StepsContentProps extends ItemProps$9, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1325
|
-
declare function Content$2(props: StepsContentProps):
|
|
1326
|
+
declare function Content$2(props: StepsContentProps): react1.JSX.Element;
|
|
1326
1327
|
//#endregion
|
|
1327
1328
|
//#region src/components/steps/anatomy/indicator.d.ts
|
|
1328
1329
|
interface StepsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1329
|
-
declare function Indicator$1(props: StepsIndicatorProps):
|
|
1330
|
+
declare function Indicator$1(props: StepsIndicatorProps): react1.JSX.Element;
|
|
1330
1331
|
//#endregion
|
|
1331
1332
|
//#region src/components/steps/anatomy/item.d.ts
|
|
1332
1333
|
interface StepsItemProps extends ItemProps$9, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1333
|
-
declare function Item$3(props: StepsItemProps):
|
|
1334
|
+
declare function Item$3(props: StepsItemProps): react_jsx_runtime0.JSX.Element;
|
|
1334
1335
|
//#endregion
|
|
1335
1336
|
//#region src/components/steps/anatomy/list.d.ts
|
|
1336
1337
|
interface StepsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1337
|
-
declare function List$1(props: StepsListProps):
|
|
1338
|
+
declare function List$1(props: StepsListProps): react1.JSX.Element;
|
|
1338
1339
|
//#endregion
|
|
1339
1340
|
//#region src/components/steps/anatomy/next-trigger.d.ts
|
|
1340
1341
|
interface StepsNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1341
|
-
declare function NextTrigger(props: StepsNextTriggerProps):
|
|
1342
|
+
declare function NextTrigger(props: StepsNextTriggerProps): react1.JSX.Element;
|
|
1342
1343
|
//#endregion
|
|
1343
1344
|
//#region src/components/steps/anatomy/prev-trigger.d.ts
|
|
1344
1345
|
interface StepsPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1345
|
-
declare function PrevTrigger(props: StepsPrevTriggerProps):
|
|
1346
|
+
declare function PrevTrigger(props: StepsPrevTriggerProps): react1.JSX.Element;
|
|
1346
1347
|
//#endregion
|
|
1347
1348
|
//#region src/components/steps/anatomy/root.d.ts
|
|
1348
1349
|
interface StepsRootProps extends Omit<Props$17, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1349
|
-
declare function SliderRoot(props: StepsRootProps):
|
|
1350
|
+
declare function SliderRoot(props: StepsRootProps): react_jsx_runtime0.JSX.Element;
|
|
1350
1351
|
//#endregion
|
|
1351
1352
|
//#region src/components/steps/modules/provider.d.ts
|
|
1352
1353
|
declare function useSteps(props?: Omit<Props$17, 'id'>): Api$17<PropTypes>;
|
|
@@ -1361,15 +1362,15 @@ declare function RootContext$7(props: StepsRootContextProps): ReactNode;
|
|
|
1361
1362
|
interface StepsRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1362
1363
|
value: ReturnType<typeof useSteps>;
|
|
1363
1364
|
}
|
|
1364
|
-
declare function RootProvider$5(props: StepsRootProviderProps):
|
|
1365
|
+
declare function RootProvider$5(props: StepsRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1365
1366
|
//#endregion
|
|
1366
1367
|
//#region src/components/steps/anatomy/separator.d.ts
|
|
1367
1368
|
interface StepsSeparatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1368
|
-
declare function Separator(props: StepsSeparatorProps):
|
|
1369
|
+
declare function Separator(props: StepsSeparatorProps): react1.JSX.Element;
|
|
1369
1370
|
//#endregion
|
|
1370
1371
|
//#region src/components/steps/anatomy/trigger.d.ts
|
|
1371
1372
|
interface StepsTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1372
|
-
declare function Trigger$2(props: StepsTriggerProps):
|
|
1373
|
+
declare function Trigger$2(props: StepsTriggerProps): react1.JSX.Element;
|
|
1373
1374
|
//#endregion
|
|
1374
1375
|
//#region src/components/steps/modules/anatomy.d.ts
|
|
1375
1376
|
declare const Steps: typeof SliderRoot & {
|
|
@@ -1387,15 +1388,15 @@ declare const Steps: typeof SliderRoot & {
|
|
|
1387
1388
|
//#endregion
|
|
1388
1389
|
//#region src/components/switch/anatomy/control.d.ts
|
|
1389
1390
|
interface SwitchControlProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1390
|
-
declare function Control$1(props: SwitchControlProps):
|
|
1391
|
+
declare function Control$1(props: SwitchControlProps): react1.JSX.Element;
|
|
1391
1392
|
//#endregion
|
|
1392
1393
|
//#region src/components/switch/anatomy/hidden-input.d.ts
|
|
1393
1394
|
interface SwitchHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1394
|
-
declare function HiddenInput$1(props: SwitchHiddenInputProps):
|
|
1395
|
+
declare function HiddenInput$1(props: SwitchHiddenInputProps): react1.JSX.Element;
|
|
1395
1396
|
//#endregion
|
|
1396
1397
|
//#region src/components/switch/anatomy/label.d.ts
|
|
1397
1398
|
interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1398
|
-
declare function Label$2(props: SwitchLabelProps):
|
|
1399
|
+
declare function Label$2(props: SwitchLabelProps): react1.JSX.Element;
|
|
1399
1400
|
//#endregion
|
|
1400
1401
|
//#region src/components/switch/modules/provider.d.ts
|
|
1401
1402
|
declare function useSwitch(props?: Omit<Props$18, 'id'>): Api$18<PropTypes>;
|
|
@@ -1410,15 +1411,15 @@ declare function RootContext$6(props: SwitchRootContextProps): ReactNode;
|
|
|
1410
1411
|
interface SwitchRootProviderProps extends PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {
|
|
1411
1412
|
value: ReturnType<typeof useSwitch>;
|
|
1412
1413
|
}
|
|
1413
|
-
declare function RootProvider$4(props: SwitchRootProviderProps):
|
|
1414
|
+
declare function RootProvider$4(props: SwitchRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1414
1415
|
//#endregion
|
|
1415
1416
|
//#region src/components/switch/anatomy/thumb.d.ts
|
|
1416
1417
|
interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1417
|
-
declare function Thumb(props: SwitchThumbProps):
|
|
1418
|
+
declare function Thumb(props: SwitchThumbProps): react1.JSX.Element;
|
|
1418
1419
|
//#endregion
|
|
1419
1420
|
//#region src/components/switch/anatomy/root.d.ts
|
|
1420
1421
|
interface SwitchRootProps extends Omit<Props$18, 'id'>, PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
1421
|
-
declare function Root$5(props: SwitchRootProps):
|
|
1422
|
+
declare function Root$5(props: SwitchRootProps): react_jsx_runtime0.JSX.Element;
|
|
1422
1423
|
//#endregion
|
|
1423
1424
|
//#region src/components/switch/modules/anatomy.d.ts
|
|
1424
1425
|
declare const Switch: typeof Root$5 & {
|
|
@@ -1432,19 +1433,19 @@ declare const Switch: typeof Root$5 & {
|
|
|
1432
1433
|
//#endregion
|
|
1433
1434
|
//#region src/components/tabs/anatomy/content.d.ts
|
|
1434
1435
|
interface TabsContentProps extends ContentProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1435
|
-
declare function Content$1(props: TabsContentProps):
|
|
1436
|
+
declare function Content$1(props: TabsContentProps): react1.JSX.Element;
|
|
1436
1437
|
//#endregion
|
|
1437
1438
|
//#region src/components/tabs/anatomy/indicator.d.ts
|
|
1438
1439
|
interface TabsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1439
|
-
declare function Indicator(props: TabsIndicatorProps):
|
|
1440
|
+
declare function Indicator(props: TabsIndicatorProps): react1.JSX.Element;
|
|
1440
1441
|
//#endregion
|
|
1441
1442
|
//#region src/components/tabs/anatomy/list.d.ts
|
|
1442
1443
|
interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1443
|
-
declare function List(props: TabsListProps):
|
|
1444
|
+
declare function List(props: TabsListProps): react1.JSX.Element;
|
|
1444
1445
|
//#endregion
|
|
1445
1446
|
//#region src/components/tabs/anatomy/root.d.ts
|
|
1446
1447
|
interface TabsRootProps extends Omit<Props$19, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1447
|
-
declare function Root$4(props: TabsRootProps):
|
|
1448
|
+
declare function Root$4(props: TabsRootProps): react_jsx_runtime0.JSX.Element;
|
|
1448
1449
|
//#endregion
|
|
1449
1450
|
//#region src/components/tabs/modules/provider.d.ts
|
|
1450
1451
|
declare function useTabs(props?: Omit<Props$19, 'id'>): Api$19<PropTypes>;
|
|
@@ -1459,11 +1460,11 @@ declare function RootContext$5(props: TabsRootContextProps): ReactNode;
|
|
|
1459
1460
|
interface TabsRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1460
1461
|
value: ReturnType<typeof useTabs>;
|
|
1461
1462
|
}
|
|
1462
|
-
declare function RootProvider$3(props: TabsRootProviderProps):
|
|
1463
|
+
declare function RootProvider$3(props: TabsRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1463
1464
|
//#endregion
|
|
1464
1465
|
//#region src/components/tabs/anatomy/trigger.d.ts
|
|
1465
1466
|
interface TabsTriggerProps extends TriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
1466
|
-
declare function Trigger$1(props: TabsTriggerProps):
|
|
1467
|
+
declare function Trigger$1(props: TabsTriggerProps): react1.JSX.Element;
|
|
1467
1468
|
//#endregion
|
|
1468
1469
|
//#region src/components/tabs/modules/anatomy.d.ts
|
|
1469
1470
|
declare const Tabs: typeof Root$4 & {
|
|
@@ -1477,47 +1478,47 @@ declare const Tabs: typeof Root$4 & {
|
|
|
1477
1478
|
//#endregion
|
|
1478
1479
|
//#region src/components/tags-input/anatomy/clear-trigger.d.ts
|
|
1479
1480
|
interface TagsInputClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1480
|
-
declare function ClearTrigger(props: TagsInputClearTriggerProps):
|
|
1481
|
+
declare function ClearTrigger(props: TagsInputClearTriggerProps): react1.JSX.Element;
|
|
1481
1482
|
//#endregion
|
|
1482
1483
|
//#region src/components/tags-input/anatomy/control.d.ts
|
|
1483
1484
|
interface TagsInputControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1484
|
-
declare function Control(props: TagsInputControlProps):
|
|
1485
|
+
declare function Control(props: TagsInputControlProps): react1.JSX.Element;
|
|
1485
1486
|
//#endregion
|
|
1486
1487
|
//#region src/components/tags-input/anatomy/hidden-input.d.ts
|
|
1487
1488
|
interface TagsInputHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1488
|
-
declare function HiddenInput(props: TagsInputHiddenInputProps):
|
|
1489
|
+
declare function HiddenInput(props: TagsInputHiddenInputProps): react1.JSX.Element;
|
|
1489
1490
|
//#endregion
|
|
1490
1491
|
//#region src/components/tags-input/anatomy/input.d.ts
|
|
1491
1492
|
interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1492
|
-
declare function Input(props: TagsInputInputProps):
|
|
1493
|
+
declare function Input(props: TagsInputInputProps): react1.JSX.Element;
|
|
1493
1494
|
//#endregion
|
|
1494
1495
|
//#region src/components/tags-input/anatomy/item.d.ts
|
|
1495
1496
|
interface TagsInputItemProps extends ItemProps$10, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1496
|
-
declare function Item$2(props: TagsInputItemProps):
|
|
1497
|
+
declare function Item$2(props: TagsInputItemProps): react_jsx_runtime0.JSX.Element;
|
|
1497
1498
|
//#endregion
|
|
1498
1499
|
//#region src/components/tags-input/anatomy/item-delete-trigger.d.ts
|
|
1499
1500
|
interface TagsInputItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1500
|
-
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps):
|
|
1501
|
+
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps): react1.JSX.Element;
|
|
1501
1502
|
//#endregion
|
|
1502
1503
|
//#region src/components/tags-input/anatomy/item-input.d.ts
|
|
1503
1504
|
interface TagsInputItemInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1504
|
-
declare function ItemInput(props: TagsInputItemInputProps):
|
|
1505
|
+
declare function ItemInput(props: TagsInputItemInputProps): react1.JSX.Element;
|
|
1505
1506
|
//#endregion
|
|
1506
1507
|
//#region src/components/tags-input/anatomy/item-preview.d.ts
|
|
1507
1508
|
interface TagsInputItemPreviewProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1508
|
-
declare function ItemPreview(props: TagsInputItemPreviewProps):
|
|
1509
|
+
declare function ItemPreview(props: TagsInputItemPreviewProps): react1.JSX.Element;
|
|
1509
1510
|
//#endregion
|
|
1510
1511
|
//#region src/components/tags-input/anatomy/item-text.d.ts
|
|
1511
1512
|
interface TagsInputItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1512
|
-
declare function ItemText(props: TagsInputItemTextProps):
|
|
1513
|
+
declare function ItemText(props: TagsInputItemTextProps): react1.JSX.Element;
|
|
1513
1514
|
//#endregion
|
|
1514
1515
|
//#region src/components/tags-input/anatomy/label.d.ts
|
|
1515
1516
|
interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1516
|
-
declare function Label$1(props: TagsInputLabelProps):
|
|
1517
|
+
declare function Label$1(props: TagsInputLabelProps): react1.JSX.Element;
|
|
1517
1518
|
//#endregion
|
|
1518
1519
|
//#region src/components/tags-input/anatomy/root.d.ts
|
|
1519
1520
|
interface TagsInputRootProps extends Omit<Props$20, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1520
|
-
declare function Root$3(props: TagsInputRootProps):
|
|
1521
|
+
declare function Root$3(props: TagsInputRootProps): react_jsx_runtime0.JSX.Element;
|
|
1521
1522
|
//#endregion
|
|
1522
1523
|
//#region src/components/tags-input/modules/provider.d.ts
|
|
1523
1524
|
declare function useTagsInput(props?: Omit<Props$20, 'id'>): Api$20<PropTypes>;
|
|
@@ -1532,7 +1533,7 @@ declare function RootContext$4(props: TagsInputRootContextProps): ReactNode;
|
|
|
1532
1533
|
interface TagsInputRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1533
1534
|
value: ReturnType<typeof useTagsInput>;
|
|
1534
1535
|
}
|
|
1535
|
-
declare function RootProvider$2(props: TagsInputRootProviderProps):
|
|
1536
|
+
declare function RootProvider$2(props: TagsInputRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1536
1537
|
//#endregion
|
|
1537
1538
|
//#region src/components/tags-input/modules/anatomy.d.ts
|
|
1538
1539
|
declare const TagsInput: typeof Root$3 & {
|
|
@@ -1552,28 +1553,28 @@ declare const TagsInput: typeof Root$3 & {
|
|
|
1552
1553
|
//#endregion
|
|
1553
1554
|
//#region src/components/toast/anatomy/close-trigger.d.ts
|
|
1554
1555
|
interface ToastCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1555
|
-
declare function CloseTrigger(props: ToastCloseTriggerProps):
|
|
1556
|
+
declare function CloseTrigger(props: ToastCloseTriggerProps): react1.JSX.Element;
|
|
1556
1557
|
//#endregion
|
|
1557
1558
|
//#region src/components/toast/anatomy/description.d.ts
|
|
1558
1559
|
interface ToastDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1559
|
-
declare function Description(props: ToastDescriptionProps):
|
|
1560
|
+
declare function Description(props: ToastDescriptionProps): react1.JSX.Element;
|
|
1560
1561
|
//#endregion
|
|
1561
1562
|
//#region src/components/toast/anatomy/group.d.ts
|
|
1562
1563
|
interface ToastGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'children'> {
|
|
1563
1564
|
toaster: Store;
|
|
1564
1565
|
children?: (toast: Props$21) => JSX.Element | null;
|
|
1565
1566
|
}
|
|
1566
|
-
declare function Group(props: ToastGroupProps):
|
|
1567
|
+
declare function Group(props: ToastGroupProps): react_jsx_runtime0.JSX.Element;
|
|
1567
1568
|
//#endregion
|
|
1568
1569
|
//#region src/components/toast/anatomy/message.d.ts
|
|
1569
1570
|
interface ToastMessageProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1570
|
-
declare function Message(props: ToastMessageProps):
|
|
1571
|
+
declare function Message(props: ToastMessageProps): react1.JSX.Element;
|
|
1571
1572
|
//#endregion
|
|
1572
1573
|
//#region src/components/toast/anatomy/root.d.ts
|
|
1573
1574
|
interface ToastRootProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1574
1575
|
toast: Omit<Options, 'id' | 'parent'>;
|
|
1575
1576
|
}
|
|
1576
|
-
declare function Root$2(props: ToastRootProps):
|
|
1577
|
+
declare function Root$2(props: ToastRootProps): react_jsx_runtime0.JSX.Element;
|
|
1577
1578
|
//#endregion
|
|
1578
1579
|
//#region src/components/toast/anatomy/root-context.d.ts
|
|
1579
1580
|
interface ToastRootContextProps {
|
|
@@ -1583,11 +1584,11 @@ declare function RootContext$3(props: ToastRootContextProps): ReactNode;
|
|
|
1583
1584
|
//#endregion
|
|
1584
1585
|
//#region src/components/toast/anatomy/title.d.ts
|
|
1585
1586
|
interface ToastTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1586
|
-
declare function Title(props: ToastTitleProps):
|
|
1587
|
+
declare function Title(props: ToastTitleProps): react1.JSX.Element;
|
|
1587
1588
|
//#endregion
|
|
1588
1589
|
//#region src/components/toast/anatomy/action-trigger.d.ts
|
|
1589
1590
|
interface ToastActionTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1590
|
-
declare function ActionTrigger(props: ToastActionTriggerProps):
|
|
1591
|
+
declare function ActionTrigger(props: ToastActionTriggerProps): react1.JSX.Element;
|
|
1591
1592
|
//#endregion
|
|
1592
1593
|
//#region src/components/toast/modules/anatomy.d.ts
|
|
1593
1594
|
declare const Toast: typeof Root$2 & {
|
|
@@ -1602,11 +1603,11 @@ declare const Toast: typeof Root$2 & {
|
|
|
1602
1603
|
//#endregion
|
|
1603
1604
|
//#region src/components/toggle-group/anatomy/item.d.ts
|
|
1604
1605
|
interface ToggleGroupItemProps extends ItemProps$11, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1605
|
-
declare function Item$1(props: ToggleGroupItemProps):
|
|
1606
|
+
declare function Item$1(props: ToggleGroupItemProps): react1.JSX.Element;
|
|
1606
1607
|
//#endregion
|
|
1607
1608
|
//#region src/components/toggle-group/anatomy/root.d.ts
|
|
1608
1609
|
interface ToggleGroupRootProps extends Omit<Props$22, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1609
|
-
declare function ToggleGroupRoot(props: ToggleGroupRootProps):
|
|
1610
|
+
declare function ToggleGroupRoot(props: ToggleGroupRootProps): react_jsx_runtime0.JSX.Element;
|
|
1610
1611
|
//#endregion
|
|
1611
1612
|
//#region src/components/toggle-group/modules/provider.d.ts
|
|
1612
1613
|
declare function useToggleGroup(props?: Omit<Props$22, 'id'>): Api$22<PropTypes>;
|
|
@@ -1621,7 +1622,7 @@ declare function RootContext$2(props: ToggleGroupRootContextProps): ReactNode;
|
|
|
1621
1622
|
interface ToggleGroupRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1622
1623
|
value: ReturnType<typeof useToggleGroup>;
|
|
1623
1624
|
}
|
|
1624
|
-
declare function ToggleGroupRootProvider(props: ToggleGroupRootProviderProps):
|
|
1625
|
+
declare function ToggleGroupRootProvider(props: ToggleGroupRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1625
1626
|
//#endregion
|
|
1626
1627
|
//#region src/components/toggle-group/modules/anatomy.d.ts
|
|
1627
1628
|
declare const ToggleGroup: typeof ToggleGroupRoot & {
|
|
@@ -1632,23 +1633,23 @@ declare const ToggleGroup: typeof ToggleGroupRoot & {
|
|
|
1632
1633
|
//#endregion
|
|
1633
1634
|
//#region src/components/tooltip/anatomy/arrow.d.ts
|
|
1634
1635
|
interface TooltipArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1635
|
-
declare function Arrow(props: TooltipArrowProps):
|
|
1636
|
+
declare function Arrow(props: TooltipArrowProps): react1.JSX.Element;
|
|
1636
1637
|
//#endregion
|
|
1637
1638
|
//#region src/components/tooltip/anatomy/arrow-tip.d.ts
|
|
1638
1639
|
interface TooltipArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1639
|
-
declare function ArrowTip(props: TooltipArrowTipProps):
|
|
1640
|
+
declare function ArrowTip(props: TooltipArrowTipProps): react1.JSX.Element;
|
|
1640
1641
|
//#endregion
|
|
1641
1642
|
//#region src/components/tooltip/anatomy/content.d.ts
|
|
1642
1643
|
interface TooltipContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1643
|
-
declare function Content(props: TooltipContentProps):
|
|
1644
|
+
declare function Content(props: TooltipContentProps): react1.JSX.Element;
|
|
1644
1645
|
//#endregion
|
|
1645
1646
|
//#region src/components/tooltip/anatomy/positioner.d.ts
|
|
1646
1647
|
interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1647
|
-
declare function Positioner(props: TooltipPositionerProps):
|
|
1648
|
+
declare function Positioner(props: TooltipPositionerProps): react_jsx_runtime0.JSX.Element;
|
|
1648
1649
|
//#endregion
|
|
1649
1650
|
//#region src/components/tooltip/anatomy/root.d.ts
|
|
1650
1651
|
interface TooltipRootProps extends PropsWithChildren, Omit<Props$23, 'id'> {}
|
|
1651
|
-
declare function Root$1(props: TooltipRootProps):
|
|
1652
|
+
declare function Root$1(props: TooltipRootProps): react_jsx_runtime0.JSX.Element;
|
|
1652
1653
|
//#endregion
|
|
1653
1654
|
//#region src/components/tooltip/modules/provider.d.ts
|
|
1654
1655
|
declare function useTooltip(props?: Omit<Props$23, 'id'>): Api$23<PropTypes>;
|
|
@@ -1663,11 +1664,11 @@ declare function RootContext$1(props: TooltipRootContextProps): ReactNode;
|
|
|
1663
1664
|
interface TooltipRootProviderProps extends PropsWithChildren {
|
|
1664
1665
|
value: ReturnType<typeof useTooltip>;
|
|
1665
1666
|
}
|
|
1666
|
-
declare function RootProvider$1(props: TooltipRootProviderProps):
|
|
1667
|
+
declare function RootProvider$1(props: TooltipRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1667
1668
|
//#endregion
|
|
1668
1669
|
//#region src/components/tooltip/anatomy/trigger.d.ts
|
|
1669
1670
|
interface TooltipTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1670
|
-
declare function Trigger(props: TooltipTriggerProps):
|
|
1671
|
+
declare function Trigger(props: TooltipTriggerProps): react1.JSX.Element;
|
|
1671
1672
|
//#endregion
|
|
1672
1673
|
//#region src/components/tooltip/modules/anatomy.d.ts
|
|
1673
1674
|
declare const Tooltip: typeof Root$1 & {
|
|
@@ -1682,31 +1683,31 @@ declare const Tooltip: typeof Root$1 & {
|
|
|
1682
1683
|
//#endregion
|
|
1683
1684
|
//#region src/components/tree-view/anatomy/branch-content.d.ts
|
|
1684
1685
|
interface TreeViewBranchContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1685
|
-
declare function BranchContent(props: TreeViewBranchContentProps):
|
|
1686
|
+
declare function BranchContent(props: TreeViewBranchContentProps): react1.JSX.Element;
|
|
1686
1687
|
//#endregion
|
|
1687
1688
|
//#region src/components/tree-view/anatomy/branch-control.d.ts
|
|
1688
1689
|
interface TreeViewBranchControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1689
|
-
declare function BranchControl(props: TreeViewBranchControlProps):
|
|
1690
|
+
declare function BranchControl(props: TreeViewBranchControlProps): react1.JSX.Element;
|
|
1690
1691
|
//#endregion
|
|
1691
1692
|
//#region src/components/tree-view/anatomy/branch-indent-guide.d.ts
|
|
1692
1693
|
interface TreeViewBranchIndentGuideProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1693
|
-
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps):
|
|
1694
|
+
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps): react1.JSX.Element;
|
|
1694
1695
|
//#endregion
|
|
1695
1696
|
//#region src/components/tree-view/anatomy/branch-indicator.d.ts
|
|
1696
1697
|
interface TreeViewBranchIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1697
|
-
declare function BranchIndicator(props: TreeViewBranchIndicatorProps):
|
|
1698
|
+
declare function BranchIndicator(props: TreeViewBranchIndicatorProps): react1.JSX.Element;
|
|
1698
1699
|
//#endregion
|
|
1699
1700
|
//#region src/components/tree-view/anatomy/branch-text.d.ts
|
|
1700
1701
|
interface TreeViewBranchTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1701
|
-
declare function BranchText(props: TreeViewBranchTextProps):
|
|
1702
|
+
declare function BranchText(props: TreeViewBranchTextProps): react1.JSX.Element;
|
|
1702
1703
|
//#endregion
|
|
1703
1704
|
//#region src/components/tree-view/anatomy/branch.d.ts
|
|
1704
1705
|
interface TreeViewBranchProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1705
|
-
declare function Branch(props: TreeViewBranchProps):
|
|
1706
|
+
declare function Branch(props: TreeViewBranchProps): react1.JSX.Element;
|
|
1706
1707
|
//#endregion
|
|
1707
1708
|
//#region src/components/tree-view/anatomy/item.d.ts
|
|
1708
1709
|
interface TreeViewItemProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1709
|
-
declare function Item(props: TreeViewItemProps):
|
|
1710
|
+
declare function Item(props: TreeViewItemProps): react1.JSX.Element;
|
|
1710
1711
|
//#endregion
|
|
1711
1712
|
//#region src/components/tree-view/anatomy/label.d.ts
|
|
1712
1713
|
interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'> {
|
|
@@ -1717,7 +1718,7 @@ interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'
|
|
|
1717
1718
|
*/
|
|
1718
1719
|
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
1719
1720
|
}
|
|
1720
|
-
declare function Label(props: TreeViewLabelProps):
|
|
1721
|
+
declare function Label(props: TreeViewLabelProps): JSX.Element;
|
|
1721
1722
|
//#endregion
|
|
1722
1723
|
//#region src/components/tree-view/anatomy/node-context.d.ts
|
|
1723
1724
|
interface TreeViewNodeContextProps {
|
|
@@ -1729,7 +1730,7 @@ declare function NodeContext(props: TreeViewNodeContextProps): ReactNode;
|
|
|
1729
1730
|
interface TreeViewNodeProviderProps extends PropsWithChildren {
|
|
1730
1731
|
value: NodeProps;
|
|
1731
1732
|
}
|
|
1732
|
-
declare function NodeProvider(props: TreeViewNodeProviderProps):
|
|
1733
|
+
declare function NodeProvider(props: TreeViewNodeProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1733
1734
|
//#endregion
|
|
1734
1735
|
//#region src/components/tree-view/modules/provider.d.ts
|
|
1735
1736
|
declare function useTreeView<T extends TreeNode = TreeNode>(props?: Omit<Props$24<T>, 'id'>): Api$24<PropTypes>;
|
|
@@ -1744,15 +1745,15 @@ declare function RootContext(props: TreeViewRootContextProps): ReactNode;
|
|
|
1744
1745
|
interface TreeViewRootProviderProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {
|
|
1745
1746
|
value: ReturnType<typeof useTreeView>;
|
|
1746
1747
|
}
|
|
1747
|
-
declare function RootProvider(props: TreeViewRootProviderProps):
|
|
1748
|
+
declare function RootProvider(props: TreeViewRootProviderProps): react_jsx_runtime0.JSX.Element;
|
|
1748
1749
|
//#endregion
|
|
1749
1750
|
//#region src/components/tree-view/anatomy/root.d.ts
|
|
1750
1751
|
interface TreeViewRootProps<T extends TreeNode = TreeNode> extends Omit<Props$24<T>, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
1751
|
-
declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>):
|
|
1752
|
+
declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>): react_jsx_runtime0.JSX.Element;
|
|
1752
1753
|
//#endregion
|
|
1753
1754
|
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
1754
1755
|
interface TreeViewTreeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1755
|
-
declare function Tree(props: TreeViewTreeProps):
|
|
1756
|
+
declare function Tree(props: TreeViewTreeProps): react1.JSX.Element;
|
|
1756
1757
|
//#endregion
|
|
1757
1758
|
//#region src/components/tree-view/modules/anatomy.d.ts
|
|
1758
1759
|
declare const TreeView: typeof Root & {
|