@dazhicheng/ui 1.5.203 → 1.5.205

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