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