@aircall/ds 0.6.0 → 0.9.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/globals.css +1 -1
- package/dist/index.d.ts +486 -296
- package/dist/index.js +702 -98
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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_runtime0 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";
|
|
@@ -12,11 +12,10 @@ import { DayButton, DayPicker, Locale } from "react-day-picker";
|
|
|
12
12
|
import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
|
|
13
13
|
import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
|
|
14
14
|
import { Collapsible as Collapsible$1 } from "@base-ui/react/collapsible";
|
|
15
|
-
import * as
|
|
15
|
+
import * as _base_ui_react4 from "@base-ui/react";
|
|
16
16
|
import { Combobox as Combobox$1 } from "@base-ui/react";
|
|
17
17
|
import { Command as Command$1 } from "cmdk";
|
|
18
18
|
import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
|
|
19
|
-
import { CountryCode } from "@aircall/numbers";
|
|
20
19
|
import { ColumnDef, TableOptions } from "@tanstack/react-table";
|
|
21
20
|
import { Drawer as DrawerPrimitive } from "@base-ui/react/drawer";
|
|
22
21
|
import { Radio } from "@base-ui/react/radio";
|
|
@@ -31,209 +30,271 @@ import { Progress as Progress$1 } from "@base-ui/react/progress";
|
|
|
31
30
|
import { Select as Select$1 } from "@base-ui/react/select";
|
|
32
31
|
import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
|
|
33
32
|
import { Slider as Slider$1 } from "@base-ui/react/slider";
|
|
34
|
-
import { Slot } from "@radix-ui/react-slot";
|
|
35
33
|
import { ToasterProps, toast } from "sonner";
|
|
36
34
|
import { Switch as Switch$1 } from "@base-ui/react/switch";
|
|
37
35
|
import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
|
|
38
36
|
import { Toggle as Toggle$1 } from "@base-ui/react/toggle";
|
|
39
37
|
import { ToggleGroup as ToggleGroup$1 } from "@base-ui/react/toggle-group";
|
|
40
|
-
import * as
|
|
38
|
+
import * as class_variance_authority_types6 from "class-variance-authority/types";
|
|
39
|
+
import { CountryCode } from "@aircall/numbers";
|
|
41
40
|
|
|
42
41
|
//#region src/components/accordion.d.ts
|
|
43
42
|
declare function Accordion({
|
|
44
43
|
className,
|
|
45
44
|
...props
|
|
46
|
-
}: Accordion$1.Root.Props):
|
|
45
|
+
}: Accordion$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
47
46
|
declare function AccordionItem({
|
|
48
47
|
className,
|
|
49
48
|
...props
|
|
50
|
-
}: Accordion$1.Item.Props):
|
|
49
|
+
}: Accordion$1.Item.Props): react_jsx_runtime0.JSX.Element;
|
|
51
50
|
declare function AccordionTrigger({
|
|
52
51
|
className,
|
|
53
52
|
children,
|
|
54
53
|
...props
|
|
55
|
-
}: Accordion$1.Trigger.Props):
|
|
54
|
+
}: Accordion$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
56
55
|
declare function AccordionContent({
|
|
57
56
|
className,
|
|
58
57
|
children,
|
|
59
58
|
...props
|
|
60
|
-
}: Accordion$1.Panel.Props):
|
|
59
|
+
}: Accordion$1.Panel.Props): react_jsx_runtime0.JSX.Element;
|
|
61
60
|
//#endregion
|
|
62
61
|
//#region src/components/button.d.ts
|
|
63
62
|
declare const buttonVariants: (props?: ({
|
|
64
|
-
variant?: "default" | "
|
|
65
|
-
size?: "
|
|
63
|
+
variant?: "default" | "link" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
|
|
64
|
+
size?: "sm" | "default" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
66
65
|
block?: boolean | null | undefined;
|
|
67
|
-
} &
|
|
68
|
-
declare const Button: React$2.ForwardRefExoticComponent<Omit<
|
|
69
|
-
variant?: "default" | "
|
|
70
|
-
size?: "
|
|
66
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
67
|
+
declare const Button: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.ButtonProps & VariantProps<(props?: ({
|
|
68
|
+
variant?: "default" | "link" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
|
|
69
|
+
size?: "sm" | "default" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
71
70
|
block?: boolean | null | undefined;
|
|
72
|
-
} &
|
|
71
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
73
72
|
//#endregion
|
|
74
73
|
//#region src/components/alert-dialog.d.ts
|
|
75
74
|
declare function AlertDialog({
|
|
76
75
|
...props
|
|
77
|
-
}: AlertDialog$1.Root.Props):
|
|
76
|
+
}: AlertDialog$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
78
77
|
declare function AlertDialogTrigger({
|
|
79
78
|
...props
|
|
80
|
-
}: AlertDialog$1.Trigger.Props):
|
|
79
|
+
}: AlertDialog$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
81
80
|
declare function AlertDialogPortal({
|
|
82
81
|
...props
|
|
83
|
-
}: AlertDialog$1.Portal.Props):
|
|
82
|
+
}: AlertDialog$1.Portal.Props): react_jsx_runtime0.JSX.Element;
|
|
84
83
|
declare function AlertDialogOverlay({
|
|
85
84
|
className,
|
|
86
85
|
...props
|
|
87
|
-
}: AlertDialog$1.Backdrop.Props):
|
|
86
|
+
}: AlertDialog$1.Backdrop.Props): react_jsx_runtime0.JSX.Element;
|
|
88
87
|
declare function AlertDialogContent({
|
|
89
88
|
className,
|
|
90
89
|
size,
|
|
91
90
|
...props
|
|
92
91
|
}: AlertDialog$1.Popup.Props & {
|
|
93
92
|
size?: "default" | "sm";
|
|
94
|
-
}):
|
|
93
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
95
94
|
declare function AlertDialogHeader({
|
|
96
95
|
className,
|
|
97
96
|
...props
|
|
98
|
-
}: React$2.ComponentProps<"div">):
|
|
97
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
99
98
|
declare function AlertDialogFooter({
|
|
100
99
|
className,
|
|
101
100
|
...props
|
|
102
|
-
}: React$2.ComponentProps<"div">):
|
|
101
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
103
102
|
declare function AlertDialogMedia({
|
|
104
103
|
className,
|
|
105
104
|
...props
|
|
106
|
-
}: React$2.ComponentProps<"div">):
|
|
105
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
107
106
|
declare function AlertDialogTitle({
|
|
108
107
|
className,
|
|
109
108
|
...props
|
|
110
|
-
}: React$2.ComponentProps<typeof AlertDialog$1.Title>):
|
|
109
|
+
}: React$2.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime0.JSX.Element;
|
|
111
110
|
declare function AlertDialogDescription({
|
|
112
111
|
className,
|
|
113
112
|
...props
|
|
114
|
-
}: React$2.ComponentProps<typeof AlertDialog$1.Description>):
|
|
113
|
+
}: React$2.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime0.JSX.Element;
|
|
115
114
|
declare function AlertDialogAction({
|
|
116
115
|
className,
|
|
117
116
|
...props
|
|
118
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
117
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
|
|
119
118
|
declare function AlertDialogCancel({
|
|
120
119
|
className,
|
|
121
120
|
variant,
|
|
122
121
|
size,
|
|
123
122
|
...props
|
|
124
|
-
}: AlertDialog$1.Close.Props & Pick<React$2.ComponentProps<typeof Button>, "variant" | "size">):
|
|
123
|
+
}: AlertDialog$1.Close.Props & Pick<React$2.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime0.JSX.Element;
|
|
125
124
|
//#endregion
|
|
126
125
|
//#region src/components/alert.d.ts
|
|
127
126
|
declare const alertVariants: (props?: ({
|
|
128
127
|
variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
|
|
129
|
-
} &
|
|
128
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
130
129
|
type AlertProps = React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>;
|
|
131
130
|
declare function Alert({
|
|
132
131
|
className,
|
|
133
132
|
variant,
|
|
134
133
|
...props
|
|
135
|
-
}: AlertProps):
|
|
134
|
+
}: AlertProps): react_jsx_runtime0.JSX.Element;
|
|
136
135
|
declare function AlertTitle({
|
|
137
136
|
className,
|
|
138
137
|
...props
|
|
139
|
-
}: React$2.ComponentProps<'div'>):
|
|
138
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
140
139
|
declare function AlertDescription({
|
|
141
140
|
className,
|
|
142
141
|
...props
|
|
143
|
-
}: React$2.ComponentProps<'div'>):
|
|
142
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
144
143
|
declare function AlertAction({
|
|
145
144
|
className,
|
|
146
145
|
...props
|
|
147
|
-
}: React$2.ComponentProps<'div'>):
|
|
146
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
148
147
|
//#endregion
|
|
149
148
|
//#region src/components/avatar.d.ts
|
|
150
|
-
declare const Avatar: React$2.ForwardRefExoticComponent<Omit<
|
|
149
|
+
declare const Avatar: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.AvatarRootProps & {
|
|
151
150
|
size?: "xs" | "sm" | "default" | "lg" | "xl";
|
|
152
151
|
}, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
153
152
|
declare function AvatarImage({
|
|
154
153
|
className,
|
|
155
154
|
...props
|
|
156
|
-
}: Avatar$1.Image.Props):
|
|
155
|
+
}: Avatar$1.Image.Props): react_jsx_runtime0.JSX.Element;
|
|
157
156
|
declare function AvatarFallback({
|
|
158
157
|
className,
|
|
159
158
|
...props
|
|
160
|
-
}: Avatar$1.Fallback.Props):
|
|
159
|
+
}: Avatar$1.Fallback.Props): react_jsx_runtime0.JSX.Element;
|
|
161
160
|
declare function AvatarBadge({
|
|
162
161
|
className,
|
|
163
162
|
...props
|
|
164
|
-
}: React$2.ComponentProps<"span">):
|
|
163
|
+
}: React$2.ComponentProps<"span">): react_jsx_runtime0.JSX.Element;
|
|
165
164
|
declare function AvatarGroup({
|
|
166
165
|
className,
|
|
167
166
|
...props
|
|
168
|
-
}: React$2.ComponentProps<"div">):
|
|
167
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
169
168
|
declare function AvatarGroupCount({
|
|
170
169
|
className,
|
|
171
170
|
...props
|
|
172
|
-
}: React$2.ComponentProps<"div">):
|
|
171
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
173
172
|
//#endregion
|
|
174
173
|
//#region src/components/counter-badge.d.ts
|
|
175
174
|
declare const counterBadgeVariants: (props?: ({
|
|
176
175
|
variant?: "default" | "secondary" | "ghost" | null | undefined;
|
|
177
|
-
} &
|
|
176
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
178
177
|
declare const CounterBadge: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
179
178
|
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;
|
|
180
179
|
} & {
|
|
181
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
180
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
|
|
182
181
|
} & VariantProps<(props?: ({
|
|
183
182
|
variant?: "default" | "secondary" | "ghost" | null | undefined;
|
|
184
|
-
} &
|
|
183
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
185
184
|
//#endregion
|
|
186
185
|
//#region src/components/badge.d.ts
|
|
187
186
|
declare const badgeVariants: (props?: ({
|
|
188
187
|
variant?: "default" | "secondary" | "outline" | null | undefined;
|
|
189
188
|
size?: "sm" | "lg" | null | undefined;
|
|
190
|
-
} &
|
|
189
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
191
190
|
declare const Badge: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
192
191
|
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;
|
|
193
192
|
} & {
|
|
194
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
193
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
|
|
195
194
|
} & VariantProps<(props?: ({
|
|
196
195
|
variant?: "default" | "secondary" | "outline" | null | undefined;
|
|
197
196
|
size?: "sm" | "lg" | null | undefined;
|
|
198
|
-
} &
|
|
197
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
199
198
|
declare function BadgeGroup({
|
|
200
199
|
className,
|
|
201
200
|
...props
|
|
202
|
-
}: React$2.ComponentProps<
|
|
201
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
203
202
|
declare function BadgeGroupCount({
|
|
204
203
|
className,
|
|
205
204
|
...props
|
|
206
|
-
}: Omit<React$2.ComponentProps<typeof CounterBadge>,
|
|
205
|
+
}: Omit<React$2.ComponentProps<typeof CounterBadge>, 'variant'>): react_jsx_runtime0.JSX.Element;
|
|
207
206
|
//#endregion
|
|
208
207
|
//#region src/components/banner.d.ts
|
|
209
208
|
declare const bannerVariants: (props?: ({
|
|
210
209
|
variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
|
|
211
|
-
borderDirection?: "
|
|
212
|
-
} &
|
|
210
|
+
borderDirection?: "top" | "bottom" | null | undefined;
|
|
211
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
213
212
|
type BannerProps = React$2.ComponentProps<'div'> & VariantProps<typeof bannerVariants>;
|
|
214
213
|
declare function Banner({
|
|
215
214
|
className,
|
|
216
215
|
variant,
|
|
217
216
|
borderDirection,
|
|
218
217
|
...props
|
|
219
|
-
}: BannerProps):
|
|
218
|
+
}: BannerProps): react_jsx_runtime0.JSX.Element;
|
|
219
|
+
//#endregion
|
|
220
|
+
//#region src/components/notification-queue.d.ts
|
|
221
|
+
type NotificationPriority = 'error' | 'warning' | 'success' | 'info' | 'promotional';
|
|
222
|
+
declare function NotificationQueueProvider({
|
|
223
|
+
children
|
|
224
|
+
}: {
|
|
225
|
+
children: React$2.ReactNode;
|
|
226
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
227
|
+
interface NotificationRenderProps {
|
|
228
|
+
/** Dismisses this notification from the queue. */
|
|
229
|
+
dismiss: () => void;
|
|
230
|
+
}
|
|
231
|
+
interface NotificationOptions {
|
|
232
|
+
/** Stable identifier — must be unique within a slot. */
|
|
233
|
+
id: string;
|
|
234
|
+
/**
|
|
235
|
+
* Target slot.
|
|
236
|
+
* • `'page'` — system-wide (renders in a top-level banner area)
|
|
237
|
+
* • any string — page/component-scoped (renders in an inline alert area)
|
|
238
|
+
*
|
|
239
|
+
* The slot determines WHERE the notification appears, not how it looks.
|
|
240
|
+
* Place a `<NotificationSlot slot="…" />` wherever you want output.
|
|
241
|
+
*/
|
|
242
|
+
slot: string;
|
|
243
|
+
priority: NotificationPriority;
|
|
244
|
+
/**
|
|
245
|
+
* Render function — receives `{ dismiss }` so the content can dismiss
|
|
246
|
+
* itself without knowing its own id/slot.
|
|
247
|
+
*
|
|
248
|
+
* @example
|
|
249
|
+
* render: ({ dismiss }) => (
|
|
250
|
+
* <Banner variant="info">
|
|
251
|
+
* <BannerTitle>Trial ending soon</BannerTitle>
|
|
252
|
+
* <BannerAction><Button onClick={dismiss}>Explore plans</Button></BannerAction>
|
|
253
|
+
* </Banner>
|
|
254
|
+
* )
|
|
255
|
+
*/
|
|
256
|
+
render: (props: NotificationRenderProps) => React$2.ReactNode;
|
|
257
|
+
}
|
|
258
|
+
interface NotificationHandle {
|
|
259
|
+
/** Dismisses this specific notification. No id/slot required. */
|
|
260
|
+
dismiss: () => void;
|
|
261
|
+
}
|
|
262
|
+
interface NotificationQueueControls {
|
|
263
|
+
push: (options: NotificationOptions) => NotificationHandle;
|
|
264
|
+
dismiss: (id: string, slot: string) => void;
|
|
265
|
+
}
|
|
266
|
+
declare function useNotificationQueue(): NotificationQueueControls;
|
|
267
|
+
declare function useNotification({
|
|
268
|
+
id,
|
|
269
|
+
slot,
|
|
270
|
+
priority,
|
|
271
|
+
render
|
|
272
|
+
}: NotificationOptions): NotificationHandle;
|
|
273
|
+
interface NotificationSlotProps {
|
|
274
|
+
slot: string;
|
|
275
|
+
className?: string;
|
|
276
|
+
}
|
|
277
|
+
declare function NotificationSlot({
|
|
278
|
+
slot,
|
|
279
|
+
className
|
|
280
|
+
}: NotificationSlotProps): react_jsx_runtime0.JSX.Element | null;
|
|
220
281
|
//#endregion
|
|
221
282
|
//#region src/components/separator.d.ts
|
|
222
283
|
declare function Separator({
|
|
223
284
|
className,
|
|
224
285
|
orientation,
|
|
225
286
|
...props
|
|
226
|
-
}: Separator$1.Props):
|
|
287
|
+
}: Separator$1.Props): react_jsx_runtime0.JSX.Element;
|
|
227
288
|
//#endregion
|
|
228
289
|
//#region src/components/button-group.d.ts
|
|
229
290
|
declare const buttonGroupVariants: (props?: ({
|
|
230
291
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
231
|
-
} &
|
|
292
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
232
293
|
declare function ButtonGroup({
|
|
233
294
|
className,
|
|
234
295
|
orientation,
|
|
235
296
|
...props
|
|
236
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>):
|
|
297
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime0.JSX.Element;
|
|
237
298
|
declare function ButtonGroupText({
|
|
238
299
|
className,
|
|
239
300
|
render,
|
|
@@ -243,7 +304,7 @@ declare function ButtonGroupSeparator({
|
|
|
243
304
|
className,
|
|
244
305
|
orientation,
|
|
245
306
|
...props
|
|
246
|
-
}: React.ComponentProps<typeof Separator>):
|
|
307
|
+
}: React.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
|
|
247
308
|
//#endregion
|
|
248
309
|
//#region src/components/calendar.d.ts
|
|
249
310
|
declare function Calendar({
|
|
@@ -258,7 +319,7 @@ declare function Calendar({
|
|
|
258
319
|
...props
|
|
259
320
|
}: React$2.ComponentProps<typeof DayPicker> & {
|
|
260
321
|
buttonVariant?: React$2.ComponentProps<typeof Button>['variant'];
|
|
261
|
-
}):
|
|
322
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
262
323
|
declare function CalendarDayButton({
|
|
263
324
|
className: dayClassName,
|
|
264
325
|
day,
|
|
@@ -267,37 +328,37 @@ declare function CalendarDayButton({
|
|
|
267
328
|
...props
|
|
268
329
|
}: React$2.ComponentProps<typeof DayButton> & {
|
|
269
330
|
locale?: Partial<Locale>;
|
|
270
|
-
}):
|
|
331
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
271
332
|
//#endregion
|
|
272
333
|
//#region src/components/card.d.ts
|
|
273
334
|
declare function Card({
|
|
274
335
|
className,
|
|
275
336
|
...props
|
|
276
|
-
}: React$2.ComponentProps<'div'>):
|
|
337
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
277
338
|
declare function CardHeader({
|
|
278
339
|
className,
|
|
279
340
|
...props
|
|
280
|
-
}: React$2.ComponentProps<'div'>):
|
|
341
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
281
342
|
declare function CardTitle({
|
|
282
343
|
className,
|
|
283
344
|
...props
|
|
284
|
-
}: React$2.ComponentProps<'div'>):
|
|
345
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
285
346
|
declare function CardDescription({
|
|
286
347
|
className,
|
|
287
348
|
...props
|
|
288
|
-
}: React$2.ComponentProps<'div'>):
|
|
349
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
289
350
|
declare function CardAction({
|
|
290
351
|
className,
|
|
291
352
|
...props
|
|
292
|
-
}: React$2.ComponentProps<'div'>):
|
|
353
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
293
354
|
declare function CardContent({
|
|
294
355
|
className,
|
|
295
356
|
...props
|
|
296
|
-
}: React$2.ComponentProps<'div'>):
|
|
357
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
297
358
|
declare function CardFooter({
|
|
298
359
|
className,
|
|
299
360
|
...props
|
|
300
|
-
}: React$2.ComponentProps<'div'>):
|
|
361
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
301
362
|
//#endregion
|
|
302
363
|
//#region src/components/carousel.d.ts
|
|
303
364
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
@@ -318,49 +379,49 @@ declare function Carousel({
|
|
|
318
379
|
className,
|
|
319
380
|
children,
|
|
320
381
|
...props
|
|
321
|
-
}: React$2.ComponentProps<'div'> & CarouselProps):
|
|
382
|
+
}: React$2.ComponentProps<'div'> & CarouselProps): react_jsx_runtime0.JSX.Element;
|
|
322
383
|
declare function CarouselContent({
|
|
323
384
|
className,
|
|
324
385
|
...props
|
|
325
|
-
}: React$2.ComponentProps<'div'>):
|
|
386
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
326
387
|
declare function CarouselItem({
|
|
327
388
|
className,
|
|
328
389
|
...props
|
|
329
|
-
}: React$2.ComponentProps<'div'>):
|
|
390
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
330
391
|
declare function CarouselPrevious({
|
|
331
392
|
className,
|
|
332
393
|
variant,
|
|
333
394
|
size,
|
|
334
395
|
...props
|
|
335
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
396
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
|
|
336
397
|
declare function CarouselNext({
|
|
337
398
|
className,
|
|
338
399
|
variant,
|
|
339
400
|
size,
|
|
340
401
|
...props
|
|
341
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
402
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
|
|
342
403
|
//#endregion
|
|
343
404
|
//#region src/components/checkbox.d.ts
|
|
344
|
-
declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<
|
|
405
|
+
declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.CheckboxRootProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
345
406
|
//#endregion
|
|
346
407
|
//#region src/components/collapsible.d.ts
|
|
347
408
|
declare function Collapsible({
|
|
348
409
|
...props
|
|
349
|
-
}: Collapsible$1.Root.Props):
|
|
410
|
+
}: Collapsible$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
350
411
|
declare function CollapsibleTrigger({
|
|
351
412
|
...props
|
|
352
|
-
}: Collapsible$1.Trigger.Props):
|
|
413
|
+
}: Collapsible$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
353
414
|
declare function CollapsibleContent({
|
|
354
415
|
...props
|
|
355
|
-
}: Collapsible$1.Panel.Props):
|
|
416
|
+
}: Collapsible$1.Panel.Props): react_jsx_runtime0.JSX.Element;
|
|
356
417
|
//#endregion
|
|
357
418
|
//#region src/components/combobox.d.ts
|
|
358
419
|
declare const Combobox: typeof Combobox$1.Root;
|
|
359
420
|
declare function ComboboxValue({
|
|
360
421
|
...props
|
|
361
|
-
}: Combobox$1.Value.Props):
|
|
362
|
-
declare const ComboboxTrigger: React$2.ForwardRefExoticComponent<Omit<
|
|
363
|
-
declare const ComboboxInput: React$2.ForwardRefExoticComponent<Omit<
|
|
422
|
+
}: Combobox$1.Value.Props): react_jsx_runtime0.JSX.Element;
|
|
423
|
+
declare const ComboboxTrigger: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.AutocompleteTriggerProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
424
|
+
declare const ComboboxInput: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.AutocompleteInputProps, "ref"> & {
|
|
364
425
|
showTrigger?: boolean;
|
|
365
426
|
showClear?: boolean;
|
|
366
427
|
} & React$2.RefAttributes<HTMLDivElement>>;
|
|
@@ -372,36 +433,36 @@ declare function ComboboxContent({
|
|
|
372
433
|
alignOffset,
|
|
373
434
|
anchor,
|
|
374
435
|
...props
|
|
375
|
-
}: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">):
|
|
436
|
+
}: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime0.JSX.Element;
|
|
376
437
|
declare function ComboboxList({
|
|
377
438
|
className,
|
|
378
439
|
...props
|
|
379
|
-
}: Combobox$1.List.Props):
|
|
440
|
+
}: Combobox$1.List.Props): react_jsx_runtime0.JSX.Element;
|
|
380
441
|
declare function ComboboxItem({
|
|
381
442
|
className,
|
|
382
443
|
children,
|
|
383
444
|
...props
|
|
384
|
-
}: Combobox$1.Item.Props):
|
|
445
|
+
}: Combobox$1.Item.Props): react_jsx_runtime0.JSX.Element;
|
|
385
446
|
declare function ComboboxGroup({
|
|
386
447
|
className,
|
|
387
448
|
...props
|
|
388
|
-
}: Combobox$1.Group.Props):
|
|
449
|
+
}: Combobox$1.Group.Props): react_jsx_runtime0.JSX.Element;
|
|
389
450
|
declare function ComboboxLabel({
|
|
390
451
|
className,
|
|
391
452
|
...props
|
|
392
|
-
}: Combobox$1.GroupLabel.Props):
|
|
453
|
+
}: Combobox$1.GroupLabel.Props): react_jsx_runtime0.JSX.Element;
|
|
393
454
|
declare function ComboboxCollection({
|
|
394
455
|
...props
|
|
395
|
-
}: Combobox$1.Collection.Props):
|
|
456
|
+
}: Combobox$1.Collection.Props): react_jsx_runtime0.JSX.Element;
|
|
396
457
|
declare function ComboboxEmpty({
|
|
397
458
|
className,
|
|
398
459
|
...props
|
|
399
|
-
}: Combobox$1.Empty.Props):
|
|
460
|
+
}: Combobox$1.Empty.Props): react_jsx_runtime0.JSX.Element;
|
|
400
461
|
declare function ComboboxSeparator({
|
|
401
462
|
className,
|
|
402
463
|
...props
|
|
403
|
-
}: Combobox$1.Separator.Props):
|
|
404
|
-
declare const ComboboxChips: React$2.ForwardRefExoticComponent<Omit<Omit<Omit<
|
|
464
|
+
}: Combobox$1.Separator.Props): react_jsx_runtime0.JSX.Element;
|
|
465
|
+
declare const ComboboxChips: React$2.ForwardRefExoticComponent<Omit<Omit<Omit<_base_ui_react4.ComboboxChipsProps, "ref"> & React$2.RefAttributes<HTMLDivElement>, "ref"> & _base_ui_react4.ComboboxChipsProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
405
466
|
declare function ComboboxChip({
|
|
406
467
|
className,
|
|
407
468
|
children,
|
|
@@ -409,30 +470,30 @@ declare function ComboboxChip({
|
|
|
409
470
|
...props
|
|
410
471
|
}: Combobox$1.Chip.Props & {
|
|
411
472
|
showRemove?: boolean;
|
|
412
|
-
}):
|
|
473
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
413
474
|
declare function ComboboxChipsInput({
|
|
414
475
|
className,
|
|
415
476
|
...props
|
|
416
|
-
}: Combobox$1.Input.Props):
|
|
477
|
+
}: Combobox$1.Input.Props): react_jsx_runtime0.JSX.Element;
|
|
417
478
|
declare function useComboboxAnchor(): React$2.MutableRefObject<HTMLDivElement | null>;
|
|
418
479
|
//#endregion
|
|
419
480
|
//#region src/components/dialog.d.ts
|
|
420
481
|
declare function Dialog({
|
|
421
482
|
...props
|
|
422
|
-
}: Dialog$1.Root.Props):
|
|
483
|
+
}: Dialog$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
423
484
|
declare function DialogTrigger({
|
|
424
485
|
...props
|
|
425
|
-
}: Dialog$1.Trigger.Props):
|
|
486
|
+
}: Dialog$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
426
487
|
declare function DialogPortal({
|
|
427
488
|
...props
|
|
428
|
-
}: Dialog$1.Portal.Props):
|
|
489
|
+
}: Dialog$1.Portal.Props): react_jsx_runtime0.JSX.Element;
|
|
429
490
|
declare function DialogClose({
|
|
430
491
|
...props
|
|
431
|
-
}: Dialog$1.Close.Props):
|
|
492
|
+
}: Dialog$1.Close.Props): react_jsx_runtime0.JSX.Element;
|
|
432
493
|
declare function DialogOverlay({
|
|
433
494
|
className,
|
|
434
495
|
...props
|
|
435
|
-
}: Dialog$1.Backdrop.Props):
|
|
496
|
+
}: Dialog$1.Backdrop.Props): react_jsx_runtime0.JSX.Element;
|
|
436
497
|
declare function DialogContent({
|
|
437
498
|
className,
|
|
438
499
|
children,
|
|
@@ -440,11 +501,11 @@ declare function DialogContent({
|
|
|
440
501
|
...props
|
|
441
502
|
}: Dialog$1.Popup.Props & {
|
|
442
503
|
showCloseButton?: boolean;
|
|
443
|
-
}):
|
|
504
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
444
505
|
declare function DialogHeader({
|
|
445
506
|
className,
|
|
446
507
|
...props
|
|
447
|
-
}: React$2.ComponentProps<"div">):
|
|
508
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
448
509
|
declare function DialogFooter({
|
|
449
510
|
className,
|
|
450
511
|
showCloseButton,
|
|
@@ -452,21 +513,21 @@ declare function DialogFooter({
|
|
|
452
513
|
...props
|
|
453
514
|
}: React$2.ComponentProps<"div"> & {
|
|
454
515
|
showCloseButton?: boolean;
|
|
455
|
-
}):
|
|
516
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
456
517
|
declare function DialogTitle({
|
|
457
518
|
className,
|
|
458
519
|
...props
|
|
459
|
-
}: Dialog$1.Title.Props):
|
|
520
|
+
}: Dialog$1.Title.Props): react_jsx_runtime0.JSX.Element;
|
|
460
521
|
declare function DialogDescription({
|
|
461
522
|
className,
|
|
462
523
|
...props
|
|
463
|
-
}: Dialog$1.Description.Props):
|
|
524
|
+
}: Dialog$1.Description.Props): react_jsx_runtime0.JSX.Element;
|
|
464
525
|
//#endregion
|
|
465
526
|
//#region src/components/command.d.ts
|
|
466
527
|
declare function Command({
|
|
467
528
|
className,
|
|
468
529
|
...props
|
|
469
|
-
}: React$2.ComponentProps<typeof Command$1>):
|
|
530
|
+
}: React$2.ComponentProps<typeof Command$1>): react_jsx_runtime0.JSX.Element;
|
|
470
531
|
declare function CommandDialog({
|
|
471
532
|
title,
|
|
472
533
|
description,
|
|
@@ -475,40 +536,39 @@ declare function CommandDialog({
|
|
|
475
536
|
}: React$2.ComponentProps<typeof Dialog> & {
|
|
476
537
|
title?: string;
|
|
477
538
|
description?: string;
|
|
478
|
-
}):
|
|
539
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
479
540
|
declare function CommandInput({
|
|
480
541
|
className,
|
|
481
542
|
...props
|
|
482
|
-
}: React$2.ComponentProps<typeof Command$1.Input>):
|
|
543
|
+
}: React$2.ComponentProps<typeof Command$1.Input>): react_jsx_runtime0.JSX.Element;
|
|
483
544
|
declare function CommandList({
|
|
484
545
|
className,
|
|
485
546
|
...props
|
|
486
|
-
}: React$2.ComponentProps<typeof Command$1.List>):
|
|
547
|
+
}: React$2.ComponentProps<typeof Command$1.List>): react_jsx_runtime0.JSX.Element;
|
|
487
548
|
declare function CommandEmpty({
|
|
488
549
|
...props
|
|
489
|
-
}: React$2.ComponentProps<typeof Command$1.Empty>):
|
|
550
|
+
}: React$2.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime0.JSX.Element;
|
|
490
551
|
declare function CommandGroup({
|
|
491
552
|
className,
|
|
492
553
|
...props
|
|
493
|
-
}: React$2.ComponentProps<typeof Command$1.Group>):
|
|
554
|
+
}: React$2.ComponentProps<typeof Command$1.Group>): react_jsx_runtime0.JSX.Element;
|
|
494
555
|
declare function CommandSeparator({
|
|
495
556
|
className,
|
|
496
557
|
...props
|
|
497
|
-
}: React$2.ComponentProps<typeof Command$1.Separator>):
|
|
558
|
+
}: React$2.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime0.JSX.Element;
|
|
498
559
|
declare function CommandItem({
|
|
499
560
|
className,
|
|
500
561
|
...props
|
|
501
|
-
}: React$2.ComponentProps<typeof Command$1.Item>):
|
|
562
|
+
}: React$2.ComponentProps<typeof Command$1.Item>): react_jsx_runtime0.JSX.Element;
|
|
502
563
|
declare function CommandShortcut({
|
|
503
564
|
className,
|
|
504
565
|
...props
|
|
505
|
-
}: React$2.ComponentProps<'span'>):
|
|
566
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
|
|
506
567
|
//#endregion
|
|
507
568
|
//#region src/components/country-flag.d.ts
|
|
508
|
-
type FlagSize = '
|
|
569
|
+
type FlagSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
509
570
|
interface CountryFlagProps {
|
|
510
|
-
countryIsoCode:
|
|
511
|
-
defaultIsoCode?: string | CountryCode;
|
|
571
|
+
countryIsoCode: CountryCode;
|
|
512
572
|
size?: FlagSize;
|
|
513
573
|
className?: string;
|
|
514
574
|
}
|
|
@@ -530,7 +590,7 @@ declare function DataTable<TData, TValue>({
|
|
|
530
590
|
data,
|
|
531
591
|
tableOptions,
|
|
532
592
|
noResultsMessage
|
|
533
|
-
}: DataTableProps<TData, TValue>):
|
|
593
|
+
}: DataTableProps<TData, TValue>): react_jsx_runtime0.JSX.Element;
|
|
534
594
|
//#endregion
|
|
535
595
|
//#region src/components/drawer.d.ts
|
|
536
596
|
type DrawerPosition = 'right' | 'left' | 'top' | 'bottom';
|
|
@@ -700,13 +760,13 @@ declare function DrawerMenuRadioItem({
|
|
|
700
760
|
//#region src/components/dropdown-menu.d.ts
|
|
701
761
|
declare function DropdownMenu({
|
|
702
762
|
...props
|
|
703
|
-
}: Menu.Root.Props):
|
|
763
|
+
}: Menu.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
704
764
|
declare function DropdownMenuPortal({
|
|
705
765
|
...props
|
|
706
|
-
}: Menu.Portal.Props):
|
|
766
|
+
}: Menu.Portal.Props): react_jsx_runtime0.JSX.Element;
|
|
707
767
|
declare function DropdownMenuTrigger({
|
|
708
768
|
...props
|
|
709
|
-
}: Menu.Trigger.Props):
|
|
769
|
+
}: Menu.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
710
770
|
declare function DropdownMenuContent({
|
|
711
771
|
align,
|
|
712
772
|
alignOffset,
|
|
@@ -715,19 +775,19 @@ declare function DropdownMenuContent({
|
|
|
715
775
|
className,
|
|
716
776
|
container,
|
|
717
777
|
...props
|
|
718
|
-
}: Menu.Popup.Props & Pick<Menu.Positioner.Props,
|
|
719
|
-
container?: Menu.Portal.Props[
|
|
720
|
-
}):
|
|
778
|
+
}: Menu.Popup.Props & Pick<Menu.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'> & {
|
|
779
|
+
container?: Menu.Portal.Props['container'];
|
|
780
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
721
781
|
declare function DropdownMenuGroup({
|
|
722
782
|
...props
|
|
723
|
-
}: Menu.Group.Props):
|
|
783
|
+
}: Menu.Group.Props): react_jsx_runtime0.JSX.Element;
|
|
724
784
|
declare function DropdownMenuLabel({
|
|
725
785
|
className,
|
|
726
786
|
inset,
|
|
727
787
|
...props
|
|
728
788
|
}: Menu.GroupLabel.Props & {
|
|
729
789
|
inset?: boolean;
|
|
730
|
-
}):
|
|
790
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
731
791
|
declare function DropdownMenuItem({
|
|
732
792
|
className,
|
|
733
793
|
inset,
|
|
@@ -735,11 +795,11 @@ declare function DropdownMenuItem({
|
|
|
735
795
|
...props
|
|
736
796
|
}: Menu.Item.Props & {
|
|
737
797
|
inset?: boolean;
|
|
738
|
-
variant?:
|
|
739
|
-
}):
|
|
798
|
+
variant?: 'default' | 'destructive';
|
|
799
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
740
800
|
declare function DropdownMenuSub({
|
|
741
801
|
...props
|
|
742
|
-
}: Menu.SubmenuRoot.Props):
|
|
802
|
+
}: Menu.SubmenuRoot.Props): react_jsx_runtime0.JSX.Element;
|
|
743
803
|
declare function DropdownMenuSubTrigger({
|
|
744
804
|
className,
|
|
745
805
|
inset,
|
|
@@ -747,7 +807,7 @@ declare function DropdownMenuSubTrigger({
|
|
|
747
807
|
...props
|
|
748
808
|
}: Menu.SubmenuTrigger.Props & {
|
|
749
809
|
inset?: boolean;
|
|
750
|
-
}):
|
|
810
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
751
811
|
declare function DropdownMenuSubContent({
|
|
752
812
|
align,
|
|
753
813
|
alignOffset,
|
|
@@ -755,7 +815,7 @@ declare function DropdownMenuSubContent({
|
|
|
755
815
|
sideOffset,
|
|
756
816
|
className,
|
|
757
817
|
...props
|
|
758
|
-
}: React$2.ComponentProps<typeof DropdownMenuContent>):
|
|
818
|
+
}: React$2.ComponentProps<typeof DropdownMenuContent>): react_jsx_runtime0.JSX.Element;
|
|
759
819
|
declare function DropdownMenuCheckboxItem({
|
|
760
820
|
className,
|
|
761
821
|
children,
|
|
@@ -764,10 +824,10 @@ declare function DropdownMenuCheckboxItem({
|
|
|
764
824
|
...props
|
|
765
825
|
}: Menu.CheckboxItem.Props & {
|
|
766
826
|
inset?: boolean;
|
|
767
|
-
}):
|
|
827
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
768
828
|
declare function DropdownMenuRadioGroup({
|
|
769
829
|
...props
|
|
770
|
-
}: Menu.RadioGroup.Props):
|
|
830
|
+
}: Menu.RadioGroup.Props): react_jsx_runtime0.JSX.Element;
|
|
771
831
|
declare function DropdownMenuRadioItem({
|
|
772
832
|
className,
|
|
773
833
|
children,
|
|
@@ -775,21 +835,124 @@ declare function DropdownMenuRadioItem({
|
|
|
775
835
|
...props
|
|
776
836
|
}: Menu.RadioItem.Props & {
|
|
777
837
|
inset?: boolean;
|
|
778
|
-
}):
|
|
838
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
779
839
|
declare function DropdownMenuSeparator({
|
|
780
840
|
className,
|
|
781
841
|
...props
|
|
782
|
-
}: Menu.Separator.Props):
|
|
842
|
+
}: Menu.Separator.Props): react_jsx_runtime0.JSX.Element;
|
|
783
843
|
declare function DropdownMenuShortcut({
|
|
784
844
|
className,
|
|
785
845
|
...props
|
|
786
|
-
}: React$2.ComponentProps<
|
|
846
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
|
|
847
|
+
declare function DropdownMenuAddon({
|
|
848
|
+
className,
|
|
849
|
+
...props
|
|
850
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
|
|
787
851
|
type DropdownMenuContentProps = React$2.ComponentProps<typeof DropdownMenuContent>;
|
|
788
852
|
//#endregion
|
|
853
|
+
//#region src/components/empty.d.ts
|
|
854
|
+
declare function Empty({
|
|
855
|
+
className,
|
|
856
|
+
...props
|
|
857
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
858
|
+
declare function EmptyHeader({
|
|
859
|
+
className,
|
|
860
|
+
...props
|
|
861
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
862
|
+
declare const emptyMediaVariants: (props?: ({
|
|
863
|
+
variant?: "default" | "icon" | null | undefined;
|
|
864
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
865
|
+
declare function EmptyMedia({
|
|
866
|
+
className,
|
|
867
|
+
variant,
|
|
868
|
+
...props
|
|
869
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime0.JSX.Element;
|
|
870
|
+
declare function EmptyTitle({
|
|
871
|
+
className,
|
|
872
|
+
...props
|
|
873
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
874
|
+
declare function EmptyDescription({
|
|
875
|
+
className,
|
|
876
|
+
...props
|
|
877
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime0.JSX.Element;
|
|
878
|
+
declare function EmptyContent({
|
|
879
|
+
className,
|
|
880
|
+
...props
|
|
881
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
882
|
+
//#endregion
|
|
883
|
+
//#region src/components/dropzone.d.ts
|
|
884
|
+
/** Error codes — same set as react-dropzone, so consumers can share translation logic. */
|
|
885
|
+
type DropzoneErrorCode = 'too-many-files' | 'file-too-large' | 'file-too-small' | 'file-invalid-type' | (string & {});
|
|
886
|
+
interface FileError {
|
|
887
|
+
code: DropzoneErrorCode;
|
|
888
|
+
message: string;
|
|
889
|
+
}
|
|
890
|
+
/** Same shape as react-dropzone's `FileRejection`. */
|
|
891
|
+
interface FileRejection {
|
|
892
|
+
file: File;
|
|
893
|
+
errors: FileError[];
|
|
894
|
+
}
|
|
895
|
+
interface DropzoneProps extends Omit<React$2.ComponentProps<'div'>, 'onDrop' | 'onError'> {
|
|
896
|
+
/** e.g. `"audio/*,.pdf"`. */
|
|
897
|
+
accept?: string;
|
|
898
|
+
multiple?: boolean;
|
|
899
|
+
maxFiles?: number;
|
|
900
|
+
/** Max bytes per file. */
|
|
901
|
+
maxSize?: number;
|
|
902
|
+
/** Min bytes per file. */
|
|
903
|
+
minSize?: number;
|
|
904
|
+
disabled?: boolean;
|
|
905
|
+
/** Fires with accepted files. On mixed batches fires alongside `onError`. */
|
|
906
|
+
onFiles?: (files: File[]) => void;
|
|
907
|
+
/** Fires with rejected files (same shape as react-dropzone's `onDropRejected`). */
|
|
908
|
+
onError?: (rejections: FileRejection[]) => void;
|
|
909
|
+
/** Overlay message during drag-over. */
|
|
910
|
+
hoverMessage?: React$2.ReactNode;
|
|
911
|
+
/** Opt-in: shown in the destructive overlay when the dragged MIME doesn't match `accept`. */
|
|
912
|
+
dragRejectMessage?: React$2.ReactNode;
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* Headless drop-target — handles drag/drop state, validation, and the hover
|
|
916
|
+
* overlay. Has no visual chrome; wrap content in `<DropzoneContent>` for the
|
|
917
|
+
* standard dashed-border look, or compose around any other control (textarea,
|
|
918
|
+
* etc.) for file-drop on an arbitrary surface.
|
|
919
|
+
*/
|
|
920
|
+
declare const Dropzone: React$2.ForwardRefExoticComponent<Omit<DropzoneProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
921
|
+
interface DropzoneContentProps extends React$2.ComponentProps<'div'> {
|
|
922
|
+
/** Renders the dropzone content in an error state (red dashed border). */
|
|
923
|
+
error?: boolean;
|
|
924
|
+
}
|
|
925
|
+
/**
|
|
926
|
+
* Visual file-picker card — dashed border, centered layout, and click /
|
|
927
|
+
* Space / Enter open the picker. Omit it (and use `<DropzoneTrigger>`)
|
|
928
|
+
* when you want file-drop on an existing surface instead.
|
|
929
|
+
*/
|
|
930
|
+
declare const DropzoneContent: React$2.ForwardRefExoticComponent<Omit<DropzoneContentProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
931
|
+
/** `<EmptyMedia>` with `variant="icon"` baked in. */
|
|
932
|
+
declare function DropzoneIcon({
|
|
933
|
+
variant,
|
|
934
|
+
...props
|
|
935
|
+
}: React$2.ComponentProps<typeof EmptyMedia>): react_jsx_runtime0.JSX.Element;
|
|
936
|
+
declare function DropzoneTitle({
|
|
937
|
+
className,
|
|
938
|
+
...props
|
|
939
|
+
}: React$2.ComponentProps<typeof EmptyTitle>): react_jsx_runtime0.JSX.Element;
|
|
940
|
+
declare function DropzoneDescription(props: React$2.ComponentProps<typeof EmptyDescription>): react_jsx_runtime0.JSX.Element;
|
|
941
|
+
declare function DropzoneActions({
|
|
942
|
+
className,
|
|
943
|
+
...props
|
|
944
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
945
|
+
/**
|
|
946
|
+
* Opens the file picker on click. Default-renders a DS `<Button>`; pass
|
|
947
|
+
* `render` (Base UI convention) to substitute another element.
|
|
948
|
+
*/
|
|
949
|
+
declare const DropzoneTrigger: React$2.ForwardRefExoticComponent<Omit<useRender.ComponentProps<"button", {}, _base_ui_react4.HTMLProps>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
950
|
+
type DropzoneTriggerProps = useRender.ComponentProps<'button'>;
|
|
951
|
+
//#endregion
|
|
789
952
|
//#region src/components/popover.d.ts
|
|
790
953
|
declare function Popover({
|
|
791
954
|
...props
|
|
792
|
-
}: Popover$1.Root.Props):
|
|
955
|
+
}: Popover$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
793
956
|
declare const PopoverTrigger: React$2.ForwardRefExoticComponent<Omit<Popover$1.Trigger.Props<unknown>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
794
957
|
declare function PopoverContent({
|
|
795
958
|
className,
|
|
@@ -798,19 +961,19 @@ declare function PopoverContent({
|
|
|
798
961
|
side,
|
|
799
962
|
sideOffset,
|
|
800
963
|
...props
|
|
801
|
-
}: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'>):
|
|
964
|
+
}: Popover$1.Popup.Props & Pick<Popover$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): react_jsx_runtime0.JSX.Element;
|
|
802
965
|
declare function PopoverHeader({
|
|
803
966
|
className,
|
|
804
967
|
...props
|
|
805
|
-
}: React$2.ComponentProps<'div'>):
|
|
968
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
806
969
|
declare function PopoverTitle({
|
|
807
970
|
className,
|
|
808
971
|
...props
|
|
809
|
-
}: Popover$1.Title.Props):
|
|
972
|
+
}: Popover$1.Title.Props): react_jsx_runtime0.JSX.Element;
|
|
810
973
|
declare function PopoverDescription({
|
|
811
974
|
className,
|
|
812
975
|
...props
|
|
813
|
-
}: Popover$1.Description.Props):
|
|
976
|
+
}: Popover$1.Description.Props): react_jsx_runtime0.JSX.Element;
|
|
814
977
|
//#endregion
|
|
815
978
|
//#region src/components/emoji-picker.d.ts
|
|
816
979
|
declare const EmojiPickerCategories: {
|
|
@@ -835,7 +998,7 @@ type EmojiPickerProps = {
|
|
|
835
998
|
declare function EmojiPicker({
|
|
836
999
|
onEmojiSelect,
|
|
837
1000
|
children
|
|
838
|
-
}: EmojiPickerProps):
|
|
1001
|
+
}: EmojiPickerProps): react_jsx_runtime0.JSX.Element;
|
|
839
1002
|
declare const EmojiPickerTrigger: React$2.ForwardRefExoticComponent<Omit<Popover$1.Trigger.Props<unknown>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
840
1003
|
type EmojiPickerContentProps = Omit<React$2.ComponentProps<typeof PopoverContent>, 'children'> & {
|
|
841
1004
|
searchPlaceholder?: string;
|
|
@@ -851,91 +1014,71 @@ declare function EmojiPickerContent({
|
|
|
851
1014
|
width,
|
|
852
1015
|
suggestedEmojisMode,
|
|
853
1016
|
...props
|
|
854
|
-
}: EmojiPickerContentProps):
|
|
1017
|
+
}: EmojiPickerContentProps): react_jsx_runtime0.JSX.Element;
|
|
855
1018
|
//#endregion
|
|
856
|
-
//#region src/components/
|
|
857
|
-
declare
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
}
|
|
861
|
-
declare
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
}
|
|
865
|
-
declare const emptyMediaVariants: (props?: ({
|
|
866
|
-
variant?: "default" | "icon" | null | undefined;
|
|
867
|
-
} & class_variance_authority_types1.ClassProp) | undefined) => string;
|
|
868
|
-
declare function EmptyMedia({
|
|
869
|
-
className,
|
|
870
|
-
variant,
|
|
871
|
-
...props
|
|
872
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime11.JSX.Element;
|
|
873
|
-
declare function EmptyTitle({
|
|
874
|
-
className,
|
|
875
|
-
...props
|
|
876
|
-
}: React.ComponentProps<'div'>): react_jsx_runtime11.JSX.Element;
|
|
877
|
-
declare function EmptyDescription({
|
|
878
|
-
className,
|
|
879
|
-
...props
|
|
880
|
-
}: React.ComponentProps<'p'>): react_jsx_runtime11.JSX.Element;
|
|
881
|
-
declare function EmptyContent({
|
|
882
|
-
className,
|
|
883
|
-
...props
|
|
884
|
-
}: React.ComponentProps<'div'>): react_jsx_runtime11.JSX.Element;
|
|
1019
|
+
//#region src/components/fab.d.ts
|
|
1020
|
+
declare const fabVariants: (props?: ({
|
|
1021
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1022
|
+
size?: "lg" | "icon-lg" | null | undefined;
|
|
1023
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1024
|
+
declare const FAB: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.ButtonProps & VariantProps<(props?: ({
|
|
1025
|
+
variant?: "default" | "outline" | null | undefined;
|
|
1026
|
+
size?: "lg" | "icon-lg" | null | undefined;
|
|
1027
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
885
1028
|
//#endregion
|
|
886
1029
|
//#region src/components/label.d.ts
|
|
887
1030
|
declare function Label({
|
|
888
1031
|
className,
|
|
889
1032
|
...props
|
|
890
|
-
}: React$2.ComponentProps<"label">):
|
|
1033
|
+
}: React$2.ComponentProps<"label">): react_jsx_runtime0.JSX.Element;
|
|
891
1034
|
//#endregion
|
|
892
1035
|
//#region src/components/field.d.ts
|
|
893
1036
|
declare function FieldSet({
|
|
894
1037
|
className,
|
|
895
1038
|
...props
|
|
896
|
-
}: React.ComponentProps<"fieldset">):
|
|
1039
|
+
}: React.ComponentProps<"fieldset">): react_jsx_runtime0.JSX.Element;
|
|
897
1040
|
declare function FieldLegend({
|
|
898
1041
|
className,
|
|
899
1042
|
variant,
|
|
900
1043
|
...props
|
|
901
1044
|
}: React.ComponentProps<"legend"> & {
|
|
902
1045
|
variant?: "legend" | "label";
|
|
903
|
-
}):
|
|
1046
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
904
1047
|
declare function FieldGroup({
|
|
905
1048
|
className,
|
|
906
1049
|
...props
|
|
907
|
-
}: React.ComponentProps<"div">):
|
|
1050
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
908
1051
|
declare const fieldVariants: (props?: ({
|
|
909
1052
|
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
910
|
-
} &
|
|
1053
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
911
1054
|
declare function Field({
|
|
912
1055
|
className,
|
|
913
1056
|
orientation,
|
|
914
1057
|
...props
|
|
915
|
-
}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>):
|
|
1058
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime0.JSX.Element;
|
|
916
1059
|
declare function FieldContent({
|
|
917
1060
|
className,
|
|
918
1061
|
...props
|
|
919
|
-
}: React.ComponentProps<"div">):
|
|
1062
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
920
1063
|
declare function FieldLabel({
|
|
921
1064
|
className,
|
|
922
1065
|
...props
|
|
923
|
-
}: React.ComponentProps<typeof Label>):
|
|
1066
|
+
}: React.ComponentProps<typeof Label>): react_jsx_runtime0.JSX.Element;
|
|
924
1067
|
declare function FieldTitle({
|
|
925
1068
|
className,
|
|
926
1069
|
...props
|
|
927
|
-
}: React.ComponentProps<"div">):
|
|
1070
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
928
1071
|
declare function FieldDescription({
|
|
929
1072
|
className,
|
|
930
1073
|
...props
|
|
931
|
-
}: React.ComponentProps<"p">):
|
|
1074
|
+
}: React.ComponentProps<"p">): react_jsx_runtime0.JSX.Element;
|
|
932
1075
|
declare function FieldSeparator({
|
|
933
1076
|
children,
|
|
934
1077
|
className,
|
|
935
1078
|
...props
|
|
936
1079
|
}: React.ComponentProps<"div"> & {
|
|
937
1080
|
children?: React.ReactNode;
|
|
938
|
-
}):
|
|
1081
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
939
1082
|
declare function FieldError({
|
|
940
1083
|
className,
|
|
941
1084
|
children,
|
|
@@ -945,34 +1088,48 @@ declare function FieldError({
|
|
|
945
1088
|
errors?: Array<{
|
|
946
1089
|
message?: string;
|
|
947
1090
|
} | undefined>;
|
|
948
|
-
}):
|
|
1091
|
+
}): react_jsx_runtime0.JSX.Element | null;
|
|
1092
|
+
//#endregion
|
|
1093
|
+
//#region src/components/gauge.d.ts
|
|
1094
|
+
interface GaugeProps extends Omit<React$2.ComponentProps<'div'>, 'children'> {
|
|
1095
|
+
/**
|
|
1096
|
+
* The current value of the gauge, clamped to `[0, 8]`. Values past 8 are
|
|
1097
|
+
* shown as fully saturated (all segments filled).
|
|
1098
|
+
*/
|
|
1099
|
+
value: number;
|
|
1100
|
+
}
|
|
1101
|
+
declare function Gauge({
|
|
1102
|
+
className,
|
|
1103
|
+
value,
|
|
1104
|
+
...props
|
|
1105
|
+
}: GaugeProps): react_jsx_runtime0.JSX.Element;
|
|
949
1106
|
//#endregion
|
|
950
1107
|
//#region src/components/input-group.d.ts
|
|
951
1108
|
declare const InputGroup: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
952
1109
|
declare const inputGroupAddonVariants: (props?: ({
|
|
953
1110
|
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
954
|
-
} &
|
|
1111
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
955
1112
|
declare function InputGroupAddon({
|
|
956
1113
|
className,
|
|
957
1114
|
align,
|
|
958
1115
|
...props
|
|
959
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>):
|
|
960
|
-
declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<
|
|
961
|
-
variant?: "default" | "
|
|
962
|
-
size?: "
|
|
1116
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime0.JSX.Element;
|
|
1117
|
+
declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<_base_ui_react4.ButtonProps & VariantProps<(props?: ({
|
|
1118
|
+
variant?: "default" | "link" | "secondary" | "ghost" | "destructive" | "outline" | null | undefined;
|
|
1119
|
+
size?: "sm" | "default" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
963
1120
|
block?: boolean | null | undefined;
|
|
964
|
-
} &
|
|
1121
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
965
1122
|
declare function InputGroupText({
|
|
966
1123
|
className,
|
|
967
1124
|
...props
|
|
968
|
-
}: React$2.ComponentProps<'span'>):
|
|
1125
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
|
|
969
1126
|
declare const InputGroupInput: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
970
1127
|
block?: boolean | null | undefined;
|
|
971
|
-
} &
|
|
1128
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
972
1129
|
declare function InputGroupTextarea({
|
|
973
1130
|
className,
|
|
974
1131
|
...props
|
|
975
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
1132
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime0.JSX.Element;
|
|
976
1133
|
//#endregion
|
|
977
1134
|
//#region src/components/input-otp.d.ts
|
|
978
1135
|
declare function InputOTP({
|
|
@@ -981,26 +1138,26 @@ declare function InputOTP({
|
|
|
981
1138
|
...props
|
|
982
1139
|
}: React$2.ComponentProps<typeof OTPInput> & {
|
|
983
1140
|
containerClassName?: string;
|
|
984
|
-
}):
|
|
1141
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
985
1142
|
declare function InputOTPGroup({
|
|
986
1143
|
className,
|
|
987
1144
|
...props
|
|
988
|
-
}: React$2.ComponentProps<'div'>):
|
|
1145
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
989
1146
|
declare function InputOTPSlot({
|
|
990
1147
|
index,
|
|
991
1148
|
className,
|
|
992
1149
|
...props
|
|
993
1150
|
}: React$2.ComponentProps<'div'> & {
|
|
994
1151
|
index: number;
|
|
995
|
-
}):
|
|
1152
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
996
1153
|
declare function InputOTPSeparator({
|
|
997
1154
|
...props
|
|
998
|
-
}: React$2.ComponentProps<'div'>):
|
|
1155
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
999
1156
|
//#endregion
|
|
1000
1157
|
//#region src/components/input.d.ts
|
|
1001
1158
|
declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
1002
1159
|
block?: boolean | null | undefined;
|
|
1003
|
-
} &
|
|
1160
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLInputElement>>;
|
|
1004
1161
|
//#endregion
|
|
1005
1162
|
//#region src/components/item.d.ts
|
|
1006
1163
|
interface ItemGroupProps extends React$2.ComponentProps<"div"> {
|
|
@@ -1010,18 +1167,18 @@ declare const ItemGroup: React$2.ForwardRefExoticComponent<Omit<ItemGroupProps,
|
|
|
1010
1167
|
declare function ItemSeparator({
|
|
1011
1168
|
className,
|
|
1012
1169
|
...props
|
|
1013
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
1170
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
|
|
1014
1171
|
declare const Item: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1015
1172
|
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;
|
|
1016
1173
|
} & {
|
|
1017
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
1174
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
|
|
1018
1175
|
} & VariantProps<(props?: ({
|
|
1019
|
-
variant?: "default" | "
|
|
1020
|
-
size?: "
|
|
1021
|
-
} &
|
|
1176
|
+
variant?: "default" | "muted" | "outline" | null | undefined;
|
|
1177
|
+
size?: "xs" | "sm" | "default" | null | undefined;
|
|
1178
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1022
1179
|
declare const ItemMedia: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLDivElement> & React$2.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
1023
1180
|
variant?: "default" | "image" | "icon" | null | undefined;
|
|
1024
|
-
} &
|
|
1181
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1025
1182
|
declare const ItemContent: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1026
1183
|
declare const ItemTitle: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1027
1184
|
declare const ItemDescription: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React$2.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -1037,7 +1194,7 @@ declare const List: ({
|
|
|
1037
1194
|
children,
|
|
1038
1195
|
className,
|
|
1039
1196
|
...props
|
|
1040
|
-
}: ListProps) =>
|
|
1197
|
+
}: ListProps) => react_jsx_runtime0.JSX.Element;
|
|
1041
1198
|
interface ListRowProps extends React$2.HTMLAttributes<HTMLDivElement> {
|
|
1042
1199
|
children: React$2.ReactNode;
|
|
1043
1200
|
}
|
|
@@ -1053,20 +1210,20 @@ declare const ListCol: ({
|
|
|
1053
1210
|
children,
|
|
1054
1211
|
className,
|
|
1055
1212
|
...props
|
|
1056
|
-
}: ListColProps) =>
|
|
1213
|
+
}: ListColProps) => react_jsx_runtime0.JSX.Element;
|
|
1057
1214
|
//#endregion
|
|
1058
1215
|
//#region src/components/pagination.d.ts
|
|
1059
1216
|
declare function Pagination({
|
|
1060
1217
|
className,
|
|
1061
1218
|
...props
|
|
1062
|
-
}: React$2.ComponentProps<'nav'>):
|
|
1219
|
+
}: React$2.ComponentProps<'nav'>): react_jsx_runtime0.JSX.Element;
|
|
1063
1220
|
declare function PaginationContent({
|
|
1064
1221
|
className,
|
|
1065
1222
|
...props
|
|
1066
|
-
}: React$2.ComponentProps<'ul'>):
|
|
1223
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
|
|
1067
1224
|
declare function PaginationItem({
|
|
1068
1225
|
...props
|
|
1069
|
-
}: React$2.ComponentProps<'li'>):
|
|
1226
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
|
|
1070
1227
|
type PaginationLinkProps = {
|
|
1071
1228
|
isActive?: boolean;
|
|
1072
1229
|
} & Pick<React$2.ComponentProps<typeof Button>, 'size'> & React$2.ComponentProps<'a'>;
|
|
@@ -1075,25 +1232,25 @@ declare function PaginationLink({
|
|
|
1075
1232
|
isActive,
|
|
1076
1233
|
size,
|
|
1077
1234
|
...props
|
|
1078
|
-
}: PaginationLinkProps):
|
|
1235
|
+
}: PaginationLinkProps): react_jsx_runtime0.JSX.Element;
|
|
1079
1236
|
declare function PaginationPrevious({
|
|
1080
1237
|
className,
|
|
1081
1238
|
text,
|
|
1082
1239
|
...props
|
|
1083
1240
|
}: React$2.ComponentProps<typeof PaginationLink> & {
|
|
1084
1241
|
text?: string;
|
|
1085
|
-
}):
|
|
1242
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1086
1243
|
declare function PaginationNext({
|
|
1087
1244
|
className,
|
|
1088
1245
|
text,
|
|
1089
1246
|
...props
|
|
1090
1247
|
}: React$2.ComponentProps<typeof PaginationLink> & {
|
|
1091
1248
|
text?: string;
|
|
1092
|
-
}):
|
|
1249
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1093
1250
|
declare function PaginationEllipsis({
|
|
1094
1251
|
className,
|
|
1095
1252
|
...props
|
|
1096
|
-
}: React$2.ComponentProps<'span'>):
|
|
1253
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime0.JSX.Element;
|
|
1097
1254
|
//#endregion
|
|
1098
1255
|
//#region src/components/progress.d.ts
|
|
1099
1256
|
declare function Progress({
|
|
@@ -1101,33 +1258,33 @@ declare function Progress({
|
|
|
1101
1258
|
children,
|
|
1102
1259
|
value,
|
|
1103
1260
|
...props
|
|
1104
|
-
}: Progress$1.Root.Props):
|
|
1261
|
+
}: Progress$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
1105
1262
|
declare function ProgressTrack({
|
|
1106
1263
|
className,
|
|
1107
1264
|
...props
|
|
1108
|
-
}: Progress$1.Track.Props):
|
|
1265
|
+
}: Progress$1.Track.Props): react_jsx_runtime0.JSX.Element;
|
|
1109
1266
|
declare function ProgressIndicator({
|
|
1110
1267
|
className,
|
|
1111
1268
|
...props
|
|
1112
|
-
}: Progress$1.Indicator.Props):
|
|
1269
|
+
}: Progress$1.Indicator.Props): react_jsx_runtime0.JSX.Element;
|
|
1113
1270
|
declare function ProgressLabel({
|
|
1114
1271
|
className,
|
|
1115
1272
|
...props
|
|
1116
|
-
}: Progress$1.Label.Props):
|
|
1273
|
+
}: Progress$1.Label.Props): react_jsx_runtime0.JSX.Element;
|
|
1117
1274
|
declare function ProgressValue({
|
|
1118
1275
|
className,
|
|
1119
1276
|
...props
|
|
1120
|
-
}: Progress$1.Value.Props):
|
|
1277
|
+
}: Progress$1.Value.Props): react_jsx_runtime0.JSX.Element;
|
|
1121
1278
|
//#endregion
|
|
1122
1279
|
//#region src/components/radio-group.d.ts
|
|
1123
1280
|
declare function RadioGroup({
|
|
1124
1281
|
className,
|
|
1125
1282
|
...props
|
|
1126
|
-
}: RadioGroup$1.Props):
|
|
1283
|
+
}: RadioGroup$1.Props): react_jsx_runtime0.JSX.Element;
|
|
1127
1284
|
declare function RadioGroupItem({
|
|
1128
1285
|
className,
|
|
1129
1286
|
...props
|
|
1130
|
-
}: Radio.Root.Props):
|
|
1287
|
+
}: Radio.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
1131
1288
|
//#endregion
|
|
1132
1289
|
//#region src/components/scroll-area.d.ts
|
|
1133
1290
|
declare function ScrollArea({
|
|
@@ -1148,23 +1305,23 @@ declare function ScrollBar({
|
|
|
1148
1305
|
//#endregion
|
|
1149
1306
|
//#region src/components/select.d.ts
|
|
1150
1307
|
declare const selectTriggerVariants: (props?: ({
|
|
1151
|
-
size?: "
|
|
1152
|
-
} &
|
|
1308
|
+
size?: "sm" | "default" | null | undefined;
|
|
1309
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1153
1310
|
declare const Select: typeof Select$1.Root;
|
|
1154
1311
|
declare function SelectGroup({
|
|
1155
1312
|
className,
|
|
1156
1313
|
...props
|
|
1157
|
-
}: Select$1.Group.Props):
|
|
1314
|
+
}: Select$1.Group.Props): react_jsx_runtime0.JSX.Element;
|
|
1158
1315
|
declare function SelectValue({
|
|
1159
1316
|
className,
|
|
1160
1317
|
...props
|
|
1161
|
-
}: Select$1.Value.Props):
|
|
1318
|
+
}: Select$1.Value.Props): react_jsx_runtime0.JSX.Element;
|
|
1162
1319
|
declare function SelectTrigger({
|
|
1163
1320
|
className,
|
|
1164
1321
|
size,
|
|
1165
1322
|
children,
|
|
1166
1323
|
...props
|
|
1167
|
-
}: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>):
|
|
1324
|
+
}: Select$1.Trigger.Props & VariantProps<typeof selectTriggerVariants>): react_jsx_runtime0.JSX.Element;
|
|
1168
1325
|
declare function SelectContent({
|
|
1169
1326
|
className,
|
|
1170
1327
|
children,
|
|
@@ -1174,39 +1331,39 @@ declare function SelectContent({
|
|
|
1174
1331
|
alignOffset,
|
|
1175
1332
|
alignItemWithTrigger,
|
|
1176
1333
|
...props
|
|
1177
|
-
}: Select$1.Popup.Props & Pick<Select$1.Positioner.Props,
|
|
1334
|
+
}: Select$1.Popup.Props & Pick<Select$1.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset' | 'alignItemWithTrigger'>): react_jsx_runtime0.JSX.Element;
|
|
1178
1335
|
declare function SelectLabel({
|
|
1179
1336
|
className,
|
|
1180
1337
|
...props
|
|
1181
|
-
}: Select$1.GroupLabel.Props):
|
|
1338
|
+
}: Select$1.GroupLabel.Props): react_jsx_runtime0.JSX.Element;
|
|
1182
1339
|
declare function SelectItem({
|
|
1183
1340
|
className,
|
|
1184
1341
|
children,
|
|
1185
1342
|
...props
|
|
1186
|
-
}: Select$1.Item.Props):
|
|
1343
|
+
}: Select$1.Item.Props): react_jsx_runtime0.JSX.Element;
|
|
1187
1344
|
declare function SelectSeparator({
|
|
1188
1345
|
className,
|
|
1189
1346
|
...props
|
|
1190
|
-
}: Select$1.Separator.Props):
|
|
1347
|
+
}: Select$1.Separator.Props): react_jsx_runtime0.JSX.Element;
|
|
1191
1348
|
declare function SelectScrollUpButton({
|
|
1192
1349
|
className,
|
|
1193
1350
|
...props
|
|
1194
|
-
}: React$2.ComponentProps<typeof Select$1.ScrollUpArrow>):
|
|
1351
|
+
}: React$2.ComponentProps<typeof Select$1.ScrollUpArrow>): react_jsx_runtime0.JSX.Element;
|
|
1195
1352
|
declare function SelectScrollDownButton({
|
|
1196
1353
|
className,
|
|
1197
1354
|
...props
|
|
1198
|
-
}: React$2.ComponentProps<typeof Select$1.ScrollDownArrow>):
|
|
1355
|
+
}: React$2.ComponentProps<typeof Select$1.ScrollDownArrow>): react_jsx_runtime0.JSX.Element;
|
|
1199
1356
|
//#endregion
|
|
1200
1357
|
//#region src/components/sheet.d.ts
|
|
1201
1358
|
declare function Sheet({
|
|
1202
1359
|
...props
|
|
1203
|
-
}: Dialog$1.Root.Props):
|
|
1360
|
+
}: Dialog$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
1204
1361
|
declare function SheetTrigger({
|
|
1205
1362
|
...props
|
|
1206
|
-
}: Dialog$1.Trigger.Props):
|
|
1363
|
+
}: Dialog$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
1207
1364
|
declare function SheetClose({
|
|
1208
1365
|
...props
|
|
1209
|
-
}: Dialog$1.Close.Props):
|
|
1366
|
+
}: Dialog$1.Close.Props): react_jsx_runtime0.JSX.Element;
|
|
1210
1367
|
declare function SheetContent({
|
|
1211
1368
|
className,
|
|
1212
1369
|
children,
|
|
@@ -1217,36 +1374,36 @@ declare function SheetContent({
|
|
|
1217
1374
|
}: Dialog$1.Popup.Props & {
|
|
1218
1375
|
side?: "top" | "right" | "bottom" | "left";
|
|
1219
1376
|
showCloseButton?: boolean;
|
|
1220
|
-
} & Pick<Dialog$1.Portal.Props, "container">):
|
|
1377
|
+
} & Pick<Dialog$1.Portal.Props, "container">): react_jsx_runtime0.JSX.Element;
|
|
1221
1378
|
declare function SheetHeader({
|
|
1222
1379
|
className,
|
|
1223
1380
|
...props
|
|
1224
|
-
}: React$2.ComponentProps<"div">):
|
|
1381
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1225
1382
|
declare function SheetFooter({
|
|
1226
1383
|
className,
|
|
1227
1384
|
...props
|
|
1228
|
-
}: React$2.ComponentProps<"div">):
|
|
1385
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1229
1386
|
declare function SheetTitle({
|
|
1230
1387
|
className,
|
|
1231
1388
|
...props
|
|
1232
|
-
}: Dialog$1.Title.Props):
|
|
1389
|
+
}: Dialog$1.Title.Props): react_jsx_runtime0.JSX.Element;
|
|
1233
1390
|
declare function SheetDescription({
|
|
1234
1391
|
className,
|
|
1235
1392
|
...props
|
|
1236
|
-
}: Dialog$1.Description.Props):
|
|
1393
|
+
}: Dialog$1.Description.Props): react_jsx_runtime0.JSX.Element;
|
|
1237
1394
|
//#endregion
|
|
1238
1395
|
//#region src/components/tooltip.d.ts
|
|
1239
1396
|
declare function TooltipProvider({
|
|
1240
1397
|
delay,
|
|
1241
1398
|
...props
|
|
1242
|
-
}: Tooltip$1.Provider.Props):
|
|
1399
|
+
}: Tooltip$1.Provider.Props): react_jsx_runtime0.JSX.Element;
|
|
1243
1400
|
declare function Tooltip({
|
|
1244
1401
|
...props
|
|
1245
|
-
}: Tooltip$1.Root.Props):
|
|
1402
|
+
}: Tooltip$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
1246
1403
|
declare function TooltipTrigger({
|
|
1247
1404
|
...props
|
|
1248
|
-
}: Tooltip$1.Trigger.Props):
|
|
1249
|
-
declare const TooltipContent: React$2.ForwardRefExoticComponent<Omit<
|
|
1405
|
+
}: Tooltip$1.Trigger.Props): react_jsx_runtime0.JSX.Element;
|
|
1406
|
+
declare const TooltipContent: React$2.ForwardRefExoticComponent<Omit<_base_ui_react4.TooltipPopupProps & Pick<_base_ui_react4.TooltipPositionerProps, "align" | "alignOffset" | "side" | "sideOffset">, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
1250
1407
|
//#endregion
|
|
1251
1408
|
//#region src/components/sidebar.d.ts
|
|
1252
1409
|
type SidebarContextProps = {
|
|
@@ -1271,7 +1428,7 @@ declare function SidebarProvider({
|
|
|
1271
1428
|
defaultOpen?: boolean;
|
|
1272
1429
|
open?: boolean;
|
|
1273
1430
|
onOpenChange?: (open: boolean) => void;
|
|
1274
|
-
}):
|
|
1431
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1275
1432
|
declare function Sidebar({
|
|
1276
1433
|
side,
|
|
1277
1434
|
variant,
|
|
@@ -1284,44 +1441,44 @@ declare function Sidebar({
|
|
|
1284
1441
|
side?: 'left' | 'right';
|
|
1285
1442
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
1286
1443
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
1287
|
-
}):
|
|
1444
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1288
1445
|
declare function SidebarTrigger({
|
|
1289
1446
|
className,
|
|
1290
1447
|
onClick,
|
|
1291
1448
|
...props
|
|
1292
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
1449
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
|
|
1293
1450
|
declare function SidebarRail({
|
|
1294
1451
|
className,
|
|
1295
1452
|
...props
|
|
1296
|
-
}: React$2.ComponentProps<'button'>):
|
|
1453
|
+
}: React$2.ComponentProps<'button'>): react_jsx_runtime0.JSX.Element;
|
|
1297
1454
|
declare function SidebarInset({
|
|
1298
1455
|
className,
|
|
1299
1456
|
...props
|
|
1300
|
-
}: React$2.ComponentProps<'main'>):
|
|
1457
|
+
}: React$2.ComponentProps<'main'>): react_jsx_runtime0.JSX.Element;
|
|
1301
1458
|
declare function SidebarInput({
|
|
1302
1459
|
className,
|
|
1303
1460
|
...props
|
|
1304
|
-
}: React$2.ComponentProps<typeof Input>):
|
|
1461
|
+
}: React$2.ComponentProps<typeof Input>): react_jsx_runtime0.JSX.Element;
|
|
1305
1462
|
declare function SidebarHeader({
|
|
1306
1463
|
className,
|
|
1307
1464
|
...props
|
|
1308
|
-
}: React$2.ComponentProps<'div'>):
|
|
1465
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
1309
1466
|
declare function SidebarFooter({
|
|
1310
1467
|
className,
|
|
1311
1468
|
...props
|
|
1312
|
-
}: React$2.ComponentProps<'div'>):
|
|
1469
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
1313
1470
|
declare function SidebarSeparator({
|
|
1314
1471
|
className,
|
|
1315
1472
|
...props
|
|
1316
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
1473
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
|
|
1317
1474
|
declare function SidebarContent({
|
|
1318
1475
|
className,
|
|
1319
1476
|
...props
|
|
1320
|
-
}: React$2.ComponentProps<'div'>):
|
|
1477
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
1321
1478
|
declare function SidebarGroup({
|
|
1322
1479
|
className,
|
|
1323
1480
|
...props
|
|
1324
|
-
}: React$2.ComponentProps<'div'>):
|
|
1481
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
1325
1482
|
declare function SidebarGroupLabel({
|
|
1326
1483
|
className,
|
|
1327
1484
|
render,
|
|
@@ -1335,37 +1492,37 @@ declare function SidebarGroupAction({
|
|
|
1335
1492
|
declare function SidebarGroupContent({
|
|
1336
1493
|
className,
|
|
1337
1494
|
...props
|
|
1338
|
-
}: React$2.ComponentProps<'div'>):
|
|
1495
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
1339
1496
|
declare function SidebarMenu({
|
|
1340
1497
|
className,
|
|
1341
1498
|
...props
|
|
1342
|
-
}: React$2.ComponentProps<'ul'>):
|
|
1499
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
|
|
1343
1500
|
declare function SidebarMenuItem({
|
|
1344
1501
|
className,
|
|
1345
1502
|
...props
|
|
1346
|
-
}: React$2.ComponentProps<'li'>):
|
|
1503
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
|
|
1347
1504
|
declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
1348
1505
|
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;
|
|
1349
1506
|
} & {
|
|
1350
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
1507
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
|
|
1351
1508
|
} & React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1352
1509
|
isActive?: boolean;
|
|
1353
1510
|
tooltip?: string | React$2.ComponentProps<typeof TooltipContent>;
|
|
1354
1511
|
} & VariantProps<(props?: ({
|
|
1355
1512
|
variant?: "default" | "outline" | null | undefined;
|
|
1356
|
-
size?: "
|
|
1357
|
-
} &
|
|
1513
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
1514
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1358
1515
|
declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.DetailedHTMLProps<React$2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
1359
1516
|
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;
|
|
1360
1517
|
} & {
|
|
1361
|
-
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> |
|
|
1518
|
+
render?: React$2.ReactElement<any, string | React$2.JSXElementConstructor<any>> | _base_ui_react4.ComponentRenderFn<_base_ui_react4.HTMLProps, {}> | undefined;
|
|
1362
1519
|
} & React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1363
1520
|
showOnHover?: boolean;
|
|
1364
1521
|
}, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
1365
1522
|
declare function SidebarMenuBadge({
|
|
1366
1523
|
className,
|
|
1367
1524
|
...props
|
|
1368
|
-
}: React$2.ComponentProps<'div'>):
|
|
1525
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
1369
1526
|
declare function SidebarMenuSkeleton({
|
|
1370
1527
|
className,
|
|
1371
1528
|
showIcon,
|
|
@@ -1374,15 +1531,15 @@ declare function SidebarMenuSkeleton({
|
|
|
1374
1531
|
}: Omit<React$2.ComponentProps<'div'>, 'width'> & {
|
|
1375
1532
|
showIcon?: boolean; /** Override the randomized skeleton width (e.g. for deterministic stories). */
|
|
1376
1533
|
width?: string;
|
|
1377
|
-
}):
|
|
1534
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1378
1535
|
declare function SidebarMenuSub({
|
|
1379
1536
|
className,
|
|
1380
1537
|
...props
|
|
1381
|
-
}: React$2.ComponentProps<'ul'>):
|
|
1538
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
|
|
1382
1539
|
declare function SidebarMenuSubItem({
|
|
1383
1540
|
className,
|
|
1384
1541
|
...props
|
|
1385
|
-
}: React$2.ComponentProps<'li'>):
|
|
1542
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
|
|
1386
1543
|
declare function SidebarMenuSubButton({
|
|
1387
1544
|
render,
|
|
1388
1545
|
size,
|
|
@@ -1398,7 +1555,7 @@ declare function SidebarMenuSubButton({
|
|
|
1398
1555
|
declare function Skeleton({
|
|
1399
1556
|
className,
|
|
1400
1557
|
...props
|
|
1401
|
-
}: React.ComponentProps<"div">):
|
|
1558
|
+
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
1402
1559
|
//#endregion
|
|
1403
1560
|
//#region src/components/slider.d.ts
|
|
1404
1561
|
declare function Slider({
|
|
@@ -1409,51 +1566,29 @@ declare function Slider({
|
|
|
1409
1566
|
max,
|
|
1410
1567
|
orientation,
|
|
1411
1568
|
...props
|
|
1412
|
-
}: Slider$1.Root.Props):
|
|
1569
|
+
}: Slider$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
1413
1570
|
//#endregion
|
|
1414
1571
|
//#region src/components/sonner.d.ts
|
|
1415
1572
|
declare const Toaster: ({
|
|
1416
1573
|
...props
|
|
1417
|
-
}: ToasterProps) =>
|
|
1574
|
+
}: ToasterProps) => react_jsx_runtime0.JSX.Element;
|
|
1418
1575
|
//#endregion
|
|
1419
1576
|
//#region src/components/spinner.d.ts
|
|
1420
1577
|
declare const spinnerVariants: (props?: ({
|
|
1421
|
-
size?: "
|
|
1422
|
-
} &
|
|
1578
|
+
size?: "sm" | "default" | "lg" | "xl" | null | undefined;
|
|
1579
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1423
1580
|
interface SpinnerProps extends React$2.ComponentProps<'svg'>, VariantProps<typeof spinnerVariants> {}
|
|
1424
1581
|
declare function Spinner({
|
|
1425
1582
|
className,
|
|
1426
1583
|
size,
|
|
1427
1584
|
...props
|
|
1428
|
-
}: SpinnerProps):
|
|
1585
|
+
}: SpinnerProps): react_jsx_runtime0.JSX.Element;
|
|
1429
1586
|
//#endregion
|
|
1430
1587
|
//#region src/components/switch.d.ts
|
|
1431
1588
|
declare function Switch({
|
|
1432
1589
|
className,
|
|
1433
1590
|
...props
|
|
1434
|
-
}: Switch$1.Root.Props):
|
|
1435
|
-
//#endregion
|
|
1436
|
-
//#region src/components/tab-bar.d.ts
|
|
1437
|
-
interface TabBarItem {
|
|
1438
|
-
value: string;
|
|
1439
|
-
label: string;
|
|
1440
|
-
to?: string;
|
|
1441
|
-
renderIcon?: () => React$2.ReactNode;
|
|
1442
|
-
}
|
|
1443
|
-
interface TabBarProps {
|
|
1444
|
-
tabs: TabBarItem[];
|
|
1445
|
-
activeTab: string;
|
|
1446
|
-
onTabChange?: (value: string) => void;
|
|
1447
|
-
renderTab?: (tab: TabBarItem, isActive: boolean) => React$2.ReactNode;
|
|
1448
|
-
className?: string;
|
|
1449
|
-
}
|
|
1450
|
-
declare function TabBar({
|
|
1451
|
-
tabs,
|
|
1452
|
-
activeTab,
|
|
1453
|
-
onTabChange,
|
|
1454
|
-
renderTab,
|
|
1455
|
-
className
|
|
1456
|
-
}: TabBarProps): react_jsx_runtime11.JSX.Element;
|
|
1591
|
+
}: Switch$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
1457
1592
|
//#endregion
|
|
1458
1593
|
//#region src/components/table.d.ts
|
|
1459
1594
|
declare const Table: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & React$2.RefAttributes<HTMLTableElement>>;
|
|
@@ -1470,25 +1605,25 @@ declare function Tabs({
|
|
|
1470
1605
|
className,
|
|
1471
1606
|
orientation,
|
|
1472
1607
|
...props
|
|
1473
|
-
}: Tabs$1.Root.Props):
|
|
1608
|
+
}: Tabs$1.Root.Props): react_jsx_runtime0.JSX.Element;
|
|
1474
1609
|
declare function TabsList({
|
|
1475
1610
|
className,
|
|
1476
1611
|
...props
|
|
1477
|
-
}: Tabs$1.List.Props):
|
|
1612
|
+
}: Tabs$1.List.Props): react_jsx_runtime0.JSX.Element;
|
|
1478
1613
|
declare function TabsTrigger({
|
|
1479
1614
|
className,
|
|
1480
1615
|
...props
|
|
1481
|
-
}: Tabs$1.Tab.Props):
|
|
1616
|
+
}: Tabs$1.Tab.Props): react_jsx_runtime0.JSX.Element;
|
|
1482
1617
|
declare function TabsContent({
|
|
1483
1618
|
className,
|
|
1484
1619
|
...props
|
|
1485
|
-
}: Tabs$1.Panel.Props):
|
|
1620
|
+
}: Tabs$1.Panel.Props): react_jsx_runtime0.JSX.Element;
|
|
1486
1621
|
//#endregion
|
|
1487
1622
|
//#region src/components/textarea.d.ts
|
|
1488
1623
|
declare function Textarea({
|
|
1489
1624
|
className,
|
|
1490
1625
|
...props
|
|
1491
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
1626
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime0.JSX.Element;
|
|
1492
1627
|
//#endregion
|
|
1493
1628
|
//#region src/components/theme-provider.d.ts
|
|
1494
1629
|
type ThemeProviderProps = ThemeProviderProps$1;
|
|
@@ -1500,14 +1635,14 @@ declare function ThemeProvider({
|
|
|
1500
1635
|
//#region src/components/toggle.d.ts
|
|
1501
1636
|
declare const toggleVariants: (props?: ({
|
|
1502
1637
|
variant?: "default" | "outline" | null | undefined;
|
|
1503
|
-
size?: "
|
|
1504
|
-
} &
|
|
1638
|
+
size?: "sm" | "default" | "lg" | null | undefined;
|
|
1639
|
+
} & class_variance_authority_types6.ClassProp) | undefined) => string;
|
|
1505
1640
|
declare function Toggle({
|
|
1506
1641
|
className,
|
|
1507
1642
|
variant,
|
|
1508
1643
|
size,
|
|
1509
1644
|
...props
|
|
1510
|
-
}: Toggle$1.Props & VariantProps<typeof toggleVariants>):
|
|
1645
|
+
}: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime0.JSX.Element;
|
|
1511
1646
|
//#endregion
|
|
1512
1647
|
//#region src/components/toggle-group.d.ts
|
|
1513
1648
|
declare function ToggleGroup({
|
|
@@ -1526,16 +1661,71 @@ declare function ToggleGroup({
|
|
|
1526
1661
|
* Stretch the group to fill its container.
|
|
1527
1662
|
*/
|
|
1528
1663
|
block?: boolean;
|
|
1529
|
-
}):
|
|
1664
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
1530
1665
|
declare function ToggleGroupItem({
|
|
1531
1666
|
className,
|
|
1532
1667
|
children,
|
|
1533
1668
|
variant,
|
|
1534
1669
|
size,
|
|
1535
1670
|
...props
|
|
1536
|
-
}: Toggle$1.Props & VariantProps<typeof toggleVariants>):
|
|
1671
|
+
}: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime0.JSX.Element;
|
|
1672
|
+
//#endregion
|
|
1673
|
+
//#region src/hooks/use-audio-gauge.d.ts
|
|
1674
|
+
interface UseAudioGaugeOptions {
|
|
1675
|
+
/**
|
|
1676
|
+
* Polling interval in milliseconds.
|
|
1677
|
+
* @default 16
|
|
1678
|
+
*/
|
|
1679
|
+
intervalMs?: number;
|
|
1680
|
+
/**
|
|
1681
|
+
* `AnalyserNode.fftSize` — power of 2 in [32, 32768].
|
|
1682
|
+
* @default 32
|
|
1683
|
+
*/
|
|
1684
|
+
fftSize?: number;
|
|
1685
|
+
/**
|
|
1686
|
+
* `AnalyserNode.smoothingTimeConstant` (0–1). Higher = smoother / slower.
|
|
1687
|
+
* @default 0.3
|
|
1688
|
+
*/
|
|
1689
|
+
smoothing?: number;
|
|
1690
|
+
/**
|
|
1691
|
+
* Multiplier applied on top of the natural 0–8 mapping to compensate for the
|
|
1692
|
+
* fact that typical speech only reaches ~50% of the digital signal range —
|
|
1693
|
+
* without it, a normal voice would barely nudge 1–2 segments. With `gain=2`
|
|
1694
|
+
* the meter saturates around level≈0.5 (loud speech), which matches the
|
|
1695
|
+
* feel of the legacy tractor-based audio meters in `aw-web` and `phone`.
|
|
1696
|
+
*
|
|
1697
|
+
* Set to `1` for a pure linear mapping (full mic range = full meter).
|
|
1698
|
+
* @default 2
|
|
1699
|
+
*/
|
|
1700
|
+
gain?: number;
|
|
1701
|
+
}
|
|
1702
|
+
interface UseAudioGaugeResult {
|
|
1703
|
+
/** Pass to `<Gauge value={value} />` to drive the meter. */
|
|
1704
|
+
value: number;
|
|
1705
|
+
/** `getUserMedia` failure (permission denied, no device, etc.) — `null` while healthy. */
|
|
1706
|
+
error: Error | null;
|
|
1707
|
+
}
|
|
1708
|
+
/**
|
|
1709
|
+
* Drives a `<Gauge>` from the system microphone. Opens the default audio
|
|
1710
|
+
* input via `getUserMedia` and runs a smoothed frequency-domain analyser.
|
|
1711
|
+
*
|
|
1712
|
+
* The returned `value` is calibrated for typical speech: a normal speaking
|
|
1713
|
+
* voice fills several segments, and the meter saturates at ~50% of the
|
|
1714
|
+
* digital signal range (matches the existing tractor-based audio meters
|
|
1715
|
+
* shipped in `aw-web` and `phone`).
|
|
1716
|
+
*
|
|
1717
|
+
* @example
|
|
1718
|
+
* const { value, error } = useAudioGauge()
|
|
1719
|
+
* return (
|
|
1720
|
+
* <>
|
|
1721
|
+
* <Gauge value={value} />
|
|
1722
|
+
* {error && <p>Microphone unavailable: {error.message}</p>}
|
|
1723
|
+
* </>
|
|
1724
|
+
* )
|
|
1725
|
+
*/
|
|
1726
|
+
declare function useAudioGauge(options?: UseAudioGaugeOptions): UseAudioGaugeResult;
|
|
1537
1727
|
//#endregion
|
|
1538
1728
|
//#region src/lib/utils.d.ts
|
|
1539
1729
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1540
1730
|
//#endregion
|
|
1541
|
-
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, DropdownMenuCheckboxItem, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmojiPicker, EmojiPickerCategories, EmojiPickerCategory, EmojiPickerContent, EmojiPickerContentProps, EmojiPickerProps, EmojiPickerTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, 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, 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,
|
|
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, badgeVariants, bannerVariants, buttonGroupVariants, buttonVariants, cn, counterBadgeVariants, fabVariants, selectTriggerVariants, spinnerVariants, toast, toggleVariants, useAudioGauge, useComboboxAnchor, useNotification, useNotificationQueue, useSidebar, useTheme };
|