@okam/stack-ui 1.13.0 → 1.14.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.
- package/components/Box/interface.d.ts +0 -1
- package/components/Typography/interface.d.ts +0 -1
- package/components/fields/Checkbox/Checkbox.interface.d.ts +0 -2
- package/index.js +9 -9
- package/index.mjs +2257 -1846
- package/package.json +2 -43
- package/theme/Accordion/index.d.ts +117 -6
- package/theme/Box/index.d.ts +122 -8
- package/theme/Button/index.d.ts +52 -1
- package/theme/Calendar/index.d.ts +162 -33
- package/theme/Carousel/index.d.ts +3 -15
- package/theme/Checkbox/index.d.ts +71 -13
- package/theme/CheckboxGroup/index.d.ts +30 -0
- package/theme/DatePicker/index.d.ts +23 -36
- package/theme/Image/index.d.ts +1 -5
- package/theme/LightBox/index.d.ts +381 -82
- package/theme/Radio/index.d.ts +48 -3
- package/theme/RadioGroup/index.d.ts +14 -6
- package/theme/ShareButton/index.d.ts +78 -14
- package/theme/SidePanel/index.d.ts +3 -15
- package/theme/TextArea/index.d.ts +13 -1
- package/theme/Typography/index.d.ts +100 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okam/stack-ui",
|
|
3
3
|
"main": "./index.js",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.14.1",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -14,46 +14,5 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"url": "https://github.com/OKAMca/stack.git"
|
|
17
|
-
}
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"@internationalized/date": "3.5.0",
|
|
20
|
-
"@react-aria/calendar": "3.5.0",
|
|
21
|
-
"@react-aria/checkbox": "3.11.0",
|
|
22
|
-
"@react-aria/datepicker": "3.7.0",
|
|
23
|
-
"@react-aria/focus": "^3.6.1",
|
|
24
|
-
"@react-aria/i18n": "^3.8.1",
|
|
25
|
-
"@react-aria/overlays": "3.17.0",
|
|
26
|
-
"@react-aria/tabs": "3.7.0",
|
|
27
|
-
"@react-aria/utils": "3.20.0",
|
|
28
|
-
"@react-aria/visually-hidden": "3.8.4",
|
|
29
|
-
"@react-stately/calendar": "3.4.0",
|
|
30
|
-
"@react-stately/collections": "3.10.1",
|
|
31
|
-
"@react-stately/datepicker": "3.7.0",
|
|
32
|
-
"@react-stately/overlays": "3.6.2",
|
|
33
|
-
"@react-stately/radio": "3.9.0",
|
|
34
|
-
"@react-stately/tabs": "3.6.0",
|
|
35
|
-
"@react-stately/toggle": "3.6.2",
|
|
36
|
-
"@react-types/dialog": "3.5.5",
|
|
37
|
-
"@react-types/radio": "3.5.1",
|
|
38
|
-
"@react-types/shared": "3.19.0",
|
|
39
|
-
"@react-types/tabs": "3.3.2",
|
|
40
|
-
"@tsed/exceptions": "^6.100.3",
|
|
41
|
-
"dequal": "^2.0.0",
|
|
42
|
-
"isomorphic-dompurify": "0.26.0",
|
|
43
|
-
"lodash": "4.17.21",
|
|
44
|
-
"lodash.isequal": "4.5.0",
|
|
45
|
-
"next": "13.4.1",
|
|
46
|
-
"radash": "10.7.0",
|
|
47
|
-
"react": "18.2.0",
|
|
48
|
-
"react-aria": "^3.27.0",
|
|
49
|
-
"react-div-100vh": "0.7.0",
|
|
50
|
-
"react-hook-form": "7.43.0",
|
|
51
|
-
"react-i18next": "12.1.5",
|
|
52
|
-
"react-spring": "^9.7.3",
|
|
53
|
-
"react-stately": "^3.24.0",
|
|
54
|
-
"tailwind-variants": "^0.1.8",
|
|
55
|
-
"unlazy": "^0.10.2",
|
|
56
|
-
"usehooks-ts": "^2.9.1"
|
|
57
|
-
},
|
|
58
|
-
"type": "module"
|
|
17
|
+
}
|
|
59
18
|
}
|
|
@@ -18,7 +18,22 @@ export declare const accordionContainer: import("tailwind-variants").TVReturnTyp
|
|
|
18
18
|
center: "text-center";
|
|
19
19
|
left: "text-left";
|
|
20
20
|
};
|
|
21
|
-
}, undefined
|
|
21
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
22
|
+
textAlign: {
|
|
23
|
+
center: "text-center";
|
|
24
|
+
left: "text-left";
|
|
25
|
+
};
|
|
26
|
+
}, undefined, "[border-radius: 32px] p-1.5 focus:outline-none text-color-1-500", import("tailwind-variants/dist/config").TVConfig<{
|
|
27
|
+
textAlign: {
|
|
28
|
+
center: "text-center";
|
|
29
|
+
left: "text-left";
|
|
30
|
+
};
|
|
31
|
+
}, {
|
|
32
|
+
textAlign: {
|
|
33
|
+
center: "text-center";
|
|
34
|
+
left: "text-left";
|
|
35
|
+
};
|
|
36
|
+
}>, unknown, unknown, undefined>>;
|
|
22
37
|
export declare const accordionButton: import("tailwind-variants").TVReturnType<{
|
|
23
38
|
titleBold: {
|
|
24
39
|
true: "font-bold";
|
|
@@ -51,7 +66,31 @@ export declare const accordionButton: import("tailwind-variants").TVReturnType<{
|
|
|
51
66
|
center: "grid-cols-[3rem_1fr_3rem] pl-0 sm:pl-0";
|
|
52
67
|
left: "grid-cols-[1fr_3rem]";
|
|
53
68
|
};
|
|
54
|
-
}, undefined
|
|
69
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
70
|
+
titleBold: {
|
|
71
|
+
true: "font-bold";
|
|
72
|
+
};
|
|
73
|
+
textAlign: {
|
|
74
|
+
center: "grid-cols-[3rem_1fr_3rem] pl-0 sm:pl-0";
|
|
75
|
+
left: "grid-cols-[1fr_3rem]";
|
|
76
|
+
};
|
|
77
|
+
}, undefined, "grid overflow-hidden w-full items-center border-b-2 border-color-1-500 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<{
|
|
78
|
+
titleBold: {
|
|
79
|
+
true: "font-bold";
|
|
80
|
+
};
|
|
81
|
+
textAlign: {
|
|
82
|
+
center: "grid-cols-[3rem_1fr_3rem] pl-0 sm:pl-0";
|
|
83
|
+
left: "grid-cols-[1fr_3rem]";
|
|
84
|
+
};
|
|
85
|
+
}, {
|
|
86
|
+
titleBold: {
|
|
87
|
+
true: "font-bold";
|
|
88
|
+
};
|
|
89
|
+
textAlign: {
|
|
90
|
+
center: "grid-cols-[3rem_1fr_3rem] pl-0 sm:pl-0";
|
|
91
|
+
left: "grid-cols-[1fr_3rem]";
|
|
92
|
+
};
|
|
93
|
+
}>, unknown, unknown, undefined>>;
|
|
55
94
|
export declare const accordionTitle: import("tailwind-variants").TVReturnType<{
|
|
56
95
|
textAlign: {
|
|
57
96
|
center: "justify-self-center col-start-2";
|
|
@@ -72,7 +111,22 @@ export declare const accordionTitle: import("tailwind-variants").TVReturnType<{
|
|
|
72
111
|
center: "justify-self-center col-start-2";
|
|
73
112
|
left: "justify-self-start";
|
|
74
113
|
};
|
|
75
|
-
}, undefined
|
|
114
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
115
|
+
textAlign: {
|
|
116
|
+
center: "justify-self-center col-start-2";
|
|
117
|
+
left: "justify-self-start";
|
|
118
|
+
};
|
|
119
|
+
}, undefined, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
120
|
+
textAlign: {
|
|
121
|
+
center: "justify-self-center col-start-2";
|
|
122
|
+
left: "justify-self-start";
|
|
123
|
+
};
|
|
124
|
+
}, {
|
|
125
|
+
textAlign: {
|
|
126
|
+
center: "justify-self-center col-start-2";
|
|
127
|
+
left: "justify-self-start";
|
|
128
|
+
};
|
|
129
|
+
}>, unknown, unknown, undefined>>;
|
|
76
130
|
export declare const accordionIcon: import("tailwind-variants").TVReturnType<{
|
|
77
131
|
isOpen: {
|
|
78
132
|
true: "-rotate-90";
|
|
@@ -93,7 +147,22 @@ export declare const accordionIcon: import("tailwind-variants").TVReturnType<{
|
|
|
93
147
|
true: "-rotate-90";
|
|
94
148
|
false: "";
|
|
95
149
|
};
|
|
96
|
-
}, undefined
|
|
150
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
151
|
+
isOpen: {
|
|
152
|
+
true: "-rotate-90";
|
|
153
|
+
false: "";
|
|
154
|
+
};
|
|
155
|
+
}, undefined, "text-color-1-500 min-h-12 rotate-90 min-w-12 rounded-full flex items-center justify-center transition duration-500 transform ml-auto aspect-square", import("tailwind-variants/dist/config").TVConfig<{
|
|
156
|
+
isOpen: {
|
|
157
|
+
true: "-rotate-90";
|
|
158
|
+
false: "";
|
|
159
|
+
};
|
|
160
|
+
}, {
|
|
161
|
+
isOpen: {
|
|
162
|
+
true: "-rotate-90";
|
|
163
|
+
false: "";
|
|
164
|
+
};
|
|
165
|
+
}>, unknown, unknown, undefined>>;
|
|
97
166
|
export declare const accordionRegion: import("tailwind-variants").TVReturnType<{
|
|
98
167
|
isOpen: {
|
|
99
168
|
true: "pb-8 pt-3 grid-rows-[1fr]";
|
|
@@ -130,7 +199,34 @@ export declare const accordionRegion: import("tailwind-variants").TVReturnType<{
|
|
|
130
199
|
center: "grid-cols-[3rem_1fr_3rem] px-6 text-center";
|
|
131
200
|
left: "grid-cols-[1fr_3rem] text-left";
|
|
132
201
|
};
|
|
133
|
-
}, undefined
|
|
202
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
203
|
+
isOpen: {
|
|
204
|
+
true: "pb-8 pt-3 grid-rows-[1fr]";
|
|
205
|
+
false: "";
|
|
206
|
+
};
|
|
207
|
+
textAlign: {
|
|
208
|
+
center: "grid-cols-[3rem_1fr_3rem] px-6 text-center";
|
|
209
|
+
left: "grid-cols-[1fr_3rem] text-left";
|
|
210
|
+
};
|
|
211
|
+
}, undefined, "font-body text-inherit h-auto grid grid-rows-[0fr] transition-all duration-500", import("tailwind-variants/dist/config").TVConfig<{
|
|
212
|
+
isOpen: {
|
|
213
|
+
true: "pb-8 pt-3 grid-rows-[1fr]";
|
|
214
|
+
false: "";
|
|
215
|
+
};
|
|
216
|
+
textAlign: {
|
|
217
|
+
center: "grid-cols-[3rem_1fr_3rem] px-6 text-center";
|
|
218
|
+
left: "grid-cols-[1fr_3rem] text-left";
|
|
219
|
+
};
|
|
220
|
+
}, {
|
|
221
|
+
isOpen: {
|
|
222
|
+
true: "pb-8 pt-3 grid-rows-[1fr]";
|
|
223
|
+
false: "";
|
|
224
|
+
};
|
|
225
|
+
textAlign: {
|
|
226
|
+
center: "grid-cols-[3rem_1fr_3rem] px-6 text-center";
|
|
227
|
+
left: "grid-cols-[1fr_3rem] text-left";
|
|
228
|
+
};
|
|
229
|
+
}>, unknown, unknown, undefined>>;
|
|
134
230
|
export declare const accordionContent: import("tailwind-variants").TVReturnType<{
|
|
135
231
|
textAlign: {
|
|
136
232
|
center: "col-start-2";
|
|
@@ -151,4 +247,19 @@ export declare const accordionContent: import("tailwind-variants").TVReturnType<
|
|
|
151
247
|
center: "col-start-2";
|
|
152
248
|
left: "";
|
|
153
249
|
};
|
|
154
|
-
}, undefined
|
|
250
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
251
|
+
textAlign: {
|
|
252
|
+
center: "col-start-2";
|
|
253
|
+
left: "";
|
|
254
|
+
};
|
|
255
|
+
}, undefined, "overflow-hidden", import("tailwind-variants/dist/config").TVConfig<{
|
|
256
|
+
textAlign: {
|
|
257
|
+
center: "col-start-2";
|
|
258
|
+
left: "";
|
|
259
|
+
};
|
|
260
|
+
}, {
|
|
261
|
+
textAlign: {
|
|
262
|
+
center: "col-start-2";
|
|
263
|
+
left: "";
|
|
264
|
+
};
|
|
265
|
+
}>, unknown, unknown, undefined>>;
|
package/theme/Box/index.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
export declare const main: import("tailwind-variants").TVReturnType<import("tailwind-variants").
|
|
2
|
-
[x: string]: {
|
|
3
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "w-full bg-slate-100">;
|
|
4
|
-
} | undefined;
|
|
5
|
-
} | {}, undefined, "w-full bg-slate-100", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "w-full bg-slate-100"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "w-full bg-slate-100"> | {}, undefined>;
|
|
1
|
+
export declare const main: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "w-full bg-slate-100", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "w-full bg-slate-100", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
6
2
|
export declare const container: import("tailwind-variants").TVReturnType<{
|
|
7
3
|
fullWidth: {
|
|
8
4
|
true: "max-w-full col-span-full p-0";
|
|
@@ -43,7 +39,37 @@ export declare const container: import("tailwind-variants").TVReturnType<{
|
|
|
43
39
|
large: "mb-8";
|
|
44
40
|
none: "mb-0";
|
|
45
41
|
};
|
|
46
|
-
}, undefined
|
|
42
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
43
|
+
fullWidth: {
|
|
44
|
+
true: "max-w-full col-span-full p-0";
|
|
45
|
+
};
|
|
46
|
+
spacing: {
|
|
47
|
+
small: "mb-3";
|
|
48
|
+
medium: "mb-6";
|
|
49
|
+
large: "mb-8";
|
|
50
|
+
none: "mb-0";
|
|
51
|
+
};
|
|
52
|
+
}, undefined, "max-w-screen-lg mx-auto w-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
53
|
+
fullWidth: {
|
|
54
|
+
true: "max-w-full col-span-full p-0";
|
|
55
|
+
};
|
|
56
|
+
spacing: {
|
|
57
|
+
small: "mb-3";
|
|
58
|
+
medium: "mb-6";
|
|
59
|
+
large: "mb-8";
|
|
60
|
+
none: "mb-0";
|
|
61
|
+
};
|
|
62
|
+
}, {
|
|
63
|
+
fullWidth: {
|
|
64
|
+
true: "max-w-full col-span-full p-0";
|
|
65
|
+
};
|
|
66
|
+
spacing: {
|
|
67
|
+
small: "mb-3";
|
|
68
|
+
medium: "mb-6";
|
|
69
|
+
large: "mb-8";
|
|
70
|
+
none: "mb-0";
|
|
71
|
+
};
|
|
72
|
+
}>, unknown, unknown, undefined>>;
|
|
47
73
|
export declare const grid: import("tailwind-variants").TVReturnType<{
|
|
48
74
|
fullWidth: {
|
|
49
75
|
true: "max-w-full col-span-full p-0";
|
|
@@ -72,7 +98,77 @@ export declare const grid: import("tailwind-variants").TVReturnType<{
|
|
|
72
98
|
large: "mb-8";
|
|
73
99
|
none: "mb-0";
|
|
74
100
|
};
|
|
75
|
-
}, undefined
|
|
101
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
102
|
+
fullWidth: {
|
|
103
|
+
true: "max-w-full col-span-full p-0";
|
|
104
|
+
};
|
|
105
|
+
spacing: {
|
|
106
|
+
small: "mb-3";
|
|
107
|
+
medium: "mb-6";
|
|
108
|
+
large: "mb-8";
|
|
109
|
+
none: "mb-0";
|
|
110
|
+
};
|
|
111
|
+
}, undefined, "max-w-screen-lg mx-auto w-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
112
|
+
fullWidth: {
|
|
113
|
+
true: "max-w-full col-span-full p-0";
|
|
114
|
+
};
|
|
115
|
+
spacing: {
|
|
116
|
+
small: "mb-3";
|
|
117
|
+
medium: "mb-6";
|
|
118
|
+
large: "mb-8";
|
|
119
|
+
none: "mb-0";
|
|
120
|
+
};
|
|
121
|
+
}, {
|
|
122
|
+
fullWidth: {
|
|
123
|
+
true: "max-w-full col-span-full p-0";
|
|
124
|
+
};
|
|
125
|
+
spacing: {
|
|
126
|
+
small: "mb-3";
|
|
127
|
+
medium: "mb-6";
|
|
128
|
+
large: "mb-8";
|
|
129
|
+
none: "mb-0";
|
|
130
|
+
};
|
|
131
|
+
}>, {
|
|
132
|
+
fullWidth: {
|
|
133
|
+
true: "max-w-full col-span-full p-0";
|
|
134
|
+
};
|
|
135
|
+
spacing: {
|
|
136
|
+
small: "mb-3";
|
|
137
|
+
medium: "mb-6";
|
|
138
|
+
large: "mb-8";
|
|
139
|
+
none: "mb-0";
|
|
140
|
+
};
|
|
141
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
142
|
+
fullWidth: {
|
|
143
|
+
true: "max-w-full col-span-full p-0";
|
|
144
|
+
};
|
|
145
|
+
spacing: {
|
|
146
|
+
small: "mb-3";
|
|
147
|
+
medium: "mb-6";
|
|
148
|
+
large: "mb-8";
|
|
149
|
+
none: "mb-0";
|
|
150
|
+
};
|
|
151
|
+
}, undefined, "max-w-screen-lg mx-auto w-full", import("tailwind-variants/dist/config").TVConfig<{
|
|
152
|
+
fullWidth: {
|
|
153
|
+
true: "max-w-full col-span-full p-0";
|
|
154
|
+
};
|
|
155
|
+
spacing: {
|
|
156
|
+
small: "mb-3";
|
|
157
|
+
medium: "mb-6";
|
|
158
|
+
large: "mb-8";
|
|
159
|
+
none: "mb-0";
|
|
160
|
+
};
|
|
161
|
+
}, {
|
|
162
|
+
fullWidth: {
|
|
163
|
+
true: "max-w-full col-span-full p-0";
|
|
164
|
+
};
|
|
165
|
+
spacing: {
|
|
166
|
+
small: "mb-3";
|
|
167
|
+
medium: "mb-6";
|
|
168
|
+
large: "mb-8";
|
|
169
|
+
none: "mb-0";
|
|
170
|
+
};
|
|
171
|
+
}>, unknown, unknown, undefined>>>;
|
|
76
172
|
export declare const gridItem: import("tailwind-variants").TVReturnType<{
|
|
77
173
|
size: {
|
|
78
174
|
small: "col-span-12 sm:col-span-6 md:col-span-4 lg:col-span-4";
|
|
@@ -97,4 +193,22 @@ export declare const gridItem: import("tailwind-variants").TVReturnType<{
|
|
|
97
193
|
medium: "col-span-12 sm:col-span-12 md:col-span-8 lg:col-span-8";
|
|
98
194
|
large: "lg:col-start-3 sm:col-start-1 sm:col-end-13 lg:col-end-11 md:col-start-3 md:col-end-11 col-start-1 col-end-13";
|
|
99
195
|
};
|
|
100
|
-
}, undefined
|
|
196
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
197
|
+
size: {
|
|
198
|
+
small: "col-span-12 sm:col-span-6 md:col-span-4 lg:col-span-4";
|
|
199
|
+
medium: "col-span-12 sm:col-span-12 md:col-span-8 lg:col-span-8";
|
|
200
|
+
large: "lg:col-start-3 sm:col-start-1 sm:col-end-13 lg:col-end-11 md:col-start-3 md:col-end-11 col-start-1 col-end-13";
|
|
201
|
+
};
|
|
202
|
+
}, undefined, "bg-slate-300 h-64 p-4 flex justify-start items-end", import("tailwind-variants/dist/config").TVConfig<{
|
|
203
|
+
size: {
|
|
204
|
+
small: "col-span-12 sm:col-span-6 md:col-span-4 lg:col-span-4";
|
|
205
|
+
medium: "col-span-12 sm:col-span-12 md:col-span-8 lg:col-span-8";
|
|
206
|
+
large: "lg:col-start-3 sm:col-start-1 sm:col-end-13 lg:col-end-11 md:col-start-3 md:col-end-11 col-start-1 col-end-13";
|
|
207
|
+
};
|
|
208
|
+
}, {
|
|
209
|
+
size: {
|
|
210
|
+
small: "col-span-12 sm:col-span-6 md:col-span-4 lg:col-span-4";
|
|
211
|
+
medium: "col-span-12 sm:col-span-12 md:col-span-8 lg:col-span-8";
|
|
212
|
+
large: "lg:col-start-3 sm:col-start-1 sm:col-end-13 lg:col-end-11 md:col-start-3 md:col-end-11 col-start-1 col-end-13";
|
|
213
|
+
};
|
|
214
|
+
}>, unknown, unknown, undefined>>;
|
package/theme/Button/index.d.ts
CHANGED
|
@@ -66,5 +66,56 @@ declare const button: import("tailwind-variants").TVReturnType<{
|
|
|
66
66
|
rounded: "rounded-md";
|
|
67
67
|
circular: "rounded-full";
|
|
68
68
|
};
|
|
69
|
-
}, undefined
|
|
69
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
70
|
+
buttonStyle: {
|
|
71
|
+
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
72
|
+
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
73
|
+
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
74
|
+
};
|
|
75
|
+
intent: {
|
|
76
|
+
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
77
|
+
};
|
|
78
|
+
size: {
|
|
79
|
+
default: "min-w-12 min-h-6";
|
|
80
|
+
large: "min-w-36 min-h-18";
|
|
81
|
+
};
|
|
82
|
+
shape: {
|
|
83
|
+
rounded: "rounded-md";
|
|
84
|
+
circular: "rounded-full";
|
|
85
|
+
};
|
|
86
|
+
}, undefined, "\n flex\n items-center\n justify-center\n gap-4\n transition\n duration-300\n ease-in-out\n disabled:pointer-events-none\n disabled:opacity-30\n focus-ring-black\n ", import("tailwind-variants/dist/config").TVConfig<{
|
|
87
|
+
buttonStyle: {
|
|
88
|
+
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
89
|
+
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
90
|
+
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
91
|
+
};
|
|
92
|
+
intent: {
|
|
93
|
+
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
94
|
+
};
|
|
95
|
+
size: {
|
|
96
|
+
default: "min-w-12 min-h-6";
|
|
97
|
+
large: "min-w-36 min-h-18";
|
|
98
|
+
};
|
|
99
|
+
shape: {
|
|
100
|
+
rounded: "rounded-md";
|
|
101
|
+
circular: "rounded-full";
|
|
102
|
+
};
|
|
103
|
+
}, {
|
|
104
|
+
buttonStyle: {
|
|
105
|
+
default: "\n px-4\n py-2\n text-white\n !bg-color-1-500 \n hover:!bg-color-1-400\n active:!bg-color-1-400\n ";
|
|
106
|
+
outline: "\n px-4\n py-2\n bg-transparent\n !border-color-1-500\n text-color-1-500\n hover:bg-color-1-500\n hover:text-white\n active:bg-color-1-500\n active:text-white\n ";
|
|
107
|
+
hollow: "\n px-2\n bg-transparent\n text-color-1-500\n hover:border-b-color-1-500\n active:border-b-color-1-500\n focus:border-b-color-1-500\n \n ";
|
|
108
|
+
};
|
|
109
|
+
intent: {
|
|
110
|
+
error: "\n !bg-error \n text-white \n pointer-events-none\n !border-error\n ";
|
|
111
|
+
};
|
|
112
|
+
size: {
|
|
113
|
+
default: "min-w-12 min-h-6";
|
|
114
|
+
large: "min-w-36 min-h-18";
|
|
115
|
+
};
|
|
116
|
+
shape: {
|
|
117
|
+
rounded: "rounded-md";
|
|
118
|
+
circular: "rounded-full";
|
|
119
|
+
};
|
|
120
|
+
}>, unknown, unknown, undefined>>;
|
|
70
121
|
export default button;
|
|
@@ -1,33 +1,9 @@
|
|
|
1
|
-
export declare const calendarContainer: import("tailwind-variants").TVReturnType<import("tailwind-variants").
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
} | {}, undefined, "
|
|
6
|
-
export declare const
|
|
7
|
-
[x: string]: {
|
|
8
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "flex items-center justify-between pb-4">;
|
|
9
|
-
} | undefined;
|
|
10
|
-
} | {}, undefined, "flex items-center justify-between pb-4", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "flex items-center justify-between pb-4"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "flex items-center justify-between pb-4"> | {}, undefined>;
|
|
11
|
-
export declare const calendarNavigationButtonsContainer: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "flex items-center gap-1"> | {
|
|
12
|
-
[x: string]: {
|
|
13
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "flex items-center gap-1">;
|
|
14
|
-
} | undefined;
|
|
15
|
-
} | {}, undefined, "flex items-center gap-1", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "flex items-center gap-1"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "flex items-center gap-1"> | {}, undefined>;
|
|
16
|
-
export declare const calendarNavigationButtons: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black"> | {
|
|
17
|
-
[x: string]: {
|
|
18
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black">;
|
|
19
|
-
} | undefined;
|
|
20
|
-
} | {}, undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black"> | {}, undefined>;
|
|
21
|
-
export declare const calendarTable: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "flex-1"> | {
|
|
22
|
-
[x: string]: {
|
|
23
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "flex-1">;
|
|
24
|
-
} | undefined;
|
|
25
|
-
} | {}, undefined, "flex-1", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "flex-1"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "flex-1"> | {}, undefined>;
|
|
26
|
-
export declare const calendarDayLabel: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "text-center"> | {
|
|
27
|
-
[x: string]: {
|
|
28
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "text-center">;
|
|
29
|
-
} | undefined;
|
|
30
|
-
} | {}, undefined, "text-center", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "text-center"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "text-center"> | {}, undefined>;
|
|
1
|
+
export declare const calendarContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "inline-block text-gray-800", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "inline-block text-gray-800", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
2
|
+
export declare const calendarHeaderContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center justify-between pb-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center justify-between pb-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
+
export declare const calendarNavigationButtonsContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center gap-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center gap-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
4
|
+
export declare const calendarNavigationButtons: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
5
|
+
export declare const calendarTable: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
6
|
+
export declare const calendarDayLabel: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
31
7
|
export declare const calendarCellContainer: import("tailwind-variants").TVReturnType<{
|
|
32
8
|
isFocusVisible: {
|
|
33
9
|
true: "z-10";
|
|
@@ -48,7 +24,22 @@ export declare const calendarCellContainer: import("tailwind-variants").TVReturn
|
|
|
48
24
|
true: "z-10";
|
|
49
25
|
false: "";
|
|
50
26
|
};
|
|
51
|
-
}, undefined
|
|
27
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
28
|
+
isFocusVisible: {
|
|
29
|
+
true: "z-10";
|
|
30
|
+
false: "";
|
|
31
|
+
};
|
|
32
|
+
}, undefined, "py-0.5 relative", import("tailwind-variants/dist/config").TVConfig<{
|
|
33
|
+
isFocusVisible: {
|
|
34
|
+
true: "z-10";
|
|
35
|
+
false: "";
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
isFocusVisible: {
|
|
39
|
+
true: "z-10";
|
|
40
|
+
false: "";
|
|
41
|
+
};
|
|
42
|
+
}>, unknown, unknown, undefined>>;
|
|
52
43
|
export declare const calendarCell: import("tailwind-variants").TVReturnType<{
|
|
53
44
|
isSelected: {
|
|
54
45
|
true: "";
|
|
@@ -133,7 +124,70 @@ export declare const calendarCell: import("tailwind-variants").TVReturnType<{
|
|
|
133
124
|
true: "rounded-r-full";
|
|
134
125
|
false: "";
|
|
135
126
|
};
|
|
136
|
-
}, undefined
|
|
127
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
128
|
+
isSelected: {
|
|
129
|
+
true: "";
|
|
130
|
+
false: "";
|
|
131
|
+
};
|
|
132
|
+
isInvalid: {
|
|
133
|
+
true: "";
|
|
134
|
+
fasle: "";
|
|
135
|
+
};
|
|
136
|
+
isDisabled: {
|
|
137
|
+
true: "disabled";
|
|
138
|
+
false: "";
|
|
139
|
+
};
|
|
140
|
+
isRoundedLeft: {
|
|
141
|
+
true: "rounded-l-full";
|
|
142
|
+
false: "";
|
|
143
|
+
};
|
|
144
|
+
isRoundedRight: {
|
|
145
|
+
true: "rounded-r-full";
|
|
146
|
+
false: "";
|
|
147
|
+
};
|
|
148
|
+
}, undefined, "w-10 h-10 outline-none group", import("tailwind-variants/dist/config").TVConfig<{
|
|
149
|
+
isSelected: {
|
|
150
|
+
true: "";
|
|
151
|
+
false: "";
|
|
152
|
+
};
|
|
153
|
+
isInvalid: {
|
|
154
|
+
true: "";
|
|
155
|
+
fasle: "";
|
|
156
|
+
};
|
|
157
|
+
isDisabled: {
|
|
158
|
+
true: "disabled";
|
|
159
|
+
false: "";
|
|
160
|
+
};
|
|
161
|
+
isRoundedLeft: {
|
|
162
|
+
true: "rounded-l-full";
|
|
163
|
+
false: "";
|
|
164
|
+
};
|
|
165
|
+
isRoundedRight: {
|
|
166
|
+
true: "rounded-r-full";
|
|
167
|
+
false: "";
|
|
168
|
+
};
|
|
169
|
+
}, {
|
|
170
|
+
isSelected: {
|
|
171
|
+
true: "";
|
|
172
|
+
false: "";
|
|
173
|
+
};
|
|
174
|
+
isInvalid: {
|
|
175
|
+
true: "";
|
|
176
|
+
fasle: "";
|
|
177
|
+
};
|
|
178
|
+
isDisabled: {
|
|
179
|
+
true: "disabled";
|
|
180
|
+
false: "";
|
|
181
|
+
};
|
|
182
|
+
isRoundedLeft: {
|
|
183
|
+
true: "rounded-l-full";
|
|
184
|
+
false: "";
|
|
185
|
+
};
|
|
186
|
+
isRoundedRight: {
|
|
187
|
+
true: "rounded-r-full";
|
|
188
|
+
false: "";
|
|
189
|
+
};
|
|
190
|
+
}>, unknown, unknown, undefined>>;
|
|
137
191
|
export declare const calendarCellFormattedDate: import("tailwind-variants").TVReturnType<{
|
|
138
192
|
isSelected: {
|
|
139
193
|
true: "";
|
|
@@ -234,4 +288,79 @@ export declare const calendarCellFormattedDate: import("tailwind-variants").TVRe
|
|
|
234
288
|
true: "";
|
|
235
289
|
false: "";
|
|
236
290
|
};
|
|
237
|
-
}, undefined
|
|
291
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
292
|
+
isSelected: {
|
|
293
|
+
true: "";
|
|
294
|
+
false: "";
|
|
295
|
+
};
|
|
296
|
+
isInvalid: {
|
|
297
|
+
true: "";
|
|
298
|
+
fasle: "";
|
|
299
|
+
};
|
|
300
|
+
isDisabled: {
|
|
301
|
+
true: "";
|
|
302
|
+
false: "";
|
|
303
|
+
};
|
|
304
|
+
isFocusVisible: {
|
|
305
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
306
|
+
false: "";
|
|
307
|
+
};
|
|
308
|
+
isSelectionStart: {
|
|
309
|
+
true: "";
|
|
310
|
+
false: "";
|
|
311
|
+
};
|
|
312
|
+
isSelectionEnd: {
|
|
313
|
+
true: "";
|
|
314
|
+
false: "";
|
|
315
|
+
};
|
|
316
|
+
}, undefined, "w-full h-full rounded-full flex items-center justify-center cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
|
|
317
|
+
isSelected: {
|
|
318
|
+
true: "";
|
|
319
|
+
false: "";
|
|
320
|
+
};
|
|
321
|
+
isInvalid: {
|
|
322
|
+
true: "";
|
|
323
|
+
fasle: "";
|
|
324
|
+
};
|
|
325
|
+
isDisabled: {
|
|
326
|
+
true: "";
|
|
327
|
+
false: "";
|
|
328
|
+
};
|
|
329
|
+
isFocusVisible: {
|
|
330
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
331
|
+
false: "";
|
|
332
|
+
};
|
|
333
|
+
isSelectionStart: {
|
|
334
|
+
true: "";
|
|
335
|
+
false: "";
|
|
336
|
+
};
|
|
337
|
+
isSelectionEnd: {
|
|
338
|
+
true: "";
|
|
339
|
+
false: "";
|
|
340
|
+
};
|
|
341
|
+
}, {
|
|
342
|
+
isSelected: {
|
|
343
|
+
true: "";
|
|
344
|
+
false: "";
|
|
345
|
+
};
|
|
346
|
+
isInvalid: {
|
|
347
|
+
true: "";
|
|
348
|
+
fasle: "";
|
|
349
|
+
};
|
|
350
|
+
isDisabled: {
|
|
351
|
+
true: "";
|
|
352
|
+
false: "";
|
|
353
|
+
};
|
|
354
|
+
isFocusVisible: {
|
|
355
|
+
true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
|
|
356
|
+
false: "";
|
|
357
|
+
};
|
|
358
|
+
isSelectionStart: {
|
|
359
|
+
true: "";
|
|
360
|
+
false: "";
|
|
361
|
+
};
|
|
362
|
+
isSelectionEnd: {
|
|
363
|
+
true: "";
|
|
364
|
+
false: "";
|
|
365
|
+
};
|
|
366
|
+
}>, unknown, unknown, undefined>>;
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
export declare const carouselContainer: import("tailwind-variants").TVReturnType<import("tailwind-variants").
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
} | undefined;
|
|
5
|
-
} | {}, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]"> | {}, undefined>;
|
|
6
|
-
export declare const carouselSlideContainer: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-center m-auto px-8 w-full h-full"> | {
|
|
7
|
-
[x: string]: {
|
|
8
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "flex justify-center m-auto px-8 w-full h-full">;
|
|
9
|
-
} | undefined;
|
|
10
|
-
} | {}, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-center m-auto px-8 w-full h-full"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-center m-auto px-8 w-full h-full"> | {}, undefined>;
|
|
11
|
-
export declare const carouselNavigationButtons: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "bg-color-1-500 rounded-full p-4 text-white"> | {
|
|
12
|
-
[x: string]: {
|
|
13
|
-
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "bg-color-1-500 rounded-full p-4 text-white">;
|
|
14
|
-
} | undefined;
|
|
15
|
-
} | {}, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "bg-color-1-500 rounded-full p-4 text-white"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "bg-color-1-500 rounded-full p-4 text-white"> | {}, undefined>;
|
|
1
|
+
export declare const carouselContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
2
|
+
export declare const carouselSlideContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|
|
3
|
+
export declare const carouselNavigationButtons: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
|