@skeletonlabs/skeleton-react 4.6.0 → 4.6.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 +168 -168
- package/dist/index.mjs +222 -222
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react0 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";
|
|
@@ -42,11 +42,11 @@ interface PropsWithElement<T extends keyof JSX.IntrinsicElements> {
|
|
|
42
42
|
//#endregion
|
|
43
43
|
//#region src/components/accordion/anatomy/item-content.d.ts
|
|
44
44
|
interface AccordionItemContentProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
45
|
-
declare function ItemContent(props: AccordionItemContentProps):
|
|
45
|
+
declare function ItemContent(props: AccordionItemContentProps): react0.JSX.Element;
|
|
46
46
|
//#endregion
|
|
47
47
|
//#region src/components/accordion/anatomy/item-indicator.d.ts
|
|
48
48
|
interface AccordionItemIndicatorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
49
|
-
declare function ItemIndicator$3(props: AccordionItemIndicatorProps):
|
|
49
|
+
declare function ItemIndicator$3(props: AccordionItemIndicatorProps): react0.JSX.Element;
|
|
50
50
|
//#endregion
|
|
51
51
|
//#region src/components/accordion/anatomy/item.d.ts
|
|
52
52
|
interface AccordionItemProps extends ItemProps, PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -73,7 +73,7 @@ declare function RootProvider$16(props: AccordionRootProviderProps): react_jsx_r
|
|
|
73
73
|
//#endregion
|
|
74
74
|
//#region src/components/accordion/anatomy/item-trigger.d.ts
|
|
75
75
|
interface AccordionItemTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
76
|
-
declare function ItemTrigger(props: AccordionItemTriggerProps):
|
|
76
|
+
declare function ItemTrigger(props: AccordionItemTriggerProps): react0.JSX.Element;
|
|
77
77
|
//#endregion
|
|
78
78
|
//#region src/components/accordion/modules/anatomy.d.ts
|
|
79
79
|
declare const Accordion: typeof Root$18 & {
|
|
@@ -87,23 +87,23 @@ declare const Accordion: typeof Root$18 & {
|
|
|
87
87
|
//#endregion
|
|
88
88
|
//#region src/components/app-bar/anatomy/root.d.ts
|
|
89
89
|
interface AppBarRootProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
90
|
-
declare function AppBarRoot(props: AppBarRootProps):
|
|
90
|
+
declare function AppBarRoot(props: AppBarRootProps): react0.JSX.Element;
|
|
91
91
|
//#endregion
|
|
92
92
|
//#region src/components/app-bar/anatomy/toolbar.d.ts
|
|
93
93
|
interface AppBarToolbarProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
94
|
-
declare function AppBarToolbar(props: AppBarToolbarProps):
|
|
94
|
+
declare function AppBarToolbar(props: AppBarToolbarProps): react0.JSX.Element;
|
|
95
95
|
//#endregion
|
|
96
96
|
//#region src/components/app-bar/anatomy/lead.d.ts
|
|
97
97
|
interface AppBarLeadProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
98
|
-
declare function AppBarLead(props: AppBarLeadProps):
|
|
98
|
+
declare function AppBarLead(props: AppBarLeadProps): react0.JSX.Element;
|
|
99
99
|
//#endregion
|
|
100
100
|
//#region src/components/app-bar/anatomy/headline.d.ts
|
|
101
101
|
interface AppBarHeadlineProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
102
|
-
declare function AppBarHeadline(props: AppBarHeadlineProps):
|
|
102
|
+
declare function AppBarHeadline(props: AppBarHeadlineProps): react0.JSX.Element;
|
|
103
103
|
//#endregion
|
|
104
104
|
//#region src/components/app-bar/anatomy/trail.d.ts
|
|
105
105
|
interface AppBarTrailProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
106
|
-
declare function AppBarTrail(props: AppBarTrailProps):
|
|
106
|
+
declare function AppBarTrail(props: AppBarTrailProps): react0.JSX.Element;
|
|
107
107
|
//#endregion
|
|
108
108
|
//#region src/components/app-bar/modules/anatomy.d.ts
|
|
109
109
|
declare const AppBar: typeof AppBarRoot & {
|
|
@@ -115,11 +115,11 @@ declare const AppBar: typeof AppBarRoot & {
|
|
|
115
115
|
//#endregion
|
|
116
116
|
//#region src/components/avatar/anatomy/fallback.d.ts
|
|
117
117
|
interface AvatarFallbackProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
118
|
-
declare function Fallback(props: AvatarFallbackProps):
|
|
118
|
+
declare function Fallback(props: AvatarFallbackProps): react0.JSX.Element;
|
|
119
119
|
//#endregion
|
|
120
120
|
//#region src/components/avatar/anatomy/image.d.ts
|
|
121
121
|
interface AvatarImageProps extends PropsWithElement<'img'>, HTMLAttributes<'img', 'children'> {}
|
|
122
|
-
declare function Image(props: AvatarImageProps):
|
|
122
|
+
declare function Image(props: AvatarImageProps): react0.JSX.Element;
|
|
123
123
|
//#endregion
|
|
124
124
|
//#region src/components/avatar/anatomy/root.d.ts
|
|
125
125
|
interface AvatarRootProps extends Omit<Props$1, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -150,7 +150,7 @@ declare const Avatar: typeof AvatarRoot & {
|
|
|
150
150
|
//#endregion
|
|
151
151
|
//#region src/components/collapsible/anatomy/content.d.ts
|
|
152
152
|
interface CollapsibleContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
153
|
-
declare function Content$9(props: CollapsibleContentProps):
|
|
153
|
+
declare function Content$9(props: CollapsibleContentProps): react0.JSX.Element;
|
|
154
154
|
//#endregion
|
|
155
155
|
//#region src/components/collapsible/anatomy/root.d.ts
|
|
156
156
|
interface CollapsibleRootProps extends Omit<Props$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -173,11 +173,11 @@ declare function CollapsibleRootProvider(props: CollapsibleRootProviderProps): r
|
|
|
173
173
|
//#endregion
|
|
174
174
|
//#region src/components/collapsible/anatomy/trigger.d.ts
|
|
175
175
|
interface CollapsibleTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
176
|
-
declare function Trigger$9(props: CollapsibleTriggerProps):
|
|
176
|
+
declare function Trigger$9(props: CollapsibleTriggerProps): react0.JSX.Element;
|
|
177
177
|
//#endregion
|
|
178
178
|
//#region src/components/collapsible/anatomy/indicator.d.ts
|
|
179
179
|
interface CollapsibleIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
180
|
-
declare function Indicator$3(props: CollapsibleIndicatorProps):
|
|
180
|
+
declare function Indicator$3(props: CollapsibleIndicatorProps): react0.JSX.Element;
|
|
181
181
|
//#endregion
|
|
182
182
|
//#region src/components/collapsible/modules/anatomy.d.ts
|
|
183
183
|
declare const Collapsible: typeof CollapsibleRoot & {
|
|
@@ -190,19 +190,19 @@ declare const Collapsible: typeof CollapsibleRoot & {
|
|
|
190
190
|
//#endregion
|
|
191
191
|
//#region src/components/combobox/anatomy/clear-trigger.d.ts
|
|
192
192
|
interface ComboboxClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
193
|
-
declare function ClearTrigger$2(props: ComboboxClearTriggerProps):
|
|
193
|
+
declare function ClearTrigger$2(props: ComboboxClearTriggerProps): react0.JSX.Element;
|
|
194
194
|
//#endregion
|
|
195
195
|
//#region src/components/combobox/anatomy/content.d.ts
|
|
196
196
|
interface ComboboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
197
|
-
declare function Content$8(props: ComboboxContentProps):
|
|
197
|
+
declare function Content$8(props: ComboboxContentProps): react0.JSX.Element;
|
|
198
198
|
//#endregion
|
|
199
199
|
//#region src/components/combobox/anatomy/control.d.ts
|
|
200
200
|
interface ComboboxControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
201
|
-
declare function Control$7(props: ComboboxControlProps):
|
|
201
|
+
declare function Control$7(props: ComboboxControlProps): react0.JSX.Element;
|
|
202
202
|
//#endregion
|
|
203
203
|
//#region src/components/combobox/anatomy/input.d.ts
|
|
204
204
|
interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
205
|
-
declare function Input$3(props: ComboboxInputProps):
|
|
205
|
+
declare function Input$3(props: ComboboxInputProps): react0.JSX.Element;
|
|
206
206
|
//#endregion
|
|
207
207
|
//#region src/components/combobox/anatomy/item.d.ts
|
|
208
208
|
interface ComboboxItemProps extends ItemProps$1, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -214,23 +214,23 @@ declare function ItemGroup$3(props: ComboboxItemGroupProps): react_jsx_runtime0.
|
|
|
214
214
|
//#endregion
|
|
215
215
|
//#region src/components/combobox/anatomy/item-group-label.d.ts
|
|
216
216
|
interface ComboboxItemGroupLabelProps extends Omit<ItemGroupLabelProps, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
217
|
-
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps):
|
|
217
|
+
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps): react0.JSX.Element;
|
|
218
218
|
//#endregion
|
|
219
219
|
//#region src/components/combobox/anatomy/item-indicator.d.ts
|
|
220
220
|
interface ComboboxItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
221
|
-
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps):
|
|
221
|
+
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps): react0.JSX.Element;
|
|
222
222
|
//#endregion
|
|
223
223
|
//#region src/components/combobox/anatomy/item-text.d.ts
|
|
224
224
|
interface ComboboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
225
|
-
declare function ItemText$4(props: ComboboxItemTextProps):
|
|
225
|
+
declare function ItemText$4(props: ComboboxItemTextProps): react0.JSX.Element;
|
|
226
226
|
//#endregion
|
|
227
227
|
//#region src/components/combobox/anatomy/label.d.ts
|
|
228
228
|
interface ComboboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
229
|
-
declare function Label$10(props: ComboboxLabelProps):
|
|
229
|
+
declare function Label$10(props: ComboboxLabelProps): react0.JSX.Element;
|
|
230
230
|
//#endregion
|
|
231
231
|
//#region src/components/combobox/anatomy/positioner.d.ts
|
|
232
232
|
interface ComboboxPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
233
|
-
declare function Positioner$6(props: ComboboxPositionerProps):
|
|
233
|
+
declare function Positioner$6(props: ComboboxPositionerProps): react0.JSX.Element;
|
|
234
234
|
//#endregion
|
|
235
235
|
//#region src/components/combobox/anatomy/root.d.ts
|
|
236
236
|
interface ComboboxRootProps extends Omit<Props$3, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
@@ -253,7 +253,7 @@ declare function RootProvider$15(props: ComboboxRootProviderProps): react_jsx_ru
|
|
|
253
253
|
//#endregion
|
|
254
254
|
//#region src/components/combobox/anatomy/trigger.d.ts
|
|
255
255
|
interface ComboboxTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
256
|
-
declare function Trigger$8(props: ComboboxTriggerProps):
|
|
256
|
+
declare function Trigger$8(props: ComboboxTriggerProps): react0.JSX.Element;
|
|
257
257
|
//#endregion
|
|
258
258
|
//#region src/components/combobox/modules/anatomy.d.ts
|
|
259
259
|
declare const Combobox: typeof Root$17 & {
|
|
@@ -275,43 +275,43 @@ declare const Combobox: typeof Root$17 & {
|
|
|
275
275
|
//#endregion
|
|
276
276
|
//#region src/components/date-picker/anatomy/content.d.ts
|
|
277
277
|
interface DatePickerContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
278
|
-
declare function Content$7(props: DatePickerContentProps):
|
|
278
|
+
declare function Content$7(props: DatePickerContentProps): react0.JSX.Element;
|
|
279
279
|
//#endregion
|
|
280
280
|
//#region src/components/date-picker/anatomy/control.d.ts
|
|
281
281
|
interface DatePickerControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
282
|
-
declare function Control$6(props: DatePickerControlProps):
|
|
282
|
+
declare function Control$6(props: DatePickerControlProps): react0.JSX.Element;
|
|
283
283
|
//#endregion
|
|
284
284
|
//#region src/components/date-picker/anatomy/input.d.ts
|
|
285
285
|
interface DatePickerInputProps extends InputProps, PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
286
|
-
declare function Input$2(props: DatePickerInputProps):
|
|
286
|
+
declare function Input$2(props: DatePickerInputProps): react0.JSX.Element;
|
|
287
287
|
//#endregion
|
|
288
288
|
//#region src/components/date-picker/anatomy/label.d.ts
|
|
289
289
|
interface DatePickerLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
290
|
-
declare function Label$9(props: DatePickerLabelProps):
|
|
290
|
+
declare function Label$9(props: DatePickerLabelProps): react0.JSX.Element;
|
|
291
291
|
//#endregion
|
|
292
292
|
//#region src/components/date-picker/anatomy/month-select.d.ts
|
|
293
293
|
interface DatePickerMonthSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
294
|
-
declare function MonthSelect(props: DatePickerMonthSelectProps):
|
|
294
|
+
declare function MonthSelect(props: DatePickerMonthSelectProps): react0.JSX.Element;
|
|
295
295
|
//#endregion
|
|
296
296
|
//#region src/components/date-picker/anatomy/next-trigger.d.ts
|
|
297
297
|
interface DatePickerNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
298
|
-
declare function NextTrigger$1(props: DatePickerNextTriggerProps):
|
|
298
|
+
declare function NextTrigger$1(props: DatePickerNextTriggerProps): react0.JSX.Element;
|
|
299
299
|
//#endregion
|
|
300
300
|
//#region src/components/date-picker/anatomy/positioner.d.ts
|
|
301
301
|
interface DatePickerPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
302
|
-
declare function Positioner$5(props: DatePickerPositionerProps):
|
|
302
|
+
declare function Positioner$5(props: DatePickerPositionerProps): react0.JSX.Element;
|
|
303
303
|
//#endregion
|
|
304
304
|
//#region src/components/date-picker/anatomy/preset-trigger.d.ts
|
|
305
305
|
interface DatePickerPresetTriggerProps extends PresetTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
306
|
-
declare function PresetTrigger(props: DatePickerPresetTriggerProps):
|
|
306
|
+
declare function PresetTrigger(props: DatePickerPresetTriggerProps): react0.JSX.Element;
|
|
307
307
|
//#endregion
|
|
308
308
|
//#region src/components/date-picker/anatomy/prev-trigger.d.ts
|
|
309
309
|
interface DatePickerPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
310
|
-
declare function PrevTrigger$1(props: DatePickerPrevTriggerProps):
|
|
310
|
+
declare function PrevTrigger$1(props: DatePickerPrevTriggerProps): react0.JSX.Element;
|
|
311
311
|
//#endregion
|
|
312
312
|
//#region src/components/date-picker/anatomy/range-text.d.ts
|
|
313
313
|
interface DatePickerRangeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
314
|
-
declare function RangeText(props: DatePickerRangeTextProps):
|
|
314
|
+
declare function RangeText(props: DatePickerRangeTextProps): react0.JSX.Element;
|
|
315
315
|
//#endregion
|
|
316
316
|
//#region src/components/date-picker/anatomy/root.d.ts
|
|
317
317
|
interface DatePickerRootProps extends Omit<Props$4, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -334,11 +334,11 @@ declare function RootProvider$14(props: DatePickerRootProviderProps): react_jsx_
|
|
|
334
334
|
//#endregion
|
|
335
335
|
//#region src/components/date-picker/anatomy/table.d.ts
|
|
336
336
|
interface DatePickerTableProps extends PropsWithElement<'table'>, HTMLAttributes<'table'> {}
|
|
337
|
-
declare function Table(props: DatePickerTableProps):
|
|
337
|
+
declare function Table(props: DatePickerTableProps): react0.JSX.Element;
|
|
338
338
|
//#endregion
|
|
339
339
|
//#region src/components/date-picker/anatomy/table-body.d.ts
|
|
340
340
|
interface DatePickerTableBodyProps extends PropsWithElement<'tbody'>, HTMLAttributes<'tbody'> {}
|
|
341
|
-
declare function TableBody(props: DatePickerTableBodyProps):
|
|
341
|
+
declare function TableBody(props: DatePickerTableBodyProps): react0.JSX.Element;
|
|
342
342
|
//#endregion
|
|
343
343
|
//#region src/internal/union.d.ts
|
|
344
344
|
type Union<T, U> = { [K in keyof T]: K extends keyof U ? U[K] | T[K] : T[K] } & Omit<U, keyof T>;
|
|
@@ -349,23 +349,23 @@ declare function TableCell(props: DatePickerTableCellProps): react_jsx_runtime0.
|
|
|
349
349
|
//#endregion
|
|
350
350
|
//#region src/components/date-picker/anatomy/table-cell-trigger.d.ts
|
|
351
351
|
interface DatePickerTableCellTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
352
|
-
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps):
|
|
352
|
+
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps): react0.JSX.Element;
|
|
353
353
|
//#endregion
|
|
354
354
|
//#region src/components/date-picker/anatomy/table-head.d.ts
|
|
355
355
|
interface DatePickerTableHeadProps extends PropsWithElement<'thead'>, HTMLAttributes<'thead'> {}
|
|
356
|
-
declare function TableHead(props: DatePickerTableHeadProps):
|
|
356
|
+
declare function TableHead(props: DatePickerTableHeadProps): react0.JSX.Element;
|
|
357
357
|
//#endregion
|
|
358
358
|
//#region src/components/date-picker/anatomy/table-header.d.ts
|
|
359
359
|
interface DatePickerTableHeaderProps extends PropsWithElement<'th'>, HTMLAttributes<'th'> {}
|
|
360
|
-
declare function TableHeader(props: DatePickerTableHeaderProps):
|
|
360
|
+
declare function TableHeader(props: DatePickerTableHeaderProps): react0.JSX.Element;
|
|
361
361
|
//#endregion
|
|
362
362
|
//#region src/components/date-picker/anatomy/table-row.d.ts
|
|
363
363
|
interface DatePickerTableRowProps extends PropsWithElement<'tr'>, HTMLAttributes<'tr'> {}
|
|
364
|
-
declare function TableRow(props: DatePickerTableRowProps):
|
|
364
|
+
declare function TableRow(props: DatePickerTableRowProps): react0.JSX.Element;
|
|
365
365
|
//#endregion
|
|
366
366
|
//#region src/components/date-picker/anatomy/trigger.d.ts
|
|
367
367
|
interface DatePickerTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
368
|
-
declare function Trigger$7(props: DatePickerTriggerProps):
|
|
368
|
+
declare function Trigger$7(props: DatePickerTriggerProps): react0.JSX.Element;
|
|
369
369
|
//#endregion
|
|
370
370
|
//#region src/components/date-picker/anatomy/view.d.ts
|
|
371
371
|
interface DatePickerViewProps extends ViewProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -373,15 +373,15 @@ declare function View(props: DatePickerViewProps): react_jsx_runtime0.JSX.Elemen
|
|
|
373
373
|
//#endregion
|
|
374
374
|
//#region src/components/date-picker/anatomy/view-control.d.ts
|
|
375
375
|
interface DatePickerViewControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
376
|
-
declare function ViewControl(props: DatePickerViewControlProps):
|
|
376
|
+
declare function ViewControl(props: DatePickerViewControlProps): react0.JSX.Element;
|
|
377
377
|
//#endregion
|
|
378
378
|
//#region src/components/date-picker/anatomy/view-trigger.d.ts
|
|
379
379
|
interface DatePickerViewTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
380
|
-
declare function ViewTrigger(props: DatePickerViewTriggerProps):
|
|
380
|
+
declare function ViewTrigger(props: DatePickerViewTriggerProps): react0.JSX.Element;
|
|
381
381
|
//#endregion
|
|
382
382
|
//#region src/components/date-picker/anatomy/year-select.d.ts
|
|
383
383
|
interface DatePickerYearSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
384
|
-
declare function YearSelect(props: DatePickerYearSelectProps):
|
|
384
|
+
declare function YearSelect(props: DatePickerYearSelectProps): react0.JSX.Element;
|
|
385
385
|
//#endregion
|
|
386
386
|
//#region src/components/date-picker/modules/anatomy.d.ts
|
|
387
387
|
declare const DatePicker: typeof Root$16 & {
|
|
@@ -413,23 +413,23 @@ declare const DatePicker: typeof Root$16 & {
|
|
|
413
413
|
//#endregion
|
|
414
414
|
//#region src/components/dialog/anatomy/backdrop.d.ts
|
|
415
415
|
interface DialogBackdropProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
416
|
-
declare function Backdrop(props: DialogBackdropProps):
|
|
416
|
+
declare function Backdrop(props: DialogBackdropProps): react0.JSX.Element;
|
|
417
417
|
//#endregion
|
|
418
418
|
//#region src/components/dialog/anatomy/close-trigger.d.ts
|
|
419
419
|
interface DialogCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
420
|
-
declare function CloseTrigger$3(props: DialogCloseTriggerProps):
|
|
420
|
+
declare function CloseTrigger$3(props: DialogCloseTriggerProps): react0.JSX.Element;
|
|
421
421
|
//#endregion
|
|
422
422
|
//#region src/components/dialog/anatomy/content.d.ts
|
|
423
423
|
interface DialogContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
424
|
-
declare function Content$6(props: DialogContentProps):
|
|
424
|
+
declare function Content$6(props: DialogContentProps): react0.JSX.Element;
|
|
425
425
|
//#endregion
|
|
426
426
|
//#region src/components/dialog/anatomy/description.d.ts
|
|
427
427
|
interface DialogDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
428
|
-
declare function Description$2(props: DialogDescriptionProps):
|
|
428
|
+
declare function Description$2(props: DialogDescriptionProps): react0.JSX.Element;
|
|
429
429
|
//#endregion
|
|
430
430
|
//#region src/components/dialog/anatomy/positioner.d.ts
|
|
431
431
|
interface DialogPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
432
|
-
declare function Positioner$4(props: DialogPositionerProps):
|
|
432
|
+
declare function Positioner$4(props: DialogPositionerProps): react0.JSX.Element;
|
|
433
433
|
//#endregion
|
|
434
434
|
//#region src/components/dialog/anatomy/root.d.ts
|
|
435
435
|
interface DialogRootProps extends PropsWithChildren, Omit<Props$5, 'id'> {}
|
|
@@ -452,11 +452,11 @@ declare function RootProvider$13(props: DialogRootProviderProps): react_jsx_runt
|
|
|
452
452
|
//#endregion
|
|
453
453
|
//#region src/components/dialog/anatomy/title.d.ts
|
|
454
454
|
interface DialogTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
455
|
-
declare function Title$3(props: DialogTitleProps):
|
|
455
|
+
declare function Title$3(props: DialogTitleProps): react0.JSX.Element;
|
|
456
456
|
//#endregion
|
|
457
457
|
//#region src/components/dialog/anatomy/trigger.d.ts
|
|
458
458
|
interface DialogTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
459
|
-
declare function Trigger$6(props: DialogTriggerProps):
|
|
459
|
+
declare function Trigger$6(props: DialogTriggerProps): react0.JSX.Element;
|
|
460
460
|
//#endregion
|
|
461
461
|
//#region src/components/dialog/modules/anatomy.d.ts
|
|
462
462
|
declare const Dialog: typeof Root$15 & {
|
|
@@ -473,15 +473,15 @@ declare const Dialog: typeof Root$15 & {
|
|
|
473
473
|
//#endregion
|
|
474
474
|
//#region src/components/file-upload/anatomy/clear-trigger.d.ts
|
|
475
475
|
interface FileUploadClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
476
|
-
declare function ClearTrigger$1(props: FileUploadClearTriggerProps):
|
|
476
|
+
declare function ClearTrigger$1(props: FileUploadClearTriggerProps): react0.JSX.Element;
|
|
477
477
|
//#endregion
|
|
478
478
|
//#region src/components/file-upload/anatomy/dropzone.d.ts
|
|
479
479
|
interface FileUploadDropzoneProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
480
|
-
declare function Dropzone(props: FileUploadDropzoneProps):
|
|
480
|
+
declare function Dropzone(props: FileUploadDropzoneProps): react0.JSX.Element;
|
|
481
481
|
//#endregion
|
|
482
482
|
//#region src/components/file-upload/anatomy/hidden-input.d.ts
|
|
483
483
|
interface FileUploadHiddenInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
484
|
-
declare function HiddenInput$4(props: FileUploadHiddenInputProps):
|
|
484
|
+
declare function HiddenInput$4(props: FileUploadHiddenInputProps): react0.JSX.Element;
|
|
485
485
|
//#endregion
|
|
486
486
|
//#region src/components/file-upload/anatomy/item.d.ts
|
|
487
487
|
interface FileUploadItemProps extends ItemProps$2, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -489,23 +489,23 @@ declare function Item$8(props: FileUploadItemProps): react_jsx_runtime0.JSX.Elem
|
|
|
489
489
|
//#endregion
|
|
490
490
|
//#region src/components/file-upload/anatomy/item-delete-trigger.d.ts
|
|
491
491
|
interface FileUploadItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
492
|
-
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps):
|
|
492
|
+
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps): react0.JSX.Element;
|
|
493
493
|
//#endregion
|
|
494
494
|
//#region src/components/file-upload/anatomy/item-group.d.ts
|
|
495
495
|
interface FileUploadItemGroupProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
496
|
-
declare function ItemGroup$2(props: FileUploadItemGroupProps):
|
|
496
|
+
declare function ItemGroup$2(props: FileUploadItemGroupProps): react0.JSX.Element;
|
|
497
497
|
//#endregion
|
|
498
498
|
//#region src/components/file-upload/anatomy/item-name.d.ts
|
|
499
499
|
interface FileUploadItemNameProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
500
|
-
declare function ItemName(props: FileUploadItemNameProps):
|
|
500
|
+
declare function ItemName(props: FileUploadItemNameProps): react0.JSX.Element;
|
|
501
501
|
//#endregion
|
|
502
502
|
//#region src/components/file-upload/anatomy/item-size-text.d.ts
|
|
503
503
|
interface FileUploadItemSizeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
504
|
-
declare function ItemSizeText(props: FileUploadItemSizeTextProps):
|
|
504
|
+
declare function ItemSizeText(props: FileUploadItemSizeTextProps): react0.JSX.Element;
|
|
505
505
|
//#endregion
|
|
506
506
|
//#region src/components/file-upload/anatomy/label.d.ts
|
|
507
507
|
interface FileUploadLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
508
|
-
declare function Label$8(props: FileUploadLabelProps):
|
|
508
|
+
declare function Label$8(props: FileUploadLabelProps): react0.JSX.Element;
|
|
509
509
|
//#endregion
|
|
510
510
|
//#region src/components/file-upload/anatomy/root.d.ts
|
|
511
511
|
interface FileUploadRootProps extends Omit<Props$6, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {}
|
|
@@ -528,7 +528,7 @@ declare function RootProvider$12(props: FileUploadRootProviderProps): react_jsx_
|
|
|
528
528
|
//#endregion
|
|
529
529
|
//#region src/components/file-upload/anatomy/trigger.d.ts
|
|
530
530
|
interface FileUploadTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
531
|
-
declare function Trigger$5(props: FileUploadTriggerProps):
|
|
531
|
+
declare function Trigger$5(props: FileUploadTriggerProps): react0.JSX.Element;
|
|
532
532
|
//#endregion
|
|
533
533
|
//#region src/components/file-upload/modules/anatomy.d.ts
|
|
534
534
|
declare const FileUpload: typeof Root$14 & {
|
|
@@ -548,35 +548,35 @@ declare const FileUpload: typeof Root$14 & {
|
|
|
548
548
|
//#endregion
|
|
549
549
|
//#region src/components/floating-panel/anatomy/body.d.ts
|
|
550
550
|
interface FloatingPanelBodyProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
551
|
-
declare function Body(props: FloatingPanelBodyProps):
|
|
551
|
+
declare function Body(props: FloatingPanelBodyProps): react0.JSX.Element;
|
|
552
552
|
//#endregion
|
|
553
553
|
//#region src/components/floating-panel/anatomy/close-trigger.d.ts
|
|
554
554
|
interface FloatingPanelCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
555
|
-
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps):
|
|
555
|
+
declare function CloseTrigger$2(props: FloatingPanelCloseTriggerProps): react0.JSX.Element;
|
|
556
556
|
//#endregion
|
|
557
557
|
//#region src/components/floating-panel/anatomy/content.d.ts
|
|
558
558
|
interface FloatingPanelContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
559
|
-
declare function Content$5(props: FloatingPanelContentProps):
|
|
559
|
+
declare function Content$5(props: FloatingPanelContentProps): react0.JSX.Element;
|
|
560
560
|
//#endregion
|
|
561
561
|
//#region src/components/floating-panel/anatomy/control.d.ts
|
|
562
562
|
interface FloatingPanelControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
563
|
-
declare function Control$5(props: FloatingPanelControlProps):
|
|
563
|
+
declare function Control$5(props: FloatingPanelControlProps): react0.JSX.Element;
|
|
564
564
|
//#endregion
|
|
565
565
|
//#region src/components/floating-panel/anatomy/drag-trigger.d.ts
|
|
566
566
|
interface FloatingPanelDragTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
567
|
-
declare function DragTrigger(props: FloatingPanelDragTriggerProps):
|
|
567
|
+
declare function DragTrigger(props: FloatingPanelDragTriggerProps): react0.JSX.Element;
|
|
568
568
|
//#endregion
|
|
569
569
|
//#region src/components/floating-panel/anatomy/header.d.ts
|
|
570
570
|
interface FloatingPanelHeaderProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
571
|
-
declare function Header(props: FloatingPanelHeaderProps):
|
|
571
|
+
declare function Header(props: FloatingPanelHeaderProps): react0.JSX.Element;
|
|
572
572
|
//#endregion
|
|
573
573
|
//#region src/components/floating-panel/anatomy/positioner.d.ts
|
|
574
574
|
interface FloatingPanelPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
575
|
-
declare function Positioner$3(props: FloatingPanelPositionerProps):
|
|
575
|
+
declare function Positioner$3(props: FloatingPanelPositionerProps): react0.JSX.Element;
|
|
576
576
|
//#endregion
|
|
577
577
|
//#region src/components/floating-panel/anatomy/resize-trigger.d.ts
|
|
578
578
|
interface FloatingPanelResizeTriggerProps extends ResizeTriggerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
579
|
-
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps):
|
|
579
|
+
declare function ResizeTrigger(props: FloatingPanelResizeTriggerProps): react0.JSX.Element;
|
|
580
580
|
//#endregion
|
|
581
581
|
//#region src/components/floating-panel/anatomy/root.d.ts
|
|
582
582
|
interface FloatingPanelRootProps extends PropsWithChildren, Omit<Props$7, 'id'> {}
|
|
@@ -599,15 +599,15 @@ declare function RootProvider$11(props: FloatingPanelRootProviderProps): react_j
|
|
|
599
599
|
//#endregion
|
|
600
600
|
//#region src/components/floating-panel/anatomy/stage-trigger.d.ts
|
|
601
601
|
interface FloatingPanelStageTriggerProps extends StageTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
602
|
-
declare function StageTrigger(props: FloatingPanelStageTriggerProps):
|
|
602
|
+
declare function StageTrigger(props: FloatingPanelStageTriggerProps): react0.JSX.Element;
|
|
603
603
|
//#endregion
|
|
604
604
|
//#region src/components/floating-panel/anatomy/title.d.ts
|
|
605
605
|
interface FloatingPanelTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
606
|
-
declare function Title$2(props: FloatingPanelTitleProps):
|
|
606
|
+
declare function Title$2(props: FloatingPanelTitleProps): react0.JSX.Element;
|
|
607
607
|
//#endregion
|
|
608
608
|
//#region src/components/floating-panel/anatomy/trigger.d.ts
|
|
609
609
|
interface FloatingPanelTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
610
|
-
declare function Trigger$4(props: FloatingPanelTriggerProps):
|
|
610
|
+
declare function Trigger$4(props: FloatingPanelTriggerProps): react0.JSX.Element;
|
|
611
611
|
//#endregion
|
|
612
612
|
//#region src/components/floating-panel/modules/anatomy.d.ts
|
|
613
613
|
declare const FloatingPanel: typeof Root$13 & {
|
|
@@ -636,7 +636,7 @@ declare function ItemGroup$1(props: ListboxItemGroupProps): react_jsx_runtime0.J
|
|
|
636
636
|
//#endregion
|
|
637
637
|
//#region src/components/listbox/anatomy/item-group-label.d.ts
|
|
638
638
|
interface ListboxItemGroupLabelProps extends Omit<ItemGroupLabelProps$1, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
639
|
-
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps):
|
|
639
|
+
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react0.JSX.Element;
|
|
640
640
|
//#endregion
|
|
641
641
|
//#region src/components/listbox/anatomy/item.d.ts
|
|
642
642
|
interface ListboxItemProps extends ItemProps$3, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -644,15 +644,15 @@ declare function Item$7(props: ListboxItemProps): react_jsx_runtime0.JSX.Element
|
|
|
644
644
|
//#endregion
|
|
645
645
|
//#region src/components/listbox/anatomy/input.d.ts
|
|
646
646
|
interface ListboxInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
647
|
-
declare function Input$1(props: ListboxInputProps):
|
|
647
|
+
declare function Input$1(props: ListboxInputProps): react0.JSX.Element;
|
|
648
648
|
//#endregion
|
|
649
649
|
//#region src/components/listbox/anatomy/item-indicator.d.ts
|
|
650
650
|
interface ListboxItemIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
651
|
-
declare function ItemIndicator$1(props: ListboxItemIndicatorProps):
|
|
651
|
+
declare function ItemIndicator$1(props: ListboxItemIndicatorProps): react0.JSX.Element;
|
|
652
652
|
//#endregion
|
|
653
653
|
//#region src/components/listbox/anatomy/item-text.d.ts
|
|
654
654
|
interface ListboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
655
|
-
declare function ItemText$3(props: ListboxItemTextProps):
|
|
655
|
+
declare function ItemText$3(props: ListboxItemTextProps): react0.JSX.Element;
|
|
656
656
|
//#endregion
|
|
657
657
|
//#region src/components/listbox/modules/provider.d.ts
|
|
658
658
|
declare function useListbox(props: Omit<Props$8, 'id'>): Api$8<PropTypes>;
|
|
@@ -671,11 +671,11 @@ declare function RootProvider$10(props: ListboxRootProviderProps): react_jsx_run
|
|
|
671
671
|
//#endregion
|
|
672
672
|
//#region src/components/listbox/anatomy/label.d.ts
|
|
673
673
|
interface ListboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
674
|
-
declare function Label$7(props: ListboxLabelProps):
|
|
674
|
+
declare function Label$7(props: ListboxLabelProps): react0.JSX.Element;
|
|
675
675
|
//#endregion
|
|
676
676
|
//#region src/components/listbox/anatomy/content.d.ts
|
|
677
677
|
interface ListboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
678
|
-
declare function Content$4(props: ListboxContentProps):
|
|
678
|
+
declare function Content$4(props: ListboxContentProps): react0.JSX.Element;
|
|
679
679
|
//#endregion
|
|
680
680
|
//#region src/components/listbox/modules/anatomy.d.ts
|
|
681
681
|
declare const Listbox: typeof Root$12 & {
|
|
@@ -693,19 +693,19 @@ declare const Listbox: typeof Root$12 & {
|
|
|
693
693
|
//#endregion
|
|
694
694
|
//#region src/components/menu/anatomy/arrow.d.ts
|
|
695
695
|
interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
696
|
-
declare function Arrow$2(props: MenuArrowProps):
|
|
696
|
+
declare function Arrow$2(props: MenuArrowProps): react0.JSX.Element;
|
|
697
697
|
//#endregion
|
|
698
698
|
//#region src/components/menu/anatomy/arrow-tip.d.ts
|
|
699
699
|
interface MenuArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
700
|
-
declare function ArrowTip$2(props: MenuArrowTipProps):
|
|
700
|
+
declare function ArrowTip$2(props: MenuArrowTipProps): react0.JSX.Element;
|
|
701
701
|
//#endregion
|
|
702
702
|
//#region src/components/menu/anatomy/content.d.ts
|
|
703
703
|
interface MenuContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
704
|
-
declare function Content$3(props: MenuContentProps):
|
|
704
|
+
declare function Content$3(props: MenuContentProps): react0.JSX.Element;
|
|
705
705
|
//#endregion
|
|
706
706
|
//#region src/components/menu/anatomy/context-trigger.d.ts
|
|
707
707
|
interface MenuContextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
708
|
-
declare function ContextTrigger(props: MenuContextTriggerProps):
|
|
708
|
+
declare function ContextTrigger(props: MenuContextTriggerProps): react0.JSX.Element;
|
|
709
709
|
//#endregion
|
|
710
710
|
//#region src/components/menu/anatomy/item.d.ts
|
|
711
711
|
interface MenuItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -717,7 +717,7 @@ declare function ItemGroup(props: MenuItemGroupProps): react_jsx_runtime0.JSX.El
|
|
|
717
717
|
//#endregion
|
|
718
718
|
//#region src/components/menu/anatomy/item-group-label.d.ts
|
|
719
719
|
interface MenuItemGroupLabelProps extends Omit<ItemGroupLabelProps$2, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
720
|
-
declare function ItemGroupLabel(props: MenuItemGroupLabelProps):
|
|
720
|
+
declare function ItemGroupLabel(props: MenuItemGroupLabelProps): react0.JSX.Element;
|
|
721
721
|
//#endregion
|
|
722
722
|
//#region src/components/menu/anatomy/option-item.d.ts
|
|
723
723
|
interface MenuOptionItemProps extends OptionItemProps, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -725,19 +725,19 @@ declare function OptionItem(props: MenuOptionItemProps): react_jsx_runtime0.JSX.
|
|
|
725
725
|
//#endregion
|
|
726
726
|
//#region src/components/menu/anatomy/item-text.d.ts
|
|
727
727
|
interface MenuItemTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
728
|
-
declare function ItemText$2(props: MenuItemTextProps):
|
|
728
|
+
declare function ItemText$2(props: MenuItemTextProps): react0.JSX.Element;
|
|
729
729
|
//#endregion
|
|
730
730
|
//#region src/components/menu/anatomy/item-indicator.d.ts
|
|
731
731
|
interface MenuItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
732
|
-
declare function ItemIndicator(props: MenuItemIndicatorProps):
|
|
732
|
+
declare function ItemIndicator(props: MenuItemIndicatorProps): react0.JSX.Element;
|
|
733
733
|
//#endregion
|
|
734
734
|
//#region src/components/menu/anatomy/indicator.d.ts
|
|
735
735
|
interface MenuIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
736
|
-
declare function Indicator$2(props: MenuIndicatorProps):
|
|
736
|
+
declare function Indicator$2(props: MenuIndicatorProps): react0.JSX.Element;
|
|
737
737
|
//#endregion
|
|
738
738
|
//#region src/components/menu/anatomy/positioner.d.ts
|
|
739
739
|
interface MenuPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
740
|
-
declare function Positioner$2(props: MenuPositionerProps):
|
|
740
|
+
declare function Positioner$2(props: MenuPositionerProps): react0.JSX.Element;
|
|
741
741
|
//#endregion
|
|
742
742
|
//#region src/components/menu/anatomy/root.d.ts
|
|
743
743
|
interface MenuRootProps extends Omit<Props$9, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div', 'id' | 'dir'>, 'onSelect' | 'aria-label'> {}
|
|
@@ -762,11 +762,11 @@ declare function RootProvider$9(props: MenuRootProviderProps): react_jsx_runtime
|
|
|
762
762
|
//#endregion
|
|
763
763
|
//#region src/components/menu/anatomy/separator.d.ts
|
|
764
764
|
interface MenuSeparatorProps extends PropsWithElement<'hr'>, HTMLAttributes<'hr', 'id' | 'dir' | 'children'> {}
|
|
765
|
-
declare function Separator(props: MenuSeparatorProps):
|
|
765
|
+
declare function Separator(props: MenuSeparatorProps): react0.JSX.Element;
|
|
766
766
|
//#endregion
|
|
767
767
|
//#region src/components/menu/anatomy/trigger.d.ts
|
|
768
768
|
interface MenuTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
769
|
-
declare function Trigger$3(props: MenuTriggerProps):
|
|
769
|
+
declare function Trigger$3(props: MenuTriggerProps): react0.JSX.Element;
|
|
770
770
|
//#endregion
|
|
771
771
|
//#region src/components/menu/anatomy/trigger-item.d.ts
|
|
772
772
|
interface MenuTriggerItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -806,27 +806,27 @@ declare function NavigationRoot(props: NavigationRootProps): react_jsx_runtime0.
|
|
|
806
806
|
//#endregion
|
|
807
807
|
//#region src/components/navigation/anatomy/menu.d.ts
|
|
808
808
|
interface NavigationMenuProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
809
|
-
declare function NavigationMenu(props: NavigationMenuProps):
|
|
809
|
+
declare function NavigationMenu(props: NavigationMenuProps): react0.JSX.Element;
|
|
810
810
|
//#endregion
|
|
811
811
|
//#region src/components/navigation/anatomy/header.d.ts
|
|
812
812
|
interface NavigationHeaderProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
813
|
-
declare function NavigationHeader(props: NavigationHeaderProps):
|
|
813
|
+
declare function NavigationHeader(props: NavigationHeaderProps): react0.JSX.Element;
|
|
814
814
|
//#endregion
|
|
815
815
|
//#region src/components/navigation/anatomy/content.d.ts
|
|
816
816
|
interface NavigationContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
817
|
-
declare function NavigationContent(props: NavigationContentProps):
|
|
817
|
+
declare function NavigationContent(props: NavigationContentProps): react0.JSX.Element;
|
|
818
818
|
//#endregion
|
|
819
819
|
//#region src/components/navigation/anatomy/footer.d.ts
|
|
820
820
|
interface NavigationFooterProps extends PropsWithElement<'footer'>, HTMLAttributes<'footer'> {}
|
|
821
|
-
declare function NavigationFooter(props: NavigationFooterProps):
|
|
821
|
+
declare function NavigationFooter(props: NavigationFooterProps): react0.JSX.Element;
|
|
822
822
|
//#endregion
|
|
823
823
|
//#region src/components/navigation/anatomy/group.d.ts
|
|
824
824
|
interface NavigationGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
825
|
-
declare function NavigationGroup(props: NavigationGroupProps):
|
|
825
|
+
declare function NavigationGroup(props: NavigationGroupProps): react0.JSX.Element;
|
|
826
826
|
//#endregion
|
|
827
827
|
//#region src/components/navigation/anatomy/label.d.ts
|
|
828
828
|
interface NavigationLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
829
|
-
declare function NavigationLabel(props: NavigationLabelProps):
|
|
829
|
+
declare function NavigationLabel(props: NavigationLabelProps): react0.JSX.Element;
|
|
830
830
|
//#endregion
|
|
831
831
|
//#region src/components/navigation/modules/anatomy.d.ts
|
|
832
832
|
declare const Navigation: typeof NavigationRoot & {
|
|
@@ -840,27 +840,27 @@ declare const Navigation: typeof NavigationRoot & {
|
|
|
840
840
|
//#endregion
|
|
841
841
|
//#region src/components/pagination/anatomy/ellipsis.d.ts
|
|
842
842
|
interface PaginationEllipsisProps extends EllipsisProps, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
843
|
-
declare function Ellipsis(props: PaginationEllipsisProps):
|
|
843
|
+
declare function Ellipsis(props: PaginationEllipsisProps): react0.JSX.Element;
|
|
844
844
|
//#endregion
|
|
845
845
|
//#region src/components/pagination/anatomy/first-trigger.d.ts
|
|
846
846
|
interface PaginationFirstTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
847
|
-
declare function FirstTrigger(props: PaginationFirstTriggerProps):
|
|
847
|
+
declare function FirstTrigger(props: PaginationFirstTriggerProps): react0.JSX.Element;
|
|
848
848
|
//#endregion
|
|
849
849
|
//#region src/components/pagination/anatomy/item.d.ts
|
|
850
850
|
interface PaginationItemProps extends ItemProps$5, PropsWithElement<'a'>, HTMLAttributes<'a', 'type'> {}
|
|
851
|
-
declare function Item$5(props: PaginationItemProps):
|
|
851
|
+
declare function Item$5(props: PaginationItemProps): react0.JSX.Element;
|
|
852
852
|
//#endregion
|
|
853
853
|
//#region src/components/pagination/anatomy/last-trigger.d.ts
|
|
854
854
|
interface PaginationLastTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
855
|
-
declare function LastTrigger(props: PaginationLastTriggerProps):
|
|
855
|
+
declare function LastTrigger(props: PaginationLastTriggerProps): react0.JSX.Element;
|
|
856
856
|
//#endregion
|
|
857
857
|
//#region src/components/pagination/anatomy/next-trigger.d.ts
|
|
858
858
|
interface PaginationNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
859
|
-
declare function NextTrigger(props: PaginationNextTriggerProps):
|
|
859
|
+
declare function NextTrigger(props: PaginationNextTriggerProps): react0.JSX.Element;
|
|
860
860
|
//#endregion
|
|
861
861
|
//#region src/components/pagination/anatomy/prev-trigger.d.ts
|
|
862
862
|
interface PaginationPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
863
|
-
declare function PrevTrigger(props: PaginationPrevTriggerProps):
|
|
863
|
+
declare function PrevTrigger(props: PaginationPrevTriggerProps): react0.JSX.Element;
|
|
864
864
|
//#endregion
|
|
865
865
|
//#region src/components/pagination/modules/provider.d.ts
|
|
866
866
|
declare function usePagination(props?: Omit<Props$10, 'id'>): Api$10<PropTypes>;
|
|
@@ -895,23 +895,23 @@ declare const Pagination: typeof PaginationRoot & {
|
|
|
895
895
|
//#endregion
|
|
896
896
|
//#region src/components/popover/anatomy/anchor.d.ts
|
|
897
897
|
interface PopoverAnchorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
898
|
-
declare function Anchor(props: PopoverAnchorProps):
|
|
898
|
+
declare function Anchor(props: PopoverAnchorProps): react0.JSX.Element;
|
|
899
899
|
//#endregion
|
|
900
900
|
//#region src/components/popover/anatomy/close-trigger.d.ts
|
|
901
901
|
interface PopoverCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
902
|
-
declare function CloseTrigger$1(props: PopoverCloseTriggerProps):
|
|
902
|
+
declare function CloseTrigger$1(props: PopoverCloseTriggerProps): react0.JSX.Element;
|
|
903
903
|
//#endregion
|
|
904
904
|
//#region src/components/popover/anatomy/content.d.ts
|
|
905
905
|
interface PopoverContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
906
|
-
declare function Content$2(props: PopoverContentProps):
|
|
906
|
+
declare function Content$2(props: PopoverContentProps): react0.JSX.Element;
|
|
907
907
|
//#endregion
|
|
908
908
|
//#region src/components/popover/anatomy/description.d.ts
|
|
909
909
|
interface PopoverDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
910
|
-
declare function Description$1(props: PopoverDescriptionProps):
|
|
910
|
+
declare function Description$1(props: PopoverDescriptionProps): react0.JSX.Element;
|
|
911
911
|
//#endregion
|
|
912
912
|
//#region src/components/popover/anatomy/positioner.d.ts
|
|
913
913
|
interface PopoverPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
914
|
-
declare function Positioner$1(props: PopoverPositionerProps):
|
|
914
|
+
declare function Positioner$1(props: PopoverPositionerProps): react0.JSX.Element;
|
|
915
915
|
//#endregion
|
|
916
916
|
//#region src/components/popover/anatomy/root.d.ts
|
|
917
917
|
interface PopoverRootProps extends PropsWithChildren, Omit<Props$11, 'id'> {}
|
|
@@ -934,19 +934,19 @@ declare function RootProvider$8(props: PopoverRootProviderProps): react_jsx_runt
|
|
|
934
934
|
//#endregion
|
|
935
935
|
//#region src/components/popover/anatomy/title.d.ts
|
|
936
936
|
interface PopoverTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
937
|
-
declare function Title$1(props: PopoverTitleProps):
|
|
937
|
+
declare function Title$1(props: PopoverTitleProps): react0.JSX.Element;
|
|
938
938
|
//#endregion
|
|
939
939
|
//#region src/components/popover/anatomy/arrow.d.ts
|
|
940
940
|
interface PopoverArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
941
|
-
declare function Arrow$1(props: PopoverArrowProps):
|
|
941
|
+
declare function Arrow$1(props: PopoverArrowProps): react0.JSX.Element;
|
|
942
942
|
//#endregion
|
|
943
943
|
//#region src/components/popover/anatomy/arrow-tip.d.ts
|
|
944
944
|
interface PopoverArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
945
|
-
declare function ArrowTip$1(props: PopoverArrowTipProps):
|
|
945
|
+
declare function ArrowTip$1(props: PopoverArrowTipProps): react0.JSX.Element;
|
|
946
946
|
//#endregion
|
|
947
947
|
//#region src/components/popover/anatomy/trigger.d.ts
|
|
948
948
|
interface PopoverTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
949
|
-
declare function Trigger$2(props: PopoverTriggerProps):
|
|
949
|
+
declare function Trigger$2(props: PopoverTriggerProps): react0.JSX.Element;
|
|
950
950
|
//#endregion
|
|
951
951
|
//#region src/components/popover/modules/anatomy.d.ts
|
|
952
952
|
declare const Popover: typeof Root$10 & {
|
|
@@ -985,11 +985,11 @@ declare const Portal: typeof Root$9;
|
|
|
985
985
|
//#endregion
|
|
986
986
|
//#region src/components/progress/anatomy/label.d.ts
|
|
987
987
|
interface ProgressLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
988
|
-
declare function Label$6(props: ProgressLabelProps):
|
|
988
|
+
declare function Label$6(props: ProgressLabelProps): react0.JSX.Element;
|
|
989
989
|
//#endregion
|
|
990
990
|
//#region src/components/progress/anatomy/range.d.ts
|
|
991
991
|
interface ProgressRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
992
|
-
declare function Range$1(props: ProgressRangeProps):
|
|
992
|
+
declare function Range$1(props: ProgressRangeProps): react0.JSX.Element;
|
|
993
993
|
//#endregion
|
|
994
994
|
//#region src/components/progress/anatomy/root.d.ts
|
|
995
995
|
interface ProgressRootProps extends Omit<Props$12, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1012,23 +1012,23 @@ declare function RootProvider$7(props: ProgressRootProviderProps): react_jsx_run
|
|
|
1012
1012
|
//#endregion
|
|
1013
1013
|
//#region src/components/progress/anatomy/track.d.ts
|
|
1014
1014
|
interface ProgressTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1015
|
-
declare function Track$1(props: ProgressTrackProps):
|
|
1015
|
+
declare function Track$1(props: ProgressTrackProps): react0.JSX.Element;
|
|
1016
1016
|
//#endregion
|
|
1017
1017
|
//#region src/components/progress/anatomy/value-text.d.ts
|
|
1018
1018
|
interface ProgressValueTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1019
|
-
declare function ValueText$1(props: ProgressValueTextProps):
|
|
1019
|
+
declare function ValueText$1(props: ProgressValueTextProps): react0.JSX.Element;
|
|
1020
1020
|
//#endregion
|
|
1021
1021
|
//#region src/components/progress/anatomy/circle.d.ts
|
|
1022
1022
|
interface ProgressCircleProps extends PropsWithElement<'svg'>, HTMLAttributes<'svg'> {}
|
|
1023
|
-
declare function Circle(props: ProgressCircleProps):
|
|
1023
|
+
declare function Circle(props: ProgressCircleProps): react0.JSX.Element;
|
|
1024
1024
|
//#endregion
|
|
1025
1025
|
//#region src/components/progress/anatomy/circle-range.d.ts
|
|
1026
1026
|
interface ProgressCircleRangeProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1027
|
-
declare function CircleRange(props: ProgressCircleRangeProps):
|
|
1027
|
+
declare function CircleRange(props: ProgressCircleRangeProps): react0.JSX.Element;
|
|
1028
1028
|
//#endregion
|
|
1029
1029
|
//#region src/components/progress/anatomy/circle-track.d.ts
|
|
1030
1030
|
interface ProgressCircleTrackProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
1031
|
-
declare function CircleTrack(props: ProgressCircleTrackProps):
|
|
1031
|
+
declare function CircleTrack(props: ProgressCircleTrackProps): react0.JSX.Element;
|
|
1032
1032
|
//#endregion
|
|
1033
1033
|
//#region src/components/progress/modules/anatomy.d.ts
|
|
1034
1034
|
declare const Progress: typeof Root$8 & {
|
|
@@ -1045,11 +1045,11 @@ declare const Progress: typeof Root$8 & {
|
|
|
1045
1045
|
//#endregion
|
|
1046
1046
|
//#region src/components/rating-group/anatomy/control.d.ts
|
|
1047
1047
|
interface RatingGroupControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1048
|
-
declare function Control$4(props: RatingGroupControlProps):
|
|
1048
|
+
declare function Control$4(props: RatingGroupControlProps): react0.JSX.Element;
|
|
1049
1049
|
//#endregion
|
|
1050
1050
|
//#region src/components/rating-group/anatomy/hidden-input.d.ts
|
|
1051
1051
|
interface RatingGroupHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'id' | 'dir' | 'children'> {}
|
|
1052
|
-
declare function HiddenInput$3(props: RatingGroupHiddenInputProps):
|
|
1052
|
+
declare function HiddenInput$3(props: RatingGroupHiddenInputProps): react0.JSX.Element;
|
|
1053
1053
|
//#endregion
|
|
1054
1054
|
//#region src/components/rating-group/anatomy/item.d.ts
|
|
1055
1055
|
interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HTMLAttributes<'span', 'id' | 'dir'> {
|
|
@@ -1072,11 +1072,11 @@ interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HT
|
|
|
1072
1072
|
*/
|
|
1073
1073
|
full?: ReactNode;
|
|
1074
1074
|
}
|
|
1075
|
-
declare function Item$4(props: RatingGroupItemProps):
|
|
1075
|
+
declare function Item$4(props: RatingGroupItemProps): react0.JSX.Element;
|
|
1076
1076
|
//#endregion
|
|
1077
1077
|
//#region src/components/rating-group/anatomy/label.d.ts
|
|
1078
1078
|
interface RatingGroupLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
1079
|
-
declare function Label$5(props: RatingGroupLabelProps):
|
|
1079
|
+
declare function Label$5(props: RatingGroupLabelProps): react0.JSX.Element;
|
|
1080
1080
|
//#endregion
|
|
1081
1081
|
//#region src/components/rating-group/anatomy/root.d.ts
|
|
1082
1082
|
interface RatingGroupRootProps extends Omit<Props$13, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1109,19 +1109,19 @@ declare const RatingGroup: typeof Root$7 & {
|
|
|
1109
1109
|
//#endregion
|
|
1110
1110
|
//#region src/components/segmented-control/anatomy/control.d.ts
|
|
1111
1111
|
interface SegmentedControlControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1112
|
-
declare function Control$3(props: SegmentedControlControlProps):
|
|
1112
|
+
declare function Control$3(props: SegmentedControlControlProps): react0.JSX.Element;
|
|
1113
1113
|
//#endregion
|
|
1114
1114
|
//#region src/components/segmented-control/anatomy/indicator.d.ts
|
|
1115
1115
|
interface SegmentedControlIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1116
|
-
declare function Indicator$1(props: SegmentedControlIndicatorProps):
|
|
1116
|
+
declare function Indicator$1(props: SegmentedControlIndicatorProps): react0.JSX.Element;
|
|
1117
1117
|
//#endregion
|
|
1118
1118
|
//#region src/components/segmented-control/anatomy/item-hidden-input.d.ts
|
|
1119
1119
|
interface SegmentedControlItemHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1120
|
-
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps):
|
|
1120
|
+
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps): react0.JSX.Element;
|
|
1121
1121
|
//#endregion
|
|
1122
1122
|
//#region src/components/segmented-control/anatomy/item-text.d.ts
|
|
1123
1123
|
interface SegmentedControlItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1124
|
-
declare function ItemText$1(props: SegmentedControlItemTextProps):
|
|
1124
|
+
declare function ItemText$1(props: SegmentedControlItemTextProps): react0.JSX.Element;
|
|
1125
1125
|
//#endregion
|
|
1126
1126
|
//#region src/components/segmented-control/anatomy/item.d.ts
|
|
1127
1127
|
interface SegmentedControlItemProps extends ItemProps$7, PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
@@ -1129,7 +1129,7 @@ declare function Item$3(props: SegmentedControlItemProps): react_jsx_runtime0.JS
|
|
|
1129
1129
|
//#endregion
|
|
1130
1130
|
//#region src/components/segmented-control/anatomy/label.d.ts
|
|
1131
1131
|
interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1132
|
-
declare function Label$4(props: SegmentedControlLabelProps):
|
|
1132
|
+
declare function Label$4(props: SegmentedControlLabelProps): react0.JSX.Element;
|
|
1133
1133
|
//#endregion
|
|
1134
1134
|
//#region src/components/segmented-control/modules/provider.d.ts
|
|
1135
1135
|
declare function useSegmentedControl(props?: Omit<Props$14, 'id'>): Api$14<PropTypes>;
|
|
@@ -1164,27 +1164,27 @@ declare const SegmentedControl: typeof Root$6 & {
|
|
|
1164
1164
|
//#endregion
|
|
1165
1165
|
//#region src/components/slider/anatomy/control.d.ts
|
|
1166
1166
|
interface SliderControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1167
|
-
declare function Control$2(props: SliderControlProps):
|
|
1167
|
+
declare function Control$2(props: SliderControlProps): react0.JSX.Element;
|
|
1168
1168
|
//#endregion
|
|
1169
1169
|
//#region src/components/slider/anatomy/hidden-input.d.ts
|
|
1170
1170
|
interface SliderHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1171
|
-
declare function HiddenInput$2(props: SliderHiddenInputProps):
|
|
1171
|
+
declare function HiddenInput$2(props: SliderHiddenInputProps): react0.JSX.Element;
|
|
1172
1172
|
//#endregion
|
|
1173
1173
|
//#region src/components/slider/anatomy/label.d.ts
|
|
1174
1174
|
interface SliderLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1175
|
-
declare function Label$3(props: SliderLabelProps):
|
|
1175
|
+
declare function Label$3(props: SliderLabelProps): react0.JSX.Element;
|
|
1176
1176
|
//#endregion
|
|
1177
1177
|
//#region src/components/slider/anatomy/marker-group.d.ts
|
|
1178
1178
|
interface SliderMarkerGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1179
|
-
declare function MarkerGroup(props: SliderMarkerGroupProps):
|
|
1179
|
+
declare function MarkerGroup(props: SliderMarkerGroupProps): react0.JSX.Element;
|
|
1180
1180
|
//#endregion
|
|
1181
1181
|
//#region src/components/slider/anatomy/marker.d.ts
|
|
1182
1182
|
interface SliderMarkerProps extends MarkerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1183
|
-
declare function Marker(props: SliderMarkerProps):
|
|
1183
|
+
declare function Marker(props: SliderMarkerProps): react0.JSX.Element;
|
|
1184
1184
|
//#endregion
|
|
1185
1185
|
//#region src/components/slider/anatomy/range.d.ts
|
|
1186
1186
|
interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1187
|
-
declare function Range(props: SliderRangeProps):
|
|
1187
|
+
declare function Range(props: SliderRangeProps): react0.JSX.Element;
|
|
1188
1188
|
//#endregion
|
|
1189
1189
|
//#region src/components/slider/modules/provider.d.ts
|
|
1190
1190
|
declare function useSlider(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
@@ -1211,11 +1211,11 @@ declare function Thumb$1(props: SliderThumbProps): react_jsx_runtime0.JSX.Elemen
|
|
|
1211
1211
|
//#endregion
|
|
1212
1212
|
//#region src/components/slider/anatomy/track.d.ts
|
|
1213
1213
|
interface SliderTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1214
|
-
declare function Track(props: SliderTrackProps):
|
|
1214
|
+
declare function Track(props: SliderTrackProps): react0.JSX.Element;
|
|
1215
1215
|
//#endregion
|
|
1216
1216
|
//#region src/components/slider/anatomy/value-text.d.ts
|
|
1217
1217
|
interface SliderValueTextProps extends PropsWithElement<'output'>, HTMLAttributes<'output'> {}
|
|
1218
|
-
declare function ValueText(props: SliderValueTextProps):
|
|
1218
|
+
declare function ValueText(props: SliderValueTextProps): react0.JSX.Element;
|
|
1219
1219
|
//#endregion
|
|
1220
1220
|
//#region src/components/slider/modules/anatomy.d.ts
|
|
1221
1221
|
declare const Slider: typeof SliderRoot & {
|
|
@@ -1234,15 +1234,15 @@ declare const Slider: typeof SliderRoot & {
|
|
|
1234
1234
|
//#endregion
|
|
1235
1235
|
//#region src/components/switch/anatomy/control.d.ts
|
|
1236
1236
|
interface SwitchControlProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1237
|
-
declare function Control$1(props: SwitchControlProps):
|
|
1237
|
+
declare function Control$1(props: SwitchControlProps): react0.JSX.Element;
|
|
1238
1238
|
//#endregion
|
|
1239
1239
|
//#region src/components/switch/anatomy/hidden-input.d.ts
|
|
1240
1240
|
interface SwitchHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1241
|
-
declare function HiddenInput$1(props: SwitchHiddenInputProps):
|
|
1241
|
+
declare function HiddenInput$1(props: SwitchHiddenInputProps): react0.JSX.Element;
|
|
1242
1242
|
//#endregion
|
|
1243
1243
|
//#region src/components/switch/anatomy/label.d.ts
|
|
1244
1244
|
interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1245
|
-
declare function Label$2(props: SwitchLabelProps):
|
|
1245
|
+
declare function Label$2(props: SwitchLabelProps): react0.JSX.Element;
|
|
1246
1246
|
//#endregion
|
|
1247
1247
|
//#region src/components/switch/modules/provider.d.ts
|
|
1248
1248
|
declare function useSwitch(props?: Omit<Props$16, 'id'>): Api$16<PropTypes>;
|
|
@@ -1261,7 +1261,7 @@ declare function RootProvider$4(props: SwitchRootProviderProps): react_jsx_runti
|
|
|
1261
1261
|
//#endregion
|
|
1262
1262
|
//#region src/components/switch/anatomy/thumb.d.ts
|
|
1263
1263
|
interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1264
|
-
declare function Thumb(props: SwitchThumbProps):
|
|
1264
|
+
declare function Thumb(props: SwitchThumbProps): react0.JSX.Element;
|
|
1265
1265
|
//#endregion
|
|
1266
1266
|
//#region src/components/switch/anatomy/root.d.ts
|
|
1267
1267
|
interface SwitchRootProps extends Omit<Props$16, 'id'>, PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
@@ -1279,15 +1279,15 @@ declare const Switch: typeof Root$5 & {
|
|
|
1279
1279
|
//#endregion
|
|
1280
1280
|
//#region src/components/tabs/anatomy/content.d.ts
|
|
1281
1281
|
interface TabsContentProps extends ContentProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1282
|
-
declare function Content$1(props: TabsContentProps):
|
|
1282
|
+
declare function Content$1(props: TabsContentProps): react0.JSX.Element;
|
|
1283
1283
|
//#endregion
|
|
1284
1284
|
//#region src/components/tabs/anatomy/indicator.d.ts
|
|
1285
1285
|
interface TabsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1286
|
-
declare function Indicator(props: TabsIndicatorProps):
|
|
1286
|
+
declare function Indicator(props: TabsIndicatorProps): react0.JSX.Element;
|
|
1287
1287
|
//#endregion
|
|
1288
1288
|
//#region src/components/tabs/anatomy/list.d.ts
|
|
1289
1289
|
interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1290
|
-
declare function List(props: TabsListProps):
|
|
1290
|
+
declare function List(props: TabsListProps): react0.JSX.Element;
|
|
1291
1291
|
//#endregion
|
|
1292
1292
|
//#region src/components/tabs/anatomy/root.d.ts
|
|
1293
1293
|
interface TabsRootProps extends Omit<Props$17, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1310,7 +1310,7 @@ declare function RootProvider$3(props: TabsRootProviderProps): react_jsx_runtime
|
|
|
1310
1310
|
//#endregion
|
|
1311
1311
|
//#region src/components/tabs/anatomy/trigger.d.ts
|
|
1312
1312
|
interface TabsTriggerProps extends TriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
1313
|
-
declare function Trigger$1(props: TabsTriggerProps):
|
|
1313
|
+
declare function Trigger$1(props: TabsTriggerProps): react0.JSX.Element;
|
|
1314
1314
|
//#endregion
|
|
1315
1315
|
//#region src/components/tabs/modules/anatomy.d.ts
|
|
1316
1316
|
declare const Tabs: typeof Root$4 & {
|
|
@@ -1324,19 +1324,19 @@ declare const Tabs: typeof Root$4 & {
|
|
|
1324
1324
|
//#endregion
|
|
1325
1325
|
//#region src/components/tags-input/anatomy/clear-trigger.d.ts
|
|
1326
1326
|
interface TagsInputClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1327
|
-
declare function ClearTrigger(props: TagsInputClearTriggerProps):
|
|
1327
|
+
declare function ClearTrigger(props: TagsInputClearTriggerProps): react0.JSX.Element;
|
|
1328
1328
|
//#endregion
|
|
1329
1329
|
//#region src/components/tags-input/anatomy/control.d.ts
|
|
1330
1330
|
interface TagsInputControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1331
|
-
declare function Control(props: TagsInputControlProps):
|
|
1331
|
+
declare function Control(props: TagsInputControlProps): react0.JSX.Element;
|
|
1332
1332
|
//#endregion
|
|
1333
1333
|
//#region src/components/tags-input/anatomy/hidden-input.d.ts
|
|
1334
1334
|
interface TagsInputHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1335
|
-
declare function HiddenInput(props: TagsInputHiddenInputProps):
|
|
1335
|
+
declare function HiddenInput(props: TagsInputHiddenInputProps): react0.JSX.Element;
|
|
1336
1336
|
//#endregion
|
|
1337
1337
|
//#region src/components/tags-input/anatomy/input.d.ts
|
|
1338
1338
|
interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1339
|
-
declare function Input(props: TagsInputInputProps):
|
|
1339
|
+
declare function Input(props: TagsInputInputProps): react0.JSX.Element;
|
|
1340
1340
|
//#endregion
|
|
1341
1341
|
//#region src/components/tags-input/anatomy/item.d.ts
|
|
1342
1342
|
interface TagsInputItemProps extends ItemProps$8, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
@@ -1344,23 +1344,23 @@ declare function Item$2(props: TagsInputItemProps): react_jsx_runtime0.JSX.Eleme
|
|
|
1344
1344
|
//#endregion
|
|
1345
1345
|
//#region src/components/tags-input/anatomy/item-delete-trigger.d.ts
|
|
1346
1346
|
interface TagsInputItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1347
|
-
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps):
|
|
1347
|
+
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps): react0.JSX.Element;
|
|
1348
1348
|
//#endregion
|
|
1349
1349
|
//#region src/components/tags-input/anatomy/item-input.d.ts
|
|
1350
1350
|
interface TagsInputItemInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1351
|
-
declare function ItemInput(props: TagsInputItemInputProps):
|
|
1351
|
+
declare function ItemInput(props: TagsInputItemInputProps): react0.JSX.Element;
|
|
1352
1352
|
//#endregion
|
|
1353
1353
|
//#region src/components/tags-input/anatomy/item-preview.d.ts
|
|
1354
1354
|
interface TagsInputItemPreviewProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1355
|
-
declare function ItemPreview(props: TagsInputItemPreviewProps):
|
|
1355
|
+
declare function ItemPreview(props: TagsInputItemPreviewProps): react0.JSX.Element;
|
|
1356
1356
|
//#endregion
|
|
1357
1357
|
//#region src/components/tags-input/anatomy/item-text.d.ts
|
|
1358
1358
|
interface TagsInputItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1359
|
-
declare function ItemText(props: TagsInputItemTextProps):
|
|
1359
|
+
declare function ItemText(props: TagsInputItemTextProps): react0.JSX.Element;
|
|
1360
1360
|
//#endregion
|
|
1361
1361
|
//#region src/components/tags-input/anatomy/label.d.ts
|
|
1362
1362
|
interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1363
|
-
declare function Label$1(props: TagsInputLabelProps):
|
|
1363
|
+
declare function Label$1(props: TagsInputLabelProps): react0.JSX.Element;
|
|
1364
1364
|
//#endregion
|
|
1365
1365
|
//#region src/components/tags-input/anatomy/root.d.ts
|
|
1366
1366
|
interface TagsInputRootProps extends Omit<Props$18, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1399,11 +1399,11 @@ declare const TagsInput: typeof Root$3 & {
|
|
|
1399
1399
|
//#endregion
|
|
1400
1400
|
//#region src/components/toast/anatomy/close-trigger.d.ts
|
|
1401
1401
|
interface ToastCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1402
|
-
declare function CloseTrigger(props: ToastCloseTriggerProps):
|
|
1402
|
+
declare function CloseTrigger(props: ToastCloseTriggerProps): react0.JSX.Element;
|
|
1403
1403
|
//#endregion
|
|
1404
1404
|
//#region src/components/toast/anatomy/description.d.ts
|
|
1405
1405
|
interface ToastDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1406
|
-
declare function Description(props: ToastDescriptionProps):
|
|
1406
|
+
declare function Description(props: ToastDescriptionProps): react0.JSX.Element;
|
|
1407
1407
|
//#endregion
|
|
1408
1408
|
//#region src/components/toast/anatomy/group.d.ts
|
|
1409
1409
|
interface ToastGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'children'> {
|
|
@@ -1414,7 +1414,7 @@ declare function Group(props: ToastGroupProps): react_jsx_runtime0.JSX.Element;
|
|
|
1414
1414
|
//#endregion
|
|
1415
1415
|
//#region src/components/toast/anatomy/message.d.ts
|
|
1416
1416
|
interface ToastMessageProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1417
|
-
declare function Message(props: ToastMessageProps):
|
|
1417
|
+
declare function Message(props: ToastMessageProps): react0.JSX.Element;
|
|
1418
1418
|
//#endregion
|
|
1419
1419
|
//#region src/components/toast/anatomy/root.d.ts
|
|
1420
1420
|
interface ToastRootProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -1430,11 +1430,11 @@ declare function RootContext$3(props: ToastRootContextProps): ReactNode;
|
|
|
1430
1430
|
//#endregion
|
|
1431
1431
|
//#region src/components/toast/anatomy/title.d.ts
|
|
1432
1432
|
interface ToastTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1433
|
-
declare function Title(props: ToastTitleProps):
|
|
1433
|
+
declare function Title(props: ToastTitleProps): react0.JSX.Element;
|
|
1434
1434
|
//#endregion
|
|
1435
1435
|
//#region src/components/toast/anatomy/action-trigger.d.ts
|
|
1436
1436
|
interface ToastActionTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1437
|
-
declare function ActionTrigger(props: ToastActionTriggerProps):
|
|
1437
|
+
declare function ActionTrigger(props: ToastActionTriggerProps): react0.JSX.Element;
|
|
1438
1438
|
//#endregion
|
|
1439
1439
|
//#region src/components/toast/modules/anatomy.d.ts
|
|
1440
1440
|
declare const Toast: typeof Root$2 & {
|
|
@@ -1449,7 +1449,7 @@ declare const Toast: typeof Root$2 & {
|
|
|
1449
1449
|
//#endregion
|
|
1450
1450
|
//#region src/components/toggle-group/anatomy/item.d.ts
|
|
1451
1451
|
interface ToggleGroupItemProps extends ItemProps$9, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1452
|
-
declare function Item$1(props: ToggleGroupItemProps):
|
|
1452
|
+
declare function Item$1(props: ToggleGroupItemProps): react0.JSX.Element;
|
|
1453
1453
|
//#endregion
|
|
1454
1454
|
//#region src/components/toggle-group/anatomy/root.d.ts
|
|
1455
1455
|
interface ToggleGroupRootProps extends Omit<Props$20, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1479,15 +1479,15 @@ declare const ToggleGroup: typeof ToggleGroupRoot & {
|
|
|
1479
1479
|
//#endregion
|
|
1480
1480
|
//#region src/components/tooltip/anatomy/arrow.d.ts
|
|
1481
1481
|
interface TooltipArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1482
|
-
declare function Arrow(props: TooltipArrowProps):
|
|
1482
|
+
declare function Arrow(props: TooltipArrowProps): react0.JSX.Element;
|
|
1483
1483
|
//#endregion
|
|
1484
1484
|
//#region src/components/tooltip/anatomy/arrow-tip.d.ts
|
|
1485
1485
|
interface TooltipArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1486
|
-
declare function ArrowTip(props: TooltipArrowTipProps):
|
|
1486
|
+
declare function ArrowTip(props: TooltipArrowTipProps): react0.JSX.Element;
|
|
1487
1487
|
//#endregion
|
|
1488
1488
|
//#region src/components/tooltip/anatomy/content.d.ts
|
|
1489
1489
|
interface TooltipContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1490
|
-
declare function Content(props: TooltipContentProps):
|
|
1490
|
+
declare function Content(props: TooltipContentProps): react0.JSX.Element;
|
|
1491
1491
|
//#endregion
|
|
1492
1492
|
//#region src/components/tooltip/anatomy/positioner.d.ts
|
|
1493
1493
|
interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -1514,7 +1514,7 @@ declare function RootProvider$1(props: TooltipRootProviderProps): react_jsx_runt
|
|
|
1514
1514
|
//#endregion
|
|
1515
1515
|
//#region src/components/tooltip/anatomy/trigger.d.ts
|
|
1516
1516
|
interface TooltipTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1517
|
-
declare function Trigger(props: TooltipTriggerProps):
|
|
1517
|
+
declare function Trigger(props: TooltipTriggerProps): react0.JSX.Element;
|
|
1518
1518
|
//#endregion
|
|
1519
1519
|
//#region src/components/tooltip/modules/anatomy.d.ts
|
|
1520
1520
|
declare const Tooltip: typeof Root$1 & {
|
|
@@ -1529,31 +1529,31 @@ declare const Tooltip: typeof Root$1 & {
|
|
|
1529
1529
|
//#endregion
|
|
1530
1530
|
//#region src/components/tree-view/anatomy/branch-content.d.ts
|
|
1531
1531
|
interface TreeViewBranchContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1532
|
-
declare function BranchContent(props: TreeViewBranchContentProps):
|
|
1532
|
+
declare function BranchContent(props: TreeViewBranchContentProps): react0.JSX.Element;
|
|
1533
1533
|
//#endregion
|
|
1534
1534
|
//#region src/components/tree-view/anatomy/branch-control.d.ts
|
|
1535
1535
|
interface TreeViewBranchControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1536
|
-
declare function BranchControl(props: TreeViewBranchControlProps):
|
|
1536
|
+
declare function BranchControl(props: TreeViewBranchControlProps): react0.JSX.Element;
|
|
1537
1537
|
//#endregion
|
|
1538
1538
|
//#region src/components/tree-view/anatomy/branch-indent-guide.d.ts
|
|
1539
1539
|
interface TreeViewBranchIndentGuideProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1540
|
-
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps):
|
|
1540
|
+
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps): react0.JSX.Element;
|
|
1541
1541
|
//#endregion
|
|
1542
1542
|
//#region src/components/tree-view/anatomy/branch-indicator.d.ts
|
|
1543
1543
|
interface TreeViewBranchIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1544
|
-
declare function BranchIndicator(props: TreeViewBranchIndicatorProps):
|
|
1544
|
+
declare function BranchIndicator(props: TreeViewBranchIndicatorProps): react0.JSX.Element;
|
|
1545
1545
|
//#endregion
|
|
1546
1546
|
//#region src/components/tree-view/anatomy/branch-text.d.ts
|
|
1547
1547
|
interface TreeViewBranchTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1548
|
-
declare function BranchText(props: TreeViewBranchTextProps):
|
|
1548
|
+
declare function BranchText(props: TreeViewBranchTextProps): react0.JSX.Element;
|
|
1549
1549
|
//#endregion
|
|
1550
1550
|
//#region src/components/tree-view/anatomy/branch.d.ts
|
|
1551
1551
|
interface TreeViewBranchProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1552
|
-
declare function Branch(props: TreeViewBranchProps):
|
|
1552
|
+
declare function Branch(props: TreeViewBranchProps): react0.JSX.Element;
|
|
1553
1553
|
//#endregion
|
|
1554
1554
|
//#region src/components/tree-view/anatomy/item.d.ts
|
|
1555
1555
|
interface TreeViewItemProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1556
|
-
declare function Item(props: TreeViewItemProps):
|
|
1556
|
+
declare function Item(props: TreeViewItemProps): react0.JSX.Element;
|
|
1557
1557
|
//#endregion
|
|
1558
1558
|
//#region src/components/tree-view/anatomy/label.d.ts
|
|
1559
1559
|
interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'> {
|
|
@@ -1599,7 +1599,7 @@ declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>
|
|
|
1599
1599
|
//#endregion
|
|
1600
1600
|
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
1601
1601
|
interface TreeViewTreeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1602
|
-
declare function Tree(props: TreeViewTreeProps):
|
|
1602
|
+
declare function Tree(props: TreeViewTreeProps): react0.JSX.Element;
|
|
1603
1603
|
//#endregion
|
|
1604
1604
|
//#region src/components/tree-view/modules/anatomy.d.ts
|
|
1605
1605
|
declare const TreeView: typeof Root & {
|