@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,81 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import React__default, { ReactNode, ButtonHTMLAttributes } from 'react';
|
|
4
|
+
|
|
5
|
+
interface AnimatedButtonProps {
|
|
6
|
+
label: string;
|
|
7
|
+
variant?: "primary" | "outlined";
|
|
8
|
+
buttonContainerClassName?: string;
|
|
9
|
+
buttonTextClassName?: string;
|
|
10
|
+
onClick?: () => void;
|
|
11
|
+
}
|
|
12
|
+
declare const AnimatedButton: ({ label, variant, buttonContainerClassName, buttonTextClassName, onClick, }: AnimatedButtonProps) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
interface SelectOption {
|
|
15
|
+
value: string;
|
|
16
|
+
label: string;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
}
|
|
19
|
+
interface InputProps {
|
|
20
|
+
label?: string;
|
|
21
|
+
placeholder?: string;
|
|
22
|
+
value?: string | number;
|
|
23
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
24
|
+
onNumberChange?: (value: number) => void;
|
|
25
|
+
onSelectChange?: (value: string) => void;
|
|
26
|
+
onFocus?: (e: React.FocusEvent<HTMLInputElement | HTMLSelectElement>) => void;
|
|
27
|
+
onBlur?: (e: React.FocusEvent<HTMLInputElement | HTMLSelectElement>) => void;
|
|
28
|
+
type?: "text" | "email" | "password" | "number" | "search" | "select" | "mobile";
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
required?: boolean;
|
|
31
|
+
error?: string;
|
|
32
|
+
helperText?: string;
|
|
33
|
+
autoComplete?: string;
|
|
34
|
+
leadingIcon?: ReactNode;
|
|
35
|
+
trailingIcon?: ReactNode;
|
|
36
|
+
leadingDecorator?: ReactNode;
|
|
37
|
+
trailingDecorator?: ReactNode;
|
|
38
|
+
onLeadingClick?: () => void;
|
|
39
|
+
onTrailingClick?: () => void;
|
|
40
|
+
size?: "sm" | "md" | "lg";
|
|
41
|
+
variant?: "default" | "filled";
|
|
42
|
+
className?: string;
|
|
43
|
+
min?: number;
|
|
44
|
+
max?: number;
|
|
45
|
+
step?: number;
|
|
46
|
+
precision?: number;
|
|
47
|
+
allowNegative?: boolean;
|
|
48
|
+
showControls?: boolean;
|
|
49
|
+
options?: SelectOption[];
|
|
50
|
+
readOnly?: boolean;
|
|
51
|
+
tabIndex?: number;
|
|
52
|
+
tooltip?: {
|
|
53
|
+
content: ReactNode;
|
|
54
|
+
position?: "top" | "bottom" | "left" | "right";
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement | HTMLSelectElement>>;
|
|
58
|
+
|
|
59
|
+
interface TextButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
60
|
+
children: React.ReactNode;
|
|
61
|
+
onClick?: () => void;
|
|
62
|
+
disabled?: boolean;
|
|
63
|
+
leadingDecorator?: ReactNode;
|
|
64
|
+
trailingDecorator?: ReactNode;
|
|
65
|
+
variant?: "primary" | "secondary" | "danger" | "success" | "disabled";
|
|
66
|
+
size?: "sm" | "md" | "lg";
|
|
67
|
+
className?: string;
|
|
68
|
+
type?: "button" | "submit" | "reset";
|
|
69
|
+
}
|
|
70
|
+
declare const TextButton: ({ children, onClick, disabled, leadingDecorator, trailingDecorator, variant, size, className, type, ...buttonProps }: TextButtonProps) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
72
|
+
interface ToastProps {
|
|
73
|
+
message: string;
|
|
74
|
+
type: "success" | "error";
|
|
75
|
+
duration?: number;
|
|
76
|
+
onDismiss?: () => void;
|
|
77
|
+
isVisible: boolean;
|
|
78
|
+
}
|
|
79
|
+
declare const Toast: React__default.FC<ToastProps>;
|
|
80
|
+
|
|
81
|
+
export { AnimatedButton, type AnimatedButtonProps, Input, type InputProps, type SelectOption, TextButton, type TextButtonProps, Toast, type ToastProps };
|
package/dist/enhanced.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkZD6CMWPW_js = require('./chunk-ZD6CMWPW.js');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "AnimatedButton", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return chunkZD6CMWPW_js.AnimatedButton; }
|
|
10
|
+
});
|
|
11
|
+
Object.defineProperty(exports, "Input", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return chunkZD6CMWPW_js.Input; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "TextButton", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return chunkZD6CMWPW_js.TextButton; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "Toast", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return chunkZD6CMWPW_js.Toast; }
|
|
22
|
+
});
|
|
23
|
+
//# sourceMappingURL=enhanced.js.map
|
|
24
|
+
//# sourceMappingURL=enhanced.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"enhanced.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"enhanced.mjs"}
|
package/dist/hooks.d.mts
ADDED
package/dist/hooks.d.ts
ADDED
package/dist/hooks.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"hooks.js"}
|
package/dist/hooks.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"hooks.mjs"}
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export { Badge, BadgeProps, Button, 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, TextareaProps, badgeVariants, buttonVariants } from './primitives.mjs';
|
|
2
|
+
export { AnimatedButton, AnimatedButtonProps, Input, InputProps, SelectOption, TextButton, TextButtonProps, Toast, ToastProps } from './enhanced.mjs';
|
|
3
|
+
export { ArrowRightIcon, ArrowRightIconHandle, ArrowRightIconProps, CheckIcon, CheckIconHandle, CheckIconProps, PlusIcon, PlusIconHandle, PlusIconProps, SendIcon, SendIconHandle, SendIconProps, TrashIcon, TrashIconHandle, TrashIconProps } from './animated-icons.mjs';
|
|
4
|
+
import { ClassValue } from 'clsx';
|
|
5
|
+
import 'class-variance-authority/types';
|
|
6
|
+
import 'react';
|
|
7
|
+
import 'class-variance-authority';
|
|
8
|
+
import 'react/jsx-runtime';
|
|
9
|
+
import '@radix-ui/react-checkbox';
|
|
10
|
+
import '@radix-ui/react-dialog';
|
|
11
|
+
import '@radix-ui/react-dropdown-menu';
|
|
12
|
+
import '@radix-ui/react-popover';
|
|
13
|
+
import '@radix-ui/react-select';
|
|
14
|
+
import '@radix-ui/react-tabs';
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Utility function to merge Tailwind CSS classes
|
|
18
|
+
* Combines clsx for conditional classes with tailwind-merge for deduplication
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* cn("px-4 py-2", isActive && "bg-blue-500", className)
|
|
22
|
+
*/
|
|
23
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
24
|
+
|
|
25
|
+
export { cn };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export { Badge, BadgeProps, Button, 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, TextareaProps, badgeVariants, buttonVariants } from './primitives.js';
|
|
2
|
+
export { AnimatedButton, AnimatedButtonProps, Input, InputProps, SelectOption, TextButton, TextButtonProps, Toast, ToastProps } from './enhanced.js';
|
|
3
|
+
export { ArrowRightIcon, ArrowRightIconHandle, ArrowRightIconProps, CheckIcon, CheckIconHandle, CheckIconProps, PlusIcon, PlusIconHandle, PlusIconProps, SendIcon, SendIconHandle, SendIconProps, TrashIcon, TrashIconHandle, TrashIconProps } from './animated-icons.js';
|
|
4
|
+
import { ClassValue } from 'clsx';
|
|
5
|
+
import 'class-variance-authority/types';
|
|
6
|
+
import 'react';
|
|
7
|
+
import 'class-variance-authority';
|
|
8
|
+
import 'react/jsx-runtime';
|
|
9
|
+
import '@radix-ui/react-checkbox';
|
|
10
|
+
import '@radix-ui/react-dialog';
|
|
11
|
+
import '@radix-ui/react-dropdown-menu';
|
|
12
|
+
import '@radix-ui/react-popover';
|
|
13
|
+
import '@radix-ui/react-select';
|
|
14
|
+
import '@radix-ui/react-tabs';
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Utility function to merge Tailwind CSS classes
|
|
18
|
+
* Combines clsx for conditional classes with tailwind-merge for deduplication
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* cn("px-4 py-2", isActive && "bg-blue-500", className)
|
|
22
|
+
*/
|
|
23
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
24
|
+
|
|
25
|
+
export { cn };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkJ6RXKZE5_js = require('./chunk-J6RXKZE5.js');
|
|
4
|
+
var chunkZD6CMWPW_js = require('./chunk-ZD6CMWPW.js');
|
|
5
|
+
var chunkR5HAFV6M_js = require('./chunk-R5HAFV6M.js');
|
|
6
|
+
require('./chunk-AA25LTS4.js');
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Object.defineProperty(exports, "Badge", {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () { return chunkJ6RXKZE5_js.Badge; }
|
|
13
|
+
});
|
|
14
|
+
Object.defineProperty(exports, "Button", {
|
|
15
|
+
enumerable: true,
|
|
16
|
+
get: function () { return chunkJ6RXKZE5_js.Button; }
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "Card", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () { return chunkJ6RXKZE5_js.Card; }
|
|
21
|
+
});
|
|
22
|
+
Object.defineProperty(exports, "CardContent", {
|
|
23
|
+
enumerable: true,
|
|
24
|
+
get: function () { return chunkJ6RXKZE5_js.CardContent; }
|
|
25
|
+
});
|
|
26
|
+
Object.defineProperty(exports, "CardDescription", {
|
|
27
|
+
enumerable: true,
|
|
28
|
+
get: function () { return chunkJ6RXKZE5_js.CardDescription; }
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "CardFooter", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () { return chunkJ6RXKZE5_js.CardFooter; }
|
|
33
|
+
});
|
|
34
|
+
Object.defineProperty(exports, "CardHeader", {
|
|
35
|
+
enumerable: true,
|
|
36
|
+
get: function () { return chunkJ6RXKZE5_js.CardHeader; }
|
|
37
|
+
});
|
|
38
|
+
Object.defineProperty(exports, "CardTitle", {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () { return chunkJ6RXKZE5_js.CardTitle; }
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "Checkbox", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function () { return chunkJ6RXKZE5_js.Checkbox; }
|
|
45
|
+
});
|
|
46
|
+
Object.defineProperty(exports, "Dialog", {
|
|
47
|
+
enumerable: true,
|
|
48
|
+
get: function () { return chunkJ6RXKZE5_js.Dialog; }
|
|
49
|
+
});
|
|
50
|
+
Object.defineProperty(exports, "DialogClose", {
|
|
51
|
+
enumerable: true,
|
|
52
|
+
get: function () { return chunkJ6RXKZE5_js.DialogClose; }
|
|
53
|
+
});
|
|
54
|
+
Object.defineProperty(exports, "DialogContent", {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: function () { return chunkJ6RXKZE5_js.DialogContent; }
|
|
57
|
+
});
|
|
58
|
+
Object.defineProperty(exports, "DialogDescription", {
|
|
59
|
+
enumerable: true,
|
|
60
|
+
get: function () { return chunkJ6RXKZE5_js.DialogDescription; }
|
|
61
|
+
});
|
|
62
|
+
Object.defineProperty(exports, "DialogFooter", {
|
|
63
|
+
enumerable: true,
|
|
64
|
+
get: function () { return chunkJ6RXKZE5_js.DialogFooter; }
|
|
65
|
+
});
|
|
66
|
+
Object.defineProperty(exports, "DialogHeader", {
|
|
67
|
+
enumerable: true,
|
|
68
|
+
get: function () { return chunkJ6RXKZE5_js.DialogHeader; }
|
|
69
|
+
});
|
|
70
|
+
Object.defineProperty(exports, "DialogOverlay", {
|
|
71
|
+
enumerable: true,
|
|
72
|
+
get: function () { return chunkJ6RXKZE5_js.DialogOverlay; }
|
|
73
|
+
});
|
|
74
|
+
Object.defineProperty(exports, "DialogPortal", {
|
|
75
|
+
enumerable: true,
|
|
76
|
+
get: function () { return chunkJ6RXKZE5_js.DialogPortal; }
|
|
77
|
+
});
|
|
78
|
+
Object.defineProperty(exports, "DialogTitle", {
|
|
79
|
+
enumerable: true,
|
|
80
|
+
get: function () { return chunkJ6RXKZE5_js.DialogTitle; }
|
|
81
|
+
});
|
|
82
|
+
Object.defineProperty(exports, "DialogTrigger", {
|
|
83
|
+
enumerable: true,
|
|
84
|
+
get: function () { return chunkJ6RXKZE5_js.DialogTrigger; }
|
|
85
|
+
});
|
|
86
|
+
Object.defineProperty(exports, "DropdownMenu", {
|
|
87
|
+
enumerable: true,
|
|
88
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenu; }
|
|
89
|
+
});
|
|
90
|
+
Object.defineProperty(exports, "DropdownMenuCheckboxItem", {
|
|
91
|
+
enumerable: true,
|
|
92
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuCheckboxItem; }
|
|
93
|
+
});
|
|
94
|
+
Object.defineProperty(exports, "DropdownMenuContent", {
|
|
95
|
+
enumerable: true,
|
|
96
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuContent; }
|
|
97
|
+
});
|
|
98
|
+
Object.defineProperty(exports, "DropdownMenuGroup", {
|
|
99
|
+
enumerable: true,
|
|
100
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuGroup; }
|
|
101
|
+
});
|
|
102
|
+
Object.defineProperty(exports, "DropdownMenuItem", {
|
|
103
|
+
enumerable: true,
|
|
104
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuItem; }
|
|
105
|
+
});
|
|
106
|
+
Object.defineProperty(exports, "DropdownMenuLabel", {
|
|
107
|
+
enumerable: true,
|
|
108
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuLabel; }
|
|
109
|
+
});
|
|
110
|
+
Object.defineProperty(exports, "DropdownMenuPortal", {
|
|
111
|
+
enumerable: true,
|
|
112
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuPortal; }
|
|
113
|
+
});
|
|
114
|
+
Object.defineProperty(exports, "DropdownMenuRadioGroup", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuRadioGroup; }
|
|
117
|
+
});
|
|
118
|
+
Object.defineProperty(exports, "DropdownMenuRadioItem", {
|
|
119
|
+
enumerable: true,
|
|
120
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuRadioItem; }
|
|
121
|
+
});
|
|
122
|
+
Object.defineProperty(exports, "DropdownMenuSeparator", {
|
|
123
|
+
enumerable: true,
|
|
124
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSeparator; }
|
|
125
|
+
});
|
|
126
|
+
Object.defineProperty(exports, "DropdownMenuShortcut", {
|
|
127
|
+
enumerable: true,
|
|
128
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuShortcut; }
|
|
129
|
+
});
|
|
130
|
+
Object.defineProperty(exports, "DropdownMenuSub", {
|
|
131
|
+
enumerable: true,
|
|
132
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSub; }
|
|
133
|
+
});
|
|
134
|
+
Object.defineProperty(exports, "DropdownMenuSubContent", {
|
|
135
|
+
enumerable: true,
|
|
136
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSubContent; }
|
|
137
|
+
});
|
|
138
|
+
Object.defineProperty(exports, "DropdownMenuSubTrigger", {
|
|
139
|
+
enumerable: true,
|
|
140
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuSubTrigger; }
|
|
141
|
+
});
|
|
142
|
+
Object.defineProperty(exports, "DropdownMenuTrigger", {
|
|
143
|
+
enumerable: true,
|
|
144
|
+
get: function () { return chunkJ6RXKZE5_js.DropdownMenuTrigger; }
|
|
145
|
+
});
|
|
146
|
+
Object.defineProperty(exports, "Popover", {
|
|
147
|
+
enumerable: true,
|
|
148
|
+
get: function () { return chunkJ6RXKZE5_js.Popover; }
|
|
149
|
+
});
|
|
150
|
+
Object.defineProperty(exports, "PopoverAnchor", {
|
|
151
|
+
enumerable: true,
|
|
152
|
+
get: function () { return chunkJ6RXKZE5_js.PopoverAnchor; }
|
|
153
|
+
});
|
|
154
|
+
Object.defineProperty(exports, "PopoverContent", {
|
|
155
|
+
enumerable: true,
|
|
156
|
+
get: function () { return chunkJ6RXKZE5_js.PopoverContent; }
|
|
157
|
+
});
|
|
158
|
+
Object.defineProperty(exports, "PopoverTrigger", {
|
|
159
|
+
enumerable: true,
|
|
160
|
+
get: function () { return chunkJ6RXKZE5_js.PopoverTrigger; }
|
|
161
|
+
});
|
|
162
|
+
Object.defineProperty(exports, "Select", {
|
|
163
|
+
enumerable: true,
|
|
164
|
+
get: function () { return chunkJ6RXKZE5_js.Select; }
|
|
165
|
+
});
|
|
166
|
+
Object.defineProperty(exports, "SelectContent", {
|
|
167
|
+
enumerable: true,
|
|
168
|
+
get: function () { return chunkJ6RXKZE5_js.SelectContent; }
|
|
169
|
+
});
|
|
170
|
+
Object.defineProperty(exports, "SelectGroup", {
|
|
171
|
+
enumerable: true,
|
|
172
|
+
get: function () { return chunkJ6RXKZE5_js.SelectGroup; }
|
|
173
|
+
});
|
|
174
|
+
Object.defineProperty(exports, "SelectItem", {
|
|
175
|
+
enumerable: true,
|
|
176
|
+
get: function () { return chunkJ6RXKZE5_js.SelectItem; }
|
|
177
|
+
});
|
|
178
|
+
Object.defineProperty(exports, "SelectLabel", {
|
|
179
|
+
enumerable: true,
|
|
180
|
+
get: function () { return chunkJ6RXKZE5_js.SelectLabel; }
|
|
181
|
+
});
|
|
182
|
+
Object.defineProperty(exports, "SelectScrollDownButton", {
|
|
183
|
+
enumerable: true,
|
|
184
|
+
get: function () { return chunkJ6RXKZE5_js.SelectScrollDownButton; }
|
|
185
|
+
});
|
|
186
|
+
Object.defineProperty(exports, "SelectScrollUpButton", {
|
|
187
|
+
enumerable: true,
|
|
188
|
+
get: function () { return chunkJ6RXKZE5_js.SelectScrollUpButton; }
|
|
189
|
+
});
|
|
190
|
+
Object.defineProperty(exports, "SelectSeparator", {
|
|
191
|
+
enumerable: true,
|
|
192
|
+
get: function () { return chunkJ6RXKZE5_js.SelectSeparator; }
|
|
193
|
+
});
|
|
194
|
+
Object.defineProperty(exports, "SelectTrigger", {
|
|
195
|
+
enumerable: true,
|
|
196
|
+
get: function () { return chunkJ6RXKZE5_js.SelectTrigger; }
|
|
197
|
+
});
|
|
198
|
+
Object.defineProperty(exports, "SelectValue", {
|
|
199
|
+
enumerable: true,
|
|
200
|
+
get: function () { return chunkJ6RXKZE5_js.SelectValue; }
|
|
201
|
+
});
|
|
202
|
+
Object.defineProperty(exports, "Skeleton", {
|
|
203
|
+
enumerable: true,
|
|
204
|
+
get: function () { return chunkJ6RXKZE5_js.Skeleton; }
|
|
205
|
+
});
|
|
206
|
+
Object.defineProperty(exports, "SkeletonAvatar", {
|
|
207
|
+
enumerable: true,
|
|
208
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonAvatar; }
|
|
209
|
+
});
|
|
210
|
+
Object.defineProperty(exports, "SkeletonBadge", {
|
|
211
|
+
enumerable: true,
|
|
212
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonBadge; }
|
|
213
|
+
});
|
|
214
|
+
Object.defineProperty(exports, "SkeletonButton", {
|
|
215
|
+
enumerable: true,
|
|
216
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonButton; }
|
|
217
|
+
});
|
|
218
|
+
Object.defineProperty(exports, "SkeletonCard", {
|
|
219
|
+
enumerable: true,
|
|
220
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonCard; }
|
|
221
|
+
});
|
|
222
|
+
Object.defineProperty(exports, "SkeletonIcon", {
|
|
223
|
+
enumerable: true,
|
|
224
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonIcon; }
|
|
225
|
+
});
|
|
226
|
+
Object.defineProperty(exports, "SkeletonInput", {
|
|
227
|
+
enumerable: true,
|
|
228
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonInput; }
|
|
229
|
+
});
|
|
230
|
+
Object.defineProperty(exports, "SkeletonSubtitle", {
|
|
231
|
+
enumerable: true,
|
|
232
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonSubtitle; }
|
|
233
|
+
});
|
|
234
|
+
Object.defineProperty(exports, "SkeletonTableRow", {
|
|
235
|
+
enumerable: true,
|
|
236
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonTableRow; }
|
|
237
|
+
});
|
|
238
|
+
Object.defineProperty(exports, "SkeletonTableRows", {
|
|
239
|
+
enumerable: true,
|
|
240
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonTableRows; }
|
|
241
|
+
});
|
|
242
|
+
Object.defineProperty(exports, "SkeletonText", {
|
|
243
|
+
enumerable: true,
|
|
244
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonText; }
|
|
245
|
+
});
|
|
246
|
+
Object.defineProperty(exports, "SkeletonTitle", {
|
|
247
|
+
enumerable: true,
|
|
248
|
+
get: function () { return chunkJ6RXKZE5_js.SkeletonTitle; }
|
|
249
|
+
});
|
|
250
|
+
Object.defineProperty(exports, "Table", {
|
|
251
|
+
enumerable: true,
|
|
252
|
+
get: function () { return chunkJ6RXKZE5_js.Table; }
|
|
253
|
+
});
|
|
254
|
+
Object.defineProperty(exports, "TableBody", {
|
|
255
|
+
enumerable: true,
|
|
256
|
+
get: function () { return chunkJ6RXKZE5_js.TableBody; }
|
|
257
|
+
});
|
|
258
|
+
Object.defineProperty(exports, "TableCaption", {
|
|
259
|
+
enumerable: true,
|
|
260
|
+
get: function () { return chunkJ6RXKZE5_js.TableCaption; }
|
|
261
|
+
});
|
|
262
|
+
Object.defineProperty(exports, "TableCell", {
|
|
263
|
+
enumerable: true,
|
|
264
|
+
get: function () { return chunkJ6RXKZE5_js.TableCell; }
|
|
265
|
+
});
|
|
266
|
+
Object.defineProperty(exports, "TableFooter", {
|
|
267
|
+
enumerable: true,
|
|
268
|
+
get: function () { return chunkJ6RXKZE5_js.TableFooter; }
|
|
269
|
+
});
|
|
270
|
+
Object.defineProperty(exports, "TableHead", {
|
|
271
|
+
enumerable: true,
|
|
272
|
+
get: function () { return chunkJ6RXKZE5_js.TableHead; }
|
|
273
|
+
});
|
|
274
|
+
Object.defineProperty(exports, "TableHeader", {
|
|
275
|
+
enumerable: true,
|
|
276
|
+
get: function () { return chunkJ6RXKZE5_js.TableHeader; }
|
|
277
|
+
});
|
|
278
|
+
Object.defineProperty(exports, "TableRow", {
|
|
279
|
+
enumerable: true,
|
|
280
|
+
get: function () { return chunkJ6RXKZE5_js.TableRow; }
|
|
281
|
+
});
|
|
282
|
+
Object.defineProperty(exports, "Tabs", {
|
|
283
|
+
enumerable: true,
|
|
284
|
+
get: function () { return chunkJ6RXKZE5_js.Tabs; }
|
|
285
|
+
});
|
|
286
|
+
Object.defineProperty(exports, "TabsContent", {
|
|
287
|
+
enumerable: true,
|
|
288
|
+
get: function () { return chunkJ6RXKZE5_js.TabsContent; }
|
|
289
|
+
});
|
|
290
|
+
Object.defineProperty(exports, "TabsList", {
|
|
291
|
+
enumerable: true,
|
|
292
|
+
get: function () { return chunkJ6RXKZE5_js.TabsList; }
|
|
293
|
+
});
|
|
294
|
+
Object.defineProperty(exports, "TabsTrigger", {
|
|
295
|
+
enumerable: true,
|
|
296
|
+
get: function () { return chunkJ6RXKZE5_js.TabsTrigger; }
|
|
297
|
+
});
|
|
298
|
+
Object.defineProperty(exports, "Textarea", {
|
|
299
|
+
enumerable: true,
|
|
300
|
+
get: function () { return chunkJ6RXKZE5_js.Textarea; }
|
|
301
|
+
});
|
|
302
|
+
Object.defineProperty(exports, "badgeVariants", {
|
|
303
|
+
enumerable: true,
|
|
304
|
+
get: function () { return chunkJ6RXKZE5_js.badgeVariants; }
|
|
305
|
+
});
|
|
306
|
+
Object.defineProperty(exports, "buttonVariants", {
|
|
307
|
+
enumerable: true,
|
|
308
|
+
get: function () { return chunkJ6RXKZE5_js.buttonVariants; }
|
|
309
|
+
});
|
|
310
|
+
Object.defineProperty(exports, "cn", {
|
|
311
|
+
enumerable: true,
|
|
312
|
+
get: function () { return chunkJ6RXKZE5_js.cn; }
|
|
313
|
+
});
|
|
314
|
+
Object.defineProperty(exports, "AnimatedButton", {
|
|
315
|
+
enumerable: true,
|
|
316
|
+
get: function () { return chunkZD6CMWPW_js.AnimatedButton; }
|
|
317
|
+
});
|
|
318
|
+
Object.defineProperty(exports, "Input", {
|
|
319
|
+
enumerable: true,
|
|
320
|
+
get: function () { return chunkZD6CMWPW_js.Input; }
|
|
321
|
+
});
|
|
322
|
+
Object.defineProperty(exports, "TextButton", {
|
|
323
|
+
enumerable: true,
|
|
324
|
+
get: function () { return chunkZD6CMWPW_js.TextButton; }
|
|
325
|
+
});
|
|
326
|
+
Object.defineProperty(exports, "Toast", {
|
|
327
|
+
enumerable: true,
|
|
328
|
+
get: function () { return chunkZD6CMWPW_js.Toast; }
|
|
329
|
+
});
|
|
330
|
+
Object.defineProperty(exports, "ArrowRightIcon", {
|
|
331
|
+
enumerable: true,
|
|
332
|
+
get: function () { return chunkR5HAFV6M_js.ArrowRightIcon; }
|
|
333
|
+
});
|
|
334
|
+
Object.defineProperty(exports, "CheckIcon", {
|
|
335
|
+
enumerable: true,
|
|
336
|
+
get: function () { return chunkR5HAFV6M_js.CheckIcon; }
|
|
337
|
+
});
|
|
338
|
+
Object.defineProperty(exports, "PlusIcon", {
|
|
339
|
+
enumerable: true,
|
|
340
|
+
get: function () { return chunkR5HAFV6M_js.PlusIcon; }
|
|
341
|
+
});
|
|
342
|
+
Object.defineProperty(exports, "SendIcon", {
|
|
343
|
+
enumerable: true,
|
|
344
|
+
get: function () { return chunkR5HAFV6M_js.SendIcon; }
|
|
345
|
+
});
|
|
346
|
+
Object.defineProperty(exports, "TrashIcon", {
|
|
347
|
+
enumerable: true,
|
|
348
|
+
get: function () { return chunkR5HAFV6M_js.TrashIcon; }
|
|
349
|
+
});
|
|
350
|
+
//# sourceMappingURL=index.js.map
|
|
351
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { Badge, Button, 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, badgeVariants, buttonVariants, cn } from './chunk-7LVVOCBV.mjs';
|
|
2
|
+
export { AnimatedButton, Input, TextButton, Toast } from './chunk-6YAK6HNR.mjs';
|
|
3
|
+
export { ArrowRightIcon, CheckIcon, PlusIcon, SendIcon, TrashIcon } from './chunk-2B2BWI5A.mjs';
|
|
4
|
+
import './chunk-Y6G4VKJ3.mjs';
|
|
5
|
+
//# sourceMappingURL=index.mjs.map
|
|
6
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs"}
|