@pos-360/horizon 0.6.1 → 0.7.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-FQAGXP5O.js → chunk-4GEUF55E.js} +6 -6
- package/dist/chunk-4GEUF55E.js.map +1 -0
- package/dist/{chunk-MB2CYZNV.mjs → chunk-PEL2DCBC.mjs} +301 -97
- package/dist/chunk-PEL2DCBC.mjs.map +1 -0
- package/dist/{chunk-RLWM76LJ.js → chunk-T6DNK3SI.js} +304 -97
- package/dist/chunk-T6DNK3SI.js.map +1 -0
- package/dist/{chunk-EBJJNTPC.mjs → chunk-WLBF2GR6.mjs} +6 -6
- package/dist/chunk-WLBF2GR6.mjs.map +1 -0
- package/dist/enhanced.d.mts +1 -1
- package/dist/enhanced.d.ts +1 -1
- package/dist/enhanced.js +27 -27
- package/dist/enhanced.mjs +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +121 -109
- package/dist/index.mjs +2 -2
- package/dist/primitives.d.mts +41 -3
- package/dist/primitives.d.ts +41 -3
- package/dist/primitives.js +94 -82
- package/dist/primitives.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-EBJJNTPC.mjs.map +0 -1
- package/dist/chunk-FQAGXP5O.js.map +0 -1
- package/dist/chunk-MB2CYZNV.mjs.map +0 -1
- package/dist/chunk-RLWM76LJ.js.map +0 -1
package/dist/primitives.d.ts
CHANGED
|
@@ -191,14 +191,52 @@ declare function SkeletonTableRows({ count, columns, }: {
|
|
|
191
191
|
*/
|
|
192
192
|
declare function SkeletonCard({ className }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
193
193
|
|
|
194
|
-
|
|
194
|
+
type SelectionMode = "single" | "multiple" | "none";
|
|
195
|
+
interface TableContextValue {
|
|
196
|
+
selectable: boolean;
|
|
197
|
+
selectionMode: SelectionMode;
|
|
198
|
+
selectedRows: Set<string>;
|
|
199
|
+
toggleRow: (rowId: string) => void;
|
|
200
|
+
isRowSelected: (rowId: string) => boolean;
|
|
201
|
+
selectAll: () => void;
|
|
202
|
+
deselectAll: () => void;
|
|
203
|
+
isAllSelected: boolean;
|
|
204
|
+
isSomeSelected: boolean;
|
|
205
|
+
getRowId: (row: any) => string;
|
|
206
|
+
registerRowId: (rowId: string) => void;
|
|
207
|
+
unregisterRowId: (rowId: string) => void;
|
|
208
|
+
}
|
|
209
|
+
interface TableProps extends React.HTMLAttributes<HTMLTableElement> {
|
|
210
|
+
selectable?: boolean;
|
|
211
|
+
selectionMode?: SelectionMode;
|
|
212
|
+
selectedRows?: string[];
|
|
213
|
+
onSelectionChange?: (selectedRows: string[]) => void;
|
|
214
|
+
getRowId?: (row: any) => string;
|
|
215
|
+
rows?: any[];
|
|
216
|
+
}
|
|
217
|
+
declare const Table: React.ForwardRefExoticComponent<TableProps & React.RefAttributes<HTMLTableElement>>;
|
|
195
218
|
declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
196
219
|
declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
197
220
|
declare const TableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
|
|
198
|
-
|
|
221
|
+
interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
222
|
+
rowId?: string;
|
|
223
|
+
rowData?: any;
|
|
224
|
+
}
|
|
225
|
+
declare const TableRow: React.ForwardRefExoticComponent<TableRowProps & React.RefAttributes<HTMLTableRowElement>>;
|
|
199
226
|
declare const TableHead: React.ForwardRefExoticComponent<React.ThHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
200
227
|
declare const TableCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
|
|
201
228
|
declare const TableCaption: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableCaptionElement> & React.RefAttributes<HTMLTableCaptionElement>>;
|
|
229
|
+
interface TableSelectAllProps {
|
|
230
|
+
className?: string;
|
|
231
|
+
}
|
|
232
|
+
declare const TableSelectAll: React.ForwardRefExoticComponent<TableSelectAllProps & React.RefAttributes<HTMLDivElement>>;
|
|
233
|
+
interface TableRowCheckboxProps {
|
|
234
|
+
rowId?: string;
|
|
235
|
+
rowData?: any;
|
|
236
|
+
className?: string;
|
|
237
|
+
}
|
|
238
|
+
declare const TableRowCheckbox: React.ForwardRefExoticComponent<TableRowCheckboxProps & React.RefAttributes<HTMLDivElement>>;
|
|
239
|
+
declare const useTableSelection: () => TableContextValue;
|
|
202
240
|
|
|
203
241
|
interface TabsProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Root> {
|
|
204
242
|
defaultValue?: string;
|
|
@@ -259,4 +297,4 @@ interface CodeProps extends Omit<React.HTMLAttributes<HTMLElement>, "color">, Va
|
|
|
259
297
|
}
|
|
260
298
|
declare const Code: React.ForwardRefExoticComponent<CodeProps & React.RefAttributes<HTMLElement>>;
|
|
261
299
|
|
|
262
|
-
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, 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, useFormContext, useFormFieldContext };
|
|
300
|
+
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, 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, Text, type TextProps, Textarea, type TextareaProps, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, textVariants, useFormContext, useFormFieldContext, useTableSelection };
|
package/dist/primitives.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkT6DNK3SI_js = require('./chunk-T6DNK3SI.js');
|
|
4
4
|
var chunkYO72COII_js = require('./chunk-YO72COII.js');
|
|
5
5
|
require('./chunk-GGM3MDFM.js');
|
|
6
6
|
|
|
@@ -8,327 +8,339 @@ require('./chunk-GGM3MDFM.js');
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "Button", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkT6DNK3SI_js.Button; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "Card", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkT6DNK3SI_js.Card; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, "CardContent", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkT6DNK3SI_js.CardContent; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, "CardDescription", {
|
|
22
22
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
23
|
+
get: function () { return chunkT6DNK3SI_js.CardDescription; }
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "CardFooter", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunkT6DNK3SI_js.CardFooter; }
|
|
28
28
|
});
|
|
29
29
|
Object.defineProperty(exports, "CardHeader", {
|
|
30
30
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunkT6DNK3SI_js.CardHeader; }
|
|
32
32
|
});
|
|
33
33
|
Object.defineProperty(exports, "CardTitle", {
|
|
34
34
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunkT6DNK3SI_js.CardTitle; }
|
|
36
36
|
});
|
|
37
37
|
Object.defineProperty(exports, "Checkbox", {
|
|
38
38
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
39
|
+
get: function () { return chunkT6DNK3SI_js.Checkbox; }
|
|
40
40
|
});
|
|
41
41
|
Object.defineProperty(exports, "Dialog", {
|
|
42
42
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
43
|
+
get: function () { return chunkT6DNK3SI_js.Dialog; }
|
|
44
44
|
});
|
|
45
45
|
Object.defineProperty(exports, "DialogClose", {
|
|
46
46
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
47
|
+
get: function () { return chunkT6DNK3SI_js.DialogClose; }
|
|
48
48
|
});
|
|
49
49
|
Object.defineProperty(exports, "DialogContent", {
|
|
50
50
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
51
|
+
get: function () { return chunkT6DNK3SI_js.DialogContent; }
|
|
52
52
|
});
|
|
53
53
|
Object.defineProperty(exports, "DialogDescription", {
|
|
54
54
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
55
|
+
get: function () { return chunkT6DNK3SI_js.DialogDescription; }
|
|
56
56
|
});
|
|
57
57
|
Object.defineProperty(exports, "DialogFooter", {
|
|
58
58
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
59
|
+
get: function () { return chunkT6DNK3SI_js.DialogFooter; }
|
|
60
60
|
});
|
|
61
61
|
Object.defineProperty(exports, "DialogHeader", {
|
|
62
62
|
enumerable: true,
|
|
63
|
-
get: function () { return
|
|
63
|
+
get: function () { return chunkT6DNK3SI_js.DialogHeader; }
|
|
64
64
|
});
|
|
65
65
|
Object.defineProperty(exports, "DialogOverlay", {
|
|
66
66
|
enumerable: true,
|
|
67
|
-
get: function () { return
|
|
67
|
+
get: function () { return chunkT6DNK3SI_js.DialogOverlay; }
|
|
68
68
|
});
|
|
69
69
|
Object.defineProperty(exports, "DialogPortal", {
|
|
70
70
|
enumerable: true,
|
|
71
|
-
get: function () { return
|
|
71
|
+
get: function () { return chunkT6DNK3SI_js.DialogPortal; }
|
|
72
72
|
});
|
|
73
73
|
Object.defineProperty(exports, "DialogTitle", {
|
|
74
74
|
enumerable: true,
|
|
75
|
-
get: function () { return
|
|
75
|
+
get: function () { return chunkT6DNK3SI_js.DialogTitle; }
|
|
76
76
|
});
|
|
77
77
|
Object.defineProperty(exports, "DialogTrigger", {
|
|
78
78
|
enumerable: true,
|
|
79
|
-
get: function () { return
|
|
79
|
+
get: function () { return chunkT6DNK3SI_js.DialogTrigger; }
|
|
80
80
|
});
|
|
81
81
|
Object.defineProperty(exports, "DropdownMenu", {
|
|
82
82
|
enumerable: true,
|
|
83
|
-
get: function () { return
|
|
83
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenu; }
|
|
84
84
|
});
|
|
85
85
|
Object.defineProperty(exports, "DropdownMenuCheckboxItem", {
|
|
86
86
|
enumerable: true,
|
|
87
|
-
get: function () { return
|
|
87
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuCheckboxItem; }
|
|
88
88
|
});
|
|
89
89
|
Object.defineProperty(exports, "DropdownMenuContent", {
|
|
90
90
|
enumerable: true,
|
|
91
|
-
get: function () { return
|
|
91
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuContent; }
|
|
92
92
|
});
|
|
93
93
|
Object.defineProperty(exports, "DropdownMenuGroup", {
|
|
94
94
|
enumerable: true,
|
|
95
|
-
get: function () { return
|
|
95
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuGroup; }
|
|
96
96
|
});
|
|
97
97
|
Object.defineProperty(exports, "DropdownMenuItem", {
|
|
98
98
|
enumerable: true,
|
|
99
|
-
get: function () { return
|
|
99
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuItem; }
|
|
100
100
|
});
|
|
101
101
|
Object.defineProperty(exports, "DropdownMenuLabel", {
|
|
102
102
|
enumerable: true,
|
|
103
|
-
get: function () { return
|
|
103
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuLabel; }
|
|
104
104
|
});
|
|
105
105
|
Object.defineProperty(exports, "DropdownMenuPortal", {
|
|
106
106
|
enumerable: true,
|
|
107
|
-
get: function () { return
|
|
107
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuPortal; }
|
|
108
108
|
});
|
|
109
109
|
Object.defineProperty(exports, "DropdownMenuRadioGroup", {
|
|
110
110
|
enumerable: true,
|
|
111
|
-
get: function () { return
|
|
111
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuRadioGroup; }
|
|
112
112
|
});
|
|
113
113
|
Object.defineProperty(exports, "DropdownMenuRadioItem", {
|
|
114
114
|
enumerable: true,
|
|
115
|
-
get: function () { return
|
|
115
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuRadioItem; }
|
|
116
116
|
});
|
|
117
117
|
Object.defineProperty(exports, "DropdownMenuSeparator", {
|
|
118
118
|
enumerable: true,
|
|
119
|
-
get: function () { return
|
|
119
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuSeparator; }
|
|
120
120
|
});
|
|
121
121
|
Object.defineProperty(exports, "DropdownMenuShortcut", {
|
|
122
122
|
enumerable: true,
|
|
123
|
-
get: function () { return
|
|
123
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuShortcut; }
|
|
124
124
|
});
|
|
125
125
|
Object.defineProperty(exports, "DropdownMenuSub", {
|
|
126
126
|
enumerable: true,
|
|
127
|
-
get: function () { return
|
|
127
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuSub; }
|
|
128
128
|
});
|
|
129
129
|
Object.defineProperty(exports, "DropdownMenuSubContent", {
|
|
130
130
|
enumerable: true,
|
|
131
|
-
get: function () { return
|
|
131
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuSubContent; }
|
|
132
132
|
});
|
|
133
133
|
Object.defineProperty(exports, "DropdownMenuSubTrigger", {
|
|
134
134
|
enumerable: true,
|
|
135
|
-
get: function () { return
|
|
135
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuSubTrigger; }
|
|
136
136
|
});
|
|
137
137
|
Object.defineProperty(exports, "DropdownMenuTrigger", {
|
|
138
138
|
enumerable: true,
|
|
139
|
-
get: function () { return
|
|
139
|
+
get: function () { return chunkT6DNK3SI_js.DropdownMenuTrigger; }
|
|
140
140
|
});
|
|
141
141
|
Object.defineProperty(exports, "Form", {
|
|
142
142
|
enumerable: true,
|
|
143
|
-
get: function () { return
|
|
143
|
+
get: function () { return chunkT6DNK3SI_js.Form; }
|
|
144
144
|
});
|
|
145
145
|
Object.defineProperty(exports, "FormControl", {
|
|
146
146
|
enumerable: true,
|
|
147
|
-
get: function () { return
|
|
147
|
+
get: function () { return chunkT6DNK3SI_js.FormControl; }
|
|
148
148
|
});
|
|
149
149
|
Object.defineProperty(exports, "FormDescription", {
|
|
150
150
|
enumerable: true,
|
|
151
|
-
get: function () { return
|
|
151
|
+
get: function () { return chunkT6DNK3SI_js.FormDescription; }
|
|
152
152
|
});
|
|
153
153
|
Object.defineProperty(exports, "FormField", {
|
|
154
154
|
enumerable: true,
|
|
155
|
-
get: function () { return
|
|
155
|
+
get: function () { return chunkT6DNK3SI_js.FormField; }
|
|
156
156
|
});
|
|
157
157
|
Object.defineProperty(exports, "FormLabel", {
|
|
158
158
|
enumerable: true,
|
|
159
|
-
get: function () { return
|
|
159
|
+
get: function () { return chunkT6DNK3SI_js.FormLabel; }
|
|
160
160
|
});
|
|
161
161
|
Object.defineProperty(exports, "FormMessage", {
|
|
162
162
|
enumerable: true,
|
|
163
|
-
get: function () { return
|
|
163
|
+
get: function () { return chunkT6DNK3SI_js.FormMessage; }
|
|
164
164
|
});
|
|
165
165
|
Object.defineProperty(exports, "Popover", {
|
|
166
166
|
enumerable: true,
|
|
167
|
-
get: function () { return
|
|
167
|
+
get: function () { return chunkT6DNK3SI_js.Popover; }
|
|
168
168
|
});
|
|
169
169
|
Object.defineProperty(exports, "PopoverAnchor", {
|
|
170
170
|
enumerable: true,
|
|
171
|
-
get: function () { return
|
|
171
|
+
get: function () { return chunkT6DNK3SI_js.PopoverAnchor; }
|
|
172
172
|
});
|
|
173
173
|
Object.defineProperty(exports, "PopoverContent", {
|
|
174
174
|
enumerable: true,
|
|
175
|
-
get: function () { return
|
|
175
|
+
get: function () { return chunkT6DNK3SI_js.PopoverContent; }
|
|
176
176
|
});
|
|
177
177
|
Object.defineProperty(exports, "PopoverTrigger", {
|
|
178
178
|
enumerable: true,
|
|
179
|
-
get: function () { return
|
|
179
|
+
get: function () { return chunkT6DNK3SI_js.PopoverTrigger; }
|
|
180
180
|
});
|
|
181
181
|
Object.defineProperty(exports, "Select", {
|
|
182
182
|
enumerable: true,
|
|
183
|
-
get: function () { return
|
|
183
|
+
get: function () { return chunkT6DNK3SI_js.Select; }
|
|
184
184
|
});
|
|
185
185
|
Object.defineProperty(exports, "SelectContent", {
|
|
186
186
|
enumerable: true,
|
|
187
|
-
get: function () { return
|
|
187
|
+
get: function () { return chunkT6DNK3SI_js.SelectContent; }
|
|
188
188
|
});
|
|
189
189
|
Object.defineProperty(exports, "SelectGroup", {
|
|
190
190
|
enumerable: true,
|
|
191
|
-
get: function () { return
|
|
191
|
+
get: function () { return chunkT6DNK3SI_js.SelectGroup; }
|
|
192
192
|
});
|
|
193
193
|
Object.defineProperty(exports, "SelectItem", {
|
|
194
194
|
enumerable: true,
|
|
195
|
-
get: function () { return
|
|
195
|
+
get: function () { return chunkT6DNK3SI_js.SelectItem; }
|
|
196
196
|
});
|
|
197
197
|
Object.defineProperty(exports, "SelectLabel", {
|
|
198
198
|
enumerable: true,
|
|
199
|
-
get: function () { return
|
|
199
|
+
get: function () { return chunkT6DNK3SI_js.SelectLabel; }
|
|
200
200
|
});
|
|
201
201
|
Object.defineProperty(exports, "SelectScrollDownButton", {
|
|
202
202
|
enumerable: true,
|
|
203
|
-
get: function () { return
|
|
203
|
+
get: function () { return chunkT6DNK3SI_js.SelectScrollDownButton; }
|
|
204
204
|
});
|
|
205
205
|
Object.defineProperty(exports, "SelectScrollUpButton", {
|
|
206
206
|
enumerable: true,
|
|
207
|
-
get: function () { return
|
|
207
|
+
get: function () { return chunkT6DNK3SI_js.SelectScrollUpButton; }
|
|
208
208
|
});
|
|
209
209
|
Object.defineProperty(exports, "SelectSeparator", {
|
|
210
210
|
enumerable: true,
|
|
211
|
-
get: function () { return
|
|
211
|
+
get: function () { return chunkT6DNK3SI_js.SelectSeparator; }
|
|
212
212
|
});
|
|
213
213
|
Object.defineProperty(exports, "SelectTrigger", {
|
|
214
214
|
enumerable: true,
|
|
215
|
-
get: function () { return
|
|
215
|
+
get: function () { return chunkT6DNK3SI_js.SelectTrigger; }
|
|
216
216
|
});
|
|
217
217
|
Object.defineProperty(exports, "SelectValue", {
|
|
218
218
|
enumerable: true,
|
|
219
|
-
get: function () { return
|
|
219
|
+
get: function () { return chunkT6DNK3SI_js.SelectValue; }
|
|
220
220
|
});
|
|
221
221
|
Object.defineProperty(exports, "Skeleton", {
|
|
222
222
|
enumerable: true,
|
|
223
|
-
get: function () { return
|
|
223
|
+
get: function () { return chunkT6DNK3SI_js.Skeleton; }
|
|
224
224
|
});
|
|
225
225
|
Object.defineProperty(exports, "SkeletonAvatar", {
|
|
226
226
|
enumerable: true,
|
|
227
|
-
get: function () { return
|
|
227
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonAvatar; }
|
|
228
228
|
});
|
|
229
229
|
Object.defineProperty(exports, "SkeletonBadge", {
|
|
230
230
|
enumerable: true,
|
|
231
|
-
get: function () { return
|
|
231
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonBadge; }
|
|
232
232
|
});
|
|
233
233
|
Object.defineProperty(exports, "SkeletonButton", {
|
|
234
234
|
enumerable: true,
|
|
235
|
-
get: function () { return
|
|
235
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonButton; }
|
|
236
236
|
});
|
|
237
237
|
Object.defineProperty(exports, "SkeletonCard", {
|
|
238
238
|
enumerable: true,
|
|
239
|
-
get: function () { return
|
|
239
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonCard; }
|
|
240
240
|
});
|
|
241
241
|
Object.defineProperty(exports, "SkeletonIcon", {
|
|
242
242
|
enumerable: true,
|
|
243
|
-
get: function () { return
|
|
243
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonIcon; }
|
|
244
244
|
});
|
|
245
245
|
Object.defineProperty(exports, "SkeletonInput", {
|
|
246
246
|
enumerable: true,
|
|
247
|
-
get: function () { return
|
|
247
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonInput; }
|
|
248
248
|
});
|
|
249
249
|
Object.defineProperty(exports, "SkeletonSubtitle", {
|
|
250
250
|
enumerable: true,
|
|
251
|
-
get: function () { return
|
|
251
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonSubtitle; }
|
|
252
252
|
});
|
|
253
253
|
Object.defineProperty(exports, "SkeletonTableRow", {
|
|
254
254
|
enumerable: true,
|
|
255
|
-
get: function () { return
|
|
255
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonTableRow; }
|
|
256
256
|
});
|
|
257
257
|
Object.defineProperty(exports, "SkeletonTableRows", {
|
|
258
258
|
enumerable: true,
|
|
259
|
-
get: function () { return
|
|
259
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonTableRows; }
|
|
260
260
|
});
|
|
261
261
|
Object.defineProperty(exports, "SkeletonText", {
|
|
262
262
|
enumerable: true,
|
|
263
|
-
get: function () { return
|
|
263
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonText; }
|
|
264
264
|
});
|
|
265
265
|
Object.defineProperty(exports, "SkeletonTitle", {
|
|
266
266
|
enumerable: true,
|
|
267
|
-
get: function () { return
|
|
267
|
+
get: function () { return chunkT6DNK3SI_js.SkeletonTitle; }
|
|
268
268
|
});
|
|
269
269
|
Object.defineProperty(exports, "Table", {
|
|
270
270
|
enumerable: true,
|
|
271
|
-
get: function () { return
|
|
271
|
+
get: function () { return chunkT6DNK3SI_js.Table; }
|
|
272
272
|
});
|
|
273
273
|
Object.defineProperty(exports, "TableBody", {
|
|
274
274
|
enumerable: true,
|
|
275
|
-
get: function () { return
|
|
275
|
+
get: function () { return chunkT6DNK3SI_js.TableBody; }
|
|
276
276
|
});
|
|
277
277
|
Object.defineProperty(exports, "TableCaption", {
|
|
278
278
|
enumerable: true,
|
|
279
|
-
get: function () { return
|
|
279
|
+
get: function () { return chunkT6DNK3SI_js.TableCaption; }
|
|
280
280
|
});
|
|
281
281
|
Object.defineProperty(exports, "TableCell", {
|
|
282
282
|
enumerable: true,
|
|
283
|
-
get: function () { return
|
|
283
|
+
get: function () { return chunkT6DNK3SI_js.TableCell; }
|
|
284
284
|
});
|
|
285
285
|
Object.defineProperty(exports, "TableFooter", {
|
|
286
286
|
enumerable: true,
|
|
287
|
-
get: function () { return
|
|
287
|
+
get: function () { return chunkT6DNK3SI_js.TableFooter; }
|
|
288
288
|
});
|
|
289
289
|
Object.defineProperty(exports, "TableHead", {
|
|
290
290
|
enumerable: true,
|
|
291
|
-
get: function () { return
|
|
291
|
+
get: function () { return chunkT6DNK3SI_js.TableHead; }
|
|
292
292
|
});
|
|
293
293
|
Object.defineProperty(exports, "TableHeader", {
|
|
294
294
|
enumerable: true,
|
|
295
|
-
get: function () { return
|
|
295
|
+
get: function () { return chunkT6DNK3SI_js.TableHeader; }
|
|
296
296
|
});
|
|
297
297
|
Object.defineProperty(exports, "TableRow", {
|
|
298
298
|
enumerable: true,
|
|
299
|
-
get: function () { return
|
|
299
|
+
get: function () { return chunkT6DNK3SI_js.TableRow; }
|
|
300
|
+
});
|
|
301
|
+
Object.defineProperty(exports, "TableRowCheckbox", {
|
|
302
|
+
enumerable: true,
|
|
303
|
+
get: function () { return chunkT6DNK3SI_js.TableRowCheckbox; }
|
|
304
|
+
});
|
|
305
|
+
Object.defineProperty(exports, "TableSelectAll", {
|
|
306
|
+
enumerable: true,
|
|
307
|
+
get: function () { return chunkT6DNK3SI_js.TableSelectAll; }
|
|
300
308
|
});
|
|
301
309
|
Object.defineProperty(exports, "Tabs", {
|
|
302
310
|
enumerable: true,
|
|
303
|
-
get: function () { return
|
|
311
|
+
get: function () { return chunkT6DNK3SI_js.Tabs; }
|
|
304
312
|
});
|
|
305
313
|
Object.defineProperty(exports, "TabsContent", {
|
|
306
314
|
enumerable: true,
|
|
307
|
-
get: function () { return
|
|
315
|
+
get: function () { return chunkT6DNK3SI_js.TabsContent; }
|
|
308
316
|
});
|
|
309
317
|
Object.defineProperty(exports, "TabsList", {
|
|
310
318
|
enumerable: true,
|
|
311
|
-
get: function () { return
|
|
319
|
+
get: function () { return chunkT6DNK3SI_js.TabsList; }
|
|
312
320
|
});
|
|
313
321
|
Object.defineProperty(exports, "TabsTrigger", {
|
|
314
322
|
enumerable: true,
|
|
315
|
-
get: function () { return
|
|
323
|
+
get: function () { return chunkT6DNK3SI_js.TabsTrigger; }
|
|
316
324
|
});
|
|
317
325
|
Object.defineProperty(exports, "Textarea", {
|
|
318
326
|
enumerable: true,
|
|
319
|
-
get: function () { return
|
|
327
|
+
get: function () { return chunkT6DNK3SI_js.Textarea; }
|
|
320
328
|
});
|
|
321
329
|
Object.defineProperty(exports, "buttonVariants", {
|
|
322
330
|
enumerable: true,
|
|
323
|
-
get: function () { return
|
|
331
|
+
get: function () { return chunkT6DNK3SI_js.buttonVariants; }
|
|
324
332
|
});
|
|
325
333
|
Object.defineProperty(exports, "useFormContext", {
|
|
326
334
|
enumerable: true,
|
|
327
|
-
get: function () { return
|
|
335
|
+
get: function () { return chunkT6DNK3SI_js.useFormContext; }
|
|
328
336
|
});
|
|
329
337
|
Object.defineProperty(exports, "useFormFieldContext", {
|
|
330
338
|
enumerable: true,
|
|
331
|
-
get: function () { return
|
|
339
|
+
get: function () { return chunkT6DNK3SI_js.useFormFieldContext; }
|
|
340
|
+
});
|
|
341
|
+
Object.defineProperty(exports, "useTableSelection", {
|
|
342
|
+
enumerable: true,
|
|
343
|
+
get: function () { return chunkT6DNK3SI_js.useTableSelection; }
|
|
332
344
|
});
|
|
333
345
|
Object.defineProperty(exports, "Badge", {
|
|
334
346
|
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, 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, buttonVariants, useFormContext, useFormFieldContext } 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, 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, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, buttonVariants, useFormContext, useFormFieldContext, useTableSelection } from './chunk-PEL2DCBC.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
|