@pos-360/horizon 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-FIYD5CSW.mjs → chunk-RPR6I35V.mjs} +235 -26
- package/dist/{chunk-6B6UOXJJ.js.map → chunk-RPR6I35V.mjs.map} +1 -1
- package/dist/{chunk-6B6UOXJJ.js → chunk-U2QEAL7N.js} +244 -25
- package/dist/chunk-U2QEAL7N.js.map +1 -0
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +118 -90
- package/dist/index.mjs +1 -1
- package/dist/primitives.d.mts +49 -6
- package/dist/primitives.d.ts +49 -6
- package/dist/primitives.js +118 -90
- package/dist/primitives.mjs +1 -1
- package/package.json +4 -1
- package/dist/chunk-FIYD5CSW.mjs.map +0 -1
package/dist/primitives.d.ts
CHANGED
|
@@ -9,6 +9,9 @@ import * as LabelPrimitive from '@radix-ui/react-label';
|
|
|
9
9
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
10
10
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
11
11
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
12
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
13
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
14
|
+
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
12
15
|
|
|
13
16
|
declare const badgeVariants: (props?: ({
|
|
14
17
|
variant?: "default" | "secondary" | "destructive" | "outline" | "success" | "warning" | "info" | "purple" | "purpleOutline" | null | undefined;
|
|
@@ -275,19 +278,59 @@ declare const toggleGroupVariants: (props?: ({
|
|
|
275
278
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
276
279
|
declare const toggleItemVariants: (props?: ({
|
|
277
280
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
278
|
-
|
|
281
|
+
iconOnly?: boolean | null | undefined;
|
|
279
282
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
283
|
+
type ToggleRadius = "none" | "sm" | "md" | "lg" | "full";
|
|
280
284
|
interface ToggleOption {
|
|
281
|
-
label: string;
|
|
282
285
|
value: string;
|
|
286
|
+
label?: string;
|
|
287
|
+
icon?: React.ReactNode;
|
|
283
288
|
disabled?: boolean;
|
|
289
|
+
ariaLabel?: string;
|
|
284
290
|
}
|
|
285
|
-
interface ToggleProps extends Omit<React.
|
|
291
|
+
interface ToggleProps extends Omit<React.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root>, "onChange" | "onValueChange" | "type" | "value" | "defaultValue">, VariantProps<typeof toggleGroupVariants> {
|
|
286
292
|
options: ToggleOption[];
|
|
293
|
+
value?: string[];
|
|
294
|
+
onChange?: (value: string[]) => void;
|
|
295
|
+
defaultValue?: string[];
|
|
296
|
+
radius?: ToggleRadius;
|
|
297
|
+
}
|
|
298
|
+
declare function Toggle({ className, options, value, onChange, size, radius, ...props }: ToggleProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
300
|
+
declare const segmentedControlVariants: (props?: ({
|
|
301
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
302
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
303
|
+
declare const segmentedControlItemVariants: (props?: ({
|
|
304
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
305
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
306
|
+
type SegmentedControlRadius = "none" | "sm" | "md" | "lg" | "full";
|
|
307
|
+
interface SegmentedControlOption {
|
|
308
|
+
label: string;
|
|
287
309
|
value: string;
|
|
288
|
-
|
|
310
|
+
disabled?: boolean;
|
|
311
|
+
}
|
|
312
|
+
interface SegmentedControlProps extends Omit<React.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root>, "onChange" | "onValueChange" | "value">, VariantProps<typeof segmentedControlVariants> {
|
|
313
|
+
options: SegmentedControlOption[];
|
|
314
|
+
value?: string;
|
|
315
|
+
onChange?: (value: string) => void;
|
|
316
|
+
radius?: SegmentedControlRadius;
|
|
317
|
+
}
|
|
318
|
+
declare function SegmentedControl({ className, options, value, onChange, size, radius, ...props }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
|
|
319
|
+
|
|
320
|
+
declare const switchTrackVariants: (props?: ({
|
|
321
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
322
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
323
|
+
declare const switchThumbVariants: (props?: ({
|
|
324
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
325
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
326
|
+
declare const switchLabelVariants: (props?: ({
|
|
327
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
328
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
329
|
+
interface SwitchProps extends React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root>, VariantProps<typeof switchTrackVariants> {
|
|
330
|
+
label?: string;
|
|
331
|
+
labelPosition?: "left" | "right";
|
|
289
332
|
}
|
|
290
|
-
declare
|
|
333
|
+
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
|
|
291
334
|
|
|
292
335
|
declare const headingVariants: (props?: ({
|
|
293
336
|
level?: 1 | 3 | 4 | 2 | 5 | 6 | null | undefined;
|
|
@@ -330,4 +373,4 @@ interface CodeProps extends Omit<React.HTMLAttributes<HTMLElement>, "color">, Va
|
|
|
330
373
|
}
|
|
331
374
|
declare const Code: React.ForwardRefExoticComponent<CodeProps & React.RefAttributes<HTMLElement>>;
|
|
332
375
|
|
|
333
|
-
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, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, Heading, type HeadingProps, Label, type LabelProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, type TabsColor, TabsContent, TabsList, TabsTrigger, Text, type TextProps, Textarea, type TextareaProps, Toggle, type ToggleOption, type ToggleProps, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, separatorVariants, textVariants, toggleGroupVariants, toggleItemVariants, useFormContext, useFormFieldContext, useTableSelection };
|
|
376
|
+
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, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, Heading, type HeadingProps, Label, type LabelProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, type TabsColor, TabsContent, TabsList, TabsTrigger, Text, type TextProps, Textarea, type TextareaProps, Toggle, type ToggleOption, type ToggleProps, type ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useFormContext, useFormFieldContext, useTableSelection };
|
package/dist/primitives.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkU2QEAL7N_js = require('./chunk-U2QEAL7N.js');
|
|
4
4
|
var chunkYO72COII_js = require('./chunk-YO72COII.js');
|
|
5
5
|
require('./chunk-GGM3MDFM.js');
|
|
6
6
|
|
|
@@ -8,359 +8,387 @@ require('./chunk-GGM3MDFM.js');
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "Button", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkU2QEAL7N_js.Button; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "Card", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkU2QEAL7N_js.Card; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, "CardContent", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkU2QEAL7N_js.CardContent; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, "CardDescription", {
|
|
22
22
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
23
|
+
get: function () { return chunkU2QEAL7N_js.CardDescription; }
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "CardFooter", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunkU2QEAL7N_js.CardFooter; }
|
|
28
28
|
});
|
|
29
29
|
Object.defineProperty(exports, "CardHeader", {
|
|
30
30
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunkU2QEAL7N_js.CardHeader; }
|
|
32
32
|
});
|
|
33
33
|
Object.defineProperty(exports, "CardTitle", {
|
|
34
34
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunkU2QEAL7N_js.CardTitle; }
|
|
36
36
|
});
|
|
37
37
|
Object.defineProperty(exports, "Checkbox", {
|
|
38
38
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
39
|
+
get: function () { return chunkU2QEAL7N_js.Checkbox; }
|
|
40
40
|
});
|
|
41
41
|
Object.defineProperty(exports, "Dialog", {
|
|
42
42
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
43
|
+
get: function () { return chunkU2QEAL7N_js.Dialog; }
|
|
44
44
|
});
|
|
45
45
|
Object.defineProperty(exports, "DialogClose", {
|
|
46
46
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
47
|
+
get: function () { return chunkU2QEAL7N_js.DialogClose; }
|
|
48
48
|
});
|
|
49
49
|
Object.defineProperty(exports, "DialogContent", {
|
|
50
50
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
51
|
+
get: function () { return chunkU2QEAL7N_js.DialogContent; }
|
|
52
52
|
});
|
|
53
53
|
Object.defineProperty(exports, "DialogDescription", {
|
|
54
54
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
55
|
+
get: function () { return chunkU2QEAL7N_js.DialogDescription; }
|
|
56
56
|
});
|
|
57
57
|
Object.defineProperty(exports, "DialogFooter", {
|
|
58
58
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
59
|
+
get: function () { return chunkU2QEAL7N_js.DialogFooter; }
|
|
60
60
|
});
|
|
61
61
|
Object.defineProperty(exports, "DialogHeader", {
|
|
62
62
|
enumerable: true,
|
|
63
|
-
get: function () { return
|
|
63
|
+
get: function () { return chunkU2QEAL7N_js.DialogHeader; }
|
|
64
64
|
});
|
|
65
65
|
Object.defineProperty(exports, "DialogOverlay", {
|
|
66
66
|
enumerable: true,
|
|
67
|
-
get: function () { return
|
|
67
|
+
get: function () { return chunkU2QEAL7N_js.DialogOverlay; }
|
|
68
68
|
});
|
|
69
69
|
Object.defineProperty(exports, "DialogPortal", {
|
|
70
70
|
enumerable: true,
|
|
71
|
-
get: function () { return
|
|
71
|
+
get: function () { return chunkU2QEAL7N_js.DialogPortal; }
|
|
72
72
|
});
|
|
73
73
|
Object.defineProperty(exports, "DialogTitle", {
|
|
74
74
|
enumerable: true,
|
|
75
|
-
get: function () { return
|
|
75
|
+
get: function () { return chunkU2QEAL7N_js.DialogTitle; }
|
|
76
76
|
});
|
|
77
77
|
Object.defineProperty(exports, "DialogTrigger", {
|
|
78
78
|
enumerable: true,
|
|
79
|
-
get: function () { return
|
|
79
|
+
get: function () { return chunkU2QEAL7N_js.DialogTrigger; }
|
|
80
80
|
});
|
|
81
81
|
Object.defineProperty(exports, "DropdownMenu", {
|
|
82
82
|
enumerable: true,
|
|
83
|
-
get: function () { return
|
|
83
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenu; }
|
|
84
84
|
});
|
|
85
85
|
Object.defineProperty(exports, "DropdownMenuCheckboxItem", {
|
|
86
86
|
enumerable: true,
|
|
87
|
-
get: function () { return
|
|
87
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuCheckboxItem; }
|
|
88
88
|
});
|
|
89
89
|
Object.defineProperty(exports, "DropdownMenuContent", {
|
|
90
90
|
enumerable: true,
|
|
91
|
-
get: function () { return
|
|
91
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuContent; }
|
|
92
92
|
});
|
|
93
93
|
Object.defineProperty(exports, "DropdownMenuGroup", {
|
|
94
94
|
enumerable: true,
|
|
95
|
-
get: function () { return
|
|
95
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuGroup; }
|
|
96
96
|
});
|
|
97
97
|
Object.defineProperty(exports, "DropdownMenuItem", {
|
|
98
98
|
enumerable: true,
|
|
99
|
-
get: function () { return
|
|
99
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuItem; }
|
|
100
100
|
});
|
|
101
101
|
Object.defineProperty(exports, "DropdownMenuLabel", {
|
|
102
102
|
enumerable: true,
|
|
103
|
-
get: function () { return
|
|
103
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuLabel; }
|
|
104
104
|
});
|
|
105
105
|
Object.defineProperty(exports, "DropdownMenuPortal", {
|
|
106
106
|
enumerable: true,
|
|
107
|
-
get: function () { return
|
|
107
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuPortal; }
|
|
108
108
|
});
|
|
109
109
|
Object.defineProperty(exports, "DropdownMenuRadioGroup", {
|
|
110
110
|
enumerable: true,
|
|
111
|
-
get: function () { return
|
|
111
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuRadioGroup; }
|
|
112
112
|
});
|
|
113
113
|
Object.defineProperty(exports, "DropdownMenuRadioItem", {
|
|
114
114
|
enumerable: true,
|
|
115
|
-
get: function () { return
|
|
115
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuRadioItem; }
|
|
116
116
|
});
|
|
117
117
|
Object.defineProperty(exports, "DropdownMenuSeparator", {
|
|
118
118
|
enumerable: true,
|
|
119
|
-
get: function () { return
|
|
119
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuSeparator; }
|
|
120
120
|
});
|
|
121
121
|
Object.defineProperty(exports, "DropdownMenuShortcut", {
|
|
122
122
|
enumerable: true,
|
|
123
|
-
get: function () { return
|
|
123
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuShortcut; }
|
|
124
124
|
});
|
|
125
125
|
Object.defineProperty(exports, "DropdownMenuSub", {
|
|
126
126
|
enumerable: true,
|
|
127
|
-
get: function () { return
|
|
127
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuSub; }
|
|
128
128
|
});
|
|
129
129
|
Object.defineProperty(exports, "DropdownMenuSubContent", {
|
|
130
130
|
enumerable: true,
|
|
131
|
-
get: function () { return
|
|
131
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuSubContent; }
|
|
132
132
|
});
|
|
133
133
|
Object.defineProperty(exports, "DropdownMenuSubTrigger", {
|
|
134
134
|
enumerable: true,
|
|
135
|
-
get: function () { return
|
|
135
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuSubTrigger; }
|
|
136
136
|
});
|
|
137
137
|
Object.defineProperty(exports, "DropdownMenuTrigger", {
|
|
138
138
|
enumerable: true,
|
|
139
|
-
get: function () { return
|
|
139
|
+
get: function () { return chunkU2QEAL7N_js.DropdownMenuTrigger; }
|
|
140
140
|
});
|
|
141
141
|
Object.defineProperty(exports, "Form", {
|
|
142
142
|
enumerable: true,
|
|
143
|
-
get: function () { return
|
|
143
|
+
get: function () { return chunkU2QEAL7N_js.Form; }
|
|
144
144
|
});
|
|
145
145
|
Object.defineProperty(exports, "FormControl", {
|
|
146
146
|
enumerable: true,
|
|
147
|
-
get: function () { return
|
|
147
|
+
get: function () { return chunkU2QEAL7N_js.FormControl; }
|
|
148
148
|
});
|
|
149
149
|
Object.defineProperty(exports, "FormDescription", {
|
|
150
150
|
enumerable: true,
|
|
151
|
-
get: function () { return
|
|
151
|
+
get: function () { return chunkU2QEAL7N_js.FormDescription; }
|
|
152
152
|
});
|
|
153
153
|
Object.defineProperty(exports, "FormField", {
|
|
154
154
|
enumerable: true,
|
|
155
|
-
get: function () { return
|
|
155
|
+
get: function () { return chunkU2QEAL7N_js.FormField; }
|
|
156
156
|
});
|
|
157
157
|
Object.defineProperty(exports, "FormLabel", {
|
|
158
158
|
enumerable: true,
|
|
159
|
-
get: function () { return
|
|
159
|
+
get: function () { return chunkU2QEAL7N_js.FormLabel; }
|
|
160
160
|
});
|
|
161
161
|
Object.defineProperty(exports, "FormMessage", {
|
|
162
162
|
enumerable: true,
|
|
163
|
-
get: function () { return
|
|
163
|
+
get: function () { return chunkU2QEAL7N_js.FormMessage; }
|
|
164
164
|
});
|
|
165
165
|
Object.defineProperty(exports, "Popover", {
|
|
166
166
|
enumerable: true,
|
|
167
|
-
get: function () { return
|
|
167
|
+
get: function () { return chunkU2QEAL7N_js.Popover; }
|
|
168
168
|
});
|
|
169
169
|
Object.defineProperty(exports, "PopoverAnchor", {
|
|
170
170
|
enumerable: true,
|
|
171
|
-
get: function () { return
|
|
171
|
+
get: function () { return chunkU2QEAL7N_js.PopoverAnchor; }
|
|
172
172
|
});
|
|
173
173
|
Object.defineProperty(exports, "PopoverContent", {
|
|
174
174
|
enumerable: true,
|
|
175
|
-
get: function () { return
|
|
175
|
+
get: function () { return chunkU2QEAL7N_js.PopoverContent; }
|
|
176
176
|
});
|
|
177
177
|
Object.defineProperty(exports, "PopoverTrigger", {
|
|
178
178
|
enumerable: true,
|
|
179
|
-
get: function () { return
|
|
179
|
+
get: function () { return chunkU2QEAL7N_js.PopoverTrigger; }
|
|
180
|
+
});
|
|
181
|
+
Object.defineProperty(exports, "SegmentedControl", {
|
|
182
|
+
enumerable: true,
|
|
183
|
+
get: function () { return chunkU2QEAL7N_js.SegmentedControl; }
|
|
180
184
|
});
|
|
181
185
|
Object.defineProperty(exports, "Select", {
|
|
182
186
|
enumerable: true,
|
|
183
|
-
get: function () { return
|
|
187
|
+
get: function () { return chunkU2QEAL7N_js.Select; }
|
|
184
188
|
});
|
|
185
189
|
Object.defineProperty(exports, "SelectContent", {
|
|
186
190
|
enumerable: true,
|
|
187
|
-
get: function () { return
|
|
191
|
+
get: function () { return chunkU2QEAL7N_js.SelectContent; }
|
|
188
192
|
});
|
|
189
193
|
Object.defineProperty(exports, "SelectGroup", {
|
|
190
194
|
enumerable: true,
|
|
191
|
-
get: function () { return
|
|
195
|
+
get: function () { return chunkU2QEAL7N_js.SelectGroup; }
|
|
192
196
|
});
|
|
193
197
|
Object.defineProperty(exports, "SelectItem", {
|
|
194
198
|
enumerable: true,
|
|
195
|
-
get: function () { return
|
|
199
|
+
get: function () { return chunkU2QEAL7N_js.SelectItem; }
|
|
196
200
|
});
|
|
197
201
|
Object.defineProperty(exports, "SelectLabel", {
|
|
198
202
|
enumerable: true,
|
|
199
|
-
get: function () { return
|
|
203
|
+
get: function () { return chunkU2QEAL7N_js.SelectLabel; }
|
|
200
204
|
});
|
|
201
205
|
Object.defineProperty(exports, "SelectScrollDownButton", {
|
|
202
206
|
enumerable: true,
|
|
203
|
-
get: function () { return
|
|
207
|
+
get: function () { return chunkU2QEAL7N_js.SelectScrollDownButton; }
|
|
204
208
|
});
|
|
205
209
|
Object.defineProperty(exports, "SelectScrollUpButton", {
|
|
206
210
|
enumerable: true,
|
|
207
|
-
get: function () { return
|
|
211
|
+
get: function () { return chunkU2QEAL7N_js.SelectScrollUpButton; }
|
|
208
212
|
});
|
|
209
213
|
Object.defineProperty(exports, "SelectSeparator", {
|
|
210
214
|
enumerable: true,
|
|
211
|
-
get: function () { return
|
|
215
|
+
get: function () { return chunkU2QEAL7N_js.SelectSeparator; }
|
|
212
216
|
});
|
|
213
217
|
Object.defineProperty(exports, "SelectTrigger", {
|
|
214
218
|
enumerable: true,
|
|
215
|
-
get: function () { return
|
|
219
|
+
get: function () { return chunkU2QEAL7N_js.SelectTrigger; }
|
|
216
220
|
});
|
|
217
221
|
Object.defineProperty(exports, "SelectValue", {
|
|
218
222
|
enumerable: true,
|
|
219
|
-
get: function () { return
|
|
223
|
+
get: function () { return chunkU2QEAL7N_js.SelectValue; }
|
|
220
224
|
});
|
|
221
225
|
Object.defineProperty(exports, "Separator", {
|
|
222
226
|
enumerable: true,
|
|
223
|
-
get: function () { return
|
|
227
|
+
get: function () { return chunkU2QEAL7N_js.Separator; }
|
|
224
228
|
});
|
|
225
229
|
Object.defineProperty(exports, "Skeleton", {
|
|
226
230
|
enumerable: true,
|
|
227
|
-
get: function () { return
|
|
231
|
+
get: function () { return chunkU2QEAL7N_js.Skeleton; }
|
|
228
232
|
});
|
|
229
233
|
Object.defineProperty(exports, "SkeletonAvatar", {
|
|
230
234
|
enumerable: true,
|
|
231
|
-
get: function () { return
|
|
235
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonAvatar; }
|
|
232
236
|
});
|
|
233
237
|
Object.defineProperty(exports, "SkeletonBadge", {
|
|
234
238
|
enumerable: true,
|
|
235
|
-
get: function () { return
|
|
239
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonBadge; }
|
|
236
240
|
});
|
|
237
241
|
Object.defineProperty(exports, "SkeletonButton", {
|
|
238
242
|
enumerable: true,
|
|
239
|
-
get: function () { return
|
|
243
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonButton; }
|
|
240
244
|
});
|
|
241
245
|
Object.defineProperty(exports, "SkeletonCard", {
|
|
242
246
|
enumerable: true,
|
|
243
|
-
get: function () { return
|
|
247
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonCard; }
|
|
244
248
|
});
|
|
245
249
|
Object.defineProperty(exports, "SkeletonIcon", {
|
|
246
250
|
enumerable: true,
|
|
247
|
-
get: function () { return
|
|
251
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonIcon; }
|
|
248
252
|
});
|
|
249
253
|
Object.defineProperty(exports, "SkeletonInput", {
|
|
250
254
|
enumerable: true,
|
|
251
|
-
get: function () { return
|
|
255
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonInput; }
|
|
252
256
|
});
|
|
253
257
|
Object.defineProperty(exports, "SkeletonSubtitle", {
|
|
254
258
|
enumerable: true,
|
|
255
|
-
get: function () { return
|
|
259
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonSubtitle; }
|
|
256
260
|
});
|
|
257
261
|
Object.defineProperty(exports, "SkeletonTableRow", {
|
|
258
262
|
enumerable: true,
|
|
259
|
-
get: function () { return
|
|
263
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonTableRow; }
|
|
260
264
|
});
|
|
261
265
|
Object.defineProperty(exports, "SkeletonTableRows", {
|
|
262
266
|
enumerable: true,
|
|
263
|
-
get: function () { return
|
|
267
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonTableRows; }
|
|
264
268
|
});
|
|
265
269
|
Object.defineProperty(exports, "SkeletonText", {
|
|
266
270
|
enumerable: true,
|
|
267
|
-
get: function () { return
|
|
271
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonText; }
|
|
268
272
|
});
|
|
269
273
|
Object.defineProperty(exports, "SkeletonTitle", {
|
|
270
274
|
enumerable: true,
|
|
271
|
-
get: function () { return
|
|
275
|
+
get: function () { return chunkU2QEAL7N_js.SkeletonTitle; }
|
|
276
|
+
});
|
|
277
|
+
Object.defineProperty(exports, "Switch", {
|
|
278
|
+
enumerable: true,
|
|
279
|
+
get: function () { return chunkU2QEAL7N_js.Switch; }
|
|
272
280
|
});
|
|
273
281
|
Object.defineProperty(exports, "Table", {
|
|
274
282
|
enumerable: true,
|
|
275
|
-
get: function () { return
|
|
283
|
+
get: function () { return chunkU2QEAL7N_js.Table; }
|
|
276
284
|
});
|
|
277
285
|
Object.defineProperty(exports, "TableBody", {
|
|
278
286
|
enumerable: true,
|
|
279
|
-
get: function () { return
|
|
287
|
+
get: function () { return chunkU2QEAL7N_js.TableBody; }
|
|
280
288
|
});
|
|
281
289
|
Object.defineProperty(exports, "TableCaption", {
|
|
282
290
|
enumerable: true,
|
|
283
|
-
get: function () { return
|
|
291
|
+
get: function () { return chunkU2QEAL7N_js.TableCaption; }
|
|
284
292
|
});
|
|
285
293
|
Object.defineProperty(exports, "TableCell", {
|
|
286
294
|
enumerable: true,
|
|
287
|
-
get: function () { return
|
|
295
|
+
get: function () { return chunkU2QEAL7N_js.TableCell; }
|
|
288
296
|
});
|
|
289
297
|
Object.defineProperty(exports, "TableFooter", {
|
|
290
298
|
enumerable: true,
|
|
291
|
-
get: function () { return
|
|
299
|
+
get: function () { return chunkU2QEAL7N_js.TableFooter; }
|
|
292
300
|
});
|
|
293
301
|
Object.defineProperty(exports, "TableHead", {
|
|
294
302
|
enumerable: true,
|
|
295
|
-
get: function () { return
|
|
303
|
+
get: function () { return chunkU2QEAL7N_js.TableHead; }
|
|
296
304
|
});
|
|
297
305
|
Object.defineProperty(exports, "TableHeader", {
|
|
298
306
|
enumerable: true,
|
|
299
|
-
get: function () { return
|
|
307
|
+
get: function () { return chunkU2QEAL7N_js.TableHeader; }
|
|
300
308
|
});
|
|
301
309
|
Object.defineProperty(exports, "TableRow", {
|
|
302
310
|
enumerable: true,
|
|
303
|
-
get: function () { return
|
|
311
|
+
get: function () { return chunkU2QEAL7N_js.TableRow; }
|
|
304
312
|
});
|
|
305
313
|
Object.defineProperty(exports, "TableRowCheckbox", {
|
|
306
314
|
enumerable: true,
|
|
307
|
-
get: function () { return
|
|
315
|
+
get: function () { return chunkU2QEAL7N_js.TableRowCheckbox; }
|
|
308
316
|
});
|
|
309
317
|
Object.defineProperty(exports, "TableSelectAll", {
|
|
310
318
|
enumerable: true,
|
|
311
|
-
get: function () { return
|
|
319
|
+
get: function () { return chunkU2QEAL7N_js.TableSelectAll; }
|
|
312
320
|
});
|
|
313
321
|
Object.defineProperty(exports, "Tabs", {
|
|
314
322
|
enumerable: true,
|
|
315
|
-
get: function () { return
|
|
323
|
+
get: function () { return chunkU2QEAL7N_js.Tabs; }
|
|
316
324
|
});
|
|
317
325
|
Object.defineProperty(exports, "TabsContent", {
|
|
318
326
|
enumerable: true,
|
|
319
|
-
get: function () { return
|
|
327
|
+
get: function () { return chunkU2QEAL7N_js.TabsContent; }
|
|
320
328
|
});
|
|
321
329
|
Object.defineProperty(exports, "TabsList", {
|
|
322
330
|
enumerable: true,
|
|
323
|
-
get: function () { return
|
|
331
|
+
get: function () { return chunkU2QEAL7N_js.TabsList; }
|
|
324
332
|
});
|
|
325
333
|
Object.defineProperty(exports, "TabsTrigger", {
|
|
326
334
|
enumerable: true,
|
|
327
|
-
get: function () { return
|
|
335
|
+
get: function () { return chunkU2QEAL7N_js.TabsTrigger; }
|
|
328
336
|
});
|
|
329
337
|
Object.defineProperty(exports, "Textarea", {
|
|
330
338
|
enumerable: true,
|
|
331
|
-
get: function () { return
|
|
339
|
+
get: function () { return chunkU2QEAL7N_js.Textarea; }
|
|
332
340
|
});
|
|
333
341
|
Object.defineProperty(exports, "Toggle", {
|
|
334
342
|
enumerable: true,
|
|
335
|
-
get: function () { return
|
|
343
|
+
get: function () { return chunkU2QEAL7N_js.Toggle; }
|
|
336
344
|
});
|
|
337
345
|
Object.defineProperty(exports, "buttonVariants", {
|
|
338
346
|
enumerable: true,
|
|
339
|
-
get: function () { return
|
|
347
|
+
get: function () { return chunkU2QEAL7N_js.buttonVariants; }
|
|
348
|
+
});
|
|
349
|
+
Object.defineProperty(exports, "segmentedControlItemVariants", {
|
|
350
|
+
enumerable: true,
|
|
351
|
+
get: function () { return chunkU2QEAL7N_js.segmentedControlItemVariants; }
|
|
352
|
+
});
|
|
353
|
+
Object.defineProperty(exports, "segmentedControlVariants", {
|
|
354
|
+
enumerable: true,
|
|
355
|
+
get: function () { return chunkU2QEAL7N_js.segmentedControlVariants; }
|
|
340
356
|
});
|
|
341
357
|
Object.defineProperty(exports, "separatorVariants", {
|
|
342
358
|
enumerable: true,
|
|
343
|
-
get: function () { return
|
|
359
|
+
get: function () { return chunkU2QEAL7N_js.separatorVariants; }
|
|
360
|
+
});
|
|
361
|
+
Object.defineProperty(exports, "switchLabelVariants", {
|
|
362
|
+
enumerable: true,
|
|
363
|
+
get: function () { return chunkU2QEAL7N_js.switchLabelVariants; }
|
|
364
|
+
});
|
|
365
|
+
Object.defineProperty(exports, "switchThumbVariants", {
|
|
366
|
+
enumerable: true,
|
|
367
|
+
get: function () { return chunkU2QEAL7N_js.switchThumbVariants; }
|
|
368
|
+
});
|
|
369
|
+
Object.defineProperty(exports, "switchTrackVariants", {
|
|
370
|
+
enumerable: true,
|
|
371
|
+
get: function () { return chunkU2QEAL7N_js.switchTrackVariants; }
|
|
344
372
|
});
|
|
345
373
|
Object.defineProperty(exports, "toggleGroupVariants", {
|
|
346
374
|
enumerable: true,
|
|
347
|
-
get: function () { return
|
|
375
|
+
get: function () { return chunkU2QEAL7N_js.toggleGroupVariants; }
|
|
348
376
|
});
|
|
349
377
|
Object.defineProperty(exports, "toggleItemVariants", {
|
|
350
378
|
enumerable: true,
|
|
351
|
-
get: function () { return
|
|
379
|
+
get: function () { return chunkU2QEAL7N_js.toggleItemVariants; }
|
|
352
380
|
});
|
|
353
381
|
Object.defineProperty(exports, "useFormContext", {
|
|
354
382
|
enumerable: true,
|
|
355
|
-
get: function () { return
|
|
383
|
+
get: function () { return chunkU2QEAL7N_js.useFormContext; }
|
|
356
384
|
});
|
|
357
385
|
Object.defineProperty(exports, "useFormFieldContext", {
|
|
358
386
|
enumerable: true,
|
|
359
|
-
get: function () { return
|
|
387
|
+
get: function () { return chunkU2QEAL7N_js.useFormFieldContext; }
|
|
360
388
|
});
|
|
361
389
|
Object.defineProperty(exports, "useTableSelection", {
|
|
362
390
|
enumerable: true,
|
|
363
|
-
get: function () { return
|
|
391
|
+
get: function () { return chunkU2QEAL7N_js.useTableSelection; }
|
|
364
392
|
});
|
|
365
393
|
Object.defineProperty(exports, "Badge", {
|
|
366
394
|
enumerable: true,
|
package/dist/primitives.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { 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, Form, FormControl, FormDescription, FormField, FormLabel, FormMessage, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toggle, buttonVariants, separatorVariants, toggleGroupVariants, toggleItemVariants, useFormContext, useFormFieldContext, useTableSelection } from './chunk-
|
|
1
|
+
export { 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, Form, FormControl, FormDescription, FormField, FormLabel, FormMessage, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toggle, buttonVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, toggleGroupVariants, toggleItemVariants, useFormContext, useFormFieldContext, useTableSelection } from './chunk-RPR6I35V.mjs';
|
|
2
2
|
export { Badge, Caption, Code, Heading, Label, Text, badgeVariants, captionVariants, codeVariants, headingVariants, labelVariants, textVariants } from './chunk-E3UN74IA.mjs';
|
|
3
3
|
import './chunk-WFBSFUC6.mjs';
|
|
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.
|
|
3
|
+
"version": "0.12.0",
|
|
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",
|
|
@@ -54,9 +54,12 @@
|
|
|
54
54
|
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
55
55
|
"@radix-ui/react-label": "^2.1.0",
|
|
56
56
|
"@radix-ui/react-popover": "^1.1.1",
|
|
57
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
57
58
|
"@radix-ui/react-select": "^2.1.1",
|
|
58
59
|
"@radix-ui/react-slot": "^1.1.0",
|
|
60
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
59
61
|
"@radix-ui/react-tabs": "^1.1.0",
|
|
62
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
60
63
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
61
64
|
"@visx/axis": "^3.12.0",
|
|
62
65
|
"@visx/curve": "^3.12.0",
|