@cystackapp/ui 1.5.0 → 2.0.1

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 (170) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +77 -47
  3. package/dist/assets/background-pattern-grid.svg.js +7 -0
  4. package/dist/assets/empty-cloud.svg.js +5 -0
  5. package/dist/components/accordion/Accordion.d.ts +20 -0
  6. package/dist/components/accordion/Accordion.js +36 -0
  7. package/dist/components/accordion/AccordionTestStory.d.ts +3 -0
  8. package/dist/components/alert/Alert.d.ts +15 -0
  9. package/dist/components/alert/Alert.js +54 -0
  10. package/dist/components/avatar/Avatar.d.ts +13 -0
  11. package/dist/components/avatar/Avatar.js +64 -0
  12. package/dist/components/background-pattern/BackgroundPatternGrid.d.ts +1 -0
  13. package/dist/components/background-pattern/BackgroundPatternGrid.js +6 -0
  14. package/dist/components/badge/Badge.d.ts +1 -1
  15. package/dist/components/badge/BadgeTestStory.d.ts +1 -1
  16. package/dist/components/badge/variants/BadgeMore.d.ts +1 -1
  17. package/dist/components/badge/variants/BadgeMoreTestStory.d.ts +1 -1
  18. package/dist/components/badge/variants/BadgeTag.d.ts +1 -1
  19. package/dist/components/banner/Banner.d.ts +9 -0
  20. package/dist/components/banner/Banner.js +21 -0
  21. package/dist/components/breadcrumb/Breadcrumb.d.ts +13 -0
  22. package/dist/components/breadcrumb/Breadcrumb.js +36 -0
  23. package/dist/components/button/ButtonLoader.d.ts +1 -1
  24. package/dist/components/button/ButtonTestStory.d.ts +5 -5
  25. package/dist/components/card/Card.d.ts +1 -1
  26. package/dist/components/card/Card.stories-ct.d.ts +1 -1
  27. package/dist/components/card/CardBody.d.ts +1 -1
  28. package/dist/components/card/CardHeader.d.ts +1 -1
  29. package/dist/components/chart/chart-legend/ChartLegend.d.ts +38 -0
  30. package/dist/components/chart/chart-legend/ChartLegend.js +57 -0
  31. package/dist/components/chart/chart-legend/ChartLegendItem.d.ts +19 -0
  32. package/dist/components/chart/chart-legend/ChartLegendItem.js +30 -0
  33. package/dist/components/chart/chart-legend/types.d.ts +49 -0
  34. package/dist/components/chart/donut-chart/DonutChart.d.ts +55 -0
  35. package/dist/components/chart/donut-chart/DonutChart.js +110 -0
  36. package/dist/components/chart/donut-chart/DonutSegments.d.ts +25 -0
  37. package/dist/components/chart/donut-chart/DonutSegments.js +51 -0
  38. package/dist/components/chart/donut-chart/donut-tooltip.d.ts +20 -0
  39. package/dist/components/chart/donut-chart/donut-tooltip.js +37 -0
  40. package/dist/components/chart/types.d.ts +8 -0
  41. package/dist/components/checkbox/CheckboxTestStory.d.ts +7 -7
  42. package/dist/components/collapsible/Collapsible.d.ts +1 -1
  43. package/dist/components/combobox/Combobox.d.ts +1 -1
  44. package/dist/components/divider/Divider.d.ts +9 -0
  45. package/dist/components/divider/Divider.js +28 -0
  46. package/dist/components/drawer/Drawer.d.ts +8 -0
  47. package/dist/components/drawer/Drawer.js +68 -0
  48. package/dist/components/dropdown/Dropdown.d.ts +45 -0
  49. package/dist/components/dropdown/Dropdown.js +133 -0
  50. package/dist/components/dropdown/DropdownMenu.d.ts +20 -0
  51. package/dist/components/dropdown/DropdownMenu.js +78 -0
  52. package/dist/components/dropdown/DropdownMenuItem.d.ts +13 -0
  53. package/dist/components/dropdown/DropdownMenuItem.js +49 -0
  54. package/dist/components/dropdown/DropdownTestStory.d.ts +5 -0
  55. package/dist/components/dropdown/dropdown-utils.d.ts +4 -0
  56. package/dist/components/dropdown/dropdown-utils.js +14 -0
  57. package/dist/components/dropdown/types.d.ts +48 -0
  58. package/dist/components/dropdown/use-dropdown-keyboard.d.ts +12 -0
  59. package/dist/components/dropdown/use-dropdown-keyboard.js +49 -0
  60. package/dist/components/empty-state/EmptyState.d.ts +26 -0
  61. package/dist/components/empty-state/EmptyState.js +36 -0
  62. package/dist/components/error-state/ErrorState.d.ts +1 -1
  63. package/dist/components/featured-icon/FeaturedIcon.d.ts +12 -0
  64. package/dist/components/featured-icon/FeaturedIcon.js +44 -0
  65. package/dist/components/form-field/FormField.d.ts +13 -0
  66. package/dist/components/form-field/FormField.js +21 -0
  67. package/dist/components/keyboard-shortcut-label/KeyboardShortcutLabel.d.ts +8 -0
  68. package/dist/components/keyboard-shortcut-label/KeyboardShortcutLabel.js +18 -0
  69. package/dist/components/loading-state/Loader.d.ts +20 -0
  70. package/dist/components/loading-state/Loader.js +38 -0
  71. package/dist/components/loading-state/LoadingState.d.ts +15 -0
  72. package/dist/components/loading-state/LoadingState.js +47 -0
  73. package/dist/components/loading-state/locale/en.json.d.ts +6 -0
  74. package/dist/components/loading-state/locale/en.json.js +7 -0
  75. package/dist/components/loading-state/locale/vi.json.d.ts +6 -0
  76. package/dist/components/loading-state/locale/vi.json.js +7 -0
  77. package/dist/components/media/Media.d.ts +7 -0
  78. package/dist/components/media/Media.js +25 -0
  79. package/dist/components/modal/helpers/HeaderIcon.d.ts +1 -1
  80. package/dist/components/modal/helpers/Title.d.ts +1 -1
  81. package/dist/components/notification/NotificationBanner.d.ts +9 -0
  82. package/dist/components/notification/NotificationBanner.js +97 -0
  83. package/dist/components/notification/icons.d.ts +5 -0
  84. package/dist/components/notification/icons.js +29 -0
  85. package/dist/components/notification/index.d.ts +4 -0
  86. package/dist/components/notification/index.js +26 -0
  87. package/dist/components/notification/locale/en.json.d.ts +8 -0
  88. package/dist/components/notification/locale/en.json.js +7 -0
  89. package/dist/components/notification/locale/vi.json.d.ts +8 -0
  90. package/dist/components/notification/locale/vi.json.js +7 -0
  91. package/dist/components/operating-system-icon/OperatingSystemIcon.d.ts +6 -0
  92. package/dist/components/operating-system-icon/OperatingSystemIcon.js +19 -0
  93. package/dist/components/operating-system-icon/assets/logo-android.svg.js +5 -0
  94. package/dist/components/operating-system-icon/assets/logo-apple.svg.js +5 -0
  95. package/dist/components/operating-system-icon/assets/logo-ubuntu.svg.js +5 -0
  96. package/dist/components/operating-system-icon/assets/logo-windows-10.svg.js +5 -0
  97. package/dist/components/page-title/PageTitle.d.ts +1 -1
  98. package/dist/components/popover/Popover.d.ts +1 -1
  99. package/dist/components/progress-bar/ProgressBar.d.ts +9 -0
  100. package/dist/components/progress-bar/ProgressBar.js +31 -0
  101. package/dist/components/radio/Radio.d.ts +4 -0
  102. package/dist/components/radio/Radio.js +55 -0
  103. package/dist/components/searchbox/Searchbox.d.ts +7 -0
  104. package/dist/components/searchbox/Searchbox.js +15 -0
  105. package/dist/components/select/Select.d.ts +11 -0
  106. package/dist/components/select/Select.js +44 -0
  107. package/dist/components/sidebar/SidebarSecondMenu.d.ts +38 -0
  108. package/dist/components/sidebar/SidebarSecondMenu.js +50 -0
  109. package/dist/components/skeleton/Skeleton.d.ts +14 -0
  110. package/dist/components/skeleton/Skeleton.js +12 -0
  111. package/dist/components/stat-banner-card/StatBannerCard.d.ts +24 -0
  112. package/dist/components/stat-banner-card/StatBannerCard.js +49 -0
  113. package/dist/components/switch/Switch.d.ts +1 -1
  114. package/dist/components/table/Table.d.ts +32 -0
  115. package/dist/components/table/Table.js +128 -0
  116. package/dist/components/table/TableActionButton.d.ts +15 -0
  117. package/dist/components/table/TableActionButton.js +50 -0
  118. package/dist/components/table/TableCell.d.ts +8 -0
  119. package/dist/components/table/TableCell.js +26 -0
  120. package/dist/components/table/TableHeader.d.ts +15 -0
  121. package/dist/components/table/TableHeader.js +36 -0
  122. package/dist/components/table/TableHeaderCell.d.ts +10 -0
  123. package/dist/components/table/TableHeaderCell.js +35 -0
  124. package/dist/components/table/TablePagination.d.ts +6 -0
  125. package/dist/components/table/TablePagination.js +69 -0
  126. package/dist/components/table/TableRow.d.ts +12 -0
  127. package/dist/components/table/TableRow.js +9 -0
  128. package/dist/components/table/expandable/ExpandableTable.d.ts +30 -0
  129. package/dist/components/table/expandable/ExpandableTable.js +156 -0
  130. package/dist/components/table/hooks/use-fit-page-height.d.ts +14 -0
  131. package/dist/components/table/hooks/use-fit-page-height.js +21 -0
  132. package/dist/components/table/hooks/use-row-selection.d.ts +27 -0
  133. package/dist/components/table/hooks/use-row-selection.js +35 -0
  134. package/dist/components/table/locale/en.json.d.ts +13 -0
  135. package/dist/components/table/locale/en.json.js +21 -0
  136. package/dist/components/table/locale/vi.json.d.ts +13 -0
  137. package/dist/components/table/locale/vi.json.js +21 -0
  138. package/dist/components/table/table-utils.d.ts +10 -0
  139. package/dist/components/table/table-utils.js +10 -0
  140. package/dist/components/table/types.d.ts +84 -0
  141. package/dist/components/tabs/Tabs.d.ts +27 -0
  142. package/dist/components/tabs/Tabs.js +75 -0
  143. package/dist/components/tabs/TabsTestStory.d.ts +4 -0
  144. package/dist/components/tags-input/TagsInput.d.ts +18 -0
  145. package/dist/components/tags-input/TagsInput.js +78 -0
  146. package/dist/components/tags-input/TagsInputTestStory.d.ts +3 -0
  147. package/dist/components/textarea/Textarea.d.ts +7 -0
  148. package/dist/components/textarea/Textarea.js +36 -0
  149. package/dist/components/toast/ToastSlice.d.ts +1 -1
  150. package/dist/components/toast/index.d.ts +1 -1
  151. package/dist/components/tooltip/Tooltip.d.ts +1 -1
  152. package/dist/filters/FilterDropdown.d.ts +9 -0
  153. package/dist/filters/FilterDropdown.js +57 -0
  154. package/dist/filters/types.d.ts +11 -0
  155. package/dist/filters/url-params.d.ts +5 -0
  156. package/dist/filters/url-params.js +20 -0
  157. package/dist/filters/use-filters.d.ts +13 -0
  158. package/dist/filters/use-filters.js +63 -0
  159. package/dist/hooks/use-countdown.d.ts +4 -0
  160. package/dist/hooks/use-countdown.js +18 -0
  161. package/dist/i18n/resources.js +23 -0
  162. package/dist/index.d.ts +56 -0
  163. package/dist/index.js +126 -40
  164. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +421 -350
  165. package/dist/utils/key-typeguard.d.ts +5 -0
  166. package/dist/utils/key-typeguard.js +6 -0
  167. package/dist/utils/use-debounce.d.ts +1 -0
  168. package/dist/utils/use-debounce.js +11 -0
  169. package/package.json +32 -10
  170. package/theme.css +4 -1
@@ -1,111 +1,111 @@
1
1
  const Oe = (e, t) => {
2
- const o = new Array(e.length + t.length);
3
- for (let r = 0; r < e.length; r++)
4
- o[r] = e[r];
5
- for (let r = 0; r < t.length; r++)
6
- o[e.length + r] = t[r];
7
- return o;
8
- }, Ee = (e, t) => ({
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
9
  classGroupId: e,
10
10
  validator: t
11
- }), we = (e = /* @__PURE__ */ new Map(), t = null, o) => ({
11
+ }), ke = (e = /* @__PURE__ */ new Map(), t = null, r) => ({
12
12
  nextPart: e,
13
13
  validators: t,
14
- classGroupId: o
14
+ classGroupId: r
15
15
  });
16
- const be = [], Ge = "arbitrary..", _e = (e) => {
16
+ const be = [], Ee = "arbitrary..", Le = (e) => {
17
17
  const t = Ne(e), {
18
- conflictingClassGroups: o,
19
- conflictingClassGroupModifiers: r
18
+ conflictingClassGroups: r,
19
+ conflictingClassGroupModifiers: o
20
20
  } = e;
21
21
  return {
22
- getClassGroupId: (a) => {
23
- if (a.startsWith("[") && a.endsWith("]"))
24
- return Le(a);
25
- const b = a.split("-"), d = b[0] === "" && b.length > 1 ? 1 : 0;
26
- return ke(b, d, t);
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
27
  },
28
- getConflictingClassGroupIds: (a, b) => {
28
+ getConflictingClassGroupIds: (i, b) => {
29
29
  if (b) {
30
- const d = r[a], u = o[a];
31
- return d ? u ? Oe(u, d) : d : u || be;
30
+ const u = o[i], m = r[i];
31
+ return u ? m ? Oe(m, u) : u : m || be;
32
32
  }
33
- return o[a] || be;
33
+ return r[i] || be;
34
34
  }
35
35
  };
36
- }, ke = (e, t, o) => {
36
+ }, xe = (e, t, r) => {
37
37
  if (e.length - t === 0)
38
- return o.classGroupId;
39
- const c = e[t], m = o.nextPart.get(c);
40
- if (m) {
41
- const u = ke(e, t + 1, m);
42
- if (u) return u;
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
43
  }
44
- const a = o.validators;
45
- if (a === null)
44
+ const i = r.validators;
45
+ if (i === null)
46
46
  return;
47
- const b = t === 0 ? e.join("-") : e.slice(t).join("-"), d = a.length;
48
- for (let u = 0; u < d; u++) {
49
- const h = a[u];
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
50
  if (h.validator(b))
51
51
  return h.classGroupId;
52
52
  }
53
- }, Le = (e) => e.slice(1, -1).indexOf(":") === -1 ? void 0 : (() => {
54
- const t = e.slice(1, -1), o = t.indexOf(":"), r = t.slice(0, o);
55
- return r ? Ge + r : void 0;
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
56
  })(), Ne = (e) => {
57
57
  const {
58
58
  theme: t,
59
- classGroups: o
59
+ classGroups: r
60
60
  } = e;
61
- return je(o, t);
61
+ return je(r, t);
62
62
  }, je = (e, t) => {
63
- const o = we();
64
- for (const r in e) {
65
- const c = e[r];
66
- te(c, o, r, t);
63
+ const r = ke();
64
+ for (const o in e) {
65
+ const c = e[o];
66
+ te(c, r, o, t);
67
67
  }
68
- return o;
69
- }, te = (e, t, o, r) => {
68
+ return r;
69
+ }, te = (e, t, r, o) => {
70
70
  const c = e.length;
71
- for (let m = 0; m < c; m++) {
72
- const a = e[m];
73
- Fe(a, t, o, r);
71
+ for (let d = 0; d < c; d++) {
72
+ const i = e[d];
73
+ Fe(i, t, r, o);
74
74
  }
75
- }, Fe = (e, t, o, r) => {
75
+ }, Fe = (e, t, r, o) => {
76
76
  if (typeof e == "string") {
77
- Ve(e, t, o);
77
+ We(e, t, r);
78
78
  return;
79
79
  }
80
80
  if (typeof e == "function") {
81
- We(e, t, o, r);
81
+ Ve(e, t, r, o);
82
82
  return;
83
83
  }
84
- Be(e, t, o, r);
85
- }, Ve = (e, t, o) => {
86
- const r = e === "" ? t : xe(t, e);
87
- r.classGroupId = o;
88
- }, We = (e, t, o, r) => {
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
89
  if (De(e)) {
90
- te(e(r), t, o, r);
90
+ te(e(o), t, r, o);
91
91
  return;
92
92
  }
93
- t.validators === null && (t.validators = []), t.validators.push(Ee(o, e));
94
- }, Be = (e, t, o, r) => {
95
- const c = Object.entries(e), m = c.length;
96
- for (let a = 0; a < m; a++) {
97
- const [b, d] = c[a];
98
- te(d, xe(t, b), o, r);
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
99
  }
100
- }, xe = (e, t) => {
101
- let o = e;
102
- const r = t.split("-"), c = r.length;
103
- for (let m = 0; m < c; m++) {
104
- const a = r[m];
105
- let b = o.nextPart.get(a);
106
- b || (b = we(), o.nextPart.set(a, b)), o = b;
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
107
  }
108
- return o;
108
+ return r;
109
109
  }, De = (e) => "isThemeGetter" in e && e.isThemeGetter === !0, $e = (e) => {
110
110
  if (e < 1)
111
111
  return {
@@ -114,179 +114,194 @@ const be = [], Ge = "arbitrary..", _e = (e) => {
114
114
  set: () => {
115
115
  }
116
116
  };
117
- let t = 0, o = /* @__PURE__ */ Object.create(null), r = /* @__PURE__ */ Object.create(null);
118
- const c = (m, a) => {
119
- o[m] = a, t++, t > e && (t = 0, r = o, o = /* @__PURE__ */ Object.create(null));
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
120
  };
121
121
  return {
122
- get(m) {
123
- let a = o[m];
124
- if (a !== void 0)
125
- return a;
126
- if ((a = r[m]) !== void 0)
127
- return c(m, a), a;
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
128
  },
129
- set(m, a) {
130
- m in o ? o[m] = a : c(m, a);
129
+ set(d, i) {
130
+ d in r ? r[d] = i : c(d, i);
131
131
  }
132
132
  };
133
133
  };
134
- const Ue = [], ue = (e, t, o, r, c) => ({
134
+ const Ue = [], ue = (e, t, r, o, c) => ({
135
135
  modifiers: e,
136
136
  hasImportantModifier: t,
137
- baseClassName: o,
138
- maybePostfixModifierPosition: r,
137
+ baseClassName: r,
138
+ maybePostfixModifierPosition: o,
139
139
  isExternal: c
140
140
  }), Ye = (e) => {
141
141
  const {
142
142
  prefix: t,
143
- experimentalParseClassName: o
143
+ experimentalParseClassName: r
144
144
  } = e;
145
- let r = (c) => {
146
- const m = [];
147
- let a = 0, b = 0, d = 0, u;
145
+ let o = (c) => {
146
+ const d = [];
147
+ let i = 0, b = 0, u = 0, m;
148
148
  const h = c.length;
149
- for (let A = 0; A < h; A++) {
150
- const x = c[A];
151
- if (a === 0 && b === 0) {
152
- if (x === ":") {
153
- m.push(c.slice(d, A)), d = A + 1;
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
154
  continue;
155
155
  }
156
- if (x === "/") {
157
- u = A;
156
+ if (A === "/") {
157
+ m = y;
158
158
  continue;
159
159
  }
160
160
  }
161
- x === "[" ? a++ : x === "]" ? a-- : x === "(" ? b++ : x === ")" && b--;
161
+ A === "[" ? i++ : A === "]" ? i-- : A === "(" ? b++ : A === ")" && b--;
162
162
  }
163
- const v = m.length === 0 ? c : c.slice(d);
164
- let R = v, T = !1;
165
- v.endsWith("!") ? (R = v.slice(0, -1), T = !0) : (
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
166
  /**
167
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
168
  * @see https://github.com/dcastil/tailwind-merge/issues/513#issuecomment-2614029864
169
169
  */
170
- v.startsWith("!") && (R = v.slice(1), T = !0)
170
+ k.startsWith("!") && (O = k.slice(1), R = !0)
171
171
  );
172
- const M = u && u > d ? u - d : void 0;
173
- return ue(m, T, R, M);
172
+ const V = m && m > u ? m - u : void 0;
173
+ return ue(d, R, O, V);
174
174
  };
175
175
  if (t) {
176
- const c = t + ":", m = r;
177
- r = (a) => a.startsWith(c) ? m(a.slice(c.length)) : ue(Ue, !1, a, void 0, !0);
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
178
  }
179
- if (o) {
180
- const c = r;
181
- r = (m) => o({
182
- className: m,
179
+ if (r) {
180
+ const c = o;
181
+ o = (d) => r({
182
+ className: d,
183
183
  parseClassName: c
184
184
  });
185
185
  }
186
- return r;
186
+ return o;
187
187
  }, qe = (e) => {
188
188
  const t = /* @__PURE__ */ new Map();
189
- return e.orderSensitiveModifiers.forEach((o, r) => {
190
- t.set(o, 1e6 + r);
191
- }), (o) => {
192
- const r = [];
189
+ return e.orderSensitiveModifiers.forEach((r, o) => {
190
+ t.set(r, 1e6 + o);
191
+ }), (r) => {
192
+ const o = [];
193
193
  let c = [];
194
- for (let m = 0; m < o.length; m++) {
195
- const a = o[m], b = a[0] === "[", d = t.has(a);
196
- b || d ? (c.length > 0 && (c.sort(), r.push(...c), c = []), r.push(a)) : c.push(a);
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
197
  }
198
- return c.length > 0 && (c.sort(), r.push(...c)), r;
198
+ return c.length > 0 && (c.sort(), o.push(...c)), o;
199
199
  };
200
200
  }, Xe = (e) => ({
201
201
  cache: $e(e.cacheSize),
202
202
  parseClassName: Ye(e),
203
203
  sortModifiers: qe(e),
204
- ..._e(e)
205
- }), Je = /\s+/, He = (e, t) => {
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) => {
206
213
  const {
207
- parseClassName: o,
208
- getClassGroupId: r,
214
+ parseClassName: r,
215
+ getClassGroupId: o,
209
216
  getConflictingClassGroupIds: c,
210
- sortModifiers: m
211
- } = t, a = [], b = e.trim().split(Je);
212
- let d = "";
213
- for (let u = b.length - 1; u >= 0; u -= 1) {
214
- const h = b[u], {
215
- isExternal: v,
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,
216
224
  modifiers: R,
217
- hasImportantModifier: T,
218
- baseClassName: M,
225
+ hasImportantModifier: V,
226
+ baseClassName: y,
219
227
  maybePostfixModifierPosition: A
220
- } = o(h);
221
- if (v) {
222
- d = h + (d.length > 0 ? " " + d : d);
228
+ } = r(k);
229
+ if (O) {
230
+ m = k + (m.length > 0 ? " " + m : m);
223
231
  continue;
224
232
  }
225
- let x = !!A, O = r(x ? M.substring(0, A) : M);
226
- if (!O) {
227
- if (!x) {
228
- d = h + (d.length > 0 ? " " + d : d);
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);
229
244
  continue;
230
245
  }
231
- if (O = r(M), !O) {
232
- d = h + (d.length > 0 ? " " + d : d);
246
+ if (v = o(y), !v) {
247
+ m = k + (m.length > 0 ? " " + m : m);
233
248
  continue;
234
249
  }
235
- x = !1;
250
+ G = !1;
236
251
  }
237
- const D = R.length === 0 ? "" : R.length === 1 ? R[0] : m(R).join(":"), V = T ? D + "!" : D, N = V + O;
238
- if (a.indexOf(N) > -1)
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)
239
254
  continue;
240
- a.push(N);
241
- const j = c(O, x);
242
- for (let E = 0; E < j.length; ++E) {
243
- const W = j[E];
244
- a.push(V + W);
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);
245
260
  }
246
- d = h + (d.length > 0 ? " " + d : d);
261
+ m = k + (m.length > 0 ? " " + m : m);
247
262
  }
248
- return d;
263
+ return m;
249
264
  }, Ke = (...e) => {
250
- let t = 0, o, r, c = "";
265
+ let t = 0, r, o, c = "";
251
266
  for (; t < e.length; )
252
- (o = e[t++]) && (r = ye(o)) && (c && (c += " "), c += r);
267
+ (r = e[t++]) && (o = ye(r)) && (c && (c += " "), c += o);
253
268
  return c;
254
269
  }, ye = (e) => {
255
270
  if (typeof e == "string")
256
271
  return e;
257
- let t, o = "";
258
- for (let r = 0; r < e.length; r++)
259
- e[r] && (t = ye(e[r])) && (o && (o += " "), o += t);
260
- return o;
261
- }, Qe = (e, ...t) => {
262
- let o, r, c, m;
263
- const a = (d) => {
264
- const u = t.reduce((h, v) => v(h), e());
265
- return o = Xe(u), r = o.cache.get, c = o.cache.set, m = b, b(d);
266
- }, b = (d) => {
267
- const u = r(d);
268
- if (u)
269
- return u;
270
- const h = He(d, o);
271
- return c(d, h), h;
272
+ 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;
272
287
  };
273
- return m = a, (...d) => m(Ke(...d));
274
- }, Ze = [], f = (e) => {
275
- const t = (o) => o[e] || Ze;
288
+ return d = i, (...u) => d(Ke(...u));
289
+ }, eo = [], f = (e) => {
290
+ const t = (r) => r[e] || eo;
276
291
  return t.isThemeGetter = !0, t;
277
- }, ve = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, Ae = /^\((?:(\w[\w-]*):)?(.+)\)$/i, eo = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/, oo = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, ro = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, to = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, so = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, no = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, C = (e) => eo.test(e), p = (e) => !!e && !Number.isNaN(Number(e)), I = (e) => !!e && Number.isInteger(Number(e)), re = (e) => e.endsWith("%") && p(e.slice(0, -1)), S = (e) => oo.test(e), ze = () => !0, ao = (e) => (
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) => (
278
293
  // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
279
294
  // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
280
295
  // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
281
- ro.test(e) && !to.test(e)
282
- ), se = () => !1, io = (e) => so.test(e), lo = (e) => no.test(e), co = (e) => !s(e) && !n(e), mo = (e) => P(e, Ce, se), s = (e) => ve.test(e), _ = (e) => P(e, Ie, ao), fe = (e) => P(e, ko, p), po = (e) => P(e, Te, ze), bo = (e) => P(e, Pe, se), ge = (e) => P(e, Re, se), uo = (e) => P(e, Se, lo), J = (e) => P(e, Me, io), n = (e) => Ae.test(e), B = (e) => L(e, Ie), fo = (e) => L(e, Pe), he = (e) => L(e, Re), go = (e) => L(e, Ce), ho = (e) => L(e, Se), H = (e) => L(e, Me, !0), wo = (e) => L(e, Te, !0), P = (e, t, o) => {
283
- const r = ve.exec(e);
284
- return r ? r[1] ? t(r[1]) : o(r[2]) : !1;
285
- }, L = (e, t, o = !1) => {
286
- const r = Ae.exec(e);
287
- return r ? r[1] ? t(r[1]) : o : !1;
288
- }, Re = (e) => e === "position" || e === "percentage", Se = (e) => e === "image" || e === "url", Ce = (e) => e === "length" || e === "size" || e === "bg-size", Ie = (e) => e === "length", ko = (e) => e === "number", Pe = (e) => e === "family-name", Te = (e) => e === "number" || e === "weight", Me = (e) => e === "shadow", xo = () => {
289
- const e = f("color"), t = f("font"), o = f("text"), r = f("font-weight"), c = f("tracking"), m = f("leading"), a = f("breakpoint"), b = f("container"), d = f("spacing"), u = f("radius"), h = f("shadow"), v = f("inset-shadow"), R = f("text-shadow"), T = f("drop-shadow"), M = f("blur"), A = f("perspective"), x = f("aspect"), O = f("ease"), D = f("animate"), V = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], N = () => [
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 = () => [
290
305
  "center",
291
306
  "top",
292
307
  "bottom",
@@ -304,51 +319,51 @@ const Ue = [], ue = (e, t, o, r, c) => ({
304
319
  "bottom-left",
305
320
  // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
306
321
  "left-bottom"
307
- ], j = () => [...N(), n, s], E = () => ["auto", "hidden", "clip", "visible", "scroll"], W = () => ["auto", "contain", "none"], i = () => [n, s, d], y = () => [C, "full", "auto", ...i()], ne = () => [I, "none", "subgrid", n, s], ae = () => ["auto", {
308
- span: ["full", I, n, s]
309
- }, I, n, s], $ = () => [I, "auto", n, s], ie = () => ["auto", "min", "max", "fr", n, s], K = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], F = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], z = () => ["auto", ...i()], G = () => [C, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...i()], Q = () => [C, "screen", "full", "dvw", "lvw", "svw", "min", "max", "fit", ...i()], Z = () => [C, "screen", "full", "lh", "dvh", "lvh", "svh", "min", "max", "fit", ...i()], l = () => [e, n, s], le = () => [...N(), he, ge, {
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, {
310
325
  position: [n, s]
311
326
  }], ce = () => ["no-repeat", {
312
327
  repeat: ["", "x", "y", "space", "round"]
313
- }], de = () => ["auto", "cover", "contain", go, mo, {
328
+ }], de = () => ["auto", "cover", "contain", ko, bo, {
314
329
  size: [n, s]
315
- }], ee = () => [re, B, _], w = () => [
330
+ }], ee = () => [re, D, L], x = () => [
316
331
  // Deprecated since Tailwind CSS v4.0.0
317
332
  "",
318
333
  "none",
319
334
  "full",
320
- u,
335
+ m,
321
336
  n,
322
337
  s
323
- ], k = () => ["", p, B, _], U = () => ["solid", "dashed", "dotted", "double"], me = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], g = () => [p, re, he, ge], pe = () => [
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 = () => [
324
339
  // Deprecated since Tailwind CSS v4.0.0
325
340
  "",
326
341
  "none",
327
- M,
342
+ V,
328
343
  n,
329
344
  s
330
- ], Y = () => ["none", p, n, s], q = () => ["none", p, n, s], oe = () => [p, n, s], X = () => [C, "full", ...i()];
345
+ ], Y = () => ["none", p, n, s], q = () => ["none", p, n, s], oe = () => [p, n, s], X = () => [T, "full", ...a()];
331
346
  return {
332
347
  cacheSize: 500,
333
348
  theme: {
334
349
  animate: ["spin", "ping", "pulse", "bounce"],
335
350
  aspect: ["video"],
336
- blur: [S],
337
- breakpoint: [S],
338
- color: [ze],
339
- container: [S],
340
- "drop-shadow": [S],
351
+ blur: [P],
352
+ breakpoint: [P],
353
+ color: [Ae],
354
+ container: [P],
355
+ "drop-shadow": [P],
341
356
  ease: ["in", "out", "in-out"],
342
- font: [co],
357
+ font: [mo],
343
358
  "font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
344
- "inset-shadow": [S],
359
+ "inset-shadow": [P],
345
360
  leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
346
361
  perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
347
- radius: [S],
348
- shadow: [S],
362
+ radius: [P],
363
+ shadow: [P],
349
364
  spacing: ["px", p],
350
- text: [S],
351
- "text-shadow": [S],
365
+ text: [P],
366
+ "text-shadow": [P],
352
367
  tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
353
368
  },
354
369
  classGroups: {
@@ -360,7 +375,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
360
375
  * @see https://tailwindcss.com/docs/aspect-ratio
361
376
  */
362
377
  aspect: [{
363
- aspect: ["auto", "square", C, s, n, x]
378
+ aspect: ["auto", "square", T, s, n, A]
364
379
  }],
365
380
  /**
366
381
  * Container
@@ -368,6 +383,18 @@ const Ue = [], ue = (e, t, o, r, c) => ({
368
383
  * @deprecated since Tailwind CSS v4.0.0
369
384
  */
370
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],
371
398
  /**
372
399
  * Columns
373
400
  * @see https://tailwindcss.com/docs/columns
@@ -380,14 +407,14 @@ const Ue = [], ue = (e, t, o, r, c) => ({
380
407
  * @see https://tailwindcss.com/docs/break-after
381
408
  */
382
409
  "break-after": [{
383
- "break-after": V()
410
+ "break-after": B()
384
411
  }],
385
412
  /**
386
413
  * Break Before
387
414
  * @see https://tailwindcss.com/docs/break-before
388
415
  */
389
416
  "break-before": [{
390
- "break-before": V()
417
+ "break-before": B()
391
418
  }],
392
419
  /**
393
420
  * Break Inside
@@ -458,42 +485,42 @@ const Ue = [], ue = (e, t, o, r, c) => ({
458
485
  * @see https://tailwindcss.com/docs/overflow
459
486
  */
460
487
  overflow: [{
461
- overflow: E()
488
+ overflow: F()
462
489
  }],
463
490
  /**
464
491
  * Overflow X
465
492
  * @see https://tailwindcss.com/docs/overflow
466
493
  */
467
494
  "overflow-x": [{
468
- "overflow-x": E()
495
+ "overflow-x": F()
469
496
  }],
470
497
  /**
471
498
  * Overflow Y
472
499
  * @see https://tailwindcss.com/docs/overflow
473
500
  */
474
501
  "overflow-y": [{
475
- "overflow-y": E()
502
+ "overflow-y": F()
476
503
  }],
477
504
  /**
478
505
  * Overscroll Behavior
479
506
  * @see https://tailwindcss.com/docs/overscroll-behavior
480
507
  */
481
508
  overscroll: [{
482
- overscroll: W()
509
+ overscroll: I()
483
510
  }],
484
511
  /**
485
512
  * Overscroll Behavior X
486
513
  * @see https://tailwindcss.com/docs/overscroll-behavior
487
514
  */
488
515
  "overscroll-x": [{
489
- "overscroll-x": W()
516
+ "overscroll-x": I()
490
517
  }],
491
518
  /**
492
519
  * Overscroll Behavior Y
493
520
  * @see https://tailwindcss.com/docs/overscroll-behavior
494
521
  */
495
522
  "overscroll-y": [{
496
- "overscroll-y": W()
523
+ "overscroll-y": I()
497
524
  }],
498
525
  /**
499
526
  * Position
@@ -505,21 +532,21 @@ const Ue = [], ue = (e, t, o, r, c) => ({
505
532
  * @see https://tailwindcss.com/docs/top-right-bottom-left
506
533
  */
507
534
  inset: [{
508
- inset: y()
535
+ inset: z()
509
536
  }],
510
537
  /**
511
538
  * Inset Inline
512
539
  * @see https://tailwindcss.com/docs/top-right-bottom-left
513
540
  */
514
541
  "inset-x": [{
515
- "inset-x": y()
542
+ "inset-x": z()
516
543
  }],
517
544
  /**
518
545
  * Inset Block
519
546
  * @see https://tailwindcss.com/docs/top-right-bottom-left
520
547
  */
521
548
  "inset-y": [{
522
- "inset-y": y()
549
+ "inset-y": z()
523
550
  }],
524
551
  /**
525
552
  * Inset Inline Start
@@ -527,12 +554,12 @@ const Ue = [], ue = (e, t, o, r, c) => ({
527
554
  * @todo class group will be renamed to `inset-s` in next major release
528
555
  */
529
556
  start: [{
530
- "inset-s": y(),
557
+ "inset-s": z(),
531
558
  /**
532
559
  * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-s-*` utilities.
533
560
  * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
534
561
  */
535
- start: y()
562
+ start: z()
536
563
  }],
537
564
  /**
538
565
  * Inset Inline End
@@ -540,54 +567,54 @@ const Ue = [], ue = (e, t, o, r, c) => ({
540
567
  * @todo class group will be renamed to `inset-e` in next major release
541
568
  */
542
569
  end: [{
543
- "inset-e": y(),
570
+ "inset-e": z(),
544
571
  /**
545
572
  * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-e-*` utilities.
546
573
  * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
547
574
  */
548
- end: y()
575
+ end: z()
549
576
  }],
550
577
  /**
551
578
  * Inset Block Start
552
579
  * @see https://tailwindcss.com/docs/top-right-bottom-left
553
580
  */
554
581
  "inset-bs": [{
555
- "inset-bs": y()
582
+ "inset-bs": z()
556
583
  }],
557
584
  /**
558
585
  * Inset Block End
559
586
  * @see https://tailwindcss.com/docs/top-right-bottom-left
560
587
  */
561
588
  "inset-be": [{
562
- "inset-be": y()
589
+ "inset-be": z()
563
590
  }],
564
591
  /**
565
592
  * Top
566
593
  * @see https://tailwindcss.com/docs/top-right-bottom-left
567
594
  */
568
595
  top: [{
569
- top: y()
596
+ top: z()
570
597
  }],
571
598
  /**
572
599
  * Right
573
600
  * @see https://tailwindcss.com/docs/top-right-bottom-left
574
601
  */
575
602
  right: [{
576
- right: y()
603
+ right: z()
577
604
  }],
578
605
  /**
579
606
  * Bottom
580
607
  * @see https://tailwindcss.com/docs/top-right-bottom-left
581
608
  */
582
609
  bottom: [{
583
- bottom: y()
610
+ bottom: z()
584
611
  }],
585
612
  /**
586
613
  * Left
587
614
  * @see https://tailwindcss.com/docs/top-right-bottom-left
588
615
  */
589
616
  left: [{
590
- left: y()
617
+ left: z()
591
618
  }],
592
619
  /**
593
620
  * Visibility
@@ -599,7 +626,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
599
626
  * @see https://tailwindcss.com/docs/z-index
600
627
  */
601
628
  z: [{
602
- z: [I, "auto", n, s]
629
+ z: [S, "auto", n, s]
603
630
  }],
604
631
  // ------------------------
605
632
  // --- Flexbox and Grid ---
@@ -609,7 +636,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
609
636
  * @see https://tailwindcss.com/docs/flex-basis
610
637
  */
611
638
  basis: [{
612
- basis: [C, "full", "auto", b, ...i()]
639
+ basis: [T, "full", "auto", b, ...a()]
613
640
  }],
614
641
  /**
615
642
  * Flex Direction
@@ -630,7 +657,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
630
657
  * @see https://tailwindcss.com/docs/flex
631
658
  */
632
659
  flex: [{
633
- flex: [p, C, "auto", "initial", "none", s]
660
+ flex: [p, T, "auto", "initial", "none", s]
634
661
  }],
635
662
  /**
636
663
  * Flex Grow
@@ -651,7 +678,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
651
678
  * @see https://tailwindcss.com/docs/order
652
679
  */
653
680
  order: [{
654
- order: [I, "first", "last", "none", n, s]
681
+ order: [S, "first", "last", "none", n, s]
655
682
  }],
656
683
  /**
657
684
  * Grid Template Columns
@@ -735,56 +762,56 @@ const Ue = [], ue = (e, t, o, r, c) => ({
735
762
  * @see https://tailwindcss.com/docs/gap
736
763
  */
737
764
  gap: [{
738
- gap: i()
765
+ gap: a()
739
766
  }],
740
767
  /**
741
768
  * Gap X
742
769
  * @see https://tailwindcss.com/docs/gap
743
770
  */
744
771
  "gap-x": [{
745
- "gap-x": i()
772
+ "gap-x": a()
746
773
  }],
747
774
  /**
748
775
  * Gap Y
749
776
  * @see https://tailwindcss.com/docs/gap
750
777
  */
751
778
  "gap-y": [{
752
- "gap-y": i()
779
+ "gap-y": a()
753
780
  }],
754
781
  /**
755
782
  * Justify Content
756
783
  * @see https://tailwindcss.com/docs/justify-content
757
784
  */
758
785
  "justify-content": [{
759
- justify: [...K(), "normal"]
786
+ justify: [...H(), "normal"]
760
787
  }],
761
788
  /**
762
789
  * Justify Items
763
790
  * @see https://tailwindcss.com/docs/justify-items
764
791
  */
765
792
  "justify-items": [{
766
- "justify-items": [...F(), "normal"]
793
+ "justify-items": [...W(), "normal"]
767
794
  }],
768
795
  /**
769
796
  * Justify Self
770
797
  * @see https://tailwindcss.com/docs/justify-self
771
798
  */
772
799
  "justify-self": [{
773
- "justify-self": ["auto", ...F()]
800
+ "justify-self": ["auto", ...W()]
774
801
  }],
775
802
  /**
776
803
  * Align Content
777
804
  * @see https://tailwindcss.com/docs/align-content
778
805
  */
779
806
  "align-content": [{
780
- content: ["normal", ...K()]
807
+ content: ["normal", ...H()]
781
808
  }],
782
809
  /**
783
810
  * Align Items
784
811
  * @see https://tailwindcss.com/docs/align-items
785
812
  */
786
813
  "align-items": [{
787
- items: [...F(), {
814
+ items: [...W(), {
788
815
  baseline: ["", "last"]
789
816
  }]
790
817
  }],
@@ -793,7 +820,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
793
820
  * @see https://tailwindcss.com/docs/align-self
794
821
  */
795
822
  "align-self": [{
796
- self: ["auto", ...F(), {
823
+ self: ["auto", ...W(), {
797
824
  baseline: ["", "last"]
798
825
  }]
799
826
  }],
@@ -802,21 +829,21 @@ const Ue = [], ue = (e, t, o, r, c) => ({
802
829
  * @see https://tailwindcss.com/docs/place-content
803
830
  */
804
831
  "place-content": [{
805
- "place-content": K()
832
+ "place-content": H()
806
833
  }],
807
834
  /**
808
835
  * Place Items
809
836
  * @see https://tailwindcss.com/docs/place-items
810
837
  */
811
838
  "place-items": [{
812
- "place-items": [...F(), "baseline"]
839
+ "place-items": [...W(), "baseline"]
813
840
  }],
814
841
  /**
815
842
  * Place Self
816
843
  * @see https://tailwindcss.com/docs/place-self
817
844
  */
818
845
  "place-self": [{
819
- "place-self": ["auto", ...F()]
846
+ "place-self": ["auto", ...W()]
820
847
  }],
821
848
  // Spacing
822
849
  /**
@@ -824,161 +851,161 @@ const Ue = [], ue = (e, t, o, r, c) => ({
824
851
  * @see https://tailwindcss.com/docs/padding
825
852
  */
826
853
  p: [{
827
- p: i()
854
+ p: a()
828
855
  }],
829
856
  /**
830
857
  * Padding Inline
831
858
  * @see https://tailwindcss.com/docs/padding
832
859
  */
833
860
  px: [{
834
- px: i()
861
+ px: a()
835
862
  }],
836
863
  /**
837
864
  * Padding Block
838
865
  * @see https://tailwindcss.com/docs/padding
839
866
  */
840
867
  py: [{
841
- py: i()
868
+ py: a()
842
869
  }],
843
870
  /**
844
871
  * Padding Inline Start
845
872
  * @see https://tailwindcss.com/docs/padding
846
873
  */
847
874
  ps: [{
848
- ps: i()
875
+ ps: a()
849
876
  }],
850
877
  /**
851
878
  * Padding Inline End
852
879
  * @see https://tailwindcss.com/docs/padding
853
880
  */
854
881
  pe: [{
855
- pe: i()
882
+ pe: a()
856
883
  }],
857
884
  /**
858
885
  * Padding Block Start
859
886
  * @see https://tailwindcss.com/docs/padding
860
887
  */
861
888
  pbs: [{
862
- pbs: i()
889
+ pbs: a()
863
890
  }],
864
891
  /**
865
892
  * Padding Block End
866
893
  * @see https://tailwindcss.com/docs/padding
867
894
  */
868
895
  pbe: [{
869
- pbe: i()
896
+ pbe: a()
870
897
  }],
871
898
  /**
872
899
  * Padding Top
873
900
  * @see https://tailwindcss.com/docs/padding
874
901
  */
875
902
  pt: [{
876
- pt: i()
903
+ pt: a()
877
904
  }],
878
905
  /**
879
906
  * Padding Right
880
907
  * @see https://tailwindcss.com/docs/padding
881
908
  */
882
909
  pr: [{
883
- pr: i()
910
+ pr: a()
884
911
  }],
885
912
  /**
886
913
  * Padding Bottom
887
914
  * @see https://tailwindcss.com/docs/padding
888
915
  */
889
916
  pb: [{
890
- pb: i()
917
+ pb: a()
891
918
  }],
892
919
  /**
893
920
  * Padding Left
894
921
  * @see https://tailwindcss.com/docs/padding
895
922
  */
896
923
  pl: [{
897
- pl: i()
924
+ pl: a()
898
925
  }],
899
926
  /**
900
927
  * Margin
901
928
  * @see https://tailwindcss.com/docs/margin
902
929
  */
903
930
  m: [{
904
- m: z()
931
+ m: C()
905
932
  }],
906
933
  /**
907
934
  * Margin Inline
908
935
  * @see https://tailwindcss.com/docs/margin
909
936
  */
910
937
  mx: [{
911
- mx: z()
938
+ mx: C()
912
939
  }],
913
940
  /**
914
941
  * Margin Block
915
942
  * @see https://tailwindcss.com/docs/margin
916
943
  */
917
944
  my: [{
918
- my: z()
945
+ my: C()
919
946
  }],
920
947
  /**
921
948
  * Margin Inline Start
922
949
  * @see https://tailwindcss.com/docs/margin
923
950
  */
924
951
  ms: [{
925
- ms: z()
952
+ ms: C()
926
953
  }],
927
954
  /**
928
955
  * Margin Inline End
929
956
  * @see https://tailwindcss.com/docs/margin
930
957
  */
931
958
  me: [{
932
- me: z()
959
+ me: C()
933
960
  }],
934
961
  /**
935
962
  * Margin Block Start
936
963
  * @see https://tailwindcss.com/docs/margin
937
964
  */
938
965
  mbs: [{
939
- mbs: z()
966
+ mbs: C()
940
967
  }],
941
968
  /**
942
969
  * Margin Block End
943
970
  * @see https://tailwindcss.com/docs/margin
944
971
  */
945
972
  mbe: [{
946
- mbe: z()
973
+ mbe: C()
947
974
  }],
948
975
  /**
949
976
  * Margin Top
950
977
  * @see https://tailwindcss.com/docs/margin
951
978
  */
952
979
  mt: [{
953
- mt: z()
980
+ mt: C()
954
981
  }],
955
982
  /**
956
983
  * Margin Right
957
984
  * @see https://tailwindcss.com/docs/margin
958
985
  */
959
986
  mr: [{
960
- mr: z()
987
+ mr: C()
961
988
  }],
962
989
  /**
963
990
  * Margin Bottom
964
991
  * @see https://tailwindcss.com/docs/margin
965
992
  */
966
993
  mb: [{
967
- mb: z()
994
+ mb: C()
968
995
  }],
969
996
  /**
970
997
  * Margin Left
971
998
  * @see https://tailwindcss.com/docs/margin
972
999
  */
973
1000
  ml: [{
974
- ml: z()
1001
+ ml: C()
975
1002
  }],
976
1003
  /**
977
1004
  * Space Between X
978
1005
  * @see https://tailwindcss.com/docs/margin#adding-space-between-children
979
1006
  */
980
1007
  "space-x": [{
981
- "space-x": i()
1008
+ "space-x": a()
982
1009
  }],
983
1010
  /**
984
1011
  * Space Between X Reverse
@@ -990,7 +1017,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
990
1017
  * @see https://tailwindcss.com/docs/margin#adding-space-between-children
991
1018
  */
992
1019
  "space-y": [{
993
- "space-y": i()
1020
+ "space-y": a()
994
1021
  }],
995
1022
  /**
996
1023
  * Space Between Y Reverse
@@ -1005,28 +1032,28 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1005
1032
  * @see https://tailwindcss.com/docs/width#setting-both-width-and-height
1006
1033
  */
1007
1034
  size: [{
1008
- size: G()
1035
+ size: E()
1009
1036
  }],
1010
1037
  /**
1011
1038
  * Inline Size
1012
1039
  * @see https://tailwindcss.com/docs/width
1013
1040
  */
1014
1041
  "inline-size": [{
1015
- inline: ["auto", ...Q()]
1042
+ inline: ["auto", ...K()]
1016
1043
  }],
1017
1044
  /**
1018
1045
  * Min-Inline Size
1019
1046
  * @see https://tailwindcss.com/docs/min-width
1020
1047
  */
1021
1048
  "min-inline-size": [{
1022
- "min-inline": ["auto", ...Q()]
1049
+ "min-inline": ["auto", ...K()]
1023
1050
  }],
1024
1051
  /**
1025
1052
  * Max-Inline Size
1026
1053
  * @see https://tailwindcss.com/docs/max-width
1027
1054
  */
1028
1055
  "max-inline-size": [{
1029
- "max-inline": ["none", ...Q()]
1056
+ "max-inline": ["none", ...K()]
1030
1057
  }],
1031
1058
  /**
1032
1059
  * Block Size
@@ -1054,7 +1081,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1054
1081
  * @see https://tailwindcss.com/docs/width
1055
1082
  */
1056
1083
  w: [{
1057
- w: [b, "screen", ...G()]
1084
+ w: [b, "screen", ...E()]
1058
1085
  }],
1059
1086
  /**
1060
1087
  * Min-Width
@@ -1066,7 +1093,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1066
1093
  "screen",
1067
1094
  /** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1068
1095
  "none",
1069
- ...G()
1096
+ ...E()
1070
1097
  ]
1071
1098
  }],
1072
1099
  /**
@@ -1082,9 +1109,9 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1082
1109
  "prose",
1083
1110
  /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1084
1111
  {
1085
- screen: [a]
1112
+ screen: [i]
1086
1113
  },
1087
- ...G()
1114
+ ...E()
1088
1115
  ]
1089
1116
  }],
1090
1117
  /**
@@ -1092,21 +1119,21 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1092
1119
  * @see https://tailwindcss.com/docs/height
1093
1120
  */
1094
1121
  h: [{
1095
- h: ["screen", "lh", ...G()]
1122
+ h: ["screen", "lh", ...E()]
1096
1123
  }],
1097
1124
  /**
1098
1125
  * Min-Height
1099
1126
  * @see https://tailwindcss.com/docs/min-height
1100
1127
  */
1101
1128
  "min-h": [{
1102
- "min-h": ["screen", "lh", "none", ...G()]
1129
+ "min-h": ["screen", "lh", "none", ...E()]
1103
1130
  }],
1104
1131
  /**
1105
1132
  * Max-Height
1106
1133
  * @see https://tailwindcss.com/docs/max-height
1107
1134
  */
1108
1135
  "max-h": [{
1109
- "max-h": ["screen", "lh", ...G()]
1136
+ "max-h": ["screen", "lh", ...E()]
1110
1137
  }],
1111
1138
  // ------------------
1112
1139
  // --- Typography ---
@@ -1116,7 +1143,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1116
1143
  * @see https://tailwindcss.com/docs/font-size
1117
1144
  */
1118
1145
  "font-size": [{
1119
- text: ["base", o, B, _]
1146
+ text: ["base", r, D, L]
1120
1147
  }],
1121
1148
  /**
1122
1149
  * Font Smoothing
@@ -1133,7 +1160,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1133
1160
  * @see https://tailwindcss.com/docs/font-weight
1134
1161
  */
1135
1162
  "font-weight": [{
1136
- font: [r, wo, po]
1163
+ font: [o, wo, uo]
1137
1164
  }],
1138
1165
  /**
1139
1166
  * Font Stretch
@@ -1147,7 +1174,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1147
1174
  * @see https://tailwindcss.com/docs/font-family
1148
1175
  */
1149
1176
  "font-family": [{
1150
- font: [fo, bo, t]
1177
+ font: [ho, fo, t]
1151
1178
  }],
1152
1179
  /**
1153
1180
  * Font Feature Settings
@@ -1207,8 +1234,8 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1207
1234
  leading: [{
1208
1235
  leading: [
1209
1236
  /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1210
- m,
1211
- ...i()
1237
+ d,
1238
+ ...a()
1212
1239
  ]
1213
1240
  }],
1214
1241
  /**
@@ -1271,7 +1298,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1271
1298
  * @see https://tailwindcss.com/docs/text-decoration-thickness
1272
1299
  */
1273
1300
  "text-decoration-thickness": [{
1274
- decoration: [p, "from-font", "auto", n, _]
1301
+ decoration: [p, "from-font", "auto", n, L]
1275
1302
  }],
1276
1303
  /**
1277
1304
  * Text Decoration Color
@@ -1309,7 +1336,14 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1309
1336
  * @see https://tailwindcss.com/docs/text-indent
1310
1337
  */
1311
1338
  indent: [{
1312
- indent: i()
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]
1313
1347
  }],
1314
1348
  /**
1315
1349
  * Vertical Alignment
@@ -1406,10 +1440,10 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1406
1440
  bg: ["none", {
1407
1441
  linear: [{
1408
1442
  to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1409
- }, I, n, s],
1443
+ }, S, n, s],
1410
1444
  radial: ["", n, s],
1411
- conic: [I, n, s]
1412
- }, ho, uo]
1445
+ conic: [S, n, s]
1446
+ }, xo, go]
1413
1447
  }],
1414
1448
  /**
1415
1449
  * Background Color
@@ -1468,189 +1502,189 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1468
1502
  * @see https://tailwindcss.com/docs/border-radius
1469
1503
  */
1470
1504
  rounded: [{
1471
- rounded: w()
1505
+ rounded: x()
1472
1506
  }],
1473
1507
  /**
1474
1508
  * Border Radius Start
1475
1509
  * @see https://tailwindcss.com/docs/border-radius
1476
1510
  */
1477
1511
  "rounded-s": [{
1478
- "rounded-s": w()
1512
+ "rounded-s": x()
1479
1513
  }],
1480
1514
  /**
1481
1515
  * Border Radius End
1482
1516
  * @see https://tailwindcss.com/docs/border-radius
1483
1517
  */
1484
1518
  "rounded-e": [{
1485
- "rounded-e": w()
1519
+ "rounded-e": x()
1486
1520
  }],
1487
1521
  /**
1488
1522
  * Border Radius Top
1489
1523
  * @see https://tailwindcss.com/docs/border-radius
1490
1524
  */
1491
1525
  "rounded-t": [{
1492
- "rounded-t": w()
1526
+ "rounded-t": x()
1493
1527
  }],
1494
1528
  /**
1495
1529
  * Border Radius Right
1496
1530
  * @see https://tailwindcss.com/docs/border-radius
1497
1531
  */
1498
1532
  "rounded-r": [{
1499
- "rounded-r": w()
1533
+ "rounded-r": x()
1500
1534
  }],
1501
1535
  /**
1502
1536
  * Border Radius Bottom
1503
1537
  * @see https://tailwindcss.com/docs/border-radius
1504
1538
  */
1505
1539
  "rounded-b": [{
1506
- "rounded-b": w()
1540
+ "rounded-b": x()
1507
1541
  }],
1508
1542
  /**
1509
1543
  * Border Radius Left
1510
1544
  * @see https://tailwindcss.com/docs/border-radius
1511
1545
  */
1512
1546
  "rounded-l": [{
1513
- "rounded-l": w()
1547
+ "rounded-l": x()
1514
1548
  }],
1515
1549
  /**
1516
1550
  * Border Radius Start Start
1517
1551
  * @see https://tailwindcss.com/docs/border-radius
1518
1552
  */
1519
1553
  "rounded-ss": [{
1520
- "rounded-ss": w()
1554
+ "rounded-ss": x()
1521
1555
  }],
1522
1556
  /**
1523
1557
  * Border Radius Start End
1524
1558
  * @see https://tailwindcss.com/docs/border-radius
1525
1559
  */
1526
1560
  "rounded-se": [{
1527
- "rounded-se": w()
1561
+ "rounded-se": x()
1528
1562
  }],
1529
1563
  /**
1530
1564
  * Border Radius End End
1531
1565
  * @see https://tailwindcss.com/docs/border-radius
1532
1566
  */
1533
1567
  "rounded-ee": [{
1534
- "rounded-ee": w()
1568
+ "rounded-ee": x()
1535
1569
  }],
1536
1570
  /**
1537
1571
  * Border Radius End Start
1538
1572
  * @see https://tailwindcss.com/docs/border-radius
1539
1573
  */
1540
1574
  "rounded-es": [{
1541
- "rounded-es": w()
1575
+ "rounded-es": x()
1542
1576
  }],
1543
1577
  /**
1544
1578
  * Border Radius Top Left
1545
1579
  * @see https://tailwindcss.com/docs/border-radius
1546
1580
  */
1547
1581
  "rounded-tl": [{
1548
- "rounded-tl": w()
1582
+ "rounded-tl": x()
1549
1583
  }],
1550
1584
  /**
1551
1585
  * Border Radius Top Right
1552
1586
  * @see https://tailwindcss.com/docs/border-radius
1553
1587
  */
1554
1588
  "rounded-tr": [{
1555
- "rounded-tr": w()
1589
+ "rounded-tr": x()
1556
1590
  }],
1557
1591
  /**
1558
1592
  * Border Radius Bottom Right
1559
1593
  * @see https://tailwindcss.com/docs/border-radius
1560
1594
  */
1561
1595
  "rounded-br": [{
1562
- "rounded-br": w()
1596
+ "rounded-br": x()
1563
1597
  }],
1564
1598
  /**
1565
1599
  * Border Radius Bottom Left
1566
1600
  * @see https://tailwindcss.com/docs/border-radius
1567
1601
  */
1568
1602
  "rounded-bl": [{
1569
- "rounded-bl": w()
1603
+ "rounded-bl": x()
1570
1604
  }],
1571
1605
  /**
1572
1606
  * Border Width
1573
1607
  * @see https://tailwindcss.com/docs/border-width
1574
1608
  */
1575
1609
  "border-w": [{
1576
- border: k()
1610
+ border: w()
1577
1611
  }],
1578
1612
  /**
1579
1613
  * Border Width Inline
1580
1614
  * @see https://tailwindcss.com/docs/border-width
1581
1615
  */
1582
1616
  "border-w-x": [{
1583
- "border-x": k()
1617
+ "border-x": w()
1584
1618
  }],
1585
1619
  /**
1586
1620
  * Border Width Block
1587
1621
  * @see https://tailwindcss.com/docs/border-width
1588
1622
  */
1589
1623
  "border-w-y": [{
1590
- "border-y": k()
1624
+ "border-y": w()
1591
1625
  }],
1592
1626
  /**
1593
1627
  * Border Width Inline Start
1594
1628
  * @see https://tailwindcss.com/docs/border-width
1595
1629
  */
1596
1630
  "border-w-s": [{
1597
- "border-s": k()
1631
+ "border-s": w()
1598
1632
  }],
1599
1633
  /**
1600
1634
  * Border Width Inline End
1601
1635
  * @see https://tailwindcss.com/docs/border-width
1602
1636
  */
1603
1637
  "border-w-e": [{
1604
- "border-e": k()
1638
+ "border-e": w()
1605
1639
  }],
1606
1640
  /**
1607
1641
  * Border Width Block Start
1608
1642
  * @see https://tailwindcss.com/docs/border-width
1609
1643
  */
1610
1644
  "border-w-bs": [{
1611
- "border-bs": k()
1645
+ "border-bs": w()
1612
1646
  }],
1613
1647
  /**
1614
1648
  * Border Width Block End
1615
1649
  * @see https://tailwindcss.com/docs/border-width
1616
1650
  */
1617
1651
  "border-w-be": [{
1618
- "border-be": k()
1652
+ "border-be": w()
1619
1653
  }],
1620
1654
  /**
1621
1655
  * Border Width Top
1622
1656
  * @see https://tailwindcss.com/docs/border-width
1623
1657
  */
1624
1658
  "border-w-t": [{
1625
- "border-t": k()
1659
+ "border-t": w()
1626
1660
  }],
1627
1661
  /**
1628
1662
  * Border Width Right
1629
1663
  * @see https://tailwindcss.com/docs/border-width
1630
1664
  */
1631
1665
  "border-w-r": [{
1632
- "border-r": k()
1666
+ "border-r": w()
1633
1667
  }],
1634
1668
  /**
1635
1669
  * Border Width Bottom
1636
1670
  * @see https://tailwindcss.com/docs/border-width
1637
1671
  */
1638
1672
  "border-w-b": [{
1639
- "border-b": k()
1673
+ "border-b": w()
1640
1674
  }],
1641
1675
  /**
1642
1676
  * Border Width Left
1643
1677
  * @see https://tailwindcss.com/docs/border-width
1644
1678
  */
1645
1679
  "border-w-l": [{
1646
- "border-l": k()
1680
+ "border-l": w()
1647
1681
  }],
1648
1682
  /**
1649
1683
  * Divide Width X
1650
1684
  * @see https://tailwindcss.com/docs/border-width#between-children
1651
1685
  */
1652
1686
  "divide-x": [{
1653
- "divide-x": k()
1687
+ "divide-x": w()
1654
1688
  }],
1655
1689
  /**
1656
1690
  * Divide Width X Reverse
@@ -1662,7 +1696,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1662
1696
  * @see https://tailwindcss.com/docs/border-width#between-children
1663
1697
  */
1664
1698
  "divide-y": [{
1665
- "divide-y": k()
1699
+ "divide-y": w()
1666
1700
  }],
1667
1701
  /**
1668
1702
  * Divide Width Y Reverse
@@ -1786,7 +1820,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1786
1820
  * @see https://tailwindcss.com/docs/outline-width
1787
1821
  */
1788
1822
  "outline-w": [{
1789
- outline: ["", p, B, _]
1823
+ outline: ["", p, D, L]
1790
1824
  }],
1791
1825
  /**
1792
1826
  * Outline Color
@@ -1808,7 +1842,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1808
1842
  "",
1809
1843
  "none",
1810
1844
  h,
1811
- H,
1845
+ Q,
1812
1846
  J
1813
1847
  ]
1814
1848
  }],
@@ -1824,7 +1858,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1824
1858
  * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
1825
1859
  */
1826
1860
  "inset-shadow": [{
1827
- "inset-shadow": ["none", v, H, J]
1861
+ "inset-shadow": ["none", k, Q, J]
1828
1862
  }],
1829
1863
  /**
1830
1864
  * Inset Box Shadow Color
@@ -1838,7 +1872,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1838
1872
  * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
1839
1873
  */
1840
1874
  "ring-w": [{
1841
- ring: k()
1875
+ ring: w()
1842
1876
  }],
1843
1877
  /**
1844
1878
  * Ring Width Inset
@@ -1861,7 +1895,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1861
1895
  * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1862
1896
  */
1863
1897
  "ring-offset-w": [{
1864
- "ring-offset": [p, _]
1898
+ "ring-offset": [p, L]
1865
1899
  }],
1866
1900
  /**
1867
1901
  * Ring Offset Color
@@ -1877,7 +1911,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1877
1911
  * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
1878
1912
  */
1879
1913
  "inset-ring-w": [{
1880
- "inset-ring": k()
1914
+ "inset-ring": w()
1881
1915
  }],
1882
1916
  /**
1883
1917
  * Inset Ring Color
@@ -1891,7 +1925,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
1891
1925
  * @see https://tailwindcss.com/docs/text-shadow
1892
1926
  */
1893
1927
  "text-shadow": [{
1894
- "text-shadow": ["none", R, H, J]
1928
+ "text-shadow": ["none", O, Q, J]
1895
1929
  }],
1896
1930
  /**
1897
1931
  * Text Shadow Color
@@ -2163,8 +2197,8 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2163
2197
  // Deprecated since Tailwind CSS v4.0.0
2164
2198
  "",
2165
2199
  "none",
2166
- T,
2167
- H,
2200
+ R,
2201
+ Q,
2168
2202
  J
2169
2203
  ]
2170
2204
  }],
@@ -2301,21 +2335,21 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2301
2335
  * @see https://tailwindcss.com/docs/border-spacing
2302
2336
  */
2303
2337
  "border-spacing": [{
2304
- "border-spacing": i()
2338
+ "border-spacing": a()
2305
2339
  }],
2306
2340
  /**
2307
2341
  * Border Spacing X
2308
2342
  * @see https://tailwindcss.com/docs/border-spacing
2309
2343
  */
2310
2344
  "border-spacing-x": [{
2311
- "border-spacing-x": i()
2345
+ "border-spacing-x": a()
2312
2346
  }],
2313
2347
  /**
2314
2348
  * Border Spacing Y
2315
2349
  * @see https://tailwindcss.com/docs/border-spacing
2316
2350
  */
2317
2351
  "border-spacing-y": [{
2318
- "border-spacing-y": i()
2352
+ "border-spacing-y": a()
2319
2353
  }],
2320
2354
  /**
2321
2355
  * Table Layout
@@ -2360,7 +2394,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2360
2394
  * @see https://tailwindcss.com/docs/transition-timing-function
2361
2395
  */
2362
2396
  ease: [{
2363
- ease: ["linear", "initial", O, n, s]
2397
+ ease: ["linear", "initial", G, n, s]
2364
2398
  }],
2365
2399
  /**
2366
2400
  * Transition Delay
@@ -2374,7 +2408,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2374
2408
  * @see https://tailwindcss.com/docs/animation
2375
2409
  */
2376
2410
  animate: [{
2377
- animate: ["none", D, n, s]
2411
+ animate: ["none", v, n, s]
2378
2412
  }],
2379
2413
  // ------------------
2380
2414
  // --- Transforms ---
@@ -2391,7 +2425,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2391
2425
  * @see https://tailwindcss.com/docs/perspective
2392
2426
  */
2393
2427
  perspective: [{
2394
- perspective: [A, n, s]
2428
+ perspective: [y, n, s]
2395
2429
  }],
2396
2430
  /**
2397
2431
  * Perspective Origin
@@ -2536,6 +2570,13 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2536
2570
  * @see https://tailwindcss.com/docs/translate
2537
2571
  */
2538
2572
  "translate-none": ["translate-none"],
2573
+ /**
2574
+ * Zoom
2575
+ * @see https://tailwindcss.com/docs/zoom
2576
+ */
2577
+ zoom: [{
2578
+ zoom: [S, n, s]
2579
+ }],
2539
2580
  // ---------------------
2540
2581
  // --- Interactivity ---
2541
2582
  // ---------------------
@@ -2602,159 +2643,187 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2602
2643
  "scroll-behavior": [{
2603
2644
  scroll: ["auto", "smooth"]
2604
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
+ }],
2605
2674
  /**
2606
2675
  * Scroll Margin
2607
2676
  * @see https://tailwindcss.com/docs/scroll-margin
2608
2677
  */
2609
2678
  "scroll-m": [{
2610
- "scroll-m": i()
2679
+ "scroll-m": a()
2611
2680
  }],
2612
2681
  /**
2613
2682
  * Scroll Margin Inline
2614
2683
  * @see https://tailwindcss.com/docs/scroll-margin
2615
2684
  */
2616
2685
  "scroll-mx": [{
2617
- "scroll-mx": i()
2686
+ "scroll-mx": a()
2618
2687
  }],
2619
2688
  /**
2620
2689
  * Scroll Margin Block
2621
2690
  * @see https://tailwindcss.com/docs/scroll-margin
2622
2691
  */
2623
2692
  "scroll-my": [{
2624
- "scroll-my": i()
2693
+ "scroll-my": a()
2625
2694
  }],
2626
2695
  /**
2627
2696
  * Scroll Margin Inline Start
2628
2697
  * @see https://tailwindcss.com/docs/scroll-margin
2629
2698
  */
2630
2699
  "scroll-ms": [{
2631
- "scroll-ms": i()
2700
+ "scroll-ms": a()
2632
2701
  }],
2633
2702
  /**
2634
2703
  * Scroll Margin Inline End
2635
2704
  * @see https://tailwindcss.com/docs/scroll-margin
2636
2705
  */
2637
2706
  "scroll-me": [{
2638
- "scroll-me": i()
2707
+ "scroll-me": a()
2639
2708
  }],
2640
2709
  /**
2641
2710
  * Scroll Margin Block Start
2642
2711
  * @see https://tailwindcss.com/docs/scroll-margin
2643
2712
  */
2644
2713
  "scroll-mbs": [{
2645
- "scroll-mbs": i()
2714
+ "scroll-mbs": a()
2646
2715
  }],
2647
2716
  /**
2648
2717
  * Scroll Margin Block End
2649
2718
  * @see https://tailwindcss.com/docs/scroll-margin
2650
2719
  */
2651
2720
  "scroll-mbe": [{
2652
- "scroll-mbe": i()
2721
+ "scroll-mbe": a()
2653
2722
  }],
2654
2723
  /**
2655
2724
  * Scroll Margin Top
2656
2725
  * @see https://tailwindcss.com/docs/scroll-margin
2657
2726
  */
2658
2727
  "scroll-mt": [{
2659
- "scroll-mt": i()
2728
+ "scroll-mt": a()
2660
2729
  }],
2661
2730
  /**
2662
2731
  * Scroll Margin Right
2663
2732
  * @see https://tailwindcss.com/docs/scroll-margin
2664
2733
  */
2665
2734
  "scroll-mr": [{
2666
- "scroll-mr": i()
2735
+ "scroll-mr": a()
2667
2736
  }],
2668
2737
  /**
2669
2738
  * Scroll Margin Bottom
2670
2739
  * @see https://tailwindcss.com/docs/scroll-margin
2671
2740
  */
2672
2741
  "scroll-mb": [{
2673
- "scroll-mb": i()
2742
+ "scroll-mb": a()
2674
2743
  }],
2675
2744
  /**
2676
2745
  * Scroll Margin Left
2677
2746
  * @see https://tailwindcss.com/docs/scroll-margin
2678
2747
  */
2679
2748
  "scroll-ml": [{
2680
- "scroll-ml": i()
2749
+ "scroll-ml": a()
2681
2750
  }],
2682
2751
  /**
2683
2752
  * Scroll Padding
2684
2753
  * @see https://tailwindcss.com/docs/scroll-padding
2685
2754
  */
2686
2755
  "scroll-p": [{
2687
- "scroll-p": i()
2756
+ "scroll-p": a()
2688
2757
  }],
2689
2758
  /**
2690
2759
  * Scroll Padding Inline
2691
2760
  * @see https://tailwindcss.com/docs/scroll-padding
2692
2761
  */
2693
2762
  "scroll-px": [{
2694
- "scroll-px": i()
2763
+ "scroll-px": a()
2695
2764
  }],
2696
2765
  /**
2697
2766
  * Scroll Padding Block
2698
2767
  * @see https://tailwindcss.com/docs/scroll-padding
2699
2768
  */
2700
2769
  "scroll-py": [{
2701
- "scroll-py": i()
2770
+ "scroll-py": a()
2702
2771
  }],
2703
2772
  /**
2704
2773
  * Scroll Padding Inline Start
2705
2774
  * @see https://tailwindcss.com/docs/scroll-padding
2706
2775
  */
2707
2776
  "scroll-ps": [{
2708
- "scroll-ps": i()
2777
+ "scroll-ps": a()
2709
2778
  }],
2710
2779
  /**
2711
2780
  * Scroll Padding Inline End
2712
2781
  * @see https://tailwindcss.com/docs/scroll-padding
2713
2782
  */
2714
2783
  "scroll-pe": [{
2715
- "scroll-pe": i()
2784
+ "scroll-pe": a()
2716
2785
  }],
2717
2786
  /**
2718
2787
  * Scroll Padding Block Start
2719
2788
  * @see https://tailwindcss.com/docs/scroll-padding
2720
2789
  */
2721
2790
  "scroll-pbs": [{
2722
- "scroll-pbs": i()
2791
+ "scroll-pbs": a()
2723
2792
  }],
2724
2793
  /**
2725
2794
  * Scroll Padding Block End
2726
2795
  * @see https://tailwindcss.com/docs/scroll-padding
2727
2796
  */
2728
2797
  "scroll-pbe": [{
2729
- "scroll-pbe": i()
2798
+ "scroll-pbe": a()
2730
2799
  }],
2731
2800
  /**
2732
2801
  * Scroll Padding Top
2733
2802
  * @see https://tailwindcss.com/docs/scroll-padding
2734
2803
  */
2735
2804
  "scroll-pt": [{
2736
- "scroll-pt": i()
2805
+ "scroll-pt": a()
2737
2806
  }],
2738
2807
  /**
2739
2808
  * Scroll Padding Right
2740
2809
  * @see https://tailwindcss.com/docs/scroll-padding
2741
2810
  */
2742
2811
  "scroll-pr": [{
2743
- "scroll-pr": i()
2812
+ "scroll-pr": a()
2744
2813
  }],
2745
2814
  /**
2746
2815
  * Scroll Padding Bottom
2747
2816
  * @see https://tailwindcss.com/docs/scroll-padding
2748
2817
  */
2749
2818
  "scroll-pb": [{
2750
- "scroll-pb": i()
2819
+ "scroll-pb": a()
2751
2820
  }],
2752
2821
  /**
2753
2822
  * Scroll Padding Left
2754
2823
  * @see https://tailwindcss.com/docs/scroll-padding
2755
2824
  */
2756
2825
  "scroll-pl": [{
2757
- "scroll-pl": i()
2826
+ "scroll-pl": a()
2758
2827
  }],
2759
2828
  /**
2760
2829
  * Scroll Snap Align
@@ -2839,7 +2908,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2839
2908
  * @see https://tailwindcss.com/docs/stroke-width
2840
2909
  */
2841
2910
  "stroke-w": [{
2842
- stroke: [p, B, _, fe]
2911
+ stroke: [p, D, L, fe]
2843
2912
  }],
2844
2913
  /**
2845
2914
  * Stroke
@@ -2860,6 +2929,7 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2860
2929
  }]
2861
2930
  },
2862
2931
  conflictingClassGroups: {
2932
+ "container-named": ["container-type"],
2863
2933
  overflow: ["overflow-x", "overflow-y"],
2864
2934
  overscroll: ["overscroll-x", "overscroll-y"],
2865
2935
  inset: ["inset-x", "inset-y", "inset-bs", "inset-be", "start", "end", "top", "right", "bottom", "left"],
@@ -2912,13 +2982,14 @@ const Ue = [], ue = (e, t, o, r, c) => ({
2912
2982
  conflictingClassGroupModifiers: {
2913
2983
  "font-size": ["leading"]
2914
2984
  },
2985
+ postfixLookupClassGroups: ["container-type"],
2915
2986
  orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
2916
2987
  };
2917
- }, yo = /* @__PURE__ */ Qe(xo);
2988
+ }, zo = /* @__PURE__ */ Ze(vo);
2918
2989
  export {
2919
- Qe as createTailwindMerge,
2990
+ Ze as createTailwindMerge,
2920
2991
  f as fromTheme,
2921
- xo as getDefaultConfig,
2992
+ vo as getDefaultConfig,
2922
2993
  Ke as twJoin,
2923
- yo as twMerge
2994
+ zo as twMerge
2924
2995
  };