@mvn-ui/react 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +84 -63
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +185 -32
- package/dist/index.d.ts +185 -32
- package/dist/index.js +1378 -631
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1233 -499
- package/dist/index.mjs.map +1 -1
- package/dist/themes.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
1
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { ReactElement, ReactNode } from 'react';
|
|
2
|
+
import React__default, { TouchEvent, ReactElement, ReactNode } from 'react';
|
|
3
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
4
4
|
import { VariantProps } from 'class-variance-authority';
|
|
5
5
|
export { VariantProps as TypographyVariantProps, VariantProps } from 'class-variance-authority';
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
@@ -46,12 +46,81 @@ import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
|
46
46
|
import { ClassValue } from 'clsx';
|
|
47
47
|
export { Area, Bar, Brush, CartesianGrid, Cell, Legend as ChartLegend, Tooltip as ChartTooltip, Line, Pie, PolarAngleAxis, PolarGrid, PolarRadiusAxis, Radar, ReferenceArea, ReferenceLine, ResponsiveContainer, Scatter, XAxis, YAxis, ZAxis } from 'recharts';
|
|
48
48
|
|
|
49
|
+
declare const BREAKPOINTS: {
|
|
50
|
+
readonly sm: 640;
|
|
51
|
+
readonly md: 768;
|
|
52
|
+
readonly lg: 1024;
|
|
53
|
+
readonly xl: 1280;
|
|
54
|
+
};
|
|
55
|
+
type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
56
|
+
/**
|
|
57
|
+
* SSR-safe hook for detecting current breakpoint.
|
|
58
|
+
* Returns fallback value during SSR to prevent hydration mismatches.
|
|
59
|
+
*
|
|
60
|
+
* @param ssrFallback - Breakpoint to return during SSR (default: 'md')
|
|
61
|
+
* @returns Current breakpoint based on viewport width
|
|
62
|
+
*/
|
|
63
|
+
declare function useBreakpoint(ssrFallback?: Breakpoint): Breakpoint;
|
|
64
|
+
/**
|
|
65
|
+
* Get a value based on current breakpoint with mobile-first fallback.
|
|
66
|
+
* Useful for responsive component props.
|
|
67
|
+
*
|
|
68
|
+
* @param values - Object mapping breakpoints to values
|
|
69
|
+
* @param fallback - Default value if no matching breakpoint found
|
|
70
|
+
* @returns Value for current breakpoint or closest smaller breakpoint
|
|
71
|
+
*/
|
|
72
|
+
declare function useBreakpointValue<T>(values: Partial<Record<Breakpoint, T>>, fallback?: T): T | undefined;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* SSR-safe hook for detecting mobile viewport (<768px).
|
|
76
|
+
*
|
|
77
|
+
* @param ssrFallback - Whether to assume mobile during SSR (default: false)
|
|
78
|
+
* @returns true if viewport width is less than 768px
|
|
79
|
+
*/
|
|
80
|
+
declare function useIsMobile(ssrFallback?: boolean): boolean;
|
|
81
|
+
/**
|
|
82
|
+
* SSR-safe hook for detecting tablet viewport (768px - 1023px).
|
|
83
|
+
*
|
|
84
|
+
* @returns true if viewport width is between 768px and 1023px
|
|
85
|
+
*/
|
|
86
|
+
declare function useIsTablet(): boolean;
|
|
87
|
+
/**
|
|
88
|
+
* SSR-safe hook for detecting desktop viewport (>=1024px).
|
|
89
|
+
*
|
|
90
|
+
* @returns true if viewport width is 1024px or greater
|
|
91
|
+
*/
|
|
92
|
+
declare function useIsDesktop(): boolean;
|
|
93
|
+
|
|
94
|
+
interface SwipeAction {
|
|
95
|
+
icon: React.ReactNode;
|
|
96
|
+
label: string;
|
|
97
|
+
onClick: () => void;
|
|
98
|
+
}
|
|
99
|
+
interface UseSwipeActionsOptions {
|
|
100
|
+
leftActions?: SwipeAction[];
|
|
101
|
+
rightActions?: SwipeAction[];
|
|
102
|
+
threshold?: number;
|
|
103
|
+
disabled?: boolean;
|
|
104
|
+
}
|
|
105
|
+
interface UseSwipeActionsReturn {
|
|
106
|
+
offsetX: number;
|
|
107
|
+
revealed: 'left' | 'right' | null;
|
|
108
|
+
isDragging: boolean;
|
|
109
|
+
handlers: {
|
|
110
|
+
onTouchStart: (e: TouchEvent) => void;
|
|
111
|
+
onTouchMove: (e: TouchEvent) => void;
|
|
112
|
+
onTouchEnd: () => void;
|
|
113
|
+
};
|
|
114
|
+
reset: () => void;
|
|
115
|
+
}
|
|
116
|
+
declare function useSwipeActions({ leftActions, rightActions, threshold, disabled, }?: UseSwipeActionsOptions): UseSwipeActionsReturn;
|
|
117
|
+
|
|
49
118
|
/**
|
|
50
119
|
* Button variants (shadcn-style)
|
|
51
120
|
*/
|
|
52
121
|
declare const buttonVariants: (props?: ({
|
|
53
122
|
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
54
|
-
size?: "
|
|
123
|
+
size?: "sm" | "lg" | "default" | "touch" | "icon" | "icon-sm" | "icon-touch" | null | undefined;
|
|
55
124
|
fullWidth?: boolean | null | undefined;
|
|
56
125
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
57
126
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -94,7 +163,7 @@ declare function ButtonGroupText({ asChild, className, ...props }: ButtonGroupTe
|
|
|
94
163
|
|
|
95
164
|
declare const inputVariants: (props?: ({
|
|
96
165
|
variant?: "outlined" | "filled" | "borderless" | "underlined" | null | undefined;
|
|
97
|
-
inputSize?: "
|
|
166
|
+
inputSize?: "sm" | "lg" | "default" | "touch" | null | undefined;
|
|
98
167
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
99
168
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size'>, VariantProps<typeof inputVariants> {
|
|
100
169
|
label?: string;
|
|
@@ -157,7 +226,7 @@ declare const Label: React$1.ForwardRefExoticComponent<LabelProps & React$1.RefA
|
|
|
157
226
|
|
|
158
227
|
declare const textareaVariants: (props?: ({
|
|
159
228
|
variant?: "outlined" | "filled" | "borderless" | "underlined" | null | undefined;
|
|
160
|
-
textareaSize?: "
|
|
229
|
+
textareaSize?: "sm" | "lg" | "default" | null | undefined;
|
|
161
230
|
resize?: "none" | "both" | "horizontal" | "vertical" | null | undefined;
|
|
162
231
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
163
232
|
interface TextareaProps extends Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'size'>, VariantProps<typeof textareaVariants> {
|
|
@@ -217,6 +286,7 @@ declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.Sel
|
|
|
217
286
|
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
218
287
|
declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
219
288
|
variant?: "outlined" | "filled" | "borderless" | "underlined" | null | undefined;
|
|
289
|
+
size?: "sm" | "lg" | "default" | "touch" | null | undefined;
|
|
220
290
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
221
291
|
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
222
292
|
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -226,7 +296,7 @@ declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive
|
|
|
226
296
|
declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
227
297
|
|
|
228
298
|
declare const checkboxVariants: (props?: ({
|
|
229
|
-
size?: "
|
|
299
|
+
size?: "sm" | "lg" | "default" | "touch" | null | undefined;
|
|
230
300
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
231
301
|
interface CheckboxProps extends Omit<React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>, "size">, VariantProps<typeof checkboxVariants> {
|
|
232
302
|
label?: string;
|
|
@@ -252,6 +322,9 @@ declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$
|
|
|
252
322
|
declare const radioGroupVariants: (props?: ({
|
|
253
323
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
254
324
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
325
|
+
declare const radioItemVariants: (props?: ({
|
|
326
|
+
size?: "sm" | "lg" | "default" | "touch" | null | undefined;
|
|
327
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
255
328
|
interface RadioGroupItemData {
|
|
256
329
|
value: string;
|
|
257
330
|
label: React$1.ReactNode;
|
|
@@ -259,7 +332,7 @@ interface RadioGroupItemData {
|
|
|
259
332
|
disabled?: boolean;
|
|
260
333
|
icon?: React$1.ReactNode;
|
|
261
334
|
}
|
|
262
|
-
interface RadioGroupProps extends Omit<React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root>, "orientation"> {
|
|
335
|
+
interface RadioGroupProps extends Omit<React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root>, "orientation">, VariantProps<typeof radioItemVariants> {
|
|
263
336
|
orientation?: "vertical" | "horizontal";
|
|
264
337
|
items?: RadioGroupItemData[];
|
|
265
338
|
itemClassName?: string;
|
|
@@ -308,20 +381,27 @@ interface RadioGroupProps extends Omit<React$1.ComponentPropsWithoutRef<typeof R
|
|
|
308
381
|
* ```
|
|
309
382
|
*/
|
|
310
383
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
311
|
-
|
|
384
|
+
interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item>, VariantProps<typeof radioItemVariants> {
|
|
385
|
+
}
|
|
386
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
312
387
|
|
|
313
|
-
|
|
388
|
+
declare const switchVariants: (props?: ({
|
|
389
|
+
size?: "sm" | "lg" | "default" | "touch" | null | undefined;
|
|
390
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
391
|
+
type SwitchProps = React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> & VariantProps<typeof switchVariants> & {
|
|
314
392
|
offNode?: React$1.ReactNode;
|
|
315
393
|
onNode?: React$1.ReactNode;
|
|
316
394
|
};
|
|
317
|
-
declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
395
|
+
declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
396
|
+
size?: "sm" | "lg" | "default" | "touch" | null | undefined;
|
|
397
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
318
398
|
offNode?: React$1.ReactNode;
|
|
319
399
|
onNode?: React$1.ReactNode;
|
|
320
400
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
321
401
|
|
|
322
402
|
declare const toggleVariants: (props?: ({
|
|
323
403
|
variant?: "default" | "outline" | "solid" | null | undefined;
|
|
324
|
-
size?: "
|
|
404
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
325
405
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
326
406
|
interface ToggleProps extends React$1.ComponentPropsWithoutRef<typeof TogglePrimitive.Root>, VariantProps<typeof toggleVariants> {
|
|
327
407
|
icon?: React$1.ReactNode;
|
|
@@ -349,10 +429,10 @@ interface ToggleProps extends React$1.ComponentPropsWithoutRef<typeof TogglePrim
|
|
|
349
429
|
declare const Toggle: React$1.ForwardRefExoticComponent<ToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
350
430
|
|
|
351
431
|
declare const toggleGroupVariants: (props?: ({
|
|
352
|
-
size?: "
|
|
432
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
353
433
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
354
434
|
declare const toggleGroupItemVariants: (props?: ({
|
|
355
|
-
size?: "
|
|
435
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
356
436
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
357
437
|
interface ToggleGroupItemData {
|
|
358
438
|
value: string;
|
|
@@ -461,7 +541,7 @@ interface SliderProps extends React$1.ComponentPropsWithoutRef<typeof SliderPrim
|
|
|
461
541
|
declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
462
542
|
|
|
463
543
|
declare const inputGroupVariants: (props?: ({
|
|
464
|
-
size?: "
|
|
544
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
465
545
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
466
546
|
interface InputGroupProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof inputGroupVariants> {
|
|
467
547
|
leftAddon?: React$1.ReactNode;
|
|
@@ -860,7 +940,7 @@ type ToasterProps = React.ComponentProps<typeof Toaster$1>;
|
|
|
860
940
|
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
861
941
|
|
|
862
942
|
declare const progressVariants: (props?: ({
|
|
863
|
-
size?: "
|
|
943
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
864
944
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
865
945
|
interface ProgressProps extends React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>, VariantProps<typeof progressVariants> {
|
|
866
946
|
value?: number;
|
|
@@ -883,7 +963,7 @@ interface ProgressProps extends React$1.ComponentPropsWithoutRef<typeof Progress
|
|
|
883
963
|
declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
884
964
|
|
|
885
965
|
declare const spinnerVariants: (props?: ({
|
|
886
|
-
size?: "
|
|
966
|
+
size?: "xs" | "sm" | "lg" | "xl" | "default" | "2xl" | null | undefined;
|
|
887
967
|
variant?: "default" | "destructive" | "secondary" | "muted" | "light" | null | undefined;
|
|
888
968
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
889
969
|
interface SpinnerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof spinnerVariants> {
|
|
@@ -957,7 +1037,7 @@ interface SkeletonCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
957
1037
|
declare const SkeletonCard: React$1.ForwardRefExoticComponent<SkeletonCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
958
1038
|
|
|
959
1039
|
declare const emptyVariants: (props?: ({
|
|
960
|
-
size?: "
|
|
1040
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
961
1041
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
962
1042
|
interface EmptyProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof emptyVariants> {
|
|
963
1043
|
icon?: React$1.ReactNode;
|
|
@@ -1035,7 +1115,7 @@ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dial
|
|
|
1035
1115
|
declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
1036
1116
|
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1037
1117
|
declare const sheetVariants: (props?: ({
|
|
1038
|
-
side?: "
|
|
1118
|
+
side?: "left" | "right" | "top" | "bottom" | null | undefined;
|
|
1039
1119
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1040
1120
|
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
1041
1121
|
hideClose?: boolean;
|
|
@@ -1405,11 +1485,11 @@ declare function SimpleTabs({ items, defaultValue, value, onValueChange, classNa
|
|
|
1405
1485
|
|
|
1406
1486
|
declare const cardVariants: (props?: ({
|
|
1407
1487
|
variant?: "default" | "outline" | "ghost" | "elevated" | null | undefined;
|
|
1408
|
-
size?: "
|
|
1488
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
1409
1489
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1410
1490
|
declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
1411
1491
|
variant?: "default" | "outline" | "ghost" | "elevated" | null | undefined;
|
|
1412
|
-
size?: "
|
|
1492
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
1413
1493
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1414
1494
|
declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1415
1495
|
declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -1635,7 +1715,7 @@ declare const CollapsibleContent: React$1.ForwardRefExoticComponent<Omit<Collaps
|
|
|
1635
1715
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1636
1716
|
|
|
1637
1717
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => react_jsx_runtime.JSX.Element;
|
|
1638
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLButtonElement | HTMLElement | HTMLSpanElement | HTMLDivElement | HTMLInputElement | HTMLLabelElement | HTMLParagraphElement | HTMLObjectElement | HTMLLinkElement | HTMLFormElement | HTMLSlotElement | HTMLStyleElement | HTMLTitleElement | HTMLDialogElement | HTMLImageElement | HTMLOptionElement | HTMLTableElement | HTMLTimeElement |
|
|
1718
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLButtonElement | HTMLElement | HTMLSpanElement | HTMLDivElement | HTMLInputElement | HTMLLabelElement | HTMLParagraphElement | HTMLObjectElement | HTMLProgressElement | HTMLSelectElement | HTMLLinkElement | HTMLFormElement | HTMLSlotElement | HTMLStyleElement | HTMLTitleElement | HTMLDialogElement | HTMLImageElement | HTMLOptionElement | HTMLTableElement | HTMLTimeElement | HTMLAnchorElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLHeadingElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLLegendElement | HTMLLIElement | HTMLMapElement | HTMLMetaElement | HTMLMeterElement | HTMLOListElement | HTMLOptGroupElement | HTMLOutputElement | HTMLPreElement | HTMLScriptElement | HTMLSourceElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTemplateElement | HTMLTextAreaElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement | HTMLTableCaptionElement | HTMLMenuElement | HTMLPictureElement>, "id" | "onResize"> & {
|
|
1639
1719
|
className?: string;
|
|
1640
1720
|
collapsedSize?: number | undefined;
|
|
1641
1721
|
collapsible?: boolean | undefined;
|
|
@@ -1728,7 +1808,7 @@ declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<'ul
|
|
|
1728
1808
|
declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
|
|
1729
1809
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
1730
1810
|
variant?: "default" | "outline" | null | undefined;
|
|
1731
|
-
size?: "
|
|
1811
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
1732
1812
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1733
1813
|
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, children, ...props }: React$1.ComponentProps<'button'> & {
|
|
1734
1814
|
asChild?: boolean;
|
|
@@ -1751,13 +1831,59 @@ declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...p
|
|
|
1751
1831
|
isActive?: boolean;
|
|
1752
1832
|
}): react_jsx_runtime.JSX.Element;
|
|
1753
1833
|
|
|
1834
|
+
interface MobileHeaderProps extends Omit<React$1.HTMLAttributes<HTMLElement>, 'title'> {
|
|
1835
|
+
logo?: React$1.ReactNode;
|
|
1836
|
+
title?: React$1.ReactNode;
|
|
1837
|
+
rightActions?: React$1.ReactNode;
|
|
1838
|
+
showSidebarTrigger?: boolean;
|
|
1839
|
+
stickyTop?: boolean;
|
|
1840
|
+
}
|
|
1841
|
+
declare function MobileHeader({ logo, title, rightActions, showSidebarTrigger, stickyTop, className, ...props }: MobileHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1842
|
+
declare namespace MobileHeader {
|
|
1843
|
+
var displayName: string;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
interface BottomNavItem {
|
|
1847
|
+
key: string;
|
|
1848
|
+
label: string;
|
|
1849
|
+
icon: React$1.ReactNode;
|
|
1850
|
+
href?: string;
|
|
1851
|
+
onClick?: () => void;
|
|
1852
|
+
badge?: number | string;
|
|
1853
|
+
disabled?: boolean;
|
|
1854
|
+
}
|
|
1855
|
+
interface BottomNavigationProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
1856
|
+
items: BottomNavItem[];
|
|
1857
|
+
activeKey?: string;
|
|
1858
|
+
onActiveChange?: (key: string) => void;
|
|
1859
|
+
hideOnDesktop?: boolean;
|
|
1860
|
+
}
|
|
1861
|
+
declare function BottomNavigation({ items, activeKey, onActiveChange, hideOnDesktop, className, ...props }: BottomNavigationProps): react_jsx_runtime.JSX.Element;
|
|
1862
|
+
declare namespace BottomNavigation {
|
|
1863
|
+
var displayName: string;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
interface MobileNavContextValue {
|
|
1867
|
+
bottomNavVisible: boolean;
|
|
1868
|
+
setBottomNavVisible: (visible: boolean) => void;
|
|
1869
|
+
}
|
|
1870
|
+
declare function useMobileNav(): MobileNavContextValue;
|
|
1871
|
+
interface MobileNavigationProviderProps {
|
|
1872
|
+
children: React$1.ReactNode;
|
|
1873
|
+
hideBottomNavOnScroll?: boolean;
|
|
1874
|
+
}
|
|
1875
|
+
declare function MobileNavigationProvider({ children, hideBottomNavOnScroll, }: MobileNavigationProviderProps): react_jsx_runtime.JSX.Element;
|
|
1876
|
+
declare namespace MobileNavigationProvider {
|
|
1877
|
+
var displayName: string;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1754
1880
|
declare const tableVariants: (props?: ({
|
|
1755
1881
|
variant?: "default" | "striped" | "bordered" | null | undefined;
|
|
1756
|
-
size?: "
|
|
1882
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
1757
1883
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1758
1884
|
declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & VariantProps<(props?: ({
|
|
1759
1885
|
variant?: "default" | "striped" | "bordered" | null | undefined;
|
|
1760
|
-
size?: "
|
|
1886
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
1761
1887
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
1762
1888
|
wrapperClassName?: string;
|
|
1763
1889
|
} & React$1.RefAttributes<HTMLTableElement>>;
|
|
@@ -1801,6 +1927,24 @@ interface TableColumn<T = any> {
|
|
|
1801
1927
|
resizable?: boolean;
|
|
1802
1928
|
/** Pinnable column */
|
|
1803
1929
|
pinnable?: boolean;
|
|
1930
|
+
/** Initial column size in pixels (used when column resizing is enabled, if not set, column will be sized automatically at 150px) */
|
|
1931
|
+
size?: number;
|
|
1932
|
+
/** Minimum column width in pixels when resizing */
|
|
1933
|
+
minSize?: number;
|
|
1934
|
+
/** Maximum column width in pixels when resizing */
|
|
1935
|
+
maxSize?: number;
|
|
1936
|
+
/** Show this column in mobile card view (default: true for first 4 columns) */
|
|
1937
|
+
mobileVisible?: boolean;
|
|
1938
|
+
/** Display priority in card view (1-10, lower = show first) */
|
|
1939
|
+
mobilePriority?: number;
|
|
1940
|
+
/** Card cell width layout */
|
|
1941
|
+
mobileWidth?: 'full' | 'half' | 'auto';
|
|
1942
|
+
/** Override title in card view */
|
|
1943
|
+
mobileLabel?: string;
|
|
1944
|
+
/** Mobile-specific render function */
|
|
1945
|
+
mobileRender?: (value: any, record: T, index: number) => React$1.ReactNode;
|
|
1946
|
+
/** Explicitly hide on mobile */
|
|
1947
|
+
mobileHidden?: boolean;
|
|
1804
1948
|
}
|
|
1805
1949
|
type ColumnsProps<T> = Array<Omit<TableColumn<T>, 'key'> & {
|
|
1806
1950
|
key: keyof T;
|
|
@@ -1916,9 +2060,18 @@ interface SimpleTableProps<T = any> extends VariantProps<typeof tableVariants> {
|
|
|
1916
2060
|
right?: string[];
|
|
1917
2061
|
};
|
|
1918
2062
|
/** Enable column resizing */
|
|
2063
|
+
/** require maxWidth for table container */
|
|
1919
2064
|
enableColumnResizing?: boolean;
|
|
1920
2065
|
/** Column resize mode: 'onChange' updates width while dragging, 'onEnd' updates on mouse up */
|
|
1921
2066
|
columnResizeMode?: 'onChange' | 'onEnd';
|
|
2067
|
+
/** Mobile layout mode: 'table' keeps table, 'card' forces card view, 'auto' switches based on viewport (default: 'auto') */
|
|
2068
|
+
mobileLayout?: 'table' | 'card' | 'auto';
|
|
2069
|
+
/** Breakpoint for mobile detection (default: 'sm' = 640px) */
|
|
2070
|
+
mobileBreakpoint?: 'sm' | 'md';
|
|
2071
|
+
/** Custom actions renderer for mobile card view */
|
|
2072
|
+
mobileCardActions?: (record: T) => React$1.ReactNode;
|
|
2073
|
+
/** Custom card renderer for mobile view */
|
|
2074
|
+
renderMobileCard?: (record: T, columns: TableColumn<T>[]) => React$1.ReactNode;
|
|
1922
2075
|
}
|
|
1923
2076
|
interface MetaFilterValue {
|
|
1924
2077
|
filterType: string;
|
|
@@ -1970,7 +2123,7 @@ interface MetaFilterValue {
|
|
|
1970
2123
|
* onRowClick={(record) => console.log(record)}
|
|
1971
2124
|
* />
|
|
1972
2125
|
*/
|
|
1973
|
-
declare function SimpleTable<T = any>({ data, columns, caption, loading, loadingComponent, emptyMessage, rowKey, onRowClick, rowClassName, className, pagination, pageSize, currentPage, onPageChange, sortBy, sortDirection, onSortChange, variant, size, selectable, onSelectionChange, enableGlobalFilter, globalFilterPlaceholder, enableColumnOrdering, getCheckboxProps, selectedRowKey, enableExport, exportFileName, onExport, expandable, renderExpandedContent, getRowCanExpand, getRowExpandable, onExpandedChange, onLazyScrollLoad, scrollLoadThreshold, numberOfPageButtons, onClickExport, baseRowEstimateSize, expandContentEstimateSize, overScan, virtualizationThreshold, showIndex, customizeToolbar, manualSorting, onFilterChange, manualFiltering, lazyLoadIndicatorType, maxHeight, maxWidth, maxRecords, loadingText, pagingPosition, recordPerChunk, defaultColumnPinning, }: SimpleTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
2126
|
+
declare function SimpleTable<T = any>({ data, columns, caption, loading, loadingComponent, emptyMessage, rowKey, onRowClick, rowClassName, className, pagination, pageSize, currentPage, onPageChange, sortBy, sortDirection, onSortChange, variant, size, selectable, onSelectionChange, enableGlobalFilter, globalFilterPlaceholder, enableColumnOrdering, getCheckboxProps, selectedRowKey, enableExport, exportFileName, onExport, expandable, renderExpandedContent, getRowCanExpand, getRowExpandable, onExpandedChange, onLazyScrollLoad, scrollLoadThreshold, numberOfPageButtons, onClickExport, baseRowEstimateSize, expandContentEstimateSize, overScan, virtualizationThreshold, showIndex, customizeToolbar, manualSorting, onFilterChange, manualFiltering, lazyLoadIndicatorType, maxHeight, maxWidth, maxRecords, loadingText, pagingPosition, recordPerChunk, defaultColumnPinning, enableColumnResizing, columnResizeMode, mobileLayout, mobileCardActions, renderMobileCard, }: SimpleTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
1974
2127
|
|
|
1975
2128
|
interface DataTableProps<TData, TValue> {
|
|
1976
2129
|
columns: ColumnDef<TData, TValue>[];
|
|
@@ -2028,14 +2181,14 @@ interface DataTableProps<TData, TValue> {
|
|
|
2028
2181
|
declare function DataTable<TData, TValue>({ columns, data, searchKey, searchPlaceholder, showColumnVisibility, showPagination, pageSize, className, }: DataTableProps<TData, TValue>): react_jsx_runtime.JSX.Element;
|
|
2029
2182
|
|
|
2030
2183
|
declare const avatarVariants: (props?: ({
|
|
2031
|
-
size?: "
|
|
2184
|
+
size?: "sm" | "lg" | "xl" | "default" | "2xl" | null | undefined;
|
|
2032
2185
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2033
2186
|
declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & VariantProps<(props?: ({
|
|
2034
|
-
size?: "
|
|
2187
|
+
size?: "sm" | "lg" | "xl" | "default" | "2xl" | null | undefined;
|
|
2035
2188
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2036
2189
|
declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
2037
2190
|
declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & VariantProps<(props?: ({
|
|
2038
|
-
size?: "
|
|
2191
|
+
size?: "sm" | "lg" | "xl" | "default" | "2xl" | null | undefined;
|
|
2039
2192
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2040
2193
|
interface SimpleAvatarProps extends VariantProps<typeof avatarVariants> {
|
|
2041
2194
|
/** Avatar image URL */
|
|
@@ -2251,7 +2404,7 @@ declare const ItemSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttri
|
|
|
2251
2404
|
|
|
2252
2405
|
declare const badgeVariants: (props?: ({
|
|
2253
2406
|
variant?: "default" | "destructive" | "outline" | "secondary" | "success" | "warning" | "info" | null | undefined;
|
|
2254
|
-
size?: "
|
|
2407
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
2255
2408
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2256
2409
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
2257
2410
|
removable?: boolean;
|
|
@@ -2483,8 +2636,8 @@ declare function SimpleCarousel({ items, orientation, showArrows, showDots, auto
|
|
|
2483
2636
|
type TypographyType = "h1" | "h2" | "h3" | "h4" | "p" | "lead" | "muted" | "small" | "code" | "blockquote" | "list" | "list-item";
|
|
2484
2637
|
declare const typographyVariants: (props?: ({
|
|
2485
2638
|
type?: "small" | "list" | "blockquote" | "code" | "h1" | "h2" | "h3" | "h4" | "p" | "muted" | "list-item" | "lead" | null | undefined;
|
|
2486
|
-
size?: "
|
|
2487
|
-
align?: "
|
|
2639
|
+
size?: "sm" | "lg" | "default" | null | undefined;
|
|
2640
|
+
align?: "left" | "right" | "center" | "justify" | null | undefined;
|
|
2488
2641
|
weight?: "bold" | "normal" | "medium" | "light" | "semibold" | null | undefined;
|
|
2489
2642
|
muted?: boolean | null | undefined;
|
|
2490
2643
|
truncate?: boolean | null | undefined;
|
|
@@ -2969,4 +3122,4 @@ declare function ThemeProvider({ children, defaultTheme, defaultMode, storageKey
|
|
|
2969
3122
|
*/
|
|
2970
3123
|
declare function useTheme(): ThemeContextValue;
|
|
2971
3124
|
|
|
2972
|
-
export { Accordion, type AccordionItemData, type AccordionProps, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AreaChart, type AreaChartDataKey, type AreaChartProps, AspectRatio, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupData, type AvatarGroupProps, AvatarImage, Badge, type BadgeProps, BarChart, type BarChartDataKey, type BarChartProps, Blockquote, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, CHART_COLORS, CHART_PALETTE, Calendar, CalendarDayButton, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemData, CarouselNext, CarouselPrevious, type ChartColor, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, CollapsibleItem, CollapsibleTrigger, type ColumnsProps, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DotsSpinner, type DotsSpinnerProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, type EmptyProps, Field, type FieldError, type FieldProps, Form, type FormInstance, FormItem, type FormItemProps, type FormItemVariant, FormList, type FormProps, H1, H2, H3, H4, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonProps, InlineCode, Input, InputGroup, type InputGroupProps, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Item, ItemGroup, ItemList, type ItemProps, ItemSeparator, Label, type LabelProps, Lead, LineChart, type LineChartDataKey, type LineChartProps, List, ListItem, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Muted, type NamePath, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, P, Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationLink, PaginationNext, PaginationPrevious, PieChart, type PieChartDataItem, type PieChartProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ProductCard, ProfileCard, Progress, type ProgressProps, RadarChart, type RadarChartDataKey, type RadarChartProps, RadioGroup, RadioGroupItem, type RadioGroupItemData, type RadioGroupProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, type Rule, ScatterChart, type ScatterChartDataSeries, type ScatterChartProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContextProps, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleAvatar, type SimpleAvatarProps, SimpleCard, type SimpleCardProps, SimpleCarousel, type SimpleCarouselProps, SimpleTable, type SimpleTableProps, SimpleTabs, type SimpleTabsProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, SkeletonCard, type SkeletonCardProps, type SkeletonProps, Slider, type SliderProps, Small, Spinner, type SpinnerProps, Switch, type SwitchProps, THEMES, THEME_CATALOG, type TabItem, Table, TableBody, TableCaption, TableCell, type TableColumn, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type ThemeInfo, type ThemeMode, type ThemeName, ThemeProvider, type ThemeProviderProps, Toast, type ToastData, type ToastId, type ToastProps, ToastProvider, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemData, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Typography, TypographyGroup, type TypographyProps, type TypographyType, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, checkboxVariants, cn, composeRules, emailRule, emptyVariants, fieldVariants, getCurrentMode, getCurrentTheme, getInitials, getThemeColors, initializeTheme, inputGroupVariants, inputVariants, itemVariants, labelVariants, legendStyle, maxLengthRule, maxValueRule, minLengthRule, minValueRule, navigationMenuTriggerStyle, numberRule, patternRule, progressVariants, radioGroupVariants, requiredRule, separatorVariants, setMode, setTheme, skeletonVariants, spinnerVariants, tableVariants, textareaVariants, toastVariants, toggleGroupVariants, toggleVariants, tooltipStyle, urlRule, useCarousel, useForm, useSidebar, useTheme, useToast, useWatch };
|
|
3125
|
+
export { Accordion, type AccordionItemData, type AccordionProps, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AreaChart, type AreaChartDataKey, type AreaChartProps, AspectRatio, Avatar, AvatarFallback, AvatarGroup, type AvatarGroupData, type AvatarGroupProps, AvatarImage, BREAKPOINTS, Badge, type BadgeProps, BarChart, type BarChartDataKey, type BarChartProps, Blockquote, type BottomNavItem, BottomNavigation, type BottomNavigationProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type Breakpoint, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, type ButtonProps, CHART_COLORS, CHART_PALETTE, Calendar, CalendarDayButton, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, type CarouselItemData, CarouselNext, CarouselPrevious, type ChartColor, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, CollapsibleItem, CollapsibleTrigger, type ColumnsProps, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DotsSpinner, type DotsSpinnerProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, type EmptyProps, Field, type FieldError, type FieldProps, Form, type FormInstance, FormItem, type FormItemProps, type FormItemVariant, FormList, type FormProps, H1, H2, H3, H4, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonProps, InlineCode, Input, InputGroup, type InputGroupProps, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Item, ItemGroup, ItemList, type ItemProps, ItemSeparator, Label, type LabelProps, Lead, LineChart, type LineChartDataKey, type LineChartProps, List, ListItem, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MobileHeader, type MobileHeaderProps, MobileNavigationProvider, type MobileNavigationProviderProps, Muted, type NamePath, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, P, Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationLink, PaginationNext, PaginationPrevious, PieChart, type PieChartDataItem, type PieChartProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ProductCard, ProfileCard, Progress, type ProgressProps, RadarChart, type RadarChartDataKey, type RadarChartProps, RadioGroup, RadioGroupItem, type RadioGroupItemData, type RadioGroupItemProps, type RadioGroupProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, type Rule, ScatterChart, type ScatterChartDataSeries, type ScatterChartProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContextProps, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleAvatar, type SimpleAvatarProps, SimpleCard, type SimpleCardProps, SimpleCarousel, type SimpleCarouselProps, SimpleTable, type SimpleTableProps, SimpleTabs, type SimpleTabsProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, SkeletonCard, type SkeletonCardProps, type SkeletonProps, Slider, type SliderProps, Small, Spinner, type SpinnerProps, type SwipeAction, Switch, type SwitchProps, THEMES, THEME_CATALOG, type TabItem, Table, TableBody, TableCaption, TableCell, type TableColumn, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type ThemeInfo, type ThemeMode, type ThemeName, ThemeProvider, type ThemeProviderProps, Toast, type ToastData, type ToastId, type ToastProps, ToastProvider, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemData, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Typography, TypographyGroup, type TypographyProps, type TypographyType, type UseSwipeActionsOptions, type UseSwipeActionsReturn, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, checkboxVariants, cn, composeRules, emailRule, emptyVariants, fieldVariants, getCurrentMode, getCurrentTheme, getInitials, getThemeColors, initializeTheme, inputGroupVariants, inputVariants, itemVariants, labelVariants, legendStyle, maxLengthRule, maxValueRule, minLengthRule, minValueRule, navigationMenuTriggerStyle, numberRule, patternRule, progressVariants, radioGroupVariants, radioItemVariants, requiredRule, separatorVariants, setMode, setTheme, skeletonVariants, spinnerVariants, switchVariants, tableVariants, textareaVariants, toastVariants, toggleGroupVariants, toggleVariants, tooltipStyle, urlRule, useBreakpoint, useBreakpointValue, useCarousel, useForm, useIsDesktop, useIsMobile, useIsTablet, useMobileNav, useSidebar, useSwipeActions, useTheme, useToast, useWatch };
|