@opentiny/vue-runtime 3.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2918 @@
1
+ import * as f from "vue";
2
+ import { t as ue } from "@opentiny/vue-locale";
3
+ function X(n, e) {
4
+ (e == null || e > n.length) && (e = n.length);
5
+ for (var r = 0, t = Array(e); r < e; r++)
6
+ t[r] = n[r];
7
+ return t;
8
+ }
9
+ function Se(n) {
10
+ if (Array.isArray(n))
11
+ return X(n);
12
+ }
13
+ function be(n, e, r) {
14
+ return (e = Te(e)) in n ? Object.defineProperty(n, e, {
15
+ value: r,
16
+ enumerable: !0,
17
+ configurable: !0,
18
+ writable: !0
19
+ }) : n[e] = r, n;
20
+ }
21
+ function Ee(n) {
22
+ if (typeof Symbol < "u" && n[Symbol.iterator] != null || n["@@iterator"] != null)
23
+ return Array.from(n);
24
+ }
25
+ function Me() {
26
+ throw new TypeError(`Invalid attempt to spread non-iterable instance.
27
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
28
+ }
29
+ function ce(n, e) {
30
+ var r = Object.keys(n);
31
+ if (Object.getOwnPropertySymbols) {
32
+ var t = Object.getOwnPropertySymbols(n);
33
+ e && (t = t.filter(function(i) {
34
+ return Object.getOwnPropertyDescriptor(n, i).enumerable;
35
+ })), r.push.apply(r, t);
36
+ }
37
+ return r;
38
+ }
39
+ function N(n) {
40
+ for (var e = 1; e < arguments.length; e++) {
41
+ var r = arguments[e] != null ? arguments[e] : {};
42
+ e % 2 ? ce(Object(r), !0).forEach(function(t) {
43
+ be(n, t, r[t]);
44
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(n, Object.getOwnPropertyDescriptors(r)) : ce(Object(r)).forEach(function(t) {
45
+ Object.defineProperty(n, t, Object.getOwnPropertyDescriptor(r, t));
46
+ });
47
+ }
48
+ return n;
49
+ }
50
+ function fe(n) {
51
+ return Se(n) || Ee(n) || Re(n) || Me();
52
+ }
53
+ function ke(n, e) {
54
+ if (typeof n != "object" || !n)
55
+ return n;
56
+ var r = n[Symbol.toPrimitive];
57
+ if (r !== void 0) {
58
+ var t = r.call(n, e || "default");
59
+ if (typeof t != "object")
60
+ return t;
61
+ throw new TypeError("@@toPrimitive must return a primitive value.");
62
+ }
63
+ return (e === "string" ? String : Number)(n);
64
+ }
65
+ function Te(n) {
66
+ var e = ke(n, "string");
67
+ return typeof e == "symbol" ? e : e + "";
68
+ }
69
+ function S(n) {
70
+ "@babel/helpers - typeof";
71
+ return S = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
72
+ return typeof e;
73
+ } : function(e) {
74
+ return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
75
+ }, S(n);
76
+ }
77
+ function Re(n, e) {
78
+ if (n) {
79
+ if (typeof n == "string")
80
+ return X(n, e);
81
+ var r = {}.toString.call(n).slice(8, -1);
82
+ return r === "Object" && n.constructor && (r = n.constructor.name), r === "Map" || r === "Set" ? Array.from(n) : r === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r) ? X(n, e) : void 0;
83
+ }
84
+ }
85
+ function te(n) {
86
+ var e = /* @__PURE__ */ Object.create(null);
87
+ return function(t) {
88
+ var i = e[t];
89
+ return i || (e[t] = n(t));
90
+ };
91
+ }
92
+ var Ge = /-(\w)/g, ze = te(function(n) {
93
+ return n.replace(Ge, function(e, r) {
94
+ return r ? r.toUpperCase() : "";
95
+ });
96
+ }), Ve = te(function(n) {
97
+ return n.charAt(0).toUpperCase() + n.slice(1);
98
+ }), Le = /\B([A-Z])/g, We = te(function(n) {
99
+ return n.replace(Le, "-$1").toLowerCase();
100
+ }), ne = function() {
101
+ var e = {}, r = function(o, s) {
102
+ var a = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : !1;
103
+ if (o && typeof o == "string" && typeof s == "function") {
104
+ var l = e[o] || [];
105
+ e[o] = l, l.push(s), s.once = a;
106
+ }
107
+ }, t = {
108
+ emit: function(o) {
109
+ var s = arguments, a = e[o];
110
+ a && (a.forEach(function(l) {
111
+ return l.apply(null, [].slice.call(s, 1));
112
+ }), e[o] = a.filter(function(l) {
113
+ return !l.once;
114
+ }));
115
+ },
116
+ on: r,
117
+ once: function(o, s) {
118
+ r(o, s, !0);
119
+ },
120
+ off: function(o, s) {
121
+ if (o && typeof o == "string") {
122
+ var a = e[o];
123
+ typeof s == "function" ? e[o] = a.filter(function(l) {
124
+ return l !== s;
125
+ }) : delete e[o];
126
+ } else
127
+ e = {};
128
+ }
129
+ };
130
+ return t;
131
+ }, Ne = function(e) {
132
+ var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, t = {};
133
+ for (var i in e)
134
+ i.indexOf("_") !== 0 && (t[i] = e[i]);
135
+ for (var o in r)
136
+ t[o] = r[o];
137
+ return t;
138
+ }, Be = function(e, r) {
139
+ if (!(!e || !r)) {
140
+ var t = [];
141
+ typeof e == "string" ? t.push(e) : Array.isArray(e) && (t = e);
142
+ var i = [];
143
+ typeof r == "string" ? i.push(r) : Array.isArray(r) && (i = r);
144
+ var o = [];
145
+ return i.forEach(function(s) {
146
+ return t.forEach(function(a) {
147
+ return o.push("".concat(s, ":").concat(a, "-").concat(s));
148
+ });
149
+ }), t.concat(o).join(" ");
150
+ }
151
+ }, Fe = function() {
152
+ var e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, r = arguments.length > 1 ? arguments[1] : void 0;
153
+ if (S(r) === "object") {
154
+ var t = Array.isArray(r) ? r : Object.keys(r).filter(function(o) {
155
+ return r[o];
156
+ }), i = "";
157
+ return t.forEach(function(o) {
158
+ e[o] && (i += "".concat(e[o], " "));
159
+ }), i;
160
+ } else
161
+ return e[r] || "";
162
+ }, Xr = f.Teleport, ye = f.defineAsyncComponent, Ue = f.markRaw, he = function(e) {
163
+ var r = e.view, t = r === void 0 ? void 0 : r, i = e.component, o = i === void 0 ? void 0 : i, s = e.props, a = e.context, l = a.attrs, u = a.slots, c = e.extend, d = c === void 0 ? {} : c;
164
+ return function() {
165
+ return f.h(t && t.value || o, N(N(N({}, s), l), d), u);
166
+ };
167
+ }, oe = function(e) {
168
+ var r = f.getCurrentInstance();
169
+ return e && we(r), r == null ? void 0 : r.appContext.config.globalProperties;
170
+ }, Ke = function() {
171
+ var e, r = f.getCurrentInstance(), t = r == null || (e = r.type) === null || e === void 0 ? void 0 : e.name;
172
+ if (!t) {
173
+ var i, o;
174
+ t = r == null || (i = r.parent) === null || i === void 0 || (o = i.type) === null || o === void 0 ? void 0 : o.name;
175
+ }
176
+ return t || "";
177
+ }, He = function() {
178
+ var e;
179
+ return ((e = f.getCurrentInstance()) === null || e === void 0 ? void 0 : e.appContext) || {
180
+ component: function() {
181
+ }
182
+ };
183
+ }, Ze = function() {
184
+ var e = f.getCurrentInstance();
185
+ return (e == null ? void 0 : e.appContext.config.globalProperties) || {};
186
+ }, xe = function() {
187
+ var e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : f.getCurrentInstance(), r = e == null ? void 0 : e.appContext.config.globalProperties.$router, t = r && r.currentRoute.value;
188
+ return {
189
+ route: t,
190
+ router: r
191
+ };
192
+ }, we = function(e) {
193
+ var r = ne();
194
+ typeof e.$emitter > "u" && Object.defineProperty(e, "$emitter", {
195
+ get: function() {
196
+ return r;
197
+ }
198
+ });
199
+ }, qe = function(e) {
200
+ var r = function(i, o, s, a) {
201
+ var l = i.subTree && i.subTree.children || i.children;
202
+ Array.isArray(l) && l.forEach(function(u) {
203
+ var c = u.type && u.type.componentName, d = u.component;
204
+ c === o ? (d.emit(s, a), d.$emitter && d.$emitter.emit(s, a)) : r(u, o, s, a);
205
+ });
206
+ };
207
+ return {
208
+ dispatch: function(i, o, s) {
209
+ for (var a = e.parent || e.root, l = a.type && a.type.componentName; a && (!l || l !== i); )
210
+ a = a.parent, a && (l = a.type && a.type.componentName);
211
+ if (a) {
212
+ var u, c;
213
+ (u = a).emit.apply(u, fe([o].concat(s))), a.$emitter && (c = a.$emitter).emit.apply(c, fe([o].concat(s)));
214
+ }
215
+ },
216
+ broadcast: function(i, o, s) {
217
+ r(e, i, o, s);
218
+ }
219
+ };
220
+ }, H = function(e) {
221
+ if (e && e.parent)
222
+ return e.parent.type.name === "AsyncComponentWrapper" && e.parent.parent ? e.parent.parent : e.parent;
223
+ }, Qe = function(e) {
224
+ return function(r) {
225
+ var t = H(e), i = 0, o = function(a) {
226
+ return {
227
+ level: i,
228
+ vm: M({}, a),
229
+ el: a.vnode.el,
230
+ options: a.type
231
+ };
232
+ };
233
+ if (typeof r != "function")
234
+ return t ? o(t) : {};
235
+ for (i++; t && !r(o(t)); )
236
+ t = H(t), i++;
237
+ };
238
+ }, Ye = function(e) {
239
+ return function(r) {
240
+ if (typeof r != "function")
241
+ return Ce(e.subTree);
242
+ var t = 1, i = function o(s) {
243
+ if (s) {
244
+ var a = s.children || s.dynamicChildren, l = t++;
245
+ if (Array.isArray(a)) {
246
+ if (a.some(function(u) {
247
+ return u.component && r({
248
+ level: l,
249
+ vm: M({}, u.component),
250
+ el: u.el,
251
+ options: u.type,
252
+ isLevel1: !0
253
+ });
254
+ }))
255
+ return;
256
+ a.forEach(function(u) {
257
+ return o(u);
258
+ });
259
+ }
260
+ }
261
+ };
262
+ i(e.subTree);
263
+ };
264
+ }, Je = /^on[A-Z]/, Xe = function(e) {
265
+ var r = {}, t = {};
266
+ for (var i in e) {
267
+ var o = e[i];
268
+ if (Je.test(i) && typeof o == "function") {
269
+ t[We(i.substr(2))] = o;
270
+ continue;
271
+ }
272
+ r[i] = o;
273
+ }
274
+ return {
275
+ $attrs: r,
276
+ $listeners: t
277
+ };
278
+ }, Ce = function(e) {
279
+ var r = [];
280
+ if (r.refs = {}, e) {
281
+ var t = e.dynamicChildren || e.children;
282
+ Array.isArray(t) ? t.forEach(function(i) {
283
+ if (i.component) {
284
+ var o = M({}, i.component);
285
+ r.push(o), i.props.ref && (r.refs[i.props.ref] = o);
286
+ }
287
+ }) : e.component && r.push(M({}, e.component));
288
+ }
289
+ return r;
290
+ }, Y = function(e, r, t, i) {
291
+ var o = function(l) {
292
+ if (typeof i == "function" && i(l))
293
+ return 1;
294
+ Object.defineProperty(e, l, {
295
+ configurable: !0,
296
+ enumerable: !0,
297
+ get: function() {
298
+ return r[t][l];
299
+ },
300
+ set: function(c) {
301
+ return r[t][l] = c;
302
+ }
303
+ });
304
+ };
305
+ for (var s in r[t])
306
+ o(s);
307
+ return e;
308
+ }, de = function(e) {
309
+ return e.indexOf("_") === 0;
310
+ }, Ae = function(e, r) {
311
+ return Y(e, r, "setupState", null), Y(e, r, "props", de), Y(e, r, "ctx", de), e;
312
+ }, M = function n(e, r) {
313
+ var t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : null, i = Xe(r.attrs), o = i.$attrs, s = i.$listeners, a = r.$emitter;
314
+ a || (we(r), a = r.$emitter);
315
+ var l = function() {
316
+ for (var d = arguments.length, v = new Array(d), b = 0; b < d; b++)
317
+ v[b] = arguments[b];
318
+ r.emit.apply(r, v), a.emit.apply(e, v);
319
+ }, u = function(d, v, b) {
320
+ return d[v] = b;
321
+ };
322
+ return t || Ae(e, r), Object.defineProperties(e, {
323
+ $attrs: {
324
+ get: function() {
325
+ return o;
326
+ }
327
+ },
328
+ $children: {
329
+ get: function() {
330
+ return Ce(r.subTree);
331
+ }
332
+ },
333
+ $constants: {
334
+ get: function() {
335
+ return r.props._constants;
336
+ }
337
+ },
338
+ $emit: {
339
+ get: function() {
340
+ return l;
341
+ }
342
+ },
343
+ $el: {
344
+ get: function() {
345
+ return r.vnode.el;
346
+ }
347
+ },
348
+ $listeners: {
349
+ get: function() {
350
+ return s;
351
+ }
352
+ },
353
+ $mode: {
354
+ get: function() {
355
+ return r._tiny_mode;
356
+ }
357
+ },
358
+ $nextTick: {
359
+ get: function() {
360
+ return f.nextTick;
361
+ }
362
+ },
363
+ $off: {
364
+ get: function() {
365
+ return a.off;
366
+ }
367
+ },
368
+ $on: {
369
+ get: function() {
370
+ return a.on;
371
+ }
372
+ },
373
+ $once: {
374
+ get: function() {
375
+ return a.once;
376
+ }
377
+ },
378
+ $options: {
379
+ get: function() {
380
+ return {
381
+ componentName: r.type.componentName
382
+ };
383
+ }
384
+ },
385
+ $parent: {
386
+ get: function() {
387
+ return r.parent && n({}, H(r));
388
+ }
389
+ },
390
+ $refs: {
391
+ get: function() {
392
+ return r.refs;
393
+ }
394
+ },
395
+ $renderless: {
396
+ get: function() {
397
+ return r.props.tiny_renderless;
398
+ }
399
+ },
400
+ $scopedSlots: {
401
+ get: function() {
402
+ return r.slots;
403
+ }
404
+ },
405
+ $set: {
406
+ get: function() {
407
+ return u;
408
+ }
409
+ },
410
+ $slots: {
411
+ get: function() {
412
+ return r.slots;
413
+ }
414
+ },
415
+ $template: {
416
+ get: function() {
417
+ return r.props.tiny_template;
418
+ }
419
+ }
420
+ }), e;
421
+ }, De = function(e, r) {
422
+ for (var t in e.refs)
423
+ Object.prototype.hasOwnProperty.call(e.refs, t) && (r[t] = e.refs[t]);
424
+ }, er = function(e, r) {
425
+ var t, i, o = f.getCurrentInstance(), s = o == null ? void 0 : o.appContext.config.globalProperties, a = xe(o), l = a.route, u = a.router, c = o == null || (t = o.proxy) === null || t === void 0 || (i = t.$root) === null || i === void 0 ? void 0 : i.$i18n, d = qe(o), v = d.dispatch, b = d.broadcast, y = Qe(o), x = Ye(o), p = M({}, o, e), j = e.emit, m = {}, C = typeof o.props.tiny_template > "u" && H(o), A = C ? M({}, C) : o.parent ? M({}, o.parent) : null, w = function(I) {
426
+ var z, V = I.name, R = I.value, F = C ? C.ctx : o == null || (z = o.parent) === null || z === void 0 ? void 0 : z.ctx;
427
+ F[V] = R, A[V] = R;
428
+ }, _ = function(I) {
429
+ Object.defineProperties(p, I), Object.defineProperties(o == null ? void 0 : o.ctx, I);
430
+ }, B = function(I) {
431
+ A && Object.defineProperties(A, I);
432
+ };
433
+ return f.onBeforeMount(function() {
434
+ return Ae(p, o);
435
+ }), f.onMounted(function() {
436
+ return De(o, m);
437
+ }), {
438
+ framework: "vue3",
439
+ vm: p,
440
+ emit: j,
441
+ emitter: ne,
442
+ route: l,
443
+ router: u,
444
+ dispatch: v,
445
+ broadcast: b,
446
+ parentHandler: y,
447
+ childrenHandler: x,
448
+ i18n: c,
449
+ refs: m,
450
+ slots: o == null ? void 0 : o.slots,
451
+ scopedSlots: o == null ? void 0 : o.slots,
452
+ attrs: e.attrs,
453
+ parent: A,
454
+ nextTick: f.nextTick,
455
+ constants: o == null ? void 0 : o.props._constants,
456
+ mode: r,
457
+ isPCMode: r === "pc",
458
+ isMobileMode: r === "mobile",
459
+ service: s == null ? void 0 : s.$service,
460
+ getService: function() {
461
+ return s == null ? void 0 : s.$getService(p);
462
+ },
463
+ setParentAttribute: w,
464
+ defineInstanceProperties: _,
465
+ defineParentInstanceProperties: B
466
+ };
467
+ }, J = function(e, r, t) {
468
+ if (typeof e[r] < "u") {
469
+ var i = e[r];
470
+ e[t] = function(o, s, a) {
471
+ a.context = s.instance, i(o, s, a);
472
+ }, delete e[r];
473
+ }
474
+ }, rr = function(e) {
475
+ for (var r in e) {
476
+ var t = e[r];
477
+ J(t, "bind", "beforeMount"), J(t, "update", "updated"), J(t, "unbind", "unmounted");
478
+ }
479
+ return e;
480
+ }, tr = function(e) {
481
+ return e;
482
+ }, nr = f.Text, or = f.Comment, ir = function(e) {
483
+ return !e || !e.type || [nr, or].includes(e.type);
484
+ }, ar = function(e) {
485
+ var r = {};
486
+ for (var t in e)
487
+ if (t === "class" || t === "style")
488
+ r[t] = e[t];
489
+ else if (t === "on" || t === "nativeOn") {
490
+ var i = e[t];
491
+ for (var o in i)
492
+ r["on".concat(Ve(ze(o)))] = i[o];
493
+ } else if (t === "attrs" || t === "props" || t === "domProps") {
494
+ var s = e[t];
495
+ for (var a in s)
496
+ r[a] = s[a];
497
+ } else
498
+ r[t] = e[t];
499
+ return r;
500
+ }, sr = function(e) {
501
+ var r = e, t = !1;
502
+ if (typeof e == "string" && typeof document < "u") {
503
+ var i = document.createElement(e), o = ["SVG", "CIRCLE", "PATH"];
504
+ i instanceof HTMLUnknownElement && !o.includes(i.nodeName) || e.includes("-") ? (e = e.toLowerCase(), t = !0, e === "transition" ? r = f.Transition : e === "transition-group" ? r = f.TransitionGroup : r = f.resolveComponent(e)) : r = e;
505
+ }
506
+ return {
507
+ type: r,
508
+ component: e,
509
+ customElement: t
510
+ };
511
+ }, lr = function(e, r, t) {
512
+ var i = {}, o = t, s = sr(e), a = s.customElement, l = s.type;
513
+ return e = s.component, r && S(r) === "object" && !Array.isArray(r) ? (i = ar(r), r.scopedSlots && (o = r.scopedSlots)) : (typeof r == "string" || Array.isArray(r)) && (t = r), (typeof t == "string" || Array.isArray(t)) && (o = typeof e != "string" || a ? function() {
514
+ return t;
515
+ } : t), f.h(l, i, o);
516
+ }, ur = function(e) {
517
+ return function(r) {
518
+ var t = r.component, i = r.propsData, o = r.el, s = Object.assign(t, {
519
+ provide: be({}, e.configKey, e.configInstance)
520
+ }), a = f.createVNode(s, i);
521
+ return f.render(a, o), M({}, a.component);
522
+ };
523
+ }, cr = f.defineComponent, Dr = !1, et = !0, fr = f.isVNode, rt = f.KeepAlive, $e = function(e) {
524
+ var r = [];
525
+ return Object.keys(e).forEach(function(t) {
526
+ return e[t] && r.push(t);
527
+ }), r.join(" ");
528
+ }, dr = function(e) {
529
+ var r = [];
530
+ return e.forEach(function(t) {
531
+ typeof t == "string" ? r.push(t) : S(t) === "object" && r.push($e(t));
532
+ }), r.join(" ");
533
+ }, pr = function(e) {
534
+ if (!e || Array.isArray(e) && !e.length)
535
+ return "";
536
+ var r = [];
537
+ return e.forEach(function(t) {
538
+ t && (typeof t == "string" ? r.push(t) : Array.isArray(t) ? r.push(dr(t)) : S(t) === "object" && r.push($e(t)));
539
+ }), r.join(" ");
540
+ };
541
+ function vr() {
542
+ for (var n = 0, e, r, t = ""; n < arguments.length; )
543
+ (e = arguments[n++]) && (r = je(e)) && (t && (t += " "), t += r);
544
+ return t;
545
+ }
546
+ function je(n) {
547
+ if (typeof n == "string")
548
+ return n;
549
+ for (var e, r = "", t = 0; t < n.length; t++)
550
+ n[t] && (e = je(n[t])) && (r && (r += " "), r += e);
551
+ return r;
552
+ }
553
+ function D() {
554
+ return D = Object.assign ? Object.assign.bind() : function(n) {
555
+ for (var e = 1; e < arguments.length; e++) {
556
+ var r = arguments[e];
557
+ for (var t in r)
558
+ Object.prototype.hasOwnProperty.call(r, t) && (n[t] = r[t]);
559
+ }
560
+ return n;
561
+ }, D.apply(this, arguments);
562
+ }
563
+ function gr(n) {
564
+ if (n < 1)
565
+ return {
566
+ get: function() {
567
+ },
568
+ set: function() {
569
+ }
570
+ };
571
+ var e = 0, r = /* @__PURE__ */ new Map(), t = /* @__PURE__ */ new Map();
572
+ function i(o, s) {
573
+ r.set(o, s), e++, e > n && (e = 0, t = r, r = /* @__PURE__ */ new Map());
574
+ }
575
+ return {
576
+ get: function(s) {
577
+ var a = r.get(s);
578
+ if (a !== void 0)
579
+ return a;
580
+ if ((a = t.get(s)) !== void 0)
581
+ return i(s, a), a;
582
+ },
583
+ set: function(s, a) {
584
+ r.has(s) ? r.set(s, a) : i(s, a);
585
+ }
586
+ };
587
+ }
588
+ var ie = "-";
589
+ function mr(n) {
590
+ var e = yr(n);
591
+ function r(i) {
592
+ var o = i.split(ie);
593
+ return o[0] === "" && o.length !== 1 && o.shift(), Ie(o, e) || br(i);
594
+ }
595
+ function t(i) {
596
+ return n.conflictingClassGroups[i] || [];
597
+ }
598
+ return {
599
+ getClassGroupId: r,
600
+ getConflictingClassGroupIds: t
601
+ };
602
+ }
603
+ function Ie(n, e) {
604
+ var r;
605
+ if (n.length === 0)
606
+ return e.classGroupId;
607
+ var t = n[0], i = e.nextPart.get(t), o = i ? Ie(n.slice(1), i) : void 0;
608
+ if (o)
609
+ return o;
610
+ if (e.validators.length !== 0) {
611
+ var s = n.join(ie);
612
+ return (r = e.validators.find(function(a) {
613
+ var l = a.validator;
614
+ return l(s);
615
+ })) == null ? void 0 : r.classGroupId;
616
+ }
617
+ }
618
+ var pe = /^\[(.+)\]$/;
619
+ function br(n) {
620
+ if (pe.test(n)) {
621
+ var e = pe.exec(n)[1], r = e == null ? void 0 : e.substring(0, e.indexOf(":"));
622
+ if (r)
623
+ return "arbitrary.." + r;
624
+ }
625
+ }
626
+ function yr(n) {
627
+ var e = n.theme, r = n.prefix, t = {
628
+ nextPart: /* @__PURE__ */ new Map(),
629
+ validators: []
630
+ }, i = xr(Object.entries(n.classGroups), r);
631
+ return i.forEach(function(o) {
632
+ var s = o[0], a = o[1];
633
+ ee(a, t, s, e);
634
+ }), t;
635
+ }
636
+ function ee(n, e, r, t) {
637
+ n.forEach(function(i) {
638
+ if (typeof i == "string") {
639
+ var o = i === "" ? e : ve(e, i);
640
+ o.classGroupId = r;
641
+ return;
642
+ }
643
+ if (typeof i == "function") {
644
+ if (hr(i)) {
645
+ ee(i(t), e, r, t);
646
+ return;
647
+ }
648
+ e.validators.push({
649
+ validator: i,
650
+ classGroupId: r
651
+ });
652
+ return;
653
+ }
654
+ Object.entries(i).forEach(function(s) {
655
+ var a = s[0], l = s[1];
656
+ ee(l, ve(e, a), r, t);
657
+ });
658
+ });
659
+ }
660
+ function ve(n, e) {
661
+ var r = n;
662
+ return e.split(ie).forEach(function(t) {
663
+ r.nextPart.has(t) || r.nextPart.set(t, {
664
+ nextPart: /* @__PURE__ */ new Map(),
665
+ validators: []
666
+ }), r = r.nextPart.get(t);
667
+ }), r;
668
+ }
669
+ function hr(n) {
670
+ return n.isThemeGetter;
671
+ }
672
+ function xr(n, e) {
673
+ return e ? n.map(function(r) {
674
+ var t = r[0], i = r[1], o = i.map(function(s) {
675
+ return typeof s == "string" ? e + s : S(s) === "object" ? Object.fromEntries(Object.entries(s).map(function(a) {
676
+ var l = a[0], u = a[1];
677
+ return [e + l, u];
678
+ })) : s;
679
+ });
680
+ return [t, o];
681
+ }) : n;
682
+ }
683
+ var Pe = "!";
684
+ function wr(n) {
685
+ var e = n.separator || ":";
686
+ return function(t) {
687
+ for (var i = 0, o = [], s = 0, a = 0; a < t.length; a++) {
688
+ var l = t[a];
689
+ i === 0 && l === e[0] && (e.length === 1 || t.slice(a, a + e.length) === e) && (o.push(t.slice(s, a)), s = a + e.length), l === "[" ? i++ : l === "]" && i--;
690
+ }
691
+ var u = o.length === 0 ? t : t.substring(s), c = u.startsWith(Pe), d = c ? u.substring(1) : u;
692
+ return {
693
+ modifiers: o,
694
+ hasImportantModifier: c,
695
+ baseClassName: d
696
+ };
697
+ };
698
+ }
699
+ function Cr(n) {
700
+ if (n.length <= 1)
701
+ return n;
702
+ var e = [], r = [];
703
+ return n.forEach(function(t) {
704
+ var i = t[0] === "[";
705
+ i ? (e.push.apply(e, r.sort().concat([t])), r = []) : r.push(t);
706
+ }), e.push.apply(e, r.sort()), e;
707
+ }
708
+ function Ar(n) {
709
+ return D({
710
+ cache: gr(n.cacheSize),
711
+ splitModifiers: wr(n)
712
+ }, mr(n));
713
+ }
714
+ var $r = /\s+/;
715
+ function jr(n, e) {
716
+ var r = e.splitModifiers, t = e.getClassGroupId, i = e.getConflictingClassGroupIds, o = /* @__PURE__ */ new Set();
717
+ return n.trim().split($r).map(function(s) {
718
+ var a = r(s), l = a.modifiers, u = a.hasImportantModifier, c = a.baseClassName, d = t(c);
719
+ if (!d)
720
+ return {
721
+ isTailwindClass: !1,
722
+ originalClassName: s
723
+ };
724
+ var v = Cr(l).join(":"), b = u ? v + Pe : v;
725
+ return {
726
+ isTailwindClass: !0,
727
+ modifierId: b,
728
+ classGroupId: d,
729
+ originalClassName: s
730
+ };
731
+ }).reverse().filter(function(s) {
732
+ if (!s.isTailwindClass)
733
+ return !0;
734
+ var a = s.modifierId, l = s.classGroupId, u = a + l;
735
+ return o.has(u) ? !1 : (o.add(u), i(l).forEach(function(c) {
736
+ return o.add(a + c);
737
+ }), !0);
738
+ }).reverse().map(function(s) {
739
+ return s.originalClassName;
740
+ }).join(" ");
741
+ }
742
+ function Ir() {
743
+ for (var n = arguments.length, e = new Array(n), r = 0; r < n; r++)
744
+ e[r] = arguments[r];
745
+ var t, i, o, s = a;
746
+ function a(u) {
747
+ var c = e[0], d = e.slice(1), v = d.reduce(function(b, y) {
748
+ return y(b);
749
+ }, c());
750
+ return t = Ar(v), i = t.cache.get, o = t.cache.set, s = l, l(u);
751
+ }
752
+ function l(u) {
753
+ var c = i(u);
754
+ if (c)
755
+ return c;
756
+ var d = jr(u, t);
757
+ return o(u, d), d;
758
+ }
759
+ return function() {
760
+ return s(vr.apply(null, arguments));
761
+ };
762
+ }
763
+ function g(n) {
764
+ var e = function(t) {
765
+ return t[n] || [];
766
+ };
767
+ return e.isThemeGetter = !0, e;
768
+ }
769
+ var k = /^\[(.+)\]$/, Pr = /^\d+\/\d+$/, _r = /* @__PURE__ */ new Set(["px", "full", "screen"]), Or = /^(\d+)?(xs|sm|md|lg|xl)$/, Sr = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh)/, Er = /^-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/;
770
+ function P(n) {
771
+ return !Number.isNaN(Number(n)) || _r.has(n) || Pr.test(n) || G(n);
772
+ }
773
+ function G(n) {
774
+ var e, r = (e = k.exec(n)) == null ? void 0 : e[1];
775
+ return r ? r.startsWith("length:") || Sr.test(r) : !1;
776
+ }
777
+ function Mr(n) {
778
+ var e, r = (e = k.exec(n)) == null ? void 0 : e[1];
779
+ return r ? r.startsWith("size:") : !1;
780
+ }
781
+ function kr(n) {
782
+ var e, r = (e = k.exec(n)) == null ? void 0 : e[1];
783
+ return r ? r.startsWith("position:") : !1;
784
+ }
785
+ function Tr(n) {
786
+ var e, r = (e = k.exec(n)) == null ? void 0 : e[1];
787
+ return r ? r.startsWith("url(") || r.startsWith("url:") : !1;
788
+ }
789
+ function ge(n) {
790
+ var e, r = (e = k.exec(n)) == null ? void 0 : e[1];
791
+ return r ? !Number.isNaN(Number(r)) || r.startsWith("number:") : !1;
792
+ }
793
+ function $(n) {
794
+ var e, r = (e = k.exec(n)) == null ? void 0 : e[1];
795
+ return r ? Number.isInteger(Number(r)) : Number.isInteger(Number(n));
796
+ }
797
+ function h(n) {
798
+ return k.test(n);
799
+ }
800
+ function W() {
801
+ return !0;
802
+ }
803
+ function E(n) {
804
+ return Or.test(n);
805
+ }
806
+ function Rr(n) {
807
+ var e, r = (e = k.exec(n)) == null ? void 0 : e[1];
808
+ return r ? Er.test(r) : !1;
809
+ }
810
+ function Gr() {
811
+ var n = g("colors"), e = g("spacing"), r = g("blur"), t = g("brightness"), i = g("borderColor"), o = g("borderRadius"), s = g("borderSpacing"), a = g("borderWidth"), l = g("contrast"), u = g("grayscale"), c = g("hueRotate"), d = g("invert"), v = g("gap"), b = g("gradientColorStops"), y = g("inset"), x = g("margin"), p = g("opacity"), j = g("padding"), m = g("saturate"), C = g("scale"), A = g("sepia"), w = g("skew"), _ = g("space"), B = g("translate"), T = function() {
812
+ return ["auto", "contain", "none"];
813
+ }, I = function() {
814
+ return ["auto", "hidden", "clip", "visible", "scroll"];
815
+ }, z = function() {
816
+ return ["auto", e];
817
+ }, V = function() {
818
+ return ["", P];
819
+ }, R = function() {
820
+ return ["auto", $];
821
+ }, F = function() {
822
+ return ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"];
823
+ }, U = function() {
824
+ return ["solid", "dashed", "dotted", "double", "none"];
825
+ }, se = function() {
826
+ return ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity", "plus-lighter"];
827
+ }, Q = function() {
828
+ return ["start", "end", "center", "between", "around", "evenly"];
829
+ }, L = function() {
830
+ return ["", "0", h];
831
+ }, le = function() {
832
+ return ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"];
833
+ };
834
+ return {
835
+ cacheSize: 500,
836
+ theme: {
837
+ colors: [W],
838
+ spacing: [P],
839
+ blur: ["none", "", E, G],
840
+ brightness: [$],
841
+ borderColor: [n],
842
+ borderRadius: ["none", "", "full", E, G],
843
+ borderSpacing: [e],
844
+ borderWidth: V(),
845
+ contrast: [$],
846
+ grayscale: L(),
847
+ hueRotate: [$],
848
+ invert: L(),
849
+ gap: [e],
850
+ gradientColorStops: [n],
851
+ inset: z(),
852
+ margin: z(),
853
+ opacity: [$],
854
+ padding: [e],
855
+ saturate: [$],
856
+ scale: [$],
857
+ sepia: L(),
858
+ skew: [$, h],
859
+ space: [e],
860
+ translate: [e]
861
+ },
862
+ classGroups: {
863
+ // Layout
864
+ /**
865
+ * Aspect Ratio
866
+ * @see https://tailwindcss.com/docs/aspect-ratio
867
+ */
868
+ aspect: [{
869
+ aspect: ["auto", "square", "video", h]
870
+ }],
871
+ /**
872
+ * Container
873
+ * @see https://tailwindcss.com/docs/container
874
+ */
875
+ container: ["container"],
876
+ /**
877
+ * Columns
878
+ * @see https://tailwindcss.com/docs/columns
879
+ */
880
+ columns: [{
881
+ columns: [E]
882
+ }],
883
+ /**
884
+ * Break After
885
+ * @see https://tailwindcss.com/docs/break-after
886
+ */
887
+ "break-after": [{
888
+ "break-after": le()
889
+ }],
890
+ /**
891
+ * Break Before
892
+ * @see https://tailwindcss.com/docs/break-before
893
+ */
894
+ "break-before": [{
895
+ "break-before": le()
896
+ }],
897
+ /**
898
+ * Break Inside
899
+ * @see https://tailwindcss.com/docs/break-inside
900
+ */
901
+ "break-inside": [{
902
+ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
903
+ }],
904
+ /**
905
+ * Box Decoration Break
906
+ * @see https://tailwindcss.com/docs/box-decoration-break
907
+ */
908
+ "box-decoration": [{
909
+ "box-decoration": ["slice", "clone"]
910
+ }],
911
+ /**
912
+ * Box Sizing
913
+ * @see https://tailwindcss.com/docs/box-sizing
914
+ */
915
+ box: [{
916
+ box: ["border", "content"]
917
+ }],
918
+ /**
919
+ * Display
920
+ * @see https://tailwindcss.com/docs/display
921
+ */
922
+ display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"],
923
+ /**
924
+ * Floats
925
+ * @see https://tailwindcss.com/docs/float
926
+ */
927
+ float: [{
928
+ float: ["right", "left", "none"]
929
+ }],
930
+ /**
931
+ * Clear
932
+ * @see https://tailwindcss.com/docs/clear
933
+ */
934
+ clear: [{
935
+ clear: ["left", "right", "both", "none"]
936
+ }],
937
+ /**
938
+ * Isolation
939
+ * @see https://tailwindcss.com/docs/isolation
940
+ */
941
+ isolation: ["isolate", "isolation-auto"],
942
+ /**
943
+ * Object Fit
944
+ * @see https://tailwindcss.com/docs/object-fit
945
+ */
946
+ "object-fit": [{
947
+ object: ["contain", "cover", "fill", "none", "scale-down"]
948
+ }],
949
+ /**
950
+ * Object Position
951
+ * @see https://tailwindcss.com/docs/object-position
952
+ */
953
+ "object-position": [{
954
+ object: [].concat(F(), [h])
955
+ }],
956
+ /**
957
+ * Overflow
958
+ * @see https://tailwindcss.com/docs/overflow
959
+ */
960
+ overflow: [{
961
+ overflow: I()
962
+ }],
963
+ /**
964
+ * Overflow X
965
+ * @see https://tailwindcss.com/docs/overflow
966
+ */
967
+ "overflow-x": [{
968
+ "overflow-x": I()
969
+ }],
970
+ /**
971
+ * Overflow Y
972
+ * @see https://tailwindcss.com/docs/overflow
973
+ */
974
+ "overflow-y": [{
975
+ "overflow-y": I()
976
+ }],
977
+ /**
978
+ * Overscroll Behavior
979
+ * @see https://tailwindcss.com/docs/overscroll-behavior
980
+ */
981
+ overscroll: [{
982
+ overscroll: T()
983
+ }],
984
+ /**
985
+ * Overscroll Behavior X
986
+ * @see https://tailwindcss.com/docs/overscroll-behavior
987
+ */
988
+ "overscroll-x": [{
989
+ "overscroll-x": T()
990
+ }],
991
+ /**
992
+ * Overscroll Behavior Y
993
+ * @see https://tailwindcss.com/docs/overscroll-behavior
994
+ */
995
+ "overscroll-y": [{
996
+ "overscroll-y": T()
997
+ }],
998
+ /**
999
+ * Position
1000
+ * @see https://tailwindcss.com/docs/position
1001
+ */
1002
+ position: ["static", "fixed", "absolute", "relative", "sticky"],
1003
+ /**
1004
+ * Top / Right / Bottom / Left
1005
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1006
+ */
1007
+ inset: [{
1008
+ inset: [y]
1009
+ }],
1010
+ /**
1011
+ * Right / Left
1012
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1013
+ */
1014
+ "inset-x": [{
1015
+ "inset-x": [y]
1016
+ }],
1017
+ /**
1018
+ * Top / Bottom
1019
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1020
+ */
1021
+ "inset-y": [{
1022
+ "inset-y": [y]
1023
+ }],
1024
+ /**
1025
+ * Top
1026
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1027
+ */
1028
+ top: [{
1029
+ top: [y]
1030
+ }],
1031
+ /**
1032
+ * Right
1033
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1034
+ */
1035
+ right: [{
1036
+ right: [y]
1037
+ }],
1038
+ /**
1039
+ * Bottom
1040
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1041
+ */
1042
+ bottom: [{
1043
+ bottom: [y]
1044
+ }],
1045
+ /**
1046
+ * Left
1047
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1048
+ */
1049
+ left: [{
1050
+ left: [y]
1051
+ }],
1052
+ /**
1053
+ * Visibility
1054
+ * @see https://tailwindcss.com/docs/visibility
1055
+ */
1056
+ visibility: ["visible", "invisible", "collapse"],
1057
+ /**
1058
+ * Z-Index
1059
+ * @see https://tailwindcss.com/docs/z-index
1060
+ */
1061
+ z: [{
1062
+ z: [$]
1063
+ }],
1064
+ // Flexbox and Grid
1065
+ /**
1066
+ * Flex Basis
1067
+ * @see https://tailwindcss.com/docs/flex-basis
1068
+ */
1069
+ basis: [{
1070
+ basis: [e]
1071
+ }],
1072
+ /**
1073
+ * Flex Direction
1074
+ * @see https://tailwindcss.com/docs/flex-direction
1075
+ */
1076
+ "flex-direction": [{
1077
+ flex: ["row", "row-reverse", "col", "col-reverse"]
1078
+ }],
1079
+ /**
1080
+ * Flex Wrap
1081
+ * @see https://tailwindcss.com/docs/flex-wrap
1082
+ */
1083
+ "flex-wrap": [{
1084
+ flex: ["wrap", "wrap-reverse", "nowrap"]
1085
+ }],
1086
+ /**
1087
+ * Flex
1088
+ * @see https://tailwindcss.com/docs/flex
1089
+ */
1090
+ flex: [{
1091
+ flex: ["1", "auto", "initial", "none", h]
1092
+ }],
1093
+ /**
1094
+ * Flex Grow
1095
+ * @see https://tailwindcss.com/docs/flex-grow
1096
+ */
1097
+ grow: [{
1098
+ grow: L()
1099
+ }],
1100
+ /**
1101
+ * Flex Shrink
1102
+ * @see https://tailwindcss.com/docs/flex-shrink
1103
+ */
1104
+ shrink: [{
1105
+ shrink: L()
1106
+ }],
1107
+ /**
1108
+ * Order
1109
+ * @see https://tailwindcss.com/docs/order
1110
+ */
1111
+ order: [{
1112
+ order: ["first", "last", "none", $]
1113
+ }],
1114
+ /**
1115
+ * Grid Template Columns
1116
+ * @see https://tailwindcss.com/docs/grid-template-columns
1117
+ */
1118
+ "grid-cols": [{
1119
+ "grid-cols": [W]
1120
+ }],
1121
+ /**
1122
+ * Grid Column Start / End
1123
+ * @see https://tailwindcss.com/docs/grid-column
1124
+ */
1125
+ "col-start-end": [{
1126
+ col: ["auto", {
1127
+ span: [$]
1128
+ }]
1129
+ }],
1130
+ /**
1131
+ * Grid Column Start
1132
+ * @see https://tailwindcss.com/docs/grid-column
1133
+ */
1134
+ "col-start": [{
1135
+ "col-start": R()
1136
+ }],
1137
+ /**
1138
+ * Grid Column End
1139
+ * @see https://tailwindcss.com/docs/grid-column
1140
+ */
1141
+ "col-end": [{
1142
+ "col-end": R()
1143
+ }],
1144
+ /**
1145
+ * Grid Template Rows
1146
+ * @see https://tailwindcss.com/docs/grid-template-rows
1147
+ */
1148
+ "grid-rows": [{
1149
+ "grid-rows": [W]
1150
+ }],
1151
+ /**
1152
+ * Grid Row Start / End
1153
+ * @see https://tailwindcss.com/docs/grid-row
1154
+ */
1155
+ "row-start-end": [{
1156
+ row: ["auto", {
1157
+ span: [$]
1158
+ }]
1159
+ }],
1160
+ /**
1161
+ * Grid Row Start
1162
+ * @see https://tailwindcss.com/docs/grid-row
1163
+ */
1164
+ "row-start": [{
1165
+ "row-start": R()
1166
+ }],
1167
+ /**
1168
+ * Grid Row End
1169
+ * @see https://tailwindcss.com/docs/grid-row
1170
+ */
1171
+ "row-end": [{
1172
+ "row-end": R()
1173
+ }],
1174
+ /**
1175
+ * Grid Auto Flow
1176
+ * @see https://tailwindcss.com/docs/grid-auto-flow
1177
+ */
1178
+ "grid-flow": [{
1179
+ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
1180
+ }],
1181
+ /**
1182
+ * Grid Auto Columns
1183
+ * @see https://tailwindcss.com/docs/grid-auto-columns
1184
+ */
1185
+ "auto-cols": [{
1186
+ "auto-cols": ["auto", "min", "max", "fr", h]
1187
+ }],
1188
+ /**
1189
+ * Grid Auto Rows
1190
+ * @see https://tailwindcss.com/docs/grid-auto-rows
1191
+ */
1192
+ "auto-rows": [{
1193
+ "auto-rows": ["auto", "min", "max", "fr", h]
1194
+ }],
1195
+ /**
1196
+ * Gap
1197
+ * @see https://tailwindcss.com/docs/gap
1198
+ */
1199
+ gap: [{
1200
+ gap: [v]
1201
+ }],
1202
+ /**
1203
+ * Gap X
1204
+ * @see https://tailwindcss.com/docs/gap
1205
+ */
1206
+ "gap-x": [{
1207
+ "gap-x": [v]
1208
+ }],
1209
+ /**
1210
+ * Gap Y
1211
+ * @see https://tailwindcss.com/docs/gap
1212
+ */
1213
+ "gap-y": [{
1214
+ "gap-y": [v]
1215
+ }],
1216
+ /**
1217
+ * Justify Content
1218
+ * @see https://tailwindcss.com/docs/justify-content
1219
+ */
1220
+ "justify-content": [{
1221
+ justify: Q()
1222
+ }],
1223
+ /**
1224
+ * Justify Items
1225
+ * @see https://tailwindcss.com/docs/justify-items
1226
+ */
1227
+ "justify-items": [{
1228
+ "justify-items": ["start", "end", "center", "stretch"]
1229
+ }],
1230
+ /**
1231
+ * Justify Self
1232
+ * @see https://tailwindcss.com/docs/justify-self
1233
+ */
1234
+ "justify-self": [{
1235
+ "justify-self": ["auto", "start", "end", "center", "stretch"]
1236
+ }],
1237
+ /**
1238
+ * Align Content
1239
+ * @see https://tailwindcss.com/docs/align-content
1240
+ */
1241
+ "align-content": [{
1242
+ content: [].concat(Q(), ["baseline"])
1243
+ }],
1244
+ /**
1245
+ * Align Items
1246
+ * @see https://tailwindcss.com/docs/align-items
1247
+ */
1248
+ "align-items": [{
1249
+ items: ["start", "end", "center", "baseline", "stretch"]
1250
+ }],
1251
+ /**
1252
+ * Align Self
1253
+ * @see https://tailwindcss.com/docs/align-self
1254
+ */
1255
+ "align-self": [{
1256
+ self: ["auto", "start", "end", "center", "stretch", "baseline"]
1257
+ }],
1258
+ /**
1259
+ * Place Content
1260
+ * @see https://tailwindcss.com/docs/place-content
1261
+ */
1262
+ "place-content": [{
1263
+ "place-content": [].concat(Q(), ["baseline", "stretch"])
1264
+ }],
1265
+ /**
1266
+ * Place Items
1267
+ * @see https://tailwindcss.com/docs/place-items
1268
+ */
1269
+ "place-items": [{
1270
+ "place-items": ["start", "end", "center", "baseline", "stretch"]
1271
+ }],
1272
+ /**
1273
+ * Place Self
1274
+ * @see https://tailwindcss.com/docs/place-self
1275
+ */
1276
+ "place-self": [{
1277
+ "place-self": ["auto", "start", "end", "center", "stretch"]
1278
+ }],
1279
+ // Spacing
1280
+ /**
1281
+ * Padding
1282
+ * @see https://tailwindcss.com/docs/padding
1283
+ */
1284
+ p: [{
1285
+ p: [j]
1286
+ }],
1287
+ /**
1288
+ * Padding X
1289
+ * @see https://tailwindcss.com/docs/padding
1290
+ */
1291
+ px: [{
1292
+ px: [j]
1293
+ }],
1294
+ /**
1295
+ * Padding Y
1296
+ * @see https://tailwindcss.com/docs/padding
1297
+ */
1298
+ py: [{
1299
+ py: [j]
1300
+ }],
1301
+ /**
1302
+ * Padding Top
1303
+ * @see https://tailwindcss.com/docs/padding
1304
+ */
1305
+ pt: [{
1306
+ pt: [j]
1307
+ }],
1308
+ /**
1309
+ * Padding Right
1310
+ * @see https://tailwindcss.com/docs/padding
1311
+ */
1312
+ pr: [{
1313
+ pr: [j]
1314
+ }],
1315
+ /**
1316
+ * Padding Bottom
1317
+ * @see https://tailwindcss.com/docs/padding
1318
+ */
1319
+ pb: [{
1320
+ pb: [j]
1321
+ }],
1322
+ /**
1323
+ * Padding Left
1324
+ * @see https://tailwindcss.com/docs/padding
1325
+ */
1326
+ pl: [{
1327
+ pl: [j]
1328
+ }],
1329
+ /**
1330
+ * Margin
1331
+ * @see https://tailwindcss.com/docs/margin
1332
+ */
1333
+ m: [{
1334
+ m: [x]
1335
+ }],
1336
+ /**
1337
+ * Margin X
1338
+ * @see https://tailwindcss.com/docs/margin
1339
+ */
1340
+ mx: [{
1341
+ mx: [x]
1342
+ }],
1343
+ /**
1344
+ * Margin Y
1345
+ * @see https://tailwindcss.com/docs/margin
1346
+ */
1347
+ my: [{
1348
+ my: [x]
1349
+ }],
1350
+ /**
1351
+ * Margin Top
1352
+ * @see https://tailwindcss.com/docs/margin
1353
+ */
1354
+ mt: [{
1355
+ mt: [x]
1356
+ }],
1357
+ /**
1358
+ * Margin Right
1359
+ * @see https://tailwindcss.com/docs/margin
1360
+ */
1361
+ mr: [{
1362
+ mr: [x]
1363
+ }],
1364
+ /**
1365
+ * Margin Bottom
1366
+ * @see https://tailwindcss.com/docs/margin
1367
+ */
1368
+ mb: [{
1369
+ mb: [x]
1370
+ }],
1371
+ /**
1372
+ * Margin Left
1373
+ * @see https://tailwindcss.com/docs/margin
1374
+ */
1375
+ ml: [{
1376
+ ml: [x]
1377
+ }],
1378
+ /**
1379
+ * Space Between X
1380
+ * @see https://tailwindcss.com/docs/space
1381
+ */
1382
+ "space-x": [{
1383
+ "space-x": [_]
1384
+ }],
1385
+ /**
1386
+ * Space Between X Reverse
1387
+ * @see https://tailwindcss.com/docs/space
1388
+ */
1389
+ "space-x-reverse": ["space-x-reverse"],
1390
+ /**
1391
+ * Space Between Y
1392
+ * @see https://tailwindcss.com/docs/space
1393
+ */
1394
+ "space-y": [{
1395
+ "space-y": [_]
1396
+ }],
1397
+ /**
1398
+ * Space Between Y Reverse
1399
+ * @see https://tailwindcss.com/docs/space
1400
+ */
1401
+ "space-y-reverse": ["space-y-reverse"],
1402
+ // Sizing
1403
+ /**
1404
+ * Width
1405
+ * @see https://tailwindcss.com/docs/width
1406
+ */
1407
+ w: [{
1408
+ w: ["auto", "min", "max", "fit", e]
1409
+ }],
1410
+ /**
1411
+ * Min-Width
1412
+ * @see https://tailwindcss.com/docs/min-width
1413
+ */
1414
+ "min-w": [{
1415
+ "min-w": ["min", "max", "fit", P]
1416
+ }],
1417
+ /**
1418
+ * Max-Width
1419
+ * @see https://tailwindcss.com/docs/max-width
1420
+ */
1421
+ "max-w": [{
1422
+ "max-w": ["0", "none", "full", "min", "max", "fit", "prose", {
1423
+ screen: [E]
1424
+ }, E, G]
1425
+ }],
1426
+ /**
1427
+ * Height
1428
+ * @see https://tailwindcss.com/docs/height
1429
+ */
1430
+ h: [{
1431
+ h: [e, "auto", "min", "max", "fit"]
1432
+ }],
1433
+ /**
1434
+ * Min-Height
1435
+ * @see https://tailwindcss.com/docs/min-height
1436
+ */
1437
+ "min-h": [{
1438
+ "min-h": ["min", "max", "fit", P]
1439
+ }],
1440
+ /**
1441
+ * Max-Height
1442
+ * @see https://tailwindcss.com/docs/max-height
1443
+ */
1444
+ "max-h": [{
1445
+ "max-h": [e, "min", "max", "fit"]
1446
+ }],
1447
+ // Typography
1448
+ /**
1449
+ * Font Size
1450
+ * @see https://tailwindcss.com/docs/font-size
1451
+ */
1452
+ "font-size": [{
1453
+ text: ["base", E, G]
1454
+ }],
1455
+ /**
1456
+ * Font Smoothing
1457
+ * @see https://tailwindcss.com/docs/font-smoothing
1458
+ */
1459
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
1460
+ /**
1461
+ * Font Style
1462
+ * @see https://tailwindcss.com/docs/font-style
1463
+ */
1464
+ "font-style": ["italic", "not-italic"],
1465
+ /**
1466
+ * Font Weight
1467
+ * @see https://tailwindcss.com/docs/font-weight
1468
+ */
1469
+ "font-weight": [{
1470
+ font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", ge]
1471
+ }],
1472
+ /**
1473
+ * Font Family
1474
+ * @see https://tailwindcss.com/docs/font-family
1475
+ */
1476
+ "font-family": [{
1477
+ font: [W]
1478
+ }],
1479
+ /**
1480
+ * Font Variant Numeric
1481
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1482
+ */
1483
+ "fvn-normal": ["normal-nums"],
1484
+ /**
1485
+ * Font Variant Numeric
1486
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1487
+ */
1488
+ "fvn-ordinal": ["ordinal"],
1489
+ /**
1490
+ * Font Variant Numeric
1491
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1492
+ */
1493
+ "fvn-slashed-zero": ["slashed-zero"],
1494
+ /**
1495
+ * Font Variant Numeric
1496
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1497
+ */
1498
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
1499
+ /**
1500
+ * Font Variant Numeric
1501
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1502
+ */
1503
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
1504
+ /**
1505
+ * Font Variant Numeric
1506
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1507
+ */
1508
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractons"],
1509
+ /**
1510
+ * Letter Spacing
1511
+ * @see https://tailwindcss.com/docs/letter-spacing
1512
+ */
1513
+ tracking: [{
1514
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", G]
1515
+ }],
1516
+ /**
1517
+ * Line Height
1518
+ * @see https://tailwindcss.com/docs/line-height
1519
+ */
1520
+ leading: [{
1521
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose", P]
1522
+ }],
1523
+ /**
1524
+ * List Style Type
1525
+ * @see https://tailwindcss.com/docs/list-style-type
1526
+ */
1527
+ "list-style-type": [{
1528
+ list: ["none", "disc", "decimal", h]
1529
+ }],
1530
+ /**
1531
+ * List Style Position
1532
+ * @see https://tailwindcss.com/docs/list-style-position
1533
+ */
1534
+ "list-style-position": [{
1535
+ list: ["inside", "outside"]
1536
+ }],
1537
+ /**
1538
+ * Placeholder Color
1539
+ * @deprecated since Tailwind CSS v3.0.0
1540
+ * @see https://tailwindcss.com/docs/placeholder-color
1541
+ */
1542
+ "placeholder-color": [{
1543
+ placeholder: [n]
1544
+ }],
1545
+ /**
1546
+ * Placeholder Opacity
1547
+ * @see https://tailwindcss.com/docs/placeholder-opacity
1548
+ */
1549
+ "placeholder-opacity": [{
1550
+ "placeholder-opacity": [p]
1551
+ }],
1552
+ /**
1553
+ * Text Alignment
1554
+ * @see https://tailwindcss.com/docs/text-align
1555
+ */
1556
+ "text-alignment": [{
1557
+ text: ["left", "center", "right", "justify", "start", "end"]
1558
+ }],
1559
+ /**
1560
+ * Text Color
1561
+ * @see https://tailwindcss.com/docs/text-color
1562
+ */
1563
+ "text-color": [{
1564
+ text: [n]
1565
+ }],
1566
+ /**
1567
+ * Text Opacity
1568
+ * @see https://tailwindcss.com/docs/text-opacity
1569
+ */
1570
+ "text-opacity": [{
1571
+ "text-opacity": [p]
1572
+ }],
1573
+ /**
1574
+ * Text Decoration
1575
+ * @see https://tailwindcss.com/docs/text-decoration
1576
+ */
1577
+ "text-decoration": ["underline", "overline", "line-through", "no-underline"],
1578
+ /**
1579
+ * Text Decoration Style
1580
+ * @see https://tailwindcss.com/docs/text-decoration-style
1581
+ */
1582
+ "text-decoration-style": [{
1583
+ decoration: [].concat(U(), ["wavy"])
1584
+ }],
1585
+ /**
1586
+ * Text Decoration Thickness
1587
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
1588
+ */
1589
+ "text-decoration-thickness": [{
1590
+ decoration: ["auto", "from-font", P]
1591
+ }],
1592
+ /**
1593
+ * Text Underline Offset
1594
+ * @see https://tailwindcss.com/docs/text-underline-offset
1595
+ */
1596
+ "underline-offset": [{
1597
+ "underline-offset": ["auto", P]
1598
+ }],
1599
+ /**
1600
+ * Text Decoration Color
1601
+ * @see https://tailwindcss.com/docs/text-decoration-color
1602
+ */
1603
+ "text-decoration-color": [{
1604
+ decoration: [n]
1605
+ }],
1606
+ /**
1607
+ * Text Transform
1608
+ * @see https://tailwindcss.com/docs/text-transform
1609
+ */
1610
+ "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
1611
+ /**
1612
+ * Text Overflow
1613
+ * @see https://tailwindcss.com/docs/text-overflow
1614
+ */
1615
+ "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
1616
+ /**
1617
+ * Text Indent
1618
+ * @see https://tailwindcss.com/docs/text-indent
1619
+ */
1620
+ indent: [{
1621
+ indent: [e]
1622
+ }],
1623
+ /**
1624
+ * Vertical Alignment
1625
+ * @see https://tailwindcss.com/docs/vertical-align
1626
+ */
1627
+ "vertical-align": [{
1628
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", G]
1629
+ }],
1630
+ /**
1631
+ * Whitespace
1632
+ * @see https://tailwindcss.com/docs/whitespace
1633
+ */
1634
+ whitespace: [{
1635
+ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap"]
1636
+ }],
1637
+ /**
1638
+ * Word Break
1639
+ * @see https://tailwindcss.com/docs/word-break
1640
+ */
1641
+ break: [{
1642
+ break: ["normal", "words", "all", "keep"]
1643
+ }],
1644
+ /**
1645
+ * Content
1646
+ * @see https://tailwindcss.com/docs/content
1647
+ */
1648
+ content: [{
1649
+ content: ["none", h]
1650
+ }],
1651
+ // Backgrounds
1652
+ /**
1653
+ * Background Attachment
1654
+ * @see https://tailwindcss.com/docs/background-attachment
1655
+ */
1656
+ "bg-attachment": [{
1657
+ bg: ["fixed", "local", "scroll"]
1658
+ }],
1659
+ /**
1660
+ * Background Clip
1661
+ * @see https://tailwindcss.com/docs/background-clip
1662
+ */
1663
+ "bg-clip": [{
1664
+ "bg-clip": ["border", "padding", "content", "text"]
1665
+ }],
1666
+ /**
1667
+ * Background Opacity
1668
+ * @deprecated since Tailwind CSS v3.0.0
1669
+ * @see https://tailwindcss.com/docs/background-opacity
1670
+ */
1671
+ "bg-opacity": [{
1672
+ "bg-opacity": [p]
1673
+ }],
1674
+ /**
1675
+ * Background Origin
1676
+ * @see https://tailwindcss.com/docs/background-origin
1677
+ */
1678
+ "bg-origin": [{
1679
+ "bg-origin": ["border", "padding", "content"]
1680
+ }],
1681
+ /**
1682
+ * Background Position
1683
+ * @see https://tailwindcss.com/docs/background-position
1684
+ */
1685
+ "bg-position": [{
1686
+ bg: [].concat(F(), [kr])
1687
+ }],
1688
+ /**
1689
+ * Background Repeat
1690
+ * @see https://tailwindcss.com/docs/background-repeat
1691
+ */
1692
+ "bg-repeat": [{
1693
+ bg: ["no-repeat", {
1694
+ repeat: ["", "x", "y", "round", "space"]
1695
+ }]
1696
+ }],
1697
+ /**
1698
+ * Background Size
1699
+ * @see https://tailwindcss.com/docs/background-size
1700
+ */
1701
+ "bg-size": [{
1702
+ bg: ["auto", "cover", "contain", Mr]
1703
+ }],
1704
+ /**
1705
+ * Background Image
1706
+ * @see https://tailwindcss.com/docs/background-image
1707
+ */
1708
+ "bg-image": [{
1709
+ bg: ["none", {
1710
+ "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1711
+ }, Tr]
1712
+ }],
1713
+ /**
1714
+ * Background Color
1715
+ * @see https://tailwindcss.com/docs/background-color
1716
+ */
1717
+ "bg-color": [{
1718
+ bg: [n]
1719
+ }],
1720
+ /**
1721
+ * Gradient Color Stops From
1722
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1723
+ */
1724
+ "gradient-from": [{
1725
+ from: [b]
1726
+ }],
1727
+ /**
1728
+ * Gradient Color Stops Via
1729
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1730
+ */
1731
+ "gradient-via": [{
1732
+ via: [b]
1733
+ }],
1734
+ /**
1735
+ * Gradient Color Stops To
1736
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1737
+ */
1738
+ "gradient-to": [{
1739
+ to: [b]
1740
+ }],
1741
+ // Borders
1742
+ /**
1743
+ * Border Radius
1744
+ * @see https://tailwindcss.com/docs/border-radius
1745
+ */
1746
+ rounded: [{
1747
+ rounded: [o]
1748
+ }],
1749
+ /**
1750
+ * Border Radius Top
1751
+ * @see https://tailwindcss.com/docs/border-radius
1752
+ */
1753
+ "rounded-t": [{
1754
+ "rounded-t": [o]
1755
+ }],
1756
+ /**
1757
+ * Border Radius Right
1758
+ * @see https://tailwindcss.com/docs/border-radius
1759
+ */
1760
+ "rounded-r": [{
1761
+ "rounded-r": [o]
1762
+ }],
1763
+ /**
1764
+ * Border Radius Bottom
1765
+ * @see https://tailwindcss.com/docs/border-radius
1766
+ */
1767
+ "rounded-b": [{
1768
+ "rounded-b": [o]
1769
+ }],
1770
+ /**
1771
+ * Border Radius Left
1772
+ * @see https://tailwindcss.com/docs/border-radius
1773
+ */
1774
+ "rounded-l": [{
1775
+ "rounded-l": [o]
1776
+ }],
1777
+ /**
1778
+ * Border Radius Top Left
1779
+ * @see https://tailwindcss.com/docs/border-radius
1780
+ */
1781
+ "rounded-tl": [{
1782
+ "rounded-tl": [o]
1783
+ }],
1784
+ /**
1785
+ * Border Radius Top Right
1786
+ * @see https://tailwindcss.com/docs/border-radius
1787
+ */
1788
+ "rounded-tr": [{
1789
+ "rounded-tr": [o]
1790
+ }],
1791
+ /**
1792
+ * Border Radius Bottom Right
1793
+ * @see https://tailwindcss.com/docs/border-radius
1794
+ */
1795
+ "rounded-br": [{
1796
+ "rounded-br": [o]
1797
+ }],
1798
+ /**
1799
+ * Border Radius Bottom Left
1800
+ * @see https://tailwindcss.com/docs/border-radius
1801
+ */
1802
+ "rounded-bl": [{
1803
+ "rounded-bl": [o]
1804
+ }],
1805
+ /**
1806
+ * Border Width
1807
+ * @see https://tailwindcss.com/docs/border-width
1808
+ */
1809
+ "border-w": [{
1810
+ border: [a]
1811
+ }],
1812
+ /**
1813
+ * Border Width X
1814
+ * @see https://tailwindcss.com/docs/border-width
1815
+ */
1816
+ "border-w-x": [{
1817
+ "border-x": [a]
1818
+ }],
1819
+ /**
1820
+ * Border Width Y
1821
+ * @see https://tailwindcss.com/docs/border-width
1822
+ */
1823
+ "border-w-y": [{
1824
+ "border-y": [a]
1825
+ }],
1826
+ /**
1827
+ * Border Width Top
1828
+ * @see https://tailwindcss.com/docs/border-width
1829
+ */
1830
+ "border-w-t": [{
1831
+ "border-t": [a]
1832
+ }],
1833
+ /**
1834
+ * Border Width Right
1835
+ * @see https://tailwindcss.com/docs/border-width
1836
+ */
1837
+ "border-w-r": [{
1838
+ "border-r": [a]
1839
+ }],
1840
+ /**
1841
+ * Border Width Bottom
1842
+ * @see https://tailwindcss.com/docs/border-width
1843
+ */
1844
+ "border-w-b": [{
1845
+ "border-b": [a]
1846
+ }],
1847
+ /**
1848
+ * Border Width Left
1849
+ * @see https://tailwindcss.com/docs/border-width
1850
+ */
1851
+ "border-w-l": [{
1852
+ "border-l": [a]
1853
+ }],
1854
+ /**
1855
+ * Border Opacity
1856
+ * @see https://tailwindcss.com/docs/border-opacity
1857
+ */
1858
+ "border-opacity": [{
1859
+ "border-opacity": [p]
1860
+ }],
1861
+ /**
1862
+ * Border Style
1863
+ * @see https://tailwindcss.com/docs/border-style
1864
+ */
1865
+ "border-style": [{
1866
+ border: [].concat(U(), ["hidden"])
1867
+ }],
1868
+ /**
1869
+ * Divide Width X
1870
+ * @see https://tailwindcss.com/docs/divide-width
1871
+ */
1872
+ "divide-x": [{
1873
+ "divide-x": [a]
1874
+ }],
1875
+ /**
1876
+ * Divide Width X Reverse
1877
+ * @see https://tailwindcss.com/docs/divide-width
1878
+ */
1879
+ "divide-x-reverse": ["divide-x-reverse"],
1880
+ /**
1881
+ * Divide Width Y
1882
+ * @see https://tailwindcss.com/docs/divide-width
1883
+ */
1884
+ "divide-y": [{
1885
+ "divide-y": [a]
1886
+ }],
1887
+ /**
1888
+ * Divide Width Y Reverse
1889
+ * @see https://tailwindcss.com/docs/divide-width
1890
+ */
1891
+ "divide-y-reverse": ["divide-y-reverse"],
1892
+ /**
1893
+ * Divide Opacity
1894
+ * @see https://tailwindcss.com/docs/divide-opacity
1895
+ */
1896
+ "divide-opacity": [{
1897
+ "divide-opacity": [p]
1898
+ }],
1899
+ /**
1900
+ * Divide Style
1901
+ * @see https://tailwindcss.com/docs/divide-style
1902
+ */
1903
+ "divide-style": [{
1904
+ divide: U()
1905
+ }],
1906
+ /**
1907
+ * Border Color
1908
+ * @see https://tailwindcss.com/docs/border-color
1909
+ */
1910
+ "border-color": [{
1911
+ border: [i]
1912
+ }],
1913
+ /**
1914
+ * Border Color X
1915
+ * @see https://tailwindcss.com/docs/border-color
1916
+ */
1917
+ "border-color-x": [{
1918
+ "border-x": [i]
1919
+ }],
1920
+ /**
1921
+ * Border Color Y
1922
+ * @see https://tailwindcss.com/docs/border-color
1923
+ */
1924
+ "border-color-y": [{
1925
+ "border-y": [i]
1926
+ }],
1927
+ /**
1928
+ * Border Color Top
1929
+ * @see https://tailwindcss.com/docs/border-color
1930
+ */
1931
+ "border-color-t": [{
1932
+ "border-t": [i]
1933
+ }],
1934
+ /**
1935
+ * Border Color Right
1936
+ * @see https://tailwindcss.com/docs/border-color
1937
+ */
1938
+ "border-color-r": [{
1939
+ "border-r": [i]
1940
+ }],
1941
+ /**
1942
+ * Border Color Bottom
1943
+ * @see https://tailwindcss.com/docs/border-color
1944
+ */
1945
+ "border-color-b": [{
1946
+ "border-b": [i]
1947
+ }],
1948
+ /**
1949
+ * Border Color Left
1950
+ * @see https://tailwindcss.com/docs/border-color
1951
+ */
1952
+ "border-color-l": [{
1953
+ "border-l": [i]
1954
+ }],
1955
+ /**
1956
+ * Divide Color
1957
+ * @see https://tailwindcss.com/docs/divide-color
1958
+ */
1959
+ "divide-color": [{
1960
+ divide: [i]
1961
+ }],
1962
+ /**
1963
+ * Outline Style
1964
+ * @see https://tailwindcss.com/docs/outline-style
1965
+ */
1966
+ "outline-style": [{
1967
+ outline: [""].concat(U())
1968
+ }],
1969
+ /**
1970
+ * Outline Offset
1971
+ * @see https://tailwindcss.com/docs/outline-offset
1972
+ */
1973
+ "outline-offset": [{
1974
+ "outline-offset": [P]
1975
+ }],
1976
+ /**
1977
+ * Outline Width
1978
+ * @see https://tailwindcss.com/docs/outline-width
1979
+ */
1980
+ "outline-w": [{
1981
+ outline: [P]
1982
+ }],
1983
+ /**
1984
+ * Outline Color
1985
+ * @see https://tailwindcss.com/docs/outline-color
1986
+ */
1987
+ "outline-color": [{
1988
+ outline: [n]
1989
+ }],
1990
+ /**
1991
+ * Ring Width
1992
+ * @see https://tailwindcss.com/docs/ring-width
1993
+ */
1994
+ "ring-w": [{
1995
+ ring: V()
1996
+ }],
1997
+ /**
1998
+ * Ring Width Inset
1999
+ * @see https://tailwindcss.com/docs/ring-width
2000
+ */
2001
+ "ring-w-inset": ["ring-inset"],
2002
+ /**
2003
+ * Ring Color
2004
+ * @see https://tailwindcss.com/docs/ring-color
2005
+ */
2006
+ "ring-color": [{
2007
+ ring: [n]
2008
+ }],
2009
+ /**
2010
+ * Ring Opacity
2011
+ * @see https://tailwindcss.com/docs/ring-opacity
2012
+ */
2013
+ "ring-opacity": [{
2014
+ "ring-opacity": [p]
2015
+ }],
2016
+ /**
2017
+ * Ring Offset Width
2018
+ * @see https://tailwindcss.com/docs/ring-offset-width
2019
+ */
2020
+ "ring-offset-w": [{
2021
+ "ring-offset": [P]
2022
+ }],
2023
+ /**
2024
+ * Ring Offset Color
2025
+ * @see https://tailwindcss.com/docs/ring-offset-color
2026
+ */
2027
+ "ring-offset-color": [{
2028
+ "ring-offset": [n]
2029
+ }],
2030
+ // Effects
2031
+ /**
2032
+ * Box Shadow
2033
+ * @see https://tailwindcss.com/docs/box-shadow
2034
+ */
2035
+ shadow: [{
2036
+ shadow: ["", "inner", "none", E, Rr]
2037
+ }],
2038
+ /**
2039
+ * Box Shadow Color
2040
+ * @see https://tailwindcss.com/docs/box-shadow-color
2041
+ */
2042
+ "shadow-color": [{
2043
+ shadow: [W]
2044
+ }],
2045
+ /**
2046
+ * Opacity
2047
+ * @see https://tailwindcss.com/docs/opacity
2048
+ */
2049
+ opacity: [{
2050
+ opacity: [p]
2051
+ }],
2052
+ /**
2053
+ * Mix Beldn Mode
2054
+ * @see https://tailwindcss.com/docs/mix-blend-mode
2055
+ */
2056
+ "mix-blend": [{
2057
+ "mix-blend": se()
2058
+ }],
2059
+ /**
2060
+ * Background Blend Mode
2061
+ * @see https://tailwindcss.com/docs/background-blend-mode
2062
+ */
2063
+ "bg-blend": [{
2064
+ "bg-blend": se()
2065
+ }],
2066
+ // Filters
2067
+ /**
2068
+ * Filter
2069
+ * @deprecated since Tailwind CSS v3.0.0
2070
+ * @see https://tailwindcss.com/docs/filter
2071
+ */
2072
+ filter: [{
2073
+ filter: ["", "none"]
2074
+ }],
2075
+ /**
2076
+ * Blur
2077
+ * @see https://tailwindcss.com/docs/blur
2078
+ */
2079
+ blur: [{
2080
+ blur: [r]
2081
+ }],
2082
+ /**
2083
+ * Brightness
2084
+ * @see https://tailwindcss.com/docs/brightness
2085
+ */
2086
+ brightness: [{
2087
+ brightness: [t]
2088
+ }],
2089
+ /**
2090
+ * Contrast
2091
+ * @see https://tailwindcss.com/docs/contrast
2092
+ */
2093
+ contrast: [{
2094
+ contrast: [l]
2095
+ }],
2096
+ /**
2097
+ * Drop Shadow
2098
+ * @see https://tailwindcss.com/docs/drop-shadow
2099
+ */
2100
+ "drop-shadow": [{
2101
+ "drop-shadow": ["", "none", E, h]
2102
+ }],
2103
+ /**
2104
+ * Grayscale
2105
+ * @see https://tailwindcss.com/docs/grayscale
2106
+ */
2107
+ grayscale: [{
2108
+ grayscale: [u]
2109
+ }],
2110
+ /**
2111
+ * Hue Rotate
2112
+ * @see https://tailwindcss.com/docs/hue-rotate
2113
+ */
2114
+ "hue-rotate": [{
2115
+ "hue-rotate": [c]
2116
+ }],
2117
+ /**
2118
+ * Invert
2119
+ * @see https://tailwindcss.com/docs/invert
2120
+ */
2121
+ invert: [{
2122
+ invert: [d]
2123
+ }],
2124
+ /**
2125
+ * Saturate
2126
+ * @see https://tailwindcss.com/docs/saturate
2127
+ */
2128
+ saturate: [{
2129
+ saturate: [m]
2130
+ }],
2131
+ /**
2132
+ * Sepia
2133
+ * @see https://tailwindcss.com/docs/sepia
2134
+ */
2135
+ sepia: [{
2136
+ sepia: [A]
2137
+ }],
2138
+ /**
2139
+ * Backdrop Filter
2140
+ * @deprecated since Tailwind CSS v3.0.0
2141
+ * @see https://tailwindcss.com/docs/backdrop-filter
2142
+ */
2143
+ "backdrop-filter": [{
2144
+ "backdrop-filter": ["", "none"]
2145
+ }],
2146
+ /**
2147
+ * Backdrop Blur
2148
+ * @see https://tailwindcss.com/docs/backdrop-blur
2149
+ */
2150
+ "backdrop-blur": [{
2151
+ "backdrop-blur": [r]
2152
+ }],
2153
+ /**
2154
+ * Backdrop Brightness
2155
+ * @see https://tailwindcss.com/docs/backdrop-brightness
2156
+ */
2157
+ "backdrop-brightness": [{
2158
+ "backdrop-brightness": [t]
2159
+ }],
2160
+ /**
2161
+ * Backdrop Contrast
2162
+ * @see https://tailwindcss.com/docs/backdrop-contrast
2163
+ */
2164
+ "backdrop-contrast": [{
2165
+ "backdrop-contrast": [l]
2166
+ }],
2167
+ /**
2168
+ * Backdrop Grayscale
2169
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
2170
+ */
2171
+ "backdrop-grayscale": [{
2172
+ "backdrop-grayscale": [u]
2173
+ }],
2174
+ /**
2175
+ * Backdrop Hue Rotate
2176
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
2177
+ */
2178
+ "backdrop-hue-rotate": [{
2179
+ "backdrop-hue-rotate": [c]
2180
+ }],
2181
+ /**
2182
+ * Backdrop Invert
2183
+ * @see https://tailwindcss.com/docs/backdrop-invert
2184
+ */
2185
+ "backdrop-invert": [{
2186
+ "backdrop-invert": [d]
2187
+ }],
2188
+ /**
2189
+ * Backdrop Opacity
2190
+ * @see https://tailwindcss.com/docs/backdrop-opacity
2191
+ */
2192
+ "backdrop-opacity": [{
2193
+ "backdrop-opacity": [p]
2194
+ }],
2195
+ /**
2196
+ * Backdrop Saturate
2197
+ * @see https://tailwindcss.com/docs/backdrop-saturate
2198
+ */
2199
+ "backdrop-saturate": [{
2200
+ "backdrop-saturate": [m]
2201
+ }],
2202
+ /**
2203
+ * Backdrop Sepia
2204
+ * @see https://tailwindcss.com/docs/backdrop-sepia
2205
+ */
2206
+ "backdrop-sepia": [{
2207
+ "backdrop-sepia": [A]
2208
+ }],
2209
+ // Tables
2210
+ /**
2211
+ * Border Collapse
2212
+ * @see https://tailwindcss.com/docs/border-collapse
2213
+ */
2214
+ "border-collapse": [{
2215
+ border: ["collapse", "separate"]
2216
+ }],
2217
+ /**
2218
+ * Border Spacing
2219
+ * @see https://tailwindcss.com/docs/border-spacing
2220
+ */
2221
+ "border-spacing": [{
2222
+ "border-spacing": [s]
2223
+ }],
2224
+ /**
2225
+ * Border Spacing X
2226
+ * @see https://tailwindcss.com/docs/border-spacing
2227
+ */
2228
+ "border-spacing-x": [{
2229
+ "border-spacing-x": [s]
2230
+ }],
2231
+ /**
2232
+ * Border Spacing Y
2233
+ * @see https://tailwindcss.com/docs/border-spacing
2234
+ */
2235
+ "border-spacing-y": [{
2236
+ "border-spacing-y": [s]
2237
+ }],
2238
+ /**
2239
+ * Table Layout
2240
+ * @see https://tailwindcss.com/docs/table-layout
2241
+ */
2242
+ "table-layout": [{
2243
+ table: ["auto", "fixed"]
2244
+ }],
2245
+ // Transitions and Animation
2246
+ /**
2247
+ * Tranisition Property
2248
+ * @see https://tailwindcss.com/docs/transition-property
2249
+ */
2250
+ transition: [{
2251
+ transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", h]
2252
+ }],
2253
+ /**
2254
+ * Transition Duration
2255
+ * @see https://tailwindcss.com/docs/transition-duration
2256
+ */
2257
+ duration: [{
2258
+ duration: [$]
2259
+ }],
2260
+ /**
2261
+ * Transition Timing Function
2262
+ * @see https://tailwindcss.com/docs/transition-timing-function
2263
+ */
2264
+ ease: [{
2265
+ ease: ["linear", "in", "out", "in-out", h]
2266
+ }],
2267
+ /**
2268
+ * Transition Delay
2269
+ * @see https://tailwindcss.com/docs/transition-delay
2270
+ */
2271
+ delay: [{
2272
+ delay: [$]
2273
+ }],
2274
+ /**
2275
+ * Animation
2276
+ * @see https://tailwindcss.com/docs/animation
2277
+ */
2278
+ animate: [{
2279
+ animate: ["none", "spin", "ping", "pulse", "bounce", h]
2280
+ }],
2281
+ // Transforms
2282
+ /**
2283
+ * Transform
2284
+ * @see https://tailwindcss.com/docs/transform
2285
+ */
2286
+ transform: [{
2287
+ transform: ["", "gpu", "none"]
2288
+ }],
2289
+ /**
2290
+ * Scale
2291
+ * @see https://tailwindcss.com/docs/scale
2292
+ */
2293
+ scale: [{
2294
+ scale: [C]
2295
+ }],
2296
+ /**
2297
+ * Scale X
2298
+ * @see https://tailwindcss.com/docs/scale
2299
+ */
2300
+ "scale-x": [{
2301
+ "scale-x": [C]
2302
+ }],
2303
+ /**
2304
+ * Scale Y
2305
+ * @see https://tailwindcss.com/docs/scale
2306
+ */
2307
+ "scale-y": [{
2308
+ "scale-y": [C]
2309
+ }],
2310
+ /**
2311
+ * Rotate
2312
+ * @see https://tailwindcss.com/docs/rotate
2313
+ */
2314
+ rotate: [{
2315
+ rotate: [$, h]
2316
+ }],
2317
+ /**
2318
+ * Translate X
2319
+ * @see https://tailwindcss.com/docs/translate
2320
+ */
2321
+ "translate-x": [{
2322
+ "translate-x": [B]
2323
+ }],
2324
+ /**
2325
+ * Translate Y
2326
+ * @see https://tailwindcss.com/docs/translate
2327
+ */
2328
+ "translate-y": [{
2329
+ "translate-y": [B]
2330
+ }],
2331
+ /**
2332
+ * Skew X
2333
+ * @see https://tailwindcss.com/docs/skew
2334
+ */
2335
+ "skew-x": [{
2336
+ "skew-x": [w]
2337
+ }],
2338
+ /**
2339
+ * Skew Y
2340
+ * @see https://tailwindcss.com/docs/skew
2341
+ */
2342
+ "skew-y": [{
2343
+ "skew-y": [w]
2344
+ }],
2345
+ /**
2346
+ * Transform Origin
2347
+ * @see https://tailwindcss.com/docs/transform-origin
2348
+ */
2349
+ "transform-origin": [{
2350
+ origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", h]
2351
+ }],
2352
+ // Interactivity
2353
+ /**
2354
+ * Accent Color
2355
+ * @see https://tailwindcss.com/docs/accent-color
2356
+ */
2357
+ accent: [{
2358
+ accent: ["auto", n]
2359
+ }],
2360
+ /**
2361
+ * Appearance
2362
+ * @see https://tailwindcss.com/docs/appearance
2363
+ */
2364
+ appearance: ["appearance-none"],
2365
+ /**
2366
+ * Cursor
2367
+ * @see https://tailwindcss.com/docs/cursor
2368
+ */
2369
+ cursor: [{
2370
+ 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", h]
2371
+ }],
2372
+ /**
2373
+ * Caret Color
2374
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2375
+ */
2376
+ "caret-color": [{
2377
+ caret: [n]
2378
+ }],
2379
+ /**
2380
+ * Pointer Events
2381
+ * @see https://tailwindcss.com/docs/pointer-events
2382
+ */
2383
+ "pointer-events": [{
2384
+ "pointer-events": ["none", "auto"]
2385
+ }],
2386
+ /**
2387
+ * Resize
2388
+ * @see https://tailwindcss.com/docs/resize
2389
+ */
2390
+ resize: [{
2391
+ resize: ["none", "y", "x", ""]
2392
+ }],
2393
+ /**
2394
+ * Scroll Behavior
2395
+ * @see https://tailwindcss.com/docs/scroll-behavior
2396
+ */
2397
+ "scroll-behavior": [{
2398
+ scroll: ["auto", "smooth"]
2399
+ }],
2400
+ /**
2401
+ * Scroll Margin
2402
+ * @see https://tailwindcss.com/docs/scroll-margin
2403
+ */
2404
+ "scroll-m": [{
2405
+ "scroll-m": [e]
2406
+ }],
2407
+ /**
2408
+ * Scroll Margin X
2409
+ * @see https://tailwindcss.com/docs/scroll-margin
2410
+ */
2411
+ "scroll-mx": [{
2412
+ "scroll-mx": [e]
2413
+ }],
2414
+ /**
2415
+ * Scroll Margin Y
2416
+ * @see https://tailwindcss.com/docs/scroll-margin
2417
+ */
2418
+ "scroll-my": [{
2419
+ "scroll-my": [e]
2420
+ }],
2421
+ /**
2422
+ * Scroll Margin Top
2423
+ * @see https://tailwindcss.com/docs/scroll-margin
2424
+ */
2425
+ "scroll-mt": [{
2426
+ "scroll-mt": [e]
2427
+ }],
2428
+ /**
2429
+ * Scroll Margin Right
2430
+ * @see https://tailwindcss.com/docs/scroll-margin
2431
+ */
2432
+ "scroll-mr": [{
2433
+ "scroll-mr": [e]
2434
+ }],
2435
+ /**
2436
+ * Scroll Margin Bottom
2437
+ * @see https://tailwindcss.com/docs/scroll-margin
2438
+ */
2439
+ "scroll-mb": [{
2440
+ "scroll-mb": [e]
2441
+ }],
2442
+ /**
2443
+ * Scroll Margin Left
2444
+ * @see https://tailwindcss.com/docs/scroll-margin
2445
+ */
2446
+ "scroll-ml": [{
2447
+ "scroll-ml": [e]
2448
+ }],
2449
+ /**
2450
+ * Scroll Padding
2451
+ * @see https://tailwindcss.com/docs/scroll-padding
2452
+ */
2453
+ "scroll-p": [{
2454
+ "scroll-p": [e]
2455
+ }],
2456
+ /**
2457
+ * Scroll Padding X
2458
+ * @see https://tailwindcss.com/docs/scroll-padding
2459
+ */
2460
+ "scroll-px": [{
2461
+ "scroll-px": [e]
2462
+ }],
2463
+ /**
2464
+ * Scroll Padding Y
2465
+ * @see https://tailwindcss.com/docs/scroll-padding
2466
+ */
2467
+ "scroll-py": [{
2468
+ "scroll-py": [e]
2469
+ }],
2470
+ /**
2471
+ * Scroll Padding Top
2472
+ * @see https://tailwindcss.com/docs/scroll-padding
2473
+ */
2474
+ "scroll-pt": [{
2475
+ "scroll-pt": [e]
2476
+ }],
2477
+ /**
2478
+ * Scroll Padding Right
2479
+ * @see https://tailwindcss.com/docs/scroll-padding
2480
+ */
2481
+ "scroll-pr": [{
2482
+ "scroll-pr": [e]
2483
+ }],
2484
+ /**
2485
+ * Scroll Padding Bottom
2486
+ * @see https://tailwindcss.com/docs/scroll-padding
2487
+ */
2488
+ "scroll-pb": [{
2489
+ "scroll-pb": [e]
2490
+ }],
2491
+ /**
2492
+ * Scroll Padding Left
2493
+ * @see https://tailwindcss.com/docs/scroll-padding
2494
+ */
2495
+ "scroll-pl": [{
2496
+ "scroll-pl": [e]
2497
+ }],
2498
+ /**
2499
+ * Scroll Snap Align
2500
+ * @see https://tailwindcss.com/docs/scroll-snap-align
2501
+ */
2502
+ "snap-align": [{
2503
+ snap: ["start", "end", "center", "align-none"]
2504
+ }],
2505
+ /**
2506
+ * Scroll Snap Stop
2507
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
2508
+ */
2509
+ "snap-stop": [{
2510
+ snap: ["normal", "always"]
2511
+ }],
2512
+ /**
2513
+ * Scroll Snap Type
2514
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2515
+ */
2516
+ "snap-type": [{
2517
+ snap: ["none", "x", "y", "both"]
2518
+ }],
2519
+ /**
2520
+ * Scroll Snap Type Strictness
2521
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2522
+ */
2523
+ "snap-strictness": [{
2524
+ snap: ["mandatory", "proximity"]
2525
+ }],
2526
+ /**
2527
+ * Touch Action
2528
+ * @see https://tailwindcss.com/docs/touch-action
2529
+ */
2530
+ touch: [{
2531
+ touch: ["auto", "none", "pinch-zoom", "manipulation", {
2532
+ pan: ["x", "left", "right", "y", "up", "down"]
2533
+ }]
2534
+ }],
2535
+ /**
2536
+ * User Select
2537
+ * @see https://tailwindcss.com/docs/user-select
2538
+ */
2539
+ select: [{
2540
+ select: ["none", "text", "all", "auto"]
2541
+ }],
2542
+ /**
2543
+ * Will Change
2544
+ * @see https://tailwindcss.com/docs/will-change
2545
+ */
2546
+ "will-change": [{
2547
+ "will-change": ["auto", "scroll", "contents", "transform", h]
2548
+ }],
2549
+ // SVG
2550
+ /**
2551
+ * Fill
2552
+ * @see https://tailwindcss.com/docs/fill
2553
+ */
2554
+ fill: [{
2555
+ fill: [n, "none"]
2556
+ }],
2557
+ /**
2558
+ * Stroke Width
2559
+ * @see https://tailwindcss.com/docs/stroke-width
2560
+ */
2561
+ "stroke-w": [{
2562
+ stroke: [P, ge]
2563
+ }],
2564
+ /**
2565
+ * Stroke
2566
+ * @see https://tailwindcss.com/docs/stroke
2567
+ */
2568
+ stroke: [{
2569
+ stroke: [n, "none"]
2570
+ }],
2571
+ // Accessibility
2572
+ /**
2573
+ * Screen Readers
2574
+ * @see https://tailwindcss.com/docs/screen-readers
2575
+ */
2576
+ sr: ["sr-only", "not-sr-only"]
2577
+ },
2578
+ conflictingClassGroups: {
2579
+ overflow: ["overflow-x", "overflow-y"],
2580
+ overscroll: ["overscroll-x", "overscroll-y"],
2581
+ inset: ["inset-x", "inset-y", "top", "right", "bottom", "left"],
2582
+ "inset-x": ["right", "left"],
2583
+ "inset-y": ["top", "bottom"],
2584
+ flex: ["basis", "grow", "shrink"],
2585
+ "col-start-end": ["col-start", "col-end"],
2586
+ "row-start-end": ["row-start", "row-end"],
2587
+ gap: ["gap-x", "gap-y"],
2588
+ p: ["px", "py", "pt", "pr", "pb", "pl"],
2589
+ px: ["pr", "pl"],
2590
+ py: ["pt", "pb"],
2591
+ m: ["mx", "my", "mt", "mr", "mb", "ml"],
2592
+ mx: ["mr", "ml"],
2593
+ my: ["mt", "mb"],
2594
+ "font-size": ["leading"],
2595
+ "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
2596
+ "fvn-ordinal": ["fvn-normal"],
2597
+ "fvn-slashed-zero": ["fvn-normal"],
2598
+ "fvn-figure": ["fvn-normal"],
2599
+ "fvn-spacing": ["fvn-normal"],
2600
+ "fvn-fraction": ["fvn-normal"],
2601
+ rounded: ["rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
2602
+ "rounded-t": ["rounded-tl", "rounded-tr"],
2603
+ "rounded-r": ["rounded-tr", "rounded-br"],
2604
+ "rounded-b": ["rounded-br", "rounded-bl"],
2605
+ "rounded-l": ["rounded-tl", "rounded-bl"],
2606
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
2607
+ "border-w": ["border-w-t", "border-w-r", "border-w-b", "border-w-l"],
2608
+ "border-w-x": ["border-w-r", "border-w-l"],
2609
+ "border-w-y": ["border-w-t", "border-w-b"],
2610
+ "border-color": ["border-color-t", "border-color-r", "border-color-b", "border-color-l"],
2611
+ "border-color-x": ["border-color-r", "border-color-l"],
2612
+ "border-color-y": ["border-color-t", "border-color-b"],
2613
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2614
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
2615
+ "scroll-my": ["scroll-mt", "scroll-mb"],
2616
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
2617
+ "scroll-px": ["scroll-pr", "scroll-pl"],
2618
+ "scroll-py": ["scroll-pt", "scroll-pb"]
2619
+ }
2620
+ };
2621
+ }
2622
+ var zr = /* @__PURE__ */ Ir(Gr);
2623
+ var Vr = typeof window > "u";
2624
+ function me(n, e, r, t) {
2625
+ var i, o = 0;
2626
+ typeof e != "boolean" && (t = r, r = e, e = void 0);
2627
+ function s() {
2628
+ var a = this, l = (/* @__PURE__ */ new Date()).valueOf() - o, u = arguments;
2629
+ function c() {
2630
+ o = (/* @__PURE__ */ new Date()).valueOf(), r.apply(a, u);
2631
+ }
2632
+ function d() {
2633
+ i = void 0;
2634
+ }
2635
+ t && !i && c(), i && clearTimeout(i);
2636
+ var v = t === void 0;
2637
+ v && l > n ? c() : e !== !0 && (i = setTimeout(t ? d : c, v ? n - l : n));
2638
+ }
2639
+ return s;
2640
+ }
2641
+ function Lr(n, e, r) {
2642
+ return r === void 0 ? me(n, e, !1) : me(n, r, e !== !1);
2643
+ }
2644
+ var Wr = function() {
2645
+ if (!Vr) {
2646
+ var e = f.ref(""), r = ["2xl", "xl", "lg", "md", "sm"], t = {
2647
+ "2xl": window.matchMedia("(min-width:1536px)"),
2648
+ xl: window.matchMedia("(min-width:1280px)"),
2649
+ lg: window.matchMedia("(min-width:1024px)"),
2650
+ md: window.matchMedia("(min-width:768px)"),
2651
+ sm: window.matchMedia("(min-width:640px)")
2652
+ }, i = function() {
2653
+ for (var a = 0; a < r.length; a++) {
2654
+ var l = r[a];
2655
+ if (t[l].matches) {
2656
+ e.value = l;
2657
+ return;
2658
+ }
2659
+ }
2660
+ e.value = "default";
2661
+ }, o = Lr(0, function() {
2662
+ return i();
2663
+ });
2664
+ return i(), r.forEach(function(s) {
2665
+ return t[s].addEventListener("change", o);
2666
+ }), f.onBeforeUnmount(function() {
2667
+ r.forEach(function(s) {
2668
+ return t[s].removeEventListener("change", o);
2669
+ });
2670
+ }), {
2671
+ current: e
2672
+ };
2673
+ }
2674
+ };
2675
+ function tt() {
2676
+ var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 100, e = f.ref(0), r;
2677
+ function t() {
2678
+ r = requestAnimationFrame(function() {
2679
+ e.value++, !(e.value >= n) && t();
2680
+ });
2681
+ }
2682
+ function i() {
2683
+ r && (cancelAnimationFrame(r), r = 0);
2684
+ }
2685
+ return t(), f.onBeforeUnmount(function() {
2686
+ return i();
2687
+ }), {
2688
+ defer: function(s) {
2689
+ return e.value >= s;
2690
+ },
2691
+ reset: function() {
2692
+ i(), e.value = 0, t();
2693
+ },
2694
+ cancel: i
2695
+ };
2696
+ }
2697
+ const nt = "3.16.0";
2698
+ var Z = "Tiny", Nr = {
2699
+ tiny_mode: String,
2700
+ tiny_mode_root: Boolean,
2701
+ tiny_template: [Function, Object],
2702
+ tiny_renderless: Function,
2703
+ tiny_theme: String,
2704
+ tiny_chart_theme: Object
2705
+ }, Br = ["tiny_mode", "tiny_mode_root", "tiny_template", "tiny_renderless", "_constants", "tiny_theme", "tiny_chart_theme"], ae = function(e, r) {
2706
+ var t = function(d) {
2707
+ return ~["pc", "mobile", "mobile-first"].indexOf(d);
2708
+ }, i = oe(r), o = typeof e.tiny_mode == "string" ? e.tiny_mode : null, s = f.inject("TinyMode", null), a;
2709
+ typeof i.tiny_mode == "string" ? a = i.tiny_mode : i.tiny_mode && (a = i.tiny_mode.value), t(o) || (o = null), t(s) || (s = null), t(a) || (a = null);
2710
+ var l = o || s || a || "pc";
2711
+ e.tiny_mode_root && f.provide("TinyMode", l);
2712
+ var u = f.getCurrentInstance();
2713
+ return Object.defineProperty(u, "_tiny_mode", {
2714
+ value: l
2715
+ }), l;
2716
+ }, Fr = function(e, r) {
2717
+ var t = function(c) {
2718
+ return ~["tiny", "saas"].indexOf(c);
2719
+ }, i = oe(r), o = typeof e.tiny_theme == "string" ? e.tiny_theme : null, s = f.inject("TinyTheme", null), a = i.tiny_theme && i.tiny_theme.value;
2720
+ t(o) || (o = null), t(s) || (s = null), t(a) || (a = null);
2721
+ var l = o || s || a || "tiny";
2722
+ return l;
2723
+ }, Ur = function(e, r) {
2724
+ var t = oe(r), i = S(e.tiny_chart_theme) === "object" ? e.tiny_chart_theme : null, o = f.inject("TinyChartTheme", null), s = t.tiny_chart_theme && t.tiny_chart_theme.value, a = i || o || s || null;
2725
+ return a;
2726
+ }, Kr = function(e) {
2727
+ var r = e.props, t = e.context, i = e.template, o = e.extend, s = o === void 0 ? {} : o, a = ae(r, t), l = f.computed(function() {
2728
+ if (typeof r.tiny_template < "u")
2729
+ return r.tiny_template;
2730
+ var u = i(a, r);
2731
+ return typeof u == "function" ? ye(u) : u;
2732
+ });
2733
+ return he({
2734
+ view: l,
2735
+ props: r,
2736
+ context: t,
2737
+ extend: s
2738
+ });
2739
+ }, re = function() {
2740
+ for (var e = arguments.length, r = new Array(e), t = 0; t < e; t++)
2741
+ r[t] = arguments[t];
2742
+ return zr(pr(r));
2743
+ }, q = {
2744
+ configKey: Symbol("designConfigKey"),
2745
+ configInstance: null
2746
+ }, ot = function(e) {
2747
+ Object.keys(e).length && (f.provide(q.configKey, e), q.configInstance = e);
2748
+ }, Hr = ur(q), Zr = {
2749
+ designConfig: null
2750
+ }, qr = function(e) {
2751
+ var r, t, i = e.props, o = e.context, s = e.renderless, a = e.api, l = e.extendOptions, u = l === void 0 ? {} : l, c = e.mono, d = c === void 0 ? !1 : c, v = e.classes, b = v === void 0 ? {} : v, y = typeof i.tiny_renderless == "function" ? i.tiny_renderless : s, x = Zr.designConfig || f.inject(q.configKey, {}), p = x == null || (r = x.components) === null || r === void 0 ? void 0 : r[Ke().replace(Z, "")], j = (typeof process > "u" ? "undefined" : S(process)) === "object" ? (t = process.env) === null || t === void 0 ? void 0 : t.TINY_MODE : null, m = N(N({
2752
+ $prefix: Z,
2753
+ t: ue
2754
+ }, er(o, ae(i, o))), {}, {
2755
+ designConfig: p,
2756
+ globalDesignConfig: x,
2757
+ useBreakpoint: Wr
2758
+ });
2759
+ j !== "pc" && (m.mergeClass = re), m.vm.theme = Fr(i, o), m.vm.chartTheme = Ur(i, o);
2760
+ var C = y(i, f, m, u);
2761
+ typeof (p == null ? void 0 : p.renderless) == "function" && Object.assign(C, p.renderless(i, f, m, C));
2762
+ var A = {
2763
+ t: ue,
2764
+ vm: m.vm,
2765
+ f: Ne,
2766
+ a: _e,
2767
+ d: m.defineInstanceProperties,
2768
+ dp: m.defineParentInstanceProperties,
2769
+ gcls: function(_) {
2770
+ return Fe(b, _);
2771
+ }
2772
+ };
2773
+ return j !== "pc" && (A.m = re), A.d({
2774
+ slots: {
2775
+ get: function() {
2776
+ return m.vm.$slots;
2777
+ },
2778
+ configurable: !0
2779
+ },
2780
+ scopedSlots: {
2781
+ get: function() {
2782
+ return m.vm.$scopedSlots;
2783
+ },
2784
+ configurable: !0
2785
+ }
2786
+ }), A.dp({
2787
+ slots: {
2788
+ get: function() {
2789
+ return m.parent.$slots;
2790
+ },
2791
+ configurable: !0
2792
+ },
2793
+ scopedSlots: {
2794
+ get: function() {
2795
+ return m.parent.$scopedSlots;
2796
+ },
2797
+ configurable: !0
2798
+ }
2799
+ }), Oe(), Array.isArray(a) && (Array.isArray(p == null ? void 0 : p.api) && (a = a.concat(p.api)), a.forEach(function(w) {
2800
+ var _ = C[w];
2801
+ typeof _ < "u" && (A[w] = _, d || m.setParentAttribute({
2802
+ name: w,
2803
+ value: _
2804
+ }));
2805
+ })), A;
2806
+ };
2807
+ function Qr(n) {
2808
+ var e = n.name, r = e === void 0 ? "Icon" : e, t = n.component;
2809
+ return function(i) {
2810
+ return Ue(cr({
2811
+ name: Z + r,
2812
+ setup: function(s, a) {
2813
+ var l, u = a.attrs || {}, c = u.fill, d = u.width, v = u.height, b = u["custom-class"], y = Object.assign({}, s, i || null), x = ae(y, a), p = x === "mobile-first", j = {
2814
+ "data-tag": p ? "tiny-svg" : null
2815
+ }, m = j, C = "tiny-svg", A = (typeof process > "u" ? "undefined" : S(process)) === "object" ? (l = process.env) === null || l === void 0 ? void 0 : l.TINY_MODE : null;
2816
+ A !== "pc" && p && (C = re("h-4 w-4 inline-block", b || "", y.class || ""));
2817
+ var w = Object.assign({
2818
+ style: {
2819
+ fill: c,
2820
+ width: d,
2821
+ height: v
2822
+ },
2823
+ class: C,
2824
+ isSvg: !0
2825
+ }, m);
2826
+ return w.nativeOn = a.listeners, he({
2827
+ component: t,
2828
+ props: y,
2829
+ context: a,
2830
+ extend: w
2831
+ });
2832
+ }
2833
+ }));
2834
+ };
2835
+ }
2836
+ var _e = function(e, r, t) {
2837
+ var i = {}, o = function(l) {
2838
+ var u = r.some(function(c) {
2839
+ return new RegExp(c).test(l);
2840
+ });
2841
+ (t && u || !t && !u) && (i[l] = e[l]);
2842
+ };
2843
+ for (var s in e)
2844
+ o(s);
2845
+ return i;
2846
+ }, K = {}, Oe = function() {
2847
+ for (var e in K) {
2848
+ var r = K[e];
2849
+ typeof r.install == "function" && r.install(He()), typeof r.init == "function" && r.init(Ze());
2850
+ }
2851
+ K = {};
2852
+ }, Yr = function(e) {
2853
+ e.install = function(r) {
2854
+ r.component(e.name, e);
2855
+ };
2856
+ };
2857
+ const it = {
2858
+ h: lr,
2859
+ directive: rr,
2860
+ parseVnode: tr,
2861
+ isEmptyVnode: ir,
2862
+ useRouter: xe,
2863
+ emitter: ne,
2864
+ createComponent: Hr,
2865
+ defineAsyncComponent: ye,
2866
+ filterAttrs: _e,
2867
+ initComponent: Oe,
2868
+ setupComponent: K,
2869
+ svg: Qr,
2870
+ $prefix: Z,
2871
+ $props: Nr,
2872
+ props: Br,
2873
+ $setup: Kr,
2874
+ setup: qr,
2875
+ hooks: f,
2876
+ getElementStatusClass: Be,
2877
+ $install: Yr,
2878
+ isVnode: fr
2879
+ };
2880
+ export {
2881
+ Yr as $install,
2882
+ Z as $prefix,
2883
+ Nr as $props,
2884
+ Kr as $setup,
2885
+ rt as KeepAlive,
2886
+ Xr as Teleport,
2887
+ Ze as appProperties,
2888
+ Hr as createComponent,
2889
+ Zr as customDesignConfig,
2890
+ it as default,
2891
+ ye as defineAsyncComponent,
2892
+ cr as defineComponent,
2893
+ q as design,
2894
+ rr as directive,
2895
+ ne as emitter,
2896
+ _e as filterAttrs,
2897
+ Be as getElementStatusClass,
2898
+ lr as h,
2899
+ f as hooks,
2900
+ Oe as initComponent,
2901
+ ir as isEmptyVnode,
2902
+ fr as isVnode,
2903
+ Dr as isVue2,
2904
+ et as isVue3,
2905
+ re as mergeClass,
2906
+ tr as parseVnode,
2907
+ Br as props,
2908
+ ot as provideDesignConfig,
2909
+ ae as resolveMode,
2910
+ Fr as resolveTheme,
2911
+ qr as setup,
2912
+ K as setupComponent,
2913
+ Qr as svg,
2914
+ Wr as useBreakpoint,
2915
+ tt as useDefer,
2916
+ xe as useRouter,
2917
+ nt as version
2918
+ };