zudoku 0.3.0-dev.30 → 0.3.0-dev.32

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 (224) hide show
  1. package/dist/app/App.d.ts +1 -0
  2. package/dist/app/App.js +2 -0
  3. package/dist/app/App.js.map +1 -0
  4. package/dist/app/demo.js +15 -11
  5. package/dist/app/demo.js.map +1 -1
  6. package/dist/app/entry.client.d.ts +5 -0
  7. package/dist/app/entry.client.js +28 -0
  8. package/dist/app/entry.client.js.map +1 -0
  9. package/dist/app/entry.server.d.ts +10 -0
  10. package/dist/app/entry.server.js +107 -0
  11. package/dist/app/entry.server.js.map +1 -0
  12. package/dist/app/main.d.ts +26 -2
  13. package/dist/app/main.js +39 -15
  14. package/dist/app/main.js.map +1 -1
  15. package/dist/app/standalone.js +14 -10
  16. package/dist/app/standalone.js.map +1 -1
  17. package/dist/app/tailwind.d.ts +1 -1
  18. package/dist/app/tailwind.js +0 -4
  19. package/dist/app/tailwind.js.map +1 -1
  20. package/dist/app/zudoku-manifest.d.ts +1 -0
  21. package/dist/app/zudoku-manifest.js +20 -0
  22. package/dist/app/zudoku-manifest.js.map +1 -0
  23. package/dist/cli/cmds/dev.js +5 -0
  24. package/dist/cli/cmds/dev.js.map +1 -1
  25. package/dist/cli/dev/handler.d.ts +1 -0
  26. package/dist/cli/dev/handler.js +3 -1
  27. package/dist/cli/dev/handler.js.map +1 -1
  28. package/dist/config/config.d.ts +5 -0
  29. package/dist/lib/authentication/providers/clerk.js +2 -0
  30. package/dist/lib/authentication/providers/clerk.js.map +1 -1
  31. package/dist/lib/components/DevPortal.d.ts +5 -2
  32. package/dist/lib/components/DevPortal.js +11 -10
  33. package/dist/lib/components/DevPortal.js.map +1 -1
  34. package/dist/lib/components/ErrorPage.d.ts +6 -0
  35. package/dist/lib/components/ErrorPage.js +9 -0
  36. package/dist/lib/components/ErrorPage.js.map +1 -0
  37. package/dist/lib/components/InlineCode.d.ts +5 -0
  38. package/dist/lib/components/InlineCode.js +4 -0
  39. package/dist/lib/components/InlineCode.js.map +1 -0
  40. package/dist/lib/components/Layout.js +2 -1
  41. package/dist/lib/components/Layout.js.map +1 -1
  42. package/dist/lib/components/NotFoundPage.d.ts +1 -0
  43. package/dist/lib/components/NotFoundPage.js +12 -0
  44. package/dist/lib/components/NotFoundPage.js.map +1 -0
  45. package/dist/lib/components/SyntaxHighlight.d.ts +3 -2
  46. package/dist/lib/components/SyntaxHighlight.js +20 -22
  47. package/dist/lib/components/SyntaxHighlight.js.map +1 -1
  48. package/dist/lib/components/index.d.ts +4 -1
  49. package/dist/lib/errors/ErrorAlert.d.ts +3 -0
  50. package/dist/lib/errors/ErrorAlert.js +8 -0
  51. package/dist/lib/errors/ErrorAlert.js.map +1 -0
  52. package/dist/lib/errors/RouterError.d.ts +1 -0
  53. package/dist/lib/errors/RouterError.js +12 -0
  54. package/dist/lib/errors/RouterError.js.map +1 -0
  55. package/dist/lib/errors/ServerError.d.ts +3 -0
  56. package/dist/lib/errors/ServerError.js +6 -0
  57. package/dist/lib/errors/ServerError.js.map +1 -0
  58. package/dist/lib/errors/TopLevelError.d.ts +2 -0
  59. package/dist/lib/errors/TopLevelError.js +7 -0
  60. package/dist/lib/errors/TopLevelError.js.map +1 -0
  61. package/dist/lib/oas/parser/index.d.ts +1 -1
  62. package/dist/lib/oas/parser/index.js +38 -14
  63. package/dist/lib/oas/parser/index.js.map +1 -1
  64. package/dist/lib/plugins/api-keys/index.js +3 -8
  65. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  66. package/dist/lib/plugins/markdown/generateRoutes.js.map +1 -1
  67. package/dist/lib/plugins/markdown/index.js +3 -7
  68. package/dist/lib/plugins/markdown/index.js.map +1 -1
  69. package/dist/lib/plugins/openapi/OperationList.js +11 -1
  70. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  71. package/dist/lib/plugins/openapi/OperationListItem.js +2 -1
  72. package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
  73. package/dist/lib/plugins/openapi/SchemaListView.js +2 -1
  74. package/dist/lib/plugins/openapi/SchemaListView.js.map +1 -1
  75. package/dist/lib/plugins/openapi/client/createMemoryClient.js +1 -1
  76. package/dist/lib/plugins/openapi/client/createMemoryClient.js.map +1 -1
  77. package/dist/lib/plugins/openapi/index.js +9 -1
  78. package/dist/lib/plugins/openapi/index.js.map +1 -1
  79. package/dist/lib/plugins/redirect/index.js +2 -3
  80. package/dist/lib/plugins/redirect/index.js.map +1 -1
  81. package/dist/lib/ui/Callout.js +1 -1
  82. package/dist/lib/ui/Callout.js.map +1 -1
  83. package/dist/lib/ui/button-variants.d.ts +1 -1
  84. package/dist/lib/util/MdxComponents.js +2 -2
  85. package/dist/lib/util/MdxComponents.js.map +1 -1
  86. package/dist/lib/util/groupBy.d.ts +1 -6
  87. package/dist/lib/util/groupBy.js +10 -8
  88. package/dist/lib/util/groupBy.js.map +1 -1
  89. package/dist/vite/build.js +23 -10
  90. package/dist/vite/build.js.map +1 -1
  91. package/dist/vite/config.d.ts +2 -2
  92. package/dist/vite/config.js +36 -8
  93. package/dist/vite/config.js.map +1 -1
  94. package/dist/vite/dev-server.d.ts +1 -1
  95. package/dist/vite/dev-server.js +15 -9
  96. package/dist/vite/dev-server.js.map +1 -1
  97. package/dist/vite/html.js +5 -4
  98. package/dist/vite/html.js.map +1 -1
  99. package/dist/vite/plugin-custom-css.d.ts +6 -0
  100. package/dist/vite/plugin-custom-css.js +55 -0
  101. package/dist/vite/plugin-custom-css.js.map +1 -0
  102. package/dist/vite/plugin-docs.js +14 -5
  103. package/dist/vite/plugin-docs.js.map +1 -1
  104. package/dist/vite/plugin-openapi-worker.js +4 -1
  105. package/dist/vite/plugin-openapi-worker.js.map +1 -1
  106. package/dist/vite/plugin.js +2 -0
  107. package/dist/vite/plugin.js.map +1 -1
  108. package/dist/vite/prerender.d.ts +1 -0
  109. package/dist/vite/prerender.js +57 -0
  110. package/dist/vite/prerender.js.map +1 -0
  111. package/lib/{DevPortalProvider--xZTs0RJ.js → DevPortalProvider-BlxLX6GG.js} +230 -250
  112. package/lib/DevPortalProvider-BlxLX6GG.js.map +1 -0
  113. package/lib/{Markdown-oJFqm0uk.js → Markdown-CL8KPvJN.js} +8 -9
  114. package/lib/{Markdown-oJFqm0uk.js.map → Markdown-CL8KPvJN.js.map} +1 -1
  115. package/lib/MdxComponents-Ev_hBHb2.js +5885 -0
  116. package/lib/MdxComponents-Ev_hBHb2.js.map +1 -0
  117. package/lib/{MdxPage-BV_9ncEk.js → MdxPage-Z3HKNTrj.js} +92 -89
  118. package/lib/MdxPage-Z3HKNTrj.js.map +1 -0
  119. package/lib/{OperationList-DfG_E0Xa.js → OperationList-KoITgfDT.js} +1967 -1785
  120. package/lib/OperationList-KoITgfDT.js.map +1 -0
  121. package/lib/Route-Bf1_D_vC.js +13 -0
  122. package/lib/{Route-CHqr53jb.js.map → Route-Bf1_D_vC.js.map} +1 -1
  123. package/lib/Select-DSa3bN4t.js +4770 -0
  124. package/lib/Select-DSa3bN4t.js.map +1 -0
  125. package/lib/assets/{worker-BXS8hiSM.js → worker-BjPv-hjP.js} +3100 -2720
  126. package/lib/assets/worker-BjPv-hjP.js.map +1 -0
  127. package/lib/hook-CTmJ6CWq.js +35 -0
  128. package/lib/hook-CTmJ6CWq.js.map +1 -0
  129. package/lib/index-BdWBDosx.js +74 -0
  130. package/lib/index-BdWBDosx.js.map +1 -0
  131. package/lib/{index-B2qLeglF.js → index-BoWzKb_9.js} +57 -41
  132. package/lib/index-BoWzKb_9.js.map +1 -0
  133. package/lib/{AnchorLink-BtVKbEwm.js → index.esm-CPEExBJE.js} +156 -168
  134. package/lib/index.esm-CPEExBJE.js.map +1 -0
  135. package/lib/jsx-runtime-CM0TzjGp.js +866 -0
  136. package/lib/jsx-runtime-CM0TzjGp.js.map +1 -0
  137. package/lib/mutation-91kw0lHb.js +208 -0
  138. package/lib/mutation-91kw0lHb.js.map +1 -0
  139. package/lib/router-CcYTwKjf.js +183 -0
  140. package/lib/router-CcYTwKjf.js.map +1 -0
  141. package/lib/zudoku.auth-clerk.js.map +1 -1
  142. package/lib/zudoku.auth-openid.js +588 -441
  143. package/lib/zudoku.auth-openid.js.map +1 -1
  144. package/lib/zudoku.components.js +330 -543
  145. package/lib/zudoku.components.js.map +1 -1
  146. package/lib/zudoku.openapi-worker.js +18 -18
  147. package/lib/zudoku.plugin-api-keys.js +143 -98
  148. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  149. package/lib/zudoku.plugin-markdown.js +2 -49
  150. package/lib/zudoku.plugin-markdown.js.map +1 -1
  151. package/lib/zudoku.plugin-openapi.js +5 -3
  152. package/lib/zudoku.plugin-openapi.js.map +1 -1
  153. package/lib/zudoku.plugin-redirect.js +6 -7
  154. package/lib/zudoku.plugin-redirect.js.map +1 -1
  155. package/package.json +3 -1
  156. package/src/app/App.tsx +0 -0
  157. package/src/app/demo.tsx +18 -13
  158. package/src/app/entry.client.tsx +51 -0
  159. package/src/app/entry.server.tsx +158 -0
  160. package/src/app/main.tsx +65 -41
  161. package/src/app/standalone.tsx +15 -11
  162. package/src/app/tailwind.ts +2 -6
  163. package/src/app/zudoku-manifest.ts +22 -0
  164. package/src/lib/authentication/providers/clerk.tsx +1 -0
  165. package/src/lib/components/DevPortal.tsx +34 -33
  166. package/src/lib/components/ErrorPage.tsx +28 -0
  167. package/src/lib/components/InlineCode.tsx +19 -0
  168. package/src/lib/components/Layout.tsx +7 -4
  169. package/src/lib/components/NotFoundPage.tsx +39 -0
  170. package/src/lib/components/SyntaxHighlight.tsx +26 -22
  171. package/src/lib/errors/ErrorAlert.tsx +21 -0
  172. package/src/lib/errors/RouterError.tsx +13 -0
  173. package/src/lib/errors/ServerError.tsx +5 -0
  174. package/src/lib/errors/TopLevelError.tsx +8 -0
  175. package/src/lib/oas/parser/index.ts +41 -22
  176. package/src/lib/plugins/api-keys/index.tsx +4 -16
  177. package/src/lib/plugins/markdown/generateRoutes.tsx +1 -1
  178. package/src/lib/plugins/markdown/index.tsx +3 -7
  179. package/src/lib/plugins/openapi/OperationList.tsx +30 -0
  180. package/src/lib/plugins/openapi/OperationListItem.tsx +3 -1
  181. package/src/lib/plugins/openapi/SchemaListView.tsx +8 -10
  182. package/src/lib/plugins/openapi/client/createMemoryClient.ts +1 -1
  183. package/src/lib/plugins/openapi/index.tsx +18 -1
  184. package/src/lib/plugins/redirect/index.tsx +2 -2
  185. package/src/lib/ui/Callout.tsx +2 -2
  186. package/src/lib/util/MdxComponents.tsx +2 -11
  187. package/src/lib/util/groupBy.ts +7 -12
  188. package/dist/lib/components/Error.d.ts +0 -1
  189. package/dist/lib/components/Error.js +0 -10
  190. package/dist/lib/components/Error.js.map +0 -1
  191. package/dist/lib/components/Router.d.ts +0 -4
  192. package/dist/lib/components/Router.js +0 -21
  193. package/dist/lib/components/Router.js.map +0 -1
  194. package/lib/AnchorLink-BtVKbEwm.js.map +0 -1
  195. package/lib/DevPortalProvider--xZTs0RJ.js.map +0 -1
  196. package/lib/MdxComponents-CsU8yR42.js +0 -3019
  197. package/lib/MdxComponents-CsU8yR42.js.map +0 -1
  198. package/lib/MdxPage-BV_9ncEk.js.map +0 -1
  199. package/lib/OperationList-DfG_E0Xa.js.map +0 -1
  200. package/lib/Route-CHqr53jb.js +0 -14
  201. package/lib/Select-CNmXi4JU.js +0 -4572
  202. package/lib/Select-CNmXi4JU.js.map +0 -1
  203. package/lib/Spinner-By5opWs5.js +0 -182
  204. package/lib/Spinner-By5opWs5.js.map +0 -1
  205. package/lib/assets/worker-BXS8hiSM.js.map +0 -1
  206. package/lib/cn-DpqTslo9.js +0 -2342
  207. package/lib/cn-DpqTslo9.js.map +0 -1
  208. package/lib/hook-kVJ4gpk5.js +0 -25
  209. package/lib/hook-kVJ4gpk5.js.map +0 -1
  210. package/lib/index-B2qLeglF.js.map +0 -1
  211. package/lib/index-CUIxJAeE.js +0 -713
  212. package/lib/index-CUIxJAeE.js.map +0 -1
  213. package/lib/index-Cr3hgaqt.js +0 -412
  214. package/lib/index-Cr3hgaqt.js.map +0 -1
  215. package/lib/index-fXFJf9Ua.js +0 -464
  216. package/lib/index-fXFJf9Ua.js.map +0 -1
  217. package/lib/jsx-runtime-D7DwziLW.js +0 -3009
  218. package/lib/jsx-runtime-D7DwziLW.js.map +0 -1
  219. package/lib/loglevel-CA34MiFn.js +0 -153
  220. package/lib/loglevel-CA34MiFn.js.map +0 -1
  221. package/lib/util-DnDPBx_j.js +0 -41
  222. package/lib/util-DnDPBx_j.js.map +0 -1
  223. package/src/lib/components/Error.tsx +0 -15
  224. package/src/lib/components/Router.tsx +0 -23
@@ -1,2342 +0,0 @@
1
- function D(e) {
2
- var r, t, o = "";
3
- if (typeof e == "string" || typeof e == "number") o += e;
4
- else if (typeof e == "object") if (Array.isArray(e)) {
5
- var i = e.length;
6
- for (r = 0; r < i; r++) e[r] && (t = D(e[r])) && (o && (o += " "), o += t);
7
- } else for (t in e) e[t] && (o && (o += " "), o += t);
8
- return o;
9
- }
10
- function se() {
11
- for (var e, r, t = 0, o = "", i = arguments.length; t < i; t++) (e = arguments[t]) && (r = D(e)) && (o && (o += " "), o += r);
12
- return o;
13
- }
14
- const $ = "-";
15
- function ie(e) {
16
- const r = ae(e), {
17
- conflictingClassGroups: t,
18
- conflictingClassGroupModifiers: o
19
- } = e;
20
- function i(s) {
21
- const a = s.split($);
22
- return a[0] === "" && a.length !== 1 && a.shift(), ee(a, r) || le(s);
23
- }
24
- function n(s, a) {
25
- const u = t[s] || [];
26
- return a && o[s] ? [...u, ...o[s]] : u;
27
- }
28
- return {
29
- getClassGroupId: i,
30
- getConflictingClassGroupIds: n
31
- };
32
- }
33
- function ee(e, r) {
34
- var s;
35
- if (e.length === 0)
36
- return r.classGroupId;
37
- const t = e[0], o = r.nextPart.get(t), i = o ? ee(e.slice(1), o) : void 0;
38
- if (i)
39
- return i;
40
- if (r.validators.length === 0)
41
- return;
42
- const n = e.join($);
43
- return (s = r.validators.find(({
44
- validator: a
45
- }) => a(n))) == null ? void 0 : s.classGroupId;
46
- }
47
- const Q = /^\[(.+)\]$/;
48
- function le(e) {
49
- if (Q.test(e)) {
50
- const r = Q.exec(e)[1], t = r == null ? void 0 : r.substring(0, r.indexOf(":"));
51
- if (t)
52
- return "arbitrary.." + t;
53
- }
54
- }
55
- function ae(e) {
56
- const {
57
- theme: r,
58
- prefix: t
59
- } = e, o = {
60
- nextPart: /* @__PURE__ */ new Map(),
61
- validators: []
62
- };
63
- return de(Object.entries(e.classGroups), t).forEach(([n, s]) => {
64
- _(s, o, n, r);
65
- }), o;
66
- }
67
- function _(e, r, t, o) {
68
- e.forEach((i) => {
69
- if (typeof i == "string") {
70
- const n = i === "" ? r : Y(r, i);
71
- n.classGroupId = t;
72
- return;
73
- }
74
- if (typeof i == "function") {
75
- if (ce(i)) {
76
- _(i(o), r, t, o);
77
- return;
78
- }
79
- r.validators.push({
80
- validator: i,
81
- classGroupId: t
82
- });
83
- return;
84
- }
85
- Object.entries(i).forEach(([n, s]) => {
86
- _(s, Y(r, n), t, o);
87
- });
88
- });
89
- }
90
- function Y(e, r) {
91
- let t = e;
92
- return r.split($).forEach((o) => {
93
- t.nextPart.has(o) || t.nextPart.set(o, {
94
- nextPart: /* @__PURE__ */ new Map(),
95
- validators: []
96
- }), t = t.nextPart.get(o);
97
- }), t;
98
- }
99
- function ce(e) {
100
- return e.isThemeGetter;
101
- }
102
- function de(e, r) {
103
- return r ? e.map(([t, o]) => {
104
- const i = o.map((n) => typeof n == "string" ? r + n : typeof n == "object" ? Object.fromEntries(Object.entries(n).map(([s, a]) => [r + s, a])) : n);
105
- return [t, i];
106
- }) : e;
107
- }
108
- function ue(e) {
109
- if (e < 1)
110
- return {
111
- get: () => {
112
- },
113
- set: () => {
114
- }
115
- };
116
- let r = 0, t = /* @__PURE__ */ new Map(), o = /* @__PURE__ */ new Map();
117
- function i(n, s) {
118
- t.set(n, s), r++, r > e && (r = 0, o = t, t = /* @__PURE__ */ new Map());
119
- }
120
- return {
121
- get(n) {
122
- let s = t.get(n);
123
- if (s !== void 0)
124
- return s;
125
- if ((s = o.get(n)) !== void 0)
126
- return i(n, s), s;
127
- },
128
- set(n, s) {
129
- t.has(n) ? t.set(n, s) : i(n, s);
130
- }
131
- };
132
- }
133
- const re = "!";
134
- function pe(e) {
135
- const r = e.separator, t = r.length === 1, o = r[0], i = r.length;
136
- return function(s) {
137
- const a = [];
138
- let u = 0, f = 0, p;
139
- for (let b = 0; b < s.length; b++) {
140
- let m = s[b];
141
- if (u === 0) {
142
- if (m === o && (t || s.slice(b, b + i) === r)) {
143
- a.push(s.slice(f, b)), f = b + i;
144
- continue;
145
- }
146
- if (m === "/") {
147
- p = b;
148
- continue;
149
- }
150
- }
151
- m === "[" ? u++ : m === "]" && u--;
152
- }
153
- const g = a.length === 0 ? s : s.substring(f), h = g.startsWith(re), w = h ? g.substring(1) : g, S = p && p > f ? p - f : void 0;
154
- return {
155
- modifiers: a,
156
- hasImportantModifier: h,
157
- baseClassName: w,
158
- maybePostfixModifierPosition: S
159
- };
160
- };
161
- }
162
- function fe(e) {
163
- if (e.length <= 1)
164
- return e;
165
- const r = [];
166
- let t = [];
167
- return e.forEach((o) => {
168
- o[0] === "[" ? (r.push(...t.sort(), o), t = []) : t.push(o);
169
- }), r.push(...t.sort()), r;
170
- }
171
- function be(e) {
172
- return {
173
- cache: ue(e.cacheSize),
174
- splitModifiers: pe(e),
175
- ...ie(e)
176
- };
177
- }
178
- const ge = /\s+/;
179
- function me(e, r) {
180
- const {
181
- splitModifiers: t,
182
- getClassGroupId: o,
183
- getConflictingClassGroupIds: i
184
- } = r, n = /* @__PURE__ */ new Set();
185
- return e.trim().split(ge).map((s) => {
186
- const {
187
- modifiers: a,
188
- hasImportantModifier: u,
189
- baseClassName: f,
190
- maybePostfixModifierPosition: p
191
- } = t(s);
192
- let g = o(p ? f.substring(0, p) : f), h = !!p;
193
- if (!g) {
194
- if (!p)
195
- return {
196
- isTailwindClass: !1,
197
- originalClassName: s
198
- };
199
- if (g = o(f), !g)
200
- return {
201
- isTailwindClass: !1,
202
- originalClassName: s
203
- };
204
- h = !1;
205
- }
206
- const w = fe(a).join(":");
207
- return {
208
- isTailwindClass: !0,
209
- modifierId: u ? w + re : w,
210
- classGroupId: g,
211
- originalClassName: s,
212
- hasPostfixModifier: h
213
- };
214
- }).reverse().filter((s) => {
215
- if (!s.isTailwindClass)
216
- return !0;
217
- const {
218
- modifierId: a,
219
- classGroupId: u,
220
- hasPostfixModifier: f
221
- } = s, p = a + u;
222
- return n.has(p) ? !1 : (n.add(p), i(u, f).forEach((g) => n.add(a + g)), !0);
223
- }).reverse().map((s) => s.originalClassName).join(" ");
224
- }
225
- function he() {
226
- let e = 0, r, t, o = "";
227
- for (; e < arguments.length; )
228
- (r = arguments[e++]) && (t = te(r)) && (o && (o += " "), o += t);
229
- return o;
230
- }
231
- function te(e) {
232
- if (typeof e == "string")
233
- return e;
234
- let r, t = "";
235
- for (let o = 0; o < e.length; o++)
236
- e[o] && (r = te(e[o])) && (t && (t += " "), t += r);
237
- return t;
238
- }
239
- function ye(e, ...r) {
240
- let t, o, i, n = s;
241
- function s(u) {
242
- const f = r.reduce((p, g) => g(p), e());
243
- return t = be(f), o = t.cache.get, i = t.cache.set, n = a, a(u);
244
- }
245
- function a(u) {
246
- const f = o(u);
247
- if (f)
248
- return f;
249
- const p = me(u, t);
250
- return i(u, p), p;
251
- }
252
- return function() {
253
- return n(he.apply(null, arguments));
254
- };
255
- }
256
- function c(e) {
257
- const r = (t) => t[e] || [];
258
- return r.isThemeGetter = !0, r;
259
- }
260
- const oe = /^\[(?:([a-z-]+):)?(.+)\]$/i, xe = /^\d+\/\d+$/, we = /* @__PURE__ */ new Set(["px", "full", "screen"]), ve = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, ke = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, ze = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/, Ce = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, Se = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/;
261
- function x(e) {
262
- return C(e) || we.has(e) || xe.test(e);
263
- }
264
- function k(e) {
265
- return M(e, "length", je);
266
- }
267
- function C(e) {
268
- return !!e && !Number.isNaN(Number(e));
269
- }
270
- function E(e) {
271
- return M(e, "number", C);
272
- }
273
- function G(e) {
274
- return !!e && Number.isInteger(Number(e));
275
- }
276
- function Me(e) {
277
- return e.endsWith("%") && C(e.slice(0, -1));
278
- }
279
- function l(e) {
280
- return oe.test(e);
281
- }
282
- function z(e) {
283
- return ve.test(e);
284
- }
285
- const Ae = /* @__PURE__ */ new Set(["length", "size", "percentage"]);
286
- function Re(e) {
287
- return M(e, Ae, ne);
288
- }
289
- function Ge(e) {
290
- return M(e, "position", ne);
291
- }
292
- const Ie = /* @__PURE__ */ new Set(["image", "url"]);
293
- function Pe(e) {
294
- return M(e, Ie, Le);
295
- }
296
- function Te(e) {
297
- return M(e, "", Ee);
298
- }
299
- function I() {
300
- return !0;
301
- }
302
- function M(e, r, t) {
303
- const o = oe.exec(e);
304
- return o ? o[1] ? typeof r == "string" ? o[1] === r : r.has(o[1]) : t(o[2]) : !1;
305
- }
306
- function je(e) {
307
- return ke.test(e) && !ze.test(e);
308
- }
309
- function ne() {
310
- return !1;
311
- }
312
- function Ee(e) {
313
- return Ce.test(e);
314
- }
315
- function Le(e) {
316
- return Se.test(e);
317
- }
318
- function We() {
319
- const e = c("colors"), r = c("spacing"), t = c("blur"), o = c("brightness"), i = c("borderColor"), n = c("borderRadius"), s = c("borderSpacing"), a = c("borderWidth"), u = c("contrast"), f = c("grayscale"), p = c("hueRotate"), g = c("invert"), h = c("gap"), w = c("gradientColorStops"), S = c("gradientColorStopPositions"), b = c("inset"), m = c("margin"), v = c("opacity"), y = c("padding"), B = c("saturate"), L = c("scale"), U = c("sepia"), F = c("skew"), q = c("space"), J = c("translate"), W = () => ["auto", "contain", "none"], V = () => ["auto", "hidden", "clip", "visible", "scroll"], N = () => ["auto", l, r], d = () => [l, r], X = () => ["", x, k], P = () => ["auto", C, l], Z = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"], T = () => ["solid", "dashed", "dotted", "double", "none"], H = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], O = () => ["start", "end", "center", "between", "around", "evenly", "stretch"], A = () => ["", "0", l], K = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], R = () => [C, E], j = () => [C, l];
320
- return {
321
- cacheSize: 500,
322
- separator: ":",
323
- theme: {
324
- colors: [I],
325
- spacing: [x, k],
326
- blur: ["none", "", z, l],
327
- brightness: R(),
328
- borderColor: [e],
329
- borderRadius: ["none", "", "full", z, l],
330
- borderSpacing: d(),
331
- borderWidth: X(),
332
- contrast: R(),
333
- grayscale: A(),
334
- hueRotate: j(),
335
- invert: A(),
336
- gap: d(),
337
- gradientColorStops: [e],
338
- gradientColorStopPositions: [Me, k],
339
- inset: N(),
340
- margin: N(),
341
- opacity: R(),
342
- padding: d(),
343
- saturate: R(),
344
- scale: R(),
345
- sepia: A(),
346
- skew: j(),
347
- space: d(),
348
- translate: d()
349
- },
350
- classGroups: {
351
- // Layout
352
- /**
353
- * Aspect Ratio
354
- * @see https://tailwindcss.com/docs/aspect-ratio
355
- */
356
- aspect: [{
357
- aspect: ["auto", "square", "video", l]
358
- }],
359
- /**
360
- * Container
361
- * @see https://tailwindcss.com/docs/container
362
- */
363
- container: ["container"],
364
- /**
365
- * Columns
366
- * @see https://tailwindcss.com/docs/columns
367
- */
368
- columns: [{
369
- columns: [z]
370
- }],
371
- /**
372
- * Break After
373
- * @see https://tailwindcss.com/docs/break-after
374
- */
375
- "break-after": [{
376
- "break-after": K()
377
- }],
378
- /**
379
- * Break Before
380
- * @see https://tailwindcss.com/docs/break-before
381
- */
382
- "break-before": [{
383
- "break-before": K()
384
- }],
385
- /**
386
- * Break Inside
387
- * @see https://tailwindcss.com/docs/break-inside
388
- */
389
- "break-inside": [{
390
- "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
391
- }],
392
- /**
393
- * Box Decoration Break
394
- * @see https://tailwindcss.com/docs/box-decoration-break
395
- */
396
- "box-decoration": [{
397
- "box-decoration": ["slice", "clone"]
398
- }],
399
- /**
400
- * Box Sizing
401
- * @see https://tailwindcss.com/docs/box-sizing
402
- */
403
- box: [{
404
- box: ["border", "content"]
405
- }],
406
- /**
407
- * Display
408
- * @see https://tailwindcss.com/docs/display
409
- */
410
- 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"],
411
- /**
412
- * Floats
413
- * @see https://tailwindcss.com/docs/float
414
- */
415
- float: [{
416
- float: ["right", "left", "none", "start", "end"]
417
- }],
418
- /**
419
- * Clear
420
- * @see https://tailwindcss.com/docs/clear
421
- */
422
- clear: [{
423
- clear: ["left", "right", "both", "none", "start", "end"]
424
- }],
425
- /**
426
- * Isolation
427
- * @see https://tailwindcss.com/docs/isolation
428
- */
429
- isolation: ["isolate", "isolation-auto"],
430
- /**
431
- * Object Fit
432
- * @see https://tailwindcss.com/docs/object-fit
433
- */
434
- "object-fit": [{
435
- object: ["contain", "cover", "fill", "none", "scale-down"]
436
- }],
437
- /**
438
- * Object Position
439
- * @see https://tailwindcss.com/docs/object-position
440
- */
441
- "object-position": [{
442
- object: [...Z(), l]
443
- }],
444
- /**
445
- * Overflow
446
- * @see https://tailwindcss.com/docs/overflow
447
- */
448
- overflow: [{
449
- overflow: V()
450
- }],
451
- /**
452
- * Overflow X
453
- * @see https://tailwindcss.com/docs/overflow
454
- */
455
- "overflow-x": [{
456
- "overflow-x": V()
457
- }],
458
- /**
459
- * Overflow Y
460
- * @see https://tailwindcss.com/docs/overflow
461
- */
462
- "overflow-y": [{
463
- "overflow-y": V()
464
- }],
465
- /**
466
- * Overscroll Behavior
467
- * @see https://tailwindcss.com/docs/overscroll-behavior
468
- */
469
- overscroll: [{
470
- overscroll: W()
471
- }],
472
- /**
473
- * Overscroll Behavior X
474
- * @see https://tailwindcss.com/docs/overscroll-behavior
475
- */
476
- "overscroll-x": [{
477
- "overscroll-x": W()
478
- }],
479
- /**
480
- * Overscroll Behavior Y
481
- * @see https://tailwindcss.com/docs/overscroll-behavior
482
- */
483
- "overscroll-y": [{
484
- "overscroll-y": W()
485
- }],
486
- /**
487
- * Position
488
- * @see https://tailwindcss.com/docs/position
489
- */
490
- position: ["static", "fixed", "absolute", "relative", "sticky"],
491
- /**
492
- * Top / Right / Bottom / Left
493
- * @see https://tailwindcss.com/docs/top-right-bottom-left
494
- */
495
- inset: [{
496
- inset: [b]
497
- }],
498
- /**
499
- * Right / Left
500
- * @see https://tailwindcss.com/docs/top-right-bottom-left
501
- */
502
- "inset-x": [{
503
- "inset-x": [b]
504
- }],
505
- /**
506
- * Top / Bottom
507
- * @see https://tailwindcss.com/docs/top-right-bottom-left
508
- */
509
- "inset-y": [{
510
- "inset-y": [b]
511
- }],
512
- /**
513
- * Start
514
- * @see https://tailwindcss.com/docs/top-right-bottom-left
515
- */
516
- start: [{
517
- start: [b]
518
- }],
519
- /**
520
- * End
521
- * @see https://tailwindcss.com/docs/top-right-bottom-left
522
- */
523
- end: [{
524
- end: [b]
525
- }],
526
- /**
527
- * Top
528
- * @see https://tailwindcss.com/docs/top-right-bottom-left
529
- */
530
- top: [{
531
- top: [b]
532
- }],
533
- /**
534
- * Right
535
- * @see https://tailwindcss.com/docs/top-right-bottom-left
536
- */
537
- right: [{
538
- right: [b]
539
- }],
540
- /**
541
- * Bottom
542
- * @see https://tailwindcss.com/docs/top-right-bottom-left
543
- */
544
- bottom: [{
545
- bottom: [b]
546
- }],
547
- /**
548
- * Left
549
- * @see https://tailwindcss.com/docs/top-right-bottom-left
550
- */
551
- left: [{
552
- left: [b]
553
- }],
554
- /**
555
- * Visibility
556
- * @see https://tailwindcss.com/docs/visibility
557
- */
558
- visibility: ["visible", "invisible", "collapse"],
559
- /**
560
- * Z-Index
561
- * @see https://tailwindcss.com/docs/z-index
562
- */
563
- z: [{
564
- z: ["auto", G, l]
565
- }],
566
- // Flexbox and Grid
567
- /**
568
- * Flex Basis
569
- * @see https://tailwindcss.com/docs/flex-basis
570
- */
571
- basis: [{
572
- basis: N()
573
- }],
574
- /**
575
- * Flex Direction
576
- * @see https://tailwindcss.com/docs/flex-direction
577
- */
578
- "flex-direction": [{
579
- flex: ["row", "row-reverse", "col", "col-reverse"]
580
- }],
581
- /**
582
- * Flex Wrap
583
- * @see https://tailwindcss.com/docs/flex-wrap
584
- */
585
- "flex-wrap": [{
586
- flex: ["wrap", "wrap-reverse", "nowrap"]
587
- }],
588
- /**
589
- * Flex
590
- * @see https://tailwindcss.com/docs/flex
591
- */
592
- flex: [{
593
- flex: ["1", "auto", "initial", "none", l]
594
- }],
595
- /**
596
- * Flex Grow
597
- * @see https://tailwindcss.com/docs/flex-grow
598
- */
599
- grow: [{
600
- grow: A()
601
- }],
602
- /**
603
- * Flex Shrink
604
- * @see https://tailwindcss.com/docs/flex-shrink
605
- */
606
- shrink: [{
607
- shrink: A()
608
- }],
609
- /**
610
- * Order
611
- * @see https://tailwindcss.com/docs/order
612
- */
613
- order: [{
614
- order: ["first", "last", "none", G, l]
615
- }],
616
- /**
617
- * Grid Template Columns
618
- * @see https://tailwindcss.com/docs/grid-template-columns
619
- */
620
- "grid-cols": [{
621
- "grid-cols": [I]
622
- }],
623
- /**
624
- * Grid Column Start / End
625
- * @see https://tailwindcss.com/docs/grid-column
626
- */
627
- "col-start-end": [{
628
- col: ["auto", {
629
- span: ["full", G, l]
630
- }, l]
631
- }],
632
- /**
633
- * Grid Column Start
634
- * @see https://tailwindcss.com/docs/grid-column
635
- */
636
- "col-start": [{
637
- "col-start": P()
638
- }],
639
- /**
640
- * Grid Column End
641
- * @see https://tailwindcss.com/docs/grid-column
642
- */
643
- "col-end": [{
644
- "col-end": P()
645
- }],
646
- /**
647
- * Grid Template Rows
648
- * @see https://tailwindcss.com/docs/grid-template-rows
649
- */
650
- "grid-rows": [{
651
- "grid-rows": [I]
652
- }],
653
- /**
654
- * Grid Row Start / End
655
- * @see https://tailwindcss.com/docs/grid-row
656
- */
657
- "row-start-end": [{
658
- row: ["auto", {
659
- span: [G, l]
660
- }, l]
661
- }],
662
- /**
663
- * Grid Row Start
664
- * @see https://tailwindcss.com/docs/grid-row
665
- */
666
- "row-start": [{
667
- "row-start": P()
668
- }],
669
- /**
670
- * Grid Row End
671
- * @see https://tailwindcss.com/docs/grid-row
672
- */
673
- "row-end": [{
674
- "row-end": P()
675
- }],
676
- /**
677
- * Grid Auto Flow
678
- * @see https://tailwindcss.com/docs/grid-auto-flow
679
- */
680
- "grid-flow": [{
681
- "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
682
- }],
683
- /**
684
- * Grid Auto Columns
685
- * @see https://tailwindcss.com/docs/grid-auto-columns
686
- */
687
- "auto-cols": [{
688
- "auto-cols": ["auto", "min", "max", "fr", l]
689
- }],
690
- /**
691
- * Grid Auto Rows
692
- * @see https://tailwindcss.com/docs/grid-auto-rows
693
- */
694
- "auto-rows": [{
695
- "auto-rows": ["auto", "min", "max", "fr", l]
696
- }],
697
- /**
698
- * Gap
699
- * @see https://tailwindcss.com/docs/gap
700
- */
701
- gap: [{
702
- gap: [h]
703
- }],
704
- /**
705
- * Gap X
706
- * @see https://tailwindcss.com/docs/gap
707
- */
708
- "gap-x": [{
709
- "gap-x": [h]
710
- }],
711
- /**
712
- * Gap Y
713
- * @see https://tailwindcss.com/docs/gap
714
- */
715
- "gap-y": [{
716
- "gap-y": [h]
717
- }],
718
- /**
719
- * Justify Content
720
- * @see https://tailwindcss.com/docs/justify-content
721
- */
722
- "justify-content": [{
723
- justify: ["normal", ...O()]
724
- }],
725
- /**
726
- * Justify Items
727
- * @see https://tailwindcss.com/docs/justify-items
728
- */
729
- "justify-items": [{
730
- "justify-items": ["start", "end", "center", "stretch"]
731
- }],
732
- /**
733
- * Justify Self
734
- * @see https://tailwindcss.com/docs/justify-self
735
- */
736
- "justify-self": [{
737
- "justify-self": ["auto", "start", "end", "center", "stretch"]
738
- }],
739
- /**
740
- * Align Content
741
- * @see https://tailwindcss.com/docs/align-content
742
- */
743
- "align-content": [{
744
- content: ["normal", ...O(), "baseline"]
745
- }],
746
- /**
747
- * Align Items
748
- * @see https://tailwindcss.com/docs/align-items
749
- */
750
- "align-items": [{
751
- items: ["start", "end", "center", "baseline", "stretch"]
752
- }],
753
- /**
754
- * Align Self
755
- * @see https://tailwindcss.com/docs/align-self
756
- */
757
- "align-self": [{
758
- self: ["auto", "start", "end", "center", "stretch", "baseline"]
759
- }],
760
- /**
761
- * Place Content
762
- * @see https://tailwindcss.com/docs/place-content
763
- */
764
- "place-content": [{
765
- "place-content": [...O(), "baseline"]
766
- }],
767
- /**
768
- * Place Items
769
- * @see https://tailwindcss.com/docs/place-items
770
- */
771
- "place-items": [{
772
- "place-items": ["start", "end", "center", "baseline", "stretch"]
773
- }],
774
- /**
775
- * Place Self
776
- * @see https://tailwindcss.com/docs/place-self
777
- */
778
- "place-self": [{
779
- "place-self": ["auto", "start", "end", "center", "stretch"]
780
- }],
781
- // Spacing
782
- /**
783
- * Padding
784
- * @see https://tailwindcss.com/docs/padding
785
- */
786
- p: [{
787
- p: [y]
788
- }],
789
- /**
790
- * Padding X
791
- * @see https://tailwindcss.com/docs/padding
792
- */
793
- px: [{
794
- px: [y]
795
- }],
796
- /**
797
- * Padding Y
798
- * @see https://tailwindcss.com/docs/padding
799
- */
800
- py: [{
801
- py: [y]
802
- }],
803
- /**
804
- * Padding Start
805
- * @see https://tailwindcss.com/docs/padding
806
- */
807
- ps: [{
808
- ps: [y]
809
- }],
810
- /**
811
- * Padding End
812
- * @see https://tailwindcss.com/docs/padding
813
- */
814
- pe: [{
815
- pe: [y]
816
- }],
817
- /**
818
- * Padding Top
819
- * @see https://tailwindcss.com/docs/padding
820
- */
821
- pt: [{
822
- pt: [y]
823
- }],
824
- /**
825
- * Padding Right
826
- * @see https://tailwindcss.com/docs/padding
827
- */
828
- pr: [{
829
- pr: [y]
830
- }],
831
- /**
832
- * Padding Bottom
833
- * @see https://tailwindcss.com/docs/padding
834
- */
835
- pb: [{
836
- pb: [y]
837
- }],
838
- /**
839
- * Padding Left
840
- * @see https://tailwindcss.com/docs/padding
841
- */
842
- pl: [{
843
- pl: [y]
844
- }],
845
- /**
846
- * Margin
847
- * @see https://tailwindcss.com/docs/margin
848
- */
849
- m: [{
850
- m: [m]
851
- }],
852
- /**
853
- * Margin X
854
- * @see https://tailwindcss.com/docs/margin
855
- */
856
- mx: [{
857
- mx: [m]
858
- }],
859
- /**
860
- * Margin Y
861
- * @see https://tailwindcss.com/docs/margin
862
- */
863
- my: [{
864
- my: [m]
865
- }],
866
- /**
867
- * Margin Start
868
- * @see https://tailwindcss.com/docs/margin
869
- */
870
- ms: [{
871
- ms: [m]
872
- }],
873
- /**
874
- * Margin End
875
- * @see https://tailwindcss.com/docs/margin
876
- */
877
- me: [{
878
- me: [m]
879
- }],
880
- /**
881
- * Margin Top
882
- * @see https://tailwindcss.com/docs/margin
883
- */
884
- mt: [{
885
- mt: [m]
886
- }],
887
- /**
888
- * Margin Right
889
- * @see https://tailwindcss.com/docs/margin
890
- */
891
- mr: [{
892
- mr: [m]
893
- }],
894
- /**
895
- * Margin Bottom
896
- * @see https://tailwindcss.com/docs/margin
897
- */
898
- mb: [{
899
- mb: [m]
900
- }],
901
- /**
902
- * Margin Left
903
- * @see https://tailwindcss.com/docs/margin
904
- */
905
- ml: [{
906
- ml: [m]
907
- }],
908
- /**
909
- * Space Between X
910
- * @see https://tailwindcss.com/docs/space
911
- */
912
- "space-x": [{
913
- "space-x": [q]
914
- }],
915
- /**
916
- * Space Between X Reverse
917
- * @see https://tailwindcss.com/docs/space
918
- */
919
- "space-x-reverse": ["space-x-reverse"],
920
- /**
921
- * Space Between Y
922
- * @see https://tailwindcss.com/docs/space
923
- */
924
- "space-y": [{
925
- "space-y": [q]
926
- }],
927
- /**
928
- * Space Between Y Reverse
929
- * @see https://tailwindcss.com/docs/space
930
- */
931
- "space-y-reverse": ["space-y-reverse"],
932
- // Sizing
933
- /**
934
- * Width
935
- * @see https://tailwindcss.com/docs/width
936
- */
937
- w: [{
938
- w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", l, r]
939
- }],
940
- /**
941
- * Min-Width
942
- * @see https://tailwindcss.com/docs/min-width
943
- */
944
- "min-w": [{
945
- "min-w": [l, r, "min", "max", "fit"]
946
- }],
947
- /**
948
- * Max-Width
949
- * @see https://tailwindcss.com/docs/max-width
950
- */
951
- "max-w": [{
952
- "max-w": [l, r, "none", "full", "min", "max", "fit", "prose", {
953
- screen: [z]
954
- }, z]
955
- }],
956
- /**
957
- * Height
958
- * @see https://tailwindcss.com/docs/height
959
- */
960
- h: [{
961
- h: [l, r, "auto", "min", "max", "fit", "svh", "lvh", "dvh"]
962
- }],
963
- /**
964
- * Min-Height
965
- * @see https://tailwindcss.com/docs/min-height
966
- */
967
- "min-h": [{
968
- "min-h": [l, r, "min", "max", "fit", "svh", "lvh", "dvh"]
969
- }],
970
- /**
971
- * Max-Height
972
- * @see https://tailwindcss.com/docs/max-height
973
- */
974
- "max-h": [{
975
- "max-h": [l, r, "min", "max", "fit", "svh", "lvh", "dvh"]
976
- }],
977
- /**
978
- * Size
979
- * @see https://tailwindcss.com/docs/size
980
- */
981
- size: [{
982
- size: [l, r, "auto", "min", "max", "fit"]
983
- }],
984
- // Typography
985
- /**
986
- * Font Size
987
- * @see https://tailwindcss.com/docs/font-size
988
- */
989
- "font-size": [{
990
- text: ["base", z, k]
991
- }],
992
- /**
993
- * Font Smoothing
994
- * @see https://tailwindcss.com/docs/font-smoothing
995
- */
996
- "font-smoothing": ["antialiased", "subpixel-antialiased"],
997
- /**
998
- * Font Style
999
- * @see https://tailwindcss.com/docs/font-style
1000
- */
1001
- "font-style": ["italic", "not-italic"],
1002
- /**
1003
- * Font Weight
1004
- * @see https://tailwindcss.com/docs/font-weight
1005
- */
1006
- "font-weight": [{
1007
- font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", E]
1008
- }],
1009
- /**
1010
- * Font Family
1011
- * @see https://tailwindcss.com/docs/font-family
1012
- */
1013
- "font-family": [{
1014
- font: [I]
1015
- }],
1016
- /**
1017
- * Font Variant Numeric
1018
- * @see https://tailwindcss.com/docs/font-variant-numeric
1019
- */
1020
- "fvn-normal": ["normal-nums"],
1021
- /**
1022
- * Font Variant Numeric
1023
- * @see https://tailwindcss.com/docs/font-variant-numeric
1024
- */
1025
- "fvn-ordinal": ["ordinal"],
1026
- /**
1027
- * Font Variant Numeric
1028
- * @see https://tailwindcss.com/docs/font-variant-numeric
1029
- */
1030
- "fvn-slashed-zero": ["slashed-zero"],
1031
- /**
1032
- * Font Variant Numeric
1033
- * @see https://tailwindcss.com/docs/font-variant-numeric
1034
- */
1035
- "fvn-figure": ["lining-nums", "oldstyle-nums"],
1036
- /**
1037
- * Font Variant Numeric
1038
- * @see https://tailwindcss.com/docs/font-variant-numeric
1039
- */
1040
- "fvn-spacing": ["proportional-nums", "tabular-nums"],
1041
- /**
1042
- * Font Variant Numeric
1043
- * @see https://tailwindcss.com/docs/font-variant-numeric
1044
- */
1045
- "fvn-fraction": ["diagonal-fractions", "stacked-fractons"],
1046
- /**
1047
- * Letter Spacing
1048
- * @see https://tailwindcss.com/docs/letter-spacing
1049
- */
1050
- tracking: [{
1051
- tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", l]
1052
- }],
1053
- /**
1054
- * Line Clamp
1055
- * @see https://tailwindcss.com/docs/line-clamp
1056
- */
1057
- "line-clamp": [{
1058
- "line-clamp": ["none", C, E]
1059
- }],
1060
- /**
1061
- * Line Height
1062
- * @see https://tailwindcss.com/docs/line-height
1063
- */
1064
- leading: [{
1065
- leading: ["none", "tight", "snug", "normal", "relaxed", "loose", x, l]
1066
- }],
1067
- /**
1068
- * List Style Image
1069
- * @see https://tailwindcss.com/docs/list-style-image
1070
- */
1071
- "list-image": [{
1072
- "list-image": ["none", l]
1073
- }],
1074
- /**
1075
- * List Style Type
1076
- * @see https://tailwindcss.com/docs/list-style-type
1077
- */
1078
- "list-style-type": [{
1079
- list: ["none", "disc", "decimal", l]
1080
- }],
1081
- /**
1082
- * List Style Position
1083
- * @see https://tailwindcss.com/docs/list-style-position
1084
- */
1085
- "list-style-position": [{
1086
- list: ["inside", "outside"]
1087
- }],
1088
- /**
1089
- * Placeholder Color
1090
- * @deprecated since Tailwind CSS v3.0.0
1091
- * @see https://tailwindcss.com/docs/placeholder-color
1092
- */
1093
- "placeholder-color": [{
1094
- placeholder: [e]
1095
- }],
1096
- /**
1097
- * Placeholder Opacity
1098
- * @see https://tailwindcss.com/docs/placeholder-opacity
1099
- */
1100
- "placeholder-opacity": [{
1101
- "placeholder-opacity": [v]
1102
- }],
1103
- /**
1104
- * Text Alignment
1105
- * @see https://tailwindcss.com/docs/text-align
1106
- */
1107
- "text-alignment": [{
1108
- text: ["left", "center", "right", "justify", "start", "end"]
1109
- }],
1110
- /**
1111
- * Text Color
1112
- * @see https://tailwindcss.com/docs/text-color
1113
- */
1114
- "text-color": [{
1115
- text: [e]
1116
- }],
1117
- /**
1118
- * Text Opacity
1119
- * @see https://tailwindcss.com/docs/text-opacity
1120
- */
1121
- "text-opacity": [{
1122
- "text-opacity": [v]
1123
- }],
1124
- /**
1125
- * Text Decoration
1126
- * @see https://tailwindcss.com/docs/text-decoration
1127
- */
1128
- "text-decoration": ["underline", "overline", "line-through", "no-underline"],
1129
- /**
1130
- * Text Decoration Style
1131
- * @see https://tailwindcss.com/docs/text-decoration-style
1132
- */
1133
- "text-decoration-style": [{
1134
- decoration: [...T(), "wavy"]
1135
- }],
1136
- /**
1137
- * Text Decoration Thickness
1138
- * @see https://tailwindcss.com/docs/text-decoration-thickness
1139
- */
1140
- "text-decoration-thickness": [{
1141
- decoration: ["auto", "from-font", x, k]
1142
- }],
1143
- /**
1144
- * Text Underline Offset
1145
- * @see https://tailwindcss.com/docs/text-underline-offset
1146
- */
1147
- "underline-offset": [{
1148
- "underline-offset": ["auto", x, l]
1149
- }],
1150
- /**
1151
- * Text Decoration Color
1152
- * @see https://tailwindcss.com/docs/text-decoration-color
1153
- */
1154
- "text-decoration-color": [{
1155
- decoration: [e]
1156
- }],
1157
- /**
1158
- * Text Transform
1159
- * @see https://tailwindcss.com/docs/text-transform
1160
- */
1161
- "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
1162
- /**
1163
- * Text Overflow
1164
- * @see https://tailwindcss.com/docs/text-overflow
1165
- */
1166
- "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
1167
- /**
1168
- * Text Wrap
1169
- * @see https://tailwindcss.com/docs/text-wrap
1170
- */
1171
- "text-wrap": [{
1172
- text: ["wrap", "nowrap", "balance", "pretty"]
1173
- }],
1174
- /**
1175
- * Text Indent
1176
- * @see https://tailwindcss.com/docs/text-indent
1177
- */
1178
- indent: [{
1179
- indent: d()
1180
- }],
1181
- /**
1182
- * Vertical Alignment
1183
- * @see https://tailwindcss.com/docs/vertical-align
1184
- */
1185
- "vertical-align": [{
1186
- align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", l]
1187
- }],
1188
- /**
1189
- * Whitespace
1190
- * @see https://tailwindcss.com/docs/whitespace
1191
- */
1192
- whitespace: [{
1193
- whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
1194
- }],
1195
- /**
1196
- * Word Break
1197
- * @see https://tailwindcss.com/docs/word-break
1198
- */
1199
- break: [{
1200
- break: ["normal", "words", "all", "keep"]
1201
- }],
1202
- /**
1203
- * Hyphens
1204
- * @see https://tailwindcss.com/docs/hyphens
1205
- */
1206
- hyphens: [{
1207
- hyphens: ["none", "manual", "auto"]
1208
- }],
1209
- /**
1210
- * Content
1211
- * @see https://tailwindcss.com/docs/content
1212
- */
1213
- content: [{
1214
- content: ["none", l]
1215
- }],
1216
- // Backgrounds
1217
- /**
1218
- * Background Attachment
1219
- * @see https://tailwindcss.com/docs/background-attachment
1220
- */
1221
- "bg-attachment": [{
1222
- bg: ["fixed", "local", "scroll"]
1223
- }],
1224
- /**
1225
- * Background Clip
1226
- * @see https://tailwindcss.com/docs/background-clip
1227
- */
1228
- "bg-clip": [{
1229
- "bg-clip": ["border", "padding", "content", "text"]
1230
- }],
1231
- /**
1232
- * Background Opacity
1233
- * @deprecated since Tailwind CSS v3.0.0
1234
- * @see https://tailwindcss.com/docs/background-opacity
1235
- */
1236
- "bg-opacity": [{
1237
- "bg-opacity": [v]
1238
- }],
1239
- /**
1240
- * Background Origin
1241
- * @see https://tailwindcss.com/docs/background-origin
1242
- */
1243
- "bg-origin": [{
1244
- "bg-origin": ["border", "padding", "content"]
1245
- }],
1246
- /**
1247
- * Background Position
1248
- * @see https://tailwindcss.com/docs/background-position
1249
- */
1250
- "bg-position": [{
1251
- bg: [...Z(), Ge]
1252
- }],
1253
- /**
1254
- * Background Repeat
1255
- * @see https://tailwindcss.com/docs/background-repeat
1256
- */
1257
- "bg-repeat": [{
1258
- bg: ["no-repeat", {
1259
- repeat: ["", "x", "y", "round", "space"]
1260
- }]
1261
- }],
1262
- /**
1263
- * Background Size
1264
- * @see https://tailwindcss.com/docs/background-size
1265
- */
1266
- "bg-size": [{
1267
- bg: ["auto", "cover", "contain", Re]
1268
- }],
1269
- /**
1270
- * Background Image
1271
- * @see https://tailwindcss.com/docs/background-image
1272
- */
1273
- "bg-image": [{
1274
- bg: ["none", {
1275
- "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1276
- }, Pe]
1277
- }],
1278
- /**
1279
- * Background Color
1280
- * @see https://tailwindcss.com/docs/background-color
1281
- */
1282
- "bg-color": [{
1283
- bg: [e]
1284
- }],
1285
- /**
1286
- * Gradient Color Stops From Position
1287
- * @see https://tailwindcss.com/docs/gradient-color-stops
1288
- */
1289
- "gradient-from-pos": [{
1290
- from: [S]
1291
- }],
1292
- /**
1293
- * Gradient Color Stops Via Position
1294
- * @see https://tailwindcss.com/docs/gradient-color-stops
1295
- */
1296
- "gradient-via-pos": [{
1297
- via: [S]
1298
- }],
1299
- /**
1300
- * Gradient Color Stops To Position
1301
- * @see https://tailwindcss.com/docs/gradient-color-stops
1302
- */
1303
- "gradient-to-pos": [{
1304
- to: [S]
1305
- }],
1306
- /**
1307
- * Gradient Color Stops From
1308
- * @see https://tailwindcss.com/docs/gradient-color-stops
1309
- */
1310
- "gradient-from": [{
1311
- from: [w]
1312
- }],
1313
- /**
1314
- * Gradient Color Stops Via
1315
- * @see https://tailwindcss.com/docs/gradient-color-stops
1316
- */
1317
- "gradient-via": [{
1318
- via: [w]
1319
- }],
1320
- /**
1321
- * Gradient Color Stops To
1322
- * @see https://tailwindcss.com/docs/gradient-color-stops
1323
- */
1324
- "gradient-to": [{
1325
- to: [w]
1326
- }],
1327
- // Borders
1328
- /**
1329
- * Border Radius
1330
- * @see https://tailwindcss.com/docs/border-radius
1331
- */
1332
- rounded: [{
1333
- rounded: [n]
1334
- }],
1335
- /**
1336
- * Border Radius Start
1337
- * @see https://tailwindcss.com/docs/border-radius
1338
- */
1339
- "rounded-s": [{
1340
- "rounded-s": [n]
1341
- }],
1342
- /**
1343
- * Border Radius End
1344
- * @see https://tailwindcss.com/docs/border-radius
1345
- */
1346
- "rounded-e": [{
1347
- "rounded-e": [n]
1348
- }],
1349
- /**
1350
- * Border Radius Top
1351
- * @see https://tailwindcss.com/docs/border-radius
1352
- */
1353
- "rounded-t": [{
1354
- "rounded-t": [n]
1355
- }],
1356
- /**
1357
- * Border Radius Right
1358
- * @see https://tailwindcss.com/docs/border-radius
1359
- */
1360
- "rounded-r": [{
1361
- "rounded-r": [n]
1362
- }],
1363
- /**
1364
- * Border Radius Bottom
1365
- * @see https://tailwindcss.com/docs/border-radius
1366
- */
1367
- "rounded-b": [{
1368
- "rounded-b": [n]
1369
- }],
1370
- /**
1371
- * Border Radius Left
1372
- * @see https://tailwindcss.com/docs/border-radius
1373
- */
1374
- "rounded-l": [{
1375
- "rounded-l": [n]
1376
- }],
1377
- /**
1378
- * Border Radius Start Start
1379
- * @see https://tailwindcss.com/docs/border-radius
1380
- */
1381
- "rounded-ss": [{
1382
- "rounded-ss": [n]
1383
- }],
1384
- /**
1385
- * Border Radius Start End
1386
- * @see https://tailwindcss.com/docs/border-radius
1387
- */
1388
- "rounded-se": [{
1389
- "rounded-se": [n]
1390
- }],
1391
- /**
1392
- * Border Radius End End
1393
- * @see https://tailwindcss.com/docs/border-radius
1394
- */
1395
- "rounded-ee": [{
1396
- "rounded-ee": [n]
1397
- }],
1398
- /**
1399
- * Border Radius End Start
1400
- * @see https://tailwindcss.com/docs/border-radius
1401
- */
1402
- "rounded-es": [{
1403
- "rounded-es": [n]
1404
- }],
1405
- /**
1406
- * Border Radius Top Left
1407
- * @see https://tailwindcss.com/docs/border-radius
1408
- */
1409
- "rounded-tl": [{
1410
- "rounded-tl": [n]
1411
- }],
1412
- /**
1413
- * Border Radius Top Right
1414
- * @see https://tailwindcss.com/docs/border-radius
1415
- */
1416
- "rounded-tr": [{
1417
- "rounded-tr": [n]
1418
- }],
1419
- /**
1420
- * Border Radius Bottom Right
1421
- * @see https://tailwindcss.com/docs/border-radius
1422
- */
1423
- "rounded-br": [{
1424
- "rounded-br": [n]
1425
- }],
1426
- /**
1427
- * Border Radius Bottom Left
1428
- * @see https://tailwindcss.com/docs/border-radius
1429
- */
1430
- "rounded-bl": [{
1431
- "rounded-bl": [n]
1432
- }],
1433
- /**
1434
- * Border Width
1435
- * @see https://tailwindcss.com/docs/border-width
1436
- */
1437
- "border-w": [{
1438
- border: [a]
1439
- }],
1440
- /**
1441
- * Border Width X
1442
- * @see https://tailwindcss.com/docs/border-width
1443
- */
1444
- "border-w-x": [{
1445
- "border-x": [a]
1446
- }],
1447
- /**
1448
- * Border Width Y
1449
- * @see https://tailwindcss.com/docs/border-width
1450
- */
1451
- "border-w-y": [{
1452
- "border-y": [a]
1453
- }],
1454
- /**
1455
- * Border Width Start
1456
- * @see https://tailwindcss.com/docs/border-width
1457
- */
1458
- "border-w-s": [{
1459
- "border-s": [a]
1460
- }],
1461
- /**
1462
- * Border Width End
1463
- * @see https://tailwindcss.com/docs/border-width
1464
- */
1465
- "border-w-e": [{
1466
- "border-e": [a]
1467
- }],
1468
- /**
1469
- * Border Width Top
1470
- * @see https://tailwindcss.com/docs/border-width
1471
- */
1472
- "border-w-t": [{
1473
- "border-t": [a]
1474
- }],
1475
- /**
1476
- * Border Width Right
1477
- * @see https://tailwindcss.com/docs/border-width
1478
- */
1479
- "border-w-r": [{
1480
- "border-r": [a]
1481
- }],
1482
- /**
1483
- * Border Width Bottom
1484
- * @see https://tailwindcss.com/docs/border-width
1485
- */
1486
- "border-w-b": [{
1487
- "border-b": [a]
1488
- }],
1489
- /**
1490
- * Border Width Left
1491
- * @see https://tailwindcss.com/docs/border-width
1492
- */
1493
- "border-w-l": [{
1494
- "border-l": [a]
1495
- }],
1496
- /**
1497
- * Border Opacity
1498
- * @see https://tailwindcss.com/docs/border-opacity
1499
- */
1500
- "border-opacity": [{
1501
- "border-opacity": [v]
1502
- }],
1503
- /**
1504
- * Border Style
1505
- * @see https://tailwindcss.com/docs/border-style
1506
- */
1507
- "border-style": [{
1508
- border: [...T(), "hidden"]
1509
- }],
1510
- /**
1511
- * Divide Width X
1512
- * @see https://tailwindcss.com/docs/divide-width
1513
- */
1514
- "divide-x": [{
1515
- "divide-x": [a]
1516
- }],
1517
- /**
1518
- * Divide Width X Reverse
1519
- * @see https://tailwindcss.com/docs/divide-width
1520
- */
1521
- "divide-x-reverse": ["divide-x-reverse"],
1522
- /**
1523
- * Divide Width Y
1524
- * @see https://tailwindcss.com/docs/divide-width
1525
- */
1526
- "divide-y": [{
1527
- "divide-y": [a]
1528
- }],
1529
- /**
1530
- * Divide Width Y Reverse
1531
- * @see https://tailwindcss.com/docs/divide-width
1532
- */
1533
- "divide-y-reverse": ["divide-y-reverse"],
1534
- /**
1535
- * Divide Opacity
1536
- * @see https://tailwindcss.com/docs/divide-opacity
1537
- */
1538
- "divide-opacity": [{
1539
- "divide-opacity": [v]
1540
- }],
1541
- /**
1542
- * Divide Style
1543
- * @see https://tailwindcss.com/docs/divide-style
1544
- */
1545
- "divide-style": [{
1546
- divide: T()
1547
- }],
1548
- /**
1549
- * Border Color
1550
- * @see https://tailwindcss.com/docs/border-color
1551
- */
1552
- "border-color": [{
1553
- border: [i]
1554
- }],
1555
- /**
1556
- * Border Color X
1557
- * @see https://tailwindcss.com/docs/border-color
1558
- */
1559
- "border-color-x": [{
1560
- "border-x": [i]
1561
- }],
1562
- /**
1563
- * Border Color Y
1564
- * @see https://tailwindcss.com/docs/border-color
1565
- */
1566
- "border-color-y": [{
1567
- "border-y": [i]
1568
- }],
1569
- /**
1570
- * Border Color Top
1571
- * @see https://tailwindcss.com/docs/border-color
1572
- */
1573
- "border-color-t": [{
1574
- "border-t": [i]
1575
- }],
1576
- /**
1577
- * Border Color Right
1578
- * @see https://tailwindcss.com/docs/border-color
1579
- */
1580
- "border-color-r": [{
1581
- "border-r": [i]
1582
- }],
1583
- /**
1584
- * Border Color Bottom
1585
- * @see https://tailwindcss.com/docs/border-color
1586
- */
1587
- "border-color-b": [{
1588
- "border-b": [i]
1589
- }],
1590
- /**
1591
- * Border Color Left
1592
- * @see https://tailwindcss.com/docs/border-color
1593
- */
1594
- "border-color-l": [{
1595
- "border-l": [i]
1596
- }],
1597
- /**
1598
- * Divide Color
1599
- * @see https://tailwindcss.com/docs/divide-color
1600
- */
1601
- "divide-color": [{
1602
- divide: [i]
1603
- }],
1604
- /**
1605
- * Outline Style
1606
- * @see https://tailwindcss.com/docs/outline-style
1607
- */
1608
- "outline-style": [{
1609
- outline: ["", ...T()]
1610
- }],
1611
- /**
1612
- * Outline Offset
1613
- * @see https://tailwindcss.com/docs/outline-offset
1614
- */
1615
- "outline-offset": [{
1616
- "outline-offset": [x, l]
1617
- }],
1618
- /**
1619
- * Outline Width
1620
- * @see https://tailwindcss.com/docs/outline-width
1621
- */
1622
- "outline-w": [{
1623
- outline: [x, k]
1624
- }],
1625
- /**
1626
- * Outline Color
1627
- * @see https://tailwindcss.com/docs/outline-color
1628
- */
1629
- "outline-color": [{
1630
- outline: [e]
1631
- }],
1632
- /**
1633
- * Ring Width
1634
- * @see https://tailwindcss.com/docs/ring-width
1635
- */
1636
- "ring-w": [{
1637
- ring: X()
1638
- }],
1639
- /**
1640
- * Ring Width Inset
1641
- * @see https://tailwindcss.com/docs/ring-width
1642
- */
1643
- "ring-w-inset": ["ring-inset"],
1644
- /**
1645
- * Ring Color
1646
- * @see https://tailwindcss.com/docs/ring-color
1647
- */
1648
- "ring-color": [{
1649
- ring: [e]
1650
- }],
1651
- /**
1652
- * Ring Opacity
1653
- * @see https://tailwindcss.com/docs/ring-opacity
1654
- */
1655
- "ring-opacity": [{
1656
- "ring-opacity": [v]
1657
- }],
1658
- /**
1659
- * Ring Offset Width
1660
- * @see https://tailwindcss.com/docs/ring-offset-width
1661
- */
1662
- "ring-offset-w": [{
1663
- "ring-offset": [x, k]
1664
- }],
1665
- /**
1666
- * Ring Offset Color
1667
- * @see https://tailwindcss.com/docs/ring-offset-color
1668
- */
1669
- "ring-offset-color": [{
1670
- "ring-offset": [e]
1671
- }],
1672
- // Effects
1673
- /**
1674
- * Box Shadow
1675
- * @see https://tailwindcss.com/docs/box-shadow
1676
- */
1677
- shadow: [{
1678
- shadow: ["", "inner", "none", z, Te]
1679
- }],
1680
- /**
1681
- * Box Shadow Color
1682
- * @see https://tailwindcss.com/docs/box-shadow-color
1683
- */
1684
- "shadow-color": [{
1685
- shadow: [I]
1686
- }],
1687
- /**
1688
- * Opacity
1689
- * @see https://tailwindcss.com/docs/opacity
1690
- */
1691
- opacity: [{
1692
- opacity: [v]
1693
- }],
1694
- /**
1695
- * Mix Blend Mode
1696
- * @see https://tailwindcss.com/docs/mix-blend-mode
1697
- */
1698
- "mix-blend": [{
1699
- "mix-blend": [...H(), "plus-lighter", "plus-darker"]
1700
- }],
1701
- /**
1702
- * Background Blend Mode
1703
- * @see https://tailwindcss.com/docs/background-blend-mode
1704
- */
1705
- "bg-blend": [{
1706
- "bg-blend": H()
1707
- }],
1708
- // Filters
1709
- /**
1710
- * Filter
1711
- * @deprecated since Tailwind CSS v3.0.0
1712
- * @see https://tailwindcss.com/docs/filter
1713
- */
1714
- filter: [{
1715
- filter: ["", "none"]
1716
- }],
1717
- /**
1718
- * Blur
1719
- * @see https://tailwindcss.com/docs/blur
1720
- */
1721
- blur: [{
1722
- blur: [t]
1723
- }],
1724
- /**
1725
- * Brightness
1726
- * @see https://tailwindcss.com/docs/brightness
1727
- */
1728
- brightness: [{
1729
- brightness: [o]
1730
- }],
1731
- /**
1732
- * Contrast
1733
- * @see https://tailwindcss.com/docs/contrast
1734
- */
1735
- contrast: [{
1736
- contrast: [u]
1737
- }],
1738
- /**
1739
- * Drop Shadow
1740
- * @see https://tailwindcss.com/docs/drop-shadow
1741
- */
1742
- "drop-shadow": [{
1743
- "drop-shadow": ["", "none", z, l]
1744
- }],
1745
- /**
1746
- * Grayscale
1747
- * @see https://tailwindcss.com/docs/grayscale
1748
- */
1749
- grayscale: [{
1750
- grayscale: [f]
1751
- }],
1752
- /**
1753
- * Hue Rotate
1754
- * @see https://tailwindcss.com/docs/hue-rotate
1755
- */
1756
- "hue-rotate": [{
1757
- "hue-rotate": [p]
1758
- }],
1759
- /**
1760
- * Invert
1761
- * @see https://tailwindcss.com/docs/invert
1762
- */
1763
- invert: [{
1764
- invert: [g]
1765
- }],
1766
- /**
1767
- * Saturate
1768
- * @see https://tailwindcss.com/docs/saturate
1769
- */
1770
- saturate: [{
1771
- saturate: [B]
1772
- }],
1773
- /**
1774
- * Sepia
1775
- * @see https://tailwindcss.com/docs/sepia
1776
- */
1777
- sepia: [{
1778
- sepia: [U]
1779
- }],
1780
- /**
1781
- * Backdrop Filter
1782
- * @deprecated since Tailwind CSS v3.0.0
1783
- * @see https://tailwindcss.com/docs/backdrop-filter
1784
- */
1785
- "backdrop-filter": [{
1786
- "backdrop-filter": ["", "none"]
1787
- }],
1788
- /**
1789
- * Backdrop Blur
1790
- * @see https://tailwindcss.com/docs/backdrop-blur
1791
- */
1792
- "backdrop-blur": [{
1793
- "backdrop-blur": [t]
1794
- }],
1795
- /**
1796
- * Backdrop Brightness
1797
- * @see https://tailwindcss.com/docs/backdrop-brightness
1798
- */
1799
- "backdrop-brightness": [{
1800
- "backdrop-brightness": [o]
1801
- }],
1802
- /**
1803
- * Backdrop Contrast
1804
- * @see https://tailwindcss.com/docs/backdrop-contrast
1805
- */
1806
- "backdrop-contrast": [{
1807
- "backdrop-contrast": [u]
1808
- }],
1809
- /**
1810
- * Backdrop Grayscale
1811
- * @see https://tailwindcss.com/docs/backdrop-grayscale
1812
- */
1813
- "backdrop-grayscale": [{
1814
- "backdrop-grayscale": [f]
1815
- }],
1816
- /**
1817
- * Backdrop Hue Rotate
1818
- * @see https://tailwindcss.com/docs/backdrop-hue-rotate
1819
- */
1820
- "backdrop-hue-rotate": [{
1821
- "backdrop-hue-rotate": [p]
1822
- }],
1823
- /**
1824
- * Backdrop Invert
1825
- * @see https://tailwindcss.com/docs/backdrop-invert
1826
- */
1827
- "backdrop-invert": [{
1828
- "backdrop-invert": [g]
1829
- }],
1830
- /**
1831
- * Backdrop Opacity
1832
- * @see https://tailwindcss.com/docs/backdrop-opacity
1833
- */
1834
- "backdrop-opacity": [{
1835
- "backdrop-opacity": [v]
1836
- }],
1837
- /**
1838
- * Backdrop Saturate
1839
- * @see https://tailwindcss.com/docs/backdrop-saturate
1840
- */
1841
- "backdrop-saturate": [{
1842
- "backdrop-saturate": [B]
1843
- }],
1844
- /**
1845
- * Backdrop Sepia
1846
- * @see https://tailwindcss.com/docs/backdrop-sepia
1847
- */
1848
- "backdrop-sepia": [{
1849
- "backdrop-sepia": [U]
1850
- }],
1851
- // Tables
1852
- /**
1853
- * Border Collapse
1854
- * @see https://tailwindcss.com/docs/border-collapse
1855
- */
1856
- "border-collapse": [{
1857
- border: ["collapse", "separate"]
1858
- }],
1859
- /**
1860
- * Border Spacing
1861
- * @see https://tailwindcss.com/docs/border-spacing
1862
- */
1863
- "border-spacing": [{
1864
- "border-spacing": [s]
1865
- }],
1866
- /**
1867
- * Border Spacing X
1868
- * @see https://tailwindcss.com/docs/border-spacing
1869
- */
1870
- "border-spacing-x": [{
1871
- "border-spacing-x": [s]
1872
- }],
1873
- /**
1874
- * Border Spacing Y
1875
- * @see https://tailwindcss.com/docs/border-spacing
1876
- */
1877
- "border-spacing-y": [{
1878
- "border-spacing-y": [s]
1879
- }],
1880
- /**
1881
- * Table Layout
1882
- * @see https://tailwindcss.com/docs/table-layout
1883
- */
1884
- "table-layout": [{
1885
- table: ["auto", "fixed"]
1886
- }],
1887
- /**
1888
- * Caption Side
1889
- * @see https://tailwindcss.com/docs/caption-side
1890
- */
1891
- caption: [{
1892
- caption: ["top", "bottom"]
1893
- }],
1894
- // Transitions and Animation
1895
- /**
1896
- * Tranisition Property
1897
- * @see https://tailwindcss.com/docs/transition-property
1898
- */
1899
- transition: [{
1900
- transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", l]
1901
- }],
1902
- /**
1903
- * Transition Duration
1904
- * @see https://tailwindcss.com/docs/transition-duration
1905
- */
1906
- duration: [{
1907
- duration: j()
1908
- }],
1909
- /**
1910
- * Transition Timing Function
1911
- * @see https://tailwindcss.com/docs/transition-timing-function
1912
- */
1913
- ease: [{
1914
- ease: ["linear", "in", "out", "in-out", l]
1915
- }],
1916
- /**
1917
- * Transition Delay
1918
- * @see https://tailwindcss.com/docs/transition-delay
1919
- */
1920
- delay: [{
1921
- delay: j()
1922
- }],
1923
- /**
1924
- * Animation
1925
- * @see https://tailwindcss.com/docs/animation
1926
- */
1927
- animate: [{
1928
- animate: ["none", "spin", "ping", "pulse", "bounce", l]
1929
- }],
1930
- // Transforms
1931
- /**
1932
- * Transform
1933
- * @see https://tailwindcss.com/docs/transform
1934
- */
1935
- transform: [{
1936
- transform: ["", "gpu", "none"]
1937
- }],
1938
- /**
1939
- * Scale
1940
- * @see https://tailwindcss.com/docs/scale
1941
- */
1942
- scale: [{
1943
- scale: [L]
1944
- }],
1945
- /**
1946
- * Scale X
1947
- * @see https://tailwindcss.com/docs/scale
1948
- */
1949
- "scale-x": [{
1950
- "scale-x": [L]
1951
- }],
1952
- /**
1953
- * Scale Y
1954
- * @see https://tailwindcss.com/docs/scale
1955
- */
1956
- "scale-y": [{
1957
- "scale-y": [L]
1958
- }],
1959
- /**
1960
- * Rotate
1961
- * @see https://tailwindcss.com/docs/rotate
1962
- */
1963
- rotate: [{
1964
- rotate: [G, l]
1965
- }],
1966
- /**
1967
- * Translate X
1968
- * @see https://tailwindcss.com/docs/translate
1969
- */
1970
- "translate-x": [{
1971
- "translate-x": [J]
1972
- }],
1973
- /**
1974
- * Translate Y
1975
- * @see https://tailwindcss.com/docs/translate
1976
- */
1977
- "translate-y": [{
1978
- "translate-y": [J]
1979
- }],
1980
- /**
1981
- * Skew X
1982
- * @see https://tailwindcss.com/docs/skew
1983
- */
1984
- "skew-x": [{
1985
- "skew-x": [F]
1986
- }],
1987
- /**
1988
- * Skew Y
1989
- * @see https://tailwindcss.com/docs/skew
1990
- */
1991
- "skew-y": [{
1992
- "skew-y": [F]
1993
- }],
1994
- /**
1995
- * Transform Origin
1996
- * @see https://tailwindcss.com/docs/transform-origin
1997
- */
1998
- "transform-origin": [{
1999
- origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", l]
2000
- }],
2001
- // Interactivity
2002
- /**
2003
- * Accent Color
2004
- * @see https://tailwindcss.com/docs/accent-color
2005
- */
2006
- accent: [{
2007
- accent: ["auto", e]
2008
- }],
2009
- /**
2010
- * Appearance
2011
- * @see https://tailwindcss.com/docs/appearance
2012
- */
2013
- appearance: [{
2014
- appearance: ["none", "auto"]
2015
- }],
2016
- /**
2017
- * Cursor
2018
- * @see https://tailwindcss.com/docs/cursor
2019
- */
2020
- cursor: [{
2021
- 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", l]
2022
- }],
2023
- /**
2024
- * Caret Color
2025
- * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2026
- */
2027
- "caret-color": [{
2028
- caret: [e]
2029
- }],
2030
- /**
2031
- * Pointer Events
2032
- * @see https://tailwindcss.com/docs/pointer-events
2033
- */
2034
- "pointer-events": [{
2035
- "pointer-events": ["none", "auto"]
2036
- }],
2037
- /**
2038
- * Resize
2039
- * @see https://tailwindcss.com/docs/resize
2040
- */
2041
- resize: [{
2042
- resize: ["none", "y", "x", ""]
2043
- }],
2044
- /**
2045
- * Scroll Behavior
2046
- * @see https://tailwindcss.com/docs/scroll-behavior
2047
- */
2048
- "scroll-behavior": [{
2049
- scroll: ["auto", "smooth"]
2050
- }],
2051
- /**
2052
- * Scroll Margin
2053
- * @see https://tailwindcss.com/docs/scroll-margin
2054
- */
2055
- "scroll-m": [{
2056
- "scroll-m": d()
2057
- }],
2058
- /**
2059
- * Scroll Margin X
2060
- * @see https://tailwindcss.com/docs/scroll-margin
2061
- */
2062
- "scroll-mx": [{
2063
- "scroll-mx": d()
2064
- }],
2065
- /**
2066
- * Scroll Margin Y
2067
- * @see https://tailwindcss.com/docs/scroll-margin
2068
- */
2069
- "scroll-my": [{
2070
- "scroll-my": d()
2071
- }],
2072
- /**
2073
- * Scroll Margin Start
2074
- * @see https://tailwindcss.com/docs/scroll-margin
2075
- */
2076
- "scroll-ms": [{
2077
- "scroll-ms": d()
2078
- }],
2079
- /**
2080
- * Scroll Margin End
2081
- * @see https://tailwindcss.com/docs/scroll-margin
2082
- */
2083
- "scroll-me": [{
2084
- "scroll-me": d()
2085
- }],
2086
- /**
2087
- * Scroll Margin Top
2088
- * @see https://tailwindcss.com/docs/scroll-margin
2089
- */
2090
- "scroll-mt": [{
2091
- "scroll-mt": d()
2092
- }],
2093
- /**
2094
- * Scroll Margin Right
2095
- * @see https://tailwindcss.com/docs/scroll-margin
2096
- */
2097
- "scroll-mr": [{
2098
- "scroll-mr": d()
2099
- }],
2100
- /**
2101
- * Scroll Margin Bottom
2102
- * @see https://tailwindcss.com/docs/scroll-margin
2103
- */
2104
- "scroll-mb": [{
2105
- "scroll-mb": d()
2106
- }],
2107
- /**
2108
- * Scroll Margin Left
2109
- * @see https://tailwindcss.com/docs/scroll-margin
2110
- */
2111
- "scroll-ml": [{
2112
- "scroll-ml": d()
2113
- }],
2114
- /**
2115
- * Scroll Padding
2116
- * @see https://tailwindcss.com/docs/scroll-padding
2117
- */
2118
- "scroll-p": [{
2119
- "scroll-p": d()
2120
- }],
2121
- /**
2122
- * Scroll Padding X
2123
- * @see https://tailwindcss.com/docs/scroll-padding
2124
- */
2125
- "scroll-px": [{
2126
- "scroll-px": d()
2127
- }],
2128
- /**
2129
- * Scroll Padding Y
2130
- * @see https://tailwindcss.com/docs/scroll-padding
2131
- */
2132
- "scroll-py": [{
2133
- "scroll-py": d()
2134
- }],
2135
- /**
2136
- * Scroll Padding Start
2137
- * @see https://tailwindcss.com/docs/scroll-padding
2138
- */
2139
- "scroll-ps": [{
2140
- "scroll-ps": d()
2141
- }],
2142
- /**
2143
- * Scroll Padding End
2144
- * @see https://tailwindcss.com/docs/scroll-padding
2145
- */
2146
- "scroll-pe": [{
2147
- "scroll-pe": d()
2148
- }],
2149
- /**
2150
- * Scroll Padding Top
2151
- * @see https://tailwindcss.com/docs/scroll-padding
2152
- */
2153
- "scroll-pt": [{
2154
- "scroll-pt": d()
2155
- }],
2156
- /**
2157
- * Scroll Padding Right
2158
- * @see https://tailwindcss.com/docs/scroll-padding
2159
- */
2160
- "scroll-pr": [{
2161
- "scroll-pr": d()
2162
- }],
2163
- /**
2164
- * Scroll Padding Bottom
2165
- * @see https://tailwindcss.com/docs/scroll-padding
2166
- */
2167
- "scroll-pb": [{
2168
- "scroll-pb": d()
2169
- }],
2170
- /**
2171
- * Scroll Padding Left
2172
- * @see https://tailwindcss.com/docs/scroll-padding
2173
- */
2174
- "scroll-pl": [{
2175
- "scroll-pl": d()
2176
- }],
2177
- /**
2178
- * Scroll Snap Align
2179
- * @see https://tailwindcss.com/docs/scroll-snap-align
2180
- */
2181
- "snap-align": [{
2182
- snap: ["start", "end", "center", "align-none"]
2183
- }],
2184
- /**
2185
- * Scroll Snap Stop
2186
- * @see https://tailwindcss.com/docs/scroll-snap-stop
2187
- */
2188
- "snap-stop": [{
2189
- snap: ["normal", "always"]
2190
- }],
2191
- /**
2192
- * Scroll Snap Type
2193
- * @see https://tailwindcss.com/docs/scroll-snap-type
2194
- */
2195
- "snap-type": [{
2196
- snap: ["none", "x", "y", "both"]
2197
- }],
2198
- /**
2199
- * Scroll Snap Type Strictness
2200
- * @see https://tailwindcss.com/docs/scroll-snap-type
2201
- */
2202
- "snap-strictness": [{
2203
- snap: ["mandatory", "proximity"]
2204
- }],
2205
- /**
2206
- * Touch Action
2207
- * @see https://tailwindcss.com/docs/touch-action
2208
- */
2209
- touch: [{
2210
- touch: ["auto", "none", "manipulation"]
2211
- }],
2212
- /**
2213
- * Touch Action X
2214
- * @see https://tailwindcss.com/docs/touch-action
2215
- */
2216
- "touch-x": [{
2217
- "touch-pan": ["x", "left", "right"]
2218
- }],
2219
- /**
2220
- * Touch Action Y
2221
- * @see https://tailwindcss.com/docs/touch-action
2222
- */
2223
- "touch-y": [{
2224
- "touch-pan": ["y", "up", "down"]
2225
- }],
2226
- /**
2227
- * Touch Action Pinch Zoom
2228
- * @see https://tailwindcss.com/docs/touch-action
2229
- */
2230
- "touch-pz": ["touch-pinch-zoom"],
2231
- /**
2232
- * User Select
2233
- * @see https://tailwindcss.com/docs/user-select
2234
- */
2235
- select: [{
2236
- select: ["none", "text", "all", "auto"]
2237
- }],
2238
- /**
2239
- * Will Change
2240
- * @see https://tailwindcss.com/docs/will-change
2241
- */
2242
- "will-change": [{
2243
- "will-change": ["auto", "scroll", "contents", "transform", l]
2244
- }],
2245
- // SVG
2246
- /**
2247
- * Fill
2248
- * @see https://tailwindcss.com/docs/fill
2249
- */
2250
- fill: [{
2251
- fill: [e, "none"]
2252
- }],
2253
- /**
2254
- * Stroke Width
2255
- * @see https://tailwindcss.com/docs/stroke-width
2256
- */
2257
- "stroke-w": [{
2258
- stroke: [x, k, E]
2259
- }],
2260
- /**
2261
- * Stroke
2262
- * @see https://tailwindcss.com/docs/stroke
2263
- */
2264
- stroke: [{
2265
- stroke: [e, "none"]
2266
- }],
2267
- // Accessibility
2268
- /**
2269
- * Screen Readers
2270
- * @see https://tailwindcss.com/docs/screen-readers
2271
- */
2272
- sr: ["sr-only", "not-sr-only"],
2273
- /**
2274
- * Forced Color Adjust
2275
- * @see https://tailwindcss.com/docs/forced-color-adjust
2276
- */
2277
- "forced-color-adjust": [{
2278
- "forced-color-adjust": ["auto", "none"]
2279
- }]
2280
- },
2281
- conflictingClassGroups: {
2282
- overflow: ["overflow-x", "overflow-y"],
2283
- overscroll: ["overscroll-x", "overscroll-y"],
2284
- inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
2285
- "inset-x": ["right", "left"],
2286
- "inset-y": ["top", "bottom"],
2287
- flex: ["basis", "grow", "shrink"],
2288
- gap: ["gap-x", "gap-y"],
2289
- p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
2290
- px: ["pr", "pl"],
2291
- py: ["pt", "pb"],
2292
- m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
2293
- mx: ["mr", "ml"],
2294
- my: ["mt", "mb"],
2295
- size: ["w", "h"],
2296
- "font-size": ["leading"],
2297
- "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
2298
- "fvn-ordinal": ["fvn-normal"],
2299
- "fvn-slashed-zero": ["fvn-normal"],
2300
- "fvn-figure": ["fvn-normal"],
2301
- "fvn-spacing": ["fvn-normal"],
2302
- "fvn-fraction": ["fvn-normal"],
2303
- "line-clamp": ["display", "overflow"],
2304
- 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"],
2305
- "rounded-s": ["rounded-ss", "rounded-es"],
2306
- "rounded-e": ["rounded-se", "rounded-ee"],
2307
- "rounded-t": ["rounded-tl", "rounded-tr"],
2308
- "rounded-r": ["rounded-tr", "rounded-br"],
2309
- "rounded-b": ["rounded-br", "rounded-bl"],
2310
- "rounded-l": ["rounded-tl", "rounded-bl"],
2311
- "border-spacing": ["border-spacing-x", "border-spacing-y"],
2312
- "border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
2313
- "border-w-x": ["border-w-r", "border-w-l"],
2314
- "border-w-y": ["border-w-t", "border-w-b"],
2315
- "border-color": ["border-color-t", "border-color-r", "border-color-b", "border-color-l"],
2316
- "border-color-x": ["border-color-r", "border-color-l"],
2317
- "border-color-y": ["border-color-t", "border-color-b"],
2318
- "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2319
- "scroll-mx": ["scroll-mr", "scroll-ml"],
2320
- "scroll-my": ["scroll-mt", "scroll-mb"],
2321
- "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
2322
- "scroll-px": ["scroll-pr", "scroll-pl"],
2323
- "scroll-py": ["scroll-pt", "scroll-pb"],
2324
- touch: ["touch-x", "touch-y", "touch-pz"],
2325
- "touch-x": ["touch"],
2326
- "touch-y": ["touch"],
2327
- "touch-pz": ["touch"]
2328
- },
2329
- conflictingClassGroupModifiers: {
2330
- "font-size": ["leading"]
2331
- }
2332
- };
2333
- }
2334
- const Ve = /* @__PURE__ */ ye(We);
2335
- function Ne(...e) {
2336
- return Ve(se(e));
2337
- }
2338
- export {
2339
- se as a,
2340
- Ne as c
2341
- };
2342
- //# sourceMappingURL=cn-DpqTslo9.js.map