@pos-360/horizon 0.1.0
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/LICENSE +21 -0
- package/README.md +185 -0
- package/dist/animated-icons.d.mts +54 -0
- package/dist/animated-icons.d.ts +54 -0
- package/dist/animated-icons.js +28 -0
- package/dist/animated-icons.js.map +1 -0
- package/dist/animated-icons.mjs +3 -0
- package/dist/animated-icons.mjs.map +1 -0
- package/dist/chunk-2B2BWI5A.mjs +324 -0
- package/dist/chunk-2B2BWI5A.mjs.map +1 -0
- package/dist/chunk-6YAK6HNR.mjs +471 -0
- package/dist/chunk-6YAK6HNR.mjs.map +1 -0
- package/dist/chunk-7LVVOCBV.mjs +977 -0
- package/dist/chunk-7LVVOCBV.mjs.map +1 -0
- package/dist/chunk-AA25LTS4.js +4 -0
- package/dist/chunk-AA25LTS4.js.map +1 -0
- package/dist/chunk-J6RXKZE5.js +1080 -0
- package/dist/chunk-J6RXKZE5.js.map +1 -0
- package/dist/chunk-R5HAFV6M.js +350 -0
- package/dist/chunk-R5HAFV6M.js.map +1 -0
- package/dist/chunk-Y6G4VKJ3.mjs +3 -0
- package/dist/chunk-Y6G4VKJ3.mjs.map +1 -0
- package/dist/chunk-ZD6CMWPW.js +476 -0
- package/dist/chunk-ZD6CMWPW.js.map +1 -0
- package/dist/enhanced.d.mts +81 -0
- package/dist/enhanced.d.ts +81 -0
- package/dist/enhanced.js +24 -0
- package/dist/enhanced.js.map +1 -0
- package/dist/enhanced.mjs +3 -0
- package/dist/enhanced.mjs.map +1 -0
- package/dist/hooks.d.mts +2 -0
- package/dist/hooks.d.ts +2 -0
- package/dist/hooks.js +6 -0
- package/dist/hooks.js.map +1 -0
- package/dist/hooks.mjs +3 -0
- package/dist/hooks.mjs.map +1 -0
- package/dist/index.d.mts +25 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +351 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -0
- package/dist/primitives.d.mts +168 -0
- package/dist/primitives.d.ts +168 -0
- package/dist/primitives.js +308 -0
- package/dist/primitives.js.map +1 -0
- package/dist/primitives.mjs +3 -0
- package/dist/primitives.mjs.map +1 -0
- package/dist/tailwind.d.mts +104 -0
- package/dist/tailwind.d.ts +104 -0
- package/dist/tailwind.js +75 -0
- package/dist/tailwind.js.map +1 -0
- package/dist/tailwind.mjs +73 -0
- package/dist/tailwind.mjs.map +1 -0
- package/package.json +103 -0
- package/tailwind.config.js +105 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
6
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
7
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
8
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
9
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
10
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
11
|
+
|
|
12
|
+
declare const buttonVariants: (props?: ({
|
|
13
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
14
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
15
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
|
+
interface BaseButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
17
|
+
asChild?: boolean;
|
|
18
|
+
}
|
|
19
|
+
type ButtonProps = BaseButtonProps & ({
|
|
20
|
+
leadingDecorator?: React.ReactNode;
|
|
21
|
+
trailingDecorator?: never;
|
|
22
|
+
} | {
|
|
23
|
+
leadingDecorator?: never;
|
|
24
|
+
trailingDecorator?: React.ReactNode;
|
|
25
|
+
} | {
|
|
26
|
+
leadingDecorator?: never;
|
|
27
|
+
trailingDecorator?: never;
|
|
28
|
+
});
|
|
29
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
30
|
+
|
|
31
|
+
declare const badgeVariants: (props?: ({
|
|
32
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "success" | "warning" | "info" | "purple" | "purpleOutline" | null | undefined;
|
|
33
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
34
|
+
interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
35
|
+
}
|
|
36
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
39
|
+
declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
40
|
+
declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
41
|
+
declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
42
|
+
declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
43
|
+
declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
44
|
+
|
|
45
|
+
declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
46
|
+
|
|
47
|
+
declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
|
|
48
|
+
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
49
|
+
declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
|
|
50
|
+
declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
51
|
+
declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
52
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
53
|
+
declare const DialogHeader: {
|
|
54
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
55
|
+
displayName: string;
|
|
56
|
+
};
|
|
57
|
+
declare const DialogFooter: {
|
|
58
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
59
|
+
displayName: string;
|
|
60
|
+
};
|
|
61
|
+
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
62
|
+
declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
63
|
+
|
|
64
|
+
declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
65
|
+
declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
66
|
+
declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
67
|
+
declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
68
|
+
declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
69
|
+
declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
70
|
+
declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
71
|
+
inset?: boolean;
|
|
72
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
73
|
+
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
74
|
+
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
75
|
+
declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
76
|
+
inset?: boolean;
|
|
77
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
78
|
+
declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
79
|
+
declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
80
|
+
declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
81
|
+
inset?: boolean;
|
|
82
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
83
|
+
declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
84
|
+
declare const DropdownMenuShortcut: {
|
|
85
|
+
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
86
|
+
displayName: string;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
declare const Popover: React.FC<React.ComponentProps<typeof PopoverPrimitive.Root>>;
|
|
90
|
+
declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
91
|
+
declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
|
|
92
|
+
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
93
|
+
|
|
94
|
+
declare const Select: React.FC<React.ComponentProps<typeof SelectPrimitive.Root>>;
|
|
95
|
+
declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
96
|
+
declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
|
|
97
|
+
declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
98
|
+
declare const SelectScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
99
|
+
declare const SelectScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
100
|
+
declare const SelectContent: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
101
|
+
declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
102
|
+
declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
103
|
+
declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
104
|
+
|
|
105
|
+
interface SkeletonProps {
|
|
106
|
+
className?: string;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Base Skeleton component for loading states
|
|
110
|
+
*/
|
|
111
|
+
declare function Skeleton({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
112
|
+
/**
|
|
113
|
+
* Predefined skeleton components for common use cases
|
|
114
|
+
*/
|
|
115
|
+
declare function SkeletonText({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
declare function SkeletonTitle({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
117
|
+
declare function SkeletonSubtitle({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
118
|
+
declare function SkeletonAvatar({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
119
|
+
declare function SkeletonBadge({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
120
|
+
declare function SkeletonIcon({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
121
|
+
declare function SkeletonButton({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
122
|
+
declare function SkeletonInput({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
123
|
+
/**
|
|
124
|
+
* Generic table row skeleton - customize for your table structure
|
|
125
|
+
*/
|
|
126
|
+
declare function SkeletonTableRow({ columns, className, }: SkeletonProps & {
|
|
127
|
+
columns?: number;
|
|
128
|
+
}): react_jsx_runtime.JSX.Element;
|
|
129
|
+
/**
|
|
130
|
+
* Multiple skeleton rows for tables
|
|
131
|
+
*/
|
|
132
|
+
declare function SkeletonTableRows({ count, columns, }: {
|
|
133
|
+
count?: number;
|
|
134
|
+
columns?: number;
|
|
135
|
+
}): react_jsx_runtime.JSX.Element;
|
|
136
|
+
/**
|
|
137
|
+
* Card skeleton for grid layouts
|
|
138
|
+
*/
|
|
139
|
+
declare function SkeletonCard({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
140
|
+
|
|
141
|
+
declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
|
|
142
|
+
declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
143
|
+
declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
144
|
+
declare const TableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
145
|
+
declare const TableRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
|
|
146
|
+
declare const TableHead: React.ForwardRefExoticComponent<React.ThHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
147
|
+
declare const TableCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
148
|
+
declare const TableCaption: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableCaptionElement> & React.RefAttributes<HTMLTableCaptionElement>>;
|
|
149
|
+
|
|
150
|
+
interface TabsProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Root> {
|
|
151
|
+
defaultValue?: string;
|
|
152
|
+
value?: string;
|
|
153
|
+
onValueChange?: (value: string) => void;
|
|
154
|
+
}
|
|
155
|
+
declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
156
|
+
interface TabsListProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.List> {
|
|
157
|
+
}
|
|
158
|
+
declare const TabsList: React.ForwardRefExoticComponent<TabsListProps & React.RefAttributes<HTMLDivElement>>;
|
|
159
|
+
interface TabsTriggerProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger> {
|
|
160
|
+
}
|
|
161
|
+
declare const TabsTrigger: React.ForwardRefExoticComponent<TabsTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
162
|
+
declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
163
|
+
|
|
164
|
+
interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
165
|
+
}
|
|
166
|
+
declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
167
|
+
|
|
168
|
+
export { Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, badgeVariants, buttonVariants };
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
|
4
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
6
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
7
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
8
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
9
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
10
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
11
|
+
|
|
12
|
+
declare const buttonVariants: (props?: ({
|
|
13
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
14
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
15
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
|
+
interface BaseButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
17
|
+
asChild?: boolean;
|
|
18
|
+
}
|
|
19
|
+
type ButtonProps = BaseButtonProps & ({
|
|
20
|
+
leadingDecorator?: React.ReactNode;
|
|
21
|
+
trailingDecorator?: never;
|
|
22
|
+
} | {
|
|
23
|
+
leadingDecorator?: never;
|
|
24
|
+
trailingDecorator?: React.ReactNode;
|
|
25
|
+
} | {
|
|
26
|
+
leadingDecorator?: never;
|
|
27
|
+
trailingDecorator?: never;
|
|
28
|
+
});
|
|
29
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
30
|
+
|
|
31
|
+
declare const badgeVariants: (props?: ({
|
|
32
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "success" | "warning" | "info" | "purple" | "purpleOutline" | null | undefined;
|
|
33
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
34
|
+
interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
35
|
+
}
|
|
36
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
39
|
+
declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
40
|
+
declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
41
|
+
declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
42
|
+
declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
43
|
+
declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
44
|
+
|
|
45
|
+
declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
46
|
+
|
|
47
|
+
declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
|
|
48
|
+
declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
49
|
+
declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
|
|
50
|
+
declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
51
|
+
declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
52
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
53
|
+
declare const DialogHeader: {
|
|
54
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
55
|
+
displayName: string;
|
|
56
|
+
};
|
|
57
|
+
declare const DialogFooter: {
|
|
58
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
59
|
+
displayName: string;
|
|
60
|
+
};
|
|
61
|
+
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
62
|
+
declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
63
|
+
|
|
64
|
+
declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
65
|
+
declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
66
|
+
declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
67
|
+
declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
68
|
+
declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
69
|
+
declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
70
|
+
declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
71
|
+
inset?: boolean;
|
|
72
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
73
|
+
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
74
|
+
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
75
|
+
declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
76
|
+
inset?: boolean;
|
|
77
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
78
|
+
declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
79
|
+
declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
80
|
+
declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
81
|
+
inset?: boolean;
|
|
82
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
83
|
+
declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
84
|
+
declare const DropdownMenuShortcut: {
|
|
85
|
+
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
86
|
+
displayName: string;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
declare const Popover: React.FC<React.ComponentProps<typeof PopoverPrimitive.Root>>;
|
|
90
|
+
declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
91
|
+
declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
|
|
92
|
+
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
93
|
+
|
|
94
|
+
declare const Select: React.FC<React.ComponentProps<typeof SelectPrimitive.Root>>;
|
|
95
|
+
declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
96
|
+
declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
|
|
97
|
+
declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
98
|
+
declare const SelectScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
99
|
+
declare const SelectScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
100
|
+
declare const SelectContent: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
101
|
+
declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
102
|
+
declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
103
|
+
declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
104
|
+
|
|
105
|
+
interface SkeletonProps {
|
|
106
|
+
className?: string;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Base Skeleton component for loading states
|
|
110
|
+
*/
|
|
111
|
+
declare function Skeleton({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
112
|
+
/**
|
|
113
|
+
* Predefined skeleton components for common use cases
|
|
114
|
+
*/
|
|
115
|
+
declare function SkeletonText({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
116
|
+
declare function SkeletonTitle({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
117
|
+
declare function SkeletonSubtitle({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
118
|
+
declare function SkeletonAvatar({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
119
|
+
declare function SkeletonBadge({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
120
|
+
declare function SkeletonIcon({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
121
|
+
declare function SkeletonButton({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
122
|
+
declare function SkeletonInput({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
123
|
+
/**
|
|
124
|
+
* Generic table row skeleton - customize for your table structure
|
|
125
|
+
*/
|
|
126
|
+
declare function SkeletonTableRow({ columns, className, }: SkeletonProps & {
|
|
127
|
+
columns?: number;
|
|
128
|
+
}): react_jsx_runtime.JSX.Element;
|
|
129
|
+
/**
|
|
130
|
+
* Multiple skeleton rows for tables
|
|
131
|
+
*/
|
|
132
|
+
declare function SkeletonTableRows({ count, columns, }: {
|
|
133
|
+
count?: number;
|
|
134
|
+
columns?: number;
|
|
135
|
+
}): react_jsx_runtime.JSX.Element;
|
|
136
|
+
/**
|
|
137
|
+
* Card skeleton for grid layouts
|
|
138
|
+
*/
|
|
139
|
+
declare function SkeletonCard({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
140
|
+
|
|
141
|
+
declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
|
|
142
|
+
declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
143
|
+
declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
144
|
+
declare const TableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
145
|
+
declare const TableRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
|
|
146
|
+
declare const TableHead: React.ForwardRefExoticComponent<React.ThHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
147
|
+
declare const TableCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
148
|
+
declare const TableCaption: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableCaptionElement> & React.RefAttributes<HTMLTableCaptionElement>>;
|
|
149
|
+
|
|
150
|
+
interface TabsProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Root> {
|
|
151
|
+
defaultValue?: string;
|
|
152
|
+
value?: string;
|
|
153
|
+
onValueChange?: (value: string) => void;
|
|
154
|
+
}
|
|
155
|
+
declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
156
|
+
interface TabsListProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.List> {
|
|
157
|
+
}
|
|
158
|
+
declare const TabsList: React.ForwardRefExoticComponent<TabsListProps & React.RefAttributes<HTMLDivElement>>;
|
|
159
|
+
interface TabsTriggerProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger> {
|
|
160
|
+
}
|
|
161
|
+
declare const TabsTrigger: React.ForwardRefExoticComponent<TabsTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
162
|
+
declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
163
|
+
|
|
164
|
+
interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
165
|
+
}
|
|
166
|
+
declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
167
|
+
|
|
168
|
+
export { Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, badgeVariants, buttonVariants };
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkJ6RXKZE5_js = require('./chunk-J6RXKZE5.js');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "Badge", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return chunkJ6RXKZE5_js.Badge; }
|
|
10
|
+
});
|
|
11
|
+
Object.defineProperty(exports, "Button", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return chunkJ6RXKZE5_js.Button; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "Card", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return chunkJ6RXKZE5_js.Card; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "CardContent", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return chunkJ6RXKZE5_js.CardContent; }
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(exports, "CardDescription", {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return chunkJ6RXKZE5_js.CardDescription; }
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, "CardFooter", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function () { return chunkJ6RXKZE5_js.CardFooter; }
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, "CardHeader", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return chunkJ6RXKZE5_js.CardHeader; }
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, "CardTitle", {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () { return chunkJ6RXKZE5_js.CardTitle; }
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, "Checkbox", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function () { return chunkJ6RXKZE5_js.Checkbox; }
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, "Dialog", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return chunkJ6RXKZE5_js.Dialog; }
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, "DialogClose", {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function () { return chunkJ6RXKZE5_js.DialogClose; }
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(exports, "DialogContent", {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () { return chunkJ6RXKZE5_js.DialogContent; }
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(exports, "DialogDescription", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return chunkJ6RXKZE5_js.DialogDescription; }
|
|
58
|
+
});
|
|
59
|
+
Object.defineProperty(exports, "DialogFooter", {
|
|
60
|
+
enumerable: true,
|
|
61
|
+
get: function () { return chunkJ6RXKZE5_js.DialogFooter; }
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(exports, "DialogHeader", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () { return chunkJ6RXKZE5_js.DialogHeader; }
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(exports, "DialogOverlay", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function () { return chunkJ6RXKZE5_js.DialogOverlay; }
|
|
70
|
+
});
|
|
71
|
+
Object.defineProperty(exports, "DialogPortal", {
|
|
72
|
+
enumerable: true,
|
|
73
|
+
get: function () { return chunkJ6RXKZE5_js.DialogPortal; }
|
|
74
|
+
});
|
|
75
|
+
Object.defineProperty(exports, "DialogTitle", {
|
|
76
|
+
enumerable: true,
|
|
77
|
+
get: function () { return chunkJ6RXKZE5_js.DialogTitle; }
|
|
78
|
+
});
|
|
79
|
+
Object.defineProperty(exports, "DialogTrigger", {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
get: function () { return chunkJ6RXKZE5_js.DialogTrigger; }
|
|
82
|
+
});
|
|
83
|
+
Object.defineProperty(exports, "DropdownMenu", {
|
|
84
|
+
enumerable: true,
|
|
85
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenu; }
|
|
86
|
+
});
|
|
87
|
+
Object.defineProperty(exports, "DropdownMenuCheckboxItem", {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuCheckboxItem; }
|
|
90
|
+
});
|
|
91
|
+
Object.defineProperty(exports, "DropdownMenuContent", {
|
|
92
|
+
enumerable: true,
|
|
93
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuContent; }
|
|
94
|
+
});
|
|
95
|
+
Object.defineProperty(exports, "DropdownMenuGroup", {
|
|
96
|
+
enumerable: true,
|
|
97
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuGroup; }
|
|
98
|
+
});
|
|
99
|
+
Object.defineProperty(exports, "DropdownMenuItem", {
|
|
100
|
+
enumerable: true,
|
|
101
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuItem; }
|
|
102
|
+
});
|
|
103
|
+
Object.defineProperty(exports, "DropdownMenuLabel", {
|
|
104
|
+
enumerable: true,
|
|
105
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuLabel; }
|
|
106
|
+
});
|
|
107
|
+
Object.defineProperty(exports, "DropdownMenuPortal", {
|
|
108
|
+
enumerable: true,
|
|
109
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuPortal; }
|
|
110
|
+
});
|
|
111
|
+
Object.defineProperty(exports, "DropdownMenuRadioGroup", {
|
|
112
|
+
enumerable: true,
|
|
113
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuRadioGroup; }
|
|
114
|
+
});
|
|
115
|
+
Object.defineProperty(exports, "DropdownMenuRadioItem", {
|
|
116
|
+
enumerable: true,
|
|
117
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuRadioItem; }
|
|
118
|
+
});
|
|
119
|
+
Object.defineProperty(exports, "DropdownMenuSeparator", {
|
|
120
|
+
enumerable: true,
|
|
121
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSeparator; }
|
|
122
|
+
});
|
|
123
|
+
Object.defineProperty(exports, "DropdownMenuShortcut", {
|
|
124
|
+
enumerable: true,
|
|
125
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuShortcut; }
|
|
126
|
+
});
|
|
127
|
+
Object.defineProperty(exports, "DropdownMenuSub", {
|
|
128
|
+
enumerable: true,
|
|
129
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSub; }
|
|
130
|
+
});
|
|
131
|
+
Object.defineProperty(exports, "DropdownMenuSubContent", {
|
|
132
|
+
enumerable: true,
|
|
133
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSubContent; }
|
|
134
|
+
});
|
|
135
|
+
Object.defineProperty(exports, "DropdownMenuSubTrigger", {
|
|
136
|
+
enumerable: true,
|
|
137
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSubTrigger; }
|
|
138
|
+
});
|
|
139
|
+
Object.defineProperty(exports, "DropdownMenuTrigger", {
|
|
140
|
+
enumerable: true,
|
|
141
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuTrigger; }
|
|
142
|
+
});
|
|
143
|
+
Object.defineProperty(exports, "Popover", {
|
|
144
|
+
enumerable: true,
|
|
145
|
+
get: function () { return chunkJ6RXKZE5_js.Popover; }
|
|
146
|
+
});
|
|
147
|
+
Object.defineProperty(exports, "PopoverAnchor", {
|
|
148
|
+
enumerable: true,
|
|
149
|
+
get: function () { return chunkJ6RXKZE5_js.PopoverAnchor; }
|
|
150
|
+
});
|
|
151
|
+
Object.defineProperty(exports, "PopoverContent", {
|
|
152
|
+
enumerable: true,
|
|
153
|
+
get: function () { return chunkJ6RXKZE5_js.PopoverContent; }
|
|
154
|
+
});
|
|
155
|
+
Object.defineProperty(exports, "PopoverTrigger", {
|
|
156
|
+
enumerable: true,
|
|
157
|
+
get: function () { return chunkJ6RXKZE5_js.PopoverTrigger; }
|
|
158
|
+
});
|
|
159
|
+
Object.defineProperty(exports, "Select", {
|
|
160
|
+
enumerable: true,
|
|
161
|
+
get: function () { return chunkJ6RXKZE5_js.Select; }
|
|
162
|
+
});
|
|
163
|
+
Object.defineProperty(exports, "SelectContent", {
|
|
164
|
+
enumerable: true,
|
|
165
|
+
get: function () { return chunkJ6RXKZE5_js.SelectContent; }
|
|
166
|
+
});
|
|
167
|
+
Object.defineProperty(exports, "SelectGroup", {
|
|
168
|
+
enumerable: true,
|
|
169
|
+
get: function () { return chunkJ6RXKZE5_js.SelectGroup; }
|
|
170
|
+
});
|
|
171
|
+
Object.defineProperty(exports, "SelectItem", {
|
|
172
|
+
enumerable: true,
|
|
173
|
+
get: function () { return chunkJ6RXKZE5_js.SelectItem; }
|
|
174
|
+
});
|
|
175
|
+
Object.defineProperty(exports, "SelectLabel", {
|
|
176
|
+
enumerable: true,
|
|
177
|
+
get: function () { return chunkJ6RXKZE5_js.SelectLabel; }
|
|
178
|
+
});
|
|
179
|
+
Object.defineProperty(exports, "SelectScrollDownButton", {
|
|
180
|
+
enumerable: true,
|
|
181
|
+
get: function () { return chunkJ6RXKZE5_js.SelectScrollDownButton; }
|
|
182
|
+
});
|
|
183
|
+
Object.defineProperty(exports, "SelectScrollUpButton", {
|
|
184
|
+
enumerable: true,
|
|
185
|
+
get: function () { return chunkJ6RXKZE5_js.SelectScrollUpButton; }
|
|
186
|
+
});
|
|
187
|
+
Object.defineProperty(exports, "SelectSeparator", {
|
|
188
|
+
enumerable: true,
|
|
189
|
+
get: function () { return chunkJ6RXKZE5_js.SelectSeparator; }
|
|
190
|
+
});
|
|
191
|
+
Object.defineProperty(exports, "SelectTrigger", {
|
|
192
|
+
enumerable: true,
|
|
193
|
+
get: function () { return chunkJ6RXKZE5_js.SelectTrigger; }
|
|
194
|
+
});
|
|
195
|
+
Object.defineProperty(exports, "SelectValue", {
|
|
196
|
+
enumerable: true,
|
|
197
|
+
get: function () { return chunkJ6RXKZE5_js.SelectValue; }
|
|
198
|
+
});
|
|
199
|
+
Object.defineProperty(exports, "Skeleton", {
|
|
200
|
+
enumerable: true,
|
|
201
|
+
get: function () { return chunkJ6RXKZE5_js.Skeleton; }
|
|
202
|
+
});
|
|
203
|
+
Object.defineProperty(exports, "SkeletonAvatar", {
|
|
204
|
+
enumerable: true,
|
|
205
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonAvatar; }
|
|
206
|
+
});
|
|
207
|
+
Object.defineProperty(exports, "SkeletonBadge", {
|
|
208
|
+
enumerable: true,
|
|
209
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonBadge; }
|
|
210
|
+
});
|
|
211
|
+
Object.defineProperty(exports, "SkeletonButton", {
|
|
212
|
+
enumerable: true,
|
|
213
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonButton; }
|
|
214
|
+
});
|
|
215
|
+
Object.defineProperty(exports, "SkeletonCard", {
|
|
216
|
+
enumerable: true,
|
|
217
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonCard; }
|
|
218
|
+
});
|
|
219
|
+
Object.defineProperty(exports, "SkeletonIcon", {
|
|
220
|
+
enumerable: true,
|
|
221
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonIcon; }
|
|
222
|
+
});
|
|
223
|
+
Object.defineProperty(exports, "SkeletonInput", {
|
|
224
|
+
enumerable: true,
|
|
225
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonInput; }
|
|
226
|
+
});
|
|
227
|
+
Object.defineProperty(exports, "SkeletonSubtitle", {
|
|
228
|
+
enumerable: true,
|
|
229
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonSubtitle; }
|
|
230
|
+
});
|
|
231
|
+
Object.defineProperty(exports, "SkeletonTableRow", {
|
|
232
|
+
enumerable: true,
|
|
233
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonTableRow; }
|
|
234
|
+
});
|
|
235
|
+
Object.defineProperty(exports, "SkeletonTableRows", {
|
|
236
|
+
enumerable: true,
|
|
237
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonTableRows; }
|
|
238
|
+
});
|
|
239
|
+
Object.defineProperty(exports, "SkeletonText", {
|
|
240
|
+
enumerable: true,
|
|
241
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonText; }
|
|
242
|
+
});
|
|
243
|
+
Object.defineProperty(exports, "SkeletonTitle", {
|
|
244
|
+
enumerable: true,
|
|
245
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonTitle; }
|
|
246
|
+
});
|
|
247
|
+
Object.defineProperty(exports, "Table", {
|
|
248
|
+
enumerable: true,
|
|
249
|
+
get: function () { return chunkJ6RXKZE5_js.Table; }
|
|
250
|
+
});
|
|
251
|
+
Object.defineProperty(exports, "TableBody", {
|
|
252
|
+
enumerable: true,
|
|
253
|
+
get: function () { return chunkJ6RXKZE5_js.TableBody; }
|
|
254
|
+
});
|
|
255
|
+
Object.defineProperty(exports, "TableCaption", {
|
|
256
|
+
enumerable: true,
|
|
257
|
+
get: function () { return chunkJ6RXKZE5_js.TableCaption; }
|
|
258
|
+
});
|
|
259
|
+
Object.defineProperty(exports, "TableCell", {
|
|
260
|
+
enumerable: true,
|
|
261
|
+
get: function () { return chunkJ6RXKZE5_js.TableCell; }
|
|
262
|
+
});
|
|
263
|
+
Object.defineProperty(exports, "TableFooter", {
|
|
264
|
+
enumerable: true,
|
|
265
|
+
get: function () { return chunkJ6RXKZE5_js.TableFooter; }
|
|
266
|
+
});
|
|
267
|
+
Object.defineProperty(exports, "TableHead", {
|
|
268
|
+
enumerable: true,
|
|
269
|
+
get: function () { return chunkJ6RXKZE5_js.TableHead; }
|
|
270
|
+
});
|
|
271
|
+
Object.defineProperty(exports, "TableHeader", {
|
|
272
|
+
enumerable: true,
|
|
273
|
+
get: function () { return chunkJ6RXKZE5_js.TableHeader; }
|
|
274
|
+
});
|
|
275
|
+
Object.defineProperty(exports, "TableRow", {
|
|
276
|
+
enumerable: true,
|
|
277
|
+
get: function () { return chunkJ6RXKZE5_js.TableRow; }
|
|
278
|
+
});
|
|
279
|
+
Object.defineProperty(exports, "Tabs", {
|
|
280
|
+
enumerable: true,
|
|
281
|
+
get: function () { return chunkJ6RXKZE5_js.Tabs; }
|
|
282
|
+
});
|
|
283
|
+
Object.defineProperty(exports, "TabsContent", {
|
|
284
|
+
enumerable: true,
|
|
285
|
+
get: function () { return chunkJ6RXKZE5_js.TabsContent; }
|
|
286
|
+
});
|
|
287
|
+
Object.defineProperty(exports, "TabsList", {
|
|
288
|
+
enumerable: true,
|
|
289
|
+
get: function () { return chunkJ6RXKZE5_js.TabsList; }
|
|
290
|
+
});
|
|
291
|
+
Object.defineProperty(exports, "TabsTrigger", {
|
|
292
|
+
enumerable: true,
|
|
293
|
+
get: function () { return chunkJ6RXKZE5_js.TabsTrigger; }
|
|
294
|
+
});
|
|
295
|
+
Object.defineProperty(exports, "Textarea", {
|
|
296
|
+
enumerable: true,
|
|
297
|
+
get: function () { return chunkJ6RXKZE5_js.Textarea; }
|
|
298
|
+
});
|
|
299
|
+
Object.defineProperty(exports, "badgeVariants", {
|
|
300
|
+
enumerable: true,
|
|
301
|
+
get: function () { return chunkJ6RXKZE5_js.badgeVariants; }
|
|
302
|
+
});
|
|
303
|
+
Object.defineProperty(exports, "buttonVariants", {
|
|
304
|
+
enumerable: true,
|
|
305
|
+
get: function () { return chunkJ6RXKZE5_js.buttonVariants; }
|
|
306
|
+
});
|
|
307
|
+
//# sourceMappingURL=primitives.js.map
|
|
308
|
+
//# sourceMappingURL=primitives.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"primitives.js"}
|