@dimasbaguspm/versaur 0.0.56 → 0.0.58
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/js/desktop-breakpoint-CuSom-sN.js +47 -0
- package/dist/js/feedbacks/index.js +1 -1
- package/dist/js/forms/index.js +1 -1
- package/dist/js/helpers/index.js +14 -0
- package/dist/js/{image-rectangle-K9jmTTED.js → image-rectangle-CCvXv24a.js} +819 -926
- package/dist/js/{index-DOdDlCoL.js → index-BDtz_hQY.js} +520 -802
- package/dist/js/index.js +76 -64
- package/dist/js/jsx-runtime-C5mzlN2N.js +284 -0
- package/dist/js/layouts/index.js +1 -1
- package/dist/js/navigation/index.js +1 -1
- package/dist/js/overlays/index.js +2 -2
- package/dist/js/primitive/index.js +2 -2
- package/dist/js/providers/index.js +1 -1
- package/dist/js/{skeleton-BNZyaRjo.js → skeleton-BRwIW26B.js} +6 -5
- package/dist/js/{snackbar-DH8jCh2V.js → snackbar-CTq4MLir.js} +14 -13
- package/dist/js/{tabs-I4n6MLAv.js → tabs-BQs53hHL.js} +59 -50
- package/dist/js/{time-picker-input-BgbyllDK.js → time-picker-input-Disd231b.js} +24 -23
- package/dist/js/{tooltip-nZW9TUz3.js → tooltip-Dpx3TpR6.js} +211 -205
- package/dist/js/{top-bar-Dqje-W3G.js → top-bar-DEesTo9i.js} +242 -197
- package/dist/js/{use-snackbars-Cou8L41F.js → use-snackbars-B6lnVjrX.js} +14 -13
- package/dist/types/helpers/index.d.ts +1 -0
- package/dist/types/helpers/match-media/built-in/components/desktop-breakpoint.d.ts +18 -0
- package/dist/types/helpers/match-media/built-in/components/index.d.ts +3 -0
- package/dist/types/helpers/match-media/built-in/components/mobile-breakpoint.d.ts +18 -0
- package/dist/types/helpers/match-media/built-in/components/tablet-breakpoint.d.ts +18 -0
- package/dist/types/helpers/match-media/built-in/hooks/index.d.ts +3 -0
- package/dist/types/helpers/match-media/built-in/hooks/use-desktop-breakpoint.d.ts +11 -0
- package/dist/types/helpers/match-media/built-in/hooks/use-mobile-breakpoint.d.ts +11 -0
- package/dist/types/helpers/match-media/built-in/hooks/use-tablet-breakpoint.d.ts +11 -0
- package/dist/types/helpers/match-media/built-in/index.d.ts +2 -0
- package/dist/types/helpers/match-media/constants.d.ts +7 -0
- package/dist/types/helpers/match-media/index.d.ts +4 -0
- package/dist/types/helpers/match-media/match-media.d.ts +25 -0
- package/dist/types/helpers/match-media/test-helpers.d.ts +21 -0
- package/dist/types/helpers/match-media/use-match-media.d.ts +15 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/layouts/badge-group/types.d.ts +5 -0
- package/dist/types/layouts/button-group/types.d.ts +5 -0
- package/dist/types/layouts/filter-chip-group/types.d.ts +5 -0
- package/dist/types/layouts/page-header/types.d.ts +14 -0
- package/dist/types/navigation/tabs/types.d.ts +4 -0
- package/dist/types/overlays/menu/types.d.ts +8 -8
- package/dist/types/primitive/button-menu/types.d.ts +1 -1
- package/dist/types/primitive/button-menu-icon/types.d.ts +1 -1
- package/dist/utils/enforce-subpath-import.js +3 -1
- package/package.json +5 -1
- package/dist/types/overlays/menu/use-menu.d.ts +0 -15
|
@@ -1,372 +1,91 @@
|
|
|
1
|
-
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
* @license React
|
|
5
|
-
* react-jsx-runtime.production.js
|
|
6
|
-
*
|
|
7
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
8
|
-
*
|
|
9
|
-
* This source code is licensed under the MIT license found in the
|
|
10
|
-
* LICENSE file in the root directory of this source tree.
|
|
11
|
-
*/
|
|
12
|
-
var he;
|
|
13
|
-
function Le() {
|
|
14
|
-
if (he) return oe;
|
|
15
|
-
he = 1;
|
|
16
|
-
var e = Symbol.for("react.transitional.element"), n = Symbol.for("react.fragment");
|
|
17
|
-
function o(t, i, l) {
|
|
18
|
-
var c = null;
|
|
19
|
-
if (l !== void 0 && (c = "" + l), i.key !== void 0 && (c = "" + i.key), "key" in i) {
|
|
20
|
-
l = {};
|
|
21
|
-
for (var b in i)
|
|
22
|
-
b !== "key" && (l[b] = i[b]);
|
|
23
|
-
} else l = i;
|
|
24
|
-
return i = l.ref, {
|
|
25
|
-
$$typeof: e,
|
|
26
|
-
type: t,
|
|
27
|
-
key: c,
|
|
28
|
-
ref: i !== void 0 ? i : null,
|
|
29
|
-
props: l
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
return oe.Fragment = n, oe.jsx = o, oe.jsxs = o, oe;
|
|
33
|
-
}
|
|
34
|
-
var te = {};
|
|
35
|
-
/**
|
|
36
|
-
* @license React
|
|
37
|
-
* react-jsx-runtime.development.js
|
|
38
|
-
*
|
|
39
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
40
|
-
*
|
|
41
|
-
* This source code is licensed under the MIT license found in the
|
|
42
|
-
* LICENSE file in the root directory of this source tree.
|
|
43
|
-
*/
|
|
44
|
-
var ke;
|
|
45
|
-
function Fe() {
|
|
46
|
-
return ke || (ke = 1, process.env.NODE_ENV !== "production" && function() {
|
|
47
|
-
function e(r) {
|
|
48
|
-
if (r == null) return null;
|
|
49
|
-
if (typeof r == "function")
|
|
50
|
-
return r.$$typeof === se ? null : r.displayName || r.name || null;
|
|
51
|
-
if (typeof r == "string") return r;
|
|
52
|
-
switch (r) {
|
|
53
|
-
case E:
|
|
54
|
-
return "Fragment";
|
|
55
|
-
case N:
|
|
56
|
-
return "Profiler";
|
|
57
|
-
case P:
|
|
58
|
-
return "StrictMode";
|
|
59
|
-
case F:
|
|
60
|
-
return "Suspense";
|
|
61
|
-
case I:
|
|
62
|
-
return "SuspenseList";
|
|
63
|
-
case z:
|
|
64
|
-
return "Activity";
|
|
65
|
-
}
|
|
66
|
-
if (typeof r == "object")
|
|
67
|
-
switch (typeof r.tag == "number" && console.error(
|
|
68
|
-
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
|
|
69
|
-
), r.$$typeof) {
|
|
70
|
-
case T:
|
|
71
|
-
return "Portal";
|
|
72
|
-
case Y:
|
|
73
|
-
return (r.displayName || "Context") + ".Provider";
|
|
74
|
-
case J:
|
|
75
|
-
return (r._context.displayName || "Context") + ".Consumer";
|
|
76
|
-
case L:
|
|
77
|
-
var m = r.render;
|
|
78
|
-
return r = r.displayName, r || (r = m.displayName || m.name || "", r = r !== "" ? "ForwardRef(" + r + ")" : "ForwardRef"), r;
|
|
79
|
-
case U:
|
|
80
|
-
return m = r.displayName || null, m !== null ? m : e(r.type) || "Memo";
|
|
81
|
-
case u:
|
|
82
|
-
m = r._payload, r = r._init;
|
|
83
|
-
try {
|
|
84
|
-
return e(r(m));
|
|
85
|
-
} catch {
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
return null;
|
|
89
|
-
}
|
|
90
|
-
function n(r) {
|
|
91
|
-
return "" + r;
|
|
92
|
-
}
|
|
93
|
-
function o(r) {
|
|
94
|
-
try {
|
|
95
|
-
n(r);
|
|
96
|
-
var m = !1;
|
|
97
|
-
} catch {
|
|
98
|
-
m = !0;
|
|
99
|
-
}
|
|
100
|
-
if (m) {
|
|
101
|
-
m = console;
|
|
102
|
-
var k = m.error, g = typeof Symbol == "function" && Symbol.toStringTag && r[Symbol.toStringTag] || r.constructor.name || "Object";
|
|
103
|
-
return k.call(
|
|
104
|
-
m,
|
|
105
|
-
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
|
|
106
|
-
g
|
|
107
|
-
), n(r);
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
function t(r) {
|
|
111
|
-
if (r === E) return "<>";
|
|
112
|
-
if (typeof r == "object" && r !== null && r.$$typeof === u)
|
|
113
|
-
return "<...>";
|
|
114
|
-
try {
|
|
115
|
-
var m = e(r);
|
|
116
|
-
return m ? "<" + m + ">" : "<...>";
|
|
117
|
-
} catch {
|
|
118
|
-
return "<...>";
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
function i() {
|
|
122
|
-
var r = X.A;
|
|
123
|
-
return r === null ? null : r.getOwner();
|
|
124
|
-
}
|
|
125
|
-
function l() {
|
|
126
|
-
return Error("react-stack-top-frame");
|
|
127
|
-
}
|
|
128
|
-
function c(r) {
|
|
129
|
-
if (D.call(r, "key")) {
|
|
130
|
-
var m = Object.getOwnPropertyDescriptor(r, "key").get;
|
|
131
|
-
if (m && m.isReactWarning) return !1;
|
|
132
|
-
}
|
|
133
|
-
return r.key !== void 0;
|
|
134
|
-
}
|
|
135
|
-
function b(r, m) {
|
|
136
|
-
function k() {
|
|
137
|
-
G || (G = !0, console.error(
|
|
138
|
-
"%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)",
|
|
139
|
-
m
|
|
140
|
-
));
|
|
141
|
-
}
|
|
142
|
-
k.isReactWarning = !0, Object.defineProperty(r, "key", {
|
|
143
|
-
get: k,
|
|
144
|
-
configurable: !0
|
|
145
|
-
});
|
|
146
|
-
}
|
|
147
|
-
function f() {
|
|
148
|
-
var r = e(this.type);
|
|
149
|
-
return C[r] || (C[r] = !0, console.error(
|
|
150
|
-
"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."
|
|
151
|
-
)), r = this.props.ref, r !== void 0 ? r : null;
|
|
152
|
-
}
|
|
153
|
-
function h(r, m, k, g, w, _, H, v) {
|
|
154
|
-
return k = _.ref, r = {
|
|
155
|
-
$$typeof: M,
|
|
156
|
-
type: r,
|
|
157
|
-
key: m,
|
|
158
|
-
props: _,
|
|
159
|
-
_owner: w
|
|
160
|
-
}, (k !== void 0 ? k : null) !== null ? Object.defineProperty(r, "ref", {
|
|
161
|
-
enumerable: !1,
|
|
162
|
-
get: f
|
|
163
|
-
}) : Object.defineProperty(r, "ref", { enumerable: !1, value: null }), r._store = {}, Object.defineProperty(r._store, "validated", {
|
|
164
|
-
configurable: !1,
|
|
165
|
-
enumerable: !1,
|
|
166
|
-
writable: !0,
|
|
167
|
-
value: 0
|
|
168
|
-
}), Object.defineProperty(r, "_debugInfo", {
|
|
169
|
-
configurable: !1,
|
|
170
|
-
enumerable: !1,
|
|
171
|
-
writable: !0,
|
|
172
|
-
value: null
|
|
173
|
-
}), Object.defineProperty(r, "_debugStack", {
|
|
174
|
-
configurable: !1,
|
|
175
|
-
enumerable: !1,
|
|
176
|
-
writable: !0,
|
|
177
|
-
value: H
|
|
178
|
-
}), Object.defineProperty(r, "_debugTask", {
|
|
179
|
-
configurable: !1,
|
|
180
|
-
enumerable: !1,
|
|
181
|
-
writable: !0,
|
|
182
|
-
value: v
|
|
183
|
-
}), Object.freeze && (Object.freeze(r.props), Object.freeze(r)), r;
|
|
184
|
-
}
|
|
185
|
-
function x(r, m, k, g, w, _, H, v) {
|
|
186
|
-
var y = m.children;
|
|
187
|
-
if (y !== void 0)
|
|
188
|
-
if (g)
|
|
189
|
-
if (ae(y)) {
|
|
190
|
-
for (g = 0; g < y.length; g++)
|
|
191
|
-
A(y[g]);
|
|
192
|
-
Object.freeze && Object.freeze(y);
|
|
193
|
-
} else
|
|
194
|
-
console.error(
|
|
195
|
-
"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
|
|
196
|
-
);
|
|
197
|
-
else A(y);
|
|
198
|
-
if (D.call(m, "key")) {
|
|
199
|
-
y = e(r);
|
|
200
|
-
var O = Object.keys(m).filter(function(re) {
|
|
201
|
-
return re !== "key";
|
|
202
|
-
});
|
|
203
|
-
g = 0 < O.length ? "{key: someKey, " + O.join(": ..., ") + ": ...}" : "{key: someKey}", ee[y + g] || (O = 0 < O.length ? "{" + O.join(": ..., ") + ": ...}" : "{}", console.error(
|
|
204
|
-
`A props object containing a "key" prop is being spread into JSX:
|
|
205
|
-
let props = %s;
|
|
206
|
-
<%s {...props} />
|
|
207
|
-
React keys must be passed directly to JSX without using spread:
|
|
208
|
-
let props = %s;
|
|
209
|
-
<%s key={someKey} {...props} />`,
|
|
210
|
-
g,
|
|
211
|
-
y,
|
|
212
|
-
O,
|
|
213
|
-
y
|
|
214
|
-
), ee[y + g] = !0);
|
|
215
|
-
}
|
|
216
|
-
if (y = null, k !== void 0 && (o(k), y = "" + k), c(m) && (o(m.key), y = "" + m.key), "key" in m) {
|
|
217
|
-
k = {};
|
|
218
|
-
for (var $ in m)
|
|
219
|
-
$ !== "key" && (k[$] = m[$]);
|
|
220
|
-
} else k = m;
|
|
221
|
-
return y && b(
|
|
222
|
-
k,
|
|
223
|
-
typeof r == "function" ? r.displayName || r.name || "Unknown" : r
|
|
224
|
-
), h(
|
|
225
|
-
r,
|
|
226
|
-
y,
|
|
227
|
-
_,
|
|
228
|
-
w,
|
|
229
|
-
i(),
|
|
230
|
-
k,
|
|
231
|
-
H,
|
|
232
|
-
v
|
|
233
|
-
);
|
|
234
|
-
}
|
|
235
|
-
function A(r) {
|
|
236
|
-
typeof r == "object" && r !== null && r.$$typeof === M && r._store && (r._store.validated = 1);
|
|
237
|
-
}
|
|
238
|
-
var S = Ve, M = Symbol.for("react.transitional.element"), T = Symbol.for("react.portal"), E = Symbol.for("react.fragment"), P = Symbol.for("react.strict_mode"), N = Symbol.for("react.profiler"), J = Symbol.for("react.consumer"), Y = Symbol.for("react.context"), L = Symbol.for("react.forward_ref"), F = Symbol.for("react.suspense"), I = Symbol.for("react.suspense_list"), U = Symbol.for("react.memo"), u = Symbol.for("react.lazy"), z = Symbol.for("react.activity"), se = Symbol.for("react.client.reference"), X = S.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, D = Object.prototype.hasOwnProperty, ae = Array.isArray, B = console.createTask ? console.createTask : function() {
|
|
239
|
-
return null;
|
|
240
|
-
};
|
|
241
|
-
S = {
|
|
242
|
-
"react-stack-bottom-frame": function(r) {
|
|
243
|
-
return r();
|
|
244
|
-
}
|
|
245
|
-
};
|
|
246
|
-
var G, C = {}, j = S["react-stack-bottom-frame"].bind(
|
|
247
|
-
S,
|
|
248
|
-
l
|
|
249
|
-
)(), d = B(t(l)), ee = {};
|
|
250
|
-
te.Fragment = E, te.jsx = function(r, m, k, g, w) {
|
|
251
|
-
var _ = 1e4 > X.recentlyCreatedOwnerStacks++;
|
|
252
|
-
return x(
|
|
253
|
-
r,
|
|
254
|
-
m,
|
|
255
|
-
k,
|
|
256
|
-
!1,
|
|
257
|
-
g,
|
|
258
|
-
w,
|
|
259
|
-
_ ? Error("react-stack-top-frame") : j,
|
|
260
|
-
_ ? B(t(r)) : d
|
|
261
|
-
);
|
|
262
|
-
}, te.jsxs = function(r, m, k, g, w) {
|
|
263
|
-
var _ = 1e4 > X.recentlyCreatedOwnerStacks++;
|
|
264
|
-
return x(
|
|
265
|
-
r,
|
|
266
|
-
m,
|
|
267
|
-
k,
|
|
268
|
-
!0,
|
|
269
|
-
g,
|
|
270
|
-
w,
|
|
271
|
-
_ ? Error("react-stack-top-frame") : j,
|
|
272
|
-
_ ? B(t(r)) : d
|
|
273
|
-
);
|
|
274
|
-
};
|
|
275
|
-
}()), te;
|
|
276
|
-
}
|
|
277
|
-
var xe;
|
|
278
|
-
function $e() {
|
|
279
|
-
return xe || (xe = 1, process.env.NODE_ENV === "production" ? le.exports = Le() : le.exports = Fe()), le.exports;
|
|
280
|
-
}
|
|
281
|
-
var Rr = $e();
|
|
282
|
-
function Se(e) {
|
|
283
|
-
var n, o, t = "";
|
|
284
|
-
if (typeof e == "string" || typeof e == "number") t += e;
|
|
1
|
+
function we(e) {
|
|
2
|
+
var t, o, r = "";
|
|
3
|
+
if (typeof e == "string" || typeof e == "number") r += e;
|
|
285
4
|
else if (typeof e == "object") if (Array.isArray(e)) {
|
|
286
|
-
var
|
|
287
|
-
for (
|
|
288
|
-
} else for (o in e) e[o] && (
|
|
289
|
-
return
|
|
5
|
+
var a = e.length;
|
|
6
|
+
for (t = 0; t < a; t++) e[t] && (o = we(e[t])) && (r && (r += " "), r += o);
|
|
7
|
+
} else for (o in e) e[o] && (r && (r += " "), r += o);
|
|
8
|
+
return r;
|
|
290
9
|
}
|
|
291
|
-
function
|
|
292
|
-
for (var e,
|
|
293
|
-
return
|
|
10
|
+
function ke() {
|
|
11
|
+
for (var e, t, o = 0, r = "", a = arguments.length; o < a; o++) (e = arguments[o]) && (t = we(e)) && (r && (r += " "), r += t);
|
|
12
|
+
return r;
|
|
294
13
|
}
|
|
295
|
-
const
|
|
296
|
-
const
|
|
14
|
+
const ne = "-", Ne = (e) => {
|
|
15
|
+
const t = Ve(e), {
|
|
297
16
|
conflictingClassGroups: o,
|
|
298
|
-
conflictingClassGroupModifiers:
|
|
17
|
+
conflictingClassGroupModifiers: r
|
|
299
18
|
} = e;
|
|
300
19
|
return {
|
|
301
|
-
getClassGroupId: (
|
|
302
|
-
const
|
|
303
|
-
return
|
|
20
|
+
getClassGroupId: (l) => {
|
|
21
|
+
const p = l.split(ne);
|
|
22
|
+
return p[0] === "" && p.length !== 1 && p.shift(), ve(p, t) || Te(l);
|
|
304
23
|
},
|
|
305
|
-
getConflictingClassGroupIds: (
|
|
306
|
-
const
|
|
307
|
-
return
|
|
24
|
+
getConflictingClassGroupIds: (l, p) => {
|
|
25
|
+
const u = o[l] || [];
|
|
26
|
+
return p && r[l] ? [...u, ...r[l]] : u;
|
|
308
27
|
}
|
|
309
28
|
};
|
|
310
|
-
},
|
|
29
|
+
}, ve = (e, t) => {
|
|
311
30
|
if (e.length === 0)
|
|
312
|
-
return
|
|
313
|
-
const o = e[0],
|
|
314
|
-
if (
|
|
315
|
-
return
|
|
316
|
-
if (
|
|
31
|
+
return t.classGroupId;
|
|
32
|
+
const o = e[0], r = t.nextPart.get(o), a = r ? ve(e.slice(1), r) : void 0;
|
|
33
|
+
if (a)
|
|
34
|
+
return a;
|
|
35
|
+
if (t.validators.length === 0)
|
|
317
36
|
return;
|
|
318
|
-
const
|
|
319
|
-
return
|
|
320
|
-
validator:
|
|
321
|
-
}) => c
|
|
322
|
-
},
|
|
323
|
-
if (
|
|
324
|
-
const
|
|
37
|
+
const c = e.join(ne);
|
|
38
|
+
return t.validators.find(({
|
|
39
|
+
validator: l
|
|
40
|
+
}) => l(c))?.classGroupId;
|
|
41
|
+
}, fe = /^\[(.+)\]$/, Te = (e) => {
|
|
42
|
+
if (fe.test(e)) {
|
|
43
|
+
const t = fe.exec(e)[1], o = t?.substring(0, t.indexOf(":"));
|
|
325
44
|
if (o)
|
|
326
45
|
return "arbitrary.." + o;
|
|
327
46
|
}
|
|
328
|
-
},
|
|
47
|
+
}, Ve = (e) => {
|
|
329
48
|
const {
|
|
330
|
-
theme:
|
|
49
|
+
theme: t,
|
|
331
50
|
classGroups: o
|
|
332
|
-
} = e,
|
|
51
|
+
} = e, r = {
|
|
333
52
|
nextPart: /* @__PURE__ */ new Map(),
|
|
334
53
|
validators: []
|
|
335
54
|
};
|
|
336
|
-
for (const
|
|
337
|
-
|
|
338
|
-
return
|
|
339
|
-
},
|
|
340
|
-
e.forEach((
|
|
341
|
-
if (typeof
|
|
342
|
-
const
|
|
343
|
-
|
|
55
|
+
for (const a in o)
|
|
56
|
+
re(o[a], r, a, t);
|
|
57
|
+
return r;
|
|
58
|
+
}, re = (e, t, o, r) => {
|
|
59
|
+
e.forEach((a) => {
|
|
60
|
+
if (typeof a == "string") {
|
|
61
|
+
const c = a === "" ? t : be(t, a);
|
|
62
|
+
c.classGroupId = o;
|
|
344
63
|
return;
|
|
345
64
|
}
|
|
346
|
-
if (typeof
|
|
347
|
-
if (
|
|
348
|
-
|
|
65
|
+
if (typeof a == "function") {
|
|
66
|
+
if (Ee(a)) {
|
|
67
|
+
re(a(r), t, o, r);
|
|
349
68
|
return;
|
|
350
69
|
}
|
|
351
|
-
|
|
352
|
-
validator:
|
|
70
|
+
t.validators.push({
|
|
71
|
+
validator: a,
|
|
353
72
|
classGroupId: o
|
|
354
73
|
});
|
|
355
74
|
return;
|
|
356
75
|
}
|
|
357
|
-
Object.entries(
|
|
358
|
-
|
|
76
|
+
Object.entries(a).forEach(([c, l]) => {
|
|
77
|
+
re(l, be(t, c), o, r);
|
|
359
78
|
});
|
|
360
79
|
});
|
|
361
|
-
},
|
|
80
|
+
}, be = (e, t) => {
|
|
362
81
|
let o = e;
|
|
363
|
-
return
|
|
364
|
-
o.nextPart.has(
|
|
82
|
+
return t.split(ne).forEach((r) => {
|
|
83
|
+
o.nextPart.has(r) || o.nextPart.set(r, {
|
|
365
84
|
nextPart: /* @__PURE__ */ new Map(),
|
|
366
85
|
validators: []
|
|
367
|
-
}), o = o.nextPart.get(
|
|
86
|
+
}), o = o.nextPart.get(r);
|
|
368
87
|
}), o;
|
|
369
|
-
},
|
|
88
|
+
}, Ee = (e) => e.isThemeGetter, je = (e) => {
|
|
370
89
|
if (e < 1)
|
|
371
90
|
return {
|
|
372
91
|
get: () => {
|
|
@@ -374,178 +93,178 @@ const ge = "-", We = (e) => {
|
|
|
374
93
|
set: () => {
|
|
375
94
|
}
|
|
376
95
|
};
|
|
377
|
-
let
|
|
378
|
-
const
|
|
379
|
-
o.set(
|
|
96
|
+
let t = 0, o = /* @__PURE__ */ new Map(), r = /* @__PURE__ */ new Map();
|
|
97
|
+
const a = (c, l) => {
|
|
98
|
+
o.set(c, l), t++, t > e && (t = 0, r = o, o = /* @__PURE__ */ new Map());
|
|
380
99
|
};
|
|
381
100
|
return {
|
|
382
|
-
get(
|
|
383
|
-
let
|
|
384
|
-
if (
|
|
385
|
-
return
|
|
386
|
-
if ((
|
|
387
|
-
return
|
|
101
|
+
get(c) {
|
|
102
|
+
let l = o.get(c);
|
|
103
|
+
if (l !== void 0)
|
|
104
|
+
return l;
|
|
105
|
+
if ((l = r.get(c)) !== void 0)
|
|
106
|
+
return a(c, l), l;
|
|
388
107
|
},
|
|
389
|
-
set(
|
|
390
|
-
o.has(
|
|
108
|
+
set(c, l) {
|
|
109
|
+
o.has(c) ? o.set(c, l) : a(c, l);
|
|
391
110
|
}
|
|
392
111
|
};
|
|
393
|
-
},
|
|
112
|
+
}, te = "!", se = ":", Le = se.length, Oe = (e) => {
|
|
394
113
|
const {
|
|
395
|
-
prefix:
|
|
114
|
+
prefix: t,
|
|
396
115
|
experimentalParseClassName: o
|
|
397
116
|
} = e;
|
|
398
|
-
let
|
|
399
|
-
const
|
|
400
|
-
let
|
|
401
|
-
for (let
|
|
402
|
-
let
|
|
403
|
-
if (
|
|
404
|
-
if (
|
|
405
|
-
|
|
117
|
+
let r = (a) => {
|
|
118
|
+
const c = [];
|
|
119
|
+
let l = 0, p = 0, u = 0, f;
|
|
120
|
+
for (let w = 0; w < a.length; w++) {
|
|
121
|
+
let k = a[w];
|
|
122
|
+
if (l === 0 && p === 0) {
|
|
123
|
+
if (k === se) {
|
|
124
|
+
c.push(a.slice(u, w)), u = w + Le;
|
|
406
125
|
continue;
|
|
407
126
|
}
|
|
408
|
-
if (
|
|
409
|
-
|
|
127
|
+
if (k === "/") {
|
|
128
|
+
f = w;
|
|
410
129
|
continue;
|
|
411
130
|
}
|
|
412
131
|
}
|
|
413
|
-
|
|
132
|
+
k === "[" ? l++ : k === "]" ? l-- : k === "(" ? p++ : k === ")" && p--;
|
|
414
133
|
}
|
|
415
|
-
const
|
|
134
|
+
const b = c.length === 0 ? a : a.substring(u), y = _e(b), z = y !== b, I = f && f > u ? f - u : void 0;
|
|
416
135
|
return {
|
|
417
|
-
modifiers:
|
|
418
|
-
hasImportantModifier:
|
|
419
|
-
baseClassName:
|
|
420
|
-
maybePostfixModifierPosition:
|
|
136
|
+
modifiers: c,
|
|
137
|
+
hasImportantModifier: z,
|
|
138
|
+
baseClassName: y,
|
|
139
|
+
maybePostfixModifierPosition: I
|
|
421
140
|
};
|
|
422
141
|
};
|
|
423
|
-
if (
|
|
424
|
-
const
|
|
425
|
-
|
|
142
|
+
if (t) {
|
|
143
|
+
const a = t + se, c = r;
|
|
144
|
+
r = (l) => l.startsWith(a) ? c(l.substring(a.length)) : {
|
|
426
145
|
isExternal: !0,
|
|
427
146
|
modifiers: [],
|
|
428
147
|
hasImportantModifier: !1,
|
|
429
|
-
baseClassName:
|
|
148
|
+
baseClassName: l,
|
|
430
149
|
maybePostfixModifierPosition: void 0
|
|
431
150
|
};
|
|
432
151
|
}
|
|
433
152
|
if (o) {
|
|
434
|
-
const
|
|
435
|
-
|
|
436
|
-
className:
|
|
437
|
-
parseClassName:
|
|
153
|
+
const a = r;
|
|
154
|
+
r = (c) => o({
|
|
155
|
+
className: c,
|
|
156
|
+
parseClassName: a
|
|
438
157
|
});
|
|
439
158
|
}
|
|
440
|
-
return
|
|
441
|
-
},
|
|
442
|
-
const
|
|
443
|
-
return (
|
|
444
|
-
if (
|
|
445
|
-
return
|
|
446
|
-
const
|
|
447
|
-
let
|
|
448
|
-
return
|
|
449
|
-
|
|
450
|
-
}),
|
|
159
|
+
return r;
|
|
160
|
+
}, _e = (e) => e.endsWith(te) ? e.substring(0, e.length - 1) : e.startsWith(te) ? e.substring(1) : e, Fe = (e) => {
|
|
161
|
+
const t = Object.fromEntries(e.orderSensitiveModifiers.map((r) => [r, !0]));
|
|
162
|
+
return (r) => {
|
|
163
|
+
if (r.length <= 1)
|
|
164
|
+
return r;
|
|
165
|
+
const a = [];
|
|
166
|
+
let c = [];
|
|
167
|
+
return r.forEach((l) => {
|
|
168
|
+
l[0] === "[" || t[l] ? (a.push(...c.sort(), l), c = []) : c.push(l);
|
|
169
|
+
}), a.push(...c.sort()), a;
|
|
451
170
|
};
|
|
452
|
-
},
|
|
453
|
-
cache:
|
|
454
|
-
parseClassName:
|
|
455
|
-
sortModifiers:
|
|
456
|
-
...
|
|
457
|
-
}),
|
|
171
|
+
}, Be = (e) => ({
|
|
172
|
+
cache: je(e.cacheSize),
|
|
173
|
+
parseClassName: Oe(e),
|
|
174
|
+
sortModifiers: Fe(e),
|
|
175
|
+
...Ne(e)
|
|
176
|
+
}), We = /\s+/, $e = (e, t) => {
|
|
458
177
|
const {
|
|
459
178
|
parseClassName: o,
|
|
460
|
-
getClassGroupId:
|
|
461
|
-
getConflictingClassGroupIds:
|
|
462
|
-
sortModifiers:
|
|
463
|
-
} =
|
|
464
|
-
let
|
|
465
|
-
for (let
|
|
466
|
-
const
|
|
467
|
-
isExternal:
|
|
468
|
-
modifiers:
|
|
469
|
-
hasImportantModifier:
|
|
470
|
-
baseClassName:
|
|
471
|
-
maybePostfixModifierPosition:
|
|
472
|
-
} = o(
|
|
473
|
-
if (
|
|
474
|
-
|
|
179
|
+
getClassGroupId: r,
|
|
180
|
+
getConflictingClassGroupIds: a,
|
|
181
|
+
sortModifiers: c
|
|
182
|
+
} = t, l = [], p = e.trim().split(We);
|
|
183
|
+
let u = "";
|
|
184
|
+
for (let f = p.length - 1; f >= 0; f -= 1) {
|
|
185
|
+
const b = p[f], {
|
|
186
|
+
isExternal: y,
|
|
187
|
+
modifiers: z,
|
|
188
|
+
hasImportantModifier: I,
|
|
189
|
+
baseClassName: w,
|
|
190
|
+
maybePostfixModifierPosition: k
|
|
191
|
+
} = o(b);
|
|
192
|
+
if (y) {
|
|
193
|
+
u = b + (u.length > 0 ? " " + u : u);
|
|
475
194
|
continue;
|
|
476
195
|
}
|
|
477
|
-
let
|
|
478
|
-
if (!
|
|
479
|
-
if (!
|
|
480
|
-
|
|
196
|
+
let C = !!k, R = r(C ? w.substring(0, k) : w);
|
|
197
|
+
if (!R) {
|
|
198
|
+
if (!C) {
|
|
199
|
+
u = b + (u.length > 0 ? " " + u : u);
|
|
481
200
|
continue;
|
|
482
201
|
}
|
|
483
|
-
if (
|
|
484
|
-
|
|
202
|
+
if (R = r(w), !R) {
|
|
203
|
+
u = b + (u.length > 0 ? " " + u : u);
|
|
485
204
|
continue;
|
|
486
205
|
}
|
|
487
|
-
|
|
206
|
+
C = !1;
|
|
488
207
|
}
|
|
489
|
-
const
|
|
490
|
-
if (
|
|
208
|
+
const $ = c(z).join(":"), F = I ? $ + te : $, V = F + R;
|
|
209
|
+
if (l.includes(V))
|
|
491
210
|
continue;
|
|
492
|
-
|
|
493
|
-
const
|
|
494
|
-
for (let
|
|
495
|
-
const
|
|
496
|
-
|
|
211
|
+
l.push(V);
|
|
212
|
+
const E = a(R, C);
|
|
213
|
+
for (let G = 0; G < E.length; ++G) {
|
|
214
|
+
const B = E[G];
|
|
215
|
+
l.push(F + B);
|
|
497
216
|
}
|
|
498
|
-
|
|
217
|
+
u = b + (u.length > 0 ? " " + u : u);
|
|
499
218
|
}
|
|
500
|
-
return
|
|
219
|
+
return u;
|
|
501
220
|
};
|
|
502
|
-
function
|
|
503
|
-
let e = 0,
|
|
221
|
+
function Ue() {
|
|
222
|
+
let e = 0, t, o, r = "";
|
|
504
223
|
for (; e < arguments.length; )
|
|
505
|
-
(
|
|
506
|
-
return
|
|
224
|
+
(t = arguments[e++]) && (o = ze(t)) && (r && (r += " "), r += o);
|
|
225
|
+
return r;
|
|
507
226
|
}
|
|
508
|
-
const
|
|
227
|
+
const ze = (e) => {
|
|
509
228
|
if (typeof e == "string")
|
|
510
229
|
return e;
|
|
511
|
-
let
|
|
512
|
-
for (let
|
|
513
|
-
e[
|
|
230
|
+
let t, o = "";
|
|
231
|
+
for (let r = 0; r < e.length; r++)
|
|
232
|
+
e[r] && (t = ze(e[r])) && (o && (o += " "), o += t);
|
|
514
233
|
return o;
|
|
515
234
|
};
|
|
516
|
-
function
|
|
517
|
-
let o,
|
|
518
|
-
function
|
|
519
|
-
const
|
|
520
|
-
return o =
|
|
235
|
+
function qe(e, ...t) {
|
|
236
|
+
let o, r, a, c = l;
|
|
237
|
+
function l(u) {
|
|
238
|
+
const f = t.reduce((b, y) => y(b), e());
|
|
239
|
+
return o = Be(f), r = o.cache.get, a = o.cache.set, c = p, p(u);
|
|
521
240
|
}
|
|
522
|
-
function
|
|
523
|
-
const
|
|
524
|
-
if (
|
|
525
|
-
return
|
|
526
|
-
const
|
|
527
|
-
return
|
|
241
|
+
function p(u) {
|
|
242
|
+
const f = r(u);
|
|
243
|
+
if (f)
|
|
244
|
+
return f;
|
|
245
|
+
const b = $e(u, o);
|
|
246
|
+
return a(u, b), b;
|
|
528
247
|
}
|
|
529
248
|
return function() {
|
|
530
|
-
return
|
|
249
|
+
return c(Ue.apply(null, arguments));
|
|
531
250
|
};
|
|
532
251
|
}
|
|
533
|
-
const
|
|
534
|
-
const
|
|
535
|
-
return
|
|
536
|
-
}, Ce = /^\[(?:(\w[\w-]*):)?(.+)\]$/i,
|
|
252
|
+
const g = (e) => {
|
|
253
|
+
const t = (o) => o[e] || [];
|
|
254
|
+
return t.isThemeGetter = !0, t;
|
|
255
|
+
}, Ce = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, Ae = /^\((?:(\w[\w-]*):)?(.+)\)$/i, He = /^\d+\/\d+$/, Je = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, Ke = /\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$/, Xe = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, De = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, Qe = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, L = (e) => He.test(e), m = (e) => !!e && !Number.isNaN(Number(e)), P = (e) => !!e && Number.isInteger(Number(e)), ee = (e) => e.endsWith("%") && m(e.slice(0, -1)), S = (e) => Je.test(e), Ye = () => !0, Ze = (e) => (
|
|
537
256
|
// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
|
|
538
257
|
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
|
|
539
258
|
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
|
|
540
|
-
|
|
541
|
-
),
|
|
542
|
-
const
|
|
543
|
-
return
|
|
544
|
-
},
|
|
545
|
-
const
|
|
546
|
-
return
|
|
547
|
-
},
|
|
548
|
-
const e =
|
|
259
|
+
Ke.test(e) && !Xe.test(e)
|
|
260
|
+
), Me = () => !1, eo = (e) => De.test(e), oo = (e) => Qe.test(e), ro = (e) => !s(e) && !n(e), to = (e) => O(e, Ie, Me), s = (e) => Ce.test(e), T = (e) => O(e, Re, Ze), oe = (e) => O(e, lo, m), ge = (e) => O(e, Se, Me), so = (e) => O(e, Pe, oo), X = (e) => O(e, Ge, eo), n = (e) => Ae.test(e), W = (e) => _(e, Re), no = (e) => _(e, co), he = (e) => _(e, Se), ao = (e) => _(e, Ie), io = (e) => _(e, Pe), D = (e) => _(e, Ge, !0), O = (e, t, o) => {
|
|
261
|
+
const r = Ce.exec(e);
|
|
262
|
+
return r ? r[1] ? t(r[1]) : o(r[2]) : !1;
|
|
263
|
+
}, _ = (e, t, o = !1) => {
|
|
264
|
+
const r = Ae.exec(e);
|
|
265
|
+
return r ? r[1] ? t(r[1]) : o : !1;
|
|
266
|
+
}, Se = (e) => e === "position" || e === "percentage", Pe = (e) => e === "image" || e === "url", Ie = (e) => e === "length" || e === "size" || e === "bg-size", Re = (e) => e === "length", lo = (e) => e === "number", co = (e) => e === "family-name", Ge = (e) => e === "shadow", mo = () => {
|
|
267
|
+
const e = g("color"), t = g("font"), o = g("text"), r = g("font-weight"), a = g("tracking"), c = g("leading"), l = g("breakpoint"), p = g("container"), u = g("spacing"), f = g("radius"), b = g("shadow"), y = g("inset-shadow"), z = g("text-shadow"), I = g("drop-shadow"), w = g("blur"), k = g("perspective"), C = g("aspect"), R = g("ease"), $ = g("animate"), F = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], V = () => [
|
|
549
268
|
"center",
|
|
550
269
|
"top",
|
|
551
270
|
"bottom",
|
|
@@ -563,51 +282,51 @@ const R = (e) => {
|
|
|
563
282
|
"bottom-left",
|
|
564
283
|
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
565
284
|
"left-bottom"
|
|
566
|
-
],
|
|
567
|
-
span: ["full",
|
|
568
|
-
},
|
|
569
|
-
position: [
|
|
570
|
-
}],
|
|
285
|
+
], E = () => [...V(), n, s], G = () => ["auto", "hidden", "clip", "visible", "scroll"], B = () => ["auto", "contain", "none"], d = () => [n, s, u], A = () => [L, "full", "auto", ...d()], ae = () => [P, "none", "subgrid", n, s], ie = () => ["auto", {
|
|
286
|
+
span: ["full", P, n, s]
|
|
287
|
+
}, P, n, s], U = () => [P, "auto", n, s], le = () => ["auto", "min", "max", "fr", n, s], Q = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], j = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], M = () => ["auto", ...d()], N = () => [L, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...d()], i = () => [e, n, s], ce = () => [...V(), he, ge, {
|
|
288
|
+
position: [n, s]
|
|
289
|
+
}], de = () => ["no-repeat", {
|
|
571
290
|
repeat: ["", "x", "y", "space", "round"]
|
|
572
|
-
}],
|
|
573
|
-
size: [
|
|
574
|
-
}],
|
|
291
|
+
}], me = () => ["auto", "cover", "contain", ao, to, {
|
|
292
|
+
size: [n, s]
|
|
293
|
+
}], Y = () => [ee, W, T], x = () => [
|
|
575
294
|
// Deprecated since Tailwind CSS v4.0.0
|
|
576
295
|
"",
|
|
577
296
|
"none",
|
|
578
297
|
"full",
|
|
579
|
-
|
|
580
|
-
|
|
298
|
+
f,
|
|
299
|
+
n,
|
|
581
300
|
s
|
|
582
|
-
],
|
|
301
|
+
], v = () => ["", m, W, T], q = () => ["solid", "dashed", "dotted", "double"], ue = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], h = () => [m, ee, he, ge], pe = () => [
|
|
583
302
|
// Deprecated since Tailwind CSS v4.0.0
|
|
584
303
|
"",
|
|
585
304
|
"none",
|
|
586
|
-
|
|
587
|
-
|
|
305
|
+
w,
|
|
306
|
+
n,
|
|
588
307
|
s
|
|
589
|
-
],
|
|
308
|
+
], H = () => ["none", m, n, s], J = () => ["none", m, n, s], Z = () => [m, n, s], K = () => [L, "full", ...d()];
|
|
590
309
|
return {
|
|
591
310
|
cacheSize: 500,
|
|
592
311
|
theme: {
|
|
593
312
|
animate: ["spin", "ping", "pulse", "bounce"],
|
|
594
313
|
aspect: ["video"],
|
|
595
|
-
blur: [
|
|
596
|
-
breakpoint: [
|
|
597
|
-
color: [
|
|
598
|
-
container: [
|
|
599
|
-
"drop-shadow": [
|
|
314
|
+
blur: [S],
|
|
315
|
+
breakpoint: [S],
|
|
316
|
+
color: [Ye],
|
|
317
|
+
container: [S],
|
|
318
|
+
"drop-shadow": [S],
|
|
600
319
|
ease: ["in", "out", "in-out"],
|
|
601
|
-
font: [
|
|
320
|
+
font: [ro],
|
|
602
321
|
"font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
|
|
603
|
-
"inset-shadow": [
|
|
322
|
+
"inset-shadow": [S],
|
|
604
323
|
leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
|
|
605
324
|
perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
|
|
606
|
-
radius: [
|
|
607
|
-
shadow: [
|
|
608
|
-
spacing: ["px",
|
|
609
|
-
text: [
|
|
610
|
-
"text-shadow": [
|
|
325
|
+
radius: [S],
|
|
326
|
+
shadow: [S],
|
|
327
|
+
spacing: ["px", m],
|
|
328
|
+
text: [S],
|
|
329
|
+
"text-shadow": [S],
|
|
611
330
|
tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
|
|
612
331
|
},
|
|
613
332
|
classGroups: {
|
|
@@ -619,7 +338,7 @@ const R = (e) => {
|
|
|
619
338
|
* @see https://tailwindcss.com/docs/aspect-ratio
|
|
620
339
|
*/
|
|
621
340
|
aspect: [{
|
|
622
|
-
aspect: ["auto", "square",
|
|
341
|
+
aspect: ["auto", "square", L, s, n, C]
|
|
623
342
|
}],
|
|
624
343
|
/**
|
|
625
344
|
* Container
|
|
@@ -632,21 +351,21 @@ const R = (e) => {
|
|
|
632
351
|
* @see https://tailwindcss.com/docs/columns
|
|
633
352
|
*/
|
|
634
353
|
columns: [{
|
|
635
|
-
columns: [
|
|
354
|
+
columns: [m, s, n, p]
|
|
636
355
|
}],
|
|
637
356
|
/**
|
|
638
357
|
* Break After
|
|
639
358
|
* @see https://tailwindcss.com/docs/break-after
|
|
640
359
|
*/
|
|
641
360
|
"break-after": [{
|
|
642
|
-
"break-after":
|
|
361
|
+
"break-after": F()
|
|
643
362
|
}],
|
|
644
363
|
/**
|
|
645
364
|
* Break Before
|
|
646
365
|
* @see https://tailwindcss.com/docs/break-before
|
|
647
366
|
*/
|
|
648
367
|
"break-before": [{
|
|
649
|
-
"break-before":
|
|
368
|
+
"break-before": F()
|
|
650
369
|
}],
|
|
651
370
|
/**
|
|
652
371
|
* Break Inside
|
|
@@ -710,49 +429,49 @@ const R = (e) => {
|
|
|
710
429
|
* @see https://tailwindcss.com/docs/object-position
|
|
711
430
|
*/
|
|
712
431
|
"object-position": [{
|
|
713
|
-
object:
|
|
432
|
+
object: E()
|
|
714
433
|
}],
|
|
715
434
|
/**
|
|
716
435
|
* Overflow
|
|
717
436
|
* @see https://tailwindcss.com/docs/overflow
|
|
718
437
|
*/
|
|
719
438
|
overflow: [{
|
|
720
|
-
overflow:
|
|
439
|
+
overflow: G()
|
|
721
440
|
}],
|
|
722
441
|
/**
|
|
723
442
|
* Overflow X
|
|
724
443
|
* @see https://tailwindcss.com/docs/overflow
|
|
725
444
|
*/
|
|
726
445
|
"overflow-x": [{
|
|
727
|
-
"overflow-x":
|
|
446
|
+
"overflow-x": G()
|
|
728
447
|
}],
|
|
729
448
|
/**
|
|
730
449
|
* Overflow Y
|
|
731
450
|
* @see https://tailwindcss.com/docs/overflow
|
|
732
451
|
*/
|
|
733
452
|
"overflow-y": [{
|
|
734
|
-
"overflow-y":
|
|
453
|
+
"overflow-y": G()
|
|
735
454
|
}],
|
|
736
455
|
/**
|
|
737
456
|
* Overscroll Behavior
|
|
738
457
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
739
458
|
*/
|
|
740
459
|
overscroll: [{
|
|
741
|
-
overscroll:
|
|
460
|
+
overscroll: B()
|
|
742
461
|
}],
|
|
743
462
|
/**
|
|
744
463
|
* Overscroll Behavior X
|
|
745
464
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
746
465
|
*/
|
|
747
466
|
"overscroll-x": [{
|
|
748
|
-
"overscroll-x":
|
|
467
|
+
"overscroll-x": B()
|
|
749
468
|
}],
|
|
750
469
|
/**
|
|
751
470
|
* Overscroll Behavior Y
|
|
752
471
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
753
472
|
*/
|
|
754
473
|
"overscroll-y": [{
|
|
755
|
-
"overscroll-y":
|
|
474
|
+
"overscroll-y": B()
|
|
756
475
|
}],
|
|
757
476
|
/**
|
|
758
477
|
* Position
|
|
@@ -764,63 +483,63 @@ const R = (e) => {
|
|
|
764
483
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
765
484
|
*/
|
|
766
485
|
inset: [{
|
|
767
|
-
inset:
|
|
486
|
+
inset: A()
|
|
768
487
|
}],
|
|
769
488
|
/**
|
|
770
489
|
* Right / Left
|
|
771
490
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
772
491
|
*/
|
|
773
492
|
"inset-x": [{
|
|
774
|
-
"inset-x":
|
|
493
|
+
"inset-x": A()
|
|
775
494
|
}],
|
|
776
495
|
/**
|
|
777
496
|
* Top / Bottom
|
|
778
497
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
779
498
|
*/
|
|
780
499
|
"inset-y": [{
|
|
781
|
-
"inset-y":
|
|
500
|
+
"inset-y": A()
|
|
782
501
|
}],
|
|
783
502
|
/**
|
|
784
503
|
* Start
|
|
785
504
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
786
505
|
*/
|
|
787
506
|
start: [{
|
|
788
|
-
start:
|
|
507
|
+
start: A()
|
|
789
508
|
}],
|
|
790
509
|
/**
|
|
791
510
|
* End
|
|
792
511
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
793
512
|
*/
|
|
794
513
|
end: [{
|
|
795
|
-
end:
|
|
514
|
+
end: A()
|
|
796
515
|
}],
|
|
797
516
|
/**
|
|
798
517
|
* Top
|
|
799
518
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
800
519
|
*/
|
|
801
520
|
top: [{
|
|
802
|
-
top:
|
|
521
|
+
top: A()
|
|
803
522
|
}],
|
|
804
523
|
/**
|
|
805
524
|
* Right
|
|
806
525
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
807
526
|
*/
|
|
808
527
|
right: [{
|
|
809
|
-
right:
|
|
528
|
+
right: A()
|
|
810
529
|
}],
|
|
811
530
|
/**
|
|
812
531
|
* Bottom
|
|
813
532
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
814
533
|
*/
|
|
815
534
|
bottom: [{
|
|
816
|
-
bottom:
|
|
535
|
+
bottom: A()
|
|
817
536
|
}],
|
|
818
537
|
/**
|
|
819
538
|
* Left
|
|
820
539
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
821
540
|
*/
|
|
822
541
|
left: [{
|
|
823
|
-
left:
|
|
542
|
+
left: A()
|
|
824
543
|
}],
|
|
825
544
|
/**
|
|
826
545
|
* Visibility
|
|
@@ -832,7 +551,7 @@ const R = (e) => {
|
|
|
832
551
|
* @see https://tailwindcss.com/docs/z-index
|
|
833
552
|
*/
|
|
834
553
|
z: [{
|
|
835
|
-
z: [
|
|
554
|
+
z: [P, "auto", n, s]
|
|
836
555
|
}],
|
|
837
556
|
// ------------------------
|
|
838
557
|
// --- Flexbox and Grid ---
|
|
@@ -842,7 +561,7 @@ const R = (e) => {
|
|
|
842
561
|
* @see https://tailwindcss.com/docs/flex-basis
|
|
843
562
|
*/
|
|
844
563
|
basis: [{
|
|
845
|
-
basis: [
|
|
564
|
+
basis: [L, "full", "auto", p, ...d()]
|
|
846
565
|
}],
|
|
847
566
|
/**
|
|
848
567
|
* Flex Direction
|
|
@@ -863,84 +582,84 @@ const R = (e) => {
|
|
|
863
582
|
* @see https://tailwindcss.com/docs/flex
|
|
864
583
|
*/
|
|
865
584
|
flex: [{
|
|
866
|
-
flex: [
|
|
585
|
+
flex: [m, L, "auto", "initial", "none", s]
|
|
867
586
|
}],
|
|
868
587
|
/**
|
|
869
588
|
* Flex Grow
|
|
870
589
|
* @see https://tailwindcss.com/docs/flex-grow
|
|
871
590
|
*/
|
|
872
591
|
grow: [{
|
|
873
|
-
grow: ["",
|
|
592
|
+
grow: ["", m, n, s]
|
|
874
593
|
}],
|
|
875
594
|
/**
|
|
876
595
|
* Flex Shrink
|
|
877
596
|
* @see https://tailwindcss.com/docs/flex-shrink
|
|
878
597
|
*/
|
|
879
598
|
shrink: [{
|
|
880
|
-
shrink: ["",
|
|
599
|
+
shrink: ["", m, n, s]
|
|
881
600
|
}],
|
|
882
601
|
/**
|
|
883
602
|
* Order
|
|
884
603
|
* @see https://tailwindcss.com/docs/order
|
|
885
604
|
*/
|
|
886
605
|
order: [{
|
|
887
|
-
order: [
|
|
606
|
+
order: [P, "first", "last", "none", n, s]
|
|
888
607
|
}],
|
|
889
608
|
/**
|
|
890
609
|
* Grid Template Columns
|
|
891
610
|
* @see https://tailwindcss.com/docs/grid-template-columns
|
|
892
611
|
*/
|
|
893
612
|
"grid-cols": [{
|
|
894
|
-
"grid-cols":
|
|
613
|
+
"grid-cols": ae()
|
|
895
614
|
}],
|
|
896
615
|
/**
|
|
897
616
|
* Grid Column Start / End
|
|
898
617
|
* @see https://tailwindcss.com/docs/grid-column
|
|
899
618
|
*/
|
|
900
619
|
"col-start-end": [{
|
|
901
|
-
col:
|
|
620
|
+
col: ie()
|
|
902
621
|
}],
|
|
903
622
|
/**
|
|
904
623
|
* Grid Column Start
|
|
905
624
|
* @see https://tailwindcss.com/docs/grid-column
|
|
906
625
|
*/
|
|
907
626
|
"col-start": [{
|
|
908
|
-
"col-start":
|
|
627
|
+
"col-start": U()
|
|
909
628
|
}],
|
|
910
629
|
/**
|
|
911
630
|
* Grid Column End
|
|
912
631
|
* @see https://tailwindcss.com/docs/grid-column
|
|
913
632
|
*/
|
|
914
633
|
"col-end": [{
|
|
915
|
-
"col-end":
|
|
634
|
+
"col-end": U()
|
|
916
635
|
}],
|
|
917
636
|
/**
|
|
918
637
|
* Grid Template Rows
|
|
919
638
|
* @see https://tailwindcss.com/docs/grid-template-rows
|
|
920
639
|
*/
|
|
921
640
|
"grid-rows": [{
|
|
922
|
-
"grid-rows":
|
|
641
|
+
"grid-rows": ae()
|
|
923
642
|
}],
|
|
924
643
|
/**
|
|
925
644
|
* Grid Row Start / End
|
|
926
645
|
* @see https://tailwindcss.com/docs/grid-row
|
|
927
646
|
*/
|
|
928
647
|
"row-start-end": [{
|
|
929
|
-
row:
|
|
648
|
+
row: ie()
|
|
930
649
|
}],
|
|
931
650
|
/**
|
|
932
651
|
* Grid Row Start
|
|
933
652
|
* @see https://tailwindcss.com/docs/grid-row
|
|
934
653
|
*/
|
|
935
654
|
"row-start": [{
|
|
936
|
-
"row-start":
|
|
655
|
+
"row-start": U()
|
|
937
656
|
}],
|
|
938
657
|
/**
|
|
939
658
|
* Grid Row End
|
|
940
659
|
* @see https://tailwindcss.com/docs/grid-row
|
|
941
660
|
*/
|
|
942
661
|
"row-end": [{
|
|
943
|
-
"row-end":
|
|
662
|
+
"row-end": U()
|
|
944
663
|
}],
|
|
945
664
|
/**
|
|
946
665
|
* Grid Auto Flow
|
|
@@ -954,70 +673,70 @@ const R = (e) => {
|
|
|
954
673
|
* @see https://tailwindcss.com/docs/grid-auto-columns
|
|
955
674
|
*/
|
|
956
675
|
"auto-cols": [{
|
|
957
|
-
"auto-cols":
|
|
676
|
+
"auto-cols": le()
|
|
958
677
|
}],
|
|
959
678
|
/**
|
|
960
679
|
* Grid Auto Rows
|
|
961
680
|
* @see https://tailwindcss.com/docs/grid-auto-rows
|
|
962
681
|
*/
|
|
963
682
|
"auto-rows": [{
|
|
964
|
-
"auto-rows":
|
|
683
|
+
"auto-rows": le()
|
|
965
684
|
}],
|
|
966
685
|
/**
|
|
967
686
|
* Gap
|
|
968
687
|
* @see https://tailwindcss.com/docs/gap
|
|
969
688
|
*/
|
|
970
689
|
gap: [{
|
|
971
|
-
gap:
|
|
690
|
+
gap: d()
|
|
972
691
|
}],
|
|
973
692
|
/**
|
|
974
693
|
* Gap X
|
|
975
694
|
* @see https://tailwindcss.com/docs/gap
|
|
976
695
|
*/
|
|
977
696
|
"gap-x": [{
|
|
978
|
-
"gap-x":
|
|
697
|
+
"gap-x": d()
|
|
979
698
|
}],
|
|
980
699
|
/**
|
|
981
700
|
* Gap Y
|
|
982
701
|
* @see https://tailwindcss.com/docs/gap
|
|
983
702
|
*/
|
|
984
703
|
"gap-y": [{
|
|
985
|
-
"gap-y":
|
|
704
|
+
"gap-y": d()
|
|
986
705
|
}],
|
|
987
706
|
/**
|
|
988
707
|
* Justify Content
|
|
989
708
|
* @see https://tailwindcss.com/docs/justify-content
|
|
990
709
|
*/
|
|
991
710
|
"justify-content": [{
|
|
992
|
-
justify: [...
|
|
711
|
+
justify: [...Q(), "normal"]
|
|
993
712
|
}],
|
|
994
713
|
/**
|
|
995
714
|
* Justify Items
|
|
996
715
|
* @see https://tailwindcss.com/docs/justify-items
|
|
997
716
|
*/
|
|
998
717
|
"justify-items": [{
|
|
999
|
-
"justify-items": [...
|
|
718
|
+
"justify-items": [...j(), "normal"]
|
|
1000
719
|
}],
|
|
1001
720
|
/**
|
|
1002
721
|
* Justify Self
|
|
1003
722
|
* @see https://tailwindcss.com/docs/justify-self
|
|
1004
723
|
*/
|
|
1005
724
|
"justify-self": [{
|
|
1006
|
-
"justify-self": ["auto", ...
|
|
725
|
+
"justify-self": ["auto", ...j()]
|
|
1007
726
|
}],
|
|
1008
727
|
/**
|
|
1009
728
|
* Align Content
|
|
1010
729
|
* @see https://tailwindcss.com/docs/align-content
|
|
1011
730
|
*/
|
|
1012
731
|
"align-content": [{
|
|
1013
|
-
content: ["normal", ...
|
|
732
|
+
content: ["normal", ...Q()]
|
|
1014
733
|
}],
|
|
1015
734
|
/**
|
|
1016
735
|
* Align Items
|
|
1017
736
|
* @see https://tailwindcss.com/docs/align-items
|
|
1018
737
|
*/
|
|
1019
738
|
"align-items": [{
|
|
1020
|
-
items: [...
|
|
739
|
+
items: [...j(), {
|
|
1021
740
|
baseline: ["", "last"]
|
|
1022
741
|
}]
|
|
1023
742
|
}],
|
|
@@ -1026,7 +745,7 @@ const R = (e) => {
|
|
|
1026
745
|
* @see https://tailwindcss.com/docs/align-self
|
|
1027
746
|
*/
|
|
1028
747
|
"align-self": [{
|
|
1029
|
-
self: ["auto", ...
|
|
748
|
+
self: ["auto", ...j(), {
|
|
1030
749
|
baseline: ["", "last"]
|
|
1031
750
|
}]
|
|
1032
751
|
}],
|
|
@@ -1035,21 +754,21 @@ const R = (e) => {
|
|
|
1035
754
|
* @see https://tailwindcss.com/docs/place-content
|
|
1036
755
|
*/
|
|
1037
756
|
"place-content": [{
|
|
1038
|
-
"place-content":
|
|
757
|
+
"place-content": Q()
|
|
1039
758
|
}],
|
|
1040
759
|
/**
|
|
1041
760
|
* Place Items
|
|
1042
761
|
* @see https://tailwindcss.com/docs/place-items
|
|
1043
762
|
*/
|
|
1044
763
|
"place-items": [{
|
|
1045
|
-
"place-items": [...
|
|
764
|
+
"place-items": [...j(), "baseline"]
|
|
1046
765
|
}],
|
|
1047
766
|
/**
|
|
1048
767
|
* Place Self
|
|
1049
768
|
* @see https://tailwindcss.com/docs/place-self
|
|
1050
769
|
*/
|
|
1051
770
|
"place-self": [{
|
|
1052
|
-
"place-self": ["auto", ...
|
|
771
|
+
"place-self": ["auto", ...j()]
|
|
1053
772
|
}],
|
|
1054
773
|
// Spacing
|
|
1055
774
|
/**
|
|
@@ -1057,133 +776,133 @@ const R = (e) => {
|
|
|
1057
776
|
* @see https://tailwindcss.com/docs/padding
|
|
1058
777
|
*/
|
|
1059
778
|
p: [{
|
|
1060
|
-
p:
|
|
779
|
+
p: d()
|
|
1061
780
|
}],
|
|
1062
781
|
/**
|
|
1063
782
|
* Padding X
|
|
1064
783
|
* @see https://tailwindcss.com/docs/padding
|
|
1065
784
|
*/
|
|
1066
785
|
px: [{
|
|
1067
|
-
px:
|
|
786
|
+
px: d()
|
|
1068
787
|
}],
|
|
1069
788
|
/**
|
|
1070
789
|
* Padding Y
|
|
1071
790
|
* @see https://tailwindcss.com/docs/padding
|
|
1072
791
|
*/
|
|
1073
792
|
py: [{
|
|
1074
|
-
py:
|
|
793
|
+
py: d()
|
|
1075
794
|
}],
|
|
1076
795
|
/**
|
|
1077
796
|
* Padding Start
|
|
1078
797
|
* @see https://tailwindcss.com/docs/padding
|
|
1079
798
|
*/
|
|
1080
799
|
ps: [{
|
|
1081
|
-
ps:
|
|
800
|
+
ps: d()
|
|
1082
801
|
}],
|
|
1083
802
|
/**
|
|
1084
803
|
* Padding End
|
|
1085
804
|
* @see https://tailwindcss.com/docs/padding
|
|
1086
805
|
*/
|
|
1087
806
|
pe: [{
|
|
1088
|
-
pe:
|
|
807
|
+
pe: d()
|
|
1089
808
|
}],
|
|
1090
809
|
/**
|
|
1091
810
|
* Padding Top
|
|
1092
811
|
* @see https://tailwindcss.com/docs/padding
|
|
1093
812
|
*/
|
|
1094
813
|
pt: [{
|
|
1095
|
-
pt:
|
|
814
|
+
pt: d()
|
|
1096
815
|
}],
|
|
1097
816
|
/**
|
|
1098
817
|
* Padding Right
|
|
1099
818
|
* @see https://tailwindcss.com/docs/padding
|
|
1100
819
|
*/
|
|
1101
820
|
pr: [{
|
|
1102
|
-
pr:
|
|
821
|
+
pr: d()
|
|
1103
822
|
}],
|
|
1104
823
|
/**
|
|
1105
824
|
* Padding Bottom
|
|
1106
825
|
* @see https://tailwindcss.com/docs/padding
|
|
1107
826
|
*/
|
|
1108
827
|
pb: [{
|
|
1109
|
-
pb:
|
|
828
|
+
pb: d()
|
|
1110
829
|
}],
|
|
1111
830
|
/**
|
|
1112
831
|
* Padding Left
|
|
1113
832
|
* @see https://tailwindcss.com/docs/padding
|
|
1114
833
|
*/
|
|
1115
834
|
pl: [{
|
|
1116
|
-
pl:
|
|
835
|
+
pl: d()
|
|
1117
836
|
}],
|
|
1118
837
|
/**
|
|
1119
838
|
* Margin
|
|
1120
839
|
* @see https://tailwindcss.com/docs/margin
|
|
1121
840
|
*/
|
|
1122
841
|
m: [{
|
|
1123
|
-
m:
|
|
842
|
+
m: M()
|
|
1124
843
|
}],
|
|
1125
844
|
/**
|
|
1126
845
|
* Margin X
|
|
1127
846
|
* @see https://tailwindcss.com/docs/margin
|
|
1128
847
|
*/
|
|
1129
848
|
mx: [{
|
|
1130
|
-
mx:
|
|
849
|
+
mx: M()
|
|
1131
850
|
}],
|
|
1132
851
|
/**
|
|
1133
852
|
* Margin Y
|
|
1134
853
|
* @see https://tailwindcss.com/docs/margin
|
|
1135
854
|
*/
|
|
1136
855
|
my: [{
|
|
1137
|
-
my:
|
|
856
|
+
my: M()
|
|
1138
857
|
}],
|
|
1139
858
|
/**
|
|
1140
859
|
* Margin Start
|
|
1141
860
|
* @see https://tailwindcss.com/docs/margin
|
|
1142
861
|
*/
|
|
1143
862
|
ms: [{
|
|
1144
|
-
ms:
|
|
863
|
+
ms: M()
|
|
1145
864
|
}],
|
|
1146
865
|
/**
|
|
1147
866
|
* Margin End
|
|
1148
867
|
* @see https://tailwindcss.com/docs/margin
|
|
1149
868
|
*/
|
|
1150
869
|
me: [{
|
|
1151
|
-
me:
|
|
870
|
+
me: M()
|
|
1152
871
|
}],
|
|
1153
872
|
/**
|
|
1154
873
|
* Margin Top
|
|
1155
874
|
* @see https://tailwindcss.com/docs/margin
|
|
1156
875
|
*/
|
|
1157
876
|
mt: [{
|
|
1158
|
-
mt:
|
|
877
|
+
mt: M()
|
|
1159
878
|
}],
|
|
1160
879
|
/**
|
|
1161
880
|
* Margin Right
|
|
1162
881
|
* @see https://tailwindcss.com/docs/margin
|
|
1163
882
|
*/
|
|
1164
883
|
mr: [{
|
|
1165
|
-
mr:
|
|
884
|
+
mr: M()
|
|
1166
885
|
}],
|
|
1167
886
|
/**
|
|
1168
887
|
* Margin Bottom
|
|
1169
888
|
* @see https://tailwindcss.com/docs/margin
|
|
1170
889
|
*/
|
|
1171
890
|
mb: [{
|
|
1172
|
-
mb:
|
|
891
|
+
mb: M()
|
|
1173
892
|
}],
|
|
1174
893
|
/**
|
|
1175
894
|
* Margin Left
|
|
1176
895
|
* @see https://tailwindcss.com/docs/margin
|
|
1177
896
|
*/
|
|
1178
897
|
ml: [{
|
|
1179
|
-
ml:
|
|
898
|
+
ml: M()
|
|
1180
899
|
}],
|
|
1181
900
|
/**
|
|
1182
901
|
* Space Between X
|
|
1183
902
|
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
1184
903
|
*/
|
|
1185
904
|
"space-x": [{
|
|
1186
|
-
"space-x":
|
|
905
|
+
"space-x": d()
|
|
1187
906
|
}],
|
|
1188
907
|
/**
|
|
1189
908
|
* Space Between X Reverse
|
|
@@ -1195,7 +914,7 @@ const R = (e) => {
|
|
|
1195
914
|
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
1196
915
|
*/
|
|
1197
916
|
"space-y": [{
|
|
1198
|
-
"space-y":
|
|
917
|
+
"space-y": d()
|
|
1199
918
|
}],
|
|
1200
919
|
/**
|
|
1201
920
|
* Space Between Y Reverse
|
|
@@ -1210,14 +929,14 @@ const R = (e) => {
|
|
|
1210
929
|
* @see https://tailwindcss.com/docs/width#setting-both-width-and-height
|
|
1211
930
|
*/
|
|
1212
931
|
size: [{
|
|
1213
|
-
size:
|
|
932
|
+
size: N()
|
|
1214
933
|
}],
|
|
1215
934
|
/**
|
|
1216
935
|
* Width
|
|
1217
936
|
* @see https://tailwindcss.com/docs/width
|
|
1218
937
|
*/
|
|
1219
938
|
w: [{
|
|
1220
|
-
w: [
|
|
939
|
+
w: [p, "screen", ...N()]
|
|
1221
940
|
}],
|
|
1222
941
|
/**
|
|
1223
942
|
* Min-Width
|
|
@@ -1225,11 +944,11 @@ const R = (e) => {
|
|
|
1225
944
|
*/
|
|
1226
945
|
"min-w": [{
|
|
1227
946
|
"min-w": [
|
|
1228
|
-
|
|
947
|
+
p,
|
|
1229
948
|
"screen",
|
|
1230
949
|
/** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
1231
950
|
"none",
|
|
1232
|
-
...
|
|
951
|
+
...N()
|
|
1233
952
|
]
|
|
1234
953
|
}],
|
|
1235
954
|
/**
|
|
@@ -1238,16 +957,16 @@ const R = (e) => {
|
|
|
1238
957
|
*/
|
|
1239
958
|
"max-w": [{
|
|
1240
959
|
"max-w": [
|
|
1241
|
-
|
|
960
|
+
p,
|
|
1242
961
|
"screen",
|
|
1243
962
|
"none",
|
|
1244
963
|
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
1245
964
|
"prose",
|
|
1246
965
|
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
1247
966
|
{
|
|
1248
|
-
screen: [
|
|
967
|
+
screen: [l]
|
|
1249
968
|
},
|
|
1250
|
-
...
|
|
969
|
+
...N()
|
|
1251
970
|
]
|
|
1252
971
|
}],
|
|
1253
972
|
/**
|
|
@@ -1255,21 +974,21 @@ const R = (e) => {
|
|
|
1255
974
|
* @see https://tailwindcss.com/docs/height
|
|
1256
975
|
*/
|
|
1257
976
|
h: [{
|
|
1258
|
-
h: ["screen", "lh", ...
|
|
977
|
+
h: ["screen", "lh", ...N()]
|
|
1259
978
|
}],
|
|
1260
979
|
/**
|
|
1261
980
|
* Min-Height
|
|
1262
981
|
* @see https://tailwindcss.com/docs/min-height
|
|
1263
982
|
*/
|
|
1264
983
|
"min-h": [{
|
|
1265
|
-
"min-h": ["screen", "lh", "none", ...
|
|
984
|
+
"min-h": ["screen", "lh", "none", ...N()]
|
|
1266
985
|
}],
|
|
1267
986
|
/**
|
|
1268
987
|
* Max-Height
|
|
1269
988
|
* @see https://tailwindcss.com/docs/max-height
|
|
1270
989
|
*/
|
|
1271
990
|
"max-h": [{
|
|
1272
|
-
"max-h": ["screen", "lh", ...
|
|
991
|
+
"max-h": ["screen", "lh", ...N()]
|
|
1273
992
|
}],
|
|
1274
993
|
// ------------------
|
|
1275
994
|
// --- Typography ---
|
|
@@ -1279,7 +998,7 @@ const R = (e) => {
|
|
|
1279
998
|
* @see https://tailwindcss.com/docs/font-size
|
|
1280
999
|
*/
|
|
1281
1000
|
"font-size": [{
|
|
1282
|
-
text: ["base", o,
|
|
1001
|
+
text: ["base", o, W, T]
|
|
1283
1002
|
}],
|
|
1284
1003
|
/**
|
|
1285
1004
|
* Font Smoothing
|
|
@@ -1296,21 +1015,21 @@ const R = (e) => {
|
|
|
1296
1015
|
* @see https://tailwindcss.com/docs/font-weight
|
|
1297
1016
|
*/
|
|
1298
1017
|
"font-weight": [{
|
|
1299
|
-
font: [
|
|
1018
|
+
font: [r, n, oe]
|
|
1300
1019
|
}],
|
|
1301
1020
|
/**
|
|
1302
1021
|
* Font Stretch
|
|
1303
1022
|
* @see https://tailwindcss.com/docs/font-stretch
|
|
1304
1023
|
*/
|
|
1305
1024
|
"font-stretch": [{
|
|
1306
|
-
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded",
|
|
1025
|
+
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", ee, s]
|
|
1307
1026
|
}],
|
|
1308
1027
|
/**
|
|
1309
1028
|
* Font Family
|
|
1310
1029
|
* @see https://tailwindcss.com/docs/font-family
|
|
1311
1030
|
*/
|
|
1312
1031
|
"font-family": [{
|
|
1313
|
-
font: [
|
|
1032
|
+
font: [no, s, t]
|
|
1314
1033
|
}],
|
|
1315
1034
|
/**
|
|
1316
1035
|
* Font Variant Numeric
|
|
@@ -1347,14 +1066,14 @@ const R = (e) => {
|
|
|
1347
1066
|
* @see https://tailwindcss.com/docs/letter-spacing
|
|
1348
1067
|
*/
|
|
1349
1068
|
tracking: [{
|
|
1350
|
-
tracking: [
|
|
1069
|
+
tracking: [a, n, s]
|
|
1351
1070
|
}],
|
|
1352
1071
|
/**
|
|
1353
1072
|
* Line Clamp
|
|
1354
1073
|
* @see https://tailwindcss.com/docs/line-clamp
|
|
1355
1074
|
*/
|
|
1356
1075
|
"line-clamp": [{
|
|
1357
|
-
"line-clamp": [
|
|
1076
|
+
"line-clamp": [m, "none", n, oe]
|
|
1358
1077
|
}],
|
|
1359
1078
|
/**
|
|
1360
1079
|
* Line Height
|
|
@@ -1363,8 +1082,8 @@ const R = (e) => {
|
|
|
1363
1082
|
leading: [{
|
|
1364
1083
|
leading: [
|
|
1365
1084
|
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
1366
|
-
|
|
1367
|
-
...
|
|
1085
|
+
c,
|
|
1086
|
+
...d()
|
|
1368
1087
|
]
|
|
1369
1088
|
}],
|
|
1370
1089
|
/**
|
|
@@ -1372,7 +1091,7 @@ const R = (e) => {
|
|
|
1372
1091
|
* @see https://tailwindcss.com/docs/list-style-image
|
|
1373
1092
|
*/
|
|
1374
1093
|
"list-image": [{
|
|
1375
|
-
"list-image": ["none",
|
|
1094
|
+
"list-image": ["none", n, s]
|
|
1376
1095
|
}],
|
|
1377
1096
|
/**
|
|
1378
1097
|
* List Style Position
|
|
@@ -1386,7 +1105,7 @@ const R = (e) => {
|
|
|
1386
1105
|
* @see https://tailwindcss.com/docs/list-style-type
|
|
1387
1106
|
*/
|
|
1388
1107
|
"list-style-type": [{
|
|
1389
|
-
list: ["disc", "decimal", "none",
|
|
1108
|
+
list: ["disc", "decimal", "none", n, s]
|
|
1390
1109
|
}],
|
|
1391
1110
|
/**
|
|
1392
1111
|
* Text Alignment
|
|
@@ -1401,14 +1120,14 @@ const R = (e) => {
|
|
|
1401
1120
|
* @see https://v3.tailwindcss.com/docs/placeholder-color
|
|
1402
1121
|
*/
|
|
1403
1122
|
"placeholder-color": [{
|
|
1404
|
-
placeholder:
|
|
1123
|
+
placeholder: i()
|
|
1405
1124
|
}],
|
|
1406
1125
|
/**
|
|
1407
1126
|
* Text Color
|
|
1408
1127
|
* @see https://tailwindcss.com/docs/text-color
|
|
1409
1128
|
*/
|
|
1410
1129
|
"text-color": [{
|
|
1411
|
-
text:
|
|
1130
|
+
text: i()
|
|
1412
1131
|
}],
|
|
1413
1132
|
/**
|
|
1414
1133
|
* Text Decoration
|
|
@@ -1420,28 +1139,28 @@ const R = (e) => {
|
|
|
1420
1139
|
* @see https://tailwindcss.com/docs/text-decoration-style
|
|
1421
1140
|
*/
|
|
1422
1141
|
"text-decoration-style": [{
|
|
1423
|
-
decoration: [...
|
|
1142
|
+
decoration: [...q(), "wavy"]
|
|
1424
1143
|
}],
|
|
1425
1144
|
/**
|
|
1426
1145
|
* Text Decoration Thickness
|
|
1427
1146
|
* @see https://tailwindcss.com/docs/text-decoration-thickness
|
|
1428
1147
|
*/
|
|
1429
1148
|
"text-decoration-thickness": [{
|
|
1430
|
-
decoration: [
|
|
1149
|
+
decoration: [m, "from-font", "auto", n, T]
|
|
1431
1150
|
}],
|
|
1432
1151
|
/**
|
|
1433
1152
|
* Text Decoration Color
|
|
1434
1153
|
* @see https://tailwindcss.com/docs/text-decoration-color
|
|
1435
1154
|
*/
|
|
1436
1155
|
"text-decoration-color": [{
|
|
1437
|
-
decoration:
|
|
1156
|
+
decoration: i()
|
|
1438
1157
|
}],
|
|
1439
1158
|
/**
|
|
1440
1159
|
* Text Underline Offset
|
|
1441
1160
|
* @see https://tailwindcss.com/docs/text-underline-offset
|
|
1442
1161
|
*/
|
|
1443
1162
|
"underline-offset": [{
|
|
1444
|
-
"underline-offset": [
|
|
1163
|
+
"underline-offset": [m, "auto", n, s]
|
|
1445
1164
|
}],
|
|
1446
1165
|
/**
|
|
1447
1166
|
* Text Transform
|
|
@@ -1465,14 +1184,14 @@ const R = (e) => {
|
|
|
1465
1184
|
* @see https://tailwindcss.com/docs/text-indent
|
|
1466
1185
|
*/
|
|
1467
1186
|
indent: [{
|
|
1468
|
-
indent:
|
|
1187
|
+
indent: d()
|
|
1469
1188
|
}],
|
|
1470
1189
|
/**
|
|
1471
1190
|
* Vertical Alignment
|
|
1472
1191
|
* @see https://tailwindcss.com/docs/vertical-align
|
|
1473
1192
|
*/
|
|
1474
1193
|
"vertical-align": [{
|
|
1475
|
-
align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super",
|
|
1194
|
+
align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", n, s]
|
|
1476
1195
|
}],
|
|
1477
1196
|
/**
|
|
1478
1197
|
* Whitespace
|
|
@@ -1507,7 +1226,7 @@ const R = (e) => {
|
|
|
1507
1226
|
* @see https://tailwindcss.com/docs/content
|
|
1508
1227
|
*/
|
|
1509
1228
|
content: [{
|
|
1510
|
-
content: ["none",
|
|
1229
|
+
content: ["none", n, s]
|
|
1511
1230
|
}],
|
|
1512
1231
|
// -------------------
|
|
1513
1232
|
// --- Backgrounds ---
|
|
@@ -1538,21 +1257,21 @@ const R = (e) => {
|
|
|
1538
1257
|
* @see https://tailwindcss.com/docs/background-position
|
|
1539
1258
|
*/
|
|
1540
1259
|
"bg-position": [{
|
|
1541
|
-
bg:
|
|
1260
|
+
bg: ce()
|
|
1542
1261
|
}],
|
|
1543
1262
|
/**
|
|
1544
1263
|
* Background Repeat
|
|
1545
1264
|
* @see https://tailwindcss.com/docs/background-repeat
|
|
1546
1265
|
*/
|
|
1547
1266
|
"bg-repeat": [{
|
|
1548
|
-
bg:
|
|
1267
|
+
bg: de()
|
|
1549
1268
|
}],
|
|
1550
1269
|
/**
|
|
1551
1270
|
* Background Size
|
|
1552
1271
|
* @see https://tailwindcss.com/docs/background-size
|
|
1553
1272
|
*/
|
|
1554
1273
|
"bg-size": [{
|
|
1555
|
-
bg:
|
|
1274
|
+
bg: me()
|
|
1556
1275
|
}],
|
|
1557
1276
|
/**
|
|
1558
1277
|
* Background Image
|
|
@@ -1562,59 +1281,59 @@ const R = (e) => {
|
|
|
1562
1281
|
bg: ["none", {
|
|
1563
1282
|
linear: [{
|
|
1564
1283
|
to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
|
|
1565
|
-
},
|
|
1566
|
-
radial: ["",
|
|
1567
|
-
conic: [
|
|
1568
|
-
},
|
|
1284
|
+
}, P, n, s],
|
|
1285
|
+
radial: ["", n, s],
|
|
1286
|
+
conic: [P, n, s]
|
|
1287
|
+
}, io, so]
|
|
1569
1288
|
}],
|
|
1570
1289
|
/**
|
|
1571
1290
|
* Background Color
|
|
1572
1291
|
* @see https://tailwindcss.com/docs/background-color
|
|
1573
1292
|
*/
|
|
1574
1293
|
"bg-color": [{
|
|
1575
|
-
bg:
|
|
1294
|
+
bg: i()
|
|
1576
1295
|
}],
|
|
1577
1296
|
/**
|
|
1578
1297
|
* Gradient Color Stops From Position
|
|
1579
1298
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1580
1299
|
*/
|
|
1581
1300
|
"gradient-from-pos": [{
|
|
1582
|
-
from:
|
|
1301
|
+
from: Y()
|
|
1583
1302
|
}],
|
|
1584
1303
|
/**
|
|
1585
1304
|
* Gradient Color Stops Via Position
|
|
1586
1305
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1587
1306
|
*/
|
|
1588
1307
|
"gradient-via-pos": [{
|
|
1589
|
-
via:
|
|
1308
|
+
via: Y()
|
|
1590
1309
|
}],
|
|
1591
1310
|
/**
|
|
1592
1311
|
* Gradient Color Stops To Position
|
|
1593
1312
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1594
1313
|
*/
|
|
1595
1314
|
"gradient-to-pos": [{
|
|
1596
|
-
to:
|
|
1315
|
+
to: Y()
|
|
1597
1316
|
}],
|
|
1598
1317
|
/**
|
|
1599
1318
|
* Gradient Color Stops From
|
|
1600
1319
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1601
1320
|
*/
|
|
1602
1321
|
"gradient-from": [{
|
|
1603
|
-
from:
|
|
1322
|
+
from: i()
|
|
1604
1323
|
}],
|
|
1605
1324
|
/**
|
|
1606
1325
|
* Gradient Color Stops Via
|
|
1607
1326
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1608
1327
|
*/
|
|
1609
1328
|
"gradient-via": [{
|
|
1610
|
-
via:
|
|
1329
|
+
via: i()
|
|
1611
1330
|
}],
|
|
1612
1331
|
/**
|
|
1613
1332
|
* Gradient Color Stops To
|
|
1614
1333
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1615
1334
|
*/
|
|
1616
1335
|
"gradient-to": [{
|
|
1617
|
-
to:
|
|
1336
|
+
to: i()
|
|
1618
1337
|
}],
|
|
1619
1338
|
// ---------------
|
|
1620
1339
|
// --- Borders ---
|
|
@@ -1624,175 +1343,175 @@ const R = (e) => {
|
|
|
1624
1343
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1625
1344
|
*/
|
|
1626
1345
|
rounded: [{
|
|
1627
|
-
rounded:
|
|
1346
|
+
rounded: x()
|
|
1628
1347
|
}],
|
|
1629
1348
|
/**
|
|
1630
1349
|
* Border Radius Start
|
|
1631
1350
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1632
1351
|
*/
|
|
1633
1352
|
"rounded-s": [{
|
|
1634
|
-
"rounded-s":
|
|
1353
|
+
"rounded-s": x()
|
|
1635
1354
|
}],
|
|
1636
1355
|
/**
|
|
1637
1356
|
* Border Radius End
|
|
1638
1357
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1639
1358
|
*/
|
|
1640
1359
|
"rounded-e": [{
|
|
1641
|
-
"rounded-e":
|
|
1360
|
+
"rounded-e": x()
|
|
1642
1361
|
}],
|
|
1643
1362
|
/**
|
|
1644
1363
|
* Border Radius Top
|
|
1645
1364
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1646
1365
|
*/
|
|
1647
1366
|
"rounded-t": [{
|
|
1648
|
-
"rounded-t":
|
|
1367
|
+
"rounded-t": x()
|
|
1649
1368
|
}],
|
|
1650
1369
|
/**
|
|
1651
1370
|
* Border Radius Right
|
|
1652
1371
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1653
1372
|
*/
|
|
1654
1373
|
"rounded-r": [{
|
|
1655
|
-
"rounded-r":
|
|
1374
|
+
"rounded-r": x()
|
|
1656
1375
|
}],
|
|
1657
1376
|
/**
|
|
1658
1377
|
* Border Radius Bottom
|
|
1659
1378
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1660
1379
|
*/
|
|
1661
1380
|
"rounded-b": [{
|
|
1662
|
-
"rounded-b":
|
|
1381
|
+
"rounded-b": x()
|
|
1663
1382
|
}],
|
|
1664
1383
|
/**
|
|
1665
1384
|
* Border Radius Left
|
|
1666
1385
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1667
1386
|
*/
|
|
1668
1387
|
"rounded-l": [{
|
|
1669
|
-
"rounded-l":
|
|
1388
|
+
"rounded-l": x()
|
|
1670
1389
|
}],
|
|
1671
1390
|
/**
|
|
1672
1391
|
* Border Radius Start Start
|
|
1673
1392
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1674
1393
|
*/
|
|
1675
1394
|
"rounded-ss": [{
|
|
1676
|
-
"rounded-ss":
|
|
1395
|
+
"rounded-ss": x()
|
|
1677
1396
|
}],
|
|
1678
1397
|
/**
|
|
1679
1398
|
* Border Radius Start End
|
|
1680
1399
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1681
1400
|
*/
|
|
1682
1401
|
"rounded-se": [{
|
|
1683
|
-
"rounded-se":
|
|
1402
|
+
"rounded-se": x()
|
|
1684
1403
|
}],
|
|
1685
1404
|
/**
|
|
1686
1405
|
* Border Radius End End
|
|
1687
1406
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1688
1407
|
*/
|
|
1689
1408
|
"rounded-ee": [{
|
|
1690
|
-
"rounded-ee":
|
|
1409
|
+
"rounded-ee": x()
|
|
1691
1410
|
}],
|
|
1692
1411
|
/**
|
|
1693
1412
|
* Border Radius End Start
|
|
1694
1413
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1695
1414
|
*/
|
|
1696
1415
|
"rounded-es": [{
|
|
1697
|
-
"rounded-es":
|
|
1416
|
+
"rounded-es": x()
|
|
1698
1417
|
}],
|
|
1699
1418
|
/**
|
|
1700
1419
|
* Border Radius Top Left
|
|
1701
1420
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1702
1421
|
*/
|
|
1703
1422
|
"rounded-tl": [{
|
|
1704
|
-
"rounded-tl":
|
|
1423
|
+
"rounded-tl": x()
|
|
1705
1424
|
}],
|
|
1706
1425
|
/**
|
|
1707
1426
|
* Border Radius Top Right
|
|
1708
1427
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1709
1428
|
*/
|
|
1710
1429
|
"rounded-tr": [{
|
|
1711
|
-
"rounded-tr":
|
|
1430
|
+
"rounded-tr": x()
|
|
1712
1431
|
}],
|
|
1713
1432
|
/**
|
|
1714
1433
|
* Border Radius Bottom Right
|
|
1715
1434
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1716
1435
|
*/
|
|
1717
1436
|
"rounded-br": [{
|
|
1718
|
-
"rounded-br":
|
|
1437
|
+
"rounded-br": x()
|
|
1719
1438
|
}],
|
|
1720
1439
|
/**
|
|
1721
1440
|
* Border Radius Bottom Left
|
|
1722
1441
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1723
1442
|
*/
|
|
1724
1443
|
"rounded-bl": [{
|
|
1725
|
-
"rounded-bl":
|
|
1444
|
+
"rounded-bl": x()
|
|
1726
1445
|
}],
|
|
1727
1446
|
/**
|
|
1728
1447
|
* Border Width
|
|
1729
1448
|
* @see https://tailwindcss.com/docs/border-width
|
|
1730
1449
|
*/
|
|
1731
1450
|
"border-w": [{
|
|
1732
|
-
border:
|
|
1451
|
+
border: v()
|
|
1733
1452
|
}],
|
|
1734
1453
|
/**
|
|
1735
1454
|
* Border Width X
|
|
1736
1455
|
* @see https://tailwindcss.com/docs/border-width
|
|
1737
1456
|
*/
|
|
1738
1457
|
"border-w-x": [{
|
|
1739
|
-
"border-x":
|
|
1458
|
+
"border-x": v()
|
|
1740
1459
|
}],
|
|
1741
1460
|
/**
|
|
1742
1461
|
* Border Width Y
|
|
1743
1462
|
* @see https://tailwindcss.com/docs/border-width
|
|
1744
1463
|
*/
|
|
1745
1464
|
"border-w-y": [{
|
|
1746
|
-
"border-y":
|
|
1465
|
+
"border-y": v()
|
|
1747
1466
|
}],
|
|
1748
1467
|
/**
|
|
1749
1468
|
* Border Width Start
|
|
1750
1469
|
* @see https://tailwindcss.com/docs/border-width
|
|
1751
1470
|
*/
|
|
1752
1471
|
"border-w-s": [{
|
|
1753
|
-
"border-s":
|
|
1472
|
+
"border-s": v()
|
|
1754
1473
|
}],
|
|
1755
1474
|
/**
|
|
1756
1475
|
* Border Width End
|
|
1757
1476
|
* @see https://tailwindcss.com/docs/border-width
|
|
1758
1477
|
*/
|
|
1759
1478
|
"border-w-e": [{
|
|
1760
|
-
"border-e":
|
|
1479
|
+
"border-e": v()
|
|
1761
1480
|
}],
|
|
1762
1481
|
/**
|
|
1763
1482
|
* Border Width Top
|
|
1764
1483
|
* @see https://tailwindcss.com/docs/border-width
|
|
1765
1484
|
*/
|
|
1766
1485
|
"border-w-t": [{
|
|
1767
|
-
"border-t":
|
|
1486
|
+
"border-t": v()
|
|
1768
1487
|
}],
|
|
1769
1488
|
/**
|
|
1770
1489
|
* Border Width Right
|
|
1771
1490
|
* @see https://tailwindcss.com/docs/border-width
|
|
1772
1491
|
*/
|
|
1773
1492
|
"border-w-r": [{
|
|
1774
|
-
"border-r":
|
|
1493
|
+
"border-r": v()
|
|
1775
1494
|
}],
|
|
1776
1495
|
/**
|
|
1777
1496
|
* Border Width Bottom
|
|
1778
1497
|
* @see https://tailwindcss.com/docs/border-width
|
|
1779
1498
|
*/
|
|
1780
1499
|
"border-w-b": [{
|
|
1781
|
-
"border-b":
|
|
1500
|
+
"border-b": v()
|
|
1782
1501
|
}],
|
|
1783
1502
|
/**
|
|
1784
1503
|
* Border Width Left
|
|
1785
1504
|
* @see https://tailwindcss.com/docs/border-width
|
|
1786
1505
|
*/
|
|
1787
1506
|
"border-w-l": [{
|
|
1788
|
-
"border-l":
|
|
1507
|
+
"border-l": v()
|
|
1789
1508
|
}],
|
|
1790
1509
|
/**
|
|
1791
1510
|
* Divide Width X
|
|
1792
1511
|
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1793
1512
|
*/
|
|
1794
1513
|
"divide-x": [{
|
|
1795
|
-
"divide-x":
|
|
1514
|
+
"divide-x": v()
|
|
1796
1515
|
}],
|
|
1797
1516
|
/**
|
|
1798
1517
|
* Divide Width X Reverse
|
|
@@ -1804,7 +1523,7 @@ const R = (e) => {
|
|
|
1804
1523
|
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1805
1524
|
*/
|
|
1806
1525
|
"divide-y": [{
|
|
1807
|
-
"divide-y":
|
|
1526
|
+
"divide-y": v()
|
|
1808
1527
|
}],
|
|
1809
1528
|
/**
|
|
1810
1529
|
* Divide Width Y Reverse
|
|
@@ -1816,112 +1535,112 @@ const R = (e) => {
|
|
|
1816
1535
|
* @see https://tailwindcss.com/docs/border-style
|
|
1817
1536
|
*/
|
|
1818
1537
|
"border-style": [{
|
|
1819
|
-
border: [...
|
|
1538
|
+
border: [...q(), "hidden", "none"]
|
|
1820
1539
|
}],
|
|
1821
1540
|
/**
|
|
1822
1541
|
* Divide Style
|
|
1823
1542
|
* @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
|
|
1824
1543
|
*/
|
|
1825
1544
|
"divide-style": [{
|
|
1826
|
-
divide: [...
|
|
1545
|
+
divide: [...q(), "hidden", "none"]
|
|
1827
1546
|
}],
|
|
1828
1547
|
/**
|
|
1829
1548
|
* Border Color
|
|
1830
1549
|
* @see https://tailwindcss.com/docs/border-color
|
|
1831
1550
|
*/
|
|
1832
1551
|
"border-color": [{
|
|
1833
|
-
border:
|
|
1552
|
+
border: i()
|
|
1834
1553
|
}],
|
|
1835
1554
|
/**
|
|
1836
1555
|
* Border Color X
|
|
1837
1556
|
* @see https://tailwindcss.com/docs/border-color
|
|
1838
1557
|
*/
|
|
1839
1558
|
"border-color-x": [{
|
|
1840
|
-
"border-x":
|
|
1559
|
+
"border-x": i()
|
|
1841
1560
|
}],
|
|
1842
1561
|
/**
|
|
1843
1562
|
* Border Color Y
|
|
1844
1563
|
* @see https://tailwindcss.com/docs/border-color
|
|
1845
1564
|
*/
|
|
1846
1565
|
"border-color-y": [{
|
|
1847
|
-
"border-y":
|
|
1566
|
+
"border-y": i()
|
|
1848
1567
|
}],
|
|
1849
1568
|
/**
|
|
1850
1569
|
* Border Color S
|
|
1851
1570
|
* @see https://tailwindcss.com/docs/border-color
|
|
1852
1571
|
*/
|
|
1853
1572
|
"border-color-s": [{
|
|
1854
|
-
"border-s":
|
|
1573
|
+
"border-s": i()
|
|
1855
1574
|
}],
|
|
1856
1575
|
/**
|
|
1857
1576
|
* Border Color E
|
|
1858
1577
|
* @see https://tailwindcss.com/docs/border-color
|
|
1859
1578
|
*/
|
|
1860
1579
|
"border-color-e": [{
|
|
1861
|
-
"border-e":
|
|
1580
|
+
"border-e": i()
|
|
1862
1581
|
}],
|
|
1863
1582
|
/**
|
|
1864
1583
|
* Border Color Top
|
|
1865
1584
|
* @see https://tailwindcss.com/docs/border-color
|
|
1866
1585
|
*/
|
|
1867
1586
|
"border-color-t": [{
|
|
1868
|
-
"border-t":
|
|
1587
|
+
"border-t": i()
|
|
1869
1588
|
}],
|
|
1870
1589
|
/**
|
|
1871
1590
|
* Border Color Right
|
|
1872
1591
|
* @see https://tailwindcss.com/docs/border-color
|
|
1873
1592
|
*/
|
|
1874
1593
|
"border-color-r": [{
|
|
1875
|
-
"border-r":
|
|
1594
|
+
"border-r": i()
|
|
1876
1595
|
}],
|
|
1877
1596
|
/**
|
|
1878
1597
|
* Border Color Bottom
|
|
1879
1598
|
* @see https://tailwindcss.com/docs/border-color
|
|
1880
1599
|
*/
|
|
1881
1600
|
"border-color-b": [{
|
|
1882
|
-
"border-b":
|
|
1601
|
+
"border-b": i()
|
|
1883
1602
|
}],
|
|
1884
1603
|
/**
|
|
1885
1604
|
* Border Color Left
|
|
1886
1605
|
* @see https://tailwindcss.com/docs/border-color
|
|
1887
1606
|
*/
|
|
1888
1607
|
"border-color-l": [{
|
|
1889
|
-
"border-l":
|
|
1608
|
+
"border-l": i()
|
|
1890
1609
|
}],
|
|
1891
1610
|
/**
|
|
1892
1611
|
* Divide Color
|
|
1893
1612
|
* @see https://tailwindcss.com/docs/divide-color
|
|
1894
1613
|
*/
|
|
1895
1614
|
"divide-color": [{
|
|
1896
|
-
divide:
|
|
1615
|
+
divide: i()
|
|
1897
1616
|
}],
|
|
1898
1617
|
/**
|
|
1899
1618
|
* Outline Style
|
|
1900
1619
|
* @see https://tailwindcss.com/docs/outline-style
|
|
1901
1620
|
*/
|
|
1902
1621
|
"outline-style": [{
|
|
1903
|
-
outline: [...
|
|
1622
|
+
outline: [...q(), "none", "hidden"]
|
|
1904
1623
|
}],
|
|
1905
1624
|
/**
|
|
1906
1625
|
* Outline Offset
|
|
1907
1626
|
* @see https://tailwindcss.com/docs/outline-offset
|
|
1908
1627
|
*/
|
|
1909
1628
|
"outline-offset": [{
|
|
1910
|
-
"outline-offset": [
|
|
1629
|
+
"outline-offset": [m, n, s]
|
|
1911
1630
|
}],
|
|
1912
1631
|
/**
|
|
1913
1632
|
* Outline Width
|
|
1914
1633
|
* @see https://tailwindcss.com/docs/outline-width
|
|
1915
1634
|
*/
|
|
1916
1635
|
"outline-w": [{
|
|
1917
|
-
outline: ["",
|
|
1636
|
+
outline: ["", m, W, T]
|
|
1918
1637
|
}],
|
|
1919
1638
|
/**
|
|
1920
1639
|
* Outline Color
|
|
1921
1640
|
* @see https://tailwindcss.com/docs/outline-color
|
|
1922
1641
|
*/
|
|
1923
1642
|
"outline-color": [{
|
|
1924
|
-
outline:
|
|
1643
|
+
outline: i()
|
|
1925
1644
|
}],
|
|
1926
1645
|
// ---------------
|
|
1927
1646
|
// --- Effects ---
|
|
@@ -1935,9 +1654,9 @@ const R = (e) => {
|
|
|
1935
1654
|
// Deprecated since Tailwind CSS v4.0.0
|
|
1936
1655
|
"",
|
|
1937
1656
|
"none",
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1657
|
+
b,
|
|
1658
|
+
D,
|
|
1659
|
+
X
|
|
1941
1660
|
]
|
|
1942
1661
|
}],
|
|
1943
1662
|
/**
|
|
@@ -1945,28 +1664,28 @@ const R = (e) => {
|
|
|
1945
1664
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
|
|
1946
1665
|
*/
|
|
1947
1666
|
"shadow-color": [{
|
|
1948
|
-
shadow:
|
|
1667
|
+
shadow: i()
|
|
1949
1668
|
}],
|
|
1950
1669
|
/**
|
|
1951
1670
|
* Inset Box Shadow
|
|
1952
1671
|
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
|
|
1953
1672
|
*/
|
|
1954
1673
|
"inset-shadow": [{
|
|
1955
|
-
"inset-shadow": ["none",
|
|
1674
|
+
"inset-shadow": ["none", y, D, X]
|
|
1956
1675
|
}],
|
|
1957
1676
|
/**
|
|
1958
1677
|
* Inset Box Shadow Color
|
|
1959
1678
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
|
|
1960
1679
|
*/
|
|
1961
1680
|
"inset-shadow-color": [{
|
|
1962
|
-
"inset-shadow":
|
|
1681
|
+
"inset-shadow": i()
|
|
1963
1682
|
}],
|
|
1964
1683
|
/**
|
|
1965
1684
|
* Ring Width
|
|
1966
1685
|
* @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
|
|
1967
1686
|
*/
|
|
1968
1687
|
"ring-w": [{
|
|
1969
|
-
ring:
|
|
1688
|
+
ring: v()
|
|
1970
1689
|
}],
|
|
1971
1690
|
/**
|
|
1972
1691
|
* Ring Width Inset
|
|
@@ -1980,7 +1699,7 @@ const R = (e) => {
|
|
|
1980
1699
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
|
|
1981
1700
|
*/
|
|
1982
1701
|
"ring-color": [{
|
|
1983
|
-
ring:
|
|
1702
|
+
ring: i()
|
|
1984
1703
|
}],
|
|
1985
1704
|
/**
|
|
1986
1705
|
* Ring Offset Width
|
|
@@ -1989,7 +1708,7 @@ const R = (e) => {
|
|
|
1989
1708
|
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1990
1709
|
*/
|
|
1991
1710
|
"ring-offset-w": [{
|
|
1992
|
-
"ring-offset": [
|
|
1711
|
+
"ring-offset": [m, T]
|
|
1993
1712
|
}],
|
|
1994
1713
|
/**
|
|
1995
1714
|
* Ring Offset Color
|
|
@@ -1998,56 +1717,56 @@ const R = (e) => {
|
|
|
1998
1717
|
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1999
1718
|
*/
|
|
2000
1719
|
"ring-offset-color": [{
|
|
2001
|
-
"ring-offset":
|
|
1720
|
+
"ring-offset": i()
|
|
2002
1721
|
}],
|
|
2003
1722
|
/**
|
|
2004
1723
|
* Inset Ring Width
|
|
2005
1724
|
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
|
|
2006
1725
|
*/
|
|
2007
1726
|
"inset-ring-w": [{
|
|
2008
|
-
"inset-ring":
|
|
1727
|
+
"inset-ring": v()
|
|
2009
1728
|
}],
|
|
2010
1729
|
/**
|
|
2011
1730
|
* Inset Ring Color
|
|
2012
1731
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
|
|
2013
1732
|
*/
|
|
2014
1733
|
"inset-ring-color": [{
|
|
2015
|
-
"inset-ring":
|
|
1734
|
+
"inset-ring": i()
|
|
2016
1735
|
}],
|
|
2017
1736
|
/**
|
|
2018
1737
|
* Text Shadow
|
|
2019
1738
|
* @see https://tailwindcss.com/docs/text-shadow
|
|
2020
1739
|
*/
|
|
2021
1740
|
"text-shadow": [{
|
|
2022
|
-
"text-shadow": ["none",
|
|
1741
|
+
"text-shadow": ["none", z, D, X]
|
|
2023
1742
|
}],
|
|
2024
1743
|
/**
|
|
2025
1744
|
* Text Shadow Color
|
|
2026
1745
|
* @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
|
|
2027
1746
|
*/
|
|
2028
1747
|
"text-shadow-color": [{
|
|
2029
|
-
"text-shadow":
|
|
1748
|
+
"text-shadow": i()
|
|
2030
1749
|
}],
|
|
2031
1750
|
/**
|
|
2032
1751
|
* Opacity
|
|
2033
1752
|
* @see https://tailwindcss.com/docs/opacity
|
|
2034
1753
|
*/
|
|
2035
1754
|
opacity: [{
|
|
2036
|
-
opacity: [
|
|
1755
|
+
opacity: [m, n, s]
|
|
2037
1756
|
}],
|
|
2038
1757
|
/**
|
|
2039
1758
|
* Mix Blend Mode
|
|
2040
1759
|
* @see https://tailwindcss.com/docs/mix-blend-mode
|
|
2041
1760
|
*/
|
|
2042
1761
|
"mix-blend": [{
|
|
2043
|
-
"mix-blend": [...
|
|
1762
|
+
"mix-blend": [...ue(), "plus-darker", "plus-lighter"]
|
|
2044
1763
|
}],
|
|
2045
1764
|
/**
|
|
2046
1765
|
* Background Blend Mode
|
|
2047
1766
|
* @see https://tailwindcss.com/docs/background-blend-mode
|
|
2048
1767
|
*/
|
|
2049
1768
|
"bg-blend": [{
|
|
2050
|
-
"bg-blend":
|
|
1769
|
+
"bg-blend": ue()
|
|
2051
1770
|
}],
|
|
2052
1771
|
/**
|
|
2053
1772
|
* Mask Clip
|
|
@@ -2068,106 +1787,106 @@ const R = (e) => {
|
|
|
2068
1787
|
* @see https://tailwindcss.com/docs/mask-image
|
|
2069
1788
|
*/
|
|
2070
1789
|
"mask-image-linear-pos": [{
|
|
2071
|
-
"mask-linear": [
|
|
1790
|
+
"mask-linear": [m]
|
|
2072
1791
|
}],
|
|
2073
1792
|
"mask-image-linear-from-pos": [{
|
|
2074
|
-
"mask-linear-from":
|
|
1793
|
+
"mask-linear-from": h()
|
|
2075
1794
|
}],
|
|
2076
1795
|
"mask-image-linear-to-pos": [{
|
|
2077
|
-
"mask-linear-to":
|
|
1796
|
+
"mask-linear-to": h()
|
|
2078
1797
|
}],
|
|
2079
1798
|
"mask-image-linear-from-color": [{
|
|
2080
|
-
"mask-linear-from":
|
|
1799
|
+
"mask-linear-from": i()
|
|
2081
1800
|
}],
|
|
2082
1801
|
"mask-image-linear-to-color": [{
|
|
2083
|
-
"mask-linear-to":
|
|
1802
|
+
"mask-linear-to": i()
|
|
2084
1803
|
}],
|
|
2085
1804
|
"mask-image-t-from-pos": [{
|
|
2086
|
-
"mask-t-from":
|
|
1805
|
+
"mask-t-from": h()
|
|
2087
1806
|
}],
|
|
2088
1807
|
"mask-image-t-to-pos": [{
|
|
2089
|
-
"mask-t-to":
|
|
1808
|
+
"mask-t-to": h()
|
|
2090
1809
|
}],
|
|
2091
1810
|
"mask-image-t-from-color": [{
|
|
2092
|
-
"mask-t-from":
|
|
1811
|
+
"mask-t-from": i()
|
|
2093
1812
|
}],
|
|
2094
1813
|
"mask-image-t-to-color": [{
|
|
2095
|
-
"mask-t-to":
|
|
1814
|
+
"mask-t-to": i()
|
|
2096
1815
|
}],
|
|
2097
1816
|
"mask-image-r-from-pos": [{
|
|
2098
|
-
"mask-r-from":
|
|
1817
|
+
"mask-r-from": h()
|
|
2099
1818
|
}],
|
|
2100
1819
|
"mask-image-r-to-pos": [{
|
|
2101
|
-
"mask-r-to":
|
|
1820
|
+
"mask-r-to": h()
|
|
2102
1821
|
}],
|
|
2103
1822
|
"mask-image-r-from-color": [{
|
|
2104
|
-
"mask-r-from":
|
|
1823
|
+
"mask-r-from": i()
|
|
2105
1824
|
}],
|
|
2106
1825
|
"mask-image-r-to-color": [{
|
|
2107
|
-
"mask-r-to":
|
|
1826
|
+
"mask-r-to": i()
|
|
2108
1827
|
}],
|
|
2109
1828
|
"mask-image-b-from-pos": [{
|
|
2110
|
-
"mask-b-from":
|
|
1829
|
+
"mask-b-from": h()
|
|
2111
1830
|
}],
|
|
2112
1831
|
"mask-image-b-to-pos": [{
|
|
2113
|
-
"mask-b-to":
|
|
1832
|
+
"mask-b-to": h()
|
|
2114
1833
|
}],
|
|
2115
1834
|
"mask-image-b-from-color": [{
|
|
2116
|
-
"mask-b-from":
|
|
1835
|
+
"mask-b-from": i()
|
|
2117
1836
|
}],
|
|
2118
1837
|
"mask-image-b-to-color": [{
|
|
2119
|
-
"mask-b-to":
|
|
1838
|
+
"mask-b-to": i()
|
|
2120
1839
|
}],
|
|
2121
1840
|
"mask-image-l-from-pos": [{
|
|
2122
|
-
"mask-l-from":
|
|
1841
|
+
"mask-l-from": h()
|
|
2123
1842
|
}],
|
|
2124
1843
|
"mask-image-l-to-pos": [{
|
|
2125
|
-
"mask-l-to":
|
|
1844
|
+
"mask-l-to": h()
|
|
2126
1845
|
}],
|
|
2127
1846
|
"mask-image-l-from-color": [{
|
|
2128
|
-
"mask-l-from":
|
|
1847
|
+
"mask-l-from": i()
|
|
2129
1848
|
}],
|
|
2130
1849
|
"mask-image-l-to-color": [{
|
|
2131
|
-
"mask-l-to":
|
|
1850
|
+
"mask-l-to": i()
|
|
2132
1851
|
}],
|
|
2133
1852
|
"mask-image-x-from-pos": [{
|
|
2134
|
-
"mask-x-from":
|
|
1853
|
+
"mask-x-from": h()
|
|
2135
1854
|
}],
|
|
2136
1855
|
"mask-image-x-to-pos": [{
|
|
2137
|
-
"mask-x-to":
|
|
1856
|
+
"mask-x-to": h()
|
|
2138
1857
|
}],
|
|
2139
1858
|
"mask-image-x-from-color": [{
|
|
2140
|
-
"mask-x-from":
|
|
1859
|
+
"mask-x-from": i()
|
|
2141
1860
|
}],
|
|
2142
1861
|
"mask-image-x-to-color": [{
|
|
2143
|
-
"mask-x-to":
|
|
1862
|
+
"mask-x-to": i()
|
|
2144
1863
|
}],
|
|
2145
1864
|
"mask-image-y-from-pos": [{
|
|
2146
|
-
"mask-y-from":
|
|
1865
|
+
"mask-y-from": h()
|
|
2147
1866
|
}],
|
|
2148
1867
|
"mask-image-y-to-pos": [{
|
|
2149
|
-
"mask-y-to":
|
|
1868
|
+
"mask-y-to": h()
|
|
2150
1869
|
}],
|
|
2151
1870
|
"mask-image-y-from-color": [{
|
|
2152
|
-
"mask-y-from":
|
|
1871
|
+
"mask-y-from": i()
|
|
2153
1872
|
}],
|
|
2154
1873
|
"mask-image-y-to-color": [{
|
|
2155
|
-
"mask-y-to":
|
|
1874
|
+
"mask-y-to": i()
|
|
2156
1875
|
}],
|
|
2157
1876
|
"mask-image-radial": [{
|
|
2158
|
-
"mask-radial": [
|
|
1877
|
+
"mask-radial": [n, s]
|
|
2159
1878
|
}],
|
|
2160
1879
|
"mask-image-radial-from-pos": [{
|
|
2161
|
-
"mask-radial-from":
|
|
1880
|
+
"mask-radial-from": h()
|
|
2162
1881
|
}],
|
|
2163
1882
|
"mask-image-radial-to-pos": [{
|
|
2164
|
-
"mask-radial-to":
|
|
1883
|
+
"mask-radial-to": h()
|
|
2165
1884
|
}],
|
|
2166
1885
|
"mask-image-radial-from-color": [{
|
|
2167
|
-
"mask-radial-from":
|
|
1886
|
+
"mask-radial-from": i()
|
|
2168
1887
|
}],
|
|
2169
1888
|
"mask-image-radial-to-color": [{
|
|
2170
|
-
"mask-radial-to":
|
|
1889
|
+
"mask-radial-to": i()
|
|
2171
1890
|
}],
|
|
2172
1891
|
"mask-image-radial-shape": [{
|
|
2173
1892
|
"mask-radial": ["circle", "ellipse"]
|
|
@@ -2179,22 +1898,22 @@ const R = (e) => {
|
|
|
2179
1898
|
}]
|
|
2180
1899
|
}],
|
|
2181
1900
|
"mask-image-radial-pos": [{
|
|
2182
|
-
"mask-radial-at":
|
|
1901
|
+
"mask-radial-at": V()
|
|
2183
1902
|
}],
|
|
2184
1903
|
"mask-image-conic-pos": [{
|
|
2185
|
-
"mask-conic": [
|
|
1904
|
+
"mask-conic": [m]
|
|
2186
1905
|
}],
|
|
2187
1906
|
"mask-image-conic-from-pos": [{
|
|
2188
|
-
"mask-conic-from":
|
|
1907
|
+
"mask-conic-from": h()
|
|
2189
1908
|
}],
|
|
2190
1909
|
"mask-image-conic-to-pos": [{
|
|
2191
|
-
"mask-conic-to":
|
|
1910
|
+
"mask-conic-to": h()
|
|
2192
1911
|
}],
|
|
2193
1912
|
"mask-image-conic-from-color": [{
|
|
2194
|
-
"mask-conic-from":
|
|
1913
|
+
"mask-conic-from": i()
|
|
2195
1914
|
}],
|
|
2196
1915
|
"mask-image-conic-to-color": [{
|
|
2197
|
-
"mask-conic-to":
|
|
1916
|
+
"mask-conic-to": i()
|
|
2198
1917
|
}],
|
|
2199
1918
|
/**
|
|
2200
1919
|
* Mask Mode
|
|
@@ -2215,21 +1934,21 @@ const R = (e) => {
|
|
|
2215
1934
|
* @see https://tailwindcss.com/docs/mask-position
|
|
2216
1935
|
*/
|
|
2217
1936
|
"mask-position": [{
|
|
2218
|
-
mask:
|
|
1937
|
+
mask: ce()
|
|
2219
1938
|
}],
|
|
2220
1939
|
/**
|
|
2221
1940
|
* Mask Repeat
|
|
2222
1941
|
* @see https://tailwindcss.com/docs/mask-repeat
|
|
2223
1942
|
*/
|
|
2224
1943
|
"mask-repeat": [{
|
|
2225
|
-
mask:
|
|
1944
|
+
mask: de()
|
|
2226
1945
|
}],
|
|
2227
1946
|
/**
|
|
2228
1947
|
* Mask Size
|
|
2229
1948
|
* @see https://tailwindcss.com/docs/mask-size
|
|
2230
1949
|
*/
|
|
2231
1950
|
"mask-size": [{
|
|
2232
|
-
mask:
|
|
1951
|
+
mask: me()
|
|
2233
1952
|
}],
|
|
2234
1953
|
/**
|
|
2235
1954
|
* Mask Type
|
|
@@ -2243,7 +1962,7 @@ const R = (e) => {
|
|
|
2243
1962
|
* @see https://tailwindcss.com/docs/mask-image
|
|
2244
1963
|
*/
|
|
2245
1964
|
"mask-image": [{
|
|
2246
|
-
mask: ["none",
|
|
1965
|
+
mask: ["none", n, s]
|
|
2247
1966
|
}],
|
|
2248
1967
|
// ---------------
|
|
2249
1968
|
// --- Filters ---
|
|
@@ -2257,7 +1976,7 @@ const R = (e) => {
|
|
|
2257
1976
|
// Deprecated since Tailwind CSS v3.0.0
|
|
2258
1977
|
"",
|
|
2259
1978
|
"none",
|
|
2260
|
-
|
|
1979
|
+
n,
|
|
2261
1980
|
s
|
|
2262
1981
|
]
|
|
2263
1982
|
}],
|
|
@@ -2266,21 +1985,21 @@ const R = (e) => {
|
|
|
2266
1985
|
* @see https://tailwindcss.com/docs/blur
|
|
2267
1986
|
*/
|
|
2268
1987
|
blur: [{
|
|
2269
|
-
blur:
|
|
1988
|
+
blur: pe()
|
|
2270
1989
|
}],
|
|
2271
1990
|
/**
|
|
2272
1991
|
* Brightness
|
|
2273
1992
|
* @see https://tailwindcss.com/docs/brightness
|
|
2274
1993
|
*/
|
|
2275
1994
|
brightness: [{
|
|
2276
|
-
brightness: [
|
|
1995
|
+
brightness: [m, n, s]
|
|
2277
1996
|
}],
|
|
2278
1997
|
/**
|
|
2279
1998
|
* Contrast
|
|
2280
1999
|
* @see https://tailwindcss.com/docs/contrast
|
|
2281
2000
|
*/
|
|
2282
2001
|
contrast: [{
|
|
2283
|
-
contrast: [
|
|
2002
|
+
contrast: [m, n, s]
|
|
2284
2003
|
}],
|
|
2285
2004
|
/**
|
|
2286
2005
|
* Drop Shadow
|
|
@@ -2291,9 +2010,9 @@ const R = (e) => {
|
|
|
2291
2010
|
// Deprecated since Tailwind CSS v4.0.0
|
|
2292
2011
|
"",
|
|
2293
2012
|
"none",
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2013
|
+
I,
|
|
2014
|
+
D,
|
|
2015
|
+
X
|
|
2297
2016
|
]
|
|
2298
2017
|
}],
|
|
2299
2018
|
/**
|
|
@@ -2301,42 +2020,42 @@ const R = (e) => {
|
|
|
2301
2020
|
* @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
|
|
2302
2021
|
*/
|
|
2303
2022
|
"drop-shadow-color": [{
|
|
2304
|
-
"drop-shadow":
|
|
2023
|
+
"drop-shadow": i()
|
|
2305
2024
|
}],
|
|
2306
2025
|
/**
|
|
2307
2026
|
* Grayscale
|
|
2308
2027
|
* @see https://tailwindcss.com/docs/grayscale
|
|
2309
2028
|
*/
|
|
2310
2029
|
grayscale: [{
|
|
2311
|
-
grayscale: ["",
|
|
2030
|
+
grayscale: ["", m, n, s]
|
|
2312
2031
|
}],
|
|
2313
2032
|
/**
|
|
2314
2033
|
* Hue Rotate
|
|
2315
2034
|
* @see https://tailwindcss.com/docs/hue-rotate
|
|
2316
2035
|
*/
|
|
2317
2036
|
"hue-rotate": [{
|
|
2318
|
-
"hue-rotate": [
|
|
2037
|
+
"hue-rotate": [m, n, s]
|
|
2319
2038
|
}],
|
|
2320
2039
|
/**
|
|
2321
2040
|
* Invert
|
|
2322
2041
|
* @see https://tailwindcss.com/docs/invert
|
|
2323
2042
|
*/
|
|
2324
2043
|
invert: [{
|
|
2325
|
-
invert: ["",
|
|
2044
|
+
invert: ["", m, n, s]
|
|
2326
2045
|
}],
|
|
2327
2046
|
/**
|
|
2328
2047
|
* Saturate
|
|
2329
2048
|
* @see https://tailwindcss.com/docs/saturate
|
|
2330
2049
|
*/
|
|
2331
2050
|
saturate: [{
|
|
2332
|
-
saturate: [
|
|
2051
|
+
saturate: [m, n, s]
|
|
2333
2052
|
}],
|
|
2334
2053
|
/**
|
|
2335
2054
|
* Sepia
|
|
2336
2055
|
* @see https://tailwindcss.com/docs/sepia
|
|
2337
2056
|
*/
|
|
2338
2057
|
sepia: [{
|
|
2339
|
-
sepia: ["",
|
|
2058
|
+
sepia: ["", m, n, s]
|
|
2340
2059
|
}],
|
|
2341
2060
|
/**
|
|
2342
2061
|
* Backdrop Filter
|
|
@@ -2347,7 +2066,7 @@ const R = (e) => {
|
|
|
2347
2066
|
// Deprecated since Tailwind CSS v3.0.0
|
|
2348
2067
|
"",
|
|
2349
2068
|
"none",
|
|
2350
|
-
|
|
2069
|
+
n,
|
|
2351
2070
|
s
|
|
2352
2071
|
]
|
|
2353
2072
|
}],
|
|
@@ -2356,63 +2075,63 @@ const R = (e) => {
|
|
|
2356
2075
|
* @see https://tailwindcss.com/docs/backdrop-blur
|
|
2357
2076
|
*/
|
|
2358
2077
|
"backdrop-blur": [{
|
|
2359
|
-
"backdrop-blur":
|
|
2078
|
+
"backdrop-blur": pe()
|
|
2360
2079
|
}],
|
|
2361
2080
|
/**
|
|
2362
2081
|
* Backdrop Brightness
|
|
2363
2082
|
* @see https://tailwindcss.com/docs/backdrop-brightness
|
|
2364
2083
|
*/
|
|
2365
2084
|
"backdrop-brightness": [{
|
|
2366
|
-
"backdrop-brightness": [
|
|
2085
|
+
"backdrop-brightness": [m, n, s]
|
|
2367
2086
|
}],
|
|
2368
2087
|
/**
|
|
2369
2088
|
* Backdrop Contrast
|
|
2370
2089
|
* @see https://tailwindcss.com/docs/backdrop-contrast
|
|
2371
2090
|
*/
|
|
2372
2091
|
"backdrop-contrast": [{
|
|
2373
|
-
"backdrop-contrast": [
|
|
2092
|
+
"backdrop-contrast": [m, n, s]
|
|
2374
2093
|
}],
|
|
2375
2094
|
/**
|
|
2376
2095
|
* Backdrop Grayscale
|
|
2377
2096
|
* @see https://tailwindcss.com/docs/backdrop-grayscale
|
|
2378
2097
|
*/
|
|
2379
2098
|
"backdrop-grayscale": [{
|
|
2380
|
-
"backdrop-grayscale": ["",
|
|
2099
|
+
"backdrop-grayscale": ["", m, n, s]
|
|
2381
2100
|
}],
|
|
2382
2101
|
/**
|
|
2383
2102
|
* Backdrop Hue Rotate
|
|
2384
2103
|
* @see https://tailwindcss.com/docs/backdrop-hue-rotate
|
|
2385
2104
|
*/
|
|
2386
2105
|
"backdrop-hue-rotate": [{
|
|
2387
|
-
"backdrop-hue-rotate": [
|
|
2106
|
+
"backdrop-hue-rotate": [m, n, s]
|
|
2388
2107
|
}],
|
|
2389
2108
|
/**
|
|
2390
2109
|
* Backdrop Invert
|
|
2391
2110
|
* @see https://tailwindcss.com/docs/backdrop-invert
|
|
2392
2111
|
*/
|
|
2393
2112
|
"backdrop-invert": [{
|
|
2394
|
-
"backdrop-invert": ["",
|
|
2113
|
+
"backdrop-invert": ["", m, n, s]
|
|
2395
2114
|
}],
|
|
2396
2115
|
/**
|
|
2397
2116
|
* Backdrop Opacity
|
|
2398
2117
|
* @see https://tailwindcss.com/docs/backdrop-opacity
|
|
2399
2118
|
*/
|
|
2400
2119
|
"backdrop-opacity": [{
|
|
2401
|
-
"backdrop-opacity": [
|
|
2120
|
+
"backdrop-opacity": [m, n, s]
|
|
2402
2121
|
}],
|
|
2403
2122
|
/**
|
|
2404
2123
|
* Backdrop Saturate
|
|
2405
2124
|
* @see https://tailwindcss.com/docs/backdrop-saturate
|
|
2406
2125
|
*/
|
|
2407
2126
|
"backdrop-saturate": [{
|
|
2408
|
-
"backdrop-saturate": [
|
|
2127
|
+
"backdrop-saturate": [m, n, s]
|
|
2409
2128
|
}],
|
|
2410
2129
|
/**
|
|
2411
2130
|
* Backdrop Sepia
|
|
2412
2131
|
* @see https://tailwindcss.com/docs/backdrop-sepia
|
|
2413
2132
|
*/
|
|
2414
2133
|
"backdrop-sepia": [{
|
|
2415
|
-
"backdrop-sepia": ["",
|
|
2134
|
+
"backdrop-sepia": ["", m, n, s]
|
|
2416
2135
|
}],
|
|
2417
2136
|
// --------------
|
|
2418
2137
|
// --- Tables ---
|
|
@@ -2429,21 +2148,21 @@ const R = (e) => {
|
|
|
2429
2148
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2430
2149
|
*/
|
|
2431
2150
|
"border-spacing": [{
|
|
2432
|
-
"border-spacing":
|
|
2151
|
+
"border-spacing": d()
|
|
2433
2152
|
}],
|
|
2434
2153
|
/**
|
|
2435
2154
|
* Border Spacing X
|
|
2436
2155
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2437
2156
|
*/
|
|
2438
2157
|
"border-spacing-x": [{
|
|
2439
|
-
"border-spacing-x":
|
|
2158
|
+
"border-spacing-x": d()
|
|
2440
2159
|
}],
|
|
2441
2160
|
/**
|
|
2442
2161
|
* Border Spacing Y
|
|
2443
2162
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2444
2163
|
*/
|
|
2445
2164
|
"border-spacing-y": [{
|
|
2446
|
-
"border-spacing-y":
|
|
2165
|
+
"border-spacing-y": d()
|
|
2447
2166
|
}],
|
|
2448
2167
|
/**
|
|
2449
2168
|
* Table Layout
|
|
@@ -2467,7 +2186,7 @@ const R = (e) => {
|
|
|
2467
2186
|
* @see https://tailwindcss.com/docs/transition-property
|
|
2468
2187
|
*/
|
|
2469
2188
|
transition: [{
|
|
2470
|
-
transition: ["", "all", "colors", "opacity", "shadow", "transform", "none",
|
|
2189
|
+
transition: ["", "all", "colors", "opacity", "shadow", "transform", "none", n, s]
|
|
2471
2190
|
}],
|
|
2472
2191
|
/**
|
|
2473
2192
|
* Transition Behavior
|
|
@@ -2481,28 +2200,28 @@ const R = (e) => {
|
|
|
2481
2200
|
* @see https://tailwindcss.com/docs/transition-duration
|
|
2482
2201
|
*/
|
|
2483
2202
|
duration: [{
|
|
2484
|
-
duration: [
|
|
2203
|
+
duration: [m, "initial", n, s]
|
|
2485
2204
|
}],
|
|
2486
2205
|
/**
|
|
2487
2206
|
* Transition Timing Function
|
|
2488
2207
|
* @see https://tailwindcss.com/docs/transition-timing-function
|
|
2489
2208
|
*/
|
|
2490
2209
|
ease: [{
|
|
2491
|
-
ease: ["linear", "initial",
|
|
2210
|
+
ease: ["linear", "initial", R, n, s]
|
|
2492
2211
|
}],
|
|
2493
2212
|
/**
|
|
2494
2213
|
* Transition Delay
|
|
2495
2214
|
* @see https://tailwindcss.com/docs/transition-delay
|
|
2496
2215
|
*/
|
|
2497
2216
|
delay: [{
|
|
2498
|
-
delay: [
|
|
2217
|
+
delay: [m, n, s]
|
|
2499
2218
|
}],
|
|
2500
2219
|
/**
|
|
2501
2220
|
* Animation
|
|
2502
2221
|
* @see https://tailwindcss.com/docs/animation
|
|
2503
2222
|
*/
|
|
2504
2223
|
animate: [{
|
|
2505
|
-
animate: ["none",
|
|
2224
|
+
animate: ["none", $, n, s]
|
|
2506
2225
|
}],
|
|
2507
2226
|
// ------------------
|
|
2508
2227
|
// --- Transforms ---
|
|
@@ -2519,70 +2238,70 @@ const R = (e) => {
|
|
|
2519
2238
|
* @see https://tailwindcss.com/docs/perspective
|
|
2520
2239
|
*/
|
|
2521
2240
|
perspective: [{
|
|
2522
|
-
perspective: [
|
|
2241
|
+
perspective: [k, n, s]
|
|
2523
2242
|
}],
|
|
2524
2243
|
/**
|
|
2525
2244
|
* Perspective Origin
|
|
2526
2245
|
* @see https://tailwindcss.com/docs/perspective-origin
|
|
2527
2246
|
*/
|
|
2528
2247
|
"perspective-origin": [{
|
|
2529
|
-
"perspective-origin":
|
|
2248
|
+
"perspective-origin": E()
|
|
2530
2249
|
}],
|
|
2531
2250
|
/**
|
|
2532
2251
|
* Rotate
|
|
2533
2252
|
* @see https://tailwindcss.com/docs/rotate
|
|
2534
2253
|
*/
|
|
2535
2254
|
rotate: [{
|
|
2536
|
-
rotate:
|
|
2255
|
+
rotate: H()
|
|
2537
2256
|
}],
|
|
2538
2257
|
/**
|
|
2539
2258
|
* Rotate X
|
|
2540
2259
|
* @see https://tailwindcss.com/docs/rotate
|
|
2541
2260
|
*/
|
|
2542
2261
|
"rotate-x": [{
|
|
2543
|
-
"rotate-x":
|
|
2262
|
+
"rotate-x": H()
|
|
2544
2263
|
}],
|
|
2545
2264
|
/**
|
|
2546
2265
|
* Rotate Y
|
|
2547
2266
|
* @see https://tailwindcss.com/docs/rotate
|
|
2548
2267
|
*/
|
|
2549
2268
|
"rotate-y": [{
|
|
2550
|
-
"rotate-y":
|
|
2269
|
+
"rotate-y": H()
|
|
2551
2270
|
}],
|
|
2552
2271
|
/**
|
|
2553
2272
|
* Rotate Z
|
|
2554
2273
|
* @see https://tailwindcss.com/docs/rotate
|
|
2555
2274
|
*/
|
|
2556
2275
|
"rotate-z": [{
|
|
2557
|
-
"rotate-z":
|
|
2276
|
+
"rotate-z": H()
|
|
2558
2277
|
}],
|
|
2559
2278
|
/**
|
|
2560
2279
|
* Scale
|
|
2561
2280
|
* @see https://tailwindcss.com/docs/scale
|
|
2562
2281
|
*/
|
|
2563
2282
|
scale: [{
|
|
2564
|
-
scale:
|
|
2283
|
+
scale: J()
|
|
2565
2284
|
}],
|
|
2566
2285
|
/**
|
|
2567
2286
|
* Scale X
|
|
2568
2287
|
* @see https://tailwindcss.com/docs/scale
|
|
2569
2288
|
*/
|
|
2570
2289
|
"scale-x": [{
|
|
2571
|
-
"scale-x":
|
|
2290
|
+
"scale-x": J()
|
|
2572
2291
|
}],
|
|
2573
2292
|
/**
|
|
2574
2293
|
* Scale Y
|
|
2575
2294
|
* @see https://tailwindcss.com/docs/scale
|
|
2576
2295
|
*/
|
|
2577
2296
|
"scale-y": [{
|
|
2578
|
-
"scale-y":
|
|
2297
|
+
"scale-y": J()
|
|
2579
2298
|
}],
|
|
2580
2299
|
/**
|
|
2581
2300
|
* Scale Z
|
|
2582
2301
|
* @see https://tailwindcss.com/docs/scale
|
|
2583
2302
|
*/
|
|
2584
2303
|
"scale-z": [{
|
|
2585
|
-
"scale-z":
|
|
2304
|
+
"scale-z": J()
|
|
2586
2305
|
}],
|
|
2587
2306
|
/**
|
|
2588
2307
|
* Scale 3D
|
|
@@ -2594,35 +2313,35 @@ const R = (e) => {
|
|
|
2594
2313
|
* @see https://tailwindcss.com/docs/skew
|
|
2595
2314
|
*/
|
|
2596
2315
|
skew: [{
|
|
2597
|
-
skew:
|
|
2316
|
+
skew: Z()
|
|
2598
2317
|
}],
|
|
2599
2318
|
/**
|
|
2600
2319
|
* Skew X
|
|
2601
2320
|
* @see https://tailwindcss.com/docs/skew
|
|
2602
2321
|
*/
|
|
2603
2322
|
"skew-x": [{
|
|
2604
|
-
"skew-x":
|
|
2323
|
+
"skew-x": Z()
|
|
2605
2324
|
}],
|
|
2606
2325
|
/**
|
|
2607
2326
|
* Skew Y
|
|
2608
2327
|
* @see https://tailwindcss.com/docs/skew
|
|
2609
2328
|
*/
|
|
2610
2329
|
"skew-y": [{
|
|
2611
|
-
"skew-y":
|
|
2330
|
+
"skew-y": Z()
|
|
2612
2331
|
}],
|
|
2613
2332
|
/**
|
|
2614
2333
|
* Transform
|
|
2615
2334
|
* @see https://tailwindcss.com/docs/transform
|
|
2616
2335
|
*/
|
|
2617
2336
|
transform: [{
|
|
2618
|
-
transform: [
|
|
2337
|
+
transform: [n, s, "", "none", "gpu", "cpu"]
|
|
2619
2338
|
}],
|
|
2620
2339
|
/**
|
|
2621
2340
|
* Transform Origin
|
|
2622
2341
|
* @see https://tailwindcss.com/docs/transform-origin
|
|
2623
2342
|
*/
|
|
2624
2343
|
"transform-origin": [{
|
|
2625
|
-
origin:
|
|
2344
|
+
origin: E()
|
|
2626
2345
|
}],
|
|
2627
2346
|
/**
|
|
2628
2347
|
* Transform Style
|
|
@@ -2636,28 +2355,28 @@ const R = (e) => {
|
|
|
2636
2355
|
* @see https://tailwindcss.com/docs/translate
|
|
2637
2356
|
*/
|
|
2638
2357
|
translate: [{
|
|
2639
|
-
translate:
|
|
2358
|
+
translate: K()
|
|
2640
2359
|
}],
|
|
2641
2360
|
/**
|
|
2642
2361
|
* Translate X
|
|
2643
2362
|
* @see https://tailwindcss.com/docs/translate
|
|
2644
2363
|
*/
|
|
2645
2364
|
"translate-x": [{
|
|
2646
|
-
"translate-x":
|
|
2365
|
+
"translate-x": K()
|
|
2647
2366
|
}],
|
|
2648
2367
|
/**
|
|
2649
2368
|
* Translate Y
|
|
2650
2369
|
* @see https://tailwindcss.com/docs/translate
|
|
2651
2370
|
*/
|
|
2652
2371
|
"translate-y": [{
|
|
2653
|
-
"translate-y":
|
|
2372
|
+
"translate-y": K()
|
|
2654
2373
|
}],
|
|
2655
2374
|
/**
|
|
2656
2375
|
* Translate Z
|
|
2657
2376
|
* @see https://tailwindcss.com/docs/translate
|
|
2658
2377
|
*/
|
|
2659
2378
|
"translate-z": [{
|
|
2660
|
-
"translate-z":
|
|
2379
|
+
"translate-z": K()
|
|
2661
2380
|
}],
|
|
2662
2381
|
/**
|
|
2663
2382
|
* Translate None
|
|
@@ -2672,7 +2391,7 @@ const R = (e) => {
|
|
|
2672
2391
|
* @see https://tailwindcss.com/docs/accent-color
|
|
2673
2392
|
*/
|
|
2674
2393
|
accent: [{
|
|
2675
|
-
accent:
|
|
2394
|
+
accent: i()
|
|
2676
2395
|
}],
|
|
2677
2396
|
/**
|
|
2678
2397
|
* Appearance
|
|
@@ -2686,7 +2405,7 @@ const R = (e) => {
|
|
|
2686
2405
|
* @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
|
|
2687
2406
|
*/
|
|
2688
2407
|
"caret-color": [{
|
|
2689
|
-
caret:
|
|
2408
|
+
caret: i()
|
|
2690
2409
|
}],
|
|
2691
2410
|
/**
|
|
2692
2411
|
* Color Scheme
|
|
@@ -2700,7 +2419,7 @@ const R = (e) => {
|
|
|
2700
2419
|
* @see https://tailwindcss.com/docs/cursor
|
|
2701
2420
|
*/
|
|
2702
2421
|
cursor: [{
|
|
2703
|
-
cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out",
|
|
2422
|
+
cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", n, s]
|
|
2704
2423
|
}],
|
|
2705
2424
|
/**
|
|
2706
2425
|
* Field Sizing
|
|
@@ -2735,126 +2454,126 @@ const R = (e) => {
|
|
|
2735
2454
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2736
2455
|
*/
|
|
2737
2456
|
"scroll-m": [{
|
|
2738
|
-
"scroll-m":
|
|
2457
|
+
"scroll-m": d()
|
|
2739
2458
|
}],
|
|
2740
2459
|
/**
|
|
2741
2460
|
* Scroll Margin X
|
|
2742
2461
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2743
2462
|
*/
|
|
2744
2463
|
"scroll-mx": [{
|
|
2745
|
-
"scroll-mx":
|
|
2464
|
+
"scroll-mx": d()
|
|
2746
2465
|
}],
|
|
2747
2466
|
/**
|
|
2748
2467
|
* Scroll Margin Y
|
|
2749
2468
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2750
2469
|
*/
|
|
2751
2470
|
"scroll-my": [{
|
|
2752
|
-
"scroll-my":
|
|
2471
|
+
"scroll-my": d()
|
|
2753
2472
|
}],
|
|
2754
2473
|
/**
|
|
2755
2474
|
* Scroll Margin Start
|
|
2756
2475
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2757
2476
|
*/
|
|
2758
2477
|
"scroll-ms": [{
|
|
2759
|
-
"scroll-ms":
|
|
2478
|
+
"scroll-ms": d()
|
|
2760
2479
|
}],
|
|
2761
2480
|
/**
|
|
2762
2481
|
* Scroll Margin End
|
|
2763
2482
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2764
2483
|
*/
|
|
2765
2484
|
"scroll-me": [{
|
|
2766
|
-
"scroll-me":
|
|
2485
|
+
"scroll-me": d()
|
|
2767
2486
|
}],
|
|
2768
2487
|
/**
|
|
2769
2488
|
* Scroll Margin Top
|
|
2770
2489
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2771
2490
|
*/
|
|
2772
2491
|
"scroll-mt": [{
|
|
2773
|
-
"scroll-mt":
|
|
2492
|
+
"scroll-mt": d()
|
|
2774
2493
|
}],
|
|
2775
2494
|
/**
|
|
2776
2495
|
* Scroll Margin Right
|
|
2777
2496
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2778
2497
|
*/
|
|
2779
2498
|
"scroll-mr": [{
|
|
2780
|
-
"scroll-mr":
|
|
2499
|
+
"scroll-mr": d()
|
|
2781
2500
|
}],
|
|
2782
2501
|
/**
|
|
2783
2502
|
* Scroll Margin Bottom
|
|
2784
2503
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2785
2504
|
*/
|
|
2786
2505
|
"scroll-mb": [{
|
|
2787
|
-
"scroll-mb":
|
|
2506
|
+
"scroll-mb": d()
|
|
2788
2507
|
}],
|
|
2789
2508
|
/**
|
|
2790
2509
|
* Scroll Margin Left
|
|
2791
2510
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2792
2511
|
*/
|
|
2793
2512
|
"scroll-ml": [{
|
|
2794
|
-
"scroll-ml":
|
|
2513
|
+
"scroll-ml": d()
|
|
2795
2514
|
}],
|
|
2796
2515
|
/**
|
|
2797
2516
|
* Scroll Padding
|
|
2798
2517
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2799
2518
|
*/
|
|
2800
2519
|
"scroll-p": [{
|
|
2801
|
-
"scroll-p":
|
|
2520
|
+
"scroll-p": d()
|
|
2802
2521
|
}],
|
|
2803
2522
|
/**
|
|
2804
2523
|
* Scroll Padding X
|
|
2805
2524
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2806
2525
|
*/
|
|
2807
2526
|
"scroll-px": [{
|
|
2808
|
-
"scroll-px":
|
|
2527
|
+
"scroll-px": d()
|
|
2809
2528
|
}],
|
|
2810
2529
|
/**
|
|
2811
2530
|
* Scroll Padding Y
|
|
2812
2531
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2813
2532
|
*/
|
|
2814
2533
|
"scroll-py": [{
|
|
2815
|
-
"scroll-py":
|
|
2534
|
+
"scroll-py": d()
|
|
2816
2535
|
}],
|
|
2817
2536
|
/**
|
|
2818
2537
|
* Scroll Padding Start
|
|
2819
2538
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2820
2539
|
*/
|
|
2821
2540
|
"scroll-ps": [{
|
|
2822
|
-
"scroll-ps":
|
|
2541
|
+
"scroll-ps": d()
|
|
2823
2542
|
}],
|
|
2824
2543
|
/**
|
|
2825
2544
|
* Scroll Padding End
|
|
2826
2545
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2827
2546
|
*/
|
|
2828
2547
|
"scroll-pe": [{
|
|
2829
|
-
"scroll-pe":
|
|
2548
|
+
"scroll-pe": d()
|
|
2830
2549
|
}],
|
|
2831
2550
|
/**
|
|
2832
2551
|
* Scroll Padding Top
|
|
2833
2552
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2834
2553
|
*/
|
|
2835
2554
|
"scroll-pt": [{
|
|
2836
|
-
"scroll-pt":
|
|
2555
|
+
"scroll-pt": d()
|
|
2837
2556
|
}],
|
|
2838
2557
|
/**
|
|
2839
2558
|
* Scroll Padding Right
|
|
2840
2559
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2841
2560
|
*/
|
|
2842
2561
|
"scroll-pr": [{
|
|
2843
|
-
"scroll-pr":
|
|
2562
|
+
"scroll-pr": d()
|
|
2844
2563
|
}],
|
|
2845
2564
|
/**
|
|
2846
2565
|
* Scroll Padding Bottom
|
|
2847
2566
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2848
2567
|
*/
|
|
2849
2568
|
"scroll-pb": [{
|
|
2850
|
-
"scroll-pb":
|
|
2569
|
+
"scroll-pb": d()
|
|
2851
2570
|
}],
|
|
2852
2571
|
/**
|
|
2853
2572
|
* Scroll Padding Left
|
|
2854
2573
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2855
2574
|
*/
|
|
2856
2575
|
"scroll-pl": [{
|
|
2857
|
-
"scroll-pl":
|
|
2576
|
+
"scroll-pl": d()
|
|
2858
2577
|
}],
|
|
2859
2578
|
/**
|
|
2860
2579
|
* Scroll Snap Align
|
|
@@ -2922,7 +2641,7 @@ const R = (e) => {
|
|
|
2922
2641
|
* @see https://tailwindcss.com/docs/will-change
|
|
2923
2642
|
*/
|
|
2924
2643
|
"will-change": [{
|
|
2925
|
-
"will-change": ["auto", "scroll", "contents", "transform",
|
|
2644
|
+
"will-change": ["auto", "scroll", "contents", "transform", n, s]
|
|
2926
2645
|
}],
|
|
2927
2646
|
// -----------
|
|
2928
2647
|
// --- SVG ---
|
|
@@ -2932,21 +2651,21 @@ const R = (e) => {
|
|
|
2932
2651
|
* @see https://tailwindcss.com/docs/fill
|
|
2933
2652
|
*/
|
|
2934
2653
|
fill: [{
|
|
2935
|
-
fill: ["none", ...
|
|
2654
|
+
fill: ["none", ...i()]
|
|
2936
2655
|
}],
|
|
2937
2656
|
/**
|
|
2938
2657
|
* Stroke Width
|
|
2939
2658
|
* @see https://tailwindcss.com/docs/stroke-width
|
|
2940
2659
|
*/
|
|
2941
2660
|
"stroke-w": [{
|
|
2942
|
-
stroke: [
|
|
2661
|
+
stroke: [m, W, T, oe]
|
|
2943
2662
|
}],
|
|
2944
2663
|
/**
|
|
2945
2664
|
* Stroke
|
|
2946
2665
|
* @see https://tailwindcss.com/docs/stroke
|
|
2947
2666
|
*/
|
|
2948
2667
|
stroke: [{
|
|
2949
|
-
stroke: ["none", ...
|
|
2668
|
+
stroke: ["none", ...i()]
|
|
2950
2669
|
}],
|
|
2951
2670
|
// ---------------------
|
|
2952
2671
|
// --- Accessibility ---
|
|
@@ -3014,42 +2733,41 @@ const R = (e) => {
|
|
|
3014
2733
|
},
|
|
3015
2734
|
orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
|
|
3016
2735
|
};
|
|
3017
|
-
},
|
|
3018
|
-
function
|
|
3019
|
-
return
|
|
2736
|
+
}, uo = /* @__PURE__ */ qe(mo);
|
|
2737
|
+
function po(...e) {
|
|
2738
|
+
return uo(ke(e));
|
|
3020
2739
|
}
|
|
3021
|
-
const
|
|
3022
|
-
var
|
|
3023
|
-
if (
|
|
3024
|
-
const { variants:
|
|
3025
|
-
const
|
|
3026
|
-
if (
|
|
3027
|
-
const
|
|
3028
|
-
return
|
|
3029
|
-
}),
|
|
3030
|
-
let [
|
|
3031
|
-
return
|
|
3032
|
-
}, {}),
|
|
3033
|
-
let { class:
|
|
3034
|
-
return Object.entries(
|
|
3035
|
-
let [
|
|
3036
|
-
return Array.isArray(
|
|
3037
|
-
...
|
|
3038
|
-
...
|
|
3039
|
-
}[
|
|
3040
|
-
...
|
|
3041
|
-
...
|
|
3042
|
-
}[
|
|
2740
|
+
const xe = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, ye = ke, fo = (e, t) => (o) => {
|
|
2741
|
+
var r;
|
|
2742
|
+
if (t?.variants == null) return ye(e, o?.class, o?.className);
|
|
2743
|
+
const { variants: a, defaultVariants: c } = t, l = Object.keys(a).map((f) => {
|
|
2744
|
+
const b = o?.[f], y = c?.[f];
|
|
2745
|
+
if (b === null) return null;
|
|
2746
|
+
const z = xe(b) || xe(y);
|
|
2747
|
+
return a[f][z];
|
|
2748
|
+
}), p = o && Object.entries(o).reduce((f, b) => {
|
|
2749
|
+
let [y, z] = b;
|
|
2750
|
+
return z === void 0 || (f[y] = z), f;
|
|
2751
|
+
}, {}), u = t == null || (r = t.compoundVariants) === null || r === void 0 ? void 0 : r.reduce((f, b) => {
|
|
2752
|
+
let { class: y, className: z, ...I } = b;
|
|
2753
|
+
return Object.entries(I).every((w) => {
|
|
2754
|
+
let [k, C] = w;
|
|
2755
|
+
return Array.isArray(C) ? C.includes({
|
|
2756
|
+
...c,
|
|
2757
|
+
...p
|
|
2758
|
+
}[k]) : {
|
|
2759
|
+
...c,
|
|
2760
|
+
...p
|
|
2761
|
+
}[k] === C;
|
|
3043
2762
|
}) ? [
|
|
3044
|
-
...
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
] :
|
|
2763
|
+
...f,
|
|
2764
|
+
y,
|
|
2765
|
+
z
|
|
2766
|
+
] : f;
|
|
3048
2767
|
}, []);
|
|
3049
|
-
return
|
|
2768
|
+
return ye(e, l, u, o?.class, o?.className);
|
|
3050
2769
|
};
|
|
3051
2770
|
export {
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
Rr as j
|
|
2771
|
+
po as a,
|
|
2772
|
+
fo as c
|
|
3055
2773
|
};
|