@klu_dev/ui-klu-green 1.0.9 → 1.0.11
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/index.d.ts +27 -4
- package/dist/index.js +273 -2107
- package/dist/index.js.map +1 -0
- package/package.json +6 -9
- package/dist/components/ui/backButton.d.ts +0 -8
- package/dist/components/ui/backButton.d.ts.map +0 -1
- package/dist/components/ui/button.d.ts +0 -11
- package/dist/components/ui/button.d.ts.map +0 -1
- package/dist/components/ui/input.d.ts +0 -9
- package/dist/components/ui/input.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/lib/utils.d.ts +0 -3
- package/dist/lib/utils.d.ts.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,2110 +1,276 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
function r(e) {
|
|
10
|
-
var t, n, i = "";
|
|
11
|
-
if (typeof e == "string" || typeof e == "number") i += e;
|
|
12
|
-
else if (typeof e == "object") if (Array.isArray(e)) {
|
|
13
|
-
var a = e.length;
|
|
14
|
-
for (t = 0; t < a; t++) e[t] && (n = r(e[t])) && (i && (i += " "), i += n);
|
|
15
|
-
} else for (n in e) e[n] && (i && (i += " "), i += n);
|
|
16
|
-
return i;
|
|
1
|
+
// src/components/ui/input.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
|
|
4
|
+
// src/lib/utils.ts
|
|
5
|
+
import { clsx } from "clsx";
|
|
6
|
+
import { twMerge } from "tailwind-merge";
|
|
7
|
+
function cn(...inputs) {
|
|
8
|
+
return twMerge(clsx(inputs));
|
|
17
9
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
for (let t = 0; t < e.length; t++) n[t] = e[t];
|
|
27
|
-
for (let r = 0; r < t.length; r++) n[e.length + r] = t[r];
|
|
28
|
-
return n;
|
|
29
|
-
}, o = (e, t) => ({
|
|
30
|
-
classGroupId: e,
|
|
31
|
-
validator: t
|
|
32
|
-
}), s = (e = /* @__PURE__ */ new Map(), t = null, n) => ({
|
|
33
|
-
nextPart: e,
|
|
34
|
-
validators: t,
|
|
35
|
-
classGroupId: n
|
|
36
|
-
}), c = "-", l = [], u = "arbitrary..", ee = (e) => {
|
|
37
|
-
let t = p(e), { conflictingClassGroups: n, conflictingClassGroupModifiers: r } = e;
|
|
38
|
-
return {
|
|
39
|
-
getClassGroupId: (e) => {
|
|
40
|
-
if (e.startsWith("[") && e.endsWith("]")) return f(e);
|
|
41
|
-
let n = e.split(c);
|
|
42
|
-
return d(n, +(n[0] === "" && n.length > 1), t);
|
|
43
|
-
},
|
|
44
|
-
getConflictingClassGroupIds: (e, t) => {
|
|
45
|
-
if (t) {
|
|
46
|
-
let t = r[e], i = n[e];
|
|
47
|
-
return t ? i ? a(i, t) : t : i || l;
|
|
48
|
-
}
|
|
49
|
-
return n[e] || l;
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
}, d = (e, t, n) => {
|
|
53
|
-
if (e.length - t === 0) return n.classGroupId;
|
|
54
|
-
let r = e[t], i = n.nextPart.get(r);
|
|
55
|
-
if (i) {
|
|
56
|
-
let n = d(e, t + 1, i);
|
|
57
|
-
if (n) return n;
|
|
58
|
-
}
|
|
59
|
-
let a = n.validators;
|
|
60
|
-
if (a === null) return;
|
|
61
|
-
let o = t === 0 ? e.join(c) : e.slice(t).join(c), s = a.length;
|
|
62
|
-
for (let e = 0; e < s; e++) {
|
|
63
|
-
let t = a[e];
|
|
64
|
-
if (t.validator(o)) return t.classGroupId;
|
|
65
|
-
}
|
|
66
|
-
}, f = (e) => e.slice(1, -1).indexOf(":") === -1 ? void 0 : (() => {
|
|
67
|
-
let t = e.slice(1, -1), n = t.indexOf(":"), r = t.slice(0, n);
|
|
68
|
-
return r ? u + r : void 0;
|
|
69
|
-
})(), p = (e) => {
|
|
70
|
-
let { theme: t, classGroups: n } = e;
|
|
71
|
-
return m(n, t);
|
|
72
|
-
}, m = (e, t) => {
|
|
73
|
-
let n = s();
|
|
74
|
-
for (let r in e) {
|
|
75
|
-
let i = e[r];
|
|
76
|
-
h(i, n, r, t);
|
|
77
|
-
}
|
|
78
|
-
return n;
|
|
79
|
-
}, h = (e, t, n, r) => {
|
|
80
|
-
let i = e.length;
|
|
81
|
-
for (let a = 0; a < i; a++) {
|
|
82
|
-
let i = e[a];
|
|
83
|
-
g(i, t, n, r);
|
|
84
|
-
}
|
|
85
|
-
}, g = (e, t, n, r) => {
|
|
86
|
-
if (typeof e == "string") {
|
|
87
|
-
_(e, t, n);
|
|
88
|
-
return;
|
|
89
|
-
}
|
|
90
|
-
if (typeof e == "function") {
|
|
91
|
-
v(e, t, n, r);
|
|
92
|
-
return;
|
|
93
|
-
}
|
|
94
|
-
y(e, t, n, r);
|
|
95
|
-
}, _ = (e, t, n) => {
|
|
96
|
-
let r = e === "" ? t : b(t, e);
|
|
97
|
-
r.classGroupId = n;
|
|
98
|
-
}, v = (e, t, n, r) => {
|
|
99
|
-
if (x(e)) {
|
|
100
|
-
h(e(r), t, n, r);
|
|
101
|
-
return;
|
|
102
|
-
}
|
|
103
|
-
t.validators === null && (t.validators = []), t.validators.push(o(n, e));
|
|
104
|
-
}, y = (e, t, n, r) => {
|
|
105
|
-
let i = Object.entries(e), a = i.length;
|
|
106
|
-
for (let e = 0; e < a; e++) {
|
|
107
|
-
let [a, o] = i[e];
|
|
108
|
-
h(o, b(t, a), n, r);
|
|
109
|
-
}
|
|
110
|
-
}, b = (e, t) => {
|
|
111
|
-
let n = e, r = t.split(c), i = r.length;
|
|
112
|
-
for (let e = 0; e < i; e++) {
|
|
113
|
-
let t = r[e], i = n.nextPart.get(t);
|
|
114
|
-
i || (i = s(), n.nextPart.set(t, i)), n = i;
|
|
115
|
-
}
|
|
116
|
-
return n;
|
|
117
|
-
}, x = (e) => "isThemeGetter" in e && e.isThemeGetter === !0, S = (e) => {
|
|
118
|
-
if (e < 1) return {
|
|
119
|
-
get: () => void 0,
|
|
120
|
-
set: () => {}
|
|
121
|
-
};
|
|
122
|
-
let t = 0, n = Object.create(null), r = Object.create(null), i = (i, a) => {
|
|
123
|
-
n[i] = a, t++, t > e && (t = 0, r = n, n = Object.create(null));
|
|
124
|
-
};
|
|
125
|
-
return {
|
|
126
|
-
get(e) {
|
|
127
|
-
let t = n[e];
|
|
128
|
-
if (t !== void 0) return t;
|
|
129
|
-
if ((t = r[e]) !== void 0) return i(e, t), t;
|
|
130
|
-
},
|
|
131
|
-
set(e, t) {
|
|
132
|
-
e in n ? n[e] = t : i(e, t);
|
|
133
|
-
}
|
|
134
|
-
};
|
|
135
|
-
}, C = "!", w = ":", te = [], T = (e, t, n, r, i) => ({
|
|
136
|
-
modifiers: e,
|
|
137
|
-
hasImportantModifier: t,
|
|
138
|
-
baseClassName: n,
|
|
139
|
-
maybePostfixModifierPosition: r,
|
|
140
|
-
isExternal: i
|
|
141
|
-
}), E = (e) => {
|
|
142
|
-
let { prefix: t, experimentalParseClassName: n } = e, r = (e) => {
|
|
143
|
-
let t = [], n = 0, r = 0, i = 0, a, o = e.length;
|
|
144
|
-
for (let s = 0; s < o; s++) {
|
|
145
|
-
let o = e[s];
|
|
146
|
-
if (n === 0 && r === 0) {
|
|
147
|
-
if (o === w) {
|
|
148
|
-
t.push(e.slice(i, s)), i = s + 1;
|
|
149
|
-
continue;
|
|
150
|
-
}
|
|
151
|
-
if (o === "/") {
|
|
152
|
-
a = s;
|
|
153
|
-
continue;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
o === "[" ? n++ : o === "]" ? n-- : o === "(" ? r++ : o === ")" && r--;
|
|
157
|
-
}
|
|
158
|
-
let s = t.length === 0 ? e : e.slice(i), c = s, l = !1;
|
|
159
|
-
s.endsWith(C) ? (c = s.slice(0, -1), l = !0) : s.startsWith(C) && (c = s.slice(1), l = !0);
|
|
160
|
-
let u = a && a > i ? a - i : void 0;
|
|
161
|
-
return T(t, l, c, u);
|
|
162
|
-
};
|
|
163
|
-
if (t) {
|
|
164
|
-
let e = t + w, n = r;
|
|
165
|
-
r = (t) => t.startsWith(e) ? n(t.slice(e.length)) : T(te, !1, t, void 0, !0);
|
|
166
|
-
}
|
|
167
|
-
if (n) {
|
|
168
|
-
let e = r;
|
|
169
|
-
r = (t) => n({
|
|
170
|
-
className: t,
|
|
171
|
-
parseClassName: e
|
|
172
|
-
});
|
|
173
|
-
}
|
|
174
|
-
return r;
|
|
175
|
-
}, ne = (e) => {
|
|
176
|
-
let t = /* @__PURE__ */ new Map();
|
|
177
|
-
return e.orderSensitiveModifiers.forEach((e, n) => {
|
|
178
|
-
t.set(e, 1e6 + n);
|
|
179
|
-
}), (e) => {
|
|
180
|
-
let n = [], r = [];
|
|
181
|
-
for (let i = 0; i < e.length; i++) {
|
|
182
|
-
let a = e[i], o = a[0] === "[", s = t.has(a);
|
|
183
|
-
o || s ? (r.length > 0 && (r.sort(), n.push(...r), r = []), n.push(a)) : r.push(a);
|
|
184
|
-
}
|
|
185
|
-
return r.length > 0 && (r.sort(), n.push(...r)), n;
|
|
186
|
-
};
|
|
187
|
-
}, D = (e) => ({
|
|
188
|
-
cache: S(e.cacheSize),
|
|
189
|
-
parseClassName: E(e),
|
|
190
|
-
sortModifiers: ne(e),
|
|
191
|
-
...ee(e)
|
|
192
|
-
}), O = /\s+/, k = (e, t) => {
|
|
193
|
-
let { parseClassName: n, getClassGroupId: r, getConflictingClassGroupIds: i, sortModifiers: a } = t, o = [], s = e.trim().split(O), c = "";
|
|
194
|
-
for (let e = s.length - 1; e >= 0; --e) {
|
|
195
|
-
let t = s[e], { isExternal: l, modifiers: u, hasImportantModifier: ee, baseClassName: d, maybePostfixModifierPosition: f } = n(t);
|
|
196
|
-
if (l) {
|
|
197
|
-
c = t + (c.length > 0 ? " " + c : c);
|
|
198
|
-
continue;
|
|
199
|
-
}
|
|
200
|
-
let p = !!f, m = r(p ? d.substring(0, f) : d);
|
|
201
|
-
if (!m) {
|
|
202
|
-
if (!p) {
|
|
203
|
-
c = t + (c.length > 0 ? " " + c : c);
|
|
204
|
-
continue;
|
|
205
|
-
}
|
|
206
|
-
if (m = r(d), !m) {
|
|
207
|
-
c = t + (c.length > 0 ? " " + c : c);
|
|
208
|
-
continue;
|
|
209
|
-
}
|
|
210
|
-
p = !1;
|
|
211
|
-
}
|
|
212
|
-
let h = u.length === 0 ? "" : u.length === 1 ? u[0] : a(u).join(":"), g = ee ? h + C : h, _ = g + m;
|
|
213
|
-
if (o.indexOf(_) > -1) continue;
|
|
214
|
-
o.push(_);
|
|
215
|
-
let v = i(m, p);
|
|
216
|
-
for (let e = 0; e < v.length; ++e) {
|
|
217
|
-
let t = v[e];
|
|
218
|
-
o.push(g + t);
|
|
219
|
-
}
|
|
220
|
-
c = t + (c.length > 0 ? " " + c : c);
|
|
221
|
-
}
|
|
222
|
-
return c;
|
|
223
|
-
}, A = (...e) => {
|
|
224
|
-
let t = 0, n, r, i = "";
|
|
225
|
-
for (; t < e.length;) (n = e[t++]) && (r = j(n)) && (i && (i += " "), i += r);
|
|
226
|
-
return i;
|
|
227
|
-
}, j = (e) => {
|
|
228
|
-
if (typeof e == "string") return e;
|
|
229
|
-
let t, n = "";
|
|
230
|
-
for (let r = 0; r < e.length; r++) e[r] && (t = j(e[r])) && (n && (n += " "), n += t);
|
|
231
|
-
return n;
|
|
232
|
-
}, M = (e, ...t) => {
|
|
233
|
-
let n, r, i, a, o = (o) => (n = D(t.reduce((e, t) => t(e), e())), r = n.cache.get, i = n.cache.set, a = s, s(o)), s = (e) => {
|
|
234
|
-
let t = r(e);
|
|
235
|
-
if (t) return t;
|
|
236
|
-
let a = k(e, n);
|
|
237
|
-
return i(e, a), a;
|
|
238
|
-
};
|
|
239
|
-
return a = o, (...e) => a(A(...e));
|
|
240
|
-
}, N = [], P = (e) => {
|
|
241
|
-
let t = (t) => t[e] || N;
|
|
242
|
-
return t.isThemeGetter = !0, t;
|
|
243
|
-
}, F = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, re = /^\((?:(\w[\w-]*):)?(.+)\)$/i, ie = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/, ae = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, I = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, L = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, R = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, oe = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, z = (e) => ie.test(e), B = (e) => !!e && !Number.isNaN(Number(e)), V = (e) => !!e && Number.isInteger(Number(e)), se = (e) => e.endsWith("%") && B(e.slice(0, -1)), H = (e) => ae.test(e), ce = () => !0, U = (e) => I.test(e) && !L.test(e), W = () => !1, G = (e) => R.test(e), K = (e) => oe.test(e), le = (e) => !q(e) && !Y(e), ue = (e) => Z(e, Te, W), q = (e) => F.test(e), J = (e) => Z(e, Ee, U), de = (e) => Z(e, De, B), fe = (e) => Z(e, ke, ce), pe = (e) => Z(e, Oe, W), me = (e) => Z(e, Ce, W), he = (e) => Z(e, we, K), ge = (e) => Z(e, Ae, G), Y = (e) => re.test(e), X = (e) => Q(e, Ee), _e = (e) => Q(e, Oe), ve = (e) => Q(e, Ce), ye = (e) => Q(e, Te), be = (e) => Q(e, we), xe = (e) => Q(e, Ae, !0), Se = (e) => Q(e, ke, !0), Z = (e, t, n) => {
|
|
244
|
-
let r = F.exec(e);
|
|
245
|
-
return r ? r[1] ? t(r[1]) : n(r[2]) : !1;
|
|
246
|
-
}, Q = (e, t, n = !1) => {
|
|
247
|
-
let r = re.exec(e);
|
|
248
|
-
return r ? r[1] ? t(r[1]) : n : !1;
|
|
249
|
-
}, Ce = (e) => e === "position" || e === "percentage", we = (e) => e === "image" || e === "url", Te = (e) => e === "length" || e === "size" || e === "bg-size", Ee = (e) => e === "length", De = (e) => e === "number", Oe = (e) => e === "family-name", ke = (e) => e === "number" || e === "weight", Ae = (e) => e === "shadow", je = /* @__PURE__ */ M(() => {
|
|
250
|
-
let e = P("color"), t = P("font"), n = P("text"), r = P("font-weight"), i = P("tracking"), a = P("leading"), o = P("breakpoint"), s = P("container"), c = P("spacing"), l = P("radius"), u = P("shadow"), ee = P("inset-shadow"), d = P("text-shadow"), f = P("drop-shadow"), p = P("blur"), m = P("perspective"), h = P("aspect"), g = P("ease"), _ = P("animate"), v = () => [
|
|
251
|
-
"auto",
|
|
252
|
-
"avoid",
|
|
253
|
-
"all",
|
|
254
|
-
"avoid-page",
|
|
255
|
-
"page",
|
|
256
|
-
"left",
|
|
257
|
-
"right",
|
|
258
|
-
"column"
|
|
259
|
-
], y = () => [
|
|
260
|
-
"center",
|
|
261
|
-
"top",
|
|
262
|
-
"bottom",
|
|
263
|
-
"left",
|
|
264
|
-
"right",
|
|
265
|
-
"top-left",
|
|
266
|
-
"left-top",
|
|
267
|
-
"top-right",
|
|
268
|
-
"right-top",
|
|
269
|
-
"bottom-right",
|
|
270
|
-
"right-bottom",
|
|
271
|
-
"bottom-left",
|
|
272
|
-
"left-bottom"
|
|
273
|
-
], b = () => [
|
|
274
|
-
...y(),
|
|
275
|
-
Y,
|
|
276
|
-
q
|
|
277
|
-
], x = () => [
|
|
278
|
-
"auto",
|
|
279
|
-
"hidden",
|
|
280
|
-
"clip",
|
|
281
|
-
"visible",
|
|
282
|
-
"scroll"
|
|
283
|
-
], S = () => [
|
|
284
|
-
"auto",
|
|
285
|
-
"contain",
|
|
286
|
-
"none"
|
|
287
|
-
], C = () => [
|
|
288
|
-
Y,
|
|
289
|
-
q,
|
|
290
|
-
c
|
|
291
|
-
], w = () => [
|
|
292
|
-
z,
|
|
293
|
-
"full",
|
|
294
|
-
"auto",
|
|
295
|
-
...C()
|
|
296
|
-
], te = () => [
|
|
297
|
-
V,
|
|
298
|
-
"none",
|
|
299
|
-
"subgrid",
|
|
300
|
-
Y,
|
|
301
|
-
q
|
|
302
|
-
], T = () => [
|
|
303
|
-
"auto",
|
|
304
|
-
{ span: [
|
|
305
|
-
"full",
|
|
306
|
-
V,
|
|
307
|
-
Y,
|
|
308
|
-
q
|
|
309
|
-
] },
|
|
310
|
-
V,
|
|
311
|
-
Y,
|
|
312
|
-
q
|
|
313
|
-
], E = () => [
|
|
314
|
-
V,
|
|
315
|
-
"auto",
|
|
316
|
-
Y,
|
|
317
|
-
q
|
|
318
|
-
], ne = () => [
|
|
319
|
-
"auto",
|
|
320
|
-
"min",
|
|
321
|
-
"max",
|
|
322
|
-
"fr",
|
|
323
|
-
Y,
|
|
324
|
-
q
|
|
325
|
-
], D = () => [
|
|
326
|
-
"start",
|
|
327
|
-
"end",
|
|
328
|
-
"center",
|
|
329
|
-
"between",
|
|
330
|
-
"around",
|
|
331
|
-
"evenly",
|
|
332
|
-
"stretch",
|
|
333
|
-
"baseline",
|
|
334
|
-
"center-safe",
|
|
335
|
-
"end-safe"
|
|
336
|
-
], O = () => [
|
|
337
|
-
"start",
|
|
338
|
-
"end",
|
|
339
|
-
"center",
|
|
340
|
-
"stretch",
|
|
341
|
-
"center-safe",
|
|
342
|
-
"end-safe"
|
|
343
|
-
], k = () => ["auto", ...C()], A = () => [
|
|
344
|
-
z,
|
|
345
|
-
"auto",
|
|
346
|
-
"full",
|
|
347
|
-
"dvw",
|
|
348
|
-
"dvh",
|
|
349
|
-
"lvw",
|
|
350
|
-
"lvh",
|
|
351
|
-
"svw",
|
|
352
|
-
"svh",
|
|
353
|
-
"min",
|
|
354
|
-
"max",
|
|
355
|
-
"fit",
|
|
356
|
-
...C()
|
|
357
|
-
], j = () => [
|
|
358
|
-
z,
|
|
359
|
-
"screen",
|
|
360
|
-
"full",
|
|
361
|
-
"dvw",
|
|
362
|
-
"lvw",
|
|
363
|
-
"svw",
|
|
364
|
-
"min",
|
|
365
|
-
"max",
|
|
366
|
-
"fit",
|
|
367
|
-
...C()
|
|
368
|
-
], M = () => [
|
|
369
|
-
z,
|
|
370
|
-
"screen",
|
|
371
|
-
"full",
|
|
372
|
-
"lh",
|
|
373
|
-
"dvh",
|
|
374
|
-
"lvh",
|
|
375
|
-
"svh",
|
|
376
|
-
"min",
|
|
377
|
-
"max",
|
|
378
|
-
"fit",
|
|
379
|
-
...C()
|
|
380
|
-
], N = () => [
|
|
381
|
-
e,
|
|
382
|
-
Y,
|
|
383
|
-
q
|
|
384
|
-
], F = () => [
|
|
385
|
-
...y(),
|
|
386
|
-
ve,
|
|
387
|
-
me,
|
|
388
|
-
{ position: [Y, q] }
|
|
389
|
-
], re = () => ["no-repeat", { repeat: [
|
|
390
|
-
"",
|
|
391
|
-
"x",
|
|
392
|
-
"y",
|
|
393
|
-
"space",
|
|
394
|
-
"round"
|
|
395
|
-
] }], ie = () => [
|
|
396
|
-
"auto",
|
|
397
|
-
"cover",
|
|
398
|
-
"contain",
|
|
399
|
-
ye,
|
|
400
|
-
ue,
|
|
401
|
-
{ size: [Y, q] }
|
|
402
|
-
], ae = () => [
|
|
403
|
-
se,
|
|
404
|
-
X,
|
|
405
|
-
J
|
|
406
|
-
], I = () => [
|
|
407
|
-
"",
|
|
408
|
-
"none",
|
|
409
|
-
"full",
|
|
410
|
-
l,
|
|
411
|
-
Y,
|
|
412
|
-
q
|
|
413
|
-
], L = () => [
|
|
414
|
-
"",
|
|
415
|
-
B,
|
|
416
|
-
X,
|
|
417
|
-
J
|
|
418
|
-
], R = () => [
|
|
419
|
-
"solid",
|
|
420
|
-
"dashed",
|
|
421
|
-
"dotted",
|
|
422
|
-
"double"
|
|
423
|
-
], oe = () => [
|
|
424
|
-
"normal",
|
|
425
|
-
"multiply",
|
|
426
|
-
"screen",
|
|
427
|
-
"overlay",
|
|
428
|
-
"darken",
|
|
429
|
-
"lighten",
|
|
430
|
-
"color-dodge",
|
|
431
|
-
"color-burn",
|
|
432
|
-
"hard-light",
|
|
433
|
-
"soft-light",
|
|
434
|
-
"difference",
|
|
435
|
-
"exclusion",
|
|
436
|
-
"hue",
|
|
437
|
-
"saturation",
|
|
438
|
-
"color",
|
|
439
|
-
"luminosity"
|
|
440
|
-
], U = () => [
|
|
441
|
-
B,
|
|
442
|
-
se,
|
|
443
|
-
ve,
|
|
444
|
-
me
|
|
445
|
-
], W = () => [
|
|
446
|
-
"",
|
|
447
|
-
"none",
|
|
448
|
-
p,
|
|
449
|
-
Y,
|
|
450
|
-
q
|
|
451
|
-
], G = () => [
|
|
452
|
-
"none",
|
|
453
|
-
B,
|
|
454
|
-
Y,
|
|
455
|
-
q
|
|
456
|
-
], K = () => [
|
|
457
|
-
"none",
|
|
458
|
-
B,
|
|
459
|
-
Y,
|
|
460
|
-
q
|
|
461
|
-
], Z = () => [
|
|
462
|
-
B,
|
|
463
|
-
Y,
|
|
464
|
-
q
|
|
465
|
-
], Q = () => [
|
|
466
|
-
z,
|
|
467
|
-
"full",
|
|
468
|
-
...C()
|
|
469
|
-
];
|
|
470
|
-
return {
|
|
471
|
-
cacheSize: 500,
|
|
472
|
-
theme: {
|
|
473
|
-
animate: [
|
|
474
|
-
"spin",
|
|
475
|
-
"ping",
|
|
476
|
-
"pulse",
|
|
477
|
-
"bounce"
|
|
478
|
-
],
|
|
479
|
-
aspect: ["video"],
|
|
480
|
-
blur: [H],
|
|
481
|
-
breakpoint: [H],
|
|
482
|
-
color: [ce],
|
|
483
|
-
container: [H],
|
|
484
|
-
"drop-shadow": [H],
|
|
485
|
-
ease: [
|
|
486
|
-
"in",
|
|
487
|
-
"out",
|
|
488
|
-
"in-out"
|
|
489
|
-
],
|
|
490
|
-
font: [le],
|
|
491
|
-
"font-weight": [
|
|
492
|
-
"thin",
|
|
493
|
-
"extralight",
|
|
494
|
-
"light",
|
|
495
|
-
"normal",
|
|
496
|
-
"medium",
|
|
497
|
-
"semibold",
|
|
498
|
-
"bold",
|
|
499
|
-
"extrabold",
|
|
500
|
-
"black"
|
|
501
|
-
],
|
|
502
|
-
"inset-shadow": [H],
|
|
503
|
-
leading: [
|
|
504
|
-
"none",
|
|
505
|
-
"tight",
|
|
506
|
-
"snug",
|
|
507
|
-
"normal",
|
|
508
|
-
"relaxed",
|
|
509
|
-
"loose"
|
|
510
|
-
],
|
|
511
|
-
perspective: [
|
|
512
|
-
"dramatic",
|
|
513
|
-
"near",
|
|
514
|
-
"normal",
|
|
515
|
-
"midrange",
|
|
516
|
-
"distant",
|
|
517
|
-
"none"
|
|
518
|
-
],
|
|
519
|
-
radius: [H],
|
|
520
|
-
shadow: [H],
|
|
521
|
-
spacing: ["px", B],
|
|
522
|
-
text: [H],
|
|
523
|
-
"text-shadow": [H],
|
|
524
|
-
tracking: [
|
|
525
|
-
"tighter",
|
|
526
|
-
"tight",
|
|
527
|
-
"normal",
|
|
528
|
-
"wide",
|
|
529
|
-
"wider",
|
|
530
|
-
"widest"
|
|
531
|
-
]
|
|
532
|
-
},
|
|
533
|
-
classGroups: {
|
|
534
|
-
aspect: [{ aspect: [
|
|
535
|
-
"auto",
|
|
536
|
-
"square",
|
|
537
|
-
z,
|
|
538
|
-
q,
|
|
539
|
-
Y,
|
|
540
|
-
h
|
|
541
|
-
] }],
|
|
542
|
-
container: ["container"],
|
|
543
|
-
columns: [{ columns: [
|
|
544
|
-
B,
|
|
545
|
-
q,
|
|
546
|
-
Y,
|
|
547
|
-
s
|
|
548
|
-
] }],
|
|
549
|
-
"break-after": [{ "break-after": v() }],
|
|
550
|
-
"break-before": [{ "break-before": v() }],
|
|
551
|
-
"break-inside": [{ "break-inside": [
|
|
552
|
-
"auto",
|
|
553
|
-
"avoid",
|
|
554
|
-
"avoid-page",
|
|
555
|
-
"avoid-column"
|
|
556
|
-
] }],
|
|
557
|
-
"box-decoration": [{ "box-decoration": ["slice", "clone"] }],
|
|
558
|
-
box: [{ box: ["border", "content"] }],
|
|
559
|
-
display: [
|
|
560
|
-
"block",
|
|
561
|
-
"inline-block",
|
|
562
|
-
"inline",
|
|
563
|
-
"flex",
|
|
564
|
-
"inline-flex",
|
|
565
|
-
"table",
|
|
566
|
-
"inline-table",
|
|
567
|
-
"table-caption",
|
|
568
|
-
"table-cell",
|
|
569
|
-
"table-column",
|
|
570
|
-
"table-column-group",
|
|
571
|
-
"table-footer-group",
|
|
572
|
-
"table-header-group",
|
|
573
|
-
"table-row-group",
|
|
574
|
-
"table-row",
|
|
575
|
-
"flow-root",
|
|
576
|
-
"grid",
|
|
577
|
-
"inline-grid",
|
|
578
|
-
"contents",
|
|
579
|
-
"list-item",
|
|
580
|
-
"hidden"
|
|
581
|
-
],
|
|
582
|
-
sr: ["sr-only", "not-sr-only"],
|
|
583
|
-
float: [{ float: [
|
|
584
|
-
"right",
|
|
585
|
-
"left",
|
|
586
|
-
"none",
|
|
587
|
-
"start",
|
|
588
|
-
"end"
|
|
589
|
-
] }],
|
|
590
|
-
clear: [{ clear: [
|
|
591
|
-
"left",
|
|
592
|
-
"right",
|
|
593
|
-
"both",
|
|
594
|
-
"none",
|
|
595
|
-
"start",
|
|
596
|
-
"end"
|
|
597
|
-
] }],
|
|
598
|
-
isolation: ["isolate", "isolation-auto"],
|
|
599
|
-
"object-fit": [{ object: [
|
|
600
|
-
"contain",
|
|
601
|
-
"cover",
|
|
602
|
-
"fill",
|
|
603
|
-
"none",
|
|
604
|
-
"scale-down"
|
|
605
|
-
] }],
|
|
606
|
-
"object-position": [{ object: b() }],
|
|
607
|
-
overflow: [{ overflow: x() }],
|
|
608
|
-
"overflow-x": [{ "overflow-x": x() }],
|
|
609
|
-
"overflow-y": [{ "overflow-y": x() }],
|
|
610
|
-
overscroll: [{ overscroll: S() }],
|
|
611
|
-
"overscroll-x": [{ "overscroll-x": S() }],
|
|
612
|
-
"overscroll-y": [{ "overscroll-y": S() }],
|
|
613
|
-
position: [
|
|
614
|
-
"static",
|
|
615
|
-
"fixed",
|
|
616
|
-
"absolute",
|
|
617
|
-
"relative",
|
|
618
|
-
"sticky"
|
|
619
|
-
],
|
|
620
|
-
inset: [{ inset: w() }],
|
|
621
|
-
"inset-x": [{ "inset-x": w() }],
|
|
622
|
-
"inset-y": [{ "inset-y": w() }],
|
|
623
|
-
start: [{
|
|
624
|
-
"inset-s": w(),
|
|
625
|
-
start: w()
|
|
626
|
-
}],
|
|
627
|
-
end: [{
|
|
628
|
-
"inset-e": w(),
|
|
629
|
-
end: w()
|
|
630
|
-
}],
|
|
631
|
-
"inset-bs": [{ "inset-bs": w() }],
|
|
632
|
-
"inset-be": [{ "inset-be": w() }],
|
|
633
|
-
top: [{ top: w() }],
|
|
634
|
-
right: [{ right: w() }],
|
|
635
|
-
bottom: [{ bottom: w() }],
|
|
636
|
-
left: [{ left: w() }],
|
|
637
|
-
visibility: [
|
|
638
|
-
"visible",
|
|
639
|
-
"invisible",
|
|
640
|
-
"collapse"
|
|
641
|
-
],
|
|
642
|
-
z: [{ z: [
|
|
643
|
-
V,
|
|
644
|
-
"auto",
|
|
645
|
-
Y,
|
|
646
|
-
q
|
|
647
|
-
] }],
|
|
648
|
-
basis: [{ basis: [
|
|
649
|
-
z,
|
|
650
|
-
"full",
|
|
651
|
-
"auto",
|
|
652
|
-
s,
|
|
653
|
-
...C()
|
|
654
|
-
] }],
|
|
655
|
-
"flex-direction": [{ flex: [
|
|
656
|
-
"row",
|
|
657
|
-
"row-reverse",
|
|
658
|
-
"col",
|
|
659
|
-
"col-reverse"
|
|
660
|
-
] }],
|
|
661
|
-
"flex-wrap": [{ flex: [
|
|
662
|
-
"nowrap",
|
|
663
|
-
"wrap",
|
|
664
|
-
"wrap-reverse"
|
|
665
|
-
] }],
|
|
666
|
-
flex: [{ flex: [
|
|
667
|
-
B,
|
|
668
|
-
z,
|
|
669
|
-
"auto",
|
|
670
|
-
"initial",
|
|
671
|
-
"none",
|
|
672
|
-
q
|
|
673
|
-
] }],
|
|
674
|
-
grow: [{ grow: [
|
|
675
|
-
"",
|
|
676
|
-
B,
|
|
677
|
-
Y,
|
|
678
|
-
q
|
|
679
|
-
] }],
|
|
680
|
-
shrink: [{ shrink: [
|
|
681
|
-
"",
|
|
682
|
-
B,
|
|
683
|
-
Y,
|
|
684
|
-
q
|
|
685
|
-
] }],
|
|
686
|
-
order: [{ order: [
|
|
687
|
-
V,
|
|
688
|
-
"first",
|
|
689
|
-
"last",
|
|
690
|
-
"none",
|
|
691
|
-
Y,
|
|
692
|
-
q
|
|
693
|
-
] }],
|
|
694
|
-
"grid-cols": [{ "grid-cols": te() }],
|
|
695
|
-
"col-start-end": [{ col: T() }],
|
|
696
|
-
"col-start": [{ "col-start": E() }],
|
|
697
|
-
"col-end": [{ "col-end": E() }],
|
|
698
|
-
"grid-rows": [{ "grid-rows": te() }],
|
|
699
|
-
"row-start-end": [{ row: T() }],
|
|
700
|
-
"row-start": [{ "row-start": E() }],
|
|
701
|
-
"row-end": [{ "row-end": E() }],
|
|
702
|
-
"grid-flow": [{ "grid-flow": [
|
|
703
|
-
"row",
|
|
704
|
-
"col",
|
|
705
|
-
"dense",
|
|
706
|
-
"row-dense",
|
|
707
|
-
"col-dense"
|
|
708
|
-
] }],
|
|
709
|
-
"auto-cols": [{ "auto-cols": ne() }],
|
|
710
|
-
"auto-rows": [{ "auto-rows": ne() }],
|
|
711
|
-
gap: [{ gap: C() }],
|
|
712
|
-
"gap-x": [{ "gap-x": C() }],
|
|
713
|
-
"gap-y": [{ "gap-y": C() }],
|
|
714
|
-
"justify-content": [{ justify: [...D(), "normal"] }],
|
|
715
|
-
"justify-items": [{ "justify-items": [...O(), "normal"] }],
|
|
716
|
-
"justify-self": [{ "justify-self": ["auto", ...O()] }],
|
|
717
|
-
"align-content": [{ content: ["normal", ...D()] }],
|
|
718
|
-
"align-items": [{ items: [...O(), { baseline: ["", "last"] }] }],
|
|
719
|
-
"align-self": [{ self: [
|
|
720
|
-
"auto",
|
|
721
|
-
...O(),
|
|
722
|
-
{ baseline: ["", "last"] }
|
|
723
|
-
] }],
|
|
724
|
-
"place-content": [{ "place-content": D() }],
|
|
725
|
-
"place-items": [{ "place-items": [...O(), "baseline"] }],
|
|
726
|
-
"place-self": [{ "place-self": ["auto", ...O()] }],
|
|
727
|
-
p: [{ p: C() }],
|
|
728
|
-
px: [{ px: C() }],
|
|
729
|
-
py: [{ py: C() }],
|
|
730
|
-
ps: [{ ps: C() }],
|
|
731
|
-
pe: [{ pe: C() }],
|
|
732
|
-
pbs: [{ pbs: C() }],
|
|
733
|
-
pbe: [{ pbe: C() }],
|
|
734
|
-
pt: [{ pt: C() }],
|
|
735
|
-
pr: [{ pr: C() }],
|
|
736
|
-
pb: [{ pb: C() }],
|
|
737
|
-
pl: [{ pl: C() }],
|
|
738
|
-
m: [{ m: k() }],
|
|
739
|
-
mx: [{ mx: k() }],
|
|
740
|
-
my: [{ my: k() }],
|
|
741
|
-
ms: [{ ms: k() }],
|
|
742
|
-
me: [{ me: k() }],
|
|
743
|
-
mbs: [{ mbs: k() }],
|
|
744
|
-
mbe: [{ mbe: k() }],
|
|
745
|
-
mt: [{ mt: k() }],
|
|
746
|
-
mr: [{ mr: k() }],
|
|
747
|
-
mb: [{ mb: k() }],
|
|
748
|
-
ml: [{ ml: k() }],
|
|
749
|
-
"space-x": [{ "space-x": C() }],
|
|
750
|
-
"space-x-reverse": ["space-x-reverse"],
|
|
751
|
-
"space-y": [{ "space-y": C() }],
|
|
752
|
-
"space-y-reverse": ["space-y-reverse"],
|
|
753
|
-
size: [{ size: A() }],
|
|
754
|
-
"inline-size": [{ inline: ["auto", ...j()] }],
|
|
755
|
-
"min-inline-size": [{ "min-inline": ["auto", ...j()] }],
|
|
756
|
-
"max-inline-size": [{ "max-inline": ["none", ...j()] }],
|
|
757
|
-
"block-size": [{ block: ["auto", ...M()] }],
|
|
758
|
-
"min-block-size": [{ "min-block": ["auto", ...M()] }],
|
|
759
|
-
"max-block-size": [{ "max-block": ["none", ...M()] }],
|
|
760
|
-
w: [{ w: [
|
|
761
|
-
s,
|
|
762
|
-
"screen",
|
|
763
|
-
...A()
|
|
764
|
-
] }],
|
|
765
|
-
"min-w": [{ "min-w": [
|
|
766
|
-
s,
|
|
767
|
-
"screen",
|
|
768
|
-
"none",
|
|
769
|
-
...A()
|
|
770
|
-
] }],
|
|
771
|
-
"max-w": [{ "max-w": [
|
|
772
|
-
s,
|
|
773
|
-
"screen",
|
|
774
|
-
"none",
|
|
775
|
-
"prose",
|
|
776
|
-
{ screen: [o] },
|
|
777
|
-
...A()
|
|
778
|
-
] }],
|
|
779
|
-
h: [{ h: [
|
|
780
|
-
"screen",
|
|
781
|
-
"lh",
|
|
782
|
-
...A()
|
|
783
|
-
] }],
|
|
784
|
-
"min-h": [{ "min-h": [
|
|
785
|
-
"screen",
|
|
786
|
-
"lh",
|
|
787
|
-
"none",
|
|
788
|
-
...A()
|
|
789
|
-
] }],
|
|
790
|
-
"max-h": [{ "max-h": [
|
|
791
|
-
"screen",
|
|
792
|
-
"lh",
|
|
793
|
-
...A()
|
|
794
|
-
] }],
|
|
795
|
-
"font-size": [{ text: [
|
|
796
|
-
"base",
|
|
797
|
-
n,
|
|
798
|
-
X,
|
|
799
|
-
J
|
|
800
|
-
] }],
|
|
801
|
-
"font-smoothing": ["antialiased", "subpixel-antialiased"],
|
|
802
|
-
"font-style": ["italic", "not-italic"],
|
|
803
|
-
"font-weight": [{ font: [
|
|
804
|
-
r,
|
|
805
|
-
Se,
|
|
806
|
-
fe
|
|
807
|
-
] }],
|
|
808
|
-
"font-stretch": [{ "font-stretch": [
|
|
809
|
-
"ultra-condensed",
|
|
810
|
-
"extra-condensed",
|
|
811
|
-
"condensed",
|
|
812
|
-
"semi-condensed",
|
|
813
|
-
"normal",
|
|
814
|
-
"semi-expanded",
|
|
815
|
-
"expanded",
|
|
816
|
-
"extra-expanded",
|
|
817
|
-
"ultra-expanded",
|
|
818
|
-
se,
|
|
819
|
-
q
|
|
820
|
-
] }],
|
|
821
|
-
"font-family": [{ font: [
|
|
822
|
-
_e,
|
|
823
|
-
pe,
|
|
824
|
-
t
|
|
825
|
-
] }],
|
|
826
|
-
"font-features": [{ "font-features": [q] }],
|
|
827
|
-
"fvn-normal": ["normal-nums"],
|
|
828
|
-
"fvn-ordinal": ["ordinal"],
|
|
829
|
-
"fvn-slashed-zero": ["slashed-zero"],
|
|
830
|
-
"fvn-figure": ["lining-nums", "oldstyle-nums"],
|
|
831
|
-
"fvn-spacing": ["proportional-nums", "tabular-nums"],
|
|
832
|
-
"fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
|
|
833
|
-
tracking: [{ tracking: [
|
|
834
|
-
i,
|
|
835
|
-
Y,
|
|
836
|
-
q
|
|
837
|
-
] }],
|
|
838
|
-
"line-clamp": [{ "line-clamp": [
|
|
839
|
-
B,
|
|
840
|
-
"none",
|
|
841
|
-
Y,
|
|
842
|
-
de
|
|
843
|
-
] }],
|
|
844
|
-
leading: [{ leading: [a, ...C()] }],
|
|
845
|
-
"list-image": [{ "list-image": [
|
|
846
|
-
"none",
|
|
847
|
-
Y,
|
|
848
|
-
q
|
|
849
|
-
] }],
|
|
850
|
-
"list-style-position": [{ list: ["inside", "outside"] }],
|
|
851
|
-
"list-style-type": [{ list: [
|
|
852
|
-
"disc",
|
|
853
|
-
"decimal",
|
|
854
|
-
"none",
|
|
855
|
-
Y,
|
|
856
|
-
q
|
|
857
|
-
] }],
|
|
858
|
-
"text-alignment": [{ text: [
|
|
859
|
-
"left",
|
|
860
|
-
"center",
|
|
861
|
-
"right",
|
|
862
|
-
"justify",
|
|
863
|
-
"start",
|
|
864
|
-
"end"
|
|
865
|
-
] }],
|
|
866
|
-
"placeholder-color": [{ placeholder: N() }],
|
|
867
|
-
"text-color": [{ text: N() }],
|
|
868
|
-
"text-decoration": [
|
|
869
|
-
"underline",
|
|
870
|
-
"overline",
|
|
871
|
-
"line-through",
|
|
872
|
-
"no-underline"
|
|
873
|
-
],
|
|
874
|
-
"text-decoration-style": [{ decoration: [...R(), "wavy"] }],
|
|
875
|
-
"text-decoration-thickness": [{ decoration: [
|
|
876
|
-
B,
|
|
877
|
-
"from-font",
|
|
878
|
-
"auto",
|
|
879
|
-
Y,
|
|
880
|
-
J
|
|
881
|
-
] }],
|
|
882
|
-
"text-decoration-color": [{ decoration: N() }],
|
|
883
|
-
"underline-offset": [{ "underline-offset": [
|
|
884
|
-
B,
|
|
885
|
-
"auto",
|
|
886
|
-
Y,
|
|
887
|
-
q
|
|
888
|
-
] }],
|
|
889
|
-
"text-transform": [
|
|
890
|
-
"uppercase",
|
|
891
|
-
"lowercase",
|
|
892
|
-
"capitalize",
|
|
893
|
-
"normal-case"
|
|
894
|
-
],
|
|
895
|
-
"text-overflow": [
|
|
896
|
-
"truncate",
|
|
897
|
-
"text-ellipsis",
|
|
898
|
-
"text-clip"
|
|
899
|
-
],
|
|
900
|
-
"text-wrap": [{ text: [
|
|
901
|
-
"wrap",
|
|
902
|
-
"nowrap",
|
|
903
|
-
"balance",
|
|
904
|
-
"pretty"
|
|
905
|
-
] }],
|
|
906
|
-
indent: [{ indent: C() }],
|
|
907
|
-
"vertical-align": [{ align: [
|
|
908
|
-
"baseline",
|
|
909
|
-
"top",
|
|
910
|
-
"middle",
|
|
911
|
-
"bottom",
|
|
912
|
-
"text-top",
|
|
913
|
-
"text-bottom",
|
|
914
|
-
"sub",
|
|
915
|
-
"super",
|
|
916
|
-
Y,
|
|
917
|
-
q
|
|
918
|
-
] }],
|
|
919
|
-
whitespace: [{ whitespace: [
|
|
920
|
-
"normal",
|
|
921
|
-
"nowrap",
|
|
922
|
-
"pre",
|
|
923
|
-
"pre-line",
|
|
924
|
-
"pre-wrap",
|
|
925
|
-
"break-spaces"
|
|
926
|
-
] }],
|
|
927
|
-
break: [{ break: [
|
|
928
|
-
"normal",
|
|
929
|
-
"words",
|
|
930
|
-
"all",
|
|
931
|
-
"keep"
|
|
932
|
-
] }],
|
|
933
|
-
wrap: [{ wrap: [
|
|
934
|
-
"break-word",
|
|
935
|
-
"anywhere",
|
|
936
|
-
"normal"
|
|
937
|
-
] }],
|
|
938
|
-
hyphens: [{ hyphens: [
|
|
939
|
-
"none",
|
|
940
|
-
"manual",
|
|
941
|
-
"auto"
|
|
942
|
-
] }],
|
|
943
|
-
content: [{ content: [
|
|
944
|
-
"none",
|
|
945
|
-
Y,
|
|
946
|
-
q
|
|
947
|
-
] }],
|
|
948
|
-
"bg-attachment": [{ bg: [
|
|
949
|
-
"fixed",
|
|
950
|
-
"local",
|
|
951
|
-
"scroll"
|
|
952
|
-
] }],
|
|
953
|
-
"bg-clip": [{ "bg-clip": [
|
|
954
|
-
"border",
|
|
955
|
-
"padding",
|
|
956
|
-
"content",
|
|
957
|
-
"text"
|
|
958
|
-
] }],
|
|
959
|
-
"bg-origin": [{ "bg-origin": [
|
|
960
|
-
"border",
|
|
961
|
-
"padding",
|
|
962
|
-
"content"
|
|
963
|
-
] }],
|
|
964
|
-
"bg-position": [{ bg: F() }],
|
|
965
|
-
"bg-repeat": [{ bg: re() }],
|
|
966
|
-
"bg-size": [{ bg: ie() }],
|
|
967
|
-
"bg-image": [{ bg: [
|
|
968
|
-
"none",
|
|
969
|
-
{
|
|
970
|
-
linear: [
|
|
971
|
-
{ to: [
|
|
972
|
-
"t",
|
|
973
|
-
"tr",
|
|
974
|
-
"r",
|
|
975
|
-
"br",
|
|
976
|
-
"b",
|
|
977
|
-
"bl",
|
|
978
|
-
"l",
|
|
979
|
-
"tl"
|
|
980
|
-
] },
|
|
981
|
-
V,
|
|
982
|
-
Y,
|
|
983
|
-
q
|
|
984
|
-
],
|
|
985
|
-
radial: [
|
|
986
|
-
"",
|
|
987
|
-
Y,
|
|
988
|
-
q
|
|
989
|
-
],
|
|
990
|
-
conic: [
|
|
991
|
-
V,
|
|
992
|
-
Y,
|
|
993
|
-
q
|
|
994
|
-
]
|
|
995
|
-
},
|
|
996
|
-
be,
|
|
997
|
-
he
|
|
998
|
-
] }],
|
|
999
|
-
"bg-color": [{ bg: N() }],
|
|
1000
|
-
"gradient-from-pos": [{ from: ae() }],
|
|
1001
|
-
"gradient-via-pos": [{ via: ae() }],
|
|
1002
|
-
"gradient-to-pos": [{ to: ae() }],
|
|
1003
|
-
"gradient-from": [{ from: N() }],
|
|
1004
|
-
"gradient-via": [{ via: N() }],
|
|
1005
|
-
"gradient-to": [{ to: N() }],
|
|
1006
|
-
rounded: [{ rounded: I() }],
|
|
1007
|
-
"rounded-s": [{ "rounded-s": I() }],
|
|
1008
|
-
"rounded-e": [{ "rounded-e": I() }],
|
|
1009
|
-
"rounded-t": [{ "rounded-t": I() }],
|
|
1010
|
-
"rounded-r": [{ "rounded-r": I() }],
|
|
1011
|
-
"rounded-b": [{ "rounded-b": I() }],
|
|
1012
|
-
"rounded-l": [{ "rounded-l": I() }],
|
|
1013
|
-
"rounded-ss": [{ "rounded-ss": I() }],
|
|
1014
|
-
"rounded-se": [{ "rounded-se": I() }],
|
|
1015
|
-
"rounded-ee": [{ "rounded-ee": I() }],
|
|
1016
|
-
"rounded-es": [{ "rounded-es": I() }],
|
|
1017
|
-
"rounded-tl": [{ "rounded-tl": I() }],
|
|
1018
|
-
"rounded-tr": [{ "rounded-tr": I() }],
|
|
1019
|
-
"rounded-br": [{ "rounded-br": I() }],
|
|
1020
|
-
"rounded-bl": [{ "rounded-bl": I() }],
|
|
1021
|
-
"border-w": [{ border: L() }],
|
|
1022
|
-
"border-w-x": [{ "border-x": L() }],
|
|
1023
|
-
"border-w-y": [{ "border-y": L() }],
|
|
1024
|
-
"border-w-s": [{ "border-s": L() }],
|
|
1025
|
-
"border-w-e": [{ "border-e": L() }],
|
|
1026
|
-
"border-w-bs": [{ "border-bs": L() }],
|
|
1027
|
-
"border-w-be": [{ "border-be": L() }],
|
|
1028
|
-
"border-w-t": [{ "border-t": L() }],
|
|
1029
|
-
"border-w-r": [{ "border-r": L() }],
|
|
1030
|
-
"border-w-b": [{ "border-b": L() }],
|
|
1031
|
-
"border-w-l": [{ "border-l": L() }],
|
|
1032
|
-
"divide-x": [{ "divide-x": L() }],
|
|
1033
|
-
"divide-x-reverse": ["divide-x-reverse"],
|
|
1034
|
-
"divide-y": [{ "divide-y": L() }],
|
|
1035
|
-
"divide-y-reverse": ["divide-y-reverse"],
|
|
1036
|
-
"border-style": [{ border: [
|
|
1037
|
-
...R(),
|
|
1038
|
-
"hidden",
|
|
1039
|
-
"none"
|
|
1040
|
-
] }],
|
|
1041
|
-
"divide-style": [{ divide: [
|
|
1042
|
-
...R(),
|
|
1043
|
-
"hidden",
|
|
1044
|
-
"none"
|
|
1045
|
-
] }],
|
|
1046
|
-
"border-color": [{ border: N() }],
|
|
1047
|
-
"border-color-x": [{ "border-x": N() }],
|
|
1048
|
-
"border-color-y": [{ "border-y": N() }],
|
|
1049
|
-
"border-color-s": [{ "border-s": N() }],
|
|
1050
|
-
"border-color-e": [{ "border-e": N() }],
|
|
1051
|
-
"border-color-bs": [{ "border-bs": N() }],
|
|
1052
|
-
"border-color-be": [{ "border-be": N() }],
|
|
1053
|
-
"border-color-t": [{ "border-t": N() }],
|
|
1054
|
-
"border-color-r": [{ "border-r": N() }],
|
|
1055
|
-
"border-color-b": [{ "border-b": N() }],
|
|
1056
|
-
"border-color-l": [{ "border-l": N() }],
|
|
1057
|
-
"divide-color": [{ divide: N() }],
|
|
1058
|
-
"outline-style": [{ outline: [
|
|
1059
|
-
...R(),
|
|
1060
|
-
"none",
|
|
1061
|
-
"hidden"
|
|
1062
|
-
] }],
|
|
1063
|
-
"outline-offset": [{ "outline-offset": [
|
|
1064
|
-
B,
|
|
1065
|
-
Y,
|
|
1066
|
-
q
|
|
1067
|
-
] }],
|
|
1068
|
-
"outline-w": [{ outline: [
|
|
1069
|
-
"",
|
|
1070
|
-
B,
|
|
1071
|
-
X,
|
|
1072
|
-
J
|
|
1073
|
-
] }],
|
|
1074
|
-
"outline-color": [{ outline: N() }],
|
|
1075
|
-
shadow: [{ shadow: [
|
|
1076
|
-
"",
|
|
1077
|
-
"none",
|
|
1078
|
-
u,
|
|
1079
|
-
xe,
|
|
1080
|
-
ge
|
|
1081
|
-
] }],
|
|
1082
|
-
"shadow-color": [{ shadow: N() }],
|
|
1083
|
-
"inset-shadow": [{ "inset-shadow": [
|
|
1084
|
-
"none",
|
|
1085
|
-
ee,
|
|
1086
|
-
xe,
|
|
1087
|
-
ge
|
|
1088
|
-
] }],
|
|
1089
|
-
"inset-shadow-color": [{ "inset-shadow": N() }],
|
|
1090
|
-
"ring-w": [{ ring: L() }],
|
|
1091
|
-
"ring-w-inset": ["ring-inset"],
|
|
1092
|
-
"ring-color": [{ ring: N() }],
|
|
1093
|
-
"ring-offset-w": [{ "ring-offset": [B, J] }],
|
|
1094
|
-
"ring-offset-color": [{ "ring-offset": N() }],
|
|
1095
|
-
"inset-ring-w": [{ "inset-ring": L() }],
|
|
1096
|
-
"inset-ring-color": [{ "inset-ring": N() }],
|
|
1097
|
-
"text-shadow": [{ "text-shadow": [
|
|
1098
|
-
"none",
|
|
1099
|
-
d,
|
|
1100
|
-
xe,
|
|
1101
|
-
ge
|
|
1102
|
-
] }],
|
|
1103
|
-
"text-shadow-color": [{ "text-shadow": N() }],
|
|
1104
|
-
opacity: [{ opacity: [
|
|
1105
|
-
B,
|
|
1106
|
-
Y,
|
|
1107
|
-
q
|
|
1108
|
-
] }],
|
|
1109
|
-
"mix-blend": [{ "mix-blend": [
|
|
1110
|
-
...oe(),
|
|
1111
|
-
"plus-darker",
|
|
1112
|
-
"plus-lighter"
|
|
1113
|
-
] }],
|
|
1114
|
-
"bg-blend": [{ "bg-blend": oe() }],
|
|
1115
|
-
"mask-clip": [{ "mask-clip": [
|
|
1116
|
-
"border",
|
|
1117
|
-
"padding",
|
|
1118
|
-
"content",
|
|
1119
|
-
"fill",
|
|
1120
|
-
"stroke",
|
|
1121
|
-
"view"
|
|
1122
|
-
] }, "mask-no-clip"],
|
|
1123
|
-
"mask-composite": [{ mask: [
|
|
1124
|
-
"add",
|
|
1125
|
-
"subtract",
|
|
1126
|
-
"intersect",
|
|
1127
|
-
"exclude"
|
|
1128
|
-
] }],
|
|
1129
|
-
"mask-image-linear-pos": [{ "mask-linear": [B] }],
|
|
1130
|
-
"mask-image-linear-from-pos": [{ "mask-linear-from": U() }],
|
|
1131
|
-
"mask-image-linear-to-pos": [{ "mask-linear-to": U() }],
|
|
1132
|
-
"mask-image-linear-from-color": [{ "mask-linear-from": N() }],
|
|
1133
|
-
"mask-image-linear-to-color": [{ "mask-linear-to": N() }],
|
|
1134
|
-
"mask-image-t-from-pos": [{ "mask-t-from": U() }],
|
|
1135
|
-
"mask-image-t-to-pos": [{ "mask-t-to": U() }],
|
|
1136
|
-
"mask-image-t-from-color": [{ "mask-t-from": N() }],
|
|
1137
|
-
"mask-image-t-to-color": [{ "mask-t-to": N() }],
|
|
1138
|
-
"mask-image-r-from-pos": [{ "mask-r-from": U() }],
|
|
1139
|
-
"mask-image-r-to-pos": [{ "mask-r-to": U() }],
|
|
1140
|
-
"mask-image-r-from-color": [{ "mask-r-from": N() }],
|
|
1141
|
-
"mask-image-r-to-color": [{ "mask-r-to": N() }],
|
|
1142
|
-
"mask-image-b-from-pos": [{ "mask-b-from": U() }],
|
|
1143
|
-
"mask-image-b-to-pos": [{ "mask-b-to": U() }],
|
|
1144
|
-
"mask-image-b-from-color": [{ "mask-b-from": N() }],
|
|
1145
|
-
"mask-image-b-to-color": [{ "mask-b-to": N() }],
|
|
1146
|
-
"mask-image-l-from-pos": [{ "mask-l-from": U() }],
|
|
1147
|
-
"mask-image-l-to-pos": [{ "mask-l-to": U() }],
|
|
1148
|
-
"mask-image-l-from-color": [{ "mask-l-from": N() }],
|
|
1149
|
-
"mask-image-l-to-color": [{ "mask-l-to": N() }],
|
|
1150
|
-
"mask-image-x-from-pos": [{ "mask-x-from": U() }],
|
|
1151
|
-
"mask-image-x-to-pos": [{ "mask-x-to": U() }],
|
|
1152
|
-
"mask-image-x-from-color": [{ "mask-x-from": N() }],
|
|
1153
|
-
"mask-image-x-to-color": [{ "mask-x-to": N() }],
|
|
1154
|
-
"mask-image-y-from-pos": [{ "mask-y-from": U() }],
|
|
1155
|
-
"mask-image-y-to-pos": [{ "mask-y-to": U() }],
|
|
1156
|
-
"mask-image-y-from-color": [{ "mask-y-from": N() }],
|
|
1157
|
-
"mask-image-y-to-color": [{ "mask-y-to": N() }],
|
|
1158
|
-
"mask-image-radial": [{ "mask-radial": [Y, q] }],
|
|
1159
|
-
"mask-image-radial-from-pos": [{ "mask-radial-from": U() }],
|
|
1160
|
-
"mask-image-radial-to-pos": [{ "mask-radial-to": U() }],
|
|
1161
|
-
"mask-image-radial-from-color": [{ "mask-radial-from": N() }],
|
|
1162
|
-
"mask-image-radial-to-color": [{ "mask-radial-to": N() }],
|
|
1163
|
-
"mask-image-radial-shape": [{ "mask-radial": ["circle", "ellipse"] }],
|
|
1164
|
-
"mask-image-radial-size": [{ "mask-radial": [{
|
|
1165
|
-
closest: ["side", "corner"],
|
|
1166
|
-
farthest: ["side", "corner"]
|
|
1167
|
-
}] }],
|
|
1168
|
-
"mask-image-radial-pos": [{ "mask-radial-at": y() }],
|
|
1169
|
-
"mask-image-conic-pos": [{ "mask-conic": [B] }],
|
|
1170
|
-
"mask-image-conic-from-pos": [{ "mask-conic-from": U() }],
|
|
1171
|
-
"mask-image-conic-to-pos": [{ "mask-conic-to": U() }],
|
|
1172
|
-
"mask-image-conic-from-color": [{ "mask-conic-from": N() }],
|
|
1173
|
-
"mask-image-conic-to-color": [{ "mask-conic-to": N() }],
|
|
1174
|
-
"mask-mode": [{ mask: [
|
|
1175
|
-
"alpha",
|
|
1176
|
-
"luminance",
|
|
1177
|
-
"match"
|
|
1178
|
-
] }],
|
|
1179
|
-
"mask-origin": [{ "mask-origin": [
|
|
1180
|
-
"border",
|
|
1181
|
-
"padding",
|
|
1182
|
-
"content",
|
|
1183
|
-
"fill",
|
|
1184
|
-
"stroke",
|
|
1185
|
-
"view"
|
|
1186
|
-
] }],
|
|
1187
|
-
"mask-position": [{ mask: F() }],
|
|
1188
|
-
"mask-repeat": [{ mask: re() }],
|
|
1189
|
-
"mask-size": [{ mask: ie() }],
|
|
1190
|
-
"mask-type": [{ "mask-type": ["alpha", "luminance"] }],
|
|
1191
|
-
"mask-image": [{ mask: [
|
|
1192
|
-
"none",
|
|
1193
|
-
Y,
|
|
1194
|
-
q
|
|
1195
|
-
] }],
|
|
1196
|
-
filter: [{ filter: [
|
|
1197
|
-
"",
|
|
1198
|
-
"none",
|
|
1199
|
-
Y,
|
|
1200
|
-
q
|
|
1201
|
-
] }],
|
|
1202
|
-
blur: [{ blur: W() }],
|
|
1203
|
-
brightness: [{ brightness: [
|
|
1204
|
-
B,
|
|
1205
|
-
Y,
|
|
1206
|
-
q
|
|
1207
|
-
] }],
|
|
1208
|
-
contrast: [{ contrast: [
|
|
1209
|
-
B,
|
|
1210
|
-
Y,
|
|
1211
|
-
q
|
|
1212
|
-
] }],
|
|
1213
|
-
"drop-shadow": [{ "drop-shadow": [
|
|
1214
|
-
"",
|
|
1215
|
-
"none",
|
|
1216
|
-
f,
|
|
1217
|
-
xe,
|
|
1218
|
-
ge
|
|
1219
|
-
] }],
|
|
1220
|
-
"drop-shadow-color": [{ "drop-shadow": N() }],
|
|
1221
|
-
grayscale: [{ grayscale: [
|
|
1222
|
-
"",
|
|
1223
|
-
B,
|
|
1224
|
-
Y,
|
|
1225
|
-
q
|
|
1226
|
-
] }],
|
|
1227
|
-
"hue-rotate": [{ "hue-rotate": [
|
|
1228
|
-
B,
|
|
1229
|
-
Y,
|
|
1230
|
-
q
|
|
1231
|
-
] }],
|
|
1232
|
-
invert: [{ invert: [
|
|
1233
|
-
"",
|
|
1234
|
-
B,
|
|
1235
|
-
Y,
|
|
1236
|
-
q
|
|
1237
|
-
] }],
|
|
1238
|
-
saturate: [{ saturate: [
|
|
1239
|
-
B,
|
|
1240
|
-
Y,
|
|
1241
|
-
q
|
|
1242
|
-
] }],
|
|
1243
|
-
sepia: [{ sepia: [
|
|
1244
|
-
"",
|
|
1245
|
-
B,
|
|
1246
|
-
Y,
|
|
1247
|
-
q
|
|
1248
|
-
] }],
|
|
1249
|
-
"backdrop-filter": [{ "backdrop-filter": [
|
|
1250
|
-
"",
|
|
1251
|
-
"none",
|
|
1252
|
-
Y,
|
|
1253
|
-
q
|
|
1254
|
-
] }],
|
|
1255
|
-
"backdrop-blur": [{ "backdrop-blur": W() }],
|
|
1256
|
-
"backdrop-brightness": [{ "backdrop-brightness": [
|
|
1257
|
-
B,
|
|
1258
|
-
Y,
|
|
1259
|
-
q
|
|
1260
|
-
] }],
|
|
1261
|
-
"backdrop-contrast": [{ "backdrop-contrast": [
|
|
1262
|
-
B,
|
|
1263
|
-
Y,
|
|
1264
|
-
q
|
|
1265
|
-
] }],
|
|
1266
|
-
"backdrop-grayscale": [{ "backdrop-grayscale": [
|
|
1267
|
-
"",
|
|
1268
|
-
B,
|
|
1269
|
-
Y,
|
|
1270
|
-
q
|
|
1271
|
-
] }],
|
|
1272
|
-
"backdrop-hue-rotate": [{ "backdrop-hue-rotate": [
|
|
1273
|
-
B,
|
|
1274
|
-
Y,
|
|
1275
|
-
q
|
|
1276
|
-
] }],
|
|
1277
|
-
"backdrop-invert": [{ "backdrop-invert": [
|
|
1278
|
-
"",
|
|
1279
|
-
B,
|
|
1280
|
-
Y,
|
|
1281
|
-
q
|
|
1282
|
-
] }],
|
|
1283
|
-
"backdrop-opacity": [{ "backdrop-opacity": [
|
|
1284
|
-
B,
|
|
1285
|
-
Y,
|
|
1286
|
-
q
|
|
1287
|
-
] }],
|
|
1288
|
-
"backdrop-saturate": [{ "backdrop-saturate": [
|
|
1289
|
-
B,
|
|
1290
|
-
Y,
|
|
1291
|
-
q
|
|
1292
|
-
] }],
|
|
1293
|
-
"backdrop-sepia": [{ "backdrop-sepia": [
|
|
1294
|
-
"",
|
|
1295
|
-
B,
|
|
1296
|
-
Y,
|
|
1297
|
-
q
|
|
1298
|
-
] }],
|
|
1299
|
-
"border-collapse": [{ border: ["collapse", "separate"] }],
|
|
1300
|
-
"border-spacing": [{ "border-spacing": C() }],
|
|
1301
|
-
"border-spacing-x": [{ "border-spacing-x": C() }],
|
|
1302
|
-
"border-spacing-y": [{ "border-spacing-y": C() }],
|
|
1303
|
-
"table-layout": [{ table: ["auto", "fixed"] }],
|
|
1304
|
-
caption: [{ caption: ["top", "bottom"] }],
|
|
1305
|
-
transition: [{ transition: [
|
|
1306
|
-
"",
|
|
1307
|
-
"all",
|
|
1308
|
-
"colors",
|
|
1309
|
-
"opacity",
|
|
1310
|
-
"shadow",
|
|
1311
|
-
"transform",
|
|
1312
|
-
"none",
|
|
1313
|
-
Y,
|
|
1314
|
-
q
|
|
1315
|
-
] }],
|
|
1316
|
-
"transition-behavior": [{ transition: ["normal", "discrete"] }],
|
|
1317
|
-
duration: [{ duration: [
|
|
1318
|
-
B,
|
|
1319
|
-
"initial",
|
|
1320
|
-
Y,
|
|
1321
|
-
q
|
|
1322
|
-
] }],
|
|
1323
|
-
ease: [{ ease: [
|
|
1324
|
-
"linear",
|
|
1325
|
-
"initial",
|
|
1326
|
-
g,
|
|
1327
|
-
Y,
|
|
1328
|
-
q
|
|
1329
|
-
] }],
|
|
1330
|
-
delay: [{ delay: [
|
|
1331
|
-
B,
|
|
1332
|
-
Y,
|
|
1333
|
-
q
|
|
1334
|
-
] }],
|
|
1335
|
-
animate: [{ animate: [
|
|
1336
|
-
"none",
|
|
1337
|
-
_,
|
|
1338
|
-
Y,
|
|
1339
|
-
q
|
|
1340
|
-
] }],
|
|
1341
|
-
backface: [{ backface: ["hidden", "visible"] }],
|
|
1342
|
-
perspective: [{ perspective: [
|
|
1343
|
-
m,
|
|
1344
|
-
Y,
|
|
1345
|
-
q
|
|
1346
|
-
] }],
|
|
1347
|
-
"perspective-origin": [{ "perspective-origin": b() }],
|
|
1348
|
-
rotate: [{ rotate: G() }],
|
|
1349
|
-
"rotate-x": [{ "rotate-x": G() }],
|
|
1350
|
-
"rotate-y": [{ "rotate-y": G() }],
|
|
1351
|
-
"rotate-z": [{ "rotate-z": G() }],
|
|
1352
|
-
scale: [{ scale: K() }],
|
|
1353
|
-
"scale-x": [{ "scale-x": K() }],
|
|
1354
|
-
"scale-y": [{ "scale-y": K() }],
|
|
1355
|
-
"scale-z": [{ "scale-z": K() }],
|
|
1356
|
-
"scale-3d": ["scale-3d"],
|
|
1357
|
-
skew: [{ skew: Z() }],
|
|
1358
|
-
"skew-x": [{ "skew-x": Z() }],
|
|
1359
|
-
"skew-y": [{ "skew-y": Z() }],
|
|
1360
|
-
transform: [{ transform: [
|
|
1361
|
-
Y,
|
|
1362
|
-
q,
|
|
1363
|
-
"",
|
|
1364
|
-
"none",
|
|
1365
|
-
"gpu",
|
|
1366
|
-
"cpu"
|
|
1367
|
-
] }],
|
|
1368
|
-
"transform-origin": [{ origin: b() }],
|
|
1369
|
-
"transform-style": [{ transform: ["3d", "flat"] }],
|
|
1370
|
-
translate: [{ translate: Q() }],
|
|
1371
|
-
"translate-x": [{ "translate-x": Q() }],
|
|
1372
|
-
"translate-y": [{ "translate-y": Q() }],
|
|
1373
|
-
"translate-z": [{ "translate-z": Q() }],
|
|
1374
|
-
"translate-none": ["translate-none"],
|
|
1375
|
-
accent: [{ accent: N() }],
|
|
1376
|
-
appearance: [{ appearance: ["none", "auto"] }],
|
|
1377
|
-
"caret-color": [{ caret: N() }],
|
|
1378
|
-
"color-scheme": [{ scheme: [
|
|
1379
|
-
"normal",
|
|
1380
|
-
"dark",
|
|
1381
|
-
"light",
|
|
1382
|
-
"light-dark",
|
|
1383
|
-
"only-dark",
|
|
1384
|
-
"only-light"
|
|
1385
|
-
] }],
|
|
1386
|
-
cursor: [{ cursor: [
|
|
1387
|
-
"auto",
|
|
1388
|
-
"default",
|
|
1389
|
-
"pointer",
|
|
1390
|
-
"wait",
|
|
1391
|
-
"text",
|
|
1392
|
-
"move",
|
|
1393
|
-
"help",
|
|
1394
|
-
"not-allowed",
|
|
1395
|
-
"none",
|
|
1396
|
-
"context-menu",
|
|
1397
|
-
"progress",
|
|
1398
|
-
"cell",
|
|
1399
|
-
"crosshair",
|
|
1400
|
-
"vertical-text",
|
|
1401
|
-
"alias",
|
|
1402
|
-
"copy",
|
|
1403
|
-
"no-drop",
|
|
1404
|
-
"grab",
|
|
1405
|
-
"grabbing",
|
|
1406
|
-
"all-scroll",
|
|
1407
|
-
"col-resize",
|
|
1408
|
-
"row-resize",
|
|
1409
|
-
"n-resize",
|
|
1410
|
-
"e-resize",
|
|
1411
|
-
"s-resize",
|
|
1412
|
-
"w-resize",
|
|
1413
|
-
"ne-resize",
|
|
1414
|
-
"nw-resize",
|
|
1415
|
-
"se-resize",
|
|
1416
|
-
"sw-resize",
|
|
1417
|
-
"ew-resize",
|
|
1418
|
-
"ns-resize",
|
|
1419
|
-
"nesw-resize",
|
|
1420
|
-
"nwse-resize",
|
|
1421
|
-
"zoom-in",
|
|
1422
|
-
"zoom-out",
|
|
1423
|
-
Y,
|
|
1424
|
-
q
|
|
1425
|
-
] }],
|
|
1426
|
-
"field-sizing": [{ "field-sizing": ["fixed", "content"] }],
|
|
1427
|
-
"pointer-events": [{ "pointer-events": ["auto", "none"] }],
|
|
1428
|
-
resize: [{ resize: [
|
|
1429
|
-
"none",
|
|
1430
|
-
"",
|
|
1431
|
-
"y",
|
|
1432
|
-
"x"
|
|
1433
|
-
] }],
|
|
1434
|
-
"scroll-behavior": [{ scroll: ["auto", "smooth"] }],
|
|
1435
|
-
"scroll-m": [{ "scroll-m": C() }],
|
|
1436
|
-
"scroll-mx": [{ "scroll-mx": C() }],
|
|
1437
|
-
"scroll-my": [{ "scroll-my": C() }],
|
|
1438
|
-
"scroll-ms": [{ "scroll-ms": C() }],
|
|
1439
|
-
"scroll-me": [{ "scroll-me": C() }],
|
|
1440
|
-
"scroll-mbs": [{ "scroll-mbs": C() }],
|
|
1441
|
-
"scroll-mbe": [{ "scroll-mbe": C() }],
|
|
1442
|
-
"scroll-mt": [{ "scroll-mt": C() }],
|
|
1443
|
-
"scroll-mr": [{ "scroll-mr": C() }],
|
|
1444
|
-
"scroll-mb": [{ "scroll-mb": C() }],
|
|
1445
|
-
"scroll-ml": [{ "scroll-ml": C() }],
|
|
1446
|
-
"scroll-p": [{ "scroll-p": C() }],
|
|
1447
|
-
"scroll-px": [{ "scroll-px": C() }],
|
|
1448
|
-
"scroll-py": [{ "scroll-py": C() }],
|
|
1449
|
-
"scroll-ps": [{ "scroll-ps": C() }],
|
|
1450
|
-
"scroll-pe": [{ "scroll-pe": C() }],
|
|
1451
|
-
"scroll-pbs": [{ "scroll-pbs": C() }],
|
|
1452
|
-
"scroll-pbe": [{ "scroll-pbe": C() }],
|
|
1453
|
-
"scroll-pt": [{ "scroll-pt": C() }],
|
|
1454
|
-
"scroll-pr": [{ "scroll-pr": C() }],
|
|
1455
|
-
"scroll-pb": [{ "scroll-pb": C() }],
|
|
1456
|
-
"scroll-pl": [{ "scroll-pl": C() }],
|
|
1457
|
-
"snap-align": [{ snap: [
|
|
1458
|
-
"start",
|
|
1459
|
-
"end",
|
|
1460
|
-
"center",
|
|
1461
|
-
"align-none"
|
|
1462
|
-
] }],
|
|
1463
|
-
"snap-stop": [{ snap: ["normal", "always"] }],
|
|
1464
|
-
"snap-type": [{ snap: [
|
|
1465
|
-
"none",
|
|
1466
|
-
"x",
|
|
1467
|
-
"y",
|
|
1468
|
-
"both"
|
|
1469
|
-
] }],
|
|
1470
|
-
"snap-strictness": [{ snap: ["mandatory", "proximity"] }],
|
|
1471
|
-
touch: [{ touch: [
|
|
1472
|
-
"auto",
|
|
1473
|
-
"none",
|
|
1474
|
-
"manipulation"
|
|
1475
|
-
] }],
|
|
1476
|
-
"touch-x": [{ "touch-pan": [
|
|
1477
|
-
"x",
|
|
1478
|
-
"left",
|
|
1479
|
-
"right"
|
|
1480
|
-
] }],
|
|
1481
|
-
"touch-y": [{ "touch-pan": [
|
|
1482
|
-
"y",
|
|
1483
|
-
"up",
|
|
1484
|
-
"down"
|
|
1485
|
-
] }],
|
|
1486
|
-
"touch-pz": ["touch-pinch-zoom"],
|
|
1487
|
-
select: [{ select: [
|
|
1488
|
-
"none",
|
|
1489
|
-
"text",
|
|
1490
|
-
"all",
|
|
1491
|
-
"auto"
|
|
1492
|
-
] }],
|
|
1493
|
-
"will-change": [{ "will-change": [
|
|
1494
|
-
"auto",
|
|
1495
|
-
"scroll",
|
|
1496
|
-
"contents",
|
|
1497
|
-
"transform",
|
|
1498
|
-
Y,
|
|
1499
|
-
q
|
|
1500
|
-
] }],
|
|
1501
|
-
fill: [{ fill: ["none", ...N()] }],
|
|
1502
|
-
"stroke-w": [{ stroke: [
|
|
1503
|
-
B,
|
|
1504
|
-
X,
|
|
1505
|
-
J,
|
|
1506
|
-
de
|
|
1507
|
-
] }],
|
|
1508
|
-
stroke: [{ stroke: ["none", ...N()] }],
|
|
1509
|
-
"forced-color-adjust": [{ "forced-color-adjust": ["auto", "none"] }]
|
|
1510
|
-
},
|
|
1511
|
-
conflictingClassGroups: {
|
|
1512
|
-
overflow: ["overflow-x", "overflow-y"],
|
|
1513
|
-
overscroll: ["overscroll-x", "overscroll-y"],
|
|
1514
|
-
inset: [
|
|
1515
|
-
"inset-x",
|
|
1516
|
-
"inset-y",
|
|
1517
|
-
"inset-bs",
|
|
1518
|
-
"inset-be",
|
|
1519
|
-
"start",
|
|
1520
|
-
"end",
|
|
1521
|
-
"top",
|
|
1522
|
-
"right",
|
|
1523
|
-
"bottom",
|
|
1524
|
-
"left"
|
|
1525
|
-
],
|
|
1526
|
-
"inset-x": ["right", "left"],
|
|
1527
|
-
"inset-y": ["top", "bottom"],
|
|
1528
|
-
flex: [
|
|
1529
|
-
"basis",
|
|
1530
|
-
"grow",
|
|
1531
|
-
"shrink"
|
|
1532
|
-
],
|
|
1533
|
-
gap: ["gap-x", "gap-y"],
|
|
1534
|
-
p: [
|
|
1535
|
-
"px",
|
|
1536
|
-
"py",
|
|
1537
|
-
"ps",
|
|
1538
|
-
"pe",
|
|
1539
|
-
"pbs",
|
|
1540
|
-
"pbe",
|
|
1541
|
-
"pt",
|
|
1542
|
-
"pr",
|
|
1543
|
-
"pb",
|
|
1544
|
-
"pl"
|
|
1545
|
-
],
|
|
1546
|
-
px: ["pr", "pl"],
|
|
1547
|
-
py: ["pt", "pb"],
|
|
1548
|
-
m: [
|
|
1549
|
-
"mx",
|
|
1550
|
-
"my",
|
|
1551
|
-
"ms",
|
|
1552
|
-
"me",
|
|
1553
|
-
"mbs",
|
|
1554
|
-
"mbe",
|
|
1555
|
-
"mt",
|
|
1556
|
-
"mr",
|
|
1557
|
-
"mb",
|
|
1558
|
-
"ml"
|
|
1559
|
-
],
|
|
1560
|
-
mx: ["mr", "ml"],
|
|
1561
|
-
my: ["mt", "mb"],
|
|
1562
|
-
size: ["w", "h"],
|
|
1563
|
-
"font-size": ["leading"],
|
|
1564
|
-
"fvn-normal": [
|
|
1565
|
-
"fvn-ordinal",
|
|
1566
|
-
"fvn-slashed-zero",
|
|
1567
|
-
"fvn-figure",
|
|
1568
|
-
"fvn-spacing",
|
|
1569
|
-
"fvn-fraction"
|
|
1570
|
-
],
|
|
1571
|
-
"fvn-ordinal": ["fvn-normal"],
|
|
1572
|
-
"fvn-slashed-zero": ["fvn-normal"],
|
|
1573
|
-
"fvn-figure": ["fvn-normal"],
|
|
1574
|
-
"fvn-spacing": ["fvn-normal"],
|
|
1575
|
-
"fvn-fraction": ["fvn-normal"],
|
|
1576
|
-
"line-clamp": ["display", "overflow"],
|
|
1577
|
-
rounded: [
|
|
1578
|
-
"rounded-s",
|
|
1579
|
-
"rounded-e",
|
|
1580
|
-
"rounded-t",
|
|
1581
|
-
"rounded-r",
|
|
1582
|
-
"rounded-b",
|
|
1583
|
-
"rounded-l",
|
|
1584
|
-
"rounded-ss",
|
|
1585
|
-
"rounded-se",
|
|
1586
|
-
"rounded-ee",
|
|
1587
|
-
"rounded-es",
|
|
1588
|
-
"rounded-tl",
|
|
1589
|
-
"rounded-tr",
|
|
1590
|
-
"rounded-br",
|
|
1591
|
-
"rounded-bl"
|
|
1592
|
-
],
|
|
1593
|
-
"rounded-s": ["rounded-ss", "rounded-es"],
|
|
1594
|
-
"rounded-e": ["rounded-se", "rounded-ee"],
|
|
1595
|
-
"rounded-t": ["rounded-tl", "rounded-tr"],
|
|
1596
|
-
"rounded-r": ["rounded-tr", "rounded-br"],
|
|
1597
|
-
"rounded-b": ["rounded-br", "rounded-bl"],
|
|
1598
|
-
"rounded-l": ["rounded-tl", "rounded-bl"],
|
|
1599
|
-
"border-spacing": ["border-spacing-x", "border-spacing-y"],
|
|
1600
|
-
"border-w": [
|
|
1601
|
-
"border-w-x",
|
|
1602
|
-
"border-w-y",
|
|
1603
|
-
"border-w-s",
|
|
1604
|
-
"border-w-e",
|
|
1605
|
-
"border-w-bs",
|
|
1606
|
-
"border-w-be",
|
|
1607
|
-
"border-w-t",
|
|
1608
|
-
"border-w-r",
|
|
1609
|
-
"border-w-b",
|
|
1610
|
-
"border-w-l"
|
|
1611
|
-
],
|
|
1612
|
-
"border-w-x": ["border-w-r", "border-w-l"],
|
|
1613
|
-
"border-w-y": ["border-w-t", "border-w-b"],
|
|
1614
|
-
"border-color": [
|
|
1615
|
-
"border-color-x",
|
|
1616
|
-
"border-color-y",
|
|
1617
|
-
"border-color-s",
|
|
1618
|
-
"border-color-e",
|
|
1619
|
-
"border-color-bs",
|
|
1620
|
-
"border-color-be",
|
|
1621
|
-
"border-color-t",
|
|
1622
|
-
"border-color-r",
|
|
1623
|
-
"border-color-b",
|
|
1624
|
-
"border-color-l"
|
|
1625
|
-
],
|
|
1626
|
-
"border-color-x": ["border-color-r", "border-color-l"],
|
|
1627
|
-
"border-color-y": ["border-color-t", "border-color-b"],
|
|
1628
|
-
translate: [
|
|
1629
|
-
"translate-x",
|
|
1630
|
-
"translate-y",
|
|
1631
|
-
"translate-none"
|
|
1632
|
-
],
|
|
1633
|
-
"translate-none": [
|
|
1634
|
-
"translate",
|
|
1635
|
-
"translate-x",
|
|
1636
|
-
"translate-y",
|
|
1637
|
-
"translate-z"
|
|
1638
|
-
],
|
|
1639
|
-
"scroll-m": [
|
|
1640
|
-
"scroll-mx",
|
|
1641
|
-
"scroll-my",
|
|
1642
|
-
"scroll-ms",
|
|
1643
|
-
"scroll-me",
|
|
1644
|
-
"scroll-mbs",
|
|
1645
|
-
"scroll-mbe",
|
|
1646
|
-
"scroll-mt",
|
|
1647
|
-
"scroll-mr",
|
|
1648
|
-
"scroll-mb",
|
|
1649
|
-
"scroll-ml"
|
|
1650
|
-
],
|
|
1651
|
-
"scroll-mx": ["scroll-mr", "scroll-ml"],
|
|
1652
|
-
"scroll-my": ["scroll-mt", "scroll-mb"],
|
|
1653
|
-
"scroll-p": [
|
|
1654
|
-
"scroll-px",
|
|
1655
|
-
"scroll-py",
|
|
1656
|
-
"scroll-ps",
|
|
1657
|
-
"scroll-pe",
|
|
1658
|
-
"scroll-pbs",
|
|
1659
|
-
"scroll-pbe",
|
|
1660
|
-
"scroll-pt",
|
|
1661
|
-
"scroll-pr",
|
|
1662
|
-
"scroll-pb",
|
|
1663
|
-
"scroll-pl"
|
|
1664
|
-
],
|
|
1665
|
-
"scroll-px": ["scroll-pr", "scroll-pl"],
|
|
1666
|
-
"scroll-py": ["scroll-pt", "scroll-pb"],
|
|
1667
|
-
touch: [
|
|
1668
|
-
"touch-x",
|
|
1669
|
-
"touch-y",
|
|
1670
|
-
"touch-pz"
|
|
1671
|
-
],
|
|
1672
|
-
"touch-x": ["touch"],
|
|
1673
|
-
"touch-y": ["touch"],
|
|
1674
|
-
"touch-pz": ["touch"]
|
|
1675
|
-
},
|
|
1676
|
-
conflictingClassGroupModifiers: { "font-size": ["leading"] },
|
|
1677
|
-
orderSensitiveModifiers: [
|
|
1678
|
-
"*",
|
|
1679
|
-
"**",
|
|
1680
|
-
"after",
|
|
1681
|
-
"backdrop",
|
|
1682
|
-
"before",
|
|
1683
|
-
"details-content",
|
|
1684
|
-
"file",
|
|
1685
|
-
"first-letter",
|
|
1686
|
-
"first-line",
|
|
1687
|
-
"marker",
|
|
1688
|
-
"placeholder",
|
|
1689
|
-
"selection"
|
|
1690
|
-
]
|
|
1691
|
-
};
|
|
1692
|
-
});
|
|
1693
|
-
//#endregion
|
|
1694
|
-
//#region src/lib/utils.ts
|
|
1695
|
-
function Me(...e) {
|
|
1696
|
-
return je(i(e));
|
|
1697
|
-
}
|
|
1698
|
-
//#endregion
|
|
1699
|
-
//#region node_modules/react/cjs/react-jsx-runtime.production.js
|
|
1700
|
-
var Ne = /* @__PURE__ */ t(((e) => {
|
|
1701
|
-
var t = Symbol.for("react.transitional.element"), n = Symbol.for("react.fragment");
|
|
1702
|
-
function r(e, n, r) {
|
|
1703
|
-
var i = null;
|
|
1704
|
-
if (r !== void 0 && (i = "" + r), n.key !== void 0 && (i = "" + n.key), "key" in n) for (var a in r = {}, n) a !== "key" && (r[a] = n[a]);
|
|
1705
|
-
else r = n;
|
|
1706
|
-
return n = r.ref, {
|
|
1707
|
-
$$typeof: t,
|
|
1708
|
-
type: e,
|
|
1709
|
-
key: i,
|
|
1710
|
-
ref: n === void 0 ? null : n,
|
|
1711
|
-
props: r
|
|
1712
|
-
};
|
|
1713
|
-
}
|
|
1714
|
-
e.Fragment = n, e.jsx = r, e.jsxs = r;
|
|
1715
|
-
})), Pe = /* @__PURE__ */ t(((e) => {
|
|
1716
|
-
process.env.NODE_ENV !== "production" && (function() {
|
|
1717
|
-
function t(e) {
|
|
1718
|
-
if (e == null) return null;
|
|
1719
|
-
if (typeof e == "function") return e.$$typeof === ne ? null : e.displayName || e.name || null;
|
|
1720
|
-
if (typeof e == "string") return e;
|
|
1721
|
-
switch (e) {
|
|
1722
|
-
case _: return "Fragment";
|
|
1723
|
-
case y: return "Profiler";
|
|
1724
|
-
case v: return "StrictMode";
|
|
1725
|
-
case C: return "Suspense";
|
|
1726
|
-
case w: return "SuspenseList";
|
|
1727
|
-
case E: return "Activity";
|
|
1728
|
-
}
|
|
1729
|
-
if (typeof e == "object") switch (typeof e.tag == "number" && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), e.$$typeof) {
|
|
1730
|
-
case g: return "Portal";
|
|
1731
|
-
case x: return e.displayName || "Context";
|
|
1732
|
-
case b: return (e._context.displayName || "Context") + ".Consumer";
|
|
1733
|
-
case S:
|
|
1734
|
-
var n = e.render;
|
|
1735
|
-
return e = e.displayName, e ||= (e = n.displayName || n.name || "", e === "" ? "ForwardRef" : "ForwardRef(" + e + ")"), e;
|
|
1736
|
-
case te: return n = e.displayName || null, n === null ? t(e.type) || "Memo" : n;
|
|
1737
|
-
case T:
|
|
1738
|
-
n = e._payload, e = e._init;
|
|
1739
|
-
try {
|
|
1740
|
-
return t(e(n));
|
|
1741
|
-
} catch {}
|
|
1742
|
-
}
|
|
1743
|
-
return null;
|
|
1744
|
-
}
|
|
1745
|
-
function r(e) {
|
|
1746
|
-
return "" + e;
|
|
1747
|
-
}
|
|
1748
|
-
function i(e) {
|
|
1749
|
-
try {
|
|
1750
|
-
r(e);
|
|
1751
|
-
var t = !1;
|
|
1752
|
-
} catch {
|
|
1753
|
-
t = !0;
|
|
1754
|
-
}
|
|
1755
|
-
if (t) {
|
|
1756
|
-
t = console;
|
|
1757
|
-
var n = t.error, i = typeof Symbol == "function" && Symbol.toStringTag && e[Symbol.toStringTag] || e.constructor.name || "Object";
|
|
1758
|
-
return n.call(t, "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", i), r(e);
|
|
1759
|
-
}
|
|
1760
|
-
}
|
|
1761
|
-
function a(e) {
|
|
1762
|
-
if (e === _) return "<>";
|
|
1763
|
-
if (typeof e == "object" && e && e.$$typeof === T) return "<...>";
|
|
1764
|
-
try {
|
|
1765
|
-
var n = t(e);
|
|
1766
|
-
return n ? "<" + n + ">" : "<...>";
|
|
1767
|
-
} catch {
|
|
1768
|
-
return "<...>";
|
|
1769
|
-
}
|
|
1770
|
-
}
|
|
1771
|
-
function o() {
|
|
1772
|
-
var e = D.A;
|
|
1773
|
-
return e === null ? null : e.getOwner();
|
|
1774
|
-
}
|
|
1775
|
-
function s() {
|
|
1776
|
-
return Error("react-stack-top-frame");
|
|
1777
|
-
}
|
|
1778
|
-
function c(e) {
|
|
1779
|
-
if (O.call(e, "key")) {
|
|
1780
|
-
var t = Object.getOwnPropertyDescriptor(e, "key").get;
|
|
1781
|
-
if (t && t.isReactWarning) return !1;
|
|
1782
|
-
}
|
|
1783
|
-
return e.key !== void 0;
|
|
1784
|
-
}
|
|
1785
|
-
function l(e, t) {
|
|
1786
|
-
function n() {
|
|
1787
|
-
j || (j = !0, console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", t));
|
|
1788
|
-
}
|
|
1789
|
-
n.isReactWarning = !0, Object.defineProperty(e, "key", {
|
|
1790
|
-
get: n,
|
|
1791
|
-
configurable: !0
|
|
1792
|
-
});
|
|
1793
|
-
}
|
|
1794
|
-
function u() {
|
|
1795
|
-
var e = t(this.type);
|
|
1796
|
-
return M[e] || (M[e] = !0, console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")), e = this.props.ref, e === void 0 ? null : e;
|
|
1797
|
-
}
|
|
1798
|
-
function ee(e, t, n, r, i, a) {
|
|
1799
|
-
var o = n.ref;
|
|
1800
|
-
return e = {
|
|
1801
|
-
$$typeof: h,
|
|
1802
|
-
type: e,
|
|
1803
|
-
key: t,
|
|
1804
|
-
props: n,
|
|
1805
|
-
_owner: r
|
|
1806
|
-
}, (o === void 0 ? null : o) === null ? Object.defineProperty(e, "ref", {
|
|
1807
|
-
enumerable: !1,
|
|
1808
|
-
value: null
|
|
1809
|
-
}) : Object.defineProperty(e, "ref", {
|
|
1810
|
-
enumerable: !1,
|
|
1811
|
-
get: u
|
|
1812
|
-
}), e._store = {}, Object.defineProperty(e._store, "validated", {
|
|
1813
|
-
configurable: !1,
|
|
1814
|
-
enumerable: !1,
|
|
1815
|
-
writable: !0,
|
|
1816
|
-
value: 0
|
|
1817
|
-
}), Object.defineProperty(e, "_debugInfo", {
|
|
1818
|
-
configurable: !1,
|
|
1819
|
-
enumerable: !1,
|
|
1820
|
-
writable: !0,
|
|
1821
|
-
value: null
|
|
1822
|
-
}), Object.defineProperty(e, "_debugStack", {
|
|
1823
|
-
configurable: !1,
|
|
1824
|
-
enumerable: !1,
|
|
1825
|
-
writable: !0,
|
|
1826
|
-
value: i
|
|
1827
|
-
}), Object.defineProperty(e, "_debugTask", {
|
|
1828
|
-
configurable: !1,
|
|
1829
|
-
enumerable: !1,
|
|
1830
|
-
writable: !0,
|
|
1831
|
-
value: a
|
|
1832
|
-
}), Object.freeze && (Object.freeze(e.props), Object.freeze(e)), e;
|
|
1833
|
-
}
|
|
1834
|
-
function d(e, n, r, a, s, u) {
|
|
1835
|
-
var d = n.children;
|
|
1836
|
-
if (d !== void 0) if (a) if (k(d)) {
|
|
1837
|
-
for (a = 0; a < d.length; a++) f(d[a]);
|
|
1838
|
-
Object.freeze && Object.freeze(d);
|
|
1839
|
-
} else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
1840
|
-
else f(d);
|
|
1841
|
-
if (O.call(n, "key")) {
|
|
1842
|
-
d = t(e);
|
|
1843
|
-
var p = Object.keys(n).filter(function(e) {
|
|
1844
|
-
return e !== "key";
|
|
1845
|
-
});
|
|
1846
|
-
a = 0 < p.length ? "{key: someKey, " + p.join(": ..., ") + ": ...}" : "{key: someKey}", F[d + a] || (p = 0 < p.length ? "{" + p.join(": ..., ") + ": ...}" : "{}", console.error("A props object containing a \"key\" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />", a, d, p, d), F[d + a] = !0);
|
|
1847
|
-
}
|
|
1848
|
-
if (d = null, r !== void 0 && (i(r), d = "" + r), c(n) && (i(n.key), d = "" + n.key), "key" in n) for (var m in r = {}, n) m !== "key" && (r[m] = n[m]);
|
|
1849
|
-
else r = n;
|
|
1850
|
-
return d && l(r, typeof e == "function" ? e.displayName || e.name || "Unknown" : e), ee(e, d, r, o(), s, u);
|
|
1851
|
-
}
|
|
1852
|
-
function f(e) {
|
|
1853
|
-
p(e) ? e._store && (e._store.validated = 1) : typeof e == "object" && e && e.$$typeof === T && (e._payload.status === "fulfilled" ? p(e._payload.value) && e._payload.value._store && (e._payload.value._store.validated = 1) : e._store && (e._store.validated = 1));
|
|
1854
|
-
}
|
|
1855
|
-
function p(e) {
|
|
1856
|
-
return typeof e == "object" && !!e && e.$$typeof === h;
|
|
1857
|
-
}
|
|
1858
|
-
var m = n("react"), h = Symbol.for("react.transitional.element"), g = Symbol.for("react.portal"), _ = Symbol.for("react.fragment"), v = Symbol.for("react.strict_mode"), y = Symbol.for("react.profiler"), b = Symbol.for("react.consumer"), x = Symbol.for("react.context"), S = Symbol.for("react.forward_ref"), C = Symbol.for("react.suspense"), w = Symbol.for("react.suspense_list"), te = Symbol.for("react.memo"), T = Symbol.for("react.lazy"), E = Symbol.for("react.activity"), ne = Symbol.for("react.client.reference"), D = m.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, O = Object.prototype.hasOwnProperty, k = Array.isArray, A = console.createTask ? console.createTask : function() {
|
|
1859
|
-
return null;
|
|
1860
|
-
};
|
|
1861
|
-
m = { react_stack_bottom_frame: function(e) {
|
|
1862
|
-
return e();
|
|
1863
|
-
} };
|
|
1864
|
-
var j, M = {}, N = m.react_stack_bottom_frame.bind(m, s)(), P = A(a(s)), F = {};
|
|
1865
|
-
e.Fragment = _, e.jsx = function(e, t, n) {
|
|
1866
|
-
var r = 1e4 > D.recentlyCreatedOwnerStacks++;
|
|
1867
|
-
return d(e, t, n, !1, r ? Error("react-stack-top-frame") : N, r ? A(a(e)) : P);
|
|
1868
|
-
}, e.jsxs = function(e, t, n) {
|
|
1869
|
-
var r = 1e4 > D.recentlyCreatedOwnerStacks++;
|
|
1870
|
-
return d(e, t, n, !0, r ? Error("react-stack-top-frame") : N, r ? A(a(e)) : P);
|
|
1871
|
-
};
|
|
1872
|
-
})();
|
|
1873
|
-
})), $ = (/* @__PURE__ */ t(((e, t) => {
|
|
1874
|
-
process.env.NODE_ENV === "production" ? t.exports = Ne() : t.exports = Pe();
|
|
1875
|
-
})))(), Fe = {
|
|
1876
|
-
sm: "h-9 px-4 text-[12px] leading-[20px]",
|
|
1877
|
-
md: "h-10 px-5 text-[14px] leading-[20px]",
|
|
1878
|
-
lg: "h-[50px] px-5 text-[16px] leading-[20px]",
|
|
1879
|
-
full: "h-[50px] w-full px-5 text-[14px] md:text-[16px] leading-[20px]"
|
|
1880
|
-
}, Ie = e.forwardRef(({ className: t, type: n = "text", size: r = "lg", error: i, ...a }, o) => {
|
|
1881
|
-
let [s, c] = e.useState(!1), l = n === "password";
|
|
1882
|
-
return /* @__PURE__ */ (0, $.jsxs)("div", {
|
|
1883
|
-
className: "w-full",
|
|
1884
|
-
children: [/* @__PURE__ */ (0, $.jsxs)("div", {
|
|
1885
|
-
className: "relative w-full",
|
|
1886
|
-
children: [/* @__PURE__ */ (0, $.jsx)("input", {
|
|
1887
|
-
ref: o,
|
|
1888
|
-
type: l && s ? "text" : n,
|
|
1889
|
-
"data-slot": "input",
|
|
1890
|
-
className: Me("w-full min-w-0\n rounded-[50px]\n border border-border\n bg-background\n\n font-sans\n text-inputtext\n\n overflow-hidden\n text-ellipsis\n whitespace-nowrap\n\n transition-all\n outline-none\n\n placeholder:text-inputtext/60\n\n focus-visible:border-baseblack\n focus-visible:ring-0\n focus-visible:ring-baseblack/20\n\n disabled:cursor-not-allowed\n disabled:opacity-50\n\n aria-invalid:border-destructive\n aria-invalid:ring-0\n aria-invalid:ring-destructive/20", !i && "\n border-border\n text-inputText\n focus-visible:border-inputText\n focus-visible:ring-0\n focus-visible:ring-inputText/20\n ", i && "\n border-destructive\n text-destructive\n placeholder:text-destructive/60\n focus-visible:border-destructive\n focus-visible:ring-destructive/30\n ", l && "pr-12", Fe[r], t),
|
|
1891
|
-
...a
|
|
1892
|
-
}), l && /* @__PURE__ */ (0, $.jsx)("button", {
|
|
1893
|
-
type: "button",
|
|
1894
|
-
onClick: () => c(!s),
|
|
1895
|
-
className: "\n absolute right-5 top-1/2 -translate-y-1/2\n text-muted-foreground hover:text-foreground\n ",
|
|
1896
|
-
children: s ? /* @__PURE__ */ (0, $.jsxs)("svg", {
|
|
1897
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1898
|
-
width: "24",
|
|
1899
|
-
height: "24",
|
|
1900
|
-
viewBox: "0 0 24 24",
|
|
1901
|
-
fill: "none",
|
|
1902
|
-
children: [/* @__PURE__ */ (0, $.jsx)("path", {
|
|
1903
|
-
d: "M2 12C2 12 5.5 5 12 5C18.5 5 22 12 22 12C22 12 18.5 19 12 19C5.5 19 2 12 2 12Z",
|
|
1904
|
-
stroke: "#B5B6B8",
|
|
1905
|
-
"stroke-width": "1.5",
|
|
1906
|
-
"stroke-linecap": "round",
|
|
1907
|
-
"stroke-linejoin": "round"
|
|
1908
|
-
}), /* @__PURE__ */ (0, $.jsx)("circle", {
|
|
1909
|
-
cx: "12",
|
|
1910
|
-
cy: "12",
|
|
1911
|
-
r: "3",
|
|
1912
|
-
stroke: "#B5B6B8",
|
|
1913
|
-
"stroke-width": "1.5"
|
|
1914
|
-
})]
|
|
1915
|
-
}) : /* @__PURE__ */ (0, $.jsx)("svg", {
|
|
1916
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1917
|
-
width: "24",
|
|
1918
|
-
height: "24",
|
|
1919
|
-
viewBox: "0 0 24 24",
|
|
1920
|
-
fill: "none",
|
|
1921
|
-
children: /* @__PURE__ */ (0, $.jsx)("path", {
|
|
1922
|
-
d: "M5.05499 3.24563C4.98913 3.17138 4.90918 3.11095 4.81979 3.06783C4.7304 3.02471 4.63334 2.99976 4.53423 2.99443C4.43513 2.9891 4.33595 3.00349 4.24245 3.03677C4.14895 3.07005 4.06298 3.12156 3.98953 3.18831C3.91608 3.25506 3.85661 3.33572 3.81457 3.42562C3.77252 3.51552 3.74874 3.61288 3.7446 3.71204C3.74045 3.8112 3.75603 3.9102 3.79043 4.00329C3.82483 4.09639 3.87737 4.18173 3.94499 4.25438L5.74874 6.23906C2.34374 8.32875 0.879366 11.55 0.814679 11.6963C0.772035 11.7922 0.75 11.896 0.75 12.0009C0.75 12.1059 0.772035 12.2097 0.814679 12.3056C0.847491 12.3797 1.64155 14.1403 3.40687 15.9056C5.75905 18.2569 8.72999 19.5 12 19.5C13.6806 19.5096 15.3442 19.1636 16.8816 18.4847L18.9441 20.7544C19.0099 20.8286 19.0899 20.8891 19.1793 20.9322C19.2686 20.9753 19.3657 21.0002 19.4648 21.0056C19.5639 21.0109 19.6631 20.9965 19.7566 20.9632C19.8501 20.93 19.9361 20.8784 20.0095 20.8117C20.083 20.7449 20.1424 20.6643 20.1845 20.5744C20.2265 20.4845 20.2503 20.3871 20.2544 20.288C20.2586 20.1888 20.243 20.0898 20.2086 19.9967C20.1742 19.9036 20.1217 19.8183 20.0541 19.7456L5.05499 3.24563ZM9.49218 10.3556L13.3987 14.6541C12.8105 14.9636 12.136 15.0689 11.4814 14.9535C10.8268 14.8382 10.229 14.5087 9.78189 14.0168C9.33481 13.5248 9.06377 12.8984 9.01134 12.2357C8.9589 11.573 9.12803 10.9117 9.49218 10.3556ZM12 18C9.11437 18 6.59343 16.9509 4.50655 14.8828C3.64997 14.0315 2.92145 13.0605 2.34374 12C2.78343 11.1759 4.18687 8.86969 6.7828 7.37063L8.4703 9.22219C7.81699 10.0589 7.48052 11.0997 7.52036 12.1605C7.56021 13.2213 7.97379 14.2339 8.68802 15.0192C9.40225 15.8046 10.3711 16.3122 11.4234 16.4522C12.4757 16.5923 13.5436 16.3559 14.4384 15.7847L15.8194 17.3034C14.6006 17.771 13.3053 18.0072 12 18ZM12.5625 9.05344C12.3671 9.01614 12.1944 8.90274 12.0826 8.73818C11.9708 8.57361 11.9289 8.37137 11.9662 8.17594C12.0035 7.98051 12.1169 7.8079 12.2815 7.69608C12.4461 7.58426 12.6483 7.54239 12.8437 7.57969C13.7996 7.765 14.67 8.25436 15.325 8.97477C15.98 9.69518 16.3846 10.608 16.4784 11.5772C16.4969 11.7752 16.436 11.9725 16.3091 12.1257C16.1822 12.2788 15.9996 12.3752 15.8016 12.3938C15.7781 12.3951 15.7547 12.3951 15.7312 12.3938C15.5438 12.3946 15.3628 12.3251 15.224 12.1992C15.0852 12.0732 14.9986 11.8998 14.9812 11.7131C14.9181 11.0685 14.6486 10.4615 14.2128 9.98226C13.7771 9.50307 13.1982 9.17731 12.5625 9.05344ZM23.1825 12.3056C23.1431 12.3938 22.1934 14.4966 20.055 16.4119C19.9819 16.4794 19.8961 16.5317 19.8027 16.5658C19.7092 16.5998 19.6099 16.6149 19.5105 16.6102C19.4111 16.6055 19.3136 16.5811 19.2238 16.5384C19.1339 16.4956 19.0535 16.4354 18.9871 16.3613C18.9208 16.2872 18.8698 16.2006 18.8373 16.1066C18.8047 16.0125 18.7912 15.913 18.7975 15.8137C18.8037 15.7144 18.8297 15.6173 18.8739 15.5282C18.918 15.439 18.9795 15.3595 19.0547 15.2944C20.1038 14.3518 20.9851 13.2378 21.6609 12C21.0819 10.9385 20.3518 9.96683 19.4934 9.11531C17.4066 7.04906 14.8856 6 12 6C11.392 5.99926 10.7849 6.04849 10.185 6.14719C10.0874 6.16444 9.98741 6.16219 9.89073 6.14058C9.79404 6.11896 9.70259 6.07839 9.62167 6.02123C9.54074 5.96407 9.47195 5.89144 9.41925 5.80754C9.36656 5.72363 9.33101 5.63012 9.31466 5.5324C9.29832 5.43469 9.30149 5.3347 9.32401 5.23821C9.34652 5.14173 9.38793 5.05066 9.44584 4.97027C9.50375 4.88988 9.57702 4.82176 9.6614 4.76985C9.74579 4.71794 9.83963 4.68326 9.93749 4.66781C10.6192 4.55525 11.309 4.49912 12 4.5C15.27 4.5 18.2409 5.74313 20.5931 8.09531C22.3584 9.86063 23.1525 11.6222 23.1853 11.6963C23.2279 11.7922 23.25 11.896 23.25 12.0009C23.25 12.1059 23.2279 12.2097 23.1853 12.3056H23.1825Z",
|
|
1923
|
-
fill: "#B5B6B8"
|
|
1924
|
-
})
|
|
1925
|
-
})
|
|
1926
|
-
})]
|
|
1927
|
-
}), i && /* @__PURE__ */ (0, $.jsx)("p", {
|
|
1928
|
-
className: "mt-1 px-3 text-[12px] leading-[16px] text-destructive font-sans",
|
|
1929
|
-
children: i
|
|
1930
|
-
})]
|
|
1931
|
-
});
|
|
1932
|
-
});
|
|
1933
|
-
Ie.displayName = "Input";
|
|
1934
|
-
//#endregion
|
|
1935
|
-
//#region node_modules/class-variance-authority/dist/index.mjs
|
|
1936
|
-
var Le = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, Re = i, ze = (e, t) => (n) => {
|
|
1937
|
-
if (t?.variants == null) return Re(e, n?.class, n?.className);
|
|
1938
|
-
let { variants: r, defaultVariants: i } = t, a = Object.keys(r).map((e) => {
|
|
1939
|
-
let t = n?.[e], a = i?.[e];
|
|
1940
|
-
if (t === null) return null;
|
|
1941
|
-
let o = Le(t) || Le(a);
|
|
1942
|
-
return r[e][o];
|
|
1943
|
-
}), o = n && Object.entries(n).reduce((e, t) => {
|
|
1944
|
-
let [n, r] = t;
|
|
1945
|
-
return r === void 0 || (e[n] = r), e;
|
|
1946
|
-
}, {});
|
|
1947
|
-
return Re(e, a, t?.compoundVariants?.reduce((e, t) => {
|
|
1948
|
-
let { class: n, className: r, ...a } = t;
|
|
1949
|
-
return Object.entries(a).every((e) => {
|
|
1950
|
-
let [t, n] = e;
|
|
1951
|
-
return Array.isArray(n) ? n.includes({
|
|
1952
|
-
...i,
|
|
1953
|
-
...o
|
|
1954
|
-
}[t]) : {
|
|
1955
|
-
...i,
|
|
1956
|
-
...o
|
|
1957
|
-
}[t] === n;
|
|
1958
|
-
}) ? [
|
|
1959
|
-
...e,
|
|
1960
|
-
n,
|
|
1961
|
-
r
|
|
1962
|
-
] : e;
|
|
1963
|
-
}, []), n?.class, n?.className);
|
|
10
|
+
|
|
11
|
+
// src/components/ui/input.tsx
|
|
12
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
13
|
+
var inputSizes = {
|
|
14
|
+
sm: "h-9 px-4 text-[12px] leading-[20px]",
|
|
15
|
+
md: "h-10 px-5 text-[14px] leading-[20px]",
|
|
16
|
+
lg: "h-[50px] px-5 text-[16px] leading-[20px]",
|
|
17
|
+
full: "h-[50px] w-full px-5 text-[14px] md:text-[16px] leading-[20px]"
|
|
1964
18
|
};
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
19
|
+
var Input = React.forwardRef(
|
|
20
|
+
({ className, type = "text", size = "lg", error, ...props }, ref) => {
|
|
21
|
+
const [showPassword, setShowPassword] = React.useState(false);
|
|
22
|
+
const isPassword = type === "password";
|
|
23
|
+
const inputType = isPassword && showPassword ? "text" : type;
|
|
24
|
+
return /* @__PURE__ */ jsxs("div", { className: "w-full", children: [
|
|
25
|
+
/* @__PURE__ */ jsxs("div", { className: "relative w-full", children: [
|
|
26
|
+
/* @__PURE__ */ jsx(
|
|
27
|
+
"input",
|
|
28
|
+
{
|
|
29
|
+
ref,
|
|
30
|
+
type: inputType,
|
|
31
|
+
"data-slot": "input",
|
|
32
|
+
className: cn(
|
|
33
|
+
`w-full min-w-0
|
|
34
|
+
rounded-[50px]
|
|
35
|
+
border border-border
|
|
36
|
+
bg-background
|
|
37
|
+
|
|
38
|
+
font-sans
|
|
39
|
+
text-inputtext
|
|
40
|
+
|
|
41
|
+
overflow-hidden
|
|
42
|
+
text-ellipsis
|
|
43
|
+
whitespace-nowrap
|
|
44
|
+
|
|
45
|
+
transition-all
|
|
46
|
+
outline-none
|
|
47
|
+
|
|
48
|
+
placeholder:text-inputtext/60
|
|
49
|
+
|
|
50
|
+
focus-visible:border-baseblack
|
|
51
|
+
focus-visible:ring-0
|
|
52
|
+
focus-visible:ring-baseblack/20
|
|
53
|
+
|
|
54
|
+
disabled:cursor-not-allowed
|
|
55
|
+
disabled:opacity-50
|
|
56
|
+
|
|
57
|
+
aria-invalid:border-destructive
|
|
58
|
+
aria-invalid:ring-0
|
|
59
|
+
aria-invalid:ring-destructive/20`,
|
|
60
|
+
!error && `
|
|
61
|
+
border-border
|
|
62
|
+
text-inputText
|
|
63
|
+
focus-visible:border-inputText
|
|
64
|
+
focus-visible:ring-0
|
|
65
|
+
focus-visible:ring-inputText/20
|
|
66
|
+
`,
|
|
67
|
+
error && `
|
|
68
|
+
border-destructive
|
|
69
|
+
text-destructive
|
|
70
|
+
placeholder:text-destructive/60
|
|
71
|
+
focus-visible:border-destructive
|
|
72
|
+
focus-visible:ring-destructive/30
|
|
73
|
+
`,
|
|
74
|
+
isPassword && "pr-12",
|
|
75
|
+
inputSizes[size],
|
|
76
|
+
className
|
|
77
|
+
),
|
|
78
|
+
...props
|
|
79
|
+
}
|
|
80
|
+
),
|
|
81
|
+
isPassword && /* @__PURE__ */ jsx(
|
|
82
|
+
"button",
|
|
83
|
+
{
|
|
84
|
+
type: "button",
|
|
85
|
+
onClick: () => setShowPassword(!showPassword),
|
|
86
|
+
className: "\n absolute right-5 top-1/2 -translate-y-1/2\n text-muted-foreground hover:text-foreground\n ",
|
|
87
|
+
children: showPassword ? /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: [
|
|
88
|
+
/* @__PURE__ */ jsx("path", { d: "M2 12C2 12 5.5 5 12 5C18.5 5 22 12 22 12C22 12 18.5 19 12 19C5.5 19 2 12 2 12Z", stroke: "#B5B6B8", "stroke-width": "1.5", "stroke-linecap": "round", "stroke-linejoin": "round" }),
|
|
89
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3", stroke: "#B5B6B8", "stroke-width": "1.5" })
|
|
90
|
+
] }) : /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ jsx("path", { d: "M5.05499 3.24563C4.98913 3.17138 4.90918 3.11095 4.81979 3.06783C4.7304 3.02471 4.63334 2.99976 4.53423 2.99443C4.43513 2.9891 4.33595 3.00349 4.24245 3.03677C4.14895 3.07005 4.06298 3.12156 3.98953 3.18831C3.91608 3.25506 3.85661 3.33572 3.81457 3.42562C3.77252 3.51552 3.74874 3.61288 3.7446 3.71204C3.74045 3.8112 3.75603 3.9102 3.79043 4.00329C3.82483 4.09639 3.87737 4.18173 3.94499 4.25438L5.74874 6.23906C2.34374 8.32875 0.879366 11.55 0.814679 11.6963C0.772035 11.7922 0.75 11.896 0.75 12.0009C0.75 12.1059 0.772035 12.2097 0.814679 12.3056C0.847491 12.3797 1.64155 14.1403 3.40687 15.9056C5.75905 18.2569 8.72999 19.5 12 19.5C13.6806 19.5096 15.3442 19.1636 16.8816 18.4847L18.9441 20.7544C19.0099 20.8286 19.0899 20.8891 19.1793 20.9322C19.2686 20.9753 19.3657 21.0002 19.4648 21.0056C19.5639 21.0109 19.6631 20.9965 19.7566 20.9632C19.8501 20.93 19.9361 20.8784 20.0095 20.8117C20.083 20.7449 20.1424 20.6643 20.1845 20.5744C20.2265 20.4845 20.2503 20.3871 20.2544 20.288C20.2586 20.1888 20.243 20.0898 20.2086 19.9967C20.1742 19.9036 20.1217 19.8183 20.0541 19.7456L5.05499 3.24563ZM9.49218 10.3556L13.3987 14.6541C12.8105 14.9636 12.136 15.0689 11.4814 14.9535C10.8268 14.8382 10.229 14.5087 9.78189 14.0168C9.33481 13.5248 9.06377 12.8984 9.01134 12.2357C8.9589 11.573 9.12803 10.9117 9.49218 10.3556ZM12 18C9.11437 18 6.59343 16.9509 4.50655 14.8828C3.64997 14.0315 2.92145 13.0605 2.34374 12C2.78343 11.1759 4.18687 8.86969 6.7828 7.37063L8.4703 9.22219C7.81699 10.0589 7.48052 11.0997 7.52036 12.1605C7.56021 13.2213 7.97379 14.2339 8.68802 15.0192C9.40225 15.8046 10.3711 16.3122 11.4234 16.4522C12.4757 16.5923 13.5436 16.3559 14.4384 15.7847L15.8194 17.3034C14.6006 17.771 13.3053 18.0072 12 18ZM12.5625 9.05344C12.3671 9.01614 12.1944 8.90274 12.0826 8.73818C11.9708 8.57361 11.9289 8.37137 11.9662 8.17594C12.0035 7.98051 12.1169 7.8079 12.2815 7.69608C12.4461 7.58426 12.6483 7.54239 12.8437 7.57969C13.7996 7.765 14.67 8.25436 15.325 8.97477C15.98 9.69518 16.3846 10.608 16.4784 11.5772C16.4969 11.7752 16.436 11.9725 16.3091 12.1257C16.1822 12.2788 15.9996 12.3752 15.8016 12.3938C15.7781 12.3951 15.7547 12.3951 15.7312 12.3938C15.5438 12.3946 15.3628 12.3251 15.224 12.1992C15.0852 12.0732 14.9986 11.8998 14.9812 11.7131C14.9181 11.0685 14.6486 10.4615 14.2128 9.98226C13.7771 9.50307 13.1982 9.17731 12.5625 9.05344ZM23.1825 12.3056C23.1431 12.3938 22.1934 14.4966 20.055 16.4119C19.9819 16.4794 19.8961 16.5317 19.8027 16.5658C19.7092 16.5998 19.6099 16.6149 19.5105 16.6102C19.4111 16.6055 19.3136 16.5811 19.2238 16.5384C19.1339 16.4956 19.0535 16.4354 18.9871 16.3613C18.9208 16.2872 18.8698 16.2006 18.8373 16.1066C18.8047 16.0125 18.7912 15.913 18.7975 15.8137C18.8037 15.7144 18.8297 15.6173 18.8739 15.5282C18.918 15.439 18.9795 15.3595 19.0547 15.2944C20.1038 14.3518 20.9851 13.2378 21.6609 12C21.0819 10.9385 20.3518 9.96683 19.4934 9.11531C17.4066 7.04906 14.8856 6 12 6C11.392 5.99926 10.7849 6.04849 10.185 6.14719C10.0874 6.16444 9.98741 6.16219 9.89073 6.14058C9.79404 6.11896 9.70259 6.07839 9.62167 6.02123C9.54074 5.96407 9.47195 5.89144 9.41925 5.80754C9.36656 5.72363 9.33101 5.63012 9.31466 5.5324C9.29832 5.43469 9.30149 5.3347 9.32401 5.23821C9.34652 5.14173 9.38793 5.05066 9.44584 4.97027C9.50375 4.88988 9.57702 4.82176 9.6614 4.76985C9.74579 4.71794 9.83963 4.68326 9.93749 4.66781C10.6192 4.55525 11.309 4.49912 12 4.5C15.27 4.5 18.2409 5.74313 20.5931 8.09531C22.3584 9.86063 23.1525 11.6222 23.1853 11.6963C23.2279 11.7922 23.25 11.896 23.25 12.0009C23.25 12.1059 23.2279 12.2097 23.1853 12.3056H23.1825Z", fill: "#B5B6B8" }) })
|
|
91
|
+
}
|
|
92
|
+
)
|
|
93
|
+
] }),
|
|
94
|
+
error && /* @__PURE__ */ jsx("p", { className: "mt-1 px-3 text-[12px] leading-[16px] text-destructive font-sans", children: error })
|
|
95
|
+
] });
|
|
96
|
+
}
|
|
97
|
+
);
|
|
98
|
+
Input.displayName = "Input";
|
|
99
|
+
|
|
100
|
+
// src/components/ui/button.tsx
|
|
101
|
+
import { cva } from "class-variance-authority";
|
|
102
|
+
import { Slot } from "@radix-ui/react-slot";
|
|
103
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
104
|
+
var buttonVariants = cva(
|
|
105
|
+
"flex items-center justify-center border border-transparent font-medium transition-all outline-none select-none disabled:pointer-events-none disabled:opacity-50",
|
|
106
|
+
{
|
|
107
|
+
variants: {
|
|
108
|
+
variant: {
|
|
109
|
+
primary: `
|
|
110
|
+
bg-primary
|
|
111
|
+
text-primary-foreground
|
|
112
|
+
hover:bg-primary/90
|
|
113
|
+
rounded-[48px]
|
|
114
|
+
`,
|
|
115
|
+
secondary: `
|
|
116
|
+
bg-gradient-to-r
|
|
117
|
+
from-[#FBA022]
|
|
118
|
+
to-[#157C70]
|
|
119
|
+
text-white
|
|
120
|
+
hover:opacity-90
|
|
121
|
+
rounded-[48px]
|
|
122
|
+
`,
|
|
123
|
+
outline: "border-border bg-background hover:bg-muted rounded-[48px]",
|
|
124
|
+
outlinePrimary: `
|
|
125
|
+
bg-transparent
|
|
126
|
+
border-2
|
|
127
|
+
border-primary
|
|
128
|
+
text-primary
|
|
129
|
+
rounded-[48px]
|
|
130
|
+
hover:bg-primary/20
|
|
131
|
+
`,
|
|
132
|
+
outlineSecondary: `
|
|
133
|
+
bg-transparent
|
|
134
|
+
border-2
|
|
135
|
+
border-[hsl(var(--outlinesecondary))]
|
|
136
|
+
text-[hsl(var(--outlinesecondary))]
|
|
137
|
+
rounded-[48px]
|
|
138
|
+
hover:bg-[hsl(var(--outlinesecondary))]/20
|
|
139
|
+
`,
|
|
140
|
+
outlineWhite: `
|
|
141
|
+
bg-transparent
|
|
142
|
+
border-2
|
|
143
|
+
border-[hsl(var(--basewhite))]
|
|
144
|
+
text-[hsl(var(--basewhite))]
|
|
145
|
+
rounded-[48px]
|
|
146
|
+
hover:bg-[hsl(var(--baseWhite))]/20
|
|
147
|
+
`
|
|
148
|
+
},
|
|
149
|
+
size: {
|
|
150
|
+
sm: "h-9 px-4 text-sm",
|
|
151
|
+
md: "h-10 px-6 text-base",
|
|
152
|
+
lg: `
|
|
153
|
+
h-[40px]
|
|
154
|
+
w-[350px]
|
|
155
|
+
px-[32px]
|
|
156
|
+
gap-[10px]
|
|
157
|
+
text-base
|
|
158
|
+
rounded-[48px]
|
|
159
|
+
`,
|
|
160
|
+
xl: `
|
|
161
|
+
h-[50px]
|
|
162
|
+
w-[350px]
|
|
163
|
+
px-[40px]
|
|
164
|
+
gap-[10px]
|
|
165
|
+
text-base
|
|
166
|
+
rounded-[48px]
|
|
167
|
+
`,
|
|
168
|
+
full: `
|
|
169
|
+
h-full
|
|
170
|
+
max-h-[50px]
|
|
171
|
+
min-h-[30px]
|
|
172
|
+
w-full
|
|
173
|
+
max-w-[500px]
|
|
174
|
+
min-w-[200px]
|
|
175
|
+
px-[40px]
|
|
176
|
+
gap-[10px]
|
|
177
|
+
text-base
|
|
178
|
+
rounded-[48px]
|
|
179
|
+
`
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
defaultVariants: {
|
|
183
|
+
variant: "primary",
|
|
184
|
+
size: "md"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
);
|
|
188
|
+
function Button({
|
|
189
|
+
className,
|
|
190
|
+
variant,
|
|
191
|
+
size,
|
|
192
|
+
asChild = false,
|
|
193
|
+
...props
|
|
194
|
+
}) {
|
|
195
|
+
const Comp = asChild ? Slot : "button";
|
|
196
|
+
return /* @__PURE__ */ jsx2(
|
|
197
|
+
Comp,
|
|
198
|
+
{
|
|
199
|
+
className: cn(buttonVariants({ variant, size }), className),
|
|
200
|
+
...props
|
|
201
|
+
}
|
|
202
|
+
);
|
|
2028
203
|
}
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
}
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
}
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
children: /* @__PURE__ */ (0, $.jsx)("path", {
|
|
2103
|
-
d: "M21.0001 11.9999C21.0001 12.1988 20.9211 12.3896 20.7804 12.5303C20.6398 12.6709 20.449 12.7499 20.2501 12.7499H5.56041L11.0307 18.2193C11.1004 18.289 11.1557 18.3717 11.1934 18.4628C11.2311 18.5538 11.2505 18.6514 11.2505 18.7499C11.2505 18.8485 11.2311 18.9461 11.1934 19.0371C11.1557 19.1281 11.1004 19.2109 11.0307 19.2806C10.961 19.3502 10.8783 19.4055 10.7873 19.4432C10.6962 19.4809 10.5986 19.5003 10.5001 19.5003C10.4016 19.5003 10.304 19.4809 10.2129 19.4432C10.1219 19.4055 10.0392 19.3502 9.96948 19.2806L3.21948 12.5306C3.14974 12.4609 3.09443 12.3782 3.05668 12.2871C3.01894 12.1961 2.99951 12.0985 2.99951 11.9999C2.99951 11.9014 3.01894 11.8038 3.05668 11.7127C3.09443 11.6217 3.14974 11.539 3.21948 11.4693L9.96948 4.7193C10.1102 4.57857 10.3011 4.49951 10.5001 4.49951C10.6991 4.49951 10.89 4.57857 11.0307 4.7193C11.1715 4.86003 11.2505 5.05091 11.2505 5.24993C11.2505 5.44895 11.1715 5.63982 11.0307 5.78055L5.56041 11.2499H20.2501C20.449 11.2499 20.6398 11.3289 20.7804 11.4696C20.9211 11.6103 21.0001 11.801 21.0001 11.9999Z",
|
|
2104
|
-
fill: "currentColor"
|
|
2105
|
-
})
|
|
2106
|
-
}), /* @__PURE__ */ (0, $.jsx)("span", { children: n })]
|
|
2107
|
-
}));
|
|
2108
|
-
nt.displayName = "BackButton";
|
|
2109
|
-
//#endregion
|
|
2110
|
-
export { nt as BackButton, et as Button, Ie as Input };
|
|
204
|
+
|
|
205
|
+
// src/components/ui/backButton.tsx
|
|
206
|
+
import * as React2 from "react";
|
|
207
|
+
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
208
|
+
var sizes = {
|
|
209
|
+
ch: "text-[14px] gap-1 [&_svg]:w-4 [&_svg]:h-4",
|
|
210
|
+
md: "text-[16px] gap-2 [&_svg]:w-5 [&_svg]:h-5",
|
|
211
|
+
lg: "text-[18px] gap-2.5 [&_svg]:w-6 [&_svg]:h-6"
|
|
212
|
+
};
|
|
213
|
+
var BackButton = React2.forwardRef(
|
|
214
|
+
({ className, size = "lg", children = "Regresar", ...props }, ref) => {
|
|
215
|
+
return /* @__PURE__ */ jsxs2(
|
|
216
|
+
"button",
|
|
217
|
+
{
|
|
218
|
+
ref,
|
|
219
|
+
className: cn(
|
|
220
|
+
`
|
|
221
|
+
inline-flex
|
|
222
|
+
items-center
|
|
223
|
+
bg-transparent
|
|
224
|
+
|
|
225
|
+
font-sans
|
|
226
|
+
font-medium
|
|
227
|
+
|
|
228
|
+
text-basewhite
|
|
229
|
+
|
|
230
|
+
text-center
|
|
231
|
+
leading-none
|
|
232
|
+
|
|
233
|
+
cursor-pointer
|
|
234
|
+
hover:underline
|
|
235
|
+
|
|
236
|
+
transition-all
|
|
237
|
+
outline-none
|
|
238
|
+
|
|
239
|
+
active:opacity-70
|
|
240
|
+
|
|
241
|
+
disabled:opacity-50
|
|
242
|
+
disabled:cursor-not-allowed
|
|
243
|
+
`,
|
|
244
|
+
sizes[size],
|
|
245
|
+
className
|
|
246
|
+
),
|
|
247
|
+
...props,
|
|
248
|
+
children: [
|
|
249
|
+
/* @__PURE__ */ jsx3(
|
|
250
|
+
"svg",
|
|
251
|
+
{
|
|
252
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
253
|
+
viewBox: "0 0 24 24",
|
|
254
|
+
fill: "none",
|
|
255
|
+
children: /* @__PURE__ */ jsx3(
|
|
256
|
+
"path",
|
|
257
|
+
{
|
|
258
|
+
d: "M21.0001 11.9999C21.0001 12.1988 20.9211 12.3896 20.7804 12.5303C20.6398 12.6709 20.449 12.7499 20.2501 12.7499H5.56041L11.0307 18.2193C11.1004 18.289 11.1557 18.3717 11.1934 18.4628C11.2311 18.5538 11.2505 18.6514 11.2505 18.7499C11.2505 18.8485 11.2311 18.9461 11.1934 19.0371C11.1557 19.1281 11.1004 19.2109 11.0307 19.2806C10.961 19.3502 10.8783 19.4055 10.7873 19.4432C10.6962 19.4809 10.5986 19.5003 10.5001 19.5003C10.4016 19.5003 10.304 19.4809 10.2129 19.4432C10.1219 19.4055 10.0392 19.3502 9.96948 19.2806L3.21948 12.5306C3.14974 12.4609 3.09443 12.3782 3.05668 12.2871C3.01894 12.1961 2.99951 12.0985 2.99951 11.9999C2.99951 11.9014 3.01894 11.8038 3.05668 11.7127C3.09443 11.6217 3.14974 11.539 3.21948 11.4693L9.96948 4.7193C10.1102 4.57857 10.3011 4.49951 10.5001 4.49951C10.6991 4.49951 10.89 4.57857 11.0307 4.7193C11.1715 4.86003 11.2505 5.05091 11.2505 5.24993C11.2505 5.44895 11.1715 5.63982 11.0307 5.78055L5.56041 11.2499H20.2501C20.449 11.2499 20.6398 11.3289 20.7804 11.4696C20.9211 11.6103 21.0001 11.801 21.0001 11.9999Z",
|
|
259
|
+
fill: "currentColor"
|
|
260
|
+
}
|
|
261
|
+
)
|
|
262
|
+
}
|
|
263
|
+
),
|
|
264
|
+
/* @__PURE__ */ jsx3("span", { children })
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
);
|
|
268
|
+
}
|
|
269
|
+
);
|
|
270
|
+
BackButton.displayName = "BackButton";
|
|
271
|
+
export {
|
|
272
|
+
BackButton,
|
|
273
|
+
Button,
|
|
274
|
+
Input
|
|
275
|
+
};
|
|
276
|
+
//# sourceMappingURL=index.js.map
|