zudoku 0.0.0-f36627bd → 0.0.0-f370c714
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 +1 -1
- 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/app/sentry.js +1 -1
- package/dist/cli/cli.d.ts +9 -0
- package/dist/cli/cli.js +4 -10
- package/dist/cli/cli.js.map +1 -1
- package/dist/cli/common/version-check.d.ts +2 -0
- package/dist/cli/common/version-check.js +58 -0
- package/dist/cli/common/version-check.js.map +1 -0
- package/dist/config/config.d.ts +15 -41
- package/dist/config/validators/BuildSchema.d.ts +15 -7
- package/dist/config/validators/BuildSchema.js +34 -2
- package/dist/config/validators/BuildSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +169 -85
- package/dist/config/validators/InputNavigationSchema.js +1 -0
- package/dist/config/validators/InputNavigationSchema.js.map +1 -1
- 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 +20 -0
- package/dist/config/validators/icon-types.js.map +1 -1
- package/dist/config/validators/validate.d.ts +278 -25
- package/dist/config/validators/validate.js +75 -10
- 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 +60 -5
- package/dist/lib/assets/language-icons/c.d.ts +3 -0
- package/dist/lib/assets/language-icons/c.js +4 -0
- package/dist/lib/assets/language-icons/c.js.map +1 -0
- package/dist/lib/assets/language-icons/commonlisp.d.ts +3 -0
- package/dist/lib/assets/language-icons/commonlisp.js +4 -0
- package/dist/lib/assets/language-icons/commonlisp.js.map +1 -0
- package/dist/lib/assets/language-icons/cpp.d.ts +3 -0
- package/dist/lib/assets/language-icons/cpp.js +4 -0
- package/dist/lib/assets/language-icons/cpp.js.map +1 -0
- package/dist/lib/assets/language-icons/dart.d.ts +3 -0
- package/dist/lib/assets/language-icons/dart.js +4 -0
- package/dist/lib/assets/language-icons/dart.js.map +1 -0
- package/dist/lib/assets/language-icons/elixir.d.ts +3 -0
- package/dist/lib/assets/language-icons/elixir.js +4 -0
- package/dist/lib/assets/language-icons/elixir.js.map +1 -0
- package/dist/lib/assets/language-icons/ocaml.d.ts +3 -0
- package/dist/lib/assets/language-icons/ocaml.js +4 -0
- package/dist/lib/assets/language-icons/ocaml.js.map +1 -0
- package/dist/lib/assets/language-icons/powershell.d.ts +3 -0
- package/dist/lib/assets/language-icons/powershell.js +4 -0
- package/dist/lib/assets/language-icons/powershell.js.map +1 -0
- package/dist/lib/assets/language-icons/scala.d.ts +3 -0
- package/dist/lib/assets/language-icons/scala.js +4 -0
- package/dist/lib/assets/language-icons/scala.js.map +1 -0
- package/dist/lib/assets/language-icons/zig.d.ts +3 -0
- package/dist/lib/assets/language-icons/zig.js +4 -0
- package/dist/lib/assets/language-icons/zig.js.map +1 -0
- package/dist/lib/auth/issuer.js +3 -0
- package/dist/lib/auth/issuer.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +19 -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 +8 -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 +7 -5
- package/dist/lib/authentication/components/SignUp.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +5 -2
- package/dist/lib/authentication/hook.js +22 -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 +273 -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 +5 -7
- package/dist/lib/authentication/state.js +2 -14
- package/dist/lib/authentication/state.js.map +1 -1
- package/dist/lib/authentication/ui/EmailVerificationUi.d.ts +4 -0
- package/dist/lib/authentication/ui/EmailVerificationUi.js +34 -0
- package/dist/lib/authentication/ui/EmailVerificationUi.js.map +1 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.d.ts +29 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js +160 -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/authentication/utils/relativeRedirectUrl.d.ts +1 -0
- package/dist/lib/authentication/utils/relativeRedirectUrl.js +8 -0
- package/dist/lib/authentication/utils/relativeRedirectUrl.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/BuildCheck.js +2 -2
- package/dist/lib/components/BuildCheck.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/LanguageIcon.js +45 -0
- package/dist/lib/components/LanguageIcon.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/PagefindSearchMeta.d.ts +8 -0
- package/dist/lib/components/PagefindSearchMeta.js +7 -0
- package/dist/lib/components/PagefindSearchMeta.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/context/ZudokuContext.js +10 -2
- package/dist/lib/components/context/ZudokuContext.js.map +1 -1
- package/dist/lib/components/index.d.ts +5 -4
- package/dist/lib/components/navigation/NavigationItem.js +3 -3
- 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 +13 -21
- 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/ErrorMessage.d.ts +3 -0
- package/dist/lib/errors/ErrorMessage.js +16 -0
- package/dist/lib/errors/ErrorMessage.js.map +1 -0
- 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 +5 -3
- package/dist/lib/oas/graphql/index.js +24 -3
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/index.d.ts +1 -0
- 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/api-keys/SettingsApiKeys.js +9 -172
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +4 -1
- package/dist/lib/plugins/api-keys/index.js +21 -17
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.d.ts +12 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.js +133 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.js.map +1 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.d.ts +4 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.js +30 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.js.map +1 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.d.ts +6 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.js +39 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.js.map +1 -0
- 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/MCPEndpoint.js +9 -18
- package/dist/lib/plugins/openapi/MCPEndpoint.js.map +1 -1
- 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 +22 -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 +8 -4
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/ParamInfos.js +1 -0
- package/dist/lib/plugins/openapi/ParamInfos.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/PlaygroundDialogWrapper.js +1 -3
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.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/SchemaList.js +2 -1
- package/dist/lib/plugins/openapi/SchemaList.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.d.ts +3 -2
- package/dist/lib/plugins/openapi/Sidecar.js +68 -35
- 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/fragment-masking.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.d.ts +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.js +2 -1
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +8 -2
- 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 +30 -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 +71 -29
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +5 -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/rememberedIdentity.d.ts +5 -3
- 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 +33 -19
- 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.d.ts +5 -3
- 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 +31 -16
- 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/schema/utils.d.ts +2 -2
- package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
- package/dist/lib/plugins/openapi/state.d.ts +5 -3
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js +24 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.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/plugins/search-pagefind/IndexingDialog.d.ts +3 -0
- package/dist/lib/plugins/search-pagefind/IndexingDialog.js +64 -0
- package/dist/lib/plugins/search-pagefind/IndexingDialog.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js +22 -5
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.js +5 -4
- package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -1
- package/dist/lib/shiki.d.ts +2 -2
- package/dist/lib/shiki.js +40 -14
- 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 +10 -8
- 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/Carousel.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/Command.js +2 -2
- package/dist/lib/ui/Command.js.map +1 -1
- 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/Kbd.d.ts +3 -0
- package/dist/lib/ui/Kbd.js +10 -0
- package/dist/lib/ui/Kbd.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/Secret.d.ts +6 -0
- package/dist/lib/ui/Secret.js +7 -4
- package/dist/lib/ui/Secret.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 +88 -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 +587 -0
- package/dist/lib/util/flattenAllOf.test.js.map +1 -0
- package/dist/lib/util/pastellize.js +4 -4
- package/dist/lib/util/pastellize.js.map +1 -1
- 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 +69 -2
- package/dist/vite/api/SchemaManager.test.js.map +1 -1
- package/dist/vite/config.js +11 -1
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/dev-server.js +25 -0
- package/dist/vite/dev-server.js.map +1 -1
- package/dist/vite/llms.d.ts +12 -0
- package/dist/vite/llms.js +66 -0
- package/dist/vite/llms.js.map +1 -0
- package/dist/vite/mdx/remark-last-modified.js +57 -3
- package/dist/vite/mdx/remark-last-modified.js.map +1 -1
- package/dist/vite/pagefind-dev-index.d.ts +16 -0
- package/dist/vite/pagefind-dev-index.js +68 -0
- package/dist/vite/pagefind-dev-index.js.map +1 -0
- package/dist/vite/plugin-api-keys.js +4 -1
- package/dist/vite/plugin-api-keys.js.map +1 -1
- package/dist/vite/plugin-api.js +58 -19
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-docs.d.ts +9 -0
- package/dist/vite/plugin-docs.js +68 -49
- 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.d.ts +1 -1
- package/dist/vite/plugin-mdx.js +39 -29
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-navigation.js +4 -0
- package/dist/vite/plugin-navigation.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 -0
- package/dist/vite/plugin.js.map +1 -1
- package/dist/vite/prerender/prerender.js +38 -23
- package/dist/vite/prerender/prerender.js.map +1 -1
- package/dist/vite/prerender/utils.d.ts +2 -0
- package/dist/vite/prerender/utils.js +24 -0
- package/dist/vite/prerender/utils.js.map +1 -0
- package/dist/vite/prerender/worker.js +3 -0
- package/dist/vite/prerender/worker.js.map +1 -1
- package/dist/vite/zuplo.d.ts +13 -0
- package/dist/vite/zuplo.js +15 -0
- package/dist/vite/zuplo.js.map +1 -0
- package/lib/ActionButton-BSM2oNHF.js +25 -0
- package/lib/ActionButton-BSM2oNHF.js.map +1 -0
- package/lib/Button-IOAeVaIH.js +54 -0
- package/lib/Button-IOAeVaIH.js.map +1 -0
- package/lib/{Card-hTy9PAnh.js → Card-KFniaZn5.js} +2 -2
- package/lib/{Card-hTy9PAnh.js.map → Card-KFniaZn5.js.map} +1 -1
- package/lib/{CategoryHeading-BGCNu3VK.js → CategoryHeading-DhmodDcq.js} +2 -2
- package/lib/{CategoryHeading-BGCNu3VK.js.map → CategoryHeading-DhmodDcq.js.map} +1 -1
- package/lib/ClaudeLogo-DgjivS8A.js +69 -0
- package/lib/ClaudeLogo-DgjivS8A.js.map +1 -0
- package/lib/{Command-TEBTONf1.js → Command-BpT1iBE6.js} +26 -26
- package/lib/Command-BpT1iBE6.js.map +1 -0
- package/lib/Dialog-BQciPiHN.js +144 -0
- package/lib/Dialog-BQciPiHN.js.map +1 -0
- package/lib/{Drawer-DM9wJUC6.js → Drawer-BRMcpfuF.js} +7 -7
- package/lib/Drawer-BRMcpfuF.js.map +1 -0
- package/lib/DropdownMenu-C8SX_-S_.js +104 -0
- package/lib/DropdownMenu-C8SX_-S_.js.map +1 -0
- package/lib/Frame-DxlznfVd.js +205 -0
- package/lib/Frame-DxlznfVd.js.map +1 -0
- package/lib/IndexingDialog-DZWj_3cU.js +100 -0
- package/lib/IndexingDialog-DZWj_3cU.js.map +1 -0
- package/lib/Input-D-kqEQ5M.js +115 -0
- package/lib/Input-D-kqEQ5M.js.map +1 -0
- package/lib/MdxPage-BL-HbZrv.js +210 -0
- package/lib/MdxPage-BL-HbZrv.js.map +1 -0
- package/lib/Mermaid-BjSczjLW.js +102 -0
- package/lib/Mermaid-BjSczjLW.js.map +1 -0
- package/lib/{OAuthErrorPage-BbI9XJWR.js → OAuthErrorPage-DQtg28Go.js} +22 -23
- package/lib/{OAuthErrorPage-BbI9XJWR.js.map → OAuthErrorPage-DQtg28Go.js.map} +1 -1
- package/lib/OasProvider--qcZwrKS.js +40 -0
- package/lib/OasProvider--qcZwrKS.js.map +1 -0
- package/lib/OperationList-CSJYzxQY.js +5819 -0
- package/lib/OperationList-CSJYzxQY.js.map +1 -0
- package/lib/RouteGuard-D0f743SM.js +77 -0
- package/lib/RouteGuard-D0f743SM.js.map +1 -0
- package/lib/{SchemaList-BcJyi2sR.js → SchemaList-DtyuDrQA.js} +30 -29
- package/lib/SchemaList-DtyuDrQA.js.map +1 -0
- package/lib/SchemaView-G-SVXxAG.js +435 -0
- package/lib/SchemaView-G-SVXxAG.js.map +1 -0
- package/lib/Secret-BxGpIhDP.js +243 -0
- package/lib/Secret-BxGpIhDP.js.map +1 -0
- package/lib/Separator-CTPSeW1S.js +27 -0
- package/lib/Separator-CTPSeW1S.js.map +1 -0
- package/lib/SignUp-CDl7bQj3.js +50 -0
- package/lib/SignUp-CDl7bQj3.js.map +1 -0
- package/lib/{Spinner-Cf6E803I.js → Spinner-CI6bRyZw.js} +2 -2
- package/lib/{Spinner-Cf6E803I.js.map → Spinner-CI6bRyZw.js.map} +1 -1
- package/lib/{SyntaxHighlight-Cqh6cwC3.js → SyntaxHighlight-Dgd0AaaX.js} +1585 -1492
- package/lib/SyntaxHighlight-Dgd0AaaX.js.map +1 -0
- package/lib/{Toc-Zzozy3eB.js → Toc-D_Rj4jVx.js} +6 -6
- package/lib/Toc-D_Rj4jVx.js.map +1 -0
- package/lib/ZudokuContext-DNHMZfcP.js +1508 -0
- package/lib/ZudokuContext-DNHMZfcP.js.map +1 -0
- package/lib/___vite-browser-external_commonjs-proxy-Cga3HsWk.js +9 -0
- package/lib/___vite-browser-external_commonjs-proxy-Cga3HsWk.js.map +1 -0
- package/lib/c-B-NUhs61.js +46 -0
- package/lib/c-B-NUhs61.js.map +1 -0
- package/lib/chunk-PVWAREVJ-ClM0m2aJ.js +7965 -0
- package/lib/chunk-PVWAREVJ-ClM0m2aJ.js.map +1 -0
- package/lib/{circular-CokAagii.js → circular-BxODTa7z.js} +6365 -5958
- package/lib/circular-BxODTa7z.js.map +1 -0
- package/lib/commonlisp-De080z23.js +28 -0
- package/lib/commonlisp-De080z23.js.map +1 -0
- package/lib/cpp-79Paht7T.js +53 -0
- package/lib/cpp-79Paht7T.js.map +1 -0
- package/lib/createServer-BpreIXp6.js +16693 -0
- package/lib/createServer-BpreIXp6.js.map +1 -0
- package/lib/createVariantComponent-CQVt-H3r.js +18 -0
- package/lib/createVariantComponent-CQVt-H3r.js.map +1 -0
- package/lib/{csharp-rrJEDRrV.js → csharp-D8MIL50B.js} +2 -2
- package/lib/{csharp-rrJEDRrV.js.map → csharp-D8MIL50B.js.map} +1 -1
- package/lib/{css-Dpk9bCql.js → css-Bt6hr1td.js} +2 -2
- package/lib/{css-Dpk9bCql.js.map → css-Bt6hr1td.js.map} +1 -1
- package/lib/dart-B0vy1jWB.js +60 -0
- package/lib/dart-B0vy1jWB.js.map +1 -0
- package/lib/elixir-Ds8r0sF8.js +25 -0
- package/lib/elixir-Ds8r0sF8.js.map +1 -0
- package/lib/{errors-CQLQ5016.js → errors-DliW1dED.js} +4 -4
- package/lib/{errors-CQLQ5016.js.map → errors-DliW1dED.js.map} +1 -1
- package/lib/firebase-D4tbaCYB.js +7612 -0
- package/lib/firebase-D4tbaCYB.js.map +1 -0
- package/lib/{go-D8SJIQ0Z.js → go-D2VsmIOS.js} +2 -2
- package/lib/{go-D8SJIQ0Z.js.map → go-D2VsmIOS.js.map} +1 -1
- package/lib/{graphql-aeVKJNa2.js → graphql-BtA6M4m5.js} +2 -2
- package/lib/{graphql-aeVKJNa2.js.map → graphql-BtA6M4m5.js.map} +1 -1
- package/lib/hook-CHw_R_xu.js +52 -0
- package/lib/hook-CHw_R_xu.js.map +1 -0
- package/lib/{html-D_7om-nA.js → html-MGnI2uzP.js} +2 -2
- package/lib/{html-D_7om-nA.js.map → html-MGnI2uzP.js.map} +1 -1
- package/lib/{index-CF3Ls1wd.js → index-1TbL0HXQ.js} +166 -50
- package/lib/index-1TbL0HXQ.js.map +1 -0
- package/lib/index-9MxNUgg4.js +3675 -0
- package/lib/index-9MxNUgg4.js.map +1 -0
- package/lib/{ErrorAlert-Diu_w5Po.js → index-CboxZOVW.js} +5432 -4439
- package/lib/index-CboxZOVW.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/index-DXXZDuSJ.js +133 -0
- package/lib/index-DXXZDuSJ.js.map +1 -0
- package/lib/index.esm-BYObtETB.js +1294 -0
- package/lib/index.esm-BYObtETB.js.map +1 -0
- package/lib/{index.esm-BnYHxCYC.js → index.esm-DtzT_KoE.js} +20 -20
- package/lib/{index.esm-BnYHxCYC.js.map → index.esm-DtzT_KoE.js.map} +1 -1
- package/lib/index.esm-ti5zvZS_.js +34 -0
- package/lib/index.esm-ti5zvZS_.js.map +1 -0
- package/lib/{invariant-Bm-FVUQE.js → invariant-CGOLuIIz.js} +3 -3
- package/lib/{invariant-Bm-FVUQE.js.map → invariant-CGOLuIIz.js.map} +1 -1
- package/lib/{java-DUh-EL8n.js → java-CVLzHfb1.js} +2 -2
- package/lib/{java-DUh-EL8n.js.map → java-CVLzHfb1.js.map} +1 -1
- package/lib/{javascript-CrY8dcGu.js → javascript-CcmIpL4G.js} +2 -2
- package/lib/{javascript-CrY8dcGu.js.map → javascript-CcmIpL4G.js.map} +1 -1
- package/lib/{json-DLK2_sdf.js → json-4AyP4uiY.js} +2 -2
- package/lib/{json-DLK2_sdf.js.map → json-4AyP4uiY.js.map} +1 -1
- package/lib/{jsx-runtime-DywqP_6a.js → jsx-runtime-BzflLqGi.js} +109 -111
- package/lib/jsx-runtime-BzflLqGi.js.map +1 -0
- package/lib/{kotlin-rJMOGl7D.js → kotlin-v2plddBQ.js} +2 -2
- package/lib/{kotlin-rJMOGl7D.js.map → kotlin-v2plddBQ.js.map} +1 -1
- package/lib/{markdown-BD9bIU5J.js → markdown-DYGWCmGQ.js} +2 -2
- package/lib/{markdown-BD9bIU5J.js.map → markdown-DYGWCmGQ.js.map} +1 -1
- package/lib/{mdx-G25UCvf3.js → mdx-CHwYvXd4.js} +2 -2
- package/lib/{mdx-G25UCvf3.js.map → mdx-CHwYvXd4.js.map} +1 -1
- package/lib/{mutation-DvBlWyBr.js → mutation-DMHWqmFp.js} +2 -2
- package/lib/{mutation-DvBlWyBr.js.map → mutation-DMHWqmFp.js.map} +1 -1
- package/lib/{objectivec-DDpj0aWX.js → objectivec-HZY8shkd.js} +2 -2
- package/lib/{objectivec-DDpj0aWX.js.map → objectivec-HZY8shkd.js.map} +1 -1
- package/lib/ocaml-DqsdDdwb.js +52 -0
- package/lib/ocaml-DqsdDdwb.js.map +1 -0
- package/lib/{php-BeG18bSy.js → php-rQXzo7K_.js} +2 -2
- package/lib/{php-BeG18bSy.js.map → php-rQXzo7K_.js.map} +1 -1
- package/lib/powershell-CQje9pm1.js +39 -0
- package/lib/powershell-CQje9pm1.js.map +1 -0
- package/lib/{python-BaF2byD-.js → python-QIQAE5Ei.js} +2 -2
- package/lib/{python-BaF2byD-.js.map → python-QIQAE5Ei.js.map} +1 -1
- package/lib/{react-CQvDN20M.js → react-DHpVpxRv.js} +2 -2
- package/lib/{react-CQvDN20M.js.map → react-DHpVpxRv.js.map} +1 -1
- package/lib/{ruby-CmxRVHMR.js → ruby-B2dU8Ny5.js} +2 -2
- package/lib/{ruby-CmxRVHMR.js.map → ruby-B2dU8Ny5.js.map} +1 -1
- package/lib/{rust-IfSC62c5.js → rust-DYnLHAi2.js} +2 -2
- package/lib/{rust-IfSC62c5.js.map → rust-DYnLHAi2.js.map} +1 -1
- package/lib/scala-CeKInBR8.js +25 -0
- package/lib/scala-CeKInBR8.js.map +1 -0
- package/lib/{shell-BFu0M6m4.js → shell-HUv9oVtp.js} +2 -2
- package/lib/{shell-BFu0M6m4.js.map → shell-HUv9oVtp.js.map} +1 -1
- package/lib/{swift-DckbsN4v.js → swift-B4z6ig1Z.js} +2 -2
- package/lib/{swift-DckbsN4v.js.map → swift-B4z6ig1Z.js.map} +1 -1
- package/lib/{toml-BJsCc8TC.js → toml-Co9mpdct.js} +2 -2
- package/lib/{toml-BJsCc8TC.js.map → toml-Co9mpdct.js.map} +1 -1
- package/lib/{typescript-7qOVMjOC.js → typescript-C26xdBDC.js} +2 -2
- package/lib/{typescript-7qOVMjOC.js.map → typescript-C26xdBDC.js.map} +1 -1
- package/lib/ui/Accordion.js +1 -1
- package/lib/ui/ActionButton.js +3 -3
- package/lib/ui/Alert.js +1 -1
- package/lib/ui/AlertDialog.js +1 -1
- package/lib/ui/Badge.js +28 -14
- package/lib/ui/Badge.js.map +1 -1
- package/lib/ui/Breadcrumb.js +1 -1
- package/lib/ui/Button.js +28 -25
- 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 +19 -19
- package/lib/ui/Callout.js.map +1 -1
- package/lib/ui/Card.js +1 -1
- package/lib/ui/Carousel.js +1 -1
- package/lib/ui/Carousel.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 +5 -5
- package/lib/ui/Command.js.map +1 -1
- package/lib/ui/Dialog.js +135 -105
- package/lib/ui/Dialog.js.map +1 -1
- package/lib/ui/Drawer.js +3 -3
- package/lib/ui/DropdownMenu.js +227 -140
- package/lib/ui/DropdownMenu.js.map +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +36 -32
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/lib/ui/Form.js +2 -2
- package/lib/ui/Frame.js +81 -0
- package/lib/ui/Frame.js.map +1 -0
- package/lib/ui/HoverCard.js +1 -1
- package/lib/ui/Input.js +1 -1
- package/lib/ui/Item.js +188 -0
- package/lib/ui/Item.js.map +1 -0
- package/lib/ui/Kbd.js +32 -0
- package/lib/ui/Kbd.js.map +1 -0
- package/lib/ui/Label.js +1 -1
- package/lib/ui/NativeSelect.js +57 -0
- package/lib/ui/NativeSelect.js.map +1 -0
- package/lib/ui/Pagination.js +1 -1
- package/lib/ui/Popover.js +1 -1
- package/lib/ui/Progress.js +1 -1
- package/lib/ui/RadioGroup.js +1 -1
- package/lib/ui/ReactComponentDoc.js +14 -14
- package/lib/ui/ReactComponentDoc.js.map +1 -1
- package/lib/ui/ScrollArea.js +1 -1
- package/lib/ui/Secret.js +64 -54
- package/lib/ui/Secret.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/Skeleton.js +1 -1
- package/lib/ui/Slider.js +1 -1
- package/lib/ui/Stepper.js +1 -1
- package/lib/ui/Switch.js +1 -1
- package/lib/ui/SyntaxHighlight.js +5 -5
- package/lib/ui/Tabs.js +11 -11
- package/lib/ui/Textarea.js +1 -1
- package/lib/ui/Toggle.js +1 -1
- package/lib/ui/ToggleGroup.js +1 -1
- package/lib/ui/Tooltip.js +55 -28
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/ui/Value.js +1 -1
- package/lib/{xml-DAaTIkBX.js → xml-BQOOC04j.js} +2 -2
- package/lib/{xml-DAaTIkBX.js.map → xml-BQOOC04j.js.map} +1 -1
- package/lib/{yaml-DUi-dbfu.js → yaml-BGsJItKv.js} +2 -2
- package/lib/{yaml-DUi-dbfu.js.map → yaml-BGsJItKv.js.map} +1 -1
- package/lib/zig-CUV2sTct.js +35 -0
- package/lib/zig-CUV2sTct.js.map +1 -0
- package/lib/zudoku.__internal.js +1082 -951
- 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 +34 -35
- package/lib/zudoku.auth-azureb2c.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +41 -41
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-firebase.js +10 -0
- package/lib/zudoku.auth-firebase.js.map +1 -0
- package/lib/zudoku.auth-openid.js +105 -109
- 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 +22 -23
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +11 -24
- package/lib/zudoku.hooks.js.map +1 -1
- package/lib/zudoku.icons.js +1 -1
- package/lib/zudoku.mermaid.js +10 -0
- package/lib/zudoku.mermaid.js.map +1 -0
- package/lib/zudoku.plugin-api-catalog.js +31 -33
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +573 -615
- 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 +7 -8
- package/lib/zudoku.plugin-openapi.js.map +1 -1
- package/lib/zudoku.plugin-redirect.js +3 -3
- package/lib/zudoku.plugin-search-inkeep.js +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +185 -228
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js.map +1 -1
- package/lib/zudoku.router.js +2502 -118
- package/lib/zudoku.router.js.map +1 -1
- package/package.json +94 -66
- package/src/app/entry.server.tsx +16 -6
- package/src/app/main.css +61 -9
- package/src/app/main.tsx +5 -1
- package/src/app/sentry.ts +1 -1
- package/src/lib/assets/language-icons/c.tsx +31 -0
- package/src/lib/assets/language-icons/commonlisp.tsx +22 -0
- package/src/lib/assets/language-icons/cpp.tsx +35 -0
- package/src/lib/assets/language-icons/dart.tsx +39 -0
- package/src/lib/assets/language-icons/elixir.tsx +19 -0
- package/src/lib/assets/language-icons/ocaml.tsx +34 -0
- package/src/lib/assets/language-icons/powershell.tsx +27 -0
- package/src/lib/assets/language-icons/scala.tsx +19 -0
- package/src/lib/assets/language-icons/zig.tsx +32 -0
- package/src/lib/auth/issuer.ts +3 -0
- package/src/lib/authentication/authentication.ts +29 -5
- package/src/lib/authentication/components/OAuthErrorPage.tsx +1 -1
- package/src/lib/authentication/components/SignIn.tsx +10 -5
- package/src/lib/authentication/components/SignOut.tsx +7 -6
- package/src/lib/authentication/components/SignUp.tsx +8 -8
- package/src/lib/authentication/hook.ts +37 -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 +376 -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/EmailVerificationUi.tsx +129 -0
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +477 -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/authentication/utils/relativeRedirectUrl.ts +12 -0
- package/src/lib/components/Autocomplete.tsx +11 -2
- package/src/lib/components/BuildCheck.tsx +12 -10
- package/src/lib/components/Heading.tsx +2 -6
- package/src/lib/components/LanguageIcon.tsx +45 -0
- 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/PagefindSearchMeta.tsx +14 -0
- package/src/lib/components/Zudoku.tsx +7 -10
- package/src/lib/components/cache.ts +9 -5
- package/src/lib/components/context/ZudokuContext.ts +11 -2
- package/src/lib/components/navigation/NavigationItem.tsx +8 -21
- package/src/lib/components/navigation/Toc.tsx +3 -3
- package/src/lib/core/RouteGuard.tsx +42 -22
- 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/ErrorMessage.tsx +38 -0
- package/src/lib/errors/RouterError.tsx +7 -2
- package/src/lib/oas/graphql/index.ts +26 -3
- package/src/lib/oas/parser/index.ts +10 -3
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +11 -7
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +36 -476
- package/src/lib/plugins/api-keys/index.tsx +35 -21
- package/src/lib/plugins/api-keys/settings/ApiKeyItem.tsx +342 -0
- package/src/lib/plugins/api-keys/settings/ApiKeyList.tsx +64 -0
- package/src/lib/plugins/api-keys/settings/RevealApiKey.tsx +124 -0
- 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/MCPEndpoint.tsx +8 -28
- package/src/lib/plugins/openapi/OasProvider.tsx +30 -17
- package/src/lib/plugins/openapi/OperationList.tsx +60 -24
- package/src/lib/plugins/openapi/OperationListItem.tsx +25 -17
- package/src/lib/plugins/openapi/ParamInfos.tsx +1 -0
- package/src/lib/plugins/openapi/ParameterList.tsx +37 -23
- package/src/lib/plugins/openapi/ParameterListItem.tsx +105 -54
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +0 -7
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +48 -7
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +101 -33
- package/src/lib/plugins/openapi/SchemaList.tsx +4 -0
- package/src/lib/plugins/openapi/Sidecar.tsx +155 -74
- 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/fragment-masking.ts +1 -0
- package/src/lib/plugins/openapi/graphql/gql.ts +4 -3
- package/src/lib/plugins/openapi/graphql/graphql.ts +20 -3
- package/src/lib/plugins/openapi/index.tsx +26 -37
- package/src/lib/plugins/openapi/interfaces.ts +29 -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 +89 -36
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +22 -32
- 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 +124 -56
- 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 +100 -60
- 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/schema/utils.ts +5 -2
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +29 -1
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +11 -11
- package/src/lib/plugins/openapi/util/getRoutes.tsx +35 -3
- package/src/lib/plugins/search-pagefind/IndexingDialog.tsx +163 -0
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +61 -22
- package/src/lib/plugins/search-pagefind/ResultList.tsx +8 -3
- package/src/lib/shiki.ts +46 -14
- package/src/lib/ui/Badge.tsx +21 -12
- package/src/lib/ui/Button.tsx +11 -9
- package/src/lib/ui/ButtonGroup.tsx +82 -0
- package/src/lib/ui/Callout.tsx +10 -5
- package/src/lib/ui/Carousel.tsx +0 -1
- 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/Command.tsx +3 -3
- 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/Kbd.tsx +28 -0
- package/src/lib/ui/NativeSelect.tsx +47 -0
- package/src/lib/ui/ReactComponentDoc.tsx +17 -17
- package/src/lib/ui/Secret.tsx +44 -27
- 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 +689 -0
- package/src/lib/util/flattenAllOf.ts +122 -0
- package/src/lib/util/pastellize.ts +4 -4
- 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/create-pagefind-index.d.ts +0 -4
- package/dist/vite/create-pagefind-index.js +0 -12
- package/dist/vite/create-pagefind-index.js.map +0 -1
- package/lib/Button-DTDRi4CT.js +0 -51
- package/lib/Button-DTDRi4CT.js.map +0 -1
- package/lib/CodeBlock-i0BM_QFf.js +0 -176
- package/lib/CodeBlock-i0BM_QFf.js.map +0 -1
- package/lib/Command-TEBTONf1.js.map +0 -1
- package/lib/Dialog-VIMic7xI.js +0 -114
- package/lib/Dialog-VIMic7xI.js.map +0 -1
- package/lib/Drawer-DM9wJUC6.js.map +0 -1
- package/lib/ErrorAlert-Diu_w5Po.js.map +0 -1
- package/lib/MdxPage-CDs_vtjC.js +0 -111
- package/lib/MdxPage-CDs_vtjC.js.map +0 -1
- package/lib/OasProvider-D3Cjaaxr.js +0 -36
- package/lib/OasProvider-D3Cjaaxr.js.map +0 -1
- package/lib/OperationList-BH4cFU-0.js +0 -5454
- package/lib/OperationList-BH4cFU-0.js.map +0 -1
- package/lib/Pagination-BKphudjx.js +0 -37
- package/lib/Pagination-BKphudjx.js.map +0 -1
- package/lib/RouteGuard-nFlgfJqk.js +0 -56
- package/lib/RouteGuard-nFlgfJqk.js.map +0 -1
- package/lib/RouterError-CnS5hYUh.js +0 -41
- package/lib/RouterError-CnS5hYUh.js.map +0 -1
- package/lib/SchemaList-BcJyi2sR.js.map +0 -1
- package/lib/SchemaView-DnTxmN15.js +0 -458
- package/lib/SchemaView-DnTxmN15.js.map +0 -1
- package/lib/Select-BPQp7Yqx.js +0 -273
- package/lib/Select-BPQp7Yqx.js.map +0 -1
- package/lib/SignUp-tBtnwuXL.js +0 -56
- package/lib/SignUp-tBtnwuXL.js.map +0 -1
- package/lib/SyntaxHighlight-Cqh6cwC3.js.map +0 -1
- package/lib/Toc-Zzozy3eB.js.map +0 -1
- package/lib/ZudokuContext-3cqbu21w.js +0 -1285
- package/lib/ZudokuContext-3cqbu21w.js.map +0 -1
- package/lib/chunk-QMGIS6GS-DqecZ6nq.js +0 -9204
- package/lib/chunk-QMGIS6GS-DqecZ6nq.js.map +0 -1
- package/lib/circular-CokAagii.js.map +0 -1
- package/lib/createServer-DW4hIUUB.js +0 -12499
- package/lib/createServer-DW4hIUUB.js.map +0 -1
- package/lib/hook-ChlxzJwv.js +0 -247
- package/lib/hook-ChlxzJwv.js.map +0 -1
- package/lib/index-7FEjMkZ_.js +0 -1058
- package/lib/index-7FEjMkZ_.js.map +0 -1
- package/lib/index-CF3Ls1wd.js.map +0 -1
- package/lib/index-QwGs6inR.js +0 -3397
- package/lib/index-QwGs6inR.js.map +0 -1
- package/lib/index.esm-CdzlRw50.js +0 -1254
- package/lib/index.esm-CdzlRw50.js.map +0 -1
- package/lib/jsx-runtime-DywqP_6a.js.map +0 -1
- package/lib/useExposedProps-BH9aq4MD.js +0 -113
- package/lib/useExposedProps-BH9aq4MD.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,42 +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
|
-
check: "check";
|
|
50
40
|
copy: "copy";
|
|
51
41
|
focus: "focus";
|
|
52
42
|
pause: "pause";
|
|
53
43
|
play: "play";
|
|
54
44
|
scroll: "scroll";
|
|
45
|
+
key: "key";
|
|
55
46
|
merge: "merge";
|
|
56
47
|
ghost: "ghost";
|
|
57
48
|
expand: "expand";
|
|
49
|
+
type: "type";
|
|
58
50
|
send: "send";
|
|
59
51
|
grid: "grid";
|
|
60
52
|
group: "group";
|
|
61
53
|
heading: "heading";
|
|
54
|
+
list: "list";
|
|
62
55
|
menu: "menu";
|
|
63
56
|
navigation: "navigation";
|
|
64
57
|
option: "option";
|
|
@@ -69,20 +62,18 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
69
62
|
text: "text";
|
|
70
63
|
mouse: "mouse";
|
|
71
64
|
pen: "pen";
|
|
65
|
+
section: "section";
|
|
66
|
+
video: "video";
|
|
72
67
|
circle: "circle";
|
|
68
|
+
image: "image";
|
|
69
|
+
view: "view";
|
|
73
70
|
target: "target";
|
|
74
71
|
radius: "radius";
|
|
75
72
|
scale: "scale";
|
|
76
73
|
x: "x";
|
|
77
|
-
shell: "shell";
|
|
78
74
|
baseline: "baseline";
|
|
79
75
|
terminal: "terminal";
|
|
80
76
|
square: "square";
|
|
81
|
-
move: "move";
|
|
82
|
-
section: "section";
|
|
83
|
-
video: "video";
|
|
84
|
-
image: "image";
|
|
85
|
-
view: "view";
|
|
86
77
|
"a-arrow-down": "a-arrow-down";
|
|
87
78
|
"a-arrow-up": "a-arrow-up";
|
|
88
79
|
"a-large-small": "a-large-small";
|
|
@@ -301,6 +292,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
301
292
|
binoculars: "binoculars";
|
|
302
293
|
biohazard: "biohazard";
|
|
303
294
|
bird: "bird";
|
|
295
|
+
birdhouse: "birdhouse";
|
|
304
296
|
bitcoin: "bitcoin";
|
|
305
297
|
blend: "blend";
|
|
306
298
|
blinds: "blinds";
|
|
@@ -447,6 +439,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
447
439
|
"chart-pie": "chart-pie";
|
|
448
440
|
"chart-scatter": "chart-scatter";
|
|
449
441
|
"chart-spline": "chart-spline";
|
|
442
|
+
check: "check";
|
|
450
443
|
"check-check": "check-check";
|
|
451
444
|
"check-circle": "check-circle";
|
|
452
445
|
"check-circle-2": "check-circle-2";
|
|
@@ -479,6 +472,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
479
472
|
"chevrons-up": "chevrons-up";
|
|
480
473
|
"chevrons-up-down": "chevrons-up-down";
|
|
481
474
|
chrome: "chrome";
|
|
475
|
+
chromium: "chromium";
|
|
482
476
|
church: "church";
|
|
483
477
|
cigarette: "cigarette";
|
|
484
478
|
"cigarette-off": "cigarette-off";
|
|
@@ -607,10 +601,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
607
601
|
"concierge-bell": "concierge-bell";
|
|
608
602
|
cone: "cone";
|
|
609
603
|
construction: "construction";
|
|
604
|
+
contact: "contact";
|
|
610
605
|
"contact-2": "contact-2";
|
|
611
606
|
"contact-round": "contact-round";
|
|
612
607
|
container: "container";
|
|
613
608
|
contrast: "contrast";
|
|
609
|
+
cookie: "cookie";
|
|
614
610
|
"cooking-pot": "cooking-pot";
|
|
615
611
|
"copy-check": "copy-check";
|
|
616
612
|
"copy-minus": "copy-minus";
|
|
@@ -646,6 +642,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
646
642
|
"database-zap": "database-zap";
|
|
647
643
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
648
644
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
645
|
+
delete: "delete";
|
|
649
646
|
dessert: "dessert";
|
|
650
647
|
diameter: "diameter";
|
|
651
648
|
diamond: "diamond";
|
|
@@ -711,6 +708,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
711
708
|
eraser: "eraser";
|
|
712
709
|
"ethernet-port": "ethernet-port";
|
|
713
710
|
euro: "euro";
|
|
711
|
+
"ev-charger": "ev-charger";
|
|
714
712
|
"external-link": "external-link";
|
|
715
713
|
eye: "eye";
|
|
716
714
|
"eye-closed": "eye-closed";
|
|
@@ -874,6 +872,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
874
872
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
875
873
|
gamepad: "gamepad";
|
|
876
874
|
"gamepad-2": "gamepad-2";
|
|
875
|
+
"gamepad-directional": "gamepad-directional";
|
|
877
876
|
"gantt-chart": "gantt-chart";
|
|
878
877
|
"gantt-chart-square": "gantt-chart-square";
|
|
879
878
|
gauge: "gauge";
|
|
@@ -975,6 +974,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
975
974
|
hotel: "hotel";
|
|
976
975
|
hourglass: "hourglass";
|
|
977
976
|
house: "house";
|
|
977
|
+
"house-heart": "house-heart";
|
|
978
978
|
"house-plug": "house-plug";
|
|
979
979
|
"house-plus": "house-plus";
|
|
980
980
|
"house-wifi": "house-wifi";
|
|
@@ -1060,10 +1060,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1060
1060
|
linkedin: "linkedin";
|
|
1061
1061
|
"list-check": "list-check";
|
|
1062
1062
|
"list-checks": "list-checks";
|
|
1063
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
1064
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
1063
1065
|
"list-collapse": "list-collapse";
|
|
1064
1066
|
"list-end": "list-end";
|
|
1065
1067
|
"list-filter": "list-filter";
|
|
1066
1068
|
"list-filter-plus": "list-filter-plus";
|
|
1069
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
1070
|
+
"list-indent-increase": "list-indent-increase";
|
|
1067
1071
|
"list-minus": "list-minus";
|
|
1068
1072
|
"list-music": "list-music";
|
|
1069
1073
|
"list-ordered": "list-ordered";
|
|
@@ -1177,6 +1181,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1177
1181
|
"minus-square": "minus-square";
|
|
1178
1182
|
monitor: "monitor";
|
|
1179
1183
|
"monitor-check": "monitor-check";
|
|
1184
|
+
"monitor-cloud": "monitor-cloud";
|
|
1180
1185
|
"monitor-cog": "monitor-cog";
|
|
1181
1186
|
"monitor-dot": "monitor-dot";
|
|
1182
1187
|
"monitor-down": "monitor-down";
|
|
@@ -1192,6 +1197,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1192
1197
|
"moon-star": "moon-star";
|
|
1193
1198
|
"more-horizontal": "more-horizontal";
|
|
1194
1199
|
"more-vertical": "more-vertical";
|
|
1200
|
+
motorbike: "motorbike";
|
|
1195
1201
|
mountain: "mountain";
|
|
1196
1202
|
"mountain-snow": "mountain-snow";
|
|
1197
1203
|
"mouse-off": "mouse-off";
|
|
@@ -1200,6 +1206,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1200
1206
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
1201
1207
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
1202
1208
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
1209
|
+
move: "move";
|
|
1203
1210
|
"move-3-d": "move-3-d";
|
|
1204
1211
|
"move-3d": "move-3d";
|
|
1205
1212
|
"move-diagonal": "move-diagonal";
|
|
@@ -1268,12 +1275,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1268
1275
|
"panel-left-dashed": "panel-left-dashed";
|
|
1269
1276
|
"panel-left-inactive": "panel-left-inactive";
|
|
1270
1277
|
"panel-left-open": "panel-left-open";
|
|
1278
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
1271
1279
|
"panel-right": "panel-right";
|
|
1272
1280
|
"panel-right-close": "panel-right-close";
|
|
1273
1281
|
"panel-right-dashed": "panel-right-dashed";
|
|
1274
1282
|
"panel-right-inactive": "panel-right-inactive";
|
|
1275
1283
|
"panel-right-open": "panel-right-open";
|
|
1276
1284
|
"panel-top": "panel-top";
|
|
1285
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
1277
1286
|
"panel-top-close": "panel-top-close";
|
|
1278
1287
|
"panel-top-dashed": "panel-top-dashed";
|
|
1279
1288
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -1414,6 +1423,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1414
1423
|
rocket: "rocket";
|
|
1415
1424
|
"rocking-chair": "rocking-chair";
|
|
1416
1425
|
"roller-coaster": "roller-coaster";
|
|
1426
|
+
rose: "rose";
|
|
1417
1427
|
"rotate-3-d": "rotate-3-d";
|
|
1418
1428
|
"rotate-3d": "rotate-3d";
|
|
1419
1429
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -1472,6 +1482,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1472
1482
|
"send-to-back": "send-to-back";
|
|
1473
1483
|
"separator-horizontal": "separator-horizontal";
|
|
1474
1484
|
"separator-vertical": "separator-vertical";
|
|
1485
|
+
server: "server";
|
|
1475
1486
|
"server-cog": "server-cog";
|
|
1476
1487
|
"server-crash": "server-crash";
|
|
1477
1488
|
"server-off": "server-off";
|
|
@@ -1481,6 +1492,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1481
1492
|
share: "share";
|
|
1482
1493
|
"share-2": "share-2";
|
|
1483
1494
|
sheet: "sheet";
|
|
1495
|
+
shell: "shell";
|
|
1484
1496
|
shield: "shield";
|
|
1485
1497
|
"shield-alert": "shield-alert";
|
|
1486
1498
|
"shield-ban": "shield-ban";
|
|
@@ -1673,6 +1685,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1673
1685
|
tablet: "tablet";
|
|
1674
1686
|
"tablet-smartphone": "tablet-smartphone";
|
|
1675
1687
|
tablets: "tablets";
|
|
1688
|
+
tag: "tag";
|
|
1689
|
+
tags: "tags";
|
|
1676
1690
|
"tally-1": "tally-1";
|
|
1677
1691
|
"tally-2": "tally-2";
|
|
1678
1692
|
"tally-3": "tally-3";
|
|
@@ -1687,12 +1701,18 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1687
1701
|
"test-tube-2": "test-tube-2";
|
|
1688
1702
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
1689
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";
|
|
1690
1708
|
"text-cursor": "text-cursor";
|
|
1691
1709
|
"text-cursor-input": "text-cursor-input";
|
|
1710
|
+
"text-initial": "text-initial";
|
|
1692
1711
|
"text-quote": "text-quote";
|
|
1693
1712
|
"text-search": "text-search";
|
|
1694
1713
|
"text-select": "text-select";
|
|
1695
1714
|
"text-selection": "text-selection";
|
|
1715
|
+
"text-wrap": "text-wrap";
|
|
1696
1716
|
theater: "theater";
|
|
1697
1717
|
thermometer: "thermometer";
|
|
1698
1718
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -1891,9 +1911,9 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1891
1911
|
}, z.core.$strip>>;
|
|
1892
1912
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1893
1913
|
hide: "hide";
|
|
1894
|
-
always: "always";
|
|
1895
1914
|
auth: "auth";
|
|
1896
1915
|
anon: "anon";
|
|
1916
|
+
always: "always";
|
|
1897
1917
|
}>, z.ZodCustom<(params: {
|
|
1898
1918
|
context: ZudokuContext;
|
|
1899
1919
|
auth: UseAuthReturn;
|
|
@@ -1906,43 +1926,40 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1906
1926
|
type: z.ZodLiteral<"link">;
|
|
1907
1927
|
to: z.ZodString;
|
|
1908
1928
|
label: z.ZodString;
|
|
1929
|
+
target: z.ZodOptional<z.ZodEnum<{
|
|
1930
|
+
_self: "_self";
|
|
1931
|
+
_blank: "_blank";
|
|
1932
|
+
}>>;
|
|
1909
1933
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1910
|
-
|
|
1911
|
-
map: "map";
|
|
1912
|
-
filter: "filter";
|
|
1913
|
-
key: "key";
|
|
1934
|
+
info: "info";
|
|
1914
1935
|
replace: "replace";
|
|
1915
1936
|
search: "search";
|
|
1937
|
+
slice: "slice";
|
|
1916
1938
|
split: "split";
|
|
1917
1939
|
repeat: "repeat";
|
|
1918
1940
|
anchor: "anchor";
|
|
1919
1941
|
bold: "bold";
|
|
1920
1942
|
link: "link";
|
|
1921
|
-
info: "info";
|
|
1922
|
-
tags: "tags";
|
|
1923
|
-
contact: "contact";
|
|
1924
|
-
type: "type";
|
|
1925
1943
|
binary: "binary";
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
server: "server";
|
|
1929
|
-
tag: "tag";
|
|
1944
|
+
map: "map";
|
|
1945
|
+
filter: "filter";
|
|
1930
1946
|
file: "file";
|
|
1931
|
-
delete: "delete";
|
|
1932
1947
|
code: "code";
|
|
1933
|
-
check: "check";
|
|
1934
1948
|
copy: "copy";
|
|
1935
1949
|
focus: "focus";
|
|
1936
1950
|
pause: "pause";
|
|
1937
1951
|
play: "play";
|
|
1938
1952
|
scroll: "scroll";
|
|
1953
|
+
key: "key";
|
|
1939
1954
|
merge: "merge";
|
|
1940
1955
|
ghost: "ghost";
|
|
1941
1956
|
expand: "expand";
|
|
1957
|
+
type: "type";
|
|
1942
1958
|
send: "send";
|
|
1943
1959
|
grid: "grid";
|
|
1944
1960
|
group: "group";
|
|
1945
1961
|
heading: "heading";
|
|
1962
|
+
list: "list";
|
|
1946
1963
|
menu: "menu";
|
|
1947
1964
|
navigation: "navigation";
|
|
1948
1965
|
option: "option";
|
|
@@ -1953,20 +1970,18 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1953
1970
|
text: "text";
|
|
1954
1971
|
mouse: "mouse";
|
|
1955
1972
|
pen: "pen";
|
|
1973
|
+
section: "section";
|
|
1974
|
+
video: "video";
|
|
1956
1975
|
circle: "circle";
|
|
1976
|
+
image: "image";
|
|
1977
|
+
view: "view";
|
|
1957
1978
|
target: "target";
|
|
1958
1979
|
radius: "radius";
|
|
1959
1980
|
scale: "scale";
|
|
1960
1981
|
x: "x";
|
|
1961
|
-
shell: "shell";
|
|
1962
1982
|
baseline: "baseline";
|
|
1963
1983
|
terminal: "terminal";
|
|
1964
1984
|
square: "square";
|
|
1965
|
-
move: "move";
|
|
1966
|
-
section: "section";
|
|
1967
|
-
video: "video";
|
|
1968
|
-
image: "image";
|
|
1969
|
-
view: "view";
|
|
1970
1985
|
"a-arrow-down": "a-arrow-down";
|
|
1971
1986
|
"a-arrow-up": "a-arrow-up";
|
|
1972
1987
|
"a-large-small": "a-large-small";
|
|
@@ -2185,6 +2200,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2185
2200
|
binoculars: "binoculars";
|
|
2186
2201
|
biohazard: "biohazard";
|
|
2187
2202
|
bird: "bird";
|
|
2203
|
+
birdhouse: "birdhouse";
|
|
2188
2204
|
bitcoin: "bitcoin";
|
|
2189
2205
|
blend: "blend";
|
|
2190
2206
|
blinds: "blinds";
|
|
@@ -2331,6 +2347,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2331
2347
|
"chart-pie": "chart-pie";
|
|
2332
2348
|
"chart-scatter": "chart-scatter";
|
|
2333
2349
|
"chart-spline": "chart-spline";
|
|
2350
|
+
check: "check";
|
|
2334
2351
|
"check-check": "check-check";
|
|
2335
2352
|
"check-circle": "check-circle";
|
|
2336
2353
|
"check-circle-2": "check-circle-2";
|
|
@@ -2363,6 +2380,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2363
2380
|
"chevrons-up": "chevrons-up";
|
|
2364
2381
|
"chevrons-up-down": "chevrons-up-down";
|
|
2365
2382
|
chrome: "chrome";
|
|
2383
|
+
chromium: "chromium";
|
|
2366
2384
|
church: "church";
|
|
2367
2385
|
cigarette: "cigarette";
|
|
2368
2386
|
"cigarette-off": "cigarette-off";
|
|
@@ -2491,10 +2509,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2491
2509
|
"concierge-bell": "concierge-bell";
|
|
2492
2510
|
cone: "cone";
|
|
2493
2511
|
construction: "construction";
|
|
2512
|
+
contact: "contact";
|
|
2494
2513
|
"contact-2": "contact-2";
|
|
2495
2514
|
"contact-round": "contact-round";
|
|
2496
2515
|
container: "container";
|
|
2497
2516
|
contrast: "contrast";
|
|
2517
|
+
cookie: "cookie";
|
|
2498
2518
|
"cooking-pot": "cooking-pot";
|
|
2499
2519
|
"copy-check": "copy-check";
|
|
2500
2520
|
"copy-minus": "copy-minus";
|
|
@@ -2530,6 +2550,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2530
2550
|
"database-zap": "database-zap";
|
|
2531
2551
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
2532
2552
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
2553
|
+
delete: "delete";
|
|
2533
2554
|
dessert: "dessert";
|
|
2534
2555
|
diameter: "diameter";
|
|
2535
2556
|
diamond: "diamond";
|
|
@@ -2595,6 +2616,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2595
2616
|
eraser: "eraser";
|
|
2596
2617
|
"ethernet-port": "ethernet-port";
|
|
2597
2618
|
euro: "euro";
|
|
2619
|
+
"ev-charger": "ev-charger";
|
|
2598
2620
|
"external-link": "external-link";
|
|
2599
2621
|
eye: "eye";
|
|
2600
2622
|
"eye-closed": "eye-closed";
|
|
@@ -2758,6 +2780,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2758
2780
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
2759
2781
|
gamepad: "gamepad";
|
|
2760
2782
|
"gamepad-2": "gamepad-2";
|
|
2783
|
+
"gamepad-directional": "gamepad-directional";
|
|
2761
2784
|
"gantt-chart": "gantt-chart";
|
|
2762
2785
|
"gantt-chart-square": "gantt-chart-square";
|
|
2763
2786
|
gauge: "gauge";
|
|
@@ -2859,6 +2882,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2859
2882
|
hotel: "hotel";
|
|
2860
2883
|
hourglass: "hourglass";
|
|
2861
2884
|
house: "house";
|
|
2885
|
+
"house-heart": "house-heart";
|
|
2862
2886
|
"house-plug": "house-plug";
|
|
2863
2887
|
"house-plus": "house-plus";
|
|
2864
2888
|
"house-wifi": "house-wifi";
|
|
@@ -2944,10 +2968,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2944
2968
|
linkedin: "linkedin";
|
|
2945
2969
|
"list-check": "list-check";
|
|
2946
2970
|
"list-checks": "list-checks";
|
|
2971
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
2972
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
2947
2973
|
"list-collapse": "list-collapse";
|
|
2948
2974
|
"list-end": "list-end";
|
|
2949
2975
|
"list-filter": "list-filter";
|
|
2950
2976
|
"list-filter-plus": "list-filter-plus";
|
|
2977
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
2978
|
+
"list-indent-increase": "list-indent-increase";
|
|
2951
2979
|
"list-minus": "list-minus";
|
|
2952
2980
|
"list-music": "list-music";
|
|
2953
2981
|
"list-ordered": "list-ordered";
|
|
@@ -3061,6 +3089,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3061
3089
|
"minus-square": "minus-square";
|
|
3062
3090
|
monitor: "monitor";
|
|
3063
3091
|
"monitor-check": "monitor-check";
|
|
3092
|
+
"monitor-cloud": "monitor-cloud";
|
|
3064
3093
|
"monitor-cog": "monitor-cog";
|
|
3065
3094
|
"monitor-dot": "monitor-dot";
|
|
3066
3095
|
"monitor-down": "monitor-down";
|
|
@@ -3076,6 +3105,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3076
3105
|
"moon-star": "moon-star";
|
|
3077
3106
|
"more-horizontal": "more-horizontal";
|
|
3078
3107
|
"more-vertical": "more-vertical";
|
|
3108
|
+
motorbike: "motorbike";
|
|
3079
3109
|
mountain: "mountain";
|
|
3080
3110
|
"mountain-snow": "mountain-snow";
|
|
3081
3111
|
"mouse-off": "mouse-off";
|
|
@@ -3084,6 +3114,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3084
3114
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
3085
3115
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
3086
3116
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
3117
|
+
move: "move";
|
|
3087
3118
|
"move-3-d": "move-3-d";
|
|
3088
3119
|
"move-3d": "move-3d";
|
|
3089
3120
|
"move-diagonal": "move-diagonal";
|
|
@@ -3152,12 +3183,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3152
3183
|
"panel-left-dashed": "panel-left-dashed";
|
|
3153
3184
|
"panel-left-inactive": "panel-left-inactive";
|
|
3154
3185
|
"panel-left-open": "panel-left-open";
|
|
3186
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
3155
3187
|
"panel-right": "panel-right";
|
|
3156
3188
|
"panel-right-close": "panel-right-close";
|
|
3157
3189
|
"panel-right-dashed": "panel-right-dashed";
|
|
3158
3190
|
"panel-right-inactive": "panel-right-inactive";
|
|
3159
3191
|
"panel-right-open": "panel-right-open";
|
|
3160
3192
|
"panel-top": "panel-top";
|
|
3193
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
3161
3194
|
"panel-top-close": "panel-top-close";
|
|
3162
3195
|
"panel-top-dashed": "panel-top-dashed";
|
|
3163
3196
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -3298,6 +3331,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3298
3331
|
rocket: "rocket";
|
|
3299
3332
|
"rocking-chair": "rocking-chair";
|
|
3300
3333
|
"roller-coaster": "roller-coaster";
|
|
3334
|
+
rose: "rose";
|
|
3301
3335
|
"rotate-3-d": "rotate-3-d";
|
|
3302
3336
|
"rotate-3d": "rotate-3d";
|
|
3303
3337
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -3356,6 +3390,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3356
3390
|
"send-to-back": "send-to-back";
|
|
3357
3391
|
"separator-horizontal": "separator-horizontal";
|
|
3358
3392
|
"separator-vertical": "separator-vertical";
|
|
3393
|
+
server: "server";
|
|
3359
3394
|
"server-cog": "server-cog";
|
|
3360
3395
|
"server-crash": "server-crash";
|
|
3361
3396
|
"server-off": "server-off";
|
|
@@ -3365,6 +3400,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3365
3400
|
share: "share";
|
|
3366
3401
|
"share-2": "share-2";
|
|
3367
3402
|
sheet: "sheet";
|
|
3403
|
+
shell: "shell";
|
|
3368
3404
|
shield: "shield";
|
|
3369
3405
|
"shield-alert": "shield-alert";
|
|
3370
3406
|
"shield-ban": "shield-ban";
|
|
@@ -3557,6 +3593,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3557
3593
|
tablet: "tablet";
|
|
3558
3594
|
"tablet-smartphone": "tablet-smartphone";
|
|
3559
3595
|
tablets: "tablets";
|
|
3596
|
+
tag: "tag";
|
|
3597
|
+
tags: "tags";
|
|
3560
3598
|
"tally-1": "tally-1";
|
|
3561
3599
|
"tally-2": "tally-2";
|
|
3562
3600
|
"tally-3": "tally-3";
|
|
@@ -3571,12 +3609,18 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3571
3609
|
"test-tube-2": "test-tube-2";
|
|
3572
3610
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
3573
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";
|
|
3574
3616
|
"text-cursor": "text-cursor";
|
|
3575
3617
|
"text-cursor-input": "text-cursor-input";
|
|
3618
|
+
"text-initial": "text-initial";
|
|
3576
3619
|
"text-quote": "text-quote";
|
|
3577
3620
|
"text-search": "text-search";
|
|
3578
3621
|
"text-select": "text-select";
|
|
3579
3622
|
"text-selection": "text-selection";
|
|
3623
|
+
"text-wrap": "text-wrap";
|
|
3580
3624
|
theater: "theater";
|
|
3581
3625
|
thermometer: "thermometer";
|
|
3582
3626
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -3774,9 +3818,9 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3774
3818
|
}, z.core.$strip>>;
|
|
3775
3819
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3776
3820
|
hide: "hide";
|
|
3777
|
-
always: "always";
|
|
3778
3821
|
auth: "auth";
|
|
3779
3822
|
anon: "anon";
|
|
3823
|
+
always: "always";
|
|
3780
3824
|
}>, z.ZodCustom<(params: {
|
|
3781
3825
|
context: ZudokuContext;
|
|
3782
3826
|
auth: UseAuthReturn;
|
|
@@ -3791,42 +3835,35 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3791
3835
|
label: z.ZodOptional<z.ZodString>;
|
|
3792
3836
|
element: z.ZodAny;
|
|
3793
3837
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3794
|
-
|
|
3795
|
-
map: "map";
|
|
3796
|
-
filter: "filter";
|
|
3797
|
-
key: "key";
|
|
3838
|
+
info: "info";
|
|
3798
3839
|
replace: "replace";
|
|
3799
3840
|
search: "search";
|
|
3841
|
+
slice: "slice";
|
|
3800
3842
|
split: "split";
|
|
3801
3843
|
repeat: "repeat";
|
|
3802
3844
|
anchor: "anchor";
|
|
3803
3845
|
bold: "bold";
|
|
3804
3846
|
link: "link";
|
|
3805
|
-
info: "info";
|
|
3806
|
-
tags: "tags";
|
|
3807
|
-
contact: "contact";
|
|
3808
|
-
type: "type";
|
|
3809
3847
|
binary: "binary";
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
server: "server";
|
|
3813
|
-
tag: "tag";
|
|
3848
|
+
map: "map";
|
|
3849
|
+
filter: "filter";
|
|
3814
3850
|
file: "file";
|
|
3815
|
-
delete: "delete";
|
|
3816
3851
|
code: "code";
|
|
3817
|
-
check: "check";
|
|
3818
3852
|
copy: "copy";
|
|
3819
3853
|
focus: "focus";
|
|
3820
3854
|
pause: "pause";
|
|
3821
3855
|
play: "play";
|
|
3822
3856
|
scroll: "scroll";
|
|
3857
|
+
key: "key";
|
|
3823
3858
|
merge: "merge";
|
|
3824
3859
|
ghost: "ghost";
|
|
3825
3860
|
expand: "expand";
|
|
3861
|
+
type: "type";
|
|
3826
3862
|
send: "send";
|
|
3827
3863
|
grid: "grid";
|
|
3828
3864
|
group: "group";
|
|
3829
3865
|
heading: "heading";
|
|
3866
|
+
list: "list";
|
|
3830
3867
|
menu: "menu";
|
|
3831
3868
|
navigation: "navigation";
|
|
3832
3869
|
option: "option";
|
|
@@ -3837,20 +3874,18 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3837
3874
|
text: "text";
|
|
3838
3875
|
mouse: "mouse";
|
|
3839
3876
|
pen: "pen";
|
|
3877
|
+
section: "section";
|
|
3878
|
+
video: "video";
|
|
3840
3879
|
circle: "circle";
|
|
3880
|
+
image: "image";
|
|
3881
|
+
view: "view";
|
|
3841
3882
|
target: "target";
|
|
3842
3883
|
radius: "radius";
|
|
3843
3884
|
scale: "scale";
|
|
3844
3885
|
x: "x";
|
|
3845
|
-
shell: "shell";
|
|
3846
3886
|
baseline: "baseline";
|
|
3847
3887
|
terminal: "terminal";
|
|
3848
3888
|
square: "square";
|
|
3849
|
-
move: "move";
|
|
3850
|
-
section: "section";
|
|
3851
|
-
video: "video";
|
|
3852
|
-
image: "image";
|
|
3853
|
-
view: "view";
|
|
3854
3889
|
"a-arrow-down": "a-arrow-down";
|
|
3855
3890
|
"a-arrow-up": "a-arrow-up";
|
|
3856
3891
|
"a-large-small": "a-large-small";
|
|
@@ -4069,6 +4104,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4069
4104
|
binoculars: "binoculars";
|
|
4070
4105
|
biohazard: "biohazard";
|
|
4071
4106
|
bird: "bird";
|
|
4107
|
+
birdhouse: "birdhouse";
|
|
4072
4108
|
bitcoin: "bitcoin";
|
|
4073
4109
|
blend: "blend";
|
|
4074
4110
|
blinds: "blinds";
|
|
@@ -4215,6 +4251,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4215
4251
|
"chart-pie": "chart-pie";
|
|
4216
4252
|
"chart-scatter": "chart-scatter";
|
|
4217
4253
|
"chart-spline": "chart-spline";
|
|
4254
|
+
check: "check";
|
|
4218
4255
|
"check-check": "check-check";
|
|
4219
4256
|
"check-circle": "check-circle";
|
|
4220
4257
|
"check-circle-2": "check-circle-2";
|
|
@@ -4247,6 +4284,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4247
4284
|
"chevrons-up": "chevrons-up";
|
|
4248
4285
|
"chevrons-up-down": "chevrons-up-down";
|
|
4249
4286
|
chrome: "chrome";
|
|
4287
|
+
chromium: "chromium";
|
|
4250
4288
|
church: "church";
|
|
4251
4289
|
cigarette: "cigarette";
|
|
4252
4290
|
"cigarette-off": "cigarette-off";
|
|
@@ -4375,10 +4413,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4375
4413
|
"concierge-bell": "concierge-bell";
|
|
4376
4414
|
cone: "cone";
|
|
4377
4415
|
construction: "construction";
|
|
4416
|
+
contact: "contact";
|
|
4378
4417
|
"contact-2": "contact-2";
|
|
4379
4418
|
"contact-round": "contact-round";
|
|
4380
4419
|
container: "container";
|
|
4381
4420
|
contrast: "contrast";
|
|
4421
|
+
cookie: "cookie";
|
|
4382
4422
|
"cooking-pot": "cooking-pot";
|
|
4383
4423
|
"copy-check": "copy-check";
|
|
4384
4424
|
"copy-minus": "copy-minus";
|
|
@@ -4414,6 +4454,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4414
4454
|
"database-zap": "database-zap";
|
|
4415
4455
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
4416
4456
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
4457
|
+
delete: "delete";
|
|
4417
4458
|
dessert: "dessert";
|
|
4418
4459
|
diameter: "diameter";
|
|
4419
4460
|
diamond: "diamond";
|
|
@@ -4479,6 +4520,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4479
4520
|
eraser: "eraser";
|
|
4480
4521
|
"ethernet-port": "ethernet-port";
|
|
4481
4522
|
euro: "euro";
|
|
4523
|
+
"ev-charger": "ev-charger";
|
|
4482
4524
|
"external-link": "external-link";
|
|
4483
4525
|
eye: "eye";
|
|
4484
4526
|
"eye-closed": "eye-closed";
|
|
@@ -4642,6 +4684,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4642
4684
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
4643
4685
|
gamepad: "gamepad";
|
|
4644
4686
|
"gamepad-2": "gamepad-2";
|
|
4687
|
+
"gamepad-directional": "gamepad-directional";
|
|
4645
4688
|
"gantt-chart": "gantt-chart";
|
|
4646
4689
|
"gantt-chart-square": "gantt-chart-square";
|
|
4647
4690
|
gauge: "gauge";
|
|
@@ -4743,6 +4786,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4743
4786
|
hotel: "hotel";
|
|
4744
4787
|
hourglass: "hourglass";
|
|
4745
4788
|
house: "house";
|
|
4789
|
+
"house-heart": "house-heart";
|
|
4746
4790
|
"house-plug": "house-plug";
|
|
4747
4791
|
"house-plus": "house-plus";
|
|
4748
4792
|
"house-wifi": "house-wifi";
|
|
@@ -4828,10 +4872,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4828
4872
|
linkedin: "linkedin";
|
|
4829
4873
|
"list-check": "list-check";
|
|
4830
4874
|
"list-checks": "list-checks";
|
|
4875
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
4876
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
4831
4877
|
"list-collapse": "list-collapse";
|
|
4832
4878
|
"list-end": "list-end";
|
|
4833
4879
|
"list-filter": "list-filter";
|
|
4834
4880
|
"list-filter-plus": "list-filter-plus";
|
|
4881
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
4882
|
+
"list-indent-increase": "list-indent-increase";
|
|
4835
4883
|
"list-minus": "list-minus";
|
|
4836
4884
|
"list-music": "list-music";
|
|
4837
4885
|
"list-ordered": "list-ordered";
|
|
@@ -4945,6 +4993,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4945
4993
|
"minus-square": "minus-square";
|
|
4946
4994
|
monitor: "monitor";
|
|
4947
4995
|
"monitor-check": "monitor-check";
|
|
4996
|
+
"monitor-cloud": "monitor-cloud";
|
|
4948
4997
|
"monitor-cog": "monitor-cog";
|
|
4949
4998
|
"monitor-dot": "monitor-dot";
|
|
4950
4999
|
"monitor-down": "monitor-down";
|
|
@@ -4960,6 +5009,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4960
5009
|
"moon-star": "moon-star";
|
|
4961
5010
|
"more-horizontal": "more-horizontal";
|
|
4962
5011
|
"more-vertical": "more-vertical";
|
|
5012
|
+
motorbike: "motorbike";
|
|
4963
5013
|
mountain: "mountain";
|
|
4964
5014
|
"mountain-snow": "mountain-snow";
|
|
4965
5015
|
"mouse-off": "mouse-off";
|
|
@@ -4968,6 +5018,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4968
5018
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
4969
5019
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
4970
5020
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
5021
|
+
move: "move";
|
|
4971
5022
|
"move-3-d": "move-3-d";
|
|
4972
5023
|
"move-3d": "move-3d";
|
|
4973
5024
|
"move-diagonal": "move-diagonal";
|
|
@@ -5036,12 +5087,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5036
5087
|
"panel-left-dashed": "panel-left-dashed";
|
|
5037
5088
|
"panel-left-inactive": "panel-left-inactive";
|
|
5038
5089
|
"panel-left-open": "panel-left-open";
|
|
5090
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
5039
5091
|
"panel-right": "panel-right";
|
|
5040
5092
|
"panel-right-close": "panel-right-close";
|
|
5041
5093
|
"panel-right-dashed": "panel-right-dashed";
|
|
5042
5094
|
"panel-right-inactive": "panel-right-inactive";
|
|
5043
5095
|
"panel-right-open": "panel-right-open";
|
|
5044
5096
|
"panel-top": "panel-top";
|
|
5097
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
5045
5098
|
"panel-top-close": "panel-top-close";
|
|
5046
5099
|
"panel-top-dashed": "panel-top-dashed";
|
|
5047
5100
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -5182,6 +5235,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5182
5235
|
rocket: "rocket";
|
|
5183
5236
|
"rocking-chair": "rocking-chair";
|
|
5184
5237
|
"roller-coaster": "roller-coaster";
|
|
5238
|
+
rose: "rose";
|
|
5185
5239
|
"rotate-3-d": "rotate-3-d";
|
|
5186
5240
|
"rotate-3d": "rotate-3d";
|
|
5187
5241
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -5240,6 +5294,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5240
5294
|
"send-to-back": "send-to-back";
|
|
5241
5295
|
"separator-horizontal": "separator-horizontal";
|
|
5242
5296
|
"separator-vertical": "separator-vertical";
|
|
5297
|
+
server: "server";
|
|
5243
5298
|
"server-cog": "server-cog";
|
|
5244
5299
|
"server-crash": "server-crash";
|
|
5245
5300
|
"server-off": "server-off";
|
|
@@ -5249,6 +5304,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5249
5304
|
share: "share";
|
|
5250
5305
|
"share-2": "share-2";
|
|
5251
5306
|
sheet: "sheet";
|
|
5307
|
+
shell: "shell";
|
|
5252
5308
|
shield: "shield";
|
|
5253
5309
|
"shield-alert": "shield-alert";
|
|
5254
5310
|
"shield-ban": "shield-ban";
|
|
@@ -5441,6 +5497,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5441
5497
|
tablet: "tablet";
|
|
5442
5498
|
"tablet-smartphone": "tablet-smartphone";
|
|
5443
5499
|
tablets: "tablets";
|
|
5500
|
+
tag: "tag";
|
|
5501
|
+
tags: "tags";
|
|
5444
5502
|
"tally-1": "tally-1";
|
|
5445
5503
|
"tally-2": "tally-2";
|
|
5446
5504
|
"tally-3": "tally-3";
|
|
@@ -5455,12 +5513,18 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5455
5513
|
"test-tube-2": "test-tube-2";
|
|
5456
5514
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
5457
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";
|
|
5458
5520
|
"text-cursor": "text-cursor";
|
|
5459
5521
|
"text-cursor-input": "text-cursor-input";
|
|
5522
|
+
"text-initial": "text-initial";
|
|
5460
5523
|
"text-quote": "text-quote";
|
|
5461
5524
|
"text-search": "text-search";
|
|
5462
5525
|
"text-select": "text-select";
|
|
5463
5526
|
"text-selection": "text-selection";
|
|
5527
|
+
"text-wrap": "text-wrap";
|
|
5464
5528
|
theater: "theater";
|
|
5465
5529
|
thermometer: "thermometer";
|
|
5466
5530
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -5658,9 +5722,9 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5658
5722
|
}, z.core.$strip>>;
|
|
5659
5723
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5660
5724
|
hide: "hide";
|
|
5661
|
-
always: "always";
|
|
5662
5725
|
auth: "auth";
|
|
5663
5726
|
anon: "anon";
|
|
5727
|
+
always: "always";
|
|
5664
5728
|
}>, z.ZodCustom<(params: {
|
|
5665
5729
|
context: ZudokuContext;
|
|
5666
5730
|
auth: UseAuthReturn;
|
|
@@ -5676,42 +5740,35 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5676
5740
|
declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
5677
5741
|
type: z.ZodLiteral<"category">;
|
|
5678
5742
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
5679
|
-
|
|
5680
|
-
map: "map";
|
|
5681
|
-
filter: "filter";
|
|
5682
|
-
key: "key";
|
|
5743
|
+
info: "info";
|
|
5683
5744
|
replace: "replace";
|
|
5684
5745
|
search: "search";
|
|
5746
|
+
slice: "slice";
|
|
5685
5747
|
split: "split";
|
|
5686
5748
|
repeat: "repeat";
|
|
5687
5749
|
anchor: "anchor";
|
|
5688
5750
|
bold: "bold";
|
|
5689
5751
|
link: "link";
|
|
5690
|
-
info: "info";
|
|
5691
|
-
tags: "tags";
|
|
5692
|
-
contact: "contact";
|
|
5693
|
-
type: "type";
|
|
5694
5752
|
binary: "binary";
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
server: "server";
|
|
5698
|
-
tag: "tag";
|
|
5753
|
+
map: "map";
|
|
5754
|
+
filter: "filter";
|
|
5699
5755
|
file: "file";
|
|
5700
|
-
delete: "delete";
|
|
5701
5756
|
code: "code";
|
|
5702
|
-
check: "check";
|
|
5703
5757
|
copy: "copy";
|
|
5704
5758
|
focus: "focus";
|
|
5705
5759
|
pause: "pause";
|
|
5706
5760
|
play: "play";
|
|
5707
5761
|
scroll: "scroll";
|
|
5762
|
+
key: "key";
|
|
5708
5763
|
merge: "merge";
|
|
5709
5764
|
ghost: "ghost";
|
|
5710
5765
|
expand: "expand";
|
|
5766
|
+
type: "type";
|
|
5711
5767
|
send: "send";
|
|
5712
5768
|
grid: "grid";
|
|
5713
5769
|
group: "group";
|
|
5714
5770
|
heading: "heading";
|
|
5771
|
+
list: "list";
|
|
5715
5772
|
menu: "menu";
|
|
5716
5773
|
navigation: "navigation";
|
|
5717
5774
|
option: "option";
|
|
@@ -5722,20 +5779,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5722
5779
|
text: "text";
|
|
5723
5780
|
mouse: "mouse";
|
|
5724
5781
|
pen: "pen";
|
|
5782
|
+
section: "section";
|
|
5783
|
+
video: "video";
|
|
5725
5784
|
circle: "circle";
|
|
5785
|
+
image: "image";
|
|
5786
|
+
view: "view";
|
|
5726
5787
|
target: "target";
|
|
5727
5788
|
radius: "radius";
|
|
5728
5789
|
scale: "scale";
|
|
5729
5790
|
x: "x";
|
|
5730
|
-
shell: "shell";
|
|
5731
5791
|
baseline: "baseline";
|
|
5732
5792
|
terminal: "terminal";
|
|
5733
5793
|
square: "square";
|
|
5734
|
-
move: "move";
|
|
5735
|
-
section: "section";
|
|
5736
|
-
video: "video";
|
|
5737
|
-
image: "image";
|
|
5738
|
-
view: "view";
|
|
5739
5794
|
"a-arrow-down": "a-arrow-down";
|
|
5740
5795
|
"a-arrow-up": "a-arrow-up";
|
|
5741
5796
|
"a-large-small": "a-large-small";
|
|
@@ -5954,6 +6009,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5954
6009
|
binoculars: "binoculars";
|
|
5955
6010
|
biohazard: "biohazard";
|
|
5956
6011
|
bird: "bird";
|
|
6012
|
+
birdhouse: "birdhouse";
|
|
5957
6013
|
bitcoin: "bitcoin";
|
|
5958
6014
|
blend: "blend";
|
|
5959
6015
|
blinds: "blinds";
|
|
@@ -6100,6 +6156,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6100
6156
|
"chart-pie": "chart-pie";
|
|
6101
6157
|
"chart-scatter": "chart-scatter";
|
|
6102
6158
|
"chart-spline": "chart-spline";
|
|
6159
|
+
check: "check";
|
|
6103
6160
|
"check-check": "check-check";
|
|
6104
6161
|
"check-circle": "check-circle";
|
|
6105
6162
|
"check-circle-2": "check-circle-2";
|
|
@@ -6132,6 +6189,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6132
6189
|
"chevrons-up": "chevrons-up";
|
|
6133
6190
|
"chevrons-up-down": "chevrons-up-down";
|
|
6134
6191
|
chrome: "chrome";
|
|
6192
|
+
chromium: "chromium";
|
|
6135
6193
|
church: "church";
|
|
6136
6194
|
cigarette: "cigarette";
|
|
6137
6195
|
"cigarette-off": "cigarette-off";
|
|
@@ -6260,10 +6318,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6260
6318
|
"concierge-bell": "concierge-bell";
|
|
6261
6319
|
cone: "cone";
|
|
6262
6320
|
construction: "construction";
|
|
6321
|
+
contact: "contact";
|
|
6263
6322
|
"contact-2": "contact-2";
|
|
6264
6323
|
"contact-round": "contact-round";
|
|
6265
6324
|
container: "container";
|
|
6266
6325
|
contrast: "contrast";
|
|
6326
|
+
cookie: "cookie";
|
|
6267
6327
|
"cooking-pot": "cooking-pot";
|
|
6268
6328
|
"copy-check": "copy-check";
|
|
6269
6329
|
"copy-minus": "copy-minus";
|
|
@@ -6299,6 +6359,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6299
6359
|
"database-zap": "database-zap";
|
|
6300
6360
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
6301
6361
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
6362
|
+
delete: "delete";
|
|
6302
6363
|
dessert: "dessert";
|
|
6303
6364
|
diameter: "diameter";
|
|
6304
6365
|
diamond: "diamond";
|
|
@@ -6364,6 +6425,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6364
6425
|
eraser: "eraser";
|
|
6365
6426
|
"ethernet-port": "ethernet-port";
|
|
6366
6427
|
euro: "euro";
|
|
6428
|
+
"ev-charger": "ev-charger";
|
|
6367
6429
|
"external-link": "external-link";
|
|
6368
6430
|
eye: "eye";
|
|
6369
6431
|
"eye-closed": "eye-closed";
|
|
@@ -6527,6 +6589,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6527
6589
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
6528
6590
|
gamepad: "gamepad";
|
|
6529
6591
|
"gamepad-2": "gamepad-2";
|
|
6592
|
+
"gamepad-directional": "gamepad-directional";
|
|
6530
6593
|
"gantt-chart": "gantt-chart";
|
|
6531
6594
|
"gantt-chart-square": "gantt-chart-square";
|
|
6532
6595
|
gauge: "gauge";
|
|
@@ -6628,6 +6691,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6628
6691
|
hotel: "hotel";
|
|
6629
6692
|
hourglass: "hourglass";
|
|
6630
6693
|
house: "house";
|
|
6694
|
+
"house-heart": "house-heart";
|
|
6631
6695
|
"house-plug": "house-plug";
|
|
6632
6696
|
"house-plus": "house-plus";
|
|
6633
6697
|
"house-wifi": "house-wifi";
|
|
@@ -6713,10 +6777,14 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6713
6777
|
linkedin: "linkedin";
|
|
6714
6778
|
"list-check": "list-check";
|
|
6715
6779
|
"list-checks": "list-checks";
|
|
6780
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
6781
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
6716
6782
|
"list-collapse": "list-collapse";
|
|
6717
6783
|
"list-end": "list-end";
|
|
6718
6784
|
"list-filter": "list-filter";
|
|
6719
6785
|
"list-filter-plus": "list-filter-plus";
|
|
6786
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
6787
|
+
"list-indent-increase": "list-indent-increase";
|
|
6720
6788
|
"list-minus": "list-minus";
|
|
6721
6789
|
"list-music": "list-music";
|
|
6722
6790
|
"list-ordered": "list-ordered";
|
|
@@ -6830,6 +6898,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6830
6898
|
"minus-square": "minus-square";
|
|
6831
6899
|
monitor: "monitor";
|
|
6832
6900
|
"monitor-check": "monitor-check";
|
|
6901
|
+
"monitor-cloud": "monitor-cloud";
|
|
6833
6902
|
"monitor-cog": "monitor-cog";
|
|
6834
6903
|
"monitor-dot": "monitor-dot";
|
|
6835
6904
|
"monitor-down": "monitor-down";
|
|
@@ -6845,6 +6914,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6845
6914
|
"moon-star": "moon-star";
|
|
6846
6915
|
"more-horizontal": "more-horizontal";
|
|
6847
6916
|
"more-vertical": "more-vertical";
|
|
6917
|
+
motorbike: "motorbike";
|
|
6848
6918
|
mountain: "mountain";
|
|
6849
6919
|
"mountain-snow": "mountain-snow";
|
|
6850
6920
|
"mouse-off": "mouse-off";
|
|
@@ -6853,6 +6923,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6853
6923
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
6854
6924
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
6855
6925
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
6926
|
+
move: "move";
|
|
6856
6927
|
"move-3-d": "move-3-d";
|
|
6857
6928
|
"move-3d": "move-3d";
|
|
6858
6929
|
"move-diagonal": "move-diagonal";
|
|
@@ -6921,12 +6992,14 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6921
6992
|
"panel-left-dashed": "panel-left-dashed";
|
|
6922
6993
|
"panel-left-inactive": "panel-left-inactive";
|
|
6923
6994
|
"panel-left-open": "panel-left-open";
|
|
6995
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
6924
6996
|
"panel-right": "panel-right";
|
|
6925
6997
|
"panel-right-close": "panel-right-close";
|
|
6926
6998
|
"panel-right-dashed": "panel-right-dashed";
|
|
6927
6999
|
"panel-right-inactive": "panel-right-inactive";
|
|
6928
7000
|
"panel-right-open": "panel-right-open";
|
|
6929
7001
|
"panel-top": "panel-top";
|
|
7002
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
6930
7003
|
"panel-top-close": "panel-top-close";
|
|
6931
7004
|
"panel-top-dashed": "panel-top-dashed";
|
|
6932
7005
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -7067,6 +7140,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7067
7140
|
rocket: "rocket";
|
|
7068
7141
|
"rocking-chair": "rocking-chair";
|
|
7069
7142
|
"roller-coaster": "roller-coaster";
|
|
7143
|
+
rose: "rose";
|
|
7070
7144
|
"rotate-3-d": "rotate-3-d";
|
|
7071
7145
|
"rotate-3d": "rotate-3d";
|
|
7072
7146
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -7125,6 +7199,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7125
7199
|
"send-to-back": "send-to-back";
|
|
7126
7200
|
"separator-horizontal": "separator-horizontal";
|
|
7127
7201
|
"separator-vertical": "separator-vertical";
|
|
7202
|
+
server: "server";
|
|
7128
7203
|
"server-cog": "server-cog";
|
|
7129
7204
|
"server-crash": "server-crash";
|
|
7130
7205
|
"server-off": "server-off";
|
|
@@ -7134,6 +7209,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7134
7209
|
share: "share";
|
|
7135
7210
|
"share-2": "share-2";
|
|
7136
7211
|
sheet: "sheet";
|
|
7212
|
+
shell: "shell";
|
|
7137
7213
|
shield: "shield";
|
|
7138
7214
|
"shield-alert": "shield-alert";
|
|
7139
7215
|
"shield-ban": "shield-ban";
|
|
@@ -7326,6 +7402,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7326
7402
|
tablet: "tablet";
|
|
7327
7403
|
"tablet-smartphone": "tablet-smartphone";
|
|
7328
7404
|
tablets: "tablets";
|
|
7405
|
+
tag: "tag";
|
|
7406
|
+
tags: "tags";
|
|
7329
7407
|
"tally-1": "tally-1";
|
|
7330
7408
|
"tally-2": "tally-2";
|
|
7331
7409
|
"tally-3": "tally-3";
|
|
@@ -7340,12 +7418,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7340
7418
|
"test-tube-2": "test-tube-2";
|
|
7341
7419
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
7342
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";
|
|
7343
7425
|
"text-cursor": "text-cursor";
|
|
7344
7426
|
"text-cursor-input": "text-cursor-input";
|
|
7427
|
+
"text-initial": "text-initial";
|
|
7345
7428
|
"text-quote": "text-quote";
|
|
7346
7429
|
"text-search": "text-search";
|
|
7347
7430
|
"text-select": "text-select";
|
|
7348
7431
|
"text-selection": "text-selection";
|
|
7432
|
+
"text-wrap": "text-wrap";
|
|
7349
7433
|
theater: "theater";
|
|
7350
7434
|
thermometer: "thermometer";
|
|
7351
7435
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -7536,9 +7620,9 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7536
7620
|
}, z.core.$strip>]>>;
|
|
7537
7621
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7538
7622
|
hide: "hide";
|
|
7539
|
-
always: "always";
|
|
7540
7623
|
auth: "auth";
|
|
7541
7624
|
anon: "anon";
|
|
7625
|
+
always: "always";
|
|
7542
7626
|
}>, z.ZodCustom<(params: {
|
|
7543
7627
|
context: ZudokuContext;
|
|
7544
7628
|
auth: UseAuthReturn;
|