@aircall/ds 0.9.1 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/globals.css +1 -1
- package/dist/index.d.ts +391 -295
- package/dist/index.js +548 -96
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { Accordion as Accordion$1 } from "@base-ui/react/accordion";
|
|
2
2
|
import { ClassValue } from "clsx";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime15 from "react/jsx-runtime";
|
|
4
4
|
import * as React$2 from "react";
|
|
5
5
|
import React$1 from "react";
|
|
6
6
|
import { AlertDialog as AlertDialog$1 } from "@base-ui/react/alert-dialog";
|
|
7
|
+
import { Button as Button$1 } from "@base-ui/react/button";
|
|
7
8
|
import { VariantProps } from "class-variance-authority";
|
|
8
9
|
import { Avatar as Avatar$1 } from "@base-ui/react/avatar";
|
|
9
10
|
import { useRender } from "@base-ui/react/use-render";
|
|
@@ -11,8 +12,9 @@ import { Separator as Separator$1 } from "@base-ui/react/separator";
|
|
|
11
12
|
import { DayButton, DayPicker, Locale } from "react-day-picker";
|
|
12
13
|
import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
|
|
13
14
|
import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
|
|
15
|
+
import { ScrollArea as ScrollAreaPrimitive } from "@base-ui/react/scroll-area";
|
|
14
16
|
import { Collapsible as Collapsible$1 } from "@base-ui/react/collapsible";
|
|
15
|
-
import * as
|
|
17
|
+
import * as _base_ui_react0 from "@base-ui/react";
|
|
16
18
|
import { Combobox as Combobox$1 } from "@base-ui/react";
|
|
17
19
|
import { Command as Command$1 } from "cmdk";
|
|
18
20
|
import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
|
|
@@ -20,7 +22,6 @@ import { ColumnDef, TableOptions } from "@tanstack/react-table";
|
|
|
20
22
|
import { Drawer as DrawerPrimitive } from "@base-ui/react/drawer";
|
|
21
23
|
import { Radio } from "@base-ui/react/radio";
|
|
22
24
|
import { RadioGroup as RadioGroup$1 } from "@base-ui/react/radio-group";
|
|
23
|
-
import { ScrollArea as ScrollAreaPrimitive } from "@base-ui/react/scroll-area";
|
|
24
25
|
import { Menu } from "@base-ui/react/menu";
|
|
25
26
|
import { Categories, SuggestionMode } from "emoji-picker-react";
|
|
26
27
|
import { Popover as Popover$1 } from "@base-ui/react/popover";
|
|
@@ -42,133 +43,135 @@ import { CountryCode } from "@aircall/numbers";
|
|
|
42
43
|
declare function Accordion({
|
|
43
44
|
className,
|
|
44
45
|
...props
|
|
45
|
-
}: Accordion$1.Root.Props):
|
|
46
|
+
}: Accordion$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
46
47
|
declare function AccordionItem({
|
|
47
48
|
className,
|
|
48
49
|
...props
|
|
49
|
-
}: Accordion$1.Item.Props):
|
|
50
|
+
}: Accordion$1.Item.Props): react_jsx_runtime15.JSX.Element;
|
|
50
51
|
declare function AccordionTrigger({
|
|
51
52
|
className,
|
|
52
53
|
children,
|
|
53
54
|
...props
|
|
54
|
-
}: Accordion$1.Trigger.Props):
|
|
55
|
+
}: Accordion$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
|
|
55
56
|
declare function AccordionContent({
|
|
56
57
|
className,
|
|
57
58
|
children,
|
|
58
59
|
...props
|
|
59
|
-
}: Accordion$1.Panel.Props):
|
|
60
|
+
}: Accordion$1.Panel.Props): react_jsx_runtime15.JSX.Element;
|
|
60
61
|
//#endregion
|
|
61
62
|
//#region src/components/button.d.ts
|
|
62
63
|
declare const buttonVariants: (props?: ({
|
|
63
|
-
variant?: "default" | "link" | "secondary" | "
|
|
64
|
-
size?: "
|
|
64
|
+
variant?: "default" | "link" | "secondary" | "destructive" | "ghost" | "outline" | null | undefined;
|
|
65
|
+
size?: "default" | "lg" | "sm" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
65
66
|
block?: boolean | null | undefined;
|
|
66
67
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
67
|
-
declare const Button: React$2.ForwardRefExoticComponent<Omit<
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
declare const Button: React$2.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
69
|
+
interface ButtonProps extends Button$1.Props, VariantProps<typeof buttonVariants> {
|
|
70
|
+
children?: React$2.ReactNode;
|
|
71
|
+
}
|
|
72
|
+
declare namespace Button {
|
|
73
|
+
type Props = ButtonProps;
|
|
74
|
+
}
|
|
72
75
|
//#endregion
|
|
73
76
|
//#region src/components/alert-dialog.d.ts
|
|
74
77
|
declare function AlertDialog({
|
|
75
78
|
...props
|
|
76
|
-
}: AlertDialog$1.Root.Props):
|
|
79
|
+
}: AlertDialog$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
77
80
|
declare function AlertDialogTrigger({
|
|
78
81
|
...props
|
|
79
|
-
}: AlertDialog$1.Trigger.Props):
|
|
82
|
+
}: AlertDialog$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
|
|
80
83
|
declare function AlertDialogPortal({
|
|
81
84
|
...props
|
|
82
|
-
}: AlertDialog$1.Portal.Props):
|
|
85
|
+
}: AlertDialog$1.Portal.Props): react_jsx_runtime15.JSX.Element;
|
|
83
86
|
declare function AlertDialogOverlay({
|
|
84
87
|
className,
|
|
85
88
|
...props
|
|
86
|
-
}: AlertDialog$1.Backdrop.Props):
|
|
89
|
+
}: AlertDialog$1.Backdrop.Props): react_jsx_runtime15.JSX.Element;
|
|
87
90
|
declare function AlertDialogContent({
|
|
88
91
|
className,
|
|
89
92
|
size,
|
|
90
93
|
...props
|
|
91
94
|
}: AlertDialog$1.Popup.Props & {
|
|
92
95
|
size?: "default" | "sm";
|
|
93
|
-
}):
|
|
96
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
94
97
|
declare function AlertDialogHeader({
|
|
95
98
|
className,
|
|
96
99
|
...props
|
|
97
|
-
}: React$2.ComponentProps<"div">):
|
|
100
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
98
101
|
declare function AlertDialogFooter({
|
|
99
102
|
className,
|
|
100
103
|
...props
|
|
101
|
-
}: React$2.ComponentProps<"div">):
|
|
104
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
102
105
|
declare function AlertDialogMedia({
|
|
103
106
|
className,
|
|
104
107
|
...props
|
|
105
|
-
}: React$2.ComponentProps<"div">):
|
|
108
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
106
109
|
declare function AlertDialogTitle({
|
|
107
110
|
className,
|
|
108
111
|
...props
|
|
109
|
-
}: React$2.ComponentProps<typeof AlertDialog$1.Title>):
|
|
112
|
+
}: React$2.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime15.JSX.Element;
|
|
110
113
|
declare function AlertDialogDescription({
|
|
111
114
|
className,
|
|
112
115
|
...props
|
|
113
|
-
}: React$2.ComponentProps<typeof AlertDialog$1.Description>):
|
|
116
|
+
}: React$2.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime15.JSX.Element;
|
|
114
117
|
declare function AlertDialogAction({
|
|
115
118
|
className,
|
|
116
119
|
...props
|
|
117
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
120
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
|
|
118
121
|
declare function AlertDialogCancel({
|
|
119
122
|
className,
|
|
120
123
|
variant,
|
|
121
124
|
size,
|
|
122
125
|
...props
|
|
123
|
-
}: AlertDialog$1.Close.Props & Pick<React$2.ComponentProps<typeof Button>, "variant" | "size">):
|
|
126
|
+
}: AlertDialog$1.Close.Props & Pick<React$2.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime15.JSX.Element;
|
|
124
127
|
//#endregion
|
|
125
128
|
//#region src/components/alert.d.ts
|
|
126
129
|
declare const alertVariants: (props?: ({
|
|
127
|
-
variant?: "default" | "
|
|
130
|
+
variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
|
|
128
131
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
129
132
|
type AlertProps = React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>;
|
|
130
133
|
declare function Alert({
|
|
131
134
|
className,
|
|
132
135
|
variant,
|
|
133
136
|
...props
|
|
134
|
-
}: AlertProps):
|
|
137
|
+
}: AlertProps): react_jsx_runtime15.JSX.Element;
|
|
135
138
|
declare function AlertTitle({
|
|
136
139
|
className,
|
|
137
140
|
...props
|
|
138
|
-
}: React$2.ComponentProps<'div'>):
|
|
141
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
139
142
|
declare function AlertDescription({
|
|
140
143
|
className,
|
|
141
144
|
...props
|
|
142
|
-
}: React$2.ComponentProps<'div'>):
|
|
145
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
143
146
|
declare function AlertAction({
|
|
144
147
|
className,
|
|
145
148
|
...props
|
|
146
|
-
}: React$2.ComponentProps<'div'>):
|
|
149
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
147
150
|
//#endregion
|
|
148
151
|
//#region src/components/avatar.d.ts
|
|
149
|
-
declare const Avatar: React$2.ForwardRefExoticComponent<Omit<
|
|
152
|
+
declare const Avatar: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AvatarRootProps & {
|
|
150
153
|
size?: "xs" | "sm" | "default" | "lg" | "xl";
|
|
151
154
|
}, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
152
155
|
declare function AvatarImage({
|
|
153
156
|
className,
|
|
154
157
|
...props
|
|
155
|
-
}: Avatar$1.Image.Props):
|
|
158
|
+
}: Avatar$1.Image.Props): react_jsx_runtime15.JSX.Element;
|
|
156
159
|
declare function AvatarFallback({
|
|
157
160
|
className,
|
|
158
161
|
...props
|
|
159
|
-
}: Avatar$1.Fallback.Props):
|
|
162
|
+
}: Avatar$1.Fallback.Props): react_jsx_runtime15.JSX.Element;
|
|
160
163
|
declare function AvatarBadge({
|
|
161
164
|
className,
|
|
162
165
|
...props
|
|
163
|
-
}: React$2.ComponentProps<
|
|
166
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
|
|
164
167
|
declare function AvatarGroup({
|
|
165
168
|
className,
|
|
166
169
|
...props
|
|
167
|
-
}: React$2.ComponentProps<
|
|
170
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
168
171
|
declare function AvatarGroupCount({
|
|
169
172
|
className,
|
|
170
173
|
...props
|
|
171
|
-
}: React$2.ComponentProps<
|
|
174
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
172
175
|
//#endregion
|
|
173
176
|
//#region src/components/counter-badge.d.ts
|
|
174
177
|
declare const counterBadgeVariants: (props?: ({
|
|
@@ -177,37 +180,58 @@ declare const counterBadgeVariants: (props?: ({
|
|
|
177
180
|
declare const CounterBadge: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
178
181
|
ref?: ((instance: HTMLSpanElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLSpanElement> | null | undefined;
|
|
179
182
|
} & {
|
|
180
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
183
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
|
|
181
184
|
} & VariantProps<(props?: ({
|
|
182
185
|
variant?: "default" | "secondary" | "ghost" | null | undefined;
|
|
183
186
|
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
184
187
|
//#endregion
|
|
185
188
|
//#region src/components/badge.d.ts
|
|
186
189
|
declare const badgeVariants: (props?: ({
|
|
187
|
-
|
|
188
|
-
|
|
190
|
+
size?: "default" | "lg" | null | undefined;
|
|
191
|
+
color?: "charcoal" | "red" | "green" | "blue" | "purple" | "yellow" | "pink" | null | undefined;
|
|
192
|
+
tone?: "dark" | "medium-dark" | "medium-light" | "light" | null | undefined;
|
|
189
193
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
declare
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
194
|
+
type BadgeVariants = VariantProps<typeof badgeVariants>;
|
|
195
|
+
type BadgeColor = NonNullable<BadgeVariants['color']>;
|
|
196
|
+
type BadgeTone = NonNullable<BadgeVariants['tone']>;
|
|
197
|
+
/**
|
|
198
|
+
* A standalone label badge. Read-only by default; render it as an anchor or
|
|
199
|
+
* button via `render` to make it hoverable / navigable. Never removable — for a
|
|
200
|
+
* removable token inside an input/combobox, use `Chip`.
|
|
201
|
+
*
|
|
202
|
+
* Pick a constrained DS `color` + `tone` (no freeform hex) — defaults to
|
|
203
|
+
* `charcoal` / `light` — or pass a stored hex via `legacyColor`. Icons are
|
|
204
|
+
* composed as children (auto-sized per `size`).
|
|
205
|
+
*/
|
|
206
|
+
declare const Badge: React$2.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
207
|
+
interface BadgeProps extends Omit<useRender.ComponentProps<'span'>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
208
|
+
/**
|
|
209
|
+
* A legacy hard-coded tag hex (e.g. `#0761B5`) from the old palette. When
|
|
210
|
+
* provided it is resolved to the matching `color` + `tone` and overrides
|
|
211
|
+
* them — render existing tags without migrating their stored colors.
|
|
212
|
+
* Unknown values fall back to `charcoal` / `dark`.
|
|
213
|
+
*/
|
|
214
|
+
legacyColor?: string;
|
|
215
|
+
}
|
|
216
|
+
declare namespace Badge {
|
|
217
|
+
type Props = BadgeProps;
|
|
218
|
+
}
|
|
219
|
+
declare const BadgeGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
220
|
+
declare namespace BadgeGroup {
|
|
221
|
+
type Props = React$2.ComponentProps<'div'>;
|
|
222
|
+
}
|
|
223
|
+
declare const badgeGroupCountVariants: (props?: ({
|
|
224
|
+
size?: "default" | "lg" | null | undefined;
|
|
225
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
226
|
+
declare const BadgeGroupCount: React$2.ForwardRefExoticComponent<Omit<BadgeGroupCount.Props, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
227
|
+
declare namespace BadgeGroupCount {
|
|
228
|
+
type Props = Omit<React$2.ComponentProps<typeof CounterBadge>, 'variant'> & VariantProps<typeof badgeGroupCountVariants>;
|
|
229
|
+
}
|
|
206
230
|
//#endregion
|
|
207
231
|
//#region src/components/banner.d.ts
|
|
208
232
|
declare const bannerVariants: (props?: ({
|
|
209
|
-
variant?: "default" | "
|
|
210
|
-
borderDirection?: "
|
|
233
|
+
variant?: "default" | "info" | "success" | "warning" | "error" | null | undefined;
|
|
234
|
+
borderDirection?: "bottom" | "top" | null | undefined;
|
|
211
235
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
212
236
|
type BannerProps = React$2.ComponentProps<'div'> & VariantProps<typeof bannerVariants>;
|
|
213
237
|
declare function Banner({
|
|
@@ -215,7 +239,7 @@ declare function Banner({
|
|
|
215
239
|
variant,
|
|
216
240
|
borderDirection,
|
|
217
241
|
...props
|
|
218
|
-
}: BannerProps):
|
|
242
|
+
}: BannerProps): react_jsx_runtime15.JSX.Element;
|
|
219
243
|
//#endregion
|
|
220
244
|
//#region src/components/notification-queue.d.ts
|
|
221
245
|
type NotificationPriority = 'error' | 'warning' | 'success' | 'info' | 'promotional';
|
|
@@ -223,7 +247,7 @@ declare function NotificationQueueProvider({
|
|
|
223
247
|
children
|
|
224
248
|
}: {
|
|
225
249
|
children: React$2.ReactNode;
|
|
226
|
-
}):
|
|
250
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
227
251
|
interface NotificationRenderProps {
|
|
228
252
|
/** Dismisses this notification from the queue. */
|
|
229
253
|
dismiss: () => void;
|
|
@@ -277,14 +301,14 @@ interface NotificationSlotProps {
|
|
|
277
301
|
declare function NotificationSlot({
|
|
278
302
|
slot,
|
|
279
303
|
className
|
|
280
|
-
}: NotificationSlotProps):
|
|
304
|
+
}: NotificationSlotProps): react_jsx_runtime15.JSX.Element | null;
|
|
281
305
|
//#endregion
|
|
282
306
|
//#region src/components/separator.d.ts
|
|
283
307
|
declare function Separator({
|
|
284
308
|
className,
|
|
285
309
|
orientation,
|
|
286
310
|
...props
|
|
287
|
-
}: Separator$1.Props):
|
|
311
|
+
}: Separator$1.Props): react_jsx_runtime15.JSX.Element;
|
|
288
312
|
//#endregion
|
|
289
313
|
//#region src/components/button-group.d.ts
|
|
290
314
|
declare const buttonGroupVariants: (props?: ({
|
|
@@ -294,7 +318,7 @@ declare function ButtonGroup({
|
|
|
294
318
|
className,
|
|
295
319
|
orientation,
|
|
296
320
|
...props
|
|
297
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>):
|
|
321
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime15.JSX.Element;
|
|
298
322
|
declare function ButtonGroupText({
|
|
299
323
|
className,
|
|
300
324
|
render,
|
|
@@ -304,7 +328,7 @@ declare function ButtonGroupSeparator({
|
|
|
304
328
|
className,
|
|
305
329
|
orientation,
|
|
306
330
|
...props
|
|
307
|
-
}: React.ComponentProps<typeof Separator>):
|
|
331
|
+
}: React.ComponentProps<typeof Separator>): react_jsx_runtime15.JSX.Element;
|
|
308
332
|
//#endregion
|
|
309
333
|
//#region src/components/calendar.d.ts
|
|
310
334
|
declare function Calendar({
|
|
@@ -319,7 +343,7 @@ declare function Calendar({
|
|
|
319
343
|
...props
|
|
320
344
|
}: React$2.ComponentProps<typeof DayPicker> & {
|
|
321
345
|
buttonVariant?: React$2.ComponentProps<typeof Button>['variant'];
|
|
322
|
-
}):
|
|
346
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
323
347
|
declare function CalendarDayButton({
|
|
324
348
|
className: dayClassName,
|
|
325
349
|
day,
|
|
@@ -328,37 +352,37 @@ declare function CalendarDayButton({
|
|
|
328
352
|
...props
|
|
329
353
|
}: React$2.ComponentProps<typeof DayButton> & {
|
|
330
354
|
locale?: Partial<Locale>;
|
|
331
|
-
}):
|
|
355
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
332
356
|
//#endregion
|
|
333
357
|
//#region src/components/card.d.ts
|
|
334
358
|
declare function Card({
|
|
335
359
|
className,
|
|
336
360
|
...props
|
|
337
|
-
}: React$2.ComponentProps<'div'>):
|
|
361
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
338
362
|
declare function CardHeader({
|
|
339
363
|
className,
|
|
340
364
|
...props
|
|
341
|
-
}: React$2.ComponentProps<'div'>):
|
|
365
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
342
366
|
declare function CardTitle({
|
|
343
367
|
className,
|
|
344
368
|
...props
|
|
345
|
-
}: React$2.ComponentProps<'div'>):
|
|
369
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
346
370
|
declare function CardDescription({
|
|
347
371
|
className,
|
|
348
372
|
...props
|
|
349
|
-
}: React$2.ComponentProps<'div'>):
|
|
373
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
350
374
|
declare function CardAction({
|
|
351
375
|
className,
|
|
352
376
|
...props
|
|
353
|
-
}: React$2.ComponentProps<'div'>):
|
|
377
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
354
378
|
declare function CardContent({
|
|
355
379
|
className,
|
|
356
380
|
...props
|
|
357
|
-
}: React$2.ComponentProps<'div'>):
|
|
381
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
358
382
|
declare function CardFooter({
|
|
359
383
|
className,
|
|
360
384
|
...props
|
|
361
|
-
}: React$2.ComponentProps<'div'>):
|
|
385
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
362
386
|
//#endregion
|
|
363
387
|
//#region src/components/carousel.d.ts
|
|
364
388
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
@@ -379,121 +403,197 @@ declare function Carousel({
|
|
|
379
403
|
className,
|
|
380
404
|
children,
|
|
381
405
|
...props
|
|
382
|
-
}: React$2.ComponentProps<'div'> & CarouselProps):
|
|
406
|
+
}: React$2.ComponentProps<'div'> & CarouselProps): react_jsx_runtime15.JSX.Element;
|
|
383
407
|
declare function CarouselContent({
|
|
384
408
|
className,
|
|
385
409
|
...props
|
|
386
|
-
}: React$2.ComponentProps<'div'>):
|
|
410
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
387
411
|
declare function CarouselItem({
|
|
388
412
|
className,
|
|
389
413
|
...props
|
|
390
|
-
}: React$2.ComponentProps<'div'>):
|
|
414
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
391
415
|
declare function CarouselPrevious({
|
|
392
416
|
className,
|
|
393
417
|
variant,
|
|
394
418
|
size,
|
|
395
419
|
...props
|
|
396
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
420
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
|
|
397
421
|
declare function CarouselNext({
|
|
398
422
|
className,
|
|
399
423
|
variant,
|
|
400
424
|
size,
|
|
401
425
|
...props
|
|
402
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
426
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
|
|
403
427
|
//#endregion
|
|
404
428
|
//#region src/components/checkbox.d.ts
|
|
405
|
-
declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<
|
|
429
|
+
declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.CheckboxRootProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
430
|
+
//#endregion
|
|
431
|
+
//#region src/components/chip.d.ts
|
|
432
|
+
/**
|
|
433
|
+
* The trailing remove affordance for a `Chip` — a ghost icon button that
|
|
434
|
+
* inherits the chip's text color and brightens on hover. Exported so the
|
|
435
|
+
* combobox can reuse the exact treatment for its Base-UI-bound chips.
|
|
436
|
+
*/
|
|
437
|
+
declare const ChipRemove: React$2.ForwardRefExoticComponent<Omit<ChipRemoveProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
438
|
+
interface ChipRemoveProps extends Button.Props {
|
|
439
|
+
children?: React$2.ReactNode;
|
|
440
|
+
}
|
|
441
|
+
declare namespace ChipRemove {
|
|
442
|
+
type Props = ChipRemoveProps;
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* A selected-value token for inputs / comboboxes. Composes `Badge` at the
|
|
446
|
+
* fixed 24px size with a forced trailing remove (X) button. The chip body is
|
|
447
|
+
* non-interactive — only the X reacts to hover. For combobox-bound chips that
|
|
448
|
+
* must drive Base UI's selection state, see `ComboboxChip`.
|
|
449
|
+
*/
|
|
450
|
+
declare const Chip: React$2.ForwardRefExoticComponent<Omit<ChipProps, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
451
|
+
interface ChipProps extends Omit<Badge.Props, 'size' | 'render'> {
|
|
452
|
+
color?: BadgeColor;
|
|
453
|
+
tone?: BadgeTone;
|
|
454
|
+
/** AI glow — a colored border + softly pulsing drop-shadow. */
|
|
455
|
+
glow?: boolean;
|
|
456
|
+
}
|
|
457
|
+
declare namespace Chip {
|
|
458
|
+
type Props = ChipProps;
|
|
459
|
+
}
|
|
460
|
+
//#endregion
|
|
461
|
+
//#region src/components/filter.d.ts
|
|
462
|
+
/**
|
|
463
|
+
* A removable active-filter token for a filter bar / toolbar — a dark charcoal
|
|
464
|
+
* `Chip` with a trailing remove (X). Shows each applied filter above a
|
|
465
|
+
* searchable data view (table / list); clicking the X clears that filter
|
|
466
|
+
* (`onRemove`). Long values truncate with an ellipsis, capped at the Badge
|
|
467
|
+
* `max-w-36` (144px). Compose inside a `FilterGroup` with a trailing
|
|
468
|
+
* `FilterClearAllButton` (see the FilterBar story).
|
|
469
|
+
*/
|
|
470
|
+
declare const Filter: React$2.ForwardRefExoticComponent<FilterProps & React$2.RefAttributes<HTMLSpanElement>>;
|
|
471
|
+
interface FilterProps extends Pick<Chip.Props, 'className' | 'children'> {
|
|
472
|
+
/** Called when the trailing X is activated to clear this filter. */
|
|
473
|
+
onRemove: () => void;
|
|
474
|
+
/** Accessible label for the remove button. Defaults to "Remove filter". */
|
|
475
|
+
removeLabel?: string;
|
|
476
|
+
}
|
|
477
|
+
declare namespace Filter {
|
|
478
|
+
type Props = FilterProps;
|
|
479
|
+
}
|
|
480
|
+
/**
|
|
481
|
+
* Layout container for a row of `Filter` chips (and a trailing
|
|
482
|
+
* `FilterClearAllButton`). Always a single, non-wrapping row inside a
|
|
483
|
+
* horizontal `ScrollArea` (inset scroll + edge fade) — it does not wrap onto
|
|
484
|
+
* multiple lines.
|
|
485
|
+
*/
|
|
486
|
+
declare const FilterGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
487
|
+
declare namespace FilterGroup {
|
|
488
|
+
type Props = React$2.ComponentProps<'div'>;
|
|
489
|
+
}
|
|
490
|
+
/**
|
|
491
|
+
* The trailing "Clear all filters" action for a `FilterGroup` — a ghost,
|
|
492
|
+
* small `Button` with the styling pinned. Provide `onClick`; the label
|
|
493
|
+
* defaults to "Clear all filters" (pass translated `children` to override).
|
|
494
|
+
*/
|
|
495
|
+
declare const FilterClearAllButton: React$2.ForwardRefExoticComponent<Omit<FilterClearAllButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
496
|
+
interface FilterClearAllButtonProps extends Omit<Button.Props, 'variant' | 'size'> {}
|
|
497
|
+
declare namespace FilterClearAllButton {
|
|
498
|
+
type Props = FilterClearAllButtonProps;
|
|
499
|
+
}
|
|
406
500
|
//#endregion
|
|
407
501
|
//#region src/components/collapsible.d.ts
|
|
408
502
|
declare function Collapsible({
|
|
409
503
|
...props
|
|
410
|
-
}: Collapsible$1.Root.Props):
|
|
504
|
+
}: Collapsible$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
411
505
|
declare function CollapsibleTrigger({
|
|
412
506
|
...props
|
|
413
|
-
}: Collapsible$1.Trigger.Props):
|
|
507
|
+
}: Collapsible$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
|
|
414
508
|
declare function CollapsibleContent({
|
|
415
509
|
...props
|
|
416
|
-
}: Collapsible$1.Panel.Props):
|
|
510
|
+
}: Collapsible$1.Panel.Props): react_jsx_runtime15.JSX.Element;
|
|
417
511
|
//#endregion
|
|
418
512
|
//#region src/components/combobox.d.ts
|
|
419
513
|
declare const Combobox: typeof Combobox$1.Root;
|
|
420
|
-
declare function ComboboxValue(
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
declare const
|
|
514
|
+
declare function ComboboxValue(componentProps: ComboboxValue.Props): react_jsx_runtime15.JSX.Element;
|
|
515
|
+
declare namespace ComboboxValue {
|
|
516
|
+
type Props = Combobox$1.Value.Props;
|
|
517
|
+
}
|
|
518
|
+
declare const ComboboxTrigger: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteTriggerProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
519
|
+
declare namespace ComboboxTrigger {
|
|
520
|
+
type Props = Combobox$1.Trigger.Props;
|
|
521
|
+
}
|
|
522
|
+
declare namespace ComboboxClear {
|
|
523
|
+
type Props = Combobox$1.Clear.Props;
|
|
524
|
+
}
|
|
525
|
+
declare const ComboboxInput: React$2.ForwardRefExoticComponent<ComboboxInputProps & React$2.RefAttributes<HTMLDivElement>>;
|
|
526
|
+
interface ComboboxInputProps extends Omit<Combobox$1.Input.Props, 'ref'> {
|
|
425
527
|
showTrigger?: boolean;
|
|
426
528
|
showClear?: boolean;
|
|
427
|
-
}
|
|
428
|
-
declare
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
declare
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
declare
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
declare
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
declare
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
declare
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
...props
|
|
471
|
-
}: Combobox$1.Chip.Props & {
|
|
529
|
+
}
|
|
530
|
+
declare namespace ComboboxInput {
|
|
531
|
+
type Props = ComboboxInputProps;
|
|
532
|
+
}
|
|
533
|
+
declare const ComboboxContent: React$2.ForwardRefExoticComponent<Omit<ComboboxContentProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
534
|
+
interface ComboboxContentProps extends Combobox$1.Popup.Props, Pick<Combobox$1.Positioner.Props, 'side' | 'align' | 'sideOffset' | 'alignOffset' | 'anchor'> {}
|
|
535
|
+
declare namespace ComboboxContent {
|
|
536
|
+
type Props = ComboboxContentProps;
|
|
537
|
+
}
|
|
538
|
+
declare const ComboboxList: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteListProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
539
|
+
declare namespace ComboboxList {
|
|
540
|
+
type Props = Combobox$1.List.Props;
|
|
541
|
+
}
|
|
542
|
+
declare const ComboboxItem: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteItemProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
543
|
+
declare namespace ComboboxItem {
|
|
544
|
+
type Props = Combobox$1.Item.Props;
|
|
545
|
+
}
|
|
546
|
+
declare const ComboboxGroup: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
547
|
+
declare namespace ComboboxGroup {
|
|
548
|
+
type Props = Combobox$1.Group.Props;
|
|
549
|
+
}
|
|
550
|
+
declare const ComboboxLabel: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupLabelProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
551
|
+
declare namespace ComboboxLabel {
|
|
552
|
+
type Props = Combobox$1.GroupLabel.Props;
|
|
553
|
+
}
|
|
554
|
+
declare function ComboboxCollection(componentProps: ComboboxCollection.Props): react_jsx_runtime15.JSX.Element;
|
|
555
|
+
declare namespace ComboboxCollection {
|
|
556
|
+
type Props = Combobox$1.Collection.Props;
|
|
557
|
+
}
|
|
558
|
+
declare const ComboboxEmpty: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteEmptyProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
559
|
+
declare namespace ComboboxEmpty {
|
|
560
|
+
type Props = Combobox$1.Empty.Props;
|
|
561
|
+
}
|
|
562
|
+
declare const ComboboxSeparator: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.SeparatorProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
563
|
+
declare namespace ComboboxSeparator {
|
|
564
|
+
type Props = Combobox$1.Separator.Props;
|
|
565
|
+
}
|
|
566
|
+
declare const ComboboxChips: React$2.ForwardRefExoticComponent<Omit<ComboboxChips.Props, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
567
|
+
declare namespace ComboboxChips {
|
|
568
|
+
type Props = React$2.ComponentPropsWithoutRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props;
|
|
569
|
+
}
|
|
570
|
+
declare const ComboboxChip: React$2.ForwardRefExoticComponent<Omit<ComboboxChipProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
571
|
+
interface ComboboxChipProps extends Combobox$1.Chip.Props, Pick<Chip.Props, 'color' | 'tone' | 'legacyColor'> {
|
|
472
572
|
showRemove?: boolean;
|
|
473
|
-
}
|
|
474
|
-
declare
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
573
|
+
}
|
|
574
|
+
declare namespace ComboboxChip {
|
|
575
|
+
type Props = ComboboxChipProps;
|
|
576
|
+
}
|
|
577
|
+
declare const ComboboxChipsInput: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteInputProps, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
478
578
|
declare function useComboboxAnchor(): React$2.MutableRefObject<HTMLDivElement | null>;
|
|
479
579
|
//#endregion
|
|
480
580
|
//#region src/components/dialog.d.ts
|
|
481
581
|
declare function Dialog({
|
|
482
582
|
...props
|
|
483
|
-
}: Dialog$1.Root.Props):
|
|
583
|
+
}: Dialog$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
484
584
|
declare function DialogTrigger({
|
|
485
585
|
...props
|
|
486
|
-
}: Dialog$1.Trigger.Props):
|
|
586
|
+
}: Dialog$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
|
|
487
587
|
declare function DialogPortal({
|
|
488
588
|
...props
|
|
489
|
-
}: Dialog$1.Portal.Props):
|
|
589
|
+
}: Dialog$1.Portal.Props): react_jsx_runtime15.JSX.Element;
|
|
490
590
|
declare function DialogClose({
|
|
491
591
|
...props
|
|
492
|
-
}: Dialog$1.Close.Props):
|
|
592
|
+
}: Dialog$1.Close.Props): react_jsx_runtime15.JSX.Element;
|
|
493
593
|
declare function DialogOverlay({
|
|
494
594
|
className,
|
|
495
595
|
...props
|
|
496
|
-
}: Dialog$1.Backdrop.Props):
|
|
596
|
+
}: Dialog$1.Backdrop.Props): react_jsx_runtime15.JSX.Element;
|
|
497
597
|
declare function DialogContent({
|
|
498
598
|
className,
|
|
499
599
|
children,
|
|
@@ -501,11 +601,11 @@ declare function DialogContent({
|
|
|
501
601
|
...props
|
|
502
602
|
}: Dialog$1.Popup.Props & {
|
|
503
603
|
showCloseButton?: boolean;
|
|
504
|
-
}):
|
|
604
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
505
605
|
declare function DialogHeader({
|
|
506
606
|
className,
|
|
507
607
|
...props
|
|
508
|
-
}: React$2.ComponentProps<"div">):
|
|
608
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
509
609
|
declare function DialogFooter({
|
|
510
610
|
className,
|
|
511
611
|
showCloseButton,
|
|
@@ -513,21 +613,21 @@ declare function DialogFooter({
|
|
|
513
613
|
...props
|
|
514
614
|
}: React$2.ComponentProps<"div"> & {
|
|
515
615
|
showCloseButton?: boolean;
|
|
516
|
-
}):
|
|
616
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
517
617
|
declare function DialogTitle({
|
|
518
618
|
className,
|
|
519
619
|
...props
|
|
520
|
-
}: Dialog$1.Title.Props):
|
|
620
|
+
}: Dialog$1.Title.Props): react_jsx_runtime15.JSX.Element;
|
|
521
621
|
declare function DialogDescription({
|
|
522
622
|
className,
|
|
523
623
|
...props
|
|
524
|
-
}: Dialog$1.Description.Props):
|
|
624
|
+
}: Dialog$1.Description.Props): react_jsx_runtime15.JSX.Element;
|
|
525
625
|
//#endregion
|
|
526
626
|
//#region src/components/command.d.ts
|
|
527
627
|
declare function Command({
|
|
528
628
|
className,
|
|
529
629
|
...props
|
|
530
|
-
}: React$2.ComponentProps<typeof Command$1>):
|
|
630
|
+
}: React$2.ComponentProps<typeof Command$1>): react_jsx_runtime15.JSX.Element;
|
|
531
631
|
declare function CommandDialog({
|
|
532
632
|
title,
|
|
533
633
|
description,
|
|
@@ -536,34 +636,34 @@ declare function CommandDialog({
|
|
|
536
636
|
}: React$2.ComponentProps<typeof Dialog> & {
|
|
537
637
|
title?: string;
|
|
538
638
|
description?: string;
|
|
539
|
-
}):
|
|
639
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
540
640
|
declare function CommandInput({
|
|
541
641
|
className,
|
|
542
642
|
...props
|
|
543
|
-
}: React$2.ComponentProps<typeof Command$1.Input>):
|
|
643
|
+
}: React$2.ComponentProps<typeof Command$1.Input>): react_jsx_runtime15.JSX.Element;
|
|
544
644
|
declare function CommandList({
|
|
545
645
|
className,
|
|
546
646
|
...props
|
|
547
|
-
}: React$2.ComponentProps<typeof Command$1.List>):
|
|
647
|
+
}: React$2.ComponentProps<typeof Command$1.List>): react_jsx_runtime15.JSX.Element;
|
|
548
648
|
declare function CommandEmpty({
|
|
549
649
|
...props
|
|
550
|
-
}: React$2.ComponentProps<typeof Command$1.Empty>):
|
|
650
|
+
}: React$2.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime15.JSX.Element;
|
|
551
651
|
declare function CommandGroup({
|
|
552
652
|
className,
|
|
553
653
|
...props
|
|
554
|
-
}: React$2.ComponentProps<typeof Command$1.Group>):
|
|
654
|
+
}: React$2.ComponentProps<typeof Command$1.Group>): react_jsx_runtime15.JSX.Element;
|
|
555
655
|
declare function CommandSeparator({
|
|
556
656
|
className,
|
|
557
657
|
...props
|
|
558
|
-
}: React$2.ComponentProps<typeof Command$1.Separator>):
|
|
658
|
+
}: React$2.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime15.JSX.Element;
|
|
559
659
|
declare function CommandItem({
|
|
560
660
|
className,
|
|
561
661
|
...props
|
|
562
|
-
}: React$2.ComponentProps<typeof Command$1.Item>):
|
|
662
|
+
}: React$2.ComponentProps<typeof Command$1.Item>): react_jsx_runtime15.JSX.Element;
|
|
563
663
|
declare function CommandShortcut({
|
|
564
664
|
className,
|
|
565
665
|
...props
|
|
566
|
-
}: React$2.ComponentProps<'span'>):
|
|
666
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
|
|
567
667
|
//#endregion
|
|
568
668
|
//#region src/components/country-flag.d.ts
|
|
569
669
|
type FlagSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -590,7 +690,7 @@ declare function DataTable<TData, TValue>({
|
|
|
590
690
|
data,
|
|
591
691
|
tableOptions,
|
|
592
692
|
noResultsMessage
|
|
593
|
-
}: DataTableProps<TData, TValue>):
|
|
693
|
+
}: DataTableProps<TData, TValue>): react_jsx_runtime15.JSX.Element;
|
|
594
694
|
//#endregion
|
|
595
695
|
//#region src/components/drawer.d.ts
|
|
596
696
|
type DrawerPosition = 'right' | 'left' | 'top' | 'bottom';
|
|
@@ -760,13 +860,13 @@ declare function DrawerMenuRadioItem({
|
|
|
760
860
|
//#region src/components/dropdown-menu.d.ts
|
|
761
861
|
declare function DropdownMenu({
|
|
762
862
|
...props
|
|
763
|
-
}: Menu.Root.Props):
|
|
863
|
+
}: Menu.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
764
864
|
declare function DropdownMenuPortal({
|
|
765
865
|
...props
|
|
766
|
-
}: Menu.Portal.Props):
|
|
866
|
+
}: Menu.Portal.Props): react_jsx_runtime15.JSX.Element;
|
|
767
867
|
declare function DropdownMenuTrigger({
|
|
768
868
|
...props
|
|
769
|
-
}: Menu.Trigger.Props):
|
|
869
|
+
}: Menu.Trigger.Props): react_jsx_runtime15.JSX.Element;
|
|
770
870
|
declare function DropdownMenuContent({
|
|
771
871
|
align,
|
|
772
872
|
alignOffset,
|
|
@@ -777,17 +877,17 @@ declare function DropdownMenuContent({
|
|
|
777
877
|
...props
|
|
778
878
|
}: Menu.Popup.Props & Pick<Menu.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'> & {
|
|
779
879
|
container?: Menu.Portal.Props['container'];
|
|
780
|
-
}):
|
|
880
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
781
881
|
declare function DropdownMenuGroup({
|
|
782
882
|
...props
|
|
783
|
-
}: Menu.Group.Props):
|
|
883
|
+
}: Menu.Group.Props): react_jsx_runtime15.JSX.Element;
|
|
784
884
|
declare function DropdownMenuLabel({
|
|
785
885
|
className,
|
|
786
886
|
inset,
|
|
787
887
|
...props
|
|
788
888
|
}: Menu.GroupLabel.Props & {
|
|
789
889
|
inset?: boolean;
|
|
790
|
-
}):
|
|
890
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
791
891
|
declare function DropdownMenuItem({
|
|
792
892
|
className,
|
|
793
893
|
inset,
|
|
@@ -796,10 +896,10 @@ declare function DropdownMenuItem({
|
|
|
796
896
|
}: Menu.Item.Props & {
|
|
797
897
|
inset?: boolean;
|
|
798
898
|
variant?: 'default' | 'destructive';
|
|
799
|
-
}):
|
|
899
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
800
900
|
declare function DropdownMenuSub({
|
|
801
901
|
...props
|
|
802
|
-
}: Menu.SubmenuRoot.Props):
|
|
902
|
+
}: Menu.SubmenuRoot.Props): react_jsx_runtime15.JSX.Element;
|
|
803
903
|
declare function DropdownMenuSubTrigger({
|
|
804
904
|
className,
|
|
805
905
|
inset,
|
|
@@ -807,7 +907,7 @@ declare function DropdownMenuSubTrigger({
|
|
|
807
907
|
...props
|
|
808
908
|
}: Menu.SubmenuTrigger.Props & {
|
|
809
909
|
inset?: boolean;
|
|
810
|
-
}):
|
|
910
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
811
911
|
declare function DropdownMenuSubContent({
|
|
812
912
|
align,
|
|
813
913
|
alignOffset,
|
|
@@ -815,7 +915,7 @@ declare function DropdownMenuSubContent({
|
|
|
815
915
|
sideOffset,
|
|
816
916
|
className,
|
|
817
917
|
...props
|
|
818
|
-
}: React$2.ComponentProps<typeof DropdownMenuContent>):
|
|
918
|
+
}: React$2.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime15.JSX.Element;
|
|
819
919
|
declare function DropdownMenuCheckboxItem({
|
|
820
920
|
className,
|
|
821
921
|
children,
|
|
@@ -824,10 +924,10 @@ declare function DropdownMenuCheckboxItem({
|
|
|
824
924
|
...props
|
|
825
925
|
}: Menu.CheckboxItem.Props & {
|
|
826
926
|
inset?: boolean;
|
|
827
|
-
}):
|
|
927
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
828
928
|
declare function DropdownMenuRadioGroup({
|
|
829
929
|
...props
|
|
830
|
-
}: Menu.RadioGroup.Props):
|
|
930
|
+
}: Menu.RadioGroup.Props): react_jsx_runtime15.JSX.Element;
|
|
831
931
|
declare function DropdownMenuRadioItem({
|
|
832
932
|
className,
|
|
833
933
|
children,
|
|
@@ -835,30 +935,30 @@ declare function DropdownMenuRadioItem({
|
|
|
835
935
|
...props
|
|
836
936
|
}: Menu.RadioItem.Props & {
|
|
837
937
|
inset?: boolean;
|
|
838
|
-
}):
|
|
938
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
839
939
|
declare function DropdownMenuSeparator({
|
|
840
940
|
className,
|
|
841
941
|
...props
|
|
842
|
-
}: Menu.Separator.Props):
|
|
942
|
+
}: Menu.Separator.Props): react_jsx_runtime15.JSX.Element;
|
|
843
943
|
declare function DropdownMenuShortcut({
|
|
844
944
|
className,
|
|
845
945
|
...props
|
|
846
|
-
}: React$2.ComponentProps<'span'>):
|
|
946
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
|
|
847
947
|
declare function DropdownMenuAddon({
|
|
848
948
|
className,
|
|
849
949
|
...props
|
|
850
|
-
}: React$2.ComponentProps<'span'>):
|
|
950
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
|
|
851
951
|
type DropdownMenuContentProps = React$2.ComponentProps<typeof DropdownMenuContent>;
|
|
852
952
|
//#endregion
|
|
853
953
|
//#region src/components/empty.d.ts
|
|
854
954
|
declare function Empty({
|
|
855
955
|
className,
|
|
856
956
|
...props
|
|
857
|
-
}: React.ComponentProps<'div'>):
|
|
957
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
858
958
|
declare function EmptyHeader({
|
|
859
959
|
className,
|
|
860
960
|
...props
|
|
861
|
-
}: React.ComponentProps<'div'>):
|
|
961
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
862
962
|
declare const emptyMediaVariants: (props?: ({
|
|
863
963
|
variant?: "default" | "icon" | null | undefined;
|
|
864
964
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
@@ -866,19 +966,19 @@ declare function EmptyMedia({
|
|
|
866
966
|
className,
|
|
867
967
|
variant,
|
|
868
968
|
...props
|
|
869
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>):
|
|
969
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime15.JSX.Element;
|
|
870
970
|
declare function EmptyTitle({
|
|
871
971
|
className,
|
|
872
972
|
...props
|
|
873
|
-
}: React.ComponentProps<'div'>):
|
|
973
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
874
974
|
declare function EmptyDescription({
|
|
875
975
|
className,
|
|
876
976
|
...props
|
|
877
|
-
}: React.ComponentProps<'p'>):
|
|
977
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime15.JSX.Element;
|
|
878
978
|
declare function EmptyContent({
|
|
879
979
|
className,
|
|
880
980
|
...props
|
|
881
|
-
}: React.ComponentProps<'div'>):
|
|
981
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
882
982
|
//#endregion
|
|
883
983
|
//#region src/components/dropzone.d.ts
|
|
884
984
|
/** Error codes — same set as react-dropzone, so consumers can share translation logic. */
|
|
@@ -932,27 +1032,27 @@ declare const DropzoneContent: React$2.ForwardRefExoticComponent<Omit<DropzoneCo
|
|
|
932
1032
|
declare function DropzoneIcon({
|
|
933
1033
|
variant,
|
|
934
1034
|
...props
|
|
935
|
-
}: React$2.ComponentProps<typeof EmptyMedia>):
|
|
1035
|
+
}: React$2.ComponentProps<typeof EmptyMedia>): react_jsx_runtime15.JSX.Element;
|
|
936
1036
|
declare function DropzoneTitle({
|
|
937
1037
|
className,
|
|
938
1038
|
...props
|
|
939
|
-
}: React$2.ComponentProps<typeof EmptyTitle>):
|
|
940
|
-
declare function DropzoneDescription(props: React$2.ComponentProps<typeof EmptyDescription>):
|
|
1039
|
+
}: React$2.ComponentProps<typeof EmptyTitle>): react_jsx_runtime15.JSX.Element;
|
|
1040
|
+
declare function DropzoneDescription(props: React$2.ComponentProps<typeof EmptyDescription>): react_jsx_runtime15.JSX.Element;
|
|
941
1041
|
declare function DropzoneActions({
|
|
942
1042
|
className,
|
|
943
1043
|
...props
|
|
944
|
-
}: React$2.ComponentProps<'div'>):
|
|
1044
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
945
1045
|
/**
|
|
946
1046
|
* Opens the file picker on click. Default-renders a DS `<Button>`; pass
|
|
947
1047
|
* `render` (Base UI convention) to substitute another element.
|
|
948
1048
|
*/
|
|
949
|
-
declare const DropzoneTrigger: React$2.ForwardRefExoticComponent<Omit<useRender.ComponentProps<"button", {},
|
|
1049
|
+
declare const DropzoneTrigger: React$2.ForwardRefExoticComponent<Omit<useRender.ComponentProps<"button", {}, _base_ui_react0.HTMLProps>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
950
1050
|
type DropzoneTriggerProps = useRender.ComponentProps<'button'>;
|
|
951
1051
|
//#endregion
|
|
952
1052
|
//#region src/components/popover.d.ts
|
|
953
1053
|
declare function Popover({
|
|
954
1054
|
...props
|
|
955
|
-
}: Popover$1.Root.Props):
|
|
1055
|
+
}: Popover$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
956
1056
|
declare const PopoverTrigger: React$2.ForwardRefExoticComponent<Omit<Popover$1.Trigger.Props<unknown>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
957
1057
|
declare function PopoverContent({
|
|
958
1058
|
className,
|
|
@@ -961,19 +1061,19 @@ declare function PopoverContent({
|
|
|
961
1061
|
side,
|
|
962
1062
|
sideOffset,
|
|
963
1063
|
...props
|
|
964
|
-
}: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'>):
|
|
1064
|
+
}: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime15.JSX.Element;
|
|
965
1065
|
declare function PopoverHeader({
|
|
966
1066
|
className,
|
|
967
1067
|
...props
|
|
968
|
-
}: React$2.ComponentProps<'div'>):
|
|
1068
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
969
1069
|
declare function PopoverTitle({
|
|
970
1070
|
className,
|
|
971
1071
|
...props
|
|
972
|
-
}: Popover$1.Title.Props):
|
|
1072
|
+
}: Popover$1.Title.Props): react_jsx_runtime15.JSX.Element;
|
|
973
1073
|
declare function PopoverDescription({
|
|
974
1074
|
className,
|
|
975
1075
|
...props
|
|
976
|
-
}: Popover$1.Description.Props):
|
|
1076
|
+
}: Popover$1.Description.Props): react_jsx_runtime15.JSX.Element;
|
|
977
1077
|
//#endregion
|
|
978
1078
|
//#region src/components/emoji-picker.d.ts
|
|
979
1079
|
declare const EmojiPickerCategories: {
|
|
@@ -998,7 +1098,7 @@ type EmojiPickerProps = {
|
|
|
998
1098
|
declare function EmojiPicker({
|
|
999
1099
|
onEmojiSelect,
|
|
1000
1100
|
children
|
|
1001
|
-
}: EmojiPickerProps):
|
|
1101
|
+
}: EmojiPickerProps): react_jsx_runtime15.JSX.Element;
|
|
1002
1102
|
declare const EmojiPickerTrigger: React$2.ForwardRefExoticComponent<Omit<Popover$1.Trigger.Props<unknown>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1003
1103
|
type EmojiPickerContentProps = Omit<React$2.ComponentProps<typeof PopoverContent>, 'children'> & {
|
|
1004
1104
|
searchPlaceholder?: string;
|
|
@@ -1014,14 +1114,14 @@ declare function EmojiPickerContent({
|
|
|
1014
1114
|
width,
|
|
1015
1115
|
suggestedEmojisMode,
|
|
1016
1116
|
...props
|
|
1017
|
-
}: EmojiPickerContentProps):
|
|
1117
|
+
}: EmojiPickerContentProps): react_jsx_runtime15.JSX.Element;
|
|
1018
1118
|
//#endregion
|
|
1019
1119
|
//#region src/components/fab.d.ts
|
|
1020
1120
|
declare const fabVariants: (props?: ({
|
|
1021
1121
|
variant?: "default" | "outline" | null | undefined;
|
|
1022
1122
|
size?: "lg" | "icon-lg" | null | undefined;
|
|
1023
1123
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1024
|
-
declare const FAB: React$2.ForwardRefExoticComponent<Omit<
|
|
1124
|
+
declare const FAB: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.ButtonProps & VariantProps<(props?: ({
|
|
1025
1125
|
variant?: "default" | "outline" | null | undefined;
|
|
1026
1126
|
size?: "lg" | "icon-lg" | null | undefined;
|
|
1027
1127
|
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1030,24 +1130,24 @@ declare const FAB: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.Button
|
|
|
1030
1130
|
declare function Label({
|
|
1031
1131
|
className,
|
|
1032
1132
|
...props
|
|
1033
|
-
}: React$2.ComponentProps<"label">):
|
|
1133
|
+
}: React$2.ComponentProps<"label">): react_jsx_runtime15.JSX.Element;
|
|
1034
1134
|
//#endregion
|
|
1035
1135
|
//#region src/components/field.d.ts
|
|
1036
1136
|
declare function FieldSet({
|
|
1037
1137
|
className,
|
|
1038
1138
|
...props
|
|
1039
|
-
}: React.ComponentProps<"fieldset">):
|
|
1139
|
+
}: React.ComponentProps<"fieldset">): react_jsx_runtime15.JSX.Element;
|
|
1040
1140
|
declare function FieldLegend({
|
|
1041
1141
|
className,
|
|
1042
1142
|
variant,
|
|
1043
1143
|
...props
|
|
1044
1144
|
}: React.ComponentProps<"legend"> & {
|
|
1045
1145
|
variant?: "legend" | "label";
|
|
1046
|
-
}):
|
|
1146
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1047
1147
|
declare function FieldGroup({
|
|
1048
1148
|
className,
|
|
1049
1149
|
...props
|
|
1050
|
-
}: React.ComponentProps<"div">):
|
|
1150
|
+
}: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
1051
1151
|
declare const fieldVariants: (props?: ({
|
|
1052
1152
|
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
1053
1153
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
@@ -1055,30 +1155,30 @@ declare function Field({
|
|
|
1055
1155
|
className,
|
|
1056
1156
|
orientation,
|
|
1057
1157
|
...props
|
|
1058
|
-
}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>):
|
|
1158
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime15.JSX.Element;
|
|
1059
1159
|
declare function FieldContent({
|
|
1060
1160
|
className,
|
|
1061
1161
|
...props
|
|
1062
|
-
}: React.ComponentProps<"div">):
|
|
1162
|
+
}: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
1063
1163
|
declare function FieldLabel({
|
|
1064
1164
|
className,
|
|
1065
1165
|
...props
|
|
1066
|
-
}: React.ComponentProps<typeof Label>):
|
|
1166
|
+
}: React.ComponentProps<typeof Label>): react_jsx_runtime15.JSX.Element;
|
|
1067
1167
|
declare function FieldTitle({
|
|
1068
1168
|
className,
|
|
1069
1169
|
...props
|
|
1070
|
-
}: React.ComponentProps<"div">):
|
|
1170
|
+
}: React.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
1071
1171
|
declare function FieldDescription({
|
|
1072
1172
|
className,
|
|
1073
1173
|
...props
|
|
1074
|
-
}: React.ComponentProps<"p">):
|
|
1174
|
+
}: React.ComponentProps<"p">): react_jsx_runtime15.JSX.Element;
|
|
1075
1175
|
declare function FieldSeparator({
|
|
1076
1176
|
children,
|
|
1077
1177
|
className,
|
|
1078
1178
|
...props
|
|
1079
1179
|
}: React.ComponentProps<"div"> & {
|
|
1080
1180
|
children?: React.ReactNode;
|
|
1081
|
-
}):
|
|
1181
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1082
1182
|
declare function FieldError({
|
|
1083
1183
|
className,
|
|
1084
1184
|
children,
|
|
@@ -1088,7 +1188,7 @@ declare function FieldError({
|
|
|
1088
1188
|
errors?: Array<{
|
|
1089
1189
|
message?: string;
|
|
1090
1190
|
} | undefined>;
|
|
1091
|
-
}):
|
|
1191
|
+
}): react_jsx_runtime15.JSX.Element | null;
|
|
1092
1192
|
//#endregion
|
|
1093
1193
|
//#region src/components/gauge.d.ts
|
|
1094
1194
|
interface GaugeProps extends Omit<React$2.ComponentProps<'div'>, 'children'> {
|
|
@@ -1102,7 +1202,7 @@ declare function Gauge({
|
|
|
1102
1202
|
className,
|
|
1103
1203
|
value,
|
|
1104
1204
|
...props
|
|
1105
|
-
}: GaugeProps):
|
|
1205
|
+
}: GaugeProps): react_jsx_runtime15.JSX.Element;
|
|
1106
1206
|
//#endregion
|
|
1107
1207
|
//#region src/components/input-group.d.ts
|
|
1108
1208
|
declare const InputGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
@@ -1113,23 +1213,19 @@ declare function InputGroupAddon({
|
|
|
1113
1213
|
className,
|
|
1114
1214
|
align,
|
|
1115
1215
|
...props
|
|
1116
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>):
|
|
1117
|
-
declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<
|
|
1118
|
-
variant?: "default" | "link" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
|
|
1119
|
-
size?: "sm" | "default" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
1120
|
-
block?: boolean | null | undefined;
|
|
1121
|
-
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1216
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime15.JSX.Element;
|
|
1217
|
+
declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<ButtonProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1122
1218
|
declare function InputGroupText({
|
|
1123
1219
|
className,
|
|
1124
1220
|
...props
|
|
1125
|
-
}: React$2.ComponentProps<'span'>):
|
|
1221
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
|
|
1126
1222
|
declare const InputGroupInput: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
1127
1223
|
block?: boolean | null | undefined;
|
|
1128
1224
|
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
1129
1225
|
declare function InputGroupTextarea({
|
|
1130
1226
|
className,
|
|
1131
1227
|
...props
|
|
1132
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
1228
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime15.JSX.Element;
|
|
1133
1229
|
//#endregion
|
|
1134
1230
|
//#region src/components/input-otp.d.ts
|
|
1135
1231
|
declare function InputOTP({
|
|
@@ -1138,21 +1234,21 @@ declare function InputOTP({
|
|
|
1138
1234
|
...props
|
|
1139
1235
|
}: React$2.ComponentProps<typeof OTPInput> & {
|
|
1140
1236
|
containerClassName?: string;
|
|
1141
|
-
}):
|
|
1237
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1142
1238
|
declare function InputOTPGroup({
|
|
1143
1239
|
className,
|
|
1144
1240
|
...props
|
|
1145
|
-
}: React$2.ComponentProps<'div'>):
|
|
1241
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1146
1242
|
declare function InputOTPSlot({
|
|
1147
1243
|
index,
|
|
1148
1244
|
className,
|
|
1149
1245
|
...props
|
|
1150
1246
|
}: React$2.ComponentProps<'div'> & {
|
|
1151
1247
|
index: number;
|
|
1152
|
-
}):
|
|
1248
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1153
1249
|
declare function InputOTPSeparator({
|
|
1154
1250
|
...props
|
|
1155
|
-
}: React$2.ComponentProps<'div'>):
|
|
1251
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1156
1252
|
//#endregion
|
|
1157
1253
|
//#region src/components/input.d.ts
|
|
1158
1254
|
declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
@@ -1160,21 +1256,21 @@ declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttribu
|
|
|
1160
1256
|
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
1161
1257
|
//#endregion
|
|
1162
1258
|
//#region src/components/item.d.ts
|
|
1163
|
-
interface ItemGroupProps extends React$2.ComponentProps<
|
|
1259
|
+
interface ItemGroupProps extends React$2.ComponentProps<'div'> {
|
|
1164
1260
|
stackedItems?: boolean;
|
|
1165
1261
|
}
|
|
1166
1262
|
declare const ItemGroup: React$2.ForwardRefExoticComponent<Omit<ItemGroupProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1167
1263
|
declare function ItemSeparator({
|
|
1168
1264
|
className,
|
|
1169
1265
|
...props
|
|
1170
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
1266
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime15.JSX.Element;
|
|
1171
1267
|
declare const Item: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1172
1268
|
ref?: ((instance: HTMLDivElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLDivElement> | null | undefined;
|
|
1173
1269
|
} & {
|
|
1174
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
1270
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
|
|
1175
1271
|
} & VariantProps<(props?: ({
|
|
1176
1272
|
variant?: "default" | "muted" | "outline" | null | undefined;
|
|
1177
|
-
size?: "
|
|
1273
|
+
size?: "default" | "xs" | "sm" | null | undefined;
|
|
1178
1274
|
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1179
1275
|
declare const ItemMedia: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLDivElement> & React$2.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
1180
1276
|
variant?: "default" | "image" | "icon" | null | undefined;
|
|
@@ -1194,7 +1290,7 @@ declare const List: ({
|
|
|
1194
1290
|
children,
|
|
1195
1291
|
className,
|
|
1196
1292
|
...props
|
|
1197
|
-
}: ListProps) =>
|
|
1293
|
+
}: ListProps) => react_jsx_runtime15.JSX.Element;
|
|
1198
1294
|
interface ListRowProps extends React$2.HTMLAttributes<HTMLDivElement> {
|
|
1199
1295
|
children: React$2.ReactNode;
|
|
1200
1296
|
}
|
|
@@ -1210,20 +1306,20 @@ declare const ListCol: ({
|
|
|
1210
1306
|
children,
|
|
1211
1307
|
className,
|
|
1212
1308
|
...props
|
|
1213
|
-
}: ListColProps) =>
|
|
1309
|
+
}: ListColProps) => react_jsx_runtime15.JSX.Element;
|
|
1214
1310
|
//#endregion
|
|
1215
1311
|
//#region src/components/pagination.d.ts
|
|
1216
1312
|
declare function Pagination({
|
|
1217
1313
|
className,
|
|
1218
1314
|
...props
|
|
1219
|
-
}: React$2.ComponentProps<'nav'>):
|
|
1315
|
+
}: React$2.ComponentProps<'nav'>): react_jsx_runtime15.JSX.Element;
|
|
1220
1316
|
declare function PaginationContent({
|
|
1221
1317
|
className,
|
|
1222
1318
|
...props
|
|
1223
|
-
}: React$2.ComponentProps<'ul'>):
|
|
1319
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime15.JSX.Element;
|
|
1224
1320
|
declare function PaginationItem({
|
|
1225
1321
|
...props
|
|
1226
|
-
}: React$2.ComponentProps<'li'>):
|
|
1322
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime15.JSX.Element;
|
|
1227
1323
|
type PaginationLinkProps = {
|
|
1228
1324
|
isActive?: boolean;
|
|
1229
1325
|
} & Pick<React$2.ComponentProps<typeof Button>, 'size'> & React$2.ComponentProps<'a'>;
|
|
@@ -1232,25 +1328,25 @@ declare function PaginationLink({
|
|
|
1232
1328
|
isActive,
|
|
1233
1329
|
size,
|
|
1234
1330
|
...props
|
|
1235
|
-
}: PaginationLinkProps):
|
|
1331
|
+
}: PaginationLinkProps): react_jsx_runtime15.JSX.Element;
|
|
1236
1332
|
declare function PaginationPrevious({
|
|
1237
1333
|
className,
|
|
1238
1334
|
text,
|
|
1239
1335
|
...props
|
|
1240
1336
|
}: React$2.ComponentProps<typeof PaginationLink> & {
|
|
1241
1337
|
text?: string;
|
|
1242
|
-
}):
|
|
1338
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1243
1339
|
declare function PaginationNext({
|
|
1244
1340
|
className,
|
|
1245
1341
|
text,
|
|
1246
1342
|
...props
|
|
1247
1343
|
}: React$2.ComponentProps<typeof PaginationLink> & {
|
|
1248
1344
|
text?: string;
|
|
1249
|
-
}):
|
|
1345
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1250
1346
|
declare function PaginationEllipsis({
|
|
1251
1347
|
className,
|
|
1252
1348
|
...props
|
|
1253
|
-
}: React$2.ComponentProps<'span'>):
|
|
1349
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime15.JSX.Element;
|
|
1254
1350
|
//#endregion
|
|
1255
1351
|
//#region src/components/progress.d.ts
|
|
1256
1352
|
declare function Progress({
|
|
@@ -1258,33 +1354,33 @@ declare function Progress({
|
|
|
1258
1354
|
children,
|
|
1259
1355
|
value,
|
|
1260
1356
|
...props
|
|
1261
|
-
}: Progress$1.Root.Props):
|
|
1357
|
+
}: Progress$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
1262
1358
|
declare function ProgressTrack({
|
|
1263
1359
|
className,
|
|
1264
1360
|
...props
|
|
1265
|
-
}: Progress$1.Track.Props):
|
|
1361
|
+
}: Progress$1.Track.Props): react_jsx_runtime15.JSX.Element;
|
|
1266
1362
|
declare function ProgressIndicator({
|
|
1267
1363
|
className,
|
|
1268
1364
|
...props
|
|
1269
|
-
}: Progress$1.Indicator.Props):
|
|
1365
|
+
}: Progress$1.Indicator.Props): react_jsx_runtime15.JSX.Element;
|
|
1270
1366
|
declare function ProgressLabel({
|
|
1271
1367
|
className,
|
|
1272
1368
|
...props
|
|
1273
|
-
}: Progress$1.Label.Props):
|
|
1369
|
+
}: Progress$1.Label.Props): react_jsx_runtime15.JSX.Element;
|
|
1274
1370
|
declare function ProgressValue({
|
|
1275
1371
|
className,
|
|
1276
1372
|
...props
|
|
1277
|
-
}: Progress$1.Value.Props):
|
|
1373
|
+
}: Progress$1.Value.Props): react_jsx_runtime15.JSX.Element;
|
|
1278
1374
|
//#endregion
|
|
1279
1375
|
//#region src/components/radio-group.d.ts
|
|
1280
1376
|
declare function RadioGroup({
|
|
1281
1377
|
className,
|
|
1282
1378
|
...props
|
|
1283
|
-
}: RadioGroup$1.Props):
|
|
1379
|
+
}: RadioGroup$1.Props): react_jsx_runtime15.JSX.Element;
|
|
1284
1380
|
declare function RadioGroupItem({
|
|
1285
1381
|
className,
|
|
1286
1382
|
...props
|
|
1287
|
-
}: Radio.Root.Props):
|
|
1383
|
+
}: Radio.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
1288
1384
|
//#endregion
|
|
1289
1385
|
//#region src/components/scroll-area.d.ts
|
|
1290
1386
|
declare function ScrollArea({
|
|
@@ -1305,23 +1401,23 @@ declare function ScrollBar({
|
|
|
1305
1401
|
//#endregion
|
|
1306
1402
|
//#region src/components/select.d.ts
|
|
1307
1403
|
declare const selectTriggerVariants: (props?: ({
|
|
1308
|
-
size?: "
|
|
1404
|
+
size?: "default" | "sm" | null | undefined;
|
|
1309
1405
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1310
1406
|
declare const Select: typeof Select$1.Root;
|
|
1311
1407
|
declare function SelectGroup({
|
|
1312
1408
|
className,
|
|
1313
1409
|
...props
|
|
1314
|
-
}: Select$1.Group.Props):
|
|
1410
|
+
}: Select$1.Group.Props): react_jsx_runtime15.JSX.Element;
|
|
1315
1411
|
declare function SelectValue({
|
|
1316
1412
|
className,
|
|
1317
1413
|
...props
|
|
1318
|
-
}: Select$1.Value.Props):
|
|
1414
|
+
}: Select$1.Value.Props): react_jsx_runtime15.JSX.Element;
|
|
1319
1415
|
declare function SelectTrigger({
|
|
1320
1416
|
className,
|
|
1321
1417
|
size,
|
|
1322
1418
|
children,
|
|
1323
1419
|
...props
|
|
1324
|
-
}: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>):
|
|
1420
|
+
}: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>): react_jsx_runtime15.JSX.Element;
|
|
1325
1421
|
declare function SelectContent({
|
|
1326
1422
|
className,
|
|
1327
1423
|
children,
|
|
@@ -1331,39 +1427,39 @@ declare function SelectContent({
|
|
|
1331
1427
|
alignOffset,
|
|
1332
1428
|
alignItemWithTrigger,
|
|
1333
1429
|
...props
|
|
1334
|
-
}: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset' | 'alignItemWithTrigger'>):
|
|
1430
|
+
}: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset' | 'alignItemWithTrigger'>): react_jsx_runtime15.JSX.Element;
|
|
1335
1431
|
declare function SelectLabel({
|
|
1336
1432
|
className,
|
|
1337
1433
|
...props
|
|
1338
|
-
}: Select$1.GroupLabel.Props):
|
|
1434
|
+
}: Select$1.GroupLabel.Props): react_jsx_runtime15.JSX.Element;
|
|
1339
1435
|
declare function SelectItem({
|
|
1340
1436
|
className,
|
|
1341
1437
|
children,
|
|
1342
1438
|
...props
|
|
1343
|
-
}: Select$1.Item.Props):
|
|
1439
|
+
}: Select$1.Item.Props): react_jsx_runtime15.JSX.Element;
|
|
1344
1440
|
declare function SelectSeparator({
|
|
1345
1441
|
className,
|
|
1346
1442
|
...props
|
|
1347
|
-
}: Select$1.Separator.Props):
|
|
1443
|
+
}: Select$1.Separator.Props): react_jsx_runtime15.JSX.Element;
|
|
1348
1444
|
declare function SelectScrollUpButton({
|
|
1349
1445
|
className,
|
|
1350
1446
|
...props
|
|
1351
|
-
}: React$2.ComponentProps<typeof Select$1.ScrollUpArrow>):
|
|
1447
|
+
}: React$2.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime15.JSX.Element;
|
|
1352
1448
|
declare function SelectScrollDownButton({
|
|
1353
1449
|
className,
|
|
1354
1450
|
...props
|
|
1355
|
-
}: React$2.ComponentProps<typeof Select$1.ScrollDownArrow>):
|
|
1451
|
+
}: React$2.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime15.JSX.Element;
|
|
1356
1452
|
//#endregion
|
|
1357
1453
|
//#region src/components/sheet.d.ts
|
|
1358
1454
|
declare function Sheet({
|
|
1359
1455
|
...props
|
|
1360
|
-
}: Dialog$1.Root.Props):
|
|
1456
|
+
}: Dialog$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
1361
1457
|
declare function SheetTrigger({
|
|
1362
1458
|
...props
|
|
1363
|
-
}: Dialog$1.Trigger.Props):
|
|
1459
|
+
}: Dialog$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
|
|
1364
1460
|
declare function SheetClose({
|
|
1365
1461
|
...props
|
|
1366
|
-
}: Dialog$1.Close.Props):
|
|
1462
|
+
}: Dialog$1.Close.Props): react_jsx_runtime15.JSX.Element;
|
|
1367
1463
|
declare function SheetContent({
|
|
1368
1464
|
className,
|
|
1369
1465
|
children,
|
|
@@ -1374,36 +1470,36 @@ declare function SheetContent({
|
|
|
1374
1470
|
}: Dialog$1.Popup.Props & {
|
|
1375
1471
|
side?: "top" | "right" | "bottom" | "left";
|
|
1376
1472
|
showCloseButton?: boolean;
|
|
1377
|
-
} & Pick<Dialog$1.Portal.Props, "container">):
|
|
1473
|
+
} & Pick<Dialog$1.Portal.Props, "container">): react_jsx_runtime15.JSX.Element;
|
|
1378
1474
|
declare function SheetHeader({
|
|
1379
1475
|
className,
|
|
1380
1476
|
...props
|
|
1381
|
-
}: React$2.ComponentProps<"div">):
|
|
1477
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
1382
1478
|
declare function SheetFooter({
|
|
1383
1479
|
className,
|
|
1384
1480
|
...props
|
|
1385
|
-
}: React$2.ComponentProps<"div">):
|
|
1481
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime15.JSX.Element;
|
|
1386
1482
|
declare function SheetTitle({
|
|
1387
1483
|
className,
|
|
1388
1484
|
...props
|
|
1389
|
-
}: Dialog$1.Title.Props):
|
|
1485
|
+
}: Dialog$1.Title.Props): react_jsx_runtime15.JSX.Element;
|
|
1390
1486
|
declare function SheetDescription({
|
|
1391
1487
|
className,
|
|
1392
1488
|
...props
|
|
1393
|
-
}: Dialog$1.Description.Props):
|
|
1489
|
+
}: Dialog$1.Description.Props): react_jsx_runtime15.JSX.Element;
|
|
1394
1490
|
//#endregion
|
|
1395
1491
|
//#region src/components/tooltip.d.ts
|
|
1396
1492
|
declare function TooltipProvider({
|
|
1397
1493
|
delay,
|
|
1398
1494
|
...props
|
|
1399
|
-
}: Tooltip$1.Provider.Props):
|
|
1495
|
+
}: Tooltip$1.Provider.Props): react_jsx_runtime15.JSX.Element;
|
|
1400
1496
|
declare function Tooltip({
|
|
1401
1497
|
...props
|
|
1402
|
-
}: Tooltip$1.Root.Props):
|
|
1498
|
+
}: Tooltip$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
1403
1499
|
declare function TooltipTrigger({
|
|
1404
1500
|
...props
|
|
1405
|
-
}: Tooltip$1.Trigger.Props):
|
|
1406
|
-
declare const TooltipContent: React$2.ForwardRefExoticComponent<Omit<
|
|
1501
|
+
}: Tooltip$1.Trigger.Props): react_jsx_runtime15.JSX.Element;
|
|
1502
|
+
declare const TooltipContent: React$2.ForwardRefExoticComponent<Omit<_base_ui_react0.TooltipPopupProps & Pick<_base_ui_react0.TooltipPositionerProps, "side" | "align" | "sideOffset" | "alignOffset">, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1407
1503
|
//#endregion
|
|
1408
1504
|
//#region src/components/sidebar.d.ts
|
|
1409
1505
|
type SidebarContextProps = {
|
|
@@ -1428,7 +1524,7 @@ declare function SidebarProvider({
|
|
|
1428
1524
|
defaultOpen?: boolean;
|
|
1429
1525
|
open?: boolean;
|
|
1430
1526
|
onOpenChange?: (open: boolean) => void;
|
|
1431
|
-
}):
|
|
1527
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1432
1528
|
declare function Sidebar({
|
|
1433
1529
|
side,
|
|
1434
1530
|
variant,
|
|
@@ -1441,44 +1537,44 @@ declare function Sidebar({
|
|
|
1441
1537
|
side?: 'left' | 'right';
|
|
1442
1538
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
1443
1539
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
1444
|
-
}):
|
|
1540
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1445
1541
|
declare function SidebarTrigger({
|
|
1446
1542
|
className,
|
|
1447
1543
|
onClick,
|
|
1448
1544
|
...props
|
|
1449
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
1545
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime15.JSX.Element;
|
|
1450
1546
|
declare function SidebarRail({
|
|
1451
1547
|
className,
|
|
1452
1548
|
...props
|
|
1453
|
-
}: React$2.ComponentProps<'button'>):
|
|
1549
|
+
}: React$2.ComponentProps<'button'>): react_jsx_runtime15.JSX.Element;
|
|
1454
1550
|
declare function SidebarInset({
|
|
1455
1551
|
className,
|
|
1456
1552
|
...props
|
|
1457
|
-
}: React$2.ComponentProps<'main'>):
|
|
1553
|
+
}: React$2.ComponentProps<'main'>): react_jsx_runtime15.JSX.Element;
|
|
1458
1554
|
declare function SidebarInput({
|
|
1459
1555
|
className,
|
|
1460
1556
|
...props
|
|
1461
|
-
}: React$2.ComponentProps<typeof Input>):
|
|
1557
|
+
}: React$2.ComponentProps<typeof Input>): react_jsx_runtime15.JSX.Element;
|
|
1462
1558
|
declare function SidebarHeader({
|
|
1463
1559
|
className,
|
|
1464
1560
|
...props
|
|
1465
|
-
}: React$2.ComponentProps<'div'>):
|
|
1561
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1466
1562
|
declare function SidebarFooter({
|
|
1467
1563
|
className,
|
|
1468
1564
|
...props
|
|
1469
|
-
}: React$2.ComponentProps<'div'>):
|
|
1565
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1470
1566
|
declare function SidebarSeparator({
|
|
1471
1567
|
className,
|
|
1472
1568
|
...props
|
|
1473
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
1569
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime15.JSX.Element;
|
|
1474
1570
|
declare function SidebarContent({
|
|
1475
1571
|
className,
|
|
1476
1572
|
...props
|
|
1477
|
-
}: React$2.ComponentProps<'div'>):
|
|
1573
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1478
1574
|
declare function SidebarGroup({
|
|
1479
1575
|
className,
|
|
1480
1576
|
...props
|
|
1481
|
-
}: React$2.ComponentProps<'div'>):
|
|
1577
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1482
1578
|
declare function SidebarGroupLabel({
|
|
1483
1579
|
className,
|
|
1484
1580
|
render,
|
|
@@ -1492,37 +1588,37 @@ declare function SidebarGroupAction({
|
|
|
1492
1588
|
declare function SidebarGroupContent({
|
|
1493
1589
|
className,
|
|
1494
1590
|
...props
|
|
1495
|
-
}: React$2.ComponentProps<'div'>):
|
|
1591
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1496
1592
|
declare function SidebarMenu({
|
|
1497
1593
|
className,
|
|
1498
1594
|
...props
|
|
1499
|
-
}: React$2.ComponentProps<'ul'>):
|
|
1595
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime15.JSX.Element;
|
|
1500
1596
|
declare function SidebarMenuItem({
|
|
1501
1597
|
className,
|
|
1502
1598
|
...props
|
|
1503
|
-
}: React$2.ComponentProps<'li'>):
|
|
1599
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime15.JSX.Element;
|
|
1504
1600
|
declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
1505
1601
|
ref?: ((instance: HTMLButtonElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLButtonElement> | null | undefined;
|
|
1506
1602
|
} & {
|
|
1507
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
1603
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
|
|
1508
1604
|
} & React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1509
1605
|
isActive?: boolean;
|
|
1510
1606
|
tooltip?: string | React$2.ComponentProps<typeof TooltipContent>;
|
|
1511
1607
|
} & VariantProps<(props?: ({
|
|
1512
1608
|
variant?: "default" | "outline" | null | undefined;
|
|
1513
|
-
size?: "
|
|
1609
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
1514
1610
|
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1515
1611
|
declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
1516
1612
|
ref?: ((instance: HTMLButtonElement | null) => void | React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React$2.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React$2.RefObject<HTMLButtonElement> | null | undefined;
|
|
1517
1613
|
} & {
|
|
1518
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
1614
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react0.ComponentRenderFn<_base_ui_react0.HTMLProps, {}> | undefined;
|
|
1519
1615
|
} & React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1520
1616
|
showOnHover?: boolean;
|
|
1521
1617
|
}, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1522
1618
|
declare function SidebarMenuBadge({
|
|
1523
1619
|
className,
|
|
1524
1620
|
...props
|
|
1525
|
-
}: React$2.ComponentProps<'div'>):
|
|
1621
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1526
1622
|
declare function SidebarMenuSkeleton({
|
|
1527
1623
|
className,
|
|
1528
1624
|
showIcon,
|
|
@@ -1531,15 +1627,15 @@ declare function SidebarMenuSkeleton({
|
|
|
1531
1627
|
}: Omit<React$2.ComponentProps<'div'>, 'width'> & {
|
|
1532
1628
|
showIcon?: boolean; /** Override the randomized skeleton width (e.g. for deterministic stories). */
|
|
1533
1629
|
width?: string;
|
|
1534
|
-
}):
|
|
1630
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1535
1631
|
declare function SidebarMenuSub({
|
|
1536
1632
|
className,
|
|
1537
1633
|
...props
|
|
1538
|
-
}: React$2.ComponentProps<'ul'>):
|
|
1634
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime15.JSX.Element;
|
|
1539
1635
|
declare function SidebarMenuSubItem({
|
|
1540
1636
|
className,
|
|
1541
1637
|
...props
|
|
1542
|
-
}: React$2.ComponentProps<'li'>):
|
|
1638
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime15.JSX.Element;
|
|
1543
1639
|
declare function SidebarMenuSubButton({
|
|
1544
1640
|
render,
|
|
1545
1641
|
size,
|
|
@@ -1555,7 +1651,7 @@ declare function SidebarMenuSubButton({
|
|
|
1555
1651
|
declare function Skeleton({
|
|
1556
1652
|
className,
|
|
1557
1653
|
...props
|
|
1558
|
-
}: React.ComponentProps<
|
|
1654
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime15.JSX.Element;
|
|
1559
1655
|
//#endregion
|
|
1560
1656
|
//#region src/components/slider.d.ts
|
|
1561
1657
|
declare function Slider({
|
|
@@ -1566,29 +1662,29 @@ declare function Slider({
|
|
|
1566
1662
|
max,
|
|
1567
1663
|
orientation,
|
|
1568
1664
|
...props
|
|
1569
|
-
}: Slider$1.Root.Props):
|
|
1665
|
+
}: Slider$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
1570
1666
|
//#endregion
|
|
1571
1667
|
//#region src/components/sonner.d.ts
|
|
1572
1668
|
declare const Toaster: ({
|
|
1573
1669
|
...props
|
|
1574
|
-
}: ToasterProps) =>
|
|
1670
|
+
}: ToasterProps) => react_jsx_runtime15.JSX.Element;
|
|
1575
1671
|
//#endregion
|
|
1576
1672
|
//#region src/components/spinner.d.ts
|
|
1577
1673
|
declare const spinnerVariants: (props?: ({
|
|
1578
|
-
size?: "
|
|
1674
|
+
size?: "default" | "lg" | "sm" | "xl" | null | undefined;
|
|
1579
1675
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1580
1676
|
interface SpinnerProps extends React$2.ComponentProps<'svg'>, VariantProps<typeof spinnerVariants> {}
|
|
1581
1677
|
declare function Spinner({
|
|
1582
1678
|
className,
|
|
1583
1679
|
size,
|
|
1584
1680
|
...props
|
|
1585
|
-
}: SpinnerProps):
|
|
1681
|
+
}: SpinnerProps): react_jsx_runtime15.JSX.Element;
|
|
1586
1682
|
//#endregion
|
|
1587
1683
|
//#region src/components/switch.d.ts
|
|
1588
1684
|
declare function Switch({
|
|
1589
1685
|
className,
|
|
1590
1686
|
...props
|
|
1591
|
-
}: Switch$1.Root.Props):
|
|
1687
|
+
}: Switch$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
1592
1688
|
//#endregion
|
|
1593
1689
|
//#region src/components/table.d.ts
|
|
1594
1690
|
declare const Table: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & React$2.RefAttributes<HTMLTableElement>>;
|
|
@@ -1605,25 +1701,25 @@ declare function Tabs({
|
|
|
1605
1701
|
className,
|
|
1606
1702
|
orientation,
|
|
1607
1703
|
...props
|
|
1608
|
-
}: Tabs$1.Root.Props):
|
|
1704
|
+
}: Tabs$1.Root.Props): react_jsx_runtime15.JSX.Element;
|
|
1609
1705
|
declare function TabsList({
|
|
1610
1706
|
className,
|
|
1611
1707
|
...props
|
|
1612
|
-
}: Tabs$1.List.Props):
|
|
1708
|
+
}: Tabs$1.List.Props): react_jsx_runtime15.JSX.Element;
|
|
1613
1709
|
declare function TabsTrigger({
|
|
1614
1710
|
className,
|
|
1615
1711
|
...props
|
|
1616
|
-
}: Tabs$1.Tab.Props):
|
|
1712
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime15.JSX.Element;
|
|
1617
1713
|
declare function TabsContent({
|
|
1618
1714
|
className,
|
|
1619
1715
|
...props
|
|
1620
|
-
}: Tabs$1.Panel.Props):
|
|
1716
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime15.JSX.Element;
|
|
1621
1717
|
//#endregion
|
|
1622
1718
|
//#region src/components/textarea.d.ts
|
|
1623
1719
|
declare function Textarea({
|
|
1624
1720
|
className,
|
|
1625
1721
|
...props
|
|
1626
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
1722
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime15.JSX.Element;
|
|
1627
1723
|
//#endregion
|
|
1628
1724
|
//#region src/components/theme-provider.d.ts
|
|
1629
1725
|
type ThemeProviderProps = ThemeProviderProps$1;
|
|
@@ -1635,14 +1731,14 @@ declare function ThemeProvider({
|
|
|
1635
1731
|
//#region src/components/toggle.d.ts
|
|
1636
1732
|
declare const toggleVariants: (props?: ({
|
|
1637
1733
|
variant?: "default" | "outline" | null | undefined;
|
|
1638
|
-
size?: "
|
|
1734
|
+
size?: "default" | "lg" | "sm" | null | undefined;
|
|
1639
1735
|
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1640
1736
|
declare function Toggle({
|
|
1641
1737
|
className,
|
|
1642
1738
|
variant,
|
|
1643
1739
|
size,
|
|
1644
1740
|
...props
|
|
1645
|
-
}: Toggle$1.Props & VariantProps<typeof toggleVariants>):
|
|
1741
|
+
}: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime15.JSX.Element;
|
|
1646
1742
|
//#endregion
|
|
1647
1743
|
//#region src/components/toggle-group.d.ts
|
|
1648
1744
|
declare function ToggleGroup({
|
|
@@ -1661,14 +1757,14 @@ declare function ToggleGroup({
|
|
|
1661
1757
|
* Stretch the group to fill its container.
|
|
1662
1758
|
*/
|
|
1663
1759
|
block?: boolean;
|
|
1664
|
-
}):
|
|
1760
|
+
}): react_jsx_runtime15.JSX.Element;
|
|
1665
1761
|
declare function ToggleGroupItem({
|
|
1666
1762
|
className,
|
|
1667
1763
|
children,
|
|
1668
1764
|
variant,
|
|
1669
1765
|
size,
|
|
1670
1766
|
...props
|
|
1671
|
-
}: Toggle$1.Props & VariantProps<typeof toggleVariants>):
|
|
1767
|
+
}: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime15.JSX.Element;
|
|
1672
1768
|
//#endregion
|
|
1673
1769
|
//#region src/hooks/use-audio-gauge.d.ts
|
|
1674
1770
|
interface UseAudioGaugeOptions {
|
|
@@ -1728,4 +1824,4 @@ declare function useAudioGauge(options?: UseAudioGaugeOptions): UseAudioGaugeRes
|
|
|
1728
1824
|
//#region src/lib/utils.d.ts
|
|
1729
1825
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1730
1826
|
//#endregion
|
|
1731
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertAction as BannerAction, AlertDescription, AlertDescription as BannerDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTitle as BannerTitle, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BadgeGroup, BadgeGroupCount, Banner, type BannerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CounterBadge, CountryFlag, CountryFlagProps, DataTable, type DataTableProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerBackdrop, DrawerBar, DrawerClose, DrawerContent, DrawerCreateHandle, DrawerDescription, DrawerFooter, DrawerHeader, DrawerMenu, DrawerMenuCheckboxItem, DrawerMenuGroup, DrawerMenuGroupLabel, DrawerMenuItem, DrawerMenuRadioGroup, DrawerMenuRadioItem, DrawerMenuSeparator, DrawerMenuTrigger, DrawerPanel, DrawerPopup, DrawerPortal, DrawerPrimitive, DrawerSwipeArea, DrawerTitle, DrawerTrigger, DrawerViewport, DropdownMenu, DropdownMenuAddon, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Dropzone, DropzoneActions, DropzoneContent, type DropzoneContentProps, DropzoneDescription, DropzoneErrorCode, DropzoneIcon, type DropzoneProps, DropzoneTitle, DropzoneTrigger, type DropzoneTriggerProps, EmojiPicker, EmojiPickerCategories, EmojiPickerCategory, EmojiPickerContent, EmojiPickerContentProps, EmojiPickerProps, EmojiPickerTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, FAB, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileError, FileRejection, Gauge, type GaugeProps, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Label, List, ListCol, ListRow, NotificationHandle, NotificationOptions, NotificationPriority, NotificationQueueControls, NotificationQueueProvider, NotificationRenderProps, NotificationSlot, NotificationSlotProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, ScrollArea, ScrollAreaPrimitive, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UseAudioGaugeOptions, UseAudioGaugeResult, alertVariants,
|
|
1827
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertAction as BannerAction, AlertDescription, AlertDescription as BannerDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTitle as BannerTitle, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BadgeGroup, BadgeGroupCount, Banner, type BannerProps, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Chip, ChipRemove, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChipProps, ComboboxChips, ComboboxChipsInput, ComboboxClear, ComboboxCollection, ComboboxContent, ComboboxContentProps, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxInputProps, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CounterBadge, CountryFlag, CountryFlagProps, DataTable, type DataTableProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerBackdrop, DrawerBar, DrawerClose, DrawerContent, DrawerCreateHandle, DrawerDescription, DrawerFooter, DrawerHeader, DrawerMenu, DrawerMenuCheckboxItem, DrawerMenuGroup, DrawerMenuGroupLabel, DrawerMenuItem, DrawerMenuRadioGroup, DrawerMenuRadioItem, DrawerMenuSeparator, DrawerMenuTrigger, DrawerPanel, DrawerPopup, DrawerPortal, DrawerPrimitive, DrawerSwipeArea, DrawerTitle, DrawerTrigger, DrawerViewport, DropdownMenu, DropdownMenuAddon, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Dropzone, DropzoneActions, DropzoneContent, type DropzoneContentProps, DropzoneDescription, DropzoneErrorCode, DropzoneIcon, type DropzoneProps, DropzoneTitle, DropzoneTrigger, type DropzoneTriggerProps, EmojiPicker, EmojiPickerCategories, EmojiPickerCategory, EmojiPickerContent, EmojiPickerContentProps, EmojiPickerProps, EmojiPickerTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, FAB, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileError, FileRejection, Filter, FilterClearAllButton, FilterGroup, Gauge, type GaugeProps, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Label, List, ListCol, ListRow, NotificationHandle, NotificationOptions, NotificationPriority, NotificationQueueControls, NotificationQueueProvider, NotificationRenderProps, NotificationSlot, NotificationSlotProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, ScrollArea, ScrollAreaPrimitive, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UseAudioGaugeOptions, UseAudioGaugeResult, alertVariants, bannerVariants, buttonGroupVariants, buttonVariants, cn, counterBadgeVariants, fabVariants, selectTriggerVariants, spinnerVariants, toast, toggleVariants, useAudioGauge, useComboboxAnchor, useNotification, useNotificationQueue, useSidebar, useTheme };
|