@pos-360/horizon 0.2.0 → 0.2.1
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/{chunk-24KNWDO5.js → chunk-BWR6DSQJ.js} +329 -50
- package/dist/chunk-BWR6DSQJ.js.map +1 -0
- package/dist/{chunk-RMVND66S.mjs → chunk-BYICEALC.mjs} +267 -29
- package/dist/chunk-BYICEALC.mjs.map +1 -0
- package/dist/{chunk-VMM4FQ6A.js → chunk-FOXFMLET.js} +277 -28
- package/dist/chunk-FOXFMLET.js.map +1 -0
- package/dist/{chunk-FEMSTEHE.mjs → chunk-TQPMV72P.mjs} +307 -51
- package/dist/chunk-TQPMV72P.mjs.map +1 -0
- package/dist/enhanced.d.mts +10 -3
- package/dist/enhanced.d.ts +10 -3
- package/dist/enhanced.js +30 -6
- package/dist/enhanced.mjs +1 -1
- package/dist/index.d.mts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +146 -82
- package/dist/index.mjs +2 -2
- package/dist/primitives.d.mts +62 -10
- package/dist/primitives.d.ts +62 -10
- package/dist/primitives.js +116 -76
- package/dist/primitives.mjs +1 -1
- package/package.json +15 -11
- package/tailwind.config.js +1 -0
- package/dist/chunk-24KNWDO5.js.map +0 -1
- package/dist/chunk-FEMSTEHE.mjs.map +0 -1
- package/dist/chunk-RMVND66S.mjs.map +0 -1
- package/dist/chunk-VMM4FQ6A.js.map +0 -1
package/dist/primitives.d.ts
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
1
2
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
2
3
|
import * as React from 'react';
|
|
3
4
|
import { VariantProps } from 'class-variance-authority';
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
6
6
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
7
7
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
8
8
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
9
9
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
10
10
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
11
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
12
|
+
|
|
13
|
+
declare const badgeVariants: (props?: ({
|
|
14
|
+
variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "info" | "purple" | "purpleOutline" | null | undefined;
|
|
15
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
|
+
interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
17
|
+
}
|
|
18
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
11
19
|
|
|
12
20
|
declare const buttonVariants: (props?: ({
|
|
13
|
-
variant?: "default" | "
|
|
21
|
+
variant?: "default" | "secondary" | "destructive" | "outline" | "link" | "ghost" | null | undefined;
|
|
14
22
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
15
23
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
24
|
interface BaseButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -28,13 +36,6 @@ type ButtonProps = BaseButtonProps & ({
|
|
|
28
36
|
});
|
|
29
37
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
30
38
|
|
|
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
39
|
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
39
40
|
declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
40
41
|
declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -165,4 +166,55 @@ interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement
|
|
|
165
166
|
}
|
|
166
167
|
declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
167
168
|
|
|
168
|
-
|
|
169
|
+
declare const headingVariants: (props?: ({
|
|
170
|
+
level?: 1 | 3 | 4 | 2 | 5 | 6 | null | undefined;
|
|
171
|
+
weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
|
|
172
|
+
align?: "center" | "right" | "left" | null | undefined;
|
|
173
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
174
|
+
type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
175
|
+
interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement>, Omit<VariantProps<typeof headingVariants>, "level"> {
|
|
176
|
+
level?: HeadingLevel;
|
|
177
|
+
as?: `h${HeadingLevel}`;
|
|
178
|
+
}
|
|
179
|
+
declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
180
|
+
|
|
181
|
+
declare const textVariants: (props?: ({
|
|
182
|
+
size?: "sm" | "lg" | "base" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | null | undefined;
|
|
183
|
+
weight?: "medium" | "regular" | "semibold" | null | undefined;
|
|
184
|
+
align?: "center" | "right" | "left" | "justify" | null | undefined;
|
|
185
|
+
color?: "default" | "success" | "warning" | "muted" | "error" | "accent" | null | undefined;
|
|
186
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
187
|
+
interface TextProps extends Omit<React.HTMLAttributes<HTMLParagraphElement>, "color">, VariantProps<typeof textVariants> {
|
|
188
|
+
asChild?: boolean;
|
|
189
|
+
as?: "p" | "span" | "div";
|
|
190
|
+
}
|
|
191
|
+
declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
192
|
+
|
|
193
|
+
declare const labelVariants: (props?: ({
|
|
194
|
+
variant?: "default" | "eyebrow" | null | undefined;
|
|
195
|
+
size?: "sm" | "lg" | "base" | "xs" | "xl" | null | undefined;
|
|
196
|
+
weight?: "bold" | "medium" | "semibold" | null | undefined;
|
|
197
|
+
required?: boolean | null | undefined;
|
|
198
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
199
|
+
interface LabelProps extends React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
|
|
200
|
+
}
|
|
201
|
+
declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
|
|
202
|
+
|
|
203
|
+
declare const captionVariants: (props?: ({
|
|
204
|
+
weight?: "medium" | "regular" | null | undefined;
|
|
205
|
+
align?: "center" | "right" | "left" | null | undefined;
|
|
206
|
+
color?: "default" | "success" | "warning" | "muted" | "error" | "accent" | null | undefined;
|
|
207
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
208
|
+
interface CaptionProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "color">, VariantProps<typeof captionVariants> {
|
|
209
|
+
}
|
|
210
|
+
declare const Caption: React.ForwardRefExoticComponent<CaptionProps & React.RefAttributes<HTMLSpanElement>>;
|
|
211
|
+
|
|
212
|
+
declare const codeVariants: (props?: ({
|
|
213
|
+
variant?: "inline" | "block" | null | undefined;
|
|
214
|
+
color?: "default" | "success" | "warning" | "error" | "accent" | null | undefined;
|
|
215
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
216
|
+
interface CodeProps extends Omit<React.HTMLAttributes<HTMLElement>, "color">, VariantProps<typeof codeVariants> {
|
|
217
|
+
}
|
|
218
|
+
declare const Code: React.ForwardRefExoticComponent<CodeProps & React.RefAttributes<HTMLElement>>;
|
|
219
|
+
|
|
220
|
+
export { Badge, type BadgeProps, Button, type ButtonProps, Caption, type CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, type CodeProps, 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, Heading, type HeadingProps, Label, type LabelProps, 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, Text, type TextProps, Textarea, type TextareaProps, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, textVariants };
|
package/dist/primitives.js
CHANGED
|
@@ -1,309 +1,349 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkFOXFMLET_js = require('./chunk-FOXFMLET.js');
|
|
4
4
|
require('./chunk-TMZLQK74.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "Badge", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunkFOXFMLET_js.Badge; }
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "Button", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkFOXFMLET_js.Button; }
|
|
15
|
+
});
|
|
16
|
+
Object.defineProperty(exports, "Caption", {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function () { return chunkFOXFMLET_js.Caption; }
|
|
15
19
|
});
|
|
16
20
|
Object.defineProperty(exports, "Card", {
|
|
17
21
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
22
|
+
get: function () { return chunkFOXFMLET_js.Card; }
|
|
19
23
|
});
|
|
20
24
|
Object.defineProperty(exports, "CardContent", {
|
|
21
25
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkFOXFMLET_js.CardContent; }
|
|
23
27
|
});
|
|
24
28
|
Object.defineProperty(exports, "CardDescription", {
|
|
25
29
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkFOXFMLET_js.CardDescription; }
|
|
27
31
|
});
|
|
28
32
|
Object.defineProperty(exports, "CardFooter", {
|
|
29
33
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkFOXFMLET_js.CardFooter; }
|
|
31
35
|
});
|
|
32
36
|
Object.defineProperty(exports, "CardHeader", {
|
|
33
37
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkFOXFMLET_js.CardHeader; }
|
|
35
39
|
});
|
|
36
40
|
Object.defineProperty(exports, "CardTitle", {
|
|
37
41
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkFOXFMLET_js.CardTitle; }
|
|
39
43
|
});
|
|
40
44
|
Object.defineProperty(exports, "Checkbox", {
|
|
41
45
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
46
|
+
get: function () { return chunkFOXFMLET_js.Checkbox; }
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "Code", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () { return chunkFOXFMLET_js.Code; }
|
|
43
51
|
});
|
|
44
52
|
Object.defineProperty(exports, "Dialog", {
|
|
45
53
|
enumerable: true,
|
|
46
|
-
get: function () { return
|
|
54
|
+
get: function () { return chunkFOXFMLET_js.Dialog; }
|
|
47
55
|
});
|
|
48
56
|
Object.defineProperty(exports, "DialogClose", {
|
|
49
57
|
enumerable: true,
|
|
50
|
-
get: function () { return
|
|
58
|
+
get: function () { return chunkFOXFMLET_js.DialogClose; }
|
|
51
59
|
});
|
|
52
60
|
Object.defineProperty(exports, "DialogContent", {
|
|
53
61
|
enumerable: true,
|
|
54
|
-
get: function () { return
|
|
62
|
+
get: function () { return chunkFOXFMLET_js.DialogContent; }
|
|
55
63
|
});
|
|
56
64
|
Object.defineProperty(exports, "DialogDescription", {
|
|
57
65
|
enumerable: true,
|
|
58
|
-
get: function () { return
|
|
66
|
+
get: function () { return chunkFOXFMLET_js.DialogDescription; }
|
|
59
67
|
});
|
|
60
68
|
Object.defineProperty(exports, "DialogFooter", {
|
|
61
69
|
enumerable: true,
|
|
62
|
-
get: function () { return
|
|
70
|
+
get: function () { return chunkFOXFMLET_js.DialogFooter; }
|
|
63
71
|
});
|
|
64
72
|
Object.defineProperty(exports, "DialogHeader", {
|
|
65
73
|
enumerable: true,
|
|
66
|
-
get: function () { return
|
|
74
|
+
get: function () { return chunkFOXFMLET_js.DialogHeader; }
|
|
67
75
|
});
|
|
68
76
|
Object.defineProperty(exports, "DialogOverlay", {
|
|
69
77
|
enumerable: true,
|
|
70
|
-
get: function () { return
|
|
78
|
+
get: function () { return chunkFOXFMLET_js.DialogOverlay; }
|
|
71
79
|
});
|
|
72
80
|
Object.defineProperty(exports, "DialogPortal", {
|
|
73
81
|
enumerable: true,
|
|
74
|
-
get: function () { return
|
|
82
|
+
get: function () { return chunkFOXFMLET_js.DialogPortal; }
|
|
75
83
|
});
|
|
76
84
|
Object.defineProperty(exports, "DialogTitle", {
|
|
77
85
|
enumerable: true,
|
|
78
|
-
get: function () { return
|
|
86
|
+
get: function () { return chunkFOXFMLET_js.DialogTitle; }
|
|
79
87
|
});
|
|
80
88
|
Object.defineProperty(exports, "DialogTrigger", {
|
|
81
89
|
enumerable: true,
|
|
82
|
-
get: function () { return
|
|
90
|
+
get: function () { return chunkFOXFMLET_js.DialogTrigger; }
|
|
83
91
|
});
|
|
84
92
|
Object.defineProperty(exports, "DropdownMenu", {
|
|
85
93
|
enumerable: true,
|
|
86
|
-
get: function () { return
|
|
94
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenu; }
|
|
87
95
|
});
|
|
88
96
|
Object.defineProperty(exports, "DropdownMenuCheckboxItem", {
|
|
89
97
|
enumerable: true,
|
|
90
|
-
get: function () { return
|
|
98
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuCheckboxItem; }
|
|
91
99
|
});
|
|
92
100
|
Object.defineProperty(exports, "DropdownMenuContent", {
|
|
93
101
|
enumerable: true,
|
|
94
|
-
get: function () { return
|
|
102
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuContent; }
|
|
95
103
|
});
|
|
96
104
|
Object.defineProperty(exports, "DropdownMenuGroup", {
|
|
97
105
|
enumerable: true,
|
|
98
|
-
get: function () { return
|
|
106
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuGroup; }
|
|
99
107
|
});
|
|
100
108
|
Object.defineProperty(exports, "DropdownMenuItem", {
|
|
101
109
|
enumerable: true,
|
|
102
|
-
get: function () { return
|
|
110
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuItem; }
|
|
103
111
|
});
|
|
104
112
|
Object.defineProperty(exports, "DropdownMenuLabel", {
|
|
105
113
|
enumerable: true,
|
|
106
|
-
get: function () { return
|
|
114
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuLabel; }
|
|
107
115
|
});
|
|
108
116
|
Object.defineProperty(exports, "DropdownMenuPortal", {
|
|
109
117
|
enumerable: true,
|
|
110
|
-
get: function () { return
|
|
118
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuPortal; }
|
|
111
119
|
});
|
|
112
120
|
Object.defineProperty(exports, "DropdownMenuRadioGroup", {
|
|
113
121
|
enumerable: true,
|
|
114
|
-
get: function () { return
|
|
122
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuRadioGroup; }
|
|
115
123
|
});
|
|
116
124
|
Object.defineProperty(exports, "DropdownMenuRadioItem", {
|
|
117
125
|
enumerable: true,
|
|
118
|
-
get: function () { return
|
|
126
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuRadioItem; }
|
|
119
127
|
});
|
|
120
128
|
Object.defineProperty(exports, "DropdownMenuSeparator", {
|
|
121
129
|
enumerable: true,
|
|
122
|
-
get: function () { return
|
|
130
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuSeparator; }
|
|
123
131
|
});
|
|
124
132
|
Object.defineProperty(exports, "DropdownMenuShortcut", {
|
|
125
133
|
enumerable: true,
|
|
126
|
-
get: function () { return
|
|
134
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuShortcut; }
|
|
127
135
|
});
|
|
128
136
|
Object.defineProperty(exports, "DropdownMenuSub", {
|
|
129
137
|
enumerable: true,
|
|
130
|
-
get: function () { return
|
|
138
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuSub; }
|
|
131
139
|
});
|
|
132
140
|
Object.defineProperty(exports, "DropdownMenuSubContent", {
|
|
133
141
|
enumerable: true,
|
|
134
|
-
get: function () { return
|
|
142
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuSubContent; }
|
|
135
143
|
});
|
|
136
144
|
Object.defineProperty(exports, "DropdownMenuSubTrigger", {
|
|
137
145
|
enumerable: true,
|
|
138
|
-
get: function () { return
|
|
146
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuSubTrigger; }
|
|
139
147
|
});
|
|
140
148
|
Object.defineProperty(exports, "DropdownMenuTrigger", {
|
|
141
149
|
enumerable: true,
|
|
142
|
-
get: function () { return
|
|
150
|
+
get: function () { return chunkFOXFMLET_js.DropdownMenuTrigger; }
|
|
151
|
+
});
|
|
152
|
+
Object.defineProperty(exports, "Heading", {
|
|
153
|
+
enumerable: true,
|
|
154
|
+
get: function () { return chunkFOXFMLET_js.Heading; }
|
|
155
|
+
});
|
|
156
|
+
Object.defineProperty(exports, "Label", {
|
|
157
|
+
enumerable: true,
|
|
158
|
+
get: function () { return chunkFOXFMLET_js.Label; }
|
|
143
159
|
});
|
|
144
160
|
Object.defineProperty(exports, "Popover", {
|
|
145
161
|
enumerable: true,
|
|
146
|
-
get: function () { return
|
|
162
|
+
get: function () { return chunkFOXFMLET_js.Popover; }
|
|
147
163
|
});
|
|
148
164
|
Object.defineProperty(exports, "PopoverAnchor", {
|
|
149
165
|
enumerable: true,
|
|
150
|
-
get: function () { return
|
|
166
|
+
get: function () { return chunkFOXFMLET_js.PopoverAnchor; }
|
|
151
167
|
});
|
|
152
168
|
Object.defineProperty(exports, "PopoverContent", {
|
|
153
169
|
enumerable: true,
|
|
154
|
-
get: function () { return
|
|
170
|
+
get: function () { return chunkFOXFMLET_js.PopoverContent; }
|
|
155
171
|
});
|
|
156
172
|
Object.defineProperty(exports, "PopoverTrigger", {
|
|
157
173
|
enumerable: true,
|
|
158
|
-
get: function () { return
|
|
174
|
+
get: function () { return chunkFOXFMLET_js.PopoverTrigger; }
|
|
159
175
|
});
|
|
160
176
|
Object.defineProperty(exports, "Select", {
|
|
161
177
|
enumerable: true,
|
|
162
|
-
get: function () { return
|
|
178
|
+
get: function () { return chunkFOXFMLET_js.Select; }
|
|
163
179
|
});
|
|
164
180
|
Object.defineProperty(exports, "SelectContent", {
|
|
165
181
|
enumerable: true,
|
|
166
|
-
get: function () { return
|
|
182
|
+
get: function () { return chunkFOXFMLET_js.SelectContent; }
|
|
167
183
|
});
|
|
168
184
|
Object.defineProperty(exports, "SelectGroup", {
|
|
169
185
|
enumerable: true,
|
|
170
|
-
get: function () { return
|
|
186
|
+
get: function () { return chunkFOXFMLET_js.SelectGroup; }
|
|
171
187
|
});
|
|
172
188
|
Object.defineProperty(exports, "SelectItem", {
|
|
173
189
|
enumerable: true,
|
|
174
|
-
get: function () { return
|
|
190
|
+
get: function () { return chunkFOXFMLET_js.SelectItem; }
|
|
175
191
|
});
|
|
176
192
|
Object.defineProperty(exports, "SelectLabel", {
|
|
177
193
|
enumerable: true,
|
|
178
|
-
get: function () { return
|
|
194
|
+
get: function () { return chunkFOXFMLET_js.SelectLabel; }
|
|
179
195
|
});
|
|
180
196
|
Object.defineProperty(exports, "SelectScrollDownButton", {
|
|
181
197
|
enumerable: true,
|
|
182
|
-
get: function () { return
|
|
198
|
+
get: function () { return chunkFOXFMLET_js.SelectScrollDownButton; }
|
|
183
199
|
});
|
|
184
200
|
Object.defineProperty(exports, "SelectScrollUpButton", {
|
|
185
201
|
enumerable: true,
|
|
186
|
-
get: function () { return
|
|
202
|
+
get: function () { return chunkFOXFMLET_js.SelectScrollUpButton; }
|
|
187
203
|
});
|
|
188
204
|
Object.defineProperty(exports, "SelectSeparator", {
|
|
189
205
|
enumerable: true,
|
|
190
|
-
get: function () { return
|
|
206
|
+
get: function () { return chunkFOXFMLET_js.SelectSeparator; }
|
|
191
207
|
});
|
|
192
208
|
Object.defineProperty(exports, "SelectTrigger", {
|
|
193
209
|
enumerable: true,
|
|
194
|
-
get: function () { return
|
|
210
|
+
get: function () { return chunkFOXFMLET_js.SelectTrigger; }
|
|
195
211
|
});
|
|
196
212
|
Object.defineProperty(exports, "SelectValue", {
|
|
197
213
|
enumerable: true,
|
|
198
|
-
get: function () { return
|
|
214
|
+
get: function () { return chunkFOXFMLET_js.SelectValue; }
|
|
199
215
|
});
|
|
200
216
|
Object.defineProperty(exports, "Skeleton", {
|
|
201
217
|
enumerable: true,
|
|
202
|
-
get: function () { return
|
|
218
|
+
get: function () { return chunkFOXFMLET_js.Skeleton; }
|
|
203
219
|
});
|
|
204
220
|
Object.defineProperty(exports, "SkeletonAvatar", {
|
|
205
221
|
enumerable: true,
|
|
206
|
-
get: function () { return
|
|
222
|
+
get: function () { return chunkFOXFMLET_js.SkeletonAvatar; }
|
|
207
223
|
});
|
|
208
224
|
Object.defineProperty(exports, "SkeletonBadge", {
|
|
209
225
|
enumerable: true,
|
|
210
|
-
get: function () { return
|
|
226
|
+
get: function () { return chunkFOXFMLET_js.SkeletonBadge; }
|
|
211
227
|
});
|
|
212
228
|
Object.defineProperty(exports, "SkeletonButton", {
|
|
213
229
|
enumerable: true,
|
|
214
|
-
get: function () { return
|
|
230
|
+
get: function () { return chunkFOXFMLET_js.SkeletonButton; }
|
|
215
231
|
});
|
|
216
232
|
Object.defineProperty(exports, "SkeletonCard", {
|
|
217
233
|
enumerable: true,
|
|
218
|
-
get: function () { return
|
|
234
|
+
get: function () { return chunkFOXFMLET_js.SkeletonCard; }
|
|
219
235
|
});
|
|
220
236
|
Object.defineProperty(exports, "SkeletonIcon", {
|
|
221
237
|
enumerable: true,
|
|
222
|
-
get: function () { return
|
|
238
|
+
get: function () { return chunkFOXFMLET_js.SkeletonIcon; }
|
|
223
239
|
});
|
|
224
240
|
Object.defineProperty(exports, "SkeletonInput", {
|
|
225
241
|
enumerable: true,
|
|
226
|
-
get: function () { return
|
|
242
|
+
get: function () { return chunkFOXFMLET_js.SkeletonInput; }
|
|
227
243
|
});
|
|
228
244
|
Object.defineProperty(exports, "SkeletonSubtitle", {
|
|
229
245
|
enumerable: true,
|
|
230
|
-
get: function () { return
|
|
246
|
+
get: function () { return chunkFOXFMLET_js.SkeletonSubtitle; }
|
|
231
247
|
});
|
|
232
248
|
Object.defineProperty(exports, "SkeletonTableRow", {
|
|
233
249
|
enumerable: true,
|
|
234
|
-
get: function () { return
|
|
250
|
+
get: function () { return chunkFOXFMLET_js.SkeletonTableRow; }
|
|
235
251
|
});
|
|
236
252
|
Object.defineProperty(exports, "SkeletonTableRows", {
|
|
237
253
|
enumerable: true,
|
|
238
|
-
get: function () { return
|
|
254
|
+
get: function () { return chunkFOXFMLET_js.SkeletonTableRows; }
|
|
239
255
|
});
|
|
240
256
|
Object.defineProperty(exports, "SkeletonText", {
|
|
241
257
|
enumerable: true,
|
|
242
|
-
get: function () { return
|
|
258
|
+
get: function () { return chunkFOXFMLET_js.SkeletonText; }
|
|
243
259
|
});
|
|
244
260
|
Object.defineProperty(exports, "SkeletonTitle", {
|
|
245
261
|
enumerable: true,
|
|
246
|
-
get: function () { return
|
|
262
|
+
get: function () { return chunkFOXFMLET_js.SkeletonTitle; }
|
|
247
263
|
});
|
|
248
264
|
Object.defineProperty(exports, "Table", {
|
|
249
265
|
enumerable: true,
|
|
250
|
-
get: function () { return
|
|
266
|
+
get: function () { return chunkFOXFMLET_js.Table; }
|
|
251
267
|
});
|
|
252
268
|
Object.defineProperty(exports, "TableBody", {
|
|
253
269
|
enumerable: true,
|
|
254
|
-
get: function () { return
|
|
270
|
+
get: function () { return chunkFOXFMLET_js.TableBody; }
|
|
255
271
|
});
|
|
256
272
|
Object.defineProperty(exports, "TableCaption", {
|
|
257
273
|
enumerable: true,
|
|
258
|
-
get: function () { return
|
|
274
|
+
get: function () { return chunkFOXFMLET_js.TableCaption; }
|
|
259
275
|
});
|
|
260
276
|
Object.defineProperty(exports, "TableCell", {
|
|
261
277
|
enumerable: true,
|
|
262
|
-
get: function () { return
|
|
278
|
+
get: function () { return chunkFOXFMLET_js.TableCell; }
|
|
263
279
|
});
|
|
264
280
|
Object.defineProperty(exports, "TableFooter", {
|
|
265
281
|
enumerable: true,
|
|
266
|
-
get: function () { return
|
|
282
|
+
get: function () { return chunkFOXFMLET_js.TableFooter; }
|
|
267
283
|
});
|
|
268
284
|
Object.defineProperty(exports, "TableHead", {
|
|
269
285
|
enumerable: true,
|
|
270
|
-
get: function () { return
|
|
286
|
+
get: function () { return chunkFOXFMLET_js.TableHead; }
|
|
271
287
|
});
|
|
272
288
|
Object.defineProperty(exports, "TableHeader", {
|
|
273
289
|
enumerable: true,
|
|
274
|
-
get: function () { return
|
|
290
|
+
get: function () { return chunkFOXFMLET_js.TableHeader; }
|
|
275
291
|
});
|
|
276
292
|
Object.defineProperty(exports, "TableRow", {
|
|
277
293
|
enumerable: true,
|
|
278
|
-
get: function () { return
|
|
294
|
+
get: function () { return chunkFOXFMLET_js.TableRow; }
|
|
279
295
|
});
|
|
280
296
|
Object.defineProperty(exports, "Tabs", {
|
|
281
297
|
enumerable: true,
|
|
282
|
-
get: function () { return
|
|
298
|
+
get: function () { return chunkFOXFMLET_js.Tabs; }
|
|
283
299
|
});
|
|
284
300
|
Object.defineProperty(exports, "TabsContent", {
|
|
285
301
|
enumerable: true,
|
|
286
|
-
get: function () { return
|
|
302
|
+
get: function () { return chunkFOXFMLET_js.TabsContent; }
|
|
287
303
|
});
|
|
288
304
|
Object.defineProperty(exports, "TabsList", {
|
|
289
305
|
enumerable: true,
|
|
290
|
-
get: function () { return
|
|
306
|
+
get: function () { return chunkFOXFMLET_js.TabsList; }
|
|
291
307
|
});
|
|
292
308
|
Object.defineProperty(exports, "TabsTrigger", {
|
|
293
309
|
enumerable: true,
|
|
294
|
-
get: function () { return
|
|
310
|
+
get: function () { return chunkFOXFMLET_js.TabsTrigger; }
|
|
311
|
+
});
|
|
312
|
+
Object.defineProperty(exports, "Text", {
|
|
313
|
+
enumerable: true,
|
|
314
|
+
get: function () { return chunkFOXFMLET_js.Text; }
|
|
295
315
|
});
|
|
296
316
|
Object.defineProperty(exports, "Textarea", {
|
|
297
317
|
enumerable: true,
|
|
298
|
-
get: function () { return
|
|
318
|
+
get: function () { return chunkFOXFMLET_js.Textarea; }
|
|
299
319
|
});
|
|
300
320
|
Object.defineProperty(exports, "badgeVariants", {
|
|
301
321
|
enumerable: true,
|
|
302
|
-
get: function () { return
|
|
322
|
+
get: function () { return chunkFOXFMLET_js.badgeVariants; }
|
|
303
323
|
});
|
|
304
324
|
Object.defineProperty(exports, "buttonVariants", {
|
|
305
325
|
enumerable: true,
|
|
306
|
-
get: function () { return
|
|
326
|
+
get: function () { return chunkFOXFMLET_js.buttonVariants; }
|
|
327
|
+
});
|
|
328
|
+
Object.defineProperty(exports, "captionVariants", {
|
|
329
|
+
enumerable: true,
|
|
330
|
+
get: function () { return chunkFOXFMLET_js.captionVariants; }
|
|
331
|
+
});
|
|
332
|
+
Object.defineProperty(exports, "codeVariants", {
|
|
333
|
+
enumerable: true,
|
|
334
|
+
get: function () { return chunkFOXFMLET_js.codeVariants; }
|
|
335
|
+
});
|
|
336
|
+
Object.defineProperty(exports, "headingVariants", {
|
|
337
|
+
enumerable: true,
|
|
338
|
+
get: function () { return chunkFOXFMLET_js.headingVariants; }
|
|
339
|
+
});
|
|
340
|
+
Object.defineProperty(exports, "labelVariants", {
|
|
341
|
+
enumerable: true,
|
|
342
|
+
get: function () { return chunkFOXFMLET_js.labelVariants; }
|
|
343
|
+
});
|
|
344
|
+
Object.defineProperty(exports, "textVariants", {
|
|
345
|
+
enumerable: true,
|
|
346
|
+
get: function () { return chunkFOXFMLET_js.textVariants; }
|
|
307
347
|
});
|
|
308
348
|
//# sourceMappingURL=primitives.js.map
|
|
309
349
|
//# sourceMappingURL=primitives.js.map
|
package/dist/primitives.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
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 } from './chunk-
|
|
1
|
+
export { Badge, Button, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, 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, Heading, Label, 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, Text, Textarea, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, textVariants } from './chunk-BYICEALC.mjs';
|
|
2
2
|
import './chunk-TDRL2RCT.mjs';
|
|
3
3
|
//# sourceMappingURL=primitives.mjs.map
|
|
4
4
|
//# sourceMappingURL=primitives.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pos-360/horizon",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "POS-360 unified component library - the horizon all apps look toward",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -44,15 +44,6 @@
|
|
|
44
44
|
"dist",
|
|
45
45
|
"tailwind.config.js"
|
|
46
46
|
],
|
|
47
|
-
"scripts": {
|
|
48
|
-
"dev": "tsup --watch",
|
|
49
|
-
"build": "tsup",
|
|
50
|
-
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
51
|
-
"typecheck": "tsc --noEmit",
|
|
52
|
-
"docs": "pnpm --filter docs dev",
|
|
53
|
-
"docs:build": "pnpm --filter docs build",
|
|
54
|
-
"prepublishOnly": "npm run build"
|
|
55
|
-
},
|
|
56
47
|
"peerDependencies": {
|
|
57
48
|
"react": "^18.0.0",
|
|
58
49
|
"react-dom": "^18.0.0"
|
|
@@ -73,6 +64,8 @@
|
|
|
73
64
|
"tailwind-merge": "^2.3.0"
|
|
74
65
|
},
|
|
75
66
|
"devDependencies": {
|
|
67
|
+
"@changesets/changelog-github": "^0.5.2",
|
|
68
|
+
"@changesets/cli": "^2.29.8",
|
|
76
69
|
"@types/node": "^20",
|
|
77
70
|
"@types/react": "^18.3.1",
|
|
78
71
|
"@types/react-dom": "^18.3.1",
|
|
@@ -101,5 +94,16 @@
|
|
|
101
94
|
"license": "MIT",
|
|
102
95
|
"publishConfig": {
|
|
103
96
|
"access": "public"
|
|
97
|
+
},
|
|
98
|
+
"scripts": {
|
|
99
|
+
"dev": "tsup --watch",
|
|
100
|
+
"build": "tsup",
|
|
101
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
102
|
+
"typecheck": "tsc --noEmit",
|
|
103
|
+
"docs": "pnpm --filter docs dev",
|
|
104
|
+
"docs:build": "pnpm --filter docs build",
|
|
105
|
+
"changeset": "changeset",
|
|
106
|
+
"version": "changeset version",
|
|
107
|
+
"release": "changeset publish"
|
|
104
108
|
}
|
|
105
|
-
}
|
|
109
|
+
}
|