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