zudoku 0.0.0-fd8f8ad → 0.0.0-feat-bundled-types.1c7f1db

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 (1609) hide show
  1. package/README.md +1 -1
  2. package/cli.js +9 -0
  3. package/dist/app/ZuploBuildConfig.d.ts +155 -0
  4. package/dist/app/ZuploBuildConfig.js +29 -0
  5. package/dist/app/ZuploBuildConfig.js.map +1 -0
  6. package/dist/app/demo.js +1 -2
  7. package/dist/app/demo.js.map +1 -1
  8. package/dist/app/entry.client.d.ts +6 -0
  9. package/dist/app/entry.client.js +51 -15
  10. package/dist/app/entry.client.js.map +1 -1
  11. package/dist/app/entry.server.d.ts +9 -6
  12. package/dist/app/entry.server.js +14 -10
  13. package/dist/app/entry.server.js.map +1 -1
  14. package/dist/app/env.d.ts +33 -0
  15. package/dist/app/env.js +29 -0
  16. package/dist/app/env.js.map +1 -0
  17. package/dist/app/main.d.ts +2 -2
  18. package/dist/app/main.js +41 -35
  19. package/dist/app/main.js.map +1 -1
  20. package/dist/app/sentry.d.ts +3 -0
  21. package/dist/app/sentry.js +19 -0
  22. package/dist/app/sentry.js.map +1 -0
  23. package/dist/app/standalone.js +1 -2
  24. package/dist/app/standalone.js.map +1 -1
  25. package/dist/cli/build/handler.d.ts +1 -3
  26. package/dist/cli/build/handler.js +9 -1
  27. package/dist/cli/build/handler.js.map +1 -1
  28. package/dist/cli/cli.js +17 -3
  29. package/dist/cli/cli.js.map +1 -1
  30. package/dist/cli/cmds/build.d.ts +11 -3
  31. package/dist/cli/cmds/build.js +21 -13
  32. package/dist/cli/cmds/build.js.map +1 -1
  33. package/dist/cli/cmds/dev.d.ts +1 -1
  34. package/dist/cli/cmds/dev.js +5 -0
  35. package/dist/cli/cmds/dev.js.map +1 -1
  36. package/dist/cli/cmds/preview.d.ts +16 -0
  37. package/dist/cli/cmds/preview.js +25 -0
  38. package/dist/cli/cmds/preview.js.map +1 -0
  39. package/dist/cli/common/logger.js +9 -0
  40. package/dist/cli/common/logger.js.map +1 -1
  41. package/dist/cli/common/machine-id/lib.js +1 -0
  42. package/dist/cli/common/machine-id/lib.js.map +1 -1
  43. package/dist/cli/common/outdated.js +2 -1
  44. package/dist/cli/common/outdated.js.map +1 -1
  45. package/dist/cli/common/output.js.map +1 -1
  46. package/dist/cli/common/utils/ports.d.ts +1 -1
  47. package/dist/cli/common/utils/ports.js +16 -15
  48. package/dist/cli/common/utils/ports.js.map +1 -1
  49. package/dist/cli/dev/handler.d.ts +1 -0
  50. package/dist/cli/dev/handler.js +15 -12
  51. package/dist/cli/dev/handler.js.map +1 -1
  52. package/dist/cli/preview/handler.d.ts +3 -0
  53. package/dist/cli/preview/handler.js +35 -0
  54. package/dist/cli/preview/handler.js.map +1 -0
  55. package/dist/config/config.d.ts +20 -16
  56. package/dist/config/file-exists.d.ts +1 -0
  57. package/dist/config/file-exists.js +5 -0
  58. package/dist/config/file-exists.js.map +1 -0
  59. package/dist/config/loader.d.ts +21 -0
  60. package/dist/config/loader.js +145 -0
  61. package/dist/config/loader.js.map +1 -0
  62. package/dist/config/validators/BuildSchema.d.ts +60 -0
  63. package/dist/config/validators/BuildSchema.js +31 -0
  64. package/dist/config/validators/BuildSchema.js.map +1 -0
  65. package/dist/config/validators/InputSidebarSchema.d.ts +46 -30
  66. package/dist/config/validators/InputSidebarSchema.js +11 -1
  67. package/dist/config/validators/InputSidebarSchema.js.map +1 -1
  68. package/dist/config/validators/icon-types.d.ts +1 -0
  69. package/dist/config/validators/icon-types.js +2 -0
  70. package/dist/config/validators/icon-types.js.map +1 -0
  71. package/dist/config/validators/validate.d.ts +4334 -173
  72. package/dist/config/validators/validate.js +278 -112
  73. package/dist/config/validators/validate.js.map +1 -1
  74. package/dist/index.d.ts +7 -3
  75. package/dist/index.js +4 -0
  76. package/dist/index.js.map +1 -1
  77. package/dist/lib/MissingIcon.d.ts +2 -0
  78. package/dist/lib/MissingIcon.js +7 -0
  79. package/dist/lib/MissingIcon.js.map +1 -0
  80. package/dist/lib/authentication/AuthenticationPlugin.d.ts +6 -4
  81. package/dist/lib/authentication/AuthenticationPlugin.js +4 -1
  82. package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
  83. package/dist/lib/authentication/authentication.d.ts +4 -5
  84. package/dist/lib/authentication/components/CallbackHandler.js +6 -2
  85. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  86. package/dist/lib/authentication/components/SignIn.d.ts +1 -1
  87. package/dist/lib/authentication/components/SignIn.js +5 -2
  88. package/dist/lib/authentication/components/SignIn.js.map +1 -1
  89. package/dist/lib/authentication/components/SignOut.js +2 -2
  90. package/dist/lib/authentication/components/SignOut.js.map +1 -1
  91. package/dist/lib/authentication/components/SignUp.d.ts +1 -1
  92. package/dist/lib/authentication/components/SignUp.js +4 -1
  93. package/dist/lib/authentication/components/SignUp.js.map +1 -1
  94. package/dist/lib/authentication/hook.d.ts +6 -4
  95. package/dist/lib/authentication/hook.js +12 -4
  96. package/dist/lib/authentication/hook.js.map +1 -1
  97. package/dist/lib/authentication/providers/auth0.d.ts +2 -2
  98. package/dist/lib/authentication/providers/auth0.js +5 -4
  99. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  100. package/dist/lib/authentication/providers/clerk.d.ts +2 -2
  101. package/dist/lib/authentication/providers/clerk.js +116 -47
  102. package/dist/lib/authentication/providers/clerk.js.map +1 -1
  103. package/dist/lib/authentication/providers/openid.d.ts +21 -19
  104. package/dist/lib/authentication/providers/openid.js +62 -69
  105. package/dist/lib/authentication/providers/openid.js.map +1 -1
  106. package/dist/lib/authentication/providers/supabase.d.ts +4 -0
  107. package/dist/lib/authentication/providers/supabase.js +115 -0
  108. package/dist/lib/authentication/providers/supabase.js.map +1 -0
  109. package/dist/lib/authentication/state.d.ts +23 -19
  110. package/dist/lib/authentication/state.js +35 -10
  111. package/dist/lib/authentication/state.js.map +1 -1
  112. package/dist/lib/components/AnchorLink.d.ts +2 -2
  113. package/dist/lib/components/AnchorLink.js +9 -5
  114. package/dist/lib/components/AnchorLink.js.map +1 -1
  115. package/dist/lib/components/Autocomplete.d.ts +13 -0
  116. package/dist/lib/components/Autocomplete.js +47 -0
  117. package/dist/lib/components/Autocomplete.js.map +1 -0
  118. package/dist/lib/components/Banner.js +1 -1
  119. package/dist/lib/components/Banner.js.map +1 -1
  120. package/dist/lib/components/Bootstrap.d.ts +5 -5
  121. package/dist/lib/components/Bootstrap.js +14 -13
  122. package/dist/lib/components/Bootstrap.js.map +1 -1
  123. package/dist/lib/components/BuildCheck.d.ts +4 -0
  124. package/dist/lib/components/BuildCheck.js +38 -0
  125. package/dist/lib/components/BuildCheck.js.map +1 -0
  126. package/dist/lib/components/ErrorPage.js +1 -1
  127. package/dist/lib/components/Footer.d.ts +1 -0
  128. package/dist/lib/components/Footer.js +32 -0
  129. package/dist/lib/components/Footer.js.map +1 -0
  130. package/dist/lib/components/Header.js +28 -12
  131. package/dist/lib/components/Header.js.map +1 -1
  132. package/dist/lib/components/Heading.d.ts +5 -5
  133. package/dist/lib/components/Heading.js +6 -1
  134. package/dist/lib/components/Heading.js.map +1 -1
  135. package/dist/lib/components/InlineCode.d.ts +2 -1
  136. package/dist/lib/components/InlineCode.js +2 -9
  137. package/dist/lib/components/InlineCode.js.map +1 -1
  138. package/dist/lib/components/Layout.js +10 -21
  139. package/dist/lib/components/Layout.js.map +1 -1
  140. package/dist/lib/components/Main.d.ts +2 -0
  141. package/dist/lib/components/Main.js +18 -0
  142. package/dist/lib/components/Main.js.map +1 -0
  143. package/dist/lib/components/Markdown.d.ts +4 -2
  144. package/dist/lib/components/Markdown.js +14 -13
  145. package/dist/lib/components/Markdown.js.map +1 -1
  146. package/dist/lib/components/MobileTopNavigation.js +10 -8
  147. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  148. package/dist/lib/components/NotFoundPage.js +2 -2
  149. package/dist/lib/components/NotFoundPage.js.map +1 -1
  150. package/dist/lib/components/Pagination.d.ts +11 -0
  151. package/dist/lib/components/Pagination.js +10 -0
  152. package/dist/lib/components/Pagination.js.map +1 -0
  153. package/dist/lib/components/PathRenderer.d.ts +11 -0
  154. package/dist/lib/components/PathRenderer.js +28 -0
  155. package/dist/lib/components/PathRenderer.js.map +1 -0
  156. package/dist/lib/components/ReactMarkdown.d.ts +29 -0
  157. package/dist/lib/components/ReactMarkdown.js +182 -0
  158. package/dist/lib/components/ReactMarkdown.js.map +1 -0
  159. package/dist/lib/components/Search.d.ts +3 -1
  160. package/dist/lib/components/Search.js +9 -3
  161. package/dist/lib/components/Search.js.map +1 -1
  162. package/dist/lib/components/Slot.d.ts +17 -0
  163. package/dist/lib/components/Slot.js +24 -0
  164. package/dist/lib/components/Slot.js.map +1 -0
  165. package/dist/lib/components/Slot.test.js +168 -0
  166. package/dist/lib/components/Slot.test.js.map +1 -0
  167. package/dist/lib/components/StatusPage.d.ts +7 -0
  168. package/dist/lib/components/StatusPage.js +71 -0
  169. package/dist/lib/components/StatusPage.js.map +1 -0
  170. package/dist/lib/components/ThemeSwitch.js +10 -5
  171. package/dist/lib/components/ThemeSwitch.js.map +1 -1
  172. package/dist/lib/components/TopNavigation.d.ts +3 -3
  173. package/dist/lib/components/TopNavigation.js +35 -23
  174. package/dist/lib/components/TopNavigation.js.map +1 -1
  175. package/dist/lib/components/Zudoku.d.ts +1 -1
  176. package/dist/lib/components/Zudoku.js +14 -9
  177. package/dist/lib/components/Zudoku.js.map +1 -1
  178. package/dist/lib/components/cache.d.ts +13 -0
  179. package/dist/lib/components/cache.js +20 -0
  180. package/dist/lib/components/cache.js.map +1 -0
  181. package/dist/lib/components/context/BypassProtectedRoutesContext.d.ts +1 -0
  182. package/dist/lib/components/context/BypassProtectedRoutesContext.js +3 -0
  183. package/dist/lib/components/context/BypassProtectedRoutesContext.js.map +1 -0
  184. package/dist/lib/components/context/RouterEventsEmitter.d.ts +1 -0
  185. package/dist/lib/components/context/RouterEventsEmitter.js +17 -0
  186. package/dist/lib/components/context/RouterEventsEmitter.js.map +1 -0
  187. package/dist/lib/components/context/SlotProvider.d.ts +26 -0
  188. package/dist/lib/components/context/SlotProvider.js +83 -0
  189. package/dist/lib/components/context/SlotProvider.js.map +1 -0
  190. package/dist/lib/components/context/ViewportAnchorContext.d.ts +2 -4
  191. package/dist/lib/components/context/ViewportAnchorContext.js +29 -23
  192. package/dist/lib/components/context/ViewportAnchorContext.js.map +1 -1
  193. package/dist/lib/components/context/ZudokuContext.d.ts +2 -2
  194. package/dist/lib/components/context/ZudokuContext.js +20 -8
  195. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  196. package/dist/lib/components/context/ZudokuProvider.js +2 -1
  197. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  198. package/dist/lib/components/index.d.ts +56 -15
  199. package/dist/lib/components/index.js +28 -7
  200. package/dist/lib/components/index.js.map +1 -1
  201. package/dist/lib/components/navigation/PoweredByZudoku.d.ts +3 -0
  202. package/dist/lib/components/navigation/PoweredByZudoku.js +7 -0
  203. package/dist/lib/components/navigation/PoweredByZudoku.js.map +1 -0
  204. package/dist/lib/components/navigation/Sidebar.d.ts +5 -1
  205. package/dist/lib/components/navigation/Sidebar.js +4 -8
  206. package/dist/lib/components/navigation/Sidebar.js.map +1 -1
  207. package/dist/lib/components/navigation/SidebarBadge.d.ts +6 -3
  208. package/dist/lib/components/navigation/SidebarBadge.js +13 -11
  209. package/dist/lib/components/navigation/SidebarBadge.js.map +1 -1
  210. package/dist/lib/components/navigation/SidebarCategory.d.ts +3 -3
  211. package/dist/lib/components/navigation/SidebarCategory.js +33 -24
  212. package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
  213. package/dist/lib/components/navigation/SidebarItem.d.ts +2 -8
  214. package/dist/lib/components/navigation/SidebarItem.js +30 -33
  215. package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
  216. package/dist/lib/components/navigation/SidebarWrapper.d.ts +7 -6
  217. package/dist/lib/components/navigation/SidebarWrapper.js +18 -3
  218. package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
  219. package/dist/lib/{plugins/markdown → components/navigation}/Toc.js +6 -8
  220. package/dist/lib/components/navigation/Toc.js.map +1 -0
  221. package/dist/lib/components/navigation/ZudokuLogo.d.ts +6 -0
  222. package/dist/lib/components/navigation/ZudokuLogo.js +5 -0
  223. package/dist/lib/components/navigation/ZudokuLogo.js.map +1 -0
  224. package/dist/lib/components/navigation/ZuploLogo.d.ts +3 -0
  225. package/dist/lib/components/navigation/ZuploLogo.js +4 -0
  226. package/dist/lib/components/navigation/ZuploLogo.js.map +1 -0
  227. package/dist/lib/components/navigation/utils.d.ts +8 -0
  228. package/dist/lib/components/navigation/utils.js +35 -7
  229. package/dist/lib/components/navigation/utils.js.map +1 -1
  230. package/dist/lib/core/RouteGuard.d.ts +2 -0
  231. package/dist/lib/core/RouteGuard.js +52 -0
  232. package/dist/lib/core/RouteGuard.js.map +1 -0
  233. package/dist/lib/core/ZudokuContext.d.ts +52 -11
  234. package/dist/lib/core/ZudokuContext.js +38 -12
  235. package/dist/lib/core/ZudokuContext.js.map +1 -1
  236. package/dist/lib/core/plugins.d.ts +25 -8
  237. package/dist/lib/core/plugins.js +4 -0
  238. package/dist/lib/core/plugins.js.map +1 -1
  239. package/dist/lib/errors/ErrorAlert.js +6 -1
  240. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  241. package/dist/lib/errors/RouterError.js +1 -1
  242. package/dist/lib/errors/RouterError.js.map +1 -1
  243. package/dist/lib/hooks/index.d.ts +22 -0
  244. package/dist/lib/hooks/index.js +16 -0
  245. package/dist/lib/hooks/index.js.map +1 -0
  246. package/dist/lib/hooks/useEvent.d.ts +11 -0
  247. package/dist/lib/hooks/useEvent.js +19 -0
  248. package/dist/lib/hooks/useEvent.js.map +1 -0
  249. package/dist/lib/hooks/useEvent.test.js +100 -0
  250. package/dist/lib/hooks/useEvent.test.js.map +1 -0
  251. package/dist/lib/icons.d.ts +1 -0
  252. package/dist/lib/icons.js +1 -0
  253. package/dist/lib/icons.js.map +1 -1
  254. package/dist/lib/oas/graphql/circular.d.ts +3 -0
  255. package/dist/lib/oas/graphql/circular.js +43 -0
  256. package/dist/lib/oas/graphql/circular.js.map +1 -0
  257. package/dist/lib/oas/graphql/index.d.ts +25 -1
  258. package/dist/lib/oas/graphql/index.js +213 -66
  259. package/dist/lib/oas/graphql/index.js.map +1 -1
  260. package/dist/lib/oas/parser/dereference/index.js +8 -3
  261. package/dist/lib/oas/parser/dereference/index.js.map +1 -1
  262. package/dist/lib/oas/parser/index.d.ts +8 -3
  263. package/dist/lib/oas/parser/index.js +7 -23
  264. package/dist/lib/oas/parser/index.js.map +1 -1
  265. package/dist/lib/oas/parser/upgrade/index.d.ts +3 -2
  266. package/dist/lib/oas/parser/upgrade/index.js +83 -33
  267. package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
  268. package/dist/lib/plugins/api-catalog/Catalog.d.ts +4 -0
  269. package/dist/lib/plugins/api-catalog/Catalog.js +26 -0
  270. package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -0
  271. package/dist/lib/plugins/api-catalog/index.d.ts +31 -0
  272. package/dist/lib/plugins/api-catalog/index.js +46 -0
  273. package/dist/lib/plugins/api-catalog/index.js.map +1 -0
  274. package/dist/lib/plugins/api-keys/CreateApiKey.d.ts +3 -2
  275. package/dist/lib/plugins/api-keys/CreateApiKey.js +15 -7
  276. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  277. package/dist/lib/plugins/api-keys/ProtectedRoute.js +1 -1
  278. package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
  279. package/dist/lib/plugins/api-keys/SettingsApiKeys.d.ts +1 -1
  280. package/dist/lib/plugins/api-keys/SettingsApiKeys.js +153 -27
  281. package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
  282. package/dist/lib/plugins/api-keys/index.d.ts +21 -11
  283. package/dist/lib/plugins/api-keys/index.js +49 -30
  284. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  285. package/dist/lib/plugins/custom-pages/index.d.ts +1 -1
  286. package/dist/lib/plugins/markdown/MdxPage.d.ts +10 -2
  287. package/dist/lib/plugins/markdown/MdxPage.js +17 -4
  288. package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
  289. package/dist/lib/plugins/markdown/index.d.ts +3 -1
  290. package/dist/lib/plugins/markdown/index.js +1 -1
  291. package/dist/lib/plugins/markdown/index.js.map +1 -1
  292. package/dist/lib/plugins/markdown/resolver.d.ts +1 -7
  293. package/dist/lib/plugins/markdown/resolver.js +0 -29
  294. package/dist/lib/plugins/markdown/resolver.js.map +1 -1
  295. package/dist/lib/plugins/openapi/CollapsibleCode.js +2 -1
  296. package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -1
  297. package/dist/lib/plugins/openapi/ColorizedParam.d.ts +10 -2
  298. package/dist/lib/plugins/openapi/ColorizedParam.js +19 -8
  299. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  300. package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -1
  301. package/dist/lib/plugins/openapi/Endpoint.js +8 -7
  302. package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
  303. package/dist/lib/plugins/openapi/OasProvider.d.ts +8 -0
  304. package/dist/lib/plugins/openapi/OasProvider.js +29 -0
  305. package/dist/lib/plugins/openapi/OasProvider.js.map +1 -0
  306. package/dist/lib/plugins/openapi/OperationList.d.ts +5 -2
  307. package/dist/lib/plugins/openapi/OperationList.js +92 -11
  308. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  309. package/dist/lib/plugins/openapi/OperationListItem.d.ts +5 -3
  310. package/dist/lib/plugins/openapi/OperationListItem.js +12 -6
  311. package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
  312. package/dist/lib/plugins/openapi/ParamInfos.d.ts +6 -0
  313. package/dist/lib/plugins/openapi/ParamInfos.js +45 -0
  314. package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -0
  315. package/dist/lib/plugins/openapi/ParameterList.d.ts +2 -1
  316. package/dist/lib/plugins/openapi/ParameterList.js +3 -2
  317. package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
  318. package/dist/lib/plugins/openapi/ParameterListItem.js +16 -3
  319. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  320. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +4 -2
  321. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +17 -4
  322. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
  323. package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +3 -4
  324. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +5 -13
  325. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
  326. package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +2 -4
  327. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +4 -13
  328. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  329. package/dist/lib/plugins/openapi/SchemaList.d.ts +1 -0
  330. package/dist/lib/plugins/openapi/SchemaList.js +53 -0
  331. package/dist/lib/plugins/openapi/SchemaList.js.map +1 -0
  332. package/dist/lib/plugins/openapi/Sidecar.js +60 -93
  333. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  334. package/dist/lib/plugins/openapi/SidecarBox.js +4 -4
  335. package/dist/lib/plugins/openapi/SidecarBox.js.map +1 -1
  336. package/dist/lib/plugins/openapi/SidecarExamples.d.ts +9 -0
  337. package/dist/lib/plugins/openapi/SidecarExamples.js +76 -0
  338. package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -0
  339. package/dist/lib/plugins/openapi/SimpleSelect.js +1 -1
  340. package/dist/lib/plugins/openapi/SimpleSelect.js.map +1 -1
  341. package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +2 -2
  342. package/dist/lib/plugins/openapi/client/GraphQLClient.js +23 -82
  343. package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -1
  344. package/dist/lib/plugins/openapi/client/createServer.d.ts +2 -1
  345. package/dist/lib/plugins/openapi/client/createServer.js +5 -2
  346. package/dist/lib/plugins/openapi/client/createServer.js.map +1 -1
  347. package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +11 -2
  348. package/dist/lib/plugins/openapi/client/useCreateQuery.js +14 -7
  349. package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -1
  350. package/dist/lib/plugins/openapi/components/ConstValue.d.ts +5 -0
  351. package/dist/lib/plugins/openapi/components/ConstValue.js +6 -0
  352. package/dist/lib/plugins/openapi/components/ConstValue.js.map +1 -0
  353. package/dist/lib/plugins/openapi/components/EnumValues.d.ts +5 -0
  354. package/dist/lib/plugins/openapi/components/EnumValues.js +15 -0
  355. package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -0
  356. package/dist/lib/plugins/openapi/components/ResponseContent.d.ts +12 -0
  357. package/dist/lib/plugins/openapi/components/ResponseContent.js +21 -0
  358. package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -0
  359. package/dist/lib/plugins/openapi/components/SelectOnClick.d.ts +5 -0
  360. package/dist/lib/plugins/openapi/components/SelectOnClick.js +16 -0
  361. package/dist/lib/plugins/openapi/components/SelectOnClick.js.map +1 -0
  362. package/dist/lib/plugins/openapi/context.d.ts +3 -3
  363. package/dist/lib/plugins/openapi/graphql/gql.d.ts +11 -3
  364. package/dist/lib/plugins/openapi/graphql/gql.js +5 -14
  365. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  366. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +113 -21
  367. package/dist/lib/plugins/openapi/graphql/graphql.js +55 -11
  368. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  369. package/dist/lib/plugins/openapi/index.d.ts +10 -7
  370. package/dist/lib/plugins/openapi/index.js +65 -82
  371. package/dist/lib/plugins/openapi/index.js.map +1 -1
  372. package/dist/lib/plugins/openapi/interfaces.d.ts +57 -3
  373. package/dist/lib/plugins/openapi/playground/BodyPanel.d.ts +5 -0
  374. package/dist/lib/plugins/openapi/playground/BodyPanel.js +22 -0
  375. package/dist/lib/plugins/openapi/playground/BodyPanel.js.map +1 -0
  376. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.d.ts +6 -0
  377. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +9 -0
  378. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -0
  379. package/dist/lib/plugins/openapi/playground/Headers.d.ts +4 -4
  380. package/dist/lib/plugins/openapi/playground/Headers.js +84 -5
  381. package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
  382. package/dist/lib/plugins/openapi/playground/IdentityDialog.d.ts +11 -0
  383. package/dist/lib/plugins/openapi/playground/IdentityDialog.js +14 -0
  384. package/dist/lib/plugins/openapi/playground/IdentityDialog.js.map +1 -0
  385. package/dist/lib/plugins/openapi/playground/IdentitySelector.d.ts +7 -0
  386. package/dist/lib/plugins/openapi/playground/IdentitySelector.js +8 -0
  387. package/dist/lib/plugins/openapi/playground/IdentitySelector.js.map +1 -0
  388. package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +9 -0
  389. package/dist/lib/plugins/openapi/playground/ParamsGrid.js +5 -0
  390. package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -0
  391. package/dist/lib/plugins/openapi/playground/PathParams.d.ts +3 -2
  392. package/dist/lib/plugins/openapi/playground/PathParams.js +5 -7
  393. package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
  394. package/dist/lib/plugins/openapi/playground/Playground.d.ts +32 -2
  395. package/dist/lib/plugins/openapi/playground/Playground.js +147 -78
  396. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  397. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
  398. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
  399. package/dist/lib/plugins/openapi/playground/QueryParams.d.ts +1 -1
  400. package/dist/lib/plugins/openapi/playground/QueryParams.js +24 -18
  401. package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
  402. package/dist/lib/plugins/openapi/playground/RequestLoginDialog.d.ts +7 -0
  403. package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js +8 -0
  404. package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js.map +1 -0
  405. package/dist/lib/plugins/openapi/playground/fileUtils.d.ts +2 -0
  406. package/dist/lib/plugins/openapi/playground/fileUtils.js +22 -0
  407. package/dist/lib/plugins/openapi/playground/fileUtils.js.map +1 -0
  408. package/dist/lib/plugins/openapi/playground/rememberedIdentity.d.ts +17 -0
  409. package/dist/lib/plugins/openapi/playground/rememberedIdentity.js +11 -0
  410. package/dist/lib/plugins/openapi/playground/rememberedIdentity.js.map +1 -0
  411. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.d.ts +7 -0
  412. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js +11 -0
  413. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js.map +1 -0
  414. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.d.ts +11 -0
  415. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +110 -0
  416. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -0
  417. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +9 -0
  418. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +17 -0
  419. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -0
  420. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.d.ts +10 -0
  421. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js +32 -0
  422. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js.map +1 -0
  423. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.d.ts +1 -0
  424. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js +56 -0
  425. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js.map +1 -0
  426. package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.d.ts +16 -0
  427. package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js +10 -0
  428. package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js.map +1 -0
  429. package/dist/lib/plugins/openapi/processors/removeExtensions.d.ts +8 -0
  430. package/dist/lib/plugins/openapi/processors/removeExtensions.js +16 -0
  431. package/dist/lib/plugins/openapi/processors/removeExtensions.js.map +1 -0
  432. package/dist/lib/plugins/openapi/processors/removeExtensions.test.d.ts +1 -0
  433. package/dist/lib/plugins/openapi/processors/removeExtensions.test.js +194 -0
  434. package/dist/lib/plugins/openapi/processors/removeExtensions.test.js.map +1 -0
  435. package/dist/lib/plugins/openapi/processors/removeParameters.d.ts +12 -0
  436. package/dist/lib/plugins/openapi/processors/removeParameters.js +66 -0
  437. package/dist/lib/plugins/openapi/processors/removeParameters.js.map +1 -0
  438. package/dist/lib/plugins/openapi/processors/removeParameters.test.d.ts +1 -0
  439. package/dist/lib/plugins/openapi/processors/removeParameters.test.js +159 -0
  440. package/dist/lib/plugins/openapi/processors/removeParameters.test.js.map +1 -0
  441. package/dist/lib/plugins/openapi/processors/removePaths.d.ts +13 -0
  442. package/dist/lib/plugins/openapi/processors/removePaths.js +33 -0
  443. package/dist/lib/plugins/openapi/processors/removePaths.js.map +1 -0
  444. package/dist/lib/plugins/openapi/processors/removePaths.test.d.ts +1 -0
  445. package/dist/lib/plugins/openapi/processors/removePaths.test.js +144 -0
  446. package/dist/lib/plugins/openapi/processors/removePaths.test.js.map +1 -0
  447. package/dist/lib/plugins/openapi/processors/traverse.d.ts +1 -0
  448. package/dist/lib/plugins/openapi/processors/traverse.js +2 -0
  449. package/dist/lib/plugins/openapi/processors/traverse.js.map +1 -0
  450. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.d.ts +1 -2
  451. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js +2 -2
  452. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js.map +1 -1
  453. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.d.ts +2 -1
  454. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js +2 -2
  455. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js.map +1 -1
  456. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.d.ts +0 -1
  457. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js +1 -1
  458. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js.map +1 -1
  459. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.d.ts +4 -0
  460. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +15 -0
  461. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -0
  462. package/dist/lib/plugins/openapi/schema/{SchemaComponents.d.ts → SchemaPropertyItem.d.ts} +2 -4
  463. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +45 -0
  464. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -0
  465. package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +2 -2
  466. package/dist/lib/plugins/openapi/schema/SchemaView.js +38 -50
  467. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  468. package/dist/lib/plugins/openapi/schema/utils.d.ts +8 -1
  469. package/dist/lib/plugins/openapi/schema/utils.js +15 -4
  470. package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
  471. package/dist/lib/plugins/openapi/state.d.ts +25 -0
  472. package/dist/lib/plugins/openapi/state.js +18 -0
  473. package/dist/lib/plugins/openapi/state.js.map +1 -0
  474. package/dist/lib/plugins/openapi/util/createHttpSnippet.d.ts +11 -0
  475. package/dist/lib/plugins/openapi/util/createHttpSnippet.js +89 -0
  476. package/dist/lib/plugins/openapi/util/createHttpSnippet.js.map +1 -0
  477. package/dist/lib/plugins/openapi/util/createSidebarCategory.d.ts +9 -0
  478. package/dist/lib/plugins/openapi/util/createSidebarCategory.js +23 -0
  479. package/dist/lib/plugins/openapi/util/createSidebarCategory.js.map +1 -0
  480. package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +1 -1
  481. package/dist/lib/plugins/openapi/util/generateSchemaExample.js +62 -10
  482. package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
  483. package/dist/lib/plugins/openapi/util/getRoutes.d.ts +10 -0
  484. package/dist/lib/plugins/openapi/util/getRoutes.js +117 -0
  485. package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -0
  486. package/dist/lib/plugins/openapi/util/methodColorMap.d.ts +2 -0
  487. package/dist/lib/plugins/openapi/util/methodColorMap.js +10 -0
  488. package/dist/lib/plugins/openapi/util/methodColorMap.js.map +1 -0
  489. package/dist/lib/plugins/openapi/util/methodToColor.d.ts +20 -0
  490. package/dist/lib/plugins/openapi/util/methodToColor.js +24 -0
  491. package/dist/lib/plugins/openapi/util/methodToColor.js.map +1 -0
  492. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.d.ts +1 -0
  493. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js +27 -0
  494. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js.map +1 -0
  495. package/dist/lib/plugins/redirect/index.d.ts +1 -1
  496. package/dist/lib/plugins/redirect/index.js +1 -1
  497. package/dist/lib/plugins/redirect/index.js.map +1 -1
  498. package/dist/lib/plugins/search-inkeep/index.d.ts +22 -3
  499. package/dist/lib/plugins/search-inkeep/index.js +41 -5
  500. package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
  501. package/dist/lib/plugins/search-inkeep/inkeep.d.ts +3 -4
  502. package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
  503. package/dist/lib/plugins/search-pagefind/PagefindSearch.d.ts +6 -0
  504. package/dist/lib/plugins/search-pagefind/PagefindSearch.js +80 -0
  505. package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -0
  506. package/dist/lib/plugins/search-pagefind/ResultList.d.ts +8 -0
  507. package/dist/lib/plugins/search-pagefind/ResultList.js +32 -0
  508. package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -0
  509. package/dist/lib/plugins/search-pagefind/get-results.d.ts +10 -0
  510. package/dist/lib/plugins/search-pagefind/get-results.js +42 -0
  511. package/dist/lib/plugins/search-pagefind/get-results.js.map +1 -0
  512. package/dist/lib/plugins/search-pagefind/index.d.ts +6 -0
  513. package/dist/lib/plugins/search-pagefind/index.js +9 -0
  514. package/dist/lib/plugins/search-pagefind/index.js.map +1 -0
  515. package/dist/lib/plugins/search-pagefind/types.d.ts +85 -0
  516. package/dist/lib/plugins/search-pagefind/types.js +2 -0
  517. package/dist/lib/plugins/search-pagefind/types.js.map +1 -0
  518. package/dist/lib/shiki.d.ts +31 -0
  519. package/dist/lib/shiki.js +101 -0
  520. package/dist/lib/shiki.js.map +1 -0
  521. package/dist/lib/ui/Badge.d.ts +2 -2
  522. package/dist/lib/ui/Badge.js +2 -1
  523. package/dist/lib/ui/Badge.js.map +1 -1
  524. package/dist/lib/ui/Button.d.ts +3 -3
  525. package/dist/lib/ui/Button.js +9 -6
  526. package/dist/lib/ui/Button.js.map +1 -1
  527. package/dist/lib/ui/Callout.d.ts +2 -1
  528. package/dist/lib/ui/Callout.js +3 -2
  529. package/dist/lib/ui/Callout.js.map +1 -1
  530. package/dist/lib/ui/Card.js +1 -1
  531. package/dist/lib/ui/Card.js.map +1 -1
  532. package/dist/lib/ui/Checkbox.js +1 -1
  533. package/dist/lib/ui/Checkbox.js.map +1 -1
  534. package/dist/lib/ui/CodeBlock.d.ts +16 -0
  535. package/dist/lib/ui/CodeBlock.js +18 -0
  536. package/dist/lib/ui/CodeBlock.js.map +1 -0
  537. package/dist/lib/ui/Command.d.ts +16 -2
  538. package/dist/lib/ui/Command.js +9 -5
  539. package/dist/lib/ui/Command.js.map +1 -1
  540. package/dist/lib/ui/Dialog.d.ts +3 -1
  541. package/dist/lib/ui/Dialog.js +2 -2
  542. package/dist/lib/ui/Dialog.js.map +1 -1
  543. package/dist/lib/ui/DropdownMenu.js +4 -4
  544. package/dist/lib/ui/DropdownMenu.js.map +1 -1
  545. package/dist/lib/ui/Form.d.ts +1 -1
  546. package/dist/lib/ui/HoverCard.js +1 -1
  547. package/dist/lib/ui/HoverCard.js.map +1 -1
  548. package/dist/lib/ui/Input.d.ts +1 -2
  549. package/dist/lib/ui/Input.js +1 -1
  550. package/dist/lib/ui/Input.js.map +1 -1
  551. package/dist/lib/ui/Popover.js +1 -1
  552. package/dist/lib/ui/Popover.js.map +1 -1
  553. package/dist/lib/ui/RadioGroup.js +1 -1
  554. package/dist/lib/ui/RadioGroup.js.map +1 -1
  555. package/dist/lib/ui/Select.js +4 -4
  556. package/dist/lib/ui/Select.js.map +1 -1
  557. package/dist/lib/ui/Slider.js +1 -1
  558. package/dist/lib/ui/Slider.js.map +1 -1
  559. package/dist/lib/ui/Stepper.d.ts +3 -0
  560. package/dist/lib/ui/Stepper.js +7 -0
  561. package/dist/lib/ui/Stepper.js.map +1 -0
  562. package/dist/lib/ui/Switch.js +1 -1
  563. package/dist/lib/ui/Switch.js.map +1 -1
  564. package/dist/lib/ui/SyntaxHighlight.d.ts +10 -0
  565. package/dist/lib/ui/SyntaxHighlight.js +14 -0
  566. package/dist/lib/ui/SyntaxHighlight.js.map +1 -0
  567. package/dist/lib/ui/Tabs.js +2 -2
  568. package/dist/lib/ui/Tabs.js.map +1 -1
  569. package/dist/lib/ui/Textarea.js +1 -1
  570. package/dist/lib/ui/Textarea.js.map +1 -1
  571. package/dist/lib/ui/Toggle.js +1 -1
  572. package/dist/lib/ui/Toggle.js.map +1 -1
  573. package/dist/lib/ui/Tooltip.d.ts +2 -1
  574. package/dist/lib/ui/Tooltip.js +2 -1
  575. package/dist/lib/ui/Tooltip.js.map +1 -1
  576. package/dist/lib/ui/util.d.ts +2 -0
  577. package/dist/lib/ui/util.js +3 -0
  578. package/dist/lib/ui/util.js.map +1 -0
  579. package/dist/lib/util/MdxComponents.d.ts +29 -20
  580. package/dist/lib/util/MdxComponents.js +17 -15
  581. package/dist/lib/util/MdxComponents.js.map +1 -1
  582. package/dist/lib/util/createVariantComponent.d.ts +2 -2
  583. package/dist/lib/util/detectOS.d.ts +1 -0
  584. package/dist/lib/util/detectOS.js +11 -0
  585. package/dist/lib/util/detectOS.js.map +1 -0
  586. package/dist/lib/util/ensureArray.d.ts +1 -0
  587. package/dist/lib/util/ensureArray.js +2 -0
  588. package/dist/lib/util/ensureArray.js.map +1 -0
  589. package/dist/lib/util/humanFileSize.d.ts +6 -0
  590. package/dist/lib/util/humanFileSize.js +14 -0
  591. package/dist/lib/util/humanFileSize.js.map +1 -0
  592. package/dist/lib/util/humanFileSize.test.d.ts +1 -0
  593. package/dist/lib/util/humanFileSize.test.js +22 -0
  594. package/dist/lib/util/humanFileSize.test.js.map +1 -0
  595. package/dist/lib/util/joinPath.d.ts +3 -0
  596. package/dist/lib/util/joinPath.js +3 -0
  597. package/dist/lib/util/joinPath.js.map +1 -1
  598. package/dist/lib/util/joinUrl.d.ts +1 -0
  599. package/dist/lib/util/joinUrl.js +40 -0
  600. package/dist/lib/util/joinUrl.js.map +1 -0
  601. package/dist/lib/util/joinUrl.test.d.ts +1 -0
  602. package/dist/lib/util/joinUrl.test.js +43 -0
  603. package/dist/lib/util/joinUrl.test.js.map +1 -0
  604. package/dist/lib/util/scrollIntoViewIfNeeded.d.ts +1 -0
  605. package/dist/lib/util/scrollIntoViewIfNeeded.js +14 -0
  606. package/dist/lib/util/scrollIntoViewIfNeeded.js.map +1 -0
  607. package/dist/lib/util/traverse.d.ts +3 -0
  608. package/dist/lib/util/traverse.js +23 -0
  609. package/dist/lib/util/traverse.js.map +1 -0
  610. package/dist/lib/util/types.d.ts +7 -0
  611. package/dist/lib/util/types.js +2 -0
  612. package/dist/lib/util/types.js.map +1 -0
  613. package/dist/lib/util/url.d.ts +4 -0
  614. package/dist/lib/util/url.js +13 -0
  615. package/dist/lib/util/url.js.map +1 -0
  616. package/dist/lib/util/url.test.d.ts +1 -0
  617. package/dist/lib/util/url.test.js +26 -0
  618. package/dist/lib/util/url.test.js.map +1 -0
  619. package/dist/lib/util/useExposedProps.d.ts +8 -1
  620. package/dist/lib/util/useExposedProps.js +1 -1
  621. package/dist/lib/util/useExposedProps.js.map +1 -1
  622. package/dist/lib/util/useLatest.d.ts +1 -0
  623. package/dist/lib/util/useLatest.js +15 -0
  624. package/dist/lib/util/useLatest.js.map +1 -0
  625. package/dist/lib/util/useOnScreen.d.ts +3 -2
  626. package/dist/lib/util/useOnScreen.js +3 -3
  627. package/dist/lib/util/useOnScreen.js.map +1 -1
  628. package/dist/lib/util/useScrollToAnchor.d.ts +1 -0
  629. package/dist/lib/util/useScrollToAnchor.js +42 -37
  630. package/dist/lib/util/useScrollToAnchor.js.map +1 -1
  631. package/dist/lib/util/useScrollToTop.js +7 -5
  632. package/dist/lib/util/useScrollToTop.js.map +1 -1
  633. package/dist/vite/api/SchemaManager.d.ts +36 -0
  634. package/dist/vite/api/SchemaManager.js +137 -0
  635. package/dist/vite/api/SchemaManager.js.map +1 -0
  636. package/dist/vite/api/SchemaManager.test.d.ts +1 -0
  637. package/dist/vite/api/SchemaManager.test.js +106 -0
  638. package/dist/vite/api/SchemaManager.test.js.map +1 -0
  639. package/dist/vite/api/schema-codegen.d.ts +12 -0
  640. package/dist/vite/api/schema-codegen.js +85 -0
  641. package/dist/vite/api/schema-codegen.js.map +1 -0
  642. package/dist/vite/api/schema-codegen.test.d.ts +1 -0
  643. package/dist/vite/api/schema-codegen.test.js +313 -0
  644. package/dist/vite/api/schema-codegen.test.js.map +1 -0
  645. package/dist/vite/build.js +82 -18
  646. package/dist/vite/build.js.map +1 -1
  647. package/dist/vite/config.d.ts +2 -10
  648. package/dist/vite/config.js +105 -111
  649. package/dist/vite/config.js.map +1 -1
  650. package/dist/vite/config.test.js +12 -6
  651. package/dist/vite/config.test.js.map +1 -1
  652. package/dist/vite/create-pagefind-index.d.ts +4 -0
  653. package/dist/vite/create-pagefind-index.js +12 -0
  654. package/dist/vite/create-pagefind-index.js.map +1 -0
  655. package/dist/vite/css/collect.d.ts +2 -0
  656. package/dist/vite/css/collect.js +27 -0
  657. package/dist/vite/css/collect.js.map +1 -0
  658. package/dist/vite/css/plugin.d.ts +4 -0
  659. package/dist/vite/css/plugin.js +80 -0
  660. package/dist/vite/css/plugin.js.map +1 -0
  661. package/dist/vite/dev-server.d.ts +5 -3
  662. package/dist/vite/dev-server.js +73 -22
  663. package/dist/vite/dev-server.js.map +1 -1
  664. package/dist/vite/error-handler.d.ts +1 -1
  665. package/dist/vite/error-handler.js +1 -1
  666. package/dist/vite/error-handler.js.map +1 -1
  667. package/dist/vite/html.d.ts +7 -3
  668. package/dist/vite/html.js +15 -9
  669. package/dist/vite/html.js.map +1 -1
  670. package/dist/vite/output.d.ts +15 -3
  671. package/dist/vite/output.js +41 -14
  672. package/dist/vite/output.js.map +1 -1
  673. package/dist/vite/plugin-api-keys.d.ts +1 -2
  674. package/dist/vite/plugin-api-keys.js +13 -7
  675. package/dist/vite/plugin-api-keys.js.map +1 -1
  676. package/dist/vite/plugin-api.d.ts +1 -2
  677. package/dist/vite/plugin-api.js +146 -32
  678. package/dist/vite/plugin-api.js.map +1 -1
  679. package/dist/vite/plugin-auth.d.ts +1 -2
  680. package/dist/vite/plugin-auth.js +10 -6
  681. package/dist/vite/plugin-auth.js.map +1 -1
  682. package/dist/vite/plugin-component.d.ts +1 -2
  683. package/dist/vite/plugin-component.js +23 -22
  684. package/dist/vite/plugin-component.js.map +1 -1
  685. package/dist/vite/plugin-config-reload.d.ts +3 -4
  686. package/dist/vite/plugin-config-reload.js +29 -23
  687. package/dist/vite/plugin-config-reload.js.map +1 -1
  688. package/dist/vite/plugin-config.d.ts +1 -2
  689. package/dist/vite/plugin-config.js +27 -2
  690. package/dist/vite/plugin-config.js.map +1 -1
  691. package/dist/vite/plugin-configure-tailwind.d.ts +2 -0
  692. package/dist/vite/plugin-configure-tailwind.js +38 -0
  693. package/dist/vite/plugin-configure-tailwind.js.map +1 -0
  694. package/dist/vite/plugin-custom-pages.d.ts +1 -2
  695. package/dist/vite/plugin-custom-pages.js +6 -5
  696. package/dist/vite/plugin-custom-pages.js.map +1 -1
  697. package/dist/vite/plugin-docs.d.ts +2 -3
  698. package/dist/vite/plugin-docs.js +26 -8
  699. package/dist/vite/plugin-docs.js.map +1 -1
  700. package/dist/vite/plugin-frontmatter.d.ts +1 -2
  701. package/dist/vite/plugin-frontmatter.js +8 -6
  702. package/dist/vite/plugin-frontmatter.js.map +1 -1
  703. package/dist/vite/plugin-mdx.d.ts +1 -2
  704. package/dist/vite/plugin-mdx.js +89 -23
  705. package/dist/vite/plugin-mdx.js.map +1 -1
  706. package/dist/vite/plugin-redirect.d.ts +1 -2
  707. package/dist/vite/plugin-redirect.js +6 -5
  708. package/dist/vite/plugin-redirect.js.map +1 -1
  709. package/dist/vite/plugin-search.d.ts +1 -2
  710. package/dist/vite/plugin-search.js +8 -3
  711. package/dist/vite/plugin-search.js.map +1 -1
  712. package/dist/vite/plugin-shiki-register.d.ts +2 -0
  713. package/dist/vite/plugin-shiki-register.js +39 -0
  714. package/dist/vite/plugin-shiki-register.js.map +1 -0
  715. package/dist/vite/plugin-sidebar.d.ts +4 -3
  716. package/dist/vite/plugin-sidebar.js +24 -8
  717. package/dist/vite/plugin-sidebar.js.map +1 -1
  718. package/dist/vite/{plugin-custom-css.d.ts → plugin-theme-css.d.ts} +2 -3
  719. package/dist/vite/{plugin-custom-css.js → plugin-theme-css.js} +29 -7
  720. package/dist/vite/plugin-theme-css.js.map +1 -0
  721. package/dist/vite/plugin.d.ts +1 -3
  722. package/dist/vite/plugin.js +25 -18
  723. package/dist/vite/plugin.js.map +1 -1
  724. package/dist/vite/prerender/FileWritingResponse.d.ts +25 -0
  725. package/dist/vite/prerender/FileWritingResponse.js +51 -0
  726. package/dist/vite/prerender/FileWritingResponse.js.map +1 -0
  727. package/dist/vite/prerender/InMemoryResponse.d.ts +16 -0
  728. package/dist/vite/prerender/InMemoryResponse.js +32 -0
  729. package/dist/vite/prerender/InMemoryResponse.js.map +1 -0
  730. package/dist/vite/prerender/PrerenderResponse.d.ts +10 -0
  731. package/dist/vite/prerender/PrerenderResponse.js +2 -0
  732. package/dist/vite/prerender/PrerenderResponse.js.map +1 -0
  733. package/dist/vite/prerender/prerender.d.ts +15 -0
  734. package/dist/vite/prerender/prerender.js +109 -0
  735. package/dist/vite/prerender/prerender.js.map +1 -0
  736. package/dist/vite/prerender/worker.d.ts +13 -0
  737. package/dist/vite/prerender/worker.js +59 -0
  738. package/dist/vite/prerender/worker.js.map +1 -0
  739. package/dist/vite/remarkStaticGeneration.js +5 -5
  740. package/dist/vite/remarkStaticGeneration.js.map +1 -1
  741. package/dist/vite/reporter.d.ts +3 -0
  742. package/dist/vite/reporter.js +33 -0
  743. package/dist/vite/reporter.js.map +1 -0
  744. package/dist/vite/sitemap.d.ts +1 -1
  745. package/dist/vite/sitemap.js +2 -1
  746. package/dist/vite/sitemap.js.map +1 -1
  747. package/dist/zuplo/enrich-with-zuplo.d.ts +5 -0
  748. package/dist/zuplo/enrich-with-zuplo.js +185 -0
  749. package/dist/zuplo/enrich-with-zuplo.js.map +1 -0
  750. package/dist/zuplo/policy-types.d.ts +33 -0
  751. package/dist/zuplo/policy-types.js +8 -0
  752. package/dist/zuplo/policy-types.js.map +1 -0
  753. package/dist/zuplo/with-zuplo-processors.d.ts +3 -0
  754. package/dist/zuplo/with-zuplo-processors.js +26 -0
  755. package/dist/zuplo/with-zuplo-processors.js.map +1 -0
  756. package/dist/zuplo/with-zuplo.d.ts +6 -0
  757. package/dist/zuplo/with-zuplo.js +10 -0
  758. package/dist/zuplo/with-zuplo.js.map +1 -0
  759. package/lib/Button-BE9IVkWV.js +51 -0
  760. package/lib/Button-BE9IVkWV.js.map +1 -0
  761. package/lib/Callout-CoVxYafP.js +231 -0
  762. package/lib/Callout-CoVxYafP.js.map +1 -0
  763. package/lib/Card-DPhGbYUM.js +61 -0
  764. package/lib/Card-DPhGbYUM.js.map +1 -0
  765. package/lib/{CategoryHeading-Bb9dqxD3.js → CategoryHeading-Cu2RwgjC.js} +3 -3
  766. package/lib/{CategoryHeading-Bb9dqxD3.js.map → CategoryHeading-Cu2RwgjC.js.map} +1 -1
  767. package/lib/ClientOnly-E7hGysn1.js.map +1 -1
  768. package/lib/Dialog-BxpuVLh9.js +99 -0
  769. package/lib/Dialog-BxpuVLh9.js.map +1 -0
  770. package/lib/Drawer-BzkOKwgC.js +1133 -0
  771. package/lib/Drawer-BzkOKwgC.js.map +1 -0
  772. package/lib/{Markdown-BorQdbxW.js → Markdown-Cm4kj26S.js} +6073 -5916
  773. package/lib/Markdown-Cm4kj26S.js.map +1 -0
  774. package/lib/MdxPage-fDGQtB5w.js +84 -0
  775. package/lib/MdxPage-fDGQtB5w.js.map +1 -0
  776. package/lib/OasProvider-CFBvfR3r.js +33 -0
  777. package/lib/OasProvider-CFBvfR3r.js.map +1 -0
  778. package/lib/OperationList-Xs4KWmsh.js +5153 -0
  779. package/lib/OperationList-Xs4KWmsh.js.map +1 -0
  780. package/lib/Pagination-CCxhL836.js +36 -0
  781. package/lib/Pagination-CCxhL836.js.map +1 -0
  782. package/lib/RouteGuard-CZ_uLv3g.js +55 -0
  783. package/lib/RouteGuard-CZ_uLv3g.js.map +1 -0
  784. package/lib/SchemaList-BWaNlmUJ.js +160 -0
  785. package/lib/SchemaList-BWaNlmUJ.js.map +1 -0
  786. package/lib/SchemaView-DdKJt2ln.js +375 -0
  787. package/lib/SchemaView-DdKJt2ln.js.map +1 -0
  788. package/lib/SignUp-B-1Pvc-8.js +63 -0
  789. package/lib/SignUp-B-1Pvc-8.js.map +1 -0
  790. package/lib/Slot-B99cbD-q.js +160 -0
  791. package/lib/Slot-B99cbD-q.js.map +1 -0
  792. package/lib/{Spinner-3cQDBVGr.js → Spinner-mNLZ6awP.js} +2 -2
  793. package/lib/{Spinner-3cQDBVGr.js.map → Spinner-mNLZ6awP.js.map} +1 -1
  794. package/lib/SyntaxHighlight-Cz6Me7-F.js +10279 -0
  795. package/lib/SyntaxHighlight-Cz6Me7-F.js.map +1 -0
  796. package/lib/Toc-Qe7A4uj_.js +92 -0
  797. package/lib/Toc-Qe7A4uj_.js.map +1 -0
  798. package/lib/chunk-DQRVZFIR-BblmKnHy.js +1839 -0
  799. package/lib/chunk-DQRVZFIR-BblmKnHy.js.map +1 -0
  800. package/lib/circular-w5eL5J8a.js +14934 -0
  801. package/lib/circular-w5eL5J8a.js.map +1 -0
  802. package/lib/clsx-OuTLNxxd.js +17 -0
  803. package/lib/clsx-OuTLNxxd.js.map +1 -0
  804. package/lib/{cn-BmFQLtkS.js → cn-wvCW-ho6.js} +1016 -564
  805. package/lib/cn-wvCW-ho6.js.map +1 -0
  806. package/lib/createServer-p3yUA8Bu.js +12649 -0
  807. package/lib/createServer-p3yUA8Bu.js.map +1 -0
  808. package/lib/hook-k7PfUIsj.js +1465 -0
  809. package/lib/hook-k7PfUIsj.js.map +1 -0
  810. package/lib/index--oeBayMa.js +86 -0
  811. package/lib/index--oeBayMa.js.map +1 -0
  812. package/lib/{index-LNp6rxyU.js → index-BvvmIczU.js} +2 -2
  813. package/lib/{index-LNp6rxyU.js.map → index-BvvmIczU.js.map} +1 -1
  814. package/lib/index-CrcNWbel.js +316 -0
  815. package/lib/index-CrcNWbel.js.map +1 -0
  816. package/lib/index-DI5SPFK9.js +36 -0
  817. package/lib/index-DI5SPFK9.js.map +1 -0
  818. package/lib/index-QzXzw_ra.js +24 -0
  819. package/lib/index-QzXzw_ra.js.map +1 -0
  820. package/lib/index-yqBxBqxF.js +3226 -0
  821. package/lib/index-yqBxBqxF.js.map +1 -0
  822. package/lib/{assets/index-B_Jk_Yzp.js → index-zddirpDj.js} +727 -725
  823. package/lib/index-zddirpDj.js.map +1 -0
  824. package/lib/index.esm-BFcSKCe-.js +683 -0
  825. package/lib/index.esm-BFcSKCe-.js.map +1 -0
  826. package/lib/index.esm-Cp4wkyud.js +1236 -0
  827. package/lib/index.esm-Cp4wkyud.js.map +1 -0
  828. package/lib/invariant-DAFpPywt.js +48 -0
  829. package/lib/{invariant-Caa8-XvF.js.map → invariant-DAFpPywt.js.map} +1 -1
  830. package/lib/joinPath-B7kNnUX4.js +8 -0
  831. package/lib/joinPath-B7kNnUX4.js.map +1 -0
  832. package/lib/jsx-runtime-C5mzlN2N.js +285 -0
  833. package/lib/jsx-runtime-C5mzlN2N.js.map +1 -0
  834. package/lib/mutation-BSeQ8pEK.js +196 -0
  835. package/lib/mutation-BSeQ8pEK.js.map +1 -0
  836. package/lib/objectEntries-yMIkr2mI.js +5 -0
  837. package/lib/objectEntries-yMIkr2mI.js.map +1 -0
  838. package/lib/processors/removeExtensions.js +11 -0
  839. package/lib/processors/removeExtensions.js.map +1 -0
  840. package/lib/processors/removeParameters.js +47 -0
  841. package/lib/processors/removeParameters.js.map +1 -0
  842. package/lib/processors/removePaths.js +28 -0
  843. package/lib/processors/removePaths.js.map +1 -0
  844. package/lib/processors/traverse.js +17 -0
  845. package/lib/processors/traverse.js.map +1 -0
  846. package/lib/react-nprogress.esm-C2MPXjiJ.js +389 -0
  847. package/lib/react-nprogress.esm-C2MPXjiJ.js.map +1 -0
  848. package/lib/ui/Accordion.js +2 -2
  849. package/lib/ui/Accordion.js.map +1 -1
  850. package/lib/ui/ActionButton.js +4 -4
  851. package/lib/ui/ActionButton.js.map +1 -1
  852. package/lib/ui/Alert.js +3 -3
  853. package/lib/ui/Alert.js.map +1 -1
  854. package/lib/ui/AlertDialog.js +2 -2
  855. package/lib/ui/AlertDialog.js.map +1 -1
  856. package/lib/ui/Badge.js +5 -4
  857. package/lib/ui/Badge.js.map +1 -1
  858. package/lib/ui/Breadcrumb.js +5 -5
  859. package/lib/ui/Breadcrumb.js.map +1 -1
  860. package/lib/ui/Button.js +22 -19
  861. package/lib/ui/Button.js.map +1 -1
  862. package/lib/ui/Callout.js +40 -20
  863. package/lib/ui/Callout.js.map +1 -1
  864. package/lib/ui/Card.js +3 -3
  865. package/lib/ui/Card.js.map +1 -1
  866. package/lib/ui/Carousel.js +552 -546
  867. package/lib/ui/Carousel.js.map +1 -1
  868. package/lib/ui/Checkbox.js +14 -13
  869. package/lib/ui/Checkbox.js.map +1 -1
  870. package/lib/ui/CodeBlock.js +84 -0
  871. package/lib/ui/CodeBlock.js.map +1 -0
  872. package/lib/ui/Command.js +116 -510
  873. package/lib/ui/Command.js.map +1 -1
  874. package/lib/ui/Dialog.js +27 -27
  875. package/lib/ui/Dialog.js.map +1 -1
  876. package/lib/ui/Drawer.js +14 -1150
  877. package/lib/ui/Drawer.js.map +1 -1
  878. package/lib/ui/DropdownMenu.js +35 -35
  879. package/lib/ui/DropdownMenu.js.map +1 -1
  880. package/lib/ui/Form.js +6 -6
  881. package/lib/ui/Form.js.map +1 -1
  882. package/lib/ui/HoverCard.js +6 -6
  883. package/lib/ui/HoverCard.js.map +1 -1
  884. package/lib/ui/Input.js +3 -3
  885. package/lib/ui/Input.js.map +1 -1
  886. package/lib/ui/Label.js +3 -3
  887. package/lib/ui/Pagination.js +5 -5
  888. package/lib/ui/Pagination.js.map +1 -1
  889. package/lib/ui/Popover.js +3 -3
  890. package/lib/ui/Popover.js.map +1 -1
  891. package/lib/ui/Progress.js +2 -2
  892. package/lib/ui/Progress.js.map +1 -1
  893. package/lib/ui/RadioGroup.js +11 -11
  894. package/lib/ui/RadioGroup.js.map +1 -1
  895. package/lib/ui/ScrollArea.js +2 -2
  896. package/lib/ui/ScrollArea.js.map +1 -1
  897. package/lib/ui/Select.js +34 -34
  898. package/lib/ui/Select.js.map +1 -1
  899. package/lib/ui/Skeleton.js +2 -2
  900. package/lib/ui/Skeleton.js.map +1 -1
  901. package/lib/ui/Slider.js +6 -6
  902. package/lib/ui/Slider.js.map +1 -1
  903. package/lib/ui/Stepper.js +6 -0
  904. package/lib/ui/Stepper.js.map +1 -0
  905. package/lib/ui/Switch.js +6 -6
  906. package/lib/ui/Switch.js.map +1 -1
  907. package/lib/ui/SyntaxHighlight.js +10 -0
  908. package/lib/ui/SyntaxHighlight.js.map +1 -0
  909. package/lib/ui/Tabs.js +17 -17
  910. package/lib/ui/Tabs.js.map +1 -1
  911. package/lib/ui/Textarea.js +6 -6
  912. package/lib/ui/Textarea.js.map +1 -1
  913. package/lib/ui/Toggle.js +8 -8
  914. package/lib/ui/Toggle.js.map +1 -1
  915. package/lib/ui/ToggleGroup.js +2 -2
  916. package/lib/ui/ToggleGroup.js.map +1 -1
  917. package/lib/ui/Tooltip.js +15 -8
  918. package/lib/ui/Tooltip.js.map +1 -1
  919. package/lib/ui/util.js +6 -0
  920. package/lib/ui/util.js.map +1 -0
  921. package/lib/useExposedProps-BZQkZneR.js +9 -0
  922. package/lib/useExposedProps-BZQkZneR.js.map +1 -0
  923. package/lib/useLatest-hmRS46UF.js +11 -0
  924. package/lib/useLatest-hmRS46UF.js.map +1 -0
  925. package/lib/useMutation-CZSmsIGW.js +97 -0
  926. package/lib/useMutation-CZSmsIGW.js.map +1 -0
  927. package/lib/zudoku.auth-auth0.js +33 -36
  928. package/lib/zudoku.auth-auth0.js.map +1 -1
  929. package/lib/zudoku.auth-clerk.js +115 -58
  930. package/lib/zudoku.auth-clerk.js.map +1 -1
  931. package/lib/zudoku.auth-openid.js +585 -601
  932. package/lib/zudoku.auth-openid.js.map +1 -1
  933. package/lib/zudoku.components.js +4286 -1297
  934. package/lib/zudoku.components.js.map +1 -1
  935. package/lib/zudoku.hooks.js +28 -0
  936. package/lib/zudoku.hooks.js.map +1 -0
  937. package/lib/zudoku.icons.js +10 -0
  938. package/lib/zudoku.icons.js.map +1 -1
  939. package/lib/zudoku.plugin-api-catalog.js +117 -0
  940. package/lib/zudoku.plugin-api-catalog.js.map +1 -0
  941. package/lib/zudoku.plugin-api-keys.js +520 -206
  942. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  943. package/lib/zudoku.plugin-custom-pages.js +4 -4
  944. package/lib/zudoku.plugin-custom-pages.js.map +1 -1
  945. package/lib/zudoku.plugin-markdown.js +27 -50
  946. package/lib/zudoku.plugin-markdown.js.map +1 -1
  947. package/lib/zudoku.plugin-openapi.js +7 -6
  948. package/lib/zudoku.plugin-openapi.js.map +1 -1
  949. package/lib/zudoku.plugin-redirect.js +1 -1
  950. package/lib/zudoku.plugin-redirect.js.map +1 -1
  951. package/lib/zudoku.plugin-search-inkeep.js +52 -24
  952. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  953. package/lib/zudoku.plugin-search-pagefind.js +230 -0
  954. package/lib/zudoku.plugin-search-pagefind.js.map +1 -0
  955. package/lib/zudoku.plugins.js +15 -0
  956. package/lib/zudoku.plugins.js.map +1 -0
  957. package/package.json +160 -104
  958. package/src/app/ZuploBuildConfig.ts +33 -0
  959. package/src/app/defaultTheme.css +54 -0
  960. package/src/app/demo-cdn.html +31 -31
  961. package/src/app/demo.html +1 -1
  962. package/src/app/demo.tsx +1 -2
  963. package/src/app/entry.client.tsx +67 -15
  964. package/src/app/entry.server.tsx +26 -15
  965. package/src/app/env.ts +35 -0
  966. package/src/app/font.geist.css +73 -0
  967. package/src/app/main.css +199 -130
  968. package/src/app/main.tsx +67 -39
  969. package/src/app/sentry.ts +24 -0
  970. package/src/app/standalone.tsx +1 -2
  971. package/src/lib/MissingIcon.tsx +22 -0
  972. package/src/lib/authentication/AuthenticationPlugin.tsx +8 -5
  973. package/src/lib/authentication/authentication.ts +5 -6
  974. package/src/lib/authentication/components/CallbackHandler.tsx +12 -2
  975. package/src/lib/authentication/components/SignIn.tsx +35 -2
  976. package/src/lib/authentication/components/SignOut.tsx +3 -2
  977. package/src/lib/authentication/components/SignUp.tsx +35 -1
  978. package/src/lib/authentication/hook.ts +13 -4
  979. package/src/lib/authentication/providers/auth0.tsx +14 -9
  980. package/src/lib/authentication/providers/clerk.tsx +136 -53
  981. package/src/lib/authentication/providers/openid.tsx +87 -84
  982. package/src/lib/authentication/providers/supabase.tsx +157 -0
  983. package/src/lib/authentication/state.ts +51 -27
  984. package/src/lib/components/AnchorLink.tsx +13 -8
  985. package/src/lib/components/Autocomplete.tsx +113 -0
  986. package/src/lib/components/Banner.tsx +3 -2
  987. package/src/lib/components/Bootstrap.tsx +33 -31
  988. package/src/lib/components/BuildCheck.tsx +75 -0
  989. package/src/lib/components/ErrorPage.tsx +1 -1
  990. package/src/lib/components/Footer.tsx +136 -0
  991. package/src/lib/components/Header.tsx +85 -44
  992. package/src/lib/components/Heading.tsx +20 -16
  993. package/src/lib/components/InlineCode.tsx +13 -16
  994. package/src/lib/components/Layout.tsx +36 -60
  995. package/src/lib/components/Main.tsx +51 -0
  996. package/src/lib/components/Markdown.tsx +42 -28
  997. package/src/lib/components/MobileTopNavigation.tsx +37 -34
  998. package/src/lib/components/NotFoundPage.tsx +2 -2
  999. package/src/lib/components/Pagination.tsx +44 -0
  1000. package/src/lib/components/PathRenderer.tsx +61 -0
  1001. package/src/lib/components/ReactMarkdown.license.txt +21 -0
  1002. package/src/lib/components/ReactMarkdown.tsx +264 -0
  1003. package/src/lib/components/Search.tsx +18 -7
  1004. package/src/lib/components/Slot.test.tsx +465 -0
  1005. package/src/lib/components/Slot.tsx +64 -0
  1006. package/src/lib/components/StatusPage.tsx +91 -0
  1007. package/src/lib/components/ThemeSwitch.tsx +33 -11
  1008. package/src/lib/components/TopNavigation.tsx +70 -47
  1009. package/src/lib/components/Zudoku.tsx +27 -16
  1010. package/src/lib/components/cache.ts +23 -0
  1011. package/src/lib/components/context/BypassProtectedRoutesContext.ts +3 -0
  1012. package/src/lib/components/context/RouterEventsEmitter.tsx +19 -0
  1013. package/src/lib/components/context/SlotProvider.tsx +149 -0
  1014. package/src/lib/components/context/ViewportAnchorContext.tsx +34 -36
  1015. package/src/lib/components/context/ZudokuContext.ts +30 -9
  1016. package/src/lib/components/context/ZudokuProvider.tsx +2 -1
  1017. package/src/lib/components/index.ts +34 -11
  1018. package/src/lib/components/navigation/PoweredByZudoku.tsx +33 -0
  1019. package/src/lib/components/navigation/Sidebar.tsx +39 -30
  1020. package/src/lib/components/navigation/SidebarBadge.tsx +17 -12
  1021. package/src/lib/components/navigation/SidebarCategory.tsx +67 -60
  1022. package/src/lib/components/navigation/SidebarItem.tsx +81 -64
  1023. package/src/lib/components/navigation/SidebarWrapper.tsx +42 -22
  1024. package/src/lib/{plugins/markdown → components/navigation}/Toc.tsx +9 -18
  1025. package/src/lib/components/navigation/ZudokuLogo.tsx +25 -0
  1026. package/src/lib/components/navigation/ZuploLogo.tsx +14 -0
  1027. package/src/lib/components/navigation/utils.ts +43 -7
  1028. package/src/lib/core/RouteGuard.tsx +96 -0
  1029. package/src/lib/core/ZudokuContext.ts +93 -23
  1030. package/src/lib/core/plugins.ts +42 -8
  1031. package/src/lib/errors/ErrorAlert.tsx +24 -17
  1032. package/src/lib/errors/RouterError.tsx +1 -1
  1033. package/src/lib/hooks/index.ts +16 -0
  1034. package/src/lib/hooks/useEvent.test.tsx +149 -0
  1035. package/src/lib/hooks/useEvent.ts +41 -0
  1036. package/src/lib/icons.ts +1 -0
  1037. package/src/lib/oas/graphql/circular.ts +58 -0
  1038. package/src/lib/oas/graphql/index.ts +295 -101
  1039. package/src/lib/oas/parser/dereference/index.ts +10 -4
  1040. package/src/lib/oas/parser/index.ts +14 -30
  1041. package/src/lib/oas/parser/upgrade/index.ts +103 -40
  1042. package/src/lib/plugins/api-catalog/Catalog.tsx +73 -0
  1043. package/src/lib/plugins/api-catalog/index.tsx +115 -0
  1044. package/src/lib/plugins/api-keys/CreateApiKey.tsx +61 -45
  1045. package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
  1046. package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +439 -114
  1047. package/src/lib/plugins/api-keys/index.tsx +115 -56
  1048. package/src/lib/plugins/custom-pages/index.tsx +2 -2
  1049. package/src/lib/plugins/markdown/MdxPage.tsx +43 -41
  1050. package/src/lib/plugins/markdown/index.tsx +5 -2
  1051. package/src/lib/plugins/markdown/resolver.ts +1 -34
  1052. package/src/lib/plugins/openapi/CollapsibleCode.tsx +15 -9
  1053. package/src/lib/plugins/openapi/ColorizedParam.tsx +30 -13
  1054. package/src/lib/plugins/openapi/Endpoint.tsx +14 -12
  1055. package/src/lib/plugins/openapi/OasProvider.tsx +51 -0
  1056. package/src/lib/plugins/openapi/OperationList.tsx +232 -42
  1057. package/src/lib/plugins/openapi/OperationListItem.tsx +122 -93
  1058. package/src/lib/plugins/openapi/ParamInfos.tsx +90 -0
  1059. package/src/lib/plugins/openapi/ParameterList.tsx +4 -0
  1060. package/src/lib/plugins/openapi/ParameterListItem.tsx +65 -24
  1061. package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +28 -3
  1062. package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +15 -38
  1063. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +36 -64
  1064. package/src/lib/plugins/openapi/SchemaList.tsx +163 -0
  1065. package/src/lib/plugins/openapi/Sidecar.tsx +96 -129
  1066. package/src/lib/plugins/openapi/SidecarBox.tsx +4 -16
  1067. package/src/lib/plugins/openapi/SidecarExamples.tsx +168 -0
  1068. package/src/lib/plugins/openapi/SimpleSelect.tsx +1 -1
  1069. package/src/lib/plugins/openapi/client/GraphQLClient.tsx +29 -104
  1070. package/src/lib/plugins/openapi/client/createServer.ts +6 -2
  1071. package/src/lib/plugins/openapi/client/useCreateQuery.ts +34 -7
  1072. package/src/lib/plugins/openapi/components/ConstValue.tsx +24 -0
  1073. package/src/lib/plugins/openapi/components/EnumValues.tsx +58 -0
  1074. package/src/lib/plugins/openapi/components/ResponseContent.tsx +104 -0
  1075. package/src/lib/plugins/openapi/components/SelectOnClick.tsx +29 -0
  1076. package/src/lib/plugins/openapi/context.tsx +2 -2
  1077. package/src/lib/plugins/openapi/graphql/gql.ts +36 -11
  1078. package/src/lib/plugins/openapi/graphql/graphql.ts +172 -36
  1079. package/src/lib/plugins/openapi/index.tsx +100 -98
  1080. package/src/lib/plugins/openapi/interfaces.ts +58 -3
  1081. package/src/lib/plugins/openapi/playground/BodyPanel.tsx +46 -0
  1082. package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +55 -0
  1083. package/src/lib/plugins/openapi/playground/Headers.tsx +182 -49
  1084. package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +74 -0
  1085. package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +43 -0
  1086. package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +13 -0
  1087. package/src/lib/plugins/openapi/playground/PathParams.tsx +39 -64
  1088. package/src/lib/plugins/openapi/playground/Playground.tsx +329 -267
  1089. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +7 -3
  1090. package/src/lib/plugins/openapi/playground/QueryParams.tsx +87 -89
  1091. package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +51 -0
  1092. package/src/lib/plugins/openapi/playground/fileUtils.ts +32 -0
  1093. package/src/lib/plugins/openapi/playground/rememberedIdentity.ts +26 -0
  1094. package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +73 -0
  1095. package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +265 -0
  1096. package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +126 -0
  1097. package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.test.ts +64 -0
  1098. package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.ts +36 -0
  1099. package/src/lib/plugins/openapi/playground/useRememberSkipLoginDialog.tsx +20 -0
  1100. package/src/lib/plugins/openapi/processors/removeExtensions.test.ts +222 -0
  1101. package/src/lib/plugins/openapi/processors/removeExtensions.ts +29 -0
  1102. package/src/lib/plugins/openapi/processors/removeParameters.test.ts +182 -0
  1103. package/src/lib/plugins/openapi/processors/removeParameters.ts +103 -0
  1104. package/src/lib/plugins/openapi/processors/removePaths.test.ts +167 -0
  1105. package/src/lib/plugins/openapi/processors/removePaths.ts +57 -0
  1106. package/src/lib/plugins/openapi/processors/traverse.ts +1 -0
  1107. package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.tsx +1 -8
  1108. package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.tsx +3 -0
  1109. package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.tsx +6 -3
  1110. package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +39 -0
  1111. package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +160 -0
  1112. package/src/lib/plugins/openapi/schema/SchemaView.tsx +105 -141
  1113. package/src/lib/plugins/openapi/schema/utils.ts +32 -5
  1114. package/src/lib/plugins/openapi/state.ts +36 -0
  1115. package/src/lib/plugins/openapi/util/createHttpSnippet.ts +107 -0
  1116. package/src/lib/plugins/openapi/util/createSidebarCategory.tsx +37 -0
  1117. package/src/lib/plugins/openapi/util/generateSchemaExample.ts +77 -12
  1118. package/src/lib/plugins/openapi/util/getRoutes.tsx +198 -0
  1119. package/src/lib/plugins/openapi/util/methodColorMap.tsx +11 -0
  1120. package/src/lib/plugins/openapi/util/methodToColor.ts +27 -0
  1121. package/src/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.tsx +32 -0
  1122. package/src/lib/plugins/redirect/index.tsx +2 -2
  1123. package/src/lib/plugins/search-inkeep/index.tsx +78 -23
  1124. package/src/lib/plugins/search-inkeep/inkeep.ts +3 -9
  1125. package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +164 -0
  1126. package/src/lib/plugins/search-pagefind/ResultList.tsx +105 -0
  1127. package/src/lib/plugins/search-pagefind/get-results.tsx +75 -0
  1128. package/src/lib/plugins/search-pagefind/index.tsx +21 -0
  1129. package/src/lib/plugins/search-pagefind/types.ts +118 -0
  1130. package/src/lib/shiki.ts +132 -0
  1131. package/src/lib/ui/Badge.tsx +3 -2
  1132. package/src/lib/ui/Button.tsx +12 -7
  1133. package/src/lib/ui/Callout.tsx +30 -10
  1134. package/src/lib/ui/Card.tsx +1 -1
  1135. package/src/lib/ui/Checkbox.tsx +2 -1
  1136. package/src/lib/ui/CodeBlock.tsx +103 -0
  1137. package/src/lib/ui/Command.tsx +47 -5
  1138. package/src/lib/ui/Dialog.tsx +11 -7
  1139. package/src/lib/ui/DropdownMenu.tsx +4 -4
  1140. package/src/lib/ui/HoverCard.tsx +1 -1
  1141. package/src/lib/ui/Input.tsx +2 -3
  1142. package/src/lib/ui/Popover.tsx +1 -1
  1143. package/src/lib/ui/RadioGroup.tsx +1 -1
  1144. package/src/lib/ui/Select.tsx +4 -4
  1145. package/src/lib/ui/Slider.tsx +1 -1
  1146. package/src/lib/ui/Stepper.tsx +8 -0
  1147. package/src/lib/ui/Switch.tsx +1 -1
  1148. package/src/lib/ui/SyntaxHighlight.tsx +27 -0
  1149. package/src/lib/ui/Tabs.tsx +2 -2
  1150. package/src/lib/ui/Textarea.tsx +1 -1
  1151. package/src/lib/ui/Toggle.tsx +1 -1
  1152. package/src/lib/ui/Tooltip.tsx +16 -1
  1153. package/src/lib/ui/util.tsx +3 -0
  1154. package/src/lib/util/MdxComponents.tsx +37 -23
  1155. package/src/lib/util/createVariantComponent.tsx +2 -2
  1156. package/src/lib/util/detectOS.ts +9 -0
  1157. package/src/lib/util/ensureArray.ts +3 -0
  1158. package/src/lib/util/humanFileSize.test.ts +24 -0
  1159. package/src/lib/util/humanFileSize.ts +16 -0
  1160. package/src/lib/util/joinPath.tsx +3 -0
  1161. package/src/lib/util/joinUrl.test.ts +62 -0
  1162. package/src/lib/util/joinUrl.ts +57 -0
  1163. package/src/lib/util/scrollIntoViewIfNeeded.ts +18 -0
  1164. package/src/lib/util/traverse.ts +34 -0
  1165. package/src/lib/util/types.ts +7 -0
  1166. package/src/lib/util/url.test.ts +51 -0
  1167. package/src/lib/util/url.ts +18 -0
  1168. package/src/lib/util/useExposedProps.tsx +13 -2
  1169. package/src/lib/util/useLatest.ts +18 -0
  1170. package/src/lib/util/useOnScreen.ts +6 -4
  1171. package/src/lib/util/useScrollToAnchor.ts +48 -39
  1172. package/src/lib/util/useScrollToTop.ts +9 -4
  1173. package/src/shiki/langs/abap.js +1 -0
  1174. package/src/shiki/langs/actionscript-3.js +1 -0
  1175. package/src/shiki/langs/ada.js +1 -0
  1176. package/src/shiki/langs/angular-expression.js +1 -0
  1177. package/src/shiki/langs/angular-html.js +1 -0
  1178. package/src/shiki/langs/angular-inline-style.js +1 -0
  1179. package/src/shiki/langs/angular-inline-template.js +1 -0
  1180. package/src/shiki/langs/angular-let-declaration.js +1 -0
  1181. package/src/shiki/langs/angular-template-blocks.js +1 -0
  1182. package/src/shiki/langs/angular-template.js +1 -0
  1183. package/src/shiki/langs/angular-ts.js +1 -0
  1184. package/src/shiki/langs/apache.js +1 -0
  1185. package/src/shiki/langs/apex.js +1 -0
  1186. package/src/shiki/langs/apl.js +1 -0
  1187. package/src/shiki/langs/applescript.js +1 -0
  1188. package/src/shiki/langs/ara.js +1 -0
  1189. package/src/shiki/langs/asciidoc.js +1 -0
  1190. package/src/shiki/langs/asm.js +1 -0
  1191. package/src/shiki/langs/astro.js +1 -0
  1192. package/src/shiki/langs/awk.js +1 -0
  1193. package/src/shiki/langs/ballerina.js +1 -0
  1194. package/src/shiki/langs/bat.js +1 -0
  1195. package/src/shiki/langs/beancount.js +1 -0
  1196. package/src/shiki/langs/berry.js +1 -0
  1197. package/src/shiki/langs/bibtex.js +1 -0
  1198. package/src/shiki/langs/bicep.js +1 -0
  1199. package/src/shiki/langs/blade.js +1 -0
  1200. package/src/shiki/langs/bsl.js +1 -0
  1201. package/src/shiki/langs/c.js +1 -0
  1202. package/src/shiki/langs/cadence.js +1 -0
  1203. package/src/shiki/langs/cairo.js +1 -0
  1204. package/src/shiki/langs/clarity.js +1 -0
  1205. package/src/shiki/langs/clojure.js +1 -0
  1206. package/src/shiki/langs/cmake.js +1 -0
  1207. package/src/shiki/langs/cobol.js +1 -0
  1208. package/src/shiki/langs/codeowners.js +1 -0
  1209. package/src/shiki/langs/codeql.js +1 -0
  1210. package/src/shiki/langs/coffee.js +1 -0
  1211. package/src/shiki/langs/common-lisp.js +1 -0
  1212. package/src/shiki/langs/coq.js +1 -0
  1213. package/src/shiki/langs/cpp-macro.js +1 -0
  1214. package/src/shiki/langs/cpp.js +1 -0
  1215. package/src/shiki/langs/crystal.js +1 -0
  1216. package/src/shiki/langs/csharp.js +1 -0
  1217. package/src/shiki/langs/css.js +1 -0
  1218. package/src/shiki/langs/csv.js +1 -0
  1219. package/src/shiki/langs/cue.js +1 -0
  1220. package/src/shiki/langs/cypher.js +1 -0
  1221. package/src/shiki/langs/d.js +1 -0
  1222. package/src/shiki/langs/dart.js +1 -0
  1223. package/src/shiki/langs/dax.js +1 -0
  1224. package/src/shiki/langs/desktop.js +1 -0
  1225. package/src/shiki/langs/diff.js +1 -0
  1226. package/src/shiki/langs/docker.js +1 -0
  1227. package/src/shiki/langs/dotenv.js +1 -0
  1228. package/src/shiki/langs/dream-maker.js +1 -0
  1229. package/src/shiki/langs/edge.js +1 -0
  1230. package/src/shiki/langs/elixir.js +1 -0
  1231. package/src/shiki/langs/elm.js +1 -0
  1232. package/src/shiki/langs/emacs-lisp.js +1 -0
  1233. package/src/shiki/langs/erb.js +1 -0
  1234. package/src/shiki/langs/erlang.js +1 -0
  1235. package/src/shiki/langs/es-tag-css.js +1 -0
  1236. package/src/shiki/langs/es-tag-glsl.js +1 -0
  1237. package/src/shiki/langs/es-tag-html.js +1 -0
  1238. package/src/shiki/langs/es-tag-sql.js +1 -0
  1239. package/src/shiki/langs/es-tag-xml.js +1 -0
  1240. package/src/shiki/langs/fennel.js +1 -0
  1241. package/src/shiki/langs/fish.js +1 -0
  1242. package/src/shiki/langs/fluent.js +1 -0
  1243. package/src/shiki/langs/fortran-fixed-form.js +1 -0
  1244. package/src/shiki/langs/fortran-free-form.js +1 -0
  1245. package/src/shiki/langs/fsharp.js +1 -0
  1246. package/src/shiki/langs/gdresource.js +1 -0
  1247. package/src/shiki/langs/gdscript.js +1 -0
  1248. package/src/shiki/langs/gdshader.js +1 -0
  1249. package/src/shiki/langs/genie.js +1 -0
  1250. package/src/shiki/langs/gherkin.js +1 -0
  1251. package/src/shiki/langs/git-commit.js +1 -0
  1252. package/src/shiki/langs/git-rebase.js +1 -0
  1253. package/src/shiki/langs/gleam.js +1 -0
  1254. package/src/shiki/langs/glimmer-js.js +1 -0
  1255. package/src/shiki/langs/glimmer-ts.js +1 -0
  1256. package/src/shiki/langs/glsl.js +1 -0
  1257. package/src/shiki/langs/gnuplot.js +1 -0
  1258. package/src/shiki/langs/go.js +1 -0
  1259. package/src/shiki/langs/graphql.js +1 -0
  1260. package/src/shiki/langs/groovy.js +1 -0
  1261. package/src/shiki/langs/hack.js +1 -0
  1262. package/src/shiki/langs/haml.js +1 -0
  1263. package/src/shiki/langs/handlebars.js +1 -0
  1264. package/src/shiki/langs/haskell.js +1 -0
  1265. package/src/shiki/langs/haxe.js +1 -0
  1266. package/src/shiki/langs/hcl.js +1 -0
  1267. package/src/shiki/langs/hjson.js +1 -0
  1268. package/src/shiki/langs/hlsl.js +1 -0
  1269. package/src/shiki/langs/html-derivative.js +1 -0
  1270. package/src/shiki/langs/html.js +1 -0
  1271. package/src/shiki/langs/http.js +1 -0
  1272. package/src/shiki/langs/hxml.js +1 -0
  1273. package/src/shiki/langs/hy.js +1 -0
  1274. package/src/shiki/langs/imba.js +1 -0
  1275. package/src/shiki/langs/ini.js +1 -0
  1276. package/src/shiki/langs/java.js +1 -0
  1277. package/src/shiki/langs/javascript.js +1 -0
  1278. package/src/shiki/langs/jinja-html.js +1 -0
  1279. package/src/shiki/langs/jinja.js +1 -0
  1280. package/src/shiki/langs/jison.js +1 -0
  1281. package/src/shiki/langs/json.js +1 -0
  1282. package/src/shiki/langs/json5.js +1 -0
  1283. package/src/shiki/langs/jsonc.js +1 -0
  1284. package/src/shiki/langs/jsonl.js +1 -0
  1285. package/src/shiki/langs/jsonnet.js +1 -0
  1286. package/src/shiki/langs/jssm.js +1 -0
  1287. package/src/shiki/langs/jsx.js +1 -0
  1288. package/src/shiki/langs/julia.js +1 -0
  1289. package/src/shiki/langs/kotlin.js +1 -0
  1290. package/src/shiki/langs/kusto.js +1 -0
  1291. package/src/shiki/langs/latex.js +1 -0
  1292. package/src/shiki/langs/lean.js +1 -0
  1293. package/src/shiki/langs/less.js +1 -0
  1294. package/src/shiki/langs/liquid.js +1 -0
  1295. package/src/shiki/langs/llvm.js +1 -0
  1296. package/src/shiki/langs/log.js +1 -0
  1297. package/src/shiki/langs/logo.js +1 -0
  1298. package/src/shiki/langs/lua.js +1 -0
  1299. package/src/shiki/langs/luau.js +1 -0
  1300. package/src/shiki/langs/make.js +1 -0
  1301. package/src/shiki/langs/markdown-vue.js +1 -0
  1302. package/src/shiki/langs/markdown.js +1 -0
  1303. package/src/shiki/langs/marko.js +1 -0
  1304. package/src/shiki/langs/matlab.js +1 -0
  1305. package/src/shiki/langs/mdc.js +1 -0
  1306. package/src/shiki/langs/mdx.js +1 -0
  1307. package/src/shiki/langs/mermaid.js +1 -0
  1308. package/src/shiki/langs/mipsasm.js +1 -0
  1309. package/src/shiki/langs/mojo.js +1 -0
  1310. package/src/shiki/langs/move.js +1 -0
  1311. package/src/shiki/langs/narrat.js +1 -0
  1312. package/src/shiki/langs/nextflow.js +1 -0
  1313. package/src/shiki/langs/nginx.js +1 -0
  1314. package/src/shiki/langs/nim.js +1 -0
  1315. package/src/shiki/langs/nix.js +1 -0
  1316. package/src/shiki/langs/nushell.js +1 -0
  1317. package/src/shiki/langs/objective-c.js +1 -0
  1318. package/src/shiki/langs/objective-cpp.js +1 -0
  1319. package/src/shiki/langs/ocaml.js +1 -0
  1320. package/src/shiki/langs/pascal.js +1 -0
  1321. package/src/shiki/langs/perl.js +1 -0
  1322. package/src/shiki/langs/php.js +1 -0
  1323. package/src/shiki/langs/plsql.js +1 -0
  1324. package/src/shiki/langs/po.js +1 -0
  1325. package/src/shiki/langs/polar.js +1 -0
  1326. package/src/shiki/langs/postcss.js +1 -0
  1327. package/src/shiki/langs/powerquery.js +1 -0
  1328. package/src/shiki/langs/powershell.js +1 -0
  1329. package/src/shiki/langs/prisma.js +1 -0
  1330. package/src/shiki/langs/prolog.js +1 -0
  1331. package/src/shiki/langs/proto.js +1 -0
  1332. package/src/shiki/langs/pug.js +1 -0
  1333. package/src/shiki/langs/puppet.js +1 -0
  1334. package/src/shiki/langs/purescript.js +1 -0
  1335. package/src/shiki/langs/python.js +1 -0
  1336. package/src/shiki/langs/qml.js +1 -0
  1337. package/src/shiki/langs/qmldir.js +1 -0
  1338. package/src/shiki/langs/qss.js +1 -0
  1339. package/src/shiki/langs/r.js +1 -0
  1340. package/src/shiki/langs/racket.js +1 -0
  1341. package/src/shiki/langs/raku.js +1 -0
  1342. package/src/shiki/langs/razor.js +1 -0
  1343. package/src/shiki/langs/reg.js +1 -0
  1344. package/src/shiki/langs/regexp.js +1 -0
  1345. package/src/shiki/langs/rel.js +1 -0
  1346. package/src/shiki/langs/riscv.js +1 -0
  1347. package/src/shiki/langs/rst.js +1 -0
  1348. package/src/shiki/langs/ruby.js +1 -0
  1349. package/src/shiki/langs/rust.js +1 -0
  1350. package/src/shiki/langs/sas.js +1 -0
  1351. package/src/shiki/langs/sass.js +1 -0
  1352. package/src/shiki/langs/scala.js +1 -0
  1353. package/src/shiki/langs/scheme.js +1 -0
  1354. package/src/shiki/langs/scss.js +1 -0
  1355. package/src/shiki/langs/sdbl.js +1 -0
  1356. package/src/shiki/langs/shaderlab.js +1 -0
  1357. package/src/shiki/langs/shellscript.js +1 -0
  1358. package/src/shiki/langs/shellsession.js +1 -0
  1359. package/src/shiki/langs/smalltalk.js +1 -0
  1360. package/src/shiki/langs/solidity.js +1 -0
  1361. package/src/shiki/langs/soy.js +1 -0
  1362. package/src/shiki/langs/sparql.js +1 -0
  1363. package/src/shiki/langs/splunk.js +1 -0
  1364. package/src/shiki/langs/sql.js +1 -0
  1365. package/src/shiki/langs/ssh-config.js +1 -0
  1366. package/src/shiki/langs/stata.js +1 -0
  1367. package/src/shiki/langs/stylus.js +1 -0
  1368. package/src/shiki/langs/svelte.js +1 -0
  1369. package/src/shiki/langs/swift.js +1 -0
  1370. package/src/shiki/langs/system-verilog.js +1 -0
  1371. package/src/shiki/langs/systemd.js +1 -0
  1372. package/src/shiki/langs/talonscript.js +1 -0
  1373. package/src/shiki/langs/tasl.js +1 -0
  1374. package/src/shiki/langs/tcl.js +1 -0
  1375. package/src/shiki/langs/templ.js +1 -0
  1376. package/src/shiki/langs/terraform.js +1 -0
  1377. package/src/shiki/langs/tex.js +1 -0
  1378. package/src/shiki/langs/toml.js +1 -0
  1379. package/src/shiki/langs/ts-tags.js +1 -0
  1380. package/src/shiki/langs/tsv.js +1 -0
  1381. package/src/shiki/langs/tsx.js +1 -0
  1382. package/src/shiki/langs/turtle.js +1 -0
  1383. package/src/shiki/langs/twig.js +1 -0
  1384. package/src/shiki/langs/typescript.js +1 -0
  1385. package/src/shiki/langs/typespec.js +1 -0
  1386. package/src/shiki/langs/typst.js +1 -0
  1387. package/src/shiki/langs/v.js +1 -0
  1388. package/src/shiki/langs/vala.js +1 -0
  1389. package/src/shiki/langs/vb.js +1 -0
  1390. package/src/shiki/langs/verilog.js +1 -0
  1391. package/src/shiki/langs/vhdl.js +1 -0
  1392. package/src/shiki/langs/viml.js +1 -0
  1393. package/src/shiki/langs/vue-directives.js +1 -0
  1394. package/src/shiki/langs/vue-html.js +1 -0
  1395. package/src/shiki/langs/vue-interpolations.js +1 -0
  1396. package/src/shiki/langs/vue-sfc-style-variable-injection.js +1 -0
  1397. package/src/shiki/langs/vue.js +1 -0
  1398. package/src/shiki/langs/vyper.js +1 -0
  1399. package/src/shiki/langs/wasm.js +1 -0
  1400. package/src/shiki/langs/wenyan.js +1 -0
  1401. package/src/shiki/langs/wgsl.js +1 -0
  1402. package/src/shiki/langs/wikitext.js +1 -0
  1403. package/src/shiki/langs/wit.js +1 -0
  1404. package/src/shiki/langs/wolfram.js +1 -0
  1405. package/src/shiki/langs/xml.js +1 -0
  1406. package/src/shiki/langs/xsl.js +1 -0
  1407. package/src/shiki/langs/yaml.js +1 -0
  1408. package/src/shiki/langs/zenscript.js +1 -0
  1409. package/src/shiki/langs/zig.js +1 -0
  1410. package/src/shiki/themes/andromeeda.js +1 -0
  1411. package/src/shiki/themes/aurora-x.js +1 -0
  1412. package/src/shiki/themes/ayu-dark.js +1 -0
  1413. package/src/shiki/themes/catppuccin-frappe.js +1 -0
  1414. package/src/shiki/themes/catppuccin-latte.js +1 -0
  1415. package/src/shiki/themes/catppuccin-macchiato.js +1 -0
  1416. package/src/shiki/themes/catppuccin-mocha.js +1 -0
  1417. package/src/shiki/themes/dark-plus.js +1 -0
  1418. package/src/shiki/themes/dracula-soft.js +1 -0
  1419. package/src/shiki/themes/dracula.js +1 -0
  1420. package/src/shiki/themes/everforest-dark.js +1 -0
  1421. package/src/shiki/themes/everforest-light.js +1 -0
  1422. package/src/shiki/themes/github-dark-default.js +1 -0
  1423. package/src/shiki/themes/github-dark-dimmed.js +1 -0
  1424. package/src/shiki/themes/github-dark-high-contrast.js +1 -0
  1425. package/src/shiki/themes/github-dark.js +1 -0
  1426. package/src/shiki/themes/github-light-default.js +1 -0
  1427. package/src/shiki/themes/github-light-high-contrast.js +1 -0
  1428. package/src/shiki/themes/github-light.js +1 -0
  1429. package/src/shiki/themes/gruvbox-dark-hard.js +1 -0
  1430. package/src/shiki/themes/gruvbox-dark-medium.js +1 -0
  1431. package/src/shiki/themes/gruvbox-dark-soft.js +1 -0
  1432. package/src/shiki/themes/gruvbox-light-hard.js +1 -0
  1433. package/src/shiki/themes/gruvbox-light-medium.js +1 -0
  1434. package/src/shiki/themes/gruvbox-light-soft.js +1 -0
  1435. package/src/shiki/themes/houston.js +1 -0
  1436. package/src/shiki/themes/kanagawa-dragon.js +1 -0
  1437. package/src/shiki/themes/kanagawa-lotus.js +1 -0
  1438. package/src/shiki/themes/kanagawa-wave.js +1 -0
  1439. package/src/shiki/themes/laserwave.js +1 -0
  1440. package/src/shiki/themes/light-plus.js +1 -0
  1441. package/src/shiki/themes/material-theme-darker.js +1 -0
  1442. package/src/shiki/themes/material-theme-lighter.js +1 -0
  1443. package/src/shiki/themes/material-theme-ocean.js +1 -0
  1444. package/src/shiki/themes/material-theme-palenight.js +1 -0
  1445. package/src/shiki/themes/material-theme.js +1 -0
  1446. package/src/shiki/themes/min-dark.js +1 -0
  1447. package/src/shiki/themes/min-light.js +1 -0
  1448. package/src/shiki/themes/monokai.js +1 -0
  1449. package/src/shiki/themes/night-owl.js +1 -0
  1450. package/src/shiki/themes/nord.js +1 -0
  1451. package/src/shiki/themes/one-dark-pro.js +1 -0
  1452. package/src/shiki/themes/one-light.js +1 -0
  1453. package/src/shiki/themes/plastic.js +1 -0
  1454. package/src/shiki/themes/poimandres.js +1 -0
  1455. package/src/shiki/themes/red.js +1 -0
  1456. package/src/shiki/themes/rose-pine-dawn.js +1 -0
  1457. package/src/shiki/themes/rose-pine-moon.js +1 -0
  1458. package/src/shiki/themes/rose-pine.js +1 -0
  1459. package/src/shiki/themes/slack-dark.js +1 -0
  1460. package/src/shiki/themes/slack-ochin.js +1 -0
  1461. package/src/shiki/themes/snazzy-light.js +1 -0
  1462. package/src/shiki/themes/solarized-dark.js +1 -0
  1463. package/src/shiki/themes/solarized-light.js +1 -0
  1464. package/src/shiki/themes/synthwave-84.js +1 -0
  1465. package/src/shiki/themes/tokyo-night.js +1 -0
  1466. package/src/shiki/themes/vesper.js +1 -0
  1467. package/src/shiki/themes/vitesse-black.js +1 -0
  1468. package/src/shiki/themes/vitesse-dark.js +1 -0
  1469. package/src/shiki/themes/vitesse-light.js +1 -0
  1470. package/client.d.ts +0 -1
  1471. package/dist/app/tailwind.d.ts +0 -3
  1472. package/dist/app/tailwind.js +0 -65
  1473. package/dist/app/tailwind.js.map +0 -1
  1474. package/dist/lib/components/SlotletProvider.d.ts +0 -17
  1475. package/dist/lib/components/SlotletProvider.js +0 -18
  1476. package/dist/lib/components/SlotletProvider.js.map +0 -1
  1477. package/dist/lib/components/SyntaxHighlight.d.ts +0 -11
  1478. package/dist/lib/components/SyntaxHighlight.js +0 -57
  1479. package/dist/lib/components/SyntaxHighlight.js.map +0 -1
  1480. package/dist/lib/components/context/PluginSystem.js +0 -2
  1481. package/dist/lib/components/context/PluginSystem.js.map +0 -1
  1482. package/dist/lib/plugins/markdown/Toc.js.map +0 -1
  1483. package/dist/lib/plugins/openapi/Route.d.ts +0 -6
  1484. package/dist/lib/plugins/openapi/Route.js +0 -6
  1485. package/dist/lib/plugins/openapi/Route.js.map +0 -1
  1486. package/dist/lib/plugins/openapi/client/worker.d.ts +0 -4
  1487. package/dist/lib/plugins/openapi/client/worker.js +0 -29
  1488. package/dist/lib/plugins/openapi/client/worker.js.map +0 -1
  1489. package/dist/lib/plugins/openapi/playground/ResponseTab.d.ts +0 -4
  1490. package/dist/lib/plugins/openapi/playground/ResponseTab.js +0 -42
  1491. package/dist/lib/plugins/openapi/playground/ResponseTab.js.map +0 -1
  1492. package/dist/lib/plugins/openapi/schema/SchemaComponents.js +0 -28
  1493. package/dist/lib/plugins/openapi/schema/SchemaComponents.js.map +0 -1
  1494. package/dist/lib/plugins/openapi-worker.d.ts +0 -1
  1495. package/dist/lib/plugins/openapi-worker.js +0 -8
  1496. package/dist/lib/plugins/openapi-worker.js.map +0 -1
  1497. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.d.ts +0 -2
  1498. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js +0 -3
  1499. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js.map +0 -1
  1500. package/dist/ts.d.ts +0 -6
  1501. package/dist/ts.js +0 -61
  1502. package/dist/ts.js.map +0 -1
  1503. package/dist/vite/plugin-custom-css.js.map +0 -1
  1504. package/dist/vite/plugin-docs.test.js +0 -30
  1505. package/dist/vite/plugin-docs.test.js.map +0 -1
  1506. package/dist/vite/prerender.d.ts +0 -21
  1507. package/dist/vite/prerender.js +0 -89
  1508. package/dist/vite/prerender.js.map +0 -1
  1509. package/lib/AnchorLink-CDlhr8gL.js +0 -706
  1510. package/lib/AnchorLink-CDlhr8gL.js.map +0 -1
  1511. package/lib/AuthenticationPlugin-DeGDVa1r.js +0 -56
  1512. package/lib/AuthenticationPlugin-DeGDVa1r.js.map +0 -1
  1513. package/lib/Button-jK0EsymC.js +0 -48
  1514. package/lib/Button-jK0EsymC.js.map +0 -1
  1515. package/lib/Dialog-k70Qfukb.js +0 -67
  1516. package/lib/Dialog-k70Qfukb.js.map +0 -1
  1517. package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
  1518. package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
  1519. package/lib/Markdown-BorQdbxW.js.map +0 -1
  1520. package/lib/MdxPage-DFlbtJWi.js +0 -174
  1521. package/lib/MdxPage-DFlbtJWi.js.map +0 -1
  1522. package/lib/OperationList-KshJrrLL.js +0 -4691
  1523. package/lib/OperationList-KshJrrLL.js.map +0 -1
  1524. package/lib/Route-DlG_HTMu.js +0 -11
  1525. package/lib/Route-DlG_HTMu.js.map +0 -1
  1526. package/lib/Select-DP74t8Yy.js +0 -223
  1527. package/lib/Select-DP74t8Yy.js.map +0 -1
  1528. package/lib/SidebarBadge-DxFJcJ6V.js +0 -51
  1529. package/lib/SidebarBadge-DxFJcJ6V.js.map +0 -1
  1530. package/lib/SlotletProvider-D2v6rJy1.js +0 -252
  1531. package/lib/SlotletProvider-D2v6rJy1.js.map +0 -1
  1532. package/lib/SyntaxHighlight-CBmwwKoM.js +0 -2983
  1533. package/lib/SyntaxHighlight-CBmwwKoM.js.map +0 -1
  1534. package/lib/__vite-browser-external-BYRIRx8p.js +0 -9
  1535. package/lib/__vite-browser-external-BYRIRx8p.js.map +0 -1
  1536. package/lib/_commonjsHelpers-BkfeUUK-.js +0 -29
  1537. package/lib/_commonjsHelpers-BkfeUUK-.js.map +0 -1
  1538. package/lib/assets/index-B_Jk_Yzp.js.map +0 -1
  1539. package/lib/assets/worker-CPsGZsve.js +0 -18201
  1540. package/lib/assets/worker-CPsGZsve.js.map +0 -1
  1541. package/lib/cn-BmFQLtkS.js.map +0 -1
  1542. package/lib/context-D1nXWxm7.js +0 -22
  1543. package/lib/context-D1nXWxm7.js.map +0 -1
  1544. package/lib/createServer-DK-g7kbB.js +0 -16089
  1545. package/lib/createServer-DK-g7kbB.js.map +0 -1
  1546. package/lib/hook-Diu0rqp-.js +0 -229
  1547. package/lib/hook-Diu0rqp-.js.map +0 -1
  1548. package/lib/index-BcesIHH4.js +0 -1273
  1549. package/lib/index-BcesIHH4.js.map +0 -1
  1550. package/lib/index-BuAyrJe3.js +0 -46
  1551. package/lib/index-BuAyrJe3.js.map +0 -1
  1552. package/lib/index-CkwDvuPt.js +0 -4820
  1553. package/lib/index-CkwDvuPt.js.map +0 -1
  1554. package/lib/index-Czzd9rjU.js +0 -899
  1555. package/lib/index-Czzd9rjU.js.map +0 -1
  1556. package/lib/index-Yn8c3UWE.js +0 -921
  1557. package/lib/index-Yn8c3UWE.js.map +0 -1
  1558. package/lib/index.esm-C5mr_sKO.js +0 -1193
  1559. package/lib/index.esm-C5mr_sKO.js.map +0 -1
  1560. package/lib/invariant-Caa8-XvF.js +0 -26
  1561. package/lib/jsx-runtime-B6kdoens.js +0 -635
  1562. package/lib/jsx-runtime-B6kdoens.js.map +0 -1
  1563. package/lib/prism-bash.min-DadFsM4Z.js +0 -7
  1564. package/lib/prism-bash.min-DadFsM4Z.js.map +0 -1
  1565. package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
  1566. package/lib/prism-csharp.min-Yizuc34Y.js.map +0 -1
  1567. package/lib/prism-java.min-d5iT_mOd.js +0 -7
  1568. package/lib/prism-java.min-d5iT_mOd.js.map +0 -1
  1569. package/lib/prism-javascript.min-CEqHqgbm.js +0 -9
  1570. package/lib/prism-javascript.min-CEqHqgbm.js.map +0 -1
  1571. package/lib/prism-json.min-B1GJqK1k.js +0 -2
  1572. package/lib/prism-json.min-B1GJqK1k.js.map +0 -1
  1573. package/lib/prism-markdown.min-F3U-vPBi.js +0 -61
  1574. package/lib/prism-markdown.min-F3U-vPBi.js.map +0 -1
  1575. package/lib/prism-markup-BNGj0Tvm.js +0 -174
  1576. package/lib/prism-markup-BNGj0Tvm.js.map +0 -1
  1577. package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
  1578. package/lib/prism-markup-templating-DZrrEs0A.js.map +0 -1
  1579. package/lib/prism-objectivec.min-BXSWqpJJ.js +0 -2
  1580. package/lib/prism-objectivec.min-BXSWqpJJ.js.map +0 -1
  1581. package/lib/prism-php.min-o7FpoMP_.js +0 -11
  1582. package/lib/prism-php.min-o7FpoMP_.js.map +0 -1
  1583. package/lib/prism-ruby.min-C7LwcKyz.js +0 -10
  1584. package/lib/prism-ruby.min-C7LwcKyz.js.map +0 -1
  1585. package/lib/prism-typescript.min-oSVeWCAd.js +0 -6
  1586. package/lib/prism-typescript.min-oSVeWCAd.js.map +0 -1
  1587. package/lib/router-lfyopgBI.js +0 -3024
  1588. package/lib/router-lfyopgBI.js.map +0 -1
  1589. package/lib/state-BsPrOUAh.js +0 -252
  1590. package/lib/state-BsPrOUAh.js.map +0 -1
  1591. package/lib/useExposedProps-CTPtylCV.js +0 -10
  1592. package/lib/useExposedProps-CTPtylCV.js.map +0 -1
  1593. package/lib/utils-DcpDOncX.js +0 -1218
  1594. package/lib/utils-DcpDOncX.js.map +0 -1
  1595. package/lib/zudoku.openapi-worker.js +0 -15
  1596. package/lib/zudoku.openapi-worker.js.map +0 -1
  1597. package/src/app/tailwind.ts +0 -68
  1598. package/src/lib/components/SlotletProvider.tsx +0 -55
  1599. package/src/lib/components/SyntaxHighlight.tsx +0 -160
  1600. package/src/lib/components/context/PluginSystem.ts +0 -0
  1601. package/src/lib/plugins/openapi/Route.tsx +0 -19
  1602. package/src/lib/plugins/openapi/client/worker.ts +0 -44
  1603. package/src/lib/plugins/openapi/playground/ResponseTab.tsx +0 -76
  1604. package/src/lib/plugins/openapi/schema/SchemaComponents.tsx +0 -126
  1605. package/src/lib/plugins/openapi-worker.ts +0 -11
  1606. package/src/lib/plugins/search-inkeep/InkeepCustomTrigger.tsx +0 -3
  1607. /package/dist/lib/components/{context/PluginSystem.d.ts → Slot.test.d.ts} +0 -0
  1608. /package/dist/lib/{plugins/markdown → components/navigation}/Toc.d.ts +0 -0
  1609. /package/dist/{vite/plugin-docs.test.d.ts → lib/hooks/useEvent.test.d.ts} +0 -0
@@ -1,95 +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) => {
30
- var a;
17
+ }, xe = (e, n) => {
31
18
  if (e.length === 0)
32
- return r.classGroupId;
33
- const t = e[0], o = r.nextPart.get(t), l = o ? D(e.slice(1), o) : void 0;
34
- if (l)
35
- return l;
36
- 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)
37
24
  return;
38
- const n = e.join(B);
39
- return (a = r.validators.find(({
40
- validator: s
41
- }) => s(n))) == null ? void 0 : a.classGroupId;
42
- }, K = /^\[(.+)\]$/, le = (e) => {
43
- if (K.test(e)) {
44
- const r = K.exec(e)[1], t = r == null ? void 0 : r.substring(0, r.indexOf(":"));
45
- if (t)
46
- 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;
47
34
  }
48
- }, ie = (e) => {
35
+ }, Ge = (e) => {
49
36
  const {
50
- theme: r,
51
- prefix: t
52
- } = e, o = {
37
+ theme: n,
38
+ classGroups: s
39
+ } = e, t = {
53
40
  nextPart: /* @__PURE__ */ new Map(),
54
41
  validators: []
55
42
  };
56
- return ce(Object.entries(e.classGroups), t).forEach(([n, a]) => {
57
- $(a, o, n, r);
58
- }), o;
59
- }, $ = (e, r, t, o) => {
60
- e.forEach((l) => {
61
- if (typeof l == "string") {
62
- const n = l === "" ? r : Q(r, l);
63
- 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;
64
51
  return;
65
52
  }
66
- if (typeof l == "function") {
67
- if (ae(l)) {
68
- $(l(o), r, t, o);
53
+ if (typeof c == "function") {
54
+ if (Te(c)) {
55
+ re(c(t), n, s, t);
69
56
  return;
70
57
  }
71
- r.validators.push({
72
- validator: l,
73
- classGroupId: t
58
+ n.validators.push({
59
+ validator: c,
60
+ classGroupId: s
74
61
  });
75
62
  return;
76
63
  }
77
- Object.entries(l).forEach(([n, a]) => {
78
- $(a, Q(r, n), t, o);
64
+ Object.entries(c).forEach(([m, i]) => {
65
+ re(i, be(n, m), s, t);
79
66
  });
80
67
  });
81
- }, Q = (e, r) => {
82
- let t = e;
83
- return r.split(B).forEach((o) => {
84
- 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, {
85
72
  nextPart: /* @__PURE__ */ new Map(),
86
73
  validators: []
87
- }), t = t.nextPart.get(o);
88
- }), t;
89
- }, ae = (e) => e.isThemeGetter, ce = (e, r) => r ? e.map(([t, o]) => {
90
- 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);
91
- return [t, l];
92
- }) : e, de = (e) => {
74
+ }), s = s.nextPart.get(t);
75
+ }), s;
76
+ }, Te = (e) => e.isThemeGetter, Ee = (e) => {
93
77
  if (e < 1)
94
78
  return {
95
79
  get: () => {
@@ -97,192 +81,257 @@ const B = "-", se = (e) => {
97
81
  set: () => {
98
82
  }
99
83
  };
100
- let r = 0, t = /* @__PURE__ */ new Map(), o = /* @__PURE__ */ new Map();
101
- const l = (n, a) => {
102
- 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());
103
87
  };
104
88
  return {
105
- get(n) {
106
- let a = t.get(n);
107
- if (a !== void 0)
108
- return a;
109
- if ((a = o.get(n)) !== void 0)
110
- 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;
111
95
  },
112
- set(n, a) {
113
- 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);
114
98
  }
115
99
  };
116
- }, ee = "!", pe = (e) => {
100
+ }, te = "!", se = ":", Ne = se.length, Le = (e) => {
117
101
  const {
118
- separator: r,
119
- experimentalParseClassName: t
120
- } = e, o = r.length === 1, l = r[0], n = r.length, a = (s) => {
121
- const u = [];
122
- let g = 0, m = 0, y;
123
- for (let p = 0; p < s.length; p++) {
124
- let f = s[p];
125
- if (g === 0) {
126
- if (f === l && (o || s.slice(p, p + n) === r)) {
127
- 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;
128
113
  continue;
129
114
  }
130
- if (f === "/") {
131
- y = p;
115
+ if (y === "/") {
116
+ g = k;
132
117
  continue;
133
118
  }
134
119
  }
135
- f === "[" ? g++ : f === "]" && g--;
120
+ y === "[" ? i++ : y === "]" ? i-- : y === "(" ? u++ : y === ")" && u--;
136
121
  }
137
- 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;
138
123
  return {
139
- modifiers: u,
140
- hasImportantModifier: v,
141
- baseClassName: w,
142
- maybePostfixModifierPosition: b
124
+ modifiers: m,
125
+ hasImportantModifier: O,
126
+ baseClassName: M,
127
+ maybePostfixModifierPosition: F
143
128
  };
144
129
  };
145
- return t ? (s) => t({
146
- className: s,
147
- parseClassName: a
148
- }) : a;
149
- }, ue = (e) => {
150
- if (e.length <= 1)
151
- return e;
152
- const r = [];
153
- let t = [];
154
- return e.forEach((o) => {
155
- o[0] === "[" ? (r.push(...t.sort(), o), t = []) : t.push(o);
156
- }), r.push(...t.sort()), r;
157
- }, be = (e) => ({
158
- cache: de(e.cacheSize),
159
- parseClassName: pe(e),
160
- ...se(e)
161
- }), 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) => {
162
165
  const {
163
- parseClassName: t,
164
- getClassGroupId: o,
165
- getConflictingClassGroupIds: l
166
- } = r, n = [], a = e.trim().split(ge);
167
- let s = "";
168
- for (let u = a.length - 1; u >= 0; u -= 1) {
169
- const g = a[u], {
170
- modifiers: m,
171
- hasImportantModifier: y,
172
- baseClassName: x,
173
- maybePostfixModifierPosition: v
174
- } = t(g);
175
- let w = !!v, b = o(w ? x.substring(0, v) : x);
176
- if (!b) {
177
- if (!w) {
178
- 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);
179
188
  continue;
180
189
  }
181
- if (b = o(x), !b) {
182
- s = g + (s.length > 0 ? " " + s : s);
190
+ if (A = t(k), !A) {
191
+ p = h + (p.length > 0 ? " " + p : p);
183
192
  continue;
184
193
  }
185
- w = !1;
194
+ G = !1;
186
195
  }
187
- const p = ue(m).join(":"), f = y ? p + ee : p, h = f + b;
188
- if (n.includes(h))
196
+ const $ = m(O).join(":"), _ = F ? $ + te : $, T = _ + A;
197
+ if (i.includes(T))
189
198
  continue;
190
- n.push(h);
191
- const R = l(b, w);
192
- for (let S = 0; S < R.length; ++S) {
193
- const E = R[S];
194
- n.push(f + E);
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);
195
204
  }
196
- s = g + (s.length > 0 ? " " + s : s);
205
+ p = h + (p.length > 0 ? " " + p : p);
197
206
  }
198
- return s;
207
+ return p;
199
208
  };
200
- function me() {
201
- let e = 0, r, t, o = "";
209
+ function Be() {
210
+ let e = 0, n, s, t = "";
202
211
  for (; e < arguments.length; )
203
- (r = arguments[e++]) && (t = re(r)) && (o && (o += " "), o += t);
204
- return o;
212
+ (n = arguments[e++]) && (s = we(n)) && (t && (t += " "), t += s);
213
+ return t;
205
214
  }
206
- const re = (e) => {
215
+ const we = (e) => {
207
216
  if (typeof e == "string")
208
217
  return e;
209
- let r, t = "";
210
- for (let o = 0; o < e.length; o++)
211
- e[o] && (r = re(e[o])) && (t && (t += " "), t += r);
212
- 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;
213
222
  };
214
- function he(e, ...r) {
215
- let t, o, l, n = a;
216
- function a(u) {
217
- const g = r.reduce((m, y) => y(m), e());
218
- 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);
219
228
  }
220
- function s(u) {
221
- const g = o(u);
229
+ function u(p) {
230
+ const g = t(p);
222
231
  if (g)
223
232
  return g;
224
- const m = fe(u, t);
225
- return l(u, m), m;
233
+ const h = _e(p, s);
234
+ return c(p, h), h;
226
235
  }
227
236
  return function() {
228
- return n(me.apply(null, arguments));
237
+ return m(Be.apply(null, arguments));
229
238
  };
230
239
  }
231
- const c = (e) => {
232
- const r = (t) => t[e] || [];
233
- return r.isThemeGetter = !0, r;
234
- }, 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), P = (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"]), Ie = (e) => G(e, Re, Ne), Pe = (e) => G(e, "", Ee), j = () => !0, G = (e, r, t) => {
235
- const o = te.exec(e);
236
- return o ? o[1] ? typeof r == "string" ? o[1] === r : r.has(o[1]) : t(o[2]) : !1;
237
- }, 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) => (
238
244
  // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
239
245
  // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
240
246
  // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
241
- ve.test(e) && !ke.test(e)
242
- ), oe = () => !1, Ee = (e) => Ce.test(e), Ne = (e) => ze.test(e), Te = () => {
243
- 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"), E = 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], N = () => ["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"], I = () => ["", "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()];
244
297
  return {
245
298
  cacheSize: 500,
246
- separator: ":",
247
299
  theme: {
248
- colors: [j],
249
- spacing: [C, z],
250
- blur: ["none", "", A, i],
251
- brightness: k(),
252
- borderColor: [e],
253
- borderRadius: ["none", "", "full", A, i],
254
- borderSpacing: d(),
255
- borderWidth: J(),
256
- contrast: k(),
257
- grayscale: I(),
258
- hueRotate: k(),
259
- invert: I(),
260
- gap: d(),
261
- gradientColorStops: [e],
262
- gradientColorStopPositions: [Ae, z],
263
- inset: V(),
264
- margin: V(),
265
- opacity: k(),
266
- padding: d(),
267
- saturate: k(),
268
- scale: k(),
269
- sepia: I(),
270
- skew: k(),
271
- space: d(),
272
- 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"]
273
319
  },
274
320
  classGroups: {
275
- // Layout
321
+ // --------------
322
+ // --- Layout ---
323
+ // --------------
276
324
  /**
277
325
  * Aspect Ratio
278
326
  * @see https://tailwindcss.com/docs/aspect-ratio
279
327
  */
280
328
  aspect: [{
281
- aspect: ["auto", "square", "video", i]
329
+ aspect: ["auto", "square", L, o, r, G]
282
330
  }],
283
331
  /**
284
332
  * Container
285
333
  * @see https://tailwindcss.com/docs/container
334
+ * @deprecated since Tailwind CSS v4.0.0
286
335
  */
287
336
  container: ["container"],
288
337
  /**
@@ -290,21 +339,21 @@ const c = (e) => {
290
339
  * @see https://tailwindcss.com/docs/columns
291
340
  */
292
341
  columns: [{
293
- columns: [A]
342
+ columns: [d, o, r, u]
294
343
  }],
295
344
  /**
296
345
  * Break After
297
346
  * @see https://tailwindcss.com/docs/break-after
298
347
  */
299
348
  "break-after": [{
300
- "break-after": H()
349
+ "break-after": _()
301
350
  }],
302
351
  /**
303
352
  * Break Before
304
353
  * @see https://tailwindcss.com/docs/break-before
305
354
  */
306
355
  "break-before": [{
307
- "break-before": H()
356
+ "break-before": _()
308
357
  }],
309
358
  /**
310
359
  * Break Inside
@@ -332,6 +381,11 @@ const c = (e) => {
332
381
  * @see https://tailwindcss.com/docs/display
333
382
  */
334
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"],
335
389
  /**
336
390
  * Floats
337
391
  * @see https://tailwindcss.com/docs/float
@@ -363,49 +417,49 @@ const c = (e) => {
363
417
  * @see https://tailwindcss.com/docs/object-position
364
418
  */
365
419
  "object-position": [{
366
- object: [...X(), i]
420
+ object: E()
367
421
  }],
368
422
  /**
369
423
  * Overflow
370
424
  * @see https://tailwindcss.com/docs/overflow
371
425
  */
372
426
  overflow: [{
373
- overflow: W()
427
+ overflow: I()
374
428
  }],
375
429
  /**
376
430
  * Overflow X
377
431
  * @see https://tailwindcss.com/docs/overflow
378
432
  */
379
433
  "overflow-x": [{
380
- "overflow-x": W()
434
+ "overflow-x": I()
381
435
  }],
382
436
  /**
383
437
  * Overflow Y
384
438
  * @see https://tailwindcss.com/docs/overflow
385
439
  */
386
440
  "overflow-y": [{
387
- "overflow-y": W()
441
+ "overflow-y": I()
388
442
  }],
389
443
  /**
390
444
  * Overscroll Behavior
391
445
  * @see https://tailwindcss.com/docs/overscroll-behavior
392
446
  */
393
447
  overscroll: [{
394
- overscroll: L()
448
+ overscroll: B()
395
449
  }],
396
450
  /**
397
451
  * Overscroll Behavior X
398
452
  * @see https://tailwindcss.com/docs/overscroll-behavior
399
453
  */
400
454
  "overscroll-x": [{
401
- "overscroll-x": L()
455
+ "overscroll-x": B()
402
456
  }],
403
457
  /**
404
458
  * Overscroll Behavior Y
405
459
  * @see https://tailwindcss.com/docs/overscroll-behavior
406
460
  */
407
461
  "overscroll-y": [{
408
- "overscroll-y": L()
462
+ "overscroll-y": B()
409
463
  }],
410
464
  /**
411
465
  * Position
@@ -417,63 +471,63 @@ const c = (e) => {
417
471
  * @see https://tailwindcss.com/docs/top-right-bottom-left
418
472
  */
419
473
  inset: [{
420
- inset: [b]
474
+ inset: v()
421
475
  }],
422
476
  /**
423
477
  * Right / Left
424
478
  * @see https://tailwindcss.com/docs/top-right-bottom-left
425
479
  */
426
480
  "inset-x": [{
427
- "inset-x": [b]
481
+ "inset-x": v()
428
482
  }],
429
483
  /**
430
484
  * Top / Bottom
431
485
  * @see https://tailwindcss.com/docs/top-right-bottom-left
432
486
  */
433
487
  "inset-y": [{
434
- "inset-y": [b]
488
+ "inset-y": v()
435
489
  }],
436
490
  /**
437
491
  * Start
438
492
  * @see https://tailwindcss.com/docs/top-right-bottom-left
439
493
  */
440
494
  start: [{
441
- start: [b]
495
+ start: v()
442
496
  }],
443
497
  /**
444
498
  * End
445
499
  * @see https://tailwindcss.com/docs/top-right-bottom-left
446
500
  */
447
501
  end: [{
448
- end: [b]
502
+ end: v()
449
503
  }],
450
504
  /**
451
505
  * Top
452
506
  * @see https://tailwindcss.com/docs/top-right-bottom-left
453
507
  */
454
508
  top: [{
455
- top: [b]
509
+ top: v()
456
510
  }],
457
511
  /**
458
512
  * Right
459
513
  * @see https://tailwindcss.com/docs/top-right-bottom-left
460
514
  */
461
515
  right: [{
462
- right: [b]
516
+ right: v()
463
517
  }],
464
518
  /**
465
519
  * Bottom
466
520
  * @see https://tailwindcss.com/docs/top-right-bottom-left
467
521
  */
468
522
  bottom: [{
469
- bottom: [b]
523
+ bottom: v()
470
524
  }],
471
525
  /**
472
526
  * Left
473
527
  * @see https://tailwindcss.com/docs/top-right-bottom-left
474
528
  */
475
529
  left: [{
476
- left: [b]
530
+ left: v()
477
531
  }],
478
532
  /**
479
533
  * Visibility
@@ -485,15 +539,17 @@ const c = (e) => {
485
539
  * @see https://tailwindcss.com/docs/z-index
486
540
  */
487
541
  z: [{
488
- z: ["auto", P, i]
542
+ z: [S, "auto", r, o]
489
543
  }],
490
- // Flexbox and Grid
544
+ // ------------------------
545
+ // --- Flexbox and Grid ---
546
+ // ------------------------
491
547
  /**
492
548
  * Flex Basis
493
549
  * @see https://tailwindcss.com/docs/flex-basis
494
550
  */
495
551
  basis: [{
496
- basis: V()
552
+ basis: [L, "full", "auto", u, ...l()]
497
553
  }],
498
554
  /**
499
555
  * Flex Direction
@@ -507,95 +563,91 @@ const c = (e) => {
507
563
  * @see https://tailwindcss.com/docs/flex-wrap
508
564
  */
509
565
  "flex-wrap": [{
510
- flex: ["wrap", "wrap-reverse", "nowrap"]
566
+ flex: ["nowrap", "wrap", "wrap-reverse"]
511
567
  }],
512
568
  /**
513
569
  * Flex
514
570
  * @see https://tailwindcss.com/docs/flex
515
571
  */
516
572
  flex: [{
517
- flex: ["1", "auto", "initial", "none", i]
573
+ flex: [d, L, "auto", "initial", "none", o]
518
574
  }],
519
575
  /**
520
576
  * Flex Grow
521
577
  * @see https://tailwindcss.com/docs/flex-grow
522
578
  */
523
579
  grow: [{
524
- grow: I()
580
+ grow: ["", d, r, o]
525
581
  }],
526
582
  /**
527
583
  * Flex Shrink
528
584
  * @see https://tailwindcss.com/docs/flex-shrink
529
585
  */
530
586
  shrink: [{
531
- shrink: I()
587
+ shrink: ["", d, r, o]
532
588
  }],
533
589
  /**
534
590
  * Order
535
591
  * @see https://tailwindcss.com/docs/order
536
592
  */
537
593
  order: [{
538
- order: ["first", "last", "none", P, i]
594
+ order: [S, "first", "last", "none", r, o]
539
595
  }],
540
596
  /**
541
597
  * Grid Template Columns
542
598
  * @see https://tailwindcss.com/docs/grid-template-columns
543
599
  */
544
600
  "grid-cols": [{
545
- "grid-cols": [j]
601
+ "grid-cols": ae()
546
602
  }],
547
603
  /**
548
604
  * Grid Column Start / End
549
605
  * @see https://tailwindcss.com/docs/grid-column
550
606
  */
551
607
  "col-start-end": [{
552
- col: ["auto", {
553
- span: ["full", P, i]
554
- }, i]
608
+ col: ie()
555
609
  }],
556
610
  /**
557
611
  * Grid Column Start
558
612
  * @see https://tailwindcss.com/docs/grid-column
559
613
  */
560
614
  "col-start": [{
561
- "col-start": N()
615
+ "col-start": U()
562
616
  }],
563
617
  /**
564
618
  * Grid Column End
565
619
  * @see https://tailwindcss.com/docs/grid-column
566
620
  */
567
621
  "col-end": [{
568
- "col-end": N()
622
+ "col-end": U()
569
623
  }],
570
624
  /**
571
625
  * Grid Template Rows
572
626
  * @see https://tailwindcss.com/docs/grid-template-rows
573
627
  */
574
628
  "grid-rows": [{
575
- "grid-rows": [j]
629
+ "grid-rows": ae()
576
630
  }],
577
631
  /**
578
632
  * Grid Row Start / End
579
633
  * @see https://tailwindcss.com/docs/grid-row
580
634
  */
581
635
  "row-start-end": [{
582
- row: ["auto", {
583
- span: [P, i]
584
- }, i]
636
+ row: ie()
585
637
  }],
586
638
  /**
587
639
  * Grid Row Start
588
640
  * @see https://tailwindcss.com/docs/grid-row
589
641
  */
590
642
  "row-start": [{
591
- "row-start": N()
643
+ "row-start": U()
592
644
  }],
593
645
  /**
594
646
  * Grid Row End
595
647
  * @see https://tailwindcss.com/docs/grid-row
596
648
  */
597
649
  "row-end": [{
598
- "row-end": N()
650
+ "row-end": U()
599
651
  }],
600
652
  /**
601
653
  * Grid Auto Flow
@@ -609,98 +661,102 @@ const c = (e) => {
609
661
  * @see https://tailwindcss.com/docs/grid-auto-columns
610
662
  */
611
663
  "auto-cols": [{
612
- "auto-cols": ["auto", "min", "max", "fr", i]
664
+ "auto-cols": le()
613
665
  }],
614
666
  /**
615
667
  * Grid Auto Rows
616
668
  * @see https://tailwindcss.com/docs/grid-auto-rows
617
669
  */
618
670
  "auto-rows": [{
619
- "auto-rows": ["auto", "min", "max", "fr", i]
671
+ "auto-rows": le()
620
672
  }],
621
673
  /**
622
674
  * Gap
623
675
  * @see https://tailwindcss.com/docs/gap
624
676
  */
625
677
  gap: [{
626
- gap: [x]
678
+ gap: l()
627
679
  }],
628
680
  /**
629
681
  * Gap X
630
682
  * @see https://tailwindcss.com/docs/gap
631
683
  */
632
684
  "gap-x": [{
633
- "gap-x": [x]
685
+ "gap-x": l()
634
686
  }],
635
687
  /**
636
688
  * Gap Y
637
689
  * @see https://tailwindcss.com/docs/gap
638
690
  */
639
691
  "gap-y": [{
640
- "gap-y": [x]
692
+ "gap-y": l()
641
693
  }],
642
694
  /**
643
695
  * Justify Content
644
696
  * @see https://tailwindcss.com/docs/justify-content
645
697
  */
646
698
  "justify-content": [{
647
- justify: ["normal", ...O()]
699
+ justify: [...Q(), "normal"]
648
700
  }],
649
701
  /**
650
702
  * Justify Items
651
703
  * @see https://tailwindcss.com/docs/justify-items
652
704
  */
653
705
  "justify-items": [{
654
- "justify-items": ["start", "end", "center", "stretch"]
706
+ "justify-items": [...N(), "normal"]
655
707
  }],
656
708
  /**
657
709
  * Justify Self
658
710
  * @see https://tailwindcss.com/docs/justify-self
659
711
  */
660
712
  "justify-self": [{
661
- "justify-self": ["auto", "start", "end", "center", "stretch"]
713
+ "justify-self": ["auto", ...N()]
662
714
  }],
663
715
  /**
664
716
  * Align Content
665
717
  * @see https://tailwindcss.com/docs/align-content
666
718
  */
667
719
  "align-content": [{
668
- content: ["normal", ...O(), "baseline"]
720
+ content: ["normal", ...Q()]
669
721
  }],
670
722
  /**
671
723
  * Align Items
672
724
  * @see https://tailwindcss.com/docs/align-items
673
725
  */
674
726
  "align-items": [{
675
- items: ["start", "end", "center", "baseline", "stretch"]
727
+ items: [...N(), {
728
+ baseline: ["", "last"]
729
+ }]
676
730
  }],
677
731
  /**
678
732
  * Align Self
679
733
  * @see https://tailwindcss.com/docs/align-self
680
734
  */
681
735
  "align-self": [{
682
- self: ["auto", "start", "end", "center", "stretch", "baseline"]
736
+ self: ["auto", ...N(), {
737
+ baseline: ["", "last"]
738
+ }]
683
739
  }],
684
740
  /**
685
741
  * Place Content
686
742
  * @see https://tailwindcss.com/docs/place-content
687
743
  */
688
744
  "place-content": [{
689
- "place-content": [...O(), "baseline"]
745
+ "place-content": Q()
690
746
  }],
691
747
  /**
692
748
  * Place Items
693
749
  * @see https://tailwindcss.com/docs/place-items
694
750
  */
695
751
  "place-items": [{
696
- "place-items": ["start", "end", "center", "baseline", "stretch"]
752
+ "place-items": [...N(), "baseline"]
697
753
  }],
698
754
  /**
699
755
  * Place Self
700
756
  * @see https://tailwindcss.com/docs/place-self
701
757
  */
702
758
  "place-self": [{
703
- "place-self": ["auto", "start", "end", "center", "stretch"]
759
+ "place-self": ["auto", ...N()]
704
760
  }],
705
761
  // Spacing
706
762
  /**
@@ -708,210 +764,229 @@ const c = (e) => {
708
764
  * @see https://tailwindcss.com/docs/padding
709
765
  */
710
766
  p: [{
711
- p: [h]
767
+ p: l()
712
768
  }],
713
769
  /**
714
770
  * Padding X
715
771
  * @see https://tailwindcss.com/docs/padding
716
772
  */
717
773
  px: [{
718
- px: [h]
774
+ px: l()
719
775
  }],
720
776
  /**
721
777
  * Padding Y
722
778
  * @see https://tailwindcss.com/docs/padding
723
779
  */
724
780
  py: [{
725
- py: [h]
781
+ py: l()
726
782
  }],
727
783
  /**
728
784
  * Padding Start
729
785
  * @see https://tailwindcss.com/docs/padding
730
786
  */
731
787
  ps: [{
732
- ps: [h]
788
+ ps: l()
733
789
  }],
734
790
  /**
735
791
  * Padding End
736
792
  * @see https://tailwindcss.com/docs/padding
737
793
  */
738
794
  pe: [{
739
- pe: [h]
795
+ pe: l()
740
796
  }],
741
797
  /**
742
798
  * Padding Top
743
799
  * @see https://tailwindcss.com/docs/padding
744
800
  */
745
801
  pt: [{
746
- pt: [h]
802
+ pt: l()
747
803
  }],
748
804
  /**
749
805
  * Padding Right
750
806
  * @see https://tailwindcss.com/docs/padding
751
807
  */
752
808
  pr: [{
753
- pr: [h]
809
+ pr: l()
754
810
  }],
755
811
  /**
756
812
  * Padding Bottom
757
813
  * @see https://tailwindcss.com/docs/padding
758
814
  */
759
815
  pb: [{
760
- pb: [h]
816
+ pb: l()
761
817
  }],
762
818
  /**
763
819
  * Padding Left
764
820
  * @see https://tailwindcss.com/docs/padding
765
821
  */
766
822
  pl: [{
767
- pl: [h]
823
+ pl: l()
768
824
  }],
769
825
  /**
770
826
  * Margin
771
827
  * @see https://tailwindcss.com/docs/margin
772
828
  */
773
829
  m: [{
774
- m: [p]
830
+ m: z()
775
831
  }],
776
832
  /**
777
833
  * Margin X
778
834
  * @see https://tailwindcss.com/docs/margin
779
835
  */
780
836
  mx: [{
781
- mx: [p]
837
+ mx: z()
782
838
  }],
783
839
  /**
784
840
  * Margin Y
785
841
  * @see https://tailwindcss.com/docs/margin
786
842
  */
787
843
  my: [{
788
- my: [p]
844
+ my: z()
789
845
  }],
790
846
  /**
791
847
  * Margin Start
792
848
  * @see https://tailwindcss.com/docs/margin
793
849
  */
794
850
  ms: [{
795
- ms: [p]
851
+ ms: z()
796
852
  }],
797
853
  /**
798
854
  * Margin End
799
855
  * @see https://tailwindcss.com/docs/margin
800
856
  */
801
857
  me: [{
802
- me: [p]
858
+ me: z()
803
859
  }],
804
860
  /**
805
861
  * Margin Top
806
862
  * @see https://tailwindcss.com/docs/margin
807
863
  */
808
864
  mt: [{
809
- mt: [p]
865
+ mt: z()
810
866
  }],
811
867
  /**
812
868
  * Margin Right
813
869
  * @see https://tailwindcss.com/docs/margin
814
870
  */
815
871
  mr: [{
816
- mr: [p]
872
+ mr: z()
817
873
  }],
818
874
  /**
819
875
  * Margin Bottom
820
876
  * @see https://tailwindcss.com/docs/margin
821
877
  */
822
878
  mb: [{
823
- mb: [p]
879
+ mb: z()
824
880
  }],
825
881
  /**
826
882
  * Margin Left
827
883
  * @see https://tailwindcss.com/docs/margin
828
884
  */
829
885
  ml: [{
830
- ml: [p]
886
+ ml: z()
831
887
  }],
832
888
  /**
833
889
  * Space Between X
834
- * @see https://tailwindcss.com/docs/space
890
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
835
891
  */
836
892
  "space-x": [{
837
- "space-x": [F]
893
+ "space-x": l()
838
894
  }],
839
895
  /**
840
896
  * Space Between X Reverse
841
- * @see https://tailwindcss.com/docs/space
897
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
842
898
  */
843
899
  "space-x-reverse": ["space-x-reverse"],
844
900
  /**
845
901
  * Space Between Y
846
- * @see https://tailwindcss.com/docs/space
902
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
847
903
  */
848
904
  "space-y": [{
849
- "space-y": [F]
905
+ "space-y": l()
850
906
  }],
851
907
  /**
852
908
  * Space Between Y Reverse
853
- * @see https://tailwindcss.com/docs/space
909
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
854
910
  */
855
911
  "space-y-reverse": ["space-y-reverse"],
856
- // 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
+ }],
857
922
  /**
858
923
  * Width
859
924
  * @see https://tailwindcss.com/docs/width
860
925
  */
861
926
  w: [{
862
- w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", i, r]
927
+ w: [u, "screen", ...P()]
863
928
  }],
864
929
  /**
865
930
  * Min-Width
866
931
  * @see https://tailwindcss.com/docs/min-width
867
932
  */
868
933
  "min-w": [{
869
- "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
+ ]
870
941
  }],
871
942
  /**
872
943
  * Max-Width
873
944
  * @see https://tailwindcss.com/docs/max-width
874
945
  */
875
946
  "max-w": [{
876
- "max-w": [i, r, "none", "full", "min", "max", "fit", "prose", {
877
- screen: [A]
878
- }, 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
+ ]
879
959
  }],
880
960
  /**
881
961
  * Height
882
962
  * @see https://tailwindcss.com/docs/height
883
963
  */
884
964
  h: [{
885
- h: [i, r, "auto", "min", "max", "fit", "svh", "lvh", "dvh"]
965
+ h: ["screen", "lh", ...P()]
886
966
  }],
887
967
  /**
888
968
  * Min-Height
889
969
  * @see https://tailwindcss.com/docs/min-height
890
970
  */
891
971
  "min-h": [{
892
- "min-h": [i, r, "min", "max", "fit", "svh", "lvh", "dvh"]
972
+ "min-h": ["screen", "lh", "none", ...P()]
893
973
  }],
894
974
  /**
895
975
  * Max-Height
896
976
  * @see https://tailwindcss.com/docs/max-height
897
977
  */
898
978
  "max-h": [{
899
- "max-h": [i, r, "min", "max", "fit", "svh", "lvh", "dvh"]
979
+ "max-h": ["screen", "lh", ...P()]
900
980
  }],
901
- /**
902
- * Size
903
- * @see https://tailwindcss.com/docs/size
904
- */
905
- size: [{
906
- size: [i, r, "auto", "min", "max", "fit"]
907
- }],
908
- // Typography
981
+ // ------------------
982
+ // --- Typography ---
983
+ // ------------------
909
984
  /**
910
985
  * Font Size
911
986
  * @see https://tailwindcss.com/docs/font-size
912
987
  */
913
988
  "font-size": [{
914
- text: ["base", A, z]
989
+ text: ["base", s, W, R]
915
990
  }],
916
991
  /**
917
992
  * Font Smoothing
@@ -928,14 +1003,21 @@ const c = (e) => {
928
1003
  * @see https://tailwindcss.com/docs/font-weight
929
1004
  */
930
1005
  "font-weight": [{
931
- 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]
932
1014
  }],
933
1015
  /**
934
1016
  * Font Family
935
1017
  * @see https://tailwindcss.com/docs/font-family
936
1018
  */
937
1019
  "font-family": [{
938
- font: [j]
1020
+ font: [ro, o, n]
939
1021
  }],
940
1022
  /**
941
1023
  * Font Variant Numeric
@@ -966,41 +1048,38 @@ const c = (e) => {
966
1048
  * Font Variant Numeric
967
1049
  * @see https://tailwindcss.com/docs/font-variant-numeric
968
1050
  */
969
- "fvn-fraction": ["diagonal-fractions", "stacked-fractons"],
1051
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
970
1052
  /**
971
1053
  * Letter Spacing
972
1054
  * @see https://tailwindcss.com/docs/letter-spacing
973
1055
  */
974
1056
  tracking: [{
975
- tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", i]
1057
+ tracking: [c, r, o]
976
1058
  }],
977
1059
  /**
978
1060
  * Line Clamp
979
1061
  * @see https://tailwindcss.com/docs/line-clamp
980
1062
  */
981
1063
  "line-clamp": [{
982
- "line-clamp": ["none", M, _]
1064
+ "line-clamp": [d, "none", r, oe]
983
1065
  }],
984
1066
  /**
985
1067
  * Line Height
986
1068
  * @see https://tailwindcss.com/docs/line-height
987
1069
  */
988
1070
  leading: [{
989
- 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
+ ]
990
1076
  }],
991
1077
  /**
992
1078
  * List Style Image
993
1079
  * @see https://tailwindcss.com/docs/list-style-image
994
1080
  */
995
1081
  "list-image": [{
996
- "list-image": ["none", i]
997
- }],
998
- /**
999
- * List Style Type
1000
- * @see https://tailwindcss.com/docs/list-style-type
1001
- */
1002
- "list-style-type": [{
1003
- list: ["none", "disc", "decimal", i]
1082
+ "list-image": ["none", r, o]
1004
1083
  }],
1005
1084
  /**
1006
1085
  * List Style Position
@@ -1010,19 +1089,11 @@ const c = (e) => {
1010
1089
  list: ["inside", "outside"]
1011
1090
  }],
1012
1091
  /**
1013
- * Placeholder Color
1014
- * @deprecated since Tailwind CSS v3.0.0
1015
- * @see https://tailwindcss.com/docs/placeholder-color
1016
- */
1017
- "placeholder-color": [{
1018
- placeholder: [e]
1019
- }],
1020
- /**
1021
- * Placeholder Opacity
1022
- * @see https://tailwindcss.com/docs/placeholder-opacity
1092
+ * List Style Type
1093
+ * @see https://tailwindcss.com/docs/list-style-type
1023
1094
  */
1024
- "placeholder-opacity": [{
1025
- "placeholder-opacity": [f]
1095
+ "list-style-type": [{
1096
+ list: ["disc", "decimal", "none", r, o]
1026
1097
  }],
1027
1098
  /**
1028
1099
  * Text Alignment
@@ -1032,18 +1103,19 @@ const c = (e) => {
1032
1103
  text: ["left", "center", "right", "justify", "start", "end"]
1033
1104
  }],
1034
1105
  /**
1035
- * Text Color
1036
- * @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
1037
1109
  */
1038
- "text-color": [{
1039
- text: [e]
1110
+ "placeholder-color": [{
1111
+ placeholder: a()
1040
1112
  }],
1041
1113
  /**
1042
- * Text Opacity
1043
- * @see https://tailwindcss.com/docs/text-opacity
1114
+ * Text Color
1115
+ * @see https://tailwindcss.com/docs/text-color
1044
1116
  */
1045
- "text-opacity": [{
1046
- "text-opacity": [f]
1117
+ "text-color": [{
1118
+ text: a()
1047
1119
  }],
1048
1120
  /**
1049
1121
  * Text Decoration
@@ -1055,28 +1127,28 @@ const c = (e) => {
1055
1127
  * @see https://tailwindcss.com/docs/text-decoration-style
1056
1128
  */
1057
1129
  "text-decoration-style": [{
1058
- decoration: [...T(), "wavy"]
1130
+ decoration: [...q(), "wavy"]
1059
1131
  }],
1060
1132
  /**
1061
1133
  * Text Decoration Thickness
1062
1134
  * @see https://tailwindcss.com/docs/text-decoration-thickness
1063
1135
  */
1064
1136
  "text-decoration-thickness": [{
1065
- decoration: ["auto", "from-font", C, z]
1066
- }],
1067
- /**
1068
- * Text Underline Offset
1069
- * @see https://tailwindcss.com/docs/text-underline-offset
1070
- */
1071
- "underline-offset": [{
1072
- "underline-offset": ["auto", C, i]
1137
+ decoration: [d, "from-font", "auto", r, R]
1073
1138
  }],
1074
1139
  /**
1075
1140
  * Text Decoration Color
1076
1141
  * @see https://tailwindcss.com/docs/text-decoration-color
1077
1142
  */
1078
1143
  "text-decoration-color": [{
1079
- 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]
1080
1152
  }],
1081
1153
  /**
1082
1154
  * Text Transform
@@ -1100,14 +1172,14 @@ const c = (e) => {
1100
1172
  * @see https://tailwindcss.com/docs/text-indent
1101
1173
  */
1102
1174
  indent: [{
1103
- indent: d()
1175
+ indent: l()
1104
1176
  }],
1105
1177
  /**
1106
1178
  * Vertical Alignment
1107
1179
  * @see https://tailwindcss.com/docs/vertical-align
1108
1180
  */
1109
1181
  "vertical-align": [{
1110
- 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]
1111
1183
  }],
1112
1184
  /**
1113
1185
  * Whitespace
@@ -1123,6 +1195,13 @@ const c = (e) => {
1123
1195
  break: [{
1124
1196
  break: ["normal", "words", "all", "keep"]
1125
1197
  }],
1198
+ /**
1199
+ * Overflow Wrap
1200
+ * @see https://tailwindcss.com/docs/overflow-wrap
1201
+ */
1202
+ wrap: [{
1203
+ wrap: ["break-word", "anywhere", "normal"]
1204
+ }],
1126
1205
  /**
1127
1206
  * Hyphens
1128
1207
  * @see https://tailwindcss.com/docs/hyphens
@@ -1135,9 +1214,11 @@ const c = (e) => {
1135
1214
  * @see https://tailwindcss.com/docs/content
1136
1215
  */
1137
1216
  content: [{
1138
- content: ["none", i]
1217
+ content: ["none", r, o]
1139
1218
  }],
1140
- // Backgrounds
1219
+ // -------------------
1220
+ // --- Backgrounds ---
1221
+ // -------------------
1141
1222
  /**
1142
1223
  * Background Attachment
1143
1224
  * @see https://tailwindcss.com/docs/background-attachment
@@ -1152,14 +1233,6 @@ const c = (e) => {
1152
1233
  "bg-clip": [{
1153
1234
  "bg-clip": ["border", "padding", "content", "text"]
1154
1235
  }],
1155
- /**
1156
- * Background Opacity
1157
- * @deprecated since Tailwind CSS v3.0.0
1158
- * @see https://tailwindcss.com/docs/background-opacity
1159
- */
1160
- "bg-opacity": [{
1161
- "bg-opacity": [f]
1162
- }],
1163
1236
  /**
1164
1237
  * Background Origin
1165
1238
  * @see https://tailwindcss.com/docs/background-origin
@@ -1172,23 +1245,21 @@ const c = (e) => {
1172
1245
  * @see https://tailwindcss.com/docs/background-position
1173
1246
  */
1174
1247
  "bg-position": [{
1175
- bg: [...X(), Ge]
1248
+ bg: ce()
1176
1249
  }],
1177
1250
  /**
1178
1251
  * Background Repeat
1179
1252
  * @see https://tailwindcss.com/docs/background-repeat
1180
1253
  */
1181
1254
  "bg-repeat": [{
1182
- bg: ["no-repeat", {
1183
- repeat: ["", "x", "y", "round", "space"]
1184
- }]
1255
+ bg: de()
1185
1256
  }],
1186
1257
  /**
1187
1258
  * Background Size
1188
1259
  * @see https://tailwindcss.com/docs/background-size
1189
1260
  */
1190
1261
  "bg-size": [{
1191
- bg: ["auto", "cover", "contain", Me]
1262
+ bg: me()
1192
1263
  }],
1193
1264
  /**
1194
1265
  * Background Image
@@ -1196,597 +1267,863 @@ const c = (e) => {
1196
1267
  */
1197
1268
  "bg-image": [{
1198
1269
  bg: ["none", {
1199
- "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1200
- }, Ie]
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]
1201
1276
  }],
1202
1277
  /**
1203
1278
  * Background Color
1204
1279
  * @see https://tailwindcss.com/docs/background-color
1205
1280
  */
1206
1281
  "bg-color": [{
1207
- bg: [e]
1282
+ bg: a()
1208
1283
  }],
1209
1284
  /**
1210
1285
  * Gradient Color Stops From Position
1211
1286
  * @see https://tailwindcss.com/docs/gradient-color-stops
1212
1287
  */
1213
1288
  "gradient-from-pos": [{
1214
- from: [w]
1289
+ from: Y()
1215
1290
  }],
1216
1291
  /**
1217
1292
  * Gradient Color Stops Via Position
1218
1293
  * @see https://tailwindcss.com/docs/gradient-color-stops
1219
1294
  */
1220
1295
  "gradient-via-pos": [{
1221
- via: [w]
1296
+ via: Y()
1222
1297
  }],
1223
1298
  /**
1224
1299
  * Gradient Color Stops To Position
1225
1300
  * @see https://tailwindcss.com/docs/gradient-color-stops
1226
1301
  */
1227
1302
  "gradient-to-pos": [{
1228
- to: [w]
1303
+ to: Y()
1229
1304
  }],
1230
1305
  /**
1231
1306
  * Gradient Color Stops From
1232
1307
  * @see https://tailwindcss.com/docs/gradient-color-stops
1233
1308
  */
1234
1309
  "gradient-from": [{
1235
- from: [v]
1310
+ from: a()
1236
1311
  }],
1237
1312
  /**
1238
1313
  * Gradient Color Stops Via
1239
1314
  * @see https://tailwindcss.com/docs/gradient-color-stops
1240
1315
  */
1241
1316
  "gradient-via": [{
1242
- via: [v]
1317
+ via: a()
1243
1318
  }],
1244
1319
  /**
1245
1320
  * Gradient Color Stops To
1246
1321
  * @see https://tailwindcss.com/docs/gradient-color-stops
1247
1322
  */
1248
1323
  "gradient-to": [{
1249
- to: [v]
1324
+ to: a()
1250
1325
  }],
1251
- // Borders
1326
+ // ---------------
1327
+ // --- Borders ---
1328
+ // ---------------
1252
1329
  /**
1253
1330
  * Border Radius
1254
1331
  * @see https://tailwindcss.com/docs/border-radius
1255
1332
  */
1256
1333
  rounded: [{
1257
- rounded: [n]
1334
+ rounded: x()
1258
1335
  }],
1259
1336
  /**
1260
1337
  * Border Radius Start
1261
1338
  * @see https://tailwindcss.com/docs/border-radius
1262
1339
  */
1263
1340
  "rounded-s": [{
1264
- "rounded-s": [n]
1341
+ "rounded-s": x()
1265
1342
  }],
1266
1343
  /**
1267
1344
  * Border Radius End
1268
1345
  * @see https://tailwindcss.com/docs/border-radius
1269
1346
  */
1270
1347
  "rounded-e": [{
1271
- "rounded-e": [n]
1348
+ "rounded-e": x()
1272
1349
  }],
1273
1350
  /**
1274
1351
  * Border Radius Top
1275
1352
  * @see https://tailwindcss.com/docs/border-radius
1276
1353
  */
1277
1354
  "rounded-t": [{
1278
- "rounded-t": [n]
1355
+ "rounded-t": x()
1279
1356
  }],
1280
1357
  /**
1281
1358
  * Border Radius Right
1282
1359
  * @see https://tailwindcss.com/docs/border-radius
1283
1360
  */
1284
1361
  "rounded-r": [{
1285
- "rounded-r": [n]
1362
+ "rounded-r": x()
1286
1363
  }],
1287
1364
  /**
1288
1365
  * Border Radius Bottom
1289
1366
  * @see https://tailwindcss.com/docs/border-radius
1290
1367
  */
1291
1368
  "rounded-b": [{
1292
- "rounded-b": [n]
1369
+ "rounded-b": x()
1293
1370
  }],
1294
1371
  /**
1295
1372
  * Border Radius Left
1296
1373
  * @see https://tailwindcss.com/docs/border-radius
1297
1374
  */
1298
1375
  "rounded-l": [{
1299
- "rounded-l": [n]
1376
+ "rounded-l": x()
1300
1377
  }],
1301
1378
  /**
1302
1379
  * Border Radius Start Start
1303
1380
  * @see https://tailwindcss.com/docs/border-radius
1304
1381
  */
1305
1382
  "rounded-ss": [{
1306
- "rounded-ss": [n]
1383
+ "rounded-ss": x()
1307
1384
  }],
1308
1385
  /**
1309
1386
  * Border Radius Start End
1310
1387
  * @see https://tailwindcss.com/docs/border-radius
1311
1388
  */
1312
1389
  "rounded-se": [{
1313
- "rounded-se": [n]
1390
+ "rounded-se": x()
1314
1391
  }],
1315
1392
  /**
1316
1393
  * Border Radius End End
1317
1394
  * @see https://tailwindcss.com/docs/border-radius
1318
1395
  */
1319
1396
  "rounded-ee": [{
1320
- "rounded-ee": [n]
1397
+ "rounded-ee": x()
1321
1398
  }],
1322
1399
  /**
1323
1400
  * Border Radius End Start
1324
1401
  * @see https://tailwindcss.com/docs/border-radius
1325
1402
  */
1326
1403
  "rounded-es": [{
1327
- "rounded-es": [n]
1404
+ "rounded-es": x()
1328
1405
  }],
1329
1406
  /**
1330
1407
  * Border Radius Top Left
1331
1408
  * @see https://tailwindcss.com/docs/border-radius
1332
1409
  */
1333
1410
  "rounded-tl": [{
1334
- "rounded-tl": [n]
1411
+ "rounded-tl": x()
1335
1412
  }],
1336
1413
  /**
1337
1414
  * Border Radius Top Right
1338
1415
  * @see https://tailwindcss.com/docs/border-radius
1339
1416
  */
1340
1417
  "rounded-tr": [{
1341
- "rounded-tr": [n]
1418
+ "rounded-tr": x()
1342
1419
  }],
1343
1420
  /**
1344
1421
  * Border Radius Bottom Right
1345
1422
  * @see https://tailwindcss.com/docs/border-radius
1346
1423
  */
1347
1424
  "rounded-br": [{
1348
- "rounded-br": [n]
1425
+ "rounded-br": x()
1349
1426
  }],
1350
1427
  /**
1351
1428
  * Border Radius Bottom Left
1352
1429
  * @see https://tailwindcss.com/docs/border-radius
1353
1430
  */
1354
1431
  "rounded-bl": [{
1355
- "rounded-bl": [n]
1432
+ "rounded-bl": x()
1356
1433
  }],
1357
1434
  /**
1358
1435
  * Border Width
1359
1436
  * @see https://tailwindcss.com/docs/border-width
1360
1437
  */
1361
1438
  "border-w": [{
1362
- border: [s]
1439
+ border: w()
1363
1440
  }],
1364
1441
  /**
1365
1442
  * Border Width X
1366
1443
  * @see https://tailwindcss.com/docs/border-width
1367
1444
  */
1368
1445
  "border-w-x": [{
1369
- "border-x": [s]
1446
+ "border-x": w()
1370
1447
  }],
1371
1448
  /**
1372
1449
  * Border Width Y
1373
1450
  * @see https://tailwindcss.com/docs/border-width
1374
1451
  */
1375
1452
  "border-w-y": [{
1376
- "border-y": [s]
1453
+ "border-y": w()
1377
1454
  }],
1378
1455
  /**
1379
1456
  * Border Width Start
1380
1457
  * @see https://tailwindcss.com/docs/border-width
1381
1458
  */
1382
1459
  "border-w-s": [{
1383
- "border-s": [s]
1460
+ "border-s": w()
1384
1461
  }],
1385
1462
  /**
1386
1463
  * Border Width End
1387
1464
  * @see https://tailwindcss.com/docs/border-width
1388
1465
  */
1389
1466
  "border-w-e": [{
1390
- "border-e": [s]
1467
+ "border-e": w()
1391
1468
  }],
1392
1469
  /**
1393
1470
  * Border Width Top
1394
1471
  * @see https://tailwindcss.com/docs/border-width
1395
1472
  */
1396
1473
  "border-w-t": [{
1397
- "border-t": [s]
1474
+ "border-t": w()
1398
1475
  }],
1399
1476
  /**
1400
1477
  * Border Width Right
1401
1478
  * @see https://tailwindcss.com/docs/border-width
1402
1479
  */
1403
1480
  "border-w-r": [{
1404
- "border-r": [s]
1481
+ "border-r": w()
1405
1482
  }],
1406
1483
  /**
1407
1484
  * Border Width Bottom
1408
1485
  * @see https://tailwindcss.com/docs/border-width
1409
1486
  */
1410
1487
  "border-w-b": [{
1411
- "border-b": [s]
1488
+ "border-b": w()
1412
1489
  }],
1413
1490
  /**
1414
1491
  * Border Width Left
1415
1492
  * @see https://tailwindcss.com/docs/border-width
1416
1493
  */
1417
1494
  "border-w-l": [{
1418
- "border-l": [s]
1419
- }],
1420
- /**
1421
- * Border Opacity
1422
- * @see https://tailwindcss.com/docs/border-opacity
1423
- */
1424
- "border-opacity": [{
1425
- "border-opacity": [f]
1426
- }],
1427
- /**
1428
- * Border Style
1429
- * @see https://tailwindcss.com/docs/border-style
1430
- */
1431
- "border-style": [{
1432
- border: [...T(), "hidden"]
1495
+ "border-l": w()
1433
1496
  }],
1434
1497
  /**
1435
1498
  * Divide Width X
1436
- * @see https://tailwindcss.com/docs/divide-width
1499
+ * @see https://tailwindcss.com/docs/border-width#between-children
1437
1500
  */
1438
1501
  "divide-x": [{
1439
- "divide-x": [s]
1502
+ "divide-x": w()
1440
1503
  }],
1441
1504
  /**
1442
1505
  * Divide Width X Reverse
1443
- * @see https://tailwindcss.com/docs/divide-width
1506
+ * @see https://tailwindcss.com/docs/border-width#between-children
1444
1507
  */
1445
1508
  "divide-x-reverse": ["divide-x-reverse"],
1446
1509
  /**
1447
1510
  * Divide Width Y
1448
- * @see https://tailwindcss.com/docs/divide-width
1511
+ * @see https://tailwindcss.com/docs/border-width#between-children
1449
1512
  */
1450
1513
  "divide-y": [{
1451
- "divide-y": [s]
1514
+ "divide-y": w()
1452
1515
  }],
1453
1516
  /**
1454
1517
  * Divide Width Y Reverse
1455
- * @see https://tailwindcss.com/docs/divide-width
1518
+ * @see https://tailwindcss.com/docs/border-width#between-children
1456
1519
  */
1457
1520
  "divide-y-reverse": ["divide-y-reverse"],
1458
1521
  /**
1459
- * Divide Opacity
1460
- * @see https://tailwindcss.com/docs/divide-opacity
1522
+ * Border Style
1523
+ * @see https://tailwindcss.com/docs/border-style
1461
1524
  */
1462
- "divide-opacity": [{
1463
- "divide-opacity": [f]
1525
+ "border-style": [{
1526
+ border: [...q(), "hidden", "none"]
1464
1527
  }],
1465
1528
  /**
1466
1529
  * Divide Style
1467
- * @see https://tailwindcss.com/docs/divide-style
1530
+ * @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
1468
1531
  */
1469
1532
  "divide-style": [{
1470
- divide: T()
1533
+ divide: [...q(), "hidden", "none"]
1471
1534
  }],
1472
1535
  /**
1473
1536
  * Border Color
1474
1537
  * @see https://tailwindcss.com/docs/border-color
1475
1538
  */
1476
1539
  "border-color": [{
1477
- border: [l]
1540
+ border: a()
1478
1541
  }],
1479
1542
  /**
1480
1543
  * Border Color X
1481
1544
  * @see https://tailwindcss.com/docs/border-color
1482
1545
  */
1483
1546
  "border-color-x": [{
1484
- "border-x": [l]
1547
+ "border-x": a()
1485
1548
  }],
1486
1549
  /**
1487
1550
  * Border Color Y
1488
1551
  * @see https://tailwindcss.com/docs/border-color
1489
1552
  */
1490
1553
  "border-color-y": [{
1491
- "border-y": [l]
1554
+ "border-y": a()
1492
1555
  }],
1493
1556
  /**
1494
1557
  * Border Color S
1495
1558
  * @see https://tailwindcss.com/docs/border-color
1496
1559
  */
1497
1560
  "border-color-s": [{
1498
- "border-s": [l]
1561
+ "border-s": a()
1499
1562
  }],
1500
1563
  /**
1501
1564
  * Border Color E
1502
1565
  * @see https://tailwindcss.com/docs/border-color
1503
1566
  */
1504
1567
  "border-color-e": [{
1505
- "border-e": [l]
1568
+ "border-e": a()
1506
1569
  }],
1507
1570
  /**
1508
1571
  * Border Color Top
1509
1572
  * @see https://tailwindcss.com/docs/border-color
1510
1573
  */
1511
1574
  "border-color-t": [{
1512
- "border-t": [l]
1575
+ "border-t": a()
1513
1576
  }],
1514
1577
  /**
1515
1578
  * Border Color Right
1516
1579
  * @see https://tailwindcss.com/docs/border-color
1517
1580
  */
1518
1581
  "border-color-r": [{
1519
- "border-r": [l]
1582
+ "border-r": a()
1520
1583
  }],
1521
1584
  /**
1522
1585
  * Border Color Bottom
1523
1586
  * @see https://tailwindcss.com/docs/border-color
1524
1587
  */
1525
1588
  "border-color-b": [{
1526
- "border-b": [l]
1589
+ "border-b": a()
1527
1590
  }],
1528
1591
  /**
1529
1592
  * Border Color Left
1530
1593
  * @see https://tailwindcss.com/docs/border-color
1531
1594
  */
1532
1595
  "border-color-l": [{
1533
- "border-l": [l]
1596
+ "border-l": a()
1534
1597
  }],
1535
1598
  /**
1536
1599
  * Divide Color
1537
1600
  * @see https://tailwindcss.com/docs/divide-color
1538
1601
  */
1539
1602
  "divide-color": [{
1540
- divide: [l]
1603
+ divide: a()
1541
1604
  }],
1542
1605
  /**
1543
1606
  * Outline Style
1544
1607
  * @see https://tailwindcss.com/docs/outline-style
1545
1608
  */
1546
1609
  "outline-style": [{
1547
- outline: ["", ...T()]
1610
+ outline: [...q(), "none", "hidden"]
1548
1611
  }],
1549
1612
  /**
1550
1613
  * Outline Offset
1551
1614
  * @see https://tailwindcss.com/docs/outline-offset
1552
1615
  */
1553
1616
  "outline-offset": [{
1554
- "outline-offset": [C, i]
1617
+ "outline-offset": [d, r, o]
1555
1618
  }],
1556
1619
  /**
1557
1620
  * Outline Width
1558
1621
  * @see https://tailwindcss.com/docs/outline-width
1559
1622
  */
1560
1623
  "outline-w": [{
1561
- outline: [C, z]
1624
+ outline: ["", d, W, R]
1562
1625
  }],
1563
1626
  /**
1564
1627
  * Outline Color
1565
1628
  * @see https://tailwindcss.com/docs/outline-color
1566
1629
  */
1567
1630
  "outline-color": [{
1568
- 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()
1569
1670
  }],
1570
1671
  /**
1571
1672
  * Ring Width
1572
- * @see https://tailwindcss.com/docs/ring-width
1673
+ * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
1573
1674
  */
1574
1675
  "ring-w": [{
1575
- ring: J()
1676
+ ring: w()
1576
1677
  }],
1577
1678
  /**
1578
1679
  * Ring Width Inset
1579
- * @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
1580
1683
  */
1581
1684
  "ring-w-inset": ["ring-inset"],
1582
1685
  /**
1583
1686
  * Ring Color
1584
- * @see https://tailwindcss.com/docs/ring-color
1687
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
1585
1688
  */
1586
1689
  "ring-color": [{
1587
- ring: [e]
1588
- }],
1589
- /**
1590
- * Ring Opacity
1591
- * @see https://tailwindcss.com/docs/ring-opacity
1592
- */
1593
- "ring-opacity": [{
1594
- "ring-opacity": [f]
1690
+ ring: a()
1595
1691
  }],
1596
1692
  /**
1597
1693
  * Ring Offset Width
1598
- * @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
1599
1697
  */
1600
1698
  "ring-offset-w": [{
1601
- "ring-offset": [C, z]
1699
+ "ring-offset": [d, R]
1602
1700
  }],
1603
1701
  /**
1604
1702
  * Ring Offset Color
1605
- * @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
1606
1706
  */
1607
1707
  "ring-offset-color": [{
1608
- "ring-offset": [e]
1708
+ "ring-offset": a()
1609
1709
  }],
1610
- // Effects
1611
1710
  /**
1612
- * Box Shadow
1613
- * @see https://tailwindcss.com/docs/box-shadow
1711
+ * Inset Ring Width
1712
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
1614
1713
  */
1615
- shadow: [{
1616
- shadow: ["", "inner", "none", A, Pe]
1714
+ "inset-ring-w": [{
1715
+ "inset-ring": w()
1617
1716
  }],
1618
1717
  /**
1619
- * Box Shadow Color
1620
- * @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
1621
1720
  */
1622
- "shadow-color": [{
1623
- 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()
1624
1737
  }],
1625
1738
  /**
1626
1739
  * Opacity
1627
1740
  * @see https://tailwindcss.com/docs/opacity
1628
1741
  */
1629
1742
  opacity: [{
1630
- opacity: [f]
1743
+ opacity: [d, r, o]
1631
1744
  }],
1632
1745
  /**
1633
1746
  * Mix Blend Mode
1634
1747
  * @see https://tailwindcss.com/docs/mix-blend-mode
1635
1748
  */
1636
1749
  "mix-blend": [{
1637
- "mix-blend": [...Z(), "plus-lighter", "plus-darker"]
1750
+ "mix-blend": [...pe(), "plus-darker", "plus-lighter"]
1638
1751
  }],
1639
1752
  /**
1640
1753
  * Background Blend Mode
1641
1754
  * @see https://tailwindcss.com/docs/background-blend-mode
1642
1755
  */
1643
1756
  "bg-blend": [{
1644
- "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()
1645
1926
  }],
1646
- // 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
+ // ---------------
1647
1958
  /**
1648
1959
  * Filter
1649
- * @deprecated since Tailwind CSS v3.0.0
1650
1960
  * @see https://tailwindcss.com/docs/filter
1651
1961
  */
1652
1962
  filter: [{
1653
- filter: ["", "none"]
1963
+ filter: [
1964
+ // Deprecated since Tailwind CSS v3.0.0
1965
+ "",
1966
+ "none",
1967
+ r,
1968
+ o
1969
+ ]
1654
1970
  }],
1655
1971
  /**
1656
1972
  * Blur
1657
1973
  * @see https://tailwindcss.com/docs/blur
1658
1974
  */
1659
1975
  blur: [{
1660
- blur: [t]
1976
+ blur: ue()
1661
1977
  }],
1662
1978
  /**
1663
1979
  * Brightness
1664
1980
  * @see https://tailwindcss.com/docs/brightness
1665
1981
  */
1666
1982
  brightness: [{
1667
- brightness: [o]
1983
+ brightness: [d, r, o]
1668
1984
  }],
1669
1985
  /**
1670
1986
  * Contrast
1671
1987
  * @see https://tailwindcss.com/docs/contrast
1672
1988
  */
1673
1989
  contrast: [{
1674
- contrast: [u]
1990
+ contrast: [d, r, o]
1675
1991
  }],
1676
1992
  /**
1677
1993
  * Drop Shadow
1678
1994
  * @see https://tailwindcss.com/docs/drop-shadow
1679
1995
  */
1680
1996
  "drop-shadow": [{
1681
- "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()
1682
2012
  }],
1683
2013
  /**
1684
2014
  * Grayscale
1685
2015
  * @see https://tailwindcss.com/docs/grayscale
1686
2016
  */
1687
2017
  grayscale: [{
1688
- grayscale: [g]
2018
+ grayscale: ["", d, r, o]
1689
2019
  }],
1690
2020
  /**
1691
2021
  * Hue Rotate
1692
2022
  * @see https://tailwindcss.com/docs/hue-rotate
1693
2023
  */
1694
2024
  "hue-rotate": [{
1695
- "hue-rotate": [m]
2025
+ "hue-rotate": [d, r, o]
1696
2026
  }],
1697
2027
  /**
1698
2028
  * Invert
1699
2029
  * @see https://tailwindcss.com/docs/invert
1700
2030
  */
1701
2031
  invert: [{
1702
- invert: [y]
2032
+ invert: ["", d, r, o]
1703
2033
  }],
1704
2034
  /**
1705
2035
  * Saturate
1706
2036
  * @see https://tailwindcss.com/docs/saturate
1707
2037
  */
1708
2038
  saturate: [{
1709
- saturate: [R]
2039
+ saturate: [d, r, o]
1710
2040
  }],
1711
2041
  /**
1712
2042
  * Sepia
1713
2043
  * @see https://tailwindcss.com/docs/sepia
1714
2044
  */
1715
2045
  sepia: [{
1716
- sepia: [E]
2046
+ sepia: ["", d, r, o]
1717
2047
  }],
1718
2048
  /**
1719
2049
  * Backdrop Filter
1720
- * @deprecated since Tailwind CSS v3.0.0
1721
2050
  * @see https://tailwindcss.com/docs/backdrop-filter
1722
2051
  */
1723
2052
  "backdrop-filter": [{
1724
- "backdrop-filter": ["", "none"]
2053
+ "backdrop-filter": [
2054
+ // Deprecated since Tailwind CSS v3.0.0
2055
+ "",
2056
+ "none",
2057
+ r,
2058
+ o
2059
+ ]
1725
2060
  }],
1726
2061
  /**
1727
2062
  * Backdrop Blur
1728
2063
  * @see https://tailwindcss.com/docs/backdrop-blur
1729
2064
  */
1730
2065
  "backdrop-blur": [{
1731
- "backdrop-blur": [t]
2066
+ "backdrop-blur": ue()
1732
2067
  }],
1733
2068
  /**
1734
2069
  * Backdrop Brightness
1735
2070
  * @see https://tailwindcss.com/docs/backdrop-brightness
1736
2071
  */
1737
2072
  "backdrop-brightness": [{
1738
- "backdrop-brightness": [o]
2073
+ "backdrop-brightness": [d, r, o]
1739
2074
  }],
1740
2075
  /**
1741
2076
  * Backdrop Contrast
1742
2077
  * @see https://tailwindcss.com/docs/backdrop-contrast
1743
2078
  */
1744
2079
  "backdrop-contrast": [{
1745
- "backdrop-contrast": [u]
2080
+ "backdrop-contrast": [d, r, o]
1746
2081
  }],
1747
2082
  /**
1748
2083
  * Backdrop Grayscale
1749
2084
  * @see https://tailwindcss.com/docs/backdrop-grayscale
1750
2085
  */
1751
2086
  "backdrop-grayscale": [{
1752
- "backdrop-grayscale": [g]
2087
+ "backdrop-grayscale": ["", d, r, o]
1753
2088
  }],
1754
2089
  /**
1755
2090
  * Backdrop Hue Rotate
1756
2091
  * @see https://tailwindcss.com/docs/backdrop-hue-rotate
1757
2092
  */
1758
2093
  "backdrop-hue-rotate": [{
1759
- "backdrop-hue-rotate": [m]
2094
+ "backdrop-hue-rotate": [d, r, o]
1760
2095
  }],
1761
2096
  /**
1762
2097
  * Backdrop Invert
1763
2098
  * @see https://tailwindcss.com/docs/backdrop-invert
1764
2099
  */
1765
2100
  "backdrop-invert": [{
1766
- "backdrop-invert": [y]
2101
+ "backdrop-invert": ["", d, r, o]
1767
2102
  }],
1768
2103
  /**
1769
2104
  * Backdrop Opacity
1770
2105
  * @see https://tailwindcss.com/docs/backdrop-opacity
1771
2106
  */
1772
2107
  "backdrop-opacity": [{
1773
- "backdrop-opacity": [f]
2108
+ "backdrop-opacity": [d, r, o]
1774
2109
  }],
1775
2110
  /**
1776
2111
  * Backdrop Saturate
1777
2112
  * @see https://tailwindcss.com/docs/backdrop-saturate
1778
2113
  */
1779
2114
  "backdrop-saturate": [{
1780
- "backdrop-saturate": [R]
2115
+ "backdrop-saturate": [d, r, o]
1781
2116
  }],
1782
2117
  /**
1783
2118
  * Backdrop Sepia
1784
2119
  * @see https://tailwindcss.com/docs/backdrop-sepia
1785
2120
  */
1786
2121
  "backdrop-sepia": [{
1787
- "backdrop-sepia": [E]
2122
+ "backdrop-sepia": ["", d, r, o]
1788
2123
  }],
1789
- // Tables
2124
+ // --------------
2125
+ // --- Tables ---
2126
+ // --------------
1790
2127
  /**
1791
2128
  * Border Collapse
1792
2129
  * @see https://tailwindcss.com/docs/border-collapse
@@ -1799,21 +2136,21 @@ const c = (e) => {
1799
2136
  * @see https://tailwindcss.com/docs/border-spacing
1800
2137
  */
1801
2138
  "border-spacing": [{
1802
- "border-spacing": [a]
2139
+ "border-spacing": l()
1803
2140
  }],
1804
2141
  /**
1805
2142
  * Border Spacing X
1806
2143
  * @see https://tailwindcss.com/docs/border-spacing
1807
2144
  */
1808
2145
  "border-spacing-x": [{
1809
- "border-spacing-x": [a]
2146
+ "border-spacing-x": l()
1810
2147
  }],
1811
2148
  /**
1812
2149
  * Border Spacing Y
1813
2150
  * @see https://tailwindcss.com/docs/border-spacing
1814
2151
  */
1815
2152
  "border-spacing-y": [{
1816
- "border-spacing-y": [a]
2153
+ "border-spacing-y": l()
1817
2154
  }],
1818
2155
  /**
1819
2156
  * Table Layout
@@ -1829,120 +2166,220 @@ const c = (e) => {
1829
2166
  caption: [{
1830
2167
  caption: ["top", "bottom"]
1831
2168
  }],
1832
- // Transitions and Animation
2169
+ // ---------------------------------
2170
+ // --- Transitions and Animation ---
2171
+ // ---------------------------------
1833
2172
  /**
1834
- * Tranisition Property
2173
+ * Transition Property
1835
2174
  * @see https://tailwindcss.com/docs/transition-property
1836
2175
  */
1837
2176
  transition: [{
1838
- 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"]
1839
2185
  }],
1840
2186
  /**
1841
2187
  * Transition Duration
1842
2188
  * @see https://tailwindcss.com/docs/transition-duration
1843
2189
  */
1844
2190
  duration: [{
1845
- duration: k()
2191
+ duration: [d, "initial", r, o]
1846
2192
  }],
1847
2193
  /**
1848
2194
  * Transition Timing Function
1849
2195
  * @see https://tailwindcss.com/docs/transition-timing-function
1850
2196
  */
1851
2197
  ease: [{
1852
- ease: ["linear", "in", "out", "in-out", i]
2198
+ ease: ["linear", "initial", A, r, o]
1853
2199
  }],
1854
2200
  /**
1855
2201
  * Transition Delay
1856
2202
  * @see https://tailwindcss.com/docs/transition-delay
1857
2203
  */
1858
2204
  delay: [{
1859
- delay: k()
2205
+ delay: [d, r, o]
1860
2206
  }],
1861
2207
  /**
1862
2208
  * Animation
1863
2209
  * @see https://tailwindcss.com/docs/animation
1864
2210
  */
1865
2211
  animate: [{
1866
- animate: ["none", "spin", "ping", "pulse", "bounce", i]
2212
+ animate: ["none", $, r, o]
1867
2213
  }],
1868
- // Transforms
2214
+ // ------------------
2215
+ // --- Transforms ---
2216
+ // ------------------
1869
2217
  /**
1870
- * Transform
1871
- * @see https://tailwindcss.com/docs/transform
2218
+ * Backface Visibility
2219
+ * @see https://tailwindcss.com/docs/backface-visibility
1872
2220
  */
1873
- transform: [{
1874
- 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()
1875
2265
  }],
1876
2266
  /**
1877
2267
  * Scale
1878
2268
  * @see https://tailwindcss.com/docs/scale
1879
2269
  */
1880
2270
  scale: [{
1881
- scale: [S]
2271
+ scale: J()
1882
2272
  }],
1883
2273
  /**
1884
2274
  * Scale X
1885
2275
  * @see https://tailwindcss.com/docs/scale
1886
2276
  */
1887
2277
  "scale-x": [{
1888
- "scale-x": [S]
2278
+ "scale-x": J()
1889
2279
  }],
1890
2280
  /**
1891
2281
  * Scale Y
1892
2282
  * @see https://tailwindcss.com/docs/scale
1893
2283
  */
1894
2284
  "scale-y": [{
1895
- "scale-y": [S]
2285
+ "scale-y": J()
1896
2286
  }],
1897
2287
  /**
1898
- * Rotate
1899
- * @see https://tailwindcss.com/docs/rotate
2288
+ * Scale Z
2289
+ * @see https://tailwindcss.com/docs/scale
1900
2290
  */
1901
- rotate: [{
1902
- rotate: [P, i]
2291
+ "scale-z": [{
2292
+ "scale-z": J()
1903
2293
  }],
1904
2294
  /**
1905
- * Translate X
1906
- * @see https://tailwindcss.com/docs/translate
2295
+ * Scale 3D
2296
+ * @see https://tailwindcss.com/docs/scale
1907
2297
  */
1908
- "translate-x": [{
1909
- "translate-x": [q]
1910
- }],
2298
+ "scale-3d": ["scale-3d"],
1911
2299
  /**
1912
- * Translate Y
1913
- * @see https://tailwindcss.com/docs/translate
2300
+ * Skew
2301
+ * @see https://tailwindcss.com/docs/skew
1914
2302
  */
1915
- "translate-y": [{
1916
- "translate-y": [q]
2303
+ skew: [{
2304
+ skew: Z()
1917
2305
  }],
1918
2306
  /**
1919
2307
  * Skew X
1920
2308
  * @see https://tailwindcss.com/docs/skew
1921
2309
  */
1922
2310
  "skew-x": [{
1923
- "skew-x": [U]
2311
+ "skew-x": Z()
1924
2312
  }],
1925
2313
  /**
1926
2314
  * Skew Y
1927
2315
  * @see https://tailwindcss.com/docs/skew
1928
2316
  */
1929
2317
  "skew-y": [{
1930
- "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"]
1931
2326
  }],
1932
2327
  /**
1933
2328
  * Transform Origin
1934
2329
  * @see https://tailwindcss.com/docs/transform-origin
1935
2330
  */
1936
2331
  "transform-origin": [{
1937
- 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()
1938
2347
  }],
1939
- // 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
+ // ---------------------
1940
2377
  /**
1941
2378
  * Accent Color
1942
2379
  * @see https://tailwindcss.com/docs/accent-color
1943
2380
  */
1944
2381
  accent: [{
1945
- accent: ["auto", e]
2382
+ accent: a()
1946
2383
  }],
1947
2384
  /**
1948
2385
  * Appearance
@@ -1951,33 +2388,47 @@ const c = (e) => {
1951
2388
  appearance: [{
1952
2389
  appearance: ["none", "auto"]
1953
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
+ }],
1954
2405
  /**
1955
2406
  * Cursor
1956
2407
  * @see https://tailwindcss.com/docs/cursor
1957
2408
  */
1958
2409
  cursor: [{
1959
- 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]
1960
2411
  }],
1961
2412
  /**
1962
- * Caret Color
1963
- * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2413
+ * Field Sizing
2414
+ * @see https://tailwindcss.com/docs/field-sizing
1964
2415
  */
1965
- "caret-color": [{
1966
- caret: [e]
2416
+ "field-sizing": [{
2417
+ "field-sizing": ["fixed", "content"]
1967
2418
  }],
1968
2419
  /**
1969
2420
  * Pointer Events
1970
2421
  * @see https://tailwindcss.com/docs/pointer-events
1971
2422
  */
1972
2423
  "pointer-events": [{
1973
- "pointer-events": ["none", "auto"]
2424
+ "pointer-events": ["auto", "none"]
1974
2425
  }],
1975
2426
  /**
1976
2427
  * Resize
1977
2428
  * @see https://tailwindcss.com/docs/resize
1978
2429
  */
1979
2430
  resize: [{
1980
- resize: ["none", "y", "x", ""]
2431
+ resize: ["none", "", "y", "x"]
1981
2432
  }],
1982
2433
  /**
1983
2434
  * Scroll Behavior
@@ -1991,126 +2442,126 @@ const c = (e) => {
1991
2442
  * @see https://tailwindcss.com/docs/scroll-margin
1992
2443
  */
1993
2444
  "scroll-m": [{
1994
- "scroll-m": d()
2445
+ "scroll-m": l()
1995
2446
  }],
1996
2447
  /**
1997
2448
  * Scroll Margin X
1998
2449
  * @see https://tailwindcss.com/docs/scroll-margin
1999
2450
  */
2000
2451
  "scroll-mx": [{
2001
- "scroll-mx": d()
2452
+ "scroll-mx": l()
2002
2453
  }],
2003
2454
  /**
2004
2455
  * Scroll Margin Y
2005
2456
  * @see https://tailwindcss.com/docs/scroll-margin
2006
2457
  */
2007
2458
  "scroll-my": [{
2008
- "scroll-my": d()
2459
+ "scroll-my": l()
2009
2460
  }],
2010
2461
  /**
2011
2462
  * Scroll Margin Start
2012
2463
  * @see https://tailwindcss.com/docs/scroll-margin
2013
2464
  */
2014
2465
  "scroll-ms": [{
2015
- "scroll-ms": d()
2466
+ "scroll-ms": l()
2016
2467
  }],
2017
2468
  /**
2018
2469
  * Scroll Margin End
2019
2470
  * @see https://tailwindcss.com/docs/scroll-margin
2020
2471
  */
2021
2472
  "scroll-me": [{
2022
- "scroll-me": d()
2473
+ "scroll-me": l()
2023
2474
  }],
2024
2475
  /**
2025
2476
  * Scroll Margin Top
2026
2477
  * @see https://tailwindcss.com/docs/scroll-margin
2027
2478
  */
2028
2479
  "scroll-mt": [{
2029
- "scroll-mt": d()
2480
+ "scroll-mt": l()
2030
2481
  }],
2031
2482
  /**
2032
2483
  * Scroll Margin Right
2033
2484
  * @see https://tailwindcss.com/docs/scroll-margin
2034
2485
  */
2035
2486
  "scroll-mr": [{
2036
- "scroll-mr": d()
2487
+ "scroll-mr": l()
2037
2488
  }],
2038
2489
  /**
2039
2490
  * Scroll Margin Bottom
2040
2491
  * @see https://tailwindcss.com/docs/scroll-margin
2041
2492
  */
2042
2493
  "scroll-mb": [{
2043
- "scroll-mb": d()
2494
+ "scroll-mb": l()
2044
2495
  }],
2045
2496
  /**
2046
2497
  * Scroll Margin Left
2047
2498
  * @see https://tailwindcss.com/docs/scroll-margin
2048
2499
  */
2049
2500
  "scroll-ml": [{
2050
- "scroll-ml": d()
2501
+ "scroll-ml": l()
2051
2502
  }],
2052
2503
  /**
2053
2504
  * Scroll Padding
2054
2505
  * @see https://tailwindcss.com/docs/scroll-padding
2055
2506
  */
2056
2507
  "scroll-p": [{
2057
- "scroll-p": d()
2508
+ "scroll-p": l()
2058
2509
  }],
2059
2510
  /**
2060
2511
  * Scroll Padding X
2061
2512
  * @see https://tailwindcss.com/docs/scroll-padding
2062
2513
  */
2063
2514
  "scroll-px": [{
2064
- "scroll-px": d()
2515
+ "scroll-px": l()
2065
2516
  }],
2066
2517
  /**
2067
2518
  * Scroll Padding Y
2068
2519
  * @see https://tailwindcss.com/docs/scroll-padding
2069
2520
  */
2070
2521
  "scroll-py": [{
2071
- "scroll-py": d()
2522
+ "scroll-py": l()
2072
2523
  }],
2073
2524
  /**
2074
2525
  * Scroll Padding Start
2075
2526
  * @see https://tailwindcss.com/docs/scroll-padding
2076
2527
  */
2077
2528
  "scroll-ps": [{
2078
- "scroll-ps": d()
2529
+ "scroll-ps": l()
2079
2530
  }],
2080
2531
  /**
2081
2532
  * Scroll Padding End
2082
2533
  * @see https://tailwindcss.com/docs/scroll-padding
2083
2534
  */
2084
2535
  "scroll-pe": [{
2085
- "scroll-pe": d()
2536
+ "scroll-pe": l()
2086
2537
  }],
2087
2538
  /**
2088
2539
  * Scroll Padding Top
2089
2540
  * @see https://tailwindcss.com/docs/scroll-padding
2090
2541
  */
2091
2542
  "scroll-pt": [{
2092
- "scroll-pt": d()
2543
+ "scroll-pt": l()
2093
2544
  }],
2094
2545
  /**
2095
2546
  * Scroll Padding Right
2096
2547
  * @see https://tailwindcss.com/docs/scroll-padding
2097
2548
  */
2098
2549
  "scroll-pr": [{
2099
- "scroll-pr": d()
2550
+ "scroll-pr": l()
2100
2551
  }],
2101
2552
  /**
2102
2553
  * Scroll Padding Bottom
2103
2554
  * @see https://tailwindcss.com/docs/scroll-padding
2104
2555
  */
2105
2556
  "scroll-pb": [{
2106
- "scroll-pb": d()
2557
+ "scroll-pb": l()
2107
2558
  }],
2108
2559
  /**
2109
2560
  * Scroll Padding Left
2110
2561
  * @see https://tailwindcss.com/docs/scroll-padding
2111
2562
  */
2112
2563
  "scroll-pl": [{
2113
- "scroll-pl": d()
2564
+ "scroll-pl": l()
2114
2565
  }],
2115
2566
  /**
2116
2567
  * Scroll Snap Align
@@ -2178,36 +2629,35 @@ const c = (e) => {
2178
2629
  * @see https://tailwindcss.com/docs/will-change
2179
2630
  */
2180
2631
  "will-change": [{
2181
- "will-change": ["auto", "scroll", "contents", "transform", i]
2632
+ "will-change": ["auto", "scroll", "contents", "transform", r, o]
2182
2633
  }],
2183
- // SVG
2634
+ // -----------
2635
+ // --- SVG ---
2636
+ // -----------
2184
2637
  /**
2185
2638
  * Fill
2186
2639
  * @see https://tailwindcss.com/docs/fill
2187
2640
  */
2188
2641
  fill: [{
2189
- fill: [e, "none"]
2642
+ fill: ["none", ...a()]
2190
2643
  }],
2191
2644
  /**
2192
2645
  * Stroke Width
2193
2646
  * @see https://tailwindcss.com/docs/stroke-width
2194
2647
  */
2195
2648
  "stroke-w": [{
2196
- stroke: [C, z, _]
2649
+ stroke: [d, W, R, oe]
2197
2650
  }],
2198
2651
  /**
2199
2652
  * Stroke
2200
2653
  * @see https://tailwindcss.com/docs/stroke
2201
2654
  */
2202
2655
  stroke: [{
2203
- stroke: [e, "none"]
2656
+ stroke: ["none", ...a()]
2204
2657
  }],
2205
- // Accessibility
2206
- /**
2207
- * Screen Readers
2208
- * @see https://tailwindcss.com/docs/screen-readers
2209
- */
2210
- sr: ["sr-only", "not-sr-only"],
2658
+ // ---------------------
2659
+ // --- Accessibility ---
2660
+ // ---------------------
2211
2661
  /**
2212
2662
  * Forced Color Adjust
2213
2663
  * @see https://tailwindcss.com/docs/forced-color-adjust
@@ -2247,12 +2697,14 @@ const c = (e) => {
2247
2697
  "rounded-b": ["rounded-br", "rounded-bl"],
2248
2698
  "rounded-l": ["rounded-tl", "rounded-bl"],
2249
2699
  "border-spacing": ["border-spacing-x", "border-spacing-y"],
2250
- "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"],
2251
2701
  "border-w-x": ["border-w-r", "border-w-l"],
2252
2702
  "border-w-y": ["border-w-t", "border-w-b"],
2253
- "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"],
2254
2704
  "border-color-x": ["border-color-r", "border-color-l"],
2255
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"],
2256
2708
  "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2257
2709
  "scroll-mx": ["scroll-mr", "scroll-ml"],
2258
2710
  "scroll-my": ["scroll-mt", "scroll-mb"],
@@ -2266,14 +2718,14 @@ const c = (e) => {
2266
2718
  },
2267
2719
  conflictingClassGroupModifiers: {
2268
2720
  "font-size": ["leading"]
2269
- }
2721
+ },
2722
+ orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
2270
2723
  };
2271
- }, Le = /* @__PURE__ */ he(Te);
2272
- function We(...e) {
2273
- return Le(ne(e));
2724
+ }, lo = /* @__PURE__ */ We(io);
2725
+ function mo(...e) {
2726
+ return lo(Ie(e));
2274
2727
  }
2275
2728
  export {
2276
- ne as a,
2277
- We as c
2729
+ mo as c
2278
2730
  };
2279
- //# sourceMappingURL=cn-BmFQLtkS.js.map
2731
+ //# sourceMappingURL=cn-wvCW-ho6.js.map