@profiq/ui 0.1.0

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