markora-ui 0.1.3 → 0.1.4
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/README.md +7 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -2
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -0
- package/package.json +7 -2
- package/dist/index.d.ts +0 -1124
package/dist/index.d.ts
DELETED
|
@@ -1,1124 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import * as react from 'react';
|
|
3
|
-
import react__default, { HTMLAttributes, ReactNode, PropsWithChildren, ImgHTMLAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, TableHTMLAttributes, LabelHTMLAttributes, SelectHTMLAttributes, TextareaHTMLAttributes, ElementType } from 'react';
|
|
4
|
-
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
|
-
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
|
|
7
|
-
interface AccordionItemData {
|
|
8
|
-
id: string;
|
|
9
|
-
title: ReactNode;
|
|
10
|
-
description?: ReactNode;
|
|
11
|
-
content: ReactNode;
|
|
12
|
-
badge?: ReactNode;
|
|
13
|
-
}
|
|
14
|
-
interface AccordionProps extends Omit<HTMLAttributes<HTMLDivElement>, 'defaultValue'> {
|
|
15
|
-
items: AccordionItemData[];
|
|
16
|
-
value?: string | string[] | null;
|
|
17
|
-
defaultValue?: string | string[] | null;
|
|
18
|
-
type?: 'single' | 'multiple';
|
|
19
|
-
collapsible?: boolean;
|
|
20
|
-
chevronPosition?: 'start' | 'end';
|
|
21
|
-
variant?: 'surface' | 'outline' | 'card';
|
|
22
|
-
size?: 'sm' | 'md' | 'lg';
|
|
23
|
-
onValueChange?: (value: string | string[] | null) => void;
|
|
24
|
-
}
|
|
25
|
-
declare function Accordion({ className, defaultValue, value, items, type, collapsible, chevronPosition, variant, size, onValueChange, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
26
|
-
|
|
27
|
-
interface ActionBarAction {
|
|
28
|
-
label: ReactNode;
|
|
29
|
-
onClick?: () => void;
|
|
30
|
-
variant?: 'primary' | 'secondary' | 'outline' | 'destructive';
|
|
31
|
-
}
|
|
32
|
-
interface ActionBarProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
33
|
-
open?: boolean;
|
|
34
|
-
title?: ReactNode;
|
|
35
|
-
description?: ReactNode;
|
|
36
|
-
actions: ActionBarAction[];
|
|
37
|
-
}
|
|
38
|
-
declare function ActionBar({ actions, className, description, open, title, ...props }: ActionBarProps): react_jsx_runtime.JSX.Element;
|
|
39
|
-
|
|
40
|
-
declare const alertVariants: (props?: ({
|
|
41
|
-
variant?: "default" | "destructive" | "success" | null | undefined;
|
|
42
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
43
|
-
interface AlertProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof alertVariants> {
|
|
44
|
-
title?: ReactNode;
|
|
45
|
-
description?: ReactNode;
|
|
46
|
-
}
|
|
47
|
-
declare function Alert({ className, description, title, variant, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
48
|
-
|
|
49
|
-
interface DrawerProps extends PropsWithChildren {
|
|
50
|
-
open: boolean;
|
|
51
|
-
onClose: () => void;
|
|
52
|
-
title: ReactNode;
|
|
53
|
-
description?: ReactNode;
|
|
54
|
-
side?: 'left' | 'right';
|
|
55
|
-
}
|
|
56
|
-
declare function Drawer({ children, description, onClose, open, side, title }: DrawerProps): react.ReactPortal | null;
|
|
57
|
-
|
|
58
|
-
interface ModalProps extends PropsWithChildren {
|
|
59
|
-
open: boolean;
|
|
60
|
-
onClose: () => void;
|
|
61
|
-
title: ReactNode;
|
|
62
|
-
description?: ReactNode;
|
|
63
|
-
footer?: ReactNode;
|
|
64
|
-
closeOnOverlayClick?: boolean;
|
|
65
|
-
closeLabel?: string;
|
|
66
|
-
}
|
|
67
|
-
declare function Modal({ children, closeLabel, closeOnOverlayClick, description, footer, onClose, open, title, }: ModalProps): react.ReactPortal | null;
|
|
68
|
-
|
|
69
|
-
interface DialogProps extends ModalProps {
|
|
70
|
-
}
|
|
71
|
-
declare function Dialog(props: DialogProps): react_jsx_runtime.JSX.Element;
|
|
72
|
-
interface AlertDialogProps extends Omit<ModalProps, 'footer'> {
|
|
73
|
-
cancelLabel?: ReactNode;
|
|
74
|
-
actionLabel?: ReactNode;
|
|
75
|
-
onAction?: () => void;
|
|
76
|
-
actionVariant?: 'primary' | 'secondary' | 'destructive';
|
|
77
|
-
closeOnAction?: boolean;
|
|
78
|
-
}
|
|
79
|
-
declare function AlertDialog({ actionLabel, actionVariant, cancelLabel, closeOnAction, onAction, onClose, ...props }: AlertDialogProps): react_jsx_runtime.JSX.Element;
|
|
80
|
-
interface SheetProps extends DrawerProps {
|
|
81
|
-
}
|
|
82
|
-
declare function Sheet(props: SheetProps): react_jsx_runtime.JSX.Element;
|
|
83
|
-
|
|
84
|
-
interface AspectRatioProps extends HTMLAttributes<HTMLDivElement> {
|
|
85
|
-
ratio?: number;
|
|
86
|
-
}
|
|
87
|
-
declare function AspectRatio({ children, className, ratio, ...props }: AspectRatioProps): react_jsx_runtime.JSX.Element;
|
|
88
|
-
|
|
89
|
-
interface AvatarProps extends HTMLAttributes<HTMLDivElement> {
|
|
90
|
-
}
|
|
91
|
-
declare function Avatar({ className, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
92
|
-
interface AvatarImageProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
93
|
-
}
|
|
94
|
-
declare function AvatarImage({ className, alt, ...props }: AvatarImageProps): react_jsx_runtime.JSX.Element;
|
|
95
|
-
interface AvatarFallbackProps extends HTMLAttributes<HTMLSpanElement> {
|
|
96
|
-
}
|
|
97
|
-
declare function AvatarFallback({ className, ...props }: AvatarFallbackProps): react_jsx_runtime.JSX.Element;
|
|
98
|
-
|
|
99
|
-
declare const badgeVariants: (props?: ({
|
|
100
|
-
variant?: "outline" | "default" | "secondary" | "destructive" | "success" | "gradient" | "warning" | "info" | "soft-primary" | "soft-success" | "soft-warning" | "soft-destructive" | "soft-info" | null | undefined;
|
|
101
|
-
dot?: boolean | null | undefined;
|
|
102
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
103
|
-
interface BadgeProps extends HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
104
|
-
dot?: boolean;
|
|
105
|
-
dotColor?: string;
|
|
106
|
-
icon?: ReactNode;
|
|
107
|
-
}
|
|
108
|
-
declare function Badge({ className, variant, dot, dotColor, icon, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
109
|
-
|
|
110
|
-
interface BannerProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
111
|
-
title: ReactNode;
|
|
112
|
-
description?: ReactNode;
|
|
113
|
-
actionLabel?: ReactNode;
|
|
114
|
-
onAction?: () => void;
|
|
115
|
-
}
|
|
116
|
-
declare function Banner({ actionLabel, className, description, onAction, title, ...props }: BannerProps): react_jsx_runtime.JSX.Element;
|
|
117
|
-
|
|
118
|
-
interface BreadcrumbItem {
|
|
119
|
-
label: ReactNode;
|
|
120
|
-
href?: string;
|
|
121
|
-
current?: boolean;
|
|
122
|
-
}
|
|
123
|
-
interface BreadcrumbProps extends HTMLAttributes<HTMLElement> {
|
|
124
|
-
items: BreadcrumbItem[];
|
|
125
|
-
}
|
|
126
|
-
declare function Breadcrumb({ className, items, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
127
|
-
|
|
128
|
-
declare const buttonVariants: (props?: ({
|
|
129
|
-
variant?: "outline" | "link" | "primary" | "secondary" | "ghost" | "destructive" | "success" | "gradient" | "gradient-warm" | "subtle" | "subtle-destructive" | "subtle-success" | "shimmer" | null | undefined;
|
|
130
|
-
size?: "sm" | "md" | "lg" | "xs" | "xl" | "icon" | "icon-sm" | "icon-xs" | null | undefined;
|
|
131
|
-
fullWidth?: boolean | null | undefined;
|
|
132
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
133
|
-
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
134
|
-
children?: ReactNode;
|
|
135
|
-
loading?: boolean;
|
|
136
|
-
loadingText?: string;
|
|
137
|
-
leftIcon?: ReactNode;
|
|
138
|
-
rightIcon?: ReactNode;
|
|
139
|
-
}
|
|
140
|
-
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
141
|
-
|
|
142
|
-
interface ButtonGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
143
|
-
}
|
|
144
|
-
declare function ButtonGroup({ className, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
145
|
-
|
|
146
|
-
interface CalendarProps extends Omit<HTMLAttributes<HTMLDivElement>, 'value' | 'defaultValue'> {
|
|
147
|
-
value?: Date;
|
|
148
|
-
defaultValue?: Date;
|
|
149
|
-
onValueChange?: (date: Date) => void;
|
|
150
|
-
}
|
|
151
|
-
declare function Calendar({ className, defaultValue, onValueChange, value, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
|
|
152
|
-
|
|
153
|
-
declare const calloutVariants: (props?: ({
|
|
154
|
-
variant?: "destructive" | "success" | "warning" | "info" | null | undefined;
|
|
155
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
156
|
-
interface CalloutProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof calloutVariants> {
|
|
157
|
-
title?: ReactNode;
|
|
158
|
-
icon?: ReactNode;
|
|
159
|
-
}
|
|
160
|
-
declare function Callout({ children, className, icon, title, variant, ...props }: CalloutProps): react_jsx_runtime.JSX.Element;
|
|
161
|
-
|
|
162
|
-
declare const cardVariants: (props?: ({
|
|
163
|
-
variant?: "flat" | "default" | "gradient" | "glass" | "glow" | "featured" | "outlined" | null | undefined;
|
|
164
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
165
|
-
interface CardProps extends HTMLAttributes<HTMLDivElement>, VariantProps<typeof cardVariants> {
|
|
166
|
-
interactive?: boolean;
|
|
167
|
-
}
|
|
168
|
-
declare function Card({ className, interactive, variant, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
169
|
-
declare function CardHeader({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
170
|
-
declare function CardTitle({ className, ...props }: HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
|
|
171
|
-
declare function CardDescription({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
172
|
-
declare function CardContent({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
173
|
-
declare function CardFooter({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
174
|
-
|
|
175
|
-
interface CarouselProps extends HTMLAttributes<HTMLDivElement> {
|
|
176
|
-
items: ReactNode[];
|
|
177
|
-
initialIndex?: number;
|
|
178
|
-
showIndicators?: boolean;
|
|
179
|
-
ariaLabel?: string;
|
|
180
|
-
}
|
|
181
|
-
declare function Carousel({ ariaLabel, className, initialIndex, items, showIndicators, ...props }: CarouselProps): react_jsx_runtime.JSX.Element;
|
|
182
|
-
|
|
183
|
-
interface ChartDatum {
|
|
184
|
-
label: string;
|
|
185
|
-
value: number;
|
|
186
|
-
color?: string;
|
|
187
|
-
}
|
|
188
|
-
interface ChartProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
189
|
-
data: ChartDatum[];
|
|
190
|
-
maxValue?: number;
|
|
191
|
-
title?: ReactNode;
|
|
192
|
-
description?: ReactNode;
|
|
193
|
-
showLegend?: boolean;
|
|
194
|
-
chartType?: 'bar' | 'pie' | 'donut' | 'line' | 'area' | 'radar' | 'radial' | 'tooltip';
|
|
195
|
-
size?: number;
|
|
196
|
-
}
|
|
197
|
-
declare function Chart({ className, data, description, maxValue, showLegend, title, chartType, size, ...props }: ChartProps): react_jsx_runtime.JSX.Element;
|
|
198
|
-
|
|
199
|
-
interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type'> {
|
|
200
|
-
label?: ReactNode;
|
|
201
|
-
description?: ReactNode;
|
|
202
|
-
}
|
|
203
|
-
declare const Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
|
|
204
|
-
|
|
205
|
-
interface ClipboardProps {
|
|
206
|
-
value: string;
|
|
207
|
-
label?: string;
|
|
208
|
-
buttonLabel?: string;
|
|
209
|
-
buttonVariant?: ButtonProps['variant'];
|
|
210
|
-
onCopy?: (value: string) => void;
|
|
211
|
-
}
|
|
212
|
-
declare function Clipboard({ buttonLabel, buttonVariant, label, onCopy, value }: ClipboardProps): react_jsx_runtime.JSX.Element;
|
|
213
|
-
|
|
214
|
-
interface CollapsibleProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
215
|
-
title: ReactNode;
|
|
216
|
-
children: ReactNode;
|
|
217
|
-
defaultOpen?: boolean;
|
|
218
|
-
}
|
|
219
|
-
declare function Collapsible({ children, className, defaultOpen, title, ...props }: CollapsibleProps): react_jsx_runtime.JSX.Element;
|
|
220
|
-
|
|
221
|
-
interface ComboboxOption {
|
|
222
|
-
value: string;
|
|
223
|
-
label: string;
|
|
224
|
-
keywords?: string[];
|
|
225
|
-
disabled?: boolean;
|
|
226
|
-
description?: ReactNode;
|
|
227
|
-
}
|
|
228
|
-
interface ComboboxProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'value' | 'defaultValue'> {
|
|
229
|
-
options: ComboboxOption[];
|
|
230
|
-
value?: string;
|
|
231
|
-
defaultValue?: string;
|
|
232
|
-
onValueChange?: (value: string) => void;
|
|
233
|
-
label?: ReactNode;
|
|
234
|
-
placeholder?: string;
|
|
235
|
-
hint?: ReactNode;
|
|
236
|
-
error?: ReactNode;
|
|
237
|
-
emptyMessage?: ReactNode;
|
|
238
|
-
}
|
|
239
|
-
declare function Combobox({ className, defaultValue, emptyMessage, error, hint, label, onValueChange, options, placeholder, value, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
240
|
-
|
|
241
|
-
interface CommandItem {
|
|
242
|
-
id: string;
|
|
243
|
-
label: string;
|
|
244
|
-
keywords?: string[];
|
|
245
|
-
group?: string;
|
|
246
|
-
onSelect?: () => void;
|
|
247
|
-
}
|
|
248
|
-
interface CommandProps {
|
|
249
|
-
open: boolean;
|
|
250
|
-
onClose: () => void;
|
|
251
|
-
items: CommandItem[];
|
|
252
|
-
title?: ReactNode;
|
|
253
|
-
}
|
|
254
|
-
declare function Command({ items, onClose, open, title }: CommandProps): react_jsx_runtime.JSX.Element;
|
|
255
|
-
|
|
256
|
-
interface ContextMenuItem {
|
|
257
|
-
id: string;
|
|
258
|
-
label: ReactNode;
|
|
259
|
-
onSelect?: () => void;
|
|
260
|
-
disabled?: boolean;
|
|
261
|
-
}
|
|
262
|
-
interface ContextMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
263
|
-
trigger: ReactNode;
|
|
264
|
-
items: ContextMenuItem[];
|
|
265
|
-
}
|
|
266
|
-
declare function ContextMenu({ className, items, trigger, ...props }: ContextMenuProps): react_jsx_runtime.JSX.Element;
|
|
267
|
-
|
|
268
|
-
declare function Table({ className, ...props }: TableHTMLAttributes<HTMLTableElement>): react_jsx_runtime.JSX.Element;
|
|
269
|
-
declare function TableHeader({ className, ...props }: HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
|
|
270
|
-
declare function TableBody({ className, ...props }: HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
|
|
271
|
-
declare function TableRow({ className, ...props }: HTMLAttributes<HTMLTableRowElement>): react_jsx_runtime.JSX.Element;
|
|
272
|
-
declare function TableHead({ className, ...props }: ThHTMLAttributes<HTMLTableCellElement>): react_jsx_runtime.JSX.Element;
|
|
273
|
-
declare function TableCell({ className, ...props }: TdHTMLAttributes<HTMLTableCellElement>): react_jsx_runtime.JSX.Element;
|
|
274
|
-
|
|
275
|
-
interface DataTableColumn<T extends Record<string, unknown>> {
|
|
276
|
-
key: string;
|
|
277
|
-
header: ReactNode;
|
|
278
|
-
accessor?: keyof T | ((row: T) => ReactNode);
|
|
279
|
-
cell?: (row: T) => ReactNode;
|
|
280
|
-
sortable?: boolean;
|
|
281
|
-
align?: 'left' | 'center' | 'right';
|
|
282
|
-
}
|
|
283
|
-
interface DataTableProps<T extends Record<string, unknown>> extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
284
|
-
data: T[];
|
|
285
|
-
columns: Array<DataTableColumn<T>>;
|
|
286
|
-
caption?: ReactNode;
|
|
287
|
-
emptyState?: ReactNode;
|
|
288
|
-
getRowId?: (row: T, index: number) => string;
|
|
289
|
-
initialSort?: {
|
|
290
|
-
key: string;
|
|
291
|
-
direction?: 'asc' | 'desc';
|
|
292
|
-
};
|
|
293
|
-
}
|
|
294
|
-
declare function DataTable<T extends Record<string, unknown>>({ caption, className, columns, data, emptyState, getRowId, initialSort, ...props }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
295
|
-
|
|
296
|
-
interface DatePickerProps extends Omit<HTMLAttributes<HTMLDivElement>, 'value' | 'defaultValue'> {
|
|
297
|
-
value?: Date;
|
|
298
|
-
defaultValue?: Date;
|
|
299
|
-
onValueChange?: (date: Date | undefined) => void;
|
|
300
|
-
placeholder?: string;
|
|
301
|
-
clearable?: boolean;
|
|
302
|
-
footer?: ReactNode;
|
|
303
|
-
}
|
|
304
|
-
declare function DatePicker({ className, clearable, defaultValue, footer, onValueChange, placeholder, value, ...props }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
305
|
-
|
|
306
|
-
type Direction = 'ltr' | 'rtl';
|
|
307
|
-
interface DirectionProviderProps extends PropsWithChildren {
|
|
308
|
-
dir?: Direction;
|
|
309
|
-
}
|
|
310
|
-
declare function DirectionProvider({ children, dir }: DirectionProviderProps): react_jsx_runtime.JSX.Element;
|
|
311
|
-
declare function useDirection(): Direction;
|
|
312
|
-
interface DirectionRootProps extends HTMLAttributes<HTMLDivElement> {
|
|
313
|
-
dir?: Direction;
|
|
314
|
-
}
|
|
315
|
-
declare function DirectionRoot({ children, dir, ...props }: DirectionRootProps): react_jsx_runtime.JSX.Element;
|
|
316
|
-
|
|
317
|
-
interface DropdownItem {
|
|
318
|
-
id?: string;
|
|
319
|
-
label: ReactNode;
|
|
320
|
-
onSelect?: () => void;
|
|
321
|
-
disabled?: boolean;
|
|
322
|
-
shortcut?: ReactNode;
|
|
323
|
-
destructive?: boolean;
|
|
324
|
-
}
|
|
325
|
-
interface DropdownGroup {
|
|
326
|
-
id?: string;
|
|
327
|
-
label?: ReactNode;
|
|
328
|
-
items: DropdownItem[];
|
|
329
|
-
}
|
|
330
|
-
interface DropdownProps {
|
|
331
|
-
trigger: ReactNode;
|
|
332
|
-
items?: DropdownItem[];
|
|
333
|
-
groups?: DropdownGroup[];
|
|
334
|
-
align?: 'start' | 'end';
|
|
335
|
-
sideOffset?: number;
|
|
336
|
-
}
|
|
337
|
-
declare function Dropdown({ align, groups, items, sideOffset, trigger }: DropdownProps): react_jsx_runtime.JSX.Element;
|
|
338
|
-
|
|
339
|
-
interface DropdownMenuProps extends DropdownProps {
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
declare function DropdownMenu(props: DropdownMenuProps): react_jsx_runtime.JSX.Element;
|
|
343
|
-
|
|
344
|
-
interface EmptyStateProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
345
|
-
title: ReactNode;
|
|
346
|
-
description?: ReactNode;
|
|
347
|
-
action?: ReactNode;
|
|
348
|
-
icon?: ReactNode;
|
|
349
|
-
}
|
|
350
|
-
declare function EmptyState({ action, className, description, icon, title, ...props }: EmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
351
|
-
|
|
352
|
-
interface FeatureCardProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
353
|
-
title: ReactNode;
|
|
354
|
-
description: ReactNode;
|
|
355
|
-
icon?: ReactNode;
|
|
356
|
-
actionLabel?: ReactNode;
|
|
357
|
-
}
|
|
358
|
-
declare function FeatureCard({ actionLabel, className, description, icon, title, ...props }: FeatureCardProps): react_jsx_runtime.JSX.Element;
|
|
359
|
-
|
|
360
|
-
interface FieldProps extends HTMLAttributes<HTMLDivElement> {
|
|
361
|
-
label?: ReactNode;
|
|
362
|
-
hint?: ReactNode;
|
|
363
|
-
error?: ReactNode;
|
|
364
|
-
}
|
|
365
|
-
declare function Field({ children, className, error, hint, label, ...props }: FieldProps): react_jsx_runtime.JSX.Element;
|
|
366
|
-
|
|
367
|
-
interface HoverCardProps extends Omit<HTMLAttributes<HTMLDivElement>, 'content'> {
|
|
368
|
-
trigger: ReactNode;
|
|
369
|
-
content: ReactNode;
|
|
370
|
-
}
|
|
371
|
-
declare function HoverCard({ className, content, trigger, ...props }: HoverCardProps): react_jsx_runtime.JSX.Element;
|
|
372
|
-
|
|
373
|
-
interface IconButtonProps extends Omit<ButtonProps, 'children'> {
|
|
374
|
-
icon: ReactNode;
|
|
375
|
-
'aria-label': string;
|
|
376
|
-
isRound?: boolean;
|
|
377
|
-
}
|
|
378
|
-
declare const IconButton: react.ForwardRefExoticComponent<IconButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
379
|
-
|
|
380
|
-
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
381
|
-
invalid?: boolean;
|
|
382
|
-
}
|
|
383
|
-
declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
384
|
-
interface InputFieldProps extends Omit<InputProps, 'id' | 'aria-describedby'> {
|
|
385
|
-
id?: string;
|
|
386
|
-
label: ReactNode;
|
|
387
|
-
hint?: ReactNode;
|
|
388
|
-
error?: ReactNode;
|
|
389
|
-
}
|
|
390
|
-
declare const InputField: react.ForwardRefExoticComponent<InputFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
391
|
-
|
|
392
|
-
interface InputGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
393
|
-
}
|
|
394
|
-
declare function InputGroup({ className, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
|
|
395
|
-
|
|
396
|
-
interface InputOtpProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'value' | 'defaultValue'> {
|
|
397
|
-
length?: number;
|
|
398
|
-
value?: string;
|
|
399
|
-
defaultValue?: string;
|
|
400
|
-
onValueChange?: (value: string) => void;
|
|
401
|
-
disabled?: boolean;
|
|
402
|
-
}
|
|
403
|
-
declare function InputOtp({ className, defaultValue, disabled, length, onValueChange, value, ...props }: InputOtpProps): react_jsx_runtime.JSX.Element;
|
|
404
|
-
|
|
405
|
-
interface ItemProps extends HTMLAttributes<HTMLDivElement> {
|
|
406
|
-
inset?: boolean;
|
|
407
|
-
}
|
|
408
|
-
declare const Item: react.ForwardRefExoticComponent<ItemProps & react.RefAttributes<HTMLDivElement>>;
|
|
409
|
-
|
|
410
|
-
interface KbdProps extends HTMLAttributes<HTMLElement> {
|
|
411
|
-
}
|
|
412
|
-
declare function Kbd({ className, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
|
|
413
|
-
|
|
414
|
-
interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
|
|
415
|
-
}
|
|
416
|
-
declare const Label: react.ForwardRefExoticComponent<LabelProps & react.RefAttributes<HTMLLabelElement>>;
|
|
417
|
-
|
|
418
|
-
interface MenubarActionItem {
|
|
419
|
-
id: string;
|
|
420
|
-
label: ReactNode;
|
|
421
|
-
shortcut?: ReactNode;
|
|
422
|
-
onSelect?: () => void;
|
|
423
|
-
disabled?: boolean;
|
|
424
|
-
destructive?: boolean;
|
|
425
|
-
}
|
|
426
|
-
interface MenubarItem {
|
|
427
|
-
id: string;
|
|
428
|
-
label: ReactNode;
|
|
429
|
-
items: MenubarActionItem[];
|
|
430
|
-
}
|
|
431
|
-
interface MenubarProps extends HTMLAttributes<HTMLDivElement> {
|
|
432
|
-
menus: MenubarItem[];
|
|
433
|
-
}
|
|
434
|
-
declare function Menubar({ className, menus, ...props }: MenubarProps): react_jsx_runtime.JSX.Element;
|
|
435
|
-
|
|
436
|
-
interface NativeSelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
|
|
437
|
-
invalid?: boolean;
|
|
438
|
-
}
|
|
439
|
-
declare const NativeSelect: react.ForwardRefExoticComponent<NativeSelectProps & react.RefAttributes<HTMLSelectElement>>;
|
|
440
|
-
interface NativeSelectFieldProps extends Omit<NativeSelectProps, 'id' | 'aria-describedby'> {
|
|
441
|
-
id?: string;
|
|
442
|
-
label: ReactNode;
|
|
443
|
-
hint?: ReactNode;
|
|
444
|
-
error?: ReactNode;
|
|
445
|
-
}
|
|
446
|
-
declare const NativeSelectField: react.ForwardRefExoticComponent<NativeSelectFieldProps & react.RefAttributes<HTMLSelectElement>>;
|
|
447
|
-
|
|
448
|
-
interface NavigationMenuItem {
|
|
449
|
-
id?: string;
|
|
450
|
-
title: ReactNode;
|
|
451
|
-
description?: ReactNode;
|
|
452
|
-
content?: ReactNode;
|
|
453
|
-
href?: string;
|
|
454
|
-
}
|
|
455
|
-
interface NavigationMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
456
|
-
items: NavigationMenuItem[];
|
|
457
|
-
value?: string;
|
|
458
|
-
defaultValue?: string;
|
|
459
|
-
onValueChange?: (value: string) => void;
|
|
460
|
-
}
|
|
461
|
-
declare function NavigationMenu({ className, defaultValue, items, onValueChange, value, ...props }: NavigationMenuProps): react_jsx_runtime.JSX.Element;
|
|
462
|
-
|
|
463
|
-
interface PaginationProps extends HTMLAttributes<HTMLElement> {
|
|
464
|
-
currentPage: number;
|
|
465
|
-
totalPages: number;
|
|
466
|
-
onPageChange?: (page: number) => void;
|
|
467
|
-
}
|
|
468
|
-
declare function Pagination({ className, currentPage, onPageChange, totalPages, ...props }: PaginationProps): react_jsx_runtime.JSX.Element;
|
|
469
|
-
|
|
470
|
-
interface PopoverProps extends Omit<HTMLAttributes<HTMLDivElement>, 'content'> {
|
|
471
|
-
trigger: ReactNode;
|
|
472
|
-
content: ReactNode;
|
|
473
|
-
open?: boolean;
|
|
474
|
-
defaultOpen?: boolean;
|
|
475
|
-
onOpenChange?: (open: boolean) => void;
|
|
476
|
-
align?: 'start' | 'center' | 'end';
|
|
477
|
-
}
|
|
478
|
-
declare function Popover({ align, className, content, defaultOpen, onOpenChange, open, trigger, ...props }: PopoverProps): react_jsx_runtime.JSX.Element;
|
|
479
|
-
|
|
480
|
-
interface PricingCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
481
|
-
name: ReactNode;
|
|
482
|
-
price: ReactNode;
|
|
483
|
-
description?: ReactNode;
|
|
484
|
-
features: ReactNode[];
|
|
485
|
-
ctaLabel: ReactNode;
|
|
486
|
-
highlighted?: boolean;
|
|
487
|
-
}
|
|
488
|
-
declare function PricingCard({ className, ctaLabel, description, features, highlighted, name, price, ...props }: PricingCardProps): react_jsx_runtime.JSX.Element;
|
|
489
|
-
|
|
490
|
-
declare const trackVariants: (props?: ({
|
|
491
|
-
size?: "sm" | "md" | "lg" | null | undefined;
|
|
492
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
493
|
-
declare const fillVariants: (props?: ({
|
|
494
|
-
color?: "primary" | "destructive" | "success" | "gradient" | "warning" | "info" | null | undefined;
|
|
495
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
496
|
-
interface ProgressProps extends Omit<HTMLAttributes<HTMLDivElement>, 'value' | 'color'>, VariantProps<typeof trackVariants>, VariantProps<typeof fillVariants> {
|
|
497
|
-
value?: number;
|
|
498
|
-
showLabel?: boolean;
|
|
499
|
-
striped?: boolean;
|
|
500
|
-
animated?: boolean;
|
|
501
|
-
}
|
|
502
|
-
declare function Progress({ className, value, size, color, showLabel, striped, animated, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
|
|
503
|
-
|
|
504
|
-
interface RadioGroupProps extends Omit<HTMLAttributes<HTMLDivElement>, 'value' | 'defaultValue'> {
|
|
505
|
-
value?: string;
|
|
506
|
-
defaultValue?: string;
|
|
507
|
-
onValueChange?: (value: string) => void;
|
|
508
|
-
name?: string;
|
|
509
|
-
}
|
|
510
|
-
declare function RadioGroup({ children, className, defaultValue, name, onValueChange, value, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element;
|
|
511
|
-
interface RadioGroupItemProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'name' | 'checked' | 'defaultChecked' | 'onChange'> {
|
|
512
|
-
value: string;
|
|
513
|
-
label?: ReactNode;
|
|
514
|
-
description?: ReactNode;
|
|
515
|
-
}
|
|
516
|
-
declare function RadioGroupItem({ className, description, id, label, value, ...props }: RadioGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
517
|
-
|
|
518
|
-
interface ResizableProps extends HTMLAttributes<HTMLDivElement> {
|
|
519
|
-
defaultRatio?: number;
|
|
520
|
-
min?: number;
|
|
521
|
-
max?: number;
|
|
522
|
-
left: ReactNode;
|
|
523
|
-
right: ReactNode;
|
|
524
|
-
}
|
|
525
|
-
declare function Resizable({ className, defaultRatio, left, max, min, right, ...props }: ResizableProps): react_jsx_runtime.JSX.Element;
|
|
526
|
-
|
|
527
|
-
interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
|
|
528
|
-
orientation?: 'vertical' | 'horizontal' | 'both';
|
|
529
|
-
}
|
|
530
|
-
declare function ScrollArea({ className, orientation, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
|
|
531
|
-
|
|
532
|
-
interface SegmentedControlOption {
|
|
533
|
-
label: ReactNode;
|
|
534
|
-
value: string;
|
|
535
|
-
disabled?: boolean;
|
|
536
|
-
}
|
|
537
|
-
interface SegmentedControlProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
538
|
-
options: SegmentedControlOption[];
|
|
539
|
-
value?: string;
|
|
540
|
-
defaultValue?: string;
|
|
541
|
-
onValueChange?: (value: string) => void;
|
|
542
|
-
}
|
|
543
|
-
declare function SegmentedControl({ className, defaultValue, onValueChange, options, value, ...props }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
|
|
544
|
-
|
|
545
|
-
interface SelectOption {
|
|
546
|
-
label: ReactNode;
|
|
547
|
-
value: string;
|
|
548
|
-
disabled?: boolean;
|
|
549
|
-
}
|
|
550
|
-
interface SelectProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'value' | 'defaultValue'> {
|
|
551
|
-
options: SelectOption[];
|
|
552
|
-
value?: string;
|
|
553
|
-
defaultValue?: string;
|
|
554
|
-
onValueChange?: (value: string) => void;
|
|
555
|
-
placeholder?: string;
|
|
556
|
-
label?: ReactNode;
|
|
557
|
-
hint?: ReactNode;
|
|
558
|
-
error?: ReactNode;
|
|
559
|
-
}
|
|
560
|
-
declare function Select({ className, defaultValue, error, hint, label, onValueChange, options, placeholder, value, ...props }: SelectProps): react_jsx_runtime.JSX.Element;
|
|
561
|
-
|
|
562
|
-
interface SeparatorProps extends HTMLAttributes<HTMLDivElement> {
|
|
563
|
-
orientation?: 'horizontal' | 'vertical';
|
|
564
|
-
}
|
|
565
|
-
declare function Separator({ className, orientation, ...props }: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
566
|
-
|
|
567
|
-
interface SidebarItem {
|
|
568
|
-
id?: string;
|
|
569
|
-
label: string;
|
|
570
|
-
icon?: ReactNode;
|
|
571
|
-
badge?: ReactNode;
|
|
572
|
-
active?: boolean;
|
|
573
|
-
onSelect?: () => void;
|
|
574
|
-
}
|
|
575
|
-
interface SidebarSection {
|
|
576
|
-
id?: string;
|
|
577
|
-
title?: ReactNode;
|
|
578
|
-
items: SidebarItem[];
|
|
579
|
-
}
|
|
580
|
-
interface SidebarProps extends HTMLAttributes<HTMLDivElement> {
|
|
581
|
-
header?: ReactNode;
|
|
582
|
-
footer?: ReactNode;
|
|
583
|
-
collapsedWidth?: string;
|
|
584
|
-
defaultCollapsed?: boolean;
|
|
585
|
-
collapsed?: boolean;
|
|
586
|
-
onCollapsedChange?: (collapsed: boolean) => void;
|
|
587
|
-
items?: SidebarItem[];
|
|
588
|
-
sections?: SidebarSection[];
|
|
589
|
-
}
|
|
590
|
-
declare function Sidebar({ className, collapsed, collapsedWidth, defaultCollapsed, footer, header, items, onCollapsedChange, sections, ...props }: SidebarProps): react_jsx_runtime.JSX.Element;
|
|
591
|
-
|
|
592
|
-
declare const skeletonVariants: (props?: ({
|
|
593
|
-
variant?: "pulse" | "wave" | null | undefined;
|
|
594
|
-
shape?: "text" | "circle" | "rectangle" | null | undefined;
|
|
595
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
596
|
-
interface SkeletonProps extends HTMLAttributes<HTMLDivElement>, VariantProps<typeof skeletonVariants> {
|
|
597
|
-
}
|
|
598
|
-
declare function Skeleton({ className, variant, shape, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
599
|
-
|
|
600
|
-
interface SliderProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size' | 'type'> {
|
|
601
|
-
label?: string;
|
|
602
|
-
}
|
|
603
|
-
declare const Slider: react.ForwardRefExoticComponent<SliderProps & react.RefAttributes<HTMLInputElement>>;
|
|
604
|
-
|
|
605
|
-
interface ToastAction {
|
|
606
|
-
label: ReactNode;
|
|
607
|
-
onClick?: () => void;
|
|
608
|
-
}
|
|
609
|
-
interface ToastItem {
|
|
610
|
-
id: string;
|
|
611
|
-
title: ReactNode;
|
|
612
|
-
description?: ReactNode;
|
|
613
|
-
variant?: 'default' | 'destructive' | 'success';
|
|
614
|
-
action?: ToastAction;
|
|
615
|
-
duration?: number;
|
|
616
|
-
}
|
|
617
|
-
interface ToastContextValue {
|
|
618
|
-
toast: (toast: Omit<ToastItem, 'id'>) => string;
|
|
619
|
-
dismiss: (id: string) => void;
|
|
620
|
-
}
|
|
621
|
-
declare function ToastProvider({ children }: PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
622
|
-
declare function useToast(): ToastContextValue;
|
|
623
|
-
|
|
624
|
-
interface SpinnerProps extends HTMLAttributes<HTMLDivElement> {
|
|
625
|
-
size?: 'sm' | 'md' | 'lg';
|
|
626
|
-
}
|
|
627
|
-
declare function Spinner({ className, size, ...props }: SpinnerProps): react_jsx_runtime.JSX.Element;
|
|
628
|
-
|
|
629
|
-
interface StatProps extends HTMLAttributes<HTMLDivElement> {
|
|
630
|
-
label: ReactNode;
|
|
631
|
-
value: ReactNode;
|
|
632
|
-
helpText?: ReactNode;
|
|
633
|
-
/** positive number = up, negative = down, 0 = neutral */
|
|
634
|
-
trend?: number;
|
|
635
|
-
trendLabel?: ReactNode;
|
|
636
|
-
icon?: ReactNode;
|
|
637
|
-
loading?: boolean;
|
|
638
|
-
}
|
|
639
|
-
declare function Stat({ className, helpText, label, trend, trendLabel, value, icon, loading, ...props }: StatProps): react_jsx_runtime.JSX.Element;
|
|
640
|
-
|
|
641
|
-
interface StepperStep {
|
|
642
|
-
id: string;
|
|
643
|
-
title: string;
|
|
644
|
-
description?: string;
|
|
645
|
-
}
|
|
646
|
-
interface StepperProps extends HTMLAttributes<HTMLDivElement> {
|
|
647
|
-
steps: StepperStep[];
|
|
648
|
-
currentStep: number;
|
|
649
|
-
}
|
|
650
|
-
declare function Stepper({ className, currentStep, steps, ...props }: StepperProps): react_jsx_runtime.JSX.Element;
|
|
651
|
-
|
|
652
|
-
interface SwitchProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'onChange'> {
|
|
653
|
-
checked?: boolean;
|
|
654
|
-
defaultChecked?: boolean;
|
|
655
|
-
onCheckedChange?: (checked: boolean) => void;
|
|
656
|
-
label?: ReactNode;
|
|
657
|
-
description?: ReactNode;
|
|
658
|
-
}
|
|
659
|
-
declare function Switch({ checked, className, defaultChecked, description, disabled, id, label, onCheckedChange, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
660
|
-
|
|
661
|
-
interface TabsProps extends PropsWithChildren {
|
|
662
|
-
defaultValue?: string;
|
|
663
|
-
value?: string;
|
|
664
|
-
onValueChange?: (value: string) => void;
|
|
665
|
-
}
|
|
666
|
-
declare function Tabs({ children, defaultValue, onValueChange, value }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
667
|
-
declare function TabsList({ className, ...props }: HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
668
|
-
interface TabsTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
669
|
-
value: string;
|
|
670
|
-
children: ReactNode;
|
|
671
|
-
}
|
|
672
|
-
declare function TabsTrigger({ children, className, onClick, value, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
673
|
-
interface TabsContentProps extends HTMLAttributes<HTMLDivElement> {
|
|
674
|
-
value: string;
|
|
675
|
-
}
|
|
676
|
-
declare function TabsContent({ className, value, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
677
|
-
|
|
678
|
-
interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
679
|
-
invalid?: boolean;
|
|
680
|
-
}
|
|
681
|
-
declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
682
|
-
interface TextareaFieldProps extends Omit<TextareaProps, 'id' | 'aria-describedby'> {
|
|
683
|
-
id?: string;
|
|
684
|
-
label: ReactNode;
|
|
685
|
-
hint?: ReactNode;
|
|
686
|
-
error?: ReactNode;
|
|
687
|
-
}
|
|
688
|
-
declare const TextareaField: react.ForwardRefExoticComponent<TextareaFieldProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
689
|
-
|
|
690
|
-
declare const toggleVariants: (props?: ({
|
|
691
|
-
pressed?: boolean | null | undefined;
|
|
692
|
-
size?: "sm" | "md" | "lg" | null | undefined;
|
|
693
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
694
|
-
interface ToggleProps extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof toggleVariants> {
|
|
695
|
-
defaultPressed?: boolean;
|
|
696
|
-
onPressedChange?: (pressed: boolean) => void;
|
|
697
|
-
}
|
|
698
|
-
declare function Toggle({ className, defaultPressed, onPressedChange, pressed, size, ...props }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
699
|
-
interface ToggleGroupProps extends Omit<HTMLAttributes<HTMLDivElement>, 'value' | 'defaultValue'> {
|
|
700
|
-
type?: 'single' | 'multiple';
|
|
701
|
-
value?: string | string[];
|
|
702
|
-
defaultValue?: string | string[];
|
|
703
|
-
onValueChange?: (value: string | string[]) => void;
|
|
704
|
-
}
|
|
705
|
-
declare function ToggleGroup({ children, className, defaultValue, onValueChange, type, value, ...props }: ToggleGroupProps): react_jsx_runtime.JSX.Element;
|
|
706
|
-
interface ToggleGroupItemProps extends ToggleProps {
|
|
707
|
-
value: string;
|
|
708
|
-
groupValue?: string | string[];
|
|
709
|
-
groupType?: 'single' | 'multiple';
|
|
710
|
-
onGroupValueChange?: (value: string | string[]) => void;
|
|
711
|
-
}
|
|
712
|
-
declare function ToggleGroupItem({ groupType, groupValue, onGroupValueChange, value, ...props }: ToggleGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
713
|
-
|
|
714
|
-
interface TooltipProps extends Omit<HTMLAttributes<HTMLDivElement>, 'content'> {
|
|
715
|
-
content: ReactNode;
|
|
716
|
-
children: ReactNode;
|
|
717
|
-
}
|
|
718
|
-
declare function Tooltip({ children, className, content, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
719
|
-
|
|
720
|
-
interface TypographyProps extends HTMLAttributes<HTMLElement> {
|
|
721
|
-
as?: ElementType;
|
|
722
|
-
variant?: 'display' | 'display-2' | 'title' | 'title-lg' | 'subtitle' | 'lead' | 'body' | 'body-lg' | 'muted' | 'caption' | 'overline' | 'blockquote' | 'inline-code' | 'label' | 'large' | 'small';
|
|
723
|
-
gradient?: boolean;
|
|
724
|
-
balance?: boolean;
|
|
725
|
-
}
|
|
726
|
-
declare function Typography({ as: Component, className, variant, gradient, balance, ...props }: TypographyProps): react_jsx_runtime.JSX.Element;
|
|
727
|
-
|
|
728
|
-
type Theme = 'light' | 'dark';
|
|
729
|
-
type ThemePreference = Theme | 'system';
|
|
730
|
-
interface ThemeContextValue {
|
|
731
|
-
theme: Theme;
|
|
732
|
-
themePreference: ThemePreference;
|
|
733
|
-
setTheme: (theme: ThemePreference) => void;
|
|
734
|
-
toggleTheme: () => void;
|
|
735
|
-
}
|
|
736
|
-
declare function ThemeProvider({ children }: PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
737
|
-
declare function useTheme(): ThemeContextValue;
|
|
738
|
-
|
|
739
|
-
interface ThemeToggleProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
740
|
-
className?: string;
|
|
741
|
-
}
|
|
742
|
-
declare function ThemeToggle({ className, ...props }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
|
|
743
|
-
|
|
744
|
-
declare function cn(...classes: Array<string | false | null | undefined | Record<string, boolean>>): string;
|
|
745
|
-
|
|
746
|
-
interface AnimatedCounterProps extends HTMLAttributes<HTMLSpanElement> {
|
|
747
|
-
from?: number;
|
|
748
|
-
to: number;
|
|
749
|
-
duration?: number;
|
|
750
|
-
decimals?: number;
|
|
751
|
-
prefix?: string;
|
|
752
|
-
suffix?: string;
|
|
753
|
-
separator?: string;
|
|
754
|
-
easing?: (t: number) => number;
|
|
755
|
-
startOnMount?: boolean;
|
|
756
|
-
}
|
|
757
|
-
declare function AnimatedCounter({ from, to, duration, decimals, prefix, suffix, separator, easing, startOnMount, className, ...props }: AnimatedCounterProps): react_jsx_runtime.JSX.Element;
|
|
758
|
-
|
|
759
|
-
interface AvatarGroupItem {
|
|
760
|
-
src?: string;
|
|
761
|
-
alt?: string;
|
|
762
|
-
fallback?: string;
|
|
763
|
-
}
|
|
764
|
-
interface AvatarGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
765
|
-
items: AvatarGroupItem[];
|
|
766
|
-
max?: number;
|
|
767
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
768
|
-
overlap?: boolean;
|
|
769
|
-
}
|
|
770
|
-
declare function AvatarGroup({ items, max, size, overlap, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
|
|
771
|
-
|
|
772
|
-
interface BorderBeamProps extends HTMLAttributes<HTMLSpanElement> {
|
|
773
|
-
size?: number;
|
|
774
|
-
duration?: number;
|
|
775
|
-
colorFrom?: string;
|
|
776
|
-
colorTo?: string;
|
|
777
|
-
delay?: number;
|
|
778
|
-
}
|
|
779
|
-
declare function BorderBeam({ className, size, duration, colorFrom, colorTo, delay, style, ...props }: BorderBeamProps): react_jsx_runtime.JSX.Element;
|
|
780
|
-
|
|
781
|
-
declare const chipVariants: (props?: ({
|
|
782
|
-
variant?: "outline" | "secondary" | "destructive" | "success" | "solid" | "warning" | "info" | "soft" | null | undefined;
|
|
783
|
-
size?: "sm" | "md" | "lg" | null | undefined;
|
|
784
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
785
|
-
interface ChipProps extends HTMLAttributes<HTMLSpanElement>, VariantProps<typeof chipVariants> {
|
|
786
|
-
onRemove?: () => void;
|
|
787
|
-
icon?: ReactNode;
|
|
788
|
-
dot?: boolean;
|
|
789
|
-
}
|
|
790
|
-
declare function Chip({ className, variant, size, onRemove, icon, dot, children, ...props }: ChipProps): react_jsx_runtime.JSX.Element;
|
|
791
|
-
|
|
792
|
-
interface CodeBlockProps extends HTMLAttributes<HTMLDivElement> {
|
|
793
|
-
code: string;
|
|
794
|
-
language?: string;
|
|
795
|
-
showLineNumbers?: boolean;
|
|
796
|
-
showCopyButton?: boolean;
|
|
797
|
-
filename?: string;
|
|
798
|
-
maxHeight?: string;
|
|
799
|
-
}
|
|
800
|
-
declare function CodeBlock({ code, language, showLineNumbers, showCopyButton, filename, maxHeight, className, ...props }: CodeBlockProps): react_jsx_runtime.JSX.Element;
|
|
801
|
-
|
|
802
|
-
interface DividerProps extends HTMLAttributes<HTMLDivElement> {
|
|
803
|
-
label?: ReactNode;
|
|
804
|
-
orientation?: 'horizontal' | 'vertical';
|
|
805
|
-
variant?: 'default' | 'dashed' | 'dotted';
|
|
806
|
-
}
|
|
807
|
-
declare function Divider({ label, orientation, variant, className, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
|
|
808
|
-
|
|
809
|
-
interface FileUploadProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'children' | 'onDrop'> {
|
|
810
|
-
onFilesChange?: (files: File[]) => void;
|
|
811
|
-
accept?: string;
|
|
812
|
-
maxFiles?: number;
|
|
813
|
-
maxSizeBytes?: number;
|
|
814
|
-
icon?: ReactNode;
|
|
815
|
-
label?: ReactNode;
|
|
816
|
-
description?: ReactNode;
|
|
817
|
-
invalid?: boolean;
|
|
818
|
-
error?: ReactNode;
|
|
819
|
-
}
|
|
820
|
-
declare function FileUpload({ className, onFilesChange, accept, maxFiles, maxSizeBytes, icon, label, description, disabled, invalid, error, multiple, ...props }: FileUploadProps): react_jsx_runtime.JSX.Element;
|
|
821
|
-
|
|
822
|
-
declare const gradientTextVariants: (props?: ({
|
|
823
|
-
gradient?: "primary" | "gold" | "animated" | "warm" | "cool" | "sunset" | "nature" | "aurora" | "neon" | "rainbow" | null | undefined;
|
|
824
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
825
|
-
interface GradientTextProps extends HTMLAttributes<HTMLElement>, VariantProps<typeof gradientTextVariants> {
|
|
826
|
-
as?: ElementType;
|
|
827
|
-
}
|
|
828
|
-
declare function GradientText({ as: Component, className, gradient, ...props }: GradientTextProps): react_jsx_runtime.JSX.Element;
|
|
829
|
-
|
|
830
|
-
interface MarqueeProps extends HTMLAttributes<HTMLDivElement> {
|
|
831
|
-
children: ReactNode;
|
|
832
|
-
reverse?: boolean;
|
|
833
|
-
pauseOnHover?: boolean;
|
|
834
|
-
vertical?: boolean;
|
|
835
|
-
repeat?: number;
|
|
836
|
-
gap?: string;
|
|
837
|
-
duration?: string;
|
|
838
|
-
}
|
|
839
|
-
declare function Marquee({ children, reverse, pauseOnHover, vertical, repeat, gap, duration, className, style, ...props }: MarqueeProps): react_jsx_runtime.JSX.Element;
|
|
840
|
-
|
|
841
|
-
interface MeteorsProps extends HTMLAttributes<HTMLDivElement> {
|
|
842
|
-
count?: number;
|
|
843
|
-
}
|
|
844
|
-
declare function Meteors({ count, className, ...props }: MeteorsProps): react_jsx_runtime.JSX.Element;
|
|
845
|
-
|
|
846
|
-
interface NumberInputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'onChange'> {
|
|
847
|
-
value?: number;
|
|
848
|
-
onChange?: (value: number) => void;
|
|
849
|
-
min?: number;
|
|
850
|
-
max?: number;
|
|
851
|
-
step?: number;
|
|
852
|
-
label?: ReactNode;
|
|
853
|
-
hint?: ReactNode;
|
|
854
|
-
error?: ReactNode;
|
|
855
|
-
invalid?: boolean;
|
|
856
|
-
id?: string;
|
|
857
|
-
}
|
|
858
|
-
declare const NumberInput: react.ForwardRefExoticComponent<NumberInputProps & react.RefAttributes<HTMLInputElement>>;
|
|
859
|
-
|
|
860
|
-
interface ProgressCircleProps extends Omit<HTMLAttributes<HTMLDivElement>, 'value'> {
|
|
861
|
-
value?: number;
|
|
862
|
-
size?: number;
|
|
863
|
-
strokeWidth?: number;
|
|
864
|
-
color?: 'primary' | 'success' | 'warning' | 'destructive' | 'info';
|
|
865
|
-
trackColor?: string;
|
|
866
|
-
showLabel?: boolean;
|
|
867
|
-
label?: ReactNode;
|
|
868
|
-
}
|
|
869
|
-
declare function ProgressCircle({ value, size, strokeWidth, color, showLabel, label, className, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
|
|
870
|
-
|
|
871
|
-
interface RatingProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
872
|
-
value?: number;
|
|
873
|
-
onChange?: (value: number) => void;
|
|
874
|
-
max?: number;
|
|
875
|
-
readOnly?: boolean;
|
|
876
|
-
size?: 'sm' | 'md' | 'lg';
|
|
877
|
-
color?: string;
|
|
878
|
-
allowHalf?: boolean;
|
|
879
|
-
label?: string;
|
|
880
|
-
}
|
|
881
|
-
declare function Rating({ value, onChange, max, readOnly, size, color, label, className, ...props }: RatingProps): react_jsx_runtime.JSX.Element;
|
|
882
|
-
|
|
883
|
-
interface SpotlightCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
884
|
-
spotlightColor?: string;
|
|
885
|
-
spotlightSize?: number;
|
|
886
|
-
interactive?: boolean;
|
|
887
|
-
}
|
|
888
|
-
declare function SpotlightCard({ className, spotlightColor, spotlightSize, interactive, children, style, ...props }: SpotlightCardProps): react_jsx_runtime.JSX.Element;
|
|
889
|
-
|
|
890
|
-
interface TimelineItemProps extends Omit<HTMLAttributes<HTMLLIElement>, 'title'> {
|
|
891
|
-
title: ReactNode;
|
|
892
|
-
description?: ReactNode;
|
|
893
|
-
timestamp?: ReactNode;
|
|
894
|
-
icon?: ReactNode;
|
|
895
|
-
status?: 'default' | 'success' | 'warning' | 'destructive' | 'active';
|
|
896
|
-
isLast?: boolean;
|
|
897
|
-
}
|
|
898
|
-
interface TimelineProps extends HTMLAttributes<HTMLOListElement> {
|
|
899
|
-
items?: TimelineItemProps[];
|
|
900
|
-
children?: ReactNode;
|
|
901
|
-
lineVariant?: 'solid' | 'dashed';
|
|
902
|
-
}
|
|
903
|
-
declare function TimelineItem({ title, description, timestamp, icon, status, isLast, children, className, ...props }: TimelineItemProps): react_jsx_runtime.JSX.Element;
|
|
904
|
-
declare function Timeline({ items, children, lineVariant, className, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
905
|
-
|
|
906
|
-
interface TreeItem {
|
|
907
|
-
id: string;
|
|
908
|
-
label: string;
|
|
909
|
-
icon?: React.ReactNode;
|
|
910
|
-
children?: TreeItem[];
|
|
911
|
-
}
|
|
912
|
-
interface TreeViewProps {
|
|
913
|
-
data: TreeItem[];
|
|
914
|
-
className?: string;
|
|
915
|
-
onItemClick?: (item: TreeItem) => void;
|
|
916
|
-
defaultExpanded?: string[];
|
|
917
|
-
}
|
|
918
|
-
declare function TreeView({ data, className, onItemClick, defaultExpanded }: TreeViewProps): react_jsx_runtime.JSX.Element;
|
|
919
|
-
|
|
920
|
-
interface DockProps {
|
|
921
|
-
children?: ReactNode;
|
|
922
|
-
className?: string;
|
|
923
|
-
magnification?: number;
|
|
924
|
-
distance?: number;
|
|
925
|
-
direction?: 'top' | 'middle' | 'bottom';
|
|
926
|
-
}
|
|
927
|
-
declare const Dock: react.ForwardRefExoticComponent<DockProps & react.RefAttributes<HTMLDivElement>>;
|
|
928
|
-
interface DockIconProps {
|
|
929
|
-
size?: number;
|
|
930
|
-
className?: string;
|
|
931
|
-
children?: ReactNode;
|
|
932
|
-
}
|
|
933
|
-
declare function DockIcon({ size, className, children, ...props }: DockIconProps): react_jsx_runtime.JSX.Element;
|
|
934
|
-
declare namespace DockIcon {
|
|
935
|
-
var displayName: string;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
interface OrbitingCirclesProps {
|
|
939
|
-
className?: string;
|
|
940
|
-
children?: React.ReactNode;
|
|
941
|
-
reverse?: boolean;
|
|
942
|
-
duration?: number;
|
|
943
|
-
delay?: number;
|
|
944
|
-
radius?: number;
|
|
945
|
-
path?: boolean;
|
|
946
|
-
}
|
|
947
|
-
declare function OrbitingCircles({ className, children, reverse, duration, delay, radius, path, }: OrbitingCirclesProps): react_jsx_runtime.JSX.Element;
|
|
948
|
-
|
|
949
|
-
interface TypewriterEffectProps {
|
|
950
|
-
words: {
|
|
951
|
-
text: string;
|
|
952
|
-
className?: string;
|
|
953
|
-
}[];
|
|
954
|
-
className?: string;
|
|
955
|
-
cursorClassName?: string;
|
|
956
|
-
}
|
|
957
|
-
declare function TypewriterEffect({ words, className, cursorClassName, }: TypewriterEffectProps): react_jsx_runtime.JSX.Element;
|
|
958
|
-
declare function TypewriterEffectSmooth({ words, className, cursorClassName, }: TypewriterEffectProps): react_jsx_runtime.JSX.Element;
|
|
959
|
-
|
|
960
|
-
interface BackgroundGradientProps extends HTMLAttributes<HTMLDivElement> {
|
|
961
|
-
containerClassName?: string;
|
|
962
|
-
animate?: boolean;
|
|
963
|
-
}
|
|
964
|
-
declare const BackgroundGradient: ({ children, className, containerClassName, animate, }: BackgroundGradientProps) => react_jsx_runtime.JSX.Element;
|
|
965
|
-
|
|
966
|
-
interface CelestialPulseProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
967
|
-
className?: string;
|
|
968
|
-
label?: string;
|
|
969
|
-
size?: number | string;
|
|
970
|
-
}
|
|
971
|
-
declare function CelestialPulse({ className, label, size, ...props }: CelestialPulseProps): react_jsx_runtime.JSX.Element;
|
|
972
|
-
declare namespace CelestialPulse {
|
|
973
|
-
var displayName: string;
|
|
974
|
-
}
|
|
975
|
-
|
|
976
|
-
interface InteractiveOrbNavigationProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onSelect'> {
|
|
977
|
-
items?: string[];
|
|
978
|
-
selected?: number;
|
|
979
|
-
onSelect?: (index: number) => void;
|
|
980
|
-
}
|
|
981
|
-
declare function InteractiveOrbNavigation({ items, selected, onSelect, className, ...props }: InteractiveOrbNavigationProps): react_jsx_runtime.JSX.Element;
|
|
982
|
-
interface SpatialTabsProps extends HTMLAttributes<HTMLDivElement> {
|
|
983
|
-
tabs?: string[];
|
|
984
|
-
}
|
|
985
|
-
declare function SpatialTabs({ tabs, className, ...props }: SpatialTabsProps): react_jsx_runtime.JSX.Element;
|
|
986
|
-
interface HolographicDataDeckProps extends HTMLAttributes<HTMLDivElement> {
|
|
987
|
-
items?: Array<{
|
|
988
|
-
label: string;
|
|
989
|
-
value: string;
|
|
990
|
-
}>;
|
|
991
|
-
}
|
|
992
|
-
declare function HolographicDataDeck({ items, className, ...props }: HolographicDataDeckProps): react_jsx_runtime.JSX.Element;
|
|
993
|
-
interface AugmentedProgressRingProps extends HTMLAttributes<HTMLDivElement> {
|
|
994
|
-
progress?: number;
|
|
995
|
-
}
|
|
996
|
-
declare function AugmentedProgressRing({ progress, className, ...props }: AugmentedProgressRingProps): react_jsx_runtime.JSX.Element;
|
|
997
|
-
interface ProductShowcaseCarouselProps extends HTMLAttributes<HTMLDivElement> {
|
|
998
|
-
items?: Array<{
|
|
999
|
-
title: string;
|
|
1000
|
-
tag: string;
|
|
1001
|
-
}>;
|
|
1002
|
-
}
|
|
1003
|
-
declare function ProductShowcaseCarousel({ items, className, ...props }: ProductShowcaseCarouselProps): react_jsx_runtime.JSX.Element;
|
|
1004
|
-
interface VoxelGridHeatmapProps extends HTMLAttributes<HTMLDivElement> {
|
|
1005
|
-
values?: number[];
|
|
1006
|
-
}
|
|
1007
|
-
declare function VoxelGridHeatmap({ values, className, ...props }: VoxelGridHeatmapProps): react_jsx_runtime.JSX.Element;
|
|
1008
|
-
interface TerrainInsightsPanelProps extends HTMLAttributes<HTMLDivElement> {
|
|
1009
|
-
labels?: string[];
|
|
1010
|
-
}
|
|
1011
|
-
declare function TerrainInsightsPanel({ labels, className, ...props }: TerrainInsightsPanelProps): react_jsx_runtime.JSX.Element;
|
|
1012
|
-
interface FloatingCommandPaletteProps extends HTMLAttributes<HTMLDivElement> {
|
|
1013
|
-
commands?: string[];
|
|
1014
|
-
}
|
|
1015
|
-
declare function FloatingCommandPalette({ commands, className, ...props }: FloatingCommandPaletteProps): react_jsx_runtime.JSX.Element;
|
|
1016
|
-
interface SocialPulseWidgetProps extends HTMLAttributes<HTMLDivElement> {
|
|
1017
|
-
avatars?: string[];
|
|
1018
|
-
}
|
|
1019
|
-
declare function SocialPulseWidget({ avatars, className, ...props }: SocialPulseWidgetProps): react_jsx_runtime.JSX.Element;
|
|
1020
|
-
interface LiquidFormBuilderProps extends HTMLAttributes<HTMLDivElement> {
|
|
1021
|
-
fields?: string[];
|
|
1022
|
-
}
|
|
1023
|
-
declare function LiquidFormBuilder({ fields, className, ...props }: LiquidFormBuilderProps): react_jsx_runtime.JSX.Element;
|
|
1024
|
-
|
|
1025
|
-
interface HoverBorderGradientProps extends React.HTMLAttributes<HTMLElement> {
|
|
1026
|
-
as?: React.ElementType;
|
|
1027
|
-
containerClassName?: string;
|
|
1028
|
-
className?: string;
|
|
1029
|
-
duration?: number;
|
|
1030
|
-
clockwise?: boolean;
|
|
1031
|
-
}
|
|
1032
|
-
declare function HoverBorderGradient({ children, containerClassName, className, as: Tag, duration, clockwise, ...props }: HoverBorderGradientProps): react_jsx_runtime.JSX.Element;
|
|
1033
|
-
|
|
1034
|
-
interface AuthFlipCardProps {
|
|
1035
|
-
initialMode?: 'login' | 'signup';
|
|
1036
|
-
}
|
|
1037
|
-
declare function AuthFlipCard({ initialMode }: AuthFlipCardProps): react_jsx_runtime.JSX.Element;
|
|
1038
|
-
|
|
1039
|
-
interface AnimatedGlowButtonProps {
|
|
1040
|
-
children: React.ReactNode;
|
|
1041
|
-
onClick?: () => void;
|
|
1042
|
-
variant?: 'primary' | 'secondary' | 'destructive';
|
|
1043
|
-
className?: string;
|
|
1044
|
-
disabled?: boolean;
|
|
1045
|
-
}
|
|
1046
|
-
declare function AnimatedGlowButton({ children, onClick, variant, className, disabled, }: AnimatedGlowButtonProps): react_jsx_runtime.JSX.Element;
|
|
1047
|
-
|
|
1048
|
-
interface FluidShapeProps {
|
|
1049
|
-
className?: string;
|
|
1050
|
-
colors?: string[];
|
|
1051
|
-
size?: 'sm' | 'md' | 'lg';
|
|
1052
|
-
}
|
|
1053
|
-
declare function FluidShape({ className, colors, size }: FluidShapeProps): react_jsx_runtime.JSX.Element;
|
|
1054
|
-
declare function HolographicCard({ children, className }: {
|
|
1055
|
-
children: react__default.ReactNode;
|
|
1056
|
-
className?: string;
|
|
1057
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1058
|
-
interface GlitchTextProps {
|
|
1059
|
-
text: string;
|
|
1060
|
-
className?: string;
|
|
1061
|
-
}
|
|
1062
|
-
declare function GlitchText({ text, className }: GlitchTextProps): react_jsx_runtime.JSX.Element;
|
|
1063
|
-
|
|
1064
|
-
declare function SaaSHero(): react_jsx_runtime.JSX.Element;
|
|
1065
|
-
|
|
1066
|
-
declare function AetherPulseHero(): react_jsx_runtime.JSX.Element;
|
|
1067
|
-
|
|
1068
|
-
declare function NeonAgencyGrid(): react_jsx_runtime.JSX.Element;
|
|
1069
|
-
|
|
1070
|
-
declare function DevNexusLanding(): react_jsx_runtime.JSX.Element;
|
|
1071
|
-
|
|
1072
|
-
declare function BlogMagazineLayout(): react_jsx_runtime.JSX.Element;
|
|
1073
|
-
|
|
1074
|
-
declare function FeatureBentoGrid(): react_jsx_runtime.JSX.Element;
|
|
1075
|
-
|
|
1076
|
-
declare function PremiumPricing(): react_jsx_runtime.JSX.Element;
|
|
1077
|
-
|
|
1078
|
-
declare function WallOfLove(): react_jsx_runtime.JSX.Element;
|
|
1079
|
-
|
|
1080
|
-
declare function CosmicLaunchPage(): react_jsx_runtime.JSX.Element;
|
|
1081
|
-
|
|
1082
|
-
declare function VertexStudioShowcase(): react_jsx_runtime.JSX.Element;
|
|
1083
|
-
|
|
1084
|
-
declare function OrbitalCommerceSuite(): react_jsx_runtime.JSX.Element;
|
|
1085
|
-
|
|
1086
|
-
declare function LuminousWorkspace(): react_jsx_runtime.JSX.Element;
|
|
1087
|
-
|
|
1088
|
-
declare function NebulaDashboard(): react_jsx_runtime.JSX.Element;
|
|
1089
|
-
|
|
1090
|
-
declare function MarketingNavbar(): react_jsx_runtime.JSX.Element;
|
|
1091
|
-
|
|
1092
|
-
declare function MarketingFooter(): react_jsx_runtime.JSX.Element;
|
|
1093
|
-
|
|
1094
|
-
declare function FullLandingPage(): react_jsx_runtime.JSX.Element;
|
|
1095
|
-
|
|
1096
|
-
declare function AnalyticsDashboardShell(): react_jsx_runtime.JSX.Element;
|
|
1097
|
-
|
|
1098
|
-
declare function ManagementConsole(): react_jsx_runtime.JSX.Element;
|
|
1099
|
-
|
|
1100
|
-
declare function ProductSettingsLayout(): react_jsx_runtime.JSX.Element;
|
|
1101
|
-
|
|
1102
|
-
declare function KnowledgeBasePortal(): react_jsx_runtime.JSX.Element;
|
|
1103
|
-
|
|
1104
|
-
declare function AIChatInterface(): react_jsx_runtime.JSX.Element;
|
|
1105
|
-
|
|
1106
|
-
declare function PremiumAuthLogin(): react_jsx_runtime.JSX.Element;
|
|
1107
|
-
|
|
1108
|
-
declare function InteractiveSignupStepper(): react_jsx_runtime.JSX.Element;
|
|
1109
|
-
|
|
1110
|
-
declare function FlipAuthPortal(): react_jsx_runtime.JSX.Element;
|
|
1111
|
-
|
|
1112
|
-
declare function UserProfileDashboard(): react_jsx_runtime.JSX.Element;
|
|
1113
|
-
|
|
1114
|
-
declare function DarkPortfolioShowcase(): react_jsx_runtime.JSX.Element;
|
|
1115
|
-
|
|
1116
|
-
declare function ProductMerchandisingDetail(): react_jsx_runtime.JSX.Element;
|
|
1117
|
-
|
|
1118
|
-
declare function ReleaseTimelineChangelog(): react_jsx_runtime.JSX.Element;
|
|
1119
|
-
|
|
1120
|
-
declare function StatusErrorCanvas404(): react_jsx_runtime.JSX.Element;
|
|
1121
|
-
|
|
1122
|
-
declare function WaitlistCapturePage(): react_jsx_runtime.JSX.Element;
|
|
1123
|
-
|
|
1124
|
-
export { AIChatInterface, Accordion, type AccordionItemData, type AccordionProps, ActionBar, type ActionBarAction, type ActionBarProps, AetherPulseHero, Alert, AlertDialog, type AlertDialogProps, type AlertProps, AnalyticsDashboardShell, AnimatedCounter, type AnimatedCounterProps, AnimatedGlowButton, type AnimatedGlowButtonProps, AspectRatio, type AspectRatioProps, AugmentedProgressRing, type AugmentedProgressRingProps, AuthFlipCard, type AuthFlipCardProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, BackgroundGradient, type BackgroundGradientProps, Badge, type BadgeProps, Banner, type BannerProps, BlogMagazineLayout, BorderBeam, type BorderBeamProps, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, type CalendarProps, Callout, type CalloutProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselProps, CelestialPulse, type CelestialPulseProps, Chart, type ChartDatum, type ChartProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Clipboard, type ClipboardProps, CodeBlock, type CodeBlockProps, Collapsible, type CollapsibleProps, Combobox, type ComboboxOption, type ComboboxProps, Command, type CommandItem, type CommandProps, ContextMenu, type ContextMenuItem, type ContextMenuProps, CosmicLaunchPage, DarkPortfolioShowcase, DataTable, TableBody as DataTableBody, TableCell as DataTableCell, type DataTableColumn, TableHead as DataTableHead, TableHeader as DataTableHeader, type DataTableProps, TableRow as DataTableRow, DatePicker, type DatePickerProps, DevNexusLanding, Dialog, type DialogProps, type Direction, DirectionProvider, type DirectionProviderProps, DirectionRoot, type DirectionRootProps, Divider, type DividerProps, Dock, DockIcon, type DockIconProps, type DockProps, Drawer, type DrawerProps, Dropdown, type DropdownGroup, type DropdownItem, DropdownMenu, type DropdownItem as DropdownMenuItem, type DropdownMenuProps, type DropdownProps, EmptyState as Empty, type EmptyStateProps as EmptyProps, EmptyState, type EmptyStateProps, FeatureBentoGrid, FeatureCard, type FeatureCardProps, Field, type FieldProps, FileUpload, type FileUploadProps, FlipAuthPortal, FloatingCommandPalette, type FloatingCommandPaletteProps, FluidShape, FullLandingPage, GlitchText, GradientText, type GradientTextProps, HolographicCard, HolographicDataDeck, type HolographicDataDeckProps, HoverBorderGradient, type HoverBorderGradientProps, HoverCard, type HoverCardProps, IconButton, type IconButtonProps, Input, InputField, type InputFieldProps, InputGroup, type InputGroupProps, InputOtp, type InputOtpProps, type InputProps, InteractiveOrbNavigation, type InteractiveOrbNavigationProps, InteractiveSignupStepper, Item, type ItemProps, Kbd, type KbdProps, KnowledgeBasePortal, Label, type LabelProps, LiquidFormBuilder, type LiquidFormBuilderProps, LuminousWorkspace, ManagementConsole, MarketingFooter, MarketingNavbar, Marquee, type MarqueeProps, Menubar, type MenubarActionItem, type MenubarItem, type MenubarProps, Meteors, type MeteorsProps, Modal, type ModalProps, NativeSelect, NativeSelectField, type NativeSelectFieldProps, type NativeSelectProps, NavigationMenu, type NavigationMenuItem, type NavigationMenuProps, NebulaDashboard, NeonAgencyGrid, NumberInput, type NumberInputProps, OrbitalCommerceSuite, OrbitingCircles, type OrbitingCirclesProps, Pagination, type PaginationProps, Popover, type PopoverProps, PremiumAuthLogin, PremiumPricing, PricingCard, type PricingCardProps, ProductMerchandisingDetail, ProductSettingsLayout, ProductShowcaseCarousel, type ProductShowcaseCarouselProps, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Rating, type RatingProps, ReleaseTimelineChangelog, Resizable, type ResizableProps, SaaSHero, ScrollArea, type ScrollAreaProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, Sheet, type SheetProps, Sidebar, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, SocialPulseWidget, type SocialPulseWidgetProps, type ToastItem as SonnerItem, ToastProvider as SonnerProvider, SpatialTabs, type SpatialTabsProps, Spinner, type SpinnerProps, SpotlightCard, type SpotlightCardProps, Stat, type StatProps, StatusErrorCanvas404, Stepper, type StepperProps, type StepperStep, Switch, type SwitchProps, Table, TableBody, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsProps, TabsTrigger, type TabsTriggerProps, TerrainInsightsPanel, type TerrainInsightsPanelProps, Textarea, TextareaField, type TextareaFieldProps, type TextareaProps, type Theme, type ThemePreference, ThemeProvider, ThemeToggle, Timeline, TimelineItem, type TimelineItemProps, type TimelineProps, type ToastAction, type ToastItem, ToastProvider, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, Tooltip, type TooltipProps, type TreeItem, TreeView, type TreeViewProps, TypewriterEffect, type TypewriterEffectProps, TypewriterEffectSmooth, Typography, type TypographyProps, UserProfileDashboard, VertexStudioShowcase, VoxelGridHeatmap, type VoxelGridHeatmapProps, WaitlistCapturePage, WallOfLove, alertVariants, badgeVariants, buttonVariants, chipVariants, cn, useDirection, useToast as useSonner, useTheme, useToast };
|