@blofin/blofin-ui 0.6.87

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