@andrilla/mado-ui 1.0.4 → 1.0.6
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/client/components/index.js +77 -149
- package/dist/client/graphics/index.js +76 -17
- package/dist/client.js +141 -183
- package/dist/components/button.d.ts +0 -59
- package/dist/components/index.js +77 -149
- package/dist/components/link.d.ts +0 -71
- package/dist/css/base.css +49 -0
- package/dist/css/index.css +6 -4561
- package/dist/css/theme.css +66 -0
- package/dist/css/utilities.css +329 -0
- package/dist/graphics/index.js +76 -17
- package/dist/index.js +141 -183
- package/dist/utils/custom-tailwind-merge.d.ts +2 -2
- package/dist/utils/index.js +140 -51
- package/package.json +2 -2
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
--animate-fade-in: fade-in var(--tw-animation-duration, 0.2s)
|
|
3
|
+
var(--tw-animation-timing-function, cubic-bezier(0.25, 0.5, 0, 0.99))
|
|
4
|
+
var(--tw-animation-fill-mode, forwards);
|
|
5
|
+
|
|
6
|
+
@keyframes fade-in {
|
|
7
|
+
from {
|
|
8
|
+
opacity: 0;
|
|
9
|
+
}
|
|
10
|
+
to {
|
|
11
|
+
opacity: 1;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
--animate-wave: wave var(--tw-animation-duration, 3s)
|
|
16
|
+
var(--tw-animation-timing-function, ease-in-out)
|
|
17
|
+
var(--tw-animation-iteration-count, infinite);
|
|
18
|
+
|
|
19
|
+
@keyframes wave {
|
|
20
|
+
0%,
|
|
21
|
+
15%,
|
|
22
|
+
85%,
|
|
23
|
+
100% {
|
|
24
|
+
transform: translateY(0);
|
|
25
|
+
}
|
|
26
|
+
35% {
|
|
27
|
+
transform: translateY(-3px);
|
|
28
|
+
}
|
|
29
|
+
65% {
|
|
30
|
+
transform: translateY(3px);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
--animation-direction-normal: normal;
|
|
35
|
+
--animation-direction-reverse: reverse;
|
|
36
|
+
--animation-direction-alternate: alternate;
|
|
37
|
+
--animation-direction-alternate-reverse: alternate-reverse;
|
|
38
|
+
|
|
39
|
+
--animation-fill-none: none;
|
|
40
|
+
--animation-fill-forwards: forwards;
|
|
41
|
+
--animation-fill-backwards: backwards;
|
|
42
|
+
--animation-fill-both: both;
|
|
43
|
+
|
|
44
|
+
--animation-iteration-infinite: infinite;
|
|
45
|
+
|
|
46
|
+
--animation-range-start-contain: contain;
|
|
47
|
+
--animation-range-start-cover: cover;
|
|
48
|
+
--animation-range-start-normal: normal;
|
|
49
|
+
|
|
50
|
+
--animation-state-paused: paused;
|
|
51
|
+
--animation-state-running: running;
|
|
52
|
+
|
|
53
|
+
--corner-shape-bevel: bevel;
|
|
54
|
+
--corner-shape-notch: notch;
|
|
55
|
+
--corner-shape-round: round;
|
|
56
|
+
--corner-shape-scoop: scoop;
|
|
57
|
+
--corner-shape-square: square;
|
|
58
|
+
--corner-shape-squircle: squircle;
|
|
59
|
+
--corner-shape-infinity: superellipse(infinity);
|
|
60
|
+
|
|
61
|
+
--ease-exponential: cubic-bezier(0.25, 0.5, 0, 0.99);
|
|
62
|
+
--ease-spring: cubic-bezier(0.35, 1.67, 0.44, 0.78);
|
|
63
|
+
|
|
64
|
+
--text-smaller: smaller;
|
|
65
|
+
--text-larger: larger;
|
|
66
|
+
}
|
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
@utility animation-delay-* {
|
|
2
|
+
--tw-animation-delay: --value([*]);
|
|
3
|
+
/* prettier-ignore */
|
|
4
|
+
--tw-animation-delay: --value(integer)ms;
|
|
5
|
+
animation-delay: var(--tw-animation-delay);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@utility animation-direction-* {
|
|
9
|
+
--tw-animation-direction: --value(--animation-direction-*);
|
|
10
|
+
animation-direction: var(--tw-animation-direction);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@utility animation-duration-* {
|
|
14
|
+
--tw-animation-duration: --value([*]);
|
|
15
|
+
/* prettier-ignore */
|
|
16
|
+
--tw-animation-duration: --value(integer)ms;
|
|
17
|
+
animation-duration: var(--tw-animation-duration);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@utility animation-ease-* {
|
|
21
|
+
--tw-animation-timing-function: --value(--ease-*, [*]);
|
|
22
|
+
animation-timing-function: var(--tw-animation-timing-function);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@utility animation-fill-* {
|
|
26
|
+
--tw-animation-fill-mode: --value(--animation-fill-*);
|
|
27
|
+
animation-fill-mode: var(--tw-animation-fill-mode);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@utility animation-iteration-* {
|
|
31
|
+
--tw-animation-iteration-count: --value(--animation-iteration-*, integer);
|
|
32
|
+
animation-iteration-count: var(--tw-animation-iteration-count);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@utility animation-start-* {
|
|
36
|
+
--tw-animation-range-start: --value(--animation-range-start-*, [*]);
|
|
37
|
+
/* prettier-ignore */
|
|
38
|
+
--tw-animation-range-start: --value(number)px;
|
|
39
|
+
--tw-animation-range-start: --value(percentage);
|
|
40
|
+
animation-range-start: var(--tw-animation-range-start);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@utility animation-state-* {
|
|
44
|
+
--tw-animation-state: --value(--animation-state-*);
|
|
45
|
+
animation-play-state: var(--tw-animation-state);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@utility corner-* {
|
|
49
|
+
corner-shape: --value(--corner-shape-*, [*]);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@utility corner-s-* {
|
|
53
|
+
corner-start-start-shape: --value(--corner-shape-*, [*]);
|
|
54
|
+
corner-end-start-shape: --value(--corner-shape-*, [*]);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@utility corner-e-* {
|
|
58
|
+
corner-start-end-shape: --value(--corner-shape-*, [*]);
|
|
59
|
+
corner-end-end-shape: --value(--corner-shape-*, [*]);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@utility corner-t-* {
|
|
63
|
+
corner-top-left-shape: --value(--corner-shape-*, [*]);
|
|
64
|
+
corner-top-right-shape: --value(--corner-shape-*, [*]);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@utility corner-r-* {
|
|
68
|
+
corner-top-right-shape: --value(--corner-shape-*, [*]);
|
|
69
|
+
corner-bottom-right-shape: --value(--corner-shape-*, [*]);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@utility corner-b-* {
|
|
73
|
+
corner-bottom-left-shape: --value(--corner-shape-*, [*]);
|
|
74
|
+
corner-bottom-right-shape: --value(--corner-shape-*, [*]);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@utility corner-l-* {
|
|
78
|
+
corner-top-left-shape: --value(--corner-shape-*, [*]);
|
|
79
|
+
corner-bottom-left-shape: --value(--corner-shape-*, [*]);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@utility corner-ss-* {
|
|
83
|
+
corner-start-start-shape: --value(--corner-shape-*, [*]);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@utility corner-se-* {
|
|
87
|
+
corner-start-end-shape: --value(--corner-shape-*, [*]);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@utility corner-es-* {
|
|
91
|
+
corner-end-start-shape: --value(--corner-shape-*, [*]);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@utility corner-tl-* {
|
|
95
|
+
corner-top-left-shape: --value(--corner-shape-*, [*]);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
@utility corner-tr-* {
|
|
99
|
+
corner-top-right-shape: --value(--corner-shape-*, [*]);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@utility corner-br-* {
|
|
103
|
+
corner-bottom-right-shape: --value(--corner-shape-*, [*]);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
@utility corner-bl-* {
|
|
107
|
+
corner-bottom-left-shape: --value(--corner-shape-*, [*]);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@utility -corner-infinity {
|
|
111
|
+
corner-shape: superellipse(-infinity);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@utility -corner-s-infinity {
|
|
115
|
+
corner-start-start-shape: superellipse(-infinity);
|
|
116
|
+
corner-end-start-shape: superellipse(-infinity);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
@utility -corner-e-infinity {
|
|
120
|
+
corner-start-end-shape: superellipse(-infinity);
|
|
121
|
+
corner-end-end-shape: superellipse(-infinity);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
@utility -corner-t-infinity {
|
|
125
|
+
corner-top-left-shape: superellipse(-infinity);
|
|
126
|
+
corner-top-right-shape: superellipse(-infinity);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
@utility -corner-r-infinity {
|
|
130
|
+
corner-top-right-shape: superellipse(-infinity);
|
|
131
|
+
corner-bottom-right-shape: superellipse(-infinity);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
@utility -corner-b-infinity {
|
|
135
|
+
corner-bottom-left-shape: superellipse(-infinity);
|
|
136
|
+
corner-bottom-right-shape: superellipse(-infinity);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@utility -corner-l-infinity {
|
|
140
|
+
corner-top-left-shape: superellipse(-infinity);
|
|
141
|
+
corner-bottom-left-shape: superellipse(-infinity);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
@utility -corner-ss-infinity {
|
|
145
|
+
corner-start-start-shape: superellipse(-infinity);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
@utility -corner-se-infinity {
|
|
149
|
+
corner-start-end-shape: superellipse(-infinity);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
@utility -corner-es-infinity {
|
|
153
|
+
corner-end-start-shape: superellipse(-infinity);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
@utility -corner-tl-infinity {
|
|
157
|
+
corner-top-left-shape: superellipse(-infinity);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
@utility -corner-tr-infinity {
|
|
161
|
+
corner-top-right-shape: superellipse(-infinity);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
@utility -corner-br-infinity {
|
|
165
|
+
corner-bottom-right-shape: superellipse(-infinity);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@utility -corner-bl-infinity {
|
|
169
|
+
corner-bottom-left-shape: superellipse(-infinity);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
@utility corner-super-* {
|
|
173
|
+
corner-shape: superellipse(--value(number));
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
@utility corner-s-super-* {
|
|
177
|
+
corner-start-start-shape: superellipse(--value(number));
|
|
178
|
+
corner-end-start-shape: superellipse(--value(number));
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
@utility corner-e-super-* {
|
|
182
|
+
corner-start-end-shape: superellipse(--value(number));
|
|
183
|
+
corner-end-end-shape: superellipse(--value(number));
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
@utility corner-t-super-* {
|
|
187
|
+
corner-top-left-shape: superellipse(--value(number));
|
|
188
|
+
corner-top-right-shape: superellipse(--value(number));
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
@utility corner-r-super-* {
|
|
192
|
+
corner-top-right-shape: superellipse(--value(number));
|
|
193
|
+
corner-bottom-right-shape: superellipse(--value(number));
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
@utility corner-b-super-* {
|
|
197
|
+
corner-bottom-left-shape: superellipse(--value(number));
|
|
198
|
+
corner-bottom-right-shape: superellipse(--value(number));
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
@utility corner-l-super-* {
|
|
202
|
+
corner-top-left-shape: superellipse(--value(number));
|
|
203
|
+
corner-bottom-left-shape: superellipse(--value(number));
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@utility corner-ss-super-* {
|
|
207
|
+
corner-start-start-shape: superellipse(--value(number));
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
@utility corner-se-super-* {
|
|
211
|
+
corner-start-end-shape: superellipse(--value(number));
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
@utility corner-es-super-* {
|
|
215
|
+
corner-end-start-shape: superellipse(--value(number));
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
@utility corner-tl-super-* {
|
|
219
|
+
corner-top-left-shape: superellipse(--value(number));
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
@utility corner-tr-super-* {
|
|
223
|
+
corner-top-right-shape: superellipse(--value(number));
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
@utility corner-br-super-* {
|
|
227
|
+
corner-bottom-right-shape: superellipse(--value(number));
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
@utility corner-bl-super-* {
|
|
231
|
+
corner-bottom-left-shape: superellipse(--value(number));
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
@utility -corner-super-* {
|
|
235
|
+
corner-shape: superellipse(calc(--value(number) * -1));
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
@utility -corner-s-super-* {
|
|
239
|
+
corner-start-start-shape: superellipse(calc(--value(number) * -1));
|
|
240
|
+
corner-end-start-shape: superellipse(calc(--value(number) * -1));
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
@utility -corner-e-super-* {
|
|
244
|
+
corner-start-end-shape: superellipse(calc(--value(number) * -1));
|
|
245
|
+
corner-end-end-shape: superellipse(calc(--value(number) * -1));
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
@utility -corner-t-super-* {
|
|
249
|
+
corner-top-left-shape: superellipse(calc(--value(number) * -1));
|
|
250
|
+
corner-top-right-shape: superellipse(calc(--value(number) * -1));
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
@utility -corner-r-super-* {
|
|
254
|
+
corner-top-right-shape: superellipse(calc(--value(number) * -1));
|
|
255
|
+
corner-bottom-right-shape: superellipse(calc(--value(number) * -1));
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
@utility -corner-b-super-* {
|
|
259
|
+
corner-bottom-left-shape: superellipse(calc(--value(number) * -1));
|
|
260
|
+
corner-bottom-right-shape: superellipse(calc(--value(number) * -1));
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
@utility -corner-l-super-* {
|
|
264
|
+
corner-top-left-shape: superellipse(calc(--value(number) * -1));
|
|
265
|
+
corner-bottom-left-shape: superellipse(calc(--value(number) * -1));
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@utility -corner-ss-super-* {
|
|
269
|
+
corner-start-start-shape: superellipse(calc(--value(number) * -1));
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
@utility -corner-se-super-* {
|
|
273
|
+
corner-start-end-shape: superellipse(calc(--value(number) * -1));
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
@utility -corner-es-super-* {
|
|
277
|
+
corner-end-start-shape: superellipse(calc(--value(number) * -1));
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
@utility -corner-tl-super-* {
|
|
281
|
+
corner-top-left-shape: superellipse(calc(--value(number) * -1));
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
@utility -corner-tr-super-* {
|
|
285
|
+
corner-top-right-shape: superellipse(calc(--value(number) * -1));
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
@utility -corner-br-super-* {
|
|
289
|
+
corner-bottom-right-shape: superellipse(calc(--value(number) * -1));
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
@utility -corner-bl-super-* {
|
|
293
|
+
corner-bottom-left-shape: superellipse(calc(--value(number) * -1));
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
@utility gap-* {
|
|
297
|
+
--tw-gap: --value([*]);
|
|
298
|
+
--tw-gap-x: --value([*]);
|
|
299
|
+
--tw-gap-y: --value([*]);
|
|
300
|
+
--tw-gap: calc(var(--spacing) * --value(number));
|
|
301
|
+
--tw-gap-x: var(--tw-gap, calc(var(--spacing) * --value(number)));
|
|
302
|
+
--tw-gap-y: var(--tw-gap, calc(var(--spacing) * --value(number)));
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
@utility gap-x-* {
|
|
306
|
+
--tw-gap-x: --value([*]);
|
|
307
|
+
--tw-gap-x: calc(var(--spacing) * --value(number));
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
@utility gap-y-* {
|
|
311
|
+
--tw-gap-y: --value([*]);
|
|
312
|
+
--tw-gap-y: calc(var(--spacing) * --value(number));
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
@utility grid-rows-0fr {
|
|
316
|
+
grid-template-rows: 0fr;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
@utility grid-rows-1fr {
|
|
320
|
+
grid-template-rows: 1fr;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
@utility transition-cols {
|
|
324
|
+
transition-property: grid-template-columns;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
@utility transition-rows {
|
|
328
|
+
transition-property: grid-template-rows;
|
|
329
|
+
}
|
package/dist/graphics/index.js
CHANGED
|
@@ -2,22 +2,21 @@ import { extendTailwindMerge } from "tailwind-merge";
|
|
|
2
2
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/utils/custom-tailwind-merge.ts
|
|
5
|
-
const
|
|
5
|
+
const isInteger = (classPart) => /^\d+$/.test(classPart);
|
|
6
|
+
const isFloat = (classPart) => /^\d+\.\d+$/.test(classPart);
|
|
7
|
+
const isArbitraryValue = (classPart) => /^\[.+\]$/.test(classPart);
|
|
8
|
+
const cornerShapeList = [
|
|
9
|
+
"bevel",
|
|
10
|
+
"notch",
|
|
11
|
+
"round",
|
|
12
|
+
"scoop",
|
|
13
|
+
"square",
|
|
14
|
+
"squircle",
|
|
15
|
+
"infinity",
|
|
16
|
+
isArbitraryValue
|
|
17
|
+
];
|
|
6
18
|
const twMerge = extendTailwindMerge({ extend: { classGroups: {
|
|
7
|
-
animate: [{ animate: [
|
|
8
|
-
"bounce",
|
|
9
|
-
"double-spin",
|
|
10
|
-
"drop-in",
|
|
11
|
-
"flip",
|
|
12
|
-
"flip-again",
|
|
13
|
-
"grid-rows",
|
|
14
|
-
"heartbeat",
|
|
15
|
-
"ping",
|
|
16
|
-
"pulse",
|
|
17
|
-
"slide-up",
|
|
18
|
-
"spin",
|
|
19
|
-
"wave"
|
|
20
|
-
] }],
|
|
19
|
+
animate: [{ animate: ["fade-in", "wave"] }],
|
|
21
20
|
"animation-direction": [{ "animation-direction": [
|
|
22
21
|
"normal",
|
|
23
22
|
"reverse",
|
|
@@ -30,11 +29,71 @@ const twMerge = extendTailwindMerge({ extend: { classGroups: {
|
|
|
30
29
|
"backwards",
|
|
31
30
|
"both"
|
|
32
31
|
] }],
|
|
33
|
-
"animation-iteration": [{ "animation-iteration": [
|
|
32
|
+
"animation-iteration": [{ "animation-iteration": ["infinite", isInteger] }],
|
|
34
33
|
"animation-state": [{ "animation-state": ["running", "paused"] }],
|
|
34
|
+
corner: [{
|
|
35
|
+
corner: cornerShapeList,
|
|
36
|
+
"corner-super": [isFloat, isInteger],
|
|
37
|
+
"corner-s": cornerShapeList,
|
|
38
|
+
"corner-s-super": [isFloat, isInteger],
|
|
39
|
+
"corner-e": cornerShapeList,
|
|
40
|
+
"corner-e-super": [isFloat, isInteger],
|
|
41
|
+
"corner-t": cornerShapeList,
|
|
42
|
+
"corner-t-super": [isFloat, isInteger],
|
|
43
|
+
"corner-r": cornerShapeList,
|
|
44
|
+
"corner-r-super": [isFloat, isInteger],
|
|
45
|
+
"corner-b": cornerShapeList,
|
|
46
|
+
"corner-b-super": [isFloat, isInteger],
|
|
47
|
+
"corner-l": cornerShapeList,
|
|
48
|
+
"corner-l-super": [isFloat, isInteger],
|
|
49
|
+
"corner-ss": cornerShapeList,
|
|
50
|
+
"corner-ss-super": [isFloat, isInteger],
|
|
51
|
+
"corner-se": cornerShapeList,
|
|
52
|
+
"corner-se-super": [isFloat, isInteger],
|
|
53
|
+
"corner-es": cornerShapeList,
|
|
54
|
+
"corner-es-super": [isFloat, isInteger],
|
|
55
|
+
"corner-tl": cornerShapeList,
|
|
56
|
+
"corner-tl-super": [isFloat, isInteger],
|
|
57
|
+
"corner-tr": cornerShapeList,
|
|
58
|
+
"corner-tr-super": [isFloat, isInteger],
|
|
59
|
+
"corner-br": cornerShapeList,
|
|
60
|
+
"corner-br-super": [isFloat, isInteger],
|
|
61
|
+
"corner-bl": cornerShapeList,
|
|
62
|
+
"corner-bl-super": [isFloat, isInteger],
|
|
63
|
+
"-corner": ["infinity"],
|
|
64
|
+
"-corner-super": [isFloat, isInteger],
|
|
65
|
+
"-corner-s": ["infinity"],
|
|
66
|
+
"-corner-s-super": [isFloat, isInteger],
|
|
67
|
+
"-corner-e": ["infinity"],
|
|
68
|
+
"-corner-e-super": [isFloat, isInteger],
|
|
69
|
+
"-corner-t": ["infinity"],
|
|
70
|
+
"-corner-t-super": [isFloat, isInteger],
|
|
71
|
+
"-corner-r": ["infinity"],
|
|
72
|
+
"-corner-r-super": [isFloat, isInteger],
|
|
73
|
+
"-corner-b": ["infinity"],
|
|
74
|
+
"-corner-b-super": [isFloat, isInteger],
|
|
75
|
+
"-corner-l": ["infinity"],
|
|
76
|
+
"-corner-l-super": [isFloat, isInteger],
|
|
77
|
+
"-corner-ss": ["infinity"],
|
|
78
|
+
"-corner-ss-super": [isFloat, isInteger],
|
|
79
|
+
"-corner-se": ["infinity"],
|
|
80
|
+
"-corner-se-super": [isFloat, isInteger],
|
|
81
|
+
"-corner-es": ["infinity"],
|
|
82
|
+
"-corner-es-super": [isFloat, isInteger],
|
|
83
|
+
"-corner-tl": ["infinity"],
|
|
84
|
+
"-corner-tl-super": [isFloat, isInteger],
|
|
85
|
+
"-corner-tr": ["infinity"],
|
|
86
|
+
"-corner-tr-super": [isFloat, isInteger],
|
|
87
|
+
"-corner-br": ["infinity"],
|
|
88
|
+
"-corner-br-super": [isFloat, isInteger],
|
|
89
|
+
"-corner-bl": ["infinity"],
|
|
90
|
+
"-corner-bl-super": [isFloat, isInteger]
|
|
91
|
+
}],
|
|
92
|
+
ease: [{ ease: ["exponential", "spring"] }],
|
|
93
|
+
"font-size": [{ text: ["smaller", "larger"] }],
|
|
35
94
|
"grid-cols": [{ "grid-cols": ["0fr", "1fr"] }],
|
|
36
95
|
"grid-rows": [{ "grid-rows": ["0fr", "1fr"] }],
|
|
37
|
-
transition: ["transition-rows"]
|
|
96
|
+
transition: [{ transition: ["transition-cols", "transition-rows"] }]
|
|
38
97
|
} } });
|
|
39
98
|
|
|
40
99
|
//#endregion
|