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