raft-ui 0.0.7 → 0.0.8
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/CHANGELOG.md +10 -2
- package/dist/index.d.mts +618 -2
- package/dist/index.mjs +1205 -12
- package/dist/tv-UUMwNowu.d.mts +16 -0
- package/dist/use-theme-Y_h1DKll.mjs +34 -0
- package/dist/wip.d.mts +15 -133
- package/dist/wip.mjs +23 -296
- package/package.json +2 -1
- package/dist/button-CJqMhTPQ.mjs +0 -621
- package/dist/index-CpGciYPW.d.mts +0 -267
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
-
## [0.0.
|
|
1
|
+
## [0.0.8](https://github.com/botiverse/rui/compare/v0.0.7...v0.0.8) (2026-06-26)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **copyable-code:** add copyable command row ([d57b98b](https://github.com/botiverse/rui/commit/d57b98b483eb597c2ba21642a3cb6ebcbfd1298c))
|
|
6
|
+
- **dialog:** promote dialog export ([2bfe141](https://github.com/botiverse/rui/commit/2bfe141aadc15c3196de8ae1a098ca89aee815f9))
|
|
7
|
+
- **dialog:** refine add computer source comparison ([160fba5](https://github.com/botiverse/rui/commit/160fba522d4a305c61f367305b94516ff96f89ce))
|
|
8
|
+
- **switch:** add ready switch component ([baa9080](https://github.com/botiverse/rui/commit/baa9080c09aa498cf78c7101421d5c25912e32e6))
|
|
9
|
+
- **ui:** promote alert-dialog, refine button & dialog sizing ([d63ebd1](https://github.com/botiverse/rui/commit/d63ebd1465f289864ae19fba86fe12b7cf915129))
|
|
2
10
|
|
|
3
11
|
### Bug Fixes
|
|
4
12
|
|
|
5
|
-
- **
|
|
13
|
+
- **dialog:** refine dialog comparison states ([6c206a8](https://github.com/botiverse/rui/commit/6c206a8b702cc780afa6c368c326cd70c1928721))
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { n as StyledProps, t as VariantProps } from "./tv-UUMwNowu.mjs";
|
|
2
2
|
import { cn } from "./cn.mjs";
|
|
3
|
+
import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
|
|
3
4
|
import { ComponentPropsWithRef, ReactNode } from "react";
|
|
5
|
+
import { Button as Button$1 } from "@base-ui/react/button";
|
|
4
6
|
import { useRender } from "@base-ui/react/use-render";
|
|
5
7
|
import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
|
|
6
8
|
import { Avatar as Avatar$1, ContextMenu as ContextMenu$1 } from "@base-ui/react";
|
|
@@ -13,9 +15,535 @@ import { Combobox as Combobox$1 } from "@base-ui/react/combobox";
|
|
|
13
15
|
import { Select as Select$1 } from "@base-ui/react/select";
|
|
14
16
|
import { Radio } from "@base-ui/react/radio";
|
|
15
17
|
import { RadioGroup as RadioGroup$1 } from "@base-ui/react/radio-group";
|
|
18
|
+
import { Switch as Switch$1 } from "@base-ui/react/switch";
|
|
16
19
|
import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
|
|
17
20
|
import { Separator as Separator$1 } from "@base-ui/react/separator";
|
|
18
21
|
|
|
22
|
+
//#region src/components/button/button.d.ts
|
|
23
|
+
declare const buttonVariants: import("tailwind-variants/lite").TVReturnType<{
|
|
24
|
+
theme: {
|
|
25
|
+
brutal: {
|
|
26
|
+
root: string[];
|
|
27
|
+
};
|
|
28
|
+
elegant: {
|
|
29
|
+
root: string[];
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
variant: {
|
|
33
|
+
primary: {
|
|
34
|
+
root: string[];
|
|
35
|
+
};
|
|
36
|
+
default: {
|
|
37
|
+
root: string[];
|
|
38
|
+
};
|
|
39
|
+
information: {
|
|
40
|
+
root: string[];
|
|
41
|
+
};
|
|
42
|
+
muted: {
|
|
43
|
+
root: string[];
|
|
44
|
+
};
|
|
45
|
+
accent: {
|
|
46
|
+
root: string[];
|
|
47
|
+
};
|
|
48
|
+
warning: {
|
|
49
|
+
root: string[];
|
|
50
|
+
};
|
|
51
|
+
outline: {
|
|
52
|
+
root: string[];
|
|
53
|
+
};
|
|
54
|
+
ghost: {
|
|
55
|
+
root: string[];
|
|
56
|
+
};
|
|
57
|
+
link: {
|
|
58
|
+
root: string[];
|
|
59
|
+
};
|
|
60
|
+
"danger-secondary": {
|
|
61
|
+
root: string[];
|
|
62
|
+
};
|
|
63
|
+
danger: {
|
|
64
|
+
root: string[];
|
|
65
|
+
};
|
|
66
|
+
"danger-outline": {
|
|
67
|
+
root: string[];
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
size: {
|
|
71
|
+
xs: {
|
|
72
|
+
root: string[];
|
|
73
|
+
};
|
|
74
|
+
sm: {
|
|
75
|
+
root: string[];
|
|
76
|
+
};
|
|
77
|
+
md: {
|
|
78
|
+
root: string[];
|
|
79
|
+
};
|
|
80
|
+
lg: {
|
|
81
|
+
root: string[];
|
|
82
|
+
};
|
|
83
|
+
"icon-xs": {
|
|
84
|
+
root: string[];
|
|
85
|
+
};
|
|
86
|
+
"icon-sm": {
|
|
87
|
+
root: string[];
|
|
88
|
+
};
|
|
89
|
+
"icon-md": {
|
|
90
|
+
root: string[];
|
|
91
|
+
};
|
|
92
|
+
"icon-lg": {
|
|
93
|
+
root: string[];
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}, {
|
|
97
|
+
root: string[];
|
|
98
|
+
content: string;
|
|
99
|
+
loadingIndicator: string;
|
|
100
|
+
}, undefined, {
|
|
101
|
+
theme: {
|
|
102
|
+
brutal: {
|
|
103
|
+
root: string[];
|
|
104
|
+
};
|
|
105
|
+
elegant: {
|
|
106
|
+
root: string[];
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
variant: {
|
|
110
|
+
primary: {
|
|
111
|
+
root: string[];
|
|
112
|
+
};
|
|
113
|
+
default: {
|
|
114
|
+
root: string[];
|
|
115
|
+
};
|
|
116
|
+
information: {
|
|
117
|
+
root: string[];
|
|
118
|
+
};
|
|
119
|
+
muted: {
|
|
120
|
+
root: string[];
|
|
121
|
+
};
|
|
122
|
+
accent: {
|
|
123
|
+
root: string[];
|
|
124
|
+
};
|
|
125
|
+
warning: {
|
|
126
|
+
root: string[];
|
|
127
|
+
};
|
|
128
|
+
outline: {
|
|
129
|
+
root: string[];
|
|
130
|
+
};
|
|
131
|
+
ghost: {
|
|
132
|
+
root: string[];
|
|
133
|
+
};
|
|
134
|
+
link: {
|
|
135
|
+
root: string[];
|
|
136
|
+
};
|
|
137
|
+
"danger-secondary": {
|
|
138
|
+
root: string[];
|
|
139
|
+
};
|
|
140
|
+
danger: {
|
|
141
|
+
root: string[];
|
|
142
|
+
};
|
|
143
|
+
"danger-outline": {
|
|
144
|
+
root: string[];
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
size: {
|
|
148
|
+
xs: {
|
|
149
|
+
root: string[];
|
|
150
|
+
};
|
|
151
|
+
sm: {
|
|
152
|
+
root: string[];
|
|
153
|
+
};
|
|
154
|
+
md: {
|
|
155
|
+
root: string[];
|
|
156
|
+
};
|
|
157
|
+
lg: {
|
|
158
|
+
root: string[];
|
|
159
|
+
};
|
|
160
|
+
"icon-xs": {
|
|
161
|
+
root: string[];
|
|
162
|
+
};
|
|
163
|
+
"icon-sm": {
|
|
164
|
+
root: string[];
|
|
165
|
+
};
|
|
166
|
+
"icon-md": {
|
|
167
|
+
root: string[];
|
|
168
|
+
};
|
|
169
|
+
"icon-lg": {
|
|
170
|
+
root: string[];
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
}, {
|
|
174
|
+
root: string[];
|
|
175
|
+
content: string;
|
|
176
|
+
loadingIndicator: string;
|
|
177
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
178
|
+
theme: {
|
|
179
|
+
brutal: {
|
|
180
|
+
root: string[];
|
|
181
|
+
};
|
|
182
|
+
elegant: {
|
|
183
|
+
root: string[];
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
variant: {
|
|
187
|
+
primary: {
|
|
188
|
+
root: string[];
|
|
189
|
+
};
|
|
190
|
+
default: {
|
|
191
|
+
root: string[];
|
|
192
|
+
};
|
|
193
|
+
information: {
|
|
194
|
+
root: string[];
|
|
195
|
+
};
|
|
196
|
+
muted: {
|
|
197
|
+
root: string[];
|
|
198
|
+
};
|
|
199
|
+
accent: {
|
|
200
|
+
root: string[];
|
|
201
|
+
};
|
|
202
|
+
warning: {
|
|
203
|
+
root: string[];
|
|
204
|
+
};
|
|
205
|
+
outline: {
|
|
206
|
+
root: string[];
|
|
207
|
+
};
|
|
208
|
+
ghost: {
|
|
209
|
+
root: string[];
|
|
210
|
+
};
|
|
211
|
+
link: {
|
|
212
|
+
root: string[];
|
|
213
|
+
};
|
|
214
|
+
"danger-secondary": {
|
|
215
|
+
root: string[];
|
|
216
|
+
};
|
|
217
|
+
danger: {
|
|
218
|
+
root: string[];
|
|
219
|
+
};
|
|
220
|
+
"danger-outline": {
|
|
221
|
+
root: string[];
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
size: {
|
|
225
|
+
xs: {
|
|
226
|
+
root: string[];
|
|
227
|
+
};
|
|
228
|
+
sm: {
|
|
229
|
+
root: string[];
|
|
230
|
+
};
|
|
231
|
+
md: {
|
|
232
|
+
root: string[];
|
|
233
|
+
};
|
|
234
|
+
lg: {
|
|
235
|
+
root: string[];
|
|
236
|
+
};
|
|
237
|
+
"icon-xs": {
|
|
238
|
+
root: string[];
|
|
239
|
+
};
|
|
240
|
+
"icon-sm": {
|
|
241
|
+
root: string[];
|
|
242
|
+
};
|
|
243
|
+
"icon-md": {
|
|
244
|
+
root: string[];
|
|
245
|
+
};
|
|
246
|
+
"icon-lg": {
|
|
247
|
+
root: string[];
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
}, {
|
|
251
|
+
root: string[];
|
|
252
|
+
content: string;
|
|
253
|
+
loadingIndicator: string;
|
|
254
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
255
|
+
type ButtonProps = StyledProps<Button$1.Props> & Omit<VariantProps<typeof buttonVariants>, "theme"> & {
|
|
256
|
+
loading?: boolean;
|
|
257
|
+
loadingLabel?: string;
|
|
258
|
+
};
|
|
259
|
+
declare function Button({
|
|
260
|
+
variant,
|
|
261
|
+
size,
|
|
262
|
+
loading,
|
|
263
|
+
loadingLabel,
|
|
264
|
+
disabled,
|
|
265
|
+
className,
|
|
266
|
+
children,
|
|
267
|
+
render,
|
|
268
|
+
nativeButton,
|
|
269
|
+
...props
|
|
270
|
+
}: ButtonProps): import("react").JSX.Element;
|
|
271
|
+
//#endregion
|
|
272
|
+
//#region src/components/alert-dialog/alert-dialog.d.ts
|
|
273
|
+
type AlertDialogProps = Dialog$1.Root.Props;
|
|
274
|
+
declare function AlertDialog(props: AlertDialogProps): import("react").JSX.Element;
|
|
275
|
+
type AlertDialogTriggerProps = Dialog$1.Trigger.Props;
|
|
276
|
+
declare function AlertDialogTrigger(props: AlertDialogTriggerProps): import("react").JSX.Element;
|
|
277
|
+
type AlertDialogPortalProps = Dialog$1.Portal.Props;
|
|
278
|
+
declare function AlertDialogPortal(props: AlertDialogPortalProps): import("react").JSX.Element;
|
|
279
|
+
type AlertDialogCloseProps = Omit<Dialog$1.Close.Props, "render"> & Pick<ButtonProps, "variant" | "size"> & {
|
|
280
|
+
className?: string;
|
|
281
|
+
children?: ReactNode;
|
|
282
|
+
};
|
|
283
|
+
declare function AlertDialogClose({
|
|
284
|
+
className,
|
|
285
|
+
variant,
|
|
286
|
+
size,
|
|
287
|
+
children,
|
|
288
|
+
...props
|
|
289
|
+
}: AlertDialogCloseProps): import("react").JSX.Element;
|
|
290
|
+
type AlertDialogOverlayProps = StyledProps<Dialog$1.Backdrop.Props>;
|
|
291
|
+
declare function AlertDialogOverlay({
|
|
292
|
+
className,
|
|
293
|
+
...props
|
|
294
|
+
}: AlertDialogOverlayProps): import("react").JSX.Element;
|
|
295
|
+
type AlertDialogContentProps = StyledProps<Dialog$1.Popup.Props> & {
|
|
296
|
+
portalProps?: AlertDialogPortalProps;
|
|
297
|
+
overlay?: false | AlertDialogOverlayProps;
|
|
298
|
+
};
|
|
299
|
+
declare function AlertDialogContent({
|
|
300
|
+
className,
|
|
301
|
+
children,
|
|
302
|
+
portalProps,
|
|
303
|
+
overlay,
|
|
304
|
+
...props
|
|
305
|
+
}: AlertDialogContentProps): import("react").JSX.Element;
|
|
306
|
+
type AlertDialogHeaderProps = ComponentPropsWithRef<"div">;
|
|
307
|
+
declare function AlertDialogHeader({
|
|
308
|
+
className,
|
|
309
|
+
...props
|
|
310
|
+
}: AlertDialogHeaderProps): import("react").JSX.Element;
|
|
311
|
+
type AlertDialogBodyProps = ComponentPropsWithRef<"div">;
|
|
312
|
+
declare function AlertDialogBody({
|
|
313
|
+
className,
|
|
314
|
+
...props
|
|
315
|
+
}: AlertDialogBodyProps): import("react").JSX.Element;
|
|
316
|
+
type AlertDialogFooterProps = ComponentPropsWithRef<"div">;
|
|
317
|
+
declare function AlertDialogFooter({
|
|
318
|
+
className,
|
|
319
|
+
...props
|
|
320
|
+
}: AlertDialogFooterProps): import("react").JSX.Element;
|
|
321
|
+
type AlertDialogTitleProps = StyledProps<Dialog$1.Title.Props>;
|
|
322
|
+
declare function AlertDialogTitle({
|
|
323
|
+
className,
|
|
324
|
+
...props
|
|
325
|
+
}: AlertDialogTitleProps): import("react").JSX.Element;
|
|
326
|
+
type AlertDialogDescriptionProps = StyledProps<Dialog$1.Description.Props>;
|
|
327
|
+
declare function AlertDialogDescription({
|
|
328
|
+
className,
|
|
329
|
+
...props
|
|
330
|
+
}: AlertDialogDescriptionProps): import("react").JSX.Element;
|
|
331
|
+
type AlertDialogActionProps = ButtonProps;
|
|
332
|
+
declare function AlertDialogAction(props: AlertDialogActionProps): import("react").JSX.Element;
|
|
333
|
+
type AlertDialogCancelProps = Omit<Dialog$1.Close.Props, "render"> & Pick<ButtonProps, "variant" | "size"> & {
|
|
334
|
+
className?: string;
|
|
335
|
+
};
|
|
336
|
+
declare function AlertDialogCancel({
|
|
337
|
+
className,
|
|
338
|
+
variant,
|
|
339
|
+
size,
|
|
340
|
+
...props
|
|
341
|
+
}: AlertDialogCancelProps): import("react").JSX.Element;
|
|
342
|
+
//#endregion
|
|
343
|
+
//#region src/components/dialog/dialog.d.ts
|
|
344
|
+
type DialogProps = Dialog$1.Root.Props;
|
|
345
|
+
declare function Dialog(props: DialogProps): import("react").JSX.Element;
|
|
346
|
+
type DialogTriggerProps = Dialog$1.Trigger.Props;
|
|
347
|
+
declare function DialogTrigger(props: DialogTriggerProps): import("react").JSX.Element;
|
|
348
|
+
type DialogPortalProps = Dialog$1.Portal.Props;
|
|
349
|
+
declare function DialogPortal(props: DialogPortalProps): import("react").JSX.Element;
|
|
350
|
+
type DialogOverlayProps = StyledProps<Dialog$1.Backdrop.Props>;
|
|
351
|
+
declare function DialogOverlay({
|
|
352
|
+
className,
|
|
353
|
+
...props
|
|
354
|
+
}: DialogOverlayProps): import("react").JSX.Element;
|
|
355
|
+
type DialogContentProps = StyledProps<Dialog$1.Popup.Props> & {
|
|
356
|
+
portalProps?: DialogPortalProps;
|
|
357
|
+
overlay?: false | DialogOverlayProps;
|
|
358
|
+
};
|
|
359
|
+
declare function DialogContent({
|
|
360
|
+
className,
|
|
361
|
+
children,
|
|
362
|
+
portalProps,
|
|
363
|
+
overlay,
|
|
364
|
+
...props
|
|
365
|
+
}: DialogContentProps): import("react").JSX.Element;
|
|
366
|
+
type DialogCloseProps = Dialog$1.Close.Props & Pick<ButtonProps, "variant" | "size"> & {
|
|
367
|
+
className?: string;
|
|
368
|
+
children?: ReactNode;
|
|
369
|
+
};
|
|
370
|
+
declare function DialogClose({
|
|
371
|
+
className,
|
|
372
|
+
variant,
|
|
373
|
+
size,
|
|
374
|
+
children,
|
|
375
|
+
render,
|
|
376
|
+
...props
|
|
377
|
+
}: DialogCloseProps): import("react").JSX.Element;
|
|
378
|
+
type DialogHeaderProps = ComponentPropsWithRef<"div">;
|
|
379
|
+
declare function DialogHeader({
|
|
380
|
+
className,
|
|
381
|
+
...props
|
|
382
|
+
}: DialogHeaderProps): import("react").JSX.Element;
|
|
383
|
+
type DialogBodyProps = ComponentPropsWithRef<"div">;
|
|
384
|
+
declare function DialogBody({
|
|
385
|
+
className,
|
|
386
|
+
...props
|
|
387
|
+
}: DialogBodyProps): import("react").JSX.Element;
|
|
388
|
+
type DialogFooterProps = ComponentPropsWithRef<"div">;
|
|
389
|
+
declare function DialogFooter({
|
|
390
|
+
className,
|
|
391
|
+
...props
|
|
392
|
+
}: DialogFooterProps): import("react").JSX.Element;
|
|
393
|
+
type DialogTitleProps = StyledProps<Dialog$1.Title.Props>;
|
|
394
|
+
declare function DialogTitle({
|
|
395
|
+
className,
|
|
396
|
+
...props
|
|
397
|
+
}: DialogTitleProps): import("react").JSX.Element;
|
|
398
|
+
type DialogDescriptionProps = StyledProps<Dialog$1.Description.Props>;
|
|
399
|
+
declare function DialogDescription({
|
|
400
|
+
className,
|
|
401
|
+
...props
|
|
402
|
+
}: DialogDescriptionProps): import("react").JSX.Element;
|
|
403
|
+
//#endregion
|
|
404
|
+
//#region src/components/copyable-code/copyable-code.d.ts
|
|
405
|
+
declare const copyableCode: import("tailwind-variants/lite").TVReturnType<{
|
|
406
|
+
theme: {
|
|
407
|
+
brutal: {
|
|
408
|
+
code: string[];
|
|
409
|
+
codeInner: string;
|
|
410
|
+
};
|
|
411
|
+
elegant: {
|
|
412
|
+
code: string[];
|
|
413
|
+
codeInner: string[];
|
|
414
|
+
action: string[];
|
|
415
|
+
};
|
|
416
|
+
};
|
|
417
|
+
size: {
|
|
418
|
+
sm: {
|
|
419
|
+
code: string;
|
|
420
|
+
};
|
|
421
|
+
md: {
|
|
422
|
+
code: string;
|
|
423
|
+
};
|
|
424
|
+
};
|
|
425
|
+
}, {
|
|
426
|
+
root: string[];
|
|
427
|
+
code: string[];
|
|
428
|
+
codeInner: string[];
|
|
429
|
+
action: string[];
|
|
430
|
+
iconSwap: string[];
|
|
431
|
+
}, undefined, {
|
|
432
|
+
theme: {
|
|
433
|
+
brutal: {
|
|
434
|
+
code: string[];
|
|
435
|
+
codeInner: string;
|
|
436
|
+
};
|
|
437
|
+
elegant: {
|
|
438
|
+
code: string[];
|
|
439
|
+
codeInner: string[];
|
|
440
|
+
action: string[];
|
|
441
|
+
};
|
|
442
|
+
};
|
|
443
|
+
size: {
|
|
444
|
+
sm: {
|
|
445
|
+
code: string;
|
|
446
|
+
};
|
|
447
|
+
md: {
|
|
448
|
+
code: string;
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
}, {
|
|
452
|
+
root: string[];
|
|
453
|
+
code: string[];
|
|
454
|
+
codeInner: string[];
|
|
455
|
+
action: string[];
|
|
456
|
+
iconSwap: string[];
|
|
457
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
458
|
+
theme: {
|
|
459
|
+
brutal: {
|
|
460
|
+
code: string[];
|
|
461
|
+
codeInner: string;
|
|
462
|
+
};
|
|
463
|
+
elegant: {
|
|
464
|
+
code: string[];
|
|
465
|
+
codeInner: string[];
|
|
466
|
+
action: string[];
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
size: {
|
|
470
|
+
sm: {
|
|
471
|
+
code: string;
|
|
472
|
+
};
|
|
473
|
+
md: {
|
|
474
|
+
code: string;
|
|
475
|
+
};
|
|
476
|
+
};
|
|
477
|
+
}, {
|
|
478
|
+
root: string[];
|
|
479
|
+
code: string[];
|
|
480
|
+
codeInner: string[];
|
|
481
|
+
action: string[];
|
|
482
|
+
iconSwap: string[];
|
|
483
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
484
|
+
type CopyableCodeRootProps = Omit<ComponentPropsWithRef<"div">, "onCopy"> & Pick<VariantProps<typeof copyableCode>, "size"> & {
|
|
485
|
+
copied?: boolean;
|
|
486
|
+
onCopy?: (value: string) => void | Promise<void>;
|
|
487
|
+
};
|
|
488
|
+
declare function CopyableCodeRoot({
|
|
489
|
+
copied,
|
|
490
|
+
onCopy,
|
|
491
|
+
size,
|
|
492
|
+
className,
|
|
493
|
+
...props
|
|
494
|
+
}: CopyableCodeRootProps): import("react").JSX.Element;
|
|
495
|
+
type CopyableCodeCodeProps = ComponentPropsWithRef<"code"> & {
|
|
496
|
+
truncate?: boolean;
|
|
497
|
+
};
|
|
498
|
+
declare function CopyableCodeCode({
|
|
499
|
+
children,
|
|
500
|
+
className,
|
|
501
|
+
truncate,
|
|
502
|
+
...props
|
|
503
|
+
}: CopyableCodeCodeProps): import("react").JSX.Element;
|
|
504
|
+
type CopyableCodeActionProps = Omit<ButtonProps, "children" | "className"> & {
|
|
505
|
+
ariaLabel?: string;
|
|
506
|
+
buttonClassName?: string;
|
|
507
|
+
className?: string;
|
|
508
|
+
copiedAriaLabel?: string;
|
|
509
|
+
children?: ReactNode | ((state: {
|
|
510
|
+
copied: boolean;
|
|
511
|
+
}) => ReactNode);
|
|
512
|
+
};
|
|
513
|
+
declare function CopyableCodeAction({
|
|
514
|
+
ariaLabel,
|
|
515
|
+
children,
|
|
516
|
+
buttonClassName,
|
|
517
|
+
className,
|
|
518
|
+
copiedAriaLabel,
|
|
519
|
+
onClick,
|
|
520
|
+
size,
|
|
521
|
+
variant,
|
|
522
|
+
...props
|
|
523
|
+
}: CopyableCodeActionProps): import("react").JSX.Element;
|
|
524
|
+
type CopyableCodeProps = Omit<CopyableCodeRootProps, "children"> & {
|
|
525
|
+
actionClassName?: string;
|
|
526
|
+
ariaLabel?: string;
|
|
527
|
+
codeClassName?: string;
|
|
528
|
+
copiedAriaLabel?: string;
|
|
529
|
+
children: ReactNode;
|
|
530
|
+
truncate?: boolean;
|
|
531
|
+
};
|
|
532
|
+
declare function CopyableCodePreset({
|
|
533
|
+
actionClassName,
|
|
534
|
+
ariaLabel,
|
|
535
|
+
codeClassName,
|
|
536
|
+
children,
|
|
537
|
+
copiedAriaLabel,
|
|
538
|
+
truncate,
|
|
539
|
+
...props
|
|
540
|
+
}: CopyableCodeProps): import("react").JSX.Element;
|
|
541
|
+
declare const CopyableCode: typeof CopyableCodePreset & {
|
|
542
|
+
Action: typeof CopyableCodeAction;
|
|
543
|
+
Code: typeof CopyableCodeCode;
|
|
544
|
+
Root: typeof CopyableCodeRoot;
|
|
545
|
+
};
|
|
546
|
+
//#endregion
|
|
19
547
|
//#region src/components/checkbox/checkbox.d.ts
|
|
20
548
|
declare const checkbox: import("tailwind-variants/lite").TVReturnType<{
|
|
21
549
|
theme: {
|
|
@@ -1361,6 +1889,94 @@ declare function RadioGroupItem<T extends string = string>({
|
|
|
1361
1889
|
...props
|
|
1362
1890
|
}: RadioGroupItemProps<T>): import("react").JSX.Element;
|
|
1363
1891
|
//#endregion
|
|
1892
|
+
//#region src/components/switch/switch.d.ts
|
|
1893
|
+
declare const switchRecipe: import("tailwind-variants/lite").TVReturnType<{
|
|
1894
|
+
theme: {
|
|
1895
|
+
brutal: {
|
|
1896
|
+
root: string[];
|
|
1897
|
+
thumb: string[];
|
|
1898
|
+
};
|
|
1899
|
+
elegant: {
|
|
1900
|
+
root: string[];
|
|
1901
|
+
thumb: string[];
|
|
1902
|
+
};
|
|
1903
|
+
};
|
|
1904
|
+
size: {
|
|
1905
|
+
sm: {
|
|
1906
|
+
root: string;
|
|
1907
|
+
thumb: string;
|
|
1908
|
+
};
|
|
1909
|
+
md: {
|
|
1910
|
+
root: string;
|
|
1911
|
+
thumb: string;
|
|
1912
|
+
};
|
|
1913
|
+
};
|
|
1914
|
+
}, {
|
|
1915
|
+
root: string[];
|
|
1916
|
+
thumb: string[];
|
|
1917
|
+
}, undefined, {
|
|
1918
|
+
theme: {
|
|
1919
|
+
brutal: {
|
|
1920
|
+
root: string[];
|
|
1921
|
+
thumb: string[];
|
|
1922
|
+
};
|
|
1923
|
+
elegant: {
|
|
1924
|
+
root: string[];
|
|
1925
|
+
thumb: string[];
|
|
1926
|
+
};
|
|
1927
|
+
};
|
|
1928
|
+
size: {
|
|
1929
|
+
sm: {
|
|
1930
|
+
root: string;
|
|
1931
|
+
thumb: string;
|
|
1932
|
+
};
|
|
1933
|
+
md: {
|
|
1934
|
+
root: string;
|
|
1935
|
+
thumb: string;
|
|
1936
|
+
};
|
|
1937
|
+
};
|
|
1938
|
+
}, {
|
|
1939
|
+
root: string[];
|
|
1940
|
+
thumb: string[];
|
|
1941
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
1942
|
+
theme: {
|
|
1943
|
+
brutal: {
|
|
1944
|
+
root: string[];
|
|
1945
|
+
thumb: string[];
|
|
1946
|
+
};
|
|
1947
|
+
elegant: {
|
|
1948
|
+
root: string[];
|
|
1949
|
+
thumb: string[];
|
|
1950
|
+
};
|
|
1951
|
+
};
|
|
1952
|
+
size: {
|
|
1953
|
+
sm: {
|
|
1954
|
+
root: string;
|
|
1955
|
+
thumb: string;
|
|
1956
|
+
};
|
|
1957
|
+
md: {
|
|
1958
|
+
root: string;
|
|
1959
|
+
thumb: string;
|
|
1960
|
+
};
|
|
1961
|
+
};
|
|
1962
|
+
}, {
|
|
1963
|
+
root: string[];
|
|
1964
|
+
thumb: string[];
|
|
1965
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1966
|
+
type SwitchProps = StyledProps<Switch$1.Root.Props> & Omit<VariantProps<typeof switchRecipe>, "theme">;
|
|
1967
|
+
declare function Switch({
|
|
1968
|
+
size,
|
|
1969
|
+
className,
|
|
1970
|
+
children,
|
|
1971
|
+
...props
|
|
1972
|
+
}: SwitchProps): import("react").JSX.Element;
|
|
1973
|
+
type SwitchThumbProps = StyledProps<Switch$1.Thumb.Props> & Omit<VariantProps<typeof switchRecipe>, "theme">;
|
|
1974
|
+
declare function SwitchThumb({
|
|
1975
|
+
size,
|
|
1976
|
+
className,
|
|
1977
|
+
...props
|
|
1978
|
+
}: SwitchThumbProps): import("react").JSX.Element;
|
|
1979
|
+
//#endregion
|
|
1364
1980
|
//#region src/components/segmented-control/segmented-control.d.ts
|
|
1365
1981
|
declare const segmentedControl: import("tailwind-variants/lite").TVReturnType<{
|
|
1366
1982
|
theme: {
|
|
@@ -2865,4 +3481,4 @@ declare function useThemeFamily(): Theme;
|
|
|
2865
3481
|
/** Read and update the application-level RUI theme selection. */
|
|
2866
3482
|
declare function useTheme(): ThemeState;
|
|
2867
3483
|
//#endregion
|
|
2868
|
-
export { Avatar, AvatarBadge, type AvatarBadgeProps, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarSize, Badge, type BadgeProps, Banner, BannerAction, type BannerActionProps, BannerDescription, type BannerDescriptionProps, type BannerProps, type BannerStatus, BannerTitle, type BannerTitleProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Combobox, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxContent, type ComboboxContentProps, ComboboxControl, type ComboboxControlProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxHeader, type ComboboxHeaderProps, ComboboxInput, ComboboxInputGroup, type ComboboxInputGroupProps, type ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, type ComboboxItemIndicatorProps, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxList, type ComboboxListProps, ComboboxPopup, type ComboboxPopupProps, ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, ComboboxRow, type ComboboxRowProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, ComboboxTriggerIndicator, type ComboboxTriggerIndicatorProps, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, type ContextMenuCheckboxItemIndicatorProps, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, ContextMenuRadioItemIndicator, type ContextMenuRadioItemIndicatorProps, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSubmenu, type ContextMenuSubmenuProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemIndicator, type DropdownMenuCheckboxItemIndicatorProps, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, DropdownMenuItemCount, type DropdownMenuItemCountProps, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPopup, type DropdownMenuPopupProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemIndicator, type DropdownMenuRadioItemIndicatorProps, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSubmenu, type DropdownMenuSubmenuProps, DropdownMenuSubmenuTrigger, type DropdownMenuSubmenuTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyState, EmptyStateActions, type EmptyStateActionsProps, EmptyStateContent, type EmptyStateContentProps, EmptyStateDescription, type EmptyStateDescriptionProps, EmptyStateIcon, type EmptyStateIconProps, type EmptyStateProps, EmptyStateTitle, type EmptyStateTitleProps, Field, FieldControl, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldValidity, type FieldValidityProps, InlineCode, type InlineCodeProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupAddonTextProps, InputGroupInput, type InputGroupInputProps, type InputGroupProps, type InputProps, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, Label, LabelAsterisk, type LabelAsteriskProps, LabelOptional, type LabelOptionalProps, type LabelProps, LabelSub, type LabelSubProps, NotificationCenter, NotificationCenterActionButton, type NotificationCenterActionButtonProps, NotificationCenterCount, type NotificationCenterCountProps, NotificationCenterEmptyState, type NotificationCenterEmptyStateProps, NotificationCenterHeader, type NotificationCenterHeaderProps, NotificationCenterItem, NotificationCenterItemActions, type NotificationCenterItemActionsProps, NotificationCenterItemBody, type NotificationCenterItemBodyProps, NotificationCenterItemContent, type NotificationCenterItemContentProps, NotificationCenterItemIcon, type NotificationCenterItemIconProps, type NotificationCenterItemProps, NotificationCenterItemRow, type NotificationCenterItemRowProps, NotificationCenterItemTitle, type NotificationCenterItemTitleProps, NotificationCenterList, type NotificationCenterListProps, NotificationCenterPopup, type NotificationCenterPopupProps, type NotificationCenterPortalProps, type NotificationCenterProps, NotificationCenterScroller, type NotificationCenterScrollerProps, NotificationCenterTitle, type NotificationCenterTitleProps, NotificationCenterTrigger, type NotificationCenterTriggerProps, type OrderedTabItem, Popover, PopoverArrow, type PopoverArrowProps, PopoverBackdrop, type PopoverBackdropProps, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, PopoverPopup, type PopoverPopupProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverSeparator, type PopoverSeparatorProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PopoverViewport, type PopoverViewportProps, RadioGroup, RadioGroupIndicator, type RadioGroupIndicatorProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type ResolvedThemeMode, SegmentedControl, SegmentedControlCount, type SegmentedControlCountProps, SegmentedControlItem, type SegmentedControlItemProps, SegmentedControlLabel, type SegmentedControlLabelProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectList, type SelectListProps, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, Separator, type SeparatorProps, type SetTheme, type SetThemeOptions, SortableTabsList, type SortableTabsListProps, SortableTabsTab, type SortableTabsTabProps, Spinner, type SpinnerProps, Status, type StatusProps, Tabs, TabsBackground, type TabsBackgroundProps, TabsIndicator, type TabsIndicatorProps, TabsLabel, type TabsLabelProps, TabsList, type TabsListProps, TabsPanel, type TabsPanelProps, type TabsProps, TabsTab, type TabsTabProps, Text, TextHeading, type TextHeadingProps, TextMono, type TextMonoProps, TextSans, type TextSansProps, Textarea, TextareaCounter, type TextareaCounterProps, TextareaGroup, type TextareaGroupProps, type TextareaProps, type Theme, type ThemeMode, ThemeProvider, type ThemeProviderProps, type ThemeState, Tooltip, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipPortalProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, buttonVariants, cn, useOrderedTabs, useTheme, useThemeFamily };
|
|
3484
|
+
export { AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogBody, type AlertDialogBodyProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogClose, type AlertDialogCloseProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, type AlertDialogPortalProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, Avatar, AvatarBadge, type AvatarBadgeProps, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarSize, Badge, type BadgeProps, Banner, BannerAction, type BannerActionProps, BannerDescription, type BannerDescriptionProps, type BannerProps, type BannerStatus, BannerTitle, type BannerTitleProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Combobox, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxContent, type ComboboxContentProps, ComboboxControl, type ComboboxControlProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxHeader, type ComboboxHeaderProps, ComboboxInput, ComboboxInputGroup, type ComboboxInputGroupProps, type ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, type ComboboxItemIndicatorProps, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxList, type ComboboxListProps, ComboboxPopup, type ComboboxPopupProps, ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, ComboboxRow, type ComboboxRowProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, ComboboxTriggerIndicator, type ComboboxTriggerIndicatorProps, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, type ContextMenuCheckboxItemIndicatorProps, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, ContextMenuRadioItemIndicator, type ContextMenuRadioItemIndicatorProps, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSubmenu, type ContextMenuSubmenuProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, CopyableCode, type CopyableCodeActionProps, type CopyableCodeCodeProps, type CopyableCodeProps, type CopyableCodeRootProps, Dialog, DialogBody, type DialogBodyProps, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, type DialogPortalProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemIndicator, type DropdownMenuCheckboxItemIndicatorProps, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, DropdownMenuItemCount, type DropdownMenuItemCountProps, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPopup, type DropdownMenuPopupProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemIndicator, type DropdownMenuRadioItemIndicatorProps, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSubmenu, type DropdownMenuSubmenuProps, DropdownMenuSubmenuTrigger, type DropdownMenuSubmenuTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyState, EmptyStateActions, type EmptyStateActionsProps, EmptyStateContent, type EmptyStateContentProps, EmptyStateDescription, type EmptyStateDescriptionProps, EmptyStateIcon, type EmptyStateIconProps, type EmptyStateProps, EmptyStateTitle, type EmptyStateTitleProps, Field, FieldControl, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldValidity, type FieldValidityProps, InlineCode, type InlineCodeProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupAddonTextProps, InputGroupInput, type InputGroupInputProps, type InputGroupProps, type InputProps, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, Label, LabelAsterisk, type LabelAsteriskProps, LabelOptional, type LabelOptionalProps, type LabelProps, LabelSub, type LabelSubProps, NotificationCenter, NotificationCenterActionButton, type NotificationCenterActionButtonProps, NotificationCenterCount, type NotificationCenterCountProps, NotificationCenterEmptyState, type NotificationCenterEmptyStateProps, NotificationCenterHeader, type NotificationCenterHeaderProps, NotificationCenterItem, NotificationCenterItemActions, type NotificationCenterItemActionsProps, NotificationCenterItemBody, type NotificationCenterItemBodyProps, NotificationCenterItemContent, type NotificationCenterItemContentProps, NotificationCenterItemIcon, type NotificationCenterItemIconProps, type NotificationCenterItemProps, NotificationCenterItemRow, type NotificationCenterItemRowProps, NotificationCenterItemTitle, type NotificationCenterItemTitleProps, NotificationCenterList, type NotificationCenterListProps, NotificationCenterPopup, type NotificationCenterPopupProps, type NotificationCenterPortalProps, type NotificationCenterProps, NotificationCenterScroller, type NotificationCenterScrollerProps, NotificationCenterTitle, type NotificationCenterTitleProps, NotificationCenterTrigger, type NotificationCenterTriggerProps, type OrderedTabItem, Popover, PopoverArrow, type PopoverArrowProps, PopoverBackdrop, type PopoverBackdropProps, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, PopoverPopup, type PopoverPopupProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverSeparator, type PopoverSeparatorProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PopoverViewport, type PopoverViewportProps, RadioGroup, RadioGroupIndicator, type RadioGroupIndicatorProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type ResolvedThemeMode, SegmentedControl, SegmentedControlCount, type SegmentedControlCountProps, SegmentedControlItem, type SegmentedControlItemProps, SegmentedControlLabel, type SegmentedControlLabelProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectList, type SelectListProps, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, Separator, type SeparatorProps, type SetTheme, type SetThemeOptions, SortableTabsList, type SortableTabsListProps, SortableTabsTab, type SortableTabsTabProps, Spinner, type SpinnerProps, Status, type StatusProps, Switch, type SwitchProps, SwitchThumb, type SwitchThumbProps, Tabs, TabsBackground, type TabsBackgroundProps, TabsIndicator, type TabsIndicatorProps, TabsLabel, type TabsLabelProps, TabsList, type TabsListProps, TabsPanel, type TabsPanelProps, type TabsProps, TabsTab, type TabsTabProps, Text, TextHeading, type TextHeadingProps, TextMono, type TextMonoProps, TextSans, type TextSansProps, Textarea, TextareaCounter, type TextareaCounterProps, TextareaGroup, type TextareaGroupProps, type TextareaProps, type Theme, type ThemeMode, ThemeProvider, type ThemeProviderProps, type ThemeState, Tooltip, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipPortalProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, buttonVariants, cn, useOrderedTabs, useTheme, useThemeFamily };
|