iryx-ui 0.4.0 → 0.6.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/README.md +293 -10
- package/dist/component-names.d.ts +1 -1
- package/dist/components/Alert.vue.d.ts +19 -4
- package/dist/components/App.vue.d.ts +1 -1
- package/dist/components/Badge.vue.d.ts +4 -3
- package/dist/components/Banner.vue.d.ts +81 -0
- package/dist/components/Combobox.vue.d.ts +112 -0
- package/dist/components/Pagination.vue.d.ts +2 -0
- package/dist/components/Select.vue.d.ts +15 -4
- package/dist/components/Table.vue.d.ts +131 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/composables/data-table.d.ts +93 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +65 -58
- package/dist/node_modules/.pnpm/@hugeicons_core-free-icons@4.2.3/node_modules/@hugeicons/core-free-icons/dist/esm/index.js +15 -1
- package/dist/nuxt.d.ts +1 -1
- package/dist/packages/iryx-ui/src/component-names.js +1 -1
- package/dist/packages/iryx-ui/src/components/Alert.vue_vue_type_script_setup_true_lang.js +51 -35
- package/dist/packages/iryx-ui/src/components/Badge.vue_vue_type_script_setup_true_lang.js +1 -2
- package/dist/packages/iryx-ui/src/components/Banner.js +5 -0
- package/dist/packages/iryx-ui/src/components/Banner.vue_vue_type_script_setup_true_lang.js +93 -0
- package/dist/packages/iryx-ui/src/components/Combobox.js +5 -0
- package/dist/packages/iryx-ui/src/components/Combobox.vue_vue_type_script_setup_true_lang.js +284 -0
- package/dist/packages/iryx-ui/src/components/Pagination.vue_vue_type_script_setup_true_lang.js +5 -1
- package/dist/packages/iryx-ui/src/components/Select.vue_vue_type_script_setup_true_lang.js +72 -27
- package/dist/packages/iryx-ui/src/components/Table.js +5 -0
- package/dist/packages/iryx-ui/src/components/Table.vue_vue_type_script_setup_true_lang.js +217 -0
- package/dist/packages/iryx-ui/src/components/index.js +62 -56
- package/dist/packages/iryx-ui/src/composables/data-table.js +106 -0
- package/dist/packages/iryx-ui/src/theme/alert.js +10 -21
- package/dist/packages/iryx-ui/src/theme/badge.js +37 -37
- package/dist/packages/iryx-ui/src/theme/banner.js +62 -0
- package/dist/packages/iryx-ui/src/theme/button.js +2 -2
- package/dist/packages/iryx-ui/src/theme/card.js +1 -1
- package/dist/packages/iryx-ui/src/theme/checkbox.js +1 -1
- package/dist/packages/iryx-ui/src/theme/combobox.js +29 -0
- package/dist/packages/iryx-ui/src/theme/dialog.js +2 -2
- package/dist/packages/iryx-ui/src/theme/dropdown-menu.js +4 -4
- package/dist/packages/iryx-ui/src/theme/input.js +1 -1
- package/dist/packages/iryx-ui/src/theme/number-input.js +1 -1
- package/dist/packages/iryx-ui/src/theme/pagination.js +24 -14
- package/dist/packages/iryx-ui/src/theme/presets.js +0 -42
- package/dist/packages/iryx-ui/src/theme/radio-group.js +1 -1
- package/dist/packages/iryx-ui/src/theme/select.js +5 -3
- package/dist/packages/iryx-ui/src/theme/skeleton.js +1 -1
- package/dist/packages/iryx-ui/src/theme/stat.js +4 -4
- package/dist/packages/iryx-ui/src/theme/stepper.js +1 -1
- package/dist/packages/iryx-ui/src/theme/switch.js +1 -1
- package/dist/packages/iryx-ui/src/theme/table.js +62 -0
- package/dist/packages/iryx-ui/src/theme/tabs.js +3 -3
- package/dist/packages/iryx-ui/src/theme/toast.js +11 -26
- package/dist/packages/iryx-ui/src/theme/tooltip.js +1 -1
- package/dist/plugin.d.ts +1 -1
- package/dist/theme/alert.d.ts +6 -12
- package/dist/theme/badge.d.ts +15 -12
- package/dist/theme/banner.d.ts +185 -0
- package/dist/theme/button.d.ts +2 -2
- package/dist/theme/combobox.d.ts +101 -0
- package/dist/theme/index.d.ts +3 -0
- package/dist/theme/input.d.ts +5 -5
- package/dist/theme/pagination.d.ts +33 -0
- package/dist/theme/presets.d.ts +0 -42
- package/dist/theme/select.d.ts +6 -0
- package/dist/theme/stat.d.ts +0 -3
- package/dist/theme/table.d.ts +230 -0
- package/dist/theme/toast.d.ts +0 -15
- package/package.json +1 -1
- package/theme.css +24 -0
package/dist/theme/badge.d.ts
CHANGED
|
@@ -6,10 +6,11 @@ export declare const badgeTheme: import("tailwind-variants").TVReturnType<{
|
|
|
6
6
|
danger: {};
|
|
7
7
|
info: {};
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
withDot: {
|
|
10
|
+
true: {
|
|
11
|
+
root: string;
|
|
12
|
+
};
|
|
13
|
+
false: {};
|
|
13
14
|
};
|
|
14
15
|
size: {
|
|
15
16
|
sm: {
|
|
@@ -36,10 +37,11 @@ export declare const badgeTheme: import("tailwind-variants").TVReturnType<{
|
|
|
36
37
|
danger: {};
|
|
37
38
|
info: {};
|
|
38
39
|
};
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
withDot: {
|
|
41
|
+
true: {
|
|
42
|
+
root: string;
|
|
43
|
+
};
|
|
44
|
+
false: {};
|
|
43
45
|
};
|
|
44
46
|
size: {
|
|
45
47
|
sm: {
|
|
@@ -66,10 +68,11 @@ export declare const badgeTheme: import("tailwind-variants").TVReturnType<{
|
|
|
66
68
|
danger: {};
|
|
67
69
|
info: {};
|
|
68
70
|
};
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
withDot: {
|
|
72
|
+
true: {
|
|
73
|
+
root: string;
|
|
74
|
+
};
|
|
75
|
+
false: {};
|
|
73
76
|
};
|
|
74
77
|
size: {
|
|
75
78
|
sm: {
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
export declare const bannerTheme: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
variant: {
|
|
3
|
+
neutral: {
|
|
4
|
+
root: string;
|
|
5
|
+
icon: string;
|
|
6
|
+
};
|
|
7
|
+
info: {
|
|
8
|
+
root: string;
|
|
9
|
+
icon: string;
|
|
10
|
+
};
|
|
11
|
+
success: {
|
|
12
|
+
root: string;
|
|
13
|
+
icon: string;
|
|
14
|
+
};
|
|
15
|
+
warning: {
|
|
16
|
+
root: string;
|
|
17
|
+
icon: string;
|
|
18
|
+
};
|
|
19
|
+
danger: {
|
|
20
|
+
root: string;
|
|
21
|
+
icon: string;
|
|
22
|
+
};
|
|
23
|
+
/** Brand-coloured, for announcements rather than status. */
|
|
24
|
+
primary: {
|
|
25
|
+
root: string;
|
|
26
|
+
icon: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
position: {
|
|
30
|
+
static: {};
|
|
31
|
+
/** Sticks under the top of the scroll container. */
|
|
32
|
+
top: {
|
|
33
|
+
root: string;
|
|
34
|
+
};
|
|
35
|
+
/** Pinned to the bottom of the viewport; the rule moves to the top edge. */
|
|
36
|
+
bottom: {
|
|
37
|
+
root: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
/** Constrains the text while the fill still spans the viewport. */
|
|
41
|
+
contained: {
|
|
42
|
+
true: {
|
|
43
|
+
container: string;
|
|
44
|
+
};
|
|
45
|
+
false: {};
|
|
46
|
+
};
|
|
47
|
+
align: {
|
|
48
|
+
start: {};
|
|
49
|
+
center: {
|
|
50
|
+
content: string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}, {
|
|
54
|
+
root: string;
|
|
55
|
+
/** Keeps the text off the viewport edge without constraining the fill. */
|
|
56
|
+
container: string;
|
|
57
|
+
icon: string;
|
|
58
|
+
content: string;
|
|
59
|
+
title: string;
|
|
60
|
+
actions: string;
|
|
61
|
+
close: string;
|
|
62
|
+
}, undefined, {
|
|
63
|
+
variant: {
|
|
64
|
+
neutral: {
|
|
65
|
+
root: string;
|
|
66
|
+
icon: string;
|
|
67
|
+
};
|
|
68
|
+
info: {
|
|
69
|
+
root: string;
|
|
70
|
+
icon: string;
|
|
71
|
+
};
|
|
72
|
+
success: {
|
|
73
|
+
root: string;
|
|
74
|
+
icon: string;
|
|
75
|
+
};
|
|
76
|
+
warning: {
|
|
77
|
+
root: string;
|
|
78
|
+
icon: string;
|
|
79
|
+
};
|
|
80
|
+
danger: {
|
|
81
|
+
root: string;
|
|
82
|
+
icon: string;
|
|
83
|
+
};
|
|
84
|
+
/** Brand-coloured, for announcements rather than status. */
|
|
85
|
+
primary: {
|
|
86
|
+
root: string;
|
|
87
|
+
icon: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
position: {
|
|
91
|
+
static: {};
|
|
92
|
+
/** Sticks under the top of the scroll container. */
|
|
93
|
+
top: {
|
|
94
|
+
root: string;
|
|
95
|
+
};
|
|
96
|
+
/** Pinned to the bottom of the viewport; the rule moves to the top edge. */
|
|
97
|
+
bottom: {
|
|
98
|
+
root: string;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
/** Constrains the text while the fill still spans the viewport. */
|
|
102
|
+
contained: {
|
|
103
|
+
true: {
|
|
104
|
+
container: string;
|
|
105
|
+
};
|
|
106
|
+
false: {};
|
|
107
|
+
};
|
|
108
|
+
align: {
|
|
109
|
+
start: {};
|
|
110
|
+
center: {
|
|
111
|
+
content: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
}, {
|
|
115
|
+
root: string;
|
|
116
|
+
/** Keeps the text off the viewport edge without constraining the fill. */
|
|
117
|
+
container: string;
|
|
118
|
+
icon: string;
|
|
119
|
+
content: string;
|
|
120
|
+
title: string;
|
|
121
|
+
actions: string;
|
|
122
|
+
close: string;
|
|
123
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
124
|
+
variant: {
|
|
125
|
+
neutral: {
|
|
126
|
+
root: string;
|
|
127
|
+
icon: string;
|
|
128
|
+
};
|
|
129
|
+
info: {
|
|
130
|
+
root: string;
|
|
131
|
+
icon: string;
|
|
132
|
+
};
|
|
133
|
+
success: {
|
|
134
|
+
root: string;
|
|
135
|
+
icon: string;
|
|
136
|
+
};
|
|
137
|
+
warning: {
|
|
138
|
+
root: string;
|
|
139
|
+
icon: string;
|
|
140
|
+
};
|
|
141
|
+
danger: {
|
|
142
|
+
root: string;
|
|
143
|
+
icon: string;
|
|
144
|
+
};
|
|
145
|
+
/** Brand-coloured, for announcements rather than status. */
|
|
146
|
+
primary: {
|
|
147
|
+
root: string;
|
|
148
|
+
icon: string;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
position: {
|
|
152
|
+
static: {};
|
|
153
|
+
/** Sticks under the top of the scroll container. */
|
|
154
|
+
top: {
|
|
155
|
+
root: string;
|
|
156
|
+
};
|
|
157
|
+
/** Pinned to the bottom of the viewport; the rule moves to the top edge. */
|
|
158
|
+
bottom: {
|
|
159
|
+
root: string;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
/** Constrains the text while the fill still spans the viewport. */
|
|
163
|
+
contained: {
|
|
164
|
+
true: {
|
|
165
|
+
container: string;
|
|
166
|
+
};
|
|
167
|
+
false: {};
|
|
168
|
+
};
|
|
169
|
+
align: {
|
|
170
|
+
start: {};
|
|
171
|
+
center: {
|
|
172
|
+
content: string;
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
}, {
|
|
176
|
+
root: string;
|
|
177
|
+
/** Keeps the text off the viewport edge without constraining the fill. */
|
|
178
|
+
container: string;
|
|
179
|
+
icon: string;
|
|
180
|
+
content: string;
|
|
181
|
+
title: string;
|
|
182
|
+
actions: string;
|
|
183
|
+
close: string;
|
|
184
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
185
|
+
export type BannerSlots = keyof ReturnType<typeof bannerTheme>;
|
package/dist/theme/button.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare const buttonTheme: import("tailwind-variants").TVReturnType<{
|
|
|
20
20
|
block: {
|
|
21
21
|
true: string;
|
|
22
22
|
};
|
|
23
|
-
}, undefined, "inline-flex shrink-0 items-center justify-center gap-2 rounded-
|
|
23
|
+
}, undefined, "inline-flex shrink-0 items-center justify-center gap-2 rounded-xl border border-transparent font-medium transition-[color,background-color,border-color,box-shadow,opacity,filter,translate] outline-none focus-visible:ring-2 focus-visible:ring-primary/50 active:translate-y-px disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0", {
|
|
24
24
|
variant: {
|
|
25
25
|
solid: string;
|
|
26
26
|
outline: string;
|
|
@@ -64,5 +64,5 @@ export declare const buttonTheme: import("tailwind-variants").TVReturnType<{
|
|
|
64
64
|
block: {
|
|
65
65
|
true: string;
|
|
66
66
|
};
|
|
67
|
-
}, undefined, "inline-flex shrink-0 items-center justify-center gap-2 rounded-
|
|
67
|
+
}, undefined, "inline-flex shrink-0 items-center justify-center gap-2 rounded-xl border border-transparent font-medium transition-[color,background-color,border-color,box-shadow,opacity,filter,translate] outline-none focus-visible:ring-2 focus-visible:ring-primary/50 active:translate-y-px disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0", unknown, unknown, undefined>>;
|
|
68
68
|
export type ButtonVariants = Parameters<typeof buttonTheme>[0];
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
export declare const comboboxTheme: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
size: {
|
|
3
|
+
sm: {
|
|
4
|
+
anchor: string;
|
|
5
|
+
};
|
|
6
|
+
md: {
|
|
7
|
+
anchor: string;
|
|
8
|
+
};
|
|
9
|
+
lg: {
|
|
10
|
+
anchor: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
invalid: {
|
|
14
|
+
true: {
|
|
15
|
+
anchor: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
disabled: {
|
|
19
|
+
true: {
|
|
20
|
+
anchor: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
}, {
|
|
24
|
+
anchor: string;
|
|
25
|
+
input: string;
|
|
26
|
+
trigger: string;
|
|
27
|
+
content: string;
|
|
28
|
+
viewport: string;
|
|
29
|
+
item: string;
|
|
30
|
+
itemIndicator: string;
|
|
31
|
+
empty: string;
|
|
32
|
+
group: string;
|
|
33
|
+
groupLabel: string;
|
|
34
|
+
}, undefined, {
|
|
35
|
+
size: {
|
|
36
|
+
sm: {
|
|
37
|
+
anchor: string;
|
|
38
|
+
};
|
|
39
|
+
md: {
|
|
40
|
+
anchor: string;
|
|
41
|
+
};
|
|
42
|
+
lg: {
|
|
43
|
+
anchor: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
invalid: {
|
|
47
|
+
true: {
|
|
48
|
+
anchor: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
disabled: {
|
|
52
|
+
true: {
|
|
53
|
+
anchor: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
}, {
|
|
57
|
+
anchor: string;
|
|
58
|
+
input: string;
|
|
59
|
+
trigger: string;
|
|
60
|
+
content: string;
|
|
61
|
+
viewport: string;
|
|
62
|
+
item: string;
|
|
63
|
+
itemIndicator: string;
|
|
64
|
+
empty: string;
|
|
65
|
+
group: string;
|
|
66
|
+
groupLabel: string;
|
|
67
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
68
|
+
size: {
|
|
69
|
+
sm: {
|
|
70
|
+
anchor: string;
|
|
71
|
+
};
|
|
72
|
+
md: {
|
|
73
|
+
anchor: string;
|
|
74
|
+
};
|
|
75
|
+
lg: {
|
|
76
|
+
anchor: string;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
invalid: {
|
|
80
|
+
true: {
|
|
81
|
+
anchor: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
disabled: {
|
|
85
|
+
true: {
|
|
86
|
+
anchor: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
}, {
|
|
90
|
+
anchor: string;
|
|
91
|
+
input: string;
|
|
92
|
+
trigger: string;
|
|
93
|
+
content: string;
|
|
94
|
+
viewport: string;
|
|
95
|
+
item: string;
|
|
96
|
+
itemIndicator: string;
|
|
97
|
+
empty: string;
|
|
98
|
+
group: string;
|
|
99
|
+
groupLabel: string;
|
|
100
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
101
|
+
export type ComboboxSlots = keyof ReturnType<typeof comboboxTheme>;
|
package/dist/theme/index.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from './alert';
|
|
2
2
|
export * from './badge';
|
|
3
|
+
export * from './banner';
|
|
3
4
|
export * from './breadcrumb';
|
|
4
5
|
export * from './button';
|
|
5
6
|
export * from './button-group';
|
|
6
7
|
export * from './card';
|
|
7
8
|
export * from './checkbox';
|
|
9
|
+
export * from './combobox';
|
|
8
10
|
export * from './dialog';
|
|
9
11
|
export * from './dropdown-menu';
|
|
10
12
|
export * from './empty-state';
|
|
@@ -21,6 +23,7 @@ export * from './skeleton';
|
|
|
21
23
|
export * from './stat';
|
|
22
24
|
export * from './stepper';
|
|
23
25
|
export * from './switch';
|
|
26
|
+
export * from './table';
|
|
24
27
|
export * from './tabs';
|
|
25
28
|
export * from './toast';
|
|
26
29
|
export * from './tooltip';
|
package/dist/theme/input.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** Shared field chrome for Input, Textarea and the Select trigger. */
|
|
2
|
-
export declare const fieldBase = "w-full rounded-
|
|
2
|
+
export declare const fieldBase = "w-full rounded-xl border border-border bg-input text-foreground transition-colors outline-none placeholder:text-muted-foreground focus-visible:ring-2 focus-visible:ring-primary/50 disabled:cursor-not-allowed disabled:opacity-50";
|
|
3
3
|
export declare const inputTheme: import("tailwind-variants").TVReturnType<{
|
|
4
4
|
size: {
|
|
5
5
|
sm: string;
|
|
@@ -9,7 +9,7 @@ export declare const inputTheme: import("tailwind-variants").TVReturnType<{
|
|
|
9
9
|
invalid: {
|
|
10
10
|
true: string;
|
|
11
11
|
};
|
|
12
|
-
}, undefined, "flex w-full rounded-
|
|
12
|
+
}, undefined, "flex w-full rounded-xl border border-border bg-input text-foreground transition-colors outline-none placeholder:text-muted-foreground focus-visible:ring-2 focus-visible:ring-primary/50 disabled:cursor-not-allowed disabled:opacity-50", {
|
|
13
13
|
size: {
|
|
14
14
|
sm: string;
|
|
15
15
|
md: string;
|
|
@@ -27,7 +27,7 @@ export declare const inputTheme: import("tailwind-variants").TVReturnType<{
|
|
|
27
27
|
invalid: {
|
|
28
28
|
true: string;
|
|
29
29
|
};
|
|
30
|
-
}, undefined, "flex w-full rounded-
|
|
30
|
+
}, undefined, "flex w-full rounded-xl border border-border bg-input text-foreground transition-colors outline-none placeholder:text-muted-foreground focus-visible:ring-2 focus-visible:ring-primary/50 disabled:cursor-not-allowed disabled:opacity-50", unknown, unknown, undefined>>;
|
|
31
31
|
export declare const textareaTheme: import("tailwind-variants").TVReturnType<{
|
|
32
32
|
size: {
|
|
33
33
|
sm: string;
|
|
@@ -37,7 +37,7 @@ export declare const textareaTheme: import("tailwind-variants").TVReturnType<{
|
|
|
37
37
|
invalid: {
|
|
38
38
|
true: string;
|
|
39
39
|
};
|
|
40
|
-
}, undefined, "block resize-y w-full rounded-
|
|
40
|
+
}, undefined, "block resize-y w-full rounded-xl border border-border bg-input text-foreground transition-colors outline-none placeholder:text-muted-foreground focus-visible:ring-2 focus-visible:ring-primary/50 disabled:cursor-not-allowed disabled:opacity-50", {
|
|
41
41
|
size: {
|
|
42
42
|
sm: string;
|
|
43
43
|
md: string;
|
|
@@ -55,6 +55,6 @@ export declare const textareaTheme: import("tailwind-variants").TVReturnType<{
|
|
|
55
55
|
invalid: {
|
|
56
56
|
true: string;
|
|
57
57
|
};
|
|
58
|
-
}, undefined, "block resize-y w-full rounded-
|
|
58
|
+
}, undefined, "block resize-y w-full rounded-xl border border-border bg-input text-foreground transition-colors outline-none placeholder:text-muted-foreground focus-visible:ring-2 focus-visible:ring-primary/50 disabled:cursor-not-allowed disabled:opacity-50", unknown, unknown, undefined>>;
|
|
59
59
|
export type InputVariants = Parameters<typeof inputTheme>[0];
|
|
60
60
|
export type TextareaVariants = Parameters<typeof textareaTheme>[0];
|
|
@@ -13,6 +13,17 @@ export declare const paginationTheme: import("tailwind-variants").TVReturnType<{
|
|
|
13
13
|
ellipsis: string;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
+
align: {
|
|
17
|
+
start: {
|
|
18
|
+
root: string;
|
|
19
|
+
};
|
|
20
|
+
center: {
|
|
21
|
+
root: string;
|
|
22
|
+
};
|
|
23
|
+
end: {
|
|
24
|
+
root: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
16
27
|
}, {
|
|
17
28
|
root: string;
|
|
18
29
|
list: string;
|
|
@@ -36,6 +47,17 @@ export declare const paginationTheme: import("tailwind-variants").TVReturnType<{
|
|
|
36
47
|
ellipsis: string;
|
|
37
48
|
};
|
|
38
49
|
};
|
|
50
|
+
align: {
|
|
51
|
+
start: {
|
|
52
|
+
root: string;
|
|
53
|
+
};
|
|
54
|
+
center: {
|
|
55
|
+
root: string;
|
|
56
|
+
};
|
|
57
|
+
end: {
|
|
58
|
+
root: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
39
61
|
}, {
|
|
40
62
|
root: string;
|
|
41
63
|
list: string;
|
|
@@ -59,6 +81,17 @@ export declare const paginationTheme: import("tailwind-variants").TVReturnType<{
|
|
|
59
81
|
ellipsis: string;
|
|
60
82
|
};
|
|
61
83
|
};
|
|
84
|
+
align: {
|
|
85
|
+
start: {
|
|
86
|
+
root: string;
|
|
87
|
+
};
|
|
88
|
+
center: {
|
|
89
|
+
root: string;
|
|
90
|
+
};
|
|
91
|
+
end: {
|
|
92
|
+
root: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
62
95
|
}, {
|
|
63
96
|
root: string;
|
|
64
97
|
list: string;
|
package/dist/theme/presets.d.ts
CHANGED
|
@@ -58,20 +58,6 @@ export declare const themes: {
|
|
|
58
58
|
primaryTo: string;
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
|
-
emerald: {
|
|
62
|
-
light: {
|
|
63
|
-
primary: string;
|
|
64
|
-
primaryForeground: string;
|
|
65
|
-
primaryFrom: string;
|
|
66
|
-
primaryTo: string;
|
|
67
|
-
};
|
|
68
|
-
dark: {
|
|
69
|
-
primary: string;
|
|
70
|
-
primaryForeground: string;
|
|
71
|
-
primaryFrom: string;
|
|
72
|
-
primaryTo: string;
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
61
|
rose: {
|
|
76
62
|
light: {
|
|
77
63
|
primary: string;
|
|
@@ -86,34 +72,6 @@ export declare const themes: {
|
|
|
86
72
|
primaryTo: string;
|
|
87
73
|
};
|
|
88
74
|
};
|
|
89
|
-
amber: {
|
|
90
|
-
light: {
|
|
91
|
-
primary: string;
|
|
92
|
-
primaryForeground: string;
|
|
93
|
-
primaryFrom: string;
|
|
94
|
-
primaryTo: string;
|
|
95
|
-
};
|
|
96
|
-
dark: {
|
|
97
|
-
primary: string;
|
|
98
|
-
primaryForeground: string;
|
|
99
|
-
primaryFrom: string;
|
|
100
|
-
primaryTo: string;
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
sky: {
|
|
104
|
-
light: {
|
|
105
|
-
primary: string;
|
|
106
|
-
primaryForeground: string;
|
|
107
|
-
primaryFrom: string;
|
|
108
|
-
primaryTo: string;
|
|
109
|
-
};
|
|
110
|
-
dark: {
|
|
111
|
-
primary: string;
|
|
112
|
-
primaryForeground: string;
|
|
113
|
-
primaryFrom: string;
|
|
114
|
-
primaryTo: string;
|
|
115
|
-
};
|
|
116
|
-
};
|
|
117
75
|
};
|
|
118
76
|
export type ThemePresetName = keyof typeof themes;
|
|
119
77
|
/**
|
package/dist/theme/select.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ export declare const selectTheme: import("tailwind-variants").TVReturnType<{
|
|
|
16
16
|
viewport: string;
|
|
17
17
|
item: string;
|
|
18
18
|
itemIndicator: string;
|
|
19
|
+
group: string;
|
|
20
|
+
groupLabel: string;
|
|
19
21
|
}, undefined, {
|
|
20
22
|
size: {
|
|
21
23
|
sm: {
|
|
@@ -34,6 +36,8 @@ export declare const selectTheme: import("tailwind-variants").TVReturnType<{
|
|
|
34
36
|
viewport: string;
|
|
35
37
|
item: string;
|
|
36
38
|
itemIndicator: string;
|
|
39
|
+
group: string;
|
|
40
|
+
groupLabel: string;
|
|
37
41
|
}, import("tailwind-variants").TVReturnType<{
|
|
38
42
|
size: {
|
|
39
43
|
sm: {
|
|
@@ -52,5 +56,7 @@ export declare const selectTheme: import("tailwind-variants").TVReturnType<{
|
|
|
52
56
|
viewport: string;
|
|
53
57
|
item: string;
|
|
54
58
|
itemIndicator: string;
|
|
59
|
+
group: string;
|
|
60
|
+
groupLabel: string;
|
|
55
61
|
}, undefined, unknown, unknown, undefined>>;
|
|
56
62
|
export type SelectSlots = keyof ReturnType<typeof selectTheme>;
|
package/dist/theme/stat.d.ts
CHANGED
|
@@ -32,7 +32,6 @@ export declare const statTheme: import("tailwind-variants").TVReturnType<{
|
|
|
32
32
|
value: string;
|
|
33
33
|
delta: string;
|
|
34
34
|
hint: string;
|
|
35
|
-
/** Column, so the delta always sits on its own line under the value. */
|
|
36
35
|
row: string;
|
|
37
36
|
}, undefined, {
|
|
38
37
|
size: {
|
|
@@ -68,7 +67,6 @@ export declare const statTheme: import("tailwind-variants").TVReturnType<{
|
|
|
68
67
|
value: string;
|
|
69
68
|
delta: string;
|
|
70
69
|
hint: string;
|
|
71
|
-
/** Column, so the delta always sits on its own line under the value. */
|
|
72
70
|
row: string;
|
|
73
71
|
}, import("tailwind-variants").TVReturnType<{
|
|
74
72
|
size: {
|
|
@@ -104,7 +102,6 @@ export declare const statTheme: import("tailwind-variants").TVReturnType<{
|
|
|
104
102
|
value: string;
|
|
105
103
|
delta: string;
|
|
106
104
|
hint: string;
|
|
107
|
-
/** Column, so the delta always sits on its own line under the value. */
|
|
108
105
|
row: string;
|
|
109
106
|
}, undefined, unknown, unknown, undefined>>;
|
|
110
107
|
export type StatSlots = keyof ReturnType<typeof statTheme>;
|