zudoku 0.0.0-fed343e → 0.0.0-feda542

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 (1394) hide show
  1. package/README.md +121 -0
  2. package/cli.js +5 -2
  3. package/client.d.ts +7 -0
  4. package/dist/app/demo.js +1 -4
  5. package/dist/app/demo.js.map +1 -1
  6. package/dist/app/entry.client.d.ts +6 -0
  7. package/dist/app/entry.client.js +17 -3
  8. package/dist/app/entry.client.js.map +1 -1
  9. package/dist/app/entry.server.d.ts +9 -6
  10. package/dist/app/entry.server.js +21 -14
  11. package/dist/app/entry.server.js.map +1 -1
  12. package/dist/app/main.d.ts +3 -2
  13. package/dist/app/main.js +34 -38
  14. package/dist/app/main.js.map +1 -1
  15. package/dist/app/sentry.d.ts +3 -0
  16. package/dist/app/sentry.js +19 -0
  17. package/dist/app/sentry.js.map +1 -0
  18. package/dist/app/standalone.js +1 -4
  19. package/dist/app/standalone.js.map +1 -1
  20. package/dist/app/tailwind.d.ts +2 -1
  21. package/dist/app/tailwind.js +80 -48
  22. package/dist/app/tailwind.js.map +1 -1
  23. package/dist/cli/build/handler.d.ts +1 -3
  24. package/dist/cli/build/handler.js +9 -1
  25. package/dist/cli/build/handler.js.map +1 -1
  26. package/dist/cli/cli.js +6 -4
  27. package/dist/cli/cli.js.map +1 -1
  28. package/dist/cli/cmds/build.d.ts +11 -3
  29. package/dist/cli/cmds/build.js +21 -13
  30. package/dist/cli/cmds/build.js.map +1 -1
  31. package/dist/cli/cmds/dev.d.ts +1 -1
  32. package/dist/cli/cmds/dev.js +5 -0
  33. package/dist/cli/cmds/dev.js.map +1 -1
  34. package/dist/cli/cmds/preview.d.ts +16 -0
  35. package/dist/cli/cmds/preview.js +25 -0
  36. package/dist/cli/cmds/preview.js.map +1 -0
  37. package/dist/cli/common/logger.js +9 -0
  38. package/dist/cli/common/logger.js.map +1 -1
  39. package/dist/cli/common/machine-id/lib.js.map +1 -1
  40. package/dist/cli/common/outdated.js +2 -1
  41. package/dist/cli/common/outdated.js.map +1 -1
  42. package/dist/cli/common/output.js.map +1 -1
  43. package/dist/cli/common/utils/box.js.map +1 -1
  44. package/dist/cli/common/utils/ports.d.ts +1 -1
  45. package/dist/cli/common/utils/ports.js +16 -15
  46. package/dist/cli/common/utils/ports.js.map +1 -1
  47. package/dist/cli/dev/handler.d.ts +1 -0
  48. package/dist/cli/dev/handler.js +16 -13
  49. package/dist/cli/dev/handler.js.map +1 -1
  50. package/dist/cli/preview/handler.d.ts +3 -0
  51. package/dist/cli/preview/handler.js +35 -0
  52. package/dist/cli/preview/handler.js.map +1 -0
  53. package/dist/codegen.d.ts +3 -0
  54. package/dist/codegen.js +45 -0
  55. package/dist/codegen.js.map +1 -0
  56. package/dist/config/common.d.ts +10 -0
  57. package/dist/config/common.js +2 -0
  58. package/dist/config/common.js.map +1 -0
  59. package/dist/config/config.d.ts +20 -20
  60. package/dist/config/loader.d.ts +21 -0
  61. package/dist/config/loader.js +149 -0
  62. package/dist/config/loader.js.map +1 -0
  63. package/dist/config/validators/BuildSchema.d.ts +59 -0
  64. package/dist/config/validators/BuildSchema.js +31 -0
  65. package/dist/config/validators/BuildSchema.js.map +1 -0
  66. package/dist/config/validators/InputSidebarSchema.d.ts +63 -31
  67. package/dist/config/validators/InputSidebarSchema.js +17 -28
  68. package/dist/config/validators/InputSidebarSchema.js.map +1 -1
  69. package/dist/config/validators/SidebarSchema.d.ts +24 -1
  70. package/dist/config/validators/SidebarSchema.js +80 -44
  71. package/dist/config/validators/SidebarSchema.js.map +1 -1
  72. package/dist/config/validators/common.d.ts +7670 -0
  73. package/dist/config/validators/common.js +402 -0
  74. package/dist/config/validators/common.js.map +1 -0
  75. package/dist/config/validators/icon-types.d.ts +1 -0
  76. package/dist/config/validators/icon-types.js +2 -0
  77. package/dist/config/validators/icon-types.js.map +1 -0
  78. package/dist/config/validators/validate.d.ts +1965 -443
  79. package/dist/config/validators/validate.js +14 -210
  80. package/dist/config/validators/validate.js.map +1 -1
  81. package/dist/index.d.ts +7 -2
  82. package/dist/index.js +2 -1
  83. package/dist/index.js.map +1 -1
  84. package/dist/lib/MissingIcon.d.ts +2 -0
  85. package/dist/lib/MissingIcon.js +7 -0
  86. package/dist/lib/MissingIcon.js.map +1 -0
  87. package/dist/lib/authentication/AuthenticationPlugin.d.ts +4 -2
  88. package/dist/lib/authentication/AuthenticationPlugin.js +3 -0
  89. package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
  90. package/dist/lib/authentication/authentication.d.ts +4 -3
  91. package/dist/lib/authentication/components/CallbackHandler.js +21 -31
  92. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  93. package/dist/lib/authentication/components/SignIn.js +1 -1
  94. package/dist/lib/authentication/components/SignIn.js.map +1 -1
  95. package/dist/lib/authentication/components/SignOut.js +2 -2
  96. package/dist/lib/authentication/components/SignOut.js.map +1 -1
  97. package/dist/lib/authentication/hook.d.ts +6 -4
  98. package/dist/lib/authentication/hook.js +12 -4
  99. package/dist/lib/authentication/hook.js.map +1 -1
  100. package/dist/lib/authentication/providers/auth0.d.ts +2 -2
  101. package/dist/lib/authentication/providers/auth0.js +14 -12
  102. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  103. package/dist/lib/authentication/providers/clerk.d.ts +2 -2
  104. package/dist/lib/authentication/providers/clerk.js +54 -12
  105. package/dist/lib/authentication/providers/clerk.js.map +1 -1
  106. package/dist/lib/authentication/providers/openid.d.ts +12 -4
  107. package/dist/lib/authentication/providers/openid.js +54 -44
  108. package/dist/lib/authentication/providers/openid.js.map +1 -1
  109. package/dist/lib/authentication/providers/supabase.d.ts +4 -0
  110. package/dist/lib/authentication/providers/supabase.js +117 -0
  111. package/dist/lib/authentication/providers/supabase.js.map +1 -0
  112. package/dist/lib/authentication/state.d.ts +23 -3
  113. package/dist/lib/authentication/state.js +34 -2
  114. package/dist/lib/authentication/state.js.map +1 -1
  115. package/dist/lib/authentication/use-broadcast/shared.d.ts +48 -0
  116. package/dist/lib/authentication/use-broadcast/shared.js +243 -0
  117. package/dist/lib/authentication/use-broadcast/shared.js.map +1 -0
  118. package/dist/lib/authentication/use-broadcast/useBroadcast.d.ts +24 -0
  119. package/dist/lib/authentication/use-broadcast/useBroadcast.js +106 -0
  120. package/dist/lib/authentication/use-broadcast/useBroadcast.js.map +1 -0
  121. package/dist/lib/components/AnchorLink.d.ts +2 -2
  122. package/dist/lib/components/AnchorLink.js +9 -5
  123. package/dist/lib/components/AnchorLink.js.map +1 -1
  124. package/dist/lib/components/Autocomplete.d.ts +13 -0
  125. package/dist/lib/components/Autocomplete.js +47 -0
  126. package/dist/lib/components/Autocomplete.js.map +1 -0
  127. package/dist/lib/components/Banner.js +7 -1
  128. package/dist/lib/components/Banner.js.map +1 -1
  129. package/dist/lib/components/Bootstrap.d.ts +5 -3
  130. package/dist/lib/components/Bootstrap.js +13 -6
  131. package/dist/lib/components/Bootstrap.js.map +1 -1
  132. package/dist/lib/components/ClientOnly.d.ts +4 -2
  133. package/dist/lib/components/ClientOnly.js +1 -1
  134. package/dist/lib/components/ClientOnly.js.map +1 -1
  135. package/dist/lib/components/DeveloperHint.js +2 -1
  136. package/dist/lib/components/DeveloperHint.js.map +1 -1
  137. package/dist/lib/components/ErrorPage.js +1 -2
  138. package/dist/lib/components/ErrorPage.js.map +1 -1
  139. package/dist/lib/components/Footer.d.ts +1 -0
  140. package/dist/lib/components/Footer.js +32 -0
  141. package/dist/lib/components/Footer.js.map +1 -0
  142. package/dist/lib/components/Header.js +22 -11
  143. package/dist/lib/components/Header.js.map +1 -1
  144. package/dist/lib/components/Heading.d.ts +4 -4
  145. package/dist/lib/components/Heading.js +1 -1
  146. package/dist/lib/components/Heading.js.map +1 -1
  147. package/dist/lib/components/InlineCode.d.ts +3 -1
  148. package/dist/lib/components/InlineCode.js +2 -1
  149. package/dist/lib/components/InlineCode.js.map +1 -1
  150. package/dist/lib/components/Layout.js +9 -20
  151. package/dist/lib/components/Layout.js.map +1 -1
  152. package/dist/lib/components/Main.d.ts +2 -0
  153. package/dist/lib/components/Main.js +17 -0
  154. package/dist/lib/components/Main.js.map +1 -0
  155. package/dist/lib/components/Markdown.d.ts +2 -2
  156. package/dist/lib/components/Markdown.js +4 -2
  157. package/dist/lib/components/Markdown.js.map +1 -1
  158. package/dist/lib/components/MobileTopNavigation.js +13 -7
  159. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  160. package/dist/lib/components/NotFoundPage.js +1 -1
  161. package/dist/lib/components/NotFoundPage.js.map +1 -1
  162. package/dist/lib/components/Pagination.d.ts +11 -0
  163. package/dist/lib/components/Pagination.js +10 -0
  164. package/dist/lib/components/Pagination.js.map +1 -0
  165. package/dist/lib/components/PathRenderer.d.ts +11 -0
  166. package/dist/lib/components/PathRenderer.js +28 -0
  167. package/dist/lib/components/PathRenderer.js.map +1 -0
  168. package/dist/lib/components/ReactMarkdown.d.ts +29 -0
  169. package/dist/lib/components/ReactMarkdown.js +182 -0
  170. package/dist/lib/components/ReactMarkdown.js.map +1 -0
  171. package/dist/lib/components/Search.d.ts +3 -1
  172. package/dist/lib/components/Search.js +9 -3
  173. package/dist/lib/components/Search.js.map +1 -1
  174. package/dist/lib/components/SlotletProvider.d.ts +11 -3
  175. package/dist/lib/components/SlotletProvider.js +4 -2
  176. package/dist/lib/components/SlotletProvider.js.map +1 -1
  177. package/dist/lib/components/StatusPage.d.ts +7 -0
  178. package/dist/lib/components/StatusPage.js +71 -0
  179. package/dist/lib/components/StatusPage.js.map +1 -0
  180. package/dist/lib/components/ThemeSwitch.d.ts +1 -0
  181. package/dist/lib/components/ThemeSwitch.js +16 -0
  182. package/dist/lib/components/ThemeSwitch.js.map +1 -0
  183. package/dist/lib/components/TopNavigation.d.ts +6 -0
  184. package/dist/lib/components/TopNavigation.js +61 -8
  185. package/dist/lib/components/TopNavigation.js.map +1 -1
  186. package/dist/lib/components/{DevPortal.d.ts → Zudoku.d.ts} +3 -3
  187. package/dist/lib/components/{DevPortal.js → Zudoku.js} +24 -18
  188. package/dist/lib/components/Zudoku.js.map +1 -0
  189. package/dist/lib/components/cache.d.ts +13 -0
  190. package/dist/lib/components/cache.js +20 -0
  191. package/dist/lib/components/cache.js.map +1 -0
  192. package/dist/lib/components/context/BypassProtectedRoutesContext.d.ts +1 -0
  193. package/dist/lib/components/context/BypassProtectedRoutesContext.js +3 -0
  194. package/dist/lib/components/context/BypassProtectedRoutesContext.js.map +1 -0
  195. package/dist/lib/components/context/RouterEventsEmitter.d.ts +1 -0
  196. package/dist/lib/components/context/RouterEventsEmitter.js +17 -0
  197. package/dist/lib/components/context/RouterEventsEmitter.js.map +1 -0
  198. package/dist/lib/components/context/ViewportAnchorContext.d.ts +2 -4
  199. package/dist/lib/components/context/ViewportAnchorContext.js +21 -14
  200. package/dist/lib/components/context/ViewportAnchorContext.js.map +1 -1
  201. package/dist/lib/components/context/ZudokuContext.d.ts +10 -14
  202. package/dist/lib/components/context/ZudokuContext.js +41 -27
  203. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  204. package/dist/lib/components/context/ZudokuProvider.d.ts +2 -2
  205. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  206. package/dist/lib/components/index.d.ts +54 -16
  207. package/dist/lib/components/index.js +25 -6
  208. package/dist/lib/components/index.js.map +1 -1
  209. package/dist/lib/components/navigation/PoweredByZudoku.d.ts +3 -0
  210. package/dist/lib/components/navigation/PoweredByZudoku.js +6 -0
  211. package/dist/lib/components/navigation/PoweredByZudoku.js.map +1 -0
  212. package/dist/lib/components/navigation/Sidebar.d.ts +5 -1
  213. package/dist/lib/components/navigation/Sidebar.js +3 -7
  214. package/dist/lib/components/navigation/Sidebar.js.map +1 -1
  215. package/dist/lib/components/navigation/SidebarBadge.d.ts +6 -3
  216. package/dist/lib/components/navigation/SidebarBadge.js +13 -11
  217. package/dist/lib/components/navigation/SidebarBadge.js.map +1 -1
  218. package/dist/lib/components/navigation/SidebarCategory.d.ts +3 -3
  219. package/dist/lib/components/navigation/SidebarCategory.js +27 -13
  220. package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
  221. package/dist/lib/components/navigation/SidebarItem.d.ts +3 -4
  222. package/dist/lib/components/navigation/SidebarItem.js +23 -16
  223. package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
  224. package/dist/lib/components/navigation/SidebarWrapper.d.ts +7 -6
  225. package/dist/lib/components/navigation/SidebarWrapper.js +18 -3
  226. package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
  227. package/dist/lib/{plugins/markdown → components/navigation}/Toc.js +5 -7
  228. package/dist/lib/components/navigation/Toc.js.map +1 -0
  229. package/dist/lib/components/navigation/ZudokuLogo.d.ts +6 -0
  230. package/dist/lib/components/navigation/ZudokuLogo.js +5 -0
  231. package/dist/lib/components/navigation/ZudokuLogo.js.map +1 -0
  232. package/dist/lib/components/navigation/utils.js +11 -15
  233. package/dist/lib/components/navigation/utils.js.map +1 -1
  234. package/dist/lib/core/RouteGuard.d.ts +2 -0
  235. package/dist/lib/core/RouteGuard.js +52 -0
  236. package/dist/lib/core/RouteGuard.js.map +1 -0
  237. package/dist/lib/core/ZudokuContext.d.ts +99 -0
  238. package/dist/lib/core/ZudokuContext.js +69 -0
  239. package/dist/lib/core/ZudokuContext.js.map +1 -0
  240. package/dist/lib/core/plugins.d.ts +32 -17
  241. package/dist/lib/core/plugins.js +3 -0
  242. package/dist/lib/core/plugins.js.map +1 -1
  243. package/dist/lib/errors/ErrorAlert.d.ts +1 -1
  244. package/dist/lib/errors/ErrorAlert.js +13 -3
  245. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  246. package/dist/lib/errors/RouterError.js +1 -1
  247. package/dist/lib/errors/RouterError.js.map +1 -1
  248. package/dist/lib/hooks/index.d.ts +3 -0
  249. package/dist/lib/hooks/index.js +5 -0
  250. package/dist/lib/hooks/index.js.map +1 -0
  251. package/dist/lib/hooks/useEvent.d.ts +11 -0
  252. package/dist/lib/hooks/useEvent.js +19 -0
  253. package/dist/lib/hooks/useEvent.js.map +1 -0
  254. package/dist/lib/hooks/useEvent.test.js +100 -0
  255. package/dist/lib/hooks/useEvent.test.js.map +1 -0
  256. package/dist/lib/icons.d.ts +1 -0
  257. package/dist/lib/icons.js +1 -0
  258. package/dist/lib/icons.js.map +1 -1
  259. package/dist/lib/oas/graphql/circular.d.ts +3 -0
  260. package/dist/lib/oas/graphql/circular.js +38 -0
  261. package/dist/lib/oas/graphql/circular.js.map +1 -0
  262. package/dist/lib/oas/graphql/index.d.ts +26 -1
  263. package/dist/lib/oas/graphql/index.js +229 -74
  264. package/dist/lib/oas/graphql/index.js.map +1 -1
  265. package/dist/lib/oas/parser/dereference/index.js +8 -3
  266. package/dist/lib/oas/parser/dereference/index.js.map +1 -1
  267. package/dist/lib/oas/parser/index.d.ts +6 -3
  268. package/dist/lib/oas/parser/index.js +0 -22
  269. package/dist/lib/oas/parser/index.js.map +1 -1
  270. package/dist/lib/oas/parser/upgrade/index.d.ts +2 -2
  271. package/dist/lib/oas/parser/upgrade/index.js +21 -21
  272. package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
  273. package/dist/lib/plugins/api-catalog/Catalog.d.ts +4 -0
  274. package/dist/lib/plugins/api-catalog/Catalog.js +26 -0
  275. package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -0
  276. package/dist/lib/plugins/api-catalog/index.d.ts +31 -0
  277. package/dist/lib/plugins/api-catalog/index.js +46 -0
  278. package/dist/lib/plugins/api-catalog/index.js.map +1 -0
  279. package/dist/lib/plugins/api-keys/CreateApiKey.js +9 -5
  280. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  281. package/dist/lib/plugins/api-keys/ProtectedRoute.js +1 -1
  282. package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
  283. package/dist/lib/plugins/api-keys/SettingsApiKeys.js +1 -1
  284. package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
  285. package/dist/lib/plugins/api-keys/index.d.ts +10 -9
  286. package/dist/lib/plugins/api-keys/index.js +4 -0
  287. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  288. package/dist/lib/plugins/custom-pages/CustomPage.d.ts +2 -0
  289. package/dist/lib/plugins/custom-pages/CustomPage.js +11 -0
  290. package/dist/lib/plugins/custom-pages/CustomPage.js.map +1 -0
  291. package/dist/lib/plugins/custom-pages/index.d.ts +10 -0
  292. package/dist/lib/plugins/custom-pages/index.js +11 -0
  293. package/dist/lib/plugins/custom-pages/index.js.map +1 -0
  294. package/dist/lib/plugins/markdown/MdxPage.d.ts +10 -2
  295. package/dist/lib/plugins/markdown/MdxPage.js +18 -5
  296. package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
  297. package/dist/lib/plugins/markdown/index.d.ts +8 -6
  298. package/dist/lib/plugins/markdown/index.js +31 -3
  299. package/dist/lib/plugins/markdown/index.js.map +1 -1
  300. package/dist/lib/plugins/markdown/resolver.d.ts +32 -0
  301. package/dist/lib/plugins/markdown/resolver.js +46 -0
  302. package/dist/lib/plugins/markdown/resolver.js.map +1 -0
  303. package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +5 -0
  304. package/dist/lib/plugins/openapi/CollapsibleCode.js +25 -0
  305. package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -0
  306. package/dist/lib/plugins/openapi/ColorizedParam.d.ts +10 -2
  307. package/dist/lib/plugins/openapi/ColorizedParam.js +29 -14
  308. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  309. package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -3
  310. package/dist/lib/plugins/openapi/Endpoint.js +43 -8
  311. package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
  312. package/dist/lib/plugins/openapi/OasProvider.d.ts +8 -0
  313. package/dist/lib/plugins/openapi/OasProvider.js +29 -0
  314. package/dist/lib/plugins/openapi/OasProvider.js.map +1 -0
  315. package/dist/lib/plugins/openapi/OperationList.d.ts +6 -3
  316. package/dist/lib/plugins/openapi/OperationList.js +105 -27
  317. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  318. package/dist/lib/plugins/openapi/OperationListItem.d.ts +5 -3
  319. package/dist/lib/plugins/openapi/OperationListItem.js +10 -5
  320. package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
  321. package/dist/lib/plugins/openapi/ParamInfos.d.ts +6 -0
  322. package/dist/lib/plugins/openapi/ParamInfos.js +42 -0
  323. package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -0
  324. package/dist/lib/plugins/openapi/ParameterList.d.ts +2 -1
  325. package/dist/lib/plugins/openapi/ParameterList.js +3 -2
  326. package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
  327. package/dist/lib/plugins/openapi/ParameterListItem.js +12 -1
  328. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  329. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +5 -2
  330. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +12 -3
  331. package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
  332. package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +3 -4
  333. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +5 -9
  334. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
  335. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +7 -6
  336. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  337. package/dist/lib/plugins/openapi/SchemaList.d.ts +1 -0
  338. package/dist/lib/plugins/openapi/SchemaList.js +52 -0
  339. package/dist/lib/plugins/openapi/SchemaList.js.map +1 -0
  340. package/dist/lib/plugins/openapi/Sidecar.d.ts +1 -1
  341. package/dist/lib/plugins/openapi/Sidecar.js +90 -60
  342. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  343. package/dist/lib/plugins/openapi/SidecarBox.js +4 -4
  344. package/dist/lib/plugins/openapi/SidecarBox.js.map +1 -1
  345. package/dist/lib/plugins/openapi/SidecarExamples.d.ts +9 -0
  346. package/dist/lib/plugins/openapi/SidecarExamples.js +68 -0
  347. package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -0
  348. package/dist/lib/plugins/openapi/SimpleSelect.d.ts +2 -1
  349. package/dist/lib/plugins/openapi/SimpleSelect.js +1 -1
  350. package/dist/lib/plugins/openapi/SimpleSelect.js.map +1 -1
  351. package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +8 -0
  352. package/dist/lib/plugins/openapi/client/GraphQLClient.js +43 -0
  353. package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -0
  354. package/dist/lib/plugins/openapi/client/GraphQLContext.d.ts +7 -0
  355. package/dist/lib/plugins/openapi/client/GraphQLContext.js +5 -0
  356. package/dist/lib/plugins/openapi/client/GraphQLContext.js.map +1 -0
  357. package/dist/lib/plugins/openapi/client/createServer.d.ts +3 -1
  358. package/dist/lib/plugins/openapi/client/createServer.js +5 -2
  359. package/dist/lib/plugins/openapi/client/createServer.js.map +1 -1
  360. package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +9 -0
  361. package/dist/lib/plugins/openapi/client/useCreateQuery.js +14 -0
  362. package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -0
  363. package/dist/lib/plugins/openapi/components/EnumValues.d.ts +5 -0
  364. package/dist/lib/plugins/openapi/components/EnumValues.js +15 -0
  365. package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -0
  366. package/dist/lib/plugins/openapi/components/SelectOnClick.d.ts +5 -0
  367. package/dist/lib/plugins/openapi/components/SelectOnClick.js +16 -0
  368. package/dist/lib/plugins/openapi/components/SelectOnClick.js.map +1 -0
  369. package/dist/lib/plugins/openapi/context.d.ts +3 -3
  370. package/dist/lib/plugins/openapi/graphql/fragment-masking.d.ts +3 -3
  371. package/dist/lib/plugins/openapi/graphql/fragment-masking.js +3 -4
  372. package/dist/lib/plugins/openapi/graphql/fragment-masking.js.map +1 -1
  373. package/dist/lib/plugins/openapi/graphql/gql.d.ts +11 -41
  374. package/dist/lib/plugins/openapi/graphql/gql.js +8 -14
  375. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  376. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +168 -26
  377. package/dist/lib/plugins/openapi/graphql/graphql.js +238 -575
  378. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  379. package/dist/lib/plugins/openapi/index.d.ts +11 -7
  380. package/dist/lib/plugins/openapi/index.js +72 -104
  381. package/dist/lib/plugins/openapi/index.js.map +1 -1
  382. package/dist/lib/plugins/openapi/interfaces.d.ts +59 -3
  383. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.d.ts +6 -0
  384. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +8 -0
  385. package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -0
  386. package/dist/lib/plugins/openapi/playground/Headers.d.ts +4 -4
  387. package/dist/lib/plugins/openapi/playground/Headers.js +84 -5
  388. package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
  389. package/dist/lib/plugins/openapi/playground/IdentityDialog.d.ts +11 -0
  390. package/dist/lib/plugins/openapi/playground/IdentityDialog.js +14 -0
  391. package/dist/lib/plugins/openapi/playground/IdentityDialog.js.map +1 -0
  392. package/dist/lib/plugins/openapi/playground/IdentitySelector.d.ts +7 -0
  393. package/dist/lib/plugins/openapi/playground/IdentitySelector.js +10 -0
  394. package/dist/lib/plugins/openapi/playground/IdentitySelector.js.map +1 -0
  395. package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +9 -0
  396. package/dist/lib/plugins/openapi/playground/ParamsGrid.js +5 -0
  397. package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -0
  398. package/dist/lib/plugins/openapi/playground/PathParams.d.ts +3 -2
  399. package/dist/lib/plugins/openapi/playground/PathParams.js +5 -7
  400. package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
  401. package/dist/lib/plugins/openapi/playground/Playground.d.ts +38 -2
  402. package/dist/lib/plugins/openapi/playground/Playground.js +134 -63
  403. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  404. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +2 -2
  405. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
  406. package/dist/lib/plugins/openapi/playground/QueryParams.js +24 -18
  407. package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
  408. package/dist/lib/plugins/openapi/playground/RequestLoginDialog.d.ts +7 -0
  409. package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js +8 -0
  410. package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js.map +1 -0
  411. package/dist/lib/plugins/openapi/playground/SubmitButton.d.ts +7 -0
  412. package/dist/lib/plugins/openapi/playground/SubmitButton.js +22 -0
  413. package/dist/lib/plugins/openapi/playground/SubmitButton.js.map +1 -0
  414. package/dist/lib/plugins/openapi/playground/createUrl.js +3 -1
  415. package/dist/lib/plugins/openapi/playground/createUrl.js.map +1 -1
  416. package/dist/lib/plugins/openapi/playground/rememberedIdentity.d.ts +17 -0
  417. package/dist/lib/plugins/openapi/playground/rememberedIdentity.js +11 -0
  418. package/dist/lib/plugins/openapi/playground/rememberedIdentity.js.map +1 -0
  419. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.d.ts +7 -0
  420. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js +11 -0
  421. package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js.map +1 -0
  422. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.d.ts +8 -0
  423. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +101 -0
  424. package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -0
  425. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +9 -0
  426. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +17 -0
  427. package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -0
  428. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.d.ts +10 -0
  429. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js +32 -0
  430. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js.map +1 -0
  431. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js +56 -0
  432. package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js.map +1 -0
  433. package/dist/lib/plugins/openapi/processors/removeExtensions.d.ts +7 -0
  434. package/dist/lib/plugins/openapi/processors/removeExtensions.js +16 -0
  435. package/dist/lib/plugins/openapi/processors/removeExtensions.js.map +1 -0
  436. package/dist/lib/plugins/openapi/processors/removeExtensions.test.d.ts +1 -0
  437. package/dist/lib/plugins/openapi/processors/removeExtensions.test.js +174 -0
  438. package/dist/lib/plugins/openapi/processors/removeExtensions.test.js.map +1 -0
  439. package/dist/lib/plugins/openapi/processors/removeParameters.d.ts +10 -0
  440. package/dist/lib/plugins/openapi/processors/removeParameters.js +66 -0
  441. package/dist/lib/plugins/openapi/processors/removeParameters.js.map +1 -0
  442. package/dist/lib/plugins/openapi/processors/removeParameters.test.d.ts +1 -0
  443. package/dist/lib/plugins/openapi/processors/removeParameters.test.js +131 -0
  444. package/dist/lib/plugins/openapi/processors/removeParameters.test.js.map +1 -0
  445. package/dist/lib/plugins/openapi/processors/removePaths.d.ts +11 -0
  446. package/dist/lib/plugins/openapi/processors/removePaths.js +33 -0
  447. package/dist/lib/plugins/openapi/processors/removePaths.js.map +1 -0
  448. package/dist/lib/plugins/openapi/processors/removePaths.test.d.ts +1 -0
  449. package/dist/lib/plugins/openapi/processors/removePaths.test.js +104 -0
  450. package/dist/lib/plugins/openapi/processors/removePaths.test.js.map +1 -0
  451. package/dist/lib/plugins/openapi/processors/traverse.d.ts +1 -0
  452. package/dist/lib/plugins/openapi/processors/traverse.js +2 -0
  453. package/dist/lib/plugins/openapi/processors/traverse.js.map +1 -0
  454. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.d.ts +1 -2
  455. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js +2 -2
  456. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js.map +1 -1
  457. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.d.ts +2 -1
  458. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js +2 -2
  459. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js.map +1 -1
  460. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.d.ts +0 -1
  461. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js +1 -1
  462. package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js.map +1 -1
  463. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.d.ts +4 -0
  464. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +12 -0
  465. package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -0
  466. package/dist/lib/plugins/openapi/schema/{SchemaComponents.d.ts → SchemaPropertyItem.d.ts} +2 -4
  467. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +42 -0
  468. package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -0
  469. package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +1 -2
  470. package/dist/lib/plugins/openapi/schema/SchemaView.js +34 -48
  471. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  472. package/dist/lib/plugins/openapi/schema/utils.d.ts +2 -0
  473. package/dist/lib/plugins/openapi/schema/utils.js +5 -1
  474. package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
  475. package/dist/lib/plugins/openapi/state.d.ts +25 -0
  476. package/dist/lib/plugins/openapi/state.js +18 -0
  477. package/dist/lib/plugins/openapi/state.js.map +1 -0
  478. package/dist/lib/plugins/openapi/util/createSidebarCategory.d.ts +9 -0
  479. package/dist/lib/plugins/openapi/util/createSidebarCategory.js +23 -0
  480. package/dist/lib/plugins/openapi/util/createSidebarCategory.js.map +1 -0
  481. package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +0 -1
  482. package/dist/lib/plugins/openapi/util/generateSchemaExample.js +36 -39
  483. package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
  484. package/dist/lib/plugins/openapi/util/getRoutes.d.ts +10 -0
  485. package/dist/lib/plugins/openapi/util/getRoutes.js +80 -0
  486. package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -0
  487. package/dist/lib/plugins/openapi/util/methodColorMap.d.ts +2 -0
  488. package/dist/lib/plugins/openapi/util/methodColorMap.js +10 -0
  489. package/dist/lib/plugins/openapi/util/methodColorMap.js.map +1 -0
  490. package/dist/lib/plugins/openapi/util/methodToColor.d.ts +20 -0
  491. package/dist/lib/plugins/openapi/util/methodToColor.js +24 -0
  492. package/dist/lib/plugins/openapi/util/methodToColor.js.map +1 -0
  493. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.d.ts +1 -0
  494. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js +27 -0
  495. package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js.map +1 -0
  496. package/dist/lib/plugins/redirect/index.d.ts +4 -7
  497. package/dist/lib/plugins/redirect/index.js +2 -2
  498. package/dist/lib/plugins/redirect/index.js.map +1 -1
  499. package/dist/lib/plugins/search-inkeep/index.d.ts +24 -5
  500. package/dist/lib/plugins/search-inkeep/index.js +41 -5
  501. package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
  502. package/dist/lib/plugins/search-inkeep/inkeep.d.ts +3 -4
  503. package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
  504. package/dist/lib/plugins/search-pagefind/PagefindSearch.d.ts +6 -0
  505. package/dist/lib/plugins/search-pagefind/PagefindSearch.js +80 -0
  506. package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -0
  507. package/dist/lib/plugins/search-pagefind/ResultList.d.ts +8 -0
  508. package/dist/lib/plugins/search-pagefind/ResultList.js +32 -0
  509. package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -0
  510. package/dist/lib/plugins/search-pagefind/get-results.d.ts +10 -0
  511. package/dist/lib/plugins/search-pagefind/get-results.js +42 -0
  512. package/dist/lib/plugins/search-pagefind/get-results.js.map +1 -0
  513. package/dist/lib/plugins/search-pagefind/index.d.ts +6 -0
  514. package/dist/lib/plugins/search-pagefind/index.js +9 -0
  515. package/dist/lib/plugins/search-pagefind/index.js.map +1 -0
  516. package/dist/lib/plugins/search-pagefind/types.d.ts +85 -0
  517. package/dist/lib/plugins/search-pagefind/types.js +2 -0
  518. package/dist/lib/plugins/search-pagefind/types.js.map +1 -0
  519. package/dist/lib/ui/Accordion.d.ts +7 -0
  520. package/dist/lib/ui/Accordion.js +14 -0
  521. package/dist/lib/ui/Accordion.js.map +1 -0
  522. package/dist/lib/ui/ActionButton.d.ts +4 -0
  523. package/dist/lib/ui/ActionButton.js +10 -0
  524. package/dist/lib/ui/ActionButton.js.map +1 -0
  525. package/dist/lib/ui/Alert.d.ts +8 -0
  526. package/dist/lib/ui/Alert.js +23 -0
  527. package/dist/lib/ui/Alert.js.map +1 -0
  528. package/dist/lib/ui/AlertDialog.d.ts +20 -0
  529. package/dist/lib/ui/AlertDialog.js +27 -0
  530. package/dist/lib/ui/AlertDialog.js.map +1 -0
  531. package/dist/lib/ui/AspectRatio.d.ts +3 -0
  532. package/dist/lib/ui/AspectRatio.js +4 -0
  533. package/dist/lib/ui/AspectRatio.js.map +1 -0
  534. package/dist/lib/ui/Badge.d.ts +9 -0
  535. package/dist/lib/ui/Badge.js +22 -0
  536. package/dist/lib/ui/Badge.js.map +1 -0
  537. package/dist/lib/ui/Breadcrumb.d.ts +19 -0
  538. package/dist/lib/ui/Breadcrumb.js +24 -0
  539. package/dist/lib/ui/Breadcrumb.js.map +1 -0
  540. package/dist/lib/ui/Button.d.ts +3 -4
  541. package/dist/lib/ui/Button.js +2 -1
  542. package/dist/lib/ui/Button.js.map +1 -1
  543. package/dist/lib/ui/Callout.d.ts +38 -36
  544. package/dist/lib/ui/Callout.js +3 -2
  545. package/dist/lib/ui/Callout.js.map +1 -1
  546. package/dist/lib/ui/Card.js +1 -1
  547. package/dist/lib/ui/Card.js.map +1 -1
  548. package/dist/lib/ui/Carousel.d.ts +18 -0
  549. package/dist/lib/ui/Carousel.js +99 -0
  550. package/dist/lib/ui/Carousel.js.map +1 -0
  551. package/dist/lib/ui/Checkbox.d.ts +4 -0
  552. package/dist/lib/ui/Checkbox.js +9 -0
  553. package/dist/lib/ui/Checkbox.js.map +1 -0
  554. package/dist/lib/ui/Collapsible.d.ts +5 -0
  555. package/dist/lib/ui/Collapsible.js +6 -0
  556. package/dist/lib/ui/Collapsible.js.map +1 -0
  557. package/dist/lib/ui/Command.d.ts +94 -0
  558. package/dist/lib/ui/Command.js +35 -0
  559. package/dist/lib/ui/Command.js.map +1 -0
  560. package/dist/lib/{components → ui}/Dialog.js +2 -2
  561. package/dist/lib/ui/Dialog.js.map +1 -0
  562. package/dist/lib/ui/Drawer.d.ts +8 -10
  563. package/dist/lib/ui/Drawer.js.map +1 -1
  564. package/dist/lib/ui/Form.d.ts +23 -0
  565. package/dist/lib/ui/Form.js +63 -0
  566. package/dist/lib/ui/Form.js.map +1 -0
  567. package/dist/lib/ui/HoverCard.d.ts +6 -0
  568. package/dist/lib/ui/HoverCard.js +10 -0
  569. package/dist/lib/ui/HoverCard.js.map +1 -0
  570. package/dist/lib/ui/Input.d.ts +1 -2
  571. package/dist/lib/ui/Input.js.map +1 -1
  572. package/dist/lib/ui/Label.d.ts +5 -0
  573. package/dist/lib/ui/Label.js +10 -0
  574. package/dist/lib/ui/Label.js.map +1 -0
  575. package/dist/lib/ui/Pagination.d.ts +28 -0
  576. package/dist/lib/ui/Pagination.js +24 -0
  577. package/dist/lib/ui/Pagination.js.map +1 -0
  578. package/dist/lib/ui/Popover.d.ts +6 -0
  579. package/dist/lib/ui/Popover.js +10 -0
  580. package/dist/lib/ui/Popover.js.map +1 -0
  581. package/dist/lib/ui/Progress.d.ts +4 -0
  582. package/dist/lib/ui/Progress.js +8 -0
  583. package/dist/lib/ui/Progress.js.map +1 -0
  584. package/dist/lib/ui/RadioGroup.d.ts +5 -0
  585. package/dist/lib/ui/RadioGroup.js +15 -0
  586. package/dist/lib/ui/RadioGroup.js.map +1 -0
  587. package/dist/lib/ui/ScrollArea.d.ts +5 -0
  588. package/dist/lib/ui/ScrollArea.js +12 -0
  589. package/dist/lib/ui/ScrollArea.js.map +1 -0
  590. package/dist/lib/{components → ui}/Select.js +3 -3
  591. package/dist/lib/ui/Select.js.map +1 -0
  592. package/dist/lib/ui/Skeleton.d.ts +2 -0
  593. package/dist/lib/ui/Skeleton.js +7 -0
  594. package/dist/lib/ui/Skeleton.js.map +1 -0
  595. package/dist/lib/ui/Slider.d.ts +4 -0
  596. package/dist/lib/ui/Slider.js +8 -0
  597. package/dist/lib/ui/Slider.js.map +1 -0
  598. package/dist/lib/ui/Stepper.d.ts +3 -0
  599. package/dist/lib/ui/Stepper.js +7 -0
  600. package/dist/lib/ui/Stepper.js.map +1 -0
  601. package/dist/lib/ui/Switch.d.ts +4 -0
  602. package/dist/lib/ui/Switch.js +8 -0
  603. package/dist/lib/ui/Switch.js.map +1 -0
  604. package/dist/lib/ui/SyntaxHighlight.d.ts +15 -0
  605. package/dist/lib/ui/SyntaxHighlight.js +62 -0
  606. package/dist/lib/ui/SyntaxHighlight.js.map +1 -0
  607. package/dist/lib/ui/Textarea.d.ts +4 -0
  608. package/dist/lib/ui/Textarea.js +9 -0
  609. package/dist/lib/ui/Textarea.js.map +1 -0
  610. package/dist/lib/ui/Toggle.d.ts +12 -0
  611. package/dist/lib/ui/Toggle.js +26 -0
  612. package/dist/lib/ui/Toggle.js.map +1 -0
  613. package/dist/lib/ui/ToggleGroup.d.ts +12 -0
  614. package/dist/lib/ui/ToggleGroup.js +21 -0
  615. package/dist/lib/ui/ToggleGroup.js.map +1 -0
  616. package/dist/lib/ui/Tooltip.d.ts +7 -0
  617. package/dist/lib/ui/Tooltip.js +11 -0
  618. package/dist/lib/ui/Tooltip.js.map +1 -0
  619. package/dist/lib/ui/util.d.ts +2 -0
  620. package/dist/lib/ui/util.js +3 -0
  621. package/dist/lib/ui/util.js.map +1 -0
  622. package/dist/lib/util/MdxComponents.d.ts +24 -21
  623. package/dist/lib/util/MdxComponents.js +10 -7
  624. package/dist/lib/util/MdxComponents.js.map +1 -1
  625. package/dist/lib/util/createVariantComponent.d.ts +2 -2
  626. package/dist/lib/util/detectOS.d.ts +1 -0
  627. package/dist/lib/util/detectOS.js +11 -0
  628. package/dist/lib/util/detectOS.js.map +1 -0
  629. package/dist/lib/util/invariant.d.ts +9 -0
  630. package/dist/lib/util/invariant.js +7 -3
  631. package/dist/lib/util/invariant.js.map +1 -1
  632. package/dist/lib/util/joinPath.d.ts +3 -0
  633. package/dist/lib/util/joinPath.js +3 -0
  634. package/dist/lib/util/joinPath.js.map +1 -1
  635. package/dist/lib/util/joinUrl.d.ts +1 -0
  636. package/dist/lib/util/joinUrl.js +40 -0
  637. package/dist/lib/util/joinUrl.js.map +1 -0
  638. package/dist/lib/util/joinUrl.test.d.ts +1 -0
  639. package/dist/lib/util/joinUrl.test.js +43 -0
  640. package/dist/lib/util/joinUrl.test.js.map +1 -0
  641. package/dist/lib/util/scrollIntoViewIfNeeded.d.ts +1 -0
  642. package/dist/lib/util/scrollIntoViewIfNeeded.js +14 -0
  643. package/dist/lib/util/scrollIntoViewIfNeeded.js.map +1 -0
  644. package/dist/lib/util/traverse.d.ts +3 -0
  645. package/dist/lib/util/traverse.js +22 -0
  646. package/dist/lib/util/traverse.js.map +1 -0
  647. package/dist/lib/util/types.d.ts +7 -0
  648. package/dist/lib/util/types.js +2 -0
  649. package/dist/lib/util/types.js.map +1 -0
  650. package/dist/lib/util/useExposedProps.d.ts +2 -0
  651. package/dist/lib/util/useExposedProps.js +9 -0
  652. package/dist/lib/util/useExposedProps.js.map +1 -0
  653. package/dist/lib/util/useIsomorphicLayoutEffect.d.ts +3 -0
  654. package/dist/lib/util/useIsomorphicLayoutEffect.js +4 -0
  655. package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -0
  656. package/dist/lib/util/useLatest.d.ts +1 -0
  657. package/dist/lib/util/useLatest.js +15 -0
  658. package/dist/lib/util/useLatest.js.map +1 -0
  659. package/dist/lib/util/useOnScreen.d.ts +5 -0
  660. package/dist/lib/util/useOnScreen.js +19 -0
  661. package/dist/lib/util/useOnScreen.js.map +1 -0
  662. package/dist/lib/util/useScrollToAnchor.d.ts +1 -0
  663. package/dist/lib/util/useScrollToAnchor.js +42 -37
  664. package/dist/lib/util/useScrollToAnchor.js.map +1 -1
  665. package/dist/lib/util/useScrollToTop.js +7 -5
  666. package/dist/lib/util/useScrollToTop.js.map +1 -1
  667. package/dist/vite/api/schema-codegen.d.ts +12 -0
  668. package/dist/vite/api/schema-codegen.js +85 -0
  669. package/dist/vite/api/schema-codegen.js.map +1 -0
  670. package/dist/vite/api/schema-codegen.test.d.ts +1 -0
  671. package/dist/vite/api/schema-codegen.test.js +313 -0
  672. package/dist/vite/api/schema-codegen.test.js.map +1 -0
  673. package/dist/vite/build.js +47 -13
  674. package/dist/vite/build.js.map +1 -1
  675. package/dist/vite/config.d.ts +8 -15
  676. package/dist/vite/config.js +133 -118
  677. package/dist/vite/config.js.map +1 -1
  678. package/dist/vite/config.test.js +11 -5
  679. package/dist/vite/config.test.js.map +1 -1
  680. package/dist/vite/create-pagefind-index.d.ts +4 -0
  681. package/dist/vite/create-pagefind-index.js +12 -0
  682. package/dist/vite/create-pagefind-index.js.map +1 -0
  683. package/dist/vite/css/collect.d.ts +2 -0
  684. package/dist/vite/css/collect.js +27 -0
  685. package/dist/vite/css/collect.js.map +1 -0
  686. package/dist/vite/css/plugin.d.ts +5 -0
  687. package/dist/vite/css/plugin.js +79 -0
  688. package/dist/vite/css/plugin.js.map +1 -0
  689. package/dist/vite/debug.d.ts +1 -0
  690. package/dist/vite/debug.js +10 -0
  691. package/dist/vite/debug.js.map +1 -0
  692. package/dist/vite/dev-server.d.ts +12 -3
  693. package/dist/vite/dev-server.js +79 -25
  694. package/dist/vite/dev-server.js.map +1 -1
  695. package/dist/vite/error-handler.d.ts +1 -1
  696. package/dist/vite/error-handler.js +1 -1
  697. package/dist/vite/error-handler.js.map +1 -1
  698. package/dist/vite/html.js +0 -2
  699. package/dist/vite/html.js.map +1 -1
  700. package/dist/vite/output.d.ts +113 -0
  701. package/dist/vite/output.js +60 -0
  702. package/dist/vite/output.js.map +1 -0
  703. package/dist/vite/plugin-api-keys.d.ts +2 -2
  704. package/dist/vite/plugin-api-keys.js +5 -5
  705. package/dist/vite/plugin-api-keys.js.map +1 -1
  706. package/dist/vite/plugin-api.d.ts +2 -2
  707. package/dist/vite/plugin-api.js +223 -35
  708. package/dist/vite/plugin-api.js.map +1 -1
  709. package/dist/vite/plugin-auth.d.ts +2 -2
  710. package/dist/vite/plugin-auth.js +7 -4
  711. package/dist/vite/plugin-auth.js.map +1 -1
  712. package/dist/vite/plugin-component.d.ts +2 -2
  713. package/dist/vite/plugin-component.js +22 -13
  714. package/dist/vite/plugin-component.js.map +1 -1
  715. package/dist/vite/plugin-config-reload.d.ts +4 -4
  716. package/dist/vite/plugin-config-reload.js +18 -8
  717. package/dist/vite/plugin-config-reload.js.map +1 -1
  718. package/dist/vite/plugin-config.d.ts +2 -3
  719. package/dist/vite/plugin-config.js +26 -3
  720. package/dist/vite/plugin-config.js.map +1 -1
  721. package/dist/vite/plugin-custom-pages.d.ts +4 -0
  722. package/dist/vite/plugin-custom-pages.js +30 -0
  723. package/dist/vite/plugin-custom-pages.js.map +1 -0
  724. package/dist/vite/plugin-docs.d.ts +3 -3
  725. package/dist/vite/plugin-docs.js +57 -27
  726. package/dist/vite/plugin-docs.js.map +1 -1
  727. package/dist/vite/plugin-docs.test.js +15 -23
  728. package/dist/vite/plugin-docs.test.js.map +1 -1
  729. package/dist/vite/plugin-frontmatter.d.ts +3 -0
  730. package/dist/vite/plugin-frontmatter.js +34 -0
  731. package/dist/vite/plugin-frontmatter.js.map +1 -0
  732. package/dist/vite/plugin-mdx.d.ts +2 -8
  733. package/dist/vite/plugin-mdx.js +97 -7
  734. package/dist/vite/plugin-mdx.js.map +1 -1
  735. package/dist/vite/plugin-redirect.d.ts +2 -2
  736. package/dist/vite/plugin-redirect.js +3 -3
  737. package/dist/vite/plugin-redirect.js.map +1 -1
  738. package/dist/vite/plugin-search.d.ts +3 -0
  739. package/dist/vite/plugin-search.js +30 -0
  740. package/dist/vite/plugin-search.js.map +1 -0
  741. package/dist/vite/plugin-sidebar.d.ts +2 -2
  742. package/dist/vite/plugin-sidebar.js +30 -7
  743. package/dist/vite/plugin-sidebar.js.map +1 -1
  744. package/dist/vite/{plugin-custom-css.d.ts → plugin-theme-css.d.ts} +3 -3
  745. package/dist/vite/plugin-theme-css.js +117 -0
  746. package/dist/vite/plugin-theme-css.js.map +1 -0
  747. package/dist/vite/plugin.d.ts +2 -3
  748. package/dist/vite/plugin.js +13 -7
  749. package/dist/vite/plugin.js.map +1 -1
  750. package/dist/vite/prerender/FileWritingResponse.d.ts +25 -0
  751. package/dist/vite/prerender/FileWritingResponse.js +51 -0
  752. package/dist/vite/prerender/FileWritingResponse.js.map +1 -0
  753. package/dist/vite/prerender/InMemoryResponse.d.ts +16 -0
  754. package/dist/vite/prerender/InMemoryResponse.js +32 -0
  755. package/dist/vite/prerender/InMemoryResponse.js.map +1 -0
  756. package/dist/vite/prerender/PrerenderResponse.d.ts +10 -0
  757. package/dist/vite/prerender/PrerenderResponse.js +2 -0
  758. package/dist/vite/prerender/PrerenderResponse.js.map +1 -0
  759. package/dist/vite/prerender/prerender.d.ts +15 -0
  760. package/dist/vite/prerender/prerender.js +109 -0
  761. package/dist/vite/prerender/prerender.js.map +1 -0
  762. package/dist/vite/prerender/worker.d.ts +13 -0
  763. package/dist/vite/prerender/worker.js +59 -0
  764. package/dist/vite/prerender/worker.js.map +1 -0
  765. package/dist/vite/remarkStaticGeneration.d.ts +3 -0
  766. package/dist/vite/remarkStaticGeneration.js +125 -0
  767. package/dist/vite/remarkStaticGeneration.js.map +1 -0
  768. package/dist/vite/reporter.d.ts +3 -0
  769. package/dist/vite/reporter.js +33 -0
  770. package/dist/vite/reporter.js.map +1 -0
  771. package/dist/vite/sitemap.d.ts +1 -1
  772. package/dist/vite/sitemap.js +2 -1
  773. package/dist/vite/sitemap.js.map +1 -1
  774. package/dist/zuplo/enrich-with-zuplo.d.ts +5 -0
  775. package/dist/zuplo/enrich-with-zuplo.js +184 -0
  776. package/dist/zuplo/enrich-with-zuplo.js.map +1 -0
  777. package/dist/zuplo/env.d.ts +7 -0
  778. package/dist/zuplo/env.js +12 -0
  779. package/dist/zuplo/env.js.map +1 -0
  780. package/dist/zuplo/policy-types.d.ts +33 -0
  781. package/dist/zuplo/policy-types.js +8 -0
  782. package/dist/zuplo/policy-types.js.map +1 -0
  783. package/dist/zuplo/with-zuplo-processors.d.ts +3 -0
  784. package/dist/zuplo/with-zuplo-processors.js +26 -0
  785. package/dist/zuplo/with-zuplo-processors.js.map +1 -0
  786. package/dist/zuplo/with-zuplo.d.ts +3 -0
  787. package/dist/zuplo/with-zuplo.js +13 -0
  788. package/dist/zuplo/with-zuplo.js.map +1 -0
  789. package/lib/AuthenticationPlugin-foqdvvkf.js +58 -0
  790. package/lib/AuthenticationPlugin-foqdvvkf.js.map +1 -0
  791. package/lib/Button-Fp19CMUr.js +49 -0
  792. package/lib/Button-Fp19CMUr.js.map +1 -0
  793. package/lib/Callout-Boqdgl-z.js +230 -0
  794. package/lib/Callout-Boqdgl-z.js.map +1 -0
  795. package/lib/CategoryHeading-DpB47wvk.js +10 -0
  796. package/lib/{CategoryHeading-XnFqN2lJ.js.map → CategoryHeading-DpB47wvk.js.map} +1 -1
  797. package/lib/ClientOnly-E7hGysn1.js +11 -0
  798. package/lib/ClientOnly-E7hGysn1.js.map +1 -0
  799. package/lib/Dialog-sbgekbjb.js +98 -0
  800. package/lib/Dialog-sbgekbjb.js.map +1 -0
  801. package/lib/Drawer-kDAfOq_2.js +1133 -0
  802. package/lib/Drawer-kDAfOq_2.js.map +1 -0
  803. package/lib/Markdown-CKXePgqR.js +16962 -0
  804. package/lib/Markdown-CKXePgqR.js.map +1 -0
  805. package/lib/MdxPage-DzpRK-fu.js +85 -0
  806. package/lib/MdxPage-DzpRK-fu.js.map +1 -0
  807. package/lib/OasProvider-Dw2mP5VZ.js +34 -0
  808. package/lib/OasProvider-Dw2mP5VZ.js.map +1 -0
  809. package/lib/OperationList-Cr_NA4e2.js +5069 -0
  810. package/lib/OperationList-Cr_NA4e2.js.map +1 -0
  811. package/lib/Pagination-DT6eKg_U.js +48 -0
  812. package/lib/Pagination-DT6eKg_U.js.map +1 -0
  813. package/lib/RouteGuard-CqZPoZYJ.js +744 -0
  814. package/lib/RouteGuard-CqZPoZYJ.js.map +1 -0
  815. package/lib/SchemaList-DNvUJgwI.js +148 -0
  816. package/lib/SchemaList-DNvUJgwI.js.map +1 -0
  817. package/lib/SchemaView-Cxh_msLc.js +357 -0
  818. package/lib/SchemaView-Cxh_msLc.js.map +1 -0
  819. package/lib/Select-DVFRKf1R.js +223 -0
  820. package/lib/Select-DVFRKf1R.js.map +1 -0
  821. package/lib/SlotletProvider-BV1xrg-l.js +338 -0
  822. package/lib/SlotletProvider-BV1xrg-l.js.map +1 -0
  823. package/lib/{Spinner-3cQDBVGr.js → Spinner-CE68iCm0.js} +2 -2
  824. package/lib/{Spinner-3cQDBVGr.js.map → Spinner-CE68iCm0.js.map} +1 -1
  825. package/lib/SyntaxHighlight-BEoSoPEo.js +2890 -0
  826. package/lib/SyntaxHighlight-BEoSoPEo.js.map +1 -0
  827. package/lib/Toc-D40bDl5J.js +92 -0
  828. package/lib/Toc-D40bDl5J.js.map +1 -0
  829. package/lib/chunk-HA7DTUK3-C4gP41vD.js +1821 -0
  830. package/lib/chunk-HA7DTUK3-C4gP41vD.js.map +1 -0
  831. package/lib/circular-ByJI6Mci.js +15877 -0
  832. package/lib/circular-ByJI6Mci.js.map +1 -0
  833. package/lib/cn-qaFjX9_3.js +2279 -0
  834. package/lib/cn-qaFjX9_3.js.map +1 -0
  835. package/lib/context-DLCwaMXN.js +22 -0
  836. package/lib/context-DLCwaMXN.js.map +1 -0
  837. package/lib/createServer-Cq73y9Kv.js +12454 -0
  838. package/lib/createServer-Cq73y9Kv.js.map +1 -0
  839. package/lib/hook-CqpVYDqN.js +1483 -0
  840. package/lib/hook-CqpVYDqN.js.map +1 -0
  841. package/lib/index-Bn6Lc9tq.js +9 -0
  842. package/lib/index-Bn6Lc9tq.js.map +1 -0
  843. package/lib/index-CN3TIw7H.js +2009 -0
  844. package/lib/index-CN3TIw7H.js.map +1 -0
  845. package/lib/index-CPNSgwSb.js +36 -0
  846. package/lib/index-CPNSgwSb.js.map +1 -0
  847. package/lib/{index-CLd8ycZz.js → index-Dl3Yl0yb.js} +1056 -1009
  848. package/lib/index-Dl3Yl0yb.js.map +1 -0
  849. package/lib/index-DwT-v3zK.js +86 -0
  850. package/lib/index-DwT-v3zK.js.map +1 -0
  851. package/lib/index-LNp6rxyU.js +2094 -0
  852. package/lib/index-LNp6rxyU.js.map +1 -0
  853. package/lib/index-dQecW8K5.js +2227 -0
  854. package/lib/index-dQecW8K5.js.map +1 -0
  855. package/lib/index-gQD2h1wX.js +447 -0
  856. package/lib/index-gQD2h1wX.js.map +1 -0
  857. package/lib/index.esm--gIChbWs.js +1207 -0
  858. package/lib/index.esm--gIChbWs.js.map +1 -0
  859. package/lib/invariant-Caa8-XvF.js +26 -0
  860. package/lib/invariant-Caa8-XvF.js.map +1 -0
  861. package/lib/jsx-runtime-CYK1ROHF.js +446 -0
  862. package/lib/jsx-runtime-CYK1ROHF.js.map +1 -0
  863. package/lib/mutation-8LjrN7uz.js +208 -0
  864. package/lib/mutation-8LjrN7uz.js.map +1 -0
  865. package/lib/objectEntries-yMIkr2mI.js +5 -0
  866. package/lib/objectEntries-yMIkr2mI.js.map +1 -0
  867. package/lib/{prism-bash.min-DadFsM4Z.js → prism-bash.min-HHIMdNJ_.js} +4 -4
  868. package/lib/{prism-bash.min-DadFsM4Z.js.map → prism-bash.min-HHIMdNJ_.js.map} +1 -1
  869. package/lib/prism-csharp.min-bQAo2pmx.js +63 -0
  870. package/lib/{prism-csharp.min-Yizuc34Y.js.map → prism-csharp.min-bQAo2pmx.js.map} +1 -1
  871. package/lib/prism-java.min-BpvsOuIa.js +35 -0
  872. package/lib/{prism-java.min-d5iT_mOd.js.map → prism-java.min-BpvsOuIa.js.map} +1 -1
  873. package/lib/prism-javascript.min-CEqHqgbm.js.map +1 -1
  874. package/lib/prism-json.min-B1GJqK1k.js.map +1 -1
  875. package/lib/prism-jsstacktrace.min-BfobCF2F.js +2 -0
  876. package/lib/prism-jsstacktrace.min-BfobCF2F.js.map +1 -0
  877. package/lib/{prism-markdown.min-F3U-vPBi.js → prism-markdown.min-C0Qn0m-5.js} +30 -30
  878. package/lib/{prism-markdown.min-F3U-vPBi.js.map → prism-markdown.min-C0Qn0m-5.js.map} +1 -1
  879. package/lib/prism-markup-BNGj0Tvm.js.map +1 -1
  880. package/lib/prism-objectivec.min-BXSWqpJJ.js.map +1 -1
  881. package/lib/prism-ruby.min-Dx9KO9ds.js +38 -0
  882. package/lib/{prism-ruby.min-C7LwcKyz.js.map → prism-ruby.min-Dx9KO9ds.js.map} +1 -1
  883. package/lib/prism-typescript.min-CD7H2IYQ.js +34 -0
  884. package/lib/{prism-typescript.min-oSVeWCAd.js.map → prism-typescript.min-CD7H2IYQ.js.map} +1 -1
  885. package/lib/processors/removeExtensions.js +11 -0
  886. package/lib/processors/removeExtensions.js.map +1 -0
  887. package/lib/processors/removeParameters.js +48 -0
  888. package/lib/processors/removeParameters.js.map +1 -0
  889. package/lib/processors/removePaths.js +28 -0
  890. package/lib/processors/removePaths.js.map +1 -0
  891. package/lib/processors/traverse.js +15 -0
  892. package/lib/processors/traverse.js.map +1 -0
  893. package/lib/ui/Accordion.js +47 -0
  894. package/lib/ui/Accordion.js.map +1 -0
  895. package/lib/ui/ActionButton.js +25 -0
  896. package/lib/ui/ActionButton.js.map +1 -0
  897. package/lib/ui/Alert.js +51 -0
  898. package/lib/ui/Alert.js.map +1 -0
  899. package/lib/ui/AlertDialog.js +114 -0
  900. package/lib/ui/AlertDialog.js.map +1 -0
  901. package/lib/ui/AspectRatio.js +6 -0
  902. package/lib/ui/AspectRatio.js.map +1 -0
  903. package/lib/ui/Badge.js +28 -0
  904. package/lib/ui/Badge.js.map +1 -0
  905. package/lib/ui/Breadcrumb.js +94 -0
  906. package/lib/ui/Breadcrumb.js.map +1 -0
  907. package/lib/ui/Button.js +50 -0
  908. package/lib/ui/Button.js.map +1 -0
  909. package/lib/ui/Callout.js +96 -0
  910. package/lib/ui/Callout.js.map +1 -0
  911. package/lib/ui/Card.js +62 -0
  912. package/lib/ui/Card.js.map +1 -0
  913. package/lib/ui/Carousel.js +1416 -0
  914. package/lib/ui/Carousel.js.map +1 -0
  915. package/lib/ui/Checkbox.js +29 -0
  916. package/lib/ui/Checkbox.js.map +1 -0
  917. package/lib/ui/Collapsible.js +8 -0
  918. package/lib/ui/Collapsible.js.map +1 -0
  919. package/lib/ui/Command.js +156 -0
  920. package/lib/ui/Command.js.map +1 -0
  921. package/lib/ui/Dialog.js +101 -0
  922. package/lib/ui/Dialog.js.map +1 -0
  923. package/lib/ui/Drawer.js +17 -0
  924. package/lib/ui/Drawer.js.map +1 -0
  925. package/lib/ui/DropdownMenu.js +145 -0
  926. package/lib/ui/DropdownMenu.js.map +1 -0
  927. package/lib/ui/Form.js +95 -0
  928. package/lib/ui/Form.js.map +1 -0
  929. package/lib/ui/HoverCard.js +24 -0
  930. package/lib/ui/HoverCard.js.map +1 -0
  931. package/lib/ui/Input.js +22 -0
  932. package/lib/ui/Input.js.map +1 -0
  933. package/lib/ui/Label.js +20 -0
  934. package/lib/ui/Label.js.map +1 -0
  935. package/lib/ui/Pagination.js +106 -0
  936. package/lib/ui/Pagination.js.map +1 -0
  937. package/lib/ui/Popover.js +24 -0
  938. package/lib/ui/Popover.js.map +1 -0
  939. package/lib/ui/Progress.js +27 -0
  940. package/lib/ui/Progress.js.map +1 -0
  941. package/lib/ui/RadioGroup.js +32 -0
  942. package/lib/ui/RadioGroup.js.map +1 -0
  943. package/lib/ui/ScrollArea.js +39 -0
  944. package/lib/ui/ScrollArea.js.map +1 -0
  945. package/lib/ui/Select.js +122 -0
  946. package/lib/ui/Select.js.map +1 -0
  947. package/lib/ui/Skeleton.js +18 -0
  948. package/lib/ui/Skeleton.js.map +1 -0
  949. package/lib/ui/Slider.js +24 -0
  950. package/lib/ui/Slider.js.map +1 -0
  951. package/lib/ui/Stepper.js +6 -0
  952. package/lib/ui/Stepper.js.map +1 -0
  953. package/lib/ui/Switch.js +28 -0
  954. package/lib/ui/Switch.js.map +1 -0
  955. package/lib/ui/SyntaxHighlight.js +11 -0
  956. package/lib/ui/SyntaxHighlight.js.map +1 -0
  957. package/lib/ui/Tabs.js +47 -0
  958. package/lib/ui/Tabs.js.map +1 -0
  959. package/lib/ui/Textarea.js +21 -0
  960. package/lib/ui/Textarea.js.map +1 -0
  961. package/lib/ui/Toggle.js +38 -0
  962. package/lib/ui/Toggle.js.map +1 -0
  963. package/lib/ui/ToggleGroup.js +42 -0
  964. package/lib/ui/ToggleGroup.js.map +1 -0
  965. package/lib/ui/Tooltip.js +24 -0
  966. package/lib/ui/Tooltip.js.map +1 -0
  967. package/lib/ui/util.js +6 -0
  968. package/lib/ui/util.js.map +1 -0
  969. package/lib/useExposedProps-B9qXJedG.js +9 -0
  970. package/lib/useExposedProps-B9qXJedG.js.map +1 -0
  971. package/lib/useLatest-hmRS46UF.js +11 -0
  972. package/lib/useLatest-hmRS46UF.js.map +1 -0
  973. package/lib/zudoku.auth-auth0.js +30 -25
  974. package/lib/zudoku.auth-auth0.js.map +1 -1
  975. package/lib/zudoku.auth-clerk.js +101 -55
  976. package/lib/zudoku.auth-clerk.js.map +1 -1
  977. package/lib/zudoku.auth-openid.js +636 -665
  978. package/lib/zudoku.auth-openid.js.map +1 -1
  979. package/lib/zudoku.components.js +32 -3360
  980. package/lib/zudoku.components.js.map +1 -1
  981. package/lib/zudoku.hooks.js +19 -0
  982. package/lib/zudoku.hooks.js.map +1 -0
  983. package/lib/zudoku.icons.js +10 -0
  984. package/lib/zudoku.icons.js.map +1 -1
  985. package/lib/zudoku.plugin-api-catalog.js +117 -0
  986. package/lib/zudoku.plugin-api-catalog.js.map +1 -0
  987. package/lib/zudoku.plugin-api-keys.js +104 -108
  988. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  989. package/lib/zudoku.plugin-custom-pages.js +22 -0
  990. package/lib/zudoku.plugin-custom-pages.js.map +1 -0
  991. package/lib/zudoku.plugin-markdown.js +73 -24
  992. package/lib/zudoku.plugin-markdown.js.map +1 -1
  993. package/lib/zudoku.plugin-openapi.js +7 -12
  994. package/lib/zudoku.plugin-openapi.js.map +1 -1
  995. package/lib/zudoku.plugin-redirect.js +2 -2
  996. package/lib/zudoku.plugin-redirect.js.map +1 -1
  997. package/lib/zudoku.plugin-search-inkeep.js +53 -28
  998. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  999. package/lib/zudoku.plugin-search-pagefind.js +233 -0
  1000. package/lib/zudoku.plugin-search-pagefind.js.map +1 -0
  1001. package/lib/zudoku.plugins.js +14 -0
  1002. package/lib/zudoku.plugins.js.map +1 -0
  1003. package/package.json +180 -100
  1004. package/src/app/demo-cdn.html +31 -31
  1005. package/src/app/demo.tsx +1 -5
  1006. package/src/app/entry.client.tsx +28 -3
  1007. package/src/app/entry.server.tsx +81 -60
  1008. package/src/app/main.css +105 -41
  1009. package/src/app/main.tsx +55 -44
  1010. package/src/app/sentry.ts +24 -0
  1011. package/src/app/standalone.tsx +2 -6
  1012. package/src/app/tailwind.ts +83 -48
  1013. package/src/lib/MissingIcon.tsx +22 -0
  1014. package/src/lib/authentication/AuthenticationPlugin.tsx +4 -1
  1015. package/src/lib/authentication/authentication.ts +5 -3
  1016. package/src/lib/authentication/components/CallbackHandler.tsx +20 -51
  1017. package/src/lib/authentication/components/SignIn.tsx +1 -1
  1018. package/src/lib/authentication/components/SignOut.tsx +3 -2
  1019. package/src/lib/authentication/hook.ts +13 -4
  1020. package/src/lib/authentication/providers/auth0.tsx +20 -16
  1021. package/src/lib/authentication/providers/clerk.tsx +70 -15
  1022. package/src/lib/authentication/providers/openid.tsx +72 -55
  1023. package/src/lib/authentication/providers/supabase.tsx +157 -0
  1024. package/src/lib/authentication/state.ts +56 -8
  1025. package/{LICENSE.md → src/lib/authentication/use-broadcast/LICENSE.md} +2 -2
  1026. package/src/lib/authentication/use-broadcast/shared.ts +372 -0
  1027. package/src/lib/authentication/use-broadcast/useBroadcast.ts +146 -0
  1028. package/src/lib/components/AnchorLink.tsx +13 -8
  1029. package/src/lib/components/Autocomplete.tsx +113 -0
  1030. package/src/lib/components/Banner.tsx +13 -2
  1031. package/src/lib/components/Bootstrap.tsx +43 -16
  1032. package/src/lib/components/ClientOnly.tsx +6 -3
  1033. package/src/lib/components/DeveloperHint.tsx +6 -1
  1034. package/src/lib/components/ErrorPage.tsx +0 -2
  1035. package/src/lib/components/Footer.tsx +139 -0
  1036. package/src/lib/components/Header.tsx +104 -51
  1037. package/src/lib/components/Heading.tsx +13 -13
  1038. package/src/lib/components/InlineCode.tsx +15 -8
  1039. package/src/lib/components/Layout.tsx +34 -54
  1040. package/src/lib/components/Main.tsx +50 -0
  1041. package/src/lib/components/Markdown.tsx +15 -16
  1042. package/src/lib/components/MobileTopNavigation.tsx +42 -28
  1043. package/src/lib/components/NotFoundPage.tsx +1 -1
  1044. package/src/lib/components/Pagination.tsx +50 -0
  1045. package/src/lib/components/PathRenderer.tsx +61 -0
  1046. package/src/lib/components/ReactMarkdown.license.txt +21 -0
  1047. package/src/lib/components/ReactMarkdown.tsx +264 -0
  1048. package/src/lib/components/Search.tsx +18 -7
  1049. package/src/lib/components/SlotletProvider.tsx +29 -4
  1050. package/src/lib/components/StatusPage.tsx +91 -0
  1051. package/src/lib/components/ThemeSwitch.tsx +46 -0
  1052. package/src/lib/components/TopNavigation.tsx +107 -25
  1053. package/src/lib/components/Zudoku.tsx +121 -0
  1054. package/src/lib/components/cache.ts +23 -0
  1055. package/src/lib/components/context/BypassProtectedRoutesContext.ts +3 -0
  1056. package/src/lib/components/context/RouterEventsEmitter.tsx +19 -0
  1057. package/src/lib/components/context/ViewportAnchorContext.tsx +26 -21
  1058. package/src/lib/components/context/ZudokuContext.ts +54 -29
  1059. package/src/lib/components/context/ZudokuProvider.tsx +2 -2
  1060. package/src/lib/components/index.ts +31 -6
  1061. package/src/lib/components/navigation/PoweredByZudoku.tsx +23 -0
  1062. package/src/lib/components/navigation/Sidebar.tsx +38 -29
  1063. package/src/lib/components/navigation/SidebarBadge.tsx +17 -12
  1064. package/src/lib/components/navigation/SidebarCategory.tsx +61 -52
  1065. package/src/lib/components/navigation/SidebarItem.tsx +38 -50
  1066. package/src/lib/components/navigation/SidebarWrapper.tsx +42 -22
  1067. package/src/lib/{plugins/markdown → components/navigation}/Toc.tsx +5 -14
  1068. package/src/lib/components/navigation/ZudokuLogo.tsx +25 -0
  1069. package/src/lib/components/navigation/utils.ts +12 -17
  1070. package/src/lib/core/RouteGuard.tsx +96 -0
  1071. package/src/lib/core/ZudokuContext.ts +180 -0
  1072. package/src/lib/core/plugins.ts +46 -22
  1073. package/src/lib/errors/ErrorAlert.tsx +36 -15
  1074. package/src/lib/errors/RouterError.tsx +1 -1
  1075. package/src/lib/hooks/index.ts +5 -0
  1076. package/src/lib/hooks/useEvent.test.tsx +149 -0
  1077. package/src/lib/hooks/useEvent.ts +41 -0
  1078. package/src/lib/icons.ts +1 -0
  1079. package/src/lib/oas/graphql/circular.ts +50 -0
  1080. package/src/lib/oas/graphql/index.ts +321 -115
  1081. package/src/lib/oas/parser/dereference/index.ts +10 -4
  1082. package/src/lib/oas/parser/index.ts +8 -29
  1083. package/src/lib/oas/parser/upgrade/index.ts +24 -29
  1084. package/src/lib/plugins/api-catalog/Catalog.tsx +73 -0
  1085. package/src/lib/plugins/api-catalog/index.tsx +115 -0
  1086. package/src/lib/plugins/api-keys/CreateApiKey.tsx +10 -6
  1087. package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
  1088. package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +1 -1
  1089. package/src/lib/plugins/api-keys/index.tsx +16 -10
  1090. package/src/lib/plugins/custom-pages/CustomPage.tsx +18 -0
  1091. package/src/lib/plugins/custom-pages/index.tsx +24 -0
  1092. package/src/lib/plugins/markdown/MdxPage.tsx +54 -50
  1093. package/src/lib/plugins/markdown/index.tsx +53 -11
  1094. package/src/lib/plugins/markdown/resolver.ts +57 -0
  1095. package/src/lib/plugins/openapi/CollapsibleCode.tsx +83 -0
  1096. package/src/lib/plugins/openapi/ColorizedParam.tsx +49 -23
  1097. package/src/lib/plugins/openapi/Endpoint.tsx +83 -22
  1098. package/src/lib/plugins/openapi/OasProvider.tsx +51 -0
  1099. package/src/lib/plugins/openapi/OperationList.tsx +231 -71
  1100. package/src/lib/plugins/openapi/OperationListItem.tsx +136 -88
  1101. package/src/lib/plugins/openapi/ParamInfos.tsx +87 -0
  1102. package/src/lib/plugins/openapi/ParameterList.tsx +4 -0
  1103. package/src/lib/plugins/openapi/ParameterListItem.tsx +48 -31
  1104. package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +24 -2
  1105. package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +15 -33
  1106. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +46 -58
  1107. package/src/lib/plugins/openapi/SchemaList.tsx +151 -0
  1108. package/src/lib/plugins/openapi/Sidecar.tsx +155 -106
  1109. package/src/lib/plugins/openapi/SidecarBox.tsx +4 -16
  1110. package/src/lib/plugins/openapi/SidecarExamples.tsx +162 -0
  1111. package/src/lib/plugins/openapi/SimpleSelect.tsx +11 -3
  1112. package/src/lib/plugins/openapi/client/GraphQLClient.tsx +65 -0
  1113. package/src/lib/plugins/openapi/client/GraphQLContext.tsx +16 -0
  1114. package/src/lib/plugins/openapi/client/createServer.ts +8 -2
  1115. package/src/lib/plugins/openapi/client/useCreateQuery.ts +26 -0
  1116. package/src/lib/plugins/openapi/components/EnumValues.tsx +58 -0
  1117. package/src/lib/plugins/openapi/components/SelectOnClick.tsx +29 -0
  1118. package/src/lib/plugins/openapi/context.tsx +2 -2
  1119. package/src/lib/plugins/openapi/graphql/fragment-masking.ts +11 -18
  1120. package/src/lib/plugins/openapi/graphql/gql.ts +46 -30
  1121. package/src/lib/plugins/openapi/graphql/graphql.ts +413 -597
  1122. package/src/lib/plugins/openapi/index.tsx +110 -138
  1123. package/src/lib/plugins/openapi/interfaces.ts +60 -3
  1124. package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +52 -0
  1125. package/src/lib/plugins/openapi/playground/Headers.tsx +165 -36
  1126. package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +74 -0
  1127. package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +54 -0
  1128. package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +13 -0
  1129. package/src/lib/plugins/openapi/playground/PathParams.tsx +39 -64
  1130. package/src/lib/plugins/openapi/playground/Playground.tsx +395 -220
  1131. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +7 -4
  1132. package/src/lib/plugins/openapi/playground/QueryParams.tsx +86 -88
  1133. package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +51 -0
  1134. package/src/lib/plugins/openapi/playground/SubmitButton.tsx +75 -0
  1135. package/src/lib/plugins/openapi/playground/createUrl.ts +6 -1
  1136. package/src/lib/plugins/openapi/playground/rememberedIdentity.ts +26 -0
  1137. package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +73 -0
  1138. package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +230 -0
  1139. package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +123 -0
  1140. package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.test.ts +64 -0
  1141. package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.ts +36 -0
  1142. package/src/lib/plugins/openapi/processors/removeExtensions.test.ts +202 -0
  1143. package/src/lib/plugins/openapi/processors/removeExtensions.ts +27 -0
  1144. package/src/lib/plugins/openapi/processors/removeParameters.test.ts +148 -0
  1145. package/src/lib/plugins/openapi/processors/removeParameters.ts +101 -0
  1146. package/src/lib/plugins/openapi/processors/removePaths.test.ts +126 -0
  1147. package/src/lib/plugins/openapi/processors/removePaths.ts +55 -0
  1148. package/src/lib/plugins/openapi/processors/traverse.ts +1 -0
  1149. package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.tsx +1 -8
  1150. package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.tsx +3 -0
  1151. package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.tsx +6 -3
  1152. package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +36 -0
  1153. package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +148 -0
  1154. package/src/lib/plugins/openapi/schema/SchemaView.tsx +88 -136
  1155. package/src/lib/plugins/openapi/schema/utils.ts +11 -1
  1156. package/src/lib/plugins/openapi/state.ts +36 -0
  1157. package/src/lib/plugins/openapi/util/createSidebarCategory.tsx +37 -0
  1158. package/src/lib/plugins/openapi/util/generateSchemaExample.ts +44 -43
  1159. package/src/lib/plugins/openapi/util/getRoutes.tsx +126 -0
  1160. package/src/lib/plugins/openapi/util/methodColorMap.tsx +11 -0
  1161. package/src/lib/plugins/openapi/util/methodToColor.ts +27 -0
  1162. package/src/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.tsx +32 -0
  1163. package/src/lib/plugins/redirect/index.tsx +6 -10
  1164. package/src/lib/plugins/search-inkeep/index.tsx +80 -25
  1165. package/src/lib/plugins/search-inkeep/inkeep.ts +3 -9
  1166. package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +164 -0
  1167. package/src/lib/plugins/search-pagefind/ResultList.tsx +105 -0
  1168. package/src/lib/plugins/search-pagefind/get-results.tsx +75 -0
  1169. package/src/lib/plugins/search-pagefind/index.tsx +21 -0
  1170. package/src/lib/plugins/search-pagefind/types.ts +118 -0
  1171. package/src/lib/ui/Accordion.tsx +56 -0
  1172. package/src/lib/ui/ActionButton.tsx +28 -0
  1173. package/src/lib/ui/{Note.tsx → Alert.tsx} +11 -10
  1174. package/src/lib/ui/AlertDialog.tsx +139 -0
  1175. package/src/lib/ui/AspectRatio.tsx +5 -0
  1176. package/src/lib/ui/Badge.tsx +37 -0
  1177. package/src/lib/ui/Breadcrumb.tsx +115 -0
  1178. package/src/lib/ui/Button.tsx +5 -3
  1179. package/src/lib/ui/Callout.tsx +36 -16
  1180. package/src/lib/ui/Card.tsx +1 -1
  1181. package/src/lib/ui/Carousel.tsx +260 -0
  1182. package/src/lib/ui/Checkbox.tsx +29 -0
  1183. package/src/lib/ui/Collapsible.tsx +9 -0
  1184. package/src/lib/ui/Command.tsx +193 -0
  1185. package/src/lib/{components → ui}/Dialog.tsx +4 -3
  1186. package/src/lib/ui/Drawer.tsx +38 -36
  1187. package/src/lib/ui/Form.tsx +177 -0
  1188. package/src/lib/ui/HoverCard.tsx +27 -0
  1189. package/src/lib/ui/Input.tsx +1 -2
  1190. package/src/lib/ui/Label.tsx +24 -0
  1191. package/src/lib/ui/Pagination.tsx +117 -0
  1192. package/src/lib/ui/Popover.tsx +29 -0
  1193. package/src/lib/ui/Progress.tsx +26 -0
  1194. package/src/lib/ui/RadioGroup.tsx +42 -0
  1195. package/src/lib/ui/ScrollArea.tsx +46 -0
  1196. package/src/lib/{components → ui}/Select.tsx +2 -2
  1197. package/src/lib/ui/Skeleton.tsx +15 -0
  1198. package/src/lib/ui/Slider.tsx +26 -0
  1199. package/src/lib/ui/Stepper.tsx +8 -0
  1200. package/src/lib/ui/Switch.tsx +27 -0
  1201. package/src/lib/ui/SyntaxHighlight.tsx +186 -0
  1202. package/src/lib/ui/Textarea.tsx +23 -0
  1203. package/src/lib/ui/Toggle.tsx +43 -0
  1204. package/src/lib/ui/ToggleGroup.tsx +59 -0
  1205. package/src/lib/ui/Tooltip.tsx +28 -0
  1206. package/src/lib/ui/util.tsx +3 -0
  1207. package/src/lib/util/MdxComponents.tsx +12 -12
  1208. package/src/lib/util/createVariantComponent.tsx +2 -2
  1209. package/src/lib/util/detectOS.ts +9 -0
  1210. package/src/lib/util/invariant.ts +15 -3
  1211. package/src/lib/util/joinPath.tsx +3 -0
  1212. package/src/lib/util/joinUrl.test.ts +62 -0
  1213. package/src/lib/util/joinUrl.ts +57 -0
  1214. package/src/lib/util/scrollIntoViewIfNeeded.ts +18 -0
  1215. package/src/lib/util/traverse.ts +31 -0
  1216. package/src/lib/util/types.ts +7 -0
  1217. package/src/lib/util/useExposedProps.tsx +16 -0
  1218. package/src/lib/util/useIsomorphicLayoutEffect.ts +5 -0
  1219. package/src/lib/util/useLatest.ts +18 -0
  1220. package/src/lib/util/useOnScreen.ts +34 -0
  1221. package/src/lib/util/useScrollToAnchor.ts +48 -39
  1222. package/src/lib/util/useScrollToTop.ts +9 -4
  1223. package/dist/internal.d.ts +0 -1
  1224. package/dist/internal.js +0 -2
  1225. package/dist/internal.js.map +0 -1
  1226. package/dist/lib/components/DevPortal.js.map +0 -1
  1227. package/dist/lib/components/Dialog.js.map +0 -1
  1228. package/dist/lib/components/Select.js.map +0 -1
  1229. package/dist/lib/components/SyntaxHighlight.d.ts +0 -11
  1230. package/dist/lib/components/SyntaxHighlight.js +0 -50
  1231. package/dist/lib/components/SyntaxHighlight.js.map +0 -1
  1232. package/dist/lib/components/context/PluginSystem.js +0 -2
  1233. package/dist/lib/components/context/PluginSystem.js.map +0 -1
  1234. package/dist/lib/components/context/ThemeContext.d.ts +0 -2
  1235. package/dist/lib/components/context/ThemeContext.js +0 -7
  1236. package/dist/lib/components/context/ThemeContext.js.map +0 -1
  1237. package/dist/lib/components/context/ThemeProvider.d.ts +0 -4
  1238. package/dist/lib/components/context/ThemeProvider.js +0 -23
  1239. package/dist/lib/components/context/ThemeProvider.js.map +0 -1
  1240. package/dist/lib/core/DevPortalContext.d.ts +0 -78
  1241. package/dist/lib/core/DevPortalContext.js +0 -49
  1242. package/dist/lib/core/DevPortalContext.js.map +0 -1
  1243. package/dist/lib/plugins/custom-page/index.d.ts +0 -8
  1244. package/dist/lib/plugins/custom-page/index.js +0 -12
  1245. package/dist/lib/plugins/custom-page/index.js.map +0 -1
  1246. package/dist/lib/plugins/markdown/Toc.js.map +0 -1
  1247. package/dist/lib/plugins/markdown/generateRoutes.d.ts +0 -3
  1248. package/dist/lib/plugins/markdown/generateRoutes.js +0 -19
  1249. package/dist/lib/plugins/markdown/generateRoutes.js.map +0 -1
  1250. package/dist/lib/plugins/openapi/Route.d.ts +0 -6
  1251. package/dist/lib/plugins/openapi/Route.js +0 -8
  1252. package/dist/lib/plugins/openapi/Route.js.map +0 -1
  1253. package/dist/lib/plugins/openapi/client/createMemoryClient.d.ts +0 -12
  1254. package/dist/lib/plugins/openapi/client/createMemoryClient.js +0 -46
  1255. package/dist/lib/plugins/openapi/client/createMemoryClient.js.map +0 -1
  1256. package/dist/lib/plugins/openapi/client/createWorkerClient.d.ts +0 -10
  1257. package/dist/lib/plugins/openapi/client/createWorkerClient.js +0 -61
  1258. package/dist/lib/plugins/openapi/client/createWorkerClient.js.map +0 -1
  1259. package/dist/lib/plugins/openapi/client/interfaces.d.ts +0 -4
  1260. package/dist/lib/plugins/openapi/client/interfaces.js +0 -2
  1261. package/dist/lib/plugins/openapi/client/interfaces.js.map +0 -1
  1262. package/dist/lib/plugins/openapi/client/worker.js +0 -20
  1263. package/dist/lib/plugins/openapi/client/worker.js.map +0 -1
  1264. package/dist/lib/plugins/openapi/playground/Editor.d.ts +0 -1
  1265. package/dist/lib/plugins/openapi/playground/Editor.js +0 -5
  1266. package/dist/lib/plugins/openapi/playground/Editor.js.map +0 -1
  1267. package/dist/lib/plugins/openapi/playground/ResponseTab.d.ts +0 -4
  1268. package/dist/lib/plugins/openapi/playground/ResponseTab.js +0 -42
  1269. package/dist/lib/plugins/openapi/playground/ResponseTab.js.map +0 -1
  1270. package/dist/lib/plugins/openapi/schema/SchemaComponents.js +0 -28
  1271. package/dist/lib/plugins/openapi/schema/SchemaComponents.js.map +0 -1
  1272. package/dist/lib/plugins/openapi/util/urql.d.ts +0 -7
  1273. package/dist/lib/plugins/openapi/util/urql.js +0 -8
  1274. package/dist/lib/plugins/openapi/util/urql.js.map +0 -1
  1275. package/dist/lib/plugins/openapi-worker.d.ts +0 -1
  1276. package/dist/lib/plugins/openapi-worker.js +0 -2
  1277. package/dist/lib/plugins/openapi-worker.js.map +0 -1
  1278. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.d.ts +0 -2
  1279. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js +0 -3
  1280. package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js.map +0 -1
  1281. package/dist/lib/themeToggle.d.ts +0 -1
  1282. package/dist/lib/themeToggle.js +0 -7
  1283. package/dist/lib/themeToggle.js.map +0 -1
  1284. package/dist/lib/ui/Note.d.ts +0 -8
  1285. package/dist/lib/ui/Note.js +0 -23
  1286. package/dist/lib/ui/Note.js.map +0 -1
  1287. package/dist/lib/util/createWaitForNotify.d.ts +0 -1
  1288. package/dist/lib/util/createWaitForNotify.js +0 -15
  1289. package/dist/lib/util/createWaitForNotify.js.map +0 -1
  1290. package/dist/lib/util/slugify.d.ts +0 -2
  1291. package/dist/lib/util/slugify.js +0 -3
  1292. package/dist/lib/util/slugify.js.map +0 -1
  1293. package/dist/vite/plugin-custom-css.js +0 -55
  1294. package/dist/vite/plugin-custom-css.js.map +0 -1
  1295. package/dist/vite/plugin-html-transform.d.ts +0 -2
  1296. package/dist/vite/plugin-html-transform.js +0 -15
  1297. package/dist/vite/plugin-html-transform.js.map +0 -1
  1298. package/dist/vite/plugin-icons.d.ts +0 -3
  1299. package/dist/vite/plugin-icons.js +0 -47
  1300. package/dist/vite/plugin-icons.js.map +0 -1
  1301. package/dist/vite/prerender.d.ts +0 -17
  1302. package/dist/vite/prerender.js +0 -87
  1303. package/dist/vite/prerender.js.map +0 -1
  1304. package/lib/AuthenticationPlugin-Bx9FK124.js +0 -55
  1305. package/lib/AuthenticationPlugin-Bx9FK124.js.map +0 -1
  1306. package/lib/CategoryHeading-XnFqN2lJ.js +0 -10
  1307. package/lib/DeveloperHint-FBb2uXJe.js +0 -16
  1308. package/lib/DeveloperHint-FBb2uXJe.js.map +0 -1
  1309. package/lib/ErrorPage-knunPbKI.js +0 -18
  1310. package/lib/ErrorPage-knunPbKI.js.map +0 -1
  1311. package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
  1312. package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
  1313. package/lib/Input-BEDZAKw0.js +0 -2198
  1314. package/lib/Input-BEDZAKw0.js.map +0 -1
  1315. package/lib/Markdown-B4aR03g6.js +0 -20279
  1316. package/lib/Markdown-B4aR03g6.js.map +0 -1
  1317. package/lib/MdxPage-BZyQsH8Z.js +0 -172
  1318. package/lib/MdxPage-BZyQsH8Z.js.map +0 -1
  1319. package/lib/OperationList-2NeWEM0u.js +0 -560
  1320. package/lib/OperationList-2NeWEM0u.js.map +0 -1
  1321. package/lib/Route-BZPewmrN.js +0 -14
  1322. package/lib/Route-BZPewmrN.js.map +0 -1
  1323. package/lib/SidebarBadge-COz0hgfa.js +0 -498
  1324. package/lib/SidebarBadge-COz0hgfa.js.map +0 -1
  1325. package/lib/SlotletProvider-DJMaOUDs.js +0 -238
  1326. package/lib/SlotletProvider-DJMaOUDs.js.map +0 -1
  1327. package/lib/ZudokuContext-cr-pTRY1.js +0 -1084
  1328. package/lib/ZudokuContext-cr-pTRY1.js.map +0 -1
  1329. package/lib/assets/index-B9EWVYfo.js +0 -4790
  1330. package/lib/assets/index-B9EWVYfo.js.map +0 -1
  1331. package/lib/assets/worker-BvD7B6MG.js +0 -15839
  1332. package/lib/assets/worker-BvD7B6MG.js.map +0 -1
  1333. package/lib/index-1EDgIO6b.js +0 -124
  1334. package/lib/index-1EDgIO6b.js.map +0 -1
  1335. package/lib/index-BG0g4WW0.js +0 -1771
  1336. package/lib/index-BG0g4WW0.js.map +0 -1
  1337. package/lib/index-CLd8ycZz.js.map +0 -1
  1338. package/lib/index-Dv2KZuEw.js +0 -5685
  1339. package/lib/index-Dv2KZuEw.js.map +0 -1
  1340. package/lib/index-Zezcv0xb.js +0 -2814
  1341. package/lib/index-Zezcv0xb.js.map +0 -1
  1342. package/lib/joinPath-B7kNnUX4.js +0 -8
  1343. package/lib/joinPath-B7kNnUX4.js.map +0 -1
  1344. package/lib/jsx-runtime-B6kdoens.js +0 -635
  1345. package/lib/jsx-runtime-B6kdoens.js.map +0 -1
  1346. package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
  1347. package/lib/prism-java.min-d5iT_mOd.js +0 -7
  1348. package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
  1349. package/lib/prism-markup-templating-DZrrEs0A.js.map +0 -1
  1350. package/lib/prism-php.min-o7FpoMP_.js +0 -11
  1351. package/lib/prism-php.min-o7FpoMP_.js.map +0 -1
  1352. package/lib/prism-ruby.min-C7LwcKyz.js +0 -10
  1353. package/lib/prism-typescript.min-oSVeWCAd.js +0 -6
  1354. package/lib/router-D2p7Olpn.js +0 -2971
  1355. package/lib/router-D2p7Olpn.js.map +0 -1
  1356. package/lib/slugify-DbLhpSPt.js +0 -28
  1357. package/lib/slugify-DbLhpSPt.js.map +0 -1
  1358. package/lib/state-lIwt9isb.js +0 -288
  1359. package/lib/state-lIwt9isb.js.map +0 -1
  1360. package/lib/urql-YhcsXYy8.js +0 -1591
  1361. package/lib/urql-YhcsXYy8.js.map +0 -1
  1362. package/lib/utils-ByIc_KIM.js +0 -749
  1363. package/lib/utils-ByIc_KIM.js.map +0 -1
  1364. package/lib/zudoku.openapi-worker.js +0 -16053
  1365. package/lib/zudoku.openapi-worker.js.map +0 -1
  1366. package/lib/zudoku.plugin-custom-page.js +0 -13
  1367. package/lib/zudoku.plugin-custom-page.js.map +0 -1
  1368. package/src/lib/components/DevPortal.tsx +0 -111
  1369. package/src/lib/components/SyntaxHighlight.tsx +0 -122
  1370. package/src/lib/components/context/PluginSystem.ts +0 -0
  1371. package/src/lib/components/context/ThemeContext.tsx +0 -8
  1372. package/src/lib/components/context/ThemeProvider.tsx +0 -27
  1373. package/src/lib/core/DevPortalContext.ts +0 -135
  1374. package/src/lib/plugins/custom-page/index.tsx +0 -22
  1375. package/src/lib/plugins/markdown/generateRoutes.tsx +0 -35
  1376. package/src/lib/plugins/openapi/Route.tsx +0 -21
  1377. package/src/lib/plugins/openapi/client/createMemoryClient.ts +0 -56
  1378. package/src/lib/plugins/openapi/client/createWorkerClient.ts +0 -80
  1379. package/src/lib/plugins/openapi/client/interfaces.ts +0 -5
  1380. package/src/lib/plugins/openapi/client/worker.ts +0 -30
  1381. package/src/lib/plugins/openapi/playground/Editor.tsx +0 -4
  1382. package/src/lib/plugins/openapi/playground/ResponseTab.tsx +0 -77
  1383. package/src/lib/plugins/openapi/schema/SchemaComponents.tsx +0 -126
  1384. package/src/lib/plugins/openapi/util/urql.ts +0 -8
  1385. package/src/lib/plugins/openapi-worker.ts +0 -1
  1386. package/src/lib/plugins/search-inkeep/InkeepCustomTrigger.tsx +0 -3
  1387. package/src/lib/themeToggle.ts +0 -7
  1388. package/src/lib/util/createWaitForNotify.ts +0 -18
  1389. package/src/lib/util/slugify.ts +0 -3
  1390. /package/dist/lib/{plugins/markdown → components/navigation}/Toc.d.ts +0 -0
  1391. /package/dist/lib/{components/context/PluginSystem.d.ts → hooks/useEvent.test.d.ts} +0 -0
  1392. /package/dist/lib/plugins/openapi/{client/worker.d.ts → playground/result-panel/convertToTypes.test.d.ts} +0 -0
  1393. /package/dist/lib/{components → ui}/Dialog.d.ts +0 -0
  1394. /package/dist/lib/{components → ui}/Select.d.ts +0 -0
@@ -0,0 +1,2279 @@
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
18
+ } = e;
19
+ return {
20
+ getClassGroupId: (a) => {
21
+ const s = a.split(B);
22
+ return s[0] === "" && s.length !== 1 && s.shift(), D(s, r) || le(a);
23
+ },
24
+ getConflictingClassGroupIds: (a, s) => {
25
+ const u = t[a] || [];
26
+ return s && o[a] ? [...u, ...o[a]] : u;
27
+ }
28
+ };
29
+ }, D = (e, r) => {
30
+ var a;
31
+ 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)
37
+ 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;
47
+ }
48
+ }, ie = (e) => {
49
+ const {
50
+ theme: r,
51
+ prefix: t
52
+ } = e, o = {
53
+ nextPart: /* @__PURE__ */ new Map(),
54
+ validators: []
55
+ };
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;
64
+ return;
65
+ }
66
+ if (typeof l == "function") {
67
+ if (ae(l)) {
68
+ $(l(o), r, t, o);
69
+ return;
70
+ }
71
+ r.validators.push({
72
+ validator: l,
73
+ classGroupId: t
74
+ });
75
+ return;
76
+ }
77
+ Object.entries(l).forEach(([n, a]) => {
78
+ $(a, Q(r, n), t, o);
79
+ });
80
+ });
81
+ }, Q = (e, r) => {
82
+ let t = e;
83
+ return r.split(B).forEach((o) => {
84
+ t.nextPart.has(o) || t.nextPart.set(o, {
85
+ nextPart: /* @__PURE__ */ new Map(),
86
+ 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) => {
93
+ if (e < 1)
94
+ return {
95
+ get: () => {
96
+ },
97
+ set: () => {
98
+ }
99
+ };
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());
103
+ };
104
+ 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;
111
+ },
112
+ set(n, a) {
113
+ t.has(n) ? t.set(n, a) : l(n, a);
114
+ }
115
+ };
116
+ }, ee = "!", pe = (e) => {
117
+ 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;
128
+ continue;
129
+ }
130
+ if (f === "/") {
131
+ y = p;
132
+ continue;
133
+ }
134
+ }
135
+ f === "[" ? g++ : f === "]" && g--;
136
+ }
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;
138
+ return {
139
+ modifiers: u,
140
+ hasImportantModifier: v,
141
+ baseClassName: w,
142
+ maybePostfixModifierPosition: b
143
+ };
144
+ };
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) => {
162
+ 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);
179
+ continue;
180
+ }
181
+ if (b = o(x), !b) {
182
+ s = g + (s.length > 0 ? " " + s : s);
183
+ continue;
184
+ }
185
+ w = !1;
186
+ }
187
+ const p = ue(m).join(":"), f = y ? p + ee : p, h = f + b;
188
+ if (n.includes(h))
189
+ 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);
195
+ }
196
+ s = g + (s.length > 0 ? " " + s : s);
197
+ }
198
+ return s;
199
+ };
200
+ function me() {
201
+ let e = 0, r, t, o = "";
202
+ for (; e < arguments.length; )
203
+ (r = arguments[e++]) && (t = re(r)) && (o && (o += " "), o += t);
204
+ return o;
205
+ }
206
+ const re = (e) => {
207
+ if (typeof e == "string")
208
+ 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;
213
+ };
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);
219
+ }
220
+ function s(u) {
221
+ const g = o(u);
222
+ if (g)
223
+ return g;
224
+ const m = fe(u, t);
225
+ return l(u, m), m;
226
+ }
227
+ return function() {
228
+ return n(me.apply(null, arguments));
229
+ };
230
+ }
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) => (
238
+ // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
239
+ // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
240
+ // 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];
244
+ return {
245
+ cacheSize: 500,
246
+ separator: ":",
247
+ 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()
273
+ },
274
+ classGroups: {
275
+ // Layout
276
+ /**
277
+ * Aspect Ratio
278
+ * @see https://tailwindcss.com/docs/aspect-ratio
279
+ */
280
+ aspect: [{
281
+ aspect: ["auto", "square", "video", i]
282
+ }],
283
+ /**
284
+ * Container
285
+ * @see https://tailwindcss.com/docs/container
286
+ */
287
+ container: ["container"],
288
+ /**
289
+ * Columns
290
+ * @see https://tailwindcss.com/docs/columns
291
+ */
292
+ columns: [{
293
+ columns: [A]
294
+ }],
295
+ /**
296
+ * Break After
297
+ * @see https://tailwindcss.com/docs/break-after
298
+ */
299
+ "break-after": [{
300
+ "break-after": H()
301
+ }],
302
+ /**
303
+ * Break Before
304
+ * @see https://tailwindcss.com/docs/break-before
305
+ */
306
+ "break-before": [{
307
+ "break-before": H()
308
+ }],
309
+ /**
310
+ * Break Inside
311
+ * @see https://tailwindcss.com/docs/break-inside
312
+ */
313
+ "break-inside": [{
314
+ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
315
+ }],
316
+ /**
317
+ * Box Decoration Break
318
+ * @see https://tailwindcss.com/docs/box-decoration-break
319
+ */
320
+ "box-decoration": [{
321
+ "box-decoration": ["slice", "clone"]
322
+ }],
323
+ /**
324
+ * Box Sizing
325
+ * @see https://tailwindcss.com/docs/box-sizing
326
+ */
327
+ box: [{
328
+ box: ["border", "content"]
329
+ }],
330
+ /**
331
+ * Display
332
+ * @see https://tailwindcss.com/docs/display
333
+ */
334
+ 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"],
335
+ /**
336
+ * Floats
337
+ * @see https://tailwindcss.com/docs/float
338
+ */
339
+ float: [{
340
+ float: ["right", "left", "none", "start", "end"]
341
+ }],
342
+ /**
343
+ * Clear
344
+ * @see https://tailwindcss.com/docs/clear
345
+ */
346
+ clear: [{
347
+ clear: ["left", "right", "both", "none", "start", "end"]
348
+ }],
349
+ /**
350
+ * Isolation
351
+ * @see https://tailwindcss.com/docs/isolation
352
+ */
353
+ isolation: ["isolate", "isolation-auto"],
354
+ /**
355
+ * Object Fit
356
+ * @see https://tailwindcss.com/docs/object-fit
357
+ */
358
+ "object-fit": [{
359
+ object: ["contain", "cover", "fill", "none", "scale-down"]
360
+ }],
361
+ /**
362
+ * Object Position
363
+ * @see https://tailwindcss.com/docs/object-position
364
+ */
365
+ "object-position": [{
366
+ object: [...X(), i]
367
+ }],
368
+ /**
369
+ * Overflow
370
+ * @see https://tailwindcss.com/docs/overflow
371
+ */
372
+ overflow: [{
373
+ overflow: W()
374
+ }],
375
+ /**
376
+ * Overflow X
377
+ * @see https://tailwindcss.com/docs/overflow
378
+ */
379
+ "overflow-x": [{
380
+ "overflow-x": W()
381
+ }],
382
+ /**
383
+ * Overflow Y
384
+ * @see https://tailwindcss.com/docs/overflow
385
+ */
386
+ "overflow-y": [{
387
+ "overflow-y": W()
388
+ }],
389
+ /**
390
+ * Overscroll Behavior
391
+ * @see https://tailwindcss.com/docs/overscroll-behavior
392
+ */
393
+ overscroll: [{
394
+ overscroll: L()
395
+ }],
396
+ /**
397
+ * Overscroll Behavior X
398
+ * @see https://tailwindcss.com/docs/overscroll-behavior
399
+ */
400
+ "overscroll-x": [{
401
+ "overscroll-x": L()
402
+ }],
403
+ /**
404
+ * Overscroll Behavior Y
405
+ * @see https://tailwindcss.com/docs/overscroll-behavior
406
+ */
407
+ "overscroll-y": [{
408
+ "overscroll-y": L()
409
+ }],
410
+ /**
411
+ * Position
412
+ * @see https://tailwindcss.com/docs/position
413
+ */
414
+ position: ["static", "fixed", "absolute", "relative", "sticky"],
415
+ /**
416
+ * Top / Right / Bottom / Left
417
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
418
+ */
419
+ inset: [{
420
+ inset: [b]
421
+ }],
422
+ /**
423
+ * Right / Left
424
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
425
+ */
426
+ "inset-x": [{
427
+ "inset-x": [b]
428
+ }],
429
+ /**
430
+ * Top / Bottom
431
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
432
+ */
433
+ "inset-y": [{
434
+ "inset-y": [b]
435
+ }],
436
+ /**
437
+ * Start
438
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
439
+ */
440
+ start: [{
441
+ start: [b]
442
+ }],
443
+ /**
444
+ * End
445
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
446
+ */
447
+ end: [{
448
+ end: [b]
449
+ }],
450
+ /**
451
+ * Top
452
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
453
+ */
454
+ top: [{
455
+ top: [b]
456
+ }],
457
+ /**
458
+ * Right
459
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
460
+ */
461
+ right: [{
462
+ right: [b]
463
+ }],
464
+ /**
465
+ * Bottom
466
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
467
+ */
468
+ bottom: [{
469
+ bottom: [b]
470
+ }],
471
+ /**
472
+ * Left
473
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
474
+ */
475
+ left: [{
476
+ left: [b]
477
+ }],
478
+ /**
479
+ * Visibility
480
+ * @see https://tailwindcss.com/docs/visibility
481
+ */
482
+ visibility: ["visible", "invisible", "collapse"],
483
+ /**
484
+ * Z-Index
485
+ * @see https://tailwindcss.com/docs/z-index
486
+ */
487
+ z: [{
488
+ z: ["auto", P, i]
489
+ }],
490
+ // Flexbox and Grid
491
+ /**
492
+ * Flex Basis
493
+ * @see https://tailwindcss.com/docs/flex-basis
494
+ */
495
+ basis: [{
496
+ basis: V()
497
+ }],
498
+ /**
499
+ * Flex Direction
500
+ * @see https://tailwindcss.com/docs/flex-direction
501
+ */
502
+ "flex-direction": [{
503
+ flex: ["row", "row-reverse", "col", "col-reverse"]
504
+ }],
505
+ /**
506
+ * Flex Wrap
507
+ * @see https://tailwindcss.com/docs/flex-wrap
508
+ */
509
+ "flex-wrap": [{
510
+ flex: ["wrap", "wrap-reverse", "nowrap"]
511
+ }],
512
+ /**
513
+ * Flex
514
+ * @see https://tailwindcss.com/docs/flex
515
+ */
516
+ flex: [{
517
+ flex: ["1", "auto", "initial", "none", i]
518
+ }],
519
+ /**
520
+ * Flex Grow
521
+ * @see https://tailwindcss.com/docs/flex-grow
522
+ */
523
+ grow: [{
524
+ grow: I()
525
+ }],
526
+ /**
527
+ * Flex Shrink
528
+ * @see https://tailwindcss.com/docs/flex-shrink
529
+ */
530
+ shrink: [{
531
+ shrink: I()
532
+ }],
533
+ /**
534
+ * Order
535
+ * @see https://tailwindcss.com/docs/order
536
+ */
537
+ order: [{
538
+ order: ["first", "last", "none", P, i]
539
+ }],
540
+ /**
541
+ * Grid Template Columns
542
+ * @see https://tailwindcss.com/docs/grid-template-columns
543
+ */
544
+ "grid-cols": [{
545
+ "grid-cols": [j]
546
+ }],
547
+ /**
548
+ * Grid Column Start / End
549
+ * @see https://tailwindcss.com/docs/grid-column
550
+ */
551
+ "col-start-end": [{
552
+ col: ["auto", {
553
+ span: ["full", P, i]
554
+ }, i]
555
+ }],
556
+ /**
557
+ * Grid Column Start
558
+ * @see https://tailwindcss.com/docs/grid-column
559
+ */
560
+ "col-start": [{
561
+ "col-start": N()
562
+ }],
563
+ /**
564
+ * Grid Column End
565
+ * @see https://tailwindcss.com/docs/grid-column
566
+ */
567
+ "col-end": [{
568
+ "col-end": N()
569
+ }],
570
+ /**
571
+ * Grid Template Rows
572
+ * @see https://tailwindcss.com/docs/grid-template-rows
573
+ */
574
+ "grid-rows": [{
575
+ "grid-rows": [j]
576
+ }],
577
+ /**
578
+ * Grid Row Start / End
579
+ * @see https://tailwindcss.com/docs/grid-row
580
+ */
581
+ "row-start-end": [{
582
+ row: ["auto", {
583
+ span: [P, i]
584
+ }, i]
585
+ }],
586
+ /**
587
+ * Grid Row Start
588
+ * @see https://tailwindcss.com/docs/grid-row
589
+ */
590
+ "row-start": [{
591
+ "row-start": N()
592
+ }],
593
+ /**
594
+ * Grid Row End
595
+ * @see https://tailwindcss.com/docs/grid-row
596
+ */
597
+ "row-end": [{
598
+ "row-end": N()
599
+ }],
600
+ /**
601
+ * Grid Auto Flow
602
+ * @see https://tailwindcss.com/docs/grid-auto-flow
603
+ */
604
+ "grid-flow": [{
605
+ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
606
+ }],
607
+ /**
608
+ * Grid Auto Columns
609
+ * @see https://tailwindcss.com/docs/grid-auto-columns
610
+ */
611
+ "auto-cols": [{
612
+ "auto-cols": ["auto", "min", "max", "fr", i]
613
+ }],
614
+ /**
615
+ * Grid Auto Rows
616
+ * @see https://tailwindcss.com/docs/grid-auto-rows
617
+ */
618
+ "auto-rows": [{
619
+ "auto-rows": ["auto", "min", "max", "fr", i]
620
+ }],
621
+ /**
622
+ * Gap
623
+ * @see https://tailwindcss.com/docs/gap
624
+ */
625
+ gap: [{
626
+ gap: [x]
627
+ }],
628
+ /**
629
+ * Gap X
630
+ * @see https://tailwindcss.com/docs/gap
631
+ */
632
+ "gap-x": [{
633
+ "gap-x": [x]
634
+ }],
635
+ /**
636
+ * Gap Y
637
+ * @see https://tailwindcss.com/docs/gap
638
+ */
639
+ "gap-y": [{
640
+ "gap-y": [x]
641
+ }],
642
+ /**
643
+ * Justify Content
644
+ * @see https://tailwindcss.com/docs/justify-content
645
+ */
646
+ "justify-content": [{
647
+ justify: ["normal", ...O()]
648
+ }],
649
+ /**
650
+ * Justify Items
651
+ * @see https://tailwindcss.com/docs/justify-items
652
+ */
653
+ "justify-items": [{
654
+ "justify-items": ["start", "end", "center", "stretch"]
655
+ }],
656
+ /**
657
+ * Justify Self
658
+ * @see https://tailwindcss.com/docs/justify-self
659
+ */
660
+ "justify-self": [{
661
+ "justify-self": ["auto", "start", "end", "center", "stretch"]
662
+ }],
663
+ /**
664
+ * Align Content
665
+ * @see https://tailwindcss.com/docs/align-content
666
+ */
667
+ "align-content": [{
668
+ content: ["normal", ...O(), "baseline"]
669
+ }],
670
+ /**
671
+ * Align Items
672
+ * @see https://tailwindcss.com/docs/align-items
673
+ */
674
+ "align-items": [{
675
+ items: ["start", "end", "center", "baseline", "stretch"]
676
+ }],
677
+ /**
678
+ * Align Self
679
+ * @see https://tailwindcss.com/docs/align-self
680
+ */
681
+ "align-self": [{
682
+ self: ["auto", "start", "end", "center", "stretch", "baseline"]
683
+ }],
684
+ /**
685
+ * Place Content
686
+ * @see https://tailwindcss.com/docs/place-content
687
+ */
688
+ "place-content": [{
689
+ "place-content": [...O(), "baseline"]
690
+ }],
691
+ /**
692
+ * Place Items
693
+ * @see https://tailwindcss.com/docs/place-items
694
+ */
695
+ "place-items": [{
696
+ "place-items": ["start", "end", "center", "baseline", "stretch"]
697
+ }],
698
+ /**
699
+ * Place Self
700
+ * @see https://tailwindcss.com/docs/place-self
701
+ */
702
+ "place-self": [{
703
+ "place-self": ["auto", "start", "end", "center", "stretch"]
704
+ }],
705
+ // Spacing
706
+ /**
707
+ * Padding
708
+ * @see https://tailwindcss.com/docs/padding
709
+ */
710
+ p: [{
711
+ p: [h]
712
+ }],
713
+ /**
714
+ * Padding X
715
+ * @see https://tailwindcss.com/docs/padding
716
+ */
717
+ px: [{
718
+ px: [h]
719
+ }],
720
+ /**
721
+ * Padding Y
722
+ * @see https://tailwindcss.com/docs/padding
723
+ */
724
+ py: [{
725
+ py: [h]
726
+ }],
727
+ /**
728
+ * Padding Start
729
+ * @see https://tailwindcss.com/docs/padding
730
+ */
731
+ ps: [{
732
+ ps: [h]
733
+ }],
734
+ /**
735
+ * Padding End
736
+ * @see https://tailwindcss.com/docs/padding
737
+ */
738
+ pe: [{
739
+ pe: [h]
740
+ }],
741
+ /**
742
+ * Padding Top
743
+ * @see https://tailwindcss.com/docs/padding
744
+ */
745
+ pt: [{
746
+ pt: [h]
747
+ }],
748
+ /**
749
+ * Padding Right
750
+ * @see https://tailwindcss.com/docs/padding
751
+ */
752
+ pr: [{
753
+ pr: [h]
754
+ }],
755
+ /**
756
+ * Padding Bottom
757
+ * @see https://tailwindcss.com/docs/padding
758
+ */
759
+ pb: [{
760
+ pb: [h]
761
+ }],
762
+ /**
763
+ * Padding Left
764
+ * @see https://tailwindcss.com/docs/padding
765
+ */
766
+ pl: [{
767
+ pl: [h]
768
+ }],
769
+ /**
770
+ * Margin
771
+ * @see https://tailwindcss.com/docs/margin
772
+ */
773
+ m: [{
774
+ m: [p]
775
+ }],
776
+ /**
777
+ * Margin X
778
+ * @see https://tailwindcss.com/docs/margin
779
+ */
780
+ mx: [{
781
+ mx: [p]
782
+ }],
783
+ /**
784
+ * Margin Y
785
+ * @see https://tailwindcss.com/docs/margin
786
+ */
787
+ my: [{
788
+ my: [p]
789
+ }],
790
+ /**
791
+ * Margin Start
792
+ * @see https://tailwindcss.com/docs/margin
793
+ */
794
+ ms: [{
795
+ ms: [p]
796
+ }],
797
+ /**
798
+ * Margin End
799
+ * @see https://tailwindcss.com/docs/margin
800
+ */
801
+ me: [{
802
+ me: [p]
803
+ }],
804
+ /**
805
+ * Margin Top
806
+ * @see https://tailwindcss.com/docs/margin
807
+ */
808
+ mt: [{
809
+ mt: [p]
810
+ }],
811
+ /**
812
+ * Margin Right
813
+ * @see https://tailwindcss.com/docs/margin
814
+ */
815
+ mr: [{
816
+ mr: [p]
817
+ }],
818
+ /**
819
+ * Margin Bottom
820
+ * @see https://tailwindcss.com/docs/margin
821
+ */
822
+ mb: [{
823
+ mb: [p]
824
+ }],
825
+ /**
826
+ * Margin Left
827
+ * @see https://tailwindcss.com/docs/margin
828
+ */
829
+ ml: [{
830
+ ml: [p]
831
+ }],
832
+ /**
833
+ * Space Between X
834
+ * @see https://tailwindcss.com/docs/space
835
+ */
836
+ "space-x": [{
837
+ "space-x": [F]
838
+ }],
839
+ /**
840
+ * Space Between X Reverse
841
+ * @see https://tailwindcss.com/docs/space
842
+ */
843
+ "space-x-reverse": ["space-x-reverse"],
844
+ /**
845
+ * Space Between Y
846
+ * @see https://tailwindcss.com/docs/space
847
+ */
848
+ "space-y": [{
849
+ "space-y": [F]
850
+ }],
851
+ /**
852
+ * Space Between Y Reverse
853
+ * @see https://tailwindcss.com/docs/space
854
+ */
855
+ "space-y-reverse": ["space-y-reverse"],
856
+ // Sizing
857
+ /**
858
+ * Width
859
+ * @see https://tailwindcss.com/docs/width
860
+ */
861
+ w: [{
862
+ w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", i, r]
863
+ }],
864
+ /**
865
+ * Min-Width
866
+ * @see https://tailwindcss.com/docs/min-width
867
+ */
868
+ "min-w": [{
869
+ "min-w": [i, r, "min", "max", "fit"]
870
+ }],
871
+ /**
872
+ * Max-Width
873
+ * @see https://tailwindcss.com/docs/max-width
874
+ */
875
+ "max-w": [{
876
+ "max-w": [i, r, "none", "full", "min", "max", "fit", "prose", {
877
+ screen: [A]
878
+ }, A]
879
+ }],
880
+ /**
881
+ * Height
882
+ * @see https://tailwindcss.com/docs/height
883
+ */
884
+ h: [{
885
+ h: [i, r, "auto", "min", "max", "fit", "svh", "lvh", "dvh"]
886
+ }],
887
+ /**
888
+ * Min-Height
889
+ * @see https://tailwindcss.com/docs/min-height
890
+ */
891
+ "min-h": [{
892
+ "min-h": [i, r, "min", "max", "fit", "svh", "lvh", "dvh"]
893
+ }],
894
+ /**
895
+ * Max-Height
896
+ * @see https://tailwindcss.com/docs/max-height
897
+ */
898
+ "max-h": [{
899
+ "max-h": [i, r, "min", "max", "fit", "svh", "lvh", "dvh"]
900
+ }],
901
+ /**
902
+ * Size
903
+ * @see https://tailwindcss.com/docs/size
904
+ */
905
+ size: [{
906
+ size: [i, r, "auto", "min", "max", "fit"]
907
+ }],
908
+ // Typography
909
+ /**
910
+ * Font Size
911
+ * @see https://tailwindcss.com/docs/font-size
912
+ */
913
+ "font-size": [{
914
+ text: ["base", A, z]
915
+ }],
916
+ /**
917
+ * Font Smoothing
918
+ * @see https://tailwindcss.com/docs/font-smoothing
919
+ */
920
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
921
+ /**
922
+ * Font Style
923
+ * @see https://tailwindcss.com/docs/font-style
924
+ */
925
+ "font-style": ["italic", "not-italic"],
926
+ /**
927
+ * Font Weight
928
+ * @see https://tailwindcss.com/docs/font-weight
929
+ */
930
+ "font-weight": [{
931
+ font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", _]
932
+ }],
933
+ /**
934
+ * Font Family
935
+ * @see https://tailwindcss.com/docs/font-family
936
+ */
937
+ "font-family": [{
938
+ font: [j]
939
+ }],
940
+ /**
941
+ * Font Variant Numeric
942
+ * @see https://tailwindcss.com/docs/font-variant-numeric
943
+ */
944
+ "fvn-normal": ["normal-nums"],
945
+ /**
946
+ * Font Variant Numeric
947
+ * @see https://tailwindcss.com/docs/font-variant-numeric
948
+ */
949
+ "fvn-ordinal": ["ordinal"],
950
+ /**
951
+ * Font Variant Numeric
952
+ * @see https://tailwindcss.com/docs/font-variant-numeric
953
+ */
954
+ "fvn-slashed-zero": ["slashed-zero"],
955
+ /**
956
+ * Font Variant Numeric
957
+ * @see https://tailwindcss.com/docs/font-variant-numeric
958
+ */
959
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
960
+ /**
961
+ * Font Variant Numeric
962
+ * @see https://tailwindcss.com/docs/font-variant-numeric
963
+ */
964
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
965
+ /**
966
+ * Font Variant Numeric
967
+ * @see https://tailwindcss.com/docs/font-variant-numeric
968
+ */
969
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
970
+ /**
971
+ * Letter Spacing
972
+ * @see https://tailwindcss.com/docs/letter-spacing
973
+ */
974
+ tracking: [{
975
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", i]
976
+ }],
977
+ /**
978
+ * Line Clamp
979
+ * @see https://tailwindcss.com/docs/line-clamp
980
+ */
981
+ "line-clamp": [{
982
+ "line-clamp": ["none", M, _]
983
+ }],
984
+ /**
985
+ * Line Height
986
+ * @see https://tailwindcss.com/docs/line-height
987
+ */
988
+ leading: [{
989
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose", C, i]
990
+ }],
991
+ /**
992
+ * List Style Image
993
+ * @see https://tailwindcss.com/docs/list-style-image
994
+ */
995
+ "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]
1004
+ }],
1005
+ /**
1006
+ * List Style Position
1007
+ * @see https://tailwindcss.com/docs/list-style-position
1008
+ */
1009
+ "list-style-position": [{
1010
+ list: ["inside", "outside"]
1011
+ }],
1012
+ /**
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
1023
+ */
1024
+ "placeholder-opacity": [{
1025
+ "placeholder-opacity": [f]
1026
+ }],
1027
+ /**
1028
+ * Text Alignment
1029
+ * @see https://tailwindcss.com/docs/text-align
1030
+ */
1031
+ "text-alignment": [{
1032
+ text: ["left", "center", "right", "justify", "start", "end"]
1033
+ }],
1034
+ /**
1035
+ * Text Color
1036
+ * @see https://tailwindcss.com/docs/text-color
1037
+ */
1038
+ "text-color": [{
1039
+ text: [e]
1040
+ }],
1041
+ /**
1042
+ * Text Opacity
1043
+ * @see https://tailwindcss.com/docs/text-opacity
1044
+ */
1045
+ "text-opacity": [{
1046
+ "text-opacity": [f]
1047
+ }],
1048
+ /**
1049
+ * Text Decoration
1050
+ * @see https://tailwindcss.com/docs/text-decoration
1051
+ */
1052
+ "text-decoration": ["underline", "overline", "line-through", "no-underline"],
1053
+ /**
1054
+ * Text Decoration Style
1055
+ * @see https://tailwindcss.com/docs/text-decoration-style
1056
+ */
1057
+ "text-decoration-style": [{
1058
+ decoration: [...T(), "wavy"]
1059
+ }],
1060
+ /**
1061
+ * Text Decoration Thickness
1062
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
1063
+ */
1064
+ "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]
1073
+ }],
1074
+ /**
1075
+ * Text Decoration Color
1076
+ * @see https://tailwindcss.com/docs/text-decoration-color
1077
+ */
1078
+ "text-decoration-color": [{
1079
+ decoration: [e]
1080
+ }],
1081
+ /**
1082
+ * Text Transform
1083
+ * @see https://tailwindcss.com/docs/text-transform
1084
+ */
1085
+ "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
1086
+ /**
1087
+ * Text Overflow
1088
+ * @see https://tailwindcss.com/docs/text-overflow
1089
+ */
1090
+ "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
1091
+ /**
1092
+ * Text Wrap
1093
+ * @see https://tailwindcss.com/docs/text-wrap
1094
+ */
1095
+ "text-wrap": [{
1096
+ text: ["wrap", "nowrap", "balance", "pretty"]
1097
+ }],
1098
+ /**
1099
+ * Text Indent
1100
+ * @see https://tailwindcss.com/docs/text-indent
1101
+ */
1102
+ indent: [{
1103
+ indent: d()
1104
+ }],
1105
+ /**
1106
+ * Vertical Alignment
1107
+ * @see https://tailwindcss.com/docs/vertical-align
1108
+ */
1109
+ "vertical-align": [{
1110
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", i]
1111
+ }],
1112
+ /**
1113
+ * Whitespace
1114
+ * @see https://tailwindcss.com/docs/whitespace
1115
+ */
1116
+ whitespace: [{
1117
+ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
1118
+ }],
1119
+ /**
1120
+ * Word Break
1121
+ * @see https://tailwindcss.com/docs/word-break
1122
+ */
1123
+ break: [{
1124
+ break: ["normal", "words", "all", "keep"]
1125
+ }],
1126
+ /**
1127
+ * Hyphens
1128
+ * @see https://tailwindcss.com/docs/hyphens
1129
+ */
1130
+ hyphens: [{
1131
+ hyphens: ["none", "manual", "auto"]
1132
+ }],
1133
+ /**
1134
+ * Content
1135
+ * @see https://tailwindcss.com/docs/content
1136
+ */
1137
+ content: [{
1138
+ content: ["none", i]
1139
+ }],
1140
+ // Backgrounds
1141
+ /**
1142
+ * Background Attachment
1143
+ * @see https://tailwindcss.com/docs/background-attachment
1144
+ */
1145
+ "bg-attachment": [{
1146
+ bg: ["fixed", "local", "scroll"]
1147
+ }],
1148
+ /**
1149
+ * Background Clip
1150
+ * @see https://tailwindcss.com/docs/background-clip
1151
+ */
1152
+ "bg-clip": [{
1153
+ "bg-clip": ["border", "padding", "content", "text"]
1154
+ }],
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
+ /**
1164
+ * Background Origin
1165
+ * @see https://tailwindcss.com/docs/background-origin
1166
+ */
1167
+ "bg-origin": [{
1168
+ "bg-origin": ["border", "padding", "content"]
1169
+ }],
1170
+ /**
1171
+ * Background Position
1172
+ * @see https://tailwindcss.com/docs/background-position
1173
+ */
1174
+ "bg-position": [{
1175
+ bg: [...X(), Ge]
1176
+ }],
1177
+ /**
1178
+ * Background Repeat
1179
+ * @see https://tailwindcss.com/docs/background-repeat
1180
+ */
1181
+ "bg-repeat": [{
1182
+ bg: ["no-repeat", {
1183
+ repeat: ["", "x", "y", "round", "space"]
1184
+ }]
1185
+ }],
1186
+ /**
1187
+ * Background Size
1188
+ * @see https://tailwindcss.com/docs/background-size
1189
+ */
1190
+ "bg-size": [{
1191
+ bg: ["auto", "cover", "contain", Me]
1192
+ }],
1193
+ /**
1194
+ * Background Image
1195
+ * @see https://tailwindcss.com/docs/background-image
1196
+ */
1197
+ "bg-image": [{
1198
+ bg: ["none", {
1199
+ "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1200
+ }, Ie]
1201
+ }],
1202
+ /**
1203
+ * Background Color
1204
+ * @see https://tailwindcss.com/docs/background-color
1205
+ */
1206
+ "bg-color": [{
1207
+ bg: [e]
1208
+ }],
1209
+ /**
1210
+ * Gradient Color Stops From Position
1211
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1212
+ */
1213
+ "gradient-from-pos": [{
1214
+ from: [w]
1215
+ }],
1216
+ /**
1217
+ * Gradient Color Stops Via Position
1218
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1219
+ */
1220
+ "gradient-via-pos": [{
1221
+ via: [w]
1222
+ }],
1223
+ /**
1224
+ * Gradient Color Stops To Position
1225
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1226
+ */
1227
+ "gradient-to-pos": [{
1228
+ to: [w]
1229
+ }],
1230
+ /**
1231
+ * Gradient Color Stops From
1232
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1233
+ */
1234
+ "gradient-from": [{
1235
+ from: [v]
1236
+ }],
1237
+ /**
1238
+ * Gradient Color Stops Via
1239
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1240
+ */
1241
+ "gradient-via": [{
1242
+ via: [v]
1243
+ }],
1244
+ /**
1245
+ * Gradient Color Stops To
1246
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1247
+ */
1248
+ "gradient-to": [{
1249
+ to: [v]
1250
+ }],
1251
+ // Borders
1252
+ /**
1253
+ * Border Radius
1254
+ * @see https://tailwindcss.com/docs/border-radius
1255
+ */
1256
+ rounded: [{
1257
+ rounded: [n]
1258
+ }],
1259
+ /**
1260
+ * Border Radius Start
1261
+ * @see https://tailwindcss.com/docs/border-radius
1262
+ */
1263
+ "rounded-s": [{
1264
+ "rounded-s": [n]
1265
+ }],
1266
+ /**
1267
+ * Border Radius End
1268
+ * @see https://tailwindcss.com/docs/border-radius
1269
+ */
1270
+ "rounded-e": [{
1271
+ "rounded-e": [n]
1272
+ }],
1273
+ /**
1274
+ * Border Radius Top
1275
+ * @see https://tailwindcss.com/docs/border-radius
1276
+ */
1277
+ "rounded-t": [{
1278
+ "rounded-t": [n]
1279
+ }],
1280
+ /**
1281
+ * Border Radius Right
1282
+ * @see https://tailwindcss.com/docs/border-radius
1283
+ */
1284
+ "rounded-r": [{
1285
+ "rounded-r": [n]
1286
+ }],
1287
+ /**
1288
+ * Border Radius Bottom
1289
+ * @see https://tailwindcss.com/docs/border-radius
1290
+ */
1291
+ "rounded-b": [{
1292
+ "rounded-b": [n]
1293
+ }],
1294
+ /**
1295
+ * Border Radius Left
1296
+ * @see https://tailwindcss.com/docs/border-radius
1297
+ */
1298
+ "rounded-l": [{
1299
+ "rounded-l": [n]
1300
+ }],
1301
+ /**
1302
+ * Border Radius Start Start
1303
+ * @see https://tailwindcss.com/docs/border-radius
1304
+ */
1305
+ "rounded-ss": [{
1306
+ "rounded-ss": [n]
1307
+ }],
1308
+ /**
1309
+ * Border Radius Start End
1310
+ * @see https://tailwindcss.com/docs/border-radius
1311
+ */
1312
+ "rounded-se": [{
1313
+ "rounded-se": [n]
1314
+ }],
1315
+ /**
1316
+ * Border Radius End End
1317
+ * @see https://tailwindcss.com/docs/border-radius
1318
+ */
1319
+ "rounded-ee": [{
1320
+ "rounded-ee": [n]
1321
+ }],
1322
+ /**
1323
+ * Border Radius End Start
1324
+ * @see https://tailwindcss.com/docs/border-radius
1325
+ */
1326
+ "rounded-es": [{
1327
+ "rounded-es": [n]
1328
+ }],
1329
+ /**
1330
+ * Border Radius Top Left
1331
+ * @see https://tailwindcss.com/docs/border-radius
1332
+ */
1333
+ "rounded-tl": [{
1334
+ "rounded-tl": [n]
1335
+ }],
1336
+ /**
1337
+ * Border Radius Top Right
1338
+ * @see https://tailwindcss.com/docs/border-radius
1339
+ */
1340
+ "rounded-tr": [{
1341
+ "rounded-tr": [n]
1342
+ }],
1343
+ /**
1344
+ * Border Radius Bottom Right
1345
+ * @see https://tailwindcss.com/docs/border-radius
1346
+ */
1347
+ "rounded-br": [{
1348
+ "rounded-br": [n]
1349
+ }],
1350
+ /**
1351
+ * Border Radius Bottom Left
1352
+ * @see https://tailwindcss.com/docs/border-radius
1353
+ */
1354
+ "rounded-bl": [{
1355
+ "rounded-bl": [n]
1356
+ }],
1357
+ /**
1358
+ * Border Width
1359
+ * @see https://tailwindcss.com/docs/border-width
1360
+ */
1361
+ "border-w": [{
1362
+ border: [s]
1363
+ }],
1364
+ /**
1365
+ * Border Width X
1366
+ * @see https://tailwindcss.com/docs/border-width
1367
+ */
1368
+ "border-w-x": [{
1369
+ "border-x": [s]
1370
+ }],
1371
+ /**
1372
+ * Border Width Y
1373
+ * @see https://tailwindcss.com/docs/border-width
1374
+ */
1375
+ "border-w-y": [{
1376
+ "border-y": [s]
1377
+ }],
1378
+ /**
1379
+ * Border Width Start
1380
+ * @see https://tailwindcss.com/docs/border-width
1381
+ */
1382
+ "border-w-s": [{
1383
+ "border-s": [s]
1384
+ }],
1385
+ /**
1386
+ * Border Width End
1387
+ * @see https://tailwindcss.com/docs/border-width
1388
+ */
1389
+ "border-w-e": [{
1390
+ "border-e": [s]
1391
+ }],
1392
+ /**
1393
+ * Border Width Top
1394
+ * @see https://tailwindcss.com/docs/border-width
1395
+ */
1396
+ "border-w-t": [{
1397
+ "border-t": [s]
1398
+ }],
1399
+ /**
1400
+ * Border Width Right
1401
+ * @see https://tailwindcss.com/docs/border-width
1402
+ */
1403
+ "border-w-r": [{
1404
+ "border-r": [s]
1405
+ }],
1406
+ /**
1407
+ * Border Width Bottom
1408
+ * @see https://tailwindcss.com/docs/border-width
1409
+ */
1410
+ "border-w-b": [{
1411
+ "border-b": [s]
1412
+ }],
1413
+ /**
1414
+ * Border Width Left
1415
+ * @see https://tailwindcss.com/docs/border-width
1416
+ */
1417
+ "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"]
1433
+ }],
1434
+ /**
1435
+ * Divide Width X
1436
+ * @see https://tailwindcss.com/docs/divide-width
1437
+ */
1438
+ "divide-x": [{
1439
+ "divide-x": [s]
1440
+ }],
1441
+ /**
1442
+ * Divide Width X Reverse
1443
+ * @see https://tailwindcss.com/docs/divide-width
1444
+ */
1445
+ "divide-x-reverse": ["divide-x-reverse"],
1446
+ /**
1447
+ * Divide Width Y
1448
+ * @see https://tailwindcss.com/docs/divide-width
1449
+ */
1450
+ "divide-y": [{
1451
+ "divide-y": [s]
1452
+ }],
1453
+ /**
1454
+ * Divide Width Y Reverse
1455
+ * @see https://tailwindcss.com/docs/divide-width
1456
+ */
1457
+ "divide-y-reverse": ["divide-y-reverse"],
1458
+ /**
1459
+ * Divide Opacity
1460
+ * @see https://tailwindcss.com/docs/divide-opacity
1461
+ */
1462
+ "divide-opacity": [{
1463
+ "divide-opacity": [f]
1464
+ }],
1465
+ /**
1466
+ * Divide Style
1467
+ * @see https://tailwindcss.com/docs/divide-style
1468
+ */
1469
+ "divide-style": [{
1470
+ divide: T()
1471
+ }],
1472
+ /**
1473
+ * Border Color
1474
+ * @see https://tailwindcss.com/docs/border-color
1475
+ */
1476
+ "border-color": [{
1477
+ border: [l]
1478
+ }],
1479
+ /**
1480
+ * Border Color X
1481
+ * @see https://tailwindcss.com/docs/border-color
1482
+ */
1483
+ "border-color-x": [{
1484
+ "border-x": [l]
1485
+ }],
1486
+ /**
1487
+ * Border Color Y
1488
+ * @see https://tailwindcss.com/docs/border-color
1489
+ */
1490
+ "border-color-y": [{
1491
+ "border-y": [l]
1492
+ }],
1493
+ /**
1494
+ * Border Color S
1495
+ * @see https://tailwindcss.com/docs/border-color
1496
+ */
1497
+ "border-color-s": [{
1498
+ "border-s": [l]
1499
+ }],
1500
+ /**
1501
+ * Border Color E
1502
+ * @see https://tailwindcss.com/docs/border-color
1503
+ */
1504
+ "border-color-e": [{
1505
+ "border-e": [l]
1506
+ }],
1507
+ /**
1508
+ * Border Color Top
1509
+ * @see https://tailwindcss.com/docs/border-color
1510
+ */
1511
+ "border-color-t": [{
1512
+ "border-t": [l]
1513
+ }],
1514
+ /**
1515
+ * Border Color Right
1516
+ * @see https://tailwindcss.com/docs/border-color
1517
+ */
1518
+ "border-color-r": [{
1519
+ "border-r": [l]
1520
+ }],
1521
+ /**
1522
+ * Border Color Bottom
1523
+ * @see https://tailwindcss.com/docs/border-color
1524
+ */
1525
+ "border-color-b": [{
1526
+ "border-b": [l]
1527
+ }],
1528
+ /**
1529
+ * Border Color Left
1530
+ * @see https://tailwindcss.com/docs/border-color
1531
+ */
1532
+ "border-color-l": [{
1533
+ "border-l": [l]
1534
+ }],
1535
+ /**
1536
+ * Divide Color
1537
+ * @see https://tailwindcss.com/docs/divide-color
1538
+ */
1539
+ "divide-color": [{
1540
+ divide: [l]
1541
+ }],
1542
+ /**
1543
+ * Outline Style
1544
+ * @see https://tailwindcss.com/docs/outline-style
1545
+ */
1546
+ "outline-style": [{
1547
+ outline: ["", ...T()]
1548
+ }],
1549
+ /**
1550
+ * Outline Offset
1551
+ * @see https://tailwindcss.com/docs/outline-offset
1552
+ */
1553
+ "outline-offset": [{
1554
+ "outline-offset": [C, i]
1555
+ }],
1556
+ /**
1557
+ * Outline Width
1558
+ * @see https://tailwindcss.com/docs/outline-width
1559
+ */
1560
+ "outline-w": [{
1561
+ outline: [C, z]
1562
+ }],
1563
+ /**
1564
+ * Outline Color
1565
+ * @see https://tailwindcss.com/docs/outline-color
1566
+ */
1567
+ "outline-color": [{
1568
+ outline: [e]
1569
+ }],
1570
+ /**
1571
+ * Ring Width
1572
+ * @see https://tailwindcss.com/docs/ring-width
1573
+ */
1574
+ "ring-w": [{
1575
+ ring: J()
1576
+ }],
1577
+ /**
1578
+ * Ring Width Inset
1579
+ * @see https://tailwindcss.com/docs/ring-width
1580
+ */
1581
+ "ring-w-inset": ["ring-inset"],
1582
+ /**
1583
+ * Ring Color
1584
+ * @see https://tailwindcss.com/docs/ring-color
1585
+ */
1586
+ "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]
1595
+ }],
1596
+ /**
1597
+ * Ring Offset Width
1598
+ * @see https://tailwindcss.com/docs/ring-offset-width
1599
+ */
1600
+ "ring-offset-w": [{
1601
+ "ring-offset": [C, z]
1602
+ }],
1603
+ /**
1604
+ * Ring Offset Color
1605
+ * @see https://tailwindcss.com/docs/ring-offset-color
1606
+ */
1607
+ "ring-offset-color": [{
1608
+ "ring-offset": [e]
1609
+ }],
1610
+ // Effects
1611
+ /**
1612
+ * Box Shadow
1613
+ * @see https://tailwindcss.com/docs/box-shadow
1614
+ */
1615
+ shadow: [{
1616
+ shadow: ["", "inner", "none", A, Pe]
1617
+ }],
1618
+ /**
1619
+ * Box Shadow Color
1620
+ * @see https://tailwindcss.com/docs/box-shadow-color
1621
+ */
1622
+ "shadow-color": [{
1623
+ shadow: [j]
1624
+ }],
1625
+ /**
1626
+ * Opacity
1627
+ * @see https://tailwindcss.com/docs/opacity
1628
+ */
1629
+ opacity: [{
1630
+ opacity: [f]
1631
+ }],
1632
+ /**
1633
+ * Mix Blend Mode
1634
+ * @see https://tailwindcss.com/docs/mix-blend-mode
1635
+ */
1636
+ "mix-blend": [{
1637
+ "mix-blend": [...Z(), "plus-lighter", "plus-darker"]
1638
+ }],
1639
+ /**
1640
+ * Background Blend Mode
1641
+ * @see https://tailwindcss.com/docs/background-blend-mode
1642
+ */
1643
+ "bg-blend": [{
1644
+ "bg-blend": Z()
1645
+ }],
1646
+ // Filters
1647
+ /**
1648
+ * Filter
1649
+ * @deprecated since Tailwind CSS v3.0.0
1650
+ * @see https://tailwindcss.com/docs/filter
1651
+ */
1652
+ filter: [{
1653
+ filter: ["", "none"]
1654
+ }],
1655
+ /**
1656
+ * Blur
1657
+ * @see https://tailwindcss.com/docs/blur
1658
+ */
1659
+ blur: [{
1660
+ blur: [t]
1661
+ }],
1662
+ /**
1663
+ * Brightness
1664
+ * @see https://tailwindcss.com/docs/brightness
1665
+ */
1666
+ brightness: [{
1667
+ brightness: [o]
1668
+ }],
1669
+ /**
1670
+ * Contrast
1671
+ * @see https://tailwindcss.com/docs/contrast
1672
+ */
1673
+ contrast: [{
1674
+ contrast: [u]
1675
+ }],
1676
+ /**
1677
+ * Drop Shadow
1678
+ * @see https://tailwindcss.com/docs/drop-shadow
1679
+ */
1680
+ "drop-shadow": [{
1681
+ "drop-shadow": ["", "none", A, i]
1682
+ }],
1683
+ /**
1684
+ * Grayscale
1685
+ * @see https://tailwindcss.com/docs/grayscale
1686
+ */
1687
+ grayscale: [{
1688
+ grayscale: [g]
1689
+ }],
1690
+ /**
1691
+ * Hue Rotate
1692
+ * @see https://tailwindcss.com/docs/hue-rotate
1693
+ */
1694
+ "hue-rotate": [{
1695
+ "hue-rotate": [m]
1696
+ }],
1697
+ /**
1698
+ * Invert
1699
+ * @see https://tailwindcss.com/docs/invert
1700
+ */
1701
+ invert: [{
1702
+ invert: [y]
1703
+ }],
1704
+ /**
1705
+ * Saturate
1706
+ * @see https://tailwindcss.com/docs/saturate
1707
+ */
1708
+ saturate: [{
1709
+ saturate: [R]
1710
+ }],
1711
+ /**
1712
+ * Sepia
1713
+ * @see https://tailwindcss.com/docs/sepia
1714
+ */
1715
+ sepia: [{
1716
+ sepia: [E]
1717
+ }],
1718
+ /**
1719
+ * Backdrop Filter
1720
+ * @deprecated since Tailwind CSS v3.0.0
1721
+ * @see https://tailwindcss.com/docs/backdrop-filter
1722
+ */
1723
+ "backdrop-filter": [{
1724
+ "backdrop-filter": ["", "none"]
1725
+ }],
1726
+ /**
1727
+ * Backdrop Blur
1728
+ * @see https://tailwindcss.com/docs/backdrop-blur
1729
+ */
1730
+ "backdrop-blur": [{
1731
+ "backdrop-blur": [t]
1732
+ }],
1733
+ /**
1734
+ * Backdrop Brightness
1735
+ * @see https://tailwindcss.com/docs/backdrop-brightness
1736
+ */
1737
+ "backdrop-brightness": [{
1738
+ "backdrop-brightness": [o]
1739
+ }],
1740
+ /**
1741
+ * Backdrop Contrast
1742
+ * @see https://tailwindcss.com/docs/backdrop-contrast
1743
+ */
1744
+ "backdrop-contrast": [{
1745
+ "backdrop-contrast": [u]
1746
+ }],
1747
+ /**
1748
+ * Backdrop Grayscale
1749
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
1750
+ */
1751
+ "backdrop-grayscale": [{
1752
+ "backdrop-grayscale": [g]
1753
+ }],
1754
+ /**
1755
+ * Backdrop Hue Rotate
1756
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
1757
+ */
1758
+ "backdrop-hue-rotate": [{
1759
+ "backdrop-hue-rotate": [m]
1760
+ }],
1761
+ /**
1762
+ * Backdrop Invert
1763
+ * @see https://tailwindcss.com/docs/backdrop-invert
1764
+ */
1765
+ "backdrop-invert": [{
1766
+ "backdrop-invert": [y]
1767
+ }],
1768
+ /**
1769
+ * Backdrop Opacity
1770
+ * @see https://tailwindcss.com/docs/backdrop-opacity
1771
+ */
1772
+ "backdrop-opacity": [{
1773
+ "backdrop-opacity": [f]
1774
+ }],
1775
+ /**
1776
+ * Backdrop Saturate
1777
+ * @see https://tailwindcss.com/docs/backdrop-saturate
1778
+ */
1779
+ "backdrop-saturate": [{
1780
+ "backdrop-saturate": [R]
1781
+ }],
1782
+ /**
1783
+ * Backdrop Sepia
1784
+ * @see https://tailwindcss.com/docs/backdrop-sepia
1785
+ */
1786
+ "backdrop-sepia": [{
1787
+ "backdrop-sepia": [E]
1788
+ }],
1789
+ // Tables
1790
+ /**
1791
+ * Border Collapse
1792
+ * @see https://tailwindcss.com/docs/border-collapse
1793
+ */
1794
+ "border-collapse": [{
1795
+ border: ["collapse", "separate"]
1796
+ }],
1797
+ /**
1798
+ * Border Spacing
1799
+ * @see https://tailwindcss.com/docs/border-spacing
1800
+ */
1801
+ "border-spacing": [{
1802
+ "border-spacing": [a]
1803
+ }],
1804
+ /**
1805
+ * Border Spacing X
1806
+ * @see https://tailwindcss.com/docs/border-spacing
1807
+ */
1808
+ "border-spacing-x": [{
1809
+ "border-spacing-x": [a]
1810
+ }],
1811
+ /**
1812
+ * Border Spacing Y
1813
+ * @see https://tailwindcss.com/docs/border-spacing
1814
+ */
1815
+ "border-spacing-y": [{
1816
+ "border-spacing-y": [a]
1817
+ }],
1818
+ /**
1819
+ * Table Layout
1820
+ * @see https://tailwindcss.com/docs/table-layout
1821
+ */
1822
+ "table-layout": [{
1823
+ table: ["auto", "fixed"]
1824
+ }],
1825
+ /**
1826
+ * Caption Side
1827
+ * @see https://tailwindcss.com/docs/caption-side
1828
+ */
1829
+ caption: [{
1830
+ caption: ["top", "bottom"]
1831
+ }],
1832
+ // Transitions and Animation
1833
+ /**
1834
+ * Tranisition Property
1835
+ * @see https://tailwindcss.com/docs/transition-property
1836
+ */
1837
+ transition: [{
1838
+ transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", i]
1839
+ }],
1840
+ /**
1841
+ * Transition Duration
1842
+ * @see https://tailwindcss.com/docs/transition-duration
1843
+ */
1844
+ duration: [{
1845
+ duration: k()
1846
+ }],
1847
+ /**
1848
+ * Transition Timing Function
1849
+ * @see https://tailwindcss.com/docs/transition-timing-function
1850
+ */
1851
+ ease: [{
1852
+ ease: ["linear", "in", "out", "in-out", i]
1853
+ }],
1854
+ /**
1855
+ * Transition Delay
1856
+ * @see https://tailwindcss.com/docs/transition-delay
1857
+ */
1858
+ delay: [{
1859
+ delay: k()
1860
+ }],
1861
+ /**
1862
+ * Animation
1863
+ * @see https://tailwindcss.com/docs/animation
1864
+ */
1865
+ animate: [{
1866
+ animate: ["none", "spin", "ping", "pulse", "bounce", i]
1867
+ }],
1868
+ // Transforms
1869
+ /**
1870
+ * Transform
1871
+ * @see https://tailwindcss.com/docs/transform
1872
+ */
1873
+ transform: [{
1874
+ transform: ["", "gpu", "none"]
1875
+ }],
1876
+ /**
1877
+ * Scale
1878
+ * @see https://tailwindcss.com/docs/scale
1879
+ */
1880
+ scale: [{
1881
+ scale: [S]
1882
+ }],
1883
+ /**
1884
+ * Scale X
1885
+ * @see https://tailwindcss.com/docs/scale
1886
+ */
1887
+ "scale-x": [{
1888
+ "scale-x": [S]
1889
+ }],
1890
+ /**
1891
+ * Scale Y
1892
+ * @see https://tailwindcss.com/docs/scale
1893
+ */
1894
+ "scale-y": [{
1895
+ "scale-y": [S]
1896
+ }],
1897
+ /**
1898
+ * Rotate
1899
+ * @see https://tailwindcss.com/docs/rotate
1900
+ */
1901
+ rotate: [{
1902
+ rotate: [P, i]
1903
+ }],
1904
+ /**
1905
+ * Translate X
1906
+ * @see https://tailwindcss.com/docs/translate
1907
+ */
1908
+ "translate-x": [{
1909
+ "translate-x": [q]
1910
+ }],
1911
+ /**
1912
+ * Translate Y
1913
+ * @see https://tailwindcss.com/docs/translate
1914
+ */
1915
+ "translate-y": [{
1916
+ "translate-y": [q]
1917
+ }],
1918
+ /**
1919
+ * Skew X
1920
+ * @see https://tailwindcss.com/docs/skew
1921
+ */
1922
+ "skew-x": [{
1923
+ "skew-x": [U]
1924
+ }],
1925
+ /**
1926
+ * Skew Y
1927
+ * @see https://tailwindcss.com/docs/skew
1928
+ */
1929
+ "skew-y": [{
1930
+ "skew-y": [U]
1931
+ }],
1932
+ /**
1933
+ * Transform Origin
1934
+ * @see https://tailwindcss.com/docs/transform-origin
1935
+ */
1936
+ "transform-origin": [{
1937
+ origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", i]
1938
+ }],
1939
+ // Interactivity
1940
+ /**
1941
+ * Accent Color
1942
+ * @see https://tailwindcss.com/docs/accent-color
1943
+ */
1944
+ accent: [{
1945
+ accent: ["auto", e]
1946
+ }],
1947
+ /**
1948
+ * Appearance
1949
+ * @see https://tailwindcss.com/docs/appearance
1950
+ */
1951
+ appearance: [{
1952
+ appearance: ["none", "auto"]
1953
+ }],
1954
+ /**
1955
+ * Cursor
1956
+ * @see https://tailwindcss.com/docs/cursor
1957
+ */
1958
+ 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]
1960
+ }],
1961
+ /**
1962
+ * Caret Color
1963
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
1964
+ */
1965
+ "caret-color": [{
1966
+ caret: [e]
1967
+ }],
1968
+ /**
1969
+ * Pointer Events
1970
+ * @see https://tailwindcss.com/docs/pointer-events
1971
+ */
1972
+ "pointer-events": [{
1973
+ "pointer-events": ["none", "auto"]
1974
+ }],
1975
+ /**
1976
+ * Resize
1977
+ * @see https://tailwindcss.com/docs/resize
1978
+ */
1979
+ resize: [{
1980
+ resize: ["none", "y", "x", ""]
1981
+ }],
1982
+ /**
1983
+ * Scroll Behavior
1984
+ * @see https://tailwindcss.com/docs/scroll-behavior
1985
+ */
1986
+ "scroll-behavior": [{
1987
+ scroll: ["auto", "smooth"]
1988
+ }],
1989
+ /**
1990
+ * Scroll Margin
1991
+ * @see https://tailwindcss.com/docs/scroll-margin
1992
+ */
1993
+ "scroll-m": [{
1994
+ "scroll-m": d()
1995
+ }],
1996
+ /**
1997
+ * Scroll Margin X
1998
+ * @see https://tailwindcss.com/docs/scroll-margin
1999
+ */
2000
+ "scroll-mx": [{
2001
+ "scroll-mx": d()
2002
+ }],
2003
+ /**
2004
+ * Scroll Margin Y
2005
+ * @see https://tailwindcss.com/docs/scroll-margin
2006
+ */
2007
+ "scroll-my": [{
2008
+ "scroll-my": d()
2009
+ }],
2010
+ /**
2011
+ * Scroll Margin Start
2012
+ * @see https://tailwindcss.com/docs/scroll-margin
2013
+ */
2014
+ "scroll-ms": [{
2015
+ "scroll-ms": d()
2016
+ }],
2017
+ /**
2018
+ * Scroll Margin End
2019
+ * @see https://tailwindcss.com/docs/scroll-margin
2020
+ */
2021
+ "scroll-me": [{
2022
+ "scroll-me": d()
2023
+ }],
2024
+ /**
2025
+ * Scroll Margin Top
2026
+ * @see https://tailwindcss.com/docs/scroll-margin
2027
+ */
2028
+ "scroll-mt": [{
2029
+ "scroll-mt": d()
2030
+ }],
2031
+ /**
2032
+ * Scroll Margin Right
2033
+ * @see https://tailwindcss.com/docs/scroll-margin
2034
+ */
2035
+ "scroll-mr": [{
2036
+ "scroll-mr": d()
2037
+ }],
2038
+ /**
2039
+ * Scroll Margin Bottom
2040
+ * @see https://tailwindcss.com/docs/scroll-margin
2041
+ */
2042
+ "scroll-mb": [{
2043
+ "scroll-mb": d()
2044
+ }],
2045
+ /**
2046
+ * Scroll Margin Left
2047
+ * @see https://tailwindcss.com/docs/scroll-margin
2048
+ */
2049
+ "scroll-ml": [{
2050
+ "scroll-ml": d()
2051
+ }],
2052
+ /**
2053
+ * Scroll Padding
2054
+ * @see https://tailwindcss.com/docs/scroll-padding
2055
+ */
2056
+ "scroll-p": [{
2057
+ "scroll-p": d()
2058
+ }],
2059
+ /**
2060
+ * Scroll Padding X
2061
+ * @see https://tailwindcss.com/docs/scroll-padding
2062
+ */
2063
+ "scroll-px": [{
2064
+ "scroll-px": d()
2065
+ }],
2066
+ /**
2067
+ * Scroll Padding Y
2068
+ * @see https://tailwindcss.com/docs/scroll-padding
2069
+ */
2070
+ "scroll-py": [{
2071
+ "scroll-py": d()
2072
+ }],
2073
+ /**
2074
+ * Scroll Padding Start
2075
+ * @see https://tailwindcss.com/docs/scroll-padding
2076
+ */
2077
+ "scroll-ps": [{
2078
+ "scroll-ps": d()
2079
+ }],
2080
+ /**
2081
+ * Scroll Padding End
2082
+ * @see https://tailwindcss.com/docs/scroll-padding
2083
+ */
2084
+ "scroll-pe": [{
2085
+ "scroll-pe": d()
2086
+ }],
2087
+ /**
2088
+ * Scroll Padding Top
2089
+ * @see https://tailwindcss.com/docs/scroll-padding
2090
+ */
2091
+ "scroll-pt": [{
2092
+ "scroll-pt": d()
2093
+ }],
2094
+ /**
2095
+ * Scroll Padding Right
2096
+ * @see https://tailwindcss.com/docs/scroll-padding
2097
+ */
2098
+ "scroll-pr": [{
2099
+ "scroll-pr": d()
2100
+ }],
2101
+ /**
2102
+ * Scroll Padding Bottom
2103
+ * @see https://tailwindcss.com/docs/scroll-padding
2104
+ */
2105
+ "scroll-pb": [{
2106
+ "scroll-pb": d()
2107
+ }],
2108
+ /**
2109
+ * Scroll Padding Left
2110
+ * @see https://tailwindcss.com/docs/scroll-padding
2111
+ */
2112
+ "scroll-pl": [{
2113
+ "scroll-pl": d()
2114
+ }],
2115
+ /**
2116
+ * Scroll Snap Align
2117
+ * @see https://tailwindcss.com/docs/scroll-snap-align
2118
+ */
2119
+ "snap-align": [{
2120
+ snap: ["start", "end", "center", "align-none"]
2121
+ }],
2122
+ /**
2123
+ * Scroll Snap Stop
2124
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
2125
+ */
2126
+ "snap-stop": [{
2127
+ snap: ["normal", "always"]
2128
+ }],
2129
+ /**
2130
+ * Scroll Snap Type
2131
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2132
+ */
2133
+ "snap-type": [{
2134
+ snap: ["none", "x", "y", "both"]
2135
+ }],
2136
+ /**
2137
+ * Scroll Snap Type Strictness
2138
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2139
+ */
2140
+ "snap-strictness": [{
2141
+ snap: ["mandatory", "proximity"]
2142
+ }],
2143
+ /**
2144
+ * Touch Action
2145
+ * @see https://tailwindcss.com/docs/touch-action
2146
+ */
2147
+ touch: [{
2148
+ touch: ["auto", "none", "manipulation"]
2149
+ }],
2150
+ /**
2151
+ * Touch Action X
2152
+ * @see https://tailwindcss.com/docs/touch-action
2153
+ */
2154
+ "touch-x": [{
2155
+ "touch-pan": ["x", "left", "right"]
2156
+ }],
2157
+ /**
2158
+ * Touch Action Y
2159
+ * @see https://tailwindcss.com/docs/touch-action
2160
+ */
2161
+ "touch-y": [{
2162
+ "touch-pan": ["y", "up", "down"]
2163
+ }],
2164
+ /**
2165
+ * Touch Action Pinch Zoom
2166
+ * @see https://tailwindcss.com/docs/touch-action
2167
+ */
2168
+ "touch-pz": ["touch-pinch-zoom"],
2169
+ /**
2170
+ * User Select
2171
+ * @see https://tailwindcss.com/docs/user-select
2172
+ */
2173
+ select: [{
2174
+ select: ["none", "text", "all", "auto"]
2175
+ }],
2176
+ /**
2177
+ * Will Change
2178
+ * @see https://tailwindcss.com/docs/will-change
2179
+ */
2180
+ "will-change": [{
2181
+ "will-change": ["auto", "scroll", "contents", "transform", i]
2182
+ }],
2183
+ // SVG
2184
+ /**
2185
+ * Fill
2186
+ * @see https://tailwindcss.com/docs/fill
2187
+ */
2188
+ fill: [{
2189
+ fill: [e, "none"]
2190
+ }],
2191
+ /**
2192
+ * Stroke Width
2193
+ * @see https://tailwindcss.com/docs/stroke-width
2194
+ */
2195
+ "stroke-w": [{
2196
+ stroke: [C, z, _]
2197
+ }],
2198
+ /**
2199
+ * Stroke
2200
+ * @see https://tailwindcss.com/docs/stroke
2201
+ */
2202
+ stroke: [{
2203
+ stroke: [e, "none"]
2204
+ }],
2205
+ // Accessibility
2206
+ /**
2207
+ * Screen Readers
2208
+ * @see https://tailwindcss.com/docs/screen-readers
2209
+ */
2210
+ sr: ["sr-only", "not-sr-only"],
2211
+ /**
2212
+ * Forced Color Adjust
2213
+ * @see https://tailwindcss.com/docs/forced-color-adjust
2214
+ */
2215
+ "forced-color-adjust": [{
2216
+ "forced-color-adjust": ["auto", "none"]
2217
+ }]
2218
+ },
2219
+ conflictingClassGroups: {
2220
+ overflow: ["overflow-x", "overflow-y"],
2221
+ overscroll: ["overscroll-x", "overscroll-y"],
2222
+ inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
2223
+ "inset-x": ["right", "left"],
2224
+ "inset-y": ["top", "bottom"],
2225
+ flex: ["basis", "grow", "shrink"],
2226
+ gap: ["gap-x", "gap-y"],
2227
+ p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
2228
+ px: ["pr", "pl"],
2229
+ py: ["pt", "pb"],
2230
+ m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
2231
+ mx: ["mr", "ml"],
2232
+ my: ["mt", "mb"],
2233
+ size: ["w", "h"],
2234
+ "font-size": ["leading"],
2235
+ "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
2236
+ "fvn-ordinal": ["fvn-normal"],
2237
+ "fvn-slashed-zero": ["fvn-normal"],
2238
+ "fvn-figure": ["fvn-normal"],
2239
+ "fvn-spacing": ["fvn-normal"],
2240
+ "fvn-fraction": ["fvn-normal"],
2241
+ "line-clamp": ["display", "overflow"],
2242
+ rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
2243
+ "rounded-s": ["rounded-ss", "rounded-es"],
2244
+ "rounded-e": ["rounded-se", "rounded-ee"],
2245
+ "rounded-t": ["rounded-tl", "rounded-tr"],
2246
+ "rounded-r": ["rounded-tr", "rounded-br"],
2247
+ "rounded-b": ["rounded-br", "rounded-bl"],
2248
+ "rounded-l": ["rounded-tl", "rounded-bl"],
2249
+ "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"],
2251
+ "border-w-x": ["border-w-r", "border-w-l"],
2252
+ "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"],
2254
+ "border-color-x": ["border-color-r", "border-color-l"],
2255
+ "border-color-y": ["border-color-t", "border-color-b"],
2256
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2257
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
2258
+ "scroll-my": ["scroll-mt", "scroll-mb"],
2259
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
2260
+ "scroll-px": ["scroll-pr", "scroll-pl"],
2261
+ "scroll-py": ["scroll-pt", "scroll-pb"],
2262
+ touch: ["touch-x", "touch-y", "touch-pz"],
2263
+ "touch-x": ["touch"],
2264
+ "touch-y": ["touch"],
2265
+ "touch-pz": ["touch"]
2266
+ },
2267
+ conflictingClassGroupModifiers: {
2268
+ "font-size": ["leading"]
2269
+ }
2270
+ };
2271
+ }, Le = /* @__PURE__ */ he(Te);
2272
+ function We(...e) {
2273
+ return Le(ne(e));
2274
+ }
2275
+ export {
2276
+ ne as a,
2277
+ We as c
2278
+ };
2279
+ //# sourceMappingURL=cn-qaFjX9_3.js.map