zudoku 0.0.0-f46233e4 → 0.0.0-f49b3531
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/client.d.ts +8 -0
- package/dist/app/entry.server.js +14 -1
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/main.d.ts +91 -1
- package/dist/app/main.js +5 -1
- package/dist/app/main.js.map +1 -1
- package/dist/config/config.d.ts +15 -41
- package/dist/config/validators/BuildSchema.d.ts +5 -4
- package/dist/config/validators/BuildSchema.js +5 -2
- package/dist/config/validators/BuildSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +141 -81
- package/dist/config/validators/NavigationSchema.js +2 -4
- package/dist/config/validators/NavigationSchema.js.map +1 -1
- package/dist/config/validators/ProtectedRoutesSchema.d.ts +1 -1
- package/dist/config/validators/icon-types.d.ts +1 -1
- package/dist/config/validators/icon-types.js +15 -0
- package/dist/config/validators/icon-types.js.map +1 -1
- package/dist/config/validators/validate.d.ts +217 -20
- package/dist/config/validators/validate.js +57 -13
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/config/validators/validate.test.js +43 -0
- package/dist/config/validators/validate.test.js.map +1 -1
- package/dist/flat-config.d.ts +43 -8
- package/dist/lib/auth/issuer.js +3 -0
- package/dist/lib/auth/issuer.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +18 -10
- package/dist/lib/authentication/components/OAuthErrorPage.js +1 -1
- package/dist/lib/authentication/components/OAuthErrorPage.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.js +6 -5
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/components/SignOut.js +6 -6
- package/dist/lib/authentication/components/SignOut.js.map +1 -1
- package/dist/lib/authentication/components/SignUp.js +5 -5
- package/dist/lib/authentication/components/SignUp.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +3 -2
- package/dist/lib/authentication/hook.js +12 -8
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/auth0.js +13 -4
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/providers/azureb2c.d.ts +4 -4
- package/dist/lib/authentication/providers/azureb2c.js +3 -3
- package/dist/lib/authentication/providers/azureb2c.js.map +1 -1
- package/dist/lib/authentication/providers/clerk.js +2 -2
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/firebase.d.ts +4 -0
- package/dist/lib/authentication/providers/firebase.js +215 -0
- package/dist/lib/authentication/providers/firebase.js.map +1 -0
- package/dist/lib/authentication/providers/openid.d.ts +7 -7
- package/dist/lib/authentication/providers/openid.js +5 -3
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/authentication/providers/supabase/SupabaseAuthUI.d.ts +8 -0
- package/dist/lib/authentication/providers/supabase/SupabaseAuthUI.js +39 -0
- package/dist/lib/authentication/providers/supabase/SupabaseAuthUI.js.map +1 -0
- package/dist/lib/authentication/providers/supabase.js +30 -31
- package/dist/lib/authentication/providers/supabase.js.map +1 -1
- package/dist/lib/authentication/state.d.ts +1 -5
- package/dist/lib/authentication/state.js +2 -14
- package/dist/lib/authentication/state.js.map +1 -1
- package/dist/lib/authentication/ui/ZudokuAuthUi.d.ts +24 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js +124 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Apple.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Apple.js +4 -0
- package/dist/lib/authentication/ui/icons/Apple.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Facebook.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Facebook.js +4 -0
- package/dist/lib/authentication/ui/icons/Facebook.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Github.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Github.js +4 -0
- package/dist/lib/authentication/ui/icons/Github.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Google.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Google.js +4 -0
- package/dist/lib/authentication/ui/icons/Google.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Microsoft.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js +4 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js.map +1 -0
- package/dist/lib/authentication/ui/icons/X.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/X.js +4 -0
- package/dist/lib/authentication/ui/icons/X.js.map +1 -0
- package/dist/lib/components/Autocomplete.d.ts +3 -1
- package/dist/lib/components/Autocomplete.js +6 -2
- package/dist/lib/components/Autocomplete.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +1 -1
- package/dist/lib/components/Heading.js +1 -5
- package/dist/lib/components/Heading.js.map +1 -1
- package/dist/lib/components/Layout.js +3 -2
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/Main.js +1 -1
- package/dist/lib/components/Main.js.map +1 -1
- package/dist/lib/components/Mermaid.d.ts +7 -0
- package/dist/lib/components/Mermaid.js +42 -0
- package/dist/lib/components/Mermaid.js.map +1 -0
- package/dist/lib/components/Zudoku.js +5 -8
- package/dist/lib/components/Zudoku.js.map +1 -1
- package/dist/lib/components/cache.d.ts +3 -1
- package/dist/lib/components/cache.js +3 -5
- package/dist/lib/components/cache.js.map +1 -1
- package/dist/lib/components/index.d.ts +3 -4
- package/dist/lib/components/navigation/NavigationItem.js +2 -2
- package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
- package/dist/lib/components/navigation/Toc.js +1 -1
- package/dist/lib/components/navigation/Toc.js.map +1 -1
- package/dist/lib/core/RouteGuard.d.ts +1 -1
- package/dist/lib/core/RouteGuard.js +12 -20
- package/dist/lib/core/RouteGuard.js.map +1 -1
- package/dist/lib/core/ZudokuContext.d.ts +1 -0
- package/dist/lib/core/ZudokuContext.js +2 -0
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/__internal.d.ts +1 -1
- package/dist/lib/core/plugins.d.ts +3 -3
- package/dist/lib/errors/ErrorAlert.js +1 -1
- package/dist/lib/errors/RouterError.d.ts +3 -1
- package/dist/lib/errors/RouterError.js +3 -2
- package/dist/lib/errors/RouterError.js.map +1 -1
- package/dist/lib/hooks/index.d.ts +3 -3
- package/dist/lib/oas/graphql/index.js +17 -0
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/index.js +7 -3
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js +4 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
- package/dist/lib/plugins/markdown/MdxPage.d.ts +2 -1
- package/dist/lib/plugins/markdown/MdxPage.js +28 -4
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/assets/ChatGPTLogo.d.ts +2 -0
- package/dist/lib/plugins/markdown/assets/ChatGPTLogo.js +3 -0
- package/dist/lib/plugins/markdown/assets/ChatGPTLogo.js.map +1 -0
- package/dist/lib/plugins/markdown/assets/ClaudeLogo.d.ts +2 -0
- package/dist/lib/plugins/markdown/assets/ClaudeLogo.js +3 -0
- package/dist/lib/plugins/markdown/assets/ClaudeLogo.js.map +1 -0
- package/dist/lib/plugins/markdown/index.d.ts +3 -1
- package/dist/lib/plugins/markdown/index.js +1 -1
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +1 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js +2 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -1
- package/dist/lib/plugins/openapi/DownloadSchemaButton.d.ts +3 -0
- package/dist/lib/plugins/openapi/DownloadSchemaButton.js +47 -0
- package/dist/lib/plugins/openapi/DownloadSchemaButton.js.map +1 -0
- package/dist/lib/plugins/openapi/Endpoint.js +3 -6
- package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.d.ts +5 -0
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.js +10 -0
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.js.map +1 -0
- package/dist/lib/plugins/openapi/OasProvider.js +22 -13
- package/dist/lib/plugins/openapi/OasProvider.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.js +21 -7
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationListItem.d.ts +3 -2
- package/dist/lib/plugins/openapi/OperationListItem.js +7 -3
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterList.js +7 -4
- package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js +17 -6
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +9 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +5 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +4 -2
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +26 -4
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.d.ts +3 -2
- package/dist/lib/plugins/openapi/Sidecar.js +65 -33
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarBox.js +4 -4
- package/dist/lib/plugins/openapi/SidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.d.ts +9 -2
- package/dist/lib/plugins/openapi/SidecarExamples.js +24 -43
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
- package/dist/lib/plugins/openapi/components/ConstValue.js +1 -1
- package/dist/lib/plugins/openapi/components/ConstValue.js.map +1 -1
- package/dist/lib/plugins/openapi/components/EnumValues.js +1 -1
- package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -1
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.d.ts +4 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js +5 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js.map +1 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.js +5 -6
- package/dist/lib/plugins/openapi/components/ResponseContent.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 +6 -0
- package/dist/lib/plugins/openapi/graphql/graphql.js +8 -0
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.js +16 -15
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +29 -13
- package/dist/lib/plugins/openapi/playground/BodyPanel.js +67 -15
- package/dist/lib/plugins/openapi/playground/BodyPanel.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js +2 -2
- package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +1 -1
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Headers.js +23 -83
- package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +10 -2
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js +8 -1
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PathParams.js +2 -3
- package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Playground.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/Playground.js +69 -27
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +3 -2
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/QueryParams.js +16 -40
- package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.d.ts +2 -1
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js +10 -2
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/request-panel/MultipartField.d.ts +8 -0
- package/dist/lib/plugins/openapi/playground/request-panel/MultipartField.js +19 -0
- package/dist/lib/plugins/openapi/playground/request-panel/MultipartField.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js +1 -1
- package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.js +540 -0
- package/dist/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.d.ts +40 -0
- package/dist/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.js +205 -0
- package/dist/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/Highlight.d.ts +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +23 -21
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js +2 -0
- package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +17 -8
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js +20 -13
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/UnionView.js +2 -5
- package/dist/lib/plugins/openapi/schema/UnionView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/union-helpers.js +0 -1
- package/dist/lib/plugins/openapi/schema/union-helpers.js.map +1 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +9 -11
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
- package/dist/lib/plugins/openapi/util/getRoutes.d.ts +6 -1
- package/dist/lib/plugins/openapi/util/getRoutes.js +29 -2
- package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -1
- package/dist/lib/shiki.d.ts +1 -1
- package/dist/lib/shiki.js +13 -2
- package/dist/lib/shiki.js.map +1 -1
- package/dist/lib/ui/Badge.d.ts +3 -3
- package/dist/lib/ui/Badge.js +9 -7
- package/dist/lib/ui/Badge.js.map +1 -1
- package/dist/lib/ui/Button.d.ts +2 -2
- package/dist/lib/ui/Button.js +9 -7
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/ButtonGroup.d.ts +11 -0
- package/dist/lib/ui/ButtonGroup.js +28 -0
- package/dist/lib/ui/ButtonGroup.js.map +1 -0
- package/dist/lib/ui/Callout.d.ts +5 -5
- package/dist/lib/ui/Callout.js +5 -5
- package/dist/lib/ui/Callout.js.map +1 -1
- package/dist/lib/ui/Checkbox.d.ts +2 -2
- package/dist/lib/ui/Checkbox.js +4 -4
- package/dist/lib/ui/Checkbox.js.map +1 -1
- package/dist/lib/ui/CodeBlock.d.ts +0 -1
- package/dist/lib/ui/CodeBlock.js +1 -1
- package/dist/lib/ui/CodeBlock.js.map +1 -1
- package/dist/lib/ui/Collapsible.d.ts +4 -4
- package/dist/lib/ui/Collapsible.js +11 -4
- package/dist/lib/ui/Collapsible.js.map +1 -1
- package/dist/lib/ui/Command.d.ts +3 -3
- package/dist/lib/ui/Dialog.d.ts +12 -18
- package/dist/lib/ui/Dialog.js +30 -17
- package/dist/lib/ui/Dialog.js.map +1 -1
- package/dist/lib/ui/DropdownMenu.d.ts +21 -23
- package/dist/lib/ui/DropdownMenu.js +47 -32
- package/dist/lib/ui/DropdownMenu.js.map +1 -1
- package/dist/lib/ui/EmbeddedCodeBlock.d.ts +3 -2
- package/dist/lib/ui/EmbeddedCodeBlock.js +4 -3
- package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/dist/lib/ui/Frame.d.ts +8 -0
- package/dist/lib/ui/Frame.js +22 -0
- package/dist/lib/ui/Frame.js.map +1 -0
- package/dist/lib/ui/Item.d.ts +23 -0
- package/dist/lib/ui/Item.js +67 -0
- package/dist/lib/ui/Item.js.map +1 -0
- package/dist/lib/ui/NativeSelect.d.ts +5 -0
- package/dist/lib/ui/NativeSelect.js +14 -0
- package/dist/lib/ui/NativeSelect.js.map +1 -0
- package/dist/lib/ui/ReactComponentDoc.d.ts +1 -1
- package/dist/lib/ui/ReactComponentDoc.js +2 -2
- package/dist/lib/ui/ReactComponentDoc.js.map +1 -1
- package/dist/lib/ui/Select.d.ts +13 -11
- package/dist/lib/ui/Select.js +34 -23
- package/dist/lib/ui/Select.js.map +1 -1
- package/dist/lib/ui/Separator.d.ts +4 -0
- package/dist/lib/ui/Separator.js +8 -0
- package/dist/lib/ui/Separator.js.map +1 -0
- package/dist/lib/ui/SyntaxHighlight.d.ts +1 -0
- package/dist/lib/ui/SyntaxHighlight.js.map +1 -1
- package/dist/lib/ui/Tooltip.d.ts +7 -7
- package/dist/lib/ui/Tooltip.js +16 -10
- package/dist/lib/ui/Tooltip.js.map +1 -1
- package/dist/lib/util/MdxComponents.d.ts +3 -1
- package/dist/lib/util/MdxComponents.js +5 -2
- package/dist/lib/util/MdxComponents.js.map +1 -1
- package/dist/lib/util/createVariantComponent.d.ts +5 -2
- package/dist/lib/util/createVariantComponent.js +5 -2
- package/dist/lib/util/createVariantComponent.js.map +1 -1
- package/dist/lib/util/flattenAllOf.d.ts +4 -0
- package/dist/lib/util/flattenAllOf.js +65 -0
- package/dist/lib/util/flattenAllOf.js.map +1 -0
- package/dist/lib/util/flattenAllOf.test.d.ts +1 -0
- package/dist/lib/util/flattenAllOf.test.js +532 -0
- package/dist/lib/util/flattenAllOf.test.js.map +1 -0
- package/dist/lib/util/readFrontmatter.d.ts +6 -0
- package/dist/lib/util/readFrontmatter.js +12 -0
- package/dist/lib/util/readFrontmatter.js.map +1 -0
- package/dist/lib/util/syncZustandState.d.ts +5 -0
- package/dist/lib/util/syncZustandState.js +14 -0
- package/dist/lib/util/syncZustandState.js.map +1 -0
- package/dist/vite/api/SchemaManager.d.ts +8 -1
- package/dist/vite/api/SchemaManager.js +52 -21
- package/dist/vite/api/SchemaManager.js.map +1 -1
- package/dist/vite/api/SchemaManager.test.js +2 -2
- package/dist/vite/api/SchemaManager.test.js.map +1 -1
- package/dist/vite/config.js +7 -1
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/llms.d.ts +5 -21
- package/dist/vite/llms.js +6 -22
- package/dist/vite/llms.js.map +1 -1
- package/dist/vite/mdx/remark-last-modified.js +57 -3
- package/dist/vite/mdx/remark-last-modified.js.map +1 -1
- package/dist/vite/plugin-api.js +55 -8
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-docs.js +1 -1
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-frontmatter.js +3 -5
- package/dist/vite/plugin-frontmatter.js.map +1 -1
- package/dist/vite/plugin-markdown-export.d.ts +21 -0
- package/dist/vite/plugin-markdown-export.js +140 -0
- package/dist/vite/plugin-markdown-export.js.map +1 -0
- package/dist/vite/plugin-mdx.js +36 -30
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-theme.js +10 -1
- package/dist/vite/plugin-theme.js.map +1 -1
- package/dist/vite/plugin.js +2 -2
- package/dist/vite/plugin.js.map +1 -1
- package/dist/vite/prerender/prerender.js +16 -2
- package/dist/vite/prerender/prerender.js.map +1 -1
- package/lib/Button-CynVW1JV.js +53 -0
- package/lib/Button-CynVW1JV.js.map +1 -0
- package/lib/ClaudeLogo-CQsD9FSE.js +69 -0
- package/lib/ClaudeLogo-CQsD9FSE.js.map +1 -0
- package/lib/{Command-CJY6q3PF.js → Command-CUcrW3qs.js} +2 -2
- package/lib/{Command-CJY6q3PF.js.map → Command-CUcrW3qs.js.map} +1 -1
- package/lib/Dialog-BQciPiHN.js +144 -0
- package/lib/Dialog-BQciPiHN.js.map +1 -0
- package/lib/Drawer-Ci7XwhqT.js.map +1 -1
- package/lib/DropdownMenu-C8SX_-S_.js +104 -0
- package/lib/DropdownMenu-C8SX_-S_.js.map +1 -0
- package/lib/{ErrorAlert-Brvk_U1i.js → ErrorAlert-DIAHXN-9.js} +1672 -1717
- package/lib/ErrorAlert-DIAHXN-9.js.map +1 -0
- package/lib/MdxPage-CToX1iz4.js +210 -0
- package/lib/MdxPage-CToX1iz4.js.map +1 -0
- package/lib/Mermaid-CIFixY6C.js +102 -0
- package/lib/Mermaid-CIFixY6C.js.map +1 -0
- package/lib/{OAuthErrorPage-Cv2Cy3L8.js → OAuthErrorPage-CDzcHoil.js} +8 -8
- package/lib/{OAuthErrorPage-Cv2Cy3L8.js.map → OAuthErrorPage-CDzcHoil.js.map} +1 -1
- package/lib/OasProvider-D-wsHfuu.js +40 -0
- package/lib/OasProvider-D-wsHfuu.js.map +1 -0
- package/lib/OperationList-CXzOpoWE.js +5826 -0
- package/lib/OperationList-CXzOpoWE.js.map +1 -0
- package/lib/RouteGuard-DiaKAMHn.js +77 -0
- package/lib/RouteGuard-DiaKAMHn.js.map +1 -0
- package/lib/RouterError-1-NKnG44.js +42 -0
- package/lib/RouterError-1-NKnG44.js.map +1 -0
- package/lib/{SchemaList-B_ZSBIZQ.js → SchemaList-CHrngA1M.js} +8 -8
- package/lib/{SchemaList-B_ZSBIZQ.js.map → SchemaList-CHrngA1M.js.map} +1 -1
- package/lib/SchemaView-DY2icvgb.js +586 -0
- package/lib/SchemaView-DY2icvgb.js.map +1 -0
- package/lib/Select-VmDZ-nKe.js +337 -0
- package/lib/Select-VmDZ-nKe.js.map +1 -0
- package/lib/SignUp-BLUkETOw.js +50 -0
- package/lib/SignUp-BLUkETOw.js.map +1 -0
- package/lib/{SyntaxHighlight-BvPom2Ah.js → SyntaxHighlight-1j0414xp.js} +1173 -1114
- package/lib/{SyntaxHighlight-BvPom2Ah.js.map → SyntaxHighlight-1j0414xp.js.map} +1 -1
- package/lib/{Toc-BUvPY3Eo.js → Toc-CTm13F_w.js} +5 -5
- package/lib/Toc-CTm13F_w.js.map +1 -0
- package/lib/{ZudokuContext-CgNnmIdS.js → ZudokuContext-np1wheDl.js} +132 -131
- package/lib/ZudokuContext-np1wheDl.js.map +1 -0
- package/lib/{chunk-PVWAREVJ-BO6B-RAk.js → chunk-PVWAREVJ-dLIqswPy.js} +7 -7
- package/lib/{chunk-PVWAREVJ-BO6B-RAk.js.map → chunk-PVWAREVJ-dLIqswPy.js.map} +1 -1
- package/lib/{circular-Dj7ksnVz.js → circular-eRT--o-y.js} +6360 -5953
- package/lib/circular-eRT--o-y.js.map +1 -0
- package/lib/{createServer-TdhrtpF-.js → createServer-D6HuM2S7.js} +4807 -4306
- package/lib/createServer-D6HuM2S7.js.map +1 -0
- package/lib/{errors-Djd93sGS.js → errors-ODjXi95k.js} +2 -2
- package/lib/{errors-Djd93sGS.js.map → errors-ODjXi95k.js.map} +1 -1
- package/lib/hook-CvSwcbk6.js +40 -0
- package/lib/hook-CvSwcbk6.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/{index-B9_Vty7t.js → index-DJ41jB0p.js} +2 -2
- package/lib/{index-B9_Vty7t.js.map → index-DJ41jB0p.js.map} +1 -1
- package/lib/index-DnD6WW3O.js +3700 -0
- package/lib/index-DnD6WW3O.js.map +1 -0
- package/lib/index-DnMgJWrI.js +133 -0
- package/lib/index-DnMgJWrI.js.map +1 -0
- package/lib/{index-D5H3egwO.js → index-KKR7Wp0D.js} +150 -149
- package/lib/index-KKR7Wp0D.js.map +1 -0
- package/lib/index.esm-BYObtETB.js +1294 -0
- package/lib/index.esm-BYObtETB.js.map +1 -0
- package/lib/{mutation-Byfu-P5y.js → mutation-BlmnL5qL.js} +2 -2
- package/lib/{mutation-Byfu-P5y.js.map → mutation-BlmnL5qL.js.map} +1 -1
- package/lib/ui/ActionButton.js +1 -1
- package/lib/ui/Badge.js +27 -13
- package/lib/ui/Badge.js.map +1 -1
- package/lib/ui/Button.js +26 -24
- package/lib/ui/Button.js.map +1 -1
- package/lib/ui/ButtonGroup.js +77 -0
- package/lib/ui/ButtonGroup.js.map +1 -0
- package/lib/ui/Callout.js +18 -18
- package/lib/ui/Callout.js.map +1 -1
- package/lib/ui/Checkbox.js +29 -26
- package/lib/ui/Checkbox.js.map +1 -1
- package/lib/ui/CodeBlock.js +217 -7
- package/lib/ui/CodeBlock.js.map +1 -1
- package/lib/ui/Collapsible.js +32 -5
- package/lib/ui/Collapsible.js.map +1 -1
- package/lib/ui/Command.js +1 -1
- package/lib/ui/Dialog.js +135 -105
- package/lib/ui/Dialog.js.map +1 -1
- package/lib/ui/DropdownMenu.js +227 -140
- package/lib/ui/DropdownMenu.js.map +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +35 -31
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/lib/ui/Form.js +1 -1
- package/lib/ui/Frame.js +81 -0
- package/lib/ui/Frame.js.map +1 -0
- package/lib/ui/Item.js +188 -0
- package/lib/ui/Item.js.map +1 -0
- package/lib/ui/NativeSelect.js +57 -0
- package/lib/ui/NativeSelect.js.map +1 -0
- package/lib/ui/ReactComponentDoc.js +13 -13
- package/lib/ui/ReactComponentDoc.js.map +1 -1
- package/lib/ui/Select.js +166 -116
- package/lib/ui/Select.js.map +1 -1
- package/lib/ui/Separator.js +27 -0
- package/lib/ui/Separator.js.map +1 -0
- package/lib/ui/SyntaxHighlight.js +3 -3
- package/lib/ui/Tabs.js +10 -10
- package/lib/ui/Tooltip.js +55 -28
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/zudoku.__internal.js +348 -348
- package/lib/zudoku.__internal.js.map +1 -1
- package/lib/zudoku.auth-auth0.js +24 -23
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-azureb2c.js +28 -28
- package/lib/zudoku.auth-azureb2c.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +40 -40
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +53 -56
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.auth-supabase.js +108 -52
- package/lib/zudoku.auth-supabase.js.map +1 -1
- package/lib/zudoku.components.js +6 -6
- package/lib/zudoku.hooks.js +11 -24
- package/lib/zudoku.hooks.js.map +1 -1
- package/lib/zudoku.mermaid.js +10 -0
- package/lib/zudoku.mermaid.js.map +1 -0
- package/lib/zudoku.plugin-api-catalog.js +5 -5
- package/lib/zudoku.plugin-api-keys.js +275 -250
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +1 -1
- package/lib/zudoku.plugin-markdown.js +10 -9
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +6 -7
- package/lib/zudoku.plugin-openapi.js.map +1 -1
- package/lib/zudoku.plugin-redirect.js +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +40 -40
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js.map +1 -1
- package/lib/zudoku.router.js +2 -2
- package/package.json +63 -42
- package/src/app/entry.server.tsx +16 -6
- package/src/app/main.css +61 -9
- package/src/app/main.tsx +5 -1
- package/src/lib/auth/issuer.ts +3 -0
- package/src/lib/authentication/authentication.ts +23 -5
- package/src/lib/authentication/components/OAuthErrorPage.tsx +1 -1
- package/src/lib/authentication/components/SignIn.tsx +7 -5
- package/src/lib/authentication/components/SignOut.tsx +7 -6
- package/src/lib/authentication/components/SignUp.tsx +5 -8
- package/src/lib/authentication/hook.ts +21 -10
- package/src/lib/authentication/providers/auth0.tsx +14 -4
- package/src/lib/authentication/providers/azureb2c.tsx +10 -3
- package/src/lib/authentication/providers/clerk.tsx +9 -2
- package/src/lib/authentication/providers/firebase.tsx +284 -0
- package/src/lib/authentication/providers/openid.tsx +20 -15
- package/src/lib/authentication/providers/supabase/SupabaseAuthUI.tsx +75 -0
- package/src/lib/authentication/providers/supabase.tsx +55 -44
- package/src/lib/authentication/state.ts +3 -23
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +335 -0
- package/src/lib/authentication/ui/icons/Apple.tsx +10 -0
- package/src/lib/authentication/ui/icons/Facebook.tsx +15 -0
- package/src/lib/authentication/ui/icons/Github.tsx +16 -0
- package/src/lib/authentication/ui/icons/Google.tsx +16 -0
- package/src/lib/authentication/ui/icons/Microsoft.tsx +12 -0
- package/src/lib/authentication/ui/icons/X.tsx +10 -0
- package/src/lib/components/Autocomplete.tsx +11 -2
- package/src/lib/components/Heading.tsx +2 -6
- package/src/lib/components/Layout.tsx +3 -2
- package/src/lib/components/Main.tsx +1 -1
- package/src/lib/components/Mermaid.tsx +68 -0
- package/src/lib/components/Zudoku.tsx +7 -10
- package/src/lib/components/cache.ts +9 -5
- package/src/lib/components/navigation/NavigationItem.tsx +7 -20
- package/src/lib/components/navigation/Toc.tsx +3 -3
- package/src/lib/core/RouteGuard.tsx +41 -21
- package/src/lib/core/ZudokuContext.ts +3 -0
- package/src/lib/core/plugins.ts +2 -2
- package/src/lib/errors/ErrorAlert.tsx +1 -1
- package/src/lib/errors/RouterError.tsx +7 -2
- package/src/lib/oas/graphql/index.ts +19 -0
- package/src/lib/oas/parser/index.ts +8 -3
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +11 -7
- package/src/lib/plugins/markdown/MdxPage.tsx +125 -8
- package/src/lib/plugins/markdown/assets/ChatGPTLogo.tsx +11 -0
- package/src/lib/plugins/markdown/assets/ClaudeLogo.tsx +19 -0
- package/src/lib/plugins/markdown/index.tsx +5 -7
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +5 -3
- package/src/lib/plugins/openapi/DownloadSchemaButton.tsx +115 -0
- package/src/lib/plugins/openapi/Endpoint.tsx +20 -27
- package/src/lib/plugins/openapi/GeneratedExampleSidecarBox.tsx +52 -0
- package/src/lib/plugins/openapi/OasProvider.tsx +30 -17
- package/src/lib/plugins/openapi/OperationList.tsx +53 -23
- package/src/lib/plugins/openapi/OperationListItem.tsx +20 -12
- package/src/lib/plugins/openapi/ParameterList.tsx +37 -23
- package/src/lib/plugins/openapi/ParameterListItem.tsx +105 -54
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +48 -7
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +101 -33
- package/src/lib/plugins/openapi/Sidecar.tsx +152 -72
- package/src/lib/plugins/openapi/SidecarBox.tsx +26 -4
- package/src/lib/plugins/openapi/SidecarExamples.tsx +91 -79
- package/src/lib/plugins/openapi/components/ConstValue.tsx +1 -1
- package/src/lib/plugins/openapi/components/EnumValues.tsx +2 -2
- package/src/lib/plugins/openapi/components/NonHighlightedCode.tsx +22 -0
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +63 -53
- package/src/lib/plugins/openapi/graphql/gql.ts +3 -3
- package/src/lib/plugins/openapi/graphql/graphql.ts +14 -0
- package/src/lib/plugins/openapi/index.tsx +26 -37
- package/src/lib/plugins/openapi/interfaces.ts +28 -7
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +246 -30
- package/src/lib/plugins/openapi/playground/CollapsibleHeader.tsx +10 -6
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +3 -2
- package/src/lib/plugins/openapi/playground/Headers.tsx +103 -219
- package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +33 -1
- package/src/lib/plugins/openapi/playground/PathParams.tsx +26 -34
- package/src/lib/plugins/openapi/playground/Playground.tsx +87 -34
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +10 -31
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +82 -136
- package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +20 -1
- package/src/lib/plugins/openapi/playground/request-panel/MultipartField.tsx +91 -0
- package/src/lib/plugins/openapi/playground/request-panel/UrlQueryParams.tsx +1 -1
- package/src/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.tsx +872 -0
- package/src/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.ts +349 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.tsx +2 -2
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +102 -62
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +1 -1
- package/src/lib/plugins/openapi/playground/useRememberSkipLoginDialog.tsx +3 -0
- package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +1 -1
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +89 -55
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +82 -53
- package/src/lib/plugins/openapi/schema/UnionView.tsx +6 -17
- package/src/lib/plugins/openapi/schema/union-helpers.ts +0 -1
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +11 -11
- package/src/lib/plugins/openapi/util/getRoutes.tsx +35 -3
- package/src/lib/shiki.ts +16 -2
- package/src/lib/ui/Badge.tsx +21 -12
- package/src/lib/ui/Button.tsx +10 -9
- package/src/lib/ui/ButtonGroup.tsx +82 -0
- package/src/lib/ui/Callout.tsx +10 -5
- package/src/lib/ui/Checkbox.tsx +23 -24
- package/src/lib/ui/CodeBlock.tsx +3 -4
- package/src/lib/ui/Collapsible.tsx +26 -4
- package/src/lib/ui/Dialog.tsx +112 -106
- package/src/lib/ui/DropdownMenu.tsx +226 -170
- package/src/lib/ui/EmbeddedCodeBlock.tsx +24 -19
- package/src/lib/ui/Frame.tsx +81 -0
- package/src/lib/ui/Item.tsx +192 -0
- package/src/lib/ui/NativeSelect.tsx +47 -0
- package/src/lib/ui/ReactComponentDoc.tsx +17 -17
- package/src/lib/ui/Select.tsx +153 -126
- package/src/lib/ui/Separator.tsx +25 -0
- package/src/lib/ui/SyntaxHighlight.tsx +6 -1
- package/src/lib/ui/Tooltip.tsx +54 -32
- package/src/lib/util/MdxComponents.tsx +5 -5
- package/src/lib/util/createVariantComponent.tsx +31 -5
- package/src/lib/util/flattenAllOf.test.ts +637 -0
- package/src/lib/util/flattenAllOf.ts +101 -0
- package/src/lib/util/readFrontmatter.ts +13 -0
- package/src/lib/util/syncZustandState.ts +22 -0
- package/src/shiki/langs/hurl.js +1 -0
- package/src/shiki/langs/kdl.js +1 -0
- package/src/shiki/langs/markdown-nix.js +1 -0
- package/src/shiki/langs/openscad.js +1 -0
- package/src/shiki/langs/pkl.js +1 -0
- package/src/shiki/langs/rosmsg.js +1 -0
- package/dist/lib/plugins/openapi/playground/InlineInput.d.ts +0 -4
- package/dist/lib/plugins/openapi/playground/InlineInput.js +0 -3
- package/dist/lib/plugins/openapi/playground/InlineInput.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.d.ts +0 -5
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.js +0 -7
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.d.ts +0 -4
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.js +0 -10
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.d.ts +0 -5
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.js +0 -16
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.js.map +0 -1
- package/dist/vite/plugin-llms.d.ts +0 -10
- package/dist/vite/plugin-llms.js +0 -105
- package/dist/vite/plugin-llms.js.map +0 -1
- package/lib/Button-DmS4u8Lj.js +0 -51
- package/lib/Button-DmS4u8Lj.js.map +0 -1
- package/lib/CodeBlock-CanTUJLl.js +0 -221
- package/lib/CodeBlock-CanTUJLl.js.map +0 -1
- package/lib/Dialog-BOl0QB3n.js +0 -114
- package/lib/Dialog-BOl0QB3n.js.map +0 -1
- package/lib/ErrorAlert-Brvk_U1i.js.map +0 -1
- package/lib/MdxPage-CGX72MLx.js +0 -111
- package/lib/MdxPage-CGX72MLx.js.map +0 -1
- package/lib/OasProvider-Doa4bJq6.js +0 -36
- package/lib/OasProvider-Doa4bJq6.js.map +0 -1
- package/lib/OperationList-B6v941u4.js +0 -5436
- package/lib/OperationList-B6v941u4.js.map +0 -1
- package/lib/Pagination-DLOX63A8.js +0 -37
- package/lib/Pagination-DLOX63A8.js.map +0 -1
- package/lib/RouteGuard-hHAwglew.js +0 -56
- package/lib/RouteGuard-hHAwglew.js.map +0 -1
- package/lib/RouterError-DFKYoA21.js +0 -41
- package/lib/RouterError-DFKYoA21.js.map +0 -1
- package/lib/SchemaView-P_vs98kp.js +0 -458
- package/lib/SchemaView-P_vs98kp.js.map +0 -1
- package/lib/Select-Cd4-iVtm.js +0 -372
- package/lib/Select-Cd4-iVtm.js.map +0 -1
- package/lib/SignUp-DmGhKaYB.js +0 -56
- package/lib/SignUp-DmGhKaYB.js.map +0 -1
- package/lib/Toc-BUvPY3Eo.js.map +0 -1
- package/lib/ZudokuContext-CgNnmIdS.js.map +0 -1
- package/lib/circular-Dj7ksnVz.js.map +0 -1
- package/lib/createServer-TdhrtpF-.js.map +0 -1
- package/lib/hook-CN3s-MdA.js +0 -31
- package/lib/hook-CN3s-MdA.js.map +0 -1
- package/lib/index-D5H3egwO.js.map +0 -1
- package/lib/index-flQyzEBn.js +0 -3421
- package/lib/index-flQyzEBn.js.map +0 -1
- package/lib/index.esm-DpgNxKa2.js +0 -1267
- package/lib/index.esm-DpgNxKa2.js.map +0 -1
- package/lib/useExposedProps-B8NHdNRq.js +0 -113
- package/lib/useExposedProps-B8NHdNRq.js.map +0 -1
- package/src/lib/plugins/openapi/playground/InlineInput.tsx +0 -6
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.tsx +0 -36
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.tsx +0 -25
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.tsx +0 -42
|
@@ -8,9 +8,9 @@ declare const InputNavigationCategoryLinkDocSchema: z.ZodUnion<readonly [z.ZodSt
|
|
|
8
8
|
}, z.core.$strip>]>;
|
|
9
9
|
export declare const DisplaySchema: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10
10
|
hide: "hide";
|
|
11
|
-
always: "always";
|
|
12
11
|
auth: "auth";
|
|
13
12
|
anon: "anon";
|
|
13
|
+
always: "always";
|
|
14
14
|
}>, z.ZodCustom<(params: {
|
|
15
15
|
context: ZudokuContext;
|
|
16
16
|
auth: UseAuthReturn;
|
|
@@ -23,41 +23,35 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
23
23
|
file: z.ZodString;
|
|
24
24
|
path: z.ZodOptional<z.ZodString>;
|
|
25
25
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
26
|
-
|
|
27
|
-
map: "map";
|
|
28
|
-
filter: "filter";
|
|
29
|
-
key: "key";
|
|
26
|
+
info: "info";
|
|
30
27
|
replace: "replace";
|
|
31
28
|
search: "search";
|
|
29
|
+
slice: "slice";
|
|
32
30
|
split: "split";
|
|
33
31
|
repeat: "repeat";
|
|
34
32
|
anchor: "anchor";
|
|
35
33
|
bold: "bold";
|
|
36
34
|
link: "link";
|
|
37
|
-
info: "info";
|
|
38
|
-
tags: "tags";
|
|
39
|
-
contact: "contact";
|
|
40
|
-
type: "type";
|
|
41
35
|
binary: "binary";
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
server: "server";
|
|
45
|
-
tag: "tag";
|
|
36
|
+
map: "map";
|
|
37
|
+
filter: "filter";
|
|
46
38
|
file: "file";
|
|
47
|
-
delete: "delete";
|
|
48
39
|
code: "code";
|
|
49
40
|
copy: "copy";
|
|
50
41
|
focus: "focus";
|
|
51
42
|
pause: "pause";
|
|
52
43
|
play: "play";
|
|
53
44
|
scroll: "scroll";
|
|
45
|
+
key: "key";
|
|
54
46
|
merge: "merge";
|
|
55
47
|
ghost: "ghost";
|
|
56
48
|
expand: "expand";
|
|
49
|
+
type: "type";
|
|
57
50
|
send: "send";
|
|
58
51
|
grid: "grid";
|
|
59
52
|
group: "group";
|
|
60
53
|
heading: "heading";
|
|
54
|
+
list: "list";
|
|
61
55
|
menu: "menu";
|
|
62
56
|
navigation: "navigation";
|
|
63
57
|
option: "option";
|
|
@@ -68,20 +62,18 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
68
62
|
text: "text";
|
|
69
63
|
mouse: "mouse";
|
|
70
64
|
pen: "pen";
|
|
65
|
+
section: "section";
|
|
66
|
+
video: "video";
|
|
71
67
|
circle: "circle";
|
|
68
|
+
image: "image";
|
|
69
|
+
view: "view";
|
|
72
70
|
target: "target";
|
|
73
71
|
radius: "radius";
|
|
74
72
|
scale: "scale";
|
|
75
73
|
x: "x";
|
|
76
|
-
shell: "shell";
|
|
77
74
|
baseline: "baseline";
|
|
78
75
|
terminal: "terminal";
|
|
79
76
|
square: "square";
|
|
80
|
-
move: "move";
|
|
81
|
-
section: "section";
|
|
82
|
-
video: "video";
|
|
83
|
-
image: "image";
|
|
84
|
-
view: "view";
|
|
85
77
|
"a-arrow-down": "a-arrow-down";
|
|
86
78
|
"a-arrow-up": "a-arrow-up";
|
|
87
79
|
"a-large-small": "a-large-small";
|
|
@@ -300,6 +292,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
300
292
|
binoculars: "binoculars";
|
|
301
293
|
biohazard: "biohazard";
|
|
302
294
|
bird: "bird";
|
|
295
|
+
birdhouse: "birdhouse";
|
|
303
296
|
bitcoin: "bitcoin";
|
|
304
297
|
blend: "blend";
|
|
305
298
|
blinds: "blinds";
|
|
@@ -608,10 +601,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
608
601
|
"concierge-bell": "concierge-bell";
|
|
609
602
|
cone: "cone";
|
|
610
603
|
construction: "construction";
|
|
604
|
+
contact: "contact";
|
|
611
605
|
"contact-2": "contact-2";
|
|
612
606
|
"contact-round": "contact-round";
|
|
613
607
|
container: "container";
|
|
614
608
|
contrast: "contrast";
|
|
609
|
+
cookie: "cookie";
|
|
615
610
|
"cooking-pot": "cooking-pot";
|
|
616
611
|
"copy-check": "copy-check";
|
|
617
612
|
"copy-minus": "copy-minus";
|
|
@@ -647,6 +642,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
647
642
|
"database-zap": "database-zap";
|
|
648
643
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
649
644
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
645
|
+
delete: "delete";
|
|
650
646
|
dessert: "dessert";
|
|
651
647
|
diameter: "diameter";
|
|
652
648
|
diamond: "diamond";
|
|
@@ -712,6 +708,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
712
708
|
eraser: "eraser";
|
|
713
709
|
"ethernet-port": "ethernet-port";
|
|
714
710
|
euro: "euro";
|
|
711
|
+
"ev-charger": "ev-charger";
|
|
715
712
|
"external-link": "external-link";
|
|
716
713
|
eye: "eye";
|
|
717
714
|
"eye-closed": "eye-closed";
|
|
@@ -875,6 +872,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
875
872
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
876
873
|
gamepad: "gamepad";
|
|
877
874
|
"gamepad-2": "gamepad-2";
|
|
875
|
+
"gamepad-directional": "gamepad-directional";
|
|
878
876
|
"gantt-chart": "gantt-chart";
|
|
879
877
|
"gantt-chart-square": "gantt-chart-square";
|
|
880
878
|
gauge: "gauge";
|
|
@@ -976,6 +974,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
976
974
|
hotel: "hotel";
|
|
977
975
|
hourglass: "hourglass";
|
|
978
976
|
house: "house";
|
|
977
|
+
"house-heart": "house-heart";
|
|
979
978
|
"house-plug": "house-plug";
|
|
980
979
|
"house-plus": "house-plus";
|
|
981
980
|
"house-wifi": "house-wifi";
|
|
@@ -1062,10 +1061,13 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1062
1061
|
"list-check": "list-check";
|
|
1063
1062
|
"list-checks": "list-checks";
|
|
1064
1063
|
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
1064
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
1065
1065
|
"list-collapse": "list-collapse";
|
|
1066
1066
|
"list-end": "list-end";
|
|
1067
1067
|
"list-filter": "list-filter";
|
|
1068
1068
|
"list-filter-plus": "list-filter-plus";
|
|
1069
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
1070
|
+
"list-indent-increase": "list-indent-increase";
|
|
1069
1071
|
"list-minus": "list-minus";
|
|
1070
1072
|
"list-music": "list-music";
|
|
1071
1073
|
"list-ordered": "list-ordered";
|
|
@@ -1179,6 +1181,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1179
1181
|
"minus-square": "minus-square";
|
|
1180
1182
|
monitor: "monitor";
|
|
1181
1183
|
"monitor-check": "monitor-check";
|
|
1184
|
+
"monitor-cloud": "monitor-cloud";
|
|
1182
1185
|
"monitor-cog": "monitor-cog";
|
|
1183
1186
|
"monitor-dot": "monitor-dot";
|
|
1184
1187
|
"monitor-down": "monitor-down";
|
|
@@ -1194,6 +1197,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1194
1197
|
"moon-star": "moon-star";
|
|
1195
1198
|
"more-horizontal": "more-horizontal";
|
|
1196
1199
|
"more-vertical": "more-vertical";
|
|
1200
|
+
motorbike: "motorbike";
|
|
1197
1201
|
mountain: "mountain";
|
|
1198
1202
|
"mountain-snow": "mountain-snow";
|
|
1199
1203
|
"mouse-off": "mouse-off";
|
|
@@ -1202,6 +1206,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1202
1206
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
1203
1207
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
1204
1208
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
1209
|
+
move: "move";
|
|
1205
1210
|
"move-3-d": "move-3-d";
|
|
1206
1211
|
"move-3d": "move-3d";
|
|
1207
1212
|
"move-diagonal": "move-diagonal";
|
|
@@ -1477,6 +1482,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1477
1482
|
"send-to-back": "send-to-back";
|
|
1478
1483
|
"separator-horizontal": "separator-horizontal";
|
|
1479
1484
|
"separator-vertical": "separator-vertical";
|
|
1485
|
+
server: "server";
|
|
1480
1486
|
"server-cog": "server-cog";
|
|
1481
1487
|
"server-crash": "server-crash";
|
|
1482
1488
|
"server-off": "server-off";
|
|
@@ -1486,6 +1492,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1486
1492
|
share: "share";
|
|
1487
1493
|
"share-2": "share-2";
|
|
1488
1494
|
sheet: "sheet";
|
|
1495
|
+
shell: "shell";
|
|
1489
1496
|
shield: "shield";
|
|
1490
1497
|
"shield-alert": "shield-alert";
|
|
1491
1498
|
"shield-ban": "shield-ban";
|
|
@@ -1678,6 +1685,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1678
1685
|
tablet: "tablet";
|
|
1679
1686
|
"tablet-smartphone": "tablet-smartphone";
|
|
1680
1687
|
tablets: "tablets";
|
|
1688
|
+
tag: "tag";
|
|
1689
|
+
tags: "tags";
|
|
1681
1690
|
"tally-1": "tally-1";
|
|
1682
1691
|
"tally-2": "tally-2";
|
|
1683
1692
|
"tally-3": "tally-3";
|
|
@@ -1692,12 +1701,18 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1692
1701
|
"test-tube-2": "test-tube-2";
|
|
1693
1702
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
1694
1703
|
"test-tubes": "test-tubes";
|
|
1704
|
+
"text-align-center": "text-align-center";
|
|
1705
|
+
"text-align-end": "text-align-end";
|
|
1706
|
+
"text-align-justify": "text-align-justify";
|
|
1707
|
+
"text-align-start": "text-align-start";
|
|
1695
1708
|
"text-cursor": "text-cursor";
|
|
1696
1709
|
"text-cursor-input": "text-cursor-input";
|
|
1710
|
+
"text-initial": "text-initial";
|
|
1697
1711
|
"text-quote": "text-quote";
|
|
1698
1712
|
"text-search": "text-search";
|
|
1699
1713
|
"text-select": "text-select";
|
|
1700
1714
|
"text-selection": "text-selection";
|
|
1715
|
+
"text-wrap": "text-wrap";
|
|
1701
1716
|
theater: "theater";
|
|
1702
1717
|
thermometer: "thermometer";
|
|
1703
1718
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -1896,9 +1911,9 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1896
1911
|
}, z.core.$strip>>;
|
|
1897
1912
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1898
1913
|
hide: "hide";
|
|
1899
|
-
always: "always";
|
|
1900
1914
|
auth: "auth";
|
|
1901
1915
|
anon: "anon";
|
|
1916
|
+
always: "always";
|
|
1902
1917
|
}>, z.ZodCustom<(params: {
|
|
1903
1918
|
context: ZudokuContext;
|
|
1904
1919
|
auth: UseAuthReturn;
|
|
@@ -1916,41 +1931,35 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1916
1931
|
_blank: "_blank";
|
|
1917
1932
|
}>>;
|
|
1918
1933
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1919
|
-
|
|
1920
|
-
map: "map";
|
|
1921
|
-
filter: "filter";
|
|
1922
|
-
key: "key";
|
|
1934
|
+
info: "info";
|
|
1923
1935
|
replace: "replace";
|
|
1924
1936
|
search: "search";
|
|
1937
|
+
slice: "slice";
|
|
1925
1938
|
split: "split";
|
|
1926
1939
|
repeat: "repeat";
|
|
1927
1940
|
anchor: "anchor";
|
|
1928
1941
|
bold: "bold";
|
|
1929
1942
|
link: "link";
|
|
1930
|
-
info: "info";
|
|
1931
|
-
tags: "tags";
|
|
1932
|
-
contact: "contact";
|
|
1933
|
-
type: "type";
|
|
1934
1943
|
binary: "binary";
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
server: "server";
|
|
1938
|
-
tag: "tag";
|
|
1944
|
+
map: "map";
|
|
1945
|
+
filter: "filter";
|
|
1939
1946
|
file: "file";
|
|
1940
|
-
delete: "delete";
|
|
1941
1947
|
code: "code";
|
|
1942
1948
|
copy: "copy";
|
|
1943
1949
|
focus: "focus";
|
|
1944
1950
|
pause: "pause";
|
|
1945
1951
|
play: "play";
|
|
1946
1952
|
scroll: "scroll";
|
|
1953
|
+
key: "key";
|
|
1947
1954
|
merge: "merge";
|
|
1948
1955
|
ghost: "ghost";
|
|
1949
1956
|
expand: "expand";
|
|
1957
|
+
type: "type";
|
|
1950
1958
|
send: "send";
|
|
1951
1959
|
grid: "grid";
|
|
1952
1960
|
group: "group";
|
|
1953
1961
|
heading: "heading";
|
|
1962
|
+
list: "list";
|
|
1954
1963
|
menu: "menu";
|
|
1955
1964
|
navigation: "navigation";
|
|
1956
1965
|
option: "option";
|
|
@@ -1961,20 +1970,18 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1961
1970
|
text: "text";
|
|
1962
1971
|
mouse: "mouse";
|
|
1963
1972
|
pen: "pen";
|
|
1973
|
+
section: "section";
|
|
1974
|
+
video: "video";
|
|
1964
1975
|
circle: "circle";
|
|
1976
|
+
image: "image";
|
|
1977
|
+
view: "view";
|
|
1965
1978
|
target: "target";
|
|
1966
1979
|
radius: "radius";
|
|
1967
1980
|
scale: "scale";
|
|
1968
1981
|
x: "x";
|
|
1969
|
-
shell: "shell";
|
|
1970
1982
|
baseline: "baseline";
|
|
1971
1983
|
terminal: "terminal";
|
|
1972
1984
|
square: "square";
|
|
1973
|
-
move: "move";
|
|
1974
|
-
section: "section";
|
|
1975
|
-
video: "video";
|
|
1976
|
-
image: "image";
|
|
1977
|
-
view: "view";
|
|
1978
1985
|
"a-arrow-down": "a-arrow-down";
|
|
1979
1986
|
"a-arrow-up": "a-arrow-up";
|
|
1980
1987
|
"a-large-small": "a-large-small";
|
|
@@ -2193,6 +2200,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2193
2200
|
binoculars: "binoculars";
|
|
2194
2201
|
biohazard: "biohazard";
|
|
2195
2202
|
bird: "bird";
|
|
2203
|
+
birdhouse: "birdhouse";
|
|
2196
2204
|
bitcoin: "bitcoin";
|
|
2197
2205
|
blend: "blend";
|
|
2198
2206
|
blinds: "blinds";
|
|
@@ -2501,10 +2509,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2501
2509
|
"concierge-bell": "concierge-bell";
|
|
2502
2510
|
cone: "cone";
|
|
2503
2511
|
construction: "construction";
|
|
2512
|
+
contact: "contact";
|
|
2504
2513
|
"contact-2": "contact-2";
|
|
2505
2514
|
"contact-round": "contact-round";
|
|
2506
2515
|
container: "container";
|
|
2507
2516
|
contrast: "contrast";
|
|
2517
|
+
cookie: "cookie";
|
|
2508
2518
|
"cooking-pot": "cooking-pot";
|
|
2509
2519
|
"copy-check": "copy-check";
|
|
2510
2520
|
"copy-minus": "copy-minus";
|
|
@@ -2540,6 +2550,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2540
2550
|
"database-zap": "database-zap";
|
|
2541
2551
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
2542
2552
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
2553
|
+
delete: "delete";
|
|
2543
2554
|
dessert: "dessert";
|
|
2544
2555
|
diameter: "diameter";
|
|
2545
2556
|
diamond: "diamond";
|
|
@@ -2605,6 +2616,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2605
2616
|
eraser: "eraser";
|
|
2606
2617
|
"ethernet-port": "ethernet-port";
|
|
2607
2618
|
euro: "euro";
|
|
2619
|
+
"ev-charger": "ev-charger";
|
|
2608
2620
|
"external-link": "external-link";
|
|
2609
2621
|
eye: "eye";
|
|
2610
2622
|
"eye-closed": "eye-closed";
|
|
@@ -2768,6 +2780,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2768
2780
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
2769
2781
|
gamepad: "gamepad";
|
|
2770
2782
|
"gamepad-2": "gamepad-2";
|
|
2783
|
+
"gamepad-directional": "gamepad-directional";
|
|
2771
2784
|
"gantt-chart": "gantt-chart";
|
|
2772
2785
|
"gantt-chart-square": "gantt-chart-square";
|
|
2773
2786
|
gauge: "gauge";
|
|
@@ -2869,6 +2882,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2869
2882
|
hotel: "hotel";
|
|
2870
2883
|
hourglass: "hourglass";
|
|
2871
2884
|
house: "house";
|
|
2885
|
+
"house-heart": "house-heart";
|
|
2872
2886
|
"house-plug": "house-plug";
|
|
2873
2887
|
"house-plus": "house-plus";
|
|
2874
2888
|
"house-wifi": "house-wifi";
|
|
@@ -2955,10 +2969,13 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2955
2969
|
"list-check": "list-check";
|
|
2956
2970
|
"list-checks": "list-checks";
|
|
2957
2971
|
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
2972
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
2958
2973
|
"list-collapse": "list-collapse";
|
|
2959
2974
|
"list-end": "list-end";
|
|
2960
2975
|
"list-filter": "list-filter";
|
|
2961
2976
|
"list-filter-plus": "list-filter-plus";
|
|
2977
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
2978
|
+
"list-indent-increase": "list-indent-increase";
|
|
2962
2979
|
"list-minus": "list-minus";
|
|
2963
2980
|
"list-music": "list-music";
|
|
2964
2981
|
"list-ordered": "list-ordered";
|
|
@@ -3072,6 +3089,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3072
3089
|
"minus-square": "minus-square";
|
|
3073
3090
|
monitor: "monitor";
|
|
3074
3091
|
"monitor-check": "monitor-check";
|
|
3092
|
+
"monitor-cloud": "monitor-cloud";
|
|
3075
3093
|
"monitor-cog": "monitor-cog";
|
|
3076
3094
|
"monitor-dot": "monitor-dot";
|
|
3077
3095
|
"monitor-down": "monitor-down";
|
|
@@ -3087,6 +3105,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3087
3105
|
"moon-star": "moon-star";
|
|
3088
3106
|
"more-horizontal": "more-horizontal";
|
|
3089
3107
|
"more-vertical": "more-vertical";
|
|
3108
|
+
motorbike: "motorbike";
|
|
3090
3109
|
mountain: "mountain";
|
|
3091
3110
|
"mountain-snow": "mountain-snow";
|
|
3092
3111
|
"mouse-off": "mouse-off";
|
|
@@ -3095,6 +3114,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3095
3114
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
3096
3115
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
3097
3116
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
3117
|
+
move: "move";
|
|
3098
3118
|
"move-3-d": "move-3-d";
|
|
3099
3119
|
"move-3d": "move-3d";
|
|
3100
3120
|
"move-diagonal": "move-diagonal";
|
|
@@ -3370,6 +3390,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3370
3390
|
"send-to-back": "send-to-back";
|
|
3371
3391
|
"separator-horizontal": "separator-horizontal";
|
|
3372
3392
|
"separator-vertical": "separator-vertical";
|
|
3393
|
+
server: "server";
|
|
3373
3394
|
"server-cog": "server-cog";
|
|
3374
3395
|
"server-crash": "server-crash";
|
|
3375
3396
|
"server-off": "server-off";
|
|
@@ -3379,6 +3400,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3379
3400
|
share: "share";
|
|
3380
3401
|
"share-2": "share-2";
|
|
3381
3402
|
sheet: "sheet";
|
|
3403
|
+
shell: "shell";
|
|
3382
3404
|
shield: "shield";
|
|
3383
3405
|
"shield-alert": "shield-alert";
|
|
3384
3406
|
"shield-ban": "shield-ban";
|
|
@@ -3571,6 +3593,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3571
3593
|
tablet: "tablet";
|
|
3572
3594
|
"tablet-smartphone": "tablet-smartphone";
|
|
3573
3595
|
tablets: "tablets";
|
|
3596
|
+
tag: "tag";
|
|
3597
|
+
tags: "tags";
|
|
3574
3598
|
"tally-1": "tally-1";
|
|
3575
3599
|
"tally-2": "tally-2";
|
|
3576
3600
|
"tally-3": "tally-3";
|
|
@@ -3585,12 +3609,18 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3585
3609
|
"test-tube-2": "test-tube-2";
|
|
3586
3610
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
3587
3611
|
"test-tubes": "test-tubes";
|
|
3612
|
+
"text-align-center": "text-align-center";
|
|
3613
|
+
"text-align-end": "text-align-end";
|
|
3614
|
+
"text-align-justify": "text-align-justify";
|
|
3615
|
+
"text-align-start": "text-align-start";
|
|
3588
3616
|
"text-cursor": "text-cursor";
|
|
3589
3617
|
"text-cursor-input": "text-cursor-input";
|
|
3618
|
+
"text-initial": "text-initial";
|
|
3590
3619
|
"text-quote": "text-quote";
|
|
3591
3620
|
"text-search": "text-search";
|
|
3592
3621
|
"text-select": "text-select";
|
|
3593
3622
|
"text-selection": "text-selection";
|
|
3623
|
+
"text-wrap": "text-wrap";
|
|
3594
3624
|
theater: "theater";
|
|
3595
3625
|
thermometer: "thermometer";
|
|
3596
3626
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -3788,9 +3818,9 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3788
3818
|
}, z.core.$strip>>;
|
|
3789
3819
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3790
3820
|
hide: "hide";
|
|
3791
|
-
always: "always";
|
|
3792
3821
|
auth: "auth";
|
|
3793
3822
|
anon: "anon";
|
|
3823
|
+
always: "always";
|
|
3794
3824
|
}>, z.ZodCustom<(params: {
|
|
3795
3825
|
context: ZudokuContext;
|
|
3796
3826
|
auth: UseAuthReturn;
|
|
@@ -3805,41 +3835,35 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3805
3835
|
label: z.ZodOptional<z.ZodString>;
|
|
3806
3836
|
element: z.ZodAny;
|
|
3807
3837
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3808
|
-
|
|
3809
|
-
map: "map";
|
|
3810
|
-
filter: "filter";
|
|
3811
|
-
key: "key";
|
|
3838
|
+
info: "info";
|
|
3812
3839
|
replace: "replace";
|
|
3813
3840
|
search: "search";
|
|
3841
|
+
slice: "slice";
|
|
3814
3842
|
split: "split";
|
|
3815
3843
|
repeat: "repeat";
|
|
3816
3844
|
anchor: "anchor";
|
|
3817
3845
|
bold: "bold";
|
|
3818
3846
|
link: "link";
|
|
3819
|
-
info: "info";
|
|
3820
|
-
tags: "tags";
|
|
3821
|
-
contact: "contact";
|
|
3822
|
-
type: "type";
|
|
3823
3847
|
binary: "binary";
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
server: "server";
|
|
3827
|
-
tag: "tag";
|
|
3848
|
+
map: "map";
|
|
3849
|
+
filter: "filter";
|
|
3828
3850
|
file: "file";
|
|
3829
|
-
delete: "delete";
|
|
3830
3851
|
code: "code";
|
|
3831
3852
|
copy: "copy";
|
|
3832
3853
|
focus: "focus";
|
|
3833
3854
|
pause: "pause";
|
|
3834
3855
|
play: "play";
|
|
3835
3856
|
scroll: "scroll";
|
|
3857
|
+
key: "key";
|
|
3836
3858
|
merge: "merge";
|
|
3837
3859
|
ghost: "ghost";
|
|
3838
3860
|
expand: "expand";
|
|
3861
|
+
type: "type";
|
|
3839
3862
|
send: "send";
|
|
3840
3863
|
grid: "grid";
|
|
3841
3864
|
group: "group";
|
|
3842
3865
|
heading: "heading";
|
|
3866
|
+
list: "list";
|
|
3843
3867
|
menu: "menu";
|
|
3844
3868
|
navigation: "navigation";
|
|
3845
3869
|
option: "option";
|
|
@@ -3850,20 +3874,18 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3850
3874
|
text: "text";
|
|
3851
3875
|
mouse: "mouse";
|
|
3852
3876
|
pen: "pen";
|
|
3877
|
+
section: "section";
|
|
3878
|
+
video: "video";
|
|
3853
3879
|
circle: "circle";
|
|
3880
|
+
image: "image";
|
|
3881
|
+
view: "view";
|
|
3854
3882
|
target: "target";
|
|
3855
3883
|
radius: "radius";
|
|
3856
3884
|
scale: "scale";
|
|
3857
3885
|
x: "x";
|
|
3858
|
-
shell: "shell";
|
|
3859
3886
|
baseline: "baseline";
|
|
3860
3887
|
terminal: "terminal";
|
|
3861
3888
|
square: "square";
|
|
3862
|
-
move: "move";
|
|
3863
|
-
section: "section";
|
|
3864
|
-
video: "video";
|
|
3865
|
-
image: "image";
|
|
3866
|
-
view: "view";
|
|
3867
3889
|
"a-arrow-down": "a-arrow-down";
|
|
3868
3890
|
"a-arrow-up": "a-arrow-up";
|
|
3869
3891
|
"a-large-small": "a-large-small";
|
|
@@ -4082,6 +4104,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4082
4104
|
binoculars: "binoculars";
|
|
4083
4105
|
biohazard: "biohazard";
|
|
4084
4106
|
bird: "bird";
|
|
4107
|
+
birdhouse: "birdhouse";
|
|
4085
4108
|
bitcoin: "bitcoin";
|
|
4086
4109
|
blend: "blend";
|
|
4087
4110
|
blinds: "blinds";
|
|
@@ -4390,10 +4413,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4390
4413
|
"concierge-bell": "concierge-bell";
|
|
4391
4414
|
cone: "cone";
|
|
4392
4415
|
construction: "construction";
|
|
4416
|
+
contact: "contact";
|
|
4393
4417
|
"contact-2": "contact-2";
|
|
4394
4418
|
"contact-round": "contact-round";
|
|
4395
4419
|
container: "container";
|
|
4396
4420
|
contrast: "contrast";
|
|
4421
|
+
cookie: "cookie";
|
|
4397
4422
|
"cooking-pot": "cooking-pot";
|
|
4398
4423
|
"copy-check": "copy-check";
|
|
4399
4424
|
"copy-minus": "copy-minus";
|
|
@@ -4429,6 +4454,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4429
4454
|
"database-zap": "database-zap";
|
|
4430
4455
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
4431
4456
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
4457
|
+
delete: "delete";
|
|
4432
4458
|
dessert: "dessert";
|
|
4433
4459
|
diameter: "diameter";
|
|
4434
4460
|
diamond: "diamond";
|
|
@@ -4494,6 +4520,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4494
4520
|
eraser: "eraser";
|
|
4495
4521
|
"ethernet-port": "ethernet-port";
|
|
4496
4522
|
euro: "euro";
|
|
4523
|
+
"ev-charger": "ev-charger";
|
|
4497
4524
|
"external-link": "external-link";
|
|
4498
4525
|
eye: "eye";
|
|
4499
4526
|
"eye-closed": "eye-closed";
|
|
@@ -4657,6 +4684,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4657
4684
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
4658
4685
|
gamepad: "gamepad";
|
|
4659
4686
|
"gamepad-2": "gamepad-2";
|
|
4687
|
+
"gamepad-directional": "gamepad-directional";
|
|
4660
4688
|
"gantt-chart": "gantt-chart";
|
|
4661
4689
|
"gantt-chart-square": "gantt-chart-square";
|
|
4662
4690
|
gauge: "gauge";
|
|
@@ -4758,6 +4786,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4758
4786
|
hotel: "hotel";
|
|
4759
4787
|
hourglass: "hourglass";
|
|
4760
4788
|
house: "house";
|
|
4789
|
+
"house-heart": "house-heart";
|
|
4761
4790
|
"house-plug": "house-plug";
|
|
4762
4791
|
"house-plus": "house-plus";
|
|
4763
4792
|
"house-wifi": "house-wifi";
|
|
@@ -4844,10 +4873,13 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4844
4873
|
"list-check": "list-check";
|
|
4845
4874
|
"list-checks": "list-checks";
|
|
4846
4875
|
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
4876
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
4847
4877
|
"list-collapse": "list-collapse";
|
|
4848
4878
|
"list-end": "list-end";
|
|
4849
4879
|
"list-filter": "list-filter";
|
|
4850
4880
|
"list-filter-plus": "list-filter-plus";
|
|
4881
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
4882
|
+
"list-indent-increase": "list-indent-increase";
|
|
4851
4883
|
"list-minus": "list-minus";
|
|
4852
4884
|
"list-music": "list-music";
|
|
4853
4885
|
"list-ordered": "list-ordered";
|
|
@@ -4961,6 +4993,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4961
4993
|
"minus-square": "minus-square";
|
|
4962
4994
|
monitor: "monitor";
|
|
4963
4995
|
"monitor-check": "monitor-check";
|
|
4996
|
+
"monitor-cloud": "monitor-cloud";
|
|
4964
4997
|
"monitor-cog": "monitor-cog";
|
|
4965
4998
|
"monitor-dot": "monitor-dot";
|
|
4966
4999
|
"monitor-down": "monitor-down";
|
|
@@ -4976,6 +5009,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4976
5009
|
"moon-star": "moon-star";
|
|
4977
5010
|
"more-horizontal": "more-horizontal";
|
|
4978
5011
|
"more-vertical": "more-vertical";
|
|
5012
|
+
motorbike: "motorbike";
|
|
4979
5013
|
mountain: "mountain";
|
|
4980
5014
|
"mountain-snow": "mountain-snow";
|
|
4981
5015
|
"mouse-off": "mouse-off";
|
|
@@ -4984,6 +5018,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4984
5018
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
4985
5019
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
4986
5020
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
5021
|
+
move: "move";
|
|
4987
5022
|
"move-3-d": "move-3-d";
|
|
4988
5023
|
"move-3d": "move-3d";
|
|
4989
5024
|
"move-diagonal": "move-diagonal";
|
|
@@ -5259,6 +5294,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5259
5294
|
"send-to-back": "send-to-back";
|
|
5260
5295
|
"separator-horizontal": "separator-horizontal";
|
|
5261
5296
|
"separator-vertical": "separator-vertical";
|
|
5297
|
+
server: "server";
|
|
5262
5298
|
"server-cog": "server-cog";
|
|
5263
5299
|
"server-crash": "server-crash";
|
|
5264
5300
|
"server-off": "server-off";
|
|
@@ -5268,6 +5304,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5268
5304
|
share: "share";
|
|
5269
5305
|
"share-2": "share-2";
|
|
5270
5306
|
sheet: "sheet";
|
|
5307
|
+
shell: "shell";
|
|
5271
5308
|
shield: "shield";
|
|
5272
5309
|
"shield-alert": "shield-alert";
|
|
5273
5310
|
"shield-ban": "shield-ban";
|
|
@@ -5460,6 +5497,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5460
5497
|
tablet: "tablet";
|
|
5461
5498
|
"tablet-smartphone": "tablet-smartphone";
|
|
5462
5499
|
tablets: "tablets";
|
|
5500
|
+
tag: "tag";
|
|
5501
|
+
tags: "tags";
|
|
5463
5502
|
"tally-1": "tally-1";
|
|
5464
5503
|
"tally-2": "tally-2";
|
|
5465
5504
|
"tally-3": "tally-3";
|
|
@@ -5474,12 +5513,18 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5474
5513
|
"test-tube-2": "test-tube-2";
|
|
5475
5514
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
5476
5515
|
"test-tubes": "test-tubes";
|
|
5516
|
+
"text-align-center": "text-align-center";
|
|
5517
|
+
"text-align-end": "text-align-end";
|
|
5518
|
+
"text-align-justify": "text-align-justify";
|
|
5519
|
+
"text-align-start": "text-align-start";
|
|
5477
5520
|
"text-cursor": "text-cursor";
|
|
5478
5521
|
"text-cursor-input": "text-cursor-input";
|
|
5522
|
+
"text-initial": "text-initial";
|
|
5479
5523
|
"text-quote": "text-quote";
|
|
5480
5524
|
"text-search": "text-search";
|
|
5481
5525
|
"text-select": "text-select";
|
|
5482
5526
|
"text-selection": "text-selection";
|
|
5527
|
+
"text-wrap": "text-wrap";
|
|
5483
5528
|
theater: "theater";
|
|
5484
5529
|
thermometer: "thermometer";
|
|
5485
5530
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -5677,9 +5722,9 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5677
5722
|
}, z.core.$strip>>;
|
|
5678
5723
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5679
5724
|
hide: "hide";
|
|
5680
|
-
always: "always";
|
|
5681
5725
|
auth: "auth";
|
|
5682
5726
|
anon: "anon";
|
|
5727
|
+
always: "always";
|
|
5683
5728
|
}>, z.ZodCustom<(params: {
|
|
5684
5729
|
context: ZudokuContext;
|
|
5685
5730
|
auth: UseAuthReturn;
|
|
@@ -5695,41 +5740,35 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5695
5740
|
declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
5696
5741
|
type: z.ZodLiteral<"category">;
|
|
5697
5742
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
5698
|
-
|
|
5699
|
-
map: "map";
|
|
5700
|
-
filter: "filter";
|
|
5701
|
-
key: "key";
|
|
5743
|
+
info: "info";
|
|
5702
5744
|
replace: "replace";
|
|
5703
5745
|
search: "search";
|
|
5746
|
+
slice: "slice";
|
|
5704
5747
|
split: "split";
|
|
5705
5748
|
repeat: "repeat";
|
|
5706
5749
|
anchor: "anchor";
|
|
5707
5750
|
bold: "bold";
|
|
5708
5751
|
link: "link";
|
|
5709
|
-
info: "info";
|
|
5710
|
-
tags: "tags";
|
|
5711
|
-
contact: "contact";
|
|
5712
|
-
type: "type";
|
|
5713
5752
|
binary: "binary";
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
server: "server";
|
|
5717
|
-
tag: "tag";
|
|
5753
|
+
map: "map";
|
|
5754
|
+
filter: "filter";
|
|
5718
5755
|
file: "file";
|
|
5719
|
-
delete: "delete";
|
|
5720
5756
|
code: "code";
|
|
5721
5757
|
copy: "copy";
|
|
5722
5758
|
focus: "focus";
|
|
5723
5759
|
pause: "pause";
|
|
5724
5760
|
play: "play";
|
|
5725
5761
|
scroll: "scroll";
|
|
5762
|
+
key: "key";
|
|
5726
5763
|
merge: "merge";
|
|
5727
5764
|
ghost: "ghost";
|
|
5728
5765
|
expand: "expand";
|
|
5766
|
+
type: "type";
|
|
5729
5767
|
send: "send";
|
|
5730
5768
|
grid: "grid";
|
|
5731
5769
|
group: "group";
|
|
5732
5770
|
heading: "heading";
|
|
5771
|
+
list: "list";
|
|
5733
5772
|
menu: "menu";
|
|
5734
5773
|
navigation: "navigation";
|
|
5735
5774
|
option: "option";
|
|
@@ -5740,20 +5779,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5740
5779
|
text: "text";
|
|
5741
5780
|
mouse: "mouse";
|
|
5742
5781
|
pen: "pen";
|
|
5782
|
+
section: "section";
|
|
5783
|
+
video: "video";
|
|
5743
5784
|
circle: "circle";
|
|
5785
|
+
image: "image";
|
|
5786
|
+
view: "view";
|
|
5744
5787
|
target: "target";
|
|
5745
5788
|
radius: "radius";
|
|
5746
5789
|
scale: "scale";
|
|
5747
5790
|
x: "x";
|
|
5748
|
-
shell: "shell";
|
|
5749
5791
|
baseline: "baseline";
|
|
5750
5792
|
terminal: "terminal";
|
|
5751
5793
|
square: "square";
|
|
5752
|
-
move: "move";
|
|
5753
|
-
section: "section";
|
|
5754
|
-
video: "video";
|
|
5755
|
-
image: "image";
|
|
5756
|
-
view: "view";
|
|
5757
5794
|
"a-arrow-down": "a-arrow-down";
|
|
5758
5795
|
"a-arrow-up": "a-arrow-up";
|
|
5759
5796
|
"a-large-small": "a-large-small";
|
|
@@ -5972,6 +6009,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5972
6009
|
binoculars: "binoculars";
|
|
5973
6010
|
biohazard: "biohazard";
|
|
5974
6011
|
bird: "bird";
|
|
6012
|
+
birdhouse: "birdhouse";
|
|
5975
6013
|
bitcoin: "bitcoin";
|
|
5976
6014
|
blend: "blend";
|
|
5977
6015
|
blinds: "blinds";
|
|
@@ -6280,10 +6318,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6280
6318
|
"concierge-bell": "concierge-bell";
|
|
6281
6319
|
cone: "cone";
|
|
6282
6320
|
construction: "construction";
|
|
6321
|
+
contact: "contact";
|
|
6283
6322
|
"contact-2": "contact-2";
|
|
6284
6323
|
"contact-round": "contact-round";
|
|
6285
6324
|
container: "container";
|
|
6286
6325
|
contrast: "contrast";
|
|
6326
|
+
cookie: "cookie";
|
|
6287
6327
|
"cooking-pot": "cooking-pot";
|
|
6288
6328
|
"copy-check": "copy-check";
|
|
6289
6329
|
"copy-minus": "copy-minus";
|
|
@@ -6319,6 +6359,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6319
6359
|
"database-zap": "database-zap";
|
|
6320
6360
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
6321
6361
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
6362
|
+
delete: "delete";
|
|
6322
6363
|
dessert: "dessert";
|
|
6323
6364
|
diameter: "diameter";
|
|
6324
6365
|
diamond: "diamond";
|
|
@@ -6384,6 +6425,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6384
6425
|
eraser: "eraser";
|
|
6385
6426
|
"ethernet-port": "ethernet-port";
|
|
6386
6427
|
euro: "euro";
|
|
6428
|
+
"ev-charger": "ev-charger";
|
|
6387
6429
|
"external-link": "external-link";
|
|
6388
6430
|
eye: "eye";
|
|
6389
6431
|
"eye-closed": "eye-closed";
|
|
@@ -6547,6 +6589,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6547
6589
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
6548
6590
|
gamepad: "gamepad";
|
|
6549
6591
|
"gamepad-2": "gamepad-2";
|
|
6592
|
+
"gamepad-directional": "gamepad-directional";
|
|
6550
6593
|
"gantt-chart": "gantt-chart";
|
|
6551
6594
|
"gantt-chart-square": "gantt-chart-square";
|
|
6552
6595
|
gauge: "gauge";
|
|
@@ -6648,6 +6691,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6648
6691
|
hotel: "hotel";
|
|
6649
6692
|
hourglass: "hourglass";
|
|
6650
6693
|
house: "house";
|
|
6694
|
+
"house-heart": "house-heart";
|
|
6651
6695
|
"house-plug": "house-plug";
|
|
6652
6696
|
"house-plus": "house-plus";
|
|
6653
6697
|
"house-wifi": "house-wifi";
|
|
@@ -6734,10 +6778,13 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6734
6778
|
"list-check": "list-check";
|
|
6735
6779
|
"list-checks": "list-checks";
|
|
6736
6780
|
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
6781
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
6737
6782
|
"list-collapse": "list-collapse";
|
|
6738
6783
|
"list-end": "list-end";
|
|
6739
6784
|
"list-filter": "list-filter";
|
|
6740
6785
|
"list-filter-plus": "list-filter-plus";
|
|
6786
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
6787
|
+
"list-indent-increase": "list-indent-increase";
|
|
6741
6788
|
"list-minus": "list-minus";
|
|
6742
6789
|
"list-music": "list-music";
|
|
6743
6790
|
"list-ordered": "list-ordered";
|
|
@@ -6851,6 +6898,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6851
6898
|
"minus-square": "minus-square";
|
|
6852
6899
|
monitor: "monitor";
|
|
6853
6900
|
"monitor-check": "monitor-check";
|
|
6901
|
+
"monitor-cloud": "monitor-cloud";
|
|
6854
6902
|
"monitor-cog": "monitor-cog";
|
|
6855
6903
|
"monitor-dot": "monitor-dot";
|
|
6856
6904
|
"monitor-down": "monitor-down";
|
|
@@ -6866,6 +6914,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6866
6914
|
"moon-star": "moon-star";
|
|
6867
6915
|
"more-horizontal": "more-horizontal";
|
|
6868
6916
|
"more-vertical": "more-vertical";
|
|
6917
|
+
motorbike: "motorbike";
|
|
6869
6918
|
mountain: "mountain";
|
|
6870
6919
|
"mountain-snow": "mountain-snow";
|
|
6871
6920
|
"mouse-off": "mouse-off";
|
|
@@ -6874,6 +6923,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6874
6923
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
6875
6924
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
6876
6925
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
6926
|
+
move: "move";
|
|
6877
6927
|
"move-3-d": "move-3-d";
|
|
6878
6928
|
"move-3d": "move-3d";
|
|
6879
6929
|
"move-diagonal": "move-diagonal";
|
|
@@ -7149,6 +7199,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7149
7199
|
"send-to-back": "send-to-back";
|
|
7150
7200
|
"separator-horizontal": "separator-horizontal";
|
|
7151
7201
|
"separator-vertical": "separator-vertical";
|
|
7202
|
+
server: "server";
|
|
7152
7203
|
"server-cog": "server-cog";
|
|
7153
7204
|
"server-crash": "server-crash";
|
|
7154
7205
|
"server-off": "server-off";
|
|
@@ -7158,6 +7209,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7158
7209
|
share: "share";
|
|
7159
7210
|
"share-2": "share-2";
|
|
7160
7211
|
sheet: "sheet";
|
|
7212
|
+
shell: "shell";
|
|
7161
7213
|
shield: "shield";
|
|
7162
7214
|
"shield-alert": "shield-alert";
|
|
7163
7215
|
"shield-ban": "shield-ban";
|
|
@@ -7350,6 +7402,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7350
7402
|
tablet: "tablet";
|
|
7351
7403
|
"tablet-smartphone": "tablet-smartphone";
|
|
7352
7404
|
tablets: "tablets";
|
|
7405
|
+
tag: "tag";
|
|
7406
|
+
tags: "tags";
|
|
7353
7407
|
"tally-1": "tally-1";
|
|
7354
7408
|
"tally-2": "tally-2";
|
|
7355
7409
|
"tally-3": "tally-3";
|
|
@@ -7364,12 +7418,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7364
7418
|
"test-tube-2": "test-tube-2";
|
|
7365
7419
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
7366
7420
|
"test-tubes": "test-tubes";
|
|
7421
|
+
"text-align-center": "text-align-center";
|
|
7422
|
+
"text-align-end": "text-align-end";
|
|
7423
|
+
"text-align-justify": "text-align-justify";
|
|
7424
|
+
"text-align-start": "text-align-start";
|
|
7367
7425
|
"text-cursor": "text-cursor";
|
|
7368
7426
|
"text-cursor-input": "text-cursor-input";
|
|
7427
|
+
"text-initial": "text-initial";
|
|
7369
7428
|
"text-quote": "text-quote";
|
|
7370
7429
|
"text-search": "text-search";
|
|
7371
7430
|
"text-select": "text-select";
|
|
7372
7431
|
"text-selection": "text-selection";
|
|
7432
|
+
"text-wrap": "text-wrap";
|
|
7373
7433
|
theater: "theater";
|
|
7374
7434
|
thermometer: "thermometer";
|
|
7375
7435
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -7560,9 +7620,9 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7560
7620
|
}, z.core.$strip>]>>;
|
|
7561
7621
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7562
7622
|
hide: "hide";
|
|
7563
|
-
always: "always";
|
|
7564
7623
|
auth: "auth";
|
|
7565
7624
|
anon: "anon";
|
|
7625
|
+
always: "always";
|
|
7566
7626
|
}>, z.ZodCustom<(params: {
|
|
7567
7627
|
context: ZudokuContext;
|
|
7568
7628
|
auth: UseAuthReturn;
|