@skeletonlabs/skeleton-react 4.4.1 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +160 -156
- package/dist/index.mjs +24 -34
- package/package.json +28 -50
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 & {
|
|
@@ -187,17 +187,21 @@ declare const Collapsible: typeof CollapsibleRoot & {
|
|
|
187
187
|
Content: typeof Content$8;
|
|
188
188
|
};
|
|
189
189
|
//#endregion
|
|
190
|
+
//#region src/components/combobox/anatomy/clear-trigger.d.ts
|
|
191
|
+
interface ComboboxClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
192
|
+
declare function ClearTrigger$1(props: ComboboxClearTriggerProps): react0.JSX.Element;
|
|
193
|
+
//#endregion
|
|
190
194
|
//#region src/components/combobox/anatomy/content.d.ts
|
|
191
195
|
interface ComboboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
192
|
-
declare function Content$7(props: ComboboxContentProps):
|
|
196
|
+
declare function Content$7(props: ComboboxContentProps): react0.JSX.Element;
|
|
193
197
|
//#endregion
|
|
194
198
|
//#region src/components/combobox/anatomy/control.d.ts
|
|
195
199
|
interface ComboboxControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
196
|
-
declare function Control$6(props: ComboboxControlProps):
|
|
200
|
+
declare function Control$6(props: ComboboxControlProps): react0.JSX.Element;
|
|
197
201
|
//#endregion
|
|
198
202
|
//#region src/components/combobox/anatomy/input.d.ts
|
|
199
203
|
interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
200
|
-
declare function Input$3(props: ComboboxInputProps):
|
|
204
|
+
declare function Input$3(props: ComboboxInputProps): react0.JSX.Element;
|
|
201
205
|
//#endregion
|
|
202
206
|
//#region src/components/combobox/anatomy/item.d.ts
|
|
203
207
|
interface ComboboxItemProps extends ItemProps$1, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -209,23 +213,23 @@ declare function ItemGroup$3(props: ComboboxItemGroupProps): react_jsx_runtime0.
|
|
|
209
213
|
//#endregion
|
|
210
214
|
//#region src/components/combobox/anatomy/item-group-label.d.ts
|
|
211
215
|
interface ComboboxItemGroupLabelProps extends Omit<ItemGroupLabelProps, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
212
|
-
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps):
|
|
216
|
+
declare function ItemGroupLabel$2(props: ComboboxItemGroupLabelProps): react0.JSX.Element;
|
|
213
217
|
//#endregion
|
|
214
218
|
//#region src/components/combobox/anatomy/item-indicator.d.ts
|
|
215
219
|
interface ComboboxItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
216
|
-
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps):
|
|
220
|
+
declare function ItemIndicator$2(props: ComboboxItemIndicatorProps): react0.JSX.Element;
|
|
217
221
|
//#endregion
|
|
218
222
|
//#region src/components/combobox/anatomy/item-text.d.ts
|
|
219
223
|
interface ComboboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
220
|
-
declare function ItemText$4(props: ComboboxItemTextProps):
|
|
224
|
+
declare function ItemText$4(props: ComboboxItemTextProps): react0.JSX.Element;
|
|
221
225
|
//#endregion
|
|
222
226
|
//#region src/components/combobox/anatomy/label.d.ts
|
|
223
227
|
interface ComboboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
224
|
-
declare function Label$10(props: ComboboxLabelProps):
|
|
228
|
+
declare function Label$10(props: ComboboxLabelProps): react0.JSX.Element;
|
|
225
229
|
//#endregion
|
|
226
230
|
//#region src/components/combobox/anatomy/positioner.d.ts
|
|
227
231
|
interface ComboboxPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
228
|
-
declare function Positioner$5(props: ComboboxPositionerProps):
|
|
232
|
+
declare function Positioner$5(props: ComboboxPositionerProps): react0.JSX.Element;
|
|
229
233
|
//#endregion
|
|
230
234
|
//#region src/components/combobox/anatomy/root.d.ts
|
|
231
235
|
interface ComboboxRootProps extends Omit<Props$3, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue' | 'onSelect'> {}
|
|
@@ -248,7 +252,7 @@ declare function RootProvider$14(props: ComboboxRootProviderProps): react_jsx_ru
|
|
|
248
252
|
//#endregion
|
|
249
253
|
//#region src/components/combobox/anatomy/trigger.d.ts
|
|
250
254
|
interface ComboboxTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
251
|
-
declare function Trigger$7(props: ComboboxTriggerProps):
|
|
255
|
+
declare function Trigger$7(props: ComboboxTriggerProps): react0.JSX.Element;
|
|
252
256
|
//#endregion
|
|
253
257
|
//#region src/components/combobox/modules/anatomy.d.ts
|
|
254
258
|
declare const Combobox: typeof Root$16 & {
|
|
@@ -258,6 +262,7 @@ declare const Combobox: typeof Root$16 & {
|
|
|
258
262
|
Control: typeof Control$6;
|
|
259
263
|
Input: typeof Input$3;
|
|
260
264
|
Trigger: typeof Trigger$7;
|
|
265
|
+
ClearTrigger: typeof ClearTrigger$1;
|
|
261
266
|
Positioner: typeof Positioner$5;
|
|
262
267
|
Content: typeof Content$7;
|
|
263
268
|
ItemGroup: typeof ItemGroup$3;
|
|
@@ -269,43 +274,43 @@ declare const Combobox: typeof Root$16 & {
|
|
|
269
274
|
//#endregion
|
|
270
275
|
//#region src/components/date-picker/anatomy/content.d.ts
|
|
271
276
|
interface DatePickerContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
272
|
-
declare function Content$6(props: DatePickerContentProps):
|
|
277
|
+
declare function Content$6(props: DatePickerContentProps): react0.JSX.Element;
|
|
273
278
|
//#endregion
|
|
274
279
|
//#region src/components/date-picker/anatomy/control.d.ts
|
|
275
280
|
interface DatePickerControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
276
|
-
declare function Control$5(props: DatePickerControlProps):
|
|
281
|
+
declare function Control$5(props: DatePickerControlProps): react0.JSX.Element;
|
|
277
282
|
//#endregion
|
|
278
283
|
//#region src/components/date-picker/anatomy/input.d.ts
|
|
279
284
|
interface DatePickerInputProps extends InputProps, PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
280
|
-
declare function Input$2(props: DatePickerInputProps):
|
|
285
|
+
declare function Input$2(props: DatePickerInputProps): react0.JSX.Element;
|
|
281
286
|
//#endregion
|
|
282
287
|
//#region src/components/date-picker/anatomy/label.d.ts
|
|
283
288
|
interface DatePickerLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
284
|
-
declare function Label$9(props: DatePickerLabelProps):
|
|
289
|
+
declare function Label$9(props: DatePickerLabelProps): react0.JSX.Element;
|
|
285
290
|
//#endregion
|
|
286
291
|
//#region src/components/date-picker/anatomy/month-select.d.ts
|
|
287
292
|
interface DatePickerMonthSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
288
|
-
declare function MonthSelect(props: DatePickerMonthSelectProps):
|
|
293
|
+
declare function MonthSelect(props: DatePickerMonthSelectProps): react0.JSX.Element;
|
|
289
294
|
//#endregion
|
|
290
295
|
//#region src/components/date-picker/anatomy/next-trigger.d.ts
|
|
291
296
|
interface DatePickerNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
292
|
-
declare function NextTrigger$1(props: DatePickerNextTriggerProps):
|
|
297
|
+
declare function NextTrigger$1(props: DatePickerNextTriggerProps): react0.JSX.Element;
|
|
293
298
|
//#endregion
|
|
294
299
|
//#region src/components/date-picker/anatomy/positioner.d.ts
|
|
295
300
|
interface DatePickerPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
296
|
-
declare function Positioner$4(props: DatePickerPositionerProps):
|
|
301
|
+
declare function Positioner$4(props: DatePickerPositionerProps): react0.JSX.Element;
|
|
297
302
|
//#endregion
|
|
298
303
|
//#region src/components/date-picker/anatomy/preset-trigger.d.ts
|
|
299
304
|
interface DatePickerPresetTriggerProps extends PresetTriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
300
|
-
declare function PresetTrigger(props: DatePickerPresetTriggerProps):
|
|
305
|
+
declare function PresetTrigger(props: DatePickerPresetTriggerProps): react0.JSX.Element;
|
|
301
306
|
//#endregion
|
|
302
307
|
//#region src/components/date-picker/anatomy/prev-trigger.d.ts
|
|
303
308
|
interface DatePickerPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
304
|
-
declare function PrevTrigger$1(props: DatePickerPrevTriggerProps):
|
|
309
|
+
declare function PrevTrigger$1(props: DatePickerPrevTriggerProps): react0.JSX.Element;
|
|
305
310
|
//#endregion
|
|
306
311
|
//#region src/components/date-picker/anatomy/range-text.d.ts
|
|
307
312
|
interface DatePickerRangeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
308
|
-
declare function RangeText(props: DatePickerRangeTextProps):
|
|
313
|
+
declare function RangeText(props: DatePickerRangeTextProps): react0.JSX.Element;
|
|
309
314
|
//#endregion
|
|
310
315
|
//#region src/components/date-picker/anatomy/root.d.ts
|
|
311
316
|
interface DatePickerRootProps extends Omit<Props$4, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -328,11 +333,11 @@ declare function RootProvider$13(props: DatePickerRootProviderProps): react_jsx_
|
|
|
328
333
|
//#endregion
|
|
329
334
|
//#region src/components/date-picker/anatomy/table.d.ts
|
|
330
335
|
interface DatePickerTableProps extends PropsWithElement<'table'>, HTMLAttributes<'table'> {}
|
|
331
|
-
declare function Table(props: DatePickerTableProps):
|
|
336
|
+
declare function Table(props: DatePickerTableProps): react0.JSX.Element;
|
|
332
337
|
//#endregion
|
|
333
338
|
//#region src/components/date-picker/anatomy/table-body.d.ts
|
|
334
339
|
interface DatePickerTableBodyProps extends PropsWithElement<'tbody'>, HTMLAttributes<'tbody'> {}
|
|
335
|
-
declare function TableBody(props: DatePickerTableBodyProps):
|
|
340
|
+
declare function TableBody(props: DatePickerTableBodyProps): react0.JSX.Element;
|
|
336
341
|
//#endregion
|
|
337
342
|
//#region src/internal/union.d.ts
|
|
338
343
|
type Union<T, U> = { [K in keyof T]: K extends keyof U ? U[K] | T[K] : T[K] } & Omit<U, keyof T>;
|
|
@@ -343,23 +348,23 @@ declare function TableCell(props: DatePickerTableCellProps): react_jsx_runtime0.
|
|
|
343
348
|
//#endregion
|
|
344
349
|
//#region src/components/date-picker/anatomy/table-cell-trigger.d.ts
|
|
345
350
|
interface DatePickerTableCellTriggerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
346
|
-
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps):
|
|
351
|
+
declare function TableCellTrigger(props: DatePickerTableCellTriggerProps): react0.JSX.Element;
|
|
347
352
|
//#endregion
|
|
348
353
|
//#region src/components/date-picker/anatomy/table-head.d.ts
|
|
349
354
|
interface DatePickerTableHeadProps extends PropsWithElement<'thead'>, HTMLAttributes<'thead'> {}
|
|
350
|
-
declare function TableHead(props: DatePickerTableHeadProps):
|
|
355
|
+
declare function TableHead(props: DatePickerTableHeadProps): react0.JSX.Element;
|
|
351
356
|
//#endregion
|
|
352
357
|
//#region src/components/date-picker/anatomy/table-header.d.ts
|
|
353
358
|
interface DatePickerTableHeaderProps extends PropsWithElement<'th'>, HTMLAttributes<'th'> {}
|
|
354
|
-
declare function TableHeader(props: DatePickerTableHeaderProps):
|
|
359
|
+
declare function TableHeader(props: DatePickerTableHeaderProps): react0.JSX.Element;
|
|
355
360
|
//#endregion
|
|
356
361
|
//#region src/components/date-picker/anatomy/table-row.d.ts
|
|
357
362
|
interface DatePickerTableRowProps extends PropsWithElement<'tr'>, HTMLAttributes<'tr'> {}
|
|
358
|
-
declare function TableRow(props: DatePickerTableRowProps):
|
|
363
|
+
declare function TableRow(props: DatePickerTableRowProps): react0.JSX.Element;
|
|
359
364
|
//#endregion
|
|
360
365
|
//#region src/components/date-picker/anatomy/trigger.d.ts
|
|
361
366
|
interface DatePickerTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
362
|
-
declare function Trigger$6(props: DatePickerTriggerProps):
|
|
367
|
+
declare function Trigger$6(props: DatePickerTriggerProps): react0.JSX.Element;
|
|
363
368
|
//#endregion
|
|
364
369
|
//#region src/components/date-picker/anatomy/view.d.ts
|
|
365
370
|
interface DatePickerViewProps extends ViewProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -367,15 +372,15 @@ declare function View(props: DatePickerViewProps): react_jsx_runtime0.JSX.Elemen
|
|
|
367
372
|
//#endregion
|
|
368
373
|
//#region src/components/date-picker/anatomy/view-control.d.ts
|
|
369
374
|
interface DatePickerViewControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
370
|
-
declare function ViewControl(props: DatePickerViewControlProps):
|
|
375
|
+
declare function ViewControl(props: DatePickerViewControlProps): react0.JSX.Element;
|
|
371
376
|
//#endregion
|
|
372
377
|
//#region src/components/date-picker/anatomy/view-trigger.d.ts
|
|
373
378
|
interface DatePickerViewTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
374
|
-
declare function ViewTrigger(props: DatePickerViewTriggerProps):
|
|
379
|
+
declare function ViewTrigger(props: DatePickerViewTriggerProps): react0.JSX.Element;
|
|
375
380
|
//#endregion
|
|
376
381
|
//#region src/components/date-picker/anatomy/year-select.d.ts
|
|
377
382
|
interface DatePickerYearSelectProps extends PropsWithElement<'select'>, HTMLAttributes<'select', 'children'> {}
|
|
378
|
-
declare function YearSelect(props: DatePickerYearSelectProps):
|
|
383
|
+
declare function YearSelect(props: DatePickerYearSelectProps): react0.JSX.Element;
|
|
379
384
|
//#endregion
|
|
380
385
|
//#region src/components/date-picker/modules/anatomy.d.ts
|
|
381
386
|
declare const DatePicker: typeof Root$15 & {
|
|
@@ -407,23 +412,23 @@ declare const DatePicker: typeof Root$15 & {
|
|
|
407
412
|
//#endregion
|
|
408
413
|
//#region src/components/dialog/anatomy/backdrop.d.ts
|
|
409
414
|
interface DialogBackdropProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
410
|
-
declare function Backdrop(props: DialogBackdropProps):
|
|
415
|
+
declare function Backdrop(props: DialogBackdropProps): react0.JSX.Element;
|
|
411
416
|
//#endregion
|
|
412
417
|
//#region src/components/dialog/anatomy/close-trigger.d.ts
|
|
413
418
|
interface DialogCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
414
|
-
declare function CloseTrigger$2(props: DialogCloseTriggerProps):
|
|
419
|
+
declare function CloseTrigger$2(props: DialogCloseTriggerProps): react0.JSX.Element;
|
|
415
420
|
//#endregion
|
|
416
421
|
//#region src/components/dialog/anatomy/content.d.ts
|
|
417
422
|
interface DialogContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
418
|
-
declare function Content$5(props: DialogContentProps):
|
|
423
|
+
declare function Content$5(props: DialogContentProps): react0.JSX.Element;
|
|
419
424
|
//#endregion
|
|
420
425
|
//#region src/components/dialog/anatomy/description.d.ts
|
|
421
426
|
interface DialogDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
422
|
-
declare function Description$2(props: DialogDescriptionProps):
|
|
427
|
+
declare function Description$2(props: DialogDescriptionProps): react0.JSX.Element;
|
|
423
428
|
//#endregion
|
|
424
429
|
//#region src/components/dialog/anatomy/positioner.d.ts
|
|
425
430
|
interface DialogPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
426
|
-
declare function Positioner$3(props: DialogPositionerProps):
|
|
431
|
+
declare function Positioner$3(props: DialogPositionerProps): react0.JSX.Element;
|
|
427
432
|
//#endregion
|
|
428
433
|
//#region src/components/dialog/anatomy/root.d.ts
|
|
429
434
|
interface DialogRootProps extends PropsWithChildren, Omit<Props$5, 'id'> {}
|
|
@@ -446,11 +451,11 @@ declare function RootProvider$12(props: DialogRootProviderProps): react_jsx_runt
|
|
|
446
451
|
//#endregion
|
|
447
452
|
//#region src/components/dialog/anatomy/title.d.ts
|
|
448
453
|
interface DialogTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
449
|
-
declare function Title$2(props: DialogTitleProps):
|
|
454
|
+
declare function Title$2(props: DialogTitleProps): react0.JSX.Element;
|
|
450
455
|
//#endregion
|
|
451
456
|
//#region src/components/dialog/anatomy/trigger.d.ts
|
|
452
457
|
interface DialogTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
453
|
-
declare function Trigger$5(props: DialogTriggerProps):
|
|
458
|
+
declare function Trigger$5(props: DialogTriggerProps): react0.JSX.Element;
|
|
454
459
|
//#endregion
|
|
455
460
|
//#region src/components/dialog/modules/anatomy.d.ts
|
|
456
461
|
declare const Dialog: typeof Root$14 & {
|
|
@@ -467,11 +472,11 @@ declare const Dialog: typeof Root$14 & {
|
|
|
467
472
|
//#endregion
|
|
468
473
|
//#region src/components/file-upload/anatomy/dropzone.d.ts
|
|
469
474
|
interface FileUploadDropzoneProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
470
|
-
declare function Dropzone(props: FileUploadDropzoneProps):
|
|
475
|
+
declare function Dropzone(props: FileUploadDropzoneProps): react0.JSX.Element;
|
|
471
476
|
//#endregion
|
|
472
477
|
//#region src/components/file-upload/anatomy/hidden-input.d.ts
|
|
473
478
|
interface FileUploadHiddenInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
474
|
-
declare function HiddenInput$4(props: FileUploadHiddenInputProps):
|
|
479
|
+
declare function HiddenInput$4(props: FileUploadHiddenInputProps): react0.JSX.Element;
|
|
475
480
|
//#endregion
|
|
476
481
|
//#region src/components/file-upload/anatomy/item.d.ts
|
|
477
482
|
interface FileUploadItemProps extends ItemProps$2, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -479,23 +484,23 @@ declare function Item$8(props: FileUploadItemProps): react_jsx_runtime0.JSX.Elem
|
|
|
479
484
|
//#endregion
|
|
480
485
|
//#region src/components/file-upload/anatomy/item-delete-trigger.d.ts
|
|
481
486
|
interface FileUploadItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
482
|
-
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps):
|
|
487
|
+
declare function ItemDeleteTrigger$1(props: FileUploadItemDeleteTriggerProps): react0.JSX.Element;
|
|
483
488
|
//#endregion
|
|
484
489
|
//#region src/components/file-upload/anatomy/item-group.d.ts
|
|
485
490
|
interface FileUploadItemGroupProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
486
|
-
declare function ItemGroup$2(props: FileUploadItemGroupProps):
|
|
491
|
+
declare function ItemGroup$2(props: FileUploadItemGroupProps): react0.JSX.Element;
|
|
487
492
|
//#endregion
|
|
488
493
|
//#region src/components/file-upload/anatomy/item-name.d.ts
|
|
489
494
|
interface FileUploadItemNameProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
490
|
-
declare function ItemName(props: FileUploadItemNameProps):
|
|
495
|
+
declare function ItemName(props: FileUploadItemNameProps): react0.JSX.Element;
|
|
491
496
|
//#endregion
|
|
492
497
|
//#region src/components/file-upload/anatomy/item-size-text.d.ts
|
|
493
498
|
interface FileUploadItemSizeTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
494
|
-
declare function ItemSizeText(props: FileUploadItemSizeTextProps):
|
|
499
|
+
declare function ItemSizeText(props: FileUploadItemSizeTextProps): react0.JSX.Element;
|
|
495
500
|
//#endregion
|
|
496
501
|
//#region src/components/file-upload/anatomy/label.d.ts
|
|
497
502
|
interface FileUploadLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
498
|
-
declare function Label$8(props: FileUploadLabelProps):
|
|
503
|
+
declare function Label$8(props: FileUploadLabelProps): react0.JSX.Element;
|
|
499
504
|
//#endregion
|
|
500
505
|
//#region src/components/file-upload/anatomy/root.d.ts
|
|
501
506
|
interface FileUploadRootProps extends Omit<Props$6, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div'>, 'id' | 'dir'> {}
|
|
@@ -518,7 +523,7 @@ declare function RootProvider$11(props: FileUploadRootProviderProps): react_jsx_
|
|
|
518
523
|
//#endregion
|
|
519
524
|
//#region src/components/file-upload/anatomy/trigger.d.ts
|
|
520
525
|
interface FileUploadTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
521
|
-
declare function Trigger$4(props: FileUploadTriggerProps):
|
|
526
|
+
declare function Trigger$4(props: FileUploadTriggerProps): react0.JSX.Element;
|
|
522
527
|
//#endregion
|
|
523
528
|
//#region src/components/file-upload/modules/anatomy.d.ts
|
|
524
529
|
declare const FileUpload: typeof Root$13 & {
|
|
@@ -545,7 +550,7 @@ declare function ItemGroup$1(props: ListboxItemGroupProps): react_jsx_runtime0.J
|
|
|
545
550
|
//#endregion
|
|
546
551
|
//#region src/components/listbox/anatomy/item-group-label.d.ts
|
|
547
552
|
interface ListboxItemGroupLabelProps extends Omit<ItemGroupLabelProps$1, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
548
|
-
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps):
|
|
553
|
+
declare function ItemGroupLabel$1(props: ListboxItemGroupLabelProps): react0.JSX.Element;
|
|
549
554
|
//#endregion
|
|
550
555
|
//#region src/components/listbox/anatomy/item.d.ts
|
|
551
556
|
interface ListboxItemProps extends ItemProps$3, PropsWithElement<'li'>, HTMLAttributes<'li'> {}
|
|
@@ -553,15 +558,15 @@ declare function Item$7(props: ListboxItemProps): react_jsx_runtime0.JSX.Element
|
|
|
553
558
|
//#endregion
|
|
554
559
|
//#region src/components/listbox/anatomy/input.d.ts
|
|
555
560
|
interface ListboxInputProps extends PropsWithElement<'input'>, Omit<HTMLAttributes<'input'>, 'children'> {}
|
|
556
|
-
declare function Input$1(props: ListboxInputProps):
|
|
561
|
+
declare function Input$1(props: ListboxInputProps): react0.JSX.Element;
|
|
557
562
|
//#endregion
|
|
558
563
|
//#region src/components/listbox/anatomy/item-indicator.d.ts
|
|
559
564
|
interface ListboxItemIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
560
|
-
declare function ItemIndicator$1(props: ListboxItemIndicatorProps):
|
|
565
|
+
declare function ItemIndicator$1(props: ListboxItemIndicatorProps): react0.JSX.Element;
|
|
561
566
|
//#endregion
|
|
562
567
|
//#region src/components/listbox/anatomy/item-text.d.ts
|
|
563
568
|
interface ListboxItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
564
|
-
declare function ItemText$3(props: ListboxItemTextProps):
|
|
569
|
+
declare function ItemText$3(props: ListboxItemTextProps): react0.JSX.Element;
|
|
565
570
|
//#endregion
|
|
566
571
|
//#region src/components/listbox/modules/provider.d.ts
|
|
567
572
|
declare function useListbox(props: Omit<Props$7, 'id'>): Api$7<PropTypes>;
|
|
@@ -580,11 +585,11 @@ declare function RootProvider$10(props: ListboxRootProviderProps): react_jsx_run
|
|
|
580
585
|
//#endregion
|
|
581
586
|
//#region src/components/listbox/anatomy/label.d.ts
|
|
582
587
|
interface ListboxLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
583
|
-
declare function Label$7(props: ListboxLabelProps):
|
|
588
|
+
declare function Label$7(props: ListboxLabelProps): react0.JSX.Element;
|
|
584
589
|
//#endregion
|
|
585
590
|
//#region src/components/listbox/anatomy/content.d.ts
|
|
586
591
|
interface ListboxContentProps extends PropsWithElement<'ul'>, HTMLAttributes<'ul'> {}
|
|
587
|
-
declare function Content$4(props: ListboxContentProps):
|
|
592
|
+
declare function Content$4(props: ListboxContentProps): react0.JSX.Element;
|
|
588
593
|
//#endregion
|
|
589
594
|
//#region src/components/listbox/modules/anatomy.d.ts
|
|
590
595
|
declare const Listbox: typeof Root$12 & {
|
|
@@ -602,19 +607,19 @@ declare const Listbox: typeof Root$12 & {
|
|
|
602
607
|
//#endregion
|
|
603
608
|
//#region src/components/menu/anatomy/arrow.d.ts
|
|
604
609
|
interface MenuArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
605
|
-
declare function Arrow$2(props: MenuArrowProps):
|
|
610
|
+
declare function Arrow$2(props: MenuArrowProps): react0.JSX.Element;
|
|
606
611
|
//#endregion
|
|
607
612
|
//#region src/components/menu/anatomy/arrow-tip.d.ts
|
|
608
613
|
interface MenuArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
609
|
-
declare function ArrowTip$2(props: MenuArrowTipProps):
|
|
614
|
+
declare function ArrowTip$2(props: MenuArrowTipProps): react0.JSX.Element;
|
|
610
615
|
//#endregion
|
|
611
616
|
//#region src/components/menu/anatomy/content.d.ts
|
|
612
617
|
interface MenuContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
613
|
-
declare function Content$3(props: MenuContentProps):
|
|
618
|
+
declare function Content$3(props: MenuContentProps): react0.JSX.Element;
|
|
614
619
|
//#endregion
|
|
615
620
|
//#region src/components/menu/anatomy/context-trigger.d.ts
|
|
616
621
|
interface MenuContextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
617
|
-
declare function ContextTrigger(props: MenuContextTriggerProps):
|
|
622
|
+
declare function ContextTrigger(props: MenuContextTriggerProps): react0.JSX.Element;
|
|
618
623
|
//#endregion
|
|
619
624
|
//#region src/components/menu/anatomy/item.d.ts
|
|
620
625
|
interface MenuItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -626,7 +631,7 @@ declare function ItemGroup(props: MenuItemGroupProps): react_jsx_runtime0.JSX.El
|
|
|
626
631
|
//#endregion
|
|
627
632
|
//#region src/components/menu/anatomy/item-group-label.d.ts
|
|
628
633
|
interface MenuItemGroupLabelProps extends Omit<ItemGroupLabelProps$2, 'htmlFor'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
629
|
-
declare function ItemGroupLabel(props: MenuItemGroupLabelProps):
|
|
634
|
+
declare function ItemGroupLabel(props: MenuItemGroupLabelProps): react0.JSX.Element;
|
|
630
635
|
//#endregion
|
|
631
636
|
//#region src/components/menu/anatomy/option-item.d.ts
|
|
632
637
|
interface MenuOptionItemProps extends OptionItemProps, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -634,19 +639,19 @@ declare function OptionItem(props: MenuOptionItemProps): react_jsx_runtime0.JSX.
|
|
|
634
639
|
//#endregion
|
|
635
640
|
//#region src/components/menu/anatomy/item-text.d.ts
|
|
636
641
|
interface MenuItemTextProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
637
|
-
declare function ItemText$2(props: MenuItemTextProps):
|
|
642
|
+
declare function ItemText$2(props: MenuItemTextProps): react0.JSX.Element;
|
|
638
643
|
//#endregion
|
|
639
644
|
//#region src/components/menu/anatomy/item-indicator.d.ts
|
|
640
645
|
interface MenuItemIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
641
|
-
declare function ItemIndicator(props: MenuItemIndicatorProps):
|
|
646
|
+
declare function ItemIndicator(props: MenuItemIndicatorProps): react0.JSX.Element;
|
|
642
647
|
//#endregion
|
|
643
648
|
//#region src/components/menu/anatomy/indicator.d.ts
|
|
644
649
|
interface MenuIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
645
|
-
declare function Indicator$2(props: MenuIndicatorProps):
|
|
650
|
+
declare function Indicator$2(props: MenuIndicatorProps): react0.JSX.Element;
|
|
646
651
|
//#endregion
|
|
647
652
|
//#region src/components/menu/anatomy/positioner.d.ts
|
|
648
653
|
interface MenuPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
649
|
-
declare function Positioner$2(props: MenuPositionerProps):
|
|
654
|
+
declare function Positioner$2(props: MenuPositionerProps): react0.JSX.Element;
|
|
650
655
|
//#endregion
|
|
651
656
|
//#region src/components/menu/anatomy/root.d.ts
|
|
652
657
|
interface MenuRootProps extends Omit<Props$8, 'id'>, PropsWithElement<'div'>, Omit<HTMLAttributes<'div', 'id' | 'dir'>, 'onSelect' | 'aria-label'> {}
|
|
@@ -671,11 +676,11 @@ declare function RootProvider$9(props: MenuRootProviderProps): react_jsx_runtime
|
|
|
671
676
|
//#endregion
|
|
672
677
|
//#region src/components/menu/anatomy/separator.d.ts
|
|
673
678
|
interface MenuSeparatorProps extends PropsWithElement<'hr'>, HTMLAttributes<'hr', 'id' | 'dir' | 'children'> {}
|
|
674
|
-
declare function Separator(props: MenuSeparatorProps):
|
|
679
|
+
declare function Separator(props: MenuSeparatorProps): react0.JSX.Element;
|
|
675
680
|
//#endregion
|
|
676
681
|
//#region src/components/menu/anatomy/trigger.d.ts
|
|
677
682
|
interface MenuTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button', 'id' | 'dir'> {}
|
|
678
|
-
declare function Trigger$3(props: MenuTriggerProps):
|
|
683
|
+
declare function Trigger$3(props: MenuTriggerProps): react0.JSX.Element;
|
|
679
684
|
//#endregion
|
|
680
685
|
//#region src/components/menu/anatomy/trigger-item.d.ts
|
|
681
686
|
interface MenuTriggerItemProps extends ItemProps$4, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
@@ -715,27 +720,27 @@ declare function NavigationRoot(props: NavigationRootProps): react_jsx_runtime0.
|
|
|
715
720
|
//#endregion
|
|
716
721
|
//#region src/components/navigation/anatomy/menu.d.ts
|
|
717
722
|
interface NavigationMenuProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
718
|
-
declare function NavigationMenu(props: NavigationMenuProps):
|
|
723
|
+
declare function NavigationMenu(props: NavigationMenuProps): react0.JSX.Element;
|
|
719
724
|
//#endregion
|
|
720
725
|
//#region src/components/navigation/anatomy/header.d.ts
|
|
721
726
|
interface NavigationHeaderProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> {}
|
|
722
|
-
declare function NavigationHeader(props: NavigationHeaderProps):
|
|
727
|
+
declare function NavigationHeader(props: NavigationHeaderProps): react0.JSX.Element;
|
|
723
728
|
//#endregion
|
|
724
729
|
//#region src/components/navigation/anatomy/content.d.ts
|
|
725
730
|
interface NavigationContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
726
|
-
declare function NavigationContent(props: NavigationContentProps):
|
|
731
|
+
declare function NavigationContent(props: NavigationContentProps): react0.JSX.Element;
|
|
727
732
|
//#endregion
|
|
728
733
|
//#region src/components/navigation/anatomy/footer.d.ts
|
|
729
734
|
interface NavigationFooterProps extends PropsWithElement<'footer'>, HTMLAttributes<'footer'> {}
|
|
730
|
-
declare function NavigationFooter(props: NavigationFooterProps):
|
|
735
|
+
declare function NavigationFooter(props: NavigationFooterProps): react0.JSX.Element;
|
|
731
736
|
//#endregion
|
|
732
737
|
//#region src/components/navigation/anatomy/group.d.ts
|
|
733
738
|
interface NavigationGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
734
|
-
declare function NavigationGroup(props: NavigationGroupProps):
|
|
739
|
+
declare function NavigationGroup(props: NavigationGroupProps): react0.JSX.Element;
|
|
735
740
|
//#endregion
|
|
736
741
|
//#region src/components/navigation/anatomy/label.d.ts
|
|
737
742
|
interface NavigationLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
738
|
-
declare function NavigationLabel(props: NavigationLabelProps):
|
|
743
|
+
declare function NavigationLabel(props: NavigationLabelProps): react0.JSX.Element;
|
|
739
744
|
//#endregion
|
|
740
745
|
//#region src/components/navigation/modules/anatomy.d.ts
|
|
741
746
|
declare const Navigation: typeof NavigationRoot & {
|
|
@@ -749,27 +754,27 @@ declare const Navigation: typeof NavigationRoot & {
|
|
|
749
754
|
//#endregion
|
|
750
755
|
//#region src/components/pagination/anatomy/ellipsis.d.ts
|
|
751
756
|
interface PaginationEllipsisProps extends EllipsisProps, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
752
|
-
declare function Ellipsis(props: PaginationEllipsisProps):
|
|
757
|
+
declare function Ellipsis(props: PaginationEllipsisProps): react0.JSX.Element;
|
|
753
758
|
//#endregion
|
|
754
759
|
//#region src/components/pagination/anatomy/first-trigger.d.ts
|
|
755
760
|
interface PaginationFirstTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
756
|
-
declare function FirstTrigger(props: PaginationFirstTriggerProps):
|
|
761
|
+
declare function FirstTrigger(props: PaginationFirstTriggerProps): react0.JSX.Element;
|
|
757
762
|
//#endregion
|
|
758
763
|
//#region src/components/pagination/anatomy/item.d.ts
|
|
759
764
|
interface PaginationItemProps extends ItemProps$5, PropsWithElement<'a'>, HTMLAttributes<'a', 'type'> {}
|
|
760
|
-
declare function Item$5(props: PaginationItemProps):
|
|
765
|
+
declare function Item$5(props: PaginationItemProps): react0.JSX.Element;
|
|
761
766
|
//#endregion
|
|
762
767
|
//#region src/components/pagination/anatomy/last-trigger.d.ts
|
|
763
768
|
interface PaginationLastTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
764
|
-
declare function LastTrigger(props: PaginationLastTriggerProps):
|
|
769
|
+
declare function LastTrigger(props: PaginationLastTriggerProps): react0.JSX.Element;
|
|
765
770
|
//#endregion
|
|
766
771
|
//#region src/components/pagination/anatomy/next-trigger.d.ts
|
|
767
772
|
interface PaginationNextTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
768
|
-
declare function NextTrigger(props: PaginationNextTriggerProps):
|
|
773
|
+
declare function NextTrigger(props: PaginationNextTriggerProps): react0.JSX.Element;
|
|
769
774
|
//#endregion
|
|
770
775
|
//#region src/components/pagination/anatomy/prev-trigger.d.ts
|
|
771
776
|
interface PaginationPrevTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
772
|
-
declare function PrevTrigger(props: PaginationPrevTriggerProps):
|
|
777
|
+
declare function PrevTrigger(props: PaginationPrevTriggerProps): react0.JSX.Element;
|
|
773
778
|
//#endregion
|
|
774
779
|
//#region src/components/pagination/modules/provider.d.ts
|
|
775
780
|
declare function usePagination(props?: Omit<Props$9, 'id'>): Api$9<PropTypes>;
|
|
@@ -804,19 +809,19 @@ declare const Pagination: typeof PaginationRoot & {
|
|
|
804
809
|
//#endregion
|
|
805
810
|
//#region src/components/popover/anatomy/close-trigger.d.ts
|
|
806
811
|
interface PopoverCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
807
|
-
declare function CloseTrigger$1(props: PopoverCloseTriggerProps):
|
|
812
|
+
declare function CloseTrigger$1(props: PopoverCloseTriggerProps): react0.JSX.Element;
|
|
808
813
|
//#endregion
|
|
809
814
|
//#region src/components/popover/anatomy/content.d.ts
|
|
810
815
|
interface PopoverContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
811
|
-
declare function Content$2(props: PopoverContentProps):
|
|
816
|
+
declare function Content$2(props: PopoverContentProps): react0.JSX.Element;
|
|
812
817
|
//#endregion
|
|
813
818
|
//#region src/components/popover/anatomy/description.d.ts
|
|
814
819
|
interface PopoverDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
815
|
-
declare function Description$1(props: PopoverDescriptionProps):
|
|
820
|
+
declare function Description$1(props: PopoverDescriptionProps): react0.JSX.Element;
|
|
816
821
|
//#endregion
|
|
817
822
|
//#region src/components/popover/anatomy/positioner.d.ts
|
|
818
823
|
interface PopoverPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
819
|
-
declare function Positioner$1(props: PopoverPositionerProps):
|
|
824
|
+
declare function Positioner$1(props: PopoverPositionerProps): react0.JSX.Element;
|
|
820
825
|
//#endregion
|
|
821
826
|
//#region src/components/popover/anatomy/root.d.ts
|
|
822
827
|
interface PopoverRootProps extends PropsWithChildren, Omit<Props$10, 'id'> {}
|
|
@@ -839,19 +844,19 @@ declare function RootProvider$8(props: PopoverRootProviderProps): react_jsx_runt
|
|
|
839
844
|
//#endregion
|
|
840
845
|
//#region src/components/popover/anatomy/title.d.ts
|
|
841
846
|
interface PopoverTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
842
|
-
declare function Title$1(props: PopoverTitleProps):
|
|
847
|
+
declare function Title$1(props: PopoverTitleProps): react0.JSX.Element;
|
|
843
848
|
//#endregion
|
|
844
849
|
//#region src/components/popover/anatomy/arrow.d.ts
|
|
845
850
|
interface PopoverArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
846
|
-
declare function Arrow$1(props: PopoverArrowProps):
|
|
851
|
+
declare function Arrow$1(props: PopoverArrowProps): react0.JSX.Element;
|
|
847
852
|
//#endregion
|
|
848
853
|
//#region src/components/popover/anatomy/arrow-tip.d.ts
|
|
849
854
|
interface PopoverArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
850
|
-
declare function ArrowTip$1(props: PopoverArrowTipProps):
|
|
855
|
+
declare function ArrowTip$1(props: PopoverArrowTipProps): react0.JSX.Element;
|
|
851
856
|
//#endregion
|
|
852
857
|
//#region src/components/popover/anatomy/trigger.d.ts
|
|
853
858
|
interface PopoverTriggerProps extends PropsWithChildren, PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
854
|
-
declare function Trigger$2(props: PopoverTriggerProps):
|
|
859
|
+
declare function Trigger$2(props: PopoverTriggerProps): react0.JSX.Element;
|
|
855
860
|
//#endregion
|
|
856
861
|
//#region src/components/popover/modules/anatomy.d.ts
|
|
857
862
|
declare const Popover: typeof Root$10 & {
|
|
@@ -889,11 +894,11 @@ declare const Portal: typeof Root$9;
|
|
|
889
894
|
//#endregion
|
|
890
895
|
//#region src/components/progress/anatomy/label.d.ts
|
|
891
896
|
interface ProgressLabelProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
892
|
-
declare function Label$6(props: ProgressLabelProps):
|
|
897
|
+
declare function Label$6(props: ProgressLabelProps): react0.JSX.Element;
|
|
893
898
|
//#endregion
|
|
894
899
|
//#region src/components/progress/anatomy/range.d.ts
|
|
895
900
|
interface ProgressRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
896
|
-
declare function Range$1(props: ProgressRangeProps):
|
|
901
|
+
declare function Range$1(props: ProgressRangeProps): react0.JSX.Element;
|
|
897
902
|
//#endregion
|
|
898
903
|
//#region src/components/progress/anatomy/root.d.ts
|
|
899
904
|
interface ProgressRootProps extends Omit<Props$11, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -916,23 +921,23 @@ declare function RootProvider$7(props: ProgressRootProviderProps): react_jsx_run
|
|
|
916
921
|
//#endregion
|
|
917
922
|
//#region src/components/progress/anatomy/track.d.ts
|
|
918
923
|
interface ProgressTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
919
|
-
declare function Track$1(props: ProgressTrackProps):
|
|
924
|
+
declare function Track$1(props: ProgressTrackProps): react0.JSX.Element;
|
|
920
925
|
//#endregion
|
|
921
926
|
//#region src/components/progress/anatomy/value-text.d.ts
|
|
922
927
|
interface ProgressValueTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
923
|
-
declare function ValueText$1(props: ProgressValueTextProps):
|
|
928
|
+
declare function ValueText$1(props: ProgressValueTextProps): react0.JSX.Element;
|
|
924
929
|
//#endregion
|
|
925
930
|
//#region src/components/progress/anatomy/circle.d.ts
|
|
926
931
|
interface ProgressCircleProps extends PropsWithElement<'svg'>, HTMLAttributes<'svg'> {}
|
|
927
|
-
declare function Circle(props: ProgressCircleProps):
|
|
932
|
+
declare function Circle(props: ProgressCircleProps): react0.JSX.Element;
|
|
928
933
|
//#endregion
|
|
929
934
|
//#region src/components/progress/anatomy/circle-range.d.ts
|
|
930
935
|
interface ProgressCircleRangeProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
931
|
-
declare function CircleRange(props: ProgressCircleRangeProps):
|
|
936
|
+
declare function CircleRange(props: ProgressCircleRangeProps): react0.JSX.Element;
|
|
932
937
|
//#endregion
|
|
933
938
|
//#region src/components/progress/anatomy/circle-track.d.ts
|
|
934
939
|
interface ProgressCircleTrackProps extends PropsWithElement<'circle'>, HTMLAttributes<'circle', 'children'> {}
|
|
935
|
-
declare function CircleTrack(props: ProgressCircleTrackProps):
|
|
940
|
+
declare function CircleTrack(props: ProgressCircleTrackProps): react0.JSX.Element;
|
|
936
941
|
//#endregion
|
|
937
942
|
//#region src/components/progress/modules/anatomy.d.ts
|
|
938
943
|
declare const Progress: typeof Root$8 & {
|
|
@@ -949,11 +954,11 @@ declare const Progress: typeof Root$8 & {
|
|
|
949
954
|
//#endregion
|
|
950
955
|
//#region src/components/rating-group/anatomy/control.d.ts
|
|
951
956
|
interface RatingGroupControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
952
|
-
declare function Control$4(props: RatingGroupControlProps):
|
|
957
|
+
declare function Control$4(props: RatingGroupControlProps): react0.JSX.Element;
|
|
953
958
|
//#endregion
|
|
954
959
|
//#region src/components/rating-group/anatomy/hidden-input.d.ts
|
|
955
960
|
interface RatingGroupHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'id' | 'dir' | 'children'> {}
|
|
956
|
-
declare function HiddenInput$3(props: RatingGroupHiddenInputProps):
|
|
961
|
+
declare function HiddenInput$3(props: RatingGroupHiddenInputProps): react0.JSX.Element;
|
|
957
962
|
//#endregion
|
|
958
963
|
//#region src/components/rating-group/anatomy/item.d.ts
|
|
959
964
|
interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HTMLAttributes<'span', 'id' | 'dir'> {
|
|
@@ -976,11 +981,11 @@ interface RatingGroupItemProps extends ItemProps$6, PropsWithElement<'span'>, HT
|
|
|
976
981
|
*/
|
|
977
982
|
full?: ReactNode;
|
|
978
983
|
}
|
|
979
|
-
declare function Item$4(props: RatingGroupItemProps):
|
|
984
|
+
declare function Item$4(props: RatingGroupItemProps): react0.JSX.Element;
|
|
980
985
|
//#endregion
|
|
981
986
|
//#region src/components/rating-group/anatomy/label.d.ts
|
|
982
987
|
interface RatingGroupLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
983
|
-
declare function Label$5(props: RatingGroupLabelProps):
|
|
988
|
+
declare function Label$5(props: RatingGroupLabelProps): react0.JSX.Element;
|
|
984
989
|
//#endregion
|
|
985
990
|
//#region src/components/rating-group/anatomy/root.d.ts
|
|
986
991
|
interface RatingGroupRootProps extends Omit<Props$12, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1013,19 +1018,19 @@ declare const RatingGroup: typeof Root$7 & {
|
|
|
1013
1018
|
//#endregion
|
|
1014
1019
|
//#region src/components/segmented-control/anatomy/control.d.ts
|
|
1015
1020
|
interface SegmentedControlControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1016
|
-
declare function Control$3(props: SegmentedControlControlProps):
|
|
1021
|
+
declare function Control$3(props: SegmentedControlControlProps): react0.JSX.Element;
|
|
1017
1022
|
//#endregion
|
|
1018
1023
|
//#region src/components/segmented-control/anatomy/indicator.d.ts
|
|
1019
1024
|
interface SegmentedControlIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1020
|
-
declare function Indicator$1(props: SegmentedControlIndicatorProps):
|
|
1025
|
+
declare function Indicator$1(props: SegmentedControlIndicatorProps): react0.JSX.Element;
|
|
1021
1026
|
//#endregion
|
|
1022
1027
|
//#region src/components/segmented-control/anatomy/item-hidden-input.d.ts
|
|
1023
1028
|
interface SegmentedControlItemHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1024
|
-
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps):
|
|
1029
|
+
declare function ItemHiddenInput(props: SegmentedControlItemHiddenInputProps): react0.JSX.Element;
|
|
1025
1030
|
//#endregion
|
|
1026
1031
|
//#region src/components/segmented-control/anatomy/item-text.d.ts
|
|
1027
1032
|
interface SegmentedControlItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1028
|
-
declare function ItemText$1(props: SegmentedControlItemTextProps):
|
|
1033
|
+
declare function ItemText$1(props: SegmentedControlItemTextProps): react0.JSX.Element;
|
|
1029
1034
|
//#endregion
|
|
1030
1035
|
//#region src/components/segmented-control/anatomy/item.d.ts
|
|
1031
1036
|
interface SegmentedControlItemProps extends ItemProps$7, PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
@@ -1033,7 +1038,7 @@ declare function Item$3(props: SegmentedControlItemProps): react_jsx_runtime0.JS
|
|
|
1033
1038
|
//#endregion
|
|
1034
1039
|
//#region src/components/segmented-control/anatomy/label.d.ts
|
|
1035
1040
|
interface SegmentedControlLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1036
|
-
declare function Label$4(props: SegmentedControlLabelProps):
|
|
1041
|
+
declare function Label$4(props: SegmentedControlLabelProps): react0.JSX.Element;
|
|
1037
1042
|
//#endregion
|
|
1038
1043
|
//#region src/components/segmented-control/modules/provider.d.ts
|
|
1039
1044
|
declare function useSegmentedControl(props?: Omit<Props$13, 'id'>): Api$13<PropTypes>;
|
|
@@ -1068,27 +1073,27 @@ declare const SegmentedControl: typeof Root$6 & {
|
|
|
1068
1073
|
//#endregion
|
|
1069
1074
|
//#region src/components/slider/anatomy/control.d.ts
|
|
1070
1075
|
interface SliderControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1071
|
-
declare function Control$2(props: SliderControlProps):
|
|
1076
|
+
declare function Control$2(props: SliderControlProps): react0.JSX.Element;
|
|
1072
1077
|
//#endregion
|
|
1073
1078
|
//#region src/components/slider/anatomy/hidden-input.d.ts
|
|
1074
1079
|
interface SliderHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1075
|
-
declare function HiddenInput$2(props: SliderHiddenInputProps):
|
|
1080
|
+
declare function HiddenInput$2(props: SliderHiddenInputProps): react0.JSX.Element;
|
|
1076
1081
|
//#endregion
|
|
1077
1082
|
//#region src/components/slider/anatomy/label.d.ts
|
|
1078
1083
|
interface SliderLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1079
|
-
declare function Label$3(props: SliderLabelProps):
|
|
1084
|
+
declare function Label$3(props: SliderLabelProps): react0.JSX.Element;
|
|
1080
1085
|
//#endregion
|
|
1081
1086
|
//#region src/components/slider/anatomy/marker-group.d.ts
|
|
1082
1087
|
interface SliderMarkerGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1083
|
-
declare function MarkerGroup(props: SliderMarkerGroupProps):
|
|
1088
|
+
declare function MarkerGroup(props: SliderMarkerGroupProps): react0.JSX.Element;
|
|
1084
1089
|
//#endregion
|
|
1085
1090
|
//#region src/components/slider/anatomy/marker.d.ts
|
|
1086
1091
|
interface SliderMarkerProps extends MarkerProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1087
|
-
declare function Marker(props: SliderMarkerProps):
|
|
1092
|
+
declare function Marker(props: SliderMarkerProps): react0.JSX.Element;
|
|
1088
1093
|
//#endregion
|
|
1089
1094
|
//#region src/components/slider/anatomy/range.d.ts
|
|
1090
1095
|
interface SliderRangeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1091
|
-
declare function Range(props: SliderRangeProps):
|
|
1096
|
+
declare function Range(props: SliderRangeProps): react0.JSX.Element;
|
|
1092
1097
|
//#endregion
|
|
1093
1098
|
//#region src/components/slider/modules/provider.d.ts
|
|
1094
1099
|
declare function useSlider(props?: Omit<Props$14, 'id'>): Api$14<PropTypes>;
|
|
@@ -1115,11 +1120,11 @@ declare function Thumb$1(props: SliderThumbProps): react_jsx_runtime0.JSX.Elemen
|
|
|
1115
1120
|
//#endregion
|
|
1116
1121
|
//#region src/components/slider/anatomy/track.d.ts
|
|
1117
1122
|
interface SliderTrackProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1118
|
-
declare function Track(props: SliderTrackProps):
|
|
1123
|
+
declare function Track(props: SliderTrackProps): react0.JSX.Element;
|
|
1119
1124
|
//#endregion
|
|
1120
1125
|
//#region src/components/slider/anatomy/value-text.d.ts
|
|
1121
1126
|
interface SliderValueTextProps extends PropsWithElement<'output'>, HTMLAttributes<'output'> {}
|
|
1122
|
-
declare function ValueText(props: SliderValueTextProps):
|
|
1127
|
+
declare function ValueText(props: SliderValueTextProps): react0.JSX.Element;
|
|
1123
1128
|
//#endregion
|
|
1124
1129
|
//#region src/components/slider/modules/anatomy.d.ts
|
|
1125
1130
|
declare const Slider: typeof SliderRoot & {
|
|
@@ -1138,15 +1143,15 @@ declare const Slider: typeof SliderRoot & {
|
|
|
1138
1143
|
//#endregion
|
|
1139
1144
|
//#region src/components/switch/anatomy/control.d.ts
|
|
1140
1145
|
interface SwitchControlProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1141
|
-
declare function Control$1(props: SwitchControlProps):
|
|
1146
|
+
declare function Control$1(props: SwitchControlProps): react0.JSX.Element;
|
|
1142
1147
|
//#endregion
|
|
1143
1148
|
//#region src/components/switch/anatomy/hidden-input.d.ts
|
|
1144
1149
|
interface SwitchHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1145
|
-
declare function HiddenInput$1(props: SwitchHiddenInputProps):
|
|
1150
|
+
declare function HiddenInput$1(props: SwitchHiddenInputProps): react0.JSX.Element;
|
|
1146
1151
|
//#endregion
|
|
1147
1152
|
//#region src/components/switch/anatomy/label.d.ts
|
|
1148
1153
|
interface SwitchLabelProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1149
|
-
declare function Label$2(props: SwitchLabelProps):
|
|
1154
|
+
declare function Label$2(props: SwitchLabelProps): react0.JSX.Element;
|
|
1150
1155
|
//#endregion
|
|
1151
1156
|
//#region src/components/switch/modules/provider.d.ts
|
|
1152
1157
|
declare function useSwitch(props?: Omit<Props$15, 'id'>): Api$15<PropTypes>;
|
|
@@ -1165,7 +1170,7 @@ declare function RootProvider$4(props: SwitchRootProviderProps): react_jsx_runti
|
|
|
1165
1170
|
//#endregion
|
|
1166
1171
|
//#region src/components/switch/anatomy/thumb.d.ts
|
|
1167
1172
|
interface SwitchThumbProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1168
|
-
declare function Thumb(props: SwitchThumbProps):
|
|
1173
|
+
declare function Thumb(props: SwitchThumbProps): react0.JSX.Element;
|
|
1169
1174
|
//#endregion
|
|
1170
1175
|
//#region src/components/switch/anatomy/root.d.ts
|
|
1171
1176
|
interface SwitchRootProps extends Omit<Props$15, 'id'>, PropsWithElement<'label'>, HTMLAttributes<'label', 'id' | 'dir'> {}
|
|
@@ -1183,15 +1188,15 @@ declare const Switch: typeof Root$5 & {
|
|
|
1183
1188
|
//#endregion
|
|
1184
1189
|
//#region src/components/tabs/anatomy/content.d.ts
|
|
1185
1190
|
interface TabsContentProps extends ContentProps, PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1186
|
-
declare function Content$1(props: TabsContentProps):
|
|
1191
|
+
declare function Content$1(props: TabsContentProps): react0.JSX.Element;
|
|
1187
1192
|
//#endregion
|
|
1188
1193
|
//#region src/components/tabs/anatomy/indicator.d.ts
|
|
1189
1194
|
interface TabsIndicatorProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'children'> {}
|
|
1190
|
-
declare function Indicator(props: TabsIndicatorProps):
|
|
1195
|
+
declare function Indicator(props: TabsIndicatorProps): react0.JSX.Element;
|
|
1191
1196
|
//#endregion
|
|
1192
1197
|
//#region src/components/tabs/anatomy/list.d.ts
|
|
1193
1198
|
interface TabsListProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {}
|
|
1194
|
-
declare function List(props: TabsListProps):
|
|
1199
|
+
declare function List(props: TabsListProps): react0.JSX.Element;
|
|
1195
1200
|
//#endregion
|
|
1196
1201
|
//#region src/components/tabs/anatomy/root.d.ts
|
|
1197
1202
|
interface TabsRootProps extends Omit<Props$16, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1214,7 +1219,7 @@ declare function RootProvider$3(props: TabsRootProviderProps): react_jsx_runtime
|
|
|
1214
1219
|
//#endregion
|
|
1215
1220
|
//#region src/components/tabs/anatomy/trigger.d.ts
|
|
1216
1221
|
interface TabsTriggerProps extends TriggerProps, PropsWithElement<'button'>, HTMLAttributes<'button', 'value'> {}
|
|
1217
|
-
declare function Trigger$1(props: TabsTriggerProps):
|
|
1222
|
+
declare function Trigger$1(props: TabsTriggerProps): react0.JSX.Element;
|
|
1218
1223
|
//#endregion
|
|
1219
1224
|
//#region src/components/tabs/modules/anatomy.d.ts
|
|
1220
1225
|
declare const Tabs: typeof Root$4 & {
|
|
@@ -1228,19 +1233,19 @@ declare const Tabs: typeof Root$4 & {
|
|
|
1228
1233
|
//#endregion
|
|
1229
1234
|
//#region src/components/tags-input/anatomy/clear-trigger.d.ts
|
|
1230
1235
|
interface TagsInputClearTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1231
|
-
declare function ClearTrigger(props: TagsInputClearTriggerProps):
|
|
1236
|
+
declare function ClearTrigger(props: TagsInputClearTriggerProps): react0.JSX.Element;
|
|
1232
1237
|
//#endregion
|
|
1233
1238
|
//#region src/components/tags-input/anatomy/control.d.ts
|
|
1234
1239
|
interface TagsInputControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1235
|
-
declare function Control(props: TagsInputControlProps):
|
|
1240
|
+
declare function Control(props: TagsInputControlProps): react0.JSX.Element;
|
|
1236
1241
|
//#endregion
|
|
1237
1242
|
//#region src/components/tags-input/anatomy/hidden-input.d.ts
|
|
1238
1243
|
interface TagsInputHiddenInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1239
|
-
declare function HiddenInput(props: TagsInputHiddenInputProps):
|
|
1244
|
+
declare function HiddenInput(props: TagsInputHiddenInputProps): react0.JSX.Element;
|
|
1240
1245
|
//#endregion
|
|
1241
1246
|
//#region src/components/tags-input/anatomy/input.d.ts
|
|
1242
1247
|
interface TagsInputInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1243
|
-
declare function Input(props: TagsInputInputProps):
|
|
1248
|
+
declare function Input(props: TagsInputInputProps): react0.JSX.Element;
|
|
1244
1249
|
//#endregion
|
|
1245
1250
|
//#region src/components/tags-input/anatomy/item.d.ts
|
|
1246
1251
|
interface TagsInputItemProps extends ItemProps$8, PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
@@ -1248,23 +1253,23 @@ declare function Item$2(props: TagsInputItemProps): react_jsx_runtime0.JSX.Eleme
|
|
|
1248
1253
|
//#endregion
|
|
1249
1254
|
//#region src/components/tags-input/anatomy/item-delete-trigger.d.ts
|
|
1250
1255
|
interface TagsInputItemDeleteTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1251
|
-
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps):
|
|
1256
|
+
declare function ItemDeleteTrigger(props: TagsInputItemDeleteTriggerProps): react0.JSX.Element;
|
|
1252
1257
|
//#endregion
|
|
1253
1258
|
//#region src/components/tags-input/anatomy/item-input.d.ts
|
|
1254
1259
|
interface TagsInputItemInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> {}
|
|
1255
|
-
declare function ItemInput(props: TagsInputItemInputProps):
|
|
1260
|
+
declare function ItemInput(props: TagsInputItemInputProps): react0.JSX.Element;
|
|
1256
1261
|
//#endregion
|
|
1257
1262
|
//#region src/components/tags-input/anatomy/item-preview.d.ts
|
|
1258
1263
|
interface TagsInputItemPreviewProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1259
|
-
declare function ItemPreview(props: TagsInputItemPreviewProps):
|
|
1264
|
+
declare function ItemPreview(props: TagsInputItemPreviewProps): react0.JSX.Element;
|
|
1260
1265
|
//#endregion
|
|
1261
1266
|
//#region src/components/tags-input/anatomy/item-text.d.ts
|
|
1262
1267
|
interface TagsInputItemTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1263
|
-
declare function ItemText(props: TagsInputItemTextProps):
|
|
1268
|
+
declare function ItemText(props: TagsInputItemTextProps): react0.JSX.Element;
|
|
1264
1269
|
//#endregion
|
|
1265
1270
|
//#region src/components/tags-input/anatomy/label.d.ts
|
|
1266
1271
|
interface TagsInputLabelProps extends PropsWithElement<'label'>, HTMLAttributes<'label'> {}
|
|
1267
|
-
declare function Label$1(props: TagsInputLabelProps):
|
|
1272
|
+
declare function Label$1(props: TagsInputLabelProps): react0.JSX.Element;
|
|
1268
1273
|
//#endregion
|
|
1269
1274
|
//#region src/components/tags-input/anatomy/root.d.ts
|
|
1270
1275
|
interface TagsInputRootProps extends Omit<Props$17, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1303,11 +1308,11 @@ declare const TagsInput: typeof Root$3 & {
|
|
|
1303
1308
|
//#endregion
|
|
1304
1309
|
//#region src/components/toast/anatomy/close-trigger.d.ts
|
|
1305
1310
|
interface ToastCloseTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1306
|
-
declare function CloseTrigger(props: ToastCloseTriggerProps):
|
|
1311
|
+
declare function CloseTrigger(props: ToastCloseTriggerProps): react0.JSX.Element;
|
|
1307
1312
|
//#endregion
|
|
1308
1313
|
//#region src/components/toast/anatomy/description.d.ts
|
|
1309
1314
|
interface ToastDescriptionProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1310
|
-
declare function Description(props: ToastDescriptionProps):
|
|
1315
|
+
declare function Description(props: ToastDescriptionProps): react0.JSX.Element;
|
|
1311
1316
|
//#endregion
|
|
1312
1317
|
//#region src/components/toast/anatomy/group.d.ts
|
|
1313
1318
|
interface ToastGroupProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'children'> {
|
|
@@ -1318,7 +1323,7 @@ declare function Group(props: ToastGroupProps): react_jsx_runtime0.JSX.Element;
|
|
|
1318
1323
|
//#endregion
|
|
1319
1324
|
//#region src/components/toast/anatomy/message.d.ts
|
|
1320
1325
|
interface ToastMessageProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1321
|
-
declare function Message(props: ToastMessageProps):
|
|
1326
|
+
declare function Message(props: ToastMessageProps): react0.JSX.Element;
|
|
1322
1327
|
//#endregion
|
|
1323
1328
|
//#region src/components/toast/anatomy/root.d.ts
|
|
1324
1329
|
interface ToastRootProps extends PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir'> {
|
|
@@ -1334,11 +1339,11 @@ declare function RootContext$3(props: ToastRootContextProps): ReactNode;
|
|
|
1334
1339
|
//#endregion
|
|
1335
1340
|
//#region src/components/toast/anatomy/title.d.ts
|
|
1336
1341
|
interface ToastTitleProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1337
|
-
declare function Title(props: ToastTitleProps):
|
|
1342
|
+
declare function Title(props: ToastTitleProps): react0.JSX.Element;
|
|
1338
1343
|
//#endregion
|
|
1339
1344
|
//#region src/components/toast/anatomy/action-trigger.d.ts
|
|
1340
1345
|
interface ToastActionTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1341
|
-
declare function ActionTrigger(props: ToastActionTriggerProps):
|
|
1346
|
+
declare function ActionTrigger(props: ToastActionTriggerProps): react0.JSX.Element;
|
|
1342
1347
|
//#endregion
|
|
1343
1348
|
//#region src/components/toast/modules/anatomy.d.ts
|
|
1344
1349
|
declare const Toast: typeof Root$2 & {
|
|
@@ -1353,7 +1358,7 @@ declare const Toast: typeof Root$2 & {
|
|
|
1353
1358
|
//#endregion
|
|
1354
1359
|
//#region src/components/toggle-group/anatomy/item.d.ts
|
|
1355
1360
|
interface ToggleGroupItemProps extends ItemProps$9, PropsWithElement<'button'>, HTMLAttributes<'button', 'value' | 'disabled'> {}
|
|
1356
|
-
declare function Item$1(props: ToggleGroupItemProps):
|
|
1361
|
+
declare function Item$1(props: ToggleGroupItemProps): react0.JSX.Element;
|
|
1357
1362
|
//#endregion
|
|
1358
1363
|
//#region src/components/toggle-group/anatomy/root.d.ts
|
|
1359
1364
|
interface ToggleGroupRootProps extends Omit<Props$19, 'id'>, PropsWithElement<'div'>, HTMLAttributes<'div', 'id' | 'dir' | 'defaultValue'> {}
|
|
@@ -1383,15 +1388,15 @@ declare const ToggleGroup: typeof ToggleGroupRoot & {
|
|
|
1383
1388
|
//#endregion
|
|
1384
1389
|
//#region src/components/tooltip/anatomy/arrow.d.ts
|
|
1385
1390
|
interface TooltipArrowProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1386
|
-
declare function Arrow(props: TooltipArrowProps):
|
|
1391
|
+
declare function Arrow(props: TooltipArrowProps): react0.JSX.Element;
|
|
1387
1392
|
//#endregion
|
|
1388
1393
|
//#region src/components/tooltip/anatomy/arrow-tip.d.ts
|
|
1389
1394
|
interface TooltipArrowTipProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1390
|
-
declare function ArrowTip(props: TooltipArrowTipProps):
|
|
1395
|
+
declare function ArrowTip(props: TooltipArrowTipProps): react0.JSX.Element;
|
|
1391
1396
|
//#endregion
|
|
1392
1397
|
//#region src/components/tooltip/anatomy/content.d.ts
|
|
1393
1398
|
interface TooltipContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1394
|
-
declare function Content(props: TooltipContentProps):
|
|
1399
|
+
declare function Content(props: TooltipContentProps): react0.JSX.Element;
|
|
1395
1400
|
//#endregion
|
|
1396
1401
|
//#region src/components/tooltip/anatomy/positioner.d.ts
|
|
1397
1402
|
interface TooltipPositionerProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
@@ -1418,7 +1423,7 @@ declare function RootProvider$1(props: TooltipRootProviderProps): react_jsx_runt
|
|
|
1418
1423
|
//#endregion
|
|
1419
1424
|
//#region src/components/tooltip/anatomy/trigger.d.ts
|
|
1420
1425
|
interface TooltipTriggerProps extends PropsWithElement<'button'>, HTMLAttributes<'button'> {}
|
|
1421
|
-
declare function Trigger(props: TooltipTriggerProps):
|
|
1426
|
+
declare function Trigger(props: TooltipTriggerProps): react0.JSX.Element;
|
|
1422
1427
|
//#endregion
|
|
1423
1428
|
//#region src/components/tooltip/modules/anatomy.d.ts
|
|
1424
1429
|
declare const Tooltip: typeof Root$1 & {
|
|
@@ -1433,31 +1438,31 @@ declare const Tooltip: typeof Root$1 & {
|
|
|
1433
1438
|
//#endregion
|
|
1434
1439
|
//#region src/components/tree-view/anatomy/branch-content.d.ts
|
|
1435
1440
|
interface TreeViewBranchContentProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1436
|
-
declare function BranchContent(props: TreeViewBranchContentProps):
|
|
1441
|
+
declare function BranchContent(props: TreeViewBranchContentProps): react0.JSX.Element;
|
|
1437
1442
|
//#endregion
|
|
1438
1443
|
//#region src/components/tree-view/anatomy/branch-control.d.ts
|
|
1439
1444
|
interface TreeViewBranchControlProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1440
|
-
declare function BranchControl(props: TreeViewBranchControlProps):
|
|
1445
|
+
declare function BranchControl(props: TreeViewBranchControlProps): react0.JSX.Element;
|
|
1441
1446
|
//#endregion
|
|
1442
1447
|
//#region src/components/tree-view/anatomy/branch-indent-guide.d.ts
|
|
1443
1448
|
interface TreeViewBranchIndentGuideProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1444
|
-
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps):
|
|
1449
|
+
declare function BranchIndentGuide(props: TreeViewBranchIndentGuideProps): react0.JSX.Element;
|
|
1445
1450
|
//#endregion
|
|
1446
1451
|
//#region src/components/tree-view/anatomy/branch-indicator.d.ts
|
|
1447
1452
|
interface TreeViewBranchIndicatorProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1448
|
-
declare function BranchIndicator(props: TreeViewBranchIndicatorProps):
|
|
1453
|
+
declare function BranchIndicator(props: TreeViewBranchIndicatorProps): react0.JSX.Element;
|
|
1449
1454
|
//#endregion
|
|
1450
1455
|
//#region src/components/tree-view/anatomy/branch-text.d.ts
|
|
1451
1456
|
interface TreeViewBranchTextProps extends PropsWithElement<'span'>, HTMLAttributes<'span'> {}
|
|
1452
|
-
declare function BranchText(props: TreeViewBranchTextProps):
|
|
1457
|
+
declare function BranchText(props: TreeViewBranchTextProps): react0.JSX.Element;
|
|
1453
1458
|
//#endregion
|
|
1454
1459
|
//#region src/components/tree-view/anatomy/branch.d.ts
|
|
1455
1460
|
interface TreeViewBranchProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1456
|
-
declare function Branch(props: TreeViewBranchProps):
|
|
1461
|
+
declare function Branch(props: TreeViewBranchProps): react0.JSX.Element;
|
|
1457
1462
|
//#endregion
|
|
1458
1463
|
//#region src/components/tree-view/anatomy/item.d.ts
|
|
1459
1464
|
interface TreeViewItemProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1460
|
-
declare function Item(props: TreeViewItemProps):
|
|
1465
|
+
declare function Item(props: TreeViewItemProps): react0.JSX.Element;
|
|
1461
1466
|
//#endregion
|
|
1462
1467
|
//#region src/components/tree-view/anatomy/label.d.ts
|
|
1463
1468
|
interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'> {
|
|
@@ -1503,7 +1508,7 @@ declare function Root<T extends TreeNode = TreeNode>(props: TreeViewRootProps<T>
|
|
|
1503
1508
|
//#endregion
|
|
1504
1509
|
//#region src/components/tree-view/anatomy/tree.d.ts
|
|
1505
1510
|
interface TreeViewTreeProps extends PropsWithElement<'div'>, HTMLAttributes<'div'> {}
|
|
1506
|
-
declare function Tree(props: TreeViewTreeProps):
|
|
1511
|
+
declare function Tree(props: TreeViewTreeProps): react0.JSX.Element;
|
|
1507
1512
|
//#endregion
|
|
1508
1513
|
//#region src/components/tree-view/modules/anatomy.d.ts
|
|
1509
1514
|
declare const TreeView: typeof Root & {
|
|
@@ -1525,5 +1530,4 @@ declare const TreeView: typeof Root & {
|
|
|
1525
1530
|
//#region src/hooks/use-list-collection.d.ts
|
|
1526
1531
|
declare function useListCollection<T extends CollectionItem = CollectionItem>(options: CollectionOptions<T>): ListCollection<T>;
|
|
1527
1532
|
//#endregion
|
|
1528
|
-
export { Accordion, type AccordionItemContentProps, type AccordionItemIndicatorProps, type AccordionItemProps, type AccordionItemTriggerProps, type AccordionRootContextProps, type AccordionRootProps, type AccordionRootProviderProps, AppBar, type AppBarHeadlineProps, type AppBarLeadProps, type AppBarRootProps, type AppBarToolbarProps, type AppBarTrailProps, Avatar, type AvatarFallbackProps, type AvatarImageProps, type AvatarRootContextProps, type AvatarRootProps, type AvatarRootProviderProps, Collapsible, type CollapsibleContentProps, type CollapsibleIndicatorProps, type CollapsibleRootContextProps, type CollapsibleRootProps, type CollapsibleRootProviderProps, type CollapsibleTriggerProps, Combobox, type ComboboxContentProps, type ComboboxControlProps, type ComboboxInputProps, type ComboboxItemGroupLabelProps, type ComboboxItemGroupProps, type ComboboxItemIndicatorProps, type ComboboxItemProps, type ComboboxItemTextProps, type ComboboxLabelProps, type ComboboxPositionerProps, type ComboboxRootContextProps, type ComboboxRootProps, type ComboboxRootProviderProps, type ComboboxTriggerProps, DatePicker, type DatePickerContentProps, type DatePickerControlProps, type DatePickerInputProps, type DatePickerLabelProps, type DatePickerMonthSelectProps, type DatePickerNextTriggerProps, type DatePickerPositionerProps, type DatePickerPresetTriggerProps, type DatePickerPrevTriggerProps, type DatePickerRangeTextProps, type DatePickerRootContextProps, type DatePickerRootProps, type DatePickerRootProviderProps, type DatePickerTableBodyProps, type DatePickerTableCellProps, type DatePickerTableCellTriggerProps, type DatePickerTableHeadProps, type DatePickerTableHeaderProps, type DatePickerTableProps, type DatePickerTableRowProps, type DatePickerTriggerProps, type DatePickerViewControlProps, type DatePickerViewProps, type DatePickerViewTriggerProps, type DatePickerYearSelectProps, type DateValue, Dialog, type DialogBackdropProps, type DialogCloseTriggerProps, type DialogContentProps, type DialogDescriptionProps, type DialogPositionerProps, type DialogRootContextProps, type DialogRootProps, type DialogRootProviderProps, type DialogTitleProps, type DialogTriggerProps, FileUpload, type FileUploadDropzoneProps, type FileUploadHiddenInputProps, type FileUploadItemDeleteTriggerProps, type FileUploadItemGroupProps, type FileUploadItemNameProps, type FileUploadItemProps, type FileUploadItemSizeTextProps, type FileUploadLabelProps, type FileUploadRootContextProps, type FileUploadRootProps, type FileUploadRootProviderProps, type FileUploadTriggerProps, Listbox, type ListboxContentProps, type ListboxInputProps, type ListboxItemGroupLabelProps, type ListboxItemGroupProps, type ListboxItemIndicatorProps, type ListboxItemProps, type ListboxItemTextProps, type ListboxLabelProps, type ListboxRootContextProps, type ListboxRootProps, type ListboxRootProviderProps, Menu, type MenuArrowProps, type MenuArrowTipProps, type MenuContentProps, type MenuContextTriggerProps, type MenuIndicatorProps, type MenuItemGroupLabelProps, type MenuItemGroupProps, type MenuItemIndicatorProps, type MenuItemProps, type MenuItemTextProps, type MenuOptionItemProps, type MenuPositionerProps, type MenuRootContextProps, type MenuRootProps, type MenuRootProviderProps, type MenuSeparatorProps, type MenuTriggerItemProps, type MenuTriggerProps, Navigation, type NavigationContentProps, type NavigationFooterProps, type NavigationGroupProps, type NavigationHeaderProps, type NavigationLabelProps, type NavigationMenuProps, type NavigationRootProps, Pagination, type PaginationEllipsisProps, type PaginationFirstTriggerProps, type PaginationItemProps, type PaginationLastTriggerProps, type PaginationNextTriggerProps, type PaginationPrevTriggerProps, type PaginationRootContextProps, type PaginationRootProps, type PaginationRootProviderProps, Popover, type PopoverArrowProps, type PopoverArrowTipProps, type PopoverCloseTriggerProps, type PopoverContentProps, type PopoverDescriptionProps, type PopoverPositionerProps, type PopoverRootContextProps, type PopoverRootProps, type PopoverRootProviderProps, type PopoverTitleProps, type PopoverTriggerProps, Portal, type PortalRootProps, Progress, type ProgressCircleProps, type ProgressCircleRangeProps, type ProgressCircleTrackProps, type ProgressLabelProps, type ProgressRangeProps, type ProgressRootContextProps, type ProgressRootProps, type ProgressRootProviderProps, type ProgressTrackProps, type ProgressValueTextProps, RatingGroup, type RatingGroupControlProps, type RatingGroupHiddenInputProps, type RatingGroupItemProps, type RatingGroupLabelProps, type RatingGroupRootContextProps, type RatingGroupRootProps, type RatingGroupRootProviderProps, SegmentedControl, type SegmentedControlControlProps, type SegmentedControlIndicatorProps, type SegmentedControlItemHiddenInputProps, type SegmentedControlItemProps, type SegmentedControlItemTextProps, type SegmentedControlLabelProps, type SegmentedControlRootContextProps, type SegmentedControlRootProps, type SegmentedControlRootProviderProps, Slider, type SliderControlProps, type SliderHiddenInputProps, type SliderLabelProps, type SliderMarkerGroupProps, type SliderMarkerProps, type SliderRangeProps, type SliderRootContextProps, type SliderRootProps, type SliderRootProviderProps, type SliderThumbProps, type SliderTrackProps, type SliderValueTextProps, Switch, type SwitchControlProps, type SwitchHiddenInputProps, type SwitchLabelProps, type SwitchRootContextProps, type SwitchRootProps, type SwitchRootProviderProps, type SwitchThumbProps, Tabs, type TabsContentProps, type TabsIndicatorProps, type TabsListProps, type TabsRootContextProps, type TabsRootProps, type TabsRootProviderProps, type TabsTriggerProps, TagsInput, type TagsInputClearTriggerProps, type TagsInputControlProps, type TagsInputHiddenInputProps, type TagsInputInputProps, type TagsInputItemDeleteTriggerProps, type TagsInputItemInputProps, type TagsInputItemPreviewProps, type TagsInputItemProps, type TagsInputItemTextProps, type TagsInputLabelProps, type TagsInputRootContextProps, type TagsInputRootProps, type TagsInputRootProviderProps, Toast, type ToastActionTriggerProps, type ToastCloseTriggerProps, type ToastDescriptionProps, type ToastGroupProps, type ToastMessageProps, type ToastRootContextProps, type ToastRootProps, type ToastTitleProps, ToggleGroup, type ToggleGroupItemProps, type ToggleGroupRootContextProps, type ToggleGroupRootProps, type ToggleGroupRootProviderProps, Tooltip, type TooltipArrowProps, type TooltipArrowTipProps, type TooltipContentProps, type TooltipPositionerProps, type TooltipRootContextProps, type TooltipRootProps, type TooltipRootProviderProps, type TooltipTriggerProps, TreeView, type TreeViewBranchContentProps, type TreeViewBranchControlProps, type TreeViewBranchIndentGuideProps, type TreeViewBranchIndicatorProps, type TreeViewBranchProps, type TreeViewBranchTextProps, type TreeViewItemProps, type TreeViewLabelProps, type TreeViewNodeContextProps, type TreeViewNodeProviderProps, type TreeViewRootContextProps, type TreeViewRootProps, type TreeViewRootProviderProps, type TreeViewTreeProps, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useListCollection, useListbox, useMenu, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
|
1529
|
-
//# sourceMappingURL=index.d.mts.map
|
|
1533
|
+
export { Accordion, type AccordionItemContentProps, type AccordionItemIndicatorProps, type AccordionItemProps, type AccordionItemTriggerProps, type AccordionRootContextProps, type AccordionRootProps, type AccordionRootProviderProps, AppBar, type AppBarHeadlineProps, type AppBarLeadProps, type AppBarRootProps, type AppBarToolbarProps, type AppBarTrailProps, Avatar, type AvatarFallbackProps, type AvatarImageProps, type AvatarRootContextProps, type AvatarRootProps, type AvatarRootProviderProps, Collapsible, type CollapsibleContentProps, type CollapsibleIndicatorProps, type CollapsibleRootContextProps, type CollapsibleRootProps, type CollapsibleRootProviderProps, type CollapsibleTriggerProps, Combobox, type ComboboxClearTriggerProps, type ComboboxContentProps, type ComboboxControlProps, type ComboboxInputProps, type ComboboxItemGroupLabelProps, type ComboboxItemGroupProps, type ComboboxItemIndicatorProps, type ComboboxItemProps, type ComboboxItemTextProps, type ComboboxLabelProps, type ComboboxPositionerProps, type ComboboxRootContextProps, type ComboboxRootProps, type ComboboxRootProviderProps, type ComboboxTriggerProps, DatePicker, type DatePickerContentProps, type DatePickerControlProps, type DatePickerInputProps, type DatePickerLabelProps, type DatePickerMonthSelectProps, type DatePickerNextTriggerProps, type DatePickerPositionerProps, type DatePickerPresetTriggerProps, type DatePickerPrevTriggerProps, type DatePickerRangeTextProps, type DatePickerRootContextProps, type DatePickerRootProps, type DatePickerRootProviderProps, type DatePickerTableBodyProps, type DatePickerTableCellProps, type DatePickerTableCellTriggerProps, type DatePickerTableHeadProps, type DatePickerTableHeaderProps, type DatePickerTableProps, type DatePickerTableRowProps, type DatePickerTriggerProps, type DatePickerViewControlProps, type DatePickerViewProps, type DatePickerViewTriggerProps, type DatePickerYearSelectProps, type DateValue, Dialog, type DialogBackdropProps, type DialogCloseTriggerProps, type DialogContentProps, type DialogDescriptionProps, type DialogPositionerProps, type DialogRootContextProps, type DialogRootProps, type DialogRootProviderProps, type DialogTitleProps, type DialogTriggerProps, FileUpload, type FileUploadDropzoneProps, type FileUploadHiddenInputProps, type FileUploadItemDeleteTriggerProps, type FileUploadItemGroupProps, type FileUploadItemNameProps, type FileUploadItemProps, type FileUploadItemSizeTextProps, type FileUploadLabelProps, type FileUploadRootContextProps, type FileUploadRootProps, type FileUploadRootProviderProps, type FileUploadTriggerProps, Listbox, type ListboxContentProps, type ListboxInputProps, type ListboxItemGroupLabelProps, type ListboxItemGroupProps, type ListboxItemIndicatorProps, type ListboxItemProps, type ListboxItemTextProps, type ListboxLabelProps, type ListboxRootContextProps, type ListboxRootProps, type ListboxRootProviderProps, Menu, type MenuArrowProps, type MenuArrowTipProps, type MenuContentProps, type MenuContextTriggerProps, type MenuIndicatorProps, type MenuItemGroupLabelProps, type MenuItemGroupProps, type MenuItemIndicatorProps, type MenuItemProps, type MenuItemTextProps, type MenuOptionItemProps, type MenuPositionerProps, type MenuRootContextProps, type MenuRootProps, type MenuRootProviderProps, type MenuSeparatorProps, type MenuTriggerItemProps, type MenuTriggerProps, Navigation, type NavigationContentProps, type NavigationFooterProps, type NavigationGroupProps, type NavigationHeaderProps, type NavigationLabelProps, type NavigationMenuProps, type NavigationRootProps, Pagination, type PaginationEllipsisProps, type PaginationFirstTriggerProps, type PaginationItemProps, type PaginationLastTriggerProps, type PaginationNextTriggerProps, type PaginationPrevTriggerProps, type PaginationRootContextProps, type PaginationRootProps, type PaginationRootProviderProps, Popover, type PopoverArrowProps, type PopoverArrowTipProps, type PopoverCloseTriggerProps, type PopoverContentProps, type PopoverDescriptionProps, type PopoverPositionerProps, type PopoverRootContextProps, type PopoverRootProps, type PopoverRootProviderProps, type PopoverTitleProps, type PopoverTriggerProps, Portal, type PortalRootProps, Progress, type ProgressCircleProps, type ProgressCircleRangeProps, type ProgressCircleTrackProps, type ProgressLabelProps, type ProgressRangeProps, type ProgressRootContextProps, type ProgressRootProps, type ProgressRootProviderProps, type ProgressTrackProps, type ProgressValueTextProps, RatingGroup, type RatingGroupControlProps, type RatingGroupHiddenInputProps, type RatingGroupItemProps, type RatingGroupLabelProps, type RatingGroupRootContextProps, type RatingGroupRootProps, type RatingGroupRootProviderProps, SegmentedControl, type SegmentedControlControlProps, type SegmentedControlIndicatorProps, type SegmentedControlItemHiddenInputProps, type SegmentedControlItemProps, type SegmentedControlItemTextProps, type SegmentedControlLabelProps, type SegmentedControlRootContextProps, type SegmentedControlRootProps, type SegmentedControlRootProviderProps, Slider, type SliderControlProps, type SliderHiddenInputProps, type SliderLabelProps, type SliderMarkerGroupProps, type SliderMarkerProps, type SliderRangeProps, type SliderRootContextProps, type SliderRootProps, type SliderRootProviderProps, type SliderThumbProps, type SliderTrackProps, type SliderValueTextProps, Switch, type SwitchControlProps, type SwitchHiddenInputProps, type SwitchLabelProps, type SwitchRootContextProps, type SwitchRootProps, type SwitchRootProviderProps, type SwitchThumbProps, Tabs, type TabsContentProps, type TabsIndicatorProps, type TabsListProps, type TabsRootContextProps, type TabsRootProps, type TabsRootProviderProps, type TabsTriggerProps, TagsInput, type TagsInputClearTriggerProps, type TagsInputControlProps, type TagsInputHiddenInputProps, type TagsInputInputProps, type TagsInputItemDeleteTriggerProps, type TagsInputItemInputProps, type TagsInputItemPreviewProps, type TagsInputItemProps, type TagsInputItemTextProps, type TagsInputLabelProps, type TagsInputRootContextProps, type TagsInputRootProps, type TagsInputRootProviderProps, Toast, type ToastActionTriggerProps, type ToastCloseTriggerProps, type ToastDescriptionProps, type ToastGroupProps, type ToastMessageProps, type ToastRootContextProps, type ToastRootProps, type ToastTitleProps, ToggleGroup, type ToggleGroupItemProps, type ToggleGroupRootContextProps, type ToggleGroupRootProps, type ToggleGroupRootProviderProps, Tooltip, type TooltipArrowProps, type TooltipArrowTipProps, type TooltipContentProps, type TooltipPositionerProps, type TooltipRootContextProps, type TooltipRootProps, type TooltipRootProviderProps, type TooltipTriggerProps, TreeView, type TreeViewBranchContentProps, type TreeViewBranchControlProps, type TreeViewBranchIndentGuideProps, type TreeViewBranchIndicatorProps, type TreeViewBranchProps, type TreeViewBranchTextProps, type TreeViewItemProps, type TreeViewLabelProps, type TreeViewNodeContextProps, type TreeViewNodeProviderProps, type TreeViewRootContextProps, type TreeViewRootProps, type TreeViewRootProviderProps, type TreeViewTreeProps, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useListCollection, useListbox, useMenu, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
package/dist/index.mjs
CHANGED
|
@@ -399,6 +399,18 @@ const Collapsible = Object.assign(CollapsibleRoot, {
|
|
|
399
399
|
//#region src/components/combobox/modules/root-context.ts
|
|
400
400
|
const RootContext$38 = createContext$1();
|
|
401
401
|
|
|
402
|
+
//#endregion
|
|
403
|
+
//#region src/components/combobox/anatomy/clear-trigger.tsx
|
|
404
|
+
function ClearTrigger$1(props) {
|
|
405
|
+
const combobox = use(RootContext$38);
|
|
406
|
+
const { element, children, ...rest } = props;
|
|
407
|
+
const attributes = mergeProps(combobox.getClearTriggerProps(), { className: classesCombobox.clearTrigger }, rest);
|
|
408
|
+
return element ? element(attributes) : /* @__PURE__ */ jsx("button", {
|
|
409
|
+
...attributes,
|
|
410
|
+
children
|
|
411
|
+
});
|
|
412
|
+
}
|
|
413
|
+
|
|
402
414
|
//#endregion
|
|
403
415
|
//#region src/components/combobox/anatomy/content.tsx
|
|
404
416
|
function Content$7(props) {
|
|
@@ -471,10 +483,6 @@ function ItemGroup$3(props) {
|
|
|
471
483
|
});
|
|
472
484
|
}
|
|
473
485
|
|
|
474
|
-
//#endregion
|
|
475
|
-
//#region src/components/combobox/modules/item-context.ts
|
|
476
|
-
const ItemContext$5 = createContext$1();
|
|
477
|
-
|
|
478
486
|
//#endregion
|
|
479
487
|
//#region src/internal/components/check.tsx
|
|
480
488
|
function Check(props) {
|
|
@@ -495,6 +503,10 @@ function Check(props) {
|
|
|
495
503
|
});
|
|
496
504
|
}
|
|
497
505
|
|
|
506
|
+
//#endregion
|
|
507
|
+
//#region src/components/combobox/modules/item-context.ts
|
|
508
|
+
const ItemContext$5 = createContext$1();
|
|
509
|
+
|
|
498
510
|
//#endregion
|
|
499
511
|
//#region src/components/combobox/anatomy/item-indicator.tsx
|
|
500
512
|
function ItemIndicator$2(props) {
|
|
@@ -649,6 +661,7 @@ const Combobox = Object.assign(Root$16, {
|
|
|
649
661
|
Control: Control$6,
|
|
650
662
|
Input: Input$3,
|
|
651
663
|
Trigger: Trigger$7,
|
|
664
|
+
ClearTrigger: ClearTrigger$1,
|
|
652
665
|
Positioner: Positioner$5,
|
|
653
666
|
Content: Content$7,
|
|
654
667
|
ItemGroup: ItemGroup$3,
|
|
@@ -723,10 +736,6 @@ function MonthSelect(props) {
|
|
|
723
736
|
});
|
|
724
737
|
}
|
|
725
738
|
|
|
726
|
-
//#endregion
|
|
727
|
-
//#region src/components/date-picker/modules/view-context.ts
|
|
728
|
-
const ViewContext = createContext$1({ view: "day" });
|
|
729
|
-
|
|
730
739
|
//#endregion
|
|
731
740
|
//#region src/internal/components/chevron-right.tsx
|
|
732
741
|
function ChevronRight(props) {
|
|
@@ -747,6 +756,10 @@ function ChevronRight(props) {
|
|
|
747
756
|
});
|
|
748
757
|
}
|
|
749
758
|
|
|
759
|
+
//#endregion
|
|
760
|
+
//#region src/components/date-picker/modules/view-context.ts
|
|
761
|
+
const ViewContext = createContext$1({ view: "day" });
|
|
762
|
+
|
|
750
763
|
//#endregion
|
|
751
764
|
//#region src/components/date-picker/anatomy/next-trigger.tsx
|
|
752
765
|
function NextTrigger$1(props) {
|
|
@@ -3535,7 +3548,7 @@ function Root$2(props) {
|
|
|
3535
3548
|
parent: group$1
|
|
3536
3549
|
}), normalizeProps);
|
|
3537
3550
|
const attributes = mergeProps(toast.getRootProps(), { className: classesToast.root }, rest);
|
|
3538
|
-
return /* @__PURE__ */
|
|
3551
|
+
return /* @__PURE__ */ jsx(RootContext$7.Provider, {
|
|
3539
3552
|
value: toast,
|
|
3540
3553
|
children: element ? element(attributes) : /* @__PURE__ */ jsxs("div", {
|
|
3541
3554
|
...attributes,
|
|
@@ -3545,29 +3558,7 @@ function Root$2(props) {
|
|
|
3545
3558
|
/* @__PURE__ */ jsx("div", { ...toast.getGhostAfterProps() })
|
|
3546
3559
|
]
|
|
3547
3560
|
})
|
|
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
|
-
` })] });
|
|
3561
|
+
});
|
|
3571
3562
|
}
|
|
3572
3563
|
|
|
3573
3564
|
//#endregion
|
|
@@ -3995,5 +3986,4 @@ function useListCollection(options) {
|
|
|
3995
3986
|
}
|
|
3996
3987
|
|
|
3997
3988
|
//#endregion
|
|
3998
|
-
export { Accordion, AppBar, Avatar, Collapsible, Combobox, DatePicker, Dialog, FileUpload, Listbox, Menu, Navigation, Pagination, Popover, Portal, Progress, RatingGroup, SegmentedControl, Slider, Switch, Tabs, TagsInput, Toast, ToggleGroup, Tooltip, TreeView, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useListCollection, useListbox, useMenu, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
|
3999
|
-
//# sourceMappingURL=index.mjs.map
|
|
3989
|
+
export { Accordion, AppBar, Avatar, Collapsible, Combobox, DatePicker, Dialog, FileUpload, Listbox, Menu, Navigation, Pagination, Popover, Portal, Progress, RatingGroup, SegmentedControl, Slider, Switch, Tabs, TagsInput, Toast, ToggleGroup, Tooltip, TreeView, createToaster, createTreeViewCollection, parseDate, useAccordion, useAvatar, useCollapsible, useCombobox, useDatePicker, useDialog, useFileUpload, useListCollection, useListbox, useMenu, usePagination, usePopover, useProgress, useRatingGroup, useSegmentedControl, useSlider, useSwitch, useTabs, useTagsInput, useToggleGroup, useTooltip, useTreeView };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skeletonlabs/skeleton-react",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "The React package for Skeleton.",
|
|
5
5
|
"author": "endigo9740 <chris@skeletonlabs.dev>",
|
|
6
6
|
"repository": {
|
|
@@ -16,63 +16,41 @@
|
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
"!dist/**/*.map"
|
|
19
|
+
"dist"
|
|
21
20
|
],
|
|
22
21
|
"sideEffects": false,
|
|
23
22
|
"dependencies": {
|
|
24
23
|
"@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.
|
|
24
|
+
"@zag-js/accordion": "1.29.1",
|
|
25
|
+
"@zag-js/avatar": "1.29.1",
|
|
26
|
+
"@zag-js/collapsible": "1.29.1",
|
|
27
|
+
"@zag-js/collection": "1.29.1",
|
|
28
|
+
"@zag-js/combobox": "1.29.1",
|
|
29
|
+
"@zag-js/date-picker": "1.29.1",
|
|
30
|
+
"@zag-js/dialog": "1.29.1",
|
|
31
|
+
"@zag-js/file-upload": "1.29.1",
|
|
32
|
+
"@zag-js/listbox": "1.29.1",
|
|
33
|
+
"@zag-js/menu": "1.29.1",
|
|
34
|
+
"@zag-js/pagination": "1.29.1",
|
|
35
|
+
"@zag-js/popover": "1.29.1",
|
|
36
|
+
"@zag-js/progress": "1.29.1",
|
|
37
|
+
"@zag-js/radio-group": "1.29.1",
|
|
38
|
+
"@zag-js/rating-group": "1.29.1",
|
|
39
|
+
"@zag-js/react": "1.29.1",
|
|
40
|
+
"@zag-js/slider": "1.29.1",
|
|
41
|
+
"@zag-js/switch": "1.29.1",
|
|
42
|
+
"@zag-js/tabs": "1.29.1",
|
|
43
|
+
"@zag-js/tags-input": "1.29.1",
|
|
44
|
+
"@zag-js/toast": "1.29.1",
|
|
45
|
+
"@zag-js/toggle-group": "1.29.1",
|
|
46
|
+
"@zag-js/tooltip": "1.29.1",
|
|
47
|
+
"@zag-js/tree-view": "1.29.1",
|
|
48
|
+
"@skeletonlabs/skeleton-common": "4.5.1"
|
|
50
49
|
},
|
|
51
50
|
"peerDependencies": {
|
|
52
51
|
"react": "^18.0.0 || ^19.0.0",
|
|
53
52
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
54
53
|
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@testing-library/jest-dom": "6.9.1",
|
|
57
|
-
"@testing-library/react": "16.3.0",
|
|
58
|
-
"@types/react": "19.2.5",
|
|
59
|
-
"@types/react-dom": "19.2.3",
|
|
60
|
-
"@vitejs/plugin-react": "5.1.1",
|
|
61
|
-
"jsdom": "27.2.0",
|
|
62
|
-
"react": "19.2.0",
|
|
63
|
-
"react-dom": "19.2.0",
|
|
64
|
-
"tsdown": "0.16.4",
|
|
65
|
-
"typescript": "5.9.3",
|
|
66
|
-
"vite": "7.2.2",
|
|
67
|
-
"vitest": "4.0.9"
|
|
68
|
-
},
|
|
69
54
|
"license": "MIT",
|
|
70
|
-
"type": "module"
|
|
71
|
-
"scripts": {
|
|
72
|
-
"dev": "tsdown --watch",
|
|
73
|
-
"build": "tsdown",
|
|
74
|
-
"test": "vitest run",
|
|
75
|
-
"check": "tsc",
|
|
76
|
-
"sync": "pnpm build"
|
|
77
|
-
}
|
|
55
|
+
"type": "module"
|
|
78
56
|
}
|