raft-ui 0.0.9 → 0.0.11
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 +27 -0
- package/dist/index.d.mts +1128 -75
- package/dist/index.mjs +2082 -133
- package/dist/styles.css +40 -0
- package/dist/tv-UUMwNowu.d.mts +16 -0
- package/dist/use-theme-Y_h1DKll.mjs +34 -0
- package/dist/wip.d.mts +3 -156
- package/dist/wip.mjs +5 -337
- package/package.json +1 -1
- package/dist/button-jUlaK4eN.mjs +0 -722
- package/dist/index-lPUAF7fl.d.mts +0 -267
package/dist/index.d.mts
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { n as StyledProps, t as VariantProps } from "./tv-UUMwNowu.mjs";
|
|
2
2
|
import { cn } from "./cn.mjs";
|
|
3
3
|
import { Dialog as Dialog$1 } from "@base-ui/react/dialog";
|
|
4
|
-
import { ComponentPropsWithRef, ReactNode } from "react";
|
|
4
|
+
import { ComponentProps, ComponentPropsWithRef, HTMLAttributes, ReactElement, ReactNode } from "react";
|
|
5
|
+
import { Button as Button$1 } from "@base-ui/react/button";
|
|
5
6
|
import { useRender } from "@base-ui/react/use-render";
|
|
7
|
+
import { Drawer } from "vaul";
|
|
6
8
|
import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
|
|
7
9
|
import { Avatar as Avatar$1, ContextMenu as ContextMenu$1 } from "@base-ui/react";
|
|
8
10
|
import { Menu } from "@base-ui/react/menu";
|
|
9
11
|
import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
|
|
10
12
|
import { Popover as Popover$1 } from "@base-ui/react/popover";
|
|
13
|
+
import { PreviewCard as PreviewCard$1 } from "@base-ui/react/preview-card";
|
|
11
14
|
import { Input as Input$1 } from "@base-ui/react/input";
|
|
12
15
|
import { Field as Field$1 } from "@base-ui/react/field";
|
|
13
16
|
import { Combobox as Combobox$1 } from "@base-ui/react/combobox";
|
|
@@ -15,9 +18,261 @@ import { Select as Select$1 } from "@base-ui/react/select";
|
|
|
15
18
|
import { Radio } from "@base-ui/react/radio";
|
|
16
19
|
import { RadioGroup as RadioGroup$1 } from "@base-ui/react/radio-group";
|
|
17
20
|
import { Switch as Switch$1 } from "@base-ui/react/switch";
|
|
21
|
+
import { Progress as Progress$1 } from "@base-ui/react/progress";
|
|
22
|
+
import { Toast } from "@base-ui/react/toast";
|
|
18
23
|
import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
|
|
19
24
|
import { Separator as Separator$1 } from "@base-ui/react/separator";
|
|
20
25
|
|
|
26
|
+
//#region src/components/button/button.d.ts
|
|
27
|
+
declare const buttonVariants: import("tailwind-variants/lite").TVReturnType<{
|
|
28
|
+
theme: {
|
|
29
|
+
brutal: {
|
|
30
|
+
root: string[];
|
|
31
|
+
};
|
|
32
|
+
elegant: {
|
|
33
|
+
root: string[];
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
variant: {
|
|
37
|
+
primary: {
|
|
38
|
+
root: string[];
|
|
39
|
+
};
|
|
40
|
+
default: {
|
|
41
|
+
root: string[];
|
|
42
|
+
};
|
|
43
|
+
information: {
|
|
44
|
+
root: string[];
|
|
45
|
+
};
|
|
46
|
+
muted: {
|
|
47
|
+
root: string[];
|
|
48
|
+
};
|
|
49
|
+
accent: {
|
|
50
|
+
root: string[];
|
|
51
|
+
};
|
|
52
|
+
warning: {
|
|
53
|
+
root: string[];
|
|
54
|
+
};
|
|
55
|
+
outline: {
|
|
56
|
+
root: string[];
|
|
57
|
+
};
|
|
58
|
+
ghost: {
|
|
59
|
+
root: string[];
|
|
60
|
+
};
|
|
61
|
+
link: {
|
|
62
|
+
root: string[];
|
|
63
|
+
};
|
|
64
|
+
"danger-secondary": {
|
|
65
|
+
root: string[];
|
|
66
|
+
};
|
|
67
|
+
danger: {
|
|
68
|
+
root: string[];
|
|
69
|
+
};
|
|
70
|
+
"danger-outline": {
|
|
71
|
+
root: string[];
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
size: {
|
|
75
|
+
xs: {
|
|
76
|
+
root: string[];
|
|
77
|
+
};
|
|
78
|
+
sm: {
|
|
79
|
+
root: string[];
|
|
80
|
+
};
|
|
81
|
+
md: {
|
|
82
|
+
root: string[];
|
|
83
|
+
};
|
|
84
|
+
lg: {
|
|
85
|
+
root: string[];
|
|
86
|
+
};
|
|
87
|
+
"icon-xs": {
|
|
88
|
+
root: string[];
|
|
89
|
+
};
|
|
90
|
+
"icon-sm": {
|
|
91
|
+
root: string[];
|
|
92
|
+
};
|
|
93
|
+
"icon-md": {
|
|
94
|
+
root: string[];
|
|
95
|
+
};
|
|
96
|
+
"icon-lg": {
|
|
97
|
+
root: string[];
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}, {
|
|
101
|
+
root: string[];
|
|
102
|
+
content: string;
|
|
103
|
+
loadingIndicator: string;
|
|
104
|
+
}, undefined, {
|
|
105
|
+
theme: {
|
|
106
|
+
brutal: {
|
|
107
|
+
root: string[];
|
|
108
|
+
};
|
|
109
|
+
elegant: {
|
|
110
|
+
root: string[];
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
variant: {
|
|
114
|
+
primary: {
|
|
115
|
+
root: string[];
|
|
116
|
+
};
|
|
117
|
+
default: {
|
|
118
|
+
root: string[];
|
|
119
|
+
};
|
|
120
|
+
information: {
|
|
121
|
+
root: string[];
|
|
122
|
+
};
|
|
123
|
+
muted: {
|
|
124
|
+
root: string[];
|
|
125
|
+
};
|
|
126
|
+
accent: {
|
|
127
|
+
root: string[];
|
|
128
|
+
};
|
|
129
|
+
warning: {
|
|
130
|
+
root: string[];
|
|
131
|
+
};
|
|
132
|
+
outline: {
|
|
133
|
+
root: string[];
|
|
134
|
+
};
|
|
135
|
+
ghost: {
|
|
136
|
+
root: string[];
|
|
137
|
+
};
|
|
138
|
+
link: {
|
|
139
|
+
root: string[];
|
|
140
|
+
};
|
|
141
|
+
"danger-secondary": {
|
|
142
|
+
root: string[];
|
|
143
|
+
};
|
|
144
|
+
danger: {
|
|
145
|
+
root: string[];
|
|
146
|
+
};
|
|
147
|
+
"danger-outline": {
|
|
148
|
+
root: string[];
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
size: {
|
|
152
|
+
xs: {
|
|
153
|
+
root: string[];
|
|
154
|
+
};
|
|
155
|
+
sm: {
|
|
156
|
+
root: string[];
|
|
157
|
+
};
|
|
158
|
+
md: {
|
|
159
|
+
root: string[];
|
|
160
|
+
};
|
|
161
|
+
lg: {
|
|
162
|
+
root: string[];
|
|
163
|
+
};
|
|
164
|
+
"icon-xs": {
|
|
165
|
+
root: string[];
|
|
166
|
+
};
|
|
167
|
+
"icon-sm": {
|
|
168
|
+
root: string[];
|
|
169
|
+
};
|
|
170
|
+
"icon-md": {
|
|
171
|
+
root: string[];
|
|
172
|
+
};
|
|
173
|
+
"icon-lg": {
|
|
174
|
+
root: string[];
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
}, {
|
|
178
|
+
root: string[];
|
|
179
|
+
content: string;
|
|
180
|
+
loadingIndicator: string;
|
|
181
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
182
|
+
theme: {
|
|
183
|
+
brutal: {
|
|
184
|
+
root: string[];
|
|
185
|
+
};
|
|
186
|
+
elegant: {
|
|
187
|
+
root: string[];
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
variant: {
|
|
191
|
+
primary: {
|
|
192
|
+
root: string[];
|
|
193
|
+
};
|
|
194
|
+
default: {
|
|
195
|
+
root: string[];
|
|
196
|
+
};
|
|
197
|
+
information: {
|
|
198
|
+
root: string[];
|
|
199
|
+
};
|
|
200
|
+
muted: {
|
|
201
|
+
root: string[];
|
|
202
|
+
};
|
|
203
|
+
accent: {
|
|
204
|
+
root: string[];
|
|
205
|
+
};
|
|
206
|
+
warning: {
|
|
207
|
+
root: string[];
|
|
208
|
+
};
|
|
209
|
+
outline: {
|
|
210
|
+
root: string[];
|
|
211
|
+
};
|
|
212
|
+
ghost: {
|
|
213
|
+
root: string[];
|
|
214
|
+
};
|
|
215
|
+
link: {
|
|
216
|
+
root: string[];
|
|
217
|
+
};
|
|
218
|
+
"danger-secondary": {
|
|
219
|
+
root: string[];
|
|
220
|
+
};
|
|
221
|
+
danger: {
|
|
222
|
+
root: string[];
|
|
223
|
+
};
|
|
224
|
+
"danger-outline": {
|
|
225
|
+
root: string[];
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
size: {
|
|
229
|
+
xs: {
|
|
230
|
+
root: string[];
|
|
231
|
+
};
|
|
232
|
+
sm: {
|
|
233
|
+
root: string[];
|
|
234
|
+
};
|
|
235
|
+
md: {
|
|
236
|
+
root: string[];
|
|
237
|
+
};
|
|
238
|
+
lg: {
|
|
239
|
+
root: string[];
|
|
240
|
+
};
|
|
241
|
+
"icon-xs": {
|
|
242
|
+
root: string[];
|
|
243
|
+
};
|
|
244
|
+
"icon-sm": {
|
|
245
|
+
root: string[];
|
|
246
|
+
};
|
|
247
|
+
"icon-md": {
|
|
248
|
+
root: string[];
|
|
249
|
+
};
|
|
250
|
+
"icon-lg": {
|
|
251
|
+
root: string[];
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
}, {
|
|
255
|
+
root: string[];
|
|
256
|
+
content: string;
|
|
257
|
+
loadingIndicator: string;
|
|
258
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
259
|
+
type ButtonProps = StyledProps<Button$1.Props> & Omit<VariantProps<typeof buttonVariants>, "theme"> & {
|
|
260
|
+
loading?: boolean;
|
|
261
|
+
loadingLabel?: string;
|
|
262
|
+
};
|
|
263
|
+
declare function Button({
|
|
264
|
+
variant,
|
|
265
|
+
size,
|
|
266
|
+
loading,
|
|
267
|
+
loadingLabel,
|
|
268
|
+
disabled,
|
|
269
|
+
className,
|
|
270
|
+
children,
|
|
271
|
+
render,
|
|
272
|
+
nativeButton,
|
|
273
|
+
...props
|
|
274
|
+
}: ButtonProps): import("react").JSX.Element;
|
|
275
|
+
//#endregion
|
|
21
276
|
//#region src/components/alert-dialog/alert-dialog.d.ts
|
|
22
277
|
type AlertDialogProps = Dialog$1.Root.Props;
|
|
23
278
|
declare function AlertDialog(props: AlertDialogProps): import("react").JSX.Element;
|
|
@@ -150,6 +405,96 @@ declare function DialogDescription({
|
|
|
150
405
|
...props
|
|
151
406
|
}: DialogDescriptionProps): import("react").JSX.Element;
|
|
152
407
|
//#endregion
|
|
408
|
+
//#region src/components/bottom-sheet/bottom-sheet.d.ts
|
|
409
|
+
type BottomSheetProps = ComponentProps<typeof Drawer.Root>;
|
|
410
|
+
declare function BottomSheet({
|
|
411
|
+
direction,
|
|
412
|
+
...props
|
|
413
|
+
}: BottomSheetProps): import("react").JSX.Element;
|
|
414
|
+
type BottomSheetTriggerProps = Omit<ComponentProps<typeof Drawer.Trigger>, "asChild"> & {
|
|
415
|
+
render?: ReactElement<{
|
|
416
|
+
children?: ReactNode;
|
|
417
|
+
}>;
|
|
418
|
+
};
|
|
419
|
+
declare function BottomSheetTrigger({
|
|
420
|
+
children,
|
|
421
|
+
render,
|
|
422
|
+
...props
|
|
423
|
+
}: BottomSheetTriggerProps): import("react").JSX.Element;
|
|
424
|
+
type BottomSheetPortalProps = ComponentProps<typeof Drawer.Portal> & {
|
|
425
|
+
className?: string;
|
|
426
|
+
};
|
|
427
|
+
declare function BottomSheetPortal({
|
|
428
|
+
className,
|
|
429
|
+
children,
|
|
430
|
+
...props
|
|
431
|
+
}: BottomSheetPortalProps): import("react").JSX.Element;
|
|
432
|
+
type BottomSheetPositionerProps = ComponentPropsWithRef<"div">;
|
|
433
|
+
declare function BottomSheetPositioner({
|
|
434
|
+
className,
|
|
435
|
+
...props
|
|
436
|
+
}: BottomSheetPositionerProps): import("react").JSX.Element;
|
|
437
|
+
type BottomSheetOverlayProps = StyledProps<ComponentProps<typeof Drawer.Overlay>>;
|
|
438
|
+
declare function BottomSheetOverlay({
|
|
439
|
+
className,
|
|
440
|
+
...props
|
|
441
|
+
}: BottomSheetOverlayProps): import("react").JSX.Element;
|
|
442
|
+
type BottomSheetContentProps = StyledProps<ComponentProps<typeof Drawer.Content>>;
|
|
443
|
+
declare function BottomSheetContent({
|
|
444
|
+
className,
|
|
445
|
+
...props
|
|
446
|
+
}: BottomSheetContentProps): import("react").JSX.Element;
|
|
447
|
+
type BottomSheetCloseProps = Omit<ComponentProps<typeof Drawer.Close>, "asChild"> & Pick<ButtonProps, "variant" | "size"> & {
|
|
448
|
+
className?: string;
|
|
449
|
+
children?: ReactNode;
|
|
450
|
+
render?: ReactElement<{
|
|
451
|
+
children?: ReactNode;
|
|
452
|
+
}>;
|
|
453
|
+
};
|
|
454
|
+
declare function BottomSheetClose({
|
|
455
|
+
className,
|
|
456
|
+
variant,
|
|
457
|
+
size,
|
|
458
|
+
children,
|
|
459
|
+
render,
|
|
460
|
+
...props
|
|
461
|
+
}: BottomSheetCloseProps): import("react").JSX.Element;
|
|
462
|
+
type BottomSheetHeaderProps = useRender.ComponentProps<"div">;
|
|
463
|
+
declare function BottomSheetHeader({
|
|
464
|
+
className,
|
|
465
|
+
render,
|
|
466
|
+
...props
|
|
467
|
+
}: BottomSheetHeaderProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
468
|
+
type BottomSheetFooterProps = useRender.ComponentProps<"div">;
|
|
469
|
+
declare function BottomSheetFooter({
|
|
470
|
+
className,
|
|
471
|
+
render,
|
|
472
|
+
...props
|
|
473
|
+
}: BottomSheetFooterProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
474
|
+
type BottomSheetBodyProps = useRender.ComponentProps<"div">;
|
|
475
|
+
declare function BottomSheetBody({
|
|
476
|
+
className,
|
|
477
|
+
render,
|
|
478
|
+
...props
|
|
479
|
+
}: BottomSheetBodyProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
480
|
+
type BottomSheetActionsProps = useRender.ComponentProps<"div">;
|
|
481
|
+
declare function BottomSheetActions({
|
|
482
|
+
className,
|
|
483
|
+
render,
|
|
484
|
+
children,
|
|
485
|
+
...props
|
|
486
|
+
}: BottomSheetActionsProps): ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
487
|
+
type BottomSheetTitleProps = StyledProps<ComponentProps<typeof Drawer.Title>>;
|
|
488
|
+
declare function BottomSheetTitle({
|
|
489
|
+
className,
|
|
490
|
+
...props
|
|
491
|
+
}: BottomSheetTitleProps): import("react").JSX.Element;
|
|
492
|
+
type BottomSheetDescriptionProps = StyledProps<ComponentProps<typeof Drawer.Description>>;
|
|
493
|
+
declare function BottomSheetDescription({
|
|
494
|
+
className,
|
|
495
|
+
...props
|
|
496
|
+
}: BottomSheetDescriptionProps): import("react").JSX.Element;
|
|
497
|
+
//#endregion
|
|
153
498
|
//#region src/components/copyable-code/copyable-code.d.ts
|
|
154
499
|
declare const copyableCode: import("tailwind-variants/lite").TVReturnType<{
|
|
155
500
|
theme: {
|
|
@@ -777,75 +1122,98 @@ declare function DropdownMenuCheckboxItemIndicator({
|
|
|
777
1122
|
...props
|
|
778
1123
|
}: DropdownMenuCheckboxItemIndicatorProps): import("react").JSX.Element;
|
|
779
1124
|
//#endregion
|
|
780
|
-
//#region src/components/
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
1125
|
+
//#region src/components/lightbox/lightbox.d.ts
|
|
1126
|
+
type LightboxProps<Payload = unknown> = Omit<Dialog$1.Root.Props<Payload>, "actionsRef" | "children" | "handle"> & {
|
|
1127
|
+
children?: ReactNode;
|
|
1128
|
+
closeOnModW?: boolean;
|
|
1129
|
+
};
|
|
1130
|
+
declare function Lightbox<Payload = unknown>({
|
|
1131
|
+
closeOnModW,
|
|
1132
|
+
defaultOpen,
|
|
1133
|
+
modal,
|
|
1134
|
+
onOpenChange,
|
|
1135
|
+
open,
|
|
1136
|
+
children,
|
|
1137
|
+
...props
|
|
1138
|
+
}: LightboxProps<Payload>): import("react").JSX.Element;
|
|
1139
|
+
type LightboxTriggerProps = Dialog$1.Trigger.Props;
|
|
1140
|
+
declare function LightboxTrigger(props: LightboxTriggerProps): import("react").JSX.Element;
|
|
1141
|
+
type LightboxPortalProps = Dialog$1.Portal.Props;
|
|
1142
|
+
declare function LightboxPortal(props: LightboxPortalProps): import("react").JSX.Element;
|
|
1143
|
+
type LightboxContentProps = StyledProps<Dialog$1.Popup.Props>;
|
|
1144
|
+
declare function LightboxContent({
|
|
1145
|
+
className,
|
|
1146
|
+
initialFocus,
|
|
1147
|
+
finalFocus,
|
|
1148
|
+
...props
|
|
1149
|
+
}: LightboxContentProps): import("react").JSX.Element;
|
|
1150
|
+
type LightboxHeaderProps = useRender.ComponentProps<"div">;
|
|
1151
|
+
declare function LightboxHeader({
|
|
1152
|
+
render,
|
|
1153
|
+
className,
|
|
1154
|
+
...props
|
|
1155
|
+
}: LightboxHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1156
|
+
type LightboxTitleProps = useRender.ComponentProps<"div">;
|
|
1157
|
+
declare function LightboxTitle({
|
|
1158
|
+
render,
|
|
1159
|
+
className,
|
|
1160
|
+
...props
|
|
1161
|
+
}: LightboxTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1162
|
+
type LightboxActionsProps = useRender.ComponentProps<"div">;
|
|
1163
|
+
declare function LightboxActions({
|
|
1164
|
+
render,
|
|
1165
|
+
className,
|
|
1166
|
+
...props
|
|
1167
|
+
}: LightboxActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1168
|
+
type LightboxStageProps = useRender.ComponentProps<"div">;
|
|
1169
|
+
declare function LightboxStage({
|
|
1170
|
+
render,
|
|
1171
|
+
className,
|
|
1172
|
+
...props
|
|
1173
|
+
}: LightboxStageProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1174
|
+
type LightboxMediaProps = useRender.ComponentProps<"div">;
|
|
1175
|
+
declare function LightboxMedia({
|
|
1176
|
+
render,
|
|
1177
|
+
className,
|
|
1178
|
+
...props
|
|
1179
|
+
}: LightboxMediaProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1180
|
+
type LightboxNavigationButtonProps = Omit<ButtonProps, "disabled" | "loading" | "size" | "variant"> & {
|
|
1181
|
+
direction: "next" | "previous";
|
|
1182
|
+
disabled?: boolean;
|
|
1183
|
+
};
|
|
1184
|
+
declare function LightboxNavigationButton({
|
|
1185
|
+
className,
|
|
1186
|
+
direction,
|
|
1187
|
+
disabled,
|
|
1188
|
+
onClick,
|
|
1189
|
+
type,
|
|
1190
|
+
...props
|
|
1191
|
+
}: LightboxNavigationButtonProps): import("react").JSX.Element;
|
|
1192
|
+
type LightboxInfoBarProps = useRender.ComponentProps<"div">;
|
|
1193
|
+
declare function LightboxInfoBar({
|
|
1194
|
+
render,
|
|
1195
|
+
className,
|
|
1196
|
+
...props
|
|
1197
|
+
}: LightboxInfoBarProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1198
|
+
type LightboxInfoTitleProps = useRender.ComponentProps<"div">;
|
|
1199
|
+
declare function LightboxInfoTitle({
|
|
1200
|
+
render,
|
|
1201
|
+
className,
|
|
1202
|
+
...props
|
|
1203
|
+
}: LightboxInfoTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1204
|
+
type LightboxInfoActionsProps = useRender.ComponentProps<"div">;
|
|
1205
|
+
declare function LightboxInfoActions({
|
|
1206
|
+
render,
|
|
1207
|
+
className,
|
|
1208
|
+
...props
|
|
1209
|
+
}: LightboxInfoActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1210
|
+
type LightboxCloseProps = StyledProps<Dialog$1.Close.Props>;
|
|
1211
|
+
declare function LightboxClose({
|
|
1212
|
+
className,
|
|
1213
|
+
...props
|
|
1214
|
+
}: LightboxCloseProps): import("react").JSX.Element;
|
|
1215
|
+
//#endregion
|
|
1216
|
+
//#region src/components/tooltip/tooltip.d.ts
|
|
849
1217
|
type TooltipProviderProps = Tooltip$1.Provider.Props;
|
|
850
1218
|
declare function TooltipProvider({
|
|
851
1219
|
delay,
|
|
@@ -862,7 +1230,7 @@ type TooltipPortalProps = Tooltip$1.Portal.Props;
|
|
|
862
1230
|
declare function TooltipPortal(props: TooltipPortalProps): import("react").JSX.Element;
|
|
863
1231
|
type TooltipContentProps = StyledProps<Tooltip$1.Popup.Props> & Pick<Tooltip$1.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
864
1232
|
portalProps?: TooltipPortalProps;
|
|
865
|
-
}
|
|
1233
|
+
};
|
|
866
1234
|
declare function TooltipContent({
|
|
867
1235
|
align,
|
|
868
1236
|
alignOffset,
|
|
@@ -877,7 +1245,6 @@ declare function TooltipContent({
|
|
|
877
1245
|
sideOffset,
|
|
878
1246
|
sticky,
|
|
879
1247
|
portalProps,
|
|
880
|
-
variant,
|
|
881
1248
|
className,
|
|
882
1249
|
children,
|
|
883
1250
|
...props
|
|
@@ -959,6 +1326,69 @@ declare function PopoverBackdrop({
|
|
|
959
1326
|
...props
|
|
960
1327
|
}: PopoverBackdropProps): import("react").JSX.Element;
|
|
961
1328
|
//#endregion
|
|
1329
|
+
//#region src/components/preview-card/preview-card.d.ts
|
|
1330
|
+
type PreviewCardProps = PreviewCard$1.Root.Props;
|
|
1331
|
+
declare function PreviewCard(props: PreviewCardProps): import("react").JSX.Element;
|
|
1332
|
+
type PreviewCardTriggerProps = StyledProps<PreviewCard$1.Trigger.Props>;
|
|
1333
|
+
declare function PreviewCardTrigger({
|
|
1334
|
+
delay,
|
|
1335
|
+
closeDelay,
|
|
1336
|
+
className,
|
|
1337
|
+
...props
|
|
1338
|
+
}: PreviewCardTriggerProps): import("react").JSX.Element;
|
|
1339
|
+
type PreviewCardPortalProps = PreviewCard$1.Portal.Props;
|
|
1340
|
+
declare function PreviewCardPortal(props: PreviewCardPortalProps): import("react").JSX.Element;
|
|
1341
|
+
type PreviewCardPopupProps = ComponentPropsWithRef<"div">;
|
|
1342
|
+
declare function PreviewCardPopup({
|
|
1343
|
+
className,
|
|
1344
|
+
...props
|
|
1345
|
+
}: PreviewCardPopupProps): import("react").JSX.Element;
|
|
1346
|
+
type PreviewCardContentProps = StyledProps<PreviewCard$1.Popup.Props> & Pick<PreviewCard$1.Positioner.Props, "align" | "alignOffset" | "anchor" | "arrowPadding" | "collisionAvoidance" | "collisionBoundary" | "collisionPadding" | "disableAnchorTracking" | "positionMethod" | "side" | "sideOffset" | "sticky"> & {
|
|
1347
|
+
portalProps?: PreviewCardPortalProps;
|
|
1348
|
+
};
|
|
1349
|
+
declare function PreviewCardContent({
|
|
1350
|
+
align,
|
|
1351
|
+
alignOffset,
|
|
1352
|
+
anchor,
|
|
1353
|
+
arrowPadding,
|
|
1354
|
+
collisionAvoidance,
|
|
1355
|
+
collisionBoundary,
|
|
1356
|
+
collisionPadding,
|
|
1357
|
+
disableAnchorTracking,
|
|
1358
|
+
positionMethod,
|
|
1359
|
+
side,
|
|
1360
|
+
sideOffset,
|
|
1361
|
+
sticky,
|
|
1362
|
+
portalProps,
|
|
1363
|
+
className,
|
|
1364
|
+
...props
|
|
1365
|
+
}: PreviewCardContentProps): import("react").JSX.Element;
|
|
1366
|
+
type PreviewCardHeaderProps = ComponentPropsWithRef<"div">;
|
|
1367
|
+
declare function PreviewCardHeader({
|
|
1368
|
+
className,
|
|
1369
|
+
...props
|
|
1370
|
+
}: PreviewCardHeaderProps): import("react").JSX.Element;
|
|
1371
|
+
type PreviewCardSeparatorProps = StyledProps<ComponentPropsWithRef<"div">>;
|
|
1372
|
+
declare function PreviewCardSeparator({
|
|
1373
|
+
className,
|
|
1374
|
+
...props
|
|
1375
|
+
}: PreviewCardSeparatorProps): import("react").JSX.Element;
|
|
1376
|
+
type PreviewCardTitleProps = ComponentPropsWithRef<"p">;
|
|
1377
|
+
declare function PreviewCardTitle({
|
|
1378
|
+
className,
|
|
1379
|
+
...props
|
|
1380
|
+
}: PreviewCardTitleProps): import("react").JSX.Element;
|
|
1381
|
+
type PreviewCardDescriptionProps = ComponentPropsWithRef<"p">;
|
|
1382
|
+
declare function PreviewCardDescription({
|
|
1383
|
+
className,
|
|
1384
|
+
...props
|
|
1385
|
+
}: PreviewCardDescriptionProps): import("react").JSX.Element;
|
|
1386
|
+
type PreviewCardArrowProps = StyledProps<PreviewCard$1.Arrow.Props>;
|
|
1387
|
+
declare function PreviewCardArrow({
|
|
1388
|
+
className,
|
|
1389
|
+
...props
|
|
1390
|
+
}: PreviewCardArrowProps): import("react").JSX.Element;
|
|
1391
|
+
//#endregion
|
|
962
1392
|
//#region src/components/label/label.d.ts
|
|
963
1393
|
declare const label: import("tailwind-variants/lite").TVReturnType<{
|
|
964
1394
|
theme: {
|
|
@@ -2422,6 +2852,203 @@ declare function StatusRoot({
|
|
|
2422
2852
|
}: StatusProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2423
2853
|
declare const Status: typeof StatusRoot;
|
|
2424
2854
|
//#endregion
|
|
2855
|
+
//#region src/components/progress/progress.d.ts
|
|
2856
|
+
declare const progress: import("tailwind-variants/lite").TVReturnType<{
|
|
2857
|
+
theme: {
|
|
2858
|
+
brutal: {
|
|
2859
|
+
root: string[];
|
|
2860
|
+
label: string[];
|
|
2861
|
+
value: string[];
|
|
2862
|
+
track: string[];
|
|
2863
|
+
};
|
|
2864
|
+
elegant: {
|
|
2865
|
+
root: string[];
|
|
2866
|
+
label: string[];
|
|
2867
|
+
value: string[];
|
|
2868
|
+
track: string[];
|
|
2869
|
+
indicator: string[];
|
|
2870
|
+
};
|
|
2871
|
+
};
|
|
2872
|
+
variant: {
|
|
2873
|
+
primary: {
|
|
2874
|
+
root: string[];
|
|
2875
|
+
};
|
|
2876
|
+
information: {
|
|
2877
|
+
root: string[];
|
|
2878
|
+
};
|
|
2879
|
+
accent: {
|
|
2880
|
+
root: string[];
|
|
2881
|
+
};
|
|
2882
|
+
success: {
|
|
2883
|
+
root: string[];
|
|
2884
|
+
};
|
|
2885
|
+
warning: {
|
|
2886
|
+
root: string[];
|
|
2887
|
+
};
|
|
2888
|
+
danger: {
|
|
2889
|
+
root: string[];
|
|
2890
|
+
};
|
|
2891
|
+
};
|
|
2892
|
+
size: {
|
|
2893
|
+
sm: {
|
|
2894
|
+
track: string[];
|
|
2895
|
+
};
|
|
2896
|
+
md: {
|
|
2897
|
+
track: string[];
|
|
2898
|
+
};
|
|
2899
|
+
lg: {
|
|
2900
|
+
track: string[];
|
|
2901
|
+
};
|
|
2902
|
+
};
|
|
2903
|
+
}, {
|
|
2904
|
+
root: string[];
|
|
2905
|
+
header: string[];
|
|
2906
|
+
label: string[];
|
|
2907
|
+
value: string[];
|
|
2908
|
+
track: string[];
|
|
2909
|
+
indicator: string[];
|
|
2910
|
+
}, undefined, {
|
|
2911
|
+
theme: {
|
|
2912
|
+
brutal: {
|
|
2913
|
+
root: string[];
|
|
2914
|
+
label: string[];
|
|
2915
|
+
value: string[];
|
|
2916
|
+
track: string[];
|
|
2917
|
+
};
|
|
2918
|
+
elegant: {
|
|
2919
|
+
root: string[];
|
|
2920
|
+
label: string[];
|
|
2921
|
+
value: string[];
|
|
2922
|
+
track: string[];
|
|
2923
|
+
indicator: string[];
|
|
2924
|
+
};
|
|
2925
|
+
};
|
|
2926
|
+
variant: {
|
|
2927
|
+
primary: {
|
|
2928
|
+
root: string[];
|
|
2929
|
+
};
|
|
2930
|
+
information: {
|
|
2931
|
+
root: string[];
|
|
2932
|
+
};
|
|
2933
|
+
accent: {
|
|
2934
|
+
root: string[];
|
|
2935
|
+
};
|
|
2936
|
+
success: {
|
|
2937
|
+
root: string[];
|
|
2938
|
+
};
|
|
2939
|
+
warning: {
|
|
2940
|
+
root: string[];
|
|
2941
|
+
};
|
|
2942
|
+
danger: {
|
|
2943
|
+
root: string[];
|
|
2944
|
+
};
|
|
2945
|
+
};
|
|
2946
|
+
size: {
|
|
2947
|
+
sm: {
|
|
2948
|
+
track: string[];
|
|
2949
|
+
};
|
|
2950
|
+
md: {
|
|
2951
|
+
track: string[];
|
|
2952
|
+
};
|
|
2953
|
+
lg: {
|
|
2954
|
+
track: string[];
|
|
2955
|
+
};
|
|
2956
|
+
};
|
|
2957
|
+
}, {
|
|
2958
|
+
root: string[];
|
|
2959
|
+
header: string[];
|
|
2960
|
+
label: string[];
|
|
2961
|
+
value: string[];
|
|
2962
|
+
track: string[];
|
|
2963
|
+
indicator: string[];
|
|
2964
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
2965
|
+
theme: {
|
|
2966
|
+
brutal: {
|
|
2967
|
+
root: string[];
|
|
2968
|
+
label: string[];
|
|
2969
|
+
value: string[];
|
|
2970
|
+
track: string[];
|
|
2971
|
+
};
|
|
2972
|
+
elegant: {
|
|
2973
|
+
root: string[];
|
|
2974
|
+
label: string[];
|
|
2975
|
+
value: string[];
|
|
2976
|
+
track: string[];
|
|
2977
|
+
indicator: string[];
|
|
2978
|
+
};
|
|
2979
|
+
};
|
|
2980
|
+
variant: {
|
|
2981
|
+
primary: {
|
|
2982
|
+
root: string[];
|
|
2983
|
+
};
|
|
2984
|
+
information: {
|
|
2985
|
+
root: string[];
|
|
2986
|
+
};
|
|
2987
|
+
accent: {
|
|
2988
|
+
root: string[];
|
|
2989
|
+
};
|
|
2990
|
+
success: {
|
|
2991
|
+
root: string[];
|
|
2992
|
+
};
|
|
2993
|
+
warning: {
|
|
2994
|
+
root: string[];
|
|
2995
|
+
};
|
|
2996
|
+
danger: {
|
|
2997
|
+
root: string[];
|
|
2998
|
+
};
|
|
2999
|
+
};
|
|
3000
|
+
size: {
|
|
3001
|
+
sm: {
|
|
3002
|
+
track: string[];
|
|
3003
|
+
};
|
|
3004
|
+
md: {
|
|
3005
|
+
track: string[];
|
|
3006
|
+
};
|
|
3007
|
+
lg: {
|
|
3008
|
+
track: string[];
|
|
3009
|
+
};
|
|
3010
|
+
};
|
|
3011
|
+
}, {
|
|
3012
|
+
root: string[];
|
|
3013
|
+
header: string[];
|
|
3014
|
+
label: string[];
|
|
3015
|
+
value: string[];
|
|
3016
|
+
track: string[];
|
|
3017
|
+
indicator: string[];
|
|
3018
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
3019
|
+
type ProgressProps = StyledProps<Progress$1.Root.Props> & Omit<VariantProps<typeof progress>, "theme">;
|
|
3020
|
+
declare function Progress({
|
|
3021
|
+
size,
|
|
3022
|
+
variant,
|
|
3023
|
+
className,
|
|
3024
|
+
...props
|
|
3025
|
+
}: ProgressProps): import("react").JSX.Element;
|
|
3026
|
+
type ProgressHeaderProps = ComponentPropsWithRef<"div">;
|
|
3027
|
+
declare function ProgressHeader({
|
|
3028
|
+
className,
|
|
3029
|
+
...props
|
|
3030
|
+
}: ProgressHeaderProps): import("react").JSX.Element;
|
|
3031
|
+
type ProgressLabelProps = StyledProps<Progress$1.Label.Props>;
|
|
3032
|
+
declare function ProgressLabel({
|
|
3033
|
+
className,
|
|
3034
|
+
...props
|
|
3035
|
+
}: ProgressLabelProps): import("react").JSX.Element;
|
|
3036
|
+
type ProgressValueProps = StyledProps<Progress$1.Value.Props>;
|
|
3037
|
+
declare function ProgressValue({
|
|
3038
|
+
className,
|
|
3039
|
+
...props
|
|
3040
|
+
}: ProgressValueProps): import("react").JSX.Element;
|
|
3041
|
+
type ProgressTrackProps = StyledProps<Progress$1.Track.Props>;
|
|
3042
|
+
declare function ProgressTrack({
|
|
3043
|
+
className,
|
|
3044
|
+
...props
|
|
3045
|
+
}: ProgressTrackProps): import("react").JSX.Element;
|
|
3046
|
+
type ProgressIndicatorProps = StyledProps<Progress$1.Indicator.Props>;
|
|
3047
|
+
declare function ProgressIndicator({
|
|
3048
|
+
className,
|
|
3049
|
+
...props
|
|
3050
|
+
}: ProgressIndicatorProps): import("react").JSX.Element;
|
|
3051
|
+
//#endregion
|
|
2425
3052
|
//#region src/components/spinner/spinner.d.ts
|
|
2426
3053
|
declare const spinner: import("tailwind-variants/lite").TVReturnType<{
|
|
2427
3054
|
theme: {
|
|
@@ -2471,6 +3098,82 @@ declare function Spinner({
|
|
|
2471
3098
|
...props
|
|
2472
3099
|
}: SpinnerProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
2473
3100
|
//#endregion
|
|
3101
|
+
//#region src/components/skeleton/skeleton.d.ts
|
|
3102
|
+
declare const skeleton: import("tailwind-variants/lite").TVReturnType<{
|
|
3103
|
+
theme: {
|
|
3104
|
+
brutal: {
|
|
3105
|
+
root: string[];
|
|
3106
|
+
};
|
|
3107
|
+
elegant: {
|
|
3108
|
+
root: string[];
|
|
3109
|
+
};
|
|
3110
|
+
};
|
|
3111
|
+
variant: {
|
|
3112
|
+
line: {
|
|
3113
|
+
root: string;
|
|
3114
|
+
};
|
|
3115
|
+
block: {
|
|
3116
|
+
root: string;
|
|
3117
|
+
};
|
|
3118
|
+
circle: {
|
|
3119
|
+
root: string;
|
|
3120
|
+
};
|
|
3121
|
+
};
|
|
3122
|
+
}, {
|
|
3123
|
+
root: string[];
|
|
3124
|
+
}, undefined, {
|
|
3125
|
+
theme: {
|
|
3126
|
+
brutal: {
|
|
3127
|
+
root: string[];
|
|
3128
|
+
};
|
|
3129
|
+
elegant: {
|
|
3130
|
+
root: string[];
|
|
3131
|
+
};
|
|
3132
|
+
};
|
|
3133
|
+
variant: {
|
|
3134
|
+
line: {
|
|
3135
|
+
root: string;
|
|
3136
|
+
};
|
|
3137
|
+
block: {
|
|
3138
|
+
root: string;
|
|
3139
|
+
};
|
|
3140
|
+
circle: {
|
|
3141
|
+
root: string;
|
|
3142
|
+
};
|
|
3143
|
+
};
|
|
3144
|
+
}, {
|
|
3145
|
+
root: string[];
|
|
3146
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
3147
|
+
theme: {
|
|
3148
|
+
brutal: {
|
|
3149
|
+
root: string[];
|
|
3150
|
+
};
|
|
3151
|
+
elegant: {
|
|
3152
|
+
root: string[];
|
|
3153
|
+
};
|
|
3154
|
+
};
|
|
3155
|
+
variant: {
|
|
3156
|
+
line: {
|
|
3157
|
+
root: string;
|
|
3158
|
+
};
|
|
3159
|
+
block: {
|
|
3160
|
+
root: string;
|
|
3161
|
+
};
|
|
3162
|
+
circle: {
|
|
3163
|
+
root: string;
|
|
3164
|
+
};
|
|
3165
|
+
};
|
|
3166
|
+
}, {
|
|
3167
|
+
root: string[];
|
|
3168
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
3169
|
+
type SkeletonVariant = NonNullable<VariantProps<typeof skeleton>["variant"]>;
|
|
3170
|
+
type SkeletonProps = HTMLAttributes<HTMLDivElement> & Omit<VariantProps<typeof skeleton>, "theme">;
|
|
3171
|
+
declare function Skeleton({
|
|
3172
|
+
variant,
|
|
3173
|
+
className,
|
|
3174
|
+
...props
|
|
3175
|
+
}: SkeletonProps): import("react").JSX.Element;
|
|
3176
|
+
//#endregion
|
|
2474
3177
|
//#region src/components/banner/banner.d.ts
|
|
2475
3178
|
declare const banner: import("tailwind-variants/lite").TVReturnType<{
|
|
2476
3179
|
theme: {
|
|
@@ -3019,6 +3722,353 @@ declare function NotificationCenterActionButton({
|
|
|
3019
3722
|
type NotificationCenterEmptyStateProps = EmptyStateProps;
|
|
3020
3723
|
declare function NotificationCenterEmptyState(props: NotificationCenterEmptyStateProps): import("react").JSX.Element;
|
|
3021
3724
|
//#endregion
|
|
3725
|
+
//#region src/components/toast/toast.d.ts
|
|
3726
|
+
declare const toastStyles: import("tailwind-variants/lite").TVReturnType<{
|
|
3727
|
+
theme: {
|
|
3728
|
+
brutal: {
|
|
3729
|
+
root: string[];
|
|
3730
|
+
content: string[];
|
|
3731
|
+
icon: string[];
|
|
3732
|
+
title: string[];
|
|
3733
|
+
description: string[];
|
|
3734
|
+
actions: string[];
|
|
3735
|
+
close: string[];
|
|
3736
|
+
arrow: string[];
|
|
3737
|
+
};
|
|
3738
|
+
elegant: {
|
|
3739
|
+
root: string[];
|
|
3740
|
+
content: string[];
|
|
3741
|
+
icon: string[];
|
|
3742
|
+
title: string[];
|
|
3743
|
+
description: string[];
|
|
3744
|
+
actions: string[];
|
|
3745
|
+
close: string[];
|
|
3746
|
+
arrow: never[];
|
|
3747
|
+
};
|
|
3748
|
+
};
|
|
3749
|
+
placement: {
|
|
3750
|
+
"bottom-center": {
|
|
3751
|
+
viewport: string;
|
|
3752
|
+
};
|
|
3753
|
+
"bottom-right": {
|
|
3754
|
+
viewport: string;
|
|
3755
|
+
};
|
|
3756
|
+
"top-center": {
|
|
3757
|
+
viewport: string;
|
|
3758
|
+
};
|
|
3759
|
+
"top-right": {
|
|
3760
|
+
viewport: string;
|
|
3761
|
+
};
|
|
3762
|
+
none: {
|
|
3763
|
+
viewport: string;
|
|
3764
|
+
};
|
|
3765
|
+
};
|
|
3766
|
+
strategy: {
|
|
3767
|
+
fixed: {
|
|
3768
|
+
viewport: string;
|
|
3769
|
+
};
|
|
3770
|
+
absolute: {
|
|
3771
|
+
viewport: string;
|
|
3772
|
+
};
|
|
3773
|
+
};
|
|
3774
|
+
layout: {
|
|
3775
|
+
stacked: {
|
|
3776
|
+
root: string[];
|
|
3777
|
+
};
|
|
3778
|
+
inline: {
|
|
3779
|
+
root: string[];
|
|
3780
|
+
};
|
|
3781
|
+
};
|
|
3782
|
+
tone: {
|
|
3783
|
+
info: {};
|
|
3784
|
+
success: {};
|
|
3785
|
+
warning: {};
|
|
3786
|
+
error: {};
|
|
3787
|
+
};
|
|
3788
|
+
}, {
|
|
3789
|
+
viewport: string[];
|
|
3790
|
+
positioner: string[];
|
|
3791
|
+
root: string[];
|
|
3792
|
+
content: string[];
|
|
3793
|
+
icon: string[];
|
|
3794
|
+
body: string[];
|
|
3795
|
+
title: string[];
|
|
3796
|
+
description: string[];
|
|
3797
|
+
actions: string[];
|
|
3798
|
+
close: string[];
|
|
3799
|
+
arrow: string[];
|
|
3800
|
+
}, undefined, {
|
|
3801
|
+
theme: {
|
|
3802
|
+
brutal: {
|
|
3803
|
+
root: string[];
|
|
3804
|
+
content: string[];
|
|
3805
|
+
icon: string[];
|
|
3806
|
+
title: string[];
|
|
3807
|
+
description: string[];
|
|
3808
|
+
actions: string[];
|
|
3809
|
+
close: string[];
|
|
3810
|
+
arrow: string[];
|
|
3811
|
+
};
|
|
3812
|
+
elegant: {
|
|
3813
|
+
root: string[];
|
|
3814
|
+
content: string[];
|
|
3815
|
+
icon: string[];
|
|
3816
|
+
title: string[];
|
|
3817
|
+
description: string[];
|
|
3818
|
+
actions: string[];
|
|
3819
|
+
close: string[];
|
|
3820
|
+
arrow: never[];
|
|
3821
|
+
};
|
|
3822
|
+
};
|
|
3823
|
+
placement: {
|
|
3824
|
+
"bottom-center": {
|
|
3825
|
+
viewport: string;
|
|
3826
|
+
};
|
|
3827
|
+
"bottom-right": {
|
|
3828
|
+
viewport: string;
|
|
3829
|
+
};
|
|
3830
|
+
"top-center": {
|
|
3831
|
+
viewport: string;
|
|
3832
|
+
};
|
|
3833
|
+
"top-right": {
|
|
3834
|
+
viewport: string;
|
|
3835
|
+
};
|
|
3836
|
+
none: {
|
|
3837
|
+
viewport: string;
|
|
3838
|
+
};
|
|
3839
|
+
};
|
|
3840
|
+
strategy: {
|
|
3841
|
+
fixed: {
|
|
3842
|
+
viewport: string;
|
|
3843
|
+
};
|
|
3844
|
+
absolute: {
|
|
3845
|
+
viewport: string;
|
|
3846
|
+
};
|
|
3847
|
+
};
|
|
3848
|
+
layout: {
|
|
3849
|
+
stacked: {
|
|
3850
|
+
root: string[];
|
|
3851
|
+
};
|
|
3852
|
+
inline: {
|
|
3853
|
+
root: string[];
|
|
3854
|
+
};
|
|
3855
|
+
};
|
|
3856
|
+
tone: {
|
|
3857
|
+
info: {};
|
|
3858
|
+
success: {};
|
|
3859
|
+
warning: {};
|
|
3860
|
+
error: {};
|
|
3861
|
+
};
|
|
3862
|
+
}, {
|
|
3863
|
+
viewport: string[];
|
|
3864
|
+
positioner: string[];
|
|
3865
|
+
root: string[];
|
|
3866
|
+
content: string[];
|
|
3867
|
+
icon: string[];
|
|
3868
|
+
body: string[];
|
|
3869
|
+
title: string[];
|
|
3870
|
+
description: string[];
|
|
3871
|
+
actions: string[];
|
|
3872
|
+
close: string[];
|
|
3873
|
+
arrow: string[];
|
|
3874
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
3875
|
+
theme: {
|
|
3876
|
+
brutal: {
|
|
3877
|
+
root: string[];
|
|
3878
|
+
content: string[];
|
|
3879
|
+
icon: string[];
|
|
3880
|
+
title: string[];
|
|
3881
|
+
description: string[];
|
|
3882
|
+
actions: string[];
|
|
3883
|
+
close: string[];
|
|
3884
|
+
arrow: string[];
|
|
3885
|
+
};
|
|
3886
|
+
elegant: {
|
|
3887
|
+
root: string[];
|
|
3888
|
+
content: string[];
|
|
3889
|
+
icon: string[];
|
|
3890
|
+
title: string[];
|
|
3891
|
+
description: string[];
|
|
3892
|
+
actions: string[];
|
|
3893
|
+
close: string[];
|
|
3894
|
+
arrow: never[];
|
|
3895
|
+
};
|
|
3896
|
+
};
|
|
3897
|
+
placement: {
|
|
3898
|
+
"bottom-center": {
|
|
3899
|
+
viewport: string;
|
|
3900
|
+
};
|
|
3901
|
+
"bottom-right": {
|
|
3902
|
+
viewport: string;
|
|
3903
|
+
};
|
|
3904
|
+
"top-center": {
|
|
3905
|
+
viewport: string;
|
|
3906
|
+
};
|
|
3907
|
+
"top-right": {
|
|
3908
|
+
viewport: string;
|
|
3909
|
+
};
|
|
3910
|
+
none: {
|
|
3911
|
+
viewport: string;
|
|
3912
|
+
};
|
|
3913
|
+
};
|
|
3914
|
+
strategy: {
|
|
3915
|
+
fixed: {
|
|
3916
|
+
viewport: string;
|
|
3917
|
+
};
|
|
3918
|
+
absolute: {
|
|
3919
|
+
viewport: string;
|
|
3920
|
+
};
|
|
3921
|
+
};
|
|
3922
|
+
layout: {
|
|
3923
|
+
stacked: {
|
|
3924
|
+
root: string[];
|
|
3925
|
+
};
|
|
3926
|
+
inline: {
|
|
3927
|
+
root: string[];
|
|
3928
|
+
};
|
|
3929
|
+
};
|
|
3930
|
+
tone: {
|
|
3931
|
+
info: {};
|
|
3932
|
+
success: {};
|
|
3933
|
+
warning: {};
|
|
3934
|
+
error: {};
|
|
3935
|
+
};
|
|
3936
|
+
}, {
|
|
3937
|
+
viewport: string[];
|
|
3938
|
+
positioner: string[];
|
|
3939
|
+
root: string[];
|
|
3940
|
+
content: string[];
|
|
3941
|
+
icon: string[];
|
|
3942
|
+
body: string[];
|
|
3943
|
+
title: string[];
|
|
3944
|
+
description: string[];
|
|
3945
|
+
actions: string[];
|
|
3946
|
+
close: string[];
|
|
3947
|
+
arrow: string[];
|
|
3948
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
3949
|
+
declare const createToastManager: typeof Toast.createToastManager;
|
|
3950
|
+
declare const useToastManager: typeof Toast.useToastManager;
|
|
3951
|
+
type ToastIntent = "info" | "success" | "warning" | "error";
|
|
3952
|
+
type ToastData = {
|
|
3953
|
+
intent?: ToastIntent;
|
|
3954
|
+
hasClose?: boolean;
|
|
3955
|
+
hasIcon?: boolean;
|
|
3956
|
+
contentClassName?: string;
|
|
3957
|
+
};
|
|
3958
|
+
type ToastObject<Data extends object = object> = Toast.Root.ToastObject<Data>;
|
|
3959
|
+
type ToastCommandOptions<Data extends object = ToastData> = Omit<Partial<ToastObject<Data>>, "actionProps" | "data" | "title" | "type"> & {
|
|
3960
|
+
action?: {
|
|
3961
|
+
label: ReactNode;
|
|
3962
|
+
onClick?: ComponentPropsWithRef<"button">["onClick"];
|
|
3963
|
+
};
|
|
3964
|
+
dismissible?: boolean;
|
|
3965
|
+
icon?: boolean;
|
|
3966
|
+
};
|
|
3967
|
+
declare const toast: {
|
|
3968
|
+
add(options: ToastCommandOptions<ToastData> & {
|
|
3969
|
+
title: string;
|
|
3970
|
+
type?: ToastIntent;
|
|
3971
|
+
}): string;
|
|
3972
|
+
info(title: string, options?: ToastCommandOptions<ToastData>): string;
|
|
3973
|
+
success(title: string, options?: ToastCommandOptions<ToastData>): string;
|
|
3974
|
+
warning(title: string, options?: ToastCommandOptions<ToastData>): string;
|
|
3975
|
+
error(title: string, options?: ToastCommandOptions<ToastData>): string;
|
|
3976
|
+
dismiss(id?: string): void;
|
|
3977
|
+
};
|
|
3978
|
+
type ToastProviderProps = Toast.Provider.Props & {
|
|
3979
|
+
portalContainer?: Toast.Portal.Props["container"];
|
|
3980
|
+
renderViewport?: boolean;
|
|
3981
|
+
viewportClassName?: string;
|
|
3982
|
+
viewportPlacement?: ToastViewportProps["placement"];
|
|
3983
|
+
viewportStrategy?: ToastViewportProps["strategy"];
|
|
3984
|
+
};
|
|
3985
|
+
declare function ToastProvider({
|
|
3986
|
+
children,
|
|
3987
|
+
portalContainer,
|
|
3988
|
+
renderViewport,
|
|
3989
|
+
toastManager,
|
|
3990
|
+
viewportClassName,
|
|
3991
|
+
viewportPlacement,
|
|
3992
|
+
viewportStrategy,
|
|
3993
|
+
...props
|
|
3994
|
+
}: ToastProviderProps): import("react").JSX.Element;
|
|
3995
|
+
type ToastPortalProps = Toast.Portal.Props;
|
|
3996
|
+
declare function ToastPortal(props: ToastPortalProps): import("react").JSX.Element;
|
|
3997
|
+
type ToastViewportProps = StyledProps<Toast.Viewport.Props> & Pick<VariantProps<typeof toastStyles>, "placement" | "strategy">;
|
|
3998
|
+
declare function ToastViewport({
|
|
3999
|
+
placement,
|
|
4000
|
+
strategy,
|
|
4001
|
+
className,
|
|
4002
|
+
...props
|
|
4003
|
+
}: ToastViewportProps): import("react").JSX.Element;
|
|
4004
|
+
type ToastPositionerProps = StyledProps<Toast.Positioner.Props>;
|
|
4005
|
+
declare function ToastPositioner({
|
|
4006
|
+
className,
|
|
4007
|
+
...props
|
|
4008
|
+
}: ToastPositionerProps): import("react").JSX.Element;
|
|
4009
|
+
type ToastRootProps = StyledProps<Toast.Root.Props> & Pick<VariantProps<typeof toastStyles>, "layout">;
|
|
4010
|
+
declare function ToastRoot({
|
|
4011
|
+
layout,
|
|
4012
|
+
className,
|
|
4013
|
+
toast: toastObject,
|
|
4014
|
+
...props
|
|
4015
|
+
}: ToastRootProps): import("react").JSX.Element;
|
|
4016
|
+
type ToastContentProps = StyledProps<Toast.Content.Props>;
|
|
4017
|
+
declare function ToastContent({
|
|
4018
|
+
children,
|
|
4019
|
+
className,
|
|
4020
|
+
...props
|
|
4021
|
+
}: ToastContentProps): import("react").JSX.Element;
|
|
4022
|
+
type ToastIconProps = ComponentPropsWithRef<"div">;
|
|
4023
|
+
declare function ToastIcon({
|
|
4024
|
+
className,
|
|
4025
|
+
...props
|
|
4026
|
+
}: ToastIconProps): import("react").JSX.Element;
|
|
4027
|
+
type ToastBodyProps = ComponentPropsWithRef<"div">;
|
|
4028
|
+
declare function ToastBody({
|
|
4029
|
+
className,
|
|
4030
|
+
...props
|
|
4031
|
+
}: ToastBodyProps): import("react").JSX.Element;
|
|
4032
|
+
type ToastActionsProps = ComponentPropsWithRef<"div">;
|
|
4033
|
+
declare function ToastActions({
|
|
4034
|
+
className,
|
|
4035
|
+
...props
|
|
4036
|
+
}: ToastActionsProps): import("react").JSX.Element;
|
|
4037
|
+
type ToastTitleProps = StyledProps<Toast.Title.Props>;
|
|
4038
|
+
declare function ToastTitle({
|
|
4039
|
+
className,
|
|
4040
|
+
...props
|
|
4041
|
+
}: ToastTitleProps): import("react").JSX.Element;
|
|
4042
|
+
type ToastDescriptionProps = StyledProps<Toast.Description.Props>;
|
|
4043
|
+
declare function ToastDescription({
|
|
4044
|
+
className,
|
|
4045
|
+
...props
|
|
4046
|
+
}: ToastDescriptionProps): import("react").JSX.Element;
|
|
4047
|
+
type ToastActionProps = StyledProps<Toast.Action.Props> & {
|
|
4048
|
+
loading?: boolean;
|
|
4049
|
+
loadingLabel?: string;
|
|
4050
|
+
};
|
|
4051
|
+
declare function ToastAction({
|
|
4052
|
+
className,
|
|
4053
|
+
children,
|
|
4054
|
+
disabled,
|
|
4055
|
+
loading,
|
|
4056
|
+
loadingLabel,
|
|
4057
|
+
render,
|
|
4058
|
+
...props
|
|
4059
|
+
}: ToastActionProps): import("react").JSX.Element;
|
|
4060
|
+
type ToastCloseProps = StyledProps<Toast.Close.Props>;
|
|
4061
|
+
declare function ToastClose({
|
|
4062
|
+
className,
|
|
4063
|
+
children,
|
|
4064
|
+
...props
|
|
4065
|
+
}: ToastCloseProps): import("react").JSX.Element;
|
|
4066
|
+
type ToastArrowProps = StyledProps<Toast.Arrow.Props>;
|
|
4067
|
+
declare function ToastArrow({
|
|
4068
|
+
className,
|
|
4069
|
+
...props
|
|
4070
|
+
}: ToastArrowProps): import("react").JSX.Element;
|
|
4071
|
+
//#endregion
|
|
3022
4072
|
//#region src/components/tabs/tabs.d.ts
|
|
3023
4073
|
declare const tabs: import("tailwind-variants/lite").TVReturnType<{
|
|
3024
4074
|
theme: {
|
|
@@ -3158,8 +4208,11 @@ type OrderedTabItem<T extends string = string> = {
|
|
|
3158
4208
|
declare function useOrderedTabs<T extends OrderedTabItem<string>>(items: readonly T[], storedOrder: readonly string[]): T[];
|
|
3159
4209
|
//#endregion
|
|
3160
4210
|
//#region src/components/separator/separator.d.ts
|
|
3161
|
-
type SeparatorProps = StyledProps<Separator$1.Props
|
|
4211
|
+
type SeparatorProps = StyledProps<Separator$1.Props> & {
|
|
4212
|
+
children?: ReactNode;
|
|
4213
|
+
};
|
|
3162
4214
|
declare function Separator({
|
|
4215
|
+
children,
|
|
3163
4216
|
className,
|
|
3164
4217
|
orientation,
|
|
3165
4218
|
...props
|
|
@@ -3230,4 +4283,4 @@ declare function useThemeFamily(): Theme;
|
|
|
3230
4283
|
/** Read and update the application-level RUI theme selection. */
|
|
3231
4284
|
declare function useTheme(): ThemeState;
|
|
3232
4285
|
//#endregion
|
|
3233
|
-
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 };
|
|
4286
|
+
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, BottomSheet, BottomSheetActions, type BottomSheetActionsProps, BottomSheetBody, type BottomSheetBodyProps, BottomSheetClose, type BottomSheetCloseProps, BottomSheetContent, type BottomSheetContentProps, BottomSheetDescription, type BottomSheetDescriptionProps, BottomSheetFooter, type BottomSheetFooterProps, BottomSheetHeader, type BottomSheetHeaderProps, BottomSheetOverlay, type BottomSheetOverlayProps, BottomSheetPortal, type BottomSheetPortalProps, BottomSheetPositioner, type BottomSheetPositionerProps, type BottomSheetProps, BottomSheetTitle, type BottomSheetTitleProps, BottomSheetTrigger, type BottomSheetTriggerProps, 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, Lightbox, LightboxActions, type LightboxActionsProps, LightboxClose, type LightboxCloseProps, LightboxContent, type LightboxContentProps, LightboxHeader, type LightboxHeaderProps, LightboxInfoActions, type LightboxInfoActionsProps, LightboxInfoBar, type LightboxInfoBarProps, LightboxInfoTitle, type LightboxInfoTitleProps, LightboxMedia, type LightboxMediaProps, LightboxNavigationButton, type LightboxNavigationButtonProps, LightboxPortal, type LightboxPortalProps, type LightboxProps, LightboxStage, type LightboxStageProps, LightboxTitle, type LightboxTitleProps, LightboxTrigger, type LightboxTriggerProps, 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, PreviewCard, PreviewCardArrow, type PreviewCardArrowProps, PreviewCardContent, type PreviewCardContentProps, PreviewCardDescription, type PreviewCardDescriptionProps, PreviewCardHeader, type PreviewCardHeaderProps, PreviewCardPopup, type PreviewCardPopupProps, PreviewCardPortal, type PreviewCardPortalProps, type PreviewCardProps, PreviewCardSeparator, type PreviewCardSeparatorProps, PreviewCardTitle, type PreviewCardTitleProps, PreviewCardTrigger, type PreviewCardTriggerProps, Progress, ProgressHeader, type ProgressHeaderProps, ProgressIndicator, type ProgressIndicatorProps, ProgressLabel, type ProgressLabelProps, type ProgressProps, ProgressTrack, type ProgressTrackProps, ProgressValue, type ProgressValueProps, 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, Skeleton, type SkeletonProps, type SkeletonVariant, 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, ToastAction, type ToastActionProps, ToastActions, type ToastActionsProps, ToastArrow, type ToastArrowProps, ToastBody, type ToastBodyProps, ToastClose, type ToastCloseProps, ToastContent, type ToastContentProps, type ToastData, ToastDescription, type ToastDescriptionProps, ToastIcon, type ToastIconProps, type ToastIntent, type ToastObject, ToastPortal, type ToastPortalProps, ToastPositioner, type ToastPositionerProps, ToastProvider, type ToastProviderProps, ToastRoot, type ToastRootProps, ToastTitle, type ToastTitleProps, ToastViewport, type ToastViewportProps, Tooltip, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipPortalProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, buttonVariants, cn, createToastManager, toast, useOrderedTabs, useTheme, useThemeFamily, useToastManager };
|