zudoku 0.45.1 → 0.46.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 (532) hide show
  1. package/dist/app/main.js +4 -23
  2. package/dist/app/main.js.map +1 -1
  3. package/dist/config/config.d.ts +2 -2
  4. package/dist/config/file-exists.d.ts +1 -0
  5. package/dist/config/file-exists.js +5 -0
  6. package/dist/config/file-exists.js.map +1 -0
  7. package/dist/config/loader.d.ts +19 -4
  8. package/dist/config/loader.js +94 -14
  9. package/dist/config/loader.js.map +1 -1
  10. package/dist/config/validators/validate.d.ts +3536 -743
  11. package/dist/config/validators/validate.js +396 -11
  12. package/dist/config/validators/validate.js.map +1 -1
  13. package/dist/index.d.ts +4 -2
  14. package/dist/index.js +2 -0
  15. package/dist/index.js.map +1 -1
  16. package/dist/lib/authentication/AuthenticationPlugin.d.ts +7 -2
  17. package/dist/lib/authentication/AuthenticationPlugin.js +13 -1
  18. package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
  19. package/dist/lib/authentication/authentication.d.ts +2 -4
  20. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  21. package/dist/lib/authentication/providers/clerk.js +62 -43
  22. package/dist/lib/authentication/providers/clerk.js.map +1 -1
  23. package/dist/lib/authentication/providers/openid.d.ts +7 -12
  24. package/dist/lib/authentication/providers/openid.js +11 -22
  25. package/dist/lib/authentication/providers/openid.js.map +1 -1
  26. package/dist/lib/authentication/providers/supabase.js +3 -5
  27. package/dist/lib/authentication/providers/supabase.js.map +1 -1
  28. package/dist/lib/components/Autocomplete.js +1 -1
  29. package/dist/lib/components/Banner.js +1 -1
  30. package/dist/lib/components/Banner.js.map +1 -1
  31. package/dist/lib/components/ErrorPage.js +1 -1
  32. package/dist/lib/components/Footer.js +3 -3
  33. package/dist/lib/components/Footer.js.map +1 -1
  34. package/dist/lib/components/Header.js +16 -8
  35. package/dist/lib/components/Header.js.map +1 -1
  36. package/dist/lib/components/Heading.js +6 -1
  37. package/dist/lib/components/Heading.js.map +1 -1
  38. package/dist/lib/components/InlineCode.js +1 -1
  39. package/dist/lib/components/InlineCode.js.map +1 -1
  40. package/dist/lib/components/Layout.js +2 -2
  41. package/dist/lib/components/Layout.js.map +1 -1
  42. package/dist/lib/components/Main.js +2 -2
  43. package/dist/lib/components/Main.js.map +1 -1
  44. package/dist/lib/components/Markdown.js +8 -3
  45. package/dist/lib/components/Markdown.js.map +1 -1
  46. package/dist/lib/components/MobileTopNavigation.js +3 -2
  47. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  48. package/dist/lib/components/NotFoundPage.js +1 -1
  49. package/dist/lib/components/Pagination.js +1 -1
  50. package/dist/lib/components/Pagination.js.map +1 -1
  51. package/dist/lib/components/Search.js +1 -1
  52. package/dist/lib/components/Search.js.map +1 -1
  53. package/dist/lib/components/Slot.d.ts +17 -0
  54. package/dist/lib/components/Slot.js +24 -0
  55. package/dist/lib/components/Slot.js.map +1 -0
  56. package/dist/lib/components/Slot.test.js +168 -0
  57. package/dist/lib/components/Slot.test.js.map +1 -0
  58. package/dist/lib/components/TopNavigation.d.ts +1 -4
  59. package/dist/lib/components/TopNavigation.js +3 -11
  60. package/dist/lib/components/TopNavigation.js.map +1 -1
  61. package/dist/lib/components/Zudoku.js +2 -2
  62. package/dist/lib/components/Zudoku.js.map +1 -1
  63. package/dist/lib/components/context/SlotProvider.d.ts +26 -0
  64. package/dist/lib/components/context/SlotProvider.js +83 -0
  65. package/dist/lib/components/context/SlotProvider.js.map +1 -0
  66. package/dist/lib/components/context/ZudokuContext.d.ts +1 -1
  67. package/dist/lib/components/context/ZudokuProvider.js +2 -1
  68. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  69. package/dist/lib/components/index.d.ts +29 -23
  70. package/dist/lib/components/index.js +13 -7
  71. package/dist/lib/components/index.js.map +1 -1
  72. package/dist/lib/components/navigation/PoweredByZudoku.js +1 -1
  73. package/dist/lib/components/navigation/Sidebar.js +3 -3
  74. package/dist/lib/components/navigation/Sidebar.js.map +1 -1
  75. package/dist/lib/components/navigation/SidebarBadge.js +1 -1
  76. package/dist/lib/components/navigation/SidebarBadge.js.map +1 -1
  77. package/dist/lib/components/navigation/SidebarCategory.js +3 -3
  78. package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
  79. package/dist/lib/components/navigation/SidebarItem.d.ts +0 -5
  80. package/dist/lib/components/navigation/SidebarItem.js +19 -23
  81. package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
  82. package/dist/lib/components/navigation/SidebarWrapper.js +1 -1
  83. package/dist/lib/components/navigation/Toc.js +1 -1
  84. package/dist/lib/components/navigation/Toc.js.map +1 -1
  85. package/dist/lib/components/navigation/utils.d.ts +8 -0
  86. package/dist/lib/components/navigation/utils.js +34 -6
  87. package/dist/lib/components/navigation/utils.js.map +1 -1
  88. package/dist/lib/core/ZudokuContext.d.ts +12 -8
  89. package/dist/lib/core/ZudokuContext.js +6 -5
  90. package/dist/lib/core/ZudokuContext.js.map +1 -1
  91. package/dist/lib/core/plugins.d.ts +5 -2
  92. package/dist/lib/core/plugins.js +1 -0
  93. package/dist/lib/core/plugins.js.map +1 -1
  94. package/dist/lib/errors/ErrorAlert.js +1 -1
  95. package/dist/lib/hooks/index.d.ts +19 -0
  96. package/dist/lib/hooks/index.js +11 -0
  97. package/dist/lib/hooks/index.js.map +1 -1
  98. package/dist/lib/plugins/api-catalog/Catalog.js +1 -1
  99. package/dist/lib/plugins/api-keys/CreateApiKey.d.ts +3 -2
  100. package/dist/lib/plugins/api-keys/CreateApiKey.js +8 -4
  101. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  102. package/dist/lib/plugins/api-keys/SettingsApiKeys.d.ts +1 -1
  103. package/dist/lib/plugins/api-keys/SettingsApiKeys.js +54 -23
  104. package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
  105. package/dist/lib/plugins/api-keys/index.d.ts +18 -9
  106. package/dist/lib/plugins/api-keys/index.js +49 -34
  107. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  108. package/dist/lib/plugins/custom-pages/index.d.ts +1 -1
  109. package/dist/lib/plugins/markdown/MdxPage.js +1 -1
  110. package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
  111. package/dist/lib/plugins/markdown/index.d.ts +1 -1
  112. package/dist/lib/plugins/markdown/resolver.d.ts +1 -1
  113. package/dist/lib/plugins/markdown/resolver.js.map +1 -1
  114. package/dist/lib/plugins/openapi/CollapsibleCode.js +1 -1
  115. package/dist/lib/plugins/openapi/ColorizedParam.js +1 -1
  116. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  117. package/dist/lib/plugins/openapi/OperationList.js +1 -1
  118. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  119. package/dist/lib/plugins/openapi/OperationListItem.js +2 -3
  120. package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
  121. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +5 -1
  122. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
  123. package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +2 -4
  124. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +1 -4
  125. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  126. package/dist/lib/plugins/openapi/SchemaList.js +6 -5
  127. package/dist/lib/plugins/openapi/SchemaList.js.map +1 -1
  128. package/dist/lib/plugins/openapi/Sidecar.js +1 -1
  129. package/dist/lib/plugins/openapi/SidecarExamples.js +8 -0
  130. package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
  131. package/dist/lib/plugins/openapi/components/EnumValues.js +1 -1
  132. package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -1
  133. package/dist/lib/plugins/openapi/components/ResponseContent.d.ts +12 -0
  134. package/dist/lib/plugins/openapi/components/ResponseContent.js +21 -0
  135. package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -0
  136. package/dist/lib/plugins/openapi/playground/Playground.js +2 -0
  137. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  138. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
  139. package/dist/lib/plugins/openapi/playground/SubmitButton.js +7 -10
  140. package/dist/lib/plugins/openapi/playground/SubmitButton.js.map +1 -1
  141. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +2 -2
  142. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -1
  143. package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +2 -1
  144. package/dist/lib/plugins/openapi/schema/SchemaView.js +3 -3
  145. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  146. package/dist/lib/plugins/redirect/index.d.ts +1 -1
  147. package/dist/lib/ui/Badge.d.ts +2 -2
  148. package/dist/lib/ui/Badge.js +1 -1
  149. package/dist/lib/ui/Badge.js.map +1 -1
  150. package/dist/lib/ui/Button.d.ts +2 -2
  151. package/dist/lib/ui/Button.js +8 -6
  152. package/dist/lib/ui/Button.js.map +1 -1
  153. package/dist/lib/ui/Callout.js +1 -1
  154. package/dist/lib/ui/Callout.js.map +1 -1
  155. package/dist/lib/ui/Card.js +1 -1
  156. package/dist/lib/ui/Checkbox.js +1 -1
  157. package/dist/lib/ui/Checkbox.js.map +1 -1
  158. package/dist/lib/ui/Command.d.ts +2 -2
  159. package/dist/lib/ui/Command.js +3 -3
  160. package/dist/lib/ui/Command.js.map +1 -1
  161. package/dist/lib/ui/Dialog.js +1 -1
  162. package/dist/lib/ui/Dialog.js.map +1 -1
  163. package/dist/lib/ui/DropdownMenu.js +4 -4
  164. package/dist/lib/ui/DropdownMenu.js.map +1 -1
  165. package/dist/lib/ui/HoverCard.js +1 -1
  166. package/dist/lib/ui/HoverCard.js.map +1 -1
  167. package/dist/lib/ui/Input.js +1 -1
  168. package/dist/lib/ui/Input.js.map +1 -1
  169. package/dist/lib/ui/Popover.js +1 -1
  170. package/dist/lib/ui/Popover.js.map +1 -1
  171. package/dist/lib/ui/RadioGroup.js +1 -1
  172. package/dist/lib/ui/RadioGroup.js.map +1 -1
  173. package/dist/lib/ui/Select.js +2 -2
  174. package/dist/lib/ui/Select.js.map +1 -1
  175. package/dist/lib/ui/Slider.js +1 -1
  176. package/dist/lib/ui/Slider.js.map +1 -1
  177. package/dist/lib/ui/Switch.js +1 -1
  178. package/dist/lib/ui/Switch.js.map +1 -1
  179. package/dist/lib/ui/Tabs.js +2 -2
  180. package/dist/lib/ui/Tabs.js.map +1 -1
  181. package/dist/lib/ui/Textarea.js +1 -1
  182. package/dist/lib/ui/Textarea.js.map +1 -1
  183. package/dist/lib/ui/Toggle.js +1 -1
  184. package/dist/lib/ui/Toggle.js.map +1 -1
  185. package/dist/lib/ui/Tooltip.d.ts +2 -1
  186. package/dist/lib/ui/Tooltip.js +2 -1
  187. package/dist/lib/ui/Tooltip.js.map +1 -1
  188. package/dist/lib/util/useExposedProps.d.ts +8 -1
  189. package/dist/lib/util/useExposedProps.js.map +1 -1
  190. package/dist/vite/api/SchemaManager.js +16 -1
  191. package/dist/vite/api/SchemaManager.js.map +1 -1
  192. package/dist/vite/build.js +44 -6
  193. package/dist/vite/build.js.map +1 -1
  194. package/dist/vite/config.d.ts +2 -9
  195. package/dist/vite/config.js +6 -95
  196. package/dist/vite/config.js.map +1 -1
  197. package/dist/vite/config.test.js +1 -1
  198. package/dist/vite/config.test.js.map +1 -1
  199. package/dist/vite/css/plugin.d.ts +1 -2
  200. package/dist/vite/css/plugin.js +3 -2
  201. package/dist/vite/css/plugin.js.map +1 -1
  202. package/dist/vite/dev-server.d.ts +0 -1
  203. package/dist/vite/dev-server.js +10 -12
  204. package/dist/vite/dev-server.js.map +1 -1
  205. package/dist/vite/html.d.ts +2 -2
  206. package/dist/vite/html.js +5 -2
  207. package/dist/vite/html.js.map +1 -1
  208. package/dist/vite/plugin-api-keys.d.ts +1 -2
  209. package/dist/vite/plugin-api-keys.js +9 -3
  210. package/dist/vite/plugin-api-keys.js.map +1 -1
  211. package/dist/vite/plugin-api.d.ts +1 -2
  212. package/dist/vite/plugin-api.js +5 -4
  213. package/dist/vite/plugin-api.js.map +1 -1
  214. package/dist/vite/plugin-auth.d.ts +1 -2
  215. package/dist/vite/plugin-auth.js +3 -2
  216. package/dist/vite/plugin-auth.js.map +1 -1
  217. package/dist/vite/plugin-component.d.ts +1 -2
  218. package/dist/vite/plugin-component.js +3 -2
  219. package/dist/vite/plugin-component.js.map +1 -1
  220. package/dist/vite/plugin-config-reload.d.ts +1 -2
  221. package/dist/vite/plugin-config-reload.js +21 -22
  222. package/dist/vite/plugin-config-reload.js.map +1 -1
  223. package/dist/vite/plugin-config.d.ts +1 -2
  224. package/dist/vite/plugin-config.js +4 -3
  225. package/dist/vite/plugin-config.js.map +1 -1
  226. package/dist/vite/plugin-configure-tailwind.d.ts +2 -0
  227. package/dist/vite/plugin-configure-tailwind.js +38 -0
  228. package/dist/vite/plugin-configure-tailwind.js.map +1 -0
  229. package/dist/vite/plugin-custom-pages.d.ts +1 -2
  230. package/dist/vite/plugin-custom-pages.js +3 -2
  231. package/dist/vite/plugin-custom-pages.js.map +1 -1
  232. package/dist/vite/plugin-docs.d.ts +1 -2
  233. package/dist/vite/plugin-docs.js +4 -3
  234. package/dist/vite/plugin-docs.js.map +1 -1
  235. package/dist/vite/plugin-frontmatter.d.ts +1 -2
  236. package/dist/vite/plugin-frontmatter.js +3 -2
  237. package/dist/vite/plugin-frontmatter.js.map +1 -1
  238. package/dist/vite/plugin-mdx.d.ts +1 -2
  239. package/dist/vite/plugin-mdx.js +3 -2
  240. package/dist/vite/plugin-mdx.js.map +1 -1
  241. package/dist/vite/plugin-redirect.d.ts +1 -2
  242. package/dist/vite/plugin-redirect.js +3 -2
  243. package/dist/vite/plugin-redirect.js.map +1 -1
  244. package/dist/vite/plugin-search.d.ts +1 -2
  245. package/dist/vite/plugin-search.js +3 -2
  246. package/dist/vite/plugin-search.js.map +1 -1
  247. package/dist/vite/plugin-shiki-register.d.ts +1 -2
  248. package/dist/vite/plugin-shiki-register.js +2 -1
  249. package/dist/vite/plugin-shiki-register.js.map +1 -1
  250. package/dist/vite/plugin-sidebar.d.ts +1 -2
  251. package/dist/vite/plugin-sidebar.js +3 -2
  252. package/dist/vite/plugin-sidebar.js.map +1 -1
  253. package/dist/vite/plugin-theme-css.d.ts +1 -2
  254. package/dist/vite/plugin-theme-css.js +20 -60
  255. package/dist/vite/plugin-theme-css.js.map +1 -1
  256. package/dist/vite/plugin.d.ts +1 -2
  257. package/dist/vite/plugin.js +22 -21
  258. package/dist/vite/plugin.js.map +1 -1
  259. package/dist/vite/sitemap.d.ts +1 -1
  260. package/dist/zuplo/with-zuplo.d.ts +2 -2
  261. package/dist/zuplo/with-zuplo.js.map +1 -1
  262. package/lib/Button-BE9IVkWV.js +51 -0
  263. package/lib/Button-BE9IVkWV.js.map +1 -0
  264. package/lib/{Callout-XadUe37J.js → Callout-BkgOUkoZ.js} +9 -8
  265. package/lib/Callout-BkgOUkoZ.js.map +1 -0
  266. package/lib/{Card-BlCYNw5W.js → Card-DPhGbYUM.js} +3 -3
  267. package/lib/{Card-BlCYNw5W.js.map → Card-DPhGbYUM.js.map} +1 -1
  268. package/lib/{CategoryHeading-DZi-Szor.js → CategoryHeading-Cu2RwgjC.js} +2 -2
  269. package/lib/{CategoryHeading-DZi-Szor.js.map → CategoryHeading-Cu2RwgjC.js.map} +1 -1
  270. package/lib/{Dialog-CNf2oWXG.js → Dialog-Du6WMcIA.js} +8 -7
  271. package/lib/Dialog-Du6WMcIA.js.map +1 -0
  272. package/lib/{Drawer-BPBxzel2.js → Drawer-BzkOKwgC.js} +2 -2
  273. package/lib/{Drawer-BPBxzel2.js.map → Drawer-BzkOKwgC.js.map} +1 -1
  274. package/lib/Markdown-BRAyzyUJ.js +15348 -0
  275. package/lib/Markdown-BRAyzyUJ.js.map +1 -0
  276. package/lib/{MdxPage-tTTaDsLc.js → MdxPage-B3v1BSKr.js} +11 -11
  277. package/lib/MdxPage-B3v1BSKr.js.map +1 -0
  278. package/lib/{OasProvider-DalHQixM.js → OasProvider-5jrFuhVk.js} +3 -3
  279. package/lib/{OasProvider-DalHQixM.js.map → OasProvider-5jrFuhVk.js.map} +1 -1
  280. package/lib/{OperationList-BB09ENaq.js → OperationList-BmoMLQPO.js} +1039 -1005
  281. package/lib/OperationList-BmoMLQPO.js.map +1 -0
  282. package/lib/Pagination-Cr0fWZS3.js +36 -0
  283. package/lib/Pagination-Cr0fWZS3.js.map +1 -0
  284. package/lib/RouteGuard-PrSVLbSr.js +55 -0
  285. package/lib/RouteGuard-PrSVLbSr.js.map +1 -0
  286. package/lib/{SchemaList-BH9bgMRw.js → SchemaList-B4riYLoP.js} +61 -47
  287. package/lib/SchemaList-B4riYLoP.js.map +1 -0
  288. package/lib/{SchemaView-BsB7EFRl.js → SchemaView-CPZ6RgsF.js} +100 -95
  289. package/lib/SchemaView-CPZ6RgsF.js.map +1 -0
  290. package/lib/{AuthenticationPlugin-BTJ37DKg.js → SignUp-CWaiH0tY.js} +23 -50
  291. package/lib/SignUp-CWaiH0tY.js.map +1 -0
  292. package/lib/Slot-Bo6K4tnb.js +160 -0
  293. package/lib/Slot-Bo6K4tnb.js.map +1 -0
  294. package/lib/{SyntaxHighlight-UxOF1xNb.js → SyntaxHighlight-DedRjJNr.js} +233 -212
  295. package/lib/{SyntaxHighlight-UxOF1xNb.js.map → SyntaxHighlight-DedRjJNr.js.map} +1 -1
  296. package/lib/{Toc-Ax54Pw8S.js → Toc-lL3fzNkl.js} +5 -5
  297. package/lib/Toc-lL3fzNkl.js.map +1 -0
  298. package/lib/{circular-CZaZtOBs.js → circular-oB4auIIg.js} +2 -2
  299. package/lib/{circular-CZaZtOBs.js.map → circular-oB4auIIg.js.map} +1 -1
  300. package/lib/clsx-OuTLNxxd.js +17 -0
  301. package/lib/clsx-OuTLNxxd.js.map +1 -0
  302. package/lib/{cn-CwJPJKOE.js → cn-wvCW-ho6.js} +1015 -562
  303. package/lib/cn-wvCW-ho6.js.map +1 -0
  304. package/lib/{createServer-DmqFeMgf.js → createServer-DCB82j2t.js} +81 -81
  305. package/lib/{createServer-DmqFeMgf.js.map → createServer-DCB82j2t.js.map} +1 -1
  306. package/lib/{hook-BwOB_iZo.js → hook-DawSLaZr.js} +323 -300
  307. package/lib/hook-DawSLaZr.js.map +1 -0
  308. package/lib/{index-sS7O9W-R.js → index-BXYvD5-7.js} +868 -758
  309. package/lib/index-BXYvD5-7.js.map +1 -0
  310. package/lib/{index-Z13x6tPX.js → index-DI5SPFK9.js} +2 -2
  311. package/lib/{index-Z13x6tPX.js.map → index-DI5SPFK9.js.map} +1 -1
  312. package/lib/index-QzXzw_ra.js +24 -0
  313. package/lib/index-QzXzw_ra.js.map +1 -0
  314. package/lib/{RouteGuard-lkdEJoDV.js → index.esm-BFcSKCe-.js} +232 -281
  315. package/lib/index.esm-BFcSKCe-.js.map +1 -0
  316. package/lib/{index.esm-D2ZUREQN.js → index.esm-DSfX_eMP.js} +3 -3
  317. package/lib/{index.esm-D2ZUREQN.js.map → index.esm-DSfX_eMP.js.map} +1 -1
  318. package/lib/joinPath-B7kNnUX4.js +8 -0
  319. package/lib/joinPath-B7kNnUX4.js.map +1 -0
  320. package/lib/{mutation-CL2MCRQL.js → mutation-oxMvODNQ.js} +2 -2
  321. package/lib/{mutation-CL2MCRQL.js.map → mutation-oxMvODNQ.js.map} +1 -1
  322. package/lib/ui/Accordion.js +1 -1
  323. package/lib/ui/ActionButton.js +2 -2
  324. package/lib/ui/Alert.js +2 -2
  325. package/lib/ui/AlertDialog.js +1 -1
  326. package/lib/ui/Badge.js +3 -3
  327. package/lib/ui/Badge.js.map +1 -1
  328. package/lib/ui/Breadcrumb.js +1 -1
  329. package/lib/ui/Button.js +20 -18
  330. package/lib/ui/Button.js.map +1 -1
  331. package/lib/ui/Callout.js +6 -5
  332. package/lib/ui/Callout.js.map +1 -1
  333. package/lib/ui/Card.js +8 -8
  334. package/lib/ui/Card.js.map +1 -1
  335. package/lib/ui/Carousel.js +1 -1
  336. package/lib/ui/Checkbox.js +7 -7
  337. package/lib/ui/Checkbox.js.map +1 -1
  338. package/lib/ui/CodeBlock.js +1 -1
  339. package/lib/ui/Command.js +43 -43
  340. package/lib/ui/Command.js.map +1 -1
  341. package/lib/ui/Dialog.js +2 -2
  342. package/lib/ui/Dialog.js.map +1 -1
  343. package/lib/ui/Drawer.js +2 -2
  344. package/lib/ui/DropdownMenu.js +34 -34
  345. package/lib/ui/DropdownMenu.js.map +1 -1
  346. package/lib/ui/Form.js +2 -2
  347. package/lib/ui/HoverCard.js +5 -5
  348. package/lib/ui/HoverCard.js.map +1 -1
  349. package/lib/ui/Input.js +2 -2
  350. package/lib/ui/Input.js.map +1 -1
  351. package/lib/ui/Label.js +2 -2
  352. package/lib/ui/Pagination.js +1 -1
  353. package/lib/ui/Popover.js +2 -2
  354. package/lib/ui/Popover.js.map +1 -1
  355. package/lib/ui/Progress.js +1 -1
  356. package/lib/ui/RadioGroup.js +10 -10
  357. package/lib/ui/RadioGroup.js.map +1 -1
  358. package/lib/ui/ScrollArea.js +1 -1
  359. package/lib/ui/Select.js +31 -31
  360. package/lib/ui/Select.js.map +1 -1
  361. package/lib/ui/Skeleton.js +1 -1
  362. package/lib/ui/Slider.js +5 -5
  363. package/lib/ui/Slider.js.map +1 -1
  364. package/lib/ui/Switch.js +5 -5
  365. package/lib/ui/Switch.js.map +1 -1
  366. package/lib/ui/SyntaxHighlight.js +2 -2
  367. package/lib/ui/Tabs.js +16 -16
  368. package/lib/ui/Tabs.js.map +1 -1
  369. package/lib/ui/Textarea.js +5 -5
  370. package/lib/ui/Textarea.js.map +1 -1
  371. package/lib/ui/Toggle.js +7 -7
  372. package/lib/ui/Toggle.js.map +1 -1
  373. package/lib/ui/ToggleGroup.js +1 -1
  374. package/lib/ui/Tooltip.js +15 -8
  375. package/lib/ui/Tooltip.js.map +1 -1
  376. package/lib/ui/util.js +1 -1
  377. package/lib/useExposedProps-DG8J6ewJ.js.map +1 -1
  378. package/lib/useMutation-C_j3dA_L.js +97 -0
  379. package/lib/useMutation-C_j3dA_L.js.map +1 -0
  380. package/lib/zudoku.auth-auth0.js +1 -1
  381. package/lib/zudoku.auth-auth0.js.map +1 -1
  382. package/lib/zudoku.auth-clerk.js +99 -82
  383. package/lib/zudoku.auth-clerk.js.map +1 -1
  384. package/lib/zudoku.auth-openid.js +246 -216
  385. package/lib/zudoku.auth-openid.js.map +1 -1
  386. package/lib/zudoku.components.js +4957 -33
  387. package/lib/zudoku.components.js.map +1 -1
  388. package/lib/zudoku.hooks.js +21 -12
  389. package/lib/zudoku.hooks.js.map +1 -1
  390. package/lib/zudoku.plugin-api-catalog.js +8 -8
  391. package/lib/zudoku.plugin-api-catalog.js.map +1 -1
  392. package/lib/zudoku.plugin-api-keys.js +5022 -214
  393. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  394. package/lib/zudoku.plugin-custom-pages.js +2 -2
  395. package/lib/zudoku.plugin-custom-pages.js.map +1 -1
  396. package/lib/zudoku.plugin-markdown.js +1 -1
  397. package/lib/zudoku.plugin-markdown.js.map +1 -1
  398. package/lib/zudoku.plugin-openapi.js +3 -3
  399. package/lib/zudoku.plugin-redirect.js.map +1 -1
  400. package/lib/zudoku.plugin-search-pagefind.js +5 -5
  401. package/lib/zudoku.plugins.js +7 -6
  402. package/lib/zudoku.plugins.js.map +1 -1
  403. package/package.json +15 -15
  404. package/src/app/defaultTheme.css +54 -0
  405. package/src/app/font.geist.css +73 -0
  406. package/src/app/main.css +113 -156
  407. package/src/app/main.tsx +4 -28
  408. package/src/lib/authentication/AuthenticationPlugin.tsx +18 -4
  409. package/src/lib/authentication/authentication.ts +2 -5
  410. package/src/lib/authentication/providers/auth0.tsx +8 -2
  411. package/src/lib/authentication/providers/clerk.tsx +72 -48
  412. package/src/lib/authentication/providers/openid.tsx +19 -26
  413. package/src/lib/authentication/providers/supabase.tsx +7 -7
  414. package/src/lib/components/Autocomplete.tsx +1 -1
  415. package/src/lib/components/Banner.tsx +1 -1
  416. package/src/lib/components/ErrorPage.tsx +1 -1
  417. package/src/lib/components/Footer.tsx +4 -4
  418. package/src/lib/components/Header.tsx +29 -29
  419. package/src/lib/components/Heading.tsx +9 -5
  420. package/src/lib/components/InlineCode.tsx +1 -1
  421. package/src/lib/components/Layout.tsx +3 -3
  422. package/src/lib/components/Main.tsx +4 -4
  423. package/src/lib/components/Markdown.tsx +14 -4
  424. package/src/lib/components/MobileTopNavigation.tsx +3 -2
  425. package/src/lib/components/NotFoundPage.tsx +1 -1
  426. package/src/lib/components/Pagination.tsx +3 -9
  427. package/src/lib/components/Search.tsx +1 -1
  428. package/src/lib/components/Slot.test.tsx +465 -0
  429. package/src/lib/components/Slot.tsx +64 -0
  430. package/src/lib/components/TopNavigation.tsx +5 -17
  431. package/src/lib/components/Zudoku.tsx +9 -9
  432. package/src/lib/components/context/SlotProvider.tsx +149 -0
  433. package/src/lib/components/context/ZudokuProvider.tsx +2 -1
  434. package/src/lib/components/index.ts +14 -10
  435. package/src/lib/components/navigation/PoweredByZudoku.tsx +1 -1
  436. package/src/lib/components/navigation/Sidebar.tsx +3 -3
  437. package/src/lib/components/navigation/SidebarBadge.tsx +1 -1
  438. package/src/lib/components/navigation/SidebarCategory.tsx +3 -3
  439. package/src/lib/components/navigation/SidebarItem.tsx +57 -30
  440. package/src/lib/components/navigation/SidebarWrapper.tsx +2 -2
  441. package/src/lib/components/navigation/Toc.tsx +2 -2
  442. package/src/lib/components/navigation/utils.ts +42 -6
  443. package/src/lib/core/ZudokuContext.ts +24 -12
  444. package/src/lib/core/plugins.ts +10 -2
  445. package/src/lib/errors/ErrorAlert.tsx +1 -1
  446. package/src/lib/hooks/index.ts +11 -0
  447. package/src/lib/plugins/api-catalog/Catalog.tsx +1 -1
  448. package/src/lib/plugins/api-keys/CreateApiKey.tsx +54 -42
  449. package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +292 -112
  450. package/src/lib/plugins/api-keys/index.tsx +101 -55
  451. package/src/lib/plugins/custom-pages/index.tsx +1 -1
  452. package/src/lib/plugins/markdown/MdxPage.tsx +2 -2
  453. package/src/lib/plugins/markdown/index.tsx +2 -2
  454. package/src/lib/plugins/markdown/resolver.ts +4 -2
  455. package/src/lib/plugins/openapi/CollapsibleCode.tsx +1 -1
  456. package/src/lib/plugins/openapi/ColorizedParam.tsx +2 -2
  457. package/src/lib/plugins/openapi/OperationList.tsx +2 -2
  458. package/src/lib/plugins/openapi/OperationListItem.tsx +6 -34
  459. package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +7 -1
  460. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +5 -16
  461. package/src/lib/plugins/openapi/SchemaList.tsx +20 -8
  462. package/src/lib/plugins/openapi/Sidecar.tsx +1 -1
  463. package/src/lib/plugins/openapi/SidecarExamples.tsx +6 -0
  464. package/src/lib/plugins/openapi/components/EnumValues.tsx +1 -1
  465. package/src/lib/plugins/openapi/components/ResponseContent.tsx +104 -0
  466. package/src/lib/plugins/openapi/playground/Playground.tsx +7 -1
  467. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +1 -1
  468. package/src/lib/plugins/openapi/playground/SubmitButton.tsx +24 -29
  469. package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +2 -2
  470. package/src/lib/plugins/openapi/schema/SchemaView.tsx +7 -3
  471. package/src/lib/plugins/redirect/index.tsx +1 -1
  472. package/src/lib/ui/Badge.tsx +2 -2
  473. package/src/lib/ui/Button.tsx +9 -6
  474. package/src/lib/ui/Callout.tsx +1 -0
  475. package/src/lib/ui/Card.tsx +1 -1
  476. package/src/lib/ui/Checkbox.tsx +1 -1
  477. package/src/lib/ui/Command.tsx +5 -5
  478. package/src/lib/ui/Dialog.tsx +1 -1
  479. package/src/lib/ui/DropdownMenu.tsx +4 -4
  480. package/src/lib/ui/HoverCard.tsx +1 -1
  481. package/src/lib/ui/Input.tsx +1 -1
  482. package/src/lib/ui/Popover.tsx +1 -1
  483. package/src/lib/ui/RadioGroup.tsx +1 -1
  484. package/src/lib/ui/Select.tsx +3 -3
  485. package/src/lib/ui/Slider.tsx +1 -1
  486. package/src/lib/ui/Switch.tsx +1 -1
  487. package/src/lib/ui/Tabs.tsx +2 -2
  488. package/src/lib/ui/Textarea.tsx +1 -1
  489. package/src/lib/ui/Toggle.tsx +1 -1
  490. package/src/lib/ui/Tooltip.tsx +16 -1
  491. package/src/lib/util/useExposedProps.tsx +12 -1
  492. package/dist/app/tailwind.d.ts +0 -4
  493. package/dist/app/tailwind.js +0 -97
  494. package/dist/app/tailwind.js.map +0 -1
  495. package/dist/config/common.d.ts +0 -10
  496. package/dist/config/common.js +0 -2
  497. package/dist/config/common.js.map +0 -1
  498. package/dist/config/validators/common.d.ts +0 -8001
  499. package/dist/config/validators/common.js +0 -414
  500. package/dist/config/validators/common.js.map +0 -1
  501. package/dist/lib/components/SlotletProvider.d.ts +0 -17
  502. package/dist/lib/components/SlotletProvider.js +0 -18
  503. package/dist/lib/components/SlotletProvider.js.map +0 -1
  504. package/dist/vite/plugin-docs.test.js +0 -22
  505. package/dist/vite/plugin-docs.test.js.map +0 -1
  506. package/lib/AuthenticationPlugin-BTJ37DKg.js.map +0 -1
  507. package/lib/Button-Bdk_Ij3U.js +0 -49
  508. package/lib/Button-Bdk_Ij3U.js.map +0 -1
  509. package/lib/Callout-XadUe37J.js.map +0 -1
  510. package/lib/Dialog-CNf2oWXG.js.map +0 -1
  511. package/lib/Markdown-D96AphCL.js +0 -7691
  512. package/lib/Markdown-D96AphCL.js.map +0 -1
  513. package/lib/MdxPage-tTTaDsLc.js.map +0 -1
  514. package/lib/OperationList-BB09ENaq.js.map +0 -1
  515. package/lib/Pagination-CtmnJOJi.js +0 -48
  516. package/lib/Pagination-CtmnJOJi.js.map +0 -1
  517. package/lib/RouteGuard-lkdEJoDV.js.map +0 -1
  518. package/lib/SchemaList-BH9bgMRw.js.map +0 -1
  519. package/lib/SchemaView-BsB7EFRl.js.map +0 -1
  520. package/lib/Select-HTio1oSE.js +0 -211
  521. package/lib/Select-HTio1oSE.js.map +0 -1
  522. package/lib/SlotletProvider-CTgIBRWg.js +0 -257
  523. package/lib/SlotletProvider-CTgIBRWg.js.map +0 -1
  524. package/lib/Toc-Ax54Pw8S.js.map +0 -1
  525. package/lib/cn-CwJPJKOE.js.map +0 -1
  526. package/lib/hook-BwOB_iZo.js.map +0 -1
  527. package/lib/index-BnT4-Efz.js +0 -4975
  528. package/lib/index-BnT4-Efz.js.map +0 -1
  529. package/lib/index-sS7O9W-R.js.map +0 -1
  530. package/src/app/tailwind.ts +0 -103
  531. package/src/lib/components/SlotletProvider.tsx +0 -55
  532. /package/dist/{vite/plugin-docs.test.d.ts → lib/components/Slot.test.d.ts} +0 -0
@@ -1,94 +1,79 @@
1
- function Y(e) {
2
- var r, t, o = "";
3
- if (typeof e == "string" || typeof e == "number") o += e;
4
- else if (typeof e == "object") if (Array.isArray(e)) {
5
- var l = e.length;
6
- for (r = 0; r < l; r++) e[r] && (t = Y(e[r])) && (o && (o += " "), o += t);
7
- } else for (t in e) e[t] && (o && (o += " "), o += t);
8
- return o;
9
- }
10
- function ne() {
11
- for (var e, r, t = 0, o = "", l = arguments.length; t < l; t++) (e = arguments[t]) && (r = Y(e)) && (o && (o += " "), o += r);
12
- return o;
13
- }
14
- const B = "-", se = (e) => {
15
- const r = ie(e), {
16
- conflictingClassGroups: t,
17
- conflictingClassGroupModifiers: o
1
+ import { c as Ie } from "./clsx-OuTLNxxd.js";
2
+ const ne = "-", Pe = (e) => {
3
+ const n = Ge(e), {
4
+ conflictingClassGroups: s,
5
+ conflictingClassGroupModifiers: t
18
6
  } = e;
19
7
  return {
20
- getClassGroupId: (a) => {
21
- const s = a.split(B);
22
- return s[0] === "" && s.length !== 1 && s.shift(), D(s, r) || le(a);
8
+ getClassGroupId: (i) => {
9
+ const u = i.split(ne);
10
+ return u[0] === "" && u.length !== 1 && u.shift(), xe(u, n) || Re(i);
23
11
  },
24
- getConflictingClassGroupIds: (a, s) => {
25
- const u = t[a] || [];
26
- return s && o[a] ? [...u, ...o[a]] : u;
12
+ getConflictingClassGroupIds: (i, u) => {
13
+ const p = s[i] || [];
14
+ return u && t[i] ? [...p, ...t[i]] : p;
27
15
  }
28
16
  };
29
- }, D = (e, r) => {
17
+ }, xe = (e, n) => {
30
18
  if (e.length === 0)
31
- return r.classGroupId;
32
- const t = e[0], o = r.nextPart.get(t), l = o ? D(e.slice(1), o) : void 0;
33
- if (l)
34
- return l;
35
- if (r.validators.length === 0)
19
+ return n.classGroupId;
20
+ const s = e[0], t = n.nextPart.get(s), c = t ? xe(e.slice(1), t) : void 0;
21
+ if (c)
22
+ return c;
23
+ if (n.validators.length === 0)
36
24
  return;
37
- const n = e.join(B);
38
- return r.validators.find(({
39
- validator: a
40
- }) => a(n))?.classGroupId;
41
- }, K = /^\[(.+)\]$/, le = (e) => {
42
- if (K.test(e)) {
43
- const r = K.exec(e)[1], t = r?.substring(0, r.indexOf(":"));
44
- if (t)
45
- return "arbitrary.." + t;
25
+ const m = e.join(ne);
26
+ return n.validators.find(({
27
+ validator: i
28
+ }) => i(m))?.classGroupId;
29
+ }, fe = /^\[(.+)\]$/, Re = (e) => {
30
+ if (fe.test(e)) {
31
+ const n = fe.exec(e)[1], s = n?.substring(0, n.indexOf(":"));
32
+ if (s)
33
+ return "arbitrary.." + s;
46
34
  }
47
- }, ie = (e) => {
35
+ }, Ge = (e) => {
48
36
  const {
49
- theme: r,
50
- prefix: t
51
- } = e, o = {
37
+ theme: n,
38
+ classGroups: s
39
+ } = e, t = {
52
40
  nextPart: /* @__PURE__ */ new Map(),
53
41
  validators: []
54
42
  };
55
- return ce(Object.entries(e.classGroups), t).forEach(([n, a]) => {
56
- $(a, o, n, r);
57
- }), o;
58
- }, $ = (e, r, t, o) => {
59
- e.forEach((l) => {
60
- if (typeof l == "string") {
61
- const n = l === "" ? r : Q(r, l);
62
- n.classGroupId = t;
43
+ for (const c in s)
44
+ re(s[c], t, c, n);
45
+ return t;
46
+ }, re = (e, n, s, t) => {
47
+ e.forEach((c) => {
48
+ if (typeof c == "string") {
49
+ const m = c === "" ? n : be(n, c);
50
+ m.classGroupId = s;
63
51
  return;
64
52
  }
65
- if (typeof l == "function") {
66
- if (ae(l)) {
67
- $(l(o), r, t, o);
53
+ if (typeof c == "function") {
54
+ if (Te(c)) {
55
+ re(c(t), n, s, t);
68
56
  return;
69
57
  }
70
- r.validators.push({
71
- validator: l,
72
- classGroupId: t
58
+ n.validators.push({
59
+ validator: c,
60
+ classGroupId: s
73
61
  });
74
62
  return;
75
63
  }
76
- Object.entries(l).forEach(([n, a]) => {
77
- $(a, Q(r, n), t, o);
64
+ Object.entries(c).forEach(([m, i]) => {
65
+ re(i, be(n, m), s, t);
78
66
  });
79
67
  });
80
- }, Q = (e, r) => {
81
- let t = e;
82
- return r.split(B).forEach((o) => {
83
- t.nextPart.has(o) || t.nextPart.set(o, {
68
+ }, be = (e, n) => {
69
+ let s = e;
70
+ return n.split(ne).forEach((t) => {
71
+ s.nextPart.has(t) || s.nextPart.set(t, {
84
72
  nextPart: /* @__PURE__ */ new Map(),
85
73
  validators: []
86
- }), t = t.nextPart.get(o);
87
- }), t;
88
- }, ae = (e) => e.isThemeGetter, ce = (e, r) => r ? e.map(([t, o]) => {
89
- const l = o.map((n) => typeof n == "string" ? r + n : typeof n == "object" ? Object.fromEntries(Object.entries(n).map(([a, s]) => [r + a, s])) : n);
90
- return [t, l];
91
- }) : e, de = (e) => {
74
+ }), s = s.nextPart.get(t);
75
+ }), s;
76
+ }, Te = (e) => e.isThemeGetter, Ee = (e) => {
92
77
  if (e < 1)
93
78
  return {
94
79
  get: () => {
@@ -96,192 +81,257 @@ const B = "-", se = (e) => {
96
81
  set: () => {
97
82
  }
98
83
  };
99
- let r = 0, t = /* @__PURE__ */ new Map(), o = /* @__PURE__ */ new Map();
100
- const l = (n, a) => {
101
- t.set(n, a), r++, r > e && (r = 0, o = t, t = /* @__PURE__ */ new Map());
84
+ let n = 0, s = /* @__PURE__ */ new Map(), t = /* @__PURE__ */ new Map();
85
+ const c = (m, i) => {
86
+ s.set(m, i), n++, n > e && (n = 0, t = s, s = /* @__PURE__ */ new Map());
102
87
  };
103
88
  return {
104
- get(n) {
105
- let a = t.get(n);
106
- if (a !== void 0)
107
- return a;
108
- if ((a = o.get(n)) !== void 0)
109
- return l(n, a), a;
89
+ get(m) {
90
+ let i = s.get(m);
91
+ if (i !== void 0)
92
+ return i;
93
+ if ((i = t.get(m)) !== void 0)
94
+ return c(m, i), i;
110
95
  },
111
- set(n, a) {
112
- t.has(n) ? t.set(n, a) : l(n, a);
96
+ set(m, i) {
97
+ s.has(m) ? s.set(m, i) : c(m, i);
113
98
  }
114
99
  };
115
- }, ee = "!", pe = (e) => {
100
+ }, te = "!", se = ":", Ne = se.length, Le = (e) => {
116
101
  const {
117
- separator: r,
118
- experimentalParseClassName: t
119
- } = e, o = r.length === 1, l = r[0], n = r.length, a = (s) => {
120
- const u = [];
121
- let g = 0, m = 0, y;
122
- for (let p = 0; p < s.length; p++) {
123
- let f = s[p];
124
- if (g === 0) {
125
- if (f === l && (o || s.slice(p, p + n) === r)) {
126
- u.push(s.slice(m, p)), m = p + n;
102
+ prefix: n,
103
+ experimentalParseClassName: s
104
+ } = e;
105
+ let t = (c) => {
106
+ const m = [];
107
+ let i = 0, u = 0, p = 0, g;
108
+ for (let k = 0; k < c.length; k++) {
109
+ let y = c[k];
110
+ if (i === 0 && u === 0) {
111
+ if (y === se) {
112
+ m.push(c.slice(p, k)), p = k + Ne;
127
113
  continue;
128
114
  }
129
- if (f === "/") {
130
- y = p;
115
+ if (y === "/") {
116
+ g = k;
131
117
  continue;
132
118
  }
133
119
  }
134
- f === "[" ? g++ : f === "]" && g--;
120
+ y === "[" ? i++ : y === "]" ? i-- : y === "(" ? u++ : y === ")" && u--;
135
121
  }
136
- const x = u.length === 0 ? s : s.substring(m), v = x.startsWith(ee), w = v ? x.substring(1) : x, b = y && y > m ? y - m : void 0;
122
+ const h = m.length === 0 ? c : c.substring(p), M = Ve(h), O = M !== h, F = g && g > p ? g - p : void 0;
137
123
  return {
138
- modifiers: u,
139
- hasImportantModifier: v,
140
- baseClassName: w,
141
- maybePostfixModifierPosition: b
124
+ modifiers: m,
125
+ hasImportantModifier: O,
126
+ baseClassName: M,
127
+ maybePostfixModifierPosition: F
142
128
  };
143
129
  };
144
- return t ? (s) => t({
145
- className: s,
146
- parseClassName: a
147
- }) : a;
148
- }, ue = (e) => {
149
- if (e.length <= 1)
150
- return e;
151
- const r = [];
152
- let t = [];
153
- return e.forEach((o) => {
154
- o[0] === "[" ? (r.push(...t.sort(), o), t = []) : t.push(o);
155
- }), r.push(...t.sort()), r;
156
- }, be = (e) => ({
157
- cache: de(e.cacheSize),
158
- parseClassName: pe(e),
159
- ...se(e)
160
- }), ge = /\s+/, fe = (e, r) => {
130
+ if (n) {
131
+ const c = n + se, m = t;
132
+ t = (i) => i.startsWith(c) ? m(i.substring(c.length)) : {
133
+ isExternal: !0,
134
+ modifiers: [],
135
+ hasImportantModifier: !1,
136
+ baseClassName: i,
137
+ maybePostfixModifierPosition: void 0
138
+ };
139
+ }
140
+ if (s) {
141
+ const c = t;
142
+ t = (m) => s({
143
+ className: m,
144
+ parseClassName: c
145
+ });
146
+ }
147
+ return t;
148
+ }, Ve = (e) => e.endsWith(te) ? e.substring(0, e.length - 1) : e.startsWith(te) ? e.substring(1) : e, je = (e) => {
149
+ const n = Object.fromEntries(e.orderSensitiveModifiers.map((t) => [t, !0]));
150
+ return (t) => {
151
+ if (t.length <= 1)
152
+ return t;
153
+ const c = [];
154
+ let m = [];
155
+ return t.forEach((i) => {
156
+ i[0] === "[" || n[i] ? (c.push(...m.sort(), i), m = []) : m.push(i);
157
+ }), c.push(...m.sort()), c;
158
+ };
159
+ }, Oe = (e) => ({
160
+ cache: Ee(e.cacheSize),
161
+ parseClassName: Le(e),
162
+ sortModifiers: je(e),
163
+ ...Pe(e)
164
+ }), Fe = /\s+/, _e = (e, n) => {
161
165
  const {
162
- parseClassName: t,
163
- getClassGroupId: o,
164
- getConflictingClassGroupIds: l
165
- } = r, n = [], a = e.trim().split(ge);
166
- let s = "";
167
- for (let u = a.length - 1; u >= 0; u -= 1) {
168
- const g = a[u], {
169
- modifiers: m,
170
- hasImportantModifier: y,
171
- baseClassName: x,
172
- maybePostfixModifierPosition: v
173
- } = t(g);
174
- let w = !!v, b = o(w ? x.substring(0, v) : x);
175
- if (!b) {
176
- if (!w) {
177
- s = g + (s.length > 0 ? " " + s : s);
166
+ parseClassName: s,
167
+ getClassGroupId: t,
168
+ getConflictingClassGroupIds: c,
169
+ sortModifiers: m
170
+ } = n, i = [], u = e.trim().split(Fe);
171
+ let p = "";
172
+ for (let g = u.length - 1; g >= 0; g -= 1) {
173
+ const h = u[g], {
174
+ isExternal: M,
175
+ modifiers: O,
176
+ hasImportantModifier: F,
177
+ baseClassName: k,
178
+ maybePostfixModifierPosition: y
179
+ } = s(h);
180
+ if (M) {
181
+ p = h + (p.length > 0 ? " " + p : p);
182
+ continue;
183
+ }
184
+ let G = !!y, A = t(G ? k.substring(0, y) : k);
185
+ if (!A) {
186
+ if (!G) {
187
+ p = h + (p.length > 0 ? " " + p : p);
178
188
  continue;
179
189
  }
180
- if (b = o(x), !b) {
181
- s = g + (s.length > 0 ? " " + s : s);
190
+ if (A = t(k), !A) {
191
+ p = h + (p.length > 0 ? " " + p : p);
182
192
  continue;
183
193
  }
184
- w = !1;
194
+ G = !1;
185
195
  }
186
- const p = ue(m).join(":"), f = y ? p + ee : p, h = f + b;
187
- if (n.includes(h))
196
+ const $ = m(O).join(":"), _ = F ? $ + te : $, T = _ + A;
197
+ if (i.includes(T))
188
198
  continue;
189
- n.push(h);
190
- const R = l(b, w);
191
- for (let S = 0; S < R.length; ++S) {
192
- const N = R[S];
193
- n.push(f + N);
199
+ i.push(T);
200
+ const E = c(A, G);
201
+ for (let I = 0; I < E.length; ++I) {
202
+ const B = E[I];
203
+ i.push(_ + B);
194
204
  }
195
- s = g + (s.length > 0 ? " " + s : s);
205
+ p = h + (p.length > 0 ? " " + p : p);
196
206
  }
197
- return s;
207
+ return p;
198
208
  };
199
- function me() {
200
- let e = 0, r, t, o = "";
209
+ function Be() {
210
+ let e = 0, n, s, t = "";
201
211
  for (; e < arguments.length; )
202
- (r = arguments[e++]) && (t = re(r)) && (o && (o += " "), o += t);
203
- return o;
212
+ (n = arguments[e++]) && (s = we(n)) && (t && (t += " "), t += s);
213
+ return t;
204
214
  }
205
- const re = (e) => {
215
+ const we = (e) => {
206
216
  if (typeof e == "string")
207
217
  return e;
208
- let r, t = "";
209
- for (let o = 0; o < e.length; o++)
210
- e[o] && (r = re(e[o])) && (t && (t += " "), t += r);
211
- return t;
218
+ let n, s = "";
219
+ for (let t = 0; t < e.length; t++)
220
+ e[t] && (n = we(e[t])) && (s && (s += " "), s += n);
221
+ return s;
212
222
  };
213
- function he(e, ...r) {
214
- let t, o, l, n = a;
215
- function a(u) {
216
- const g = r.reduce((m, y) => y(m), e());
217
- return t = be(g), o = t.cache.get, l = t.cache.set, n = s, s(u);
223
+ function We(e, ...n) {
224
+ let s, t, c, m = i;
225
+ function i(p) {
226
+ const g = n.reduce((h, M) => M(h), e());
227
+ return s = Oe(g), t = s.cache.get, c = s.cache.set, m = u, u(p);
218
228
  }
219
- function s(u) {
220
- const g = o(u);
229
+ function u(p) {
230
+ const g = t(p);
221
231
  if (g)
222
232
  return g;
223
- const m = fe(u, t);
224
- return l(u, m), m;
233
+ const h = _e(p, s);
234
+ return c(p, h), h;
225
235
  }
226
236
  return function() {
227
- return n(me.apply(null, arguments));
237
+ return m(Be.apply(null, arguments));
228
238
  };
229
239
  }
230
- const c = (e) => {
231
- const r = (t) => t[e] || [];
232
- return r.isThemeGetter = !0, r;
233
- }, te = /^\[(?:([a-z-]+):)?(.+)\]$/i, ye = /^\d+\/\d+$/, xe = /* @__PURE__ */ new Set(["px", "full", "screen"]), we = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, ve = /\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$/, ke = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/, Ce = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, ze = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, C = (e) => M(e) || xe.has(e) || ye.test(e), z = (e) => G(e, "length", je), M = (e) => !!e && !Number.isNaN(Number(e)), _ = (e) => G(e, "number", M), I = (e) => !!e && Number.isInteger(Number(e)), Ae = (e) => e.endsWith("%") && M(e.slice(0, -1)), i = (e) => te.test(e), A = (e) => we.test(e), Se = /* @__PURE__ */ new Set(["length", "size", "percentage"]), Me = (e) => G(e, Se, oe), Ge = (e) => G(e, "position", oe), Re = /* @__PURE__ */ new Set(["image", "url"]), Pe = (e) => G(e, Re, Ee), Ie = (e) => G(e, "", Ne), j = () => !0, G = (e, r, t) => {
234
- const o = te.exec(e);
235
- return o ? o[1] ? typeof r == "string" ? o[1] === r : r.has(o[1]) : t(o[2]) : !1;
236
- }, je = (e) => (
240
+ const f = (e) => {
241
+ const n = (s) => s[e] || [];
242
+ return n.isThemeGetter = !0, n;
243
+ }, ke = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, ye = /^\((?:(\w[\w-]*):)?(.+)\)$/i, $e = /^\d+\/\d+$/, Ue = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, qe = /\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$/, He = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/, Je = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, Xe = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, L = (e) => $e.test(e), d = (e) => !!e && !Number.isNaN(Number(e)), S = (e) => !!e && Number.isInteger(Number(e)), ee = (e) => e.endsWith("%") && d(e.slice(0, -1)), C = (e) => Ue.test(e), De = () => !0, Ke = (e) => (
237
244
  // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
238
245
  // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
239
246
  // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
240
- ve.test(e) && !ke.test(e)
241
- ), oe = () => !1, Ne = (e) => Ce.test(e), Ee = (e) => ze.test(e), Te = () => {
242
- const e = c("colors"), r = c("spacing"), t = c("blur"), o = c("brightness"), l = c("borderColor"), n = c("borderRadius"), a = c("borderSpacing"), s = c("borderWidth"), u = c("contrast"), g = c("grayscale"), m = c("hueRotate"), y = c("invert"), x = c("gap"), v = c("gradientColorStops"), w = c("gradientColorStopPositions"), b = c("inset"), p = c("margin"), f = c("opacity"), h = c("padding"), R = c("saturate"), S = c("scale"), N = c("sepia"), U = c("skew"), F = c("space"), q = c("translate"), L = () => ["auto", "contain", "none"], W = () => ["auto", "hidden", "clip", "visible", "scroll"], V = () => ["auto", i, r], d = () => [i, r], J = () => ["", C, z], E = () => ["auto", M, i], X = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"], T = () => ["solid", "dashed", "dotted", "double", "none"], Z = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], O = () => ["start", "end", "center", "between", "around", "evenly", "stretch"], P = () => ["", "0", i], H = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], k = () => [M, i];
247
+ qe.test(e) && !He.test(e)
248
+ ), ve = () => !1, Qe = (e) => Je.test(e), Ye = (e) => Xe.test(e), Ze = (e) => !o(e) && !r(e), eo = (e) => V(e, Me, ve), o = (e) => ke.test(e), R = (e) => V(e, Se, Ke), oe = (e) => V(e, no, d), ge = (e) => V(e, ze, ve), oo = (e) => V(e, Ce, Ye), D = (e) => V(e, Ae, Qe), r = (e) => ye.test(e), W = (e) => j(e, Se), ro = (e) => j(e, ao), he = (e) => j(e, ze), to = (e) => j(e, Me), so = (e) => j(e, Ce), K = (e) => j(e, Ae, !0), V = (e, n, s) => {
249
+ const t = ke.exec(e);
250
+ return t ? t[1] ? n(t[1]) : s(t[2]) : !1;
251
+ }, j = (e, n, s = !1) => {
252
+ const t = ye.exec(e);
253
+ return t ? t[1] ? n(t[1]) : s : !1;
254
+ }, ze = (e) => e === "position" || e === "percentage", Ce = (e) => e === "image" || e === "url", Me = (e) => e === "length" || e === "size" || e === "bg-size", Se = (e) => e === "length", no = (e) => e === "number", ao = (e) => e === "family-name", Ae = (e) => e === "shadow", io = () => {
255
+ const e = f("color"), n = f("font"), s = f("text"), t = f("font-weight"), c = f("tracking"), m = f("leading"), i = f("breakpoint"), u = f("container"), p = f("spacing"), g = f("radius"), h = f("shadow"), M = f("inset-shadow"), O = f("text-shadow"), F = f("drop-shadow"), k = f("blur"), y = f("perspective"), G = f("aspect"), A = f("ease"), $ = f("animate"), _ = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], T = () => [
256
+ "center",
257
+ "top",
258
+ "bottom",
259
+ "left",
260
+ "right",
261
+ "top-left",
262
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
263
+ "left-top",
264
+ "top-right",
265
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
266
+ "right-top",
267
+ "bottom-right",
268
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
269
+ "right-bottom",
270
+ "bottom-left",
271
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
272
+ "left-bottom"
273
+ ], E = () => [...T(), r, o], I = () => ["auto", "hidden", "clip", "visible", "scroll"], B = () => ["auto", "contain", "none"], l = () => [r, o, p], v = () => [L, "full", "auto", ...l()], ae = () => [S, "none", "subgrid", r, o], ie = () => ["auto", {
274
+ span: ["full", S, r, o]
275
+ }, S, r, o], U = () => [S, "auto", r, o], le = () => ["auto", "min", "max", "fr", r, o], Q = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], N = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], z = () => ["auto", ...l()], P = () => [L, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...l()], a = () => [e, r, o], ce = () => [...T(), he, ge, {
276
+ position: [r, o]
277
+ }], de = () => ["no-repeat", {
278
+ repeat: ["", "x", "y", "space", "round"]
279
+ }], me = () => ["auto", "cover", "contain", to, eo, {
280
+ size: [r, o]
281
+ }], Y = () => [ee, W, R], x = () => [
282
+ // Deprecated since Tailwind CSS v4.0.0
283
+ "",
284
+ "none",
285
+ "full",
286
+ g,
287
+ r,
288
+ o
289
+ ], w = () => ["", d, W, R], q = () => ["solid", "dashed", "dotted", "double"], pe = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], b = () => [d, ee, he, ge], ue = () => [
290
+ // Deprecated since Tailwind CSS v4.0.0
291
+ "",
292
+ "none",
293
+ k,
294
+ r,
295
+ o
296
+ ], H = () => ["none", d, r, o], J = () => ["none", d, r, o], Z = () => [d, r, o], X = () => [L, "full", ...l()];
243
297
  return {
244
298
  cacheSize: 500,
245
- separator: ":",
246
299
  theme: {
247
- colors: [j],
248
- spacing: [C, z],
249
- blur: ["none", "", A, i],
250
- brightness: k(),
251
- borderColor: [e],
252
- borderRadius: ["none", "", "full", A, i],
253
- borderSpacing: d(),
254
- borderWidth: J(),
255
- contrast: k(),
256
- grayscale: P(),
257
- hueRotate: k(),
258
- invert: P(),
259
- gap: d(),
260
- gradientColorStops: [e],
261
- gradientColorStopPositions: [Ae, z],
262
- inset: V(),
263
- margin: V(),
264
- opacity: k(),
265
- padding: d(),
266
- saturate: k(),
267
- scale: k(),
268
- sepia: P(),
269
- skew: k(),
270
- space: d(),
271
- translate: d()
300
+ animate: ["spin", "ping", "pulse", "bounce"],
301
+ aspect: ["video"],
302
+ blur: [C],
303
+ breakpoint: [C],
304
+ color: [De],
305
+ container: [C],
306
+ "drop-shadow": [C],
307
+ ease: ["in", "out", "in-out"],
308
+ font: [Ze],
309
+ "font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
310
+ "inset-shadow": [C],
311
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
312
+ perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
313
+ radius: [C],
314
+ shadow: [C],
315
+ spacing: ["px", d],
316
+ text: [C],
317
+ "text-shadow": [C],
318
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
272
319
  },
273
320
  classGroups: {
274
- // Layout
321
+ // --------------
322
+ // --- Layout ---
323
+ // --------------
275
324
  /**
276
325
  * Aspect Ratio
277
326
  * @see https://tailwindcss.com/docs/aspect-ratio
278
327
  */
279
328
  aspect: [{
280
- aspect: ["auto", "square", "video", i]
329
+ aspect: ["auto", "square", L, o, r, G]
281
330
  }],
282
331
  /**
283
332
  * Container
284
333
  * @see https://tailwindcss.com/docs/container
334
+ * @deprecated since Tailwind CSS v4.0.0
285
335
  */
286
336
  container: ["container"],
287
337
  /**
@@ -289,21 +339,21 @@ const c = (e) => {
289
339
  * @see https://tailwindcss.com/docs/columns
290
340
  */
291
341
  columns: [{
292
- columns: [A]
342
+ columns: [d, o, r, u]
293
343
  }],
294
344
  /**
295
345
  * Break After
296
346
  * @see https://tailwindcss.com/docs/break-after
297
347
  */
298
348
  "break-after": [{
299
- "break-after": H()
349
+ "break-after": _()
300
350
  }],
301
351
  /**
302
352
  * Break Before
303
353
  * @see https://tailwindcss.com/docs/break-before
304
354
  */
305
355
  "break-before": [{
306
- "break-before": H()
356
+ "break-before": _()
307
357
  }],
308
358
  /**
309
359
  * Break Inside
@@ -331,6 +381,11 @@ const c = (e) => {
331
381
  * @see https://tailwindcss.com/docs/display
332
382
  */
333
383
  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"],
384
+ /**
385
+ * Screen Reader Only
386
+ * @see https://tailwindcss.com/docs/display#screen-reader-only
387
+ */
388
+ sr: ["sr-only", "not-sr-only"],
334
389
  /**
335
390
  * Floats
336
391
  * @see https://tailwindcss.com/docs/float
@@ -362,49 +417,49 @@ const c = (e) => {
362
417
  * @see https://tailwindcss.com/docs/object-position
363
418
  */
364
419
  "object-position": [{
365
- object: [...X(), i]
420
+ object: E()
366
421
  }],
367
422
  /**
368
423
  * Overflow
369
424
  * @see https://tailwindcss.com/docs/overflow
370
425
  */
371
426
  overflow: [{
372
- overflow: W()
427
+ overflow: I()
373
428
  }],
374
429
  /**
375
430
  * Overflow X
376
431
  * @see https://tailwindcss.com/docs/overflow
377
432
  */
378
433
  "overflow-x": [{
379
- "overflow-x": W()
434
+ "overflow-x": I()
380
435
  }],
381
436
  /**
382
437
  * Overflow Y
383
438
  * @see https://tailwindcss.com/docs/overflow
384
439
  */
385
440
  "overflow-y": [{
386
- "overflow-y": W()
441
+ "overflow-y": I()
387
442
  }],
388
443
  /**
389
444
  * Overscroll Behavior
390
445
  * @see https://tailwindcss.com/docs/overscroll-behavior
391
446
  */
392
447
  overscroll: [{
393
- overscroll: L()
448
+ overscroll: B()
394
449
  }],
395
450
  /**
396
451
  * Overscroll Behavior X
397
452
  * @see https://tailwindcss.com/docs/overscroll-behavior
398
453
  */
399
454
  "overscroll-x": [{
400
- "overscroll-x": L()
455
+ "overscroll-x": B()
401
456
  }],
402
457
  /**
403
458
  * Overscroll Behavior Y
404
459
  * @see https://tailwindcss.com/docs/overscroll-behavior
405
460
  */
406
461
  "overscroll-y": [{
407
- "overscroll-y": L()
462
+ "overscroll-y": B()
408
463
  }],
409
464
  /**
410
465
  * Position
@@ -416,63 +471,63 @@ const c = (e) => {
416
471
  * @see https://tailwindcss.com/docs/top-right-bottom-left
417
472
  */
418
473
  inset: [{
419
- inset: [b]
474
+ inset: v()
420
475
  }],
421
476
  /**
422
477
  * Right / Left
423
478
  * @see https://tailwindcss.com/docs/top-right-bottom-left
424
479
  */
425
480
  "inset-x": [{
426
- "inset-x": [b]
481
+ "inset-x": v()
427
482
  }],
428
483
  /**
429
484
  * Top / Bottom
430
485
  * @see https://tailwindcss.com/docs/top-right-bottom-left
431
486
  */
432
487
  "inset-y": [{
433
- "inset-y": [b]
488
+ "inset-y": v()
434
489
  }],
435
490
  /**
436
491
  * Start
437
492
  * @see https://tailwindcss.com/docs/top-right-bottom-left
438
493
  */
439
494
  start: [{
440
- start: [b]
495
+ start: v()
441
496
  }],
442
497
  /**
443
498
  * End
444
499
  * @see https://tailwindcss.com/docs/top-right-bottom-left
445
500
  */
446
501
  end: [{
447
- end: [b]
502
+ end: v()
448
503
  }],
449
504
  /**
450
505
  * Top
451
506
  * @see https://tailwindcss.com/docs/top-right-bottom-left
452
507
  */
453
508
  top: [{
454
- top: [b]
509
+ top: v()
455
510
  }],
456
511
  /**
457
512
  * Right
458
513
  * @see https://tailwindcss.com/docs/top-right-bottom-left
459
514
  */
460
515
  right: [{
461
- right: [b]
516
+ right: v()
462
517
  }],
463
518
  /**
464
519
  * Bottom
465
520
  * @see https://tailwindcss.com/docs/top-right-bottom-left
466
521
  */
467
522
  bottom: [{
468
- bottom: [b]
523
+ bottom: v()
469
524
  }],
470
525
  /**
471
526
  * Left
472
527
  * @see https://tailwindcss.com/docs/top-right-bottom-left
473
528
  */
474
529
  left: [{
475
- left: [b]
530
+ left: v()
476
531
  }],
477
532
  /**
478
533
  * Visibility
@@ -484,15 +539,17 @@ const c = (e) => {
484
539
  * @see https://tailwindcss.com/docs/z-index
485
540
  */
486
541
  z: [{
487
- z: ["auto", I, i]
542
+ z: [S, "auto", r, o]
488
543
  }],
489
- // Flexbox and Grid
544
+ // ------------------------
545
+ // --- Flexbox and Grid ---
546
+ // ------------------------
490
547
  /**
491
548
  * Flex Basis
492
549
  * @see https://tailwindcss.com/docs/flex-basis
493
550
  */
494
551
  basis: [{
495
- basis: V()
552
+ basis: [L, "full", "auto", u, ...l()]
496
553
  }],
497
554
  /**
498
555
  * Flex Direction
@@ -506,95 +563,91 @@ const c = (e) => {
506
563
  * @see https://tailwindcss.com/docs/flex-wrap
507
564
  */
508
565
  "flex-wrap": [{
509
- flex: ["wrap", "wrap-reverse", "nowrap"]
566
+ flex: ["nowrap", "wrap", "wrap-reverse"]
510
567
  }],
511
568
  /**
512
569
  * Flex
513
570
  * @see https://tailwindcss.com/docs/flex
514
571
  */
515
572
  flex: [{
516
- flex: ["1", "auto", "initial", "none", i]
573
+ flex: [d, L, "auto", "initial", "none", o]
517
574
  }],
518
575
  /**
519
576
  * Flex Grow
520
577
  * @see https://tailwindcss.com/docs/flex-grow
521
578
  */
522
579
  grow: [{
523
- grow: P()
580
+ grow: ["", d, r, o]
524
581
  }],
525
582
  /**
526
583
  * Flex Shrink
527
584
  * @see https://tailwindcss.com/docs/flex-shrink
528
585
  */
529
586
  shrink: [{
530
- shrink: P()
587
+ shrink: ["", d, r, o]
531
588
  }],
532
589
  /**
533
590
  * Order
534
591
  * @see https://tailwindcss.com/docs/order
535
592
  */
536
593
  order: [{
537
- order: ["first", "last", "none", I, i]
594
+ order: [S, "first", "last", "none", r, o]
538
595
  }],
539
596
  /**
540
597
  * Grid Template Columns
541
598
  * @see https://tailwindcss.com/docs/grid-template-columns
542
599
  */
543
600
  "grid-cols": [{
544
- "grid-cols": [j]
601
+ "grid-cols": ae()
545
602
  }],
546
603
  /**
547
604
  * Grid Column Start / End
548
605
  * @see https://tailwindcss.com/docs/grid-column
549
606
  */
550
607
  "col-start-end": [{
551
- col: ["auto", {
552
- span: ["full", I, i]
553
- }, i]
608
+ col: ie()
554
609
  }],
555
610
  /**
556
611
  * Grid Column Start
557
612
  * @see https://tailwindcss.com/docs/grid-column
558
613
  */
559
614
  "col-start": [{
560
- "col-start": E()
615
+ "col-start": U()
561
616
  }],
562
617
  /**
563
618
  * Grid Column End
564
619
  * @see https://tailwindcss.com/docs/grid-column
565
620
  */
566
621
  "col-end": [{
567
- "col-end": E()
622
+ "col-end": U()
568
623
  }],
569
624
  /**
570
625
  * Grid Template Rows
571
626
  * @see https://tailwindcss.com/docs/grid-template-rows
572
627
  */
573
628
  "grid-rows": [{
574
- "grid-rows": [j]
629
+ "grid-rows": ae()
575
630
  }],
576
631
  /**
577
632
  * Grid Row Start / End
578
633
  * @see https://tailwindcss.com/docs/grid-row
579
634
  */
580
635
  "row-start-end": [{
581
- row: ["auto", {
582
- span: [I, i]
583
- }, i]
636
+ row: ie()
584
637
  }],
585
638
  /**
586
639
  * Grid Row Start
587
640
  * @see https://tailwindcss.com/docs/grid-row
588
641
  */
589
642
  "row-start": [{
590
- "row-start": E()
643
+ "row-start": U()
591
644
  }],
592
645
  /**
593
646
  * Grid Row End
594
647
  * @see https://tailwindcss.com/docs/grid-row
595
648
  */
596
649
  "row-end": [{
597
- "row-end": E()
650
+ "row-end": U()
598
651
  }],
599
652
  /**
600
653
  * Grid Auto Flow
@@ -608,98 +661,102 @@ const c = (e) => {
608
661
  * @see https://tailwindcss.com/docs/grid-auto-columns
609
662
  */
610
663
  "auto-cols": [{
611
- "auto-cols": ["auto", "min", "max", "fr", i]
664
+ "auto-cols": le()
612
665
  }],
613
666
  /**
614
667
  * Grid Auto Rows
615
668
  * @see https://tailwindcss.com/docs/grid-auto-rows
616
669
  */
617
670
  "auto-rows": [{
618
- "auto-rows": ["auto", "min", "max", "fr", i]
671
+ "auto-rows": le()
619
672
  }],
620
673
  /**
621
674
  * Gap
622
675
  * @see https://tailwindcss.com/docs/gap
623
676
  */
624
677
  gap: [{
625
- gap: [x]
678
+ gap: l()
626
679
  }],
627
680
  /**
628
681
  * Gap X
629
682
  * @see https://tailwindcss.com/docs/gap
630
683
  */
631
684
  "gap-x": [{
632
- "gap-x": [x]
685
+ "gap-x": l()
633
686
  }],
634
687
  /**
635
688
  * Gap Y
636
689
  * @see https://tailwindcss.com/docs/gap
637
690
  */
638
691
  "gap-y": [{
639
- "gap-y": [x]
692
+ "gap-y": l()
640
693
  }],
641
694
  /**
642
695
  * Justify Content
643
696
  * @see https://tailwindcss.com/docs/justify-content
644
697
  */
645
698
  "justify-content": [{
646
- justify: ["normal", ...O()]
699
+ justify: [...Q(), "normal"]
647
700
  }],
648
701
  /**
649
702
  * Justify Items
650
703
  * @see https://tailwindcss.com/docs/justify-items
651
704
  */
652
705
  "justify-items": [{
653
- "justify-items": ["start", "end", "center", "stretch"]
706
+ "justify-items": [...N(), "normal"]
654
707
  }],
655
708
  /**
656
709
  * Justify Self
657
710
  * @see https://tailwindcss.com/docs/justify-self
658
711
  */
659
712
  "justify-self": [{
660
- "justify-self": ["auto", "start", "end", "center", "stretch"]
713
+ "justify-self": ["auto", ...N()]
661
714
  }],
662
715
  /**
663
716
  * Align Content
664
717
  * @see https://tailwindcss.com/docs/align-content
665
718
  */
666
719
  "align-content": [{
667
- content: ["normal", ...O(), "baseline"]
720
+ content: ["normal", ...Q()]
668
721
  }],
669
722
  /**
670
723
  * Align Items
671
724
  * @see https://tailwindcss.com/docs/align-items
672
725
  */
673
726
  "align-items": [{
674
- items: ["start", "end", "center", "baseline", "stretch"]
727
+ items: [...N(), {
728
+ baseline: ["", "last"]
729
+ }]
675
730
  }],
676
731
  /**
677
732
  * Align Self
678
733
  * @see https://tailwindcss.com/docs/align-self
679
734
  */
680
735
  "align-self": [{
681
- self: ["auto", "start", "end", "center", "stretch", "baseline"]
736
+ self: ["auto", ...N(), {
737
+ baseline: ["", "last"]
738
+ }]
682
739
  }],
683
740
  /**
684
741
  * Place Content
685
742
  * @see https://tailwindcss.com/docs/place-content
686
743
  */
687
744
  "place-content": [{
688
- "place-content": [...O(), "baseline"]
745
+ "place-content": Q()
689
746
  }],
690
747
  /**
691
748
  * Place Items
692
749
  * @see https://tailwindcss.com/docs/place-items
693
750
  */
694
751
  "place-items": [{
695
- "place-items": ["start", "end", "center", "baseline", "stretch"]
752
+ "place-items": [...N(), "baseline"]
696
753
  }],
697
754
  /**
698
755
  * Place Self
699
756
  * @see https://tailwindcss.com/docs/place-self
700
757
  */
701
758
  "place-self": [{
702
- "place-self": ["auto", "start", "end", "center", "stretch"]
759
+ "place-self": ["auto", ...N()]
703
760
  }],
704
761
  // Spacing
705
762
  /**
@@ -707,210 +764,229 @@ const c = (e) => {
707
764
  * @see https://tailwindcss.com/docs/padding
708
765
  */
709
766
  p: [{
710
- p: [h]
767
+ p: l()
711
768
  }],
712
769
  /**
713
770
  * Padding X
714
771
  * @see https://tailwindcss.com/docs/padding
715
772
  */
716
773
  px: [{
717
- px: [h]
774
+ px: l()
718
775
  }],
719
776
  /**
720
777
  * Padding Y
721
778
  * @see https://tailwindcss.com/docs/padding
722
779
  */
723
780
  py: [{
724
- py: [h]
781
+ py: l()
725
782
  }],
726
783
  /**
727
784
  * Padding Start
728
785
  * @see https://tailwindcss.com/docs/padding
729
786
  */
730
787
  ps: [{
731
- ps: [h]
788
+ ps: l()
732
789
  }],
733
790
  /**
734
791
  * Padding End
735
792
  * @see https://tailwindcss.com/docs/padding
736
793
  */
737
794
  pe: [{
738
- pe: [h]
795
+ pe: l()
739
796
  }],
740
797
  /**
741
798
  * Padding Top
742
799
  * @see https://tailwindcss.com/docs/padding
743
800
  */
744
801
  pt: [{
745
- pt: [h]
802
+ pt: l()
746
803
  }],
747
804
  /**
748
805
  * Padding Right
749
806
  * @see https://tailwindcss.com/docs/padding
750
807
  */
751
808
  pr: [{
752
- pr: [h]
809
+ pr: l()
753
810
  }],
754
811
  /**
755
812
  * Padding Bottom
756
813
  * @see https://tailwindcss.com/docs/padding
757
814
  */
758
815
  pb: [{
759
- pb: [h]
816
+ pb: l()
760
817
  }],
761
818
  /**
762
819
  * Padding Left
763
820
  * @see https://tailwindcss.com/docs/padding
764
821
  */
765
822
  pl: [{
766
- pl: [h]
823
+ pl: l()
767
824
  }],
768
825
  /**
769
826
  * Margin
770
827
  * @see https://tailwindcss.com/docs/margin
771
828
  */
772
829
  m: [{
773
- m: [p]
830
+ m: z()
774
831
  }],
775
832
  /**
776
833
  * Margin X
777
834
  * @see https://tailwindcss.com/docs/margin
778
835
  */
779
836
  mx: [{
780
- mx: [p]
837
+ mx: z()
781
838
  }],
782
839
  /**
783
840
  * Margin Y
784
841
  * @see https://tailwindcss.com/docs/margin
785
842
  */
786
843
  my: [{
787
- my: [p]
844
+ my: z()
788
845
  }],
789
846
  /**
790
847
  * Margin Start
791
848
  * @see https://tailwindcss.com/docs/margin
792
849
  */
793
850
  ms: [{
794
- ms: [p]
851
+ ms: z()
795
852
  }],
796
853
  /**
797
854
  * Margin End
798
855
  * @see https://tailwindcss.com/docs/margin
799
856
  */
800
857
  me: [{
801
- me: [p]
858
+ me: z()
802
859
  }],
803
860
  /**
804
861
  * Margin Top
805
862
  * @see https://tailwindcss.com/docs/margin
806
863
  */
807
864
  mt: [{
808
- mt: [p]
865
+ mt: z()
809
866
  }],
810
867
  /**
811
868
  * Margin Right
812
869
  * @see https://tailwindcss.com/docs/margin
813
870
  */
814
871
  mr: [{
815
- mr: [p]
872
+ mr: z()
816
873
  }],
817
874
  /**
818
875
  * Margin Bottom
819
876
  * @see https://tailwindcss.com/docs/margin
820
877
  */
821
878
  mb: [{
822
- mb: [p]
879
+ mb: z()
823
880
  }],
824
881
  /**
825
882
  * Margin Left
826
883
  * @see https://tailwindcss.com/docs/margin
827
884
  */
828
885
  ml: [{
829
- ml: [p]
886
+ ml: z()
830
887
  }],
831
888
  /**
832
889
  * Space Between X
833
- * @see https://tailwindcss.com/docs/space
890
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
834
891
  */
835
892
  "space-x": [{
836
- "space-x": [F]
893
+ "space-x": l()
837
894
  }],
838
895
  /**
839
896
  * Space Between X Reverse
840
- * @see https://tailwindcss.com/docs/space
897
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
841
898
  */
842
899
  "space-x-reverse": ["space-x-reverse"],
843
900
  /**
844
901
  * Space Between Y
845
- * @see https://tailwindcss.com/docs/space
902
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
846
903
  */
847
904
  "space-y": [{
848
- "space-y": [F]
905
+ "space-y": l()
849
906
  }],
850
907
  /**
851
908
  * Space Between Y Reverse
852
- * @see https://tailwindcss.com/docs/space
909
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
853
910
  */
854
911
  "space-y-reverse": ["space-y-reverse"],
855
- // Sizing
912
+ // --------------
913
+ // --- Sizing ---
914
+ // --------------
915
+ /**
916
+ * Size
917
+ * @see https://tailwindcss.com/docs/width#setting-both-width-and-height
918
+ */
919
+ size: [{
920
+ size: P()
921
+ }],
856
922
  /**
857
923
  * Width
858
924
  * @see https://tailwindcss.com/docs/width
859
925
  */
860
926
  w: [{
861
- w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", i, r]
927
+ w: [u, "screen", ...P()]
862
928
  }],
863
929
  /**
864
930
  * Min-Width
865
931
  * @see https://tailwindcss.com/docs/min-width
866
932
  */
867
933
  "min-w": [{
868
- "min-w": [i, r, "min", "max", "fit"]
934
+ "min-w": [
935
+ u,
936
+ "screen",
937
+ /** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
938
+ "none",
939
+ ...P()
940
+ ]
869
941
  }],
870
942
  /**
871
943
  * Max-Width
872
944
  * @see https://tailwindcss.com/docs/max-width
873
945
  */
874
946
  "max-w": [{
875
- "max-w": [i, r, "none", "full", "min", "max", "fit", "prose", {
876
- screen: [A]
877
- }, A]
947
+ "max-w": [
948
+ u,
949
+ "screen",
950
+ "none",
951
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
952
+ "prose",
953
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
954
+ {
955
+ screen: [i]
956
+ },
957
+ ...P()
958
+ ]
878
959
  }],
879
960
  /**
880
961
  * Height
881
962
  * @see https://tailwindcss.com/docs/height
882
963
  */
883
964
  h: [{
884
- h: [i, r, "auto", "min", "max", "fit", "svh", "lvh", "dvh"]
965
+ h: ["screen", "lh", ...P()]
885
966
  }],
886
967
  /**
887
968
  * Min-Height
888
969
  * @see https://tailwindcss.com/docs/min-height
889
970
  */
890
971
  "min-h": [{
891
- "min-h": [i, r, "min", "max", "fit", "svh", "lvh", "dvh"]
972
+ "min-h": ["screen", "lh", "none", ...P()]
892
973
  }],
893
974
  /**
894
975
  * Max-Height
895
976
  * @see https://tailwindcss.com/docs/max-height
896
977
  */
897
978
  "max-h": [{
898
- "max-h": [i, r, "min", "max", "fit", "svh", "lvh", "dvh"]
979
+ "max-h": ["screen", "lh", ...P()]
899
980
  }],
900
- /**
901
- * Size
902
- * @see https://tailwindcss.com/docs/size
903
- */
904
- size: [{
905
- size: [i, r, "auto", "min", "max", "fit"]
906
- }],
907
- // Typography
981
+ // ------------------
982
+ // --- Typography ---
983
+ // ------------------
908
984
  /**
909
985
  * Font Size
910
986
  * @see https://tailwindcss.com/docs/font-size
911
987
  */
912
988
  "font-size": [{
913
- text: ["base", A, z]
989
+ text: ["base", s, W, R]
914
990
  }],
915
991
  /**
916
992
  * Font Smoothing
@@ -927,14 +1003,21 @@ const c = (e) => {
927
1003
  * @see https://tailwindcss.com/docs/font-weight
928
1004
  */
929
1005
  "font-weight": [{
930
- font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", _]
1006
+ font: [t, r, oe]
1007
+ }],
1008
+ /**
1009
+ * Font Stretch
1010
+ * @see https://tailwindcss.com/docs/font-stretch
1011
+ */
1012
+ "font-stretch": [{
1013
+ "font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", ee, o]
931
1014
  }],
932
1015
  /**
933
1016
  * Font Family
934
1017
  * @see https://tailwindcss.com/docs/font-family
935
1018
  */
936
1019
  "font-family": [{
937
- font: [j]
1020
+ font: [ro, o, n]
938
1021
  }],
939
1022
  /**
940
1023
  * Font Variant Numeric
@@ -971,35 +1054,32 @@ const c = (e) => {
971
1054
  * @see https://tailwindcss.com/docs/letter-spacing
972
1055
  */
973
1056
  tracking: [{
974
- tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", i]
1057
+ tracking: [c, r, o]
975
1058
  }],
976
1059
  /**
977
1060
  * Line Clamp
978
1061
  * @see https://tailwindcss.com/docs/line-clamp
979
1062
  */
980
1063
  "line-clamp": [{
981
- "line-clamp": ["none", M, _]
1064
+ "line-clamp": [d, "none", r, oe]
982
1065
  }],
983
1066
  /**
984
1067
  * Line Height
985
1068
  * @see https://tailwindcss.com/docs/line-height
986
1069
  */
987
1070
  leading: [{
988
- leading: ["none", "tight", "snug", "normal", "relaxed", "loose", C, i]
1071
+ leading: [
1072
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1073
+ m,
1074
+ ...l()
1075
+ ]
989
1076
  }],
990
1077
  /**
991
1078
  * List Style Image
992
1079
  * @see https://tailwindcss.com/docs/list-style-image
993
1080
  */
994
1081
  "list-image": [{
995
- "list-image": ["none", i]
996
- }],
997
- /**
998
- * List Style Type
999
- * @see https://tailwindcss.com/docs/list-style-type
1000
- */
1001
- "list-style-type": [{
1002
- list: ["none", "disc", "decimal", i]
1082
+ "list-image": ["none", r, o]
1003
1083
  }],
1004
1084
  /**
1005
1085
  * List Style Position
@@ -1009,19 +1089,11 @@ const c = (e) => {
1009
1089
  list: ["inside", "outside"]
1010
1090
  }],
1011
1091
  /**
1012
- * Placeholder Color
1013
- * @deprecated since Tailwind CSS v3.0.0
1014
- * @see https://tailwindcss.com/docs/placeholder-color
1015
- */
1016
- "placeholder-color": [{
1017
- placeholder: [e]
1018
- }],
1019
- /**
1020
- * Placeholder Opacity
1021
- * @see https://tailwindcss.com/docs/placeholder-opacity
1092
+ * List Style Type
1093
+ * @see https://tailwindcss.com/docs/list-style-type
1022
1094
  */
1023
- "placeholder-opacity": [{
1024
- "placeholder-opacity": [f]
1095
+ "list-style-type": [{
1096
+ list: ["disc", "decimal", "none", r, o]
1025
1097
  }],
1026
1098
  /**
1027
1099
  * Text Alignment
@@ -1031,18 +1103,19 @@ const c = (e) => {
1031
1103
  text: ["left", "center", "right", "justify", "start", "end"]
1032
1104
  }],
1033
1105
  /**
1034
- * Text Color
1035
- * @see https://tailwindcss.com/docs/text-color
1106
+ * Placeholder Color
1107
+ * @deprecated since Tailwind CSS v3.0.0
1108
+ * @see https://v3.tailwindcss.com/docs/placeholder-color
1036
1109
  */
1037
- "text-color": [{
1038
- text: [e]
1110
+ "placeholder-color": [{
1111
+ placeholder: a()
1039
1112
  }],
1040
1113
  /**
1041
- * Text Opacity
1042
- * @see https://tailwindcss.com/docs/text-opacity
1114
+ * Text Color
1115
+ * @see https://tailwindcss.com/docs/text-color
1043
1116
  */
1044
- "text-opacity": [{
1045
- "text-opacity": [f]
1117
+ "text-color": [{
1118
+ text: a()
1046
1119
  }],
1047
1120
  /**
1048
1121
  * Text Decoration
@@ -1054,28 +1127,28 @@ const c = (e) => {
1054
1127
  * @see https://tailwindcss.com/docs/text-decoration-style
1055
1128
  */
1056
1129
  "text-decoration-style": [{
1057
- decoration: [...T(), "wavy"]
1130
+ decoration: [...q(), "wavy"]
1058
1131
  }],
1059
1132
  /**
1060
1133
  * Text Decoration Thickness
1061
1134
  * @see https://tailwindcss.com/docs/text-decoration-thickness
1062
1135
  */
1063
1136
  "text-decoration-thickness": [{
1064
- decoration: ["auto", "from-font", C, z]
1065
- }],
1066
- /**
1067
- * Text Underline Offset
1068
- * @see https://tailwindcss.com/docs/text-underline-offset
1069
- */
1070
- "underline-offset": [{
1071
- "underline-offset": ["auto", C, i]
1137
+ decoration: [d, "from-font", "auto", r, R]
1072
1138
  }],
1073
1139
  /**
1074
1140
  * Text Decoration Color
1075
1141
  * @see https://tailwindcss.com/docs/text-decoration-color
1076
1142
  */
1077
1143
  "text-decoration-color": [{
1078
- decoration: [e]
1144
+ decoration: a()
1145
+ }],
1146
+ /**
1147
+ * Text Underline Offset
1148
+ * @see https://tailwindcss.com/docs/text-underline-offset
1149
+ */
1150
+ "underline-offset": [{
1151
+ "underline-offset": [d, "auto", r, o]
1079
1152
  }],
1080
1153
  /**
1081
1154
  * Text Transform
@@ -1099,14 +1172,14 @@ const c = (e) => {
1099
1172
  * @see https://tailwindcss.com/docs/text-indent
1100
1173
  */
1101
1174
  indent: [{
1102
- indent: d()
1175
+ indent: l()
1103
1176
  }],
1104
1177
  /**
1105
1178
  * Vertical Alignment
1106
1179
  * @see https://tailwindcss.com/docs/vertical-align
1107
1180
  */
1108
1181
  "vertical-align": [{
1109
- align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", i]
1182
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", r, o]
1110
1183
  }],
1111
1184
  /**
1112
1185
  * Whitespace
@@ -1122,6 +1195,13 @@ const c = (e) => {
1122
1195
  break: [{
1123
1196
  break: ["normal", "words", "all", "keep"]
1124
1197
  }],
1198
+ /**
1199
+ * Overflow Wrap
1200
+ * @see https://tailwindcss.com/docs/overflow-wrap
1201
+ */
1202
+ wrap: [{
1203
+ wrap: ["break-word", "anywhere", "normal"]
1204
+ }],
1125
1205
  /**
1126
1206
  * Hyphens
1127
1207
  * @see https://tailwindcss.com/docs/hyphens
@@ -1134,9 +1214,11 @@ const c = (e) => {
1134
1214
  * @see https://tailwindcss.com/docs/content
1135
1215
  */
1136
1216
  content: [{
1137
- content: ["none", i]
1217
+ content: ["none", r, o]
1138
1218
  }],
1139
- // Backgrounds
1219
+ // -------------------
1220
+ // --- Backgrounds ---
1221
+ // -------------------
1140
1222
  /**
1141
1223
  * Background Attachment
1142
1224
  * @see https://tailwindcss.com/docs/background-attachment
@@ -1151,14 +1233,6 @@ const c = (e) => {
1151
1233
  "bg-clip": [{
1152
1234
  "bg-clip": ["border", "padding", "content", "text"]
1153
1235
  }],
1154
- /**
1155
- * Background Opacity
1156
- * @deprecated since Tailwind CSS v3.0.0
1157
- * @see https://tailwindcss.com/docs/background-opacity
1158
- */
1159
- "bg-opacity": [{
1160
- "bg-opacity": [f]
1161
- }],
1162
1236
  /**
1163
1237
  * Background Origin
1164
1238
  * @see https://tailwindcss.com/docs/background-origin
@@ -1171,23 +1245,21 @@ const c = (e) => {
1171
1245
  * @see https://tailwindcss.com/docs/background-position
1172
1246
  */
1173
1247
  "bg-position": [{
1174
- bg: [...X(), Ge]
1248
+ bg: ce()
1175
1249
  }],
1176
1250
  /**
1177
1251
  * Background Repeat
1178
1252
  * @see https://tailwindcss.com/docs/background-repeat
1179
1253
  */
1180
1254
  "bg-repeat": [{
1181
- bg: ["no-repeat", {
1182
- repeat: ["", "x", "y", "round", "space"]
1183
- }]
1255
+ bg: de()
1184
1256
  }],
1185
1257
  /**
1186
1258
  * Background Size
1187
1259
  * @see https://tailwindcss.com/docs/background-size
1188
1260
  */
1189
1261
  "bg-size": [{
1190
- bg: ["auto", "cover", "contain", Me]
1262
+ bg: me()
1191
1263
  }],
1192
1264
  /**
1193
1265
  * Background Image
@@ -1195,597 +1267,863 @@ const c = (e) => {
1195
1267
  */
1196
1268
  "bg-image": [{
1197
1269
  bg: ["none", {
1198
- "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1199
- }, Pe]
1270
+ linear: [{
1271
+ to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1272
+ }, S, r, o],
1273
+ radial: ["", r, o],
1274
+ conic: [S, r, o]
1275
+ }, so, oo]
1200
1276
  }],
1201
1277
  /**
1202
1278
  * Background Color
1203
1279
  * @see https://tailwindcss.com/docs/background-color
1204
1280
  */
1205
1281
  "bg-color": [{
1206
- bg: [e]
1282
+ bg: a()
1207
1283
  }],
1208
1284
  /**
1209
1285
  * Gradient Color Stops From Position
1210
1286
  * @see https://tailwindcss.com/docs/gradient-color-stops
1211
1287
  */
1212
1288
  "gradient-from-pos": [{
1213
- from: [w]
1289
+ from: Y()
1214
1290
  }],
1215
1291
  /**
1216
1292
  * Gradient Color Stops Via Position
1217
1293
  * @see https://tailwindcss.com/docs/gradient-color-stops
1218
1294
  */
1219
1295
  "gradient-via-pos": [{
1220
- via: [w]
1296
+ via: Y()
1221
1297
  }],
1222
1298
  /**
1223
1299
  * Gradient Color Stops To Position
1224
1300
  * @see https://tailwindcss.com/docs/gradient-color-stops
1225
1301
  */
1226
1302
  "gradient-to-pos": [{
1227
- to: [w]
1303
+ to: Y()
1228
1304
  }],
1229
1305
  /**
1230
1306
  * Gradient Color Stops From
1231
1307
  * @see https://tailwindcss.com/docs/gradient-color-stops
1232
1308
  */
1233
1309
  "gradient-from": [{
1234
- from: [v]
1310
+ from: a()
1235
1311
  }],
1236
1312
  /**
1237
1313
  * Gradient Color Stops Via
1238
1314
  * @see https://tailwindcss.com/docs/gradient-color-stops
1239
1315
  */
1240
1316
  "gradient-via": [{
1241
- via: [v]
1317
+ via: a()
1242
1318
  }],
1243
1319
  /**
1244
1320
  * Gradient Color Stops To
1245
1321
  * @see https://tailwindcss.com/docs/gradient-color-stops
1246
1322
  */
1247
1323
  "gradient-to": [{
1248
- to: [v]
1324
+ to: a()
1249
1325
  }],
1250
- // Borders
1326
+ // ---------------
1327
+ // --- Borders ---
1328
+ // ---------------
1251
1329
  /**
1252
1330
  * Border Radius
1253
1331
  * @see https://tailwindcss.com/docs/border-radius
1254
1332
  */
1255
1333
  rounded: [{
1256
- rounded: [n]
1334
+ rounded: x()
1257
1335
  }],
1258
1336
  /**
1259
1337
  * Border Radius Start
1260
1338
  * @see https://tailwindcss.com/docs/border-radius
1261
1339
  */
1262
1340
  "rounded-s": [{
1263
- "rounded-s": [n]
1341
+ "rounded-s": x()
1264
1342
  }],
1265
1343
  /**
1266
1344
  * Border Radius End
1267
1345
  * @see https://tailwindcss.com/docs/border-radius
1268
1346
  */
1269
1347
  "rounded-e": [{
1270
- "rounded-e": [n]
1348
+ "rounded-e": x()
1271
1349
  }],
1272
1350
  /**
1273
1351
  * Border Radius Top
1274
1352
  * @see https://tailwindcss.com/docs/border-radius
1275
1353
  */
1276
1354
  "rounded-t": [{
1277
- "rounded-t": [n]
1355
+ "rounded-t": x()
1278
1356
  }],
1279
1357
  /**
1280
1358
  * Border Radius Right
1281
1359
  * @see https://tailwindcss.com/docs/border-radius
1282
1360
  */
1283
1361
  "rounded-r": [{
1284
- "rounded-r": [n]
1362
+ "rounded-r": x()
1285
1363
  }],
1286
1364
  /**
1287
1365
  * Border Radius Bottom
1288
1366
  * @see https://tailwindcss.com/docs/border-radius
1289
1367
  */
1290
1368
  "rounded-b": [{
1291
- "rounded-b": [n]
1369
+ "rounded-b": x()
1292
1370
  }],
1293
1371
  /**
1294
1372
  * Border Radius Left
1295
1373
  * @see https://tailwindcss.com/docs/border-radius
1296
1374
  */
1297
1375
  "rounded-l": [{
1298
- "rounded-l": [n]
1376
+ "rounded-l": x()
1299
1377
  }],
1300
1378
  /**
1301
1379
  * Border Radius Start Start
1302
1380
  * @see https://tailwindcss.com/docs/border-radius
1303
1381
  */
1304
1382
  "rounded-ss": [{
1305
- "rounded-ss": [n]
1383
+ "rounded-ss": x()
1306
1384
  }],
1307
1385
  /**
1308
1386
  * Border Radius Start End
1309
1387
  * @see https://tailwindcss.com/docs/border-radius
1310
1388
  */
1311
1389
  "rounded-se": [{
1312
- "rounded-se": [n]
1390
+ "rounded-se": x()
1313
1391
  }],
1314
1392
  /**
1315
1393
  * Border Radius End End
1316
1394
  * @see https://tailwindcss.com/docs/border-radius
1317
1395
  */
1318
1396
  "rounded-ee": [{
1319
- "rounded-ee": [n]
1397
+ "rounded-ee": x()
1320
1398
  }],
1321
1399
  /**
1322
1400
  * Border Radius End Start
1323
1401
  * @see https://tailwindcss.com/docs/border-radius
1324
1402
  */
1325
1403
  "rounded-es": [{
1326
- "rounded-es": [n]
1404
+ "rounded-es": x()
1327
1405
  }],
1328
1406
  /**
1329
1407
  * Border Radius Top Left
1330
1408
  * @see https://tailwindcss.com/docs/border-radius
1331
1409
  */
1332
1410
  "rounded-tl": [{
1333
- "rounded-tl": [n]
1411
+ "rounded-tl": x()
1334
1412
  }],
1335
1413
  /**
1336
1414
  * Border Radius Top Right
1337
1415
  * @see https://tailwindcss.com/docs/border-radius
1338
1416
  */
1339
1417
  "rounded-tr": [{
1340
- "rounded-tr": [n]
1418
+ "rounded-tr": x()
1341
1419
  }],
1342
1420
  /**
1343
1421
  * Border Radius Bottom Right
1344
1422
  * @see https://tailwindcss.com/docs/border-radius
1345
1423
  */
1346
1424
  "rounded-br": [{
1347
- "rounded-br": [n]
1425
+ "rounded-br": x()
1348
1426
  }],
1349
1427
  /**
1350
1428
  * Border Radius Bottom Left
1351
1429
  * @see https://tailwindcss.com/docs/border-radius
1352
1430
  */
1353
1431
  "rounded-bl": [{
1354
- "rounded-bl": [n]
1432
+ "rounded-bl": x()
1355
1433
  }],
1356
1434
  /**
1357
1435
  * Border Width
1358
1436
  * @see https://tailwindcss.com/docs/border-width
1359
1437
  */
1360
1438
  "border-w": [{
1361
- border: [s]
1439
+ border: w()
1362
1440
  }],
1363
1441
  /**
1364
1442
  * Border Width X
1365
1443
  * @see https://tailwindcss.com/docs/border-width
1366
1444
  */
1367
1445
  "border-w-x": [{
1368
- "border-x": [s]
1446
+ "border-x": w()
1369
1447
  }],
1370
1448
  /**
1371
1449
  * Border Width Y
1372
1450
  * @see https://tailwindcss.com/docs/border-width
1373
1451
  */
1374
1452
  "border-w-y": [{
1375
- "border-y": [s]
1453
+ "border-y": w()
1376
1454
  }],
1377
1455
  /**
1378
1456
  * Border Width Start
1379
1457
  * @see https://tailwindcss.com/docs/border-width
1380
1458
  */
1381
1459
  "border-w-s": [{
1382
- "border-s": [s]
1460
+ "border-s": w()
1383
1461
  }],
1384
1462
  /**
1385
1463
  * Border Width End
1386
1464
  * @see https://tailwindcss.com/docs/border-width
1387
1465
  */
1388
1466
  "border-w-e": [{
1389
- "border-e": [s]
1467
+ "border-e": w()
1390
1468
  }],
1391
1469
  /**
1392
1470
  * Border Width Top
1393
1471
  * @see https://tailwindcss.com/docs/border-width
1394
1472
  */
1395
1473
  "border-w-t": [{
1396
- "border-t": [s]
1474
+ "border-t": w()
1397
1475
  }],
1398
1476
  /**
1399
1477
  * Border Width Right
1400
1478
  * @see https://tailwindcss.com/docs/border-width
1401
1479
  */
1402
1480
  "border-w-r": [{
1403
- "border-r": [s]
1481
+ "border-r": w()
1404
1482
  }],
1405
1483
  /**
1406
1484
  * Border Width Bottom
1407
1485
  * @see https://tailwindcss.com/docs/border-width
1408
1486
  */
1409
1487
  "border-w-b": [{
1410
- "border-b": [s]
1488
+ "border-b": w()
1411
1489
  }],
1412
1490
  /**
1413
1491
  * Border Width Left
1414
1492
  * @see https://tailwindcss.com/docs/border-width
1415
1493
  */
1416
1494
  "border-w-l": [{
1417
- "border-l": [s]
1418
- }],
1419
- /**
1420
- * Border Opacity
1421
- * @see https://tailwindcss.com/docs/border-opacity
1422
- */
1423
- "border-opacity": [{
1424
- "border-opacity": [f]
1425
- }],
1426
- /**
1427
- * Border Style
1428
- * @see https://tailwindcss.com/docs/border-style
1429
- */
1430
- "border-style": [{
1431
- border: [...T(), "hidden"]
1495
+ "border-l": w()
1432
1496
  }],
1433
1497
  /**
1434
1498
  * Divide Width X
1435
- * @see https://tailwindcss.com/docs/divide-width
1499
+ * @see https://tailwindcss.com/docs/border-width#between-children
1436
1500
  */
1437
1501
  "divide-x": [{
1438
- "divide-x": [s]
1502
+ "divide-x": w()
1439
1503
  }],
1440
1504
  /**
1441
1505
  * Divide Width X Reverse
1442
- * @see https://tailwindcss.com/docs/divide-width
1506
+ * @see https://tailwindcss.com/docs/border-width#between-children
1443
1507
  */
1444
1508
  "divide-x-reverse": ["divide-x-reverse"],
1445
1509
  /**
1446
1510
  * Divide Width Y
1447
- * @see https://tailwindcss.com/docs/divide-width
1511
+ * @see https://tailwindcss.com/docs/border-width#between-children
1448
1512
  */
1449
1513
  "divide-y": [{
1450
- "divide-y": [s]
1514
+ "divide-y": w()
1451
1515
  }],
1452
1516
  /**
1453
1517
  * Divide Width Y Reverse
1454
- * @see https://tailwindcss.com/docs/divide-width
1518
+ * @see https://tailwindcss.com/docs/border-width#between-children
1455
1519
  */
1456
1520
  "divide-y-reverse": ["divide-y-reverse"],
1457
1521
  /**
1458
- * Divide Opacity
1459
- * @see https://tailwindcss.com/docs/divide-opacity
1522
+ * Border Style
1523
+ * @see https://tailwindcss.com/docs/border-style
1460
1524
  */
1461
- "divide-opacity": [{
1462
- "divide-opacity": [f]
1525
+ "border-style": [{
1526
+ border: [...q(), "hidden", "none"]
1463
1527
  }],
1464
1528
  /**
1465
1529
  * Divide Style
1466
- * @see https://tailwindcss.com/docs/divide-style
1530
+ * @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
1467
1531
  */
1468
1532
  "divide-style": [{
1469
- divide: T()
1533
+ divide: [...q(), "hidden", "none"]
1470
1534
  }],
1471
1535
  /**
1472
1536
  * Border Color
1473
1537
  * @see https://tailwindcss.com/docs/border-color
1474
1538
  */
1475
1539
  "border-color": [{
1476
- border: [l]
1540
+ border: a()
1477
1541
  }],
1478
1542
  /**
1479
1543
  * Border Color X
1480
1544
  * @see https://tailwindcss.com/docs/border-color
1481
1545
  */
1482
1546
  "border-color-x": [{
1483
- "border-x": [l]
1547
+ "border-x": a()
1484
1548
  }],
1485
1549
  /**
1486
1550
  * Border Color Y
1487
1551
  * @see https://tailwindcss.com/docs/border-color
1488
1552
  */
1489
1553
  "border-color-y": [{
1490
- "border-y": [l]
1554
+ "border-y": a()
1491
1555
  }],
1492
1556
  /**
1493
1557
  * Border Color S
1494
1558
  * @see https://tailwindcss.com/docs/border-color
1495
1559
  */
1496
1560
  "border-color-s": [{
1497
- "border-s": [l]
1561
+ "border-s": a()
1498
1562
  }],
1499
1563
  /**
1500
1564
  * Border Color E
1501
1565
  * @see https://tailwindcss.com/docs/border-color
1502
1566
  */
1503
1567
  "border-color-e": [{
1504
- "border-e": [l]
1568
+ "border-e": a()
1505
1569
  }],
1506
1570
  /**
1507
1571
  * Border Color Top
1508
1572
  * @see https://tailwindcss.com/docs/border-color
1509
1573
  */
1510
1574
  "border-color-t": [{
1511
- "border-t": [l]
1575
+ "border-t": a()
1512
1576
  }],
1513
1577
  /**
1514
1578
  * Border Color Right
1515
1579
  * @see https://tailwindcss.com/docs/border-color
1516
1580
  */
1517
1581
  "border-color-r": [{
1518
- "border-r": [l]
1582
+ "border-r": a()
1519
1583
  }],
1520
1584
  /**
1521
1585
  * Border Color Bottom
1522
1586
  * @see https://tailwindcss.com/docs/border-color
1523
1587
  */
1524
1588
  "border-color-b": [{
1525
- "border-b": [l]
1589
+ "border-b": a()
1526
1590
  }],
1527
1591
  /**
1528
1592
  * Border Color Left
1529
1593
  * @see https://tailwindcss.com/docs/border-color
1530
1594
  */
1531
1595
  "border-color-l": [{
1532
- "border-l": [l]
1596
+ "border-l": a()
1533
1597
  }],
1534
1598
  /**
1535
1599
  * Divide Color
1536
1600
  * @see https://tailwindcss.com/docs/divide-color
1537
1601
  */
1538
1602
  "divide-color": [{
1539
- divide: [l]
1603
+ divide: a()
1540
1604
  }],
1541
1605
  /**
1542
1606
  * Outline Style
1543
1607
  * @see https://tailwindcss.com/docs/outline-style
1544
1608
  */
1545
1609
  "outline-style": [{
1546
- outline: ["", ...T()]
1610
+ outline: [...q(), "none", "hidden"]
1547
1611
  }],
1548
1612
  /**
1549
1613
  * Outline Offset
1550
1614
  * @see https://tailwindcss.com/docs/outline-offset
1551
1615
  */
1552
1616
  "outline-offset": [{
1553
- "outline-offset": [C, i]
1617
+ "outline-offset": [d, r, o]
1554
1618
  }],
1555
1619
  /**
1556
1620
  * Outline Width
1557
1621
  * @see https://tailwindcss.com/docs/outline-width
1558
1622
  */
1559
1623
  "outline-w": [{
1560
- outline: [C, z]
1624
+ outline: ["", d, W, R]
1561
1625
  }],
1562
1626
  /**
1563
1627
  * Outline Color
1564
1628
  * @see https://tailwindcss.com/docs/outline-color
1565
1629
  */
1566
1630
  "outline-color": [{
1567
- outline: [e]
1631
+ outline: a()
1632
+ }],
1633
+ // ---------------
1634
+ // --- Effects ---
1635
+ // ---------------
1636
+ /**
1637
+ * Box Shadow
1638
+ * @see https://tailwindcss.com/docs/box-shadow
1639
+ */
1640
+ shadow: [{
1641
+ shadow: [
1642
+ // Deprecated since Tailwind CSS v4.0.0
1643
+ "",
1644
+ "none",
1645
+ h,
1646
+ K,
1647
+ D
1648
+ ]
1649
+ }],
1650
+ /**
1651
+ * Box Shadow Color
1652
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
1653
+ */
1654
+ "shadow-color": [{
1655
+ shadow: a()
1656
+ }],
1657
+ /**
1658
+ * Inset Box Shadow
1659
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
1660
+ */
1661
+ "inset-shadow": [{
1662
+ "inset-shadow": ["none", M, K, D]
1663
+ }],
1664
+ /**
1665
+ * Inset Box Shadow Color
1666
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
1667
+ */
1668
+ "inset-shadow-color": [{
1669
+ "inset-shadow": a()
1568
1670
  }],
1569
1671
  /**
1570
1672
  * Ring Width
1571
- * @see https://tailwindcss.com/docs/ring-width
1673
+ * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
1572
1674
  */
1573
1675
  "ring-w": [{
1574
- ring: J()
1676
+ ring: w()
1575
1677
  }],
1576
1678
  /**
1577
1679
  * Ring Width Inset
1578
- * @see https://tailwindcss.com/docs/ring-width
1680
+ * @see https://v3.tailwindcss.com/docs/ring-width#inset-rings
1681
+ * @deprecated since Tailwind CSS v4.0.0
1682
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1579
1683
  */
1580
1684
  "ring-w-inset": ["ring-inset"],
1581
1685
  /**
1582
1686
  * Ring Color
1583
- * @see https://tailwindcss.com/docs/ring-color
1687
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
1584
1688
  */
1585
1689
  "ring-color": [{
1586
- ring: [e]
1587
- }],
1588
- /**
1589
- * Ring Opacity
1590
- * @see https://tailwindcss.com/docs/ring-opacity
1591
- */
1592
- "ring-opacity": [{
1593
- "ring-opacity": [f]
1690
+ ring: a()
1594
1691
  }],
1595
1692
  /**
1596
1693
  * Ring Offset Width
1597
- * @see https://tailwindcss.com/docs/ring-offset-width
1694
+ * @see https://v3.tailwindcss.com/docs/ring-offset-width
1695
+ * @deprecated since Tailwind CSS v4.0.0
1696
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1598
1697
  */
1599
1698
  "ring-offset-w": [{
1600
- "ring-offset": [C, z]
1699
+ "ring-offset": [d, R]
1601
1700
  }],
1602
1701
  /**
1603
1702
  * Ring Offset Color
1604
- * @see https://tailwindcss.com/docs/ring-offset-color
1703
+ * @see https://v3.tailwindcss.com/docs/ring-offset-color
1704
+ * @deprecated since Tailwind CSS v4.0.0
1705
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1605
1706
  */
1606
1707
  "ring-offset-color": [{
1607
- "ring-offset": [e]
1708
+ "ring-offset": a()
1608
1709
  }],
1609
- // Effects
1610
1710
  /**
1611
- * Box Shadow
1612
- * @see https://tailwindcss.com/docs/box-shadow
1711
+ * Inset Ring Width
1712
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
1613
1713
  */
1614
- shadow: [{
1615
- shadow: ["", "inner", "none", A, Ie]
1714
+ "inset-ring-w": [{
1715
+ "inset-ring": w()
1616
1716
  }],
1617
1717
  /**
1618
- * Box Shadow Color
1619
- * @see https://tailwindcss.com/docs/box-shadow-color
1718
+ * Inset Ring Color
1719
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
1620
1720
  */
1621
- "shadow-color": [{
1622
- shadow: [j]
1721
+ "inset-ring-color": [{
1722
+ "inset-ring": a()
1723
+ }],
1724
+ /**
1725
+ * Text Shadow
1726
+ * @see https://tailwindcss.com/docs/text-shadow
1727
+ */
1728
+ "text-shadow": [{
1729
+ "text-shadow": ["none", O, K, D]
1730
+ }],
1731
+ /**
1732
+ * Text Shadow Color
1733
+ * @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
1734
+ */
1735
+ "text-shadow-color": [{
1736
+ "text-shadow": a()
1623
1737
  }],
1624
1738
  /**
1625
1739
  * Opacity
1626
1740
  * @see https://tailwindcss.com/docs/opacity
1627
1741
  */
1628
1742
  opacity: [{
1629
- opacity: [f]
1743
+ opacity: [d, r, o]
1630
1744
  }],
1631
1745
  /**
1632
1746
  * Mix Blend Mode
1633
1747
  * @see https://tailwindcss.com/docs/mix-blend-mode
1634
1748
  */
1635
1749
  "mix-blend": [{
1636
- "mix-blend": [...Z(), "plus-lighter", "plus-darker"]
1750
+ "mix-blend": [...pe(), "plus-darker", "plus-lighter"]
1637
1751
  }],
1638
1752
  /**
1639
1753
  * Background Blend Mode
1640
1754
  * @see https://tailwindcss.com/docs/background-blend-mode
1641
1755
  */
1642
1756
  "bg-blend": [{
1643
- "bg-blend": Z()
1757
+ "bg-blend": pe()
1758
+ }],
1759
+ /**
1760
+ * Mask Clip
1761
+ * @see https://tailwindcss.com/docs/mask-clip
1762
+ */
1763
+ "mask-clip": [{
1764
+ "mask-clip": ["border", "padding", "content", "fill", "stroke", "view"]
1765
+ }, "mask-no-clip"],
1766
+ /**
1767
+ * Mask Composite
1768
+ * @see https://tailwindcss.com/docs/mask-composite
1769
+ */
1770
+ "mask-composite": [{
1771
+ mask: ["add", "subtract", "intersect", "exclude"]
1772
+ }],
1773
+ /**
1774
+ * Mask Image
1775
+ * @see https://tailwindcss.com/docs/mask-image
1776
+ */
1777
+ "mask-image-linear-pos": [{
1778
+ "mask-linear": [d]
1779
+ }],
1780
+ "mask-image-linear-from-pos": [{
1781
+ "mask-linear-from": b()
1782
+ }],
1783
+ "mask-image-linear-to-pos": [{
1784
+ "mask-linear-to": b()
1785
+ }],
1786
+ "mask-image-linear-from-color": [{
1787
+ "mask-linear-from": a()
1788
+ }],
1789
+ "mask-image-linear-to-color": [{
1790
+ "mask-linear-to": a()
1791
+ }],
1792
+ "mask-image-t-from-pos": [{
1793
+ "mask-t-from": b()
1794
+ }],
1795
+ "mask-image-t-to-pos": [{
1796
+ "mask-t-to": b()
1797
+ }],
1798
+ "mask-image-t-from-color": [{
1799
+ "mask-t-from": a()
1800
+ }],
1801
+ "mask-image-t-to-color": [{
1802
+ "mask-t-to": a()
1803
+ }],
1804
+ "mask-image-r-from-pos": [{
1805
+ "mask-r-from": b()
1806
+ }],
1807
+ "mask-image-r-to-pos": [{
1808
+ "mask-r-to": b()
1809
+ }],
1810
+ "mask-image-r-from-color": [{
1811
+ "mask-r-from": a()
1812
+ }],
1813
+ "mask-image-r-to-color": [{
1814
+ "mask-r-to": a()
1815
+ }],
1816
+ "mask-image-b-from-pos": [{
1817
+ "mask-b-from": b()
1818
+ }],
1819
+ "mask-image-b-to-pos": [{
1820
+ "mask-b-to": b()
1821
+ }],
1822
+ "mask-image-b-from-color": [{
1823
+ "mask-b-from": a()
1824
+ }],
1825
+ "mask-image-b-to-color": [{
1826
+ "mask-b-to": a()
1827
+ }],
1828
+ "mask-image-l-from-pos": [{
1829
+ "mask-l-from": b()
1830
+ }],
1831
+ "mask-image-l-to-pos": [{
1832
+ "mask-l-to": b()
1833
+ }],
1834
+ "mask-image-l-from-color": [{
1835
+ "mask-l-from": a()
1836
+ }],
1837
+ "mask-image-l-to-color": [{
1838
+ "mask-l-to": a()
1839
+ }],
1840
+ "mask-image-x-from-pos": [{
1841
+ "mask-x-from": b()
1842
+ }],
1843
+ "mask-image-x-to-pos": [{
1844
+ "mask-x-to": b()
1845
+ }],
1846
+ "mask-image-x-from-color": [{
1847
+ "mask-x-from": a()
1848
+ }],
1849
+ "mask-image-x-to-color": [{
1850
+ "mask-x-to": a()
1851
+ }],
1852
+ "mask-image-y-from-pos": [{
1853
+ "mask-y-from": b()
1854
+ }],
1855
+ "mask-image-y-to-pos": [{
1856
+ "mask-y-to": b()
1857
+ }],
1858
+ "mask-image-y-from-color": [{
1859
+ "mask-y-from": a()
1860
+ }],
1861
+ "mask-image-y-to-color": [{
1862
+ "mask-y-to": a()
1863
+ }],
1864
+ "mask-image-radial": [{
1865
+ "mask-radial": [r, o]
1866
+ }],
1867
+ "mask-image-radial-from-pos": [{
1868
+ "mask-radial-from": b()
1869
+ }],
1870
+ "mask-image-radial-to-pos": [{
1871
+ "mask-radial-to": b()
1872
+ }],
1873
+ "mask-image-radial-from-color": [{
1874
+ "mask-radial-from": a()
1875
+ }],
1876
+ "mask-image-radial-to-color": [{
1877
+ "mask-radial-to": a()
1878
+ }],
1879
+ "mask-image-radial-shape": [{
1880
+ "mask-radial": ["circle", "ellipse"]
1881
+ }],
1882
+ "mask-image-radial-size": [{
1883
+ "mask-radial": [{
1884
+ closest: ["side", "corner"],
1885
+ farthest: ["side", "corner"]
1886
+ }]
1887
+ }],
1888
+ "mask-image-radial-pos": [{
1889
+ "mask-radial-at": T()
1890
+ }],
1891
+ "mask-image-conic-pos": [{
1892
+ "mask-conic": [d]
1893
+ }],
1894
+ "mask-image-conic-from-pos": [{
1895
+ "mask-conic-from": b()
1896
+ }],
1897
+ "mask-image-conic-to-pos": [{
1898
+ "mask-conic-to": b()
1899
+ }],
1900
+ "mask-image-conic-from-color": [{
1901
+ "mask-conic-from": a()
1902
+ }],
1903
+ "mask-image-conic-to-color": [{
1904
+ "mask-conic-to": a()
1905
+ }],
1906
+ /**
1907
+ * Mask Mode
1908
+ * @see https://tailwindcss.com/docs/mask-mode
1909
+ */
1910
+ "mask-mode": [{
1911
+ mask: ["alpha", "luminance", "match"]
1912
+ }],
1913
+ /**
1914
+ * Mask Origin
1915
+ * @see https://tailwindcss.com/docs/mask-origin
1916
+ */
1917
+ "mask-origin": [{
1918
+ "mask-origin": ["border", "padding", "content", "fill", "stroke", "view"]
1919
+ }],
1920
+ /**
1921
+ * Mask Position
1922
+ * @see https://tailwindcss.com/docs/mask-position
1923
+ */
1924
+ "mask-position": [{
1925
+ mask: ce()
1644
1926
  }],
1645
- // Filters
1927
+ /**
1928
+ * Mask Repeat
1929
+ * @see https://tailwindcss.com/docs/mask-repeat
1930
+ */
1931
+ "mask-repeat": [{
1932
+ mask: de()
1933
+ }],
1934
+ /**
1935
+ * Mask Size
1936
+ * @see https://tailwindcss.com/docs/mask-size
1937
+ */
1938
+ "mask-size": [{
1939
+ mask: me()
1940
+ }],
1941
+ /**
1942
+ * Mask Type
1943
+ * @see https://tailwindcss.com/docs/mask-type
1944
+ */
1945
+ "mask-type": [{
1946
+ "mask-type": ["alpha", "luminance"]
1947
+ }],
1948
+ /**
1949
+ * Mask Image
1950
+ * @see https://tailwindcss.com/docs/mask-image
1951
+ */
1952
+ "mask-image": [{
1953
+ mask: ["none", r, o]
1954
+ }],
1955
+ // ---------------
1956
+ // --- Filters ---
1957
+ // ---------------
1646
1958
  /**
1647
1959
  * Filter
1648
- * @deprecated since Tailwind CSS v3.0.0
1649
1960
  * @see https://tailwindcss.com/docs/filter
1650
1961
  */
1651
1962
  filter: [{
1652
- filter: ["", "none"]
1963
+ filter: [
1964
+ // Deprecated since Tailwind CSS v3.0.0
1965
+ "",
1966
+ "none",
1967
+ r,
1968
+ o
1969
+ ]
1653
1970
  }],
1654
1971
  /**
1655
1972
  * Blur
1656
1973
  * @see https://tailwindcss.com/docs/blur
1657
1974
  */
1658
1975
  blur: [{
1659
- blur: [t]
1976
+ blur: ue()
1660
1977
  }],
1661
1978
  /**
1662
1979
  * Brightness
1663
1980
  * @see https://tailwindcss.com/docs/brightness
1664
1981
  */
1665
1982
  brightness: [{
1666
- brightness: [o]
1983
+ brightness: [d, r, o]
1667
1984
  }],
1668
1985
  /**
1669
1986
  * Contrast
1670
1987
  * @see https://tailwindcss.com/docs/contrast
1671
1988
  */
1672
1989
  contrast: [{
1673
- contrast: [u]
1990
+ contrast: [d, r, o]
1674
1991
  }],
1675
1992
  /**
1676
1993
  * Drop Shadow
1677
1994
  * @see https://tailwindcss.com/docs/drop-shadow
1678
1995
  */
1679
1996
  "drop-shadow": [{
1680
- "drop-shadow": ["", "none", A, i]
1997
+ "drop-shadow": [
1998
+ // Deprecated since Tailwind CSS v4.0.0
1999
+ "",
2000
+ "none",
2001
+ F,
2002
+ K,
2003
+ D
2004
+ ]
2005
+ }],
2006
+ /**
2007
+ * Drop Shadow Color
2008
+ * @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
2009
+ */
2010
+ "drop-shadow-color": [{
2011
+ "drop-shadow": a()
1681
2012
  }],
1682
2013
  /**
1683
2014
  * Grayscale
1684
2015
  * @see https://tailwindcss.com/docs/grayscale
1685
2016
  */
1686
2017
  grayscale: [{
1687
- grayscale: [g]
2018
+ grayscale: ["", d, r, o]
1688
2019
  }],
1689
2020
  /**
1690
2021
  * Hue Rotate
1691
2022
  * @see https://tailwindcss.com/docs/hue-rotate
1692
2023
  */
1693
2024
  "hue-rotate": [{
1694
- "hue-rotate": [m]
2025
+ "hue-rotate": [d, r, o]
1695
2026
  }],
1696
2027
  /**
1697
2028
  * Invert
1698
2029
  * @see https://tailwindcss.com/docs/invert
1699
2030
  */
1700
2031
  invert: [{
1701
- invert: [y]
2032
+ invert: ["", d, r, o]
1702
2033
  }],
1703
2034
  /**
1704
2035
  * Saturate
1705
2036
  * @see https://tailwindcss.com/docs/saturate
1706
2037
  */
1707
2038
  saturate: [{
1708
- saturate: [R]
2039
+ saturate: [d, r, o]
1709
2040
  }],
1710
2041
  /**
1711
2042
  * Sepia
1712
2043
  * @see https://tailwindcss.com/docs/sepia
1713
2044
  */
1714
2045
  sepia: [{
1715
- sepia: [N]
2046
+ sepia: ["", d, r, o]
1716
2047
  }],
1717
2048
  /**
1718
2049
  * Backdrop Filter
1719
- * @deprecated since Tailwind CSS v3.0.0
1720
2050
  * @see https://tailwindcss.com/docs/backdrop-filter
1721
2051
  */
1722
2052
  "backdrop-filter": [{
1723
- "backdrop-filter": ["", "none"]
2053
+ "backdrop-filter": [
2054
+ // Deprecated since Tailwind CSS v3.0.0
2055
+ "",
2056
+ "none",
2057
+ r,
2058
+ o
2059
+ ]
1724
2060
  }],
1725
2061
  /**
1726
2062
  * Backdrop Blur
1727
2063
  * @see https://tailwindcss.com/docs/backdrop-blur
1728
2064
  */
1729
2065
  "backdrop-blur": [{
1730
- "backdrop-blur": [t]
2066
+ "backdrop-blur": ue()
1731
2067
  }],
1732
2068
  /**
1733
2069
  * Backdrop Brightness
1734
2070
  * @see https://tailwindcss.com/docs/backdrop-brightness
1735
2071
  */
1736
2072
  "backdrop-brightness": [{
1737
- "backdrop-brightness": [o]
2073
+ "backdrop-brightness": [d, r, o]
1738
2074
  }],
1739
2075
  /**
1740
2076
  * Backdrop Contrast
1741
2077
  * @see https://tailwindcss.com/docs/backdrop-contrast
1742
2078
  */
1743
2079
  "backdrop-contrast": [{
1744
- "backdrop-contrast": [u]
2080
+ "backdrop-contrast": [d, r, o]
1745
2081
  }],
1746
2082
  /**
1747
2083
  * Backdrop Grayscale
1748
2084
  * @see https://tailwindcss.com/docs/backdrop-grayscale
1749
2085
  */
1750
2086
  "backdrop-grayscale": [{
1751
- "backdrop-grayscale": [g]
2087
+ "backdrop-grayscale": ["", d, r, o]
1752
2088
  }],
1753
2089
  /**
1754
2090
  * Backdrop Hue Rotate
1755
2091
  * @see https://tailwindcss.com/docs/backdrop-hue-rotate
1756
2092
  */
1757
2093
  "backdrop-hue-rotate": [{
1758
- "backdrop-hue-rotate": [m]
2094
+ "backdrop-hue-rotate": [d, r, o]
1759
2095
  }],
1760
2096
  /**
1761
2097
  * Backdrop Invert
1762
2098
  * @see https://tailwindcss.com/docs/backdrop-invert
1763
2099
  */
1764
2100
  "backdrop-invert": [{
1765
- "backdrop-invert": [y]
2101
+ "backdrop-invert": ["", d, r, o]
1766
2102
  }],
1767
2103
  /**
1768
2104
  * Backdrop Opacity
1769
2105
  * @see https://tailwindcss.com/docs/backdrop-opacity
1770
2106
  */
1771
2107
  "backdrop-opacity": [{
1772
- "backdrop-opacity": [f]
2108
+ "backdrop-opacity": [d, r, o]
1773
2109
  }],
1774
2110
  /**
1775
2111
  * Backdrop Saturate
1776
2112
  * @see https://tailwindcss.com/docs/backdrop-saturate
1777
2113
  */
1778
2114
  "backdrop-saturate": [{
1779
- "backdrop-saturate": [R]
2115
+ "backdrop-saturate": [d, r, o]
1780
2116
  }],
1781
2117
  /**
1782
2118
  * Backdrop Sepia
1783
2119
  * @see https://tailwindcss.com/docs/backdrop-sepia
1784
2120
  */
1785
2121
  "backdrop-sepia": [{
1786
- "backdrop-sepia": [N]
2122
+ "backdrop-sepia": ["", d, r, o]
1787
2123
  }],
1788
- // Tables
2124
+ // --------------
2125
+ // --- Tables ---
2126
+ // --------------
1789
2127
  /**
1790
2128
  * Border Collapse
1791
2129
  * @see https://tailwindcss.com/docs/border-collapse
@@ -1798,21 +2136,21 @@ const c = (e) => {
1798
2136
  * @see https://tailwindcss.com/docs/border-spacing
1799
2137
  */
1800
2138
  "border-spacing": [{
1801
- "border-spacing": [a]
2139
+ "border-spacing": l()
1802
2140
  }],
1803
2141
  /**
1804
2142
  * Border Spacing X
1805
2143
  * @see https://tailwindcss.com/docs/border-spacing
1806
2144
  */
1807
2145
  "border-spacing-x": [{
1808
- "border-spacing-x": [a]
2146
+ "border-spacing-x": l()
1809
2147
  }],
1810
2148
  /**
1811
2149
  * Border Spacing Y
1812
2150
  * @see https://tailwindcss.com/docs/border-spacing
1813
2151
  */
1814
2152
  "border-spacing-y": [{
1815
- "border-spacing-y": [a]
2153
+ "border-spacing-y": l()
1816
2154
  }],
1817
2155
  /**
1818
2156
  * Table Layout
@@ -1828,120 +2166,220 @@ const c = (e) => {
1828
2166
  caption: [{
1829
2167
  caption: ["top", "bottom"]
1830
2168
  }],
1831
- // Transitions and Animation
2169
+ // ---------------------------------
2170
+ // --- Transitions and Animation ---
2171
+ // ---------------------------------
1832
2172
  /**
1833
- * Tranisition Property
2173
+ * Transition Property
1834
2174
  * @see https://tailwindcss.com/docs/transition-property
1835
2175
  */
1836
2176
  transition: [{
1837
- transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", i]
2177
+ transition: ["", "all", "colors", "opacity", "shadow", "transform", "none", r, o]
2178
+ }],
2179
+ /**
2180
+ * Transition Behavior
2181
+ * @see https://tailwindcss.com/docs/transition-behavior
2182
+ */
2183
+ "transition-behavior": [{
2184
+ transition: ["normal", "discrete"]
1838
2185
  }],
1839
2186
  /**
1840
2187
  * Transition Duration
1841
2188
  * @see https://tailwindcss.com/docs/transition-duration
1842
2189
  */
1843
2190
  duration: [{
1844
- duration: k()
2191
+ duration: [d, "initial", r, o]
1845
2192
  }],
1846
2193
  /**
1847
2194
  * Transition Timing Function
1848
2195
  * @see https://tailwindcss.com/docs/transition-timing-function
1849
2196
  */
1850
2197
  ease: [{
1851
- ease: ["linear", "in", "out", "in-out", i]
2198
+ ease: ["linear", "initial", A, r, o]
1852
2199
  }],
1853
2200
  /**
1854
2201
  * Transition Delay
1855
2202
  * @see https://tailwindcss.com/docs/transition-delay
1856
2203
  */
1857
2204
  delay: [{
1858
- delay: k()
2205
+ delay: [d, r, o]
1859
2206
  }],
1860
2207
  /**
1861
2208
  * Animation
1862
2209
  * @see https://tailwindcss.com/docs/animation
1863
2210
  */
1864
2211
  animate: [{
1865
- animate: ["none", "spin", "ping", "pulse", "bounce", i]
2212
+ animate: ["none", $, r, o]
1866
2213
  }],
1867
- // Transforms
2214
+ // ------------------
2215
+ // --- Transforms ---
2216
+ // ------------------
1868
2217
  /**
1869
- * Transform
1870
- * @see https://tailwindcss.com/docs/transform
2218
+ * Backface Visibility
2219
+ * @see https://tailwindcss.com/docs/backface-visibility
1871
2220
  */
1872
- transform: [{
1873
- transform: ["", "gpu", "none"]
2221
+ backface: [{
2222
+ backface: ["hidden", "visible"]
2223
+ }],
2224
+ /**
2225
+ * Perspective
2226
+ * @see https://tailwindcss.com/docs/perspective
2227
+ */
2228
+ perspective: [{
2229
+ perspective: [y, r, o]
2230
+ }],
2231
+ /**
2232
+ * Perspective Origin
2233
+ * @see https://tailwindcss.com/docs/perspective-origin
2234
+ */
2235
+ "perspective-origin": [{
2236
+ "perspective-origin": E()
2237
+ }],
2238
+ /**
2239
+ * Rotate
2240
+ * @see https://tailwindcss.com/docs/rotate
2241
+ */
2242
+ rotate: [{
2243
+ rotate: H()
2244
+ }],
2245
+ /**
2246
+ * Rotate X
2247
+ * @see https://tailwindcss.com/docs/rotate
2248
+ */
2249
+ "rotate-x": [{
2250
+ "rotate-x": H()
2251
+ }],
2252
+ /**
2253
+ * Rotate Y
2254
+ * @see https://tailwindcss.com/docs/rotate
2255
+ */
2256
+ "rotate-y": [{
2257
+ "rotate-y": H()
2258
+ }],
2259
+ /**
2260
+ * Rotate Z
2261
+ * @see https://tailwindcss.com/docs/rotate
2262
+ */
2263
+ "rotate-z": [{
2264
+ "rotate-z": H()
1874
2265
  }],
1875
2266
  /**
1876
2267
  * Scale
1877
2268
  * @see https://tailwindcss.com/docs/scale
1878
2269
  */
1879
2270
  scale: [{
1880
- scale: [S]
2271
+ scale: J()
1881
2272
  }],
1882
2273
  /**
1883
2274
  * Scale X
1884
2275
  * @see https://tailwindcss.com/docs/scale
1885
2276
  */
1886
2277
  "scale-x": [{
1887
- "scale-x": [S]
2278
+ "scale-x": J()
1888
2279
  }],
1889
2280
  /**
1890
2281
  * Scale Y
1891
2282
  * @see https://tailwindcss.com/docs/scale
1892
2283
  */
1893
2284
  "scale-y": [{
1894
- "scale-y": [S]
2285
+ "scale-y": J()
1895
2286
  }],
1896
2287
  /**
1897
- * Rotate
1898
- * @see https://tailwindcss.com/docs/rotate
2288
+ * Scale Z
2289
+ * @see https://tailwindcss.com/docs/scale
1899
2290
  */
1900
- rotate: [{
1901
- rotate: [I, i]
2291
+ "scale-z": [{
2292
+ "scale-z": J()
1902
2293
  }],
1903
2294
  /**
1904
- * Translate X
1905
- * @see https://tailwindcss.com/docs/translate
2295
+ * Scale 3D
2296
+ * @see https://tailwindcss.com/docs/scale
1906
2297
  */
1907
- "translate-x": [{
1908
- "translate-x": [q]
1909
- }],
2298
+ "scale-3d": ["scale-3d"],
1910
2299
  /**
1911
- * Translate Y
1912
- * @see https://tailwindcss.com/docs/translate
2300
+ * Skew
2301
+ * @see https://tailwindcss.com/docs/skew
1913
2302
  */
1914
- "translate-y": [{
1915
- "translate-y": [q]
2303
+ skew: [{
2304
+ skew: Z()
1916
2305
  }],
1917
2306
  /**
1918
2307
  * Skew X
1919
2308
  * @see https://tailwindcss.com/docs/skew
1920
2309
  */
1921
2310
  "skew-x": [{
1922
- "skew-x": [U]
2311
+ "skew-x": Z()
1923
2312
  }],
1924
2313
  /**
1925
2314
  * Skew Y
1926
2315
  * @see https://tailwindcss.com/docs/skew
1927
2316
  */
1928
2317
  "skew-y": [{
1929
- "skew-y": [U]
2318
+ "skew-y": Z()
2319
+ }],
2320
+ /**
2321
+ * Transform
2322
+ * @see https://tailwindcss.com/docs/transform
2323
+ */
2324
+ transform: [{
2325
+ transform: [r, o, "", "none", "gpu", "cpu"]
1930
2326
  }],
1931
2327
  /**
1932
2328
  * Transform Origin
1933
2329
  * @see https://tailwindcss.com/docs/transform-origin
1934
2330
  */
1935
2331
  "transform-origin": [{
1936
- origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", i]
2332
+ origin: E()
2333
+ }],
2334
+ /**
2335
+ * Transform Style
2336
+ * @see https://tailwindcss.com/docs/transform-style
2337
+ */
2338
+ "transform-style": [{
2339
+ transform: ["3d", "flat"]
2340
+ }],
2341
+ /**
2342
+ * Translate
2343
+ * @see https://tailwindcss.com/docs/translate
2344
+ */
2345
+ translate: [{
2346
+ translate: X()
1937
2347
  }],
1938
- // Interactivity
2348
+ /**
2349
+ * Translate X
2350
+ * @see https://tailwindcss.com/docs/translate
2351
+ */
2352
+ "translate-x": [{
2353
+ "translate-x": X()
2354
+ }],
2355
+ /**
2356
+ * Translate Y
2357
+ * @see https://tailwindcss.com/docs/translate
2358
+ */
2359
+ "translate-y": [{
2360
+ "translate-y": X()
2361
+ }],
2362
+ /**
2363
+ * Translate Z
2364
+ * @see https://tailwindcss.com/docs/translate
2365
+ */
2366
+ "translate-z": [{
2367
+ "translate-z": X()
2368
+ }],
2369
+ /**
2370
+ * Translate None
2371
+ * @see https://tailwindcss.com/docs/translate
2372
+ */
2373
+ "translate-none": ["translate-none"],
2374
+ // ---------------------
2375
+ // --- Interactivity ---
2376
+ // ---------------------
1939
2377
  /**
1940
2378
  * Accent Color
1941
2379
  * @see https://tailwindcss.com/docs/accent-color
1942
2380
  */
1943
2381
  accent: [{
1944
- accent: ["auto", e]
2382
+ accent: a()
1945
2383
  }],
1946
2384
  /**
1947
2385
  * Appearance
@@ -1950,33 +2388,47 @@ const c = (e) => {
1950
2388
  appearance: [{
1951
2389
  appearance: ["none", "auto"]
1952
2390
  }],
2391
+ /**
2392
+ * Caret Color
2393
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2394
+ */
2395
+ "caret-color": [{
2396
+ caret: a()
2397
+ }],
2398
+ /**
2399
+ * Color Scheme
2400
+ * @see https://tailwindcss.com/docs/color-scheme
2401
+ */
2402
+ "color-scheme": [{
2403
+ scheme: ["normal", "dark", "light", "light-dark", "only-dark", "only-light"]
2404
+ }],
1953
2405
  /**
1954
2406
  * Cursor
1955
2407
  * @see https://tailwindcss.com/docs/cursor
1956
2408
  */
1957
2409
  cursor: [{
1958
- 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", i]
2410
+ 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", r, o]
1959
2411
  }],
1960
2412
  /**
1961
- * Caret Color
1962
- * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2413
+ * Field Sizing
2414
+ * @see https://tailwindcss.com/docs/field-sizing
1963
2415
  */
1964
- "caret-color": [{
1965
- caret: [e]
2416
+ "field-sizing": [{
2417
+ "field-sizing": ["fixed", "content"]
1966
2418
  }],
1967
2419
  /**
1968
2420
  * Pointer Events
1969
2421
  * @see https://tailwindcss.com/docs/pointer-events
1970
2422
  */
1971
2423
  "pointer-events": [{
1972
- "pointer-events": ["none", "auto"]
2424
+ "pointer-events": ["auto", "none"]
1973
2425
  }],
1974
2426
  /**
1975
2427
  * Resize
1976
2428
  * @see https://tailwindcss.com/docs/resize
1977
2429
  */
1978
2430
  resize: [{
1979
- resize: ["none", "y", "x", ""]
2431
+ resize: ["none", "", "y", "x"]
1980
2432
  }],
1981
2433
  /**
1982
2434
  * Scroll Behavior
@@ -1990,126 +2442,126 @@ const c = (e) => {
1990
2442
  * @see https://tailwindcss.com/docs/scroll-margin
1991
2443
  */
1992
2444
  "scroll-m": [{
1993
- "scroll-m": d()
2445
+ "scroll-m": l()
1994
2446
  }],
1995
2447
  /**
1996
2448
  * Scroll Margin X
1997
2449
  * @see https://tailwindcss.com/docs/scroll-margin
1998
2450
  */
1999
2451
  "scroll-mx": [{
2000
- "scroll-mx": d()
2452
+ "scroll-mx": l()
2001
2453
  }],
2002
2454
  /**
2003
2455
  * Scroll Margin Y
2004
2456
  * @see https://tailwindcss.com/docs/scroll-margin
2005
2457
  */
2006
2458
  "scroll-my": [{
2007
- "scroll-my": d()
2459
+ "scroll-my": l()
2008
2460
  }],
2009
2461
  /**
2010
2462
  * Scroll Margin Start
2011
2463
  * @see https://tailwindcss.com/docs/scroll-margin
2012
2464
  */
2013
2465
  "scroll-ms": [{
2014
- "scroll-ms": d()
2466
+ "scroll-ms": l()
2015
2467
  }],
2016
2468
  /**
2017
2469
  * Scroll Margin End
2018
2470
  * @see https://tailwindcss.com/docs/scroll-margin
2019
2471
  */
2020
2472
  "scroll-me": [{
2021
- "scroll-me": d()
2473
+ "scroll-me": l()
2022
2474
  }],
2023
2475
  /**
2024
2476
  * Scroll Margin Top
2025
2477
  * @see https://tailwindcss.com/docs/scroll-margin
2026
2478
  */
2027
2479
  "scroll-mt": [{
2028
- "scroll-mt": d()
2480
+ "scroll-mt": l()
2029
2481
  }],
2030
2482
  /**
2031
2483
  * Scroll Margin Right
2032
2484
  * @see https://tailwindcss.com/docs/scroll-margin
2033
2485
  */
2034
2486
  "scroll-mr": [{
2035
- "scroll-mr": d()
2487
+ "scroll-mr": l()
2036
2488
  }],
2037
2489
  /**
2038
2490
  * Scroll Margin Bottom
2039
2491
  * @see https://tailwindcss.com/docs/scroll-margin
2040
2492
  */
2041
2493
  "scroll-mb": [{
2042
- "scroll-mb": d()
2494
+ "scroll-mb": l()
2043
2495
  }],
2044
2496
  /**
2045
2497
  * Scroll Margin Left
2046
2498
  * @see https://tailwindcss.com/docs/scroll-margin
2047
2499
  */
2048
2500
  "scroll-ml": [{
2049
- "scroll-ml": d()
2501
+ "scroll-ml": l()
2050
2502
  }],
2051
2503
  /**
2052
2504
  * Scroll Padding
2053
2505
  * @see https://tailwindcss.com/docs/scroll-padding
2054
2506
  */
2055
2507
  "scroll-p": [{
2056
- "scroll-p": d()
2508
+ "scroll-p": l()
2057
2509
  }],
2058
2510
  /**
2059
2511
  * Scroll Padding X
2060
2512
  * @see https://tailwindcss.com/docs/scroll-padding
2061
2513
  */
2062
2514
  "scroll-px": [{
2063
- "scroll-px": d()
2515
+ "scroll-px": l()
2064
2516
  }],
2065
2517
  /**
2066
2518
  * Scroll Padding Y
2067
2519
  * @see https://tailwindcss.com/docs/scroll-padding
2068
2520
  */
2069
2521
  "scroll-py": [{
2070
- "scroll-py": d()
2522
+ "scroll-py": l()
2071
2523
  }],
2072
2524
  /**
2073
2525
  * Scroll Padding Start
2074
2526
  * @see https://tailwindcss.com/docs/scroll-padding
2075
2527
  */
2076
2528
  "scroll-ps": [{
2077
- "scroll-ps": d()
2529
+ "scroll-ps": l()
2078
2530
  }],
2079
2531
  /**
2080
2532
  * Scroll Padding End
2081
2533
  * @see https://tailwindcss.com/docs/scroll-padding
2082
2534
  */
2083
2535
  "scroll-pe": [{
2084
- "scroll-pe": d()
2536
+ "scroll-pe": l()
2085
2537
  }],
2086
2538
  /**
2087
2539
  * Scroll Padding Top
2088
2540
  * @see https://tailwindcss.com/docs/scroll-padding
2089
2541
  */
2090
2542
  "scroll-pt": [{
2091
- "scroll-pt": d()
2543
+ "scroll-pt": l()
2092
2544
  }],
2093
2545
  /**
2094
2546
  * Scroll Padding Right
2095
2547
  * @see https://tailwindcss.com/docs/scroll-padding
2096
2548
  */
2097
2549
  "scroll-pr": [{
2098
- "scroll-pr": d()
2550
+ "scroll-pr": l()
2099
2551
  }],
2100
2552
  /**
2101
2553
  * Scroll Padding Bottom
2102
2554
  * @see https://tailwindcss.com/docs/scroll-padding
2103
2555
  */
2104
2556
  "scroll-pb": [{
2105
- "scroll-pb": d()
2557
+ "scroll-pb": l()
2106
2558
  }],
2107
2559
  /**
2108
2560
  * Scroll Padding Left
2109
2561
  * @see https://tailwindcss.com/docs/scroll-padding
2110
2562
  */
2111
2563
  "scroll-pl": [{
2112
- "scroll-pl": d()
2564
+ "scroll-pl": l()
2113
2565
  }],
2114
2566
  /**
2115
2567
  * Scroll Snap Align
@@ -2177,36 +2629,35 @@ const c = (e) => {
2177
2629
  * @see https://tailwindcss.com/docs/will-change
2178
2630
  */
2179
2631
  "will-change": [{
2180
- "will-change": ["auto", "scroll", "contents", "transform", i]
2632
+ "will-change": ["auto", "scroll", "contents", "transform", r, o]
2181
2633
  }],
2182
- // SVG
2634
+ // -----------
2635
+ // --- SVG ---
2636
+ // -----------
2183
2637
  /**
2184
2638
  * Fill
2185
2639
  * @see https://tailwindcss.com/docs/fill
2186
2640
  */
2187
2641
  fill: [{
2188
- fill: [e, "none"]
2642
+ fill: ["none", ...a()]
2189
2643
  }],
2190
2644
  /**
2191
2645
  * Stroke Width
2192
2646
  * @see https://tailwindcss.com/docs/stroke-width
2193
2647
  */
2194
2648
  "stroke-w": [{
2195
- stroke: [C, z, _]
2649
+ stroke: [d, W, R, oe]
2196
2650
  }],
2197
2651
  /**
2198
2652
  * Stroke
2199
2653
  * @see https://tailwindcss.com/docs/stroke
2200
2654
  */
2201
2655
  stroke: [{
2202
- stroke: [e, "none"]
2656
+ stroke: ["none", ...a()]
2203
2657
  }],
2204
- // Accessibility
2205
- /**
2206
- * Screen Readers
2207
- * @see https://tailwindcss.com/docs/screen-readers
2208
- */
2209
- sr: ["sr-only", "not-sr-only"],
2658
+ // ---------------------
2659
+ // --- Accessibility ---
2660
+ // ---------------------
2210
2661
  /**
2211
2662
  * Forced Color Adjust
2212
2663
  * @see https://tailwindcss.com/docs/forced-color-adjust
@@ -2246,12 +2697,14 @@ const c = (e) => {
2246
2697
  "rounded-b": ["rounded-br", "rounded-bl"],
2247
2698
  "rounded-l": ["rounded-tl", "rounded-bl"],
2248
2699
  "border-spacing": ["border-spacing-x", "border-spacing-y"],
2249
- "border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
2700
+ "border-w": ["border-w-x", "border-w-y", "border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
2250
2701
  "border-w-x": ["border-w-r", "border-w-l"],
2251
2702
  "border-w-y": ["border-w-t", "border-w-b"],
2252
- "border-color": ["border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
2703
+ "border-color": ["border-color-x", "border-color-y", "border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
2253
2704
  "border-color-x": ["border-color-r", "border-color-l"],
2254
2705
  "border-color-y": ["border-color-t", "border-color-b"],
2706
+ translate: ["translate-x", "translate-y", "translate-none"],
2707
+ "translate-none": ["translate", "translate-x", "translate-y", "translate-z"],
2255
2708
  "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2256
2709
  "scroll-mx": ["scroll-mr", "scroll-ml"],
2257
2710
  "scroll-my": ["scroll-mt", "scroll-mb"],
@@ -2265,14 +2718,14 @@ const c = (e) => {
2265
2718
  },
2266
2719
  conflictingClassGroupModifiers: {
2267
2720
  "font-size": ["leading"]
2268
- }
2721
+ },
2722
+ orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
2269
2723
  };
2270
- }, Le = /* @__PURE__ */ he(Te);
2271
- function We(...e) {
2272
- return Le(ne(e));
2724
+ }, lo = /* @__PURE__ */ We(io);
2725
+ function mo(...e) {
2726
+ return lo(Ie(e));
2273
2727
  }
2274
2728
  export {
2275
- ne as a,
2276
- We as c
2729
+ mo as c
2277
2730
  };
2278
- //# sourceMappingURL=cn-CwJPJKOE.js.map
2731
+ //# sourceMappingURL=cn-wvCW-ho6.js.map