zudoku 0.0.0-f40ea27 → 0.0.0-f42e3678
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.
- package/README.md +2 -2
- package/dist/app/demo.js +16 -1
- package/dist/app/demo.js.map +1 -1
- package/dist/app/main.js +3 -9
- package/dist/app/main.js.map +1 -1
- package/dist/cli/build/handler.js +9 -1
- package/dist/cli/build/handler.js.map +1 -1
- package/dist/config/config.d.ts +1 -0
- package/dist/config/loader.js +2 -5
- package/dist/config/loader.js.map +1 -1
- package/dist/config/validators/BuildSchema.js +5 -0
- package/dist/config/validators/BuildSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +254 -163
- package/dist/config/validators/InputNavigationSchema.js +4 -4
- package/dist/config/validators/InputNavigationSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.test-d.js +0 -1
- package/dist/config/validators/InputNavigationSchema.test-d.js.map +1 -1
- package/dist/config/validators/NavigationSchema.js +3 -2
- package/dist/config/validators/NavigationSchema.js.map +1 -1
- package/dist/config/validators/ProtectedRoutesSchema.d.ts +12 -0
- package/dist/config/validators/ProtectedRoutesSchema.js +19 -0
- package/dist/config/validators/ProtectedRoutesSchema.js.map +1 -0
- package/dist/config/validators/icon-types.d.ts +1 -1
- package/dist/config/validators/icon-types.js +16 -0
- package/dist/config/validators/icon-types.js.map +1 -1
- package/dist/config/validators/validate.d.ts +36 -20
- package/dist/config/validators/validate.js +18 -4
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/config/validators/validate.test.js +65 -2
- package/dist/config/validators/validate.test.js.map +1 -1
- package/dist/flat-config.d.ts +8 -6
- package/dist/lib/authentication/authentication.d.ts +2 -0
- package/dist/lib/authentication/components/CallbackHandler.js +11 -9
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/OAuthErrorPage.d.ts +3 -0
- package/dist/lib/authentication/components/OAuthErrorPage.js +99 -0
- package/dist/lib/authentication/components/OAuthErrorPage.js.map +1 -0
- package/dist/lib/authentication/components/SignIn.js +4 -3
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/errors.d.ts +6 -12
- package/dist/lib/authentication/errors.js +2 -1
- package/dist/lib/authentication/errors.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +1 -0
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/azureb2c.js +4 -2
- package/dist/lib/authentication/providers/azureb2c.js.map +1 -1
- package/dist/lib/authentication/providers/clerk.js +4 -2
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/openid.d.ts +4 -2
- package/dist/lib/authentication/providers/openid.js +14 -6
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/components/Banner.js +1 -1
- package/dist/lib/components/Banner.js.map +1 -1
- package/dist/lib/components/CategoryHeading.js +1 -1
- package/dist/lib/components/CategoryHeading.js.map +1 -1
- package/dist/lib/components/Header.js +1 -1
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.js +1 -1
- package/dist/lib/components/Heading.js.map +1 -1
- package/dist/lib/components/Markdown.js +2 -2
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +11 -6
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/NotFoundPage.js +1 -1
- package/dist/lib/components/NotFoundPage.js.map +1 -1
- package/dist/lib/components/Pagination.js +1 -1
- package/dist/lib/components/Pagination.js.map +1 -1
- package/dist/lib/components/StatusPage.js +4 -0
- package/dist/lib/components/StatusPage.js.map +1 -1
- package/dist/lib/components/TopNavigation.d.ts +5 -0
- package/dist/lib/components/TopNavigation.js +20 -15
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/Typography.d.ts +1 -1
- package/dist/lib/components/Typography.js +1 -1
- package/dist/lib/components/Typography.js.map +1 -1
- package/dist/lib/components/context/ZudokuContext.js +21 -13
- package/dist/lib/components/context/ZudokuContext.js.map +1 -1
- package/dist/lib/components/navigation/NavigationItem.d.ts +1 -1
- package/dist/lib/components/navigation/NavigationItem.js +8 -1
- package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
- package/dist/lib/components/navigation/NavigationWrapper.js +1 -1
- package/dist/lib/components/navigation/NavigationWrapper.js.map +1 -1
- package/dist/lib/components/navigation/utils.d.ts +3 -1
- package/dist/lib/components/navigation/utils.js +6 -3
- package/dist/lib/components/navigation/utils.js.map +1 -1
- package/dist/lib/core/RouteGuard.js +9 -9
- package/dist/lib/core/RouteGuard.js.map +1 -1
- package/dist/lib/core/ZudokuContext.d.ts +5 -2
- package/dist/lib/core/ZudokuContext.js +27 -2
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/plugins.d.ts +2 -1
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/errors/ErrorAlert.js +1 -1
- package/dist/lib/errors/ErrorAlert.js.map +1 -1
- package/dist/lib/plugins/api-keys/CreateApiKey.js +7 -3
- package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js +6 -4
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +1 -0
- package/dist/lib/plugins/api-keys/index.js +4 -8
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/markdown/MdxPage.js +4 -3
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.js +2 -1
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.js +1 -1
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.js +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.d.ts +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.js +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +1 -0
- package/dist/lib/plugins/openapi/graphql/graphql.js +1 -0
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.js +43 -11
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PathParams.js +1 -1
- package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Playground.js +4 -2
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/index.d.ts +5 -22
- package/dist/lib/plugins/search-inkeep/index.js +35 -29
- package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/inkeep.d.ts +5 -21
- package/dist/lib/plugins/search-inkeep/inkeep.js +10 -19
- package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.d.ts +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.js +12 -5
- package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -1
- package/dist/lib/ui/ActionButton.js +1 -1
- package/dist/lib/ui/ActionButton.js.map +1 -1
- package/dist/lib/ui/Alert.d.ts +1 -1
- package/dist/lib/ui/Badge.d.ts +1 -1
- package/dist/lib/ui/Button.d.ts +2 -2
- package/dist/lib/ui/CodeBlock.js +1 -1
- package/dist/lib/ui/CodeBlock.js.map +1 -1
- package/dist/lib/ui/Command.d.ts +1 -1
- package/dist/lib/ui/EmbeddedCodeBlock.js +1 -1
- package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/dist/lib/util/invariant.d.ts +6 -5
- package/dist/lib/util/invariant.js +1 -1
- package/dist/lib/util/invariant.js.map +1 -1
- package/dist/vite/build.js +7 -1
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/dev-server.js +9 -1
- package/dist/vite/dev-server.js.map +1 -1
- package/dist/vite/mdx/remark-last-modified.js +1 -28
- package/dist/vite/mdx/remark-last-modified.js.map +1 -1
- package/dist/vite/plugin-docs.js +20 -13
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-mdx.js +2 -3
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-theme.js +88 -49
- package/dist/vite/plugin-theme.js.map +1 -1
- package/dist/vite/plugin-theme.test.js +25 -4
- package/dist/vite/plugin-theme.test.js.map +1 -1
- package/dist/vite/prerender/worker.js +5 -1
- package/dist/vite/prerender/worker.js.map +1 -1
- package/dist/vite/shadcn-registry.d.ts +8 -8
- package/lib/{Button-BE9IVkWV.js → Button-B3o-2Xdf.js} +2 -2
- package/lib/{Button-BE9IVkWV.js.map → Button-B3o-2Xdf.js.map} +1 -1
- package/lib/{Card-DPhGbYUM.js → Card-CMDQUPM4.js} +2 -2
- package/lib/{Card-DPhGbYUM.js.map → Card-CMDQUPM4.js.map} +1 -1
- package/lib/ClientOnly-E7hGysn1.js.map +1 -1
- package/lib/{CodeBlock-DAKxs_Tu.js → CodeBlock-B-G0eKtw.js} +3 -3
- package/lib/{CodeBlock-DAKxs_Tu.js.map → CodeBlock-B-G0eKtw.js.map} +1 -1
- package/lib/{Command-xsbs2uhf.js → Command-BYukybsa.js} +3 -3
- package/lib/{Command-xsbs2uhf.js.map → Command-BYukybsa.js.map} +1 -1
- package/lib/{Dialog-CiIdyz6a.js → Dialog-u9Uz9sTt.js} +5 -5
- package/lib/{Dialog-CiIdyz6a.js.map → Dialog-u9Uz9sTt.js.map} +1 -1
- package/lib/{Drawer-BzkOKwgC.js → Drawer-DJ05s2pH.js} +86 -86
- package/lib/{Drawer-BzkOKwgC.js.map → Drawer-DJ05s2pH.js.map} +1 -1
- package/lib/{MdxPage-swXPJ0gf.js → MdxPage-Bsko6_kb.js} +34 -34
- package/lib/MdxPage-Bsko6_kb.js.map +1 -0
- package/lib/OAuthErrorPage-DJzGiIBt.js +150 -0
- package/lib/OAuthErrorPage-DJzGiIBt.js.map +1 -0
- package/lib/{OasProvider-CDAM3TB1.js → OasProvider-DQQRt3oS.js} +3 -3
- package/lib/{OasProvider-CDAM3TB1.js.map → OasProvider-DQQRt3oS.js.map} +1 -1
- package/lib/{OperationList-C9Hb9ql8.js → OperationList-DpmkHf26.js} +212 -210
- package/lib/OperationList-DpmkHf26.js.map +1 -0
- package/lib/{Pagination-VGlgeCmS.js → Pagination-kqFNgtnI.js} +10 -9
- package/lib/Pagination-kqFNgtnI.js.map +1 -0
- package/lib/{RouteGuard-CbKd7_9h.js → RouteGuard-0wPUKdxJ.js} +166 -165
- package/lib/{RouteGuard-CbKd7_9h.js.map → RouteGuard-0wPUKdxJ.js.map} +1 -1
- package/lib/{SchemaList-BAbh1BXO.js → SchemaList-DS-pMd6B.js} +9 -9
- package/lib/{SchemaList-BAbh1BXO.js.map → SchemaList-DS-pMd6B.js.map} +1 -1
- package/lib/{SchemaView-C2Io712T.js → SchemaView-BnN6WHjw.js} +6 -6
- package/lib/{SchemaView-C2Io712T.js.map → SchemaView-BnN6WHjw.js.map} +1 -1
- package/lib/Select-BmTTKNPp.js +273 -0
- package/lib/Select-BmTTKNPp.js.map +1 -0
- package/lib/SignUp-BwOSCD-6.js +56 -0
- package/lib/SignUp-BwOSCD-6.js.map +1 -0
- package/lib/{Slot-DwZlQ-vX.js → Slot-DAyXieeZ.js} +1634 -1643
- package/lib/Slot-DAyXieeZ.js.map +1 -0
- package/lib/Spinner-mNLZ6awP.js.map +1 -1
- package/lib/{SyntaxHighlight-CrjhGEwT.js → SyntaxHighlight-BMKR4pl6.js} +757 -757
- package/lib/SyntaxHighlight-BMKR4pl6.js.map +1 -0
- package/lib/{Toc-WCmwFkX-.js → Toc-BKDRCQzU.js} +3 -3
- package/lib/{Toc-WCmwFkX-.js.map → Toc-BKDRCQzU.js.map} +1 -1
- package/lib/ZudokuContext-CLl5w57E.js +1278 -0
- package/lib/ZudokuContext-CLl5w57E.js.map +1 -0
- package/lib/{chunk-DQRVZFIR-DHK7_Ilc.js → chunk-QMGIS6GS-CEOk3lro.js} +3 -3
- package/lib/chunk-QMGIS6GS-CEOk3lro.js.map +1 -0
- package/lib/{circular-B42RaanD.js → circular-8GWQDvCW.js} +2 -2
- package/lib/{circular-B42RaanD.js.map → circular-8GWQDvCW.js.map} +1 -1
- package/lib/{cn-wvCW-ho6.js → cn-dYga0KKN.js} +2 -2
- package/lib/cn-dYga0KKN.js.map +1 -0
- package/lib/{createServer-BKFsRuuk.js → createServer-BsezSzvV.js} +3398 -3552
- package/lib/createServer-BsezSzvV.js.map +1 -0
- package/lib/errors-Cs7hKmdL.js +45 -0
- package/lib/errors-Cs7hKmdL.js.map +1 -0
- package/lib/hook-DbUCLQNg.js +247 -0
- package/lib/hook-DbUCLQNg.js.map +1 -0
- package/lib/index-A5Qdwj1B.js +4081 -0
- package/lib/index-A5Qdwj1B.js.map +1 -0
- package/lib/{index-B6Re5_cx.js → index-Bg7Js3jB.js} +873 -951
- package/lib/index-Bg7Js3jB.js.map +1 -0
- package/lib/{index-CcV90rin.js → index-BkW9tJ6j.js} +2 -2
- package/lib/{index-CcV90rin.js.map → index-BkW9tJ6j.js.map} +1 -1
- package/lib/index-Bm35Tkgf.js +107 -0
- package/lib/index-Bm35Tkgf.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/index-DI5SPFK9.js.map +1 -1
- package/lib/index-DmNq2fbN.js.map +1 -1
- package/lib/index.esm-CdzlRw50.js +1254 -0
- package/lib/index.esm-CdzlRw50.js.map +1 -0
- package/lib/{invariant-DAFpPywt.js → invariant-Bm-FVUQE.js} +2 -6
- package/lib/invariant-Bm-FVUQE.js.map +1 -0
- package/lib/jsx-runtime-C5mzlN2N.js.map +1 -1
- package/lib/processors/removeExtensions.js.map +1 -1
- package/lib/processors/removeParameters.js.map +1 -1
- package/lib/processors/removePaths.js.map +1 -1
- package/lib/processors/traverse.js.map +1 -1
- package/lib/ui/Accordion.js +1 -1
- package/lib/ui/Accordion.js.map +1 -1
- package/lib/ui/ActionButton.js +10 -10
- package/lib/ui/ActionButton.js.map +1 -1
- package/lib/ui/Alert.js +1 -1
- package/lib/ui/Alert.js.map +1 -1
- package/lib/ui/AlertDialog.js +1 -1
- package/lib/ui/AlertDialog.js.map +1 -1
- package/lib/ui/Badge.js +1 -1
- package/lib/ui/Badge.js.map +1 -1
- package/lib/ui/Breadcrumb.js +1 -1
- package/lib/ui/Breadcrumb.js.map +1 -1
- package/lib/ui/Button.js +1 -1
- package/lib/ui/Button.js.map +1 -1
- package/lib/ui/Callout.js +1 -1
- package/lib/ui/Callout.js.map +1 -1
- package/lib/ui/Card.js +1 -1
- package/lib/ui/Card.js.map +1 -1
- package/lib/ui/Carousel.js +1 -1
- package/lib/ui/Carousel.js.map +1 -1
- package/lib/ui/Checkbox.js +1 -1
- package/lib/ui/Checkbox.js.map +1 -1
- package/lib/ui/CodeBlock.js +2 -2
- package/lib/ui/Command.js +2 -2
- package/lib/ui/Command.js.map +1 -1
- package/lib/ui/Dialog.js +1 -1
- package/lib/ui/Dialog.js.map +1 -1
- package/lib/ui/Drawer.js +2 -2
- package/lib/ui/DropdownMenu.js +1 -1
- package/lib/ui/DropdownMenu.js.map +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +2 -2
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/lib/ui/Form.js +2 -2
- package/lib/ui/Form.js.map +1 -1
- package/lib/ui/HoverCard.js +1 -1
- package/lib/ui/HoverCard.js.map +1 -1
- package/lib/ui/Input.js +1 -1
- package/lib/ui/Input.js.map +1 -1
- package/lib/ui/Label.js +1 -1
- package/lib/ui/Label.js.map +1 -1
- package/lib/ui/Pagination.js +1 -1
- package/lib/ui/Pagination.js.map +1 -1
- package/lib/ui/Popover.js +1 -1
- package/lib/ui/Popover.js.map +1 -1
- package/lib/ui/Progress.js +1 -1
- package/lib/ui/Progress.js.map +1 -1
- package/lib/ui/RadioGroup.js +1 -1
- package/lib/ui/RadioGroup.js.map +1 -1
- package/lib/ui/ScrollArea.js +1 -1
- package/lib/ui/ScrollArea.js.map +1 -1
- package/lib/ui/Select.js +1 -1
- package/lib/ui/Select.js.map +1 -1
- package/lib/ui/Skeleton.js +1 -1
- package/lib/ui/Skeleton.js.map +1 -1
- package/lib/ui/Slider.js +1 -1
- package/lib/ui/Slider.js.map +1 -1
- package/lib/ui/Stepper.js.map +1 -1
- package/lib/ui/Switch.js +1 -1
- package/lib/ui/Switch.js.map +1 -1
- package/lib/ui/SyntaxHighlight.js +4 -4
- package/lib/ui/Tabs.js +1 -1
- package/lib/ui/Tabs.js.map +1 -1
- package/lib/ui/Textarea.js +1 -1
- package/lib/ui/Textarea.js.map +1 -1
- package/lib/ui/Toggle.js +1 -1
- package/lib/ui/Toggle.js.map +1 -1
- package/lib/ui/ToggleGroup.js +1 -1
- package/lib/ui/ToggleGroup.js.map +1 -1
- package/lib/ui/Tooltip.js +1 -1
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/ui/util.js +1 -1
- package/lib/{useExposedProps-BIYjecPD.js → useExposedProps-KcgXHKeE.js} +2 -2
- package/lib/{useExposedProps-BIYjecPD.js.map → useExposedProps-KcgXHKeE.js.map} +1 -1
- package/lib/zudoku.auth-auth0.js +1 -1
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-azureb2c.js +46 -9883
- package/lib/zudoku.auth-azureb2c.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +25 -22
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +249 -231
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.auth-supabase.js +97 -0
- package/lib/zudoku.auth-supabase.js.map +1 -0
- package/lib/zudoku.components.js +30 -29
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +17 -16
- package/lib/zudoku.hooks.js.map +1 -1
- package/lib/zudoku.icons.js.map +1 -1
- package/lib/zudoku.plugin-api-catalog.js +26 -25
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +428 -299
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +1 -1
- package/lib/zudoku.plugin-custom-pages.js.map +1 -1
- package/lib/zudoku.plugin-markdown.js +1 -1
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +7 -6
- package/lib/zudoku.plugin-openapi.js.map +1 -1
- package/lib/zudoku.plugin-redirect.js +1 -1
- package/lib/zudoku.plugin-redirect.js.map +1 -1
- package/lib/zudoku.plugin-search-inkeep.js +54 -57
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +123 -118
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js.map +1 -1
- package/package.json +34 -33
- package/src/app/demo.tsx +19 -2
- package/src/app/main.css +26 -5
- package/src/app/main.tsx +6 -14
- package/src/lib/authentication/authentication.ts +2 -2
- package/src/lib/authentication/components/CallbackHandler.tsx +22 -15
- package/src/lib/authentication/components/OAuthErrorPage.tsx +171 -0
- package/src/lib/authentication/components/SignIn.tsx +5 -12
- package/src/lib/authentication/errors.ts +27 -13
- package/src/lib/authentication/hook.ts +2 -0
- package/src/lib/authentication/providers/azureb2c.tsx +8 -3
- package/src/lib/authentication/providers/clerk.tsx +4 -1
- package/src/lib/authentication/providers/openid.tsx +30 -5
- package/src/lib/components/Banner.tsx +0 -1
- package/src/lib/components/CategoryHeading.tsx +4 -1
- package/src/lib/components/Header.tsx +5 -2
- package/src/lib/components/Heading.tsx +1 -1
- package/src/lib/components/Markdown.tsx +3 -3
- package/src/lib/components/MobileTopNavigation.tsx +60 -8
- package/src/lib/components/NotFoundPage.tsx +3 -2
- package/src/lib/components/Pagination.tsx +1 -0
- package/src/lib/components/StatusPage.tsx +5 -0
- package/src/lib/components/TopNavigation.tsx +34 -18
- package/src/lib/components/Typography.tsx +1 -1
- package/src/lib/components/context/ZudokuContext.ts +25 -18
- package/src/lib/components/navigation/NavigationItem.tsx +9 -1
- package/src/lib/components/navigation/NavigationWrapper.tsx +4 -1
- package/src/lib/components/navigation/utils.ts +9 -3
- package/src/lib/core/RouteGuard.tsx +13 -13
- package/src/lib/core/ZudokuContext.ts +40 -5
- package/src/lib/core/plugins.ts +2 -1
- package/src/lib/errors/ErrorAlert.tsx +5 -7
- package/src/lib/plugins/api-keys/CreateApiKey.tsx +12 -1
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +37 -13
- package/src/lib/plugins/api-keys/index.tsx +8 -9
- package/src/lib/plugins/markdown/MdxPage.tsx +4 -3
- package/src/lib/plugins/openapi/OperationList.tsx +4 -2
- package/src/lib/plugins/openapi/Sidecar.tsx +1 -1
- package/src/lib/plugins/openapi/SidecarExamples.tsx +1 -1
- package/src/lib/plugins/openapi/graphql/gql.ts +3 -3
- package/src/lib/plugins/openapi/graphql/graphql.ts +2 -0
- package/src/lib/plugins/openapi/index.tsx +67 -17
- package/src/lib/plugins/openapi/playground/PathParams.tsx +1 -1
- package/src/lib/plugins/openapi/playground/Playground.tsx +8 -2
- package/src/lib/plugins/search-inkeep/index.tsx +54 -58
- package/src/lib/plugins/search-inkeep/inkeep.ts +19 -21
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +1 -0
- package/src/lib/plugins/search-pagefind/ResultList.tsx +13 -4
- package/src/lib/ui/ActionButton.tsx +3 -1
- package/src/lib/ui/Alert.tsx +1 -1
- package/src/lib/ui/CodeBlock.tsx +1 -1
- package/src/lib/ui/EmbeddedCodeBlock.tsx +1 -1
- package/src/lib/util/invariant.ts +7 -5
- package/lib/Alert-CT_ViLrJ.js +0 -161
- package/lib/Alert-CT_ViLrJ.js.map +0 -1
- package/lib/MdxPage-swXPJ0gf.js.map +0 -1
- package/lib/OperationList-C9Hb9ql8.js.map +0 -1
- package/lib/Pagination-VGlgeCmS.js.map +0 -1
- package/lib/SignUp-5RUdVhnq.js +0 -63
- package/lib/SignUp-5RUdVhnq.js.map +0 -1
- package/lib/Slot-DwZlQ-vX.js.map +0 -1
- package/lib/SyntaxHighlight-CrjhGEwT.js.map +0 -1
- package/lib/chunk-DQRVZFIR-DHK7_Ilc.js.map +0 -1
- package/lib/clerk-BDZ31hjU.js +0 -25190
- package/lib/clerk-BDZ31hjU.js.map +0 -1
- package/lib/cn-wvCW-ho6.js.map +0 -1
- package/lib/createServer-BKFsRuuk.js.map +0 -1
- package/lib/errors-CF2X_x5o.js +0 -78
- package/lib/errors-CF2X_x5o.js.map +0 -1
- package/lib/hook-Bd0yS8M0.js +0 -1503
- package/lib/hook-Bd0yS8M0.js.map +0 -1
- package/lib/index-B6Re5_cx.js.map +0 -1
- package/lib/index-CLy1XyH0.js +0 -3919
- package/lib/index-CLy1XyH0.js.map +0 -1
- package/lib/index-ClhS5TxS.js +0 -107
- package/lib/index-ClhS5TxS.js.map +0 -1
- package/lib/index.esm-Cp4wkyud.js +0 -1236
- package/lib/index.esm-Cp4wkyud.js.map +0 -1
- package/lib/invariant-DAFpPywt.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
|
-
|
|
11
|
-
|
|
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;
|
|
@@ -43,6 +51,36 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
43
51
|
play: "play";
|
|
44
52
|
scroll: "scroll";
|
|
45
53
|
merge: "merge";
|
|
54
|
+
code: "code";
|
|
55
|
+
check: "check";
|
|
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
|
+
section: "section";
|
|
73
|
+
video: "video";
|
|
74
|
+
circle: "circle";
|
|
75
|
+
image: "image";
|
|
76
|
+
view: "view";
|
|
77
|
+
move: "move";
|
|
78
|
+
container: "container";
|
|
79
|
+
target: "target";
|
|
80
|
+
radius: "radius";
|
|
81
|
+
scale: "scale";
|
|
82
|
+
x: "x";
|
|
83
|
+
wheat: "wheat";
|
|
46
84
|
"a-arrow-down": "a-arrow-down";
|
|
47
85
|
"a-arrow-up": "a-arrow-up";
|
|
48
86
|
"a-large-small": "a-large-small";
|
|
@@ -204,6 +242,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
204
242
|
"badge-percent": "badge-percent";
|
|
205
243
|
"badge-plus": "badge-plus";
|
|
206
244
|
"badge-pound-sterling": "badge-pound-sterling";
|
|
245
|
+
"badge-question-mark": "badge-question-mark";
|
|
207
246
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
208
247
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
209
248
|
"badge-x": "badge-x";
|
|
@@ -223,6 +262,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
223
262
|
"bar-chart-horizontal": "bar-chart-horizontal";
|
|
224
263
|
"bar-chart-horizontal-big": "bar-chart-horizontal-big";
|
|
225
264
|
barcode: "barcode";
|
|
265
|
+
barrel: "barrel";
|
|
226
266
|
baseline: "baseline";
|
|
227
267
|
bath: "bath";
|
|
228
268
|
battery: "battery";
|
|
@@ -305,6 +345,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
305
345
|
bot: "bot";
|
|
306
346
|
"bot-message-square": "bot-message-square";
|
|
307
347
|
"bot-off": "bot-off";
|
|
348
|
+
"bottle-wine": "bottle-wine";
|
|
308
349
|
"bow-arrow": "bow-arrow";
|
|
309
350
|
box: "box";
|
|
310
351
|
"box-select": "box-select";
|
|
@@ -403,7 +444,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
403
444
|
"chart-pie": "chart-pie";
|
|
404
445
|
"chart-scatter": "chart-scatter";
|
|
405
446
|
"chart-spline": "chart-spline";
|
|
406
|
-
check: "check";
|
|
407
447
|
"check-check": "check-check";
|
|
408
448
|
"check-circle": "check-circle";
|
|
409
449
|
"check-circle-2": "check-circle-2";
|
|
@@ -439,7 +479,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
439
479
|
church: "church";
|
|
440
480
|
cigarette: "cigarette";
|
|
441
481
|
"cigarette-off": "cigarette-off";
|
|
442
|
-
circle: "circle";
|
|
443
482
|
"circle-alert": "circle-alert";
|
|
444
483
|
"circle-arrow-down": "circle-arrow-down";
|
|
445
484
|
"circle-arrow-left": "circle-arrow-left";
|
|
@@ -476,6 +515,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
476
515
|
"circle-plus": "circle-plus";
|
|
477
516
|
"circle-pound-sterling": "circle-pound-sterling";
|
|
478
517
|
"circle-power": "circle-power";
|
|
518
|
+
"circle-question-mark": "circle-question-mark";
|
|
479
519
|
"circle-slash": "circle-slash";
|
|
480
520
|
"circle-slash-2": "circle-slash-2";
|
|
481
521
|
"circle-slashed": "circle-slashed";
|
|
@@ -539,7 +579,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
539
579
|
cloudy: "cloudy";
|
|
540
580
|
clover: "clover";
|
|
541
581
|
club: "club";
|
|
542
|
-
code: "code";
|
|
543
582
|
"code-2": "code-2";
|
|
544
583
|
"code-square": "code-square";
|
|
545
584
|
"code-xml": "code-xml";
|
|
@@ -564,7 +603,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
564
603
|
construction: "construction";
|
|
565
604
|
"contact-2": "contact-2";
|
|
566
605
|
"contact-round": "contact-round";
|
|
567
|
-
container: "container";
|
|
568
606
|
contrast: "contrast";
|
|
569
607
|
"cooking-pot": "cooking-pot";
|
|
570
608
|
"copy-check": "copy-check";
|
|
@@ -639,6 +677,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
639
677
|
drama: "drama";
|
|
640
678
|
dribbble: "dribbble";
|
|
641
679
|
drill: "drill";
|
|
680
|
+
drone: "drone";
|
|
642
681
|
droplet: "droplet";
|
|
643
682
|
"droplet-off": "droplet-off";
|
|
644
683
|
droplets: "droplets";
|
|
@@ -665,7 +704,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
665
704
|
eraser: "eraser";
|
|
666
705
|
"ethernet-port": "ethernet-port";
|
|
667
706
|
euro: "euro";
|
|
668
|
-
expand: "expand";
|
|
669
707
|
"external-link": "external-link";
|
|
670
708
|
eye: "eye";
|
|
671
709
|
"eye-closed": "eye-closed";
|
|
@@ -723,6 +761,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
723
761
|
"file-plus": "file-plus";
|
|
724
762
|
"file-plus-2": "file-plus-2";
|
|
725
763
|
"file-question": "file-question";
|
|
764
|
+
"file-question-mark": "file-question-mark";
|
|
726
765
|
"file-scan": "file-scan";
|
|
727
766
|
"file-search": "file-search";
|
|
728
767
|
"file-search-2": "file-search-2";
|
|
@@ -832,7 +871,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
832
871
|
"gauge-circle": "gauge-circle";
|
|
833
872
|
gavel: "gavel";
|
|
834
873
|
gem: "gem";
|
|
835
|
-
|
|
874
|
+
"georgian-lari": "georgian-lari";
|
|
836
875
|
gift: "gift";
|
|
837
876
|
"git-branch": "git-branch";
|
|
838
877
|
"git-branch-plus": "git-branch-plus";
|
|
@@ -862,7 +901,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
862
901
|
grab: "grab";
|
|
863
902
|
"graduation-cap": "graduation-cap";
|
|
864
903
|
grape: "grape";
|
|
865
|
-
grid: "grid";
|
|
866
904
|
"grid-2-x-2": "grid-2-x-2";
|
|
867
905
|
"grid-2-x-2-check": "grid-2-x-2-check";
|
|
868
906
|
"grid-2-x-2-plus": "grid-2-x-2-plus";
|
|
@@ -877,7 +915,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
877
915
|
grip: "grip";
|
|
878
916
|
"grip-horizontal": "grip-horizontal";
|
|
879
917
|
"grip-vertical": "grip-vertical";
|
|
880
|
-
group: "group";
|
|
881
918
|
guitar: "guitar";
|
|
882
919
|
ham: "ham";
|
|
883
920
|
hamburger: "hamburger";
|
|
@@ -896,7 +933,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
896
933
|
hash: "hash";
|
|
897
934
|
haze: "haze";
|
|
898
935
|
"hdmi-port": "hdmi-port";
|
|
899
|
-
heading: "heading";
|
|
900
936
|
"heading-1": "heading-1";
|
|
901
937
|
"heading-2": "heading-2";
|
|
902
938
|
"heading-3": "heading-3";
|
|
@@ -935,7 +971,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
935
971
|
"ice-cream-cone": "ice-cream-cone";
|
|
936
972
|
"id-card": "id-card";
|
|
937
973
|
"id-card-lanyard": "id-card-lanyard";
|
|
938
|
-
image: "image";
|
|
939
974
|
"image-down": "image-down";
|
|
940
975
|
"image-minus": "image-minus";
|
|
941
976
|
"image-off": "image-off";
|
|
@@ -1005,6 +1040,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1005
1040
|
lightbulb: "lightbulb";
|
|
1006
1041
|
"lightbulb-off": "lightbulb-off";
|
|
1007
1042
|
"line-chart": "line-chart";
|
|
1043
|
+
"line-squiggle": "line-squiggle";
|
|
1008
1044
|
"link-2": "link-2";
|
|
1009
1045
|
"link-2-off": "link-2-off";
|
|
1010
1046
|
linkedin: "linkedin";
|
|
@@ -1049,6 +1085,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1049
1085
|
"mail-open": "mail-open";
|
|
1050
1086
|
"mail-plus": "mail-plus";
|
|
1051
1087
|
"mail-question": "mail-question";
|
|
1088
|
+
"mail-question-mark": "mail-question-mark";
|
|
1052
1089
|
"mail-search": "mail-search";
|
|
1053
1090
|
"mail-warning": "mail-warning";
|
|
1054
1091
|
"mail-x": "mail-x";
|
|
@@ -1077,7 +1114,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1077
1114
|
"megaphone-off": "megaphone-off";
|
|
1078
1115
|
meh: "meh";
|
|
1079
1116
|
"memory-stick": "memory-stick";
|
|
1080
|
-
menu: "menu";
|
|
1081
1117
|
"menu-square": "menu-square";
|
|
1082
1118
|
"message-circle": "message-circle";
|
|
1083
1119
|
"message-circle-code": "message-circle-code";
|
|
@@ -1087,6 +1123,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1087
1123
|
"message-circle-off": "message-circle-off";
|
|
1088
1124
|
"message-circle-plus": "message-circle-plus";
|
|
1089
1125
|
"message-circle-question": "message-circle-question";
|
|
1126
|
+
"message-circle-question-mark": "message-circle-question-mark";
|
|
1090
1127
|
"message-circle-reply": "message-circle-reply";
|
|
1091
1128
|
"message-circle-warning": "message-circle-warning";
|
|
1092
1129
|
"message-circle-x": "message-circle-x";
|
|
@@ -1141,14 +1178,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1141
1178
|
"more-vertical": "more-vertical";
|
|
1142
1179
|
mountain: "mountain";
|
|
1143
1180
|
"mountain-snow": "mountain-snow";
|
|
1144
|
-
mouse: "mouse";
|
|
1145
1181
|
"mouse-off": "mouse-off";
|
|
1146
1182
|
"mouse-pointer": "mouse-pointer";
|
|
1147
1183
|
"mouse-pointer-2": "mouse-pointer-2";
|
|
1148
1184
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
1149
1185
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
1150
1186
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
1151
|
-
move: "move";
|
|
1152
1187
|
"move-3-d": "move-3-d";
|
|
1153
1188
|
"move-3d": "move-3d";
|
|
1154
1189
|
"move-diagonal": "move-diagonal";
|
|
@@ -1167,7 +1202,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1167
1202
|
"music-2": "music-2";
|
|
1168
1203
|
"music-3": "music-3";
|
|
1169
1204
|
"music-4": "music-4";
|
|
1170
|
-
navigation: "navigation";
|
|
1171
1205
|
"navigation-2": "navigation-2";
|
|
1172
1206
|
"navigation-2-off": "navigation-2-off";
|
|
1173
1207
|
"navigation-off": "navigation-off";
|
|
@@ -1189,7 +1223,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1189
1223
|
"octagon-pause": "octagon-pause";
|
|
1190
1224
|
"octagon-x": "octagon-x";
|
|
1191
1225
|
omega: "omega";
|
|
1192
|
-
option: "option";
|
|
1193
1226
|
orbit: "orbit";
|
|
1194
1227
|
origami: "origami";
|
|
1195
1228
|
outdent: "outdent";
|
|
@@ -1246,7 +1279,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1246
1279
|
"pause-octagon": "pause-octagon";
|
|
1247
1280
|
"paw-print": "paw-print";
|
|
1248
1281
|
"pc-case": "pc-case";
|
|
1249
|
-
pen: "pen";
|
|
1250
1282
|
"pen-box": "pen-box";
|
|
1251
1283
|
"pen-line": "pen-line";
|
|
1252
1284
|
"pen-off": "pen-off";
|
|
@@ -1312,7 +1344,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1312
1344
|
"power-circle": "power-circle";
|
|
1313
1345
|
"power-off": "power-off";
|
|
1314
1346
|
"power-square": "power-square";
|
|
1315
|
-
presentation: "presentation";
|
|
1316
1347
|
printer: "printer";
|
|
1317
1348
|
"printer-check": "printer-check";
|
|
1318
1349
|
projector: "projector";
|
|
@@ -1325,10 +1356,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1325
1356
|
radar: "radar";
|
|
1326
1357
|
radiation: "radiation";
|
|
1327
1358
|
radical: "radical";
|
|
1328
|
-
radio: "radio";
|
|
1329
1359
|
"radio-receiver": "radio-receiver";
|
|
1330
1360
|
"radio-tower": "radio-tower";
|
|
1331
|
-
radius: "radius";
|
|
1332
1361
|
"rail-symbol": "rail-symbol";
|
|
1333
1362
|
rainbow: "rainbow";
|
|
1334
1363
|
rat: "rat";
|
|
@@ -1395,7 +1424,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1395
1424
|
save: "save";
|
|
1396
1425
|
"save-all": "save-all";
|
|
1397
1426
|
"save-off": "save-off";
|
|
1398
|
-
scale: "scale";
|
|
1399
1427
|
"scale-3-d": "scale-3-d";
|
|
1400
1428
|
"scale-3d": "scale-3d";
|
|
1401
1429
|
scaling: "scaling";
|
|
@@ -1422,8 +1450,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1422
1450
|
"search-code": "search-code";
|
|
1423
1451
|
"search-slash": "search-slash";
|
|
1424
1452
|
"search-x": "search-x";
|
|
1425
|
-
section: "section";
|
|
1426
|
-
send: "send";
|
|
1427
1453
|
"send-horizonal": "send-horizonal";
|
|
1428
1454
|
"send-horizontal": "send-horizontal";
|
|
1429
1455
|
"send-to-back": "send-to-back";
|
|
@@ -1450,6 +1476,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1450
1476
|
"shield-off": "shield-off";
|
|
1451
1477
|
"shield-plus": "shield-plus";
|
|
1452
1478
|
"shield-question": "shield-question";
|
|
1479
|
+
"shield-question-mark": "shield-question-mark";
|
|
1453
1480
|
"shield-user": "shield-user";
|
|
1454
1481
|
"shield-x": "shield-x";
|
|
1455
1482
|
ship: "ship";
|
|
@@ -1512,6 +1539,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1512
1539
|
"spline-pointer": "spline-pointer";
|
|
1513
1540
|
"split-square-horizontal": "split-square-horizontal";
|
|
1514
1541
|
"split-square-vertical": "split-square-vertical";
|
|
1542
|
+
spool: "spool";
|
|
1515
1543
|
"spray-can": "spray-can";
|
|
1516
1544
|
sprout: "sprout";
|
|
1517
1545
|
square: "square";
|
|
@@ -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,7 +1660,6 @@ 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";
|
|
@@ -1642,7 +1669,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1642
1669
|
"test-tube-2": "test-tube-2";
|
|
1643
1670
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
1644
1671
|
"test-tubes": "test-tubes";
|
|
1645
|
-
text: "text";
|
|
1646
1672
|
"text-cursor": "text-cursor";
|
|
1647
1673
|
"text-cursor-input": "text-cursor-input";
|
|
1648
1674
|
"text-quote": "text-quote";
|
|
@@ -1664,12 +1690,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1664
1690
|
"ticket-x": "ticket-x";
|
|
1665
1691
|
tickets: "tickets";
|
|
1666
1692
|
"tickets-plane": "tickets-plane";
|
|
1667
|
-
timer: "timer";
|
|
1668
1693
|
"timer-off": "timer-off";
|
|
1669
1694
|
"timer-reset": "timer-reset";
|
|
1670
1695
|
"toggle-left": "toggle-left";
|
|
1671
1696
|
"toggle-right": "toggle-right";
|
|
1672
1697
|
toilet: "toilet";
|
|
1698
|
+
"tool-case": "tool-case";
|
|
1673
1699
|
tornado: "tornado";
|
|
1674
1700
|
torus: "torus";
|
|
1675
1701
|
touchpad: "touchpad";
|
|
@@ -1762,6 +1788,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1762
1788
|
"utility-pole": "utility-pole";
|
|
1763
1789
|
variable: "variable";
|
|
1764
1790
|
vault: "vault";
|
|
1791
|
+
"vector-square": "vector-square";
|
|
1765
1792
|
vegan: "vegan";
|
|
1766
1793
|
"venetian-mask": "venetian-mask";
|
|
1767
1794
|
venus: "venus";
|
|
@@ -1769,10 +1796,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1769
1796
|
verified: "verified";
|
|
1770
1797
|
vibrate: "vibrate";
|
|
1771
1798
|
"vibrate-off": "vibrate-off";
|
|
1772
|
-
video: "video";
|
|
1773
1799
|
"video-off": "video-off";
|
|
1774
1800
|
videotape: "videotape";
|
|
1775
|
-
view: "view";
|
|
1776
1801
|
voicemail: "voicemail";
|
|
1777
1802
|
volleyball: "volleyball";
|
|
1778
1803
|
volume: "volume";
|
|
@@ -1799,10 +1824,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1799
1824
|
webhook: "webhook";
|
|
1800
1825
|
"webhook-off": "webhook-off";
|
|
1801
1826
|
weight: "weight";
|
|
1802
|
-
wheat: "wheat";
|
|
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,23 +1854,28 @@ 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<{
|
|
1833
|
-
|
|
1857
|
+
outline: "outline";
|
|
1834
1858
|
blue: "blue";
|
|
1835
|
-
yellow: "yellow";
|
|
1836
|
-
red: "red";
|
|
1837
|
-
purple: "purple";
|
|
1838
|
-
indigo: "indigo";
|
|
1839
1859
|
gray: "gray";
|
|
1840
|
-
|
|
1860
|
+
green: "green";
|
|
1861
|
+
indigo: "indigo";
|
|
1862
|
+
purple: "purple";
|
|
1863
|
+
red: "red";
|
|
1864
|
+
yellow: "yellow";
|
|
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
|
-
|
|
1848
|
-
|
|
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">;
|
|
@@ -1881,6 +1910,36 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1881
1910
|
play: "play";
|
|
1882
1911
|
scroll: "scroll";
|
|
1883
1912
|
merge: "merge";
|
|
1913
|
+
code: "code";
|
|
1914
|
+
check: "check";
|
|
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
|
+
section: "section";
|
|
1932
|
+
video: "video";
|
|
1933
|
+
circle: "circle";
|
|
1934
|
+
image: "image";
|
|
1935
|
+
view: "view";
|
|
1936
|
+
move: "move";
|
|
1937
|
+
container: "container";
|
|
1938
|
+
target: "target";
|
|
1939
|
+
radius: "radius";
|
|
1940
|
+
scale: "scale";
|
|
1941
|
+
x: "x";
|
|
1942
|
+
wheat: "wheat";
|
|
1884
1943
|
"a-arrow-down": "a-arrow-down";
|
|
1885
1944
|
"a-arrow-up": "a-arrow-up";
|
|
1886
1945
|
"a-large-small": "a-large-small";
|
|
@@ -2042,6 +2101,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2042
2101
|
"badge-percent": "badge-percent";
|
|
2043
2102
|
"badge-plus": "badge-plus";
|
|
2044
2103
|
"badge-pound-sterling": "badge-pound-sterling";
|
|
2104
|
+
"badge-question-mark": "badge-question-mark";
|
|
2045
2105
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
2046
2106
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
2047
2107
|
"badge-x": "badge-x";
|
|
@@ -2061,6 +2121,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2061
2121
|
"bar-chart-horizontal": "bar-chart-horizontal";
|
|
2062
2122
|
"bar-chart-horizontal-big": "bar-chart-horizontal-big";
|
|
2063
2123
|
barcode: "barcode";
|
|
2124
|
+
barrel: "barrel";
|
|
2064
2125
|
baseline: "baseline";
|
|
2065
2126
|
bath: "bath";
|
|
2066
2127
|
battery: "battery";
|
|
@@ -2143,6 +2204,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2143
2204
|
bot: "bot";
|
|
2144
2205
|
"bot-message-square": "bot-message-square";
|
|
2145
2206
|
"bot-off": "bot-off";
|
|
2207
|
+
"bottle-wine": "bottle-wine";
|
|
2146
2208
|
"bow-arrow": "bow-arrow";
|
|
2147
2209
|
box: "box";
|
|
2148
2210
|
"box-select": "box-select";
|
|
@@ -2241,7 +2303,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2241
2303
|
"chart-pie": "chart-pie";
|
|
2242
2304
|
"chart-scatter": "chart-scatter";
|
|
2243
2305
|
"chart-spline": "chart-spline";
|
|
2244
|
-
check: "check";
|
|
2245
2306
|
"check-check": "check-check";
|
|
2246
2307
|
"check-circle": "check-circle";
|
|
2247
2308
|
"check-circle-2": "check-circle-2";
|
|
@@ -2277,7 +2338,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2277
2338
|
church: "church";
|
|
2278
2339
|
cigarette: "cigarette";
|
|
2279
2340
|
"cigarette-off": "cigarette-off";
|
|
2280
|
-
circle: "circle";
|
|
2281
2341
|
"circle-alert": "circle-alert";
|
|
2282
2342
|
"circle-arrow-down": "circle-arrow-down";
|
|
2283
2343
|
"circle-arrow-left": "circle-arrow-left";
|
|
@@ -2314,6 +2374,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2314
2374
|
"circle-plus": "circle-plus";
|
|
2315
2375
|
"circle-pound-sterling": "circle-pound-sterling";
|
|
2316
2376
|
"circle-power": "circle-power";
|
|
2377
|
+
"circle-question-mark": "circle-question-mark";
|
|
2317
2378
|
"circle-slash": "circle-slash";
|
|
2318
2379
|
"circle-slash-2": "circle-slash-2";
|
|
2319
2380
|
"circle-slashed": "circle-slashed";
|
|
@@ -2377,7 +2438,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2377
2438
|
cloudy: "cloudy";
|
|
2378
2439
|
clover: "clover";
|
|
2379
2440
|
club: "club";
|
|
2380
|
-
code: "code";
|
|
2381
2441
|
"code-2": "code-2";
|
|
2382
2442
|
"code-square": "code-square";
|
|
2383
2443
|
"code-xml": "code-xml";
|
|
@@ -2402,7 +2462,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2402
2462
|
construction: "construction";
|
|
2403
2463
|
"contact-2": "contact-2";
|
|
2404
2464
|
"contact-round": "contact-round";
|
|
2405
|
-
container: "container";
|
|
2406
2465
|
contrast: "contrast";
|
|
2407
2466
|
"cooking-pot": "cooking-pot";
|
|
2408
2467
|
"copy-check": "copy-check";
|
|
@@ -2477,6 +2536,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2477
2536
|
drama: "drama";
|
|
2478
2537
|
dribbble: "dribbble";
|
|
2479
2538
|
drill: "drill";
|
|
2539
|
+
drone: "drone";
|
|
2480
2540
|
droplet: "droplet";
|
|
2481
2541
|
"droplet-off": "droplet-off";
|
|
2482
2542
|
droplets: "droplets";
|
|
@@ -2503,7 +2563,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2503
2563
|
eraser: "eraser";
|
|
2504
2564
|
"ethernet-port": "ethernet-port";
|
|
2505
2565
|
euro: "euro";
|
|
2506
|
-
expand: "expand";
|
|
2507
2566
|
"external-link": "external-link";
|
|
2508
2567
|
eye: "eye";
|
|
2509
2568
|
"eye-closed": "eye-closed";
|
|
@@ -2561,6 +2620,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2561
2620
|
"file-plus": "file-plus";
|
|
2562
2621
|
"file-plus-2": "file-plus-2";
|
|
2563
2622
|
"file-question": "file-question";
|
|
2623
|
+
"file-question-mark": "file-question-mark";
|
|
2564
2624
|
"file-scan": "file-scan";
|
|
2565
2625
|
"file-search": "file-search";
|
|
2566
2626
|
"file-search-2": "file-search-2";
|
|
@@ -2670,7 +2730,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2670
2730
|
"gauge-circle": "gauge-circle";
|
|
2671
2731
|
gavel: "gavel";
|
|
2672
2732
|
gem: "gem";
|
|
2673
|
-
|
|
2733
|
+
"georgian-lari": "georgian-lari";
|
|
2674
2734
|
gift: "gift";
|
|
2675
2735
|
"git-branch": "git-branch";
|
|
2676
2736
|
"git-branch-plus": "git-branch-plus";
|
|
@@ -2700,7 +2760,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2700
2760
|
grab: "grab";
|
|
2701
2761
|
"graduation-cap": "graduation-cap";
|
|
2702
2762
|
grape: "grape";
|
|
2703
|
-
grid: "grid";
|
|
2704
2763
|
"grid-2-x-2": "grid-2-x-2";
|
|
2705
2764
|
"grid-2-x-2-check": "grid-2-x-2-check";
|
|
2706
2765
|
"grid-2-x-2-plus": "grid-2-x-2-plus";
|
|
@@ -2715,7 +2774,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2715
2774
|
grip: "grip";
|
|
2716
2775
|
"grip-horizontal": "grip-horizontal";
|
|
2717
2776
|
"grip-vertical": "grip-vertical";
|
|
2718
|
-
group: "group";
|
|
2719
2777
|
guitar: "guitar";
|
|
2720
2778
|
ham: "ham";
|
|
2721
2779
|
hamburger: "hamburger";
|
|
@@ -2734,7 +2792,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2734
2792
|
hash: "hash";
|
|
2735
2793
|
haze: "haze";
|
|
2736
2794
|
"hdmi-port": "hdmi-port";
|
|
2737
|
-
heading: "heading";
|
|
2738
2795
|
"heading-1": "heading-1";
|
|
2739
2796
|
"heading-2": "heading-2";
|
|
2740
2797
|
"heading-3": "heading-3";
|
|
@@ -2773,7 +2830,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2773
2830
|
"ice-cream-cone": "ice-cream-cone";
|
|
2774
2831
|
"id-card": "id-card";
|
|
2775
2832
|
"id-card-lanyard": "id-card-lanyard";
|
|
2776
|
-
image: "image";
|
|
2777
2833
|
"image-down": "image-down";
|
|
2778
2834
|
"image-minus": "image-minus";
|
|
2779
2835
|
"image-off": "image-off";
|
|
@@ -2843,6 +2899,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2843
2899
|
lightbulb: "lightbulb";
|
|
2844
2900
|
"lightbulb-off": "lightbulb-off";
|
|
2845
2901
|
"line-chart": "line-chart";
|
|
2902
|
+
"line-squiggle": "line-squiggle";
|
|
2846
2903
|
"link-2": "link-2";
|
|
2847
2904
|
"link-2-off": "link-2-off";
|
|
2848
2905
|
linkedin: "linkedin";
|
|
@@ -2887,6 +2944,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2887
2944
|
"mail-open": "mail-open";
|
|
2888
2945
|
"mail-plus": "mail-plus";
|
|
2889
2946
|
"mail-question": "mail-question";
|
|
2947
|
+
"mail-question-mark": "mail-question-mark";
|
|
2890
2948
|
"mail-search": "mail-search";
|
|
2891
2949
|
"mail-warning": "mail-warning";
|
|
2892
2950
|
"mail-x": "mail-x";
|
|
@@ -2915,7 +2973,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2915
2973
|
"megaphone-off": "megaphone-off";
|
|
2916
2974
|
meh: "meh";
|
|
2917
2975
|
"memory-stick": "memory-stick";
|
|
2918
|
-
menu: "menu";
|
|
2919
2976
|
"menu-square": "menu-square";
|
|
2920
2977
|
"message-circle": "message-circle";
|
|
2921
2978
|
"message-circle-code": "message-circle-code";
|
|
@@ -2925,6 +2982,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2925
2982
|
"message-circle-off": "message-circle-off";
|
|
2926
2983
|
"message-circle-plus": "message-circle-plus";
|
|
2927
2984
|
"message-circle-question": "message-circle-question";
|
|
2985
|
+
"message-circle-question-mark": "message-circle-question-mark";
|
|
2928
2986
|
"message-circle-reply": "message-circle-reply";
|
|
2929
2987
|
"message-circle-warning": "message-circle-warning";
|
|
2930
2988
|
"message-circle-x": "message-circle-x";
|
|
@@ -2979,14 +3037,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2979
3037
|
"more-vertical": "more-vertical";
|
|
2980
3038
|
mountain: "mountain";
|
|
2981
3039
|
"mountain-snow": "mountain-snow";
|
|
2982
|
-
mouse: "mouse";
|
|
2983
3040
|
"mouse-off": "mouse-off";
|
|
2984
3041
|
"mouse-pointer": "mouse-pointer";
|
|
2985
3042
|
"mouse-pointer-2": "mouse-pointer-2";
|
|
2986
3043
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
2987
3044
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
2988
3045
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
2989
|
-
move: "move";
|
|
2990
3046
|
"move-3-d": "move-3-d";
|
|
2991
3047
|
"move-3d": "move-3d";
|
|
2992
3048
|
"move-diagonal": "move-diagonal";
|
|
@@ -3005,7 +3061,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3005
3061
|
"music-2": "music-2";
|
|
3006
3062
|
"music-3": "music-3";
|
|
3007
3063
|
"music-4": "music-4";
|
|
3008
|
-
navigation: "navigation";
|
|
3009
3064
|
"navigation-2": "navigation-2";
|
|
3010
3065
|
"navigation-2-off": "navigation-2-off";
|
|
3011
3066
|
"navigation-off": "navigation-off";
|
|
@@ -3027,7 +3082,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3027
3082
|
"octagon-pause": "octagon-pause";
|
|
3028
3083
|
"octagon-x": "octagon-x";
|
|
3029
3084
|
omega: "omega";
|
|
3030
|
-
option: "option";
|
|
3031
3085
|
orbit: "orbit";
|
|
3032
3086
|
origami: "origami";
|
|
3033
3087
|
outdent: "outdent";
|
|
@@ -3084,7 +3138,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3084
3138
|
"pause-octagon": "pause-octagon";
|
|
3085
3139
|
"paw-print": "paw-print";
|
|
3086
3140
|
"pc-case": "pc-case";
|
|
3087
|
-
pen: "pen";
|
|
3088
3141
|
"pen-box": "pen-box";
|
|
3089
3142
|
"pen-line": "pen-line";
|
|
3090
3143
|
"pen-off": "pen-off";
|
|
@@ -3150,7 +3203,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3150
3203
|
"power-circle": "power-circle";
|
|
3151
3204
|
"power-off": "power-off";
|
|
3152
3205
|
"power-square": "power-square";
|
|
3153
|
-
presentation: "presentation";
|
|
3154
3206
|
printer: "printer";
|
|
3155
3207
|
"printer-check": "printer-check";
|
|
3156
3208
|
projector: "projector";
|
|
@@ -3163,10 +3215,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3163
3215
|
radar: "radar";
|
|
3164
3216
|
radiation: "radiation";
|
|
3165
3217
|
radical: "radical";
|
|
3166
|
-
radio: "radio";
|
|
3167
3218
|
"radio-receiver": "radio-receiver";
|
|
3168
3219
|
"radio-tower": "radio-tower";
|
|
3169
|
-
radius: "radius";
|
|
3170
3220
|
"rail-symbol": "rail-symbol";
|
|
3171
3221
|
rainbow: "rainbow";
|
|
3172
3222
|
rat: "rat";
|
|
@@ -3233,7 +3283,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3233
3283
|
save: "save";
|
|
3234
3284
|
"save-all": "save-all";
|
|
3235
3285
|
"save-off": "save-off";
|
|
3236
|
-
scale: "scale";
|
|
3237
3286
|
"scale-3-d": "scale-3-d";
|
|
3238
3287
|
"scale-3d": "scale-3d";
|
|
3239
3288
|
scaling: "scaling";
|
|
@@ -3260,8 +3309,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3260
3309
|
"search-code": "search-code";
|
|
3261
3310
|
"search-slash": "search-slash";
|
|
3262
3311
|
"search-x": "search-x";
|
|
3263
|
-
section: "section";
|
|
3264
|
-
send: "send";
|
|
3265
3312
|
"send-horizonal": "send-horizonal";
|
|
3266
3313
|
"send-horizontal": "send-horizontal";
|
|
3267
3314
|
"send-to-back": "send-to-back";
|
|
@@ -3288,6 +3335,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3288
3335
|
"shield-off": "shield-off";
|
|
3289
3336
|
"shield-plus": "shield-plus";
|
|
3290
3337
|
"shield-question": "shield-question";
|
|
3338
|
+
"shield-question-mark": "shield-question-mark";
|
|
3291
3339
|
"shield-user": "shield-user";
|
|
3292
3340
|
"shield-x": "shield-x";
|
|
3293
3341
|
ship: "ship";
|
|
@@ -3350,6 +3398,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3350
3398
|
"spline-pointer": "spline-pointer";
|
|
3351
3399
|
"split-square-horizontal": "split-square-horizontal";
|
|
3352
3400
|
"split-square-vertical": "split-square-vertical";
|
|
3401
|
+
spool: "spool";
|
|
3353
3402
|
"spray-can": "spray-can";
|
|
3354
3403
|
sprout: "sprout";
|
|
3355
3404
|
square: "square";
|
|
@@ -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,7 +3519,6 @@ 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";
|
|
@@ -3480,7 +3528,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3480
3528
|
"test-tube-2": "test-tube-2";
|
|
3481
3529
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
3482
3530
|
"test-tubes": "test-tubes";
|
|
3483
|
-
text: "text";
|
|
3484
3531
|
"text-cursor": "text-cursor";
|
|
3485
3532
|
"text-cursor-input": "text-cursor-input";
|
|
3486
3533
|
"text-quote": "text-quote";
|
|
@@ -3502,12 +3549,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3502
3549
|
"ticket-x": "ticket-x";
|
|
3503
3550
|
tickets: "tickets";
|
|
3504
3551
|
"tickets-plane": "tickets-plane";
|
|
3505
|
-
timer: "timer";
|
|
3506
3552
|
"timer-off": "timer-off";
|
|
3507
3553
|
"timer-reset": "timer-reset";
|
|
3508
3554
|
"toggle-left": "toggle-left";
|
|
3509
3555
|
"toggle-right": "toggle-right";
|
|
3510
3556
|
toilet: "toilet";
|
|
3557
|
+
"tool-case": "tool-case";
|
|
3511
3558
|
tornado: "tornado";
|
|
3512
3559
|
torus: "torus";
|
|
3513
3560
|
touchpad: "touchpad";
|
|
@@ -3600,6 +3647,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3600
3647
|
"utility-pole": "utility-pole";
|
|
3601
3648
|
variable: "variable";
|
|
3602
3649
|
vault: "vault";
|
|
3650
|
+
"vector-square": "vector-square";
|
|
3603
3651
|
vegan: "vegan";
|
|
3604
3652
|
"venetian-mask": "venetian-mask";
|
|
3605
3653
|
venus: "venus";
|
|
@@ -3607,10 +3655,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3607
3655
|
verified: "verified";
|
|
3608
3656
|
vibrate: "vibrate";
|
|
3609
3657
|
"vibrate-off": "vibrate-off";
|
|
3610
|
-
video: "video";
|
|
3611
3658
|
"video-off": "video-off";
|
|
3612
3659
|
videotape: "videotape";
|
|
3613
|
-
view: "view";
|
|
3614
3660
|
voicemail: "voicemail";
|
|
3615
3661
|
volleyball: "volleyball";
|
|
3616
3662
|
volume: "volume";
|
|
@@ -3637,10 +3683,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3637
3683
|
webhook: "webhook";
|
|
3638
3684
|
"webhook-off": "webhook-off";
|
|
3639
3685
|
weight: "weight";
|
|
3640
|
-
wheat: "wheat";
|
|
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,27 +3709,31 @@ 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<{
|
|
3671
|
-
|
|
3715
|
+
outline: "outline";
|
|
3672
3716
|
blue: "blue";
|
|
3673
|
-
yellow: "yellow";
|
|
3674
|
-
red: "red";
|
|
3675
|
-
purple: "purple";
|
|
3676
|
-
indigo: "indigo";
|
|
3677
3717
|
gray: "gray";
|
|
3678
|
-
|
|
3718
|
+
green: "green";
|
|
3719
|
+
indigo: "indigo";
|
|
3720
|
+
purple: "purple";
|
|
3721
|
+
red: "red";
|
|
3722
|
+
yellow: "yellow";
|
|
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
|
-
|
|
3686
|
-
|
|
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">;
|
|
@@ -3720,6 +3769,36 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3720
3769
|
play: "play";
|
|
3721
3770
|
scroll: "scroll";
|
|
3722
3771
|
merge: "merge";
|
|
3772
|
+
code: "code";
|
|
3773
|
+
check: "check";
|
|
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
|
+
section: "section";
|
|
3791
|
+
video: "video";
|
|
3792
|
+
circle: "circle";
|
|
3793
|
+
image: "image";
|
|
3794
|
+
view: "view";
|
|
3795
|
+
move: "move";
|
|
3796
|
+
container: "container";
|
|
3797
|
+
target: "target";
|
|
3798
|
+
radius: "radius";
|
|
3799
|
+
scale: "scale";
|
|
3800
|
+
x: "x";
|
|
3801
|
+
wheat: "wheat";
|
|
3723
3802
|
"a-arrow-down": "a-arrow-down";
|
|
3724
3803
|
"a-arrow-up": "a-arrow-up";
|
|
3725
3804
|
"a-large-small": "a-large-small";
|
|
@@ -3881,6 +3960,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3881
3960
|
"badge-percent": "badge-percent";
|
|
3882
3961
|
"badge-plus": "badge-plus";
|
|
3883
3962
|
"badge-pound-sterling": "badge-pound-sterling";
|
|
3963
|
+
"badge-question-mark": "badge-question-mark";
|
|
3884
3964
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
3885
3965
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
3886
3966
|
"badge-x": "badge-x";
|
|
@@ -3900,6 +3980,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3900
3980
|
"bar-chart-horizontal": "bar-chart-horizontal";
|
|
3901
3981
|
"bar-chart-horizontal-big": "bar-chart-horizontal-big";
|
|
3902
3982
|
barcode: "barcode";
|
|
3983
|
+
barrel: "barrel";
|
|
3903
3984
|
baseline: "baseline";
|
|
3904
3985
|
bath: "bath";
|
|
3905
3986
|
battery: "battery";
|
|
@@ -3982,6 +4063,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3982
4063
|
bot: "bot";
|
|
3983
4064
|
"bot-message-square": "bot-message-square";
|
|
3984
4065
|
"bot-off": "bot-off";
|
|
4066
|
+
"bottle-wine": "bottle-wine";
|
|
3985
4067
|
"bow-arrow": "bow-arrow";
|
|
3986
4068
|
box: "box";
|
|
3987
4069
|
"box-select": "box-select";
|
|
@@ -4080,7 +4162,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4080
4162
|
"chart-pie": "chart-pie";
|
|
4081
4163
|
"chart-scatter": "chart-scatter";
|
|
4082
4164
|
"chart-spline": "chart-spline";
|
|
4083
|
-
check: "check";
|
|
4084
4165
|
"check-check": "check-check";
|
|
4085
4166
|
"check-circle": "check-circle";
|
|
4086
4167
|
"check-circle-2": "check-circle-2";
|
|
@@ -4116,7 +4197,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4116
4197
|
church: "church";
|
|
4117
4198
|
cigarette: "cigarette";
|
|
4118
4199
|
"cigarette-off": "cigarette-off";
|
|
4119
|
-
circle: "circle";
|
|
4120
4200
|
"circle-alert": "circle-alert";
|
|
4121
4201
|
"circle-arrow-down": "circle-arrow-down";
|
|
4122
4202
|
"circle-arrow-left": "circle-arrow-left";
|
|
@@ -4153,6 +4233,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4153
4233
|
"circle-plus": "circle-plus";
|
|
4154
4234
|
"circle-pound-sterling": "circle-pound-sterling";
|
|
4155
4235
|
"circle-power": "circle-power";
|
|
4236
|
+
"circle-question-mark": "circle-question-mark";
|
|
4156
4237
|
"circle-slash": "circle-slash";
|
|
4157
4238
|
"circle-slash-2": "circle-slash-2";
|
|
4158
4239
|
"circle-slashed": "circle-slashed";
|
|
@@ -4216,7 +4297,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4216
4297
|
cloudy: "cloudy";
|
|
4217
4298
|
clover: "clover";
|
|
4218
4299
|
club: "club";
|
|
4219
|
-
code: "code";
|
|
4220
4300
|
"code-2": "code-2";
|
|
4221
4301
|
"code-square": "code-square";
|
|
4222
4302
|
"code-xml": "code-xml";
|
|
@@ -4241,7 +4321,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4241
4321
|
construction: "construction";
|
|
4242
4322
|
"contact-2": "contact-2";
|
|
4243
4323
|
"contact-round": "contact-round";
|
|
4244
|
-
container: "container";
|
|
4245
4324
|
contrast: "contrast";
|
|
4246
4325
|
"cooking-pot": "cooking-pot";
|
|
4247
4326
|
"copy-check": "copy-check";
|
|
@@ -4316,6 +4395,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4316
4395
|
drama: "drama";
|
|
4317
4396
|
dribbble: "dribbble";
|
|
4318
4397
|
drill: "drill";
|
|
4398
|
+
drone: "drone";
|
|
4319
4399
|
droplet: "droplet";
|
|
4320
4400
|
"droplet-off": "droplet-off";
|
|
4321
4401
|
droplets: "droplets";
|
|
@@ -4342,7 +4422,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4342
4422
|
eraser: "eraser";
|
|
4343
4423
|
"ethernet-port": "ethernet-port";
|
|
4344
4424
|
euro: "euro";
|
|
4345
|
-
expand: "expand";
|
|
4346
4425
|
"external-link": "external-link";
|
|
4347
4426
|
eye: "eye";
|
|
4348
4427
|
"eye-closed": "eye-closed";
|
|
@@ -4400,6 +4479,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4400
4479
|
"file-plus": "file-plus";
|
|
4401
4480
|
"file-plus-2": "file-plus-2";
|
|
4402
4481
|
"file-question": "file-question";
|
|
4482
|
+
"file-question-mark": "file-question-mark";
|
|
4403
4483
|
"file-scan": "file-scan";
|
|
4404
4484
|
"file-search": "file-search";
|
|
4405
4485
|
"file-search-2": "file-search-2";
|
|
@@ -4509,7 +4589,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4509
4589
|
"gauge-circle": "gauge-circle";
|
|
4510
4590
|
gavel: "gavel";
|
|
4511
4591
|
gem: "gem";
|
|
4512
|
-
|
|
4592
|
+
"georgian-lari": "georgian-lari";
|
|
4513
4593
|
gift: "gift";
|
|
4514
4594
|
"git-branch": "git-branch";
|
|
4515
4595
|
"git-branch-plus": "git-branch-plus";
|
|
@@ -4539,7 +4619,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4539
4619
|
grab: "grab";
|
|
4540
4620
|
"graduation-cap": "graduation-cap";
|
|
4541
4621
|
grape: "grape";
|
|
4542
|
-
grid: "grid";
|
|
4543
4622
|
"grid-2-x-2": "grid-2-x-2";
|
|
4544
4623
|
"grid-2-x-2-check": "grid-2-x-2-check";
|
|
4545
4624
|
"grid-2-x-2-plus": "grid-2-x-2-plus";
|
|
@@ -4554,7 +4633,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4554
4633
|
grip: "grip";
|
|
4555
4634
|
"grip-horizontal": "grip-horizontal";
|
|
4556
4635
|
"grip-vertical": "grip-vertical";
|
|
4557
|
-
group: "group";
|
|
4558
4636
|
guitar: "guitar";
|
|
4559
4637
|
ham: "ham";
|
|
4560
4638
|
hamburger: "hamburger";
|
|
@@ -4573,7 +4651,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4573
4651
|
hash: "hash";
|
|
4574
4652
|
haze: "haze";
|
|
4575
4653
|
"hdmi-port": "hdmi-port";
|
|
4576
|
-
heading: "heading";
|
|
4577
4654
|
"heading-1": "heading-1";
|
|
4578
4655
|
"heading-2": "heading-2";
|
|
4579
4656
|
"heading-3": "heading-3";
|
|
@@ -4612,7 +4689,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4612
4689
|
"ice-cream-cone": "ice-cream-cone";
|
|
4613
4690
|
"id-card": "id-card";
|
|
4614
4691
|
"id-card-lanyard": "id-card-lanyard";
|
|
4615
|
-
image: "image";
|
|
4616
4692
|
"image-down": "image-down";
|
|
4617
4693
|
"image-minus": "image-minus";
|
|
4618
4694
|
"image-off": "image-off";
|
|
@@ -4682,6 +4758,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4682
4758
|
lightbulb: "lightbulb";
|
|
4683
4759
|
"lightbulb-off": "lightbulb-off";
|
|
4684
4760
|
"line-chart": "line-chart";
|
|
4761
|
+
"line-squiggle": "line-squiggle";
|
|
4685
4762
|
"link-2": "link-2";
|
|
4686
4763
|
"link-2-off": "link-2-off";
|
|
4687
4764
|
linkedin: "linkedin";
|
|
@@ -4726,6 +4803,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4726
4803
|
"mail-open": "mail-open";
|
|
4727
4804
|
"mail-plus": "mail-plus";
|
|
4728
4805
|
"mail-question": "mail-question";
|
|
4806
|
+
"mail-question-mark": "mail-question-mark";
|
|
4729
4807
|
"mail-search": "mail-search";
|
|
4730
4808
|
"mail-warning": "mail-warning";
|
|
4731
4809
|
"mail-x": "mail-x";
|
|
@@ -4754,7 +4832,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4754
4832
|
"megaphone-off": "megaphone-off";
|
|
4755
4833
|
meh: "meh";
|
|
4756
4834
|
"memory-stick": "memory-stick";
|
|
4757
|
-
menu: "menu";
|
|
4758
4835
|
"menu-square": "menu-square";
|
|
4759
4836
|
"message-circle": "message-circle";
|
|
4760
4837
|
"message-circle-code": "message-circle-code";
|
|
@@ -4764,6 +4841,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4764
4841
|
"message-circle-off": "message-circle-off";
|
|
4765
4842
|
"message-circle-plus": "message-circle-plus";
|
|
4766
4843
|
"message-circle-question": "message-circle-question";
|
|
4844
|
+
"message-circle-question-mark": "message-circle-question-mark";
|
|
4767
4845
|
"message-circle-reply": "message-circle-reply";
|
|
4768
4846
|
"message-circle-warning": "message-circle-warning";
|
|
4769
4847
|
"message-circle-x": "message-circle-x";
|
|
@@ -4818,14 +4896,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4818
4896
|
"more-vertical": "more-vertical";
|
|
4819
4897
|
mountain: "mountain";
|
|
4820
4898
|
"mountain-snow": "mountain-snow";
|
|
4821
|
-
mouse: "mouse";
|
|
4822
4899
|
"mouse-off": "mouse-off";
|
|
4823
4900
|
"mouse-pointer": "mouse-pointer";
|
|
4824
4901
|
"mouse-pointer-2": "mouse-pointer-2";
|
|
4825
4902
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
4826
4903
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
4827
4904
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
4828
|
-
move: "move";
|
|
4829
4905
|
"move-3-d": "move-3-d";
|
|
4830
4906
|
"move-3d": "move-3d";
|
|
4831
4907
|
"move-diagonal": "move-diagonal";
|
|
@@ -4844,7 +4920,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4844
4920
|
"music-2": "music-2";
|
|
4845
4921
|
"music-3": "music-3";
|
|
4846
4922
|
"music-4": "music-4";
|
|
4847
|
-
navigation: "navigation";
|
|
4848
4923
|
"navigation-2": "navigation-2";
|
|
4849
4924
|
"navigation-2-off": "navigation-2-off";
|
|
4850
4925
|
"navigation-off": "navigation-off";
|
|
@@ -4866,7 +4941,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4866
4941
|
"octagon-pause": "octagon-pause";
|
|
4867
4942
|
"octagon-x": "octagon-x";
|
|
4868
4943
|
omega: "omega";
|
|
4869
|
-
option: "option";
|
|
4870
4944
|
orbit: "orbit";
|
|
4871
4945
|
origami: "origami";
|
|
4872
4946
|
outdent: "outdent";
|
|
@@ -4923,7 +4997,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4923
4997
|
"pause-octagon": "pause-octagon";
|
|
4924
4998
|
"paw-print": "paw-print";
|
|
4925
4999
|
"pc-case": "pc-case";
|
|
4926
|
-
pen: "pen";
|
|
4927
5000
|
"pen-box": "pen-box";
|
|
4928
5001
|
"pen-line": "pen-line";
|
|
4929
5002
|
"pen-off": "pen-off";
|
|
@@ -4989,7 +5062,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4989
5062
|
"power-circle": "power-circle";
|
|
4990
5063
|
"power-off": "power-off";
|
|
4991
5064
|
"power-square": "power-square";
|
|
4992
|
-
presentation: "presentation";
|
|
4993
5065
|
printer: "printer";
|
|
4994
5066
|
"printer-check": "printer-check";
|
|
4995
5067
|
projector: "projector";
|
|
@@ -5002,10 +5074,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5002
5074
|
radar: "radar";
|
|
5003
5075
|
radiation: "radiation";
|
|
5004
5076
|
radical: "radical";
|
|
5005
|
-
radio: "radio";
|
|
5006
5077
|
"radio-receiver": "radio-receiver";
|
|
5007
5078
|
"radio-tower": "radio-tower";
|
|
5008
|
-
radius: "radius";
|
|
5009
5079
|
"rail-symbol": "rail-symbol";
|
|
5010
5080
|
rainbow: "rainbow";
|
|
5011
5081
|
rat: "rat";
|
|
@@ -5072,7 +5142,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5072
5142
|
save: "save";
|
|
5073
5143
|
"save-all": "save-all";
|
|
5074
5144
|
"save-off": "save-off";
|
|
5075
|
-
scale: "scale";
|
|
5076
5145
|
"scale-3-d": "scale-3-d";
|
|
5077
5146
|
"scale-3d": "scale-3d";
|
|
5078
5147
|
scaling: "scaling";
|
|
@@ -5099,8 +5168,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5099
5168
|
"search-code": "search-code";
|
|
5100
5169
|
"search-slash": "search-slash";
|
|
5101
5170
|
"search-x": "search-x";
|
|
5102
|
-
section: "section";
|
|
5103
|
-
send: "send";
|
|
5104
5171
|
"send-horizonal": "send-horizonal";
|
|
5105
5172
|
"send-horizontal": "send-horizontal";
|
|
5106
5173
|
"send-to-back": "send-to-back";
|
|
@@ -5127,6 +5194,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5127
5194
|
"shield-off": "shield-off";
|
|
5128
5195
|
"shield-plus": "shield-plus";
|
|
5129
5196
|
"shield-question": "shield-question";
|
|
5197
|
+
"shield-question-mark": "shield-question-mark";
|
|
5130
5198
|
"shield-user": "shield-user";
|
|
5131
5199
|
"shield-x": "shield-x";
|
|
5132
5200
|
ship: "ship";
|
|
@@ -5189,6 +5257,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5189
5257
|
"spline-pointer": "spline-pointer";
|
|
5190
5258
|
"split-square-horizontal": "split-square-horizontal";
|
|
5191
5259
|
"split-square-vertical": "split-square-vertical";
|
|
5260
|
+
spool: "spool";
|
|
5192
5261
|
"spray-can": "spray-can";
|
|
5193
5262
|
sprout: "sprout";
|
|
5194
5263
|
square: "square";
|
|
@@ -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,7 +5378,6 @@ 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";
|
|
@@ -5319,7 +5387,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5319
5387
|
"test-tube-2": "test-tube-2";
|
|
5320
5388
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
5321
5389
|
"test-tubes": "test-tubes";
|
|
5322
|
-
text: "text";
|
|
5323
5390
|
"text-cursor": "text-cursor";
|
|
5324
5391
|
"text-cursor-input": "text-cursor-input";
|
|
5325
5392
|
"text-quote": "text-quote";
|
|
@@ -5341,12 +5408,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5341
5408
|
"ticket-x": "ticket-x";
|
|
5342
5409
|
tickets: "tickets";
|
|
5343
5410
|
"tickets-plane": "tickets-plane";
|
|
5344
|
-
timer: "timer";
|
|
5345
5411
|
"timer-off": "timer-off";
|
|
5346
5412
|
"timer-reset": "timer-reset";
|
|
5347
5413
|
"toggle-left": "toggle-left";
|
|
5348
5414
|
"toggle-right": "toggle-right";
|
|
5349
5415
|
toilet: "toilet";
|
|
5416
|
+
"tool-case": "tool-case";
|
|
5350
5417
|
tornado: "tornado";
|
|
5351
5418
|
torus: "torus";
|
|
5352
5419
|
touchpad: "touchpad";
|
|
@@ -5439,6 +5506,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5439
5506
|
"utility-pole": "utility-pole";
|
|
5440
5507
|
variable: "variable";
|
|
5441
5508
|
vault: "vault";
|
|
5509
|
+
"vector-square": "vector-square";
|
|
5442
5510
|
vegan: "vegan";
|
|
5443
5511
|
"venetian-mask": "venetian-mask";
|
|
5444
5512
|
venus: "venus";
|
|
@@ -5446,10 +5514,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5446
5514
|
verified: "verified";
|
|
5447
5515
|
vibrate: "vibrate";
|
|
5448
5516
|
"vibrate-off": "vibrate-off";
|
|
5449
|
-
video: "video";
|
|
5450
5517
|
"video-off": "video-off";
|
|
5451
5518
|
videotape: "videotape";
|
|
5452
|
-
view: "view";
|
|
5453
5519
|
voicemail: "voicemail";
|
|
5454
5520
|
volleyball: "volleyball";
|
|
5455
5521
|
volume: "volume";
|
|
@@ -5476,10 +5542,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5476
5542
|
webhook: "webhook";
|
|
5477
5543
|
"webhook-off": "webhook-off";
|
|
5478
5544
|
weight: "weight";
|
|
5479
|
-
wheat: "wheat";
|
|
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,23 +5571,28 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5506
5571
|
badge: z.ZodOptional<z.ZodObject<{
|
|
5507
5572
|
label: z.ZodString;
|
|
5508
5573
|
color: z.ZodEnum<{
|
|
5509
|
-
|
|
5574
|
+
outline: "outline";
|
|
5510
5575
|
blue: "blue";
|
|
5511
|
-
yellow: "yellow";
|
|
5512
|
-
red: "red";
|
|
5513
|
-
purple: "purple";
|
|
5514
|
-
indigo: "indigo";
|
|
5515
5576
|
gray: "gray";
|
|
5516
|
-
|
|
5577
|
+
green: "green";
|
|
5578
|
+
indigo: "indigo";
|
|
5579
|
+
purple: "purple";
|
|
5580
|
+
red: "red";
|
|
5581
|
+
yellow: "yellow";
|
|
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
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5589
|
+
}>, z.ZodCustom<(params: {
|
|
5590
|
+
context: ZudokuContext;
|
|
5591
|
+
auth: UseAuthReturn;
|
|
5592
|
+
}) => boolean, (params: {
|
|
5593
|
+
context: ZudokuContext;
|
|
5594
|
+
auth: UseAuthReturn;
|
|
5595
|
+
}) => boolean>]>>>;
|
|
5526
5596
|
}, z.core.$strip>;
|
|
5527
5597
|
declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
5528
5598
|
type: z.ZodLiteral<"category">;
|
|
@@ -5555,6 +5625,36 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5555
5625
|
play: "play";
|
|
5556
5626
|
scroll: "scroll";
|
|
5557
5627
|
merge: "merge";
|
|
5628
|
+
code: "code";
|
|
5629
|
+
check: "check";
|
|
5630
|
+
ghost: "ghost";
|
|
5631
|
+
expand: "expand";
|
|
5632
|
+
send: "send";
|
|
5633
|
+
grid: "grid";
|
|
5634
|
+
group: "group";
|
|
5635
|
+
heading: "heading";
|
|
5636
|
+
menu: "menu";
|
|
5637
|
+
navigation: "navigation";
|
|
5638
|
+
option: "option";
|
|
5639
|
+
presentation: "presentation";
|
|
5640
|
+
radio: "radio";
|
|
5641
|
+
table: "table";
|
|
5642
|
+
timer: "timer";
|
|
5643
|
+
text: "text";
|
|
5644
|
+
mouse: "mouse";
|
|
5645
|
+
pen: "pen";
|
|
5646
|
+
section: "section";
|
|
5647
|
+
video: "video";
|
|
5648
|
+
circle: "circle";
|
|
5649
|
+
image: "image";
|
|
5650
|
+
view: "view";
|
|
5651
|
+
move: "move";
|
|
5652
|
+
container: "container";
|
|
5653
|
+
target: "target";
|
|
5654
|
+
radius: "radius";
|
|
5655
|
+
scale: "scale";
|
|
5656
|
+
x: "x";
|
|
5657
|
+
wheat: "wheat";
|
|
5558
5658
|
"a-arrow-down": "a-arrow-down";
|
|
5559
5659
|
"a-arrow-up": "a-arrow-up";
|
|
5560
5660
|
"a-large-small": "a-large-small";
|
|
@@ -5716,6 +5816,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5716
5816
|
"badge-percent": "badge-percent";
|
|
5717
5817
|
"badge-plus": "badge-plus";
|
|
5718
5818
|
"badge-pound-sterling": "badge-pound-sterling";
|
|
5819
|
+
"badge-question-mark": "badge-question-mark";
|
|
5719
5820
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
5720
5821
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
5721
5822
|
"badge-x": "badge-x";
|
|
@@ -5735,6 +5836,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5735
5836
|
"bar-chart-horizontal": "bar-chart-horizontal";
|
|
5736
5837
|
"bar-chart-horizontal-big": "bar-chart-horizontal-big";
|
|
5737
5838
|
barcode: "barcode";
|
|
5839
|
+
barrel: "barrel";
|
|
5738
5840
|
baseline: "baseline";
|
|
5739
5841
|
bath: "bath";
|
|
5740
5842
|
battery: "battery";
|
|
@@ -5817,6 +5919,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5817
5919
|
bot: "bot";
|
|
5818
5920
|
"bot-message-square": "bot-message-square";
|
|
5819
5921
|
"bot-off": "bot-off";
|
|
5922
|
+
"bottle-wine": "bottle-wine";
|
|
5820
5923
|
"bow-arrow": "bow-arrow";
|
|
5821
5924
|
box: "box";
|
|
5822
5925
|
"box-select": "box-select";
|
|
@@ -5915,7 +6018,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5915
6018
|
"chart-pie": "chart-pie";
|
|
5916
6019
|
"chart-scatter": "chart-scatter";
|
|
5917
6020
|
"chart-spline": "chart-spline";
|
|
5918
|
-
check: "check";
|
|
5919
6021
|
"check-check": "check-check";
|
|
5920
6022
|
"check-circle": "check-circle";
|
|
5921
6023
|
"check-circle-2": "check-circle-2";
|
|
@@ -5951,7 +6053,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5951
6053
|
church: "church";
|
|
5952
6054
|
cigarette: "cigarette";
|
|
5953
6055
|
"cigarette-off": "cigarette-off";
|
|
5954
|
-
circle: "circle";
|
|
5955
6056
|
"circle-alert": "circle-alert";
|
|
5956
6057
|
"circle-arrow-down": "circle-arrow-down";
|
|
5957
6058
|
"circle-arrow-left": "circle-arrow-left";
|
|
@@ -5988,6 +6089,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5988
6089
|
"circle-plus": "circle-plus";
|
|
5989
6090
|
"circle-pound-sterling": "circle-pound-sterling";
|
|
5990
6091
|
"circle-power": "circle-power";
|
|
6092
|
+
"circle-question-mark": "circle-question-mark";
|
|
5991
6093
|
"circle-slash": "circle-slash";
|
|
5992
6094
|
"circle-slash-2": "circle-slash-2";
|
|
5993
6095
|
"circle-slashed": "circle-slashed";
|
|
@@ -6051,7 +6153,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6051
6153
|
cloudy: "cloudy";
|
|
6052
6154
|
clover: "clover";
|
|
6053
6155
|
club: "club";
|
|
6054
|
-
code: "code";
|
|
6055
6156
|
"code-2": "code-2";
|
|
6056
6157
|
"code-square": "code-square";
|
|
6057
6158
|
"code-xml": "code-xml";
|
|
@@ -6076,7 +6177,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6076
6177
|
construction: "construction";
|
|
6077
6178
|
"contact-2": "contact-2";
|
|
6078
6179
|
"contact-round": "contact-round";
|
|
6079
|
-
container: "container";
|
|
6080
6180
|
contrast: "contrast";
|
|
6081
6181
|
"cooking-pot": "cooking-pot";
|
|
6082
6182
|
"copy-check": "copy-check";
|
|
@@ -6151,6 +6251,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6151
6251
|
drama: "drama";
|
|
6152
6252
|
dribbble: "dribbble";
|
|
6153
6253
|
drill: "drill";
|
|
6254
|
+
drone: "drone";
|
|
6154
6255
|
droplet: "droplet";
|
|
6155
6256
|
"droplet-off": "droplet-off";
|
|
6156
6257
|
droplets: "droplets";
|
|
@@ -6177,7 +6278,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6177
6278
|
eraser: "eraser";
|
|
6178
6279
|
"ethernet-port": "ethernet-port";
|
|
6179
6280
|
euro: "euro";
|
|
6180
|
-
expand: "expand";
|
|
6181
6281
|
"external-link": "external-link";
|
|
6182
6282
|
eye: "eye";
|
|
6183
6283
|
"eye-closed": "eye-closed";
|
|
@@ -6235,6 +6335,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6235
6335
|
"file-plus": "file-plus";
|
|
6236
6336
|
"file-plus-2": "file-plus-2";
|
|
6237
6337
|
"file-question": "file-question";
|
|
6338
|
+
"file-question-mark": "file-question-mark";
|
|
6238
6339
|
"file-scan": "file-scan";
|
|
6239
6340
|
"file-search": "file-search";
|
|
6240
6341
|
"file-search-2": "file-search-2";
|
|
@@ -6344,7 +6445,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6344
6445
|
"gauge-circle": "gauge-circle";
|
|
6345
6446
|
gavel: "gavel";
|
|
6346
6447
|
gem: "gem";
|
|
6347
|
-
|
|
6448
|
+
"georgian-lari": "georgian-lari";
|
|
6348
6449
|
gift: "gift";
|
|
6349
6450
|
"git-branch": "git-branch";
|
|
6350
6451
|
"git-branch-plus": "git-branch-plus";
|
|
@@ -6374,7 +6475,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6374
6475
|
grab: "grab";
|
|
6375
6476
|
"graduation-cap": "graduation-cap";
|
|
6376
6477
|
grape: "grape";
|
|
6377
|
-
grid: "grid";
|
|
6378
6478
|
"grid-2-x-2": "grid-2-x-2";
|
|
6379
6479
|
"grid-2-x-2-check": "grid-2-x-2-check";
|
|
6380
6480
|
"grid-2-x-2-plus": "grid-2-x-2-plus";
|
|
@@ -6389,7 +6489,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6389
6489
|
grip: "grip";
|
|
6390
6490
|
"grip-horizontal": "grip-horizontal";
|
|
6391
6491
|
"grip-vertical": "grip-vertical";
|
|
6392
|
-
group: "group";
|
|
6393
6492
|
guitar: "guitar";
|
|
6394
6493
|
ham: "ham";
|
|
6395
6494
|
hamburger: "hamburger";
|
|
@@ -6408,7 +6507,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6408
6507
|
hash: "hash";
|
|
6409
6508
|
haze: "haze";
|
|
6410
6509
|
"hdmi-port": "hdmi-port";
|
|
6411
|
-
heading: "heading";
|
|
6412
6510
|
"heading-1": "heading-1";
|
|
6413
6511
|
"heading-2": "heading-2";
|
|
6414
6512
|
"heading-3": "heading-3";
|
|
@@ -6447,7 +6545,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6447
6545
|
"ice-cream-cone": "ice-cream-cone";
|
|
6448
6546
|
"id-card": "id-card";
|
|
6449
6547
|
"id-card-lanyard": "id-card-lanyard";
|
|
6450
|
-
image: "image";
|
|
6451
6548
|
"image-down": "image-down";
|
|
6452
6549
|
"image-minus": "image-minus";
|
|
6453
6550
|
"image-off": "image-off";
|
|
@@ -6517,6 +6614,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6517
6614
|
lightbulb: "lightbulb";
|
|
6518
6615
|
"lightbulb-off": "lightbulb-off";
|
|
6519
6616
|
"line-chart": "line-chart";
|
|
6617
|
+
"line-squiggle": "line-squiggle";
|
|
6520
6618
|
"link-2": "link-2";
|
|
6521
6619
|
"link-2-off": "link-2-off";
|
|
6522
6620
|
linkedin: "linkedin";
|
|
@@ -6561,6 +6659,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6561
6659
|
"mail-open": "mail-open";
|
|
6562
6660
|
"mail-plus": "mail-plus";
|
|
6563
6661
|
"mail-question": "mail-question";
|
|
6662
|
+
"mail-question-mark": "mail-question-mark";
|
|
6564
6663
|
"mail-search": "mail-search";
|
|
6565
6664
|
"mail-warning": "mail-warning";
|
|
6566
6665
|
"mail-x": "mail-x";
|
|
@@ -6589,7 +6688,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6589
6688
|
"megaphone-off": "megaphone-off";
|
|
6590
6689
|
meh: "meh";
|
|
6591
6690
|
"memory-stick": "memory-stick";
|
|
6592
|
-
menu: "menu";
|
|
6593
6691
|
"menu-square": "menu-square";
|
|
6594
6692
|
"message-circle": "message-circle";
|
|
6595
6693
|
"message-circle-code": "message-circle-code";
|
|
@@ -6599,6 +6697,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6599
6697
|
"message-circle-off": "message-circle-off";
|
|
6600
6698
|
"message-circle-plus": "message-circle-plus";
|
|
6601
6699
|
"message-circle-question": "message-circle-question";
|
|
6700
|
+
"message-circle-question-mark": "message-circle-question-mark";
|
|
6602
6701
|
"message-circle-reply": "message-circle-reply";
|
|
6603
6702
|
"message-circle-warning": "message-circle-warning";
|
|
6604
6703
|
"message-circle-x": "message-circle-x";
|
|
@@ -6653,14 +6752,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6653
6752
|
"more-vertical": "more-vertical";
|
|
6654
6753
|
mountain: "mountain";
|
|
6655
6754
|
"mountain-snow": "mountain-snow";
|
|
6656
|
-
mouse: "mouse";
|
|
6657
6755
|
"mouse-off": "mouse-off";
|
|
6658
6756
|
"mouse-pointer": "mouse-pointer";
|
|
6659
6757
|
"mouse-pointer-2": "mouse-pointer-2";
|
|
6660
6758
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
6661
6759
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
6662
6760
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
6663
|
-
move: "move";
|
|
6664
6761
|
"move-3-d": "move-3-d";
|
|
6665
6762
|
"move-3d": "move-3d";
|
|
6666
6763
|
"move-diagonal": "move-diagonal";
|
|
@@ -6679,7 +6776,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6679
6776
|
"music-2": "music-2";
|
|
6680
6777
|
"music-3": "music-3";
|
|
6681
6778
|
"music-4": "music-4";
|
|
6682
|
-
navigation: "navigation";
|
|
6683
6779
|
"navigation-2": "navigation-2";
|
|
6684
6780
|
"navigation-2-off": "navigation-2-off";
|
|
6685
6781
|
"navigation-off": "navigation-off";
|
|
@@ -6701,7 +6797,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6701
6797
|
"octagon-pause": "octagon-pause";
|
|
6702
6798
|
"octagon-x": "octagon-x";
|
|
6703
6799
|
omega: "omega";
|
|
6704
|
-
option: "option";
|
|
6705
6800
|
orbit: "orbit";
|
|
6706
6801
|
origami: "origami";
|
|
6707
6802
|
outdent: "outdent";
|
|
@@ -6758,7 +6853,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6758
6853
|
"pause-octagon": "pause-octagon";
|
|
6759
6854
|
"paw-print": "paw-print";
|
|
6760
6855
|
"pc-case": "pc-case";
|
|
6761
|
-
pen: "pen";
|
|
6762
6856
|
"pen-box": "pen-box";
|
|
6763
6857
|
"pen-line": "pen-line";
|
|
6764
6858
|
"pen-off": "pen-off";
|
|
@@ -6824,7 +6918,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6824
6918
|
"power-circle": "power-circle";
|
|
6825
6919
|
"power-off": "power-off";
|
|
6826
6920
|
"power-square": "power-square";
|
|
6827
|
-
presentation: "presentation";
|
|
6828
6921
|
printer: "printer";
|
|
6829
6922
|
"printer-check": "printer-check";
|
|
6830
6923
|
projector: "projector";
|
|
@@ -6837,10 +6930,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6837
6930
|
radar: "radar";
|
|
6838
6931
|
radiation: "radiation";
|
|
6839
6932
|
radical: "radical";
|
|
6840
|
-
radio: "radio";
|
|
6841
6933
|
"radio-receiver": "radio-receiver";
|
|
6842
6934
|
"radio-tower": "radio-tower";
|
|
6843
|
-
radius: "radius";
|
|
6844
6935
|
"rail-symbol": "rail-symbol";
|
|
6845
6936
|
rainbow: "rainbow";
|
|
6846
6937
|
rat: "rat";
|
|
@@ -6907,7 +6998,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6907
6998
|
save: "save";
|
|
6908
6999
|
"save-all": "save-all";
|
|
6909
7000
|
"save-off": "save-off";
|
|
6910
|
-
scale: "scale";
|
|
6911
7001
|
"scale-3-d": "scale-3-d";
|
|
6912
7002
|
"scale-3d": "scale-3d";
|
|
6913
7003
|
scaling: "scaling";
|
|
@@ -6934,8 +7024,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6934
7024
|
"search-code": "search-code";
|
|
6935
7025
|
"search-slash": "search-slash";
|
|
6936
7026
|
"search-x": "search-x";
|
|
6937
|
-
section: "section";
|
|
6938
|
-
send: "send";
|
|
6939
7027
|
"send-horizonal": "send-horizonal";
|
|
6940
7028
|
"send-horizontal": "send-horizontal";
|
|
6941
7029
|
"send-to-back": "send-to-back";
|
|
@@ -6962,6 +7050,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6962
7050
|
"shield-off": "shield-off";
|
|
6963
7051
|
"shield-plus": "shield-plus";
|
|
6964
7052
|
"shield-question": "shield-question";
|
|
7053
|
+
"shield-question-mark": "shield-question-mark";
|
|
6965
7054
|
"shield-user": "shield-user";
|
|
6966
7055
|
"shield-x": "shield-x";
|
|
6967
7056
|
ship: "ship";
|
|
@@ -7024,6 +7113,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7024
7113
|
"spline-pointer": "spline-pointer";
|
|
7025
7114
|
"split-square-horizontal": "split-square-horizontal";
|
|
7026
7115
|
"split-square-vertical": "split-square-vertical";
|
|
7116
|
+
spool: "spool";
|
|
7027
7117
|
"spray-can": "spray-can";
|
|
7028
7118
|
sprout: "sprout";
|
|
7029
7119
|
square: "square";
|
|
@@ -7094,6 +7184,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7094
7184
|
"squares-subtract": "squares-subtract";
|
|
7095
7185
|
"squares-unite": "squares-unite";
|
|
7096
7186
|
squircle: "squircle";
|
|
7187
|
+
"squircle-dashed": "squircle-dashed";
|
|
7097
7188
|
squirrel: "squirrel";
|
|
7098
7189
|
stamp: "stamp";
|
|
7099
7190
|
star: "star";
|
|
@@ -7126,7 +7217,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7126
7217
|
sword: "sword";
|
|
7127
7218
|
swords: "swords";
|
|
7128
7219
|
syringe: "syringe";
|
|
7129
|
-
table: "table";
|
|
7130
7220
|
"table-2": "table-2";
|
|
7131
7221
|
"table-cells-merge": "table-cells-merge";
|
|
7132
7222
|
"table-cells-split": "table-cells-split";
|
|
@@ -7144,7 +7234,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7144
7234
|
"tally-4": "tally-4";
|
|
7145
7235
|
"tally-5": "tally-5";
|
|
7146
7236
|
tangent: "tangent";
|
|
7147
|
-
target: "target";
|
|
7148
7237
|
telescope: "telescope";
|
|
7149
7238
|
tent: "tent";
|
|
7150
7239
|
"tent-tree": "tent-tree";
|
|
@@ -7154,7 +7243,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7154
7243
|
"test-tube-2": "test-tube-2";
|
|
7155
7244
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
7156
7245
|
"test-tubes": "test-tubes";
|
|
7157
|
-
text: "text";
|
|
7158
7246
|
"text-cursor": "text-cursor";
|
|
7159
7247
|
"text-cursor-input": "text-cursor-input";
|
|
7160
7248
|
"text-quote": "text-quote";
|
|
@@ -7176,12 +7264,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7176
7264
|
"ticket-x": "ticket-x";
|
|
7177
7265
|
tickets: "tickets";
|
|
7178
7266
|
"tickets-plane": "tickets-plane";
|
|
7179
|
-
timer: "timer";
|
|
7180
7267
|
"timer-off": "timer-off";
|
|
7181
7268
|
"timer-reset": "timer-reset";
|
|
7182
7269
|
"toggle-left": "toggle-left";
|
|
7183
7270
|
"toggle-right": "toggle-right";
|
|
7184
7271
|
toilet: "toilet";
|
|
7272
|
+
"tool-case": "tool-case";
|
|
7185
7273
|
tornado: "tornado";
|
|
7186
7274
|
torus: "torus";
|
|
7187
7275
|
touchpad: "touchpad";
|
|
@@ -7274,6 +7362,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7274
7362
|
"utility-pole": "utility-pole";
|
|
7275
7363
|
variable: "variable";
|
|
7276
7364
|
vault: "vault";
|
|
7365
|
+
"vector-square": "vector-square";
|
|
7277
7366
|
vegan: "vegan";
|
|
7278
7367
|
"venetian-mask": "venetian-mask";
|
|
7279
7368
|
venus: "venus";
|
|
@@ -7281,10 +7370,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7281
7370
|
verified: "verified";
|
|
7282
7371
|
vibrate: "vibrate";
|
|
7283
7372
|
"vibrate-off": "vibrate-off";
|
|
7284
|
-
video: "video";
|
|
7285
7373
|
"video-off": "video-off";
|
|
7286
7374
|
videotape: "videotape";
|
|
7287
|
-
view: "view";
|
|
7288
7375
|
voicemail: "voicemail";
|
|
7289
7376
|
volleyball: "volleyball";
|
|
7290
7377
|
volume: "volume";
|
|
@@ -7311,10 +7398,10 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7311
7398
|
webhook: "webhook";
|
|
7312
7399
|
"webhook-off": "webhook-off";
|
|
7313
7400
|
weight: "weight";
|
|
7314
|
-
wheat: "wheat";
|
|
7315
7401
|
"wheat-off": "wheat-off";
|
|
7316
7402
|
"whole-word": "whole-word";
|
|
7317
7403
|
wifi: "wifi";
|
|
7404
|
+
"wifi-cog": "wifi-cog";
|
|
7318
7405
|
"wifi-high": "wifi-high";
|
|
7319
7406
|
"wifi-low": "wifi-low";
|
|
7320
7407
|
"wifi-off": "wifi-off";
|
|
@@ -7328,7 +7415,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7328
7415
|
worm: "worm";
|
|
7329
7416
|
"wrap-text": "wrap-text";
|
|
7330
7417
|
wrench: "wrench";
|
|
7331
|
-
x: "x";
|
|
7332
7418
|
"x-circle": "x-circle";
|
|
7333
7419
|
"x-octagon": "x-octagon";
|
|
7334
7420
|
"x-square": "x-square";
|
|
@@ -7339,7 +7425,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7339
7425
|
"zoom-out": "zoom-out";
|
|
7340
7426
|
}>>;
|
|
7341
7427
|
label: z.ZodString;
|
|
7342
|
-
description: z.ZodOptional<z.ZodString>;
|
|
7343
7428
|
collapsible: z.ZodOptional<z.ZodBoolean>;
|
|
7344
7429
|
collapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7345
7430
|
link: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -7347,12 +7432,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7347
7432
|
file: z.ZodString;
|
|
7348
7433
|
label: z.ZodOptional<z.ZodString>;
|
|
7349
7434
|
}, z.core.$strip>]>>;
|
|
7350
|
-
display: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
7435
|
+
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7436
|
+
hide: "hide";
|
|
7437
|
+
always: "always";
|
|
7351
7438
|
auth: "auth";
|
|
7352
7439
|
anon: "anon";
|
|
7353
|
-
|
|
7354
|
-
|
|
7355
|
-
|
|
7440
|
+
}>, z.ZodCustom<(params: {
|
|
7441
|
+
context: ZudokuContext;
|
|
7442
|
+
auth: UseAuthReturn;
|
|
7443
|
+
}) => boolean, (params: {
|
|
7444
|
+
context: ZudokuContext;
|
|
7445
|
+
auth: UseAuthReturn;
|
|
7446
|
+
}) => boolean>]>>>;
|
|
7356
7447
|
}, z.core.$strip>;
|
|
7357
7448
|
export type InputNavigationItem = z.infer<typeof InputNavigationDocSchema> | z.infer<typeof InputNavigationLinkSchema> | z.infer<typeof InputNavigationCustomPageSchema> | (z.infer<typeof BaseInputNavigationCategorySchema> & {
|
|
7358
7449
|
items: InputNavigationItem[];
|