@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.
@@ -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" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
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
- 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 };
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 };
@@ -1,309 +1,349 @@
1
1
  'use strict';
2
2
 
3
- var chunkVMM4FQ6A_js = require('./chunk-VMM4FQ6A.js');
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 chunkVMM4FQ6A_js.Badge; }
10
+ get: function () { return chunkFOXFMLET_js.Badge; }
11
11
  });
12
12
  Object.defineProperty(exports, "Button", {
13
13
  enumerable: true,
14
- get: function () { return chunkVMM4FQ6A_js.Button; }
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 chunkVMM4FQ6A_js.Card; }
22
+ get: function () { return chunkFOXFMLET_js.Card; }
19
23
  });
20
24
  Object.defineProperty(exports, "CardContent", {
21
25
  enumerable: true,
22
- get: function () { return chunkVMM4FQ6A_js.CardContent; }
26
+ get: function () { return chunkFOXFMLET_js.CardContent; }
23
27
  });
24
28
  Object.defineProperty(exports, "CardDescription", {
25
29
  enumerable: true,
26
- get: function () { return chunkVMM4FQ6A_js.CardDescription; }
30
+ get: function () { return chunkFOXFMLET_js.CardDescription; }
27
31
  });
28
32
  Object.defineProperty(exports, "CardFooter", {
29
33
  enumerable: true,
30
- get: function () { return chunkVMM4FQ6A_js.CardFooter; }
34
+ get: function () { return chunkFOXFMLET_js.CardFooter; }
31
35
  });
32
36
  Object.defineProperty(exports, "CardHeader", {
33
37
  enumerable: true,
34
- get: function () { return chunkVMM4FQ6A_js.CardHeader; }
38
+ get: function () { return chunkFOXFMLET_js.CardHeader; }
35
39
  });
36
40
  Object.defineProperty(exports, "CardTitle", {
37
41
  enumerable: true,
38
- get: function () { return chunkVMM4FQ6A_js.CardTitle; }
42
+ get: function () { return chunkFOXFMLET_js.CardTitle; }
39
43
  });
40
44
  Object.defineProperty(exports, "Checkbox", {
41
45
  enumerable: true,
42
- get: function () { return chunkVMM4FQ6A_js.Checkbox; }
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 chunkVMM4FQ6A_js.Dialog; }
54
+ get: function () { return chunkFOXFMLET_js.Dialog; }
47
55
  });
48
56
  Object.defineProperty(exports, "DialogClose", {
49
57
  enumerable: true,
50
- get: function () { return chunkVMM4FQ6A_js.DialogClose; }
58
+ get: function () { return chunkFOXFMLET_js.DialogClose; }
51
59
  });
52
60
  Object.defineProperty(exports, "DialogContent", {
53
61
  enumerable: true,
54
- get: function () { return chunkVMM4FQ6A_js.DialogContent; }
62
+ get: function () { return chunkFOXFMLET_js.DialogContent; }
55
63
  });
56
64
  Object.defineProperty(exports, "DialogDescription", {
57
65
  enumerable: true,
58
- get: function () { return chunkVMM4FQ6A_js.DialogDescription; }
66
+ get: function () { return chunkFOXFMLET_js.DialogDescription; }
59
67
  });
60
68
  Object.defineProperty(exports, "DialogFooter", {
61
69
  enumerable: true,
62
- get: function () { return chunkVMM4FQ6A_js.DialogFooter; }
70
+ get: function () { return chunkFOXFMLET_js.DialogFooter; }
63
71
  });
64
72
  Object.defineProperty(exports, "DialogHeader", {
65
73
  enumerable: true,
66
- get: function () { return chunkVMM4FQ6A_js.DialogHeader; }
74
+ get: function () { return chunkFOXFMLET_js.DialogHeader; }
67
75
  });
68
76
  Object.defineProperty(exports, "DialogOverlay", {
69
77
  enumerable: true,
70
- get: function () { return chunkVMM4FQ6A_js.DialogOverlay; }
78
+ get: function () { return chunkFOXFMLET_js.DialogOverlay; }
71
79
  });
72
80
  Object.defineProperty(exports, "DialogPortal", {
73
81
  enumerable: true,
74
- get: function () { return chunkVMM4FQ6A_js.DialogPortal; }
82
+ get: function () { return chunkFOXFMLET_js.DialogPortal; }
75
83
  });
76
84
  Object.defineProperty(exports, "DialogTitle", {
77
85
  enumerable: true,
78
- get: function () { return chunkVMM4FQ6A_js.DialogTitle; }
86
+ get: function () { return chunkFOXFMLET_js.DialogTitle; }
79
87
  });
80
88
  Object.defineProperty(exports, "DialogTrigger", {
81
89
  enumerable: true,
82
- get: function () { return chunkVMM4FQ6A_js.DialogTrigger; }
90
+ get: function () { return chunkFOXFMLET_js.DialogTrigger; }
83
91
  });
84
92
  Object.defineProperty(exports, "DropdownMenu", {
85
93
  enumerable: true,
86
- get: function () { return chunkVMM4FQ6A_js.DropdownMenu; }
94
+ get: function () { return chunkFOXFMLET_js.DropdownMenu; }
87
95
  });
88
96
  Object.defineProperty(exports, "DropdownMenuCheckboxItem", {
89
97
  enumerable: true,
90
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuCheckboxItem; }
98
+ get: function () { return chunkFOXFMLET_js.DropdownMenuCheckboxItem; }
91
99
  });
92
100
  Object.defineProperty(exports, "DropdownMenuContent", {
93
101
  enumerable: true,
94
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuContent; }
102
+ get: function () { return chunkFOXFMLET_js.DropdownMenuContent; }
95
103
  });
96
104
  Object.defineProperty(exports, "DropdownMenuGroup", {
97
105
  enumerable: true,
98
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuGroup; }
106
+ get: function () { return chunkFOXFMLET_js.DropdownMenuGroup; }
99
107
  });
100
108
  Object.defineProperty(exports, "DropdownMenuItem", {
101
109
  enumerable: true,
102
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuItem; }
110
+ get: function () { return chunkFOXFMLET_js.DropdownMenuItem; }
103
111
  });
104
112
  Object.defineProperty(exports, "DropdownMenuLabel", {
105
113
  enumerable: true,
106
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuLabel; }
114
+ get: function () { return chunkFOXFMLET_js.DropdownMenuLabel; }
107
115
  });
108
116
  Object.defineProperty(exports, "DropdownMenuPortal", {
109
117
  enumerable: true,
110
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuPortal; }
118
+ get: function () { return chunkFOXFMLET_js.DropdownMenuPortal; }
111
119
  });
112
120
  Object.defineProperty(exports, "DropdownMenuRadioGroup", {
113
121
  enumerable: true,
114
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuRadioGroup; }
122
+ get: function () { return chunkFOXFMLET_js.DropdownMenuRadioGroup; }
115
123
  });
116
124
  Object.defineProperty(exports, "DropdownMenuRadioItem", {
117
125
  enumerable: true,
118
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuRadioItem; }
126
+ get: function () { return chunkFOXFMLET_js.DropdownMenuRadioItem; }
119
127
  });
120
128
  Object.defineProperty(exports, "DropdownMenuSeparator", {
121
129
  enumerable: true,
122
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuSeparator; }
130
+ get: function () { return chunkFOXFMLET_js.DropdownMenuSeparator; }
123
131
  });
124
132
  Object.defineProperty(exports, "DropdownMenuShortcut", {
125
133
  enumerable: true,
126
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuShortcut; }
134
+ get: function () { return chunkFOXFMLET_js.DropdownMenuShortcut; }
127
135
  });
128
136
  Object.defineProperty(exports, "DropdownMenuSub", {
129
137
  enumerable: true,
130
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuSub; }
138
+ get: function () { return chunkFOXFMLET_js.DropdownMenuSub; }
131
139
  });
132
140
  Object.defineProperty(exports, "DropdownMenuSubContent", {
133
141
  enumerable: true,
134
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuSubContent; }
142
+ get: function () { return chunkFOXFMLET_js.DropdownMenuSubContent; }
135
143
  });
136
144
  Object.defineProperty(exports, "DropdownMenuSubTrigger", {
137
145
  enumerable: true,
138
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuSubTrigger; }
146
+ get: function () { return chunkFOXFMLET_js.DropdownMenuSubTrigger; }
139
147
  });
140
148
  Object.defineProperty(exports, "DropdownMenuTrigger", {
141
149
  enumerable: true,
142
- get: function () { return chunkVMM4FQ6A_js.DropdownMenuTrigger; }
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 chunkVMM4FQ6A_js.Popover; }
162
+ get: function () { return chunkFOXFMLET_js.Popover; }
147
163
  });
148
164
  Object.defineProperty(exports, "PopoverAnchor", {
149
165
  enumerable: true,
150
- get: function () { return chunkVMM4FQ6A_js.PopoverAnchor; }
166
+ get: function () { return chunkFOXFMLET_js.PopoverAnchor; }
151
167
  });
152
168
  Object.defineProperty(exports, "PopoverContent", {
153
169
  enumerable: true,
154
- get: function () { return chunkVMM4FQ6A_js.PopoverContent; }
170
+ get: function () { return chunkFOXFMLET_js.PopoverContent; }
155
171
  });
156
172
  Object.defineProperty(exports, "PopoverTrigger", {
157
173
  enumerable: true,
158
- get: function () { return chunkVMM4FQ6A_js.PopoverTrigger; }
174
+ get: function () { return chunkFOXFMLET_js.PopoverTrigger; }
159
175
  });
160
176
  Object.defineProperty(exports, "Select", {
161
177
  enumerable: true,
162
- get: function () { return chunkVMM4FQ6A_js.Select; }
178
+ get: function () { return chunkFOXFMLET_js.Select; }
163
179
  });
164
180
  Object.defineProperty(exports, "SelectContent", {
165
181
  enumerable: true,
166
- get: function () { return chunkVMM4FQ6A_js.SelectContent; }
182
+ get: function () { return chunkFOXFMLET_js.SelectContent; }
167
183
  });
168
184
  Object.defineProperty(exports, "SelectGroup", {
169
185
  enumerable: true,
170
- get: function () { return chunkVMM4FQ6A_js.SelectGroup; }
186
+ get: function () { return chunkFOXFMLET_js.SelectGroup; }
171
187
  });
172
188
  Object.defineProperty(exports, "SelectItem", {
173
189
  enumerable: true,
174
- get: function () { return chunkVMM4FQ6A_js.SelectItem; }
190
+ get: function () { return chunkFOXFMLET_js.SelectItem; }
175
191
  });
176
192
  Object.defineProperty(exports, "SelectLabel", {
177
193
  enumerable: true,
178
- get: function () { return chunkVMM4FQ6A_js.SelectLabel; }
194
+ get: function () { return chunkFOXFMLET_js.SelectLabel; }
179
195
  });
180
196
  Object.defineProperty(exports, "SelectScrollDownButton", {
181
197
  enumerable: true,
182
- get: function () { return chunkVMM4FQ6A_js.SelectScrollDownButton; }
198
+ get: function () { return chunkFOXFMLET_js.SelectScrollDownButton; }
183
199
  });
184
200
  Object.defineProperty(exports, "SelectScrollUpButton", {
185
201
  enumerable: true,
186
- get: function () { return chunkVMM4FQ6A_js.SelectScrollUpButton; }
202
+ get: function () { return chunkFOXFMLET_js.SelectScrollUpButton; }
187
203
  });
188
204
  Object.defineProperty(exports, "SelectSeparator", {
189
205
  enumerable: true,
190
- get: function () { return chunkVMM4FQ6A_js.SelectSeparator; }
206
+ get: function () { return chunkFOXFMLET_js.SelectSeparator; }
191
207
  });
192
208
  Object.defineProperty(exports, "SelectTrigger", {
193
209
  enumerable: true,
194
- get: function () { return chunkVMM4FQ6A_js.SelectTrigger; }
210
+ get: function () { return chunkFOXFMLET_js.SelectTrigger; }
195
211
  });
196
212
  Object.defineProperty(exports, "SelectValue", {
197
213
  enumerable: true,
198
- get: function () { return chunkVMM4FQ6A_js.SelectValue; }
214
+ get: function () { return chunkFOXFMLET_js.SelectValue; }
199
215
  });
200
216
  Object.defineProperty(exports, "Skeleton", {
201
217
  enumerable: true,
202
- get: function () { return chunkVMM4FQ6A_js.Skeleton; }
218
+ get: function () { return chunkFOXFMLET_js.Skeleton; }
203
219
  });
204
220
  Object.defineProperty(exports, "SkeletonAvatar", {
205
221
  enumerable: true,
206
- get: function () { return chunkVMM4FQ6A_js.SkeletonAvatar; }
222
+ get: function () { return chunkFOXFMLET_js.SkeletonAvatar; }
207
223
  });
208
224
  Object.defineProperty(exports, "SkeletonBadge", {
209
225
  enumerable: true,
210
- get: function () { return chunkVMM4FQ6A_js.SkeletonBadge; }
226
+ get: function () { return chunkFOXFMLET_js.SkeletonBadge; }
211
227
  });
212
228
  Object.defineProperty(exports, "SkeletonButton", {
213
229
  enumerable: true,
214
- get: function () { return chunkVMM4FQ6A_js.SkeletonButton; }
230
+ get: function () { return chunkFOXFMLET_js.SkeletonButton; }
215
231
  });
216
232
  Object.defineProperty(exports, "SkeletonCard", {
217
233
  enumerable: true,
218
- get: function () { return chunkVMM4FQ6A_js.SkeletonCard; }
234
+ get: function () { return chunkFOXFMLET_js.SkeletonCard; }
219
235
  });
220
236
  Object.defineProperty(exports, "SkeletonIcon", {
221
237
  enumerable: true,
222
- get: function () { return chunkVMM4FQ6A_js.SkeletonIcon; }
238
+ get: function () { return chunkFOXFMLET_js.SkeletonIcon; }
223
239
  });
224
240
  Object.defineProperty(exports, "SkeletonInput", {
225
241
  enumerable: true,
226
- get: function () { return chunkVMM4FQ6A_js.SkeletonInput; }
242
+ get: function () { return chunkFOXFMLET_js.SkeletonInput; }
227
243
  });
228
244
  Object.defineProperty(exports, "SkeletonSubtitle", {
229
245
  enumerable: true,
230
- get: function () { return chunkVMM4FQ6A_js.SkeletonSubtitle; }
246
+ get: function () { return chunkFOXFMLET_js.SkeletonSubtitle; }
231
247
  });
232
248
  Object.defineProperty(exports, "SkeletonTableRow", {
233
249
  enumerable: true,
234
- get: function () { return chunkVMM4FQ6A_js.SkeletonTableRow; }
250
+ get: function () { return chunkFOXFMLET_js.SkeletonTableRow; }
235
251
  });
236
252
  Object.defineProperty(exports, "SkeletonTableRows", {
237
253
  enumerable: true,
238
- get: function () { return chunkVMM4FQ6A_js.SkeletonTableRows; }
254
+ get: function () { return chunkFOXFMLET_js.SkeletonTableRows; }
239
255
  });
240
256
  Object.defineProperty(exports, "SkeletonText", {
241
257
  enumerable: true,
242
- get: function () { return chunkVMM4FQ6A_js.SkeletonText; }
258
+ get: function () { return chunkFOXFMLET_js.SkeletonText; }
243
259
  });
244
260
  Object.defineProperty(exports, "SkeletonTitle", {
245
261
  enumerable: true,
246
- get: function () { return chunkVMM4FQ6A_js.SkeletonTitle; }
262
+ get: function () { return chunkFOXFMLET_js.SkeletonTitle; }
247
263
  });
248
264
  Object.defineProperty(exports, "Table", {
249
265
  enumerable: true,
250
- get: function () { return chunkVMM4FQ6A_js.Table; }
266
+ get: function () { return chunkFOXFMLET_js.Table; }
251
267
  });
252
268
  Object.defineProperty(exports, "TableBody", {
253
269
  enumerable: true,
254
- get: function () { return chunkVMM4FQ6A_js.TableBody; }
270
+ get: function () { return chunkFOXFMLET_js.TableBody; }
255
271
  });
256
272
  Object.defineProperty(exports, "TableCaption", {
257
273
  enumerable: true,
258
- get: function () { return chunkVMM4FQ6A_js.TableCaption; }
274
+ get: function () { return chunkFOXFMLET_js.TableCaption; }
259
275
  });
260
276
  Object.defineProperty(exports, "TableCell", {
261
277
  enumerable: true,
262
- get: function () { return chunkVMM4FQ6A_js.TableCell; }
278
+ get: function () { return chunkFOXFMLET_js.TableCell; }
263
279
  });
264
280
  Object.defineProperty(exports, "TableFooter", {
265
281
  enumerable: true,
266
- get: function () { return chunkVMM4FQ6A_js.TableFooter; }
282
+ get: function () { return chunkFOXFMLET_js.TableFooter; }
267
283
  });
268
284
  Object.defineProperty(exports, "TableHead", {
269
285
  enumerable: true,
270
- get: function () { return chunkVMM4FQ6A_js.TableHead; }
286
+ get: function () { return chunkFOXFMLET_js.TableHead; }
271
287
  });
272
288
  Object.defineProperty(exports, "TableHeader", {
273
289
  enumerable: true,
274
- get: function () { return chunkVMM4FQ6A_js.TableHeader; }
290
+ get: function () { return chunkFOXFMLET_js.TableHeader; }
275
291
  });
276
292
  Object.defineProperty(exports, "TableRow", {
277
293
  enumerable: true,
278
- get: function () { return chunkVMM4FQ6A_js.TableRow; }
294
+ get: function () { return chunkFOXFMLET_js.TableRow; }
279
295
  });
280
296
  Object.defineProperty(exports, "Tabs", {
281
297
  enumerable: true,
282
- get: function () { return chunkVMM4FQ6A_js.Tabs; }
298
+ get: function () { return chunkFOXFMLET_js.Tabs; }
283
299
  });
284
300
  Object.defineProperty(exports, "TabsContent", {
285
301
  enumerable: true,
286
- get: function () { return chunkVMM4FQ6A_js.TabsContent; }
302
+ get: function () { return chunkFOXFMLET_js.TabsContent; }
287
303
  });
288
304
  Object.defineProperty(exports, "TabsList", {
289
305
  enumerable: true,
290
- get: function () { return chunkVMM4FQ6A_js.TabsList; }
306
+ get: function () { return chunkFOXFMLET_js.TabsList; }
291
307
  });
292
308
  Object.defineProperty(exports, "TabsTrigger", {
293
309
  enumerable: true,
294
- get: function () { return chunkVMM4FQ6A_js.TabsTrigger; }
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 chunkVMM4FQ6A_js.Textarea; }
318
+ get: function () { return chunkFOXFMLET_js.Textarea; }
299
319
  });
300
320
  Object.defineProperty(exports, "badgeVariants", {
301
321
  enumerable: true,
302
- get: function () { return chunkVMM4FQ6A_js.badgeVariants; }
322
+ get: function () { return chunkFOXFMLET_js.badgeVariants; }
303
323
  });
304
324
  Object.defineProperty(exports, "buttonVariants", {
305
325
  enumerable: true,
306
- get: function () { return chunkVMM4FQ6A_js.buttonVariants; }
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
@@ -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-RMVND66S.mjs';
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.0",
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
+ }
@@ -6,6 +6,7 @@ module.exports = {
6
6
  extend: {
7
7
  fontFamily: {
8
8
  sans: ["var(--font-bricolage)", "system-ui", "sans-serif"],
9
+ bricolage: ["var(--font-bricolage)", "system-ui", "sans-serif"],
9
10
  },
10
11
  colors: {
11
12
  // POS-360 Brand Colors