@skeletonlabs/skeleton-react 4.11.0 → 4.12.1
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 +199 -194
- package/dist/index.mjs +14 -11
- package/package.json +30 -30
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from "react";
|
|
2
2
|
import { ComponentProps, JSX, PropsWithChildren, ReactNode } from "react";
|
|
3
3
|
import { Api, ItemProps, Props } from "@zag-js/accordion";
|
|
4
4
|
import { PropTypes } from "@zag-js/react";
|
|
@@ -44,11 +44,11 @@ interface PropsWithElement<T extends keyof JSX.IntrinsicElements> {
|
|
|
44
44
|
//#endregion
|
|
45
45
|
//#region src/components/accordion/anatomy/item-content.d.ts
|
|
46
46
|
interface AccordionItemContentProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
47
|
-
declare function ItemContent(props: AccordionItemContentProps):
|
|
47
|
+
declare function ItemContent(props: AccordionItemContentProps): react.JSX.Element;
|
|
48
48
|
//#endregion
|
|
49
49
|
//#region src/components/accordion/anatomy/item-indicator.d.ts
|
|
50
50
|
interface AccordionItemIndicatorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
51
|
-
declare function ItemIndicator$3(props: AccordionItemIndicatorProps):
|
|
51
|
+
declare function ItemIndicator$3(props: AccordionItemIndicatorProps): react.JSX.Element;
|
|
52
52
|
//#endregion
|
|
53
53
|
//#region src/components/accordion/anatomy/item.d.ts
|
|
54
54
|
interface AccordionItemProps extends ItemProps, PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -75,7 +75,7 @@ declare function RootProvider$18(props: AccordionRootProviderProps): react_jsx_r
|
|
|
75
75
|
//#endregion
|
|
76
76
|
//#region src/components/accordion/anatomy/item-trigger.d.ts
|
|
77
77
|
interface AccordionItemTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
78
|
-
declare function ItemTrigger(props: AccordionItemTriggerProps):
|
|
78
|
+
declare function ItemTrigger(props: AccordionItemTriggerProps): react.JSX.Element;
|
|
79
79
|
//#endregion
|
|
80
80
|
//#region src/components/accordion/modules/anatomy.d.ts
|
|
81
81
|
declare const Accordion: typeof Root$19 & {
|
|
@@ -89,23 +89,23 @@ declare const Accordion: typeof Root$19 & {
|
|
|
89
89
|
//#endregion
|
|
90
90
|
//#region src/components/app-bar/anatomy/root.d.ts
|
|
91
91
|
interface AppBarRootProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
92
|
-
declare function AppBarRoot(props: AppBarRootProps):
|
|
92
|
+
declare function AppBarRoot(props: AppBarRootProps): react.JSX.Element;
|
|
93
93
|
//#endregion
|
|
94
94
|
//#region src/components/app-bar/anatomy/toolbar.d.ts
|
|
95
95
|
interface AppBarToolbarProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
96
|
-
declare function AppBarToolbar(props: AppBarToolbarProps):
|
|
96
|
+
declare function AppBarToolbar(props: AppBarToolbarProps): react.JSX.Element;
|
|
97
97
|
//#endregion
|
|
98
98
|
//#region src/components/app-bar/anatomy/lead.d.ts
|
|
99
99
|
interface AppBarLeadProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
100
|
-
declare function AppBarLead(props: AppBarLeadProps):
|
|
100
|
+
declare function AppBarLead(props: AppBarLeadProps): react.JSX.Element;
|
|
101
101
|
//#endregion
|
|
102
102
|
//#region src/components/app-bar/anatomy/headline.d.ts
|
|
103
103
|
interface AppBarHeadlineProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
104
|
-
declare function AppBarHeadline(props: AppBarHeadlineProps):
|
|
104
|
+
declare function AppBarHeadline(props: AppBarHeadlineProps): react.JSX.Element;
|
|
105
105
|
//#endregion
|
|
106
106
|
//#region src/components/app-bar/anatomy/trail.d.ts
|
|
107
107
|
interface AppBarTrailProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
108
|
-
declare function AppBarTrail(props: AppBarTrailProps):
|
|
108
|
+
declare function AppBarTrail(props: AppBarTrailProps): react.JSX.Element;
|
|
109
109
|
//#endregion
|
|
110
110
|
//#region src/components/app-bar/modules/anatomy.d.ts
|
|
111
111
|
declare const AppBar: typeof AppBarRoot & {
|
|
@@ -117,11 +117,11 @@ declare const AppBar: typeof AppBarRoot & {
|
|
|
117
117
|
//#endregion
|
|
118
118
|
//#region src/components/avatar/anatomy/fallback.d.ts
|
|
119
119
|
interface AvatarFallbackProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
120
|
-
declare function Fallback(props: AvatarFallbackProps):
|
|
120
|
+
declare function Fallback(props: AvatarFallbackProps): react.JSX.Element;
|
|
121
121
|
//#endregion
|
|
122
122
|
//#region src/components/avatar/anatomy/image.d.ts
|
|
123
123
|
interface AvatarImageProps extends PropsWithElement<'img'>, HTMLAttributes<'img', 'children'> {}
|
|
124
|
-
declare function Image(props: AvatarImageProps):
|
|
124
|
+
declare function Image(props: AvatarImageProps): react.JSX.Element;
|
|
125
125
|
//#endregion
|
|
126
126
|
//#region src/components/avatar/anatomy/root.d.ts
|
|
127
127
|
interface AvatarRootProps extends Omit<Props$1, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -152,39 +152,39 @@ declare const Avatar: typeof AvatarRoot & {
|
|
|
152
152
|
//#endregion
|
|
153
153
|
//#region src/components/carousel/anatomy/autoplay-trigger.d.ts
|
|
154
154
|
interface CarouselAutoplayTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
155
|
-
declare function AutoplayTrigger(props: CarouselAutoplayTriggerProps):
|
|
155
|
+
declare function AutoplayTrigger(props: CarouselAutoplayTriggerProps): react.JSX.Element;
|
|
156
156
|
//#endregion
|
|
157
157
|
//#region src/components/carousel/anatomy/control.d.ts
|
|
158
158
|
interface CarouselControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
159
|
-
declare function Control$8(props: CarouselControlProps):
|
|
159
|
+
declare function Control$8(props: CarouselControlProps): react.JSX.Element;
|
|
160
160
|
//#endregion
|
|
161
161
|
//#region src/components/carousel/anatomy/indicator-group.d.ts
|
|
162
162
|
interface CarouselIndicatorGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
163
|
-
declare function IndicatorGroup(props: CarouselIndicatorGroupProps):
|
|
163
|
+
declare function IndicatorGroup(props: CarouselIndicatorGroupProps): react.JSX.Element;
|
|
164
164
|
//#endregion
|
|
165
165
|
//#region src/components/carousel/anatomy/indicator.d.ts
|
|
166
166
|
interface CarouselIndicatorProps extends IndicatorProps, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
167
|
-
declare function Indicator$5(props: CarouselIndicatorProps):
|
|
167
|
+
declare function Indicator$5(props: CarouselIndicatorProps): react.JSX.Element;
|
|
168
168
|
//#endregion
|
|
169
169
|
//#region src/components/carousel/anatomy/item-group.d.ts
|
|
170
170
|
interface CarouselItemGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
171
|
-
declare function ItemGroup$4(props: CarouselItemGroupProps):
|
|
171
|
+
declare function ItemGroup$4(props: CarouselItemGroupProps): react.JSX.Element;
|
|
172
172
|
//#endregion
|
|
173
173
|
//#region src/components/carousel/anatomy/item.d.ts
|
|
174
174
|
interface CarouselItemProps extends ItemProps$1, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
175
|
-
declare function Item$11(props: CarouselItemProps):
|
|
175
|
+
declare function Item$11(props: CarouselItemProps): react.JSX.Element;
|
|
176
176
|
//#endregion
|
|
177
177
|
//#region src/components/carousel/anatomy/next-trigger.d.ts
|
|
178
178
|
interface CarouselNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
179
|
-
declare function NextTrigger$3(props: CarouselNextTriggerProps):
|
|
179
|
+
declare function NextTrigger$3(props: CarouselNextTriggerProps): react.JSX.Element;
|
|
180
180
|
//#endregion
|
|
181
181
|
//#region src/components/carousel/anatomy/prev-trigger.d.ts
|
|
182
182
|
interface CarouselPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
183
|
-
declare function PrevTrigger$3(props: CarouselPrevTriggerProps):
|
|
183
|
+
declare function PrevTrigger$3(props: CarouselPrevTriggerProps): react.JSX.Element;
|
|
184
184
|
//#endregion
|
|
185
185
|
//#region src/components/carousel/anatomy/progress-text.d.ts
|
|
186
186
|
interface CarouselProgressTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
187
|
-
declare function ProgressText(props: CarouselProgressTextProps):
|
|
187
|
+
declare function ProgressText(props: CarouselProgressTextProps): react.JSX.Element;
|
|
188
188
|
//#endregion
|
|
189
189
|
//#region src/components/carousel/anatomy/root.d.ts
|
|
190
190
|
interface CarouselRootProps extends Omit<Props$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -224,7 +224,7 @@ declare const Carousel: typeof Root$18 & {
|
|
|
224
224
|
//#endregion
|
|
225
225
|
//#region src/components/collapsible/anatomy/content.d.ts
|
|
226
226
|
interface CollapsibleContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
227
|
-
declare function Content$10(props: CollapsibleContentProps):
|
|
227
|
+
declare function Content$10(props: CollapsibleContentProps): react.JSX.Element;
|
|
228
228
|
//#endregion
|
|
229
229
|
//#region src/components/collapsible/anatomy/root.d.ts
|
|
230
230
|
interface CollapsibleRootProps extends Omit<Props$3, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -247,11 +247,11 @@ declare function CollapsibleRootProvider(props: CollapsibleRootProviderProps): r
|
|
|
247
247
|
//#endregion
|
|
248
248
|
//#region src/components/collapsible/anatomy/trigger.d.ts
|
|
249
249
|
interface CollapsibleTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
250
|
-
declare function Trigger$10(props: CollapsibleTriggerProps):
|
|
250
|
+
declare function Trigger$10(props: CollapsibleTriggerProps): react.JSX.Element;
|
|
251
251
|
//#endregion
|
|
252
252
|
//#region src/components/collapsible/anatomy/indicator.d.ts
|
|
253
253
|
interface CollapsibleIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
254
|
-
declare function Indicator$4(props: CollapsibleIndicatorProps):
|
|
254
|
+
declare function Indicator$4(props: CollapsibleIndicatorProps): react.JSX.Element;
|
|
255
255
|
//#endregion
|
|
256
256
|
//#region src/components/collapsible/modules/anatomy.d.ts
|
|
257
257
|
declare const Collapsible: typeof CollapsibleRoot & {
|
|
@@ -264,19 +264,19 @@ declare const Collapsible: typeof CollapsibleRoot & {
|
|
|
264
264
|
//#endregion
|
|
265
265
|
//#region src/components/combobox/anatomy/clear-trigger.d.ts
|
|
266
266
|
interface ComboboxClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
267
|
-
declare function ClearTrigger$2(props: ComboboxClearTriggerProps):
|
|
267
|
+
declare function ClearTrigger$2(props: ComboboxClearTriggerProps): react.JSX.Element;
|
|
268
268
|
//#endregion
|
|
269
269
|
//#region src/components/combobox/anatomy/content.d.ts
|
|
270
270
|
interface ComboboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
271
|
-
declare function Content$9(props: ComboboxContentProps):
|
|
271
|
+
declare function Content$9(props: ComboboxContentProps): react.JSX.Element;
|
|
272
272
|
//#endregion
|
|
273
273
|
//#region src/components/combobox/anatomy/control.d.ts
|
|
274
274
|
interface ComboboxControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
275
|
-
declare function Control$7(props: ComboboxControlProps):
|
|
275
|
+
declare function Control$7(props: ComboboxControlProps): react.JSX.Element;
|
|
276
276
|
//#endregion
|
|
277
277
|
//#region src/components/combobox/anatomy/input.d.ts
|
|
278
278
|
interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
279
|
-
declare function Input$3(props: ComboboxInputProps):
|
|
279
|
+
declare function Input$3(props: ComboboxInputProps): react.JSX.Element;
|
|
280
280
|
//#endregion
|
|
281
281
|
//#region src/components/combobox/anatomy/item.d.ts
|
|
282
282
|
interface ComboboxItemProps extends ItemProps$2, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -288,23 +288,23 @@ declare function ItemGroup$3(props: ComboboxItemGroupProps): react_jsx_runtime0.
|
|
|
288
288
|
//#endregion
|
|
289
289
|
//#region src/components/combobox/anatomy/item-group-label.d.ts
|
|
290
290
|
interface ComboboxItemGroupLabelProps extends Omit<ItemGroupLabelProps, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
291
|
-
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps):
|
|
291
|
+
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps): react.JSX.Element;
|
|
292
292
|
//#endregion
|
|
293
293
|
//#region src/components/combobox/anatomy/item-indicator.d.ts
|
|
294
294
|
interface ComboboxItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
295
|
-
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps):
|
|
295
|
+
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps): react.JSX.Element;
|
|
296
296
|
//#endregion
|
|
297
297
|
//#region src/components/combobox/anatomy/item-text.d.ts
|
|
298
298
|
interface ComboboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
299
|
-
declare function ItemText$4(props: ComboboxItemTextProps):
|
|
299
|
+
declare function ItemText$4(props: ComboboxItemTextProps): react.JSX.Element;
|
|
300
300
|
//#endregion
|
|
301
301
|
//#region src/components/combobox/anatomy/label.d.ts
|
|
302
302
|
interface ComboboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
303
|
-
declare function Label$10(props: ComboboxLabelProps):
|
|
303
|
+
declare function Label$10(props: ComboboxLabelProps): react.JSX.Element;
|
|
304
304
|
//#endregion
|
|
305
305
|
//#region src/components/combobox/anatomy/positioner.d.ts
|
|
306
306
|
interface ComboboxPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
307
|
-
declare function Positioner$6(props: ComboboxPositionerProps):
|
|
307
|
+
declare function Positioner$6(props: ComboboxPositionerProps): react.JSX.Element;
|
|
308
308
|
//#endregion
|
|
309
309
|
//#region src/components/combobox/anatomy/root.d.ts
|
|
310
310
|
interface ComboboxRootProps extends Omit<Props$4, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
@@ -327,7 +327,7 @@ declare function RootProvider$16(props: ComboboxRootProviderProps): react_jsx_ru
|
|
|
327
327
|
//#endregion
|
|
328
328
|
//#region src/components/combobox/anatomy/trigger.d.ts
|
|
329
329
|
interface ComboboxTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
330
|
-
declare function Trigger$9(props: ComboboxTriggerProps):
|
|
330
|
+
declare function Trigger$9(props: ComboboxTriggerProps): react.JSX.Element;
|
|
331
331
|
//#endregion
|
|
332
332
|
//#region src/components/combobox/modules/anatomy.d.ts
|
|
333
333
|
declare const Combobox: typeof Root$17 & {
|
|
@@ -349,43 +349,43 @@ declare const Combobox: typeof Root$17 & {
|
|
|
349
349
|
//#endregion
|
|
350
350
|
//#region src/components/date-picker/anatomy/content.d.ts
|
|
351
351
|
interface DatePickerContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
352
|
-
declare function Content$8(props: DatePickerContentProps):
|
|
352
|
+
declare function Content$8(props: DatePickerContentProps): react.JSX.Element;
|
|
353
353
|
//#endregion
|
|
354
354
|
//#region src/components/date-picker/anatomy/control.d.ts
|
|
355
355
|
interface DatePickerControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
356
|
-
declare function Control$6(props: DatePickerControlProps):
|
|
356
|
+
declare function Control$6(props: DatePickerControlProps): react.JSX.Element;
|
|
357
357
|
//#endregion
|
|
358
358
|
//#region src/components/date-picker/anatomy/input.d.ts
|
|
359
359
|
interface DatePickerInputProps extends InputProps, PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
360
|
-
declare function Input$2(props: DatePickerInputProps):
|
|
360
|
+
declare function Input$2(props: DatePickerInputProps): react.JSX.Element;
|
|
361
361
|
//#endregion
|
|
362
362
|
//#region src/components/date-picker/anatomy/label.d.ts
|
|
363
363
|
interface DatePickerLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
364
|
-
declare function Label$9(props: DatePickerLabelProps):
|
|
364
|
+
declare function Label$9(props: DatePickerLabelProps): react.JSX.Element;
|
|
365
365
|
//#endregion
|
|
366
366
|
//#region src/components/date-picker/anatomy/month-select.d.ts
|
|
367
367
|
interface DatePickerMonthSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
368
|
-
declare function MonthSelect(props: DatePickerMonthSelectProps):
|
|
368
|
+
declare function MonthSelect(props: DatePickerMonthSelectProps): react.JSX.Element;
|
|
369
369
|
//#endregion
|
|
370
370
|
//#region src/components/date-picker/anatomy/next-trigger.d.ts
|
|
371
371
|
interface DatePickerNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
372
|
-
declare function NextTrigger$2(props: DatePickerNextTriggerProps):
|
|
372
|
+
declare function NextTrigger$2(props: DatePickerNextTriggerProps): react.JSX.Element;
|
|
373
373
|
//#endregion
|
|
374
374
|
//#region src/components/date-picker/anatomy/positioner.d.ts
|
|
375
375
|
interface DatePickerPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
376
|
-
declare function Positioner$5(props: DatePickerPositionerProps):
|
|
376
|
+
declare function Positioner$5(props: DatePickerPositionerProps): react.JSX.Element;
|
|
377
377
|
//#endregion
|
|
378
378
|
//#region src/components/date-picker/anatomy/preset-trigger.d.ts
|
|
379
379
|
interface DatePickerPresetTriggerProps extends PresetTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
380
|
-
declare function PresetTrigger(props: DatePickerPresetTriggerProps):
|
|
380
|
+
declare function PresetTrigger(props: DatePickerPresetTriggerProps): react.JSX.Element;
|
|
381
381
|
//#endregion
|
|
382
382
|
//#region src/components/date-picker/anatomy/prev-trigger.d.ts
|
|
383
383
|
interface DatePickerPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
384
|
-
declare function PrevTrigger$2(props: DatePickerPrevTriggerProps):
|
|
384
|
+
declare function PrevTrigger$2(props: DatePickerPrevTriggerProps): react.JSX.Element;
|
|
385
385
|
//#endregion
|
|
386
386
|
//#region src/components/date-picker/anatomy/range-text.d.ts
|
|
387
387
|
interface DatePickerRangeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
388
|
-
declare function RangeText(props: DatePickerRangeTextProps):
|
|
388
|
+
declare function RangeText(props: DatePickerRangeTextProps): react.JSX.Element;
|
|
389
389
|
//#endregion
|
|
390
390
|
//#region src/components/date-picker/anatomy/root.d.ts
|
|
391
391
|
interface DatePickerRootProps extends Omit<Props$5, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -408,11 +408,11 @@ declare function RootProvider$15(props: DatePickerRootProviderProps): react_jsx_
|
|
|
408
408
|
//#endregion
|
|
409
409
|
//#region src/components/date-picker/anatomy/table.d.ts
|
|
410
410
|
interface DatePickerTableProps extends PropsWithElement<'table'>, HTMLAttributes<'table'> {}
|
|
411
|
-
declare function Table(props: DatePickerTableProps):
|
|
411
|
+
declare function Table(props: DatePickerTableProps): react.JSX.Element;
|
|
412
412
|
//#endregion
|
|
413
413
|
//#region src/components/date-picker/anatomy/table-body.d.ts
|
|
414
414
|
interface DatePickerTableBodyProps extends PropsWithElement<'tbody'>, HTMLAttributes<'tbody'> {}
|
|
415
|
-
declare function TableBody(props: DatePickerTableBodyProps):
|
|
415
|
+
declare function TableBody(props: DatePickerTableBodyProps): react.JSX.Element;
|
|
416
416
|
//#endregion
|
|
417
417
|
//#region src/internal/union.d.ts
|
|
418
418
|
type Union<T, U> = { [K in keyof T]: K extends keyof U ? U[K] | T[K] : T[K] } & Omit<U, keyof T>;
|
|
@@ -423,23 +423,23 @@ declare function TableCell(props: DatePickerTableCellProps): react_jsx_runtime0.
|
|
|
423
423
|
//#endregion
|
|
424
424
|
//#region src/components/date-picker/anatomy/table-cell-trigger.d.ts
|
|
425
425
|
interface DatePickerTableCellTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
426
|
-
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps):
|
|
426
|
+
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps): react.JSX.Element;
|
|
427
427
|
//#endregion
|
|
428
428
|
//#region src/components/date-picker/anatomy/table-head.d.ts
|
|
429
429
|
interface DatePickerTableHeadProps extends PropsWithElement<'thead'>, HTMLAttributes<'thead'> {}
|
|
430
|
-
declare function TableHead(props: DatePickerTableHeadProps):
|
|
430
|
+
declare function TableHead(props: DatePickerTableHeadProps): react.JSX.Element;
|
|
431
431
|
//#endregion
|
|
432
432
|
//#region src/components/date-picker/anatomy/table-header.d.ts
|
|
433
433
|
interface DatePickerTableHeaderProps extends PropsWithElement<'th'>, HTMLAttributes<'th'> {}
|
|
434
|
-
declare function TableHeader(props: DatePickerTableHeaderProps):
|
|
434
|
+
declare function TableHeader(props: DatePickerTableHeaderProps): react.JSX.Element;
|
|
435
435
|
//#endregion
|
|
436
436
|
//#region src/components/date-picker/anatomy/table-row.d.ts
|
|
437
437
|
interface DatePickerTableRowProps extends PropsWithElement<'tr'>, HTMLAttributes<'tr'> {}
|
|
438
|
-
declare function TableRow(props: DatePickerTableRowProps):
|
|
438
|
+
declare function TableRow(props: DatePickerTableRowProps): react.JSX.Element;
|
|
439
439
|
//#endregion
|
|
440
440
|
//#region src/components/date-picker/anatomy/trigger.d.ts
|
|
441
441
|
interface DatePickerTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
442
|
-
declare function Trigger$8(props: DatePickerTriggerProps):
|
|
442
|
+
declare function Trigger$8(props: DatePickerTriggerProps): react.JSX.Element;
|
|
443
443
|
//#endregion
|
|
444
444
|
//#region src/components/date-picker/anatomy/view.d.ts
|
|
445
445
|
interface DatePickerViewProps extends ViewProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -447,15 +447,15 @@ declare function View(props: DatePickerViewProps): react_jsx_runtime0.JSX.Elemen
|
|
|
447
447
|
//#endregion
|
|
448
448
|
//#region src/components/date-picker/anatomy/view-control.d.ts
|
|
449
449
|
interface DatePickerViewControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
450
|
-
declare function ViewControl(props: DatePickerViewControlProps):
|
|
450
|
+
declare function ViewControl(props: DatePickerViewControlProps): react.JSX.Element;
|
|
451
451
|
//#endregion
|
|
452
452
|
//#region src/components/date-picker/anatomy/view-trigger.d.ts
|
|
453
453
|
interface DatePickerViewTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
454
|
-
declare function ViewTrigger(props: DatePickerViewTriggerProps):
|
|
454
|
+
declare function ViewTrigger(props: DatePickerViewTriggerProps): react.JSX.Element;
|
|
455
455
|
//#endregion
|
|
456
456
|
//#region src/components/date-picker/anatomy/year-select.d.ts
|
|
457
457
|
interface DatePickerYearSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
458
|
-
declare function YearSelect(props: DatePickerYearSelectProps):
|
|
458
|
+
declare function YearSelect(props: DatePickerYearSelectProps): react.JSX.Element;
|
|
459
459
|
//#endregion
|
|
460
460
|
//#region src/components/date-picker/modules/anatomy.d.ts
|
|
461
461
|
declare const DatePicker: typeof Root$16 & {
|
|
@@ -487,23 +487,23 @@ declare const DatePicker: typeof Root$16 & {
|
|
|
487
487
|
//#endregion
|
|
488
488
|
//#region src/components/dialog/anatomy/backdrop.d.ts
|
|
489
489
|
interface DialogBackdropProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
490
|
-
declare function Backdrop(props: DialogBackdropProps):
|
|
490
|
+
declare function Backdrop(props: DialogBackdropProps): react.JSX.Element;
|
|
491
491
|
//#endregion
|
|
492
492
|
//#region src/components/dialog/anatomy/close-trigger.d.ts
|
|
493
493
|
interface DialogCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
494
|
-
declare function CloseTrigger$3(props: DialogCloseTriggerProps):
|
|
494
|
+
declare function CloseTrigger$3(props: DialogCloseTriggerProps): react.JSX.Element;
|
|
495
495
|
//#endregion
|
|
496
496
|
//#region src/components/dialog/anatomy/content.d.ts
|
|
497
497
|
interface DialogContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
498
|
-
declare function Content$7(props: DialogContentProps):
|
|
498
|
+
declare function Content$7(props: DialogContentProps): react.JSX.Element;
|
|
499
499
|
//#endregion
|
|
500
500
|
//#region src/components/dialog/anatomy/description.d.ts
|
|
501
501
|
interface DialogDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
502
|
-
declare function Description$2(props: DialogDescriptionProps):
|
|
502
|
+
declare function Description$2(props: DialogDescriptionProps): react.JSX.Element;
|
|
503
503
|
//#endregion
|
|
504
504
|
//#region src/components/dialog/anatomy/positioner.d.ts
|
|
505
505
|
interface DialogPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
506
|
-
declare function Positioner$4(props: DialogPositionerProps):
|
|
506
|
+
declare function Positioner$4(props: DialogPositionerProps): react.JSX.Element;
|
|
507
507
|
//#endregion
|
|
508
508
|
//#region src/components/dialog/anatomy/root.d.ts
|
|
509
509
|
interface DialogRootProps extends PropsWithChildren, Omit<Props$6, 'id'> {}
|
|
@@ -526,11 +526,11 @@ declare function RootProvider$14(props: DialogRootProviderProps): react_jsx_runt
|
|
|
526
526
|
//#endregion
|
|
527
527
|
//#region src/components/dialog/anatomy/title.d.ts
|
|
528
528
|
interface DialogTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
529
|
-
declare function Title$3(props: DialogTitleProps):
|
|
529
|
+
declare function Title$3(props: DialogTitleProps): react.JSX.Element;
|
|
530
530
|
//#endregion
|
|
531
531
|
//#region src/components/dialog/anatomy/trigger.d.ts
|
|
532
532
|
interface DialogTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
533
|
-
declare function Trigger$7(props: DialogTriggerProps):
|
|
533
|
+
declare function Trigger$7(props: DialogTriggerProps): react.JSX.Element;
|
|
534
534
|
//#endregion
|
|
535
535
|
//#region src/components/dialog/modules/anatomy.d.ts
|
|
536
536
|
declare const Dialog: typeof Root$15 & {
|
|
@@ -547,15 +547,15 @@ declare const Dialog: typeof Root$15 & {
|
|
|
547
547
|
//#endregion
|
|
548
548
|
//#region src/components/file-upload/anatomy/clear-trigger.d.ts
|
|
549
549
|
interface FileUploadClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
550
|
-
declare function ClearTrigger$1(props: FileUploadClearTriggerProps):
|
|
550
|
+
declare function ClearTrigger$1(props: FileUploadClearTriggerProps): react.JSX.Element;
|
|
551
551
|
//#endregion
|
|
552
552
|
//#region src/components/file-upload/anatomy/dropzone.d.ts
|
|
553
553
|
interface FileUploadDropzoneProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
554
|
-
declare function Dropzone(props: FileUploadDropzoneProps):
|
|
554
|
+
declare function Dropzone(props: FileUploadDropzoneProps): react.JSX.Element;
|
|
555
555
|
//#endregion
|
|
556
556
|
//#region src/components/file-upload/anatomy/hidden-input.d.ts
|
|
557
557
|
interface FileUploadHiddenInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
558
|
-
declare function HiddenInput$4(props: FileUploadHiddenInputProps):
|
|
558
|
+
declare function HiddenInput$4(props: FileUploadHiddenInputProps): react.JSX.Element;
|
|
559
559
|
//#endregion
|
|
560
560
|
//#region src/components/file-upload/anatomy/item.d.ts
|
|
561
561
|
interface FileUploadItemProps extends ItemProps$3, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -563,23 +563,23 @@ declare function Item$9(props: FileUploadItemProps): react_jsx_runtime0.JSX.Elem
|
|
|
563
563
|
//#endregion
|
|
564
564
|
//#region src/components/file-upload/anatomy/item-delete-trigger.d.ts
|
|
565
565
|
interface FileUploadItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
566
|
-
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps):
|
|
566
|
+
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps): react.JSX.Element;
|
|
567
567
|
//#endregion
|
|
568
568
|
//#region src/components/file-upload/anatomy/item-group.d.ts
|
|
569
569
|
interface FileUploadItemGroupProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
570
|
-
declare function ItemGroup$2(props: FileUploadItemGroupProps):
|
|
570
|
+
declare function ItemGroup$2(props: FileUploadItemGroupProps): react.JSX.Element;
|
|
571
571
|
//#endregion
|
|
572
572
|
//#region src/components/file-upload/anatomy/item-name.d.ts
|
|
573
573
|
interface FileUploadItemNameProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
574
|
-
declare function ItemName(props: FileUploadItemNameProps):
|
|
574
|
+
declare function ItemName(props: FileUploadItemNameProps): react.JSX.Element;
|
|
575
575
|
//#endregion
|
|
576
576
|
//#region src/components/file-upload/anatomy/item-size-text.d.ts
|
|
577
577
|
interface FileUploadItemSizeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
578
|
-
declare function ItemSizeText(props: FileUploadItemSizeTextProps):
|
|
578
|
+
declare function ItemSizeText(props: FileUploadItemSizeTextProps): react.JSX.Element;
|
|
579
579
|
//#endregion
|
|
580
580
|
//#region src/components/file-upload/anatomy/label.d.ts
|
|
581
581
|
interface FileUploadLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
582
|
-
declare function Label$8(props: FileUploadLabelProps):
|
|
582
|
+
declare function Label$8(props: FileUploadLabelProps): react.JSX.Element;
|
|
583
583
|
//#endregion
|
|
584
584
|
//#region src/components/file-upload/anatomy/root.d.ts
|
|
585
585
|
interface FileUploadRootProps extends Omit<Props$7, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {}
|
|
@@ -602,7 +602,7 @@ declare function RootProvider$13(props: FileUploadRootProviderProps): react_jsx_
|
|
|
602
602
|
//#endregion
|
|
603
603
|
//#region src/components/file-upload/anatomy/trigger.d.ts
|
|
604
604
|
interface FileUploadTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
605
|
-
declare function Trigger$6(props: FileUploadTriggerProps):
|
|
605
|
+
declare function Trigger$6(props: FileUploadTriggerProps): react.JSX.Element;
|
|
606
606
|
//#endregion
|
|
607
607
|
//#region src/components/file-upload/modules/anatomy.d.ts
|
|
608
608
|
declare const FileUpload: typeof Root$14 & {
|
|
@@ -622,35 +622,35 @@ declare const FileUpload: typeof Root$14 & {
|
|
|
622
622
|
//#endregion
|
|
623
623
|
//#region src/components/floating-panel/anatomy/body.d.ts
|
|
624
624
|
interface FloatingPanelBodyProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
625
|
-
declare function Body(props: FloatingPanelBodyProps):
|
|
625
|
+
declare function Body(props: FloatingPanelBodyProps): react.JSX.Element;
|
|
626
626
|
//#endregion
|
|
627
627
|
//#region src/components/floating-panel/anatomy/close-trigger.d.ts
|
|
628
628
|
interface FloatingPanelCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
629
|
-
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps):
|
|
629
|
+
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps): react.JSX.Element;
|
|
630
630
|
//#endregion
|
|
631
631
|
//#region src/components/floating-panel/anatomy/content.d.ts
|
|
632
632
|
interface FloatingPanelContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
633
|
-
declare function Content$6(props: FloatingPanelContentProps):
|
|
633
|
+
declare function Content$6(props: FloatingPanelContentProps): react.JSX.Element;
|
|
634
634
|
//#endregion
|
|
635
635
|
//#region src/components/floating-panel/anatomy/control.d.ts
|
|
636
636
|
interface FloatingPanelControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
637
|
-
declare function Control$5(props: FloatingPanelControlProps):
|
|
637
|
+
declare function Control$5(props: FloatingPanelControlProps): react.JSX.Element;
|
|
638
638
|
//#endregion
|
|
639
639
|
//#region src/components/floating-panel/anatomy/drag-trigger.d.ts
|
|
640
640
|
interface FloatingPanelDragTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
641
|
-
declare function DragTrigger(props: FloatingPanelDragTriggerProps):
|
|
641
|
+
declare function DragTrigger(props: FloatingPanelDragTriggerProps): react.JSX.Element;
|
|
642
642
|
//#endregion
|
|
643
643
|
//#region src/components/floating-panel/anatomy/header.d.ts
|
|
644
644
|
interface FloatingPanelHeaderProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
645
|
-
declare function Header(props: FloatingPanelHeaderProps):
|
|
645
|
+
declare function Header(props: FloatingPanelHeaderProps): react.JSX.Element;
|
|
646
646
|
//#endregion
|
|
647
647
|
//#region src/components/floating-panel/anatomy/positioner.d.ts
|
|
648
648
|
interface FloatingPanelPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
649
|
-
declare function Positioner$3(props: FloatingPanelPositionerProps):
|
|
649
|
+
declare function Positioner$3(props: FloatingPanelPositionerProps): react.JSX.Element;
|
|
650
650
|
//#endregion
|
|
651
651
|
//#region src/components/floating-panel/anatomy/resize-trigger.d.ts
|
|
652
652
|
interface FloatingPanelResizeTriggerProps extends ResizeTriggerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
653
|
-
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps):
|
|
653
|
+
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps): react.JSX.Element;
|
|
654
654
|
//#endregion
|
|
655
655
|
//#region src/components/floating-panel/anatomy/root.d.ts
|
|
656
656
|
interface FloatingPanelRootProps extends PropsWithChildren, Omit<Props$8, 'id'> {}
|
|
@@ -673,15 +673,15 @@ declare function RootProvider$12(props: FloatingPanelRootProviderProps): react_j
|
|
|
673
673
|
//#endregion
|
|
674
674
|
//#region src/components/floating-panel/anatomy/stage-trigger.d.ts
|
|
675
675
|
interface FloatingPanelStageTriggerProps extends StageTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
676
|
-
declare function StageTrigger(props: FloatingPanelStageTriggerProps):
|
|
676
|
+
declare function StageTrigger(props: FloatingPanelStageTriggerProps): react.JSX.Element;
|
|
677
677
|
//#endregion
|
|
678
678
|
//#region src/components/floating-panel/anatomy/title.d.ts
|
|
679
679
|
interface FloatingPanelTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
680
|
-
declare function Title$2(props: FloatingPanelTitleProps):
|
|
680
|
+
declare function Title$2(props: FloatingPanelTitleProps): react.JSX.Element;
|
|
681
681
|
//#endregion
|
|
682
682
|
//#region src/components/floating-panel/anatomy/trigger.d.ts
|
|
683
683
|
interface FloatingPanelTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
684
|
-
declare function Trigger$5(props: FloatingPanelTriggerProps):
|
|
684
|
+
declare function Trigger$5(props: FloatingPanelTriggerProps): react.JSX.Element;
|
|
685
685
|
//#endregion
|
|
686
686
|
//#region src/components/floating-panel/modules/anatomy.d.ts
|
|
687
687
|
declare const FloatingPanel: typeof Root$13 & {
|
|
@@ -710,7 +710,7 @@ declare function ItemGroup$1(props: ListboxItemGroupProps): react_jsx_runtime0.J
|
|
|
710
710
|
//#endregion
|
|
711
711
|
//#region src/components/listbox/anatomy/item-group-label.d.ts
|
|
712
712
|
interface ListboxItemGroupLabelProps extends Omit<ItemGroupLabelProps$1, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
713
|
-
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps):
|
|
713
|
+
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react.JSX.Element;
|
|
714
714
|
//#endregion
|
|
715
715
|
//#region src/components/listbox/anatomy/item.d.ts
|
|
716
716
|
interface ListboxItemProps extends ItemProps$4, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -718,15 +718,15 @@ declare function Item$8(props: ListboxItemProps): react_jsx_runtime0.JSX.Element
|
|
|
718
718
|
//#endregion
|
|
719
719
|
//#region src/components/listbox/anatomy/input.d.ts
|
|
720
720
|
interface ListboxInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
721
|
-
declare function Input$1(props: ListboxInputProps):
|
|
721
|
+
declare function Input$1(props: ListboxInputProps): react.JSX.Element;
|
|
722
722
|
//#endregion
|
|
723
723
|
//#region src/components/listbox/anatomy/item-indicator.d.ts
|
|
724
724
|
interface ListboxItemIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
725
|
-
declare function ItemIndicator$1(props: ListboxItemIndicatorProps):
|
|
725
|
+
declare function ItemIndicator$1(props: ListboxItemIndicatorProps): react.JSX.Element;
|
|
726
726
|
//#endregion
|
|
727
727
|
//#region src/components/listbox/anatomy/item-text.d.ts
|
|
728
728
|
interface ListboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
729
|
-
declare function ItemText$3(props: ListboxItemTextProps):
|
|
729
|
+
declare function ItemText$3(props: ListboxItemTextProps): react.JSX.Element;
|
|
730
730
|
//#endregion
|
|
731
731
|
//#region src/components/listbox/modules/provider.d.ts
|
|
732
732
|
declare function useListbox(props: Omit<Props$9, 'id'>): Api$9<PropTypes>;
|
|
@@ -745,11 +745,11 @@ declare function RootProvider$11(props: ListboxRootProviderProps): react_jsx_run
|
|
|
745
745
|
//#endregion
|
|
746
746
|
//#region src/components/listbox/anatomy/label.d.ts
|
|
747
747
|
interface ListboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
748
|
-
declare function Label$7(props: ListboxLabelProps):
|
|
748
|
+
declare function Label$7(props: ListboxLabelProps): react.JSX.Element;
|
|
749
749
|
//#endregion
|
|
750
750
|
//#region src/components/listbox/anatomy/content.d.ts
|
|
751
751
|
interface ListboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
752
|
-
declare function Content$5(props: ListboxContentProps):
|
|
752
|
+
declare function Content$5(props: ListboxContentProps): react.JSX.Element;
|
|
753
753
|
//#endregion
|
|
754
754
|
//#region src/components/listbox/modules/anatomy.d.ts
|
|
755
755
|
declare const Listbox: typeof Root$12 & {
|
|
@@ -767,19 +767,19 @@ declare const Listbox: typeof Root$12 & {
|
|
|
767
767
|
//#endregion
|
|
768
768
|
//#region src/components/menu/anatomy/arrow.d.ts
|
|
769
769
|
interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
770
|
-
declare function Arrow$2(props: MenuArrowProps):
|
|
770
|
+
declare function Arrow$2(props: MenuArrowProps): react.JSX.Element;
|
|
771
771
|
//#endregion
|
|
772
772
|
//#region src/components/menu/anatomy/arrow-tip.d.ts
|
|
773
773
|
interface MenuArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
774
|
-
declare function ArrowTip$2(props: MenuArrowTipProps):
|
|
774
|
+
declare function ArrowTip$2(props: MenuArrowTipProps): react.JSX.Element;
|
|
775
775
|
//#endregion
|
|
776
776
|
//#region src/components/menu/anatomy/content.d.ts
|
|
777
777
|
interface MenuContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
778
|
-
declare function Content$4(props: MenuContentProps):
|
|
778
|
+
declare function Content$4(props: MenuContentProps): react.JSX.Element;
|
|
779
779
|
//#endregion
|
|
780
780
|
//#region src/components/menu/anatomy/context-trigger.d.ts
|
|
781
781
|
interface MenuContextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
782
|
-
declare function ContextTrigger(props: MenuContextTriggerProps):
|
|
782
|
+
declare function ContextTrigger(props: MenuContextTriggerProps): react.JSX.Element;
|
|
783
783
|
//#endregion
|
|
784
784
|
//#region src/components/menu/anatomy/item.d.ts
|
|
785
785
|
interface MenuItemProps extends ItemProps$5, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -791,7 +791,7 @@ declare function ItemGroup(props: MenuItemGroupProps): react_jsx_runtime0.JSX.El
|
|
|
791
791
|
//#endregion
|
|
792
792
|
//#region src/components/menu/anatomy/item-group-label.d.ts
|
|
793
793
|
interface MenuItemGroupLabelProps extends Omit<ItemGroupLabelProps$2, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
794
|
-
declare function ItemGroupLabel(props: MenuItemGroupLabelProps):
|
|
794
|
+
declare function ItemGroupLabel(props: MenuItemGroupLabelProps): react.JSX.Element;
|
|
795
795
|
//#endregion
|
|
796
796
|
//#region src/components/menu/anatomy/option-item.d.ts
|
|
797
797
|
interface MenuOptionItemProps extends OptionItemProps, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -799,19 +799,19 @@ declare function OptionItem(props: MenuOptionItemProps): react_jsx_runtime0.JSX.
|
|
|
799
799
|
//#endregion
|
|
800
800
|
//#region src/components/menu/anatomy/item-text.d.ts
|
|
801
801
|
interface MenuItemTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
802
|
-
declare function ItemText$2(props: MenuItemTextProps):
|
|
802
|
+
declare function ItemText$2(props: MenuItemTextProps): react.JSX.Element;
|
|
803
803
|
//#endregion
|
|
804
804
|
//#region src/components/menu/anatomy/item-indicator.d.ts
|
|
805
805
|
interface MenuItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
806
|
-
declare function ItemIndicator(props: MenuItemIndicatorProps):
|
|
806
|
+
declare function ItemIndicator(props: MenuItemIndicatorProps): react.JSX.Element;
|
|
807
807
|
//#endregion
|
|
808
808
|
//#region src/components/menu/anatomy/indicator.d.ts
|
|
809
809
|
interface MenuIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
810
|
-
declare function Indicator$3(props: MenuIndicatorProps):
|
|
810
|
+
declare function Indicator$3(props: MenuIndicatorProps): react.JSX.Element;
|
|
811
811
|
//#endregion
|
|
812
812
|
//#region src/components/menu/anatomy/positioner.d.ts
|
|
813
813
|
interface MenuPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
814
|
-
declare function Positioner$2(props: MenuPositionerProps):
|
|
814
|
+
declare function Positioner$2(props: MenuPositionerProps): react.JSX.Element;
|
|
815
815
|
//#endregion
|
|
816
816
|
//#region src/components/menu/anatomy/root.d.ts
|
|
817
817
|
interface MenuRootProps extends Omit<Props$10, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div', 'id' | 'dir'>, 'onSelect' | 'aria-label'> {}
|
|
@@ -836,11 +836,11 @@ declare function RootProvider$10(props: MenuRootProviderProps): react_jsx_runtim
|
|
|
836
836
|
//#endregion
|
|
837
837
|
//#region src/components/menu/anatomy/separator.d.ts
|
|
838
838
|
interface MenuSeparatorProps extends PropsWithElement<'hr'>, HTMLAttributes<'hr', 'id' | 'dir' | 'children'> {}
|
|
839
|
-
declare function Separator$1(props: MenuSeparatorProps):
|
|
839
|
+
declare function Separator$1(props: MenuSeparatorProps): react.JSX.Element;
|
|
840
840
|
//#endregion
|
|
841
841
|
//#region src/components/menu/anatomy/trigger.d.ts
|
|
842
842
|
interface MenuTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
843
|
-
declare function Trigger$4(props: MenuTriggerProps):
|
|
843
|
+
declare function Trigger$4(props: MenuTriggerProps): react.JSX.Element;
|
|
844
844
|
//#endregion
|
|
845
845
|
//#region src/components/menu/anatomy/trigger-item.d.ts
|
|
846
846
|
interface MenuTriggerItemProps extends ItemProps$5, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -880,39 +880,39 @@ declare function NavigationRoot(props: NavigationRootProps): react_jsx_runtime0.
|
|
|
880
880
|
//#endregion
|
|
881
881
|
//#region src/components/navigation/anatomy/menu.d.ts
|
|
882
882
|
interface NavigationMenuProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
883
|
-
declare function NavigationMenu(props: NavigationMenuProps):
|
|
883
|
+
declare function NavigationMenu(props: NavigationMenuProps): react.JSX.Element;
|
|
884
884
|
//#endregion
|
|
885
885
|
//#region src/components/navigation/anatomy/header.d.ts
|
|
886
886
|
interface NavigationHeaderProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
887
|
-
declare function NavigationHeader(props: NavigationHeaderProps):
|
|
887
|
+
declare function NavigationHeader(props: NavigationHeaderProps): react.JSX.Element;
|
|
888
888
|
//#endregion
|
|
889
889
|
//#region src/components/navigation/anatomy/content.d.ts
|
|
890
890
|
interface NavigationContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
891
|
-
declare function NavigationContent(props: NavigationContentProps):
|
|
891
|
+
declare function NavigationContent(props: NavigationContentProps): react.JSX.Element;
|
|
892
892
|
//#endregion
|
|
893
893
|
//#region src/components/navigation/anatomy/footer.d.ts
|
|
894
894
|
interface NavigationFooterProps extends PropsWithElement<'footer'>, HTMLAttributes<'footer'> {}
|
|
895
|
-
declare function NavigationFooter(props: NavigationFooterProps):
|
|
895
|
+
declare function NavigationFooter(props: NavigationFooterProps): react.JSX.Element;
|
|
896
896
|
//#endregion
|
|
897
897
|
//#region src/components/navigation/anatomy/group.d.ts
|
|
898
898
|
interface NavigationGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
899
|
-
declare function NavigationGroup(props: NavigationGroupProps):
|
|
899
|
+
declare function NavigationGroup(props: NavigationGroupProps): react.JSX.Element;
|
|
900
900
|
//#endregion
|
|
901
901
|
//#region src/components/navigation/anatomy/label.d.ts
|
|
902
902
|
interface NavigationLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
903
|
-
declare function NavigationLabel(props: NavigationLabelProps):
|
|
903
|
+
declare function NavigationLabel(props: NavigationLabelProps): react.JSX.Element;
|
|
904
904
|
//#endregion
|
|
905
905
|
//#region src/components/navigation/anatomy/trigger.d.ts
|
|
906
906
|
interface NavigationTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
907
|
-
declare function NavigationTrigger(props: NavigationTriggerProps):
|
|
907
|
+
declare function NavigationTrigger(props: NavigationTriggerProps): react.JSX.Element;
|
|
908
908
|
//#endregion
|
|
909
909
|
//#region src/components/navigation/anatomy/trigger-anchor.d.ts
|
|
910
910
|
interface NavigationTriggerAnchorProps extends PropsWithElement<'a'>, HTMLAttributes<'a'> {}
|
|
911
|
-
declare function NavigationTriggerAnchor(props: NavigationTriggerAnchorProps):
|
|
911
|
+
declare function NavigationTriggerAnchor(props: NavigationTriggerAnchorProps): react.JSX.Element;
|
|
912
912
|
//#endregion
|
|
913
913
|
//#region src/components/navigation/anatomy/trigger-text.d.ts
|
|
914
914
|
interface NavigationTriggerTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
915
|
-
declare function NavigationTriggerText(props: NavigationTriggerTextProps):
|
|
915
|
+
declare function NavigationTriggerText(props: NavigationTriggerTextProps): react.JSX.Element;
|
|
916
916
|
//#endregion
|
|
917
917
|
//#region src/components/navigation/modules/anatomy.d.ts
|
|
918
918
|
declare const Navigation: typeof NavigationRoot & {
|
|
@@ -929,27 +929,27 @@ declare const Navigation: typeof NavigationRoot & {
|
|
|
929
929
|
//#endregion
|
|
930
930
|
//#region src/components/pagination/anatomy/ellipsis.d.ts
|
|
931
931
|
interface PaginationEllipsisProps extends EllipsisProps, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
932
|
-
declare function Ellipsis(props: PaginationEllipsisProps):
|
|
932
|
+
declare function Ellipsis(props: PaginationEllipsisProps): react.JSX.Element;
|
|
933
933
|
//#endregion
|
|
934
934
|
//#region src/components/pagination/anatomy/first-trigger.d.ts
|
|
935
935
|
interface PaginationFirstTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
936
|
-
declare function FirstTrigger(props: PaginationFirstTriggerProps):
|
|
936
|
+
declare function FirstTrigger(props: PaginationFirstTriggerProps): react.JSX.Element;
|
|
937
937
|
//#endregion
|
|
938
938
|
//#region src/components/pagination/anatomy/item.d.ts
|
|
939
939
|
interface PaginationItemProps extends ItemProps$6, PropsWithElement<'a'>, HTMLAttributes<'a', 'type'> {}
|
|
940
|
-
declare function Item$6(props: PaginationItemProps):
|
|
940
|
+
declare function Item$6(props: PaginationItemProps): react.JSX.Element;
|
|
941
941
|
//#endregion
|
|
942
942
|
//#region src/components/pagination/anatomy/last-trigger.d.ts
|
|
943
943
|
interface PaginationLastTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
944
|
-
declare function LastTrigger(props: PaginationLastTriggerProps):
|
|
944
|
+
declare function LastTrigger(props: PaginationLastTriggerProps): react.JSX.Element;
|
|
945
945
|
//#endregion
|
|
946
946
|
//#region src/components/pagination/anatomy/next-trigger.d.ts
|
|
947
947
|
interface PaginationNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
948
|
-
declare function NextTrigger$1(props: PaginationNextTriggerProps):
|
|
948
|
+
declare function NextTrigger$1(props: PaginationNextTriggerProps): react.JSX.Element;
|
|
949
949
|
//#endregion
|
|
950
950
|
//#region src/components/pagination/anatomy/prev-trigger.d.ts
|
|
951
951
|
interface PaginationPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
952
|
-
declare function PrevTrigger$1(props: PaginationPrevTriggerProps):
|
|
952
|
+
declare function PrevTrigger$1(props: PaginationPrevTriggerProps): react.JSX.Element;
|
|
953
953
|
//#endregion
|
|
954
954
|
//#region src/components/pagination/modules/provider.d.ts
|
|
955
955
|
declare function usePagination(props?: Omit<Props$11, 'id'>): Api$11<PropTypes>;
|
|
@@ -984,23 +984,23 @@ declare const Pagination: typeof PaginationRoot & {
|
|
|
984
984
|
//#endregion
|
|
985
985
|
//#region src/components/popover/anatomy/anchor.d.ts
|
|
986
986
|
interface PopoverAnchorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
987
|
-
declare function Anchor(props: PopoverAnchorProps):
|
|
987
|
+
declare function Anchor(props: PopoverAnchorProps): react.JSX.Element;
|
|
988
988
|
//#endregion
|
|
989
989
|
//#region src/components/popover/anatomy/close-trigger.d.ts
|
|
990
990
|
interface PopoverCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
991
|
-
declare function CloseTrigger$1(props: PopoverCloseTriggerProps):
|
|
991
|
+
declare function CloseTrigger$1(props: PopoverCloseTriggerProps): react.JSX.Element;
|
|
992
992
|
//#endregion
|
|
993
993
|
//#region src/components/popover/anatomy/content.d.ts
|
|
994
994
|
interface PopoverContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
995
|
-
declare function Content$3(props: PopoverContentProps):
|
|
995
|
+
declare function Content$3(props: PopoverContentProps): react.JSX.Element;
|
|
996
996
|
//#endregion
|
|
997
997
|
//#region src/components/popover/anatomy/description.d.ts
|
|
998
998
|
interface PopoverDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
999
|
-
declare function Description$1(props: PopoverDescriptionProps):
|
|
999
|
+
declare function Description$1(props: PopoverDescriptionProps): react.JSX.Element;
|
|
1000
1000
|
//#endregion
|
|
1001
1001
|
//#region src/components/popover/anatomy/positioner.d.ts
|
|
1002
1002
|
interface PopoverPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1003
|
-
declare function Positioner$1(props: PopoverPositionerProps):
|
|
1003
|
+
declare function Positioner$1(props: PopoverPositionerProps): react.JSX.Element;
|
|
1004
1004
|
//#endregion
|
|
1005
1005
|
//#region src/components/popover/anatomy/root.d.ts
|
|
1006
1006
|
interface PopoverRootProps extends PropsWithChildren, Omit<Props$12, 'id'> {}
|
|
@@ -1023,19 +1023,19 @@ declare function RootProvider$9(props: PopoverRootProviderProps): react_jsx_runt
|
|
|
1023
1023
|
//#endregion
|
|
1024
1024
|
//#region src/components/popover/anatomy/title.d.ts
|
|
1025
1025
|
interface PopoverTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1026
|
-
declare function Title$1(props: PopoverTitleProps):
|
|
1026
|
+
declare function Title$1(props: PopoverTitleProps): react.JSX.Element;
|
|
1027
1027
|
//#endregion
|
|
1028
1028
|
//#region src/components/popover/anatomy/arrow.d.ts
|
|
1029
1029
|
interface PopoverArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1030
|
-
declare function Arrow$1(props: PopoverArrowProps):
|
|
1030
|
+
declare function Arrow$1(props: PopoverArrowProps): react.JSX.Element;
|
|
1031
1031
|
//#endregion
|
|
1032
1032
|
//#region src/components/popover/anatomy/arrow-tip.d.ts
|
|
1033
1033
|
interface PopoverArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1034
|
-
declare function ArrowTip$1(props: PopoverArrowTipProps):
|
|
1034
|
+
declare function ArrowTip$1(props: PopoverArrowTipProps): react.JSX.Element;
|
|
1035
1035
|
//#endregion
|
|
1036
1036
|
//#region src/components/popover/anatomy/trigger.d.ts
|
|
1037
1037
|
interface PopoverTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1038
|
-
declare function Trigger$3(props: PopoverTriggerProps):
|
|
1038
|
+
declare function Trigger$3(props: PopoverTriggerProps): react.JSX.Element;
|
|
1039
1039
|
//#endregion
|
|
1040
1040
|
//#region src/components/popover/modules/anatomy.d.ts
|
|
1041
1041
|
declare const Popover: typeof Root$10 & {
|
|
@@ -1074,11 +1074,11 @@ declare const Portal: typeof Root$9;
|
|
|
1074
1074
|
//#endregion
|
|
1075
1075
|
//#region src/components/progress/anatomy/label.d.ts
|
|
1076
1076
|
interface ProgressLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1077
|
-
declare function Label$6(props: ProgressLabelProps):
|
|
1077
|
+
declare function Label$6(props: ProgressLabelProps): react.JSX.Element;
|
|
1078
1078
|
//#endregion
|
|
1079
1079
|
//#region src/components/progress/anatomy/range.d.ts
|
|
1080
1080
|
interface ProgressRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1081
|
-
declare function Range$1(props: ProgressRangeProps):
|
|
1081
|
+
declare function Range$1(props: ProgressRangeProps): react.JSX.Element;
|
|
1082
1082
|
//#endregion
|
|
1083
1083
|
//#region src/components/progress/anatomy/root.d.ts
|
|
1084
1084
|
interface ProgressRootProps extends Omit<Props$13, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1101,23 +1101,23 @@ declare function RootProvider$8(props: ProgressRootProviderProps): react_jsx_run
|
|
|
1101
1101
|
//#endregion
|
|
1102
1102
|
//#region src/components/progress/anatomy/track.d.ts
|
|
1103
1103
|
interface ProgressTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1104
|
-
declare function Track$1(props: ProgressTrackProps):
|
|
1104
|
+
declare function Track$1(props: ProgressTrackProps): react.JSX.Element;
|
|
1105
1105
|
//#endregion
|
|
1106
1106
|
//#region src/components/progress/anatomy/value-text.d.ts
|
|
1107
1107
|
interface ProgressValueTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1108
|
-
declare function ValueText$1(props: ProgressValueTextProps):
|
|
1108
|
+
declare function ValueText$1(props: ProgressValueTextProps): react.JSX.Element;
|
|
1109
1109
|
//#endregion
|
|
1110
1110
|
//#region src/components/progress/anatomy/circle.d.ts
|
|
1111
1111
|
interface ProgressCircleProps extends PropsWithElement<'svg'>, HTMLAttributes<'svg'> {}
|
|
1112
|
-
declare function Circle(props: ProgressCircleProps):
|
|
1112
|
+
declare function Circle(props: ProgressCircleProps): react.JSX.Element;
|
|
1113
1113
|
//#endregion
|
|
1114
1114
|
//#region src/components/progress/anatomy/circle-range.d.ts
|
|
1115
1115
|
interface ProgressCircleRangeProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1116
|
-
declare function CircleRange(props: ProgressCircleRangeProps):
|
|
1116
|
+
declare function CircleRange(props: ProgressCircleRangeProps): react.JSX.Element;
|
|
1117
1117
|
//#endregion
|
|
1118
1118
|
//#region src/components/progress/anatomy/circle-track.d.ts
|
|
1119
1119
|
interface ProgressCircleTrackProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1120
|
-
declare function CircleTrack(props: ProgressCircleTrackProps):
|
|
1120
|
+
declare function CircleTrack(props: ProgressCircleTrackProps): react.JSX.Element;
|
|
1121
1121
|
//#endregion
|
|
1122
1122
|
//#region src/components/progress/modules/anatomy.d.ts
|
|
1123
1123
|
declare const Progress: typeof Root$8 & {
|
|
@@ -1134,11 +1134,11 @@ declare const Progress: typeof Root$8 & {
|
|
|
1134
1134
|
//#endregion
|
|
1135
1135
|
//#region src/components/rating-group/anatomy/control.d.ts
|
|
1136
1136
|
interface RatingGroupControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1137
|
-
declare function Control$4(props: RatingGroupControlProps):
|
|
1137
|
+
declare function Control$4(props: RatingGroupControlProps): react.JSX.Element;
|
|
1138
1138
|
//#endregion
|
|
1139
1139
|
//#region src/components/rating-group/anatomy/hidden-input.d.ts
|
|
1140
1140
|
interface RatingGroupHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'id' | 'dir' | 'children'> {}
|
|
1141
|
-
declare function HiddenInput$3(props: RatingGroupHiddenInputProps):
|
|
1141
|
+
declare function HiddenInput$3(props: RatingGroupHiddenInputProps): react.JSX.Element;
|
|
1142
1142
|
//#endregion
|
|
1143
1143
|
//#region src/components/rating-group/anatomy/item.d.ts
|
|
1144
1144
|
interface RatingGroupItemProps extends ItemProps$7, PropsWithElement<'span'>, HTMLAttributes<'span', 'id' | 'dir'> {
|
|
@@ -1161,11 +1161,11 @@ interface RatingGroupItemProps extends ItemProps$7, PropsWithElement<'span'>, HT
|
|
|
1161
1161
|
*/
|
|
1162
1162
|
full?: ReactNode;
|
|
1163
1163
|
}
|
|
1164
|
-
declare function Item$5(props: RatingGroupItemProps):
|
|
1164
|
+
declare function Item$5(props: RatingGroupItemProps): react.JSX.Element;
|
|
1165
1165
|
//#endregion
|
|
1166
1166
|
//#region src/components/rating-group/anatomy/label.d.ts
|
|
1167
1167
|
interface RatingGroupLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
1168
|
-
declare function Label$5(props: RatingGroupLabelProps):
|
|
1168
|
+
declare function Label$5(props: RatingGroupLabelProps): react.JSX.Element;
|
|
1169
1169
|
//#endregion
|
|
1170
1170
|
//#region src/components/rating-group/anatomy/root.d.ts
|
|
1171
1171
|
interface RatingGroupRootProps extends Omit<Props$14, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1198,19 +1198,19 @@ declare const RatingGroup: typeof Root$7 & {
|
|
|
1198
1198
|
//#endregion
|
|
1199
1199
|
//#region src/components/segmented-control/anatomy/control.d.ts
|
|
1200
1200
|
interface SegmentedControlControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1201
|
-
declare function Control$3(props: SegmentedControlControlProps):
|
|
1201
|
+
declare function Control$3(props: SegmentedControlControlProps): react.JSX.Element;
|
|
1202
1202
|
//#endregion
|
|
1203
1203
|
//#region src/components/segmented-control/anatomy/indicator.d.ts
|
|
1204
1204
|
interface SegmentedControlIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1205
|
-
declare function Indicator$2(props: SegmentedControlIndicatorProps):
|
|
1205
|
+
declare function Indicator$2(props: SegmentedControlIndicatorProps): react.JSX.Element;
|
|
1206
1206
|
//#endregion
|
|
1207
1207
|
//#region src/components/segmented-control/anatomy/item-hidden-input.d.ts
|
|
1208
1208
|
interface SegmentedControlItemHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1209
|
-
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps):
|
|
1209
|
+
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps): react.JSX.Element;
|
|
1210
1210
|
//#endregion
|
|
1211
1211
|
//#region src/components/segmented-control/anatomy/item-text.d.ts
|
|
1212
1212
|
interface SegmentedControlItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1213
|
-
declare function ItemText$1(props: SegmentedControlItemTextProps):
|
|
1213
|
+
declare function ItemText$1(props: SegmentedControlItemTextProps): react.JSX.Element;
|
|
1214
1214
|
//#endregion
|
|
1215
1215
|
//#region src/components/segmented-control/anatomy/item.d.ts
|
|
1216
1216
|
interface SegmentedControlItemProps extends ItemProps$8, PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
@@ -1218,7 +1218,7 @@ declare function Item$4(props: SegmentedControlItemProps): react_jsx_runtime0.JS
|
|
|
1218
1218
|
//#endregion
|
|
1219
1219
|
//#region src/components/segmented-control/anatomy/label.d.ts
|
|
1220
1220
|
interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1221
|
-
declare function Label$4(props: SegmentedControlLabelProps):
|
|
1221
|
+
declare function Label$4(props: SegmentedControlLabelProps): react.JSX.Element;
|
|
1222
1222
|
//#endregion
|
|
1223
1223
|
//#region src/components/segmented-control/modules/provider.d.ts
|
|
1224
1224
|
declare function useSegmentedControl(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
@@ -1253,27 +1253,27 @@ declare const SegmentedControl: typeof Root$6 & {
|
|
|
1253
1253
|
//#endregion
|
|
1254
1254
|
//#region src/components/slider/anatomy/control.d.ts
|
|
1255
1255
|
interface SliderControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1256
|
-
declare function Control$2(props: SliderControlProps):
|
|
1256
|
+
declare function Control$2(props: SliderControlProps): react.JSX.Element;
|
|
1257
1257
|
//#endregion
|
|
1258
1258
|
//#region src/components/slider/anatomy/hidden-input.d.ts
|
|
1259
1259
|
interface SliderHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1260
|
-
declare function HiddenInput$2(props: SliderHiddenInputProps):
|
|
1260
|
+
declare function HiddenInput$2(props: SliderHiddenInputProps): react.JSX.Element;
|
|
1261
1261
|
//#endregion
|
|
1262
1262
|
//#region src/components/slider/anatomy/label.d.ts
|
|
1263
1263
|
interface SliderLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1264
|
-
declare function Label$3(props: SliderLabelProps):
|
|
1264
|
+
declare function Label$3(props: SliderLabelProps): react.JSX.Element;
|
|
1265
1265
|
//#endregion
|
|
1266
1266
|
//#region src/components/slider/anatomy/marker-group.d.ts
|
|
1267
1267
|
interface SliderMarkerGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1268
|
-
declare function MarkerGroup(props: SliderMarkerGroupProps):
|
|
1268
|
+
declare function MarkerGroup(props: SliderMarkerGroupProps): react.JSX.Element;
|
|
1269
1269
|
//#endregion
|
|
1270
1270
|
//#region src/components/slider/anatomy/marker.d.ts
|
|
1271
1271
|
interface SliderMarkerProps extends MarkerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1272
|
-
declare function Marker(props: SliderMarkerProps):
|
|
1272
|
+
declare function Marker(props: SliderMarkerProps): react.JSX.Element;
|
|
1273
1273
|
//#endregion
|
|
1274
1274
|
//#region src/components/slider/anatomy/range.d.ts
|
|
1275
1275
|
interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1276
|
-
declare function Range(props: SliderRangeProps):
|
|
1276
|
+
declare function Range(props: SliderRangeProps): react.JSX.Element;
|
|
1277
1277
|
//#endregion
|
|
1278
1278
|
//#region src/components/slider/modules/provider.d.ts
|
|
1279
1279
|
declare function useSlider(props?: Omit<Props$16, 'id'>): Api$16<PropTypes>;
|
|
@@ -1300,11 +1300,11 @@ declare function Thumb$1(props: SliderThumbProps): react_jsx_runtime0.JSX.Elemen
|
|
|
1300
1300
|
//#endregion
|
|
1301
1301
|
//#region src/components/slider/anatomy/track.d.ts
|
|
1302
1302
|
interface SliderTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1303
|
-
declare function Track(props: SliderTrackProps):
|
|
1303
|
+
declare function Track(props: SliderTrackProps): react.JSX.Element;
|
|
1304
1304
|
//#endregion
|
|
1305
1305
|
//#region src/components/slider/anatomy/value-text.d.ts
|
|
1306
1306
|
interface SliderValueTextProps extends PropsWithElement<'output'>, HTMLAttributes<'output'> {}
|
|
1307
|
-
declare function ValueText(props: SliderValueTextProps):
|
|
1307
|
+
declare function ValueText(props: SliderValueTextProps): react.JSX.Element;
|
|
1308
1308
|
//#endregion
|
|
1309
1309
|
//#region src/components/slider/modules/anatomy.d.ts
|
|
1310
1310
|
declare const Slider: typeof SliderRoot$1 & {
|
|
@@ -1323,11 +1323,11 @@ declare const Slider: typeof SliderRoot$1 & {
|
|
|
1323
1323
|
//#endregion
|
|
1324
1324
|
//#region src/components/steps/anatomy/content.d.ts
|
|
1325
1325
|
interface StepsContentProps extends ItemProps$9, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1326
|
-
declare function Content$2(props: StepsContentProps):
|
|
1326
|
+
declare function Content$2(props: StepsContentProps): react.JSX.Element;
|
|
1327
1327
|
//#endregion
|
|
1328
1328
|
//#region src/components/steps/anatomy/indicator.d.ts
|
|
1329
1329
|
interface StepsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1330
|
-
declare function Indicator$1(props: StepsIndicatorProps):
|
|
1330
|
+
declare function Indicator$1(props: StepsIndicatorProps): react.JSX.Element;
|
|
1331
1331
|
//#endregion
|
|
1332
1332
|
//#region src/components/steps/anatomy/item.d.ts
|
|
1333
1333
|
interface StepsItemProps extends ItemProps$9, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -1335,15 +1335,15 @@ declare function Item$3(props: StepsItemProps): react_jsx_runtime0.JSX.Element;
|
|
|
1335
1335
|
//#endregion
|
|
1336
1336
|
//#region src/components/steps/anatomy/list.d.ts
|
|
1337
1337
|
interface StepsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1338
|
-
declare function List$1(props: StepsListProps):
|
|
1338
|
+
declare function List$1(props: StepsListProps): react.JSX.Element;
|
|
1339
1339
|
//#endregion
|
|
1340
1340
|
//#region src/components/steps/anatomy/next-trigger.d.ts
|
|
1341
1341
|
interface StepsNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1342
|
-
declare function NextTrigger(props: StepsNextTriggerProps):
|
|
1342
|
+
declare function NextTrigger(props: StepsNextTriggerProps): react.JSX.Element;
|
|
1343
1343
|
//#endregion
|
|
1344
1344
|
//#region src/components/steps/anatomy/prev-trigger.d.ts
|
|
1345
1345
|
interface StepsPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1346
|
-
declare function PrevTrigger(props: StepsPrevTriggerProps):
|
|
1346
|
+
declare function PrevTrigger(props: StepsPrevTriggerProps): react.JSX.Element;
|
|
1347
1347
|
//#endregion
|
|
1348
1348
|
//#region src/components/steps/anatomy/root.d.ts
|
|
1349
1349
|
interface StepsRootProps extends Omit<Props$17, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -1366,11 +1366,11 @@ declare function RootProvider$5(props: StepsRootProviderProps): react_jsx_runtim
|
|
|
1366
1366
|
//#endregion
|
|
1367
1367
|
//#region src/components/steps/anatomy/separator.d.ts
|
|
1368
1368
|
interface StepsSeparatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1369
|
-
declare function Separator(props: StepsSeparatorProps):
|
|
1369
|
+
declare function Separator(props: StepsSeparatorProps): react.JSX.Element;
|
|
1370
1370
|
//#endregion
|
|
1371
1371
|
//#region src/components/steps/anatomy/trigger.d.ts
|
|
1372
1372
|
interface StepsTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1373
|
-
declare function Trigger$2(props: StepsTriggerProps):
|
|
1373
|
+
declare function Trigger$2(props: StepsTriggerProps): react.JSX.Element;
|
|
1374
1374
|
//#endregion
|
|
1375
1375
|
//#region src/components/steps/modules/anatomy.d.ts
|
|
1376
1376
|
declare const Steps: typeof SliderRoot & {
|
|
@@ -1388,15 +1388,15 @@ declare const Steps: typeof SliderRoot & {
|
|
|
1388
1388
|
//#endregion
|
|
1389
1389
|
//#region src/components/switch/anatomy/control.d.ts
|
|
1390
1390
|
interface SwitchControlProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1391
|
-
declare function Control$1(props: SwitchControlProps):
|
|
1391
|
+
declare function Control$1(props: SwitchControlProps): react.JSX.Element;
|
|
1392
1392
|
//#endregion
|
|
1393
1393
|
//#region src/components/switch/anatomy/hidden-input.d.ts
|
|
1394
1394
|
interface SwitchHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1395
|
-
declare function HiddenInput$1(props: SwitchHiddenInputProps):
|
|
1395
|
+
declare function HiddenInput$1(props: SwitchHiddenInputProps): react.JSX.Element;
|
|
1396
1396
|
//#endregion
|
|
1397
1397
|
//#region src/components/switch/anatomy/label.d.ts
|
|
1398
1398
|
interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1399
|
-
declare function Label$2(props: SwitchLabelProps):
|
|
1399
|
+
declare function Label$2(props: SwitchLabelProps): react.JSX.Element;
|
|
1400
1400
|
//#endregion
|
|
1401
1401
|
//#region src/components/switch/modules/provider.d.ts
|
|
1402
1402
|
declare function useSwitch(props?: Omit<Props$18, 'id'>): Api$18<PropTypes>;
|
|
@@ -1415,7 +1415,7 @@ declare function RootProvider$4(props: SwitchRootProviderProps): react_jsx_runti
|
|
|
1415
1415
|
//#endregion
|
|
1416
1416
|
//#region src/components/switch/anatomy/thumb.d.ts
|
|
1417
1417
|
interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1418
|
-
declare function Thumb(props: SwitchThumbProps):
|
|
1418
|
+
declare function Thumb(props: SwitchThumbProps): react.JSX.Element;
|
|
1419
1419
|
//#endregion
|
|
1420
1420
|
//#region src/components/switch/anatomy/root.d.ts
|
|
1421
1421
|
interface SwitchRootProps extends Omit<Props$18, 'id'>, PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
@@ -1433,15 +1433,15 @@ declare const Switch: typeof Root$5 & {
|
|
|
1433
1433
|
//#endregion
|
|
1434
1434
|
//#region src/components/tabs/anatomy/content.d.ts
|
|
1435
1435
|
interface TabsContentProps extends ContentProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1436
|
-
declare function Content$1(props: TabsContentProps):
|
|
1436
|
+
declare function Content$1(props: TabsContentProps): react.JSX.Element;
|
|
1437
1437
|
//#endregion
|
|
1438
1438
|
//#region src/components/tabs/anatomy/indicator.d.ts
|
|
1439
1439
|
interface TabsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1440
|
-
declare function Indicator(props: TabsIndicatorProps):
|
|
1440
|
+
declare function Indicator(props: TabsIndicatorProps): react.JSX.Element;
|
|
1441
1441
|
//#endregion
|
|
1442
1442
|
//#region src/components/tabs/anatomy/list.d.ts
|
|
1443
1443
|
interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1444
|
-
declare function List(props: TabsListProps):
|
|
1444
|
+
declare function List(props: TabsListProps): react.JSX.Element;
|
|
1445
1445
|
//#endregion
|
|
1446
1446
|
//#region src/components/tabs/anatomy/root.d.ts
|
|
1447
1447
|
interface TabsRootProps extends Omit<Props$19, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1464,7 +1464,7 @@ declare function RootProvider$3(props: TabsRootProviderProps): react_jsx_runtime
|
|
|
1464
1464
|
//#endregion
|
|
1465
1465
|
//#region src/components/tabs/anatomy/trigger.d.ts
|
|
1466
1466
|
interface TabsTriggerProps extends TriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
1467
|
-
declare function Trigger$1(props: TabsTriggerProps):
|
|
1467
|
+
declare function Trigger$1(props: TabsTriggerProps): react.JSX.Element;
|
|
1468
1468
|
//#endregion
|
|
1469
1469
|
//#region src/components/tabs/modules/anatomy.d.ts
|
|
1470
1470
|
declare const Tabs: typeof Root$4 & {
|
|
@@ -1478,19 +1478,19 @@ declare const Tabs: typeof Root$4 & {
|
|
|
1478
1478
|
//#endregion
|
|
1479
1479
|
//#region src/components/tags-input/anatomy/clear-trigger.d.ts
|
|
1480
1480
|
interface TagsInputClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1481
|
-
declare function ClearTrigger(props: TagsInputClearTriggerProps):
|
|
1481
|
+
declare function ClearTrigger(props: TagsInputClearTriggerProps): react.JSX.Element;
|
|
1482
1482
|
//#endregion
|
|
1483
1483
|
//#region src/components/tags-input/anatomy/control.d.ts
|
|
1484
1484
|
interface TagsInputControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1485
|
-
declare function Control(props: TagsInputControlProps):
|
|
1485
|
+
declare function Control(props: TagsInputControlProps): react.JSX.Element;
|
|
1486
1486
|
//#endregion
|
|
1487
1487
|
//#region src/components/tags-input/anatomy/hidden-input.d.ts
|
|
1488
1488
|
interface TagsInputHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1489
|
-
declare function HiddenInput(props: TagsInputHiddenInputProps):
|
|
1489
|
+
declare function HiddenInput(props: TagsInputHiddenInputProps): react.JSX.Element;
|
|
1490
1490
|
//#endregion
|
|
1491
1491
|
//#region src/components/tags-input/anatomy/input.d.ts
|
|
1492
1492
|
interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1493
|
-
declare function Input(props: TagsInputInputProps):
|
|
1493
|
+
declare function Input(props: TagsInputInputProps): react.JSX.Element;
|
|
1494
1494
|
//#endregion
|
|
1495
1495
|
//#region src/components/tags-input/anatomy/item.d.ts
|
|
1496
1496
|
interface TagsInputItemProps extends ItemProps$10, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
@@ -1498,23 +1498,23 @@ declare function Item$2(props: TagsInputItemProps): react_jsx_runtime0.JSX.Eleme
|
|
|
1498
1498
|
//#endregion
|
|
1499
1499
|
//#region src/components/tags-input/anatomy/item-delete-trigger.d.ts
|
|
1500
1500
|
interface TagsInputItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1501
|
-
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps):
|
|
1501
|
+
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps): react.JSX.Element;
|
|
1502
1502
|
//#endregion
|
|
1503
1503
|
//#region src/components/tags-input/anatomy/item-input.d.ts
|
|
1504
1504
|
interface TagsInputItemInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1505
|
-
declare function ItemInput(props: TagsInputItemInputProps):
|
|
1505
|
+
declare function ItemInput(props: TagsInputItemInputProps): react.JSX.Element;
|
|
1506
1506
|
//#endregion
|
|
1507
1507
|
//#region src/components/tags-input/anatomy/item-preview.d.ts
|
|
1508
1508
|
interface TagsInputItemPreviewProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1509
|
-
declare function ItemPreview(props: TagsInputItemPreviewProps):
|
|
1509
|
+
declare function ItemPreview(props: TagsInputItemPreviewProps): react.JSX.Element;
|
|
1510
1510
|
//#endregion
|
|
1511
1511
|
//#region src/components/tags-input/anatomy/item-text.d.ts
|
|
1512
1512
|
interface TagsInputItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1513
|
-
declare function ItemText(props: TagsInputItemTextProps):
|
|
1513
|
+
declare function ItemText(props: TagsInputItemTextProps): react.JSX.Element;
|
|
1514
1514
|
//#endregion
|
|
1515
1515
|
//#region src/components/tags-input/anatomy/label.d.ts
|
|
1516
1516
|
interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1517
|
-
declare function Label$1(props: TagsInputLabelProps):
|
|
1517
|
+
declare function Label$1(props: TagsInputLabelProps): react.JSX.Element;
|
|
1518
1518
|
//#endregion
|
|
1519
1519
|
//#region src/components/tags-input/anatomy/root.d.ts
|
|
1520
1520
|
interface TagsInputRootProps extends Omit<Props$20, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1553,28 +1553,33 @@ declare const TagsInput: typeof Root$3 & {
|
|
|
1553
1553
|
//#endregion
|
|
1554
1554
|
//#region src/components/toast/anatomy/close-trigger.d.ts
|
|
1555
1555
|
interface ToastCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1556
|
-
declare function CloseTrigger(props: ToastCloseTriggerProps):
|
|
1556
|
+
declare function CloseTrigger(props: ToastCloseTriggerProps): react.JSX.Element;
|
|
1557
1557
|
//#endregion
|
|
1558
1558
|
//#region src/components/toast/anatomy/description.d.ts
|
|
1559
1559
|
interface ToastDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1560
|
-
declare function Description(props: ToastDescriptionProps):
|
|
1560
|
+
declare function Description(props: ToastDescriptionProps): react.JSX.Element;
|
|
1561
|
+
//#endregion
|
|
1562
|
+
//#region src/components/toast/anatomy/root.d.ts
|
|
1563
|
+
interface ToastOptions<T = any> extends Options<T> {
|
|
1564
|
+
index: number;
|
|
1565
|
+
}
|
|
1566
|
+
interface ToastRootProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1567
|
+
toast: Omit<ToastOptions, 'id' | 'parent'>;
|
|
1568
|
+
index?: number;
|
|
1569
|
+
}
|
|
1570
|
+
declare function Root$2(props: ToastRootProps): react_jsx_runtime0.JSX.Element;
|
|
1561
1571
|
//#endregion
|
|
1562
1572
|
//#region src/components/toast/anatomy/group.d.ts
|
|
1573
|
+
type ToastProps<T = any> = Props$21<T> & ToastOptions<T>;
|
|
1563
1574
|
interface ToastGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'children'> {
|
|
1564
1575
|
toaster: Store;
|
|
1565
|
-
children?: (toast:
|
|
1576
|
+
children?: (toast: ToastProps) => JSX.Element | null;
|
|
1566
1577
|
}
|
|
1567
1578
|
declare function Group(props: ToastGroupProps): react_jsx_runtime0.JSX.Element;
|
|
1568
1579
|
//#endregion
|
|
1569
1580
|
//#region src/components/toast/anatomy/message.d.ts
|
|
1570
1581
|
interface ToastMessageProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1571
|
-
declare function Message(props: ToastMessageProps):
|
|
1572
|
-
//#endregion
|
|
1573
|
-
//#region src/components/toast/anatomy/root.d.ts
|
|
1574
|
-
interface ToastRootProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
1575
|
-
toast: Omit<Options, 'id' | 'parent'>;
|
|
1576
|
-
}
|
|
1577
|
-
declare function Root$2(props: ToastRootProps): react_jsx_runtime0.JSX.Element;
|
|
1582
|
+
declare function Message(props: ToastMessageProps): react.JSX.Element;
|
|
1578
1583
|
//#endregion
|
|
1579
1584
|
//#region src/components/toast/anatomy/root-context.d.ts
|
|
1580
1585
|
interface ToastRootContextProps {
|
|
@@ -1584,11 +1589,11 @@ declare function RootContext$3(props: ToastRootContextProps): ReactNode;
|
|
|
1584
1589
|
//#endregion
|
|
1585
1590
|
//#region src/components/toast/anatomy/title.d.ts
|
|
1586
1591
|
interface ToastTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1587
|
-
declare function Title(props: ToastTitleProps):
|
|
1592
|
+
declare function Title(props: ToastTitleProps): react.JSX.Element;
|
|
1588
1593
|
//#endregion
|
|
1589
1594
|
//#region src/components/toast/anatomy/action-trigger.d.ts
|
|
1590
1595
|
interface ToastActionTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1591
|
-
declare function ActionTrigger(props: ToastActionTriggerProps):
|
|
1596
|
+
declare function ActionTrigger(props: ToastActionTriggerProps): react.JSX.Element;
|
|
1592
1597
|
//#endregion
|
|
1593
1598
|
//#region src/components/toast/modules/anatomy.d.ts
|
|
1594
1599
|
declare const Toast: typeof Root$2 & {
|
|
@@ -1603,7 +1608,7 @@ declare const Toast: typeof Root$2 & {
|
|
|
1603
1608
|
//#endregion
|
|
1604
1609
|
//#region src/components/toggle-group/anatomy/item.d.ts
|
|
1605
1610
|
interface ToggleGroupItemProps extends ItemProps$11, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1606
|
-
declare function Item$1(props: ToggleGroupItemProps):
|
|
1611
|
+
declare function Item$1(props: ToggleGroupItemProps): react.JSX.Element;
|
|
1607
1612
|
//#endregion
|
|
1608
1613
|
//#region src/components/toggle-group/anatomy/root.d.ts
|
|
1609
1614
|
interface ToggleGroupRootProps extends Omit<Props$22, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1633,15 +1638,15 @@ declare const ToggleGroup: typeof ToggleGroupRoot & {
|
|
|
1633
1638
|
//#endregion
|
|
1634
1639
|
//#region src/components/tooltip/anatomy/arrow.d.ts
|
|
1635
1640
|
interface TooltipArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1636
|
-
declare function Arrow(props: TooltipArrowProps):
|
|
1641
|
+
declare function Arrow(props: TooltipArrowProps): react.JSX.Element;
|
|
1637
1642
|
//#endregion
|
|
1638
1643
|
//#region src/components/tooltip/anatomy/arrow-tip.d.ts
|
|
1639
1644
|
interface TooltipArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1640
|
-
declare function ArrowTip(props: TooltipArrowTipProps):
|
|
1645
|
+
declare function ArrowTip(props: TooltipArrowTipProps): react.JSX.Element;
|
|
1641
1646
|
//#endregion
|
|
1642
1647
|
//#region src/components/tooltip/anatomy/content.d.ts
|
|
1643
1648
|
interface TooltipContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1644
|
-
declare function Content(props: TooltipContentProps):
|
|
1649
|
+
declare function Content(props: TooltipContentProps): react.JSX.Element;
|
|
1645
1650
|
//#endregion
|
|
1646
1651
|
//#region src/components/tooltip/anatomy/positioner.d.ts
|
|
1647
1652
|
interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -1668,7 +1673,7 @@ declare function RootProvider$1(props: TooltipRootProviderProps): react_jsx_runt
|
|
|
1668
1673
|
//#endregion
|
|
1669
1674
|
//#region src/components/tooltip/anatomy/trigger.d.ts
|
|
1670
1675
|
interface TooltipTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1671
|
-
declare function Trigger(props: TooltipTriggerProps):
|
|
1676
|
+
declare function Trigger(props: TooltipTriggerProps): react.JSX.Element;
|
|
1672
1677
|
//#endregion
|
|
1673
1678
|
//#region src/components/tooltip/modules/anatomy.d.ts
|
|
1674
1679
|
declare const Tooltip: typeof Root$1 & {
|
|
@@ -1683,31 +1688,31 @@ declare const Tooltip: typeof Root$1 & {
|
|
|
1683
1688
|
//#endregion
|
|
1684
1689
|
//#region src/components/tree-view/anatomy/branch-content.d.ts
|
|
1685
1690
|
interface TreeViewBranchContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1686
|
-
declare function BranchContent(props: TreeViewBranchContentProps):
|
|
1691
|
+
declare function BranchContent(props: TreeViewBranchContentProps): react.JSX.Element;
|
|
1687
1692
|
//#endregion
|
|
1688
1693
|
//#region src/components/tree-view/anatomy/branch-control.d.ts
|
|
1689
1694
|
interface TreeViewBranchControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1690
|
-
declare function BranchControl(props: TreeViewBranchControlProps):
|
|
1695
|
+
declare function BranchControl(props: TreeViewBranchControlProps): react.JSX.Element;
|
|
1691
1696
|
//#endregion
|
|
1692
1697
|
//#region src/components/tree-view/anatomy/branch-indent-guide.d.ts
|
|
1693
1698
|
interface TreeViewBranchIndentGuideProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1694
|
-
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps):
|
|
1699
|
+
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps): react.JSX.Element;
|
|
1695
1700
|
//#endregion
|
|
1696
1701
|
//#region src/components/tree-view/anatomy/branch-indicator.d.ts
|
|
1697
1702
|
interface TreeViewBranchIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1698
|
-
declare function BranchIndicator(props: TreeViewBranchIndicatorProps):
|
|
1703
|
+
declare function BranchIndicator(props: TreeViewBranchIndicatorProps): react.JSX.Element;
|
|
1699
1704
|
//#endregion
|
|
1700
1705
|
//#region src/components/tree-view/anatomy/branch-text.d.ts
|
|
1701
1706
|
interface TreeViewBranchTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1702
|
-
declare function BranchText(props: TreeViewBranchTextProps):
|
|
1707
|
+
declare function BranchText(props: TreeViewBranchTextProps): react.JSX.Element;
|
|
1703
1708
|
//#endregion
|
|
1704
1709
|
//#region src/components/tree-view/anatomy/branch.d.ts
|
|
1705
1710
|
interface TreeViewBranchProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1706
|
-
declare function Branch(props: TreeViewBranchProps):
|
|
1711
|
+
declare function Branch(props: TreeViewBranchProps): react.JSX.Element;
|
|
1707
1712
|
//#endregion
|
|
1708
1713
|
//#region src/components/tree-view/anatomy/item.d.ts
|
|
1709
1714
|
interface TreeViewItemProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1710
|
-
declare function Item(props: TreeViewItemProps):
|
|
1715
|
+
declare function Item(props: TreeViewItemProps): react.JSX.Element;
|
|
1711
1716
|
//#endregion
|
|
1712
1717
|
//#region src/components/tree-view/anatomy/label.d.ts
|
|
1713
1718
|
interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'> {
|
|
@@ -1753,7 +1758,7 @@ declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>
|
|
|
1753
1758
|
//#endregion
|
|
1754
1759
|
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
1755
1760
|
interface TreeViewTreeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1756
|
-
declare function Tree(props: TreeViewTreeProps):
|
|
1761
|
+
declare function Tree(props: TreeViewTreeProps): react.JSX.Element;
|
|
1757
1762
|
//#endregion
|
|
1758
1763
|
//#region src/components/tree-view/modules/anatomy.d.ts
|
|
1759
1764
|
declare const TreeView: typeof Root & {
|