@skeletonlabs/skeleton-react 4.4.1 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +154 -154
- package/dist/index.mjs +2 -24
- package/package.json +26 -26
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";
|
|
@@ -41,11 +41,11 @@ interface PropsWithElement<T extends keyof JSX.IntrinsicElements> {
|
|
|
41
41
|
//#endregion
|
|
42
42
|
//#region src/components/accordion/anatomy/item-content.d.ts
|
|
43
43
|
interface AccordionItemContentProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
44
|
-
declare function ItemContent(props: AccordionItemContentProps):
|
|
44
|
+
declare function ItemContent(props: AccordionItemContentProps): react0.JSX.Element;
|
|
45
45
|
//#endregion
|
|
46
46
|
//#region src/components/accordion/anatomy/item-indicator.d.ts
|
|
47
47
|
interface AccordionItemIndicatorProps extends PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
48
|
-
declare function ItemIndicator$3(props: AccordionItemIndicatorProps):
|
|
48
|
+
declare function ItemIndicator$3(props: AccordionItemIndicatorProps): react0.JSX.Element;
|
|
49
49
|
//#endregion
|
|
50
50
|
//#region src/components/accordion/anatomy/item.d.ts
|
|
51
51
|
interface AccordionItemProps extends ItemProps, PropsWithChildren, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -72,7 +72,7 @@ declare function RootProvider$15(props: AccordionRootProviderProps): react_jsx_r
|
|
|
72
72
|
//#endregion
|
|
73
73
|
//#region src/components/accordion/anatomy/item-trigger.d.ts
|
|
74
74
|
interface AccordionItemTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
75
|
-
declare function ItemTrigger(props: AccordionItemTriggerProps):
|
|
75
|
+
declare function ItemTrigger(props: AccordionItemTriggerProps): react0.JSX.Element;
|
|
76
76
|
//#endregion
|
|
77
77
|
//#region src/components/accordion/modules/anatomy.d.ts
|
|
78
78
|
declare const Accordion: typeof Root$17 & {
|
|
@@ -86,23 +86,23 @@ declare const Accordion: typeof Root$17 & {
|
|
|
86
86
|
//#endregion
|
|
87
87
|
//#region src/components/app-bar/anatomy/root.d.ts
|
|
88
88
|
interface AppBarRootProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
89
|
-
declare function AppBarRoot(props: AppBarRootProps):
|
|
89
|
+
declare function AppBarRoot(props: AppBarRootProps): react0.JSX.Element;
|
|
90
90
|
//#endregion
|
|
91
91
|
//#region src/components/app-bar/anatomy/toolbar.d.ts
|
|
92
92
|
interface AppBarToolbarProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
93
|
-
declare function AppBarToolbar(props: AppBarToolbarProps):
|
|
93
|
+
declare function AppBarToolbar(props: AppBarToolbarProps): react0.JSX.Element;
|
|
94
94
|
//#endregion
|
|
95
95
|
//#region src/components/app-bar/anatomy/lead.d.ts
|
|
96
96
|
interface AppBarLeadProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
97
|
-
declare function AppBarLead(props: AppBarLeadProps):
|
|
97
|
+
declare function AppBarLead(props: AppBarLeadProps): react0.JSX.Element;
|
|
98
98
|
//#endregion
|
|
99
99
|
//#region src/components/app-bar/anatomy/headline.d.ts
|
|
100
100
|
interface AppBarHeadlineProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
101
|
-
declare function AppBarHeadline(props: AppBarHeadlineProps):
|
|
101
|
+
declare function AppBarHeadline(props: AppBarHeadlineProps): react0.JSX.Element;
|
|
102
102
|
//#endregion
|
|
103
103
|
//#region src/components/app-bar/anatomy/trail.d.ts
|
|
104
104
|
interface AppBarTrailProps extends PropsWithElement<'nav'>, HTMLAttributes<'nav'> {}
|
|
105
|
-
declare function AppBarTrail(props: AppBarTrailProps):
|
|
105
|
+
declare function AppBarTrail(props: AppBarTrailProps): react0.JSX.Element;
|
|
106
106
|
//#endregion
|
|
107
107
|
//#region src/components/app-bar/modules/anatomy.d.ts
|
|
108
108
|
declare const AppBar: typeof AppBarRoot & {
|
|
@@ -114,11 +114,11 @@ declare const AppBar: typeof AppBarRoot & {
|
|
|
114
114
|
//#endregion
|
|
115
115
|
//#region src/components/avatar/anatomy/fallback.d.ts
|
|
116
116
|
interface AvatarFallbackProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
117
|
-
declare function Fallback(props: AvatarFallbackProps):
|
|
117
|
+
declare function Fallback(props: AvatarFallbackProps): react0.JSX.Element;
|
|
118
118
|
//#endregion
|
|
119
119
|
//#region src/components/avatar/anatomy/image.d.ts
|
|
120
120
|
interface AvatarImageProps extends PropsWithElement<'img'>, HTMLAttributes<'img', 'children'> {}
|
|
121
|
-
declare function Image(props: AvatarImageProps):
|
|
121
|
+
declare function Image(props: AvatarImageProps): react0.JSX.Element;
|
|
122
122
|
//#endregion
|
|
123
123
|
//#region src/components/avatar/anatomy/root.d.ts
|
|
124
124
|
interface AvatarRootProps extends Omit<Props$1, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -149,7 +149,7 @@ declare const Avatar: typeof AvatarRoot & {
|
|
|
149
149
|
//#endregion
|
|
150
150
|
//#region src/components/collapsible/anatomy/content.d.ts
|
|
151
151
|
interface CollapsibleContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
152
|
-
declare function Content$8(props: CollapsibleContentProps):
|
|
152
|
+
declare function Content$8(props: CollapsibleContentProps): react0.JSX.Element;
|
|
153
153
|
//#endregion
|
|
154
154
|
//#region src/components/collapsible/anatomy/root.d.ts
|
|
155
155
|
interface CollapsibleRootProps extends Omit<Props$2, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -172,11 +172,11 @@ declare function CollapsibleRootProvider(props: CollapsibleRootProviderProps): r
|
|
|
172
172
|
//#endregion
|
|
173
173
|
//#region src/components/collapsible/anatomy/trigger.d.ts
|
|
174
174
|
interface CollapsibleTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
175
|
-
declare function Trigger$8(props: CollapsibleTriggerProps):
|
|
175
|
+
declare function Trigger$8(props: CollapsibleTriggerProps): react0.JSX.Element;
|
|
176
176
|
//#endregion
|
|
177
177
|
//#region src/components/collapsible/anatomy/indicator.d.ts
|
|
178
178
|
interface CollapsibleIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
179
|
-
declare function Indicator$3(props: CollapsibleIndicatorProps):
|
|
179
|
+
declare function Indicator$3(props: CollapsibleIndicatorProps): react0.JSX.Element;
|
|
180
180
|
//#endregion
|
|
181
181
|
//#region src/components/collapsible/modules/anatomy.d.ts
|
|
182
182
|
declare const Collapsible: typeof CollapsibleRoot & {
|
|
@@ -189,15 +189,15 @@ declare const Collapsible: typeof CollapsibleRoot & {
|
|
|
189
189
|
//#endregion
|
|
190
190
|
//#region src/components/combobox/anatomy/content.d.ts
|
|
191
191
|
interface ComboboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
192
|
-
declare function Content$7(props: ComboboxContentProps):
|
|
192
|
+
declare function Content$7(props: ComboboxContentProps): react0.JSX.Element;
|
|
193
193
|
//#endregion
|
|
194
194
|
//#region src/components/combobox/anatomy/control.d.ts
|
|
195
195
|
interface ComboboxControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
196
|
-
declare function Control$6(props: ComboboxControlProps):
|
|
196
|
+
declare function Control$6(props: ComboboxControlProps): react0.JSX.Element;
|
|
197
197
|
//#endregion
|
|
198
198
|
//#region src/components/combobox/anatomy/input.d.ts
|
|
199
199
|
interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
200
|
-
declare function Input$3(props: ComboboxInputProps):
|
|
200
|
+
declare function Input$3(props: ComboboxInputProps): react0.JSX.Element;
|
|
201
201
|
//#endregion
|
|
202
202
|
//#region src/components/combobox/anatomy/item.d.ts
|
|
203
203
|
interface ComboboxItemProps extends ItemProps$1, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -209,23 +209,23 @@ declare function ItemGroup$3(props: ComboboxItemGroupProps): react_jsx_runtime0.
|
|
|
209
209
|
//#endregion
|
|
210
210
|
//#region src/components/combobox/anatomy/item-group-label.d.ts
|
|
211
211
|
interface ComboboxItemGroupLabelProps extends Omit<ItemGroupLabelProps, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
212
|
-
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps):
|
|
212
|
+
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps): react0.JSX.Element;
|
|
213
213
|
//#endregion
|
|
214
214
|
//#region src/components/combobox/anatomy/item-indicator.d.ts
|
|
215
215
|
interface ComboboxItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
216
|
-
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps):
|
|
216
|
+
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps): react0.JSX.Element;
|
|
217
217
|
//#endregion
|
|
218
218
|
//#region src/components/combobox/anatomy/item-text.d.ts
|
|
219
219
|
interface ComboboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
220
|
-
declare function ItemText$4(props: ComboboxItemTextProps):
|
|
220
|
+
declare function ItemText$4(props: ComboboxItemTextProps): react0.JSX.Element;
|
|
221
221
|
//#endregion
|
|
222
222
|
//#region src/components/combobox/anatomy/label.d.ts
|
|
223
223
|
interface ComboboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
224
|
-
declare function Label$10(props: ComboboxLabelProps):
|
|
224
|
+
declare function Label$10(props: ComboboxLabelProps): react0.JSX.Element;
|
|
225
225
|
//#endregion
|
|
226
226
|
//#region src/components/combobox/anatomy/positioner.d.ts
|
|
227
227
|
interface ComboboxPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
228
|
-
declare function Positioner$5(props: ComboboxPositionerProps):
|
|
228
|
+
declare function Positioner$5(props: ComboboxPositionerProps): react0.JSX.Element;
|
|
229
229
|
//#endregion
|
|
230
230
|
//#region src/components/combobox/anatomy/root.d.ts
|
|
231
231
|
interface ComboboxRootProps extends Omit<Props$3, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
@@ -248,7 +248,7 @@ declare function RootProvider$14(props: ComboboxRootProviderProps): react_jsx_ru
|
|
|
248
248
|
//#endregion
|
|
249
249
|
//#region src/components/combobox/anatomy/trigger.d.ts
|
|
250
250
|
interface ComboboxTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
251
|
-
declare function Trigger$7(props: ComboboxTriggerProps):
|
|
251
|
+
declare function Trigger$7(props: ComboboxTriggerProps): react0.JSX.Element;
|
|
252
252
|
//#endregion
|
|
253
253
|
//#region src/components/combobox/modules/anatomy.d.ts
|
|
254
254
|
declare const Combobox: typeof Root$16 & {
|
|
@@ -269,43 +269,43 @@ declare const Combobox: typeof Root$16 & {
|
|
|
269
269
|
//#endregion
|
|
270
270
|
//#region src/components/date-picker/anatomy/content.d.ts
|
|
271
271
|
interface DatePickerContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
272
|
-
declare function Content$6(props: DatePickerContentProps):
|
|
272
|
+
declare function Content$6(props: DatePickerContentProps): react0.JSX.Element;
|
|
273
273
|
//#endregion
|
|
274
274
|
//#region src/components/date-picker/anatomy/control.d.ts
|
|
275
275
|
interface DatePickerControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
276
|
-
declare function Control$5(props: DatePickerControlProps):
|
|
276
|
+
declare function Control$5(props: DatePickerControlProps): react0.JSX.Element;
|
|
277
277
|
//#endregion
|
|
278
278
|
//#region src/components/date-picker/anatomy/input.d.ts
|
|
279
279
|
interface DatePickerInputProps extends InputProps, PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
280
|
-
declare function Input$2(props: DatePickerInputProps):
|
|
280
|
+
declare function Input$2(props: DatePickerInputProps): react0.JSX.Element;
|
|
281
281
|
//#endregion
|
|
282
282
|
//#region src/components/date-picker/anatomy/label.d.ts
|
|
283
283
|
interface DatePickerLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
284
|
-
declare function Label$9(props: DatePickerLabelProps):
|
|
284
|
+
declare function Label$9(props: DatePickerLabelProps): react0.JSX.Element;
|
|
285
285
|
//#endregion
|
|
286
286
|
//#region src/components/date-picker/anatomy/month-select.d.ts
|
|
287
287
|
interface DatePickerMonthSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
288
|
-
declare function MonthSelect(props: DatePickerMonthSelectProps):
|
|
288
|
+
declare function MonthSelect(props: DatePickerMonthSelectProps): react0.JSX.Element;
|
|
289
289
|
//#endregion
|
|
290
290
|
//#region src/components/date-picker/anatomy/next-trigger.d.ts
|
|
291
291
|
interface DatePickerNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
292
|
-
declare function NextTrigger$1(props: DatePickerNextTriggerProps):
|
|
292
|
+
declare function NextTrigger$1(props: DatePickerNextTriggerProps): react0.JSX.Element;
|
|
293
293
|
//#endregion
|
|
294
294
|
//#region src/components/date-picker/anatomy/positioner.d.ts
|
|
295
295
|
interface DatePickerPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
296
|
-
declare function Positioner$4(props: DatePickerPositionerProps):
|
|
296
|
+
declare function Positioner$4(props: DatePickerPositionerProps): react0.JSX.Element;
|
|
297
297
|
//#endregion
|
|
298
298
|
//#region src/components/date-picker/anatomy/preset-trigger.d.ts
|
|
299
299
|
interface DatePickerPresetTriggerProps extends PresetTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
300
|
-
declare function PresetTrigger(props: DatePickerPresetTriggerProps):
|
|
300
|
+
declare function PresetTrigger(props: DatePickerPresetTriggerProps): react0.JSX.Element;
|
|
301
301
|
//#endregion
|
|
302
302
|
//#region src/components/date-picker/anatomy/prev-trigger.d.ts
|
|
303
303
|
interface DatePickerPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
304
|
-
declare function PrevTrigger$1(props: DatePickerPrevTriggerProps):
|
|
304
|
+
declare function PrevTrigger$1(props: DatePickerPrevTriggerProps): react0.JSX.Element;
|
|
305
305
|
//#endregion
|
|
306
306
|
//#region src/components/date-picker/anatomy/range-text.d.ts
|
|
307
307
|
interface DatePickerRangeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
308
|
-
declare function RangeText(props: DatePickerRangeTextProps):
|
|
308
|
+
declare function RangeText(props: DatePickerRangeTextProps): react0.JSX.Element;
|
|
309
309
|
//#endregion
|
|
310
310
|
//#region src/components/date-picker/anatomy/root.d.ts
|
|
311
311
|
interface DatePickerRootProps extends Omit<Props$4, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -328,11 +328,11 @@ declare function RootProvider$13(props: DatePickerRootProviderProps): react_jsx_
|
|
|
328
328
|
//#endregion
|
|
329
329
|
//#region src/components/date-picker/anatomy/table.d.ts
|
|
330
330
|
interface DatePickerTableProps extends PropsWithElement<'table'>, HTMLAttributes<'table'> {}
|
|
331
|
-
declare function Table(props: DatePickerTableProps):
|
|
331
|
+
declare function Table(props: DatePickerTableProps): react0.JSX.Element;
|
|
332
332
|
//#endregion
|
|
333
333
|
//#region src/components/date-picker/anatomy/table-body.d.ts
|
|
334
334
|
interface DatePickerTableBodyProps extends PropsWithElement<'tbody'>, HTMLAttributes<'tbody'> {}
|
|
335
|
-
declare function TableBody(props: DatePickerTableBodyProps):
|
|
335
|
+
declare function TableBody(props: DatePickerTableBodyProps): react0.JSX.Element;
|
|
336
336
|
//#endregion
|
|
337
337
|
//#region src/internal/union.d.ts
|
|
338
338
|
type Union<T, U> = { [K in keyof T]: K extends keyof U ? U[K] | T[K] : T[K] } & Omit<U, keyof T>;
|
|
@@ -343,23 +343,23 @@ declare function TableCell(props: DatePickerTableCellProps): react_jsx_runtime0.
|
|
|
343
343
|
//#endregion
|
|
344
344
|
//#region src/components/date-picker/anatomy/table-cell-trigger.d.ts
|
|
345
345
|
interface DatePickerTableCellTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
346
|
-
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps):
|
|
346
|
+
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps): react0.JSX.Element;
|
|
347
347
|
//#endregion
|
|
348
348
|
//#region src/components/date-picker/anatomy/table-head.d.ts
|
|
349
349
|
interface DatePickerTableHeadProps extends PropsWithElement<'thead'>, HTMLAttributes<'thead'> {}
|
|
350
|
-
declare function TableHead(props: DatePickerTableHeadProps):
|
|
350
|
+
declare function TableHead(props: DatePickerTableHeadProps): react0.JSX.Element;
|
|
351
351
|
//#endregion
|
|
352
352
|
//#region src/components/date-picker/anatomy/table-header.d.ts
|
|
353
353
|
interface DatePickerTableHeaderProps extends PropsWithElement<'th'>, HTMLAttributes<'th'> {}
|
|
354
|
-
declare function TableHeader(props: DatePickerTableHeaderProps):
|
|
354
|
+
declare function TableHeader(props: DatePickerTableHeaderProps): react0.JSX.Element;
|
|
355
355
|
//#endregion
|
|
356
356
|
//#region src/components/date-picker/anatomy/table-row.d.ts
|
|
357
357
|
interface DatePickerTableRowProps extends PropsWithElement<'tr'>, HTMLAttributes<'tr'> {}
|
|
358
|
-
declare function TableRow(props: DatePickerTableRowProps):
|
|
358
|
+
declare function TableRow(props: DatePickerTableRowProps): react0.JSX.Element;
|
|
359
359
|
//#endregion
|
|
360
360
|
//#region src/components/date-picker/anatomy/trigger.d.ts
|
|
361
361
|
interface DatePickerTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
362
|
-
declare function Trigger$6(props: DatePickerTriggerProps):
|
|
362
|
+
declare function Trigger$6(props: DatePickerTriggerProps): react0.JSX.Element;
|
|
363
363
|
//#endregion
|
|
364
364
|
//#region src/components/date-picker/anatomy/view.d.ts
|
|
365
365
|
interface DatePickerViewProps extends ViewProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -367,15 +367,15 @@ declare function View(props: DatePickerViewProps): react_jsx_runtime0.JSX.Elemen
|
|
|
367
367
|
//#endregion
|
|
368
368
|
//#region src/components/date-picker/anatomy/view-control.d.ts
|
|
369
369
|
interface DatePickerViewControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
370
|
-
declare function ViewControl(props: DatePickerViewControlProps):
|
|
370
|
+
declare function ViewControl(props: DatePickerViewControlProps): react0.JSX.Element;
|
|
371
371
|
//#endregion
|
|
372
372
|
//#region src/components/date-picker/anatomy/view-trigger.d.ts
|
|
373
373
|
interface DatePickerViewTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
374
|
-
declare function ViewTrigger(props: DatePickerViewTriggerProps):
|
|
374
|
+
declare function ViewTrigger(props: DatePickerViewTriggerProps): react0.JSX.Element;
|
|
375
375
|
//#endregion
|
|
376
376
|
//#region src/components/date-picker/anatomy/year-select.d.ts
|
|
377
377
|
interface DatePickerYearSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
378
|
-
declare function YearSelect(props: DatePickerYearSelectProps):
|
|
378
|
+
declare function YearSelect(props: DatePickerYearSelectProps): react0.JSX.Element;
|
|
379
379
|
//#endregion
|
|
380
380
|
//#region src/components/date-picker/modules/anatomy.d.ts
|
|
381
381
|
declare const DatePicker: typeof Root$15 & {
|
|
@@ -407,23 +407,23 @@ declare const DatePicker: typeof Root$15 & {
|
|
|
407
407
|
//#endregion
|
|
408
408
|
//#region src/components/dialog/anatomy/backdrop.d.ts
|
|
409
409
|
interface DialogBackdropProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
410
|
-
declare function Backdrop(props: DialogBackdropProps):
|
|
410
|
+
declare function Backdrop(props: DialogBackdropProps): react0.JSX.Element;
|
|
411
411
|
//#endregion
|
|
412
412
|
//#region src/components/dialog/anatomy/close-trigger.d.ts
|
|
413
413
|
interface DialogCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
414
|
-
declare function CloseTrigger$2(props: DialogCloseTriggerProps):
|
|
414
|
+
declare function CloseTrigger$2(props: DialogCloseTriggerProps): react0.JSX.Element;
|
|
415
415
|
//#endregion
|
|
416
416
|
//#region src/components/dialog/anatomy/content.d.ts
|
|
417
417
|
interface DialogContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
418
|
-
declare function Content$5(props: DialogContentProps):
|
|
418
|
+
declare function Content$5(props: DialogContentProps): react0.JSX.Element;
|
|
419
419
|
//#endregion
|
|
420
420
|
//#region src/components/dialog/anatomy/description.d.ts
|
|
421
421
|
interface DialogDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
422
|
-
declare function Description$2(props: DialogDescriptionProps):
|
|
422
|
+
declare function Description$2(props: DialogDescriptionProps): react0.JSX.Element;
|
|
423
423
|
//#endregion
|
|
424
424
|
//#region src/components/dialog/anatomy/positioner.d.ts
|
|
425
425
|
interface DialogPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
426
|
-
declare function Positioner$3(props: DialogPositionerProps):
|
|
426
|
+
declare function Positioner$3(props: DialogPositionerProps): react0.JSX.Element;
|
|
427
427
|
//#endregion
|
|
428
428
|
//#region src/components/dialog/anatomy/root.d.ts
|
|
429
429
|
interface DialogRootProps extends PropsWithChildren, Omit<Props$5, 'id'> {}
|
|
@@ -446,11 +446,11 @@ declare function RootProvider$12(props: DialogRootProviderProps): react_jsx_runt
|
|
|
446
446
|
//#endregion
|
|
447
447
|
//#region src/components/dialog/anatomy/title.d.ts
|
|
448
448
|
interface DialogTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
449
|
-
declare function Title$2(props: DialogTitleProps):
|
|
449
|
+
declare function Title$2(props: DialogTitleProps): react0.JSX.Element;
|
|
450
450
|
//#endregion
|
|
451
451
|
//#region src/components/dialog/anatomy/trigger.d.ts
|
|
452
452
|
interface DialogTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
453
|
-
declare function Trigger$5(props: DialogTriggerProps):
|
|
453
|
+
declare function Trigger$5(props: DialogTriggerProps): react0.JSX.Element;
|
|
454
454
|
//#endregion
|
|
455
455
|
//#region src/components/dialog/modules/anatomy.d.ts
|
|
456
456
|
declare const Dialog: typeof Root$14 & {
|
|
@@ -467,11 +467,11 @@ declare const Dialog: typeof Root$14 & {
|
|
|
467
467
|
//#endregion
|
|
468
468
|
//#region src/components/file-upload/anatomy/dropzone.d.ts
|
|
469
469
|
interface FileUploadDropzoneProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
470
|
-
declare function Dropzone(props: FileUploadDropzoneProps):
|
|
470
|
+
declare function Dropzone(props: FileUploadDropzoneProps): react0.JSX.Element;
|
|
471
471
|
//#endregion
|
|
472
472
|
//#region src/components/file-upload/anatomy/hidden-input.d.ts
|
|
473
473
|
interface FileUploadHiddenInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
474
|
-
declare function HiddenInput$4(props: FileUploadHiddenInputProps):
|
|
474
|
+
declare function HiddenInput$4(props: FileUploadHiddenInputProps): react0.JSX.Element;
|
|
475
475
|
//#endregion
|
|
476
476
|
//#region src/components/file-upload/anatomy/item.d.ts
|
|
477
477
|
interface FileUploadItemProps extends ItemProps$2, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -479,23 +479,23 @@ declare function Item$8(props: FileUploadItemProps): react_jsx_runtime0.JSX.Elem
|
|
|
479
479
|
//#endregion
|
|
480
480
|
//#region src/components/file-upload/anatomy/item-delete-trigger.d.ts
|
|
481
481
|
interface FileUploadItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
482
|
-
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps):
|
|
482
|
+
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps): react0.JSX.Element;
|
|
483
483
|
//#endregion
|
|
484
484
|
//#region src/components/file-upload/anatomy/item-group.d.ts
|
|
485
485
|
interface FileUploadItemGroupProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
486
|
-
declare function ItemGroup$2(props: FileUploadItemGroupProps):
|
|
486
|
+
declare function ItemGroup$2(props: FileUploadItemGroupProps): react0.JSX.Element;
|
|
487
487
|
//#endregion
|
|
488
488
|
//#region src/components/file-upload/anatomy/item-name.d.ts
|
|
489
489
|
interface FileUploadItemNameProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
490
|
-
declare function ItemName(props: FileUploadItemNameProps):
|
|
490
|
+
declare function ItemName(props: FileUploadItemNameProps): react0.JSX.Element;
|
|
491
491
|
//#endregion
|
|
492
492
|
//#region src/components/file-upload/anatomy/item-size-text.d.ts
|
|
493
493
|
interface FileUploadItemSizeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
494
|
-
declare function ItemSizeText(props: FileUploadItemSizeTextProps):
|
|
494
|
+
declare function ItemSizeText(props: FileUploadItemSizeTextProps): react0.JSX.Element;
|
|
495
495
|
//#endregion
|
|
496
496
|
//#region src/components/file-upload/anatomy/label.d.ts
|
|
497
497
|
interface FileUploadLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
498
|
-
declare function Label$8(props: FileUploadLabelProps):
|
|
498
|
+
declare function Label$8(props: FileUploadLabelProps): react0.JSX.Element;
|
|
499
499
|
//#endregion
|
|
500
500
|
//#region src/components/file-upload/anatomy/root.d.ts
|
|
501
501
|
interface FileUploadRootProps extends Omit<Props$6, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {}
|
|
@@ -518,7 +518,7 @@ declare function RootProvider$11(props: FileUploadRootProviderProps): react_jsx_
|
|
|
518
518
|
//#endregion
|
|
519
519
|
//#region src/components/file-upload/anatomy/trigger.d.ts
|
|
520
520
|
interface FileUploadTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
521
|
-
declare function Trigger$4(props: FileUploadTriggerProps):
|
|
521
|
+
declare function Trigger$4(props: FileUploadTriggerProps): react0.JSX.Element;
|
|
522
522
|
//#endregion
|
|
523
523
|
//#region src/components/file-upload/modules/anatomy.d.ts
|
|
524
524
|
declare const FileUpload: typeof Root$13 & {
|
|
@@ -545,7 +545,7 @@ declare function ItemGroup$1(props: ListboxItemGroupProps): react_jsx_runtime0.J
|
|
|
545
545
|
//#endregion
|
|
546
546
|
//#region src/components/listbox/anatomy/item-group-label.d.ts
|
|
547
547
|
interface ListboxItemGroupLabelProps extends Omit<ItemGroupLabelProps$1, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
548
|
-
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps):
|
|
548
|
+
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react0.JSX.Element;
|
|
549
549
|
//#endregion
|
|
550
550
|
//#region src/components/listbox/anatomy/item.d.ts
|
|
551
551
|
interface ListboxItemProps extends ItemProps$3, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -553,15 +553,15 @@ declare function Item$7(props: ListboxItemProps): react_jsx_runtime0.JSX.Element
|
|
|
553
553
|
//#endregion
|
|
554
554
|
//#region src/components/listbox/anatomy/input.d.ts
|
|
555
555
|
interface ListboxInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
556
|
-
declare function Input$1(props: ListboxInputProps):
|
|
556
|
+
declare function Input$1(props: ListboxInputProps): react0.JSX.Element;
|
|
557
557
|
//#endregion
|
|
558
558
|
//#region src/components/listbox/anatomy/item-indicator.d.ts
|
|
559
559
|
interface ListboxItemIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
560
|
-
declare function ItemIndicator$1(props: ListboxItemIndicatorProps):
|
|
560
|
+
declare function ItemIndicator$1(props: ListboxItemIndicatorProps): react0.JSX.Element;
|
|
561
561
|
//#endregion
|
|
562
562
|
//#region src/components/listbox/anatomy/item-text.d.ts
|
|
563
563
|
interface ListboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
564
|
-
declare function ItemText$3(props: ListboxItemTextProps):
|
|
564
|
+
declare function ItemText$3(props: ListboxItemTextProps): react0.JSX.Element;
|
|
565
565
|
//#endregion
|
|
566
566
|
//#region src/components/listbox/modules/provider.d.ts
|
|
567
567
|
declare function useListbox(props: Omit<Props$7, 'id'>): Api$7<PropTypes>;
|
|
@@ -580,11 +580,11 @@ declare function RootProvider$10(props: ListboxRootProviderProps): react_jsx_run
|
|
|
580
580
|
//#endregion
|
|
581
581
|
//#region src/components/listbox/anatomy/label.d.ts
|
|
582
582
|
interface ListboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
583
|
-
declare function Label$7(props: ListboxLabelProps):
|
|
583
|
+
declare function Label$7(props: ListboxLabelProps): react0.JSX.Element;
|
|
584
584
|
//#endregion
|
|
585
585
|
//#region src/components/listbox/anatomy/content.d.ts
|
|
586
586
|
interface ListboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
587
|
-
declare function Content$4(props: ListboxContentProps):
|
|
587
|
+
declare function Content$4(props: ListboxContentProps): react0.JSX.Element;
|
|
588
588
|
//#endregion
|
|
589
589
|
//#region src/components/listbox/modules/anatomy.d.ts
|
|
590
590
|
declare const Listbox: typeof Root$12 & {
|
|
@@ -602,19 +602,19 @@ declare const Listbox: typeof Root$12 & {
|
|
|
602
602
|
//#endregion
|
|
603
603
|
//#region src/components/menu/anatomy/arrow.d.ts
|
|
604
604
|
interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
605
|
-
declare function Arrow$2(props: MenuArrowProps):
|
|
605
|
+
declare function Arrow$2(props: MenuArrowProps): react0.JSX.Element;
|
|
606
606
|
//#endregion
|
|
607
607
|
//#region src/components/menu/anatomy/arrow-tip.d.ts
|
|
608
608
|
interface MenuArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
609
|
-
declare function ArrowTip$2(props: MenuArrowTipProps):
|
|
609
|
+
declare function ArrowTip$2(props: MenuArrowTipProps): react0.JSX.Element;
|
|
610
610
|
//#endregion
|
|
611
611
|
//#region src/components/menu/anatomy/content.d.ts
|
|
612
612
|
interface MenuContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
613
|
-
declare function Content$3(props: MenuContentProps):
|
|
613
|
+
declare function Content$3(props: MenuContentProps): react0.JSX.Element;
|
|
614
614
|
//#endregion
|
|
615
615
|
//#region src/components/menu/anatomy/context-trigger.d.ts
|
|
616
616
|
interface MenuContextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
617
|
-
declare function ContextTrigger(props: MenuContextTriggerProps):
|
|
617
|
+
declare function ContextTrigger(props: MenuContextTriggerProps): react0.JSX.Element;
|
|
618
618
|
//#endregion
|
|
619
619
|
//#region src/components/menu/anatomy/item.d.ts
|
|
620
620
|
interface MenuItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -626,7 +626,7 @@ declare function ItemGroup(props: MenuItemGroupProps): react_jsx_runtime0.JSX.El
|
|
|
626
626
|
//#endregion
|
|
627
627
|
//#region src/components/menu/anatomy/item-group-label.d.ts
|
|
628
628
|
interface MenuItemGroupLabelProps extends Omit<ItemGroupLabelProps$2, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
629
|
-
declare function ItemGroupLabel(props: MenuItemGroupLabelProps):
|
|
629
|
+
declare function ItemGroupLabel(props: MenuItemGroupLabelProps): react0.JSX.Element;
|
|
630
630
|
//#endregion
|
|
631
631
|
//#region src/components/menu/anatomy/option-item.d.ts
|
|
632
632
|
interface MenuOptionItemProps extends OptionItemProps, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -634,19 +634,19 @@ declare function OptionItem(props: MenuOptionItemProps): react_jsx_runtime0.JSX.
|
|
|
634
634
|
//#endregion
|
|
635
635
|
//#region src/components/menu/anatomy/item-text.d.ts
|
|
636
636
|
interface MenuItemTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
637
|
-
declare function ItemText$2(props: MenuItemTextProps):
|
|
637
|
+
declare function ItemText$2(props: MenuItemTextProps): react0.JSX.Element;
|
|
638
638
|
//#endregion
|
|
639
639
|
//#region src/components/menu/anatomy/item-indicator.d.ts
|
|
640
640
|
interface MenuItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
641
|
-
declare function ItemIndicator(props: MenuItemIndicatorProps):
|
|
641
|
+
declare function ItemIndicator(props: MenuItemIndicatorProps): react0.JSX.Element;
|
|
642
642
|
//#endregion
|
|
643
643
|
//#region src/components/menu/anatomy/indicator.d.ts
|
|
644
644
|
interface MenuIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
645
|
-
declare function Indicator$2(props: MenuIndicatorProps):
|
|
645
|
+
declare function Indicator$2(props: MenuIndicatorProps): react0.JSX.Element;
|
|
646
646
|
//#endregion
|
|
647
647
|
//#region src/components/menu/anatomy/positioner.d.ts
|
|
648
648
|
interface MenuPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
649
|
-
declare function Positioner$2(props: MenuPositionerProps):
|
|
649
|
+
declare function Positioner$2(props: MenuPositionerProps): react0.JSX.Element;
|
|
650
650
|
//#endregion
|
|
651
651
|
//#region src/components/menu/anatomy/root.d.ts
|
|
652
652
|
interface MenuRootProps extends Omit<Props$8, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div', 'id' | 'dir'>, 'onSelect' | 'aria-label'> {}
|
|
@@ -671,11 +671,11 @@ declare function RootProvider$9(props: MenuRootProviderProps): react_jsx_runtime
|
|
|
671
671
|
//#endregion
|
|
672
672
|
//#region src/components/menu/anatomy/separator.d.ts
|
|
673
673
|
interface MenuSeparatorProps extends PropsWithElement<'hr'>, HTMLAttributes<'hr', 'id' | 'dir' | 'children'> {}
|
|
674
|
-
declare function Separator(props: MenuSeparatorProps):
|
|
674
|
+
declare function Separator(props: MenuSeparatorProps): react0.JSX.Element;
|
|
675
675
|
//#endregion
|
|
676
676
|
//#region src/components/menu/anatomy/trigger.d.ts
|
|
677
677
|
interface MenuTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
678
|
-
declare function Trigger$3(props: MenuTriggerProps):
|
|
678
|
+
declare function Trigger$3(props: MenuTriggerProps): react0.JSX.Element;
|
|
679
679
|
//#endregion
|
|
680
680
|
//#region src/components/menu/anatomy/trigger-item.d.ts
|
|
681
681
|
interface MenuTriggerItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -715,27 +715,27 @@ declare function NavigationRoot(props: NavigationRootProps): react_jsx_runtime0.
|
|
|
715
715
|
//#endregion
|
|
716
716
|
//#region src/components/navigation/anatomy/menu.d.ts
|
|
717
717
|
interface NavigationMenuProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
718
|
-
declare function NavigationMenu(props: NavigationMenuProps):
|
|
718
|
+
declare function NavigationMenu(props: NavigationMenuProps): react0.JSX.Element;
|
|
719
719
|
//#endregion
|
|
720
720
|
//#region src/components/navigation/anatomy/header.d.ts
|
|
721
721
|
interface NavigationHeaderProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
722
|
-
declare function NavigationHeader(props: NavigationHeaderProps):
|
|
722
|
+
declare function NavigationHeader(props: NavigationHeaderProps): react0.JSX.Element;
|
|
723
723
|
//#endregion
|
|
724
724
|
//#region src/components/navigation/anatomy/content.d.ts
|
|
725
725
|
interface NavigationContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
726
|
-
declare function NavigationContent(props: NavigationContentProps):
|
|
726
|
+
declare function NavigationContent(props: NavigationContentProps): react0.JSX.Element;
|
|
727
727
|
//#endregion
|
|
728
728
|
//#region src/components/navigation/anatomy/footer.d.ts
|
|
729
729
|
interface NavigationFooterProps extends PropsWithElement<'footer'>, HTMLAttributes<'footer'> {}
|
|
730
|
-
declare function NavigationFooter(props: NavigationFooterProps):
|
|
730
|
+
declare function NavigationFooter(props: NavigationFooterProps): react0.JSX.Element;
|
|
731
731
|
//#endregion
|
|
732
732
|
//#region src/components/navigation/anatomy/group.d.ts
|
|
733
733
|
interface NavigationGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
734
|
-
declare function NavigationGroup(props: NavigationGroupProps):
|
|
734
|
+
declare function NavigationGroup(props: NavigationGroupProps): react0.JSX.Element;
|
|
735
735
|
//#endregion
|
|
736
736
|
//#region src/components/navigation/anatomy/label.d.ts
|
|
737
737
|
interface NavigationLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
738
|
-
declare function NavigationLabel(props: NavigationLabelProps):
|
|
738
|
+
declare function NavigationLabel(props: NavigationLabelProps): react0.JSX.Element;
|
|
739
739
|
//#endregion
|
|
740
740
|
//#region src/components/navigation/modules/anatomy.d.ts
|
|
741
741
|
declare const Navigation: typeof NavigationRoot & {
|
|
@@ -749,27 +749,27 @@ declare const Navigation: typeof NavigationRoot & {
|
|
|
749
749
|
//#endregion
|
|
750
750
|
//#region src/components/pagination/anatomy/ellipsis.d.ts
|
|
751
751
|
interface PaginationEllipsisProps extends EllipsisProps, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
752
|
-
declare function Ellipsis(props: PaginationEllipsisProps):
|
|
752
|
+
declare function Ellipsis(props: PaginationEllipsisProps): react0.JSX.Element;
|
|
753
753
|
//#endregion
|
|
754
754
|
//#region src/components/pagination/anatomy/first-trigger.d.ts
|
|
755
755
|
interface PaginationFirstTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
756
|
-
declare function FirstTrigger(props: PaginationFirstTriggerProps):
|
|
756
|
+
declare function FirstTrigger(props: PaginationFirstTriggerProps): react0.JSX.Element;
|
|
757
757
|
//#endregion
|
|
758
758
|
//#region src/components/pagination/anatomy/item.d.ts
|
|
759
759
|
interface PaginationItemProps extends ItemProps$5, PropsWithElement<'a'>, HTMLAttributes<'a', 'type'> {}
|
|
760
|
-
declare function Item$5(props: PaginationItemProps):
|
|
760
|
+
declare function Item$5(props: PaginationItemProps): react0.JSX.Element;
|
|
761
761
|
//#endregion
|
|
762
762
|
//#region src/components/pagination/anatomy/last-trigger.d.ts
|
|
763
763
|
interface PaginationLastTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
764
|
-
declare function LastTrigger(props: PaginationLastTriggerProps):
|
|
764
|
+
declare function LastTrigger(props: PaginationLastTriggerProps): react0.JSX.Element;
|
|
765
765
|
//#endregion
|
|
766
766
|
//#region src/components/pagination/anatomy/next-trigger.d.ts
|
|
767
767
|
interface PaginationNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
768
|
-
declare function NextTrigger(props: PaginationNextTriggerProps):
|
|
768
|
+
declare function NextTrigger(props: PaginationNextTriggerProps): react0.JSX.Element;
|
|
769
769
|
//#endregion
|
|
770
770
|
//#region src/components/pagination/anatomy/prev-trigger.d.ts
|
|
771
771
|
interface PaginationPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
772
|
-
declare function PrevTrigger(props: PaginationPrevTriggerProps):
|
|
772
|
+
declare function PrevTrigger(props: PaginationPrevTriggerProps): react0.JSX.Element;
|
|
773
773
|
//#endregion
|
|
774
774
|
//#region src/components/pagination/modules/provider.d.ts
|
|
775
775
|
declare function usePagination(props?: Omit<Props$9, 'id'>): Api$9<PropTypes>;
|
|
@@ -804,19 +804,19 @@ declare const Pagination: typeof PaginationRoot & {
|
|
|
804
804
|
//#endregion
|
|
805
805
|
//#region src/components/popover/anatomy/close-trigger.d.ts
|
|
806
806
|
interface PopoverCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
807
|
-
declare function CloseTrigger$1(props: PopoverCloseTriggerProps):
|
|
807
|
+
declare function CloseTrigger$1(props: PopoverCloseTriggerProps): react0.JSX.Element;
|
|
808
808
|
//#endregion
|
|
809
809
|
//#region src/components/popover/anatomy/content.d.ts
|
|
810
810
|
interface PopoverContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
811
|
-
declare function Content$2(props: PopoverContentProps):
|
|
811
|
+
declare function Content$2(props: PopoverContentProps): react0.JSX.Element;
|
|
812
812
|
//#endregion
|
|
813
813
|
//#region src/components/popover/anatomy/description.d.ts
|
|
814
814
|
interface PopoverDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
815
|
-
declare function Description$1(props: PopoverDescriptionProps):
|
|
815
|
+
declare function Description$1(props: PopoverDescriptionProps): react0.JSX.Element;
|
|
816
816
|
//#endregion
|
|
817
817
|
//#region src/components/popover/anatomy/positioner.d.ts
|
|
818
818
|
interface PopoverPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
819
|
-
declare function Positioner$1(props: PopoverPositionerProps):
|
|
819
|
+
declare function Positioner$1(props: PopoverPositionerProps): react0.JSX.Element;
|
|
820
820
|
//#endregion
|
|
821
821
|
//#region src/components/popover/anatomy/root.d.ts
|
|
822
822
|
interface PopoverRootProps extends PropsWithChildren, Omit<Props$10, 'id'> {}
|
|
@@ -839,19 +839,19 @@ declare function RootProvider$8(props: PopoverRootProviderProps): react_jsx_runt
|
|
|
839
839
|
//#endregion
|
|
840
840
|
//#region src/components/popover/anatomy/title.d.ts
|
|
841
841
|
interface PopoverTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
842
|
-
declare function Title$1(props: PopoverTitleProps):
|
|
842
|
+
declare function Title$1(props: PopoverTitleProps): react0.JSX.Element;
|
|
843
843
|
//#endregion
|
|
844
844
|
//#region src/components/popover/anatomy/arrow.d.ts
|
|
845
845
|
interface PopoverArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
846
|
-
declare function Arrow$1(props: PopoverArrowProps):
|
|
846
|
+
declare function Arrow$1(props: PopoverArrowProps): react0.JSX.Element;
|
|
847
847
|
//#endregion
|
|
848
848
|
//#region src/components/popover/anatomy/arrow-tip.d.ts
|
|
849
849
|
interface PopoverArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
850
|
-
declare function ArrowTip$1(props: PopoverArrowTipProps):
|
|
850
|
+
declare function ArrowTip$1(props: PopoverArrowTipProps): react0.JSX.Element;
|
|
851
851
|
//#endregion
|
|
852
852
|
//#region src/components/popover/anatomy/trigger.d.ts
|
|
853
853
|
interface PopoverTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
854
|
-
declare function Trigger$2(props: PopoverTriggerProps):
|
|
854
|
+
declare function Trigger$2(props: PopoverTriggerProps): react0.JSX.Element;
|
|
855
855
|
//#endregion
|
|
856
856
|
//#region src/components/popover/modules/anatomy.d.ts
|
|
857
857
|
declare const Popover: typeof Root$10 & {
|
|
@@ -889,11 +889,11 @@ declare const Portal: typeof Root$9;
|
|
|
889
889
|
//#endregion
|
|
890
890
|
//#region src/components/progress/anatomy/label.d.ts
|
|
891
891
|
interface ProgressLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
892
|
-
declare function Label$6(props: ProgressLabelProps):
|
|
892
|
+
declare function Label$6(props: ProgressLabelProps): react0.JSX.Element;
|
|
893
893
|
//#endregion
|
|
894
894
|
//#region src/components/progress/anatomy/range.d.ts
|
|
895
895
|
interface ProgressRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
896
|
-
declare function Range$1(props: ProgressRangeProps):
|
|
896
|
+
declare function Range$1(props: ProgressRangeProps): react0.JSX.Element;
|
|
897
897
|
//#endregion
|
|
898
898
|
//#region src/components/progress/anatomy/root.d.ts
|
|
899
899
|
interface ProgressRootProps extends Omit<Props$11, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -916,23 +916,23 @@ declare function RootProvider$7(props: ProgressRootProviderProps): react_jsx_run
|
|
|
916
916
|
//#endregion
|
|
917
917
|
//#region src/components/progress/anatomy/track.d.ts
|
|
918
918
|
interface ProgressTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
919
|
-
declare function Track$1(props: ProgressTrackProps):
|
|
919
|
+
declare function Track$1(props: ProgressTrackProps): react0.JSX.Element;
|
|
920
920
|
//#endregion
|
|
921
921
|
//#region src/components/progress/anatomy/value-text.d.ts
|
|
922
922
|
interface ProgressValueTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
923
|
-
declare function ValueText$1(props: ProgressValueTextProps):
|
|
923
|
+
declare function ValueText$1(props: ProgressValueTextProps): react0.JSX.Element;
|
|
924
924
|
//#endregion
|
|
925
925
|
//#region src/components/progress/anatomy/circle.d.ts
|
|
926
926
|
interface ProgressCircleProps extends PropsWithElement<'svg'>, HTMLAttributes<'svg'> {}
|
|
927
|
-
declare function Circle(props: ProgressCircleProps):
|
|
927
|
+
declare function Circle(props: ProgressCircleProps): react0.JSX.Element;
|
|
928
928
|
//#endregion
|
|
929
929
|
//#region src/components/progress/anatomy/circle-range.d.ts
|
|
930
930
|
interface ProgressCircleRangeProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
931
|
-
declare function CircleRange(props: ProgressCircleRangeProps):
|
|
931
|
+
declare function CircleRange(props: ProgressCircleRangeProps): react0.JSX.Element;
|
|
932
932
|
//#endregion
|
|
933
933
|
//#region src/components/progress/anatomy/circle-track.d.ts
|
|
934
934
|
interface ProgressCircleTrackProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
935
|
-
declare function CircleTrack(props: ProgressCircleTrackProps):
|
|
935
|
+
declare function CircleTrack(props: ProgressCircleTrackProps): react0.JSX.Element;
|
|
936
936
|
//#endregion
|
|
937
937
|
//#region src/components/progress/modules/anatomy.d.ts
|
|
938
938
|
declare const Progress: typeof Root$8 & {
|
|
@@ -949,11 +949,11 @@ declare const Progress: typeof Root$8 & {
|
|
|
949
949
|
//#endregion
|
|
950
950
|
//#region src/components/rating-group/anatomy/control.d.ts
|
|
951
951
|
interface RatingGroupControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
952
|
-
declare function Control$4(props: RatingGroupControlProps):
|
|
952
|
+
declare function Control$4(props: RatingGroupControlProps): react0.JSX.Element;
|
|
953
953
|
//#endregion
|
|
954
954
|
//#region src/components/rating-group/anatomy/hidden-input.d.ts
|
|
955
955
|
interface RatingGroupHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'id' | 'dir' | 'children'> {}
|
|
956
|
-
declare function HiddenInput$3(props: RatingGroupHiddenInputProps):
|
|
956
|
+
declare function HiddenInput$3(props: RatingGroupHiddenInputProps): react0.JSX.Element;
|
|
957
957
|
//#endregion
|
|
958
958
|
//#region src/components/rating-group/anatomy/item.d.ts
|
|
959
959
|
interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HTMLAttributes<'span', 'id' | 'dir'> {
|
|
@@ -976,11 +976,11 @@ interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HT
|
|
|
976
976
|
*/
|
|
977
977
|
full?: ReactNode;
|
|
978
978
|
}
|
|
979
|
-
declare function Item$4(props: RatingGroupItemProps):
|
|
979
|
+
declare function Item$4(props: RatingGroupItemProps): react0.JSX.Element;
|
|
980
980
|
//#endregion
|
|
981
981
|
//#region src/components/rating-group/anatomy/label.d.ts
|
|
982
982
|
interface RatingGroupLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
983
|
-
declare function Label$5(props: RatingGroupLabelProps):
|
|
983
|
+
declare function Label$5(props: RatingGroupLabelProps): react0.JSX.Element;
|
|
984
984
|
//#endregion
|
|
985
985
|
//#region src/components/rating-group/anatomy/root.d.ts
|
|
986
986
|
interface RatingGroupRootProps extends Omit<Props$12, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1013,19 +1013,19 @@ declare const RatingGroup: typeof Root$7 & {
|
|
|
1013
1013
|
//#endregion
|
|
1014
1014
|
//#region src/components/segmented-control/anatomy/control.d.ts
|
|
1015
1015
|
interface SegmentedControlControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1016
|
-
declare function Control$3(props: SegmentedControlControlProps):
|
|
1016
|
+
declare function Control$3(props: SegmentedControlControlProps): react0.JSX.Element;
|
|
1017
1017
|
//#endregion
|
|
1018
1018
|
//#region src/components/segmented-control/anatomy/indicator.d.ts
|
|
1019
1019
|
interface SegmentedControlIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1020
|
-
declare function Indicator$1(props: SegmentedControlIndicatorProps):
|
|
1020
|
+
declare function Indicator$1(props: SegmentedControlIndicatorProps): react0.JSX.Element;
|
|
1021
1021
|
//#endregion
|
|
1022
1022
|
//#region src/components/segmented-control/anatomy/item-hidden-input.d.ts
|
|
1023
1023
|
interface SegmentedControlItemHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1024
|
-
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps):
|
|
1024
|
+
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps): react0.JSX.Element;
|
|
1025
1025
|
//#endregion
|
|
1026
1026
|
//#region src/components/segmented-control/anatomy/item-text.d.ts
|
|
1027
1027
|
interface SegmentedControlItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1028
|
-
declare function ItemText$1(props: SegmentedControlItemTextProps):
|
|
1028
|
+
declare function ItemText$1(props: SegmentedControlItemTextProps): react0.JSX.Element;
|
|
1029
1029
|
//#endregion
|
|
1030
1030
|
//#region src/components/segmented-control/anatomy/item.d.ts
|
|
1031
1031
|
interface SegmentedControlItemProps extends ItemProps$7, PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
@@ -1033,7 +1033,7 @@ declare function Item$3(props: SegmentedControlItemProps): react_jsx_runtime0.JS
|
|
|
1033
1033
|
//#endregion
|
|
1034
1034
|
//#region src/components/segmented-control/anatomy/label.d.ts
|
|
1035
1035
|
interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1036
|
-
declare function Label$4(props: SegmentedControlLabelProps):
|
|
1036
|
+
declare function Label$4(props: SegmentedControlLabelProps): react0.JSX.Element;
|
|
1037
1037
|
//#endregion
|
|
1038
1038
|
//#region src/components/segmented-control/modules/provider.d.ts
|
|
1039
1039
|
declare function useSegmentedControl(props?: Omit<Props$13, 'id'>): Api$13<PropTypes>;
|
|
@@ -1068,27 +1068,27 @@ declare const SegmentedControl: typeof Root$6 & {
|
|
|
1068
1068
|
//#endregion
|
|
1069
1069
|
//#region src/components/slider/anatomy/control.d.ts
|
|
1070
1070
|
interface SliderControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1071
|
-
declare function Control$2(props: SliderControlProps):
|
|
1071
|
+
declare function Control$2(props: SliderControlProps): react0.JSX.Element;
|
|
1072
1072
|
//#endregion
|
|
1073
1073
|
//#region src/components/slider/anatomy/hidden-input.d.ts
|
|
1074
1074
|
interface SliderHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1075
|
-
declare function HiddenInput$2(props: SliderHiddenInputProps):
|
|
1075
|
+
declare function HiddenInput$2(props: SliderHiddenInputProps): react0.JSX.Element;
|
|
1076
1076
|
//#endregion
|
|
1077
1077
|
//#region src/components/slider/anatomy/label.d.ts
|
|
1078
1078
|
interface SliderLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1079
|
-
declare function Label$3(props: SliderLabelProps):
|
|
1079
|
+
declare function Label$3(props: SliderLabelProps): react0.JSX.Element;
|
|
1080
1080
|
//#endregion
|
|
1081
1081
|
//#region src/components/slider/anatomy/marker-group.d.ts
|
|
1082
1082
|
interface SliderMarkerGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1083
|
-
declare function MarkerGroup(props: SliderMarkerGroupProps):
|
|
1083
|
+
declare function MarkerGroup(props: SliderMarkerGroupProps): react0.JSX.Element;
|
|
1084
1084
|
//#endregion
|
|
1085
1085
|
//#region src/components/slider/anatomy/marker.d.ts
|
|
1086
1086
|
interface SliderMarkerProps extends MarkerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1087
|
-
declare function Marker(props: SliderMarkerProps):
|
|
1087
|
+
declare function Marker(props: SliderMarkerProps): react0.JSX.Element;
|
|
1088
1088
|
//#endregion
|
|
1089
1089
|
//#region src/components/slider/anatomy/range.d.ts
|
|
1090
1090
|
interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1091
|
-
declare function Range(props: SliderRangeProps):
|
|
1091
|
+
declare function Range(props: SliderRangeProps): react0.JSX.Element;
|
|
1092
1092
|
//#endregion
|
|
1093
1093
|
//#region src/components/slider/modules/provider.d.ts
|
|
1094
1094
|
declare function useSlider(props?: Omit<Props$14, 'id'>): Api$14<PropTypes>;
|
|
@@ -1115,11 +1115,11 @@ declare function Thumb$1(props: SliderThumbProps): react_jsx_runtime0.JSX.Elemen
|
|
|
1115
1115
|
//#endregion
|
|
1116
1116
|
//#region src/components/slider/anatomy/track.d.ts
|
|
1117
1117
|
interface SliderTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1118
|
-
declare function Track(props: SliderTrackProps):
|
|
1118
|
+
declare function Track(props: SliderTrackProps): react0.JSX.Element;
|
|
1119
1119
|
//#endregion
|
|
1120
1120
|
//#region src/components/slider/anatomy/value-text.d.ts
|
|
1121
1121
|
interface SliderValueTextProps extends PropsWithElement<'output'>, HTMLAttributes<'output'> {}
|
|
1122
|
-
declare function ValueText(props: SliderValueTextProps):
|
|
1122
|
+
declare function ValueText(props: SliderValueTextProps): react0.JSX.Element;
|
|
1123
1123
|
//#endregion
|
|
1124
1124
|
//#region src/components/slider/modules/anatomy.d.ts
|
|
1125
1125
|
declare const Slider: typeof SliderRoot & {
|
|
@@ -1138,15 +1138,15 @@ declare const Slider: typeof SliderRoot & {
|
|
|
1138
1138
|
//#endregion
|
|
1139
1139
|
//#region src/components/switch/anatomy/control.d.ts
|
|
1140
1140
|
interface SwitchControlProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1141
|
-
declare function Control$1(props: SwitchControlProps):
|
|
1141
|
+
declare function Control$1(props: SwitchControlProps): react0.JSX.Element;
|
|
1142
1142
|
//#endregion
|
|
1143
1143
|
//#region src/components/switch/anatomy/hidden-input.d.ts
|
|
1144
1144
|
interface SwitchHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1145
|
-
declare function HiddenInput$1(props: SwitchHiddenInputProps):
|
|
1145
|
+
declare function HiddenInput$1(props: SwitchHiddenInputProps): react0.JSX.Element;
|
|
1146
1146
|
//#endregion
|
|
1147
1147
|
//#region src/components/switch/anatomy/label.d.ts
|
|
1148
1148
|
interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1149
|
-
declare function Label$2(props: SwitchLabelProps):
|
|
1149
|
+
declare function Label$2(props: SwitchLabelProps): react0.JSX.Element;
|
|
1150
1150
|
//#endregion
|
|
1151
1151
|
//#region src/components/switch/modules/provider.d.ts
|
|
1152
1152
|
declare function useSwitch(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
@@ -1165,7 +1165,7 @@ declare function RootProvider$4(props: SwitchRootProviderProps): react_jsx_runti
|
|
|
1165
1165
|
//#endregion
|
|
1166
1166
|
//#region src/components/switch/anatomy/thumb.d.ts
|
|
1167
1167
|
interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1168
|
-
declare function Thumb(props: SwitchThumbProps):
|
|
1168
|
+
declare function Thumb(props: SwitchThumbProps): react0.JSX.Element;
|
|
1169
1169
|
//#endregion
|
|
1170
1170
|
//#region src/components/switch/anatomy/root.d.ts
|
|
1171
1171
|
interface SwitchRootProps extends Omit<Props$15, 'id'>, PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
@@ -1183,15 +1183,15 @@ declare const Switch: typeof Root$5 & {
|
|
|
1183
1183
|
//#endregion
|
|
1184
1184
|
//#region src/components/tabs/anatomy/content.d.ts
|
|
1185
1185
|
interface TabsContentProps extends ContentProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1186
|
-
declare function Content$1(props: TabsContentProps):
|
|
1186
|
+
declare function Content$1(props: TabsContentProps): react0.JSX.Element;
|
|
1187
1187
|
//#endregion
|
|
1188
1188
|
//#region src/components/tabs/anatomy/indicator.d.ts
|
|
1189
1189
|
interface TabsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1190
|
-
declare function Indicator(props: TabsIndicatorProps):
|
|
1190
|
+
declare function Indicator(props: TabsIndicatorProps): react0.JSX.Element;
|
|
1191
1191
|
//#endregion
|
|
1192
1192
|
//#region src/components/tabs/anatomy/list.d.ts
|
|
1193
1193
|
interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1194
|
-
declare function List(props: TabsListProps):
|
|
1194
|
+
declare function List(props: TabsListProps): react0.JSX.Element;
|
|
1195
1195
|
//#endregion
|
|
1196
1196
|
//#region src/components/tabs/anatomy/root.d.ts
|
|
1197
1197
|
interface TabsRootProps extends Omit<Props$16, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1214,7 +1214,7 @@ declare function RootProvider$3(props: TabsRootProviderProps): react_jsx_runtime
|
|
|
1214
1214
|
//#endregion
|
|
1215
1215
|
//#region src/components/tabs/anatomy/trigger.d.ts
|
|
1216
1216
|
interface TabsTriggerProps extends TriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
1217
|
-
declare function Trigger$1(props: TabsTriggerProps):
|
|
1217
|
+
declare function Trigger$1(props: TabsTriggerProps): react0.JSX.Element;
|
|
1218
1218
|
//#endregion
|
|
1219
1219
|
//#region src/components/tabs/modules/anatomy.d.ts
|
|
1220
1220
|
declare const Tabs: typeof Root$4 & {
|
|
@@ -1228,19 +1228,19 @@ declare const Tabs: typeof Root$4 & {
|
|
|
1228
1228
|
//#endregion
|
|
1229
1229
|
//#region src/components/tags-input/anatomy/clear-trigger.d.ts
|
|
1230
1230
|
interface TagsInputClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1231
|
-
declare function ClearTrigger(props: TagsInputClearTriggerProps):
|
|
1231
|
+
declare function ClearTrigger(props: TagsInputClearTriggerProps): react0.JSX.Element;
|
|
1232
1232
|
//#endregion
|
|
1233
1233
|
//#region src/components/tags-input/anatomy/control.d.ts
|
|
1234
1234
|
interface TagsInputControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1235
|
-
declare function Control(props: TagsInputControlProps):
|
|
1235
|
+
declare function Control(props: TagsInputControlProps): react0.JSX.Element;
|
|
1236
1236
|
//#endregion
|
|
1237
1237
|
//#region src/components/tags-input/anatomy/hidden-input.d.ts
|
|
1238
1238
|
interface TagsInputHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1239
|
-
declare function HiddenInput(props: TagsInputHiddenInputProps):
|
|
1239
|
+
declare function HiddenInput(props: TagsInputHiddenInputProps): react0.JSX.Element;
|
|
1240
1240
|
//#endregion
|
|
1241
1241
|
//#region src/components/tags-input/anatomy/input.d.ts
|
|
1242
1242
|
interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1243
|
-
declare function Input(props: TagsInputInputProps):
|
|
1243
|
+
declare function Input(props: TagsInputInputProps): react0.JSX.Element;
|
|
1244
1244
|
//#endregion
|
|
1245
1245
|
//#region src/components/tags-input/anatomy/item.d.ts
|
|
1246
1246
|
interface TagsInputItemProps extends ItemProps$8, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
@@ -1248,23 +1248,23 @@ declare function Item$2(props: TagsInputItemProps): react_jsx_runtime0.JSX.Eleme
|
|
|
1248
1248
|
//#endregion
|
|
1249
1249
|
//#region src/components/tags-input/anatomy/item-delete-trigger.d.ts
|
|
1250
1250
|
interface TagsInputItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1251
|
-
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps):
|
|
1251
|
+
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps): react0.JSX.Element;
|
|
1252
1252
|
//#endregion
|
|
1253
1253
|
//#region src/components/tags-input/anatomy/item-input.d.ts
|
|
1254
1254
|
interface TagsInputItemInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1255
|
-
declare function ItemInput(props: TagsInputItemInputProps):
|
|
1255
|
+
declare function ItemInput(props: TagsInputItemInputProps): react0.JSX.Element;
|
|
1256
1256
|
//#endregion
|
|
1257
1257
|
//#region src/components/tags-input/anatomy/item-preview.d.ts
|
|
1258
1258
|
interface TagsInputItemPreviewProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1259
|
-
declare function ItemPreview(props: TagsInputItemPreviewProps):
|
|
1259
|
+
declare function ItemPreview(props: TagsInputItemPreviewProps): react0.JSX.Element;
|
|
1260
1260
|
//#endregion
|
|
1261
1261
|
//#region src/components/tags-input/anatomy/item-text.d.ts
|
|
1262
1262
|
interface TagsInputItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1263
|
-
declare function ItemText(props: TagsInputItemTextProps):
|
|
1263
|
+
declare function ItemText(props: TagsInputItemTextProps): react0.JSX.Element;
|
|
1264
1264
|
//#endregion
|
|
1265
1265
|
//#region src/components/tags-input/anatomy/label.d.ts
|
|
1266
1266
|
interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1267
|
-
declare function Label$1(props: TagsInputLabelProps):
|
|
1267
|
+
declare function Label$1(props: TagsInputLabelProps): react0.JSX.Element;
|
|
1268
1268
|
//#endregion
|
|
1269
1269
|
//#region src/components/tags-input/anatomy/root.d.ts
|
|
1270
1270
|
interface TagsInputRootProps extends Omit<Props$17, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1303,11 +1303,11 @@ declare const TagsInput: typeof Root$3 & {
|
|
|
1303
1303
|
//#endregion
|
|
1304
1304
|
//#region src/components/toast/anatomy/close-trigger.d.ts
|
|
1305
1305
|
interface ToastCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1306
|
-
declare function CloseTrigger(props: ToastCloseTriggerProps):
|
|
1306
|
+
declare function CloseTrigger(props: ToastCloseTriggerProps): react0.JSX.Element;
|
|
1307
1307
|
//#endregion
|
|
1308
1308
|
//#region src/components/toast/anatomy/description.d.ts
|
|
1309
1309
|
interface ToastDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1310
|
-
declare function Description(props: ToastDescriptionProps):
|
|
1310
|
+
declare function Description(props: ToastDescriptionProps): react0.JSX.Element;
|
|
1311
1311
|
//#endregion
|
|
1312
1312
|
//#region src/components/toast/anatomy/group.d.ts
|
|
1313
1313
|
interface ToastGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'children'> {
|
|
@@ -1318,7 +1318,7 @@ declare function Group(props: ToastGroupProps): react_jsx_runtime0.JSX.Element;
|
|
|
1318
1318
|
//#endregion
|
|
1319
1319
|
//#region src/components/toast/anatomy/message.d.ts
|
|
1320
1320
|
interface ToastMessageProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1321
|
-
declare function Message(props: ToastMessageProps):
|
|
1321
|
+
declare function Message(props: ToastMessageProps): react0.JSX.Element;
|
|
1322
1322
|
//#endregion
|
|
1323
1323
|
//#region src/components/toast/anatomy/root.d.ts
|
|
1324
1324
|
interface ToastRootProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -1334,11 +1334,11 @@ declare function RootContext$3(props: ToastRootContextProps): ReactNode;
|
|
|
1334
1334
|
//#endregion
|
|
1335
1335
|
//#region src/components/toast/anatomy/title.d.ts
|
|
1336
1336
|
interface ToastTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1337
|
-
declare function Title(props: ToastTitleProps):
|
|
1337
|
+
declare function Title(props: ToastTitleProps): react0.JSX.Element;
|
|
1338
1338
|
//#endregion
|
|
1339
1339
|
//#region src/components/toast/anatomy/action-trigger.d.ts
|
|
1340
1340
|
interface ToastActionTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1341
|
-
declare function ActionTrigger(props: ToastActionTriggerProps):
|
|
1341
|
+
declare function ActionTrigger(props: ToastActionTriggerProps): react0.JSX.Element;
|
|
1342
1342
|
//#endregion
|
|
1343
1343
|
//#region src/components/toast/modules/anatomy.d.ts
|
|
1344
1344
|
declare const Toast: typeof Root$2 & {
|
|
@@ -1353,7 +1353,7 @@ declare const Toast: typeof Root$2 & {
|
|
|
1353
1353
|
//#endregion
|
|
1354
1354
|
//#region src/components/toggle-group/anatomy/item.d.ts
|
|
1355
1355
|
interface ToggleGroupItemProps extends ItemProps$9, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1356
|
-
declare function Item$1(props: ToggleGroupItemProps):
|
|
1356
|
+
declare function Item$1(props: ToggleGroupItemProps): react0.JSX.Element;
|
|
1357
1357
|
//#endregion
|
|
1358
1358
|
//#region src/components/toggle-group/anatomy/root.d.ts
|
|
1359
1359
|
interface ToggleGroupRootProps extends Omit<Props$19, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1383,15 +1383,15 @@ declare const ToggleGroup: typeof ToggleGroupRoot & {
|
|
|
1383
1383
|
//#endregion
|
|
1384
1384
|
//#region src/components/tooltip/anatomy/arrow.d.ts
|
|
1385
1385
|
interface TooltipArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1386
|
-
declare function Arrow(props: TooltipArrowProps):
|
|
1386
|
+
declare function Arrow(props: TooltipArrowProps): react0.JSX.Element;
|
|
1387
1387
|
//#endregion
|
|
1388
1388
|
//#region src/components/tooltip/anatomy/arrow-tip.d.ts
|
|
1389
1389
|
interface TooltipArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1390
|
-
declare function ArrowTip(props: TooltipArrowTipProps):
|
|
1390
|
+
declare function ArrowTip(props: TooltipArrowTipProps): react0.JSX.Element;
|
|
1391
1391
|
//#endregion
|
|
1392
1392
|
//#region src/components/tooltip/anatomy/content.d.ts
|
|
1393
1393
|
interface TooltipContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1394
|
-
declare function Content(props: TooltipContentProps):
|
|
1394
|
+
declare function Content(props: TooltipContentProps): react0.JSX.Element;
|
|
1395
1395
|
//#endregion
|
|
1396
1396
|
//#region src/components/tooltip/anatomy/positioner.d.ts
|
|
1397
1397
|
interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -1418,7 +1418,7 @@ declare function RootProvider$1(props: TooltipRootProviderProps): react_jsx_runt
|
|
|
1418
1418
|
//#endregion
|
|
1419
1419
|
//#region src/components/tooltip/anatomy/trigger.d.ts
|
|
1420
1420
|
interface TooltipTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1421
|
-
declare function Trigger(props: TooltipTriggerProps):
|
|
1421
|
+
declare function Trigger(props: TooltipTriggerProps): react0.JSX.Element;
|
|
1422
1422
|
//#endregion
|
|
1423
1423
|
//#region src/components/tooltip/modules/anatomy.d.ts
|
|
1424
1424
|
declare const Tooltip: typeof Root$1 & {
|
|
@@ -1433,31 +1433,31 @@ declare const Tooltip: typeof Root$1 & {
|
|
|
1433
1433
|
//#endregion
|
|
1434
1434
|
//#region src/components/tree-view/anatomy/branch-content.d.ts
|
|
1435
1435
|
interface TreeViewBranchContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1436
|
-
declare function BranchContent(props: TreeViewBranchContentProps):
|
|
1436
|
+
declare function BranchContent(props: TreeViewBranchContentProps): react0.JSX.Element;
|
|
1437
1437
|
//#endregion
|
|
1438
1438
|
//#region src/components/tree-view/anatomy/branch-control.d.ts
|
|
1439
1439
|
interface TreeViewBranchControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1440
|
-
declare function BranchControl(props: TreeViewBranchControlProps):
|
|
1440
|
+
declare function BranchControl(props: TreeViewBranchControlProps): react0.JSX.Element;
|
|
1441
1441
|
//#endregion
|
|
1442
1442
|
//#region src/components/tree-view/anatomy/branch-indent-guide.d.ts
|
|
1443
1443
|
interface TreeViewBranchIndentGuideProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1444
|
-
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps):
|
|
1444
|
+
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps): react0.JSX.Element;
|
|
1445
1445
|
//#endregion
|
|
1446
1446
|
//#region src/components/tree-view/anatomy/branch-indicator.d.ts
|
|
1447
1447
|
interface TreeViewBranchIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1448
|
-
declare function BranchIndicator(props: TreeViewBranchIndicatorProps):
|
|
1448
|
+
declare function BranchIndicator(props: TreeViewBranchIndicatorProps): react0.JSX.Element;
|
|
1449
1449
|
//#endregion
|
|
1450
1450
|
//#region src/components/tree-view/anatomy/branch-text.d.ts
|
|
1451
1451
|
interface TreeViewBranchTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1452
|
-
declare function BranchText(props: TreeViewBranchTextProps):
|
|
1452
|
+
declare function BranchText(props: TreeViewBranchTextProps): react0.JSX.Element;
|
|
1453
1453
|
//#endregion
|
|
1454
1454
|
//#region src/components/tree-view/anatomy/branch.d.ts
|
|
1455
1455
|
interface TreeViewBranchProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1456
|
-
declare function Branch(props: TreeViewBranchProps):
|
|
1456
|
+
declare function Branch(props: TreeViewBranchProps): react0.JSX.Element;
|
|
1457
1457
|
//#endregion
|
|
1458
1458
|
//#region src/components/tree-view/anatomy/item.d.ts
|
|
1459
1459
|
interface TreeViewItemProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1460
|
-
declare function Item(props: TreeViewItemProps):
|
|
1460
|
+
declare function Item(props: TreeViewItemProps): react0.JSX.Element;
|
|
1461
1461
|
//#endregion
|
|
1462
1462
|
//#region src/components/tree-view/anatomy/label.d.ts
|
|
1463
1463
|
interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'> {
|
|
@@ -1503,7 +1503,7 @@ declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>
|
|
|
1503
1503
|
//#endregion
|
|
1504
1504
|
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
1505
1505
|
interface TreeViewTreeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1506
|
-
declare function Tree(props: TreeViewTreeProps):
|
|
1506
|
+
declare function Tree(props: TreeViewTreeProps): react0.JSX.Element;
|
|
1507
1507
|
//#endregion
|
|
1508
1508
|
//#region src/components/tree-view/modules/anatomy.d.ts
|
|
1509
1509
|
declare const TreeView: typeof Root & {
|
package/dist/index.mjs
CHANGED
|
@@ -3535,7 +3535,7 @@ function Root$2(props) {
|
|
|
3535
3535
|
parent: group$1
|
|
3536
3536
|
}), normalizeProps);
|
|
3537
3537
|
const attributes = mergeProps(toast.getRootProps(), { className: classesToast.root }, rest);
|
|
3538
|
-
return /* @__PURE__ */
|
|
3538
|
+
return /* @__PURE__ */ jsx(RootContext$7.Provider, {
|
|
3539
3539
|
value: toast,
|
|
3540
3540
|
children: element ? element(attributes) : /* @__PURE__ */ jsxs("div", {
|
|
3541
3541
|
...attributes,
|
|
@@ -3545,29 +3545,7 @@ function Root$2(props) {
|
|
|
3545
3545
|
/* @__PURE__ */ jsx("div", { ...toast.getGhostAfterProps() })
|
|
3546
3546
|
]
|
|
3547
3547
|
})
|
|
3548
|
-
})
|
|
3549
|
-
[data-part='root'] {
|
|
3550
|
-
translate: var(--x) var(--y);
|
|
3551
|
-
scale: var(--scale);
|
|
3552
|
-
z-index: var(--z-index);
|
|
3553
|
-
height: var(--height);
|
|
3554
|
-
opacity: var(--opacity);
|
|
3555
|
-
will-change: translate, opacity, scale;
|
|
3556
|
-
transition:
|
|
3557
|
-
translate 400ms,
|
|
3558
|
-
scale 400ms,
|
|
3559
|
-
opacity 400ms;
|
|
3560
|
-
transition-timing-function: cubic-bezier(0.21, 1.02, 0.73, 1);
|
|
3561
|
-
|
|
3562
|
-
&[data-state='closed'] {
|
|
3563
|
-
transition:
|
|
3564
|
-
translate 400ms,
|
|
3565
|
-
scale 400ms,
|
|
3566
|
-
opacity 200ms;
|
|
3567
|
-
transition-timing-function: cubic-bezier(0.06, 0.71, 0.55, 1);
|
|
3568
|
-
}
|
|
3569
|
-
}
|
|
3570
|
-
` })] });
|
|
3548
|
+
});
|
|
3571
3549
|
}
|
|
3572
3550
|
|
|
3573
3551
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skeletonlabs/skeleton-react",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "The React package for Skeleton.",
|
|
5
5
|
"author": "endigo9740 <chris@skeletonlabs.dev>",
|
|
6
6
|
"repository": {
|
|
@@ -22,31 +22,31 @@
|
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@internationalized/date": "3.10.0",
|
|
25
|
-
"@zag-js/accordion": "1.
|
|
26
|
-
"@zag-js/avatar": "1.
|
|
27
|
-
"@zag-js/collapsible": "1.
|
|
28
|
-
"@zag-js/collection": "1.
|
|
29
|
-
"@zag-js/combobox": "1.
|
|
30
|
-
"@zag-js/date-picker": "1.
|
|
31
|
-
"@zag-js/dialog": "1.
|
|
32
|
-
"@zag-js/file-upload": "1.
|
|
33
|
-
"@zag-js/listbox": "1.
|
|
34
|
-
"@zag-js/menu": "1.
|
|
35
|
-
"@zag-js/pagination": "1.
|
|
36
|
-
"@zag-js/popover": "1.
|
|
37
|
-
"@zag-js/progress": "1.
|
|
38
|
-
"@zag-js/radio-group": "1.
|
|
39
|
-
"@zag-js/rating-group": "1.
|
|
40
|
-
"@zag-js/react": "1.
|
|
41
|
-
"@zag-js/slider": "1.
|
|
42
|
-
"@zag-js/switch": "1.
|
|
43
|
-
"@zag-js/tabs": "1.
|
|
44
|
-
"@zag-js/tags-input": "1.
|
|
45
|
-
"@zag-js/toast": "1.
|
|
46
|
-
"@zag-js/toggle-group": "1.
|
|
47
|
-
"@zag-js/tooltip": "1.
|
|
48
|
-
"@zag-js/tree-view": "1.
|
|
49
|
-
"@skeletonlabs/skeleton-common": "4.
|
|
25
|
+
"@zag-js/accordion": "1.29.0",
|
|
26
|
+
"@zag-js/avatar": "1.29.0",
|
|
27
|
+
"@zag-js/collapsible": "1.29.0",
|
|
28
|
+
"@zag-js/collection": "1.29.0",
|
|
29
|
+
"@zag-js/combobox": "1.29.0",
|
|
30
|
+
"@zag-js/date-picker": "1.29.0",
|
|
31
|
+
"@zag-js/dialog": "1.29.0",
|
|
32
|
+
"@zag-js/file-upload": "1.29.0",
|
|
33
|
+
"@zag-js/listbox": "1.29.0",
|
|
34
|
+
"@zag-js/menu": "1.29.0",
|
|
35
|
+
"@zag-js/pagination": "1.29.0",
|
|
36
|
+
"@zag-js/popover": "1.29.0",
|
|
37
|
+
"@zag-js/progress": "1.29.0",
|
|
38
|
+
"@zag-js/radio-group": "1.29.0",
|
|
39
|
+
"@zag-js/rating-group": "1.29.0",
|
|
40
|
+
"@zag-js/react": "1.29.0",
|
|
41
|
+
"@zag-js/slider": "1.29.0",
|
|
42
|
+
"@zag-js/switch": "1.29.0",
|
|
43
|
+
"@zag-js/tabs": "1.29.0",
|
|
44
|
+
"@zag-js/tags-input": "1.29.0",
|
|
45
|
+
"@zag-js/toast": "1.29.0",
|
|
46
|
+
"@zag-js/toggle-group": "1.29.0",
|
|
47
|
+
"@zag-js/tooltip": "1.29.0",
|
|
48
|
+
"@zag-js/tree-view": "1.29.0",
|
|
49
|
+
"@skeletonlabs/skeleton-common": "4.5.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "^18.0.0 || ^19.0.0",
|