zudoku 0.0.0-fd0986c → 0.0.0-fdf886de

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 (407) hide show
  1. package/dist/app/demo.js +1 -1
  2. package/dist/app/entry.client.js +1 -1
  3. package/dist/app/entry.server.js +1 -1
  4. package/dist/app/main.d.ts +1 -1
  5. package/dist/app/main.js +12 -6
  6. package/dist/app/main.js.map +1 -1
  7. package/dist/app/standalone.js +1 -1
  8. package/dist/config/config.d.ts +1 -0
  9. package/dist/config/validators/InputNavigationSchema.d.ts +251 -156
  10. package/dist/config/validators/InputNavigationSchema.js +5 -4
  11. package/dist/config/validators/InputNavigationSchema.js.map +1 -1
  12. package/dist/config/validators/InputNavigationSchema.test-d.js +0 -1
  13. package/dist/config/validators/InputNavigationSchema.test-d.js.map +1 -1
  14. package/dist/config/validators/NavigationSchema.js +6 -3
  15. package/dist/config/validators/NavigationSchema.js.map +1 -1
  16. package/dist/config/validators/ProtectedRoutesSchema.d.ts +13 -0
  17. package/dist/config/validators/ProtectedRoutesSchema.js +10 -0
  18. package/dist/config/validators/ProtectedRoutesSchema.js.map +1 -0
  19. package/dist/config/validators/icon-types.d.ts +1 -1
  20. package/dist/config/validators/icon-types.js +16 -0
  21. package/dist/config/validators/icon-types.js.map +1 -1
  22. package/dist/config/validators/validate.d.ts +44 -30
  23. package/dist/config/validators/validate.js +8 -2
  24. package/dist/config/validators/validate.js.map +1 -1
  25. package/dist/flat-config.d.ts +11 -7
  26. package/dist/index.d.ts +1 -0
  27. package/dist/index.js +1 -0
  28. package/dist/index.js.map +1 -1
  29. package/dist/lib/authentication/components/CallbackHandler.js +11 -9
  30. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  31. package/dist/lib/authentication/components/OAuthErrorPage.d.ts +3 -0
  32. package/dist/lib/authentication/components/OAuthErrorPage.js +99 -0
  33. package/dist/lib/authentication/components/OAuthErrorPage.js.map +1 -0
  34. package/dist/lib/authentication/errors.d.ts +6 -12
  35. package/dist/lib/authentication/errors.js +2 -1
  36. package/dist/lib/authentication/errors.js.map +1 -1
  37. package/dist/lib/authentication/hook.d.ts +1 -0
  38. package/dist/lib/authentication/hook.js.map +1 -1
  39. package/dist/lib/authentication/providers/azureb2c.js +4 -2
  40. package/dist/lib/authentication/providers/azureb2c.js.map +1 -1
  41. package/dist/lib/authentication/providers/clerk.js +4 -2
  42. package/dist/lib/authentication/providers/clerk.js.map +1 -1
  43. package/dist/lib/authentication/providers/openid.js +3 -1
  44. package/dist/lib/authentication/providers/openid.js.map +1 -1
  45. package/dist/lib/components/BuildCheck.d.ts +2 -1
  46. package/dist/lib/components/BuildCheck.js +9 -3
  47. package/dist/lib/components/BuildCheck.js.map +1 -1
  48. package/dist/lib/components/Header.js +1 -1
  49. package/dist/lib/components/Header.js.map +1 -1
  50. package/dist/lib/components/Heading.js +1 -1
  51. package/dist/lib/components/Heading.js.map +1 -1
  52. package/dist/lib/components/Layout.js +4 -7
  53. package/dist/lib/components/Layout.js.map +1 -1
  54. package/dist/lib/components/Markdown.js +2 -2
  55. package/dist/lib/components/Markdown.js.map +1 -1
  56. package/dist/lib/components/Meta.d.ts +2 -0
  57. package/dist/lib/components/Meta.js +11 -0
  58. package/dist/lib/components/Meta.js.map +1 -0
  59. package/dist/lib/components/MobileTopNavigation.js +5 -3
  60. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  61. package/dist/lib/components/NotFoundPage.js +1 -1
  62. package/dist/lib/components/NotFoundPage.js.map +1 -1
  63. package/dist/lib/components/TopNavigation.js +4 -3
  64. package/dist/lib/components/TopNavigation.js.map +1 -1
  65. package/dist/lib/components/Typography.d.ts +1 -1
  66. package/dist/lib/components/Typography.js +1 -1
  67. package/dist/lib/components/Typography.js.map +1 -1
  68. package/dist/lib/components/context/ZudokuContext.js +22 -14
  69. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  70. package/dist/lib/components/index.d.ts +0 -27
  71. package/dist/lib/components/index.js +0 -15
  72. package/dist/lib/components/index.js.map +1 -1
  73. package/dist/lib/components/navigation/NavigationCategory.js +1 -1
  74. package/dist/lib/components/navigation/NavigationCategory.js.map +1 -1
  75. package/dist/lib/components/navigation/NavigationItem.d.ts +1 -1
  76. package/dist/lib/components/navigation/NavigationItem.js +11 -3
  77. package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
  78. package/dist/lib/components/navigation/utils.d.ts +3 -1
  79. package/dist/lib/components/navigation/utils.js +18 -14
  80. package/dist/lib/components/navigation/utils.js.map +1 -1
  81. package/dist/lib/core/RouteGuard.js +9 -9
  82. package/dist/lib/core/RouteGuard.js.map +1 -1
  83. package/dist/lib/core/ZudokuContext.d.ts +5 -1
  84. package/dist/lib/core/ZudokuContext.js +23 -1
  85. package/dist/lib/core/ZudokuContext.js.map +1 -1
  86. package/dist/lib/core/__internal.d.ts +37 -0
  87. package/dist/lib/core/__internal.js +26 -0
  88. package/dist/lib/core/__internal.js.map +1 -0
  89. package/dist/lib/core/plugins.d.ts +2 -1
  90. package/dist/lib/core/plugins.js.map +1 -1
  91. package/dist/lib/core/router.d.ts +1 -0
  92. package/dist/lib/core/router.js +2 -0
  93. package/dist/lib/core/router.js.map +1 -0
  94. package/dist/lib/errors/ErrorAlert.js +1 -1
  95. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  96. package/dist/lib/plugins/api-keys/CreateApiKey.js +13 -3
  97. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  98. package/dist/lib/plugins/api-keys/SettingsApiKeys.js +3 -1
  99. package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
  100. package/dist/lib/plugins/api-keys/index.d.ts +9 -4
  101. package/dist/lib/plugins/api-keys/index.js +3 -7
  102. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  103. package/dist/lib/plugins/custom-pages/index.js +3 -0
  104. package/dist/lib/plugins/custom-pages/index.js.map +1 -1
  105. package/dist/lib/plugins/openapi/Sidecar.js +1 -1
  106. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  107. package/dist/lib/plugins/openapi/SidecarExamples.js +1 -1
  108. package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
  109. package/dist/lib/plugins/openapi/graphql/gql.d.ts +1 -1
  110. package/dist/lib/plugins/openapi/graphql/gql.js +1 -1
  111. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  112. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +1 -0
  113. package/dist/lib/plugins/openapi/graphql/graphql.js +1 -0
  114. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  115. package/dist/lib/plugins/openapi/index.js +42 -10
  116. package/dist/lib/plugins/openapi/index.js.map +1 -1
  117. package/dist/lib/plugins/openapi/playground/PathParams.js +1 -1
  118. package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
  119. package/dist/lib/plugins/openapi/playground/Playground.js +4 -2
  120. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  121. package/dist/lib/shiki.d.ts +4 -0
  122. package/dist/lib/shiki.js +2 -0
  123. package/dist/lib/shiki.js.map +1 -1
  124. package/dist/lib/ui/ActionButton.js +1 -1
  125. package/dist/lib/ui/ActionButton.js.map +1 -1
  126. package/dist/lib/ui/Badge.d.ts +1 -1
  127. package/dist/lib/ui/Button.d.ts +2 -2
  128. package/dist/lib/ui/CodeBlock.js +30 -4
  129. package/dist/lib/ui/CodeBlock.js.map +1 -1
  130. package/dist/lib/ui/Command.d.ts +1 -1
  131. package/dist/lib/ui/Dialog.js +2 -2
  132. package/dist/lib/ui/Dialog.js.map +1 -1
  133. package/dist/lib/ui/EmbeddedCodeBlock.js +1 -1
  134. package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -1
  135. package/dist/lib/util/invariant.d.ts +6 -5
  136. package/dist/lib/util/invariant.js +1 -1
  137. package/dist/lib/util/invariant.js.map +1 -1
  138. package/dist/vite/config.js +6 -1
  139. package/dist/vite/config.js.map +1 -1
  140. package/dist/vite/dev-server.js +9 -1
  141. package/dist/vite/dev-server.js.map +1 -1
  142. package/dist/vite/mdx/remark-inject-filepath.d.ts +3 -0
  143. package/dist/vite/mdx/remark-inject-filepath.js +6 -0
  144. package/dist/vite/mdx/remark-inject-filepath.js.map +1 -0
  145. package/dist/vite/mdx/remark-link-rewrite.d.ts +2 -0
  146. package/dist/vite/mdx/remark-link-rewrite.js +20 -0
  147. package/dist/vite/mdx/remark-link-rewrite.js.map +1 -0
  148. package/dist/vite/mdx/remark-normalize-image-url.d.ts +2 -0
  149. package/dist/vite/mdx/remark-normalize-image-url.js +12 -0
  150. package/dist/vite/mdx/remark-normalize-image-url.js.map +1 -0
  151. package/dist/vite/{remarkStaticGeneration.d.ts → mdx/remark-static-generation.d.ts} +2 -2
  152. package/dist/vite/{remarkStaticGeneration.js → mdx/remark-static-generation.js} +1 -1
  153. package/dist/vite/mdx/remark-static-generation.js.map +1 -0
  154. package/dist/vite/plugin-config.d.ts +1 -1
  155. package/dist/vite/plugin-config.js +2 -1
  156. package/dist/vite/plugin-config.js.map +1 -1
  157. package/dist/vite/plugin-docs.js +18 -13
  158. package/dist/vite/plugin-docs.js.map +1 -1
  159. package/dist/vite/plugin-mdx.js +6 -23
  160. package/dist/vite/plugin-mdx.js.map +1 -1
  161. package/dist/vite/plugin-theme.js +80 -40
  162. package/dist/vite/plugin-theme.js.map +1 -1
  163. package/dist/vite/prerender/worker.js +5 -1
  164. package/dist/vite/prerender/worker.js.map +1 -1
  165. package/dist/vite/shadcn-registry.d.ts +4 -4
  166. package/dist/vite/sitemap.js +10 -9
  167. package/dist/vite/sitemap.js.map +1 -1
  168. package/lib/Button-B3o-2Xdf.js.map +1 -1
  169. package/lib/Card-CMDQUPM4.js.map +1 -1
  170. package/lib/CategoryHeading-DCpZu3yG.js +17 -0
  171. package/lib/CategoryHeading-DCpZu3yG.js.map +1 -0
  172. package/lib/ClientOnly-E7hGysn1.js.map +1 -1
  173. package/lib/CodeBlock-yJjjRwj-.js +98 -0
  174. package/lib/CodeBlock-yJjjRwj-.js.map +1 -0
  175. package/lib/{Command-C9AC5cf-.js → Command-CDn17s8X.js} +2 -2
  176. package/lib/{Command-C9AC5cf-.js.map → Command-CDn17s8X.js.map} +1 -1
  177. package/lib/Dialog-BrIjMmUK.js +114 -0
  178. package/lib/Dialog-BrIjMmUK.js.map +1 -0
  179. package/lib/{Drawer-DXGPOKPx.js → Drawer-DJ05s2pH.js} +86 -86
  180. package/lib/{Drawer-DXGPOKPx.js.map → Drawer-DJ05s2pH.js.map} +1 -1
  181. package/lib/{MdxPage-BI0vLjSn.js → MdxPage-BmOQ5m5g.js} +19 -18
  182. package/lib/{MdxPage-BI0vLjSn.js.map → MdxPage-BmOQ5m5g.js.map} +1 -1
  183. package/lib/OAuthErrorPage-Jv3r8wnL.js +150 -0
  184. package/lib/OAuthErrorPage-Jv3r8wnL.js.map +1 -0
  185. package/lib/{OasProvider-CK4C2QI3.js → OasProvider-CA_lpILt.js} +3 -3
  186. package/lib/{OasProvider-CK4C2QI3.js.map → OasProvider-CA_lpILt.js.map} +1 -1
  187. package/lib/{OperationList-DhA6x6qm.js → OperationList-C-TObVw6.js} +47 -44
  188. package/lib/OperationList-C-TObVw6.js.map +1 -0
  189. package/lib/{Pagination-YjKVdgm9.js → Pagination-CBiRGddW.js} +3 -3
  190. package/lib/{Pagination-YjKVdgm9.js.map → Pagination-CBiRGddW.js.map} +1 -1
  191. package/lib/RouteGuard-JLH6tCY8.js +56 -0
  192. package/lib/RouteGuard-JLH6tCY8.js.map +1 -0
  193. package/lib/RouterError-DcVonMP1.js +41 -0
  194. package/lib/RouterError-DcVonMP1.js.map +1 -0
  195. package/lib/{SchemaList-Cx9MS7Wf.js → SchemaList-BeYWvBC7.js} +15 -14
  196. package/lib/{SchemaList-Cx9MS7Wf.js.map → SchemaList-BeYWvBC7.js.map} +1 -1
  197. package/lib/{SchemaView-C6sTKWyS.js → SchemaView-CRcShewo.js} +4 -4
  198. package/lib/{SchemaView-C6sTKWyS.js.map → SchemaView-CRcShewo.js.map} +1 -1
  199. package/lib/Select-C3efYI1n.js +273 -0
  200. package/lib/Select-C3efYI1n.js.map +1 -0
  201. package/lib/{SignUp-DiDmVb3x.js → SignUp-CxBGHgba.js} +6 -6
  202. package/lib/{SignUp-DiDmVb3x.js.map → SignUp-CxBGHgba.js.map} +1 -1
  203. package/lib/{Slot-CrCBhP3G.js → Slot-DOtTvoyj.js} +2050 -2288
  204. package/lib/{Slot-CrCBhP3G.js.map → Slot-DOtTvoyj.js.map} +1 -1
  205. package/lib/Spinner-mNLZ6awP.js.map +1 -1
  206. package/lib/{SyntaxHighlight-CVe58ZSY.js → SyntaxHighlight-GR0eix_L.js} +411 -409
  207. package/lib/SyntaxHighlight-GR0eix_L.js.map +1 -0
  208. package/lib/{Toc-CpsFSXeD.js → Toc-BlcGIkXc.js} +2 -2
  209. package/lib/{Toc-CpsFSXeD.js.map → Toc-BlcGIkXc.js.map} +1 -1
  210. package/lib/ZudokuContext-BuJD7yIX.js +1286 -0
  211. package/lib/ZudokuContext-BuJD7yIX.js.map +1 -0
  212. package/lib/chunk-QMGIS6GS-DqecZ6nq.js +9204 -0
  213. package/lib/chunk-QMGIS6GS-DqecZ6nq.js.map +1 -0
  214. package/lib/{circular-OvXQH6UK.js → circular-CGTcsqA3.js} +2 -2
  215. package/lib/{circular-OvXQH6UK.js.map → circular-CGTcsqA3.js.map} +1 -1
  216. package/lib/cn-dYga0KKN.js.map +1 -1
  217. package/lib/{createServer-B5U_8E3S.js → createServer-DjgpuLne.js} +5 -5
  218. package/lib/{createServer-B5U_8E3S.js.map → createServer-DjgpuLne.js.map} +1 -1
  219. package/lib/errors-CrI3s7mR.js +45 -0
  220. package/lib/errors-CrI3s7mR.js.map +1 -0
  221. package/lib/hook-bv3iuX7X.js +247 -0
  222. package/lib/hook-bv3iuX7X.js.map +1 -0
  223. package/lib/index-CrcNWbel.js.map +1 -1
  224. package/lib/{index-BzcS9JBW.js → index-CvTWnHZF.js} +860 -938
  225. package/lib/index-CvTWnHZF.js.map +1 -0
  226. package/lib/index-DI5SPFK9.js.map +1 -1
  227. package/lib/index-DmNq2fbN.js.map +1 -1
  228. package/lib/index-DzO-Qh6S.js +1061 -0
  229. package/lib/index-DzO-Qh6S.js.map +1 -0
  230. package/lib/{index-4XtG1tlD.js → index-HarEI51d.js} +2 -2
  231. package/lib/{index-4XtG1tlD.js.map → index-HarEI51d.js.map} +1 -1
  232. package/lib/index.esm-BnYHxCYC.js +683 -0
  233. package/lib/index.esm-BnYHxCYC.js.map +1 -0
  234. package/lib/index.esm-CdzlRw50.js +1254 -0
  235. package/lib/index.esm-CdzlRw50.js.map +1 -0
  236. package/lib/{invariant-DAFpPywt.js → invariant-Bm-FVUQE.js} +2 -6
  237. package/lib/invariant-Bm-FVUQE.js.map +1 -0
  238. package/lib/jsx-runtime-C5mzlN2N.js.map +1 -1
  239. package/lib/mutation-Dy_5up8v.js +196 -0
  240. package/lib/mutation-Dy_5up8v.js.map +1 -0
  241. package/lib/processors/removeExtensions.js.map +1 -1
  242. package/lib/processors/removeParameters.js.map +1 -1
  243. package/lib/processors/removePaths.js.map +1 -1
  244. package/lib/processors/traverse.js.map +1 -1
  245. package/lib/ui/Accordion.js.map +1 -1
  246. package/lib/ui/ActionButton.js +9 -9
  247. package/lib/ui/ActionButton.js.map +1 -1
  248. package/lib/ui/Alert.js.map +1 -1
  249. package/lib/ui/AlertDialog.js.map +1 -1
  250. package/lib/ui/Badge.js.map +1 -1
  251. package/lib/ui/Breadcrumb.js.map +1 -1
  252. package/lib/ui/Button.js.map +1 -1
  253. package/lib/ui/Callout.js.map +1 -1
  254. package/lib/ui/Card.js.map +1 -1
  255. package/lib/ui/Carousel.js.map +1 -1
  256. package/lib/ui/Checkbox.js.map +1 -1
  257. package/lib/ui/CodeBlock.js +1 -1
  258. package/lib/ui/Command.js +1 -1
  259. package/lib/ui/Command.js.map +1 -1
  260. package/lib/ui/Dialog.js +56 -41
  261. package/lib/ui/Dialog.js.map +1 -1
  262. package/lib/ui/Drawer.js +1 -1
  263. package/lib/ui/DropdownMenu.js.map +1 -1
  264. package/lib/ui/EmbeddedCodeBlock.js +1 -1
  265. package/lib/ui/EmbeddedCodeBlock.js.map +1 -1
  266. package/lib/ui/Form.js +1 -1
  267. package/lib/ui/Form.js.map +1 -1
  268. package/lib/ui/HoverCard.js.map +1 -1
  269. package/lib/ui/Input.js.map +1 -1
  270. package/lib/ui/Label.js.map +1 -1
  271. package/lib/ui/Pagination.js.map +1 -1
  272. package/lib/ui/Popover.js.map +1 -1
  273. package/lib/ui/Progress.js.map +1 -1
  274. package/lib/ui/RadioGroup.js.map +1 -1
  275. package/lib/ui/ScrollArea.js.map +1 -1
  276. package/lib/ui/Select.js.map +1 -1
  277. package/lib/ui/Skeleton.js.map +1 -1
  278. package/lib/ui/Slider.js.map +1 -1
  279. package/lib/ui/Stepper.js.map +1 -1
  280. package/lib/ui/Switch.js.map +1 -1
  281. package/lib/ui/SyntaxHighlight.js +4 -4
  282. package/lib/ui/Tabs.js.map +1 -1
  283. package/lib/ui/Textarea.js.map +1 -1
  284. package/lib/ui/Toggle.js.map +1 -1
  285. package/lib/ui/ToggleGroup.js.map +1 -1
  286. package/lib/ui/Tooltip.js.map +1 -1
  287. package/lib/useExposedProps-BH9aq4MD.js +113 -0
  288. package/lib/useExposedProps-BH9aq4MD.js.map +1 -0
  289. package/lib/useLatest-hmRS46UF.js +11 -0
  290. package/lib/useLatest-hmRS46UF.js.map +1 -0
  291. package/lib/zudoku.__internal.js +2965 -0
  292. package/lib/zudoku.__internal.js.map +1 -0
  293. package/lib/zudoku.auth-auth0.js +1 -1
  294. package/lib/zudoku.auth-auth0.js.map +1 -1
  295. package/lib/zudoku.auth-azureb2c.js +46 -9880
  296. package/lib/zudoku.auth-azureb2c.js.map +1 -1
  297. package/lib/zudoku.auth-clerk.js +25 -22
  298. package/lib/zudoku.auth-clerk.js.map +1 -1
  299. package/lib/zudoku.auth-openid.js +204 -195
  300. package/lib/zudoku.auth-openid.js.map +1 -1
  301. package/lib/zudoku.auth-supabase.js +97 -0
  302. package/lib/zudoku.auth-supabase.js.map +1 -0
  303. package/lib/zudoku.components.js +21 -28
  304. package/lib/zudoku.components.js.map +1 -1
  305. package/lib/zudoku.hooks.js +7 -7
  306. package/lib/zudoku.hooks.js.map +1 -1
  307. package/lib/zudoku.icons.js.map +1 -1
  308. package/lib/zudoku.plugin-api-catalog.js +23 -22
  309. package/lib/zudoku.plugin-api-catalog.js.map +1 -1
  310. package/lib/zudoku.plugin-api-keys.js +410 -295
  311. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  312. package/lib/zudoku.plugin-custom-pages.js +8 -5
  313. package/lib/zudoku.plugin-custom-pages.js.map +1 -1
  314. package/lib/zudoku.plugin-markdown.js +1 -1
  315. package/lib/zudoku.plugin-markdown.js.map +1 -1
  316. package/lib/zudoku.plugin-openapi.js +7 -6
  317. package/lib/zudoku.plugin-openapi.js.map +1 -1
  318. package/lib/zudoku.plugin-redirect.js +3 -3
  319. package/lib/zudoku.plugin-redirect.js.map +1 -1
  320. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  321. package/lib/zudoku.plugin-search-pagefind.js +28 -27
  322. package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
  323. package/lib/zudoku.plugins.js.map +1 -1
  324. package/lib/zudoku.router.js +123 -0
  325. package/lib/zudoku.router.js.map +1 -0
  326. package/package.json +31 -23
  327. package/src/app/demo.tsx +1 -1
  328. package/src/app/entry.client.tsx +1 -1
  329. package/src/app/entry.server.tsx +1 -1
  330. package/src/app/main.css +22 -5
  331. package/src/app/main.tsx +23 -11
  332. package/src/app/standalone.tsx +1 -1
  333. package/src/lib/authentication/components/CallbackHandler.tsx +22 -15
  334. package/src/lib/authentication/components/OAuthErrorPage.tsx +171 -0
  335. package/src/lib/authentication/errors.ts +27 -13
  336. package/src/lib/authentication/hook.ts +2 -0
  337. package/src/lib/authentication/providers/azureb2c.tsx +8 -3
  338. package/src/lib/authentication/providers/clerk.tsx +4 -1
  339. package/src/lib/authentication/providers/openid.tsx +7 -1
  340. package/src/lib/components/BuildCheck.tsx +13 -3
  341. package/src/lib/components/Header.tsx +4 -3
  342. package/src/lib/components/Heading.tsx +1 -1
  343. package/src/lib/components/Layout.tsx +2 -21
  344. package/src/lib/components/Markdown.tsx +3 -3
  345. package/src/lib/components/Meta.tsx +32 -0
  346. package/src/lib/components/MobileTopNavigation.tsx +6 -3
  347. package/src/lib/components/NotFoundPage.tsx +3 -2
  348. package/src/lib/components/TopNavigation.tsx +4 -4
  349. package/src/lib/components/Typography.tsx +1 -1
  350. package/src/lib/components/context/ZudokuContext.ts +26 -19
  351. package/src/lib/components/index.ts +0 -18
  352. package/src/lib/components/navigation/NavigationCategory.tsx +1 -1
  353. package/src/lib/components/navigation/NavigationItem.tsx +13 -3
  354. package/src/lib/components/navigation/utils.ts +21 -15
  355. package/src/lib/core/RouteGuard.tsx +13 -13
  356. package/src/lib/core/ZudokuContext.ts +37 -5
  357. package/src/lib/core/__internal.tsx +30 -0
  358. package/src/lib/core/plugins.ts +2 -1
  359. package/src/lib/core/router.ts +1 -0
  360. package/src/lib/errors/ErrorAlert.tsx +5 -7
  361. package/src/lib/plugins/api-keys/CreateApiKey.tsx +17 -3
  362. package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +21 -3
  363. package/src/lib/plugins/api-keys/index.tsx +16 -11
  364. package/src/lib/plugins/custom-pages/index.tsx +3 -0
  365. package/src/lib/plugins/openapi/Sidecar.tsx +1 -1
  366. package/src/lib/plugins/openapi/SidecarExamples.tsx +1 -1
  367. package/src/lib/plugins/openapi/graphql/gql.ts +3 -3
  368. package/src/lib/plugins/openapi/graphql/graphql.ts +2 -0
  369. package/src/lib/plugins/openapi/index.tsx +66 -16
  370. package/src/lib/plugins/openapi/playground/PathParams.tsx +1 -1
  371. package/src/lib/plugins/openapi/playground/Playground.tsx +8 -2
  372. package/src/lib/shiki.ts +2 -0
  373. package/src/lib/ui/ActionButton.tsx +3 -1
  374. package/src/lib/ui/CodeBlock.tsx +38 -13
  375. package/src/lib/ui/Dialog.tsx +12 -3
  376. package/src/lib/ui/EmbeddedCodeBlock.tsx +1 -1
  377. package/src/lib/util/invariant.ts +7 -5
  378. package/src/shiki/langs/vue-vine.js +1 -0
  379. package/dist/vite/remarkStaticGeneration.js.map +0 -1
  380. package/lib/Alert-Cig_8hW6.js +0 -161
  381. package/lib/Alert-Cig_8hW6.js.map +0 -1
  382. package/lib/CodeBlock-BaBgX9Wy.js +0 -85
  383. package/lib/CodeBlock-BaBgX9Wy.js.map +0 -1
  384. package/lib/Dialog-DMWw1doX.js +0 -99
  385. package/lib/Dialog-DMWw1doX.js.map +0 -1
  386. package/lib/OperationList-DhA6x6qm.js.map +0 -1
  387. package/lib/RouteGuard-Vnlz_t51.js +0 -737
  388. package/lib/RouteGuard-Vnlz_t51.js.map +0 -1
  389. package/lib/SyntaxHighlight-CVe58ZSY.js.map +0 -1
  390. package/lib/chunk-DQRVZFIR-DHK7_Ilc.js +0 -1839
  391. package/lib/chunk-DQRVZFIR-DHK7_Ilc.js.map +0 -1
  392. package/lib/clerk-BDZ31hjU.js +0 -25190
  393. package/lib/clerk-BDZ31hjU.js.map +0 -1
  394. package/lib/errors-DOCWNkkS.js +0 -78
  395. package/lib/errors-DOCWNkkS.js.map +0 -1
  396. package/lib/hook-CZjW2buS.js +0 -1510
  397. package/lib/hook-CZjW2buS.js.map +0 -1
  398. package/lib/index-Bm35Tkgf.js +0 -107
  399. package/lib/index-Bm35Tkgf.js.map +0 -1
  400. package/lib/index-BzcS9JBW.js.map +0 -1
  401. package/lib/index-Sb7nQNHJ.js +0 -3980
  402. package/lib/index-Sb7nQNHJ.js.map +0 -1
  403. package/lib/index.esm-Cp4wkyud.js +0 -1236
  404. package/lib/index.esm-Cp4wkyud.js.map +0 -1
  405. package/lib/invariant-DAFpPywt.js.map +0 -1
  406. package/lib/useExposedProps-BIYjecPD.js +0 -9
  407. package/lib/useExposedProps-BIYjecPD.js.map +0 -1
@@ -1,15 +1,23 @@
1
1
  import { z } from "zod/v4";
2
+ import type { UseAuthReturn } from "../../lib/authentication/hook.js";
3
+ import type { ZudokuContext } from "../../lib/core/ZudokuContext.js";
2
4
  declare const InputNavigationCategoryLinkDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3
5
  type: z.ZodLiteral<"doc">;
4
6
  file: z.ZodString;
5
7
  label: z.ZodOptional<z.ZodString>;
6
8
  }, z.core.$strip>]>;
7
- export declare const DisplaySchema: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
9
+ export declare const DisplaySchema: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
10
+ hide: "hide";
11
+ always: "always";
8
12
  auth: "auth";
9
13
  anon: "anon";
10
- always: "always";
11
- hide: "hide";
12
- }>>>;
14
+ }>, z.ZodCustom<(params: {
15
+ context: ZudokuContext;
16
+ auth: UseAuthReturn;
17
+ }) => boolean, (params: {
18
+ context: ZudokuContext;
19
+ auth: UseAuthReturn;
20
+ }) => boolean>]>>>;
13
21
  declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
14
22
  type: z.ZodLiteral<"doc">;
15
23
  file: z.ZodString;
@@ -37,12 +45,44 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
37
45
  tag: "tag";
38
46
  file: "file";
39
47
  delete: "delete";
48
+ code: "code";
49
+ check: "check";
40
50
  copy: "copy";
41
51
  focus: "focus";
42
52
  pause: "pause";
43
53
  play: "play";
44
54
  scroll: "scroll";
45
55
  merge: "merge";
56
+ ghost: "ghost";
57
+ expand: "expand";
58
+ send: "send";
59
+ grid: "grid";
60
+ group: "group";
61
+ heading: "heading";
62
+ menu: "menu";
63
+ navigation: "navigation";
64
+ option: "option";
65
+ presentation: "presentation";
66
+ radio: "radio";
67
+ table: "table";
68
+ timer: "timer";
69
+ text: "text";
70
+ mouse: "mouse";
71
+ pen: "pen";
72
+ regex: "regex";
73
+ target: "target";
74
+ radius: "radius";
75
+ scale: "scale";
76
+ x: "x";
77
+ section: "section";
78
+ video: "video";
79
+ circle: "circle";
80
+ image: "image";
81
+ view: "view";
82
+ baseline: "baseline";
83
+ terminal: "terminal";
84
+ square: "square";
85
+ move: "move";
46
86
  "a-arrow-down": "a-arrow-down";
47
87
  "a-arrow-up": "a-arrow-up";
48
88
  "a-large-small": "a-large-small";
@@ -204,6 +244,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
204
244
  "badge-percent": "badge-percent";
205
245
  "badge-plus": "badge-plus";
206
246
  "badge-pound-sterling": "badge-pound-sterling";
247
+ "badge-question-mark": "badge-question-mark";
207
248
  "badge-russian-ruble": "badge-russian-ruble";
208
249
  "badge-swiss-franc": "badge-swiss-franc";
209
250
  "badge-x": "badge-x";
@@ -223,7 +264,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
223
264
  "bar-chart-horizontal": "bar-chart-horizontal";
224
265
  "bar-chart-horizontal-big": "bar-chart-horizontal-big";
225
266
  barcode: "barcode";
226
- baseline: "baseline";
267
+ barrel: "barrel";
227
268
  bath: "bath";
228
269
  battery: "battery";
229
270
  "battery-charging": "battery-charging";
@@ -305,6 +346,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
305
346
  bot: "bot";
306
347
  "bot-message-square": "bot-message-square";
307
348
  "bot-off": "bot-off";
349
+ "bottle-wine": "bottle-wine";
308
350
  "bow-arrow": "bow-arrow";
309
351
  box: "box";
310
352
  "box-select": "box-select";
@@ -403,7 +445,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
403
445
  "chart-pie": "chart-pie";
404
446
  "chart-scatter": "chart-scatter";
405
447
  "chart-spline": "chart-spline";
406
- check: "check";
407
448
  "check-check": "check-check";
408
449
  "check-circle": "check-circle";
409
450
  "check-circle-2": "check-circle-2";
@@ -439,7 +480,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
439
480
  church: "church";
440
481
  cigarette: "cigarette";
441
482
  "cigarette-off": "cigarette-off";
442
- circle: "circle";
443
483
  "circle-alert": "circle-alert";
444
484
  "circle-arrow-down": "circle-arrow-down";
445
485
  "circle-arrow-left": "circle-arrow-left";
@@ -476,6 +516,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
476
516
  "circle-plus": "circle-plus";
477
517
  "circle-pound-sterling": "circle-pound-sterling";
478
518
  "circle-power": "circle-power";
519
+ "circle-question-mark": "circle-question-mark";
479
520
  "circle-slash": "circle-slash";
480
521
  "circle-slash-2": "circle-slash-2";
481
522
  "circle-slashed": "circle-slashed";
@@ -539,7 +580,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
539
580
  cloudy: "cloudy";
540
581
  clover: "clover";
541
582
  club: "club";
542
- code: "code";
543
583
  "code-2": "code-2";
544
584
  "code-square": "code-square";
545
585
  "code-xml": "code-xml";
@@ -639,6 +679,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
639
679
  drama: "drama";
640
680
  dribbble: "dribbble";
641
681
  drill: "drill";
682
+ drone: "drone";
642
683
  droplet: "droplet";
643
684
  "droplet-off": "droplet-off";
644
685
  droplets: "droplets";
@@ -665,7 +706,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
665
706
  eraser: "eraser";
666
707
  "ethernet-port": "ethernet-port";
667
708
  euro: "euro";
668
- expand: "expand";
669
709
  "external-link": "external-link";
670
710
  eye: "eye";
671
711
  "eye-closed": "eye-closed";
@@ -723,6 +763,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
723
763
  "file-plus": "file-plus";
724
764
  "file-plus-2": "file-plus-2";
725
765
  "file-question": "file-question";
766
+ "file-question-mark": "file-question-mark";
726
767
  "file-scan": "file-scan";
727
768
  "file-search": "file-search";
728
769
  "file-search-2": "file-search-2";
@@ -832,7 +873,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
832
873
  "gauge-circle": "gauge-circle";
833
874
  gavel: "gavel";
834
875
  gem: "gem";
835
- ghost: "ghost";
876
+ "georgian-lari": "georgian-lari";
836
877
  gift: "gift";
837
878
  "git-branch": "git-branch";
838
879
  "git-branch-plus": "git-branch-plus";
@@ -862,7 +903,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
862
903
  grab: "grab";
863
904
  "graduation-cap": "graduation-cap";
864
905
  grape: "grape";
865
- grid: "grid";
866
906
  "grid-2-x-2": "grid-2-x-2";
867
907
  "grid-2-x-2-check": "grid-2-x-2-check";
868
908
  "grid-2-x-2-plus": "grid-2-x-2-plus";
@@ -877,7 +917,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
877
917
  grip: "grip";
878
918
  "grip-horizontal": "grip-horizontal";
879
919
  "grip-vertical": "grip-vertical";
880
- group: "group";
881
920
  guitar: "guitar";
882
921
  ham: "ham";
883
922
  hamburger: "hamburger";
@@ -896,7 +935,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
896
935
  hash: "hash";
897
936
  haze: "haze";
898
937
  "hdmi-port": "hdmi-port";
899
- heading: "heading";
900
938
  "heading-1": "heading-1";
901
939
  "heading-2": "heading-2";
902
940
  "heading-3": "heading-3";
@@ -935,7 +973,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
935
973
  "ice-cream-cone": "ice-cream-cone";
936
974
  "id-card": "id-card";
937
975
  "id-card-lanyard": "id-card-lanyard";
938
- image: "image";
939
976
  "image-down": "image-down";
940
977
  "image-minus": "image-minus";
941
978
  "image-off": "image-off";
@@ -1005,6 +1042,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1005
1042
  lightbulb: "lightbulb";
1006
1043
  "lightbulb-off": "lightbulb-off";
1007
1044
  "line-chart": "line-chart";
1045
+ "line-squiggle": "line-squiggle";
1008
1046
  "link-2": "link-2";
1009
1047
  "link-2-off": "link-2-off";
1010
1048
  linkedin: "linkedin";
@@ -1049,6 +1087,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1049
1087
  "mail-open": "mail-open";
1050
1088
  "mail-plus": "mail-plus";
1051
1089
  "mail-question": "mail-question";
1090
+ "mail-question-mark": "mail-question-mark";
1052
1091
  "mail-search": "mail-search";
1053
1092
  "mail-warning": "mail-warning";
1054
1093
  "mail-x": "mail-x";
@@ -1077,7 +1116,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1077
1116
  "megaphone-off": "megaphone-off";
1078
1117
  meh: "meh";
1079
1118
  "memory-stick": "memory-stick";
1080
- menu: "menu";
1081
1119
  "menu-square": "menu-square";
1082
1120
  "message-circle": "message-circle";
1083
1121
  "message-circle-code": "message-circle-code";
@@ -1087,6 +1125,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1087
1125
  "message-circle-off": "message-circle-off";
1088
1126
  "message-circle-plus": "message-circle-plus";
1089
1127
  "message-circle-question": "message-circle-question";
1128
+ "message-circle-question-mark": "message-circle-question-mark";
1090
1129
  "message-circle-reply": "message-circle-reply";
1091
1130
  "message-circle-warning": "message-circle-warning";
1092
1131
  "message-circle-x": "message-circle-x";
@@ -1141,14 +1180,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1141
1180
  "more-vertical": "more-vertical";
1142
1181
  mountain: "mountain";
1143
1182
  "mountain-snow": "mountain-snow";
1144
- mouse: "mouse";
1145
1183
  "mouse-off": "mouse-off";
1146
1184
  "mouse-pointer": "mouse-pointer";
1147
1185
  "mouse-pointer-2": "mouse-pointer-2";
1148
1186
  "mouse-pointer-ban": "mouse-pointer-ban";
1149
1187
  "mouse-pointer-click": "mouse-pointer-click";
1150
1188
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
1151
- move: "move";
1152
1189
  "move-3-d": "move-3-d";
1153
1190
  "move-3d": "move-3d";
1154
1191
  "move-diagonal": "move-diagonal";
@@ -1167,7 +1204,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1167
1204
  "music-2": "music-2";
1168
1205
  "music-3": "music-3";
1169
1206
  "music-4": "music-4";
1170
- navigation: "navigation";
1171
1207
  "navigation-2": "navigation-2";
1172
1208
  "navigation-2-off": "navigation-2-off";
1173
1209
  "navigation-off": "navigation-off";
@@ -1189,7 +1225,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1189
1225
  "octagon-pause": "octagon-pause";
1190
1226
  "octagon-x": "octagon-x";
1191
1227
  omega: "omega";
1192
- option: "option";
1193
1228
  orbit: "orbit";
1194
1229
  origami: "origami";
1195
1230
  outdent: "outdent";
@@ -1246,7 +1281,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1246
1281
  "pause-octagon": "pause-octagon";
1247
1282
  "paw-print": "paw-print";
1248
1283
  "pc-case": "pc-case";
1249
- pen: "pen";
1250
1284
  "pen-box": "pen-box";
1251
1285
  "pen-line": "pen-line";
1252
1286
  "pen-off": "pen-off";
@@ -1312,7 +1346,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1312
1346
  "power-circle": "power-circle";
1313
1347
  "power-off": "power-off";
1314
1348
  "power-square": "power-square";
1315
- presentation: "presentation";
1316
1349
  printer: "printer";
1317
1350
  "printer-check": "printer-check";
1318
1351
  projector: "projector";
@@ -1325,10 +1358,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1325
1358
  radar: "radar";
1326
1359
  radiation: "radiation";
1327
1360
  radical: "radical";
1328
- radio: "radio";
1329
1361
  "radio-receiver": "radio-receiver";
1330
1362
  "radio-tower": "radio-tower";
1331
- radius: "radius";
1332
1363
  "rail-symbol": "rail-symbol";
1333
1364
  rainbow: "rainbow";
1334
1365
  rat: "rat";
@@ -1356,7 +1387,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1356
1387
  "refresh-cw": "refresh-cw";
1357
1388
  "refresh-cw-off": "refresh-cw-off";
1358
1389
  refrigerator: "refrigerator";
1359
- regex: "regex";
1360
1390
  "remove-formatting": "remove-formatting";
1361
1391
  "repeat-1": "repeat-1";
1362
1392
  "repeat-2": "repeat-2";
@@ -1395,7 +1425,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1395
1425
  save: "save";
1396
1426
  "save-all": "save-all";
1397
1427
  "save-off": "save-off";
1398
- scale: "scale";
1399
1428
  "scale-3-d": "scale-3-d";
1400
1429
  "scale-3d": "scale-3d";
1401
1430
  scaling: "scaling";
@@ -1422,8 +1451,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1422
1451
  "search-code": "search-code";
1423
1452
  "search-slash": "search-slash";
1424
1453
  "search-x": "search-x";
1425
- section: "section";
1426
- send: "send";
1427
1454
  "send-horizonal": "send-horizonal";
1428
1455
  "send-horizontal": "send-horizontal";
1429
1456
  "send-to-back": "send-to-back";
@@ -1450,6 +1477,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1450
1477
  "shield-off": "shield-off";
1451
1478
  "shield-plus": "shield-plus";
1452
1479
  "shield-question": "shield-question";
1480
+ "shield-question-mark": "shield-question-mark";
1453
1481
  "shield-user": "shield-user";
1454
1482
  "shield-x": "shield-x";
1455
1483
  ship: "ship";
@@ -1512,9 +1540,9 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1512
1540
  "spline-pointer": "spline-pointer";
1513
1541
  "split-square-horizontal": "split-square-horizontal";
1514
1542
  "split-square-vertical": "split-square-vertical";
1543
+ spool: "spool";
1515
1544
  "spray-can": "spray-can";
1516
1545
  sprout: "sprout";
1517
- square: "square";
1518
1546
  "square-activity": "square-activity";
1519
1547
  "square-arrow-down": "square-arrow-down";
1520
1548
  "square-arrow-down-left": "square-arrow-down-left";
@@ -1582,6 +1610,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1582
1610
  "squares-subtract": "squares-subtract";
1583
1611
  "squares-unite": "squares-unite";
1584
1612
  squircle: "squircle";
1613
+ "squircle-dashed": "squircle-dashed";
1585
1614
  squirrel: "squirrel";
1586
1615
  stamp: "stamp";
1587
1616
  star: "star";
@@ -1614,7 +1643,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1614
1643
  sword: "sword";
1615
1644
  swords: "swords";
1616
1645
  syringe: "syringe";
1617
- table: "table";
1618
1646
  "table-2": "table-2";
1619
1647
  "table-cells-merge": "table-cells-merge";
1620
1648
  "table-cells-split": "table-cells-split";
@@ -1632,17 +1660,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1632
1660
  "tally-4": "tally-4";
1633
1661
  "tally-5": "tally-5";
1634
1662
  tangent: "tangent";
1635
- target: "target";
1636
1663
  telescope: "telescope";
1637
1664
  tent: "tent";
1638
1665
  "tent-tree": "tent-tree";
1639
- terminal: "terminal";
1640
1666
  "terminal-square": "terminal-square";
1641
1667
  "test-tube": "test-tube";
1642
1668
  "test-tube-2": "test-tube-2";
1643
1669
  "test-tube-diagonal": "test-tube-diagonal";
1644
1670
  "test-tubes": "test-tubes";
1645
- text: "text";
1646
1671
  "text-cursor": "text-cursor";
1647
1672
  "text-cursor-input": "text-cursor-input";
1648
1673
  "text-quote": "text-quote";
@@ -1664,12 +1689,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1664
1689
  "ticket-x": "ticket-x";
1665
1690
  tickets: "tickets";
1666
1691
  "tickets-plane": "tickets-plane";
1667
- timer: "timer";
1668
1692
  "timer-off": "timer-off";
1669
1693
  "timer-reset": "timer-reset";
1670
1694
  "toggle-left": "toggle-left";
1671
1695
  "toggle-right": "toggle-right";
1672
1696
  toilet: "toilet";
1697
+ "tool-case": "tool-case";
1673
1698
  tornado: "tornado";
1674
1699
  torus: "torus";
1675
1700
  touchpad: "touchpad";
@@ -1762,6 +1787,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1762
1787
  "utility-pole": "utility-pole";
1763
1788
  variable: "variable";
1764
1789
  vault: "vault";
1790
+ "vector-square": "vector-square";
1765
1791
  vegan: "vegan";
1766
1792
  "venetian-mask": "venetian-mask";
1767
1793
  venus: "venus";
@@ -1769,10 +1795,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1769
1795
  verified: "verified";
1770
1796
  vibrate: "vibrate";
1771
1797
  "vibrate-off": "vibrate-off";
1772
- video: "video";
1773
1798
  "video-off": "video-off";
1774
1799
  videotape: "videotape";
1775
- view: "view";
1776
1800
  voicemail: "voicemail";
1777
1801
  volleyball: "volleyball";
1778
1802
  volume: "volume";
@@ -1803,6 +1827,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1803
1827
  "wheat-off": "wheat-off";
1804
1828
  "whole-word": "whole-word";
1805
1829
  wifi: "wifi";
1830
+ "wifi-cog": "wifi-cog";
1806
1831
  "wifi-high": "wifi-high";
1807
1832
  "wifi-low": "wifi-low";
1808
1833
  "wifi-off": "wifi-off";
@@ -1816,7 +1841,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1816
1841
  worm: "worm";
1817
1842
  "wrap-text": "wrap-text";
1818
1843
  wrench: "wrench";
1819
- x: "x";
1820
1844
  "x-circle": "x-circle";
1821
1845
  "x-octagon": "x-octagon";
1822
1846
  "x-square": "x-square";
@@ -1830,6 +1854,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1830
1854
  badge: z.ZodOptional<z.ZodObject<{
1831
1855
  label: z.ZodString;
1832
1856
  color: z.ZodEnum<{
1857
+ outline: "outline";
1833
1858
  green: "green";
1834
1859
  blue: "blue";
1835
1860
  yellow: "yellow";
@@ -1837,16 +1862,20 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
1837
1862
  purple: "purple";
1838
1863
  indigo: "indigo";
1839
1864
  gray: "gray";
1840
- outline: "outline";
1841
1865
  }>;
1842
- invert: z.ZodOptional<z.ZodBoolean>;
1843
1866
  }, z.core.$strip>>;
1844
- display: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
1867
+ display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
1868
+ hide: "hide";
1869
+ always: "always";
1845
1870
  auth: "auth";
1846
1871
  anon: "anon";
1847
- always: "always";
1848
- hide: "hide";
1849
- }>>>;
1872
+ }>, z.ZodCustom<(params: {
1873
+ context: ZudokuContext;
1874
+ auth: UseAuthReturn;
1875
+ }) => boolean, (params: {
1876
+ context: ZudokuContext;
1877
+ auth: UseAuthReturn;
1878
+ }) => boolean>]>>>;
1850
1879
  }, z.core.$strip>]>;
1851
1880
  declare const InputNavigationLinkSchema: z.ZodObject<{
1852
1881
  type: z.ZodLiteral<"link">;
@@ -1875,12 +1904,44 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
1875
1904
  tag: "tag";
1876
1905
  file: "file";
1877
1906
  delete: "delete";
1907
+ code: "code";
1908
+ check: "check";
1878
1909
  copy: "copy";
1879
1910
  focus: "focus";
1880
1911
  pause: "pause";
1881
1912
  play: "play";
1882
1913
  scroll: "scroll";
1883
1914
  merge: "merge";
1915
+ ghost: "ghost";
1916
+ expand: "expand";
1917
+ send: "send";
1918
+ grid: "grid";
1919
+ group: "group";
1920
+ heading: "heading";
1921
+ menu: "menu";
1922
+ navigation: "navigation";
1923
+ option: "option";
1924
+ presentation: "presentation";
1925
+ radio: "radio";
1926
+ table: "table";
1927
+ timer: "timer";
1928
+ text: "text";
1929
+ mouse: "mouse";
1930
+ pen: "pen";
1931
+ regex: "regex";
1932
+ target: "target";
1933
+ radius: "radius";
1934
+ scale: "scale";
1935
+ x: "x";
1936
+ section: "section";
1937
+ video: "video";
1938
+ circle: "circle";
1939
+ image: "image";
1940
+ view: "view";
1941
+ baseline: "baseline";
1942
+ terminal: "terminal";
1943
+ square: "square";
1944
+ move: "move";
1884
1945
  "a-arrow-down": "a-arrow-down";
1885
1946
  "a-arrow-up": "a-arrow-up";
1886
1947
  "a-large-small": "a-large-small";
@@ -2042,6 +2103,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2042
2103
  "badge-percent": "badge-percent";
2043
2104
  "badge-plus": "badge-plus";
2044
2105
  "badge-pound-sterling": "badge-pound-sterling";
2106
+ "badge-question-mark": "badge-question-mark";
2045
2107
  "badge-russian-ruble": "badge-russian-ruble";
2046
2108
  "badge-swiss-franc": "badge-swiss-franc";
2047
2109
  "badge-x": "badge-x";
@@ -2061,7 +2123,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2061
2123
  "bar-chart-horizontal": "bar-chart-horizontal";
2062
2124
  "bar-chart-horizontal-big": "bar-chart-horizontal-big";
2063
2125
  barcode: "barcode";
2064
- baseline: "baseline";
2126
+ barrel: "barrel";
2065
2127
  bath: "bath";
2066
2128
  battery: "battery";
2067
2129
  "battery-charging": "battery-charging";
@@ -2143,6 +2205,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2143
2205
  bot: "bot";
2144
2206
  "bot-message-square": "bot-message-square";
2145
2207
  "bot-off": "bot-off";
2208
+ "bottle-wine": "bottle-wine";
2146
2209
  "bow-arrow": "bow-arrow";
2147
2210
  box: "box";
2148
2211
  "box-select": "box-select";
@@ -2241,7 +2304,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2241
2304
  "chart-pie": "chart-pie";
2242
2305
  "chart-scatter": "chart-scatter";
2243
2306
  "chart-spline": "chart-spline";
2244
- check: "check";
2245
2307
  "check-check": "check-check";
2246
2308
  "check-circle": "check-circle";
2247
2309
  "check-circle-2": "check-circle-2";
@@ -2277,7 +2339,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2277
2339
  church: "church";
2278
2340
  cigarette: "cigarette";
2279
2341
  "cigarette-off": "cigarette-off";
2280
- circle: "circle";
2281
2342
  "circle-alert": "circle-alert";
2282
2343
  "circle-arrow-down": "circle-arrow-down";
2283
2344
  "circle-arrow-left": "circle-arrow-left";
@@ -2314,6 +2375,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2314
2375
  "circle-plus": "circle-plus";
2315
2376
  "circle-pound-sterling": "circle-pound-sterling";
2316
2377
  "circle-power": "circle-power";
2378
+ "circle-question-mark": "circle-question-mark";
2317
2379
  "circle-slash": "circle-slash";
2318
2380
  "circle-slash-2": "circle-slash-2";
2319
2381
  "circle-slashed": "circle-slashed";
@@ -2377,7 +2439,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2377
2439
  cloudy: "cloudy";
2378
2440
  clover: "clover";
2379
2441
  club: "club";
2380
- code: "code";
2381
2442
  "code-2": "code-2";
2382
2443
  "code-square": "code-square";
2383
2444
  "code-xml": "code-xml";
@@ -2477,6 +2538,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2477
2538
  drama: "drama";
2478
2539
  dribbble: "dribbble";
2479
2540
  drill: "drill";
2541
+ drone: "drone";
2480
2542
  droplet: "droplet";
2481
2543
  "droplet-off": "droplet-off";
2482
2544
  droplets: "droplets";
@@ -2503,7 +2565,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2503
2565
  eraser: "eraser";
2504
2566
  "ethernet-port": "ethernet-port";
2505
2567
  euro: "euro";
2506
- expand: "expand";
2507
2568
  "external-link": "external-link";
2508
2569
  eye: "eye";
2509
2570
  "eye-closed": "eye-closed";
@@ -2561,6 +2622,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2561
2622
  "file-plus": "file-plus";
2562
2623
  "file-plus-2": "file-plus-2";
2563
2624
  "file-question": "file-question";
2625
+ "file-question-mark": "file-question-mark";
2564
2626
  "file-scan": "file-scan";
2565
2627
  "file-search": "file-search";
2566
2628
  "file-search-2": "file-search-2";
@@ -2670,7 +2732,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2670
2732
  "gauge-circle": "gauge-circle";
2671
2733
  gavel: "gavel";
2672
2734
  gem: "gem";
2673
- ghost: "ghost";
2735
+ "georgian-lari": "georgian-lari";
2674
2736
  gift: "gift";
2675
2737
  "git-branch": "git-branch";
2676
2738
  "git-branch-plus": "git-branch-plus";
@@ -2700,7 +2762,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2700
2762
  grab: "grab";
2701
2763
  "graduation-cap": "graduation-cap";
2702
2764
  grape: "grape";
2703
- grid: "grid";
2704
2765
  "grid-2-x-2": "grid-2-x-2";
2705
2766
  "grid-2-x-2-check": "grid-2-x-2-check";
2706
2767
  "grid-2-x-2-plus": "grid-2-x-2-plus";
@@ -2715,7 +2776,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2715
2776
  grip: "grip";
2716
2777
  "grip-horizontal": "grip-horizontal";
2717
2778
  "grip-vertical": "grip-vertical";
2718
- group: "group";
2719
2779
  guitar: "guitar";
2720
2780
  ham: "ham";
2721
2781
  hamburger: "hamburger";
@@ -2734,7 +2794,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2734
2794
  hash: "hash";
2735
2795
  haze: "haze";
2736
2796
  "hdmi-port": "hdmi-port";
2737
- heading: "heading";
2738
2797
  "heading-1": "heading-1";
2739
2798
  "heading-2": "heading-2";
2740
2799
  "heading-3": "heading-3";
@@ -2773,7 +2832,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2773
2832
  "ice-cream-cone": "ice-cream-cone";
2774
2833
  "id-card": "id-card";
2775
2834
  "id-card-lanyard": "id-card-lanyard";
2776
- image: "image";
2777
2835
  "image-down": "image-down";
2778
2836
  "image-minus": "image-minus";
2779
2837
  "image-off": "image-off";
@@ -2843,6 +2901,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2843
2901
  lightbulb: "lightbulb";
2844
2902
  "lightbulb-off": "lightbulb-off";
2845
2903
  "line-chart": "line-chart";
2904
+ "line-squiggle": "line-squiggle";
2846
2905
  "link-2": "link-2";
2847
2906
  "link-2-off": "link-2-off";
2848
2907
  linkedin: "linkedin";
@@ -2887,6 +2946,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2887
2946
  "mail-open": "mail-open";
2888
2947
  "mail-plus": "mail-plus";
2889
2948
  "mail-question": "mail-question";
2949
+ "mail-question-mark": "mail-question-mark";
2890
2950
  "mail-search": "mail-search";
2891
2951
  "mail-warning": "mail-warning";
2892
2952
  "mail-x": "mail-x";
@@ -2915,7 +2975,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2915
2975
  "megaphone-off": "megaphone-off";
2916
2976
  meh: "meh";
2917
2977
  "memory-stick": "memory-stick";
2918
- menu: "menu";
2919
2978
  "menu-square": "menu-square";
2920
2979
  "message-circle": "message-circle";
2921
2980
  "message-circle-code": "message-circle-code";
@@ -2925,6 +2984,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2925
2984
  "message-circle-off": "message-circle-off";
2926
2985
  "message-circle-plus": "message-circle-plus";
2927
2986
  "message-circle-question": "message-circle-question";
2987
+ "message-circle-question-mark": "message-circle-question-mark";
2928
2988
  "message-circle-reply": "message-circle-reply";
2929
2989
  "message-circle-warning": "message-circle-warning";
2930
2990
  "message-circle-x": "message-circle-x";
@@ -2979,14 +3039,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
2979
3039
  "more-vertical": "more-vertical";
2980
3040
  mountain: "mountain";
2981
3041
  "mountain-snow": "mountain-snow";
2982
- mouse: "mouse";
2983
3042
  "mouse-off": "mouse-off";
2984
3043
  "mouse-pointer": "mouse-pointer";
2985
3044
  "mouse-pointer-2": "mouse-pointer-2";
2986
3045
  "mouse-pointer-ban": "mouse-pointer-ban";
2987
3046
  "mouse-pointer-click": "mouse-pointer-click";
2988
3047
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
2989
- move: "move";
2990
3048
  "move-3-d": "move-3-d";
2991
3049
  "move-3d": "move-3d";
2992
3050
  "move-diagonal": "move-diagonal";
@@ -3005,7 +3063,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3005
3063
  "music-2": "music-2";
3006
3064
  "music-3": "music-3";
3007
3065
  "music-4": "music-4";
3008
- navigation: "navigation";
3009
3066
  "navigation-2": "navigation-2";
3010
3067
  "navigation-2-off": "navigation-2-off";
3011
3068
  "navigation-off": "navigation-off";
@@ -3027,7 +3084,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3027
3084
  "octagon-pause": "octagon-pause";
3028
3085
  "octagon-x": "octagon-x";
3029
3086
  omega: "omega";
3030
- option: "option";
3031
3087
  orbit: "orbit";
3032
3088
  origami: "origami";
3033
3089
  outdent: "outdent";
@@ -3084,7 +3140,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3084
3140
  "pause-octagon": "pause-octagon";
3085
3141
  "paw-print": "paw-print";
3086
3142
  "pc-case": "pc-case";
3087
- pen: "pen";
3088
3143
  "pen-box": "pen-box";
3089
3144
  "pen-line": "pen-line";
3090
3145
  "pen-off": "pen-off";
@@ -3150,7 +3205,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3150
3205
  "power-circle": "power-circle";
3151
3206
  "power-off": "power-off";
3152
3207
  "power-square": "power-square";
3153
- presentation: "presentation";
3154
3208
  printer: "printer";
3155
3209
  "printer-check": "printer-check";
3156
3210
  projector: "projector";
@@ -3163,10 +3217,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3163
3217
  radar: "radar";
3164
3218
  radiation: "radiation";
3165
3219
  radical: "radical";
3166
- radio: "radio";
3167
3220
  "radio-receiver": "radio-receiver";
3168
3221
  "radio-tower": "radio-tower";
3169
- radius: "radius";
3170
3222
  "rail-symbol": "rail-symbol";
3171
3223
  rainbow: "rainbow";
3172
3224
  rat: "rat";
@@ -3194,7 +3246,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3194
3246
  "refresh-cw": "refresh-cw";
3195
3247
  "refresh-cw-off": "refresh-cw-off";
3196
3248
  refrigerator: "refrigerator";
3197
- regex: "regex";
3198
3249
  "remove-formatting": "remove-formatting";
3199
3250
  "repeat-1": "repeat-1";
3200
3251
  "repeat-2": "repeat-2";
@@ -3233,7 +3284,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3233
3284
  save: "save";
3234
3285
  "save-all": "save-all";
3235
3286
  "save-off": "save-off";
3236
- scale: "scale";
3237
3287
  "scale-3-d": "scale-3-d";
3238
3288
  "scale-3d": "scale-3d";
3239
3289
  scaling: "scaling";
@@ -3260,8 +3310,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3260
3310
  "search-code": "search-code";
3261
3311
  "search-slash": "search-slash";
3262
3312
  "search-x": "search-x";
3263
- section: "section";
3264
- send: "send";
3265
3313
  "send-horizonal": "send-horizonal";
3266
3314
  "send-horizontal": "send-horizontal";
3267
3315
  "send-to-back": "send-to-back";
@@ -3288,6 +3336,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3288
3336
  "shield-off": "shield-off";
3289
3337
  "shield-plus": "shield-plus";
3290
3338
  "shield-question": "shield-question";
3339
+ "shield-question-mark": "shield-question-mark";
3291
3340
  "shield-user": "shield-user";
3292
3341
  "shield-x": "shield-x";
3293
3342
  ship: "ship";
@@ -3350,9 +3399,9 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3350
3399
  "spline-pointer": "spline-pointer";
3351
3400
  "split-square-horizontal": "split-square-horizontal";
3352
3401
  "split-square-vertical": "split-square-vertical";
3402
+ spool: "spool";
3353
3403
  "spray-can": "spray-can";
3354
3404
  sprout: "sprout";
3355
- square: "square";
3356
3405
  "square-activity": "square-activity";
3357
3406
  "square-arrow-down": "square-arrow-down";
3358
3407
  "square-arrow-down-left": "square-arrow-down-left";
@@ -3420,6 +3469,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3420
3469
  "squares-subtract": "squares-subtract";
3421
3470
  "squares-unite": "squares-unite";
3422
3471
  squircle: "squircle";
3472
+ "squircle-dashed": "squircle-dashed";
3423
3473
  squirrel: "squirrel";
3424
3474
  stamp: "stamp";
3425
3475
  star: "star";
@@ -3452,7 +3502,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3452
3502
  sword: "sword";
3453
3503
  swords: "swords";
3454
3504
  syringe: "syringe";
3455
- table: "table";
3456
3505
  "table-2": "table-2";
3457
3506
  "table-cells-merge": "table-cells-merge";
3458
3507
  "table-cells-split": "table-cells-split";
@@ -3470,17 +3519,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3470
3519
  "tally-4": "tally-4";
3471
3520
  "tally-5": "tally-5";
3472
3521
  tangent: "tangent";
3473
- target: "target";
3474
3522
  telescope: "telescope";
3475
3523
  tent: "tent";
3476
3524
  "tent-tree": "tent-tree";
3477
- terminal: "terminal";
3478
3525
  "terminal-square": "terminal-square";
3479
3526
  "test-tube": "test-tube";
3480
3527
  "test-tube-2": "test-tube-2";
3481
3528
  "test-tube-diagonal": "test-tube-diagonal";
3482
3529
  "test-tubes": "test-tubes";
3483
- text: "text";
3484
3530
  "text-cursor": "text-cursor";
3485
3531
  "text-cursor-input": "text-cursor-input";
3486
3532
  "text-quote": "text-quote";
@@ -3502,12 +3548,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3502
3548
  "ticket-x": "ticket-x";
3503
3549
  tickets: "tickets";
3504
3550
  "tickets-plane": "tickets-plane";
3505
- timer: "timer";
3506
3551
  "timer-off": "timer-off";
3507
3552
  "timer-reset": "timer-reset";
3508
3553
  "toggle-left": "toggle-left";
3509
3554
  "toggle-right": "toggle-right";
3510
3555
  toilet: "toilet";
3556
+ "tool-case": "tool-case";
3511
3557
  tornado: "tornado";
3512
3558
  torus: "torus";
3513
3559
  touchpad: "touchpad";
@@ -3600,6 +3646,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3600
3646
  "utility-pole": "utility-pole";
3601
3647
  variable: "variable";
3602
3648
  vault: "vault";
3649
+ "vector-square": "vector-square";
3603
3650
  vegan: "vegan";
3604
3651
  "venetian-mask": "venetian-mask";
3605
3652
  venus: "venus";
@@ -3607,10 +3654,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3607
3654
  verified: "verified";
3608
3655
  vibrate: "vibrate";
3609
3656
  "vibrate-off": "vibrate-off";
3610
- video: "video";
3611
3657
  "video-off": "video-off";
3612
3658
  videotape: "videotape";
3613
- view: "view";
3614
3659
  voicemail: "voicemail";
3615
3660
  volleyball: "volleyball";
3616
3661
  volume: "volume";
@@ -3641,6 +3686,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3641
3686
  "wheat-off": "wheat-off";
3642
3687
  "whole-word": "whole-word";
3643
3688
  wifi: "wifi";
3689
+ "wifi-cog": "wifi-cog";
3644
3690
  "wifi-high": "wifi-high";
3645
3691
  "wifi-low": "wifi-low";
3646
3692
  "wifi-off": "wifi-off";
@@ -3654,7 +3700,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3654
3700
  worm: "worm";
3655
3701
  "wrap-text": "wrap-text";
3656
3702
  wrench: "wrench";
3657
- x: "x";
3658
3703
  "x-circle": "x-circle";
3659
3704
  "x-octagon": "x-octagon";
3660
3705
  "x-square": "x-square";
@@ -3664,10 +3709,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3664
3709
  "zoom-in": "zoom-in";
3665
3710
  "zoom-out": "zoom-out";
3666
3711
  }>>;
3667
- description: z.ZodOptional<z.ZodString>;
3668
3712
  badge: z.ZodOptional<z.ZodObject<{
3669
3713
  label: z.ZodString;
3670
3714
  color: z.ZodEnum<{
3715
+ outline: "outline";
3671
3716
  green: "green";
3672
3717
  blue: "blue";
3673
3718
  yellow: "yellow";
@@ -3675,16 +3720,20 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
3675
3720
  purple: "purple";
3676
3721
  indigo: "indigo";
3677
3722
  gray: "gray";
3678
- outline: "outline";
3679
3723
  }>;
3680
- invert: z.ZodOptional<z.ZodBoolean>;
3681
3724
  }, z.core.$strip>>;
3682
- display: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
3725
+ display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
3726
+ hide: "hide";
3727
+ always: "always";
3683
3728
  auth: "auth";
3684
3729
  anon: "anon";
3685
- always: "always";
3686
- hide: "hide";
3687
- }>>>;
3730
+ }>, z.ZodCustom<(params: {
3731
+ context: ZudokuContext;
3732
+ auth: UseAuthReturn;
3733
+ }) => boolean, (params: {
3734
+ context: ZudokuContext;
3735
+ auth: UseAuthReturn;
3736
+ }) => boolean>]>>>;
3688
3737
  }, z.core.$strip>;
3689
3738
  declare const InputNavigationCustomPageSchema: z.ZodObject<{
3690
3739
  type: z.ZodLiteral<"custom-page">;
@@ -3714,12 +3763,44 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
3714
3763
  tag: "tag";
3715
3764
  file: "file";
3716
3765
  delete: "delete";
3766
+ code: "code";
3767
+ check: "check";
3717
3768
  copy: "copy";
3718
3769
  focus: "focus";
3719
3770
  pause: "pause";
3720
3771
  play: "play";
3721
3772
  scroll: "scroll";
3722
3773
  merge: "merge";
3774
+ ghost: "ghost";
3775
+ expand: "expand";
3776
+ send: "send";
3777
+ grid: "grid";
3778
+ group: "group";
3779
+ heading: "heading";
3780
+ menu: "menu";
3781
+ navigation: "navigation";
3782
+ option: "option";
3783
+ presentation: "presentation";
3784
+ radio: "radio";
3785
+ table: "table";
3786
+ timer: "timer";
3787
+ text: "text";
3788
+ mouse: "mouse";
3789
+ pen: "pen";
3790
+ regex: "regex";
3791
+ target: "target";
3792
+ radius: "radius";
3793
+ scale: "scale";
3794
+ x: "x";
3795
+ section: "section";
3796
+ video: "video";
3797
+ circle: "circle";
3798
+ image: "image";
3799
+ view: "view";
3800
+ baseline: "baseline";
3801
+ terminal: "terminal";
3802
+ square: "square";
3803
+ move: "move";
3723
3804
  "a-arrow-down": "a-arrow-down";
3724
3805
  "a-arrow-up": "a-arrow-up";
3725
3806
  "a-large-small": "a-large-small";
@@ -3881,6 +3962,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
3881
3962
  "badge-percent": "badge-percent";
3882
3963
  "badge-plus": "badge-plus";
3883
3964
  "badge-pound-sterling": "badge-pound-sterling";
3965
+ "badge-question-mark": "badge-question-mark";
3884
3966
  "badge-russian-ruble": "badge-russian-ruble";
3885
3967
  "badge-swiss-franc": "badge-swiss-franc";
3886
3968
  "badge-x": "badge-x";
@@ -3900,7 +3982,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
3900
3982
  "bar-chart-horizontal": "bar-chart-horizontal";
3901
3983
  "bar-chart-horizontal-big": "bar-chart-horizontal-big";
3902
3984
  barcode: "barcode";
3903
- baseline: "baseline";
3985
+ barrel: "barrel";
3904
3986
  bath: "bath";
3905
3987
  battery: "battery";
3906
3988
  "battery-charging": "battery-charging";
@@ -3982,6 +4064,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
3982
4064
  bot: "bot";
3983
4065
  "bot-message-square": "bot-message-square";
3984
4066
  "bot-off": "bot-off";
4067
+ "bottle-wine": "bottle-wine";
3985
4068
  "bow-arrow": "bow-arrow";
3986
4069
  box: "box";
3987
4070
  "box-select": "box-select";
@@ -4080,7 +4163,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4080
4163
  "chart-pie": "chart-pie";
4081
4164
  "chart-scatter": "chart-scatter";
4082
4165
  "chart-spline": "chart-spline";
4083
- check: "check";
4084
4166
  "check-check": "check-check";
4085
4167
  "check-circle": "check-circle";
4086
4168
  "check-circle-2": "check-circle-2";
@@ -4116,7 +4198,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4116
4198
  church: "church";
4117
4199
  cigarette: "cigarette";
4118
4200
  "cigarette-off": "cigarette-off";
4119
- circle: "circle";
4120
4201
  "circle-alert": "circle-alert";
4121
4202
  "circle-arrow-down": "circle-arrow-down";
4122
4203
  "circle-arrow-left": "circle-arrow-left";
@@ -4153,6 +4234,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4153
4234
  "circle-plus": "circle-plus";
4154
4235
  "circle-pound-sterling": "circle-pound-sterling";
4155
4236
  "circle-power": "circle-power";
4237
+ "circle-question-mark": "circle-question-mark";
4156
4238
  "circle-slash": "circle-slash";
4157
4239
  "circle-slash-2": "circle-slash-2";
4158
4240
  "circle-slashed": "circle-slashed";
@@ -4216,7 +4298,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4216
4298
  cloudy: "cloudy";
4217
4299
  clover: "clover";
4218
4300
  club: "club";
4219
- code: "code";
4220
4301
  "code-2": "code-2";
4221
4302
  "code-square": "code-square";
4222
4303
  "code-xml": "code-xml";
@@ -4316,6 +4397,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4316
4397
  drama: "drama";
4317
4398
  dribbble: "dribbble";
4318
4399
  drill: "drill";
4400
+ drone: "drone";
4319
4401
  droplet: "droplet";
4320
4402
  "droplet-off": "droplet-off";
4321
4403
  droplets: "droplets";
@@ -4342,7 +4424,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4342
4424
  eraser: "eraser";
4343
4425
  "ethernet-port": "ethernet-port";
4344
4426
  euro: "euro";
4345
- expand: "expand";
4346
4427
  "external-link": "external-link";
4347
4428
  eye: "eye";
4348
4429
  "eye-closed": "eye-closed";
@@ -4400,6 +4481,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4400
4481
  "file-plus": "file-plus";
4401
4482
  "file-plus-2": "file-plus-2";
4402
4483
  "file-question": "file-question";
4484
+ "file-question-mark": "file-question-mark";
4403
4485
  "file-scan": "file-scan";
4404
4486
  "file-search": "file-search";
4405
4487
  "file-search-2": "file-search-2";
@@ -4509,7 +4591,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4509
4591
  "gauge-circle": "gauge-circle";
4510
4592
  gavel: "gavel";
4511
4593
  gem: "gem";
4512
- ghost: "ghost";
4594
+ "georgian-lari": "georgian-lari";
4513
4595
  gift: "gift";
4514
4596
  "git-branch": "git-branch";
4515
4597
  "git-branch-plus": "git-branch-plus";
@@ -4539,7 +4621,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4539
4621
  grab: "grab";
4540
4622
  "graduation-cap": "graduation-cap";
4541
4623
  grape: "grape";
4542
- grid: "grid";
4543
4624
  "grid-2-x-2": "grid-2-x-2";
4544
4625
  "grid-2-x-2-check": "grid-2-x-2-check";
4545
4626
  "grid-2-x-2-plus": "grid-2-x-2-plus";
@@ -4554,7 +4635,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4554
4635
  grip: "grip";
4555
4636
  "grip-horizontal": "grip-horizontal";
4556
4637
  "grip-vertical": "grip-vertical";
4557
- group: "group";
4558
4638
  guitar: "guitar";
4559
4639
  ham: "ham";
4560
4640
  hamburger: "hamburger";
@@ -4573,7 +4653,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4573
4653
  hash: "hash";
4574
4654
  haze: "haze";
4575
4655
  "hdmi-port": "hdmi-port";
4576
- heading: "heading";
4577
4656
  "heading-1": "heading-1";
4578
4657
  "heading-2": "heading-2";
4579
4658
  "heading-3": "heading-3";
@@ -4612,7 +4691,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4612
4691
  "ice-cream-cone": "ice-cream-cone";
4613
4692
  "id-card": "id-card";
4614
4693
  "id-card-lanyard": "id-card-lanyard";
4615
- image: "image";
4616
4694
  "image-down": "image-down";
4617
4695
  "image-minus": "image-minus";
4618
4696
  "image-off": "image-off";
@@ -4682,6 +4760,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4682
4760
  lightbulb: "lightbulb";
4683
4761
  "lightbulb-off": "lightbulb-off";
4684
4762
  "line-chart": "line-chart";
4763
+ "line-squiggle": "line-squiggle";
4685
4764
  "link-2": "link-2";
4686
4765
  "link-2-off": "link-2-off";
4687
4766
  linkedin: "linkedin";
@@ -4726,6 +4805,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4726
4805
  "mail-open": "mail-open";
4727
4806
  "mail-plus": "mail-plus";
4728
4807
  "mail-question": "mail-question";
4808
+ "mail-question-mark": "mail-question-mark";
4729
4809
  "mail-search": "mail-search";
4730
4810
  "mail-warning": "mail-warning";
4731
4811
  "mail-x": "mail-x";
@@ -4754,7 +4834,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4754
4834
  "megaphone-off": "megaphone-off";
4755
4835
  meh: "meh";
4756
4836
  "memory-stick": "memory-stick";
4757
- menu: "menu";
4758
4837
  "menu-square": "menu-square";
4759
4838
  "message-circle": "message-circle";
4760
4839
  "message-circle-code": "message-circle-code";
@@ -4764,6 +4843,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4764
4843
  "message-circle-off": "message-circle-off";
4765
4844
  "message-circle-plus": "message-circle-plus";
4766
4845
  "message-circle-question": "message-circle-question";
4846
+ "message-circle-question-mark": "message-circle-question-mark";
4767
4847
  "message-circle-reply": "message-circle-reply";
4768
4848
  "message-circle-warning": "message-circle-warning";
4769
4849
  "message-circle-x": "message-circle-x";
@@ -4818,14 +4898,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4818
4898
  "more-vertical": "more-vertical";
4819
4899
  mountain: "mountain";
4820
4900
  "mountain-snow": "mountain-snow";
4821
- mouse: "mouse";
4822
4901
  "mouse-off": "mouse-off";
4823
4902
  "mouse-pointer": "mouse-pointer";
4824
4903
  "mouse-pointer-2": "mouse-pointer-2";
4825
4904
  "mouse-pointer-ban": "mouse-pointer-ban";
4826
4905
  "mouse-pointer-click": "mouse-pointer-click";
4827
4906
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
4828
- move: "move";
4829
4907
  "move-3-d": "move-3-d";
4830
4908
  "move-3d": "move-3d";
4831
4909
  "move-diagonal": "move-diagonal";
@@ -4844,7 +4922,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4844
4922
  "music-2": "music-2";
4845
4923
  "music-3": "music-3";
4846
4924
  "music-4": "music-4";
4847
- navigation: "navigation";
4848
4925
  "navigation-2": "navigation-2";
4849
4926
  "navigation-2-off": "navigation-2-off";
4850
4927
  "navigation-off": "navigation-off";
@@ -4866,7 +4943,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4866
4943
  "octagon-pause": "octagon-pause";
4867
4944
  "octagon-x": "octagon-x";
4868
4945
  omega: "omega";
4869
- option: "option";
4870
4946
  orbit: "orbit";
4871
4947
  origami: "origami";
4872
4948
  outdent: "outdent";
@@ -4923,7 +4999,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4923
4999
  "pause-octagon": "pause-octagon";
4924
5000
  "paw-print": "paw-print";
4925
5001
  "pc-case": "pc-case";
4926
- pen: "pen";
4927
5002
  "pen-box": "pen-box";
4928
5003
  "pen-line": "pen-line";
4929
5004
  "pen-off": "pen-off";
@@ -4989,7 +5064,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
4989
5064
  "power-circle": "power-circle";
4990
5065
  "power-off": "power-off";
4991
5066
  "power-square": "power-square";
4992
- presentation: "presentation";
4993
5067
  printer: "printer";
4994
5068
  "printer-check": "printer-check";
4995
5069
  projector: "projector";
@@ -5002,10 +5076,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5002
5076
  radar: "radar";
5003
5077
  radiation: "radiation";
5004
5078
  radical: "radical";
5005
- radio: "radio";
5006
5079
  "radio-receiver": "radio-receiver";
5007
5080
  "radio-tower": "radio-tower";
5008
- radius: "radius";
5009
5081
  "rail-symbol": "rail-symbol";
5010
5082
  rainbow: "rainbow";
5011
5083
  rat: "rat";
@@ -5033,7 +5105,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5033
5105
  "refresh-cw": "refresh-cw";
5034
5106
  "refresh-cw-off": "refresh-cw-off";
5035
5107
  refrigerator: "refrigerator";
5036
- regex: "regex";
5037
5108
  "remove-formatting": "remove-formatting";
5038
5109
  "repeat-1": "repeat-1";
5039
5110
  "repeat-2": "repeat-2";
@@ -5072,7 +5143,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5072
5143
  save: "save";
5073
5144
  "save-all": "save-all";
5074
5145
  "save-off": "save-off";
5075
- scale: "scale";
5076
5146
  "scale-3-d": "scale-3-d";
5077
5147
  "scale-3d": "scale-3d";
5078
5148
  scaling: "scaling";
@@ -5099,8 +5169,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5099
5169
  "search-code": "search-code";
5100
5170
  "search-slash": "search-slash";
5101
5171
  "search-x": "search-x";
5102
- section: "section";
5103
- send: "send";
5104
5172
  "send-horizonal": "send-horizonal";
5105
5173
  "send-horizontal": "send-horizontal";
5106
5174
  "send-to-back": "send-to-back";
@@ -5127,6 +5195,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5127
5195
  "shield-off": "shield-off";
5128
5196
  "shield-plus": "shield-plus";
5129
5197
  "shield-question": "shield-question";
5198
+ "shield-question-mark": "shield-question-mark";
5130
5199
  "shield-user": "shield-user";
5131
5200
  "shield-x": "shield-x";
5132
5201
  ship: "ship";
@@ -5189,9 +5258,9 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5189
5258
  "spline-pointer": "spline-pointer";
5190
5259
  "split-square-horizontal": "split-square-horizontal";
5191
5260
  "split-square-vertical": "split-square-vertical";
5261
+ spool: "spool";
5192
5262
  "spray-can": "spray-can";
5193
5263
  sprout: "sprout";
5194
- square: "square";
5195
5264
  "square-activity": "square-activity";
5196
5265
  "square-arrow-down": "square-arrow-down";
5197
5266
  "square-arrow-down-left": "square-arrow-down-left";
@@ -5259,6 +5328,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5259
5328
  "squares-subtract": "squares-subtract";
5260
5329
  "squares-unite": "squares-unite";
5261
5330
  squircle: "squircle";
5331
+ "squircle-dashed": "squircle-dashed";
5262
5332
  squirrel: "squirrel";
5263
5333
  stamp: "stamp";
5264
5334
  star: "star";
@@ -5291,7 +5361,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5291
5361
  sword: "sword";
5292
5362
  swords: "swords";
5293
5363
  syringe: "syringe";
5294
- table: "table";
5295
5364
  "table-2": "table-2";
5296
5365
  "table-cells-merge": "table-cells-merge";
5297
5366
  "table-cells-split": "table-cells-split";
@@ -5309,17 +5378,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5309
5378
  "tally-4": "tally-4";
5310
5379
  "tally-5": "tally-5";
5311
5380
  tangent: "tangent";
5312
- target: "target";
5313
5381
  telescope: "telescope";
5314
5382
  tent: "tent";
5315
5383
  "tent-tree": "tent-tree";
5316
- terminal: "terminal";
5317
5384
  "terminal-square": "terminal-square";
5318
5385
  "test-tube": "test-tube";
5319
5386
  "test-tube-2": "test-tube-2";
5320
5387
  "test-tube-diagonal": "test-tube-diagonal";
5321
5388
  "test-tubes": "test-tubes";
5322
- text: "text";
5323
5389
  "text-cursor": "text-cursor";
5324
5390
  "text-cursor-input": "text-cursor-input";
5325
5391
  "text-quote": "text-quote";
@@ -5341,12 +5407,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5341
5407
  "ticket-x": "ticket-x";
5342
5408
  tickets: "tickets";
5343
5409
  "tickets-plane": "tickets-plane";
5344
- timer: "timer";
5345
5410
  "timer-off": "timer-off";
5346
5411
  "timer-reset": "timer-reset";
5347
5412
  "toggle-left": "toggle-left";
5348
5413
  "toggle-right": "toggle-right";
5349
5414
  toilet: "toilet";
5415
+ "tool-case": "tool-case";
5350
5416
  tornado: "tornado";
5351
5417
  torus: "torus";
5352
5418
  touchpad: "touchpad";
@@ -5439,6 +5505,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5439
5505
  "utility-pole": "utility-pole";
5440
5506
  variable: "variable";
5441
5507
  vault: "vault";
5508
+ "vector-square": "vector-square";
5442
5509
  vegan: "vegan";
5443
5510
  "venetian-mask": "venetian-mask";
5444
5511
  venus: "venus";
@@ -5446,10 +5513,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5446
5513
  verified: "verified";
5447
5514
  vibrate: "vibrate";
5448
5515
  "vibrate-off": "vibrate-off";
5449
- video: "video";
5450
5516
  "video-off": "video-off";
5451
5517
  videotape: "videotape";
5452
- view: "view";
5453
5518
  voicemail: "voicemail";
5454
5519
  volleyball: "volleyball";
5455
5520
  volume: "volume";
@@ -5480,6 +5545,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5480
5545
  "wheat-off": "wheat-off";
5481
5546
  "whole-word": "whole-word";
5482
5547
  wifi: "wifi";
5548
+ "wifi-cog": "wifi-cog";
5483
5549
  "wifi-high": "wifi-high";
5484
5550
  "wifi-low": "wifi-low";
5485
5551
  "wifi-off": "wifi-off";
@@ -5493,7 +5559,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5493
5559
  worm: "worm";
5494
5560
  "wrap-text": "wrap-text";
5495
5561
  wrench: "wrench";
5496
- x: "x";
5497
5562
  "x-circle": "x-circle";
5498
5563
  "x-octagon": "x-octagon";
5499
5564
  "x-square": "x-square";
@@ -5506,6 +5571,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5506
5571
  badge: z.ZodOptional<z.ZodObject<{
5507
5572
  label: z.ZodString;
5508
5573
  color: z.ZodEnum<{
5574
+ outline: "outline";
5509
5575
  green: "green";
5510
5576
  blue: "blue";
5511
5577
  yellow: "yellow";
@@ -5513,16 +5579,24 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
5513
5579
  purple: "purple";
5514
5580
  indigo: "indigo";
5515
5581
  gray: "gray";
5516
- outline: "outline";
5517
5582
  }>;
5518
- invert: z.ZodOptional<z.ZodBoolean>;
5519
5583
  }, z.core.$strip>>;
5520
- display: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
5584
+ display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
5585
+ hide: "hide";
5586
+ always: "always";
5521
5587
  auth: "auth";
5522
5588
  anon: "anon";
5523
- always: "always";
5524
- hide: "hide";
5525
- }>>>;
5589
+ }>, z.ZodCustom<(params: {
5590
+ context: ZudokuContext;
5591
+ auth: UseAuthReturn;
5592
+ }) => boolean, (params: {
5593
+ context: ZudokuContext;
5594
+ auth: UseAuthReturn;
5595
+ }) => boolean>]>>>;
5596
+ layout: z.ZodOptional<z.ZodEnum<{
5597
+ default: "default";
5598
+ none: "none";
5599
+ }>>;
5526
5600
  }, z.core.$strip>;
5527
5601
  declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5528
5602
  type: z.ZodLiteral<"category">;
@@ -5549,12 +5623,44 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5549
5623
  tag: "tag";
5550
5624
  file: "file";
5551
5625
  delete: "delete";
5626
+ code: "code";
5627
+ check: "check";
5552
5628
  copy: "copy";
5553
5629
  focus: "focus";
5554
5630
  pause: "pause";
5555
5631
  play: "play";
5556
5632
  scroll: "scroll";
5557
5633
  merge: "merge";
5634
+ ghost: "ghost";
5635
+ expand: "expand";
5636
+ send: "send";
5637
+ grid: "grid";
5638
+ group: "group";
5639
+ heading: "heading";
5640
+ menu: "menu";
5641
+ navigation: "navigation";
5642
+ option: "option";
5643
+ presentation: "presentation";
5644
+ radio: "radio";
5645
+ table: "table";
5646
+ timer: "timer";
5647
+ text: "text";
5648
+ mouse: "mouse";
5649
+ pen: "pen";
5650
+ regex: "regex";
5651
+ target: "target";
5652
+ radius: "radius";
5653
+ scale: "scale";
5654
+ x: "x";
5655
+ section: "section";
5656
+ video: "video";
5657
+ circle: "circle";
5658
+ image: "image";
5659
+ view: "view";
5660
+ baseline: "baseline";
5661
+ terminal: "terminal";
5662
+ square: "square";
5663
+ move: "move";
5558
5664
  "a-arrow-down": "a-arrow-down";
5559
5665
  "a-arrow-up": "a-arrow-up";
5560
5666
  "a-large-small": "a-large-small";
@@ -5716,6 +5822,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5716
5822
  "badge-percent": "badge-percent";
5717
5823
  "badge-plus": "badge-plus";
5718
5824
  "badge-pound-sterling": "badge-pound-sterling";
5825
+ "badge-question-mark": "badge-question-mark";
5719
5826
  "badge-russian-ruble": "badge-russian-ruble";
5720
5827
  "badge-swiss-franc": "badge-swiss-franc";
5721
5828
  "badge-x": "badge-x";
@@ -5735,7 +5842,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5735
5842
  "bar-chart-horizontal": "bar-chart-horizontal";
5736
5843
  "bar-chart-horizontal-big": "bar-chart-horizontal-big";
5737
5844
  barcode: "barcode";
5738
- baseline: "baseline";
5845
+ barrel: "barrel";
5739
5846
  bath: "bath";
5740
5847
  battery: "battery";
5741
5848
  "battery-charging": "battery-charging";
@@ -5817,6 +5924,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5817
5924
  bot: "bot";
5818
5925
  "bot-message-square": "bot-message-square";
5819
5926
  "bot-off": "bot-off";
5927
+ "bottle-wine": "bottle-wine";
5820
5928
  "bow-arrow": "bow-arrow";
5821
5929
  box: "box";
5822
5930
  "box-select": "box-select";
@@ -5915,7 +6023,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5915
6023
  "chart-pie": "chart-pie";
5916
6024
  "chart-scatter": "chart-scatter";
5917
6025
  "chart-spline": "chart-spline";
5918
- check: "check";
5919
6026
  "check-check": "check-check";
5920
6027
  "check-circle": "check-circle";
5921
6028
  "check-circle-2": "check-circle-2";
@@ -5951,7 +6058,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5951
6058
  church: "church";
5952
6059
  cigarette: "cigarette";
5953
6060
  "cigarette-off": "cigarette-off";
5954
- circle: "circle";
5955
6061
  "circle-alert": "circle-alert";
5956
6062
  "circle-arrow-down": "circle-arrow-down";
5957
6063
  "circle-arrow-left": "circle-arrow-left";
@@ -5988,6 +6094,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
5988
6094
  "circle-plus": "circle-plus";
5989
6095
  "circle-pound-sterling": "circle-pound-sterling";
5990
6096
  "circle-power": "circle-power";
6097
+ "circle-question-mark": "circle-question-mark";
5991
6098
  "circle-slash": "circle-slash";
5992
6099
  "circle-slash-2": "circle-slash-2";
5993
6100
  "circle-slashed": "circle-slashed";
@@ -6051,7 +6158,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6051
6158
  cloudy: "cloudy";
6052
6159
  clover: "clover";
6053
6160
  club: "club";
6054
- code: "code";
6055
6161
  "code-2": "code-2";
6056
6162
  "code-square": "code-square";
6057
6163
  "code-xml": "code-xml";
@@ -6151,6 +6257,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6151
6257
  drama: "drama";
6152
6258
  dribbble: "dribbble";
6153
6259
  drill: "drill";
6260
+ drone: "drone";
6154
6261
  droplet: "droplet";
6155
6262
  "droplet-off": "droplet-off";
6156
6263
  droplets: "droplets";
@@ -6177,7 +6284,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6177
6284
  eraser: "eraser";
6178
6285
  "ethernet-port": "ethernet-port";
6179
6286
  euro: "euro";
6180
- expand: "expand";
6181
6287
  "external-link": "external-link";
6182
6288
  eye: "eye";
6183
6289
  "eye-closed": "eye-closed";
@@ -6235,6 +6341,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6235
6341
  "file-plus": "file-plus";
6236
6342
  "file-plus-2": "file-plus-2";
6237
6343
  "file-question": "file-question";
6344
+ "file-question-mark": "file-question-mark";
6238
6345
  "file-scan": "file-scan";
6239
6346
  "file-search": "file-search";
6240
6347
  "file-search-2": "file-search-2";
@@ -6344,7 +6451,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6344
6451
  "gauge-circle": "gauge-circle";
6345
6452
  gavel: "gavel";
6346
6453
  gem: "gem";
6347
- ghost: "ghost";
6454
+ "georgian-lari": "georgian-lari";
6348
6455
  gift: "gift";
6349
6456
  "git-branch": "git-branch";
6350
6457
  "git-branch-plus": "git-branch-plus";
@@ -6374,7 +6481,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6374
6481
  grab: "grab";
6375
6482
  "graduation-cap": "graduation-cap";
6376
6483
  grape: "grape";
6377
- grid: "grid";
6378
6484
  "grid-2-x-2": "grid-2-x-2";
6379
6485
  "grid-2-x-2-check": "grid-2-x-2-check";
6380
6486
  "grid-2-x-2-plus": "grid-2-x-2-plus";
@@ -6389,7 +6495,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6389
6495
  grip: "grip";
6390
6496
  "grip-horizontal": "grip-horizontal";
6391
6497
  "grip-vertical": "grip-vertical";
6392
- group: "group";
6393
6498
  guitar: "guitar";
6394
6499
  ham: "ham";
6395
6500
  hamburger: "hamburger";
@@ -6408,7 +6513,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6408
6513
  hash: "hash";
6409
6514
  haze: "haze";
6410
6515
  "hdmi-port": "hdmi-port";
6411
- heading: "heading";
6412
6516
  "heading-1": "heading-1";
6413
6517
  "heading-2": "heading-2";
6414
6518
  "heading-3": "heading-3";
@@ -6447,7 +6551,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6447
6551
  "ice-cream-cone": "ice-cream-cone";
6448
6552
  "id-card": "id-card";
6449
6553
  "id-card-lanyard": "id-card-lanyard";
6450
- image: "image";
6451
6554
  "image-down": "image-down";
6452
6555
  "image-minus": "image-minus";
6453
6556
  "image-off": "image-off";
@@ -6517,6 +6620,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6517
6620
  lightbulb: "lightbulb";
6518
6621
  "lightbulb-off": "lightbulb-off";
6519
6622
  "line-chart": "line-chart";
6623
+ "line-squiggle": "line-squiggle";
6520
6624
  "link-2": "link-2";
6521
6625
  "link-2-off": "link-2-off";
6522
6626
  linkedin: "linkedin";
@@ -6561,6 +6665,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6561
6665
  "mail-open": "mail-open";
6562
6666
  "mail-plus": "mail-plus";
6563
6667
  "mail-question": "mail-question";
6668
+ "mail-question-mark": "mail-question-mark";
6564
6669
  "mail-search": "mail-search";
6565
6670
  "mail-warning": "mail-warning";
6566
6671
  "mail-x": "mail-x";
@@ -6589,7 +6694,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6589
6694
  "megaphone-off": "megaphone-off";
6590
6695
  meh: "meh";
6591
6696
  "memory-stick": "memory-stick";
6592
- menu: "menu";
6593
6697
  "menu-square": "menu-square";
6594
6698
  "message-circle": "message-circle";
6595
6699
  "message-circle-code": "message-circle-code";
@@ -6599,6 +6703,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6599
6703
  "message-circle-off": "message-circle-off";
6600
6704
  "message-circle-plus": "message-circle-plus";
6601
6705
  "message-circle-question": "message-circle-question";
6706
+ "message-circle-question-mark": "message-circle-question-mark";
6602
6707
  "message-circle-reply": "message-circle-reply";
6603
6708
  "message-circle-warning": "message-circle-warning";
6604
6709
  "message-circle-x": "message-circle-x";
@@ -6653,14 +6758,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6653
6758
  "more-vertical": "more-vertical";
6654
6759
  mountain: "mountain";
6655
6760
  "mountain-snow": "mountain-snow";
6656
- mouse: "mouse";
6657
6761
  "mouse-off": "mouse-off";
6658
6762
  "mouse-pointer": "mouse-pointer";
6659
6763
  "mouse-pointer-2": "mouse-pointer-2";
6660
6764
  "mouse-pointer-ban": "mouse-pointer-ban";
6661
6765
  "mouse-pointer-click": "mouse-pointer-click";
6662
6766
  "mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
6663
- move: "move";
6664
6767
  "move-3-d": "move-3-d";
6665
6768
  "move-3d": "move-3d";
6666
6769
  "move-diagonal": "move-diagonal";
@@ -6679,7 +6782,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6679
6782
  "music-2": "music-2";
6680
6783
  "music-3": "music-3";
6681
6784
  "music-4": "music-4";
6682
- navigation: "navigation";
6683
6785
  "navigation-2": "navigation-2";
6684
6786
  "navigation-2-off": "navigation-2-off";
6685
6787
  "navigation-off": "navigation-off";
@@ -6701,7 +6803,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6701
6803
  "octagon-pause": "octagon-pause";
6702
6804
  "octagon-x": "octagon-x";
6703
6805
  omega: "omega";
6704
- option: "option";
6705
6806
  orbit: "orbit";
6706
6807
  origami: "origami";
6707
6808
  outdent: "outdent";
@@ -6758,7 +6859,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6758
6859
  "pause-octagon": "pause-octagon";
6759
6860
  "paw-print": "paw-print";
6760
6861
  "pc-case": "pc-case";
6761
- pen: "pen";
6762
6862
  "pen-box": "pen-box";
6763
6863
  "pen-line": "pen-line";
6764
6864
  "pen-off": "pen-off";
@@ -6824,7 +6924,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6824
6924
  "power-circle": "power-circle";
6825
6925
  "power-off": "power-off";
6826
6926
  "power-square": "power-square";
6827
- presentation: "presentation";
6828
6927
  printer: "printer";
6829
6928
  "printer-check": "printer-check";
6830
6929
  projector: "projector";
@@ -6837,10 +6936,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6837
6936
  radar: "radar";
6838
6937
  radiation: "radiation";
6839
6938
  radical: "radical";
6840
- radio: "radio";
6841
6939
  "radio-receiver": "radio-receiver";
6842
6940
  "radio-tower": "radio-tower";
6843
- radius: "radius";
6844
6941
  "rail-symbol": "rail-symbol";
6845
6942
  rainbow: "rainbow";
6846
6943
  rat: "rat";
@@ -6868,7 +6965,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6868
6965
  "refresh-cw": "refresh-cw";
6869
6966
  "refresh-cw-off": "refresh-cw-off";
6870
6967
  refrigerator: "refrigerator";
6871
- regex: "regex";
6872
6968
  "remove-formatting": "remove-formatting";
6873
6969
  "repeat-1": "repeat-1";
6874
6970
  "repeat-2": "repeat-2";
@@ -6907,7 +7003,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6907
7003
  save: "save";
6908
7004
  "save-all": "save-all";
6909
7005
  "save-off": "save-off";
6910
- scale: "scale";
6911
7006
  "scale-3-d": "scale-3-d";
6912
7007
  "scale-3d": "scale-3d";
6913
7008
  scaling: "scaling";
@@ -6934,8 +7029,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6934
7029
  "search-code": "search-code";
6935
7030
  "search-slash": "search-slash";
6936
7031
  "search-x": "search-x";
6937
- section: "section";
6938
- send: "send";
6939
7032
  "send-horizonal": "send-horizonal";
6940
7033
  "send-horizontal": "send-horizontal";
6941
7034
  "send-to-back": "send-to-back";
@@ -6962,6 +7055,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
6962
7055
  "shield-off": "shield-off";
6963
7056
  "shield-plus": "shield-plus";
6964
7057
  "shield-question": "shield-question";
7058
+ "shield-question-mark": "shield-question-mark";
6965
7059
  "shield-user": "shield-user";
6966
7060
  "shield-x": "shield-x";
6967
7061
  ship: "ship";
@@ -7024,9 +7118,9 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7024
7118
  "spline-pointer": "spline-pointer";
7025
7119
  "split-square-horizontal": "split-square-horizontal";
7026
7120
  "split-square-vertical": "split-square-vertical";
7121
+ spool: "spool";
7027
7122
  "spray-can": "spray-can";
7028
7123
  sprout: "sprout";
7029
- square: "square";
7030
7124
  "square-activity": "square-activity";
7031
7125
  "square-arrow-down": "square-arrow-down";
7032
7126
  "square-arrow-down-left": "square-arrow-down-left";
@@ -7094,6 +7188,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7094
7188
  "squares-subtract": "squares-subtract";
7095
7189
  "squares-unite": "squares-unite";
7096
7190
  squircle: "squircle";
7191
+ "squircle-dashed": "squircle-dashed";
7097
7192
  squirrel: "squirrel";
7098
7193
  stamp: "stamp";
7099
7194
  star: "star";
@@ -7126,7 +7221,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7126
7221
  sword: "sword";
7127
7222
  swords: "swords";
7128
7223
  syringe: "syringe";
7129
- table: "table";
7130
7224
  "table-2": "table-2";
7131
7225
  "table-cells-merge": "table-cells-merge";
7132
7226
  "table-cells-split": "table-cells-split";
@@ -7144,17 +7238,14 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7144
7238
  "tally-4": "tally-4";
7145
7239
  "tally-5": "tally-5";
7146
7240
  tangent: "tangent";
7147
- target: "target";
7148
7241
  telescope: "telescope";
7149
7242
  tent: "tent";
7150
7243
  "tent-tree": "tent-tree";
7151
- terminal: "terminal";
7152
7244
  "terminal-square": "terminal-square";
7153
7245
  "test-tube": "test-tube";
7154
7246
  "test-tube-2": "test-tube-2";
7155
7247
  "test-tube-diagonal": "test-tube-diagonal";
7156
7248
  "test-tubes": "test-tubes";
7157
- text: "text";
7158
7249
  "text-cursor": "text-cursor";
7159
7250
  "text-cursor-input": "text-cursor-input";
7160
7251
  "text-quote": "text-quote";
@@ -7176,12 +7267,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7176
7267
  "ticket-x": "ticket-x";
7177
7268
  tickets: "tickets";
7178
7269
  "tickets-plane": "tickets-plane";
7179
- timer: "timer";
7180
7270
  "timer-off": "timer-off";
7181
7271
  "timer-reset": "timer-reset";
7182
7272
  "toggle-left": "toggle-left";
7183
7273
  "toggle-right": "toggle-right";
7184
7274
  toilet: "toilet";
7275
+ "tool-case": "tool-case";
7185
7276
  tornado: "tornado";
7186
7277
  torus: "torus";
7187
7278
  touchpad: "touchpad";
@@ -7274,6 +7365,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7274
7365
  "utility-pole": "utility-pole";
7275
7366
  variable: "variable";
7276
7367
  vault: "vault";
7368
+ "vector-square": "vector-square";
7277
7369
  vegan: "vegan";
7278
7370
  "venetian-mask": "venetian-mask";
7279
7371
  venus: "venus";
@@ -7281,10 +7373,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7281
7373
  verified: "verified";
7282
7374
  vibrate: "vibrate";
7283
7375
  "vibrate-off": "vibrate-off";
7284
- video: "video";
7285
7376
  "video-off": "video-off";
7286
7377
  videotape: "videotape";
7287
- view: "view";
7288
7378
  voicemail: "voicemail";
7289
7379
  volleyball: "volleyball";
7290
7380
  volume: "volume";
@@ -7315,6 +7405,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7315
7405
  "wheat-off": "wheat-off";
7316
7406
  "whole-word": "whole-word";
7317
7407
  wifi: "wifi";
7408
+ "wifi-cog": "wifi-cog";
7318
7409
  "wifi-high": "wifi-high";
7319
7410
  "wifi-low": "wifi-low";
7320
7411
  "wifi-off": "wifi-off";
@@ -7328,7 +7419,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7328
7419
  worm: "worm";
7329
7420
  "wrap-text": "wrap-text";
7330
7421
  wrench: "wrench";
7331
- x: "x";
7332
7422
  "x-circle": "x-circle";
7333
7423
  "x-octagon": "x-octagon";
7334
7424
  "x-square": "x-square";
@@ -7339,7 +7429,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7339
7429
  "zoom-out": "zoom-out";
7340
7430
  }>>;
7341
7431
  label: z.ZodString;
7342
- description: z.ZodOptional<z.ZodString>;
7343
7432
  collapsible: z.ZodOptional<z.ZodBoolean>;
7344
7433
  collapsed: z.ZodOptional<z.ZodBoolean>;
7345
7434
  link: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
@@ -7347,12 +7436,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
7347
7436
  file: z.ZodString;
7348
7437
  label: z.ZodOptional<z.ZodString>;
7349
7438
  }, z.core.$strip>]>>;
7350
- display: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
7439
+ display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
7440
+ hide: "hide";
7441
+ always: "always";
7351
7442
  auth: "auth";
7352
7443
  anon: "anon";
7353
- always: "always";
7354
- hide: "hide";
7355
- }>>>;
7444
+ }>, z.ZodCustom<(params: {
7445
+ context: ZudokuContext;
7446
+ auth: UseAuthReturn;
7447
+ }) => boolean, (params: {
7448
+ context: ZudokuContext;
7449
+ auth: UseAuthReturn;
7450
+ }) => boolean>]>>>;
7356
7451
  }, z.core.$strip>;
7357
7452
  export type InputNavigationItem = z.infer<typeof InputNavigationDocSchema> | z.infer<typeof InputNavigationLinkSchema> | z.infer<typeof InputNavigationCustomPageSchema> | (z.infer<typeof BaseInputNavigationCategorySchema> & {
7358
7453
  items: InputNavigationItem[];