zudoku 0.0.0-fdf886de → 0.0.0-fe92c9e1
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 +32 -12
- package/cli.js +1 -0
- package/client.d.ts +8 -0
- package/dist/app/ZuploBuildConfig.d.ts +1 -1
- package/dist/app/ZuploBuildConfig.js +1 -1
- package/dist/app/ZuploBuildConfig.js.map +1 -1
- package/dist/app/entry.client.js +5 -4
- package/dist/app/entry.client.js.map +1 -1
- package/dist/app/entry.server.js +16 -3
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/env.js +6 -6
- package/dist/app/env.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/standalone.js +4 -1
- package/dist/app/standalone.js.map +1 -1
- package/dist/cli/cli.d.ts +9 -0
- package/dist/cli/cli.js +5 -10
- package/dist/cli/cli.js.map +1 -1
- package/dist/cli/cmds/build.d.ts +1 -1
- package/dist/cli/cmds/dev.d.ts +1 -1
- package/dist/cli/cmds/preview.d.ts +1 -1
- package/dist/cli/common/analytics/lib.js +1 -1
- package/dist/cli/common/analytics/lib.js.map +1 -1
- package/dist/cli/common/logger.js +0 -1
- package/dist/cli/common/logger.js.map +1 -1
- package/dist/cli/common/machine-id/lib.js +3 -2
- package/dist/cli/common/machine-id/lib.js.map +1 -1
- package/dist/cli/common/outdated.js +2 -1
- package/dist/cli/common/outdated.js.map +1 -1
- package/dist/cli/common/output.js +2 -3
- package/dist/cli/common/output.js.map +1 -1
- package/dist/cli/common/utils/box.js +2 -2
- package/dist/cli/common/utils/box.js.map +1 -1
- package/dist/cli/common/validators/lib.js +1 -1
- package/dist/cli/common/validators/lib.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/cli/dev/handler.js +0 -4
- package/dist/cli/dev/handler.js.map +1 -1
- package/dist/codegen.js +2 -2
- package/dist/codegen.js.map +1 -1
- package/dist/config/config.d.ts +15 -41
- package/dist/config/loader.js.map +1 -1
- package/dist/config/validators/BuildSchema.d.ts +16 -8
- package/dist/config/validators/BuildSchema.js +22 -5
- package/dist/config/validators/BuildSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +260 -78
- package/dist/config/validators/InputNavigationSchema.js +5 -2
- package/dist/config/validators/InputNavigationSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.test-d.js +2 -1
- package/dist/config/validators/InputNavigationSchema.test-d.js.map +1 -1
- package/dist/config/validators/NavigationSchema.d.ts +1 -1
- package/dist/config/validators/NavigationSchema.js +2 -2
- package/dist/config/validators/NavigationSchema.js.map +1 -1
- package/dist/config/validators/ProtectedRoutesSchema.d.ts +2 -2
- package/dist/config/validators/ProtectedRoutesSchema.js +1 -1
- package/dist/config/validators/ProtectedRoutesSchema.js.map +1 -1
- package/dist/config/validators/auth.d.ts +2 -2
- package/dist/config/validators/auth.js +1 -1
- package/dist/config/validators/auth.js.map +1 -1
- package/dist/config/validators/icon-types.d.ts +1 -1
- package/dist/config/validators/icon-types.js +43 -0
- package/dist/config/validators/icon-types.js.map +1 -1
- package/dist/config/validators/validate.d.ts +202 -20
- package/dist/config/validators/validate.js +70 -11
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/config/validators/validate.test.js +1 -2
- package/dist/config/validators/validate.test.js.map +1 -1
- package/dist/flat-config.d.ts +52 -3
- package/dist/index.d.ts +5 -5
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/lib/MissingIcon.d.ts +1 -1
- package/dist/lib/MissingIcon.js.map +1 -1
- 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/csharp.d.ts +3 -0
- package/dist/lib/assets/language-icons/csharp.js +4 -0
- package/dist/lib/assets/language-icons/csharp.js.map +1 -0
- package/dist/lib/assets/language-icons/css.d.ts +3 -0
- package/dist/lib/assets/language-icons/css.js +4 -0
- package/dist/lib/assets/language-icons/css.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/go.d.ts +3 -0
- package/dist/lib/assets/language-icons/go.js +4 -0
- package/dist/lib/assets/language-icons/go.js.map +1 -0
- package/dist/lib/assets/language-icons/graphql.d.ts +3 -0
- package/dist/lib/assets/language-icons/graphql.js +4 -0
- package/dist/lib/assets/language-icons/graphql.js.map +1 -0
- package/dist/lib/assets/language-icons/html.d.ts +3 -0
- package/dist/lib/assets/language-icons/html.js +4 -0
- package/dist/lib/assets/language-icons/html.js.map +1 -0
- package/dist/lib/assets/language-icons/java.d.ts +3 -0
- package/dist/lib/assets/language-icons/java.js +4 -0
- package/dist/lib/assets/language-icons/java.js.map +1 -0
- package/dist/lib/assets/language-icons/javascript.d.ts +3 -0
- package/dist/lib/assets/language-icons/javascript.js +4 -0
- package/dist/lib/assets/language-icons/javascript.js.map +1 -0
- package/dist/lib/assets/language-icons/json.d.ts +3 -0
- package/dist/lib/assets/language-icons/json.js +4 -0
- package/dist/lib/assets/language-icons/json.js.map +1 -0
- package/dist/lib/assets/language-icons/kotlin.d.ts +3 -0
- package/dist/lib/assets/language-icons/kotlin.js +4 -0
- package/dist/lib/assets/language-icons/kotlin.js.map +1 -0
- package/dist/lib/assets/language-icons/markdown.d.ts +3 -0
- package/dist/lib/assets/language-icons/markdown.js +4 -0
- package/dist/lib/assets/language-icons/markdown.js.map +1 -0
- package/dist/lib/assets/language-icons/mdx.d.ts +3 -0
- package/dist/lib/assets/language-icons/mdx.js +4 -0
- package/dist/lib/assets/language-icons/mdx.js.map +1 -0
- package/dist/lib/assets/language-icons/objectivec.d.ts +3 -0
- package/dist/lib/assets/language-icons/objectivec.js +4 -0
- package/dist/lib/assets/language-icons/objectivec.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/php.d.ts +3 -0
- package/dist/lib/assets/language-icons/php.js +4 -0
- package/dist/lib/assets/language-icons/php.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/python.d.ts +3 -0
- package/dist/lib/assets/language-icons/python.js +4 -0
- package/dist/lib/assets/language-icons/python.js.map +1 -0
- package/dist/lib/assets/language-icons/react.d.ts +3 -0
- package/dist/lib/assets/language-icons/react.js +4 -0
- package/dist/lib/assets/language-icons/react.js.map +1 -0
- package/dist/lib/assets/language-icons/ruby.d.ts +3 -0
- package/dist/lib/assets/language-icons/ruby.js +4 -0
- package/dist/lib/assets/language-icons/ruby.js.map +1 -0
- package/dist/lib/assets/language-icons/rust.d.ts +3 -0
- package/dist/lib/assets/language-icons/rust.js +4 -0
- package/dist/lib/assets/language-icons/rust.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/shell.d.ts +3 -0
- package/dist/lib/assets/language-icons/shell.js +4 -0
- package/dist/lib/assets/language-icons/shell.js.map +1 -0
- package/dist/lib/assets/language-icons/swift.d.ts +3 -0
- package/dist/lib/assets/language-icons/swift.js +4 -0
- package/dist/lib/assets/language-icons/swift.js.map +1 -0
- package/dist/lib/assets/language-icons/toml.d.ts +3 -0
- package/dist/lib/assets/language-icons/toml.js +4 -0
- package/dist/lib/assets/language-icons/toml.js.map +1 -0
- package/dist/lib/assets/language-icons/typescript.d.ts +3 -0
- package/dist/lib/assets/language-icons/typescript.js +4 -0
- package/dist/lib/assets/language-icons/typescript.js.map +1 -0
- package/dist/lib/assets/language-icons/xml.d.ts +3 -0
- package/dist/lib/assets/language-icons/xml.js +4 -0
- package/dist/lib/assets/language-icons/xml.js.map +1 -0
- package/dist/lib/assets/language-icons/yaml.d.ts +3 -0
- package/dist/lib/assets/language-icons/yaml.js +4 -0
- package/dist/lib/assets/language-icons/yaml.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/auth/issuer.test.js +1 -0
- package/dist/lib/auth/issuer.test.js.map +1 -1
- package/dist/lib/authentication/AuthenticationPlugin.d.ts +1 -1
- package/dist/lib/authentication/authentication.d.ts +19 -13
- package/dist/lib/authentication/components/OAuthErrorPage.d.ts +1 -1
- package/dist/lib/authentication/components/OAuthErrorPage.js +1 -1
- package/dist/lib/authentication/components/OAuthErrorPage.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.js +6 -5
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/components/SignOut.js +6 -6
- package/dist/lib/authentication/components/SignOut.js.map +1 -1
- package/dist/lib/authentication/components/SignUp.js +5 -5
- package/dist/lib/authentication/components/SignUp.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +3 -2
- package/dist/lib/authentication/hook.js +12 -8
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/auth0.d.ts +2 -2
- package/dist/lib/authentication/providers/auth0.js +9 -5
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/providers/azureb2c.d.ts +5 -5
- 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.d.ts +2 -2
- package/dist/lib/authentication/providers/clerk.js +2 -2
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/firebase.d.ts +4 -0
- package/dist/lib/authentication/providers/firebase.js +215 -0
- package/dist/lib/authentication/providers/firebase.js.map +1 -0
- package/dist/lib/authentication/providers/openid.d.ts +8 -8
- 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.d.ts +2 -2
- package/dist/lib/authentication/providers/supabase.js +30 -30
- 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/ZudokuAuthUi.d.ts +24 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js +124 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Apple.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Apple.js +4 -0
- package/dist/lib/authentication/ui/icons/Apple.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Facebook.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Facebook.js +4 -0
- package/dist/lib/authentication/ui/icons/Facebook.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Github.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Github.js +4 -0
- package/dist/lib/authentication/ui/icons/Github.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Google.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Google.js +4 -0
- package/dist/lib/authentication/ui/icons/Google.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Microsoft.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js +4 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js.map +1 -0
- package/dist/lib/authentication/ui/icons/X.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/X.js +4 -0
- package/dist/lib/authentication/ui/icons/X.js.map +1 -0
- package/dist/lib/authentication/use-broadcast/shared.d.ts +1 -1
- package/dist/lib/authentication/use-broadcast/shared.js +3 -3
- package/dist/lib/authentication/use-broadcast/shared.js.map +1 -1
- package/dist/lib/authentication/use-broadcast/useBroadcast.js +2 -2
- package/dist/lib/authentication/use-broadcast/useBroadcast.js.map +1 -1
- 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/Bootstrap.js.map +1 -1
- package/dist/lib/components/BuildCheck.js +4 -3
- package/dist/lib/components/BuildCheck.js.map +1 -1
- package/dist/lib/components/Header.js +1 -3
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +2 -2
- package/dist/lib/components/Heading.js +2 -6
- package/dist/lib/components/Heading.js.map +1 -1
- package/dist/lib/components/LanguageIcon.d.ts +3 -0
- package/dist/lib/components/LanguageIcon.js +163 -0
- package/dist/lib/components/LanguageIcon.js.map +1 -0
- 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/Markdown.js +2 -2
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/Meta.js +1 -1
- package/dist/lib/components/Meta.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +4 -4
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/PathRenderer.js +1 -1
- package/dist/lib/components/PathRenderer.js.map +1 -1
- package/dist/lib/components/Search.js +1 -1
- package/dist/lib/components/Search.js.map +1 -1
- package/dist/lib/components/Slot.js.map +1 -1
- package/dist/lib/components/Slot.test.js +7 -3
- package/dist/lib/components/Slot.test.js.map +1 -1
- package/dist/lib/components/TopNavigation.d.ts +1 -1
- package/dist/lib/components/TopNavigation.js +2 -2
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/Zudoku.js +5 -5
- 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/ComponentsContext.js.map +1 -1
- package/dist/lib/components/context/RouterEventsEmitter.js.map +1 -1
- package/dist/lib/components/context/SlotProvider.js.map +1 -1
- package/dist/lib/components/context/ViewportAnchorContext.js +1 -1
- package/dist/lib/components/context/ViewportAnchorContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuContext.d.ts +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/context/ZudokuProvider.d.ts +1 -1
- package/dist/lib/components/index.d.ts +14 -4
- package/dist/lib/components/index.js +3 -1
- package/dist/lib/components/index.js.map +1 -1
- package/dist/lib/components/navigation/NavigationCategory.js +6 -1
- package/dist/lib/components/navigation/NavigationCategory.js.map +1 -1
- package/dist/lib/components/navigation/NavigationItem.js +3 -3
- package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
- package/dist/lib/components/navigation/NavigationWrapper.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/components/navigation/ZudokuLogo.d.ts +1 -1
- package/dist/lib/components/navigation/utils.d.ts +3 -3
- package/dist/lib/components/navigation/utils.js +1 -2
- package/dist/lib/components/navigation/utils.js.map +1 -1
- package/dist/lib/core/RouteGuard.d.ts +1 -1
- package/dist/lib/core/RouteGuard.js +12 -20
- package/dist/lib/core/RouteGuard.js.map +1 -1
- package/dist/lib/core/ZudokuContext.d.ts +2 -1
- package/dist/lib/core/ZudokuContext.js +3 -0
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/__internal.d.ts +1 -1
- package/dist/lib/errors/ErrorAlert.js +1 -2
- package/dist/lib/errors/ErrorAlert.js.map +1 -1
- package/dist/lib/errors/RouterError.d.ts +3 -1
- package/dist/lib/errors/RouterError.js +3 -2
- package/dist/lib/errors/RouterError.js.map +1 -1
- package/dist/lib/errors/TopLevelError.d.ts +2 -2
- package/dist/lib/errors/TopLevelError.js +1 -2
- package/dist/lib/errors/TopLevelError.js.map +1 -1
- package/dist/lib/hooks/index.d.ts +3 -3
- package/dist/lib/oas/graphql/circular.js +2 -2
- package/dist/lib/oas/graphql/circular.js.map +1 -1
- package/dist/lib/oas/graphql/index.js +39 -3
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/dereference/index.js +2 -1
- package/dist/lib/oas/parser/dereference/index.js.map +1 -1
- package/dist/lib/oas/parser/dereference/resolveRef.js +3 -3
- package/dist/lib/oas/parser/dereference/resolveRef.js.map +1 -1
- package/dist/lib/oas/parser/index.js +8 -4
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/oas/parser/upgrade/index.js +2 -1
- package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
- package/dist/lib/plugins/api-catalog/Catalog.js +7 -1
- package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -1
- package/dist/lib/plugins/api-keys/CreateApiKey.d.ts +1 -1
- package/dist/lib/plugins/api-keys/CreateApiKeyDialog.d.ts +11 -0
- package/dist/lib/plugins/api-keys/CreateApiKeyDialog.js +9 -0
- package/dist/lib/plugins/api-keys/CreateApiKeyDialog.js.map +1 -0
- 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.d.ts +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js +10 -16
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +3 -3
- package/dist/lib/plugins/api-keys/index.js +1 -1
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/custom-pages/index.d.ts +1 -1
- package/dist/lib/plugins/markdown/MdxPage.d.ts +3 -2
- package/dist/lib/plugins/markdown/MdxPage.js +32 -8
- 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 +4 -2
- 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/ColorizedParam.js +4 -1
- package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
- package/dist/lib/plugins/openapi/Endpoint.js +2 -2
- 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.d.ts +5 -0
- package/dist/lib/plugins/openapi/MCPEndpoint.js +56 -0
- package/dist/lib/plugins/openapi/MCPEndpoint.js.map +1 -0
- package/dist/lib/plugins/openapi/OasProvider.d.ts +1 -1
- package/dist/lib/plugins/openapi/OasProvider.js +1 -0
- package/dist/lib/plugins/openapi/OasProvider.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.d.ts +0 -2
- package/dist/lib/plugins/openapi/OperationList.js +31 -8
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationListItem.d.ts +4 -3
- package/dist/lib/plugins/openapi/OperationListItem.js +12 -5
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/ParamInfos.d.ts +1 -1
- package/dist/lib/plugins/openapi/ParamInfos.js +11 -9
- package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterList.d.ts +2 -2
- package/dist/lib/plugins/openapi/ParameterList.js +1 -1
- package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.d.ts +2 -3
- package/dist/lib/plugins/openapi/ParameterListItem.js +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +3 -4
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +3 -5
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +11 -4
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +2 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +3 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +14 -2
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.d.ts +5 -3
- package/dist/lib/plugins/openapi/Sidecar.js +54 -30
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.d.ts +11 -6
- package/dist/lib/plugins/openapi/SidecarExamples.js +15 -33
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
- package/dist/lib/plugins/openapi/StaggeredRender.d.ts +1 -1
- package/dist/lib/plugins/openapi/client/GraphQLContext.d.ts +1 -1
- package/dist/lib/plugins/openapi/client/createServer.js +1 -2
- package/dist/lib/plugins/openapi/client/createServer.js.map +1 -1
- package/dist/lib/plugins/openapi/client/useCreateQuery.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 +1 -1
- package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -1
- package/dist/lib/plugins/openapi/context.d.ts +1 -1
- package/dist/lib/plugins/openapi/graphql/fragment-masking.d.ts +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.d.ts +2 -2
- package/dist/lib/plugins/openapi/graphql/gql.js +2 -2
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +11 -2
- package/dist/lib/plugins/openapi/graphql/graphql.js +11 -0
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +2 -2
- package/dist/lib/plugins/openapi/index.js +7 -11
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +18 -4
- package/dist/lib/plugins/openapi/playground/BodyPanel.d.ts +2 -2
- 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.d.ts +3 -3
- 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.d.ts +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/IdentityDialog.d.ts +1 -1
- package/dist/lib/plugins/openapi/playground/IdentitySelector.d.ts +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 +9 -2
- package/dist/lib/plugins/openapi/playground/Playground.js +70 -32
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +3 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/QueryParams.d.ts +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 +4 -2
- 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.d.ts +2 -2
- 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/result-panel/convertToTypes.d.ts +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.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/processors/removeExtensions.test.js +1 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.js.map +1 -1
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js.map +1 -1
- package/dist/lib/plugins/openapi/processors/traverse.d.ts +1 -1
- package/dist/lib/plugins/openapi/processors/traverse.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.d.ts +0 -3
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +6 -15
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +2 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js +12 -11
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/UnionView.d.ts +5 -0
- package/dist/lib/plugins/openapi/schema/UnionView.js +36 -0
- package/dist/lib/plugins/openapi/schema/UnionView.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/union-helpers.d.ts +28 -0
- package/dist/lib/plugins/openapi/schema/union-helpers.js +71 -0
- package/dist/lib/plugins/openapi/schema/union-helpers.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/utils.d.ts +0 -7
- package/dist/lib/plugins/openapi/schema/utils.js +0 -6
- 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.d.ts +1 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js +1 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js.map +1 -1
- package/dist/lib/plugins/openapi/util/createNavigationCategory.js +1 -0
- package/dist/lib/plugins/openapi/util/createNavigationCategory.js.map +1 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +1 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +10 -13
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
- package/dist/lib/plugins/openapi/util/getRoutes.js +1 -1
- package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -1
- package/dist/lib/plugins/openapi/util/methodColorMap.d.ts +1 -1
- package/dist/lib/plugins/search-inkeep/index.js +1 -1
- package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.d.ts +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.js +4 -1
- package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/get-results.js +0 -1
- package/dist/lib/plugins/search-pagefind/get-results.js.map +1 -1
- package/dist/lib/shiki.d.ts +3 -6
- package/dist/lib/shiki.js +29 -8
- package/dist/lib/shiki.js.map +1 -1
- package/dist/lib/ui/Breadcrumb.js +1 -1
- package/dist/lib/ui/Breadcrumb.js.map +1 -1
- package/dist/lib/ui/Button.d.ts +1 -1
- package/dist/lib/ui/Button.js +1 -0
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/Callout.d.ts +5 -5
- package/dist/lib/ui/Callout.js +5 -5
- package/dist/lib/ui/Callout.js.map +1 -1
- package/dist/lib/ui/Checkbox.d.ts +2 -2
- package/dist/lib/ui/Checkbox.js +4 -4
- package/dist/lib/ui/Checkbox.js.map +1 -1
- package/dist/lib/ui/CodeBlock.d.ts +1 -2
- package/dist/lib/ui/CodeBlock.js +3 -28
- package/dist/lib/ui/CodeBlock.js.map +1 -1
- package/dist/lib/ui/Command.d.ts +5 -5
- package/dist/lib/ui/Command.js +2 -6
- 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/EmbeddedCodeBlock.d.ts +3 -2
- package/dist/lib/ui/EmbeddedCodeBlock.js +2 -2
- package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/dist/lib/ui/Form.d.ts +2 -2
- package/dist/lib/ui/Pagination.d.ts +1 -1
- package/dist/lib/ui/Pagination.js +1 -1
- package/dist/lib/ui/Pagination.js.map +1 -1
- package/dist/lib/ui/ReactComponentDoc.d.ts +20 -0
- package/dist/lib/ui/ReactComponentDoc.js +10 -0
- package/dist/lib/ui/ReactComponentDoc.js.map +1 -0
- package/dist/lib/ui/Secret.d.ts +18 -0
- package/dist/lib/ui/Secret.js +26 -0
- package/dist/lib/ui/Secret.js.map +1 -0
- 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/ToggleGroup.d.ts +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/ui/Value.d.ts +5 -0
- package/dist/lib/ui/Value.js +13 -0
- package/dist/lib/ui/Value.js.map +1 -0
- package/dist/lib/util/MdxComponents.d.ts +3 -2
- package/dist/lib/util/MdxComponents.js +7 -4
- package/dist/lib/util/MdxComponents.js.map +1 -1
- package/dist/lib/util/cn.js.map +1 -1
- package/dist/lib/util/createVariantComponent.d.ts +7 -4
- package/dist/lib/util/createVariantComponent.js +5 -2
- package/dist/lib/util/createVariantComponent.js.map +1 -1
- package/dist/lib/util/flattenAllOf.d.ts +4 -0
- package/dist/lib/util/flattenAllOf.js +65 -0
- package/dist/lib/util/flattenAllOf.js.map +1 -0
- package/dist/lib/util/flattenAllOf.test.d.ts +1 -0
- package/dist/lib/util/flattenAllOf.test.js +532 -0
- package/dist/lib/util/flattenAllOf.test.js.map +1 -0
- package/dist/lib/util/groupBy.js +1 -0
- package/dist/lib/util/groupBy.js.map +1 -1
- package/dist/lib/util/humanFileSize.js +1 -1
- package/dist/lib/util/humanFileSize.js.map +1 -1
- package/dist/lib/util/invariant.js +3 -1
- package/dist/lib/util/invariant.js.map +1 -1
- package/dist/lib/util/pastellize.js +4 -4
- package/dist/lib/util/pastellize.js.map +1 -1
- 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/lib/util/traverse.d.ts +1 -0
- package/dist/lib/util/traverse.js +25 -0
- package/dist/lib/util/traverse.js.map +1 -1
- package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -1
- package/dist/lib/util/useScrollToAnchor.js +2 -0
- package/dist/lib/util/useScrollToAnchor.js.map +1 -1
- package/dist/ts.js +3 -3
- package/dist/ts.js.map +1 -1
- package/dist/vite/api/SchemaManager.d.ts +3 -1
- package/dist/vite/api/SchemaManager.js +43 -32
- package/dist/vite/api/SchemaManager.js.map +1 -1
- package/dist/vite/api/SchemaManager.test.js +2 -2
- package/dist/vite/api/SchemaManager.test.js.map +1 -1
- package/dist/vite/api/schema-codegen.js +60 -42
- package/dist/vite/api/schema-codegen.js.map +1 -1
- package/dist/vite/api/schema-codegen.test.js +76 -3
- package/dist/vite/api/schema-codegen.test.js.map +1 -1
- package/dist/vite/build.js +1 -1
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/dev-server.js +2 -2
- package/dist/vite/dev-server.js.map +1 -1
- package/dist/vite/error-handler.d.ts +2 -2
- package/dist/vite/error-handler.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-inject-filepath.js.map +1 -1
- package/dist/vite/mdx/remark-last-modified.js +57 -4
- package/dist/vite/mdx/remark-last-modified.js.map +1 -1
- package/dist/vite/mdx/remark-link-rewrite.js.map +1 -1
- package/dist/vite/mdx/remark-static-generation.js +1 -1
- package/dist/vite/mdx/remark-static-generation.js.map +1 -1
- package/dist/vite/output.d.ts +1 -1
- package/dist/vite/output.js +1 -1
- package/dist/vite/output.js.map +1 -1
- package/dist/vite/plugin-api-keys.d.ts +1 -1
- package/dist/vite/plugin-api-keys.js +1 -1
- package/dist/vite/plugin-api-keys.js.map +1 -1
- package/dist/vite/plugin-api.js +22 -21
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-auth.d.ts +1 -1
- package/dist/vite/plugin-auth.js +1 -1
- package/dist/vite/plugin-auth.js.map +1 -1
- package/dist/vite/plugin-component.d.ts +1 -1
- package/dist/vite/plugin-config-reload.d.ts +1 -1
- package/dist/vite/plugin-custom-pages.d.ts +1 -1
- package/dist/vite/plugin-custom-pages.js +1 -1
- package/dist/vite/plugin-custom-pages.js.map +1 -1
- package/dist/vite/plugin-docs.d.ts +9 -0
- package/dist/vite/plugin-docs.js +70 -47
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-frontmatter.js +1 -1
- 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 +141 -0
- package/dist/vite/plugin-markdown-export.js.map +1 -0
- package/dist/vite/plugin-mdx.d.ts +2 -2
- package/dist/vite/plugin-mdx.js +44 -34
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-metadata.d.ts +1 -1
- package/dist/vite/plugin-navigation.d.ts +2 -2
- package/dist/vite/plugin-navigation.js +38 -35
- package/dist/vite/plugin-navigation.js.map +1 -1
- package/dist/vite/plugin-redirect.d.ts +1 -1
- package/dist/vite/plugin-redirect.js +1 -1
- package/dist/vite/plugin-redirect.js.map +1 -1
- package/dist/vite/plugin-search.d.ts +1 -1
- package/dist/vite/plugin-search.js +1 -1
- package/dist/vite/plugin-search.js.map +1 -1
- package/dist/vite/plugin-shiki-register.js +1 -1
- package/dist/vite/plugin-shiki-register.js.map +1 -1
- package/dist/vite/plugin-theme.js +16 -7
- package/dist/vite/plugin-theme.js.map +1 -1
- package/dist/vite/plugin-theme.test.js +2 -0
- package/dist/vite/plugin-theme.test.js.map +1 -1
- package/dist/vite/plugin.d.ts +1 -1
- package/dist/vite/plugin.js +4 -2
- package/dist/vite/plugin.js.map +1 -1
- package/dist/vite/prerender/FileWritingResponse.js +5 -3
- package/dist/vite/prerender/FileWritingResponse.js.map +1 -1
- package/dist/vite/prerender/InMemoryResponse.js +3 -1
- package/dist/vite/prerender/InMemoryResponse.js.map +1 -1
- package/dist/vite/prerender/prerender.js +38 -5
- package/dist/vite/prerender/prerender.js.map +1 -1
- package/dist/vite/prerender/worker.d.ts +1 -1
- package/dist/vite/prerender/worker.js.map +1 -1
- package/dist/vite/reporter.js +2 -2
- package/dist/vite/reporter.js.map +1 -1
- package/dist/vite/shadcn-registry.d.ts +8 -33
- package/dist/vite/sitemap.js +4 -4
- package/dist/vite/sitemap.js.map +1 -1
- package/dist/zuplo/enrich-with-zuplo-mcp.d.ts +4 -0
- package/dist/zuplo/enrich-with-zuplo-mcp.js +117 -0
- package/dist/zuplo/enrich-with-zuplo-mcp.js.map +1 -0
- package/dist/zuplo/enrich-with-zuplo.d.ts +1 -0
- package/dist/zuplo/enrich-with-zuplo.js +4 -4
- package/dist/zuplo/enrich-with-zuplo.js.map +1 -1
- package/dist/zuplo/policy-types.js +0 -1
- package/dist/zuplo/policy-types.js.map +1 -1
- package/dist/zuplo/with-zuplo-processors.js +2 -0
- package/dist/zuplo/with-zuplo-processors.js.map +1 -1
- package/dist/zuplo/with-zuplo.js +1 -1
- package/dist/zuplo/with-zuplo.js.map +1 -1
- package/lib/{Button-B3o-2Xdf.js → Button-B3ucvvQw.js} +7 -6
- package/lib/Button-B3ucvvQw.js.map +1 -0
- package/lib/{Card-CMDQUPM4.js → Card-KFniaZn5.js} +2 -2
- package/lib/{Card-CMDQUPM4.js.map → Card-KFniaZn5.js.map} +1 -1
- package/lib/{CategoryHeading-DCpZu3yG.js → CategoryHeading-DhmodDcq.js} +2 -2
- package/lib/{CategoryHeading-DCpZu3yG.js.map → CategoryHeading-DhmodDcq.js.map} +1 -1
- package/lib/{Command-CDn17s8X.js → Command-CUcrW3qs.js} +22 -28
- package/lib/Command-CUcrW3qs.js.map +1 -0
- package/lib/Dialog-BQciPiHN.js +144 -0
- package/lib/Dialog-BQciPiHN.js.map +1 -0
- package/lib/{Drawer-DJ05s2pH.js → Drawer-Ci7XwhqT.js} +2 -2
- package/lib/{Drawer-DJ05s2pH.js.map → Drawer-Ci7XwhqT.js.map} +1 -1
- package/lib/DropdownMenu-BZ2NKQ3K.js +126 -0
- package/lib/DropdownMenu-BZ2NKQ3K.js.map +1 -0
- package/lib/{Slot-DOtTvoyj.js → ErrorAlert-B4eXGBQj.js} +2413 -2431
- package/lib/ErrorAlert-B4eXGBQj.js.map +1 -0
- package/lib/MdxPage-BSxjb_Mb.js +240 -0
- package/lib/MdxPage-BSxjb_Mb.js.map +1 -0
- package/lib/{OAuthErrorPage-Jv3r8wnL.js → OAuthErrorPage-YbraVLZt.js} +9 -9
- package/lib/OAuthErrorPage-YbraVLZt.js.map +1 -0
- package/lib/{OasProvider-CA_lpILt.js → OasProvider-CgHWBl16.js} +5 -4
- package/lib/OasProvider-CgHWBl16.js.map +1 -0
- package/lib/OperationList-BNNhgkkk.js +5482 -0
- package/lib/OperationList-BNNhgkkk.js.map +1 -0
- package/lib/{Pagination-CBiRGddW.js → Pagination-BpxzD3Tn.js} +4 -4
- package/lib/{Pagination-CBiRGddW.js.map → Pagination-BpxzD3Tn.js.map} +1 -1
- package/lib/RouteGuard-Brz95MSt.js +77 -0
- package/lib/RouteGuard-Brz95MSt.js.map +1 -0
- package/lib/RouterError-BsnUU8eo.js +42 -0
- package/lib/RouterError-BsnUU8eo.js.map +1 -0
- package/lib/{SchemaList-BeYWvBC7.js → SchemaList-C8-SHBql.js} +10 -10
- package/lib/{SchemaList-BeYWvBC7.js.map → SchemaList-C8-SHBql.js.map} +1 -1
- package/lib/SchemaView-VsgUbgRw.js +397 -0
- package/lib/SchemaView-VsgUbgRw.js.map +1 -0
- package/lib/Select-C1DeCqKv.js +372 -0
- package/lib/Select-C1DeCqKv.js.map +1 -0
- package/lib/SignUp-Bnvel-zK.js +50 -0
- package/lib/SignUp-Bnvel-zK.js.map +1 -0
- package/lib/{Spinner-mNLZ6awP.js → Spinner-CI6bRyZw.js} +2 -2
- package/lib/{Spinner-mNLZ6awP.js.map → Spinner-CI6bRyZw.js.map} +1 -1
- package/lib/{SyntaxHighlight-GR0eix_L.js → SyntaxHighlight-C19vH0V_.js} +1074 -1030
- package/lib/SyntaxHighlight-C19vH0V_.js.map +1 -0
- package/lib/{Toc-BlcGIkXc.js → Toc-DR_4nkDQ.js} +6 -6
- package/lib/Toc-DR_4nkDQ.js.map +1 -0
- package/lib/ZudokuContext-BUZ5hkWB.js +1508 -0
- package/lib/ZudokuContext-BUZ5hkWB.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-BMhpCH5D.js +7965 -0
- package/lib/chunk-PVWAREVJ-BMhpCH5D.js.map +1 -0
- package/lib/{circular-CGTcsqA3.js → circular-BHuymtcS.js} +30 -30
- package/lib/{circular-CGTcsqA3.js.map → circular-BHuymtcS.js.map} +1 -1
- package/lib/cn-dYga0KKN.js.map +1 -1
- 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-DjgpuLne.js → createServer-C4Kx4Ah4.js} +3703 -3225
- package/lib/createServer-C4Kx4Ah4.js.map +1 -0
- package/lib/csharp-D8MIL50B.js +53 -0
- package/lib/csharp-D8MIL50B.js.map +1 -0
- package/lib/css-Bt6hr1td.js +54 -0
- package/lib/css-Bt6hr1td.js.map +1 -0
- 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-CrI3s7mR.js → errors-C43bc4dH.js} +3 -3
- package/lib/errors-C43bc4dH.js.map +1 -0
- package/lib/go-D2VsmIOS.js +25 -0
- package/lib/go-D2VsmIOS.js.map +1 -0
- package/lib/graphql-BtA6M4m5.js +25 -0
- package/lib/graphql-BtA6M4m5.js.map +1 -0
- package/lib/hook-CMeoxziF.js +40 -0
- package/lib/hook-CMeoxziF.js.map +1 -0
- package/lib/html-MGnI2uzP.js +33 -0
- package/lib/html-MGnI2uzP.js.map +1 -0
- package/lib/index-BlL_RtG2.js +3665 -0
- package/lib/index-BlL_RtG2.js.map +1 -0
- package/lib/{index-DzO-Qh6S.js → index-CfR_Jx5Q.js} +276 -278
- package/lib/index-CfR_Jx5Q.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/{index-HarEI51d.js → index-Dc4KrhPf.js} +166 -50
- package/lib/index-Dc4KrhPf.js.map +1 -0
- package/lib/{index-DmNq2fbN.js → index-nGbmHh_A.js} +2 -2
- package/lib/index-nGbmHh_A.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.map +1 -1
- package/lib/invariant-Bm-FVUQE.js.map +1 -1
- package/lib/java-CVLzHfb1.js +53 -0
- package/lib/java-CVLzHfb1.js.map +1 -0
- package/lib/javascript-CcmIpL4G.js +10 -0
- package/lib/javascript-CcmIpL4G.js.map +1 -0
- package/lib/json-4AyP4uiY.js +25 -0
- package/lib/json-4AyP4uiY.js.map +1 -0
- package/lib/{jsx-runtime-C5mzlN2N.js → jsx-runtime-BzflLqGi.js} +110 -112
- package/lib/jsx-runtime-BzflLqGi.js.map +1 -0
- package/lib/kotlin-v2plddBQ.js +37 -0
- package/lib/kotlin-v2plddBQ.js.map +1 -0
- package/lib/markdown-DYGWCmGQ.js +25 -0
- package/lib/markdown-DYGWCmGQ.js.map +1 -0
- package/lib/mdx-CHwYvXd4.js +32 -0
- package/lib/mdx-CHwYvXd4.js.map +1 -0
- package/lib/{mutation-Dy_5up8v.js → mutation-BSU0xu4m.js} +2 -2
- package/lib/{mutation-Dy_5up8v.js.map → mutation-BSU0xu4m.js.map} +1 -1
- package/lib/objectivec-HZY8shkd.js +32 -0
- package/lib/objectivec-HZY8shkd.js.map +1 -0
- package/lib/ocaml-DqsdDdwb.js +52 -0
- package/lib/ocaml-DqsdDdwb.js.map +1 -0
- package/lib/php-rQXzo7K_.js +25 -0
- package/lib/php-rQXzo7K_.js.map +1 -0
- package/lib/powershell-CQje9pm1.js +39 -0
- package/lib/powershell-CQje9pm1.js.map +1 -0
- package/lib/processors/traverse.js.map +1 -1
- package/lib/python-QIQAE5Ei.js +32 -0
- package/lib/python-QIQAE5Ei.js.map +1 -0
- package/lib/react-DHpVpxRv.js +24 -0
- package/lib/react-DHpVpxRv.js.map +1 -0
- package/lib/ruby-B2dU8Ny5.js +25 -0
- package/lib/ruby-B2dU8Ny5.js.map +1 -0
- package/lib/rust-DYnLHAi2.js +25 -0
- package/lib/rust-DYnLHAi2.js.map +1 -0
- package/lib/scala-CeKInBR8.js +25 -0
- package/lib/scala-CeKInBR8.js.map +1 -0
- package/lib/shell-HUv9oVtp.js +25 -0
- package/lib/shell-HUv9oVtp.js.map +1 -0
- package/lib/swift-B4z6ig1Z.js +25 -0
- package/lib/swift-B4z6ig1Z.js.map +1 -0
- package/lib/toml-Co9mpdct.js +32 -0
- package/lib/toml-Co9mpdct.js.map +1 -0
- package/lib/typescript-C26xdBDC.js +32 -0
- package/lib/typescript-C26xdBDC.js.map +1 -0
- 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 +1 -1
- package/lib/ui/Breadcrumb.js +23 -22
- package/lib/ui/Breadcrumb.js.map +1 -1
- package/lib/ui/Button.js +6 -5
- package/lib/ui/Button.js.map +1 -1
- 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 -6
- package/lib/ui/CodeBlock.js.map +1 -1
- package/lib/ui/Command.js +21 -27
- 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 +2 -2
- package/lib/ui/DropdownMenu.js +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +25 -22
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/lib/ui/Form.js +2 -2
- package/lib/ui/Form.js.map +1 -1
- package/lib/ui/HoverCard.js +1 -1
- package/lib/ui/Input.js +1 -1
- package/lib/ui/Label.js +1 -1
- package/lib/ui/Pagination.js +28 -29
- package/lib/ui/Pagination.js.map +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 +28 -0
- package/lib/ui/ReactComponentDoc.js.map +1 -0
- package/lib/ui/ScrollArea.js +1 -1
- package/lib/ui/Secret.js +106 -0
- package/lib/ui/Secret.js.map +1 -0
- package/lib/ui/Select.js +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 +4 -4
- package/lib/ui/Tabs.js +1 -1
- package/lib/ui/Textarea.js +1 -1
- package/lib/ui/Toggle.js +1 -1
- package/lib/ui/ToggleGroup.js +1 -1
- package/lib/ui/ToggleGroup.js.map +1 -1
- package/lib/ui/Tooltip.js +55 -28
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/ui/Value.js +39 -0
- package/lib/ui/Value.js.map +1 -0
- package/lib/useCopyToClipboard-B_085nfO.js +14 -0
- package/lib/useCopyToClipboard-B_085nfO.js.map +1 -0
- package/lib/{useExposedProps-BH9aq4MD.js → useExposedProps-U3pmsHaG.js} +34 -34
- package/lib/{useExposedProps-BH9aq4MD.js.map → useExposedProps-U3pmsHaG.js.map} +1 -1
- package/lib/xml-BQOOC04j.js +25 -0
- package/lib/xml-BQOOC04j.js.map +1 -0
- package/lib/yaml-BGsJItKv.js +32 -0
- package/lib/yaml-BGsJItKv.js.map +1 -0
- package/lib/zig-CUV2sTct.js +35 -0
- package/lib/zig-CUV2sTct.js.map +1 -0
- package/lib/zudoku.__internal.js +1192 -1073
- package/lib/zudoku.__internal.js.map +1 -1
- package/lib/zudoku.auth-auth0.js +23 -22
- 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-openid.js +104 -108
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.auth-supabase.js +108 -51
- package/lib/zudoku.auth-supabase.js.map +1 -1
- package/lib/zudoku.components.js +21 -20
- package/lib/zudoku.hooks.js +6 -6
- package/lib/zudoku.hooks.js.map +1 -1
- package/lib/zudoku.icons.js +1 -1
- package/lib/zudoku.icons.js.map +1 -1
- package/lib/zudoku.plugin-api-catalog.js +34 -28
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +302 -327
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +1 -1
- package/lib/zudoku.plugin-custom-pages.js.map +1 -1
- package/lib/zudoku.plugin-markdown.js +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-inkeep.js.map +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +48 -49
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.router.js +2502 -118
- package/lib/zudoku.router.js.map +1 -1
- package/package.json +93 -92
- package/src/app/ZuploBuildConfig.ts +1 -1
- package/src/app/entry.client.tsx +6 -5
- package/src/app/entry.server.tsx +19 -9
- package/src/app/env.ts +6 -6
- package/src/app/main.css +71 -19
- package/src/app/main.tsx +7 -3
- package/src/app/standalone.tsx +7 -2
- package/src/lib/MissingIcon.tsx +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/csharp.tsx +35 -0
- package/src/lib/assets/language-icons/css.tsx +36 -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/go.tsx +19 -0
- package/src/lib/assets/language-icons/graphql.tsx +19 -0
- package/src/lib/assets/language-icons/html.tsx +24 -0
- package/src/lib/assets/language-icons/java.tsx +35 -0
- package/src/lib/assets/language-icons/javascript.tsx +11 -0
- package/src/lib/assets/language-icons/json.tsx +19 -0
- package/src/lib/assets/language-icons/kotlin.tsx +30 -0
- package/src/lib/assets/language-icons/markdown.tsx +19 -0
- package/src/lib/assets/language-icons/mdx.tsx +23 -0
- package/src/lib/assets/language-icons/objectivec.tsx +23 -0
- package/src/lib/assets/language-icons/ocaml.tsx +34 -0
- package/src/lib/assets/language-icons/php.tsx +19 -0
- package/src/lib/assets/language-icons/powershell.tsx +27 -0
- package/src/lib/assets/language-icons/python.tsx +23 -0
- package/src/lib/assets/language-icons/react.tsx +21 -0
- package/src/lib/assets/language-icons/ruby.tsx +19 -0
- package/src/lib/assets/language-icons/rust.tsx +19 -0
- package/src/lib/assets/language-icons/scala.tsx +19 -0
- package/src/lib/assets/language-icons/shell.tsx +19 -0
- package/src/lib/assets/language-icons/swift.tsx +19 -0
- package/src/lib/assets/language-icons/toml.tsx +23 -0
- package/src/lib/assets/language-icons/typescript.tsx +23 -0
- package/src/lib/assets/language-icons/xml.tsx +19 -0
- package/src/lib/assets/language-icons/yaml.tsx +23 -0
- package/src/lib/assets/language-icons/zig.tsx +32 -0
- package/src/lib/auth/issuer.test.ts +1 -0
- package/src/lib/auth/issuer.ts +3 -0
- package/src/lib/authentication/AuthenticationPlugin.tsx +4 -4
- package/src/lib/authentication/authentication.ts +26 -8
- package/src/lib/authentication/components/OAuthErrorPage.tsx +2 -2
- package/src/lib/authentication/components/SignIn.tsx +7 -5
- package/src/lib/authentication/components/SignOut.tsx +7 -6
- package/src/lib/authentication/components/SignUp.tsx +5 -8
- package/src/lib/authentication/hook.ts +21 -10
- package/src/lib/authentication/providers/auth0.tsx +14 -9
- package/src/lib/authentication/providers/azureb2c.tsx +15 -8
- package/src/lib/authentication/providers/clerk.tsx +14 -7
- package/src/lib/authentication/providers/firebase.tsx +284 -0
- package/src/lib/authentication/providers/openid.tsx +26 -21
- package/src/lib/authentication/providers/supabase/SupabaseAuthUI.tsx +75 -0
- package/src/lib/authentication/providers/supabase.tsx +61 -49
- package/src/lib/authentication/state.ts +3 -23
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +335 -0
- package/src/lib/authentication/ui/icons/Apple.tsx +10 -0
- package/src/lib/authentication/ui/icons/Facebook.tsx +15 -0
- package/src/lib/authentication/ui/icons/Github.tsx +16 -0
- package/src/lib/authentication/ui/icons/Google.tsx +16 -0
- package/src/lib/authentication/ui/icons/Microsoft.tsx +12 -0
- package/src/lib/authentication/ui/icons/X.tsx +10 -0
- package/src/lib/authentication/use-broadcast/LICENSE.md +12 -3
- package/src/lib/authentication/use-broadcast/shared.ts +4 -4
- package/src/lib/authentication/use-broadcast/useBroadcast.ts +2 -2
- package/src/lib/components/AnchorLink.tsx +1 -1
- package/src/lib/components/Autocomplete.tsx +12 -3
- package/src/lib/components/Bootstrap.tsx +1 -0
- package/src/lib/components/BuildCheck.tsx +14 -11
- package/src/lib/components/Header.tsx +2 -3
- package/src/lib/components/Heading.tsx +4 -9
- package/src/lib/components/LanguageIcon.tsx +181 -0
- package/src/lib/components/Layout.tsx +1 -1
- package/src/lib/components/Main.tsx +1 -1
- package/src/lib/components/Markdown.tsx +5 -2
- package/src/lib/components/Meta.tsx +13 -0
- package/src/lib/components/MobileTopNavigation.tsx +11 -13
- package/src/lib/components/PathRenderer.tsx +2 -2
- package/src/lib/components/Search.tsx +1 -1
- package/src/lib/components/Slot.test.tsx +8 -8
- package/src/lib/components/Slot.tsx +2 -2
- package/src/lib/components/TopNavigation.tsx +3 -3
- package/src/lib/components/Zudoku.tsx +5 -5
- package/src/lib/components/cache.ts +9 -5
- package/src/lib/components/context/ComponentsContext.tsx +2 -2
- package/src/lib/components/context/RouterEventsEmitter.tsx +1 -1
- package/src/lib/components/context/SlotProvider.tsx +4 -4
- package/src/lib/components/context/ViewportAnchorContext.tsx +2 -2
- package/src/lib/components/context/ZudokuContext.ts +12 -3
- package/src/lib/components/context/ZudokuProvider.tsx +1 -1
- package/src/lib/components/index.ts +3 -1
- package/src/lib/components/navigation/NavigationCategory.tsx +8 -1
- package/src/lib/components/navigation/NavigationItem.tsx +3 -3
- package/src/lib/components/navigation/NavigationWrapper.tsx +1 -1
- package/src/lib/components/navigation/Toc.tsx +5 -5
- package/src/lib/components/navigation/ZudokuLogo.tsx +1 -1
- package/src/lib/components/navigation/utils.ts +5 -6
- package/src/lib/core/RouteGuard.tsx +41 -21
- package/src/lib/core/ZudokuContext.ts +5 -1
- package/src/lib/errors/ErrorAlert.tsx +1 -2
- package/src/lib/errors/RouterError.tsx +7 -2
- package/src/lib/errors/TopLevelError.tsx +2 -4
- package/src/lib/hooks/useEvent.test.tsx +2 -2
- package/src/lib/oas/graphql/circular.ts +3 -3
- package/src/lib/oas/graphql/index.ts +39 -3
- package/src/lib/oas/parser/dereference/index.ts +2 -1
- package/src/lib/oas/parser/dereference/resolveRef.ts +4 -4
- package/src/lib/oas/parser/index.ts +10 -5
- package/src/lib/oas/parser/upgrade/index.ts +2 -1
- package/src/lib/plugins/api-catalog/Catalog.tsx +7 -0
- package/src/lib/plugins/api-keys/CreateApiKey.tsx +1 -1
- package/src/lib/plugins/api-keys/CreateApiKeyDialog.tsx +49 -0
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +11 -7
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +23 -70
- package/src/lib/plugins/api-keys/index.tsx +8 -8
- package/src/lib/plugins/custom-pages/index.tsx +1 -1
- package/src/lib/plugins/markdown/MdxPage.tsx +131 -14
- 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 +6 -8
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +5 -3
- package/src/lib/plugins/openapi/ColorizedParam.tsx +3 -1
- package/src/lib/plugins/openapi/Endpoint.tsx +2 -2
- package/src/lib/plugins/openapi/GeneratedExampleSidecarBox.tsx +52 -0
- package/src/lib/plugins/openapi/MCPEndpoint.tsx +273 -0
- package/src/lib/plugins/openapi/OasProvider.tsx +2 -1
- package/src/lib/plugins/openapi/OperationList.tsx +39 -13
- package/src/lib/plugins/openapi/OperationListItem.tsx +103 -76
- package/src/lib/plugins/openapi/ParamInfos.tsx +10 -9
- package/src/lib/plugins/openapi/ParameterList.tsx +3 -5
- package/src/lib/plugins/openapi/ParameterListItem.tsx +6 -12
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +8 -13
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +23 -4
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +27 -2
- package/src/lib/plugins/openapi/Sidecar.tsx +112 -64
- package/src/lib/plugins/openapi/SidecarExamples.tsx +40 -57
- package/src/lib/plugins/openapi/StaggeredRender.tsx +1 -1
- package/src/lib/plugins/openapi/client/GraphQLContext.tsx +1 -1
- package/src/lib/plugins/openapi/client/createServer.ts +1 -2
- package/src/lib/plugins/openapi/client/useCreateQuery.ts +3 -2
- package/src/lib/plugins/openapi/components/NonHighlightedCode.tsx +22 -0
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +1 -1
- package/src/lib/plugins/openapi/context.tsx +1 -1
- package/src/lib/plugins/openapi/graphql/fragment-masking.ts +1 -1
- package/src/lib/plugins/openapi/graphql/gql.ts +6 -6
- package/src/lib/plugins/openapi/graphql/graphql.ts +25 -3
- package/src/lib/plugins/openapi/index.tsx +14 -33
- package/src/lib/plugins/openapi/interfaces.ts +19 -4
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +249 -33
- package/src/lib/plugins/openapi/playground/CollapsibleHeader.tsx +10 -6
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +6 -5
- package/src/lib/plugins/openapi/playground/Headers.tsx +104 -220
- package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +1 -1
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +1 -1
- 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 +90 -41
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +13 -2
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +83 -137
- 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/UrlPath.tsx +1 -1
- package/src/lib/plugins/openapi/playground/request-panel/UrlQueryParams.tsx +2 -2
- 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 +5 -3
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +124 -56
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +4 -4
- package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.ts +1 -1
- package/src/lib/plugins/openapi/playground/useRememberSkipLoginDialog.tsx +3 -0
- package/src/lib/plugins/openapi/processors/removeExtensions.test.ts +1 -0
- package/src/lib/plugins/openapi/processors/removeParameters.test.ts +1 -0
- package/src/lib/plugins/openapi/processors/traverse.ts +1 -1
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +6 -27
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +30 -23
- package/src/lib/plugins/openapi/schema/UnionView.tsx +143 -0
- package/src/lib/plugins/openapi/schema/union-helpers.ts +123 -0
- package/src/lib/plugins/openapi/schema/utils.ts +0 -11
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +2 -2
- package/src/lib/plugins/openapi/util/createNavigationCategory.tsx +1 -0
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +14 -15
- package/src/lib/plugins/openapi/util/getRoutes.tsx +2 -2
- package/src/lib/plugins/openapi/util/methodColorMap.tsx +1 -1
- package/src/lib/plugins/search-inkeep/index.tsx +3 -3
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +2 -4
- package/src/lib/plugins/search-pagefind/ResultList.tsx +3 -4
- package/src/lib/plugins/search-pagefind/get-results.tsx +0 -1
- package/src/lib/shiki.ts +35 -8
- package/src/lib/ui/Breadcrumb.tsx +1 -0
- package/src/lib/ui/Button.tsx +1 -0
- package/src/lib/ui/Callout.tsx +10 -5
- package/src/lib/ui/Checkbox.tsx +23 -24
- package/src/lib/ui/CodeBlock.tsx +7 -41
- package/src/lib/ui/Command.tsx +2 -4
- package/src/lib/ui/Dialog.tsx +112 -107
- package/src/lib/ui/EmbeddedCodeBlock.tsx +6 -4
- package/src/lib/ui/Form.tsx +4 -4
- package/src/lib/ui/Pagination.tsx +1 -2
- package/src/lib/ui/ReactComponentDoc.tsx +68 -0
- package/src/lib/ui/Secret.tsx +123 -0
- package/src/lib/ui/Separator.tsx +25 -0
- package/src/lib/ui/SyntaxHighlight.tsx +6 -1
- package/src/lib/ui/ToggleGroup.tsx +1 -1
- package/src/lib/ui/Tooltip.tsx +54 -32
- package/src/lib/ui/Value.tsx +42 -0
- package/src/lib/util/MdxComponents.tsx +12 -4
- package/src/lib/util/cn.ts +1 -1
- package/src/lib/util/createVariantComponent.tsx +33 -7
- package/src/lib/util/flattenAllOf.test.ts +637 -0
- package/src/lib/util/flattenAllOf.ts +101 -0
- package/src/lib/util/groupBy.ts +1 -0
- package/src/lib/util/humanFileSize.ts +2 -3
- package/src/lib/util/invariant.ts +1 -0
- package/src/lib/util/pastellize.ts +4 -4
- package/src/lib/util/syncZustandState.ts +22 -0
- package/src/lib/util/traverse.ts +36 -0
- package/src/lib/util/types.ts +1 -1
- package/src/lib/util/useIsomorphicLayoutEffect.ts +1 -0
- package/src/lib/util/useScrollToAnchor.ts +3 -1
- package/src/shiki/langs/hurl.js +1 -0
- package/src/shiki/langs/kdl.js +1 -0
- package/src/shiki/langs/pkl.js +1 -0
- package/src/shiki/langs/rosmsg.js +1 -0
- package/dist/lib/components/ReactMarkdown.d.ts +0 -29
- package/dist/lib/components/ReactMarkdown.js +0 -182
- package/dist/lib/components/ReactMarkdown.js.map +0 -1
- 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/LogicalGroup/LogicalGroup.d.ts +0 -8
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js +0 -14
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.d.ts +0 -7
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js +0 -17
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.d.ts +0 -6
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js +0 -10
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js.map +0 -1
- package/lib/Button-B3o-2Xdf.js.map +0 -1
- package/lib/CodeBlock-yJjjRwj-.js +0 -98
- package/lib/CodeBlock-yJjjRwj-.js.map +0 -1
- package/lib/Command-CDn17s8X.js.map +0 -1
- package/lib/Dialog-BrIjMmUK.js +0 -114
- package/lib/Dialog-BrIjMmUK.js.map +0 -1
- package/lib/MdxPage-BmOQ5m5g.js +0 -111
- package/lib/MdxPage-BmOQ5m5g.js.map +0 -1
- package/lib/OAuthErrorPage-Jv3r8wnL.js.map +0 -1
- package/lib/OasProvider-CA_lpILt.js.map +0 -1
- package/lib/OperationList-C-TObVw6.js +0 -5169
- package/lib/OperationList-C-TObVw6.js.map +0 -1
- package/lib/RouteGuard-JLH6tCY8.js +0 -56
- package/lib/RouteGuard-JLH6tCY8.js.map +0 -1
- package/lib/RouterError-DcVonMP1.js +0 -41
- package/lib/RouterError-DcVonMP1.js.map +0 -1
- package/lib/SchemaView-CRcShewo.js +0 -366
- package/lib/SchemaView-CRcShewo.js.map +0 -1
- package/lib/Select-C3efYI1n.js +0 -273
- package/lib/Select-C3efYI1n.js.map +0 -1
- package/lib/SignUp-CxBGHgba.js +0 -56
- package/lib/SignUp-CxBGHgba.js.map +0 -1
- package/lib/Slot-DOtTvoyj.js.map +0 -1
- package/lib/SyntaxHighlight-GR0eix_L.js.map +0 -1
- package/lib/Toc-BlcGIkXc.js.map +0 -1
- package/lib/ZudokuContext-BuJD7yIX.js +0 -1286
- package/lib/ZudokuContext-BuJD7yIX.js.map +0 -1
- package/lib/chunk-QMGIS6GS-DqecZ6nq.js +0 -9204
- package/lib/chunk-QMGIS6GS-DqecZ6nq.js.map +0 -1
- package/lib/createServer-DjgpuLne.js.map +0 -1
- package/lib/errors-CrI3s7mR.js.map +0 -1
- package/lib/hook-bv3iuX7X.js +0 -247
- package/lib/hook-bv3iuX7X.js.map +0 -1
- package/lib/index-CvTWnHZF.js +0 -3391
- package/lib/index-CvTWnHZF.js.map +0 -1
- package/lib/index-DmNq2fbN.js.map +0 -1
- package/lib/index-DzO-Qh6S.js.map +0 -1
- package/lib/index-HarEI51d.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-C5mzlN2N.js.map +0 -1
- package/src/lib/components/ReactMarkdown.license.txt +0 -21
- package/src/lib/components/ReactMarkdown.tsx +0 -264
- package/src/lib/plugins/openapi/playground/InlineInput.tsx +0 -6
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.tsx +0 -40
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.tsx +0 -57
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.tsx +0 -33
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z } from "zod
|
|
1
|
+
import { z } from "zod";
|
|
2
2
|
import type { UseAuthReturn } from "../../lib/authentication/hook.js";
|
|
3
3
|
import type { ZudokuContext } from "../../lib/core/ZudokuContext.js";
|
|
4
4
|
declare const InputNavigationCategoryLinkDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -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,10 +23,10 @@ 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
|
+
info: "info";
|
|
26
27
|
slice: "slice";
|
|
27
28
|
map: "map";
|
|
28
29
|
filter: "filter";
|
|
29
|
-
key: "key";
|
|
30
30
|
replace: "replace";
|
|
31
31
|
search: "search";
|
|
32
32
|
split: "split";
|
|
@@ -34,31 +34,23 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
34
34
|
anchor: "anchor";
|
|
35
35
|
bold: "bold";
|
|
36
36
|
link: "link";
|
|
37
|
-
info: "info";
|
|
38
|
-
tags: "tags";
|
|
39
|
-
contact: "contact";
|
|
40
|
-
type: "type";
|
|
41
|
-
binary: "binary";
|
|
42
|
-
cookie: "cookie";
|
|
43
|
-
list: "list";
|
|
44
|
-
server: "server";
|
|
45
|
-
tag: "tag";
|
|
46
37
|
file: "file";
|
|
47
|
-
delete: "delete";
|
|
48
38
|
code: "code";
|
|
49
|
-
check: "check";
|
|
50
39
|
copy: "copy";
|
|
51
40
|
focus: "focus";
|
|
52
41
|
pause: "pause";
|
|
53
42
|
play: "play";
|
|
54
43
|
scroll: "scroll";
|
|
44
|
+
key: "key";
|
|
55
45
|
merge: "merge";
|
|
56
46
|
ghost: "ghost";
|
|
57
47
|
expand: "expand";
|
|
48
|
+
type: "type";
|
|
58
49
|
send: "send";
|
|
59
50
|
grid: "grid";
|
|
60
51
|
group: "group";
|
|
61
52
|
heading: "heading";
|
|
53
|
+
list: "list";
|
|
62
54
|
menu: "menu";
|
|
63
55
|
navigation: "navigation";
|
|
64
56
|
option: "option";
|
|
@@ -69,20 +61,18 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
69
61
|
text: "text";
|
|
70
62
|
mouse: "mouse";
|
|
71
63
|
pen: "pen";
|
|
72
|
-
regex: "regex";
|
|
73
|
-
target: "target";
|
|
74
|
-
radius: "radius";
|
|
75
|
-
scale: "scale";
|
|
76
|
-
x: "x";
|
|
77
64
|
section: "section";
|
|
78
65
|
video: "video";
|
|
79
66
|
circle: "circle";
|
|
80
67
|
image: "image";
|
|
81
68
|
view: "view";
|
|
69
|
+
target: "target";
|
|
70
|
+
radius: "radius";
|
|
71
|
+
scale: "scale";
|
|
72
|
+
x: "x";
|
|
82
73
|
baseline: "baseline";
|
|
83
74
|
terminal: "terminal";
|
|
84
75
|
square: "square";
|
|
85
|
-
move: "move";
|
|
86
76
|
"a-arrow-down": "a-arrow-down";
|
|
87
77
|
"a-arrow-up": "a-arrow-up";
|
|
88
78
|
"a-large-small": "a-large-small";
|
|
@@ -247,6 +237,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
247
237
|
"badge-question-mark": "badge-question-mark";
|
|
248
238
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
249
239
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
240
|
+
"badge-turkish-lira": "badge-turkish-lira";
|
|
250
241
|
"badge-x": "badge-x";
|
|
251
242
|
"baggage-claim": "baggage-claim";
|
|
252
243
|
ban: "ban";
|
|
@@ -297,9 +288,11 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
297
288
|
"between-vertical-start": "between-vertical-start";
|
|
298
289
|
"biceps-flexed": "biceps-flexed";
|
|
299
290
|
bike: "bike";
|
|
291
|
+
binary: "binary";
|
|
300
292
|
binoculars: "binoculars";
|
|
301
293
|
biohazard: "biohazard";
|
|
302
294
|
bird: "bird";
|
|
295
|
+
birdhouse: "birdhouse";
|
|
303
296
|
bitcoin: "bitcoin";
|
|
304
297
|
blend: "blend";
|
|
305
298
|
blinds: "blinds";
|
|
@@ -358,6 +351,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
358
351
|
"brain-cog": "brain-cog";
|
|
359
352
|
"brick-wall": "brick-wall";
|
|
360
353
|
"brick-wall-fire": "brick-wall-fire";
|
|
354
|
+
"brick-wall-shield": "brick-wall-shield";
|
|
361
355
|
briefcase: "briefcase";
|
|
362
356
|
"briefcase-business": "briefcase-business";
|
|
363
357
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
@@ -445,6 +439,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
445
439
|
"chart-pie": "chart-pie";
|
|
446
440
|
"chart-scatter": "chart-scatter";
|
|
447
441
|
"chart-spline": "chart-spline";
|
|
442
|
+
check: "check";
|
|
448
443
|
"check-check": "check-check";
|
|
449
444
|
"check-circle": "check-circle";
|
|
450
445
|
"check-circle-2": "check-circle-2";
|
|
@@ -477,6 +472,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
477
472
|
"chevrons-up": "chevrons-up";
|
|
478
473
|
"chevrons-up-down": "chevrons-up-down";
|
|
479
474
|
chrome: "chrome";
|
|
475
|
+
chromium: "chromium";
|
|
480
476
|
church: "church";
|
|
481
477
|
cigarette: "cigarette";
|
|
482
478
|
"cigarette-off": "cigarette-off";
|
|
@@ -521,6 +517,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
521
517
|
"circle-slash-2": "circle-slash-2";
|
|
522
518
|
"circle-slashed": "circle-slashed";
|
|
523
519
|
"circle-small": "circle-small";
|
|
520
|
+
"circle-star": "circle-star";
|
|
524
521
|
"circle-stop": "circle-stop";
|
|
525
522
|
"circle-user": "circle-user";
|
|
526
523
|
"circle-user-round": "circle-user-round";
|
|
@@ -530,6 +527,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
530
527
|
clapperboard: "clapperboard";
|
|
531
528
|
clipboard: "clipboard";
|
|
532
529
|
"clipboard-check": "clipboard-check";
|
|
530
|
+
"clipboard-clock": "clipboard-clock";
|
|
533
531
|
"clipboard-copy": "clipboard-copy";
|
|
534
532
|
"clipboard-edit": "clipboard-edit";
|
|
535
533
|
"clipboard-list": "clipboard-list";
|
|
@@ -559,6 +557,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
559
557
|
"clock-arrow-up": "clock-arrow-up";
|
|
560
558
|
"clock-fading": "clock-fading";
|
|
561
559
|
"clock-plus": "clock-plus";
|
|
560
|
+
"closed-caption": "closed-caption";
|
|
562
561
|
cloud: "cloud";
|
|
563
562
|
"cloud-alert": "cloud-alert";
|
|
564
563
|
"cloud-check": "cloud-check";
|
|
@@ -602,10 +601,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
602
601
|
"concierge-bell": "concierge-bell";
|
|
603
602
|
cone: "cone";
|
|
604
603
|
construction: "construction";
|
|
604
|
+
contact: "contact";
|
|
605
605
|
"contact-2": "contact-2";
|
|
606
606
|
"contact-round": "contact-round";
|
|
607
607
|
container: "container";
|
|
608
608
|
contrast: "contrast";
|
|
609
|
+
cookie: "cookie";
|
|
609
610
|
"cooking-pot": "cooking-pot";
|
|
610
611
|
"copy-check": "copy-check";
|
|
611
612
|
"copy-minus": "copy-minus";
|
|
@@ -641,6 +642,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
641
642
|
"database-zap": "database-zap";
|
|
642
643
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
643
644
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
645
|
+
delete: "delete";
|
|
644
646
|
dessert: "dessert";
|
|
645
647
|
diameter: "diameter";
|
|
646
648
|
diamond: "diamond";
|
|
@@ -706,6 +708,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
706
708
|
eraser: "eraser";
|
|
707
709
|
"ethernet-port": "ethernet-port";
|
|
708
710
|
euro: "euro";
|
|
711
|
+
"ev-charger": "ev-charger";
|
|
709
712
|
"external-link": "external-link";
|
|
710
713
|
eye: "eye";
|
|
711
714
|
"eye-closed": "eye-closed";
|
|
@@ -760,6 +763,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
760
763
|
"file-pen": "file-pen";
|
|
761
764
|
"file-pen-line": "file-pen-line";
|
|
762
765
|
"file-pie-chart": "file-pie-chart";
|
|
766
|
+
"file-play": "file-play";
|
|
763
767
|
"file-plus": "file-plus";
|
|
764
768
|
"file-plus-2": "file-plus-2";
|
|
765
769
|
"file-question": "file-question";
|
|
@@ -780,6 +784,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
780
784
|
"file-user": "file-user";
|
|
781
785
|
"file-video": "file-video";
|
|
782
786
|
"file-video-2": "file-video-2";
|
|
787
|
+
"file-video-camera": "file-video-camera";
|
|
783
788
|
"file-volume": "file-volume";
|
|
784
789
|
"file-volume-2": "file-volume-2";
|
|
785
790
|
"file-warning": "file-warning";
|
|
@@ -867,6 +872,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
867
872
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
868
873
|
gamepad: "gamepad";
|
|
869
874
|
"gamepad-2": "gamepad-2";
|
|
875
|
+
"gamepad-directional": "gamepad-directional";
|
|
870
876
|
"gantt-chart": "gantt-chart";
|
|
871
877
|
"gantt-chart-square": "gantt-chart-square";
|
|
872
878
|
gauge: "gauge";
|
|
@@ -923,16 +929,20 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
923
929
|
hammer: "hammer";
|
|
924
930
|
hand: "hand";
|
|
925
931
|
"hand-coins": "hand-coins";
|
|
932
|
+
"hand-fist": "hand-fist";
|
|
933
|
+
"hand-grab": "hand-grab";
|
|
926
934
|
"hand-heart": "hand-heart";
|
|
927
935
|
"hand-helping": "hand-helping";
|
|
928
936
|
"hand-metal": "hand-metal";
|
|
929
937
|
"hand-platter": "hand-platter";
|
|
938
|
+
handbag: "handbag";
|
|
930
939
|
handshake: "handshake";
|
|
931
940
|
"hard-drive": "hard-drive";
|
|
932
941
|
"hard-drive-download": "hard-drive-download";
|
|
933
942
|
"hard-drive-upload": "hard-drive-upload";
|
|
934
943
|
"hard-hat": "hard-hat";
|
|
935
944
|
hash: "hash";
|
|
945
|
+
"hat-glasses": "hat-glasses";
|
|
936
946
|
haze: "haze";
|
|
937
947
|
"hdmi-port": "hdmi-port";
|
|
938
948
|
"heading-1": "heading-1";
|
|
@@ -964,6 +974,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
964
974
|
hotel: "hotel";
|
|
965
975
|
hourglass: "hourglass";
|
|
966
976
|
house: "house";
|
|
977
|
+
"house-heart": "house-heart";
|
|
967
978
|
"house-plug": "house-plug";
|
|
968
979
|
"house-plus": "house-plus";
|
|
969
980
|
"house-wifi": "house-wifi";
|
|
@@ -999,6 +1010,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
999
1010
|
kanban: "kanban";
|
|
1000
1011
|
"kanban-square": "kanban-square";
|
|
1001
1012
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
1013
|
+
kayak: "kayak";
|
|
1002
1014
|
"key-round": "key-round";
|
|
1003
1015
|
"key-square": "key-square";
|
|
1004
1016
|
keyboard: "keyboard";
|
|
@@ -1048,10 +1060,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1048
1060
|
linkedin: "linkedin";
|
|
1049
1061
|
"list-check": "list-check";
|
|
1050
1062
|
"list-checks": "list-checks";
|
|
1063
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
1064
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
1051
1065
|
"list-collapse": "list-collapse";
|
|
1052
1066
|
"list-end": "list-end";
|
|
1053
1067
|
"list-filter": "list-filter";
|
|
1054
1068
|
"list-filter-plus": "list-filter-plus";
|
|
1069
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
1070
|
+
"list-indent-increase": "list-indent-increase";
|
|
1055
1071
|
"list-minus": "list-minus";
|
|
1056
1072
|
"list-music": "list-music";
|
|
1057
1073
|
"list-ordered": "list-ordered";
|
|
@@ -1093,6 +1109,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1093
1109
|
"mail-x": "mail-x";
|
|
1094
1110
|
mailbox: "mailbox";
|
|
1095
1111
|
mails: "mails";
|
|
1112
|
+
"map-minus": "map-minus";
|
|
1096
1113
|
"map-pin": "map-pin";
|
|
1097
1114
|
"map-pin-check": "map-pin-check";
|
|
1098
1115
|
"map-pin-check-inside": "map-pin-check-inside";
|
|
@@ -1100,6 +1117,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1100
1117
|
"map-pin-minus": "map-pin-minus";
|
|
1101
1118
|
"map-pin-minus-inside": "map-pin-minus-inside";
|
|
1102
1119
|
"map-pin-off": "map-pin-off";
|
|
1120
|
+
"map-pin-pen": "map-pin-pen";
|
|
1103
1121
|
"map-pin-plus": "map-pin-plus";
|
|
1104
1122
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
1105
1123
|
"map-pin-x": "map-pin-x";
|
|
@@ -1163,6 +1181,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1163
1181
|
"minus-square": "minus-square";
|
|
1164
1182
|
monitor: "monitor";
|
|
1165
1183
|
"monitor-check": "monitor-check";
|
|
1184
|
+
"monitor-cloud": "monitor-cloud";
|
|
1166
1185
|
"monitor-cog": "monitor-cog";
|
|
1167
1186
|
"monitor-dot": "monitor-dot";
|
|
1168
1187
|
"monitor-down": "monitor-down";
|
|
@@ -1178,6 +1197,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1178
1197
|
"moon-star": "moon-star";
|
|
1179
1198
|
"more-horizontal": "more-horizontal";
|
|
1180
1199
|
"more-vertical": "more-vertical";
|
|
1200
|
+
motorbike: "motorbike";
|
|
1181
1201
|
mountain: "mountain";
|
|
1182
1202
|
"mountain-snow": "mountain-snow";
|
|
1183
1203
|
"mouse-off": "mouse-off";
|
|
@@ -1186,6 +1206,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1186
1206
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
1187
1207
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
1188
1208
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
1209
|
+
move: "move";
|
|
1189
1210
|
"move-3-d": "move-3-d";
|
|
1190
1211
|
"move-3d": "move-3d";
|
|
1191
1212
|
"move-diagonal": "move-diagonal";
|
|
@@ -1254,12 +1275,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1254
1275
|
"panel-left-dashed": "panel-left-dashed";
|
|
1255
1276
|
"panel-left-inactive": "panel-left-inactive";
|
|
1256
1277
|
"panel-left-open": "panel-left-open";
|
|
1278
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
1257
1279
|
"panel-right": "panel-right";
|
|
1258
1280
|
"panel-right-close": "panel-right-close";
|
|
1259
1281
|
"panel-right-dashed": "panel-right-dashed";
|
|
1260
1282
|
"panel-right-inactive": "panel-right-inactive";
|
|
1261
1283
|
"panel-right-open": "panel-right-open";
|
|
1262
1284
|
"panel-top": "panel-top";
|
|
1285
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
1263
1286
|
"panel-top-close": "panel-top-close";
|
|
1264
1287
|
"panel-top-dashed": "panel-top-dashed";
|
|
1265
1288
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -1373,6 +1396,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1373
1396
|
"receipt-russian-ruble": "receipt-russian-ruble";
|
|
1374
1397
|
"receipt-swiss-franc": "receipt-swiss-franc";
|
|
1375
1398
|
"receipt-text": "receipt-text";
|
|
1399
|
+
"receipt-turkish-lira": "receipt-turkish-lira";
|
|
1376
1400
|
"rectangle-circle": "rectangle-circle";
|
|
1377
1401
|
"rectangle-ellipsis": "rectangle-ellipsis";
|
|
1378
1402
|
"rectangle-goggles": "rectangle-goggles";
|
|
@@ -1387,6 +1411,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1387
1411
|
"refresh-cw": "refresh-cw";
|
|
1388
1412
|
"refresh-cw-off": "refresh-cw-off";
|
|
1389
1413
|
refrigerator: "refrigerator";
|
|
1414
|
+
regex: "regex";
|
|
1390
1415
|
"remove-formatting": "remove-formatting";
|
|
1391
1416
|
"repeat-1": "repeat-1";
|
|
1392
1417
|
"repeat-2": "repeat-2";
|
|
@@ -1398,6 +1423,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1398
1423
|
rocket: "rocket";
|
|
1399
1424
|
"rocking-chair": "rocking-chair";
|
|
1400
1425
|
"roller-coaster": "roller-coaster";
|
|
1426
|
+
rose: "rose";
|
|
1401
1427
|
"rotate-3-d": "rotate-3-d";
|
|
1402
1428
|
"rotate-3d": "rotate-3d";
|
|
1403
1429
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -1456,6 +1482,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1456
1482
|
"send-to-back": "send-to-back";
|
|
1457
1483
|
"separator-horizontal": "separator-horizontal";
|
|
1458
1484
|
"separator-vertical": "separator-vertical";
|
|
1485
|
+
server: "server";
|
|
1459
1486
|
"server-cog": "server-cog";
|
|
1460
1487
|
"server-crash": "server-crash";
|
|
1461
1488
|
"server-off": "server-off";
|
|
@@ -1541,6 +1568,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1541
1568
|
"split-square-horizontal": "split-square-horizontal";
|
|
1542
1569
|
"split-square-vertical": "split-square-vertical";
|
|
1543
1570
|
spool: "spool";
|
|
1571
|
+
spotlight: "spotlight";
|
|
1544
1572
|
"spray-can": "spray-can";
|
|
1545
1573
|
sprout: "sprout";
|
|
1546
1574
|
"square-activity": "square-activity";
|
|
@@ -1585,6 +1613,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1585
1613
|
"square-mouse-pointer": "square-mouse-pointer";
|
|
1586
1614
|
"square-parking": "square-parking";
|
|
1587
1615
|
"square-parking-off": "square-parking-off";
|
|
1616
|
+
"square-pause": "square-pause";
|
|
1588
1617
|
"square-pen": "square-pen";
|
|
1589
1618
|
"square-percent": "square-percent";
|
|
1590
1619
|
"square-pi": "square-pi";
|
|
@@ -1601,6 +1630,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1601
1630
|
"square-split-vertical": "square-split-vertical";
|
|
1602
1631
|
"square-square": "square-square";
|
|
1603
1632
|
"square-stack": "square-stack";
|
|
1633
|
+
"square-star": "square-star";
|
|
1634
|
+
"square-stop": "square-stop";
|
|
1604
1635
|
"square-terminal": "square-terminal";
|
|
1605
1636
|
"square-user": "square-user";
|
|
1606
1637
|
"square-user-round": "square-user-round";
|
|
@@ -1654,6 +1685,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1654
1685
|
tablet: "tablet";
|
|
1655
1686
|
"tablet-smartphone": "tablet-smartphone";
|
|
1656
1687
|
tablets: "tablets";
|
|
1688
|
+
tag: "tag";
|
|
1689
|
+
tags: "tags";
|
|
1657
1690
|
"tally-1": "tally-1";
|
|
1658
1691
|
"tally-2": "tally-2";
|
|
1659
1692
|
"tally-3": "tally-3";
|
|
@@ -1668,12 +1701,18 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1668
1701
|
"test-tube-2": "test-tube-2";
|
|
1669
1702
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
1670
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";
|
|
1671
1708
|
"text-cursor": "text-cursor";
|
|
1672
1709
|
"text-cursor-input": "text-cursor-input";
|
|
1710
|
+
"text-initial": "text-initial";
|
|
1673
1711
|
"text-quote": "text-quote";
|
|
1674
1712
|
"text-search": "text-search";
|
|
1675
1713
|
"text-select": "text-select";
|
|
1676
1714
|
"text-selection": "text-selection";
|
|
1715
|
+
"text-wrap": "text-wrap";
|
|
1677
1716
|
theater: "theater";
|
|
1678
1717
|
thermometer: "thermometer";
|
|
1679
1718
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -1726,6 +1765,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1726
1765
|
trophy: "trophy";
|
|
1727
1766
|
truck: "truck";
|
|
1728
1767
|
"truck-electric": "truck-electric";
|
|
1768
|
+
"turkish-lira": "turkish-lira";
|
|
1769
|
+
turntable: "turntable";
|
|
1729
1770
|
turtle: "turtle";
|
|
1730
1771
|
tv: "tv";
|
|
1731
1772
|
"tv-2": "tv-2";
|
|
@@ -1777,6 +1818,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1777
1818
|
"user-search": "user-search";
|
|
1778
1819
|
"user-square": "user-square";
|
|
1779
1820
|
"user-square-2": "user-square-2";
|
|
1821
|
+
"user-star": "user-star";
|
|
1780
1822
|
"user-x": "user-x";
|
|
1781
1823
|
"user-x-2": "user-x-2";
|
|
1782
1824
|
users: "users";
|
|
@@ -1832,6 +1874,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1832
1874
|
"wifi-low": "wifi-low";
|
|
1833
1875
|
"wifi-off": "wifi-off";
|
|
1834
1876
|
"wifi-pen": "wifi-pen";
|
|
1877
|
+
"wifi-sync": "wifi-sync";
|
|
1835
1878
|
"wifi-zero": "wifi-zero";
|
|
1836
1879
|
wind: "wind";
|
|
1837
1880
|
"wind-arrow-down": "wind-arrow-down";
|
|
@@ -1863,12 +1906,14 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1863
1906
|
indigo: "indigo";
|
|
1864
1907
|
gray: "gray";
|
|
1865
1908
|
}>;
|
|
1909
|
+
invert: z.ZodOptional<z.ZodBoolean>;
|
|
1910
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1866
1911
|
}, z.core.$strip>>;
|
|
1867
1912
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1868
1913
|
hide: "hide";
|
|
1869
|
-
always: "always";
|
|
1870
1914
|
auth: "auth";
|
|
1871
1915
|
anon: "anon";
|
|
1916
|
+
always: "always";
|
|
1872
1917
|
}>, z.ZodCustom<(params: {
|
|
1873
1918
|
context: ZudokuContext;
|
|
1874
1919
|
auth: UseAuthReturn;
|
|
@@ -1881,11 +1926,15 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1881
1926
|
type: z.ZodLiteral<"link">;
|
|
1882
1927
|
to: z.ZodString;
|
|
1883
1928
|
label: z.ZodString;
|
|
1929
|
+
target: z.ZodOptional<z.ZodEnum<{
|
|
1930
|
+
_self: "_self";
|
|
1931
|
+
_blank: "_blank";
|
|
1932
|
+
}>>;
|
|
1884
1933
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1934
|
+
info: "info";
|
|
1885
1935
|
slice: "slice";
|
|
1886
1936
|
map: "map";
|
|
1887
1937
|
filter: "filter";
|
|
1888
|
-
key: "key";
|
|
1889
1938
|
replace: "replace";
|
|
1890
1939
|
search: "search";
|
|
1891
1940
|
split: "split";
|
|
@@ -1893,31 +1942,23 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1893
1942
|
anchor: "anchor";
|
|
1894
1943
|
bold: "bold";
|
|
1895
1944
|
link: "link";
|
|
1896
|
-
info: "info";
|
|
1897
|
-
tags: "tags";
|
|
1898
|
-
contact: "contact";
|
|
1899
|
-
type: "type";
|
|
1900
|
-
binary: "binary";
|
|
1901
|
-
cookie: "cookie";
|
|
1902
|
-
list: "list";
|
|
1903
|
-
server: "server";
|
|
1904
|
-
tag: "tag";
|
|
1905
1945
|
file: "file";
|
|
1906
|
-
delete: "delete";
|
|
1907
1946
|
code: "code";
|
|
1908
|
-
check: "check";
|
|
1909
1947
|
copy: "copy";
|
|
1910
1948
|
focus: "focus";
|
|
1911
1949
|
pause: "pause";
|
|
1912
1950
|
play: "play";
|
|
1913
1951
|
scroll: "scroll";
|
|
1952
|
+
key: "key";
|
|
1914
1953
|
merge: "merge";
|
|
1915
1954
|
ghost: "ghost";
|
|
1916
1955
|
expand: "expand";
|
|
1956
|
+
type: "type";
|
|
1917
1957
|
send: "send";
|
|
1918
1958
|
grid: "grid";
|
|
1919
1959
|
group: "group";
|
|
1920
1960
|
heading: "heading";
|
|
1961
|
+
list: "list";
|
|
1921
1962
|
menu: "menu";
|
|
1922
1963
|
navigation: "navigation";
|
|
1923
1964
|
option: "option";
|
|
@@ -1928,20 +1969,18 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1928
1969
|
text: "text";
|
|
1929
1970
|
mouse: "mouse";
|
|
1930
1971
|
pen: "pen";
|
|
1931
|
-
regex: "regex";
|
|
1932
|
-
target: "target";
|
|
1933
|
-
radius: "radius";
|
|
1934
|
-
scale: "scale";
|
|
1935
|
-
x: "x";
|
|
1936
1972
|
section: "section";
|
|
1937
1973
|
video: "video";
|
|
1938
1974
|
circle: "circle";
|
|
1939
1975
|
image: "image";
|
|
1940
1976
|
view: "view";
|
|
1977
|
+
target: "target";
|
|
1978
|
+
radius: "radius";
|
|
1979
|
+
scale: "scale";
|
|
1980
|
+
x: "x";
|
|
1941
1981
|
baseline: "baseline";
|
|
1942
1982
|
terminal: "terminal";
|
|
1943
1983
|
square: "square";
|
|
1944
|
-
move: "move";
|
|
1945
1984
|
"a-arrow-down": "a-arrow-down";
|
|
1946
1985
|
"a-arrow-up": "a-arrow-up";
|
|
1947
1986
|
"a-large-small": "a-large-small";
|
|
@@ -2106,6 +2145,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2106
2145
|
"badge-question-mark": "badge-question-mark";
|
|
2107
2146
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
2108
2147
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
2148
|
+
"badge-turkish-lira": "badge-turkish-lira";
|
|
2109
2149
|
"badge-x": "badge-x";
|
|
2110
2150
|
"baggage-claim": "baggage-claim";
|
|
2111
2151
|
ban: "ban";
|
|
@@ -2156,9 +2196,11 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2156
2196
|
"between-vertical-start": "between-vertical-start";
|
|
2157
2197
|
"biceps-flexed": "biceps-flexed";
|
|
2158
2198
|
bike: "bike";
|
|
2199
|
+
binary: "binary";
|
|
2159
2200
|
binoculars: "binoculars";
|
|
2160
2201
|
biohazard: "biohazard";
|
|
2161
2202
|
bird: "bird";
|
|
2203
|
+
birdhouse: "birdhouse";
|
|
2162
2204
|
bitcoin: "bitcoin";
|
|
2163
2205
|
blend: "blend";
|
|
2164
2206
|
blinds: "blinds";
|
|
@@ -2217,6 +2259,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2217
2259
|
"brain-cog": "brain-cog";
|
|
2218
2260
|
"brick-wall": "brick-wall";
|
|
2219
2261
|
"brick-wall-fire": "brick-wall-fire";
|
|
2262
|
+
"brick-wall-shield": "brick-wall-shield";
|
|
2220
2263
|
briefcase: "briefcase";
|
|
2221
2264
|
"briefcase-business": "briefcase-business";
|
|
2222
2265
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
@@ -2304,6 +2347,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2304
2347
|
"chart-pie": "chart-pie";
|
|
2305
2348
|
"chart-scatter": "chart-scatter";
|
|
2306
2349
|
"chart-spline": "chart-spline";
|
|
2350
|
+
check: "check";
|
|
2307
2351
|
"check-check": "check-check";
|
|
2308
2352
|
"check-circle": "check-circle";
|
|
2309
2353
|
"check-circle-2": "check-circle-2";
|
|
@@ -2336,6 +2380,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2336
2380
|
"chevrons-up": "chevrons-up";
|
|
2337
2381
|
"chevrons-up-down": "chevrons-up-down";
|
|
2338
2382
|
chrome: "chrome";
|
|
2383
|
+
chromium: "chromium";
|
|
2339
2384
|
church: "church";
|
|
2340
2385
|
cigarette: "cigarette";
|
|
2341
2386
|
"cigarette-off": "cigarette-off";
|
|
@@ -2380,6 +2425,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2380
2425
|
"circle-slash-2": "circle-slash-2";
|
|
2381
2426
|
"circle-slashed": "circle-slashed";
|
|
2382
2427
|
"circle-small": "circle-small";
|
|
2428
|
+
"circle-star": "circle-star";
|
|
2383
2429
|
"circle-stop": "circle-stop";
|
|
2384
2430
|
"circle-user": "circle-user";
|
|
2385
2431
|
"circle-user-round": "circle-user-round";
|
|
@@ -2389,6 +2435,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2389
2435
|
clapperboard: "clapperboard";
|
|
2390
2436
|
clipboard: "clipboard";
|
|
2391
2437
|
"clipboard-check": "clipboard-check";
|
|
2438
|
+
"clipboard-clock": "clipboard-clock";
|
|
2392
2439
|
"clipboard-copy": "clipboard-copy";
|
|
2393
2440
|
"clipboard-edit": "clipboard-edit";
|
|
2394
2441
|
"clipboard-list": "clipboard-list";
|
|
@@ -2418,6 +2465,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2418
2465
|
"clock-arrow-up": "clock-arrow-up";
|
|
2419
2466
|
"clock-fading": "clock-fading";
|
|
2420
2467
|
"clock-plus": "clock-plus";
|
|
2468
|
+
"closed-caption": "closed-caption";
|
|
2421
2469
|
cloud: "cloud";
|
|
2422
2470
|
"cloud-alert": "cloud-alert";
|
|
2423
2471
|
"cloud-check": "cloud-check";
|
|
@@ -2461,10 +2509,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2461
2509
|
"concierge-bell": "concierge-bell";
|
|
2462
2510
|
cone: "cone";
|
|
2463
2511
|
construction: "construction";
|
|
2512
|
+
contact: "contact";
|
|
2464
2513
|
"contact-2": "contact-2";
|
|
2465
2514
|
"contact-round": "contact-round";
|
|
2466
2515
|
container: "container";
|
|
2467
2516
|
contrast: "contrast";
|
|
2517
|
+
cookie: "cookie";
|
|
2468
2518
|
"cooking-pot": "cooking-pot";
|
|
2469
2519
|
"copy-check": "copy-check";
|
|
2470
2520
|
"copy-minus": "copy-minus";
|
|
@@ -2500,6 +2550,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2500
2550
|
"database-zap": "database-zap";
|
|
2501
2551
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
2502
2552
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
2553
|
+
delete: "delete";
|
|
2503
2554
|
dessert: "dessert";
|
|
2504
2555
|
diameter: "diameter";
|
|
2505
2556
|
diamond: "diamond";
|
|
@@ -2565,6 +2616,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2565
2616
|
eraser: "eraser";
|
|
2566
2617
|
"ethernet-port": "ethernet-port";
|
|
2567
2618
|
euro: "euro";
|
|
2619
|
+
"ev-charger": "ev-charger";
|
|
2568
2620
|
"external-link": "external-link";
|
|
2569
2621
|
eye: "eye";
|
|
2570
2622
|
"eye-closed": "eye-closed";
|
|
@@ -2619,6 +2671,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2619
2671
|
"file-pen": "file-pen";
|
|
2620
2672
|
"file-pen-line": "file-pen-line";
|
|
2621
2673
|
"file-pie-chart": "file-pie-chart";
|
|
2674
|
+
"file-play": "file-play";
|
|
2622
2675
|
"file-plus": "file-plus";
|
|
2623
2676
|
"file-plus-2": "file-plus-2";
|
|
2624
2677
|
"file-question": "file-question";
|
|
@@ -2639,6 +2692,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2639
2692
|
"file-user": "file-user";
|
|
2640
2693
|
"file-video": "file-video";
|
|
2641
2694
|
"file-video-2": "file-video-2";
|
|
2695
|
+
"file-video-camera": "file-video-camera";
|
|
2642
2696
|
"file-volume": "file-volume";
|
|
2643
2697
|
"file-volume-2": "file-volume-2";
|
|
2644
2698
|
"file-warning": "file-warning";
|
|
@@ -2726,6 +2780,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2726
2780
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
2727
2781
|
gamepad: "gamepad";
|
|
2728
2782
|
"gamepad-2": "gamepad-2";
|
|
2783
|
+
"gamepad-directional": "gamepad-directional";
|
|
2729
2784
|
"gantt-chart": "gantt-chart";
|
|
2730
2785
|
"gantt-chart-square": "gantt-chart-square";
|
|
2731
2786
|
gauge: "gauge";
|
|
@@ -2782,16 +2837,20 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2782
2837
|
hammer: "hammer";
|
|
2783
2838
|
hand: "hand";
|
|
2784
2839
|
"hand-coins": "hand-coins";
|
|
2840
|
+
"hand-fist": "hand-fist";
|
|
2841
|
+
"hand-grab": "hand-grab";
|
|
2785
2842
|
"hand-heart": "hand-heart";
|
|
2786
2843
|
"hand-helping": "hand-helping";
|
|
2787
2844
|
"hand-metal": "hand-metal";
|
|
2788
2845
|
"hand-platter": "hand-platter";
|
|
2846
|
+
handbag: "handbag";
|
|
2789
2847
|
handshake: "handshake";
|
|
2790
2848
|
"hard-drive": "hard-drive";
|
|
2791
2849
|
"hard-drive-download": "hard-drive-download";
|
|
2792
2850
|
"hard-drive-upload": "hard-drive-upload";
|
|
2793
2851
|
"hard-hat": "hard-hat";
|
|
2794
2852
|
hash: "hash";
|
|
2853
|
+
"hat-glasses": "hat-glasses";
|
|
2795
2854
|
haze: "haze";
|
|
2796
2855
|
"hdmi-port": "hdmi-port";
|
|
2797
2856
|
"heading-1": "heading-1";
|
|
@@ -2823,6 +2882,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2823
2882
|
hotel: "hotel";
|
|
2824
2883
|
hourglass: "hourglass";
|
|
2825
2884
|
house: "house";
|
|
2885
|
+
"house-heart": "house-heart";
|
|
2826
2886
|
"house-plug": "house-plug";
|
|
2827
2887
|
"house-plus": "house-plus";
|
|
2828
2888
|
"house-wifi": "house-wifi";
|
|
@@ -2858,6 +2918,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2858
2918
|
kanban: "kanban";
|
|
2859
2919
|
"kanban-square": "kanban-square";
|
|
2860
2920
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
2921
|
+
kayak: "kayak";
|
|
2861
2922
|
"key-round": "key-round";
|
|
2862
2923
|
"key-square": "key-square";
|
|
2863
2924
|
keyboard: "keyboard";
|
|
@@ -2907,10 +2968,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2907
2968
|
linkedin: "linkedin";
|
|
2908
2969
|
"list-check": "list-check";
|
|
2909
2970
|
"list-checks": "list-checks";
|
|
2971
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
2972
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
2910
2973
|
"list-collapse": "list-collapse";
|
|
2911
2974
|
"list-end": "list-end";
|
|
2912
2975
|
"list-filter": "list-filter";
|
|
2913
2976
|
"list-filter-plus": "list-filter-plus";
|
|
2977
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
2978
|
+
"list-indent-increase": "list-indent-increase";
|
|
2914
2979
|
"list-minus": "list-minus";
|
|
2915
2980
|
"list-music": "list-music";
|
|
2916
2981
|
"list-ordered": "list-ordered";
|
|
@@ -2952,6 +3017,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2952
3017
|
"mail-x": "mail-x";
|
|
2953
3018
|
mailbox: "mailbox";
|
|
2954
3019
|
mails: "mails";
|
|
3020
|
+
"map-minus": "map-minus";
|
|
2955
3021
|
"map-pin": "map-pin";
|
|
2956
3022
|
"map-pin-check": "map-pin-check";
|
|
2957
3023
|
"map-pin-check-inside": "map-pin-check-inside";
|
|
@@ -2959,6 +3025,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2959
3025
|
"map-pin-minus": "map-pin-minus";
|
|
2960
3026
|
"map-pin-minus-inside": "map-pin-minus-inside";
|
|
2961
3027
|
"map-pin-off": "map-pin-off";
|
|
3028
|
+
"map-pin-pen": "map-pin-pen";
|
|
2962
3029
|
"map-pin-plus": "map-pin-plus";
|
|
2963
3030
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
2964
3031
|
"map-pin-x": "map-pin-x";
|
|
@@ -3022,6 +3089,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3022
3089
|
"minus-square": "minus-square";
|
|
3023
3090
|
monitor: "monitor";
|
|
3024
3091
|
"monitor-check": "monitor-check";
|
|
3092
|
+
"monitor-cloud": "monitor-cloud";
|
|
3025
3093
|
"monitor-cog": "monitor-cog";
|
|
3026
3094
|
"monitor-dot": "monitor-dot";
|
|
3027
3095
|
"monitor-down": "monitor-down";
|
|
@@ -3037,6 +3105,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3037
3105
|
"moon-star": "moon-star";
|
|
3038
3106
|
"more-horizontal": "more-horizontal";
|
|
3039
3107
|
"more-vertical": "more-vertical";
|
|
3108
|
+
motorbike: "motorbike";
|
|
3040
3109
|
mountain: "mountain";
|
|
3041
3110
|
"mountain-snow": "mountain-snow";
|
|
3042
3111
|
"mouse-off": "mouse-off";
|
|
@@ -3045,6 +3114,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3045
3114
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
3046
3115
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
3047
3116
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
3117
|
+
move: "move";
|
|
3048
3118
|
"move-3-d": "move-3-d";
|
|
3049
3119
|
"move-3d": "move-3d";
|
|
3050
3120
|
"move-diagonal": "move-diagonal";
|
|
@@ -3113,12 +3183,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3113
3183
|
"panel-left-dashed": "panel-left-dashed";
|
|
3114
3184
|
"panel-left-inactive": "panel-left-inactive";
|
|
3115
3185
|
"panel-left-open": "panel-left-open";
|
|
3186
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
3116
3187
|
"panel-right": "panel-right";
|
|
3117
3188
|
"panel-right-close": "panel-right-close";
|
|
3118
3189
|
"panel-right-dashed": "panel-right-dashed";
|
|
3119
3190
|
"panel-right-inactive": "panel-right-inactive";
|
|
3120
3191
|
"panel-right-open": "panel-right-open";
|
|
3121
3192
|
"panel-top": "panel-top";
|
|
3193
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
3122
3194
|
"panel-top-close": "panel-top-close";
|
|
3123
3195
|
"panel-top-dashed": "panel-top-dashed";
|
|
3124
3196
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -3232,6 +3304,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3232
3304
|
"receipt-russian-ruble": "receipt-russian-ruble";
|
|
3233
3305
|
"receipt-swiss-franc": "receipt-swiss-franc";
|
|
3234
3306
|
"receipt-text": "receipt-text";
|
|
3307
|
+
"receipt-turkish-lira": "receipt-turkish-lira";
|
|
3235
3308
|
"rectangle-circle": "rectangle-circle";
|
|
3236
3309
|
"rectangle-ellipsis": "rectangle-ellipsis";
|
|
3237
3310
|
"rectangle-goggles": "rectangle-goggles";
|
|
@@ -3246,6 +3319,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3246
3319
|
"refresh-cw": "refresh-cw";
|
|
3247
3320
|
"refresh-cw-off": "refresh-cw-off";
|
|
3248
3321
|
refrigerator: "refrigerator";
|
|
3322
|
+
regex: "regex";
|
|
3249
3323
|
"remove-formatting": "remove-formatting";
|
|
3250
3324
|
"repeat-1": "repeat-1";
|
|
3251
3325
|
"repeat-2": "repeat-2";
|
|
@@ -3257,6 +3331,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3257
3331
|
rocket: "rocket";
|
|
3258
3332
|
"rocking-chair": "rocking-chair";
|
|
3259
3333
|
"roller-coaster": "roller-coaster";
|
|
3334
|
+
rose: "rose";
|
|
3260
3335
|
"rotate-3-d": "rotate-3-d";
|
|
3261
3336
|
"rotate-3d": "rotate-3d";
|
|
3262
3337
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -3315,6 +3390,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3315
3390
|
"send-to-back": "send-to-back";
|
|
3316
3391
|
"separator-horizontal": "separator-horizontal";
|
|
3317
3392
|
"separator-vertical": "separator-vertical";
|
|
3393
|
+
server: "server";
|
|
3318
3394
|
"server-cog": "server-cog";
|
|
3319
3395
|
"server-crash": "server-crash";
|
|
3320
3396
|
"server-off": "server-off";
|
|
@@ -3400,6 +3476,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3400
3476
|
"split-square-horizontal": "split-square-horizontal";
|
|
3401
3477
|
"split-square-vertical": "split-square-vertical";
|
|
3402
3478
|
spool: "spool";
|
|
3479
|
+
spotlight: "spotlight";
|
|
3403
3480
|
"spray-can": "spray-can";
|
|
3404
3481
|
sprout: "sprout";
|
|
3405
3482
|
"square-activity": "square-activity";
|
|
@@ -3444,6 +3521,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3444
3521
|
"square-mouse-pointer": "square-mouse-pointer";
|
|
3445
3522
|
"square-parking": "square-parking";
|
|
3446
3523
|
"square-parking-off": "square-parking-off";
|
|
3524
|
+
"square-pause": "square-pause";
|
|
3447
3525
|
"square-pen": "square-pen";
|
|
3448
3526
|
"square-percent": "square-percent";
|
|
3449
3527
|
"square-pi": "square-pi";
|
|
@@ -3460,6 +3538,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3460
3538
|
"square-split-vertical": "square-split-vertical";
|
|
3461
3539
|
"square-square": "square-square";
|
|
3462
3540
|
"square-stack": "square-stack";
|
|
3541
|
+
"square-star": "square-star";
|
|
3542
|
+
"square-stop": "square-stop";
|
|
3463
3543
|
"square-terminal": "square-terminal";
|
|
3464
3544
|
"square-user": "square-user";
|
|
3465
3545
|
"square-user-round": "square-user-round";
|
|
@@ -3513,6 +3593,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3513
3593
|
tablet: "tablet";
|
|
3514
3594
|
"tablet-smartphone": "tablet-smartphone";
|
|
3515
3595
|
tablets: "tablets";
|
|
3596
|
+
tag: "tag";
|
|
3597
|
+
tags: "tags";
|
|
3516
3598
|
"tally-1": "tally-1";
|
|
3517
3599
|
"tally-2": "tally-2";
|
|
3518
3600
|
"tally-3": "tally-3";
|
|
@@ -3527,12 +3609,18 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3527
3609
|
"test-tube-2": "test-tube-2";
|
|
3528
3610
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
3529
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";
|
|
3530
3616
|
"text-cursor": "text-cursor";
|
|
3531
3617
|
"text-cursor-input": "text-cursor-input";
|
|
3618
|
+
"text-initial": "text-initial";
|
|
3532
3619
|
"text-quote": "text-quote";
|
|
3533
3620
|
"text-search": "text-search";
|
|
3534
3621
|
"text-select": "text-select";
|
|
3535
3622
|
"text-selection": "text-selection";
|
|
3623
|
+
"text-wrap": "text-wrap";
|
|
3536
3624
|
theater: "theater";
|
|
3537
3625
|
thermometer: "thermometer";
|
|
3538
3626
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -3585,6 +3673,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3585
3673
|
trophy: "trophy";
|
|
3586
3674
|
truck: "truck";
|
|
3587
3675
|
"truck-electric": "truck-electric";
|
|
3676
|
+
"turkish-lira": "turkish-lira";
|
|
3677
|
+
turntable: "turntable";
|
|
3588
3678
|
turtle: "turtle";
|
|
3589
3679
|
tv: "tv";
|
|
3590
3680
|
"tv-2": "tv-2";
|
|
@@ -3636,6 +3726,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3636
3726
|
"user-search": "user-search";
|
|
3637
3727
|
"user-square": "user-square";
|
|
3638
3728
|
"user-square-2": "user-square-2";
|
|
3729
|
+
"user-star": "user-star";
|
|
3639
3730
|
"user-x": "user-x";
|
|
3640
3731
|
"user-x-2": "user-x-2";
|
|
3641
3732
|
users: "users";
|
|
@@ -3691,6 +3782,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3691
3782
|
"wifi-low": "wifi-low";
|
|
3692
3783
|
"wifi-off": "wifi-off";
|
|
3693
3784
|
"wifi-pen": "wifi-pen";
|
|
3785
|
+
"wifi-sync": "wifi-sync";
|
|
3694
3786
|
"wifi-zero": "wifi-zero";
|
|
3695
3787
|
wind: "wind";
|
|
3696
3788
|
"wind-arrow-down": "wind-arrow-down";
|
|
@@ -3721,12 +3813,14 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3721
3813
|
indigo: "indigo";
|
|
3722
3814
|
gray: "gray";
|
|
3723
3815
|
}>;
|
|
3816
|
+
invert: z.ZodOptional<z.ZodBoolean>;
|
|
3817
|
+
className: z.ZodOptional<z.ZodString>;
|
|
3724
3818
|
}, z.core.$strip>>;
|
|
3725
3819
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3726
3820
|
hide: "hide";
|
|
3727
|
-
always: "always";
|
|
3728
3821
|
auth: "auth";
|
|
3729
3822
|
anon: "anon";
|
|
3823
|
+
always: "always";
|
|
3730
3824
|
}>, z.ZodCustom<(params: {
|
|
3731
3825
|
context: ZudokuContext;
|
|
3732
3826
|
auth: UseAuthReturn;
|
|
@@ -3741,10 +3835,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3741
3835
|
label: z.ZodOptional<z.ZodString>;
|
|
3742
3836
|
element: z.ZodAny;
|
|
3743
3837
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3838
|
+
info: "info";
|
|
3744
3839
|
slice: "slice";
|
|
3745
3840
|
map: "map";
|
|
3746
3841
|
filter: "filter";
|
|
3747
|
-
key: "key";
|
|
3748
3842
|
replace: "replace";
|
|
3749
3843
|
search: "search";
|
|
3750
3844
|
split: "split";
|
|
@@ -3752,31 +3846,23 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3752
3846
|
anchor: "anchor";
|
|
3753
3847
|
bold: "bold";
|
|
3754
3848
|
link: "link";
|
|
3755
|
-
info: "info";
|
|
3756
|
-
tags: "tags";
|
|
3757
|
-
contact: "contact";
|
|
3758
|
-
type: "type";
|
|
3759
|
-
binary: "binary";
|
|
3760
|
-
cookie: "cookie";
|
|
3761
|
-
list: "list";
|
|
3762
|
-
server: "server";
|
|
3763
|
-
tag: "tag";
|
|
3764
3849
|
file: "file";
|
|
3765
|
-
delete: "delete";
|
|
3766
3850
|
code: "code";
|
|
3767
|
-
check: "check";
|
|
3768
3851
|
copy: "copy";
|
|
3769
3852
|
focus: "focus";
|
|
3770
3853
|
pause: "pause";
|
|
3771
3854
|
play: "play";
|
|
3772
3855
|
scroll: "scroll";
|
|
3856
|
+
key: "key";
|
|
3773
3857
|
merge: "merge";
|
|
3774
3858
|
ghost: "ghost";
|
|
3775
3859
|
expand: "expand";
|
|
3860
|
+
type: "type";
|
|
3776
3861
|
send: "send";
|
|
3777
3862
|
grid: "grid";
|
|
3778
3863
|
group: "group";
|
|
3779
3864
|
heading: "heading";
|
|
3865
|
+
list: "list";
|
|
3780
3866
|
menu: "menu";
|
|
3781
3867
|
navigation: "navigation";
|
|
3782
3868
|
option: "option";
|
|
@@ -3787,20 +3873,18 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3787
3873
|
text: "text";
|
|
3788
3874
|
mouse: "mouse";
|
|
3789
3875
|
pen: "pen";
|
|
3790
|
-
regex: "regex";
|
|
3791
|
-
target: "target";
|
|
3792
|
-
radius: "radius";
|
|
3793
|
-
scale: "scale";
|
|
3794
|
-
x: "x";
|
|
3795
3876
|
section: "section";
|
|
3796
3877
|
video: "video";
|
|
3797
3878
|
circle: "circle";
|
|
3798
3879
|
image: "image";
|
|
3799
3880
|
view: "view";
|
|
3881
|
+
target: "target";
|
|
3882
|
+
radius: "radius";
|
|
3883
|
+
scale: "scale";
|
|
3884
|
+
x: "x";
|
|
3800
3885
|
baseline: "baseline";
|
|
3801
3886
|
terminal: "terminal";
|
|
3802
3887
|
square: "square";
|
|
3803
|
-
move: "move";
|
|
3804
3888
|
"a-arrow-down": "a-arrow-down";
|
|
3805
3889
|
"a-arrow-up": "a-arrow-up";
|
|
3806
3890
|
"a-large-small": "a-large-small";
|
|
@@ -3965,6 +4049,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3965
4049
|
"badge-question-mark": "badge-question-mark";
|
|
3966
4050
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
3967
4051
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
4052
|
+
"badge-turkish-lira": "badge-turkish-lira";
|
|
3968
4053
|
"badge-x": "badge-x";
|
|
3969
4054
|
"baggage-claim": "baggage-claim";
|
|
3970
4055
|
ban: "ban";
|
|
@@ -4015,9 +4100,11 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4015
4100
|
"between-vertical-start": "between-vertical-start";
|
|
4016
4101
|
"biceps-flexed": "biceps-flexed";
|
|
4017
4102
|
bike: "bike";
|
|
4103
|
+
binary: "binary";
|
|
4018
4104
|
binoculars: "binoculars";
|
|
4019
4105
|
biohazard: "biohazard";
|
|
4020
4106
|
bird: "bird";
|
|
4107
|
+
birdhouse: "birdhouse";
|
|
4021
4108
|
bitcoin: "bitcoin";
|
|
4022
4109
|
blend: "blend";
|
|
4023
4110
|
blinds: "blinds";
|
|
@@ -4076,6 +4163,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4076
4163
|
"brain-cog": "brain-cog";
|
|
4077
4164
|
"brick-wall": "brick-wall";
|
|
4078
4165
|
"brick-wall-fire": "brick-wall-fire";
|
|
4166
|
+
"brick-wall-shield": "brick-wall-shield";
|
|
4079
4167
|
briefcase: "briefcase";
|
|
4080
4168
|
"briefcase-business": "briefcase-business";
|
|
4081
4169
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
@@ -4163,6 +4251,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4163
4251
|
"chart-pie": "chart-pie";
|
|
4164
4252
|
"chart-scatter": "chart-scatter";
|
|
4165
4253
|
"chart-spline": "chart-spline";
|
|
4254
|
+
check: "check";
|
|
4166
4255
|
"check-check": "check-check";
|
|
4167
4256
|
"check-circle": "check-circle";
|
|
4168
4257
|
"check-circle-2": "check-circle-2";
|
|
@@ -4195,6 +4284,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4195
4284
|
"chevrons-up": "chevrons-up";
|
|
4196
4285
|
"chevrons-up-down": "chevrons-up-down";
|
|
4197
4286
|
chrome: "chrome";
|
|
4287
|
+
chromium: "chromium";
|
|
4198
4288
|
church: "church";
|
|
4199
4289
|
cigarette: "cigarette";
|
|
4200
4290
|
"cigarette-off": "cigarette-off";
|
|
@@ -4239,6 +4329,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4239
4329
|
"circle-slash-2": "circle-slash-2";
|
|
4240
4330
|
"circle-slashed": "circle-slashed";
|
|
4241
4331
|
"circle-small": "circle-small";
|
|
4332
|
+
"circle-star": "circle-star";
|
|
4242
4333
|
"circle-stop": "circle-stop";
|
|
4243
4334
|
"circle-user": "circle-user";
|
|
4244
4335
|
"circle-user-round": "circle-user-round";
|
|
@@ -4248,6 +4339,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4248
4339
|
clapperboard: "clapperboard";
|
|
4249
4340
|
clipboard: "clipboard";
|
|
4250
4341
|
"clipboard-check": "clipboard-check";
|
|
4342
|
+
"clipboard-clock": "clipboard-clock";
|
|
4251
4343
|
"clipboard-copy": "clipboard-copy";
|
|
4252
4344
|
"clipboard-edit": "clipboard-edit";
|
|
4253
4345
|
"clipboard-list": "clipboard-list";
|
|
@@ -4277,6 +4369,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4277
4369
|
"clock-arrow-up": "clock-arrow-up";
|
|
4278
4370
|
"clock-fading": "clock-fading";
|
|
4279
4371
|
"clock-plus": "clock-plus";
|
|
4372
|
+
"closed-caption": "closed-caption";
|
|
4280
4373
|
cloud: "cloud";
|
|
4281
4374
|
"cloud-alert": "cloud-alert";
|
|
4282
4375
|
"cloud-check": "cloud-check";
|
|
@@ -4320,10 +4413,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4320
4413
|
"concierge-bell": "concierge-bell";
|
|
4321
4414
|
cone: "cone";
|
|
4322
4415
|
construction: "construction";
|
|
4416
|
+
contact: "contact";
|
|
4323
4417
|
"contact-2": "contact-2";
|
|
4324
4418
|
"contact-round": "contact-round";
|
|
4325
4419
|
container: "container";
|
|
4326
4420
|
contrast: "contrast";
|
|
4421
|
+
cookie: "cookie";
|
|
4327
4422
|
"cooking-pot": "cooking-pot";
|
|
4328
4423
|
"copy-check": "copy-check";
|
|
4329
4424
|
"copy-minus": "copy-minus";
|
|
@@ -4359,6 +4454,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4359
4454
|
"database-zap": "database-zap";
|
|
4360
4455
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
4361
4456
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
4457
|
+
delete: "delete";
|
|
4362
4458
|
dessert: "dessert";
|
|
4363
4459
|
diameter: "diameter";
|
|
4364
4460
|
diamond: "diamond";
|
|
@@ -4424,6 +4520,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4424
4520
|
eraser: "eraser";
|
|
4425
4521
|
"ethernet-port": "ethernet-port";
|
|
4426
4522
|
euro: "euro";
|
|
4523
|
+
"ev-charger": "ev-charger";
|
|
4427
4524
|
"external-link": "external-link";
|
|
4428
4525
|
eye: "eye";
|
|
4429
4526
|
"eye-closed": "eye-closed";
|
|
@@ -4478,6 +4575,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4478
4575
|
"file-pen": "file-pen";
|
|
4479
4576
|
"file-pen-line": "file-pen-line";
|
|
4480
4577
|
"file-pie-chart": "file-pie-chart";
|
|
4578
|
+
"file-play": "file-play";
|
|
4481
4579
|
"file-plus": "file-plus";
|
|
4482
4580
|
"file-plus-2": "file-plus-2";
|
|
4483
4581
|
"file-question": "file-question";
|
|
@@ -4498,6 +4596,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4498
4596
|
"file-user": "file-user";
|
|
4499
4597
|
"file-video": "file-video";
|
|
4500
4598
|
"file-video-2": "file-video-2";
|
|
4599
|
+
"file-video-camera": "file-video-camera";
|
|
4501
4600
|
"file-volume": "file-volume";
|
|
4502
4601
|
"file-volume-2": "file-volume-2";
|
|
4503
4602
|
"file-warning": "file-warning";
|
|
@@ -4585,6 +4684,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4585
4684
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
4586
4685
|
gamepad: "gamepad";
|
|
4587
4686
|
"gamepad-2": "gamepad-2";
|
|
4687
|
+
"gamepad-directional": "gamepad-directional";
|
|
4588
4688
|
"gantt-chart": "gantt-chart";
|
|
4589
4689
|
"gantt-chart-square": "gantt-chart-square";
|
|
4590
4690
|
gauge: "gauge";
|
|
@@ -4641,16 +4741,20 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4641
4741
|
hammer: "hammer";
|
|
4642
4742
|
hand: "hand";
|
|
4643
4743
|
"hand-coins": "hand-coins";
|
|
4744
|
+
"hand-fist": "hand-fist";
|
|
4745
|
+
"hand-grab": "hand-grab";
|
|
4644
4746
|
"hand-heart": "hand-heart";
|
|
4645
4747
|
"hand-helping": "hand-helping";
|
|
4646
4748
|
"hand-metal": "hand-metal";
|
|
4647
4749
|
"hand-platter": "hand-platter";
|
|
4750
|
+
handbag: "handbag";
|
|
4648
4751
|
handshake: "handshake";
|
|
4649
4752
|
"hard-drive": "hard-drive";
|
|
4650
4753
|
"hard-drive-download": "hard-drive-download";
|
|
4651
4754
|
"hard-drive-upload": "hard-drive-upload";
|
|
4652
4755
|
"hard-hat": "hard-hat";
|
|
4653
4756
|
hash: "hash";
|
|
4757
|
+
"hat-glasses": "hat-glasses";
|
|
4654
4758
|
haze: "haze";
|
|
4655
4759
|
"hdmi-port": "hdmi-port";
|
|
4656
4760
|
"heading-1": "heading-1";
|
|
@@ -4682,6 +4786,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4682
4786
|
hotel: "hotel";
|
|
4683
4787
|
hourglass: "hourglass";
|
|
4684
4788
|
house: "house";
|
|
4789
|
+
"house-heart": "house-heart";
|
|
4685
4790
|
"house-plug": "house-plug";
|
|
4686
4791
|
"house-plus": "house-plus";
|
|
4687
4792
|
"house-wifi": "house-wifi";
|
|
@@ -4717,6 +4822,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4717
4822
|
kanban: "kanban";
|
|
4718
4823
|
"kanban-square": "kanban-square";
|
|
4719
4824
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
4825
|
+
kayak: "kayak";
|
|
4720
4826
|
"key-round": "key-round";
|
|
4721
4827
|
"key-square": "key-square";
|
|
4722
4828
|
keyboard: "keyboard";
|
|
@@ -4766,10 +4872,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4766
4872
|
linkedin: "linkedin";
|
|
4767
4873
|
"list-check": "list-check";
|
|
4768
4874
|
"list-checks": "list-checks";
|
|
4875
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
4876
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
4769
4877
|
"list-collapse": "list-collapse";
|
|
4770
4878
|
"list-end": "list-end";
|
|
4771
4879
|
"list-filter": "list-filter";
|
|
4772
4880
|
"list-filter-plus": "list-filter-plus";
|
|
4881
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
4882
|
+
"list-indent-increase": "list-indent-increase";
|
|
4773
4883
|
"list-minus": "list-minus";
|
|
4774
4884
|
"list-music": "list-music";
|
|
4775
4885
|
"list-ordered": "list-ordered";
|
|
@@ -4811,6 +4921,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4811
4921
|
"mail-x": "mail-x";
|
|
4812
4922
|
mailbox: "mailbox";
|
|
4813
4923
|
mails: "mails";
|
|
4924
|
+
"map-minus": "map-minus";
|
|
4814
4925
|
"map-pin": "map-pin";
|
|
4815
4926
|
"map-pin-check": "map-pin-check";
|
|
4816
4927
|
"map-pin-check-inside": "map-pin-check-inside";
|
|
@@ -4818,6 +4929,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4818
4929
|
"map-pin-minus": "map-pin-minus";
|
|
4819
4930
|
"map-pin-minus-inside": "map-pin-minus-inside";
|
|
4820
4931
|
"map-pin-off": "map-pin-off";
|
|
4932
|
+
"map-pin-pen": "map-pin-pen";
|
|
4821
4933
|
"map-pin-plus": "map-pin-plus";
|
|
4822
4934
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
4823
4935
|
"map-pin-x": "map-pin-x";
|
|
@@ -4881,6 +4993,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4881
4993
|
"minus-square": "minus-square";
|
|
4882
4994
|
monitor: "monitor";
|
|
4883
4995
|
"monitor-check": "monitor-check";
|
|
4996
|
+
"monitor-cloud": "monitor-cloud";
|
|
4884
4997
|
"monitor-cog": "monitor-cog";
|
|
4885
4998
|
"monitor-dot": "monitor-dot";
|
|
4886
4999
|
"monitor-down": "monitor-down";
|
|
@@ -4896,6 +5009,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4896
5009
|
"moon-star": "moon-star";
|
|
4897
5010
|
"more-horizontal": "more-horizontal";
|
|
4898
5011
|
"more-vertical": "more-vertical";
|
|
5012
|
+
motorbike: "motorbike";
|
|
4899
5013
|
mountain: "mountain";
|
|
4900
5014
|
"mountain-snow": "mountain-snow";
|
|
4901
5015
|
"mouse-off": "mouse-off";
|
|
@@ -4904,6 +5018,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4904
5018
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
4905
5019
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
4906
5020
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
5021
|
+
move: "move";
|
|
4907
5022
|
"move-3-d": "move-3-d";
|
|
4908
5023
|
"move-3d": "move-3d";
|
|
4909
5024
|
"move-diagonal": "move-diagonal";
|
|
@@ -4972,12 +5087,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4972
5087
|
"panel-left-dashed": "panel-left-dashed";
|
|
4973
5088
|
"panel-left-inactive": "panel-left-inactive";
|
|
4974
5089
|
"panel-left-open": "panel-left-open";
|
|
5090
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
4975
5091
|
"panel-right": "panel-right";
|
|
4976
5092
|
"panel-right-close": "panel-right-close";
|
|
4977
5093
|
"panel-right-dashed": "panel-right-dashed";
|
|
4978
5094
|
"panel-right-inactive": "panel-right-inactive";
|
|
4979
5095
|
"panel-right-open": "panel-right-open";
|
|
4980
5096
|
"panel-top": "panel-top";
|
|
5097
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
4981
5098
|
"panel-top-close": "panel-top-close";
|
|
4982
5099
|
"panel-top-dashed": "panel-top-dashed";
|
|
4983
5100
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -5091,6 +5208,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5091
5208
|
"receipt-russian-ruble": "receipt-russian-ruble";
|
|
5092
5209
|
"receipt-swiss-franc": "receipt-swiss-franc";
|
|
5093
5210
|
"receipt-text": "receipt-text";
|
|
5211
|
+
"receipt-turkish-lira": "receipt-turkish-lira";
|
|
5094
5212
|
"rectangle-circle": "rectangle-circle";
|
|
5095
5213
|
"rectangle-ellipsis": "rectangle-ellipsis";
|
|
5096
5214
|
"rectangle-goggles": "rectangle-goggles";
|
|
@@ -5105,6 +5223,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5105
5223
|
"refresh-cw": "refresh-cw";
|
|
5106
5224
|
"refresh-cw-off": "refresh-cw-off";
|
|
5107
5225
|
refrigerator: "refrigerator";
|
|
5226
|
+
regex: "regex";
|
|
5108
5227
|
"remove-formatting": "remove-formatting";
|
|
5109
5228
|
"repeat-1": "repeat-1";
|
|
5110
5229
|
"repeat-2": "repeat-2";
|
|
@@ -5116,6 +5235,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5116
5235
|
rocket: "rocket";
|
|
5117
5236
|
"rocking-chair": "rocking-chair";
|
|
5118
5237
|
"roller-coaster": "roller-coaster";
|
|
5238
|
+
rose: "rose";
|
|
5119
5239
|
"rotate-3-d": "rotate-3-d";
|
|
5120
5240
|
"rotate-3d": "rotate-3d";
|
|
5121
5241
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -5174,6 +5294,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5174
5294
|
"send-to-back": "send-to-back";
|
|
5175
5295
|
"separator-horizontal": "separator-horizontal";
|
|
5176
5296
|
"separator-vertical": "separator-vertical";
|
|
5297
|
+
server: "server";
|
|
5177
5298
|
"server-cog": "server-cog";
|
|
5178
5299
|
"server-crash": "server-crash";
|
|
5179
5300
|
"server-off": "server-off";
|
|
@@ -5259,6 +5380,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5259
5380
|
"split-square-horizontal": "split-square-horizontal";
|
|
5260
5381
|
"split-square-vertical": "split-square-vertical";
|
|
5261
5382
|
spool: "spool";
|
|
5383
|
+
spotlight: "spotlight";
|
|
5262
5384
|
"spray-can": "spray-can";
|
|
5263
5385
|
sprout: "sprout";
|
|
5264
5386
|
"square-activity": "square-activity";
|
|
@@ -5303,6 +5425,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5303
5425
|
"square-mouse-pointer": "square-mouse-pointer";
|
|
5304
5426
|
"square-parking": "square-parking";
|
|
5305
5427
|
"square-parking-off": "square-parking-off";
|
|
5428
|
+
"square-pause": "square-pause";
|
|
5306
5429
|
"square-pen": "square-pen";
|
|
5307
5430
|
"square-percent": "square-percent";
|
|
5308
5431
|
"square-pi": "square-pi";
|
|
@@ -5319,6 +5442,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5319
5442
|
"square-split-vertical": "square-split-vertical";
|
|
5320
5443
|
"square-square": "square-square";
|
|
5321
5444
|
"square-stack": "square-stack";
|
|
5445
|
+
"square-star": "square-star";
|
|
5446
|
+
"square-stop": "square-stop";
|
|
5322
5447
|
"square-terminal": "square-terminal";
|
|
5323
5448
|
"square-user": "square-user";
|
|
5324
5449
|
"square-user-round": "square-user-round";
|
|
@@ -5372,6 +5497,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5372
5497
|
tablet: "tablet";
|
|
5373
5498
|
"tablet-smartphone": "tablet-smartphone";
|
|
5374
5499
|
tablets: "tablets";
|
|
5500
|
+
tag: "tag";
|
|
5501
|
+
tags: "tags";
|
|
5375
5502
|
"tally-1": "tally-1";
|
|
5376
5503
|
"tally-2": "tally-2";
|
|
5377
5504
|
"tally-3": "tally-3";
|
|
@@ -5386,12 +5513,18 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5386
5513
|
"test-tube-2": "test-tube-2";
|
|
5387
5514
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
5388
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";
|
|
5389
5520
|
"text-cursor": "text-cursor";
|
|
5390
5521
|
"text-cursor-input": "text-cursor-input";
|
|
5522
|
+
"text-initial": "text-initial";
|
|
5391
5523
|
"text-quote": "text-quote";
|
|
5392
5524
|
"text-search": "text-search";
|
|
5393
5525
|
"text-select": "text-select";
|
|
5394
5526
|
"text-selection": "text-selection";
|
|
5527
|
+
"text-wrap": "text-wrap";
|
|
5395
5528
|
theater: "theater";
|
|
5396
5529
|
thermometer: "thermometer";
|
|
5397
5530
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -5444,6 +5577,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5444
5577
|
trophy: "trophy";
|
|
5445
5578
|
truck: "truck";
|
|
5446
5579
|
"truck-electric": "truck-electric";
|
|
5580
|
+
"turkish-lira": "turkish-lira";
|
|
5581
|
+
turntable: "turntable";
|
|
5447
5582
|
turtle: "turtle";
|
|
5448
5583
|
tv: "tv";
|
|
5449
5584
|
"tv-2": "tv-2";
|
|
@@ -5495,6 +5630,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5495
5630
|
"user-search": "user-search";
|
|
5496
5631
|
"user-square": "user-square";
|
|
5497
5632
|
"user-square-2": "user-square-2";
|
|
5633
|
+
"user-star": "user-star";
|
|
5498
5634
|
"user-x": "user-x";
|
|
5499
5635
|
"user-x-2": "user-x-2";
|
|
5500
5636
|
users: "users";
|
|
@@ -5550,6 +5686,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5550
5686
|
"wifi-low": "wifi-low";
|
|
5551
5687
|
"wifi-off": "wifi-off";
|
|
5552
5688
|
"wifi-pen": "wifi-pen";
|
|
5689
|
+
"wifi-sync": "wifi-sync";
|
|
5553
5690
|
"wifi-zero": "wifi-zero";
|
|
5554
5691
|
wind: "wind";
|
|
5555
5692
|
"wind-arrow-down": "wind-arrow-down";
|
|
@@ -5580,12 +5717,14 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5580
5717
|
indigo: "indigo";
|
|
5581
5718
|
gray: "gray";
|
|
5582
5719
|
}>;
|
|
5720
|
+
invert: z.ZodOptional<z.ZodBoolean>;
|
|
5721
|
+
className: z.ZodOptional<z.ZodString>;
|
|
5583
5722
|
}, z.core.$strip>>;
|
|
5584
5723
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5585
5724
|
hide: "hide";
|
|
5586
|
-
always: "always";
|
|
5587
5725
|
auth: "auth";
|
|
5588
5726
|
anon: "anon";
|
|
5727
|
+
always: "always";
|
|
5589
5728
|
}>, z.ZodCustom<(params: {
|
|
5590
5729
|
context: ZudokuContext;
|
|
5591
5730
|
auth: UseAuthReturn;
|
|
@@ -5601,10 +5740,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5601
5740
|
declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
5602
5741
|
type: z.ZodLiteral<"category">;
|
|
5603
5742
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
5743
|
+
info: "info";
|
|
5604
5744
|
slice: "slice";
|
|
5605
5745
|
map: "map";
|
|
5606
5746
|
filter: "filter";
|
|
5607
|
-
key: "key";
|
|
5608
5747
|
replace: "replace";
|
|
5609
5748
|
search: "search";
|
|
5610
5749
|
split: "split";
|
|
@@ -5612,31 +5751,23 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5612
5751
|
anchor: "anchor";
|
|
5613
5752
|
bold: "bold";
|
|
5614
5753
|
link: "link";
|
|
5615
|
-
info: "info";
|
|
5616
|
-
tags: "tags";
|
|
5617
|
-
contact: "contact";
|
|
5618
|
-
type: "type";
|
|
5619
|
-
binary: "binary";
|
|
5620
|
-
cookie: "cookie";
|
|
5621
|
-
list: "list";
|
|
5622
|
-
server: "server";
|
|
5623
|
-
tag: "tag";
|
|
5624
5754
|
file: "file";
|
|
5625
|
-
delete: "delete";
|
|
5626
5755
|
code: "code";
|
|
5627
|
-
check: "check";
|
|
5628
5756
|
copy: "copy";
|
|
5629
5757
|
focus: "focus";
|
|
5630
5758
|
pause: "pause";
|
|
5631
5759
|
play: "play";
|
|
5632
5760
|
scroll: "scroll";
|
|
5761
|
+
key: "key";
|
|
5633
5762
|
merge: "merge";
|
|
5634
5763
|
ghost: "ghost";
|
|
5635
5764
|
expand: "expand";
|
|
5765
|
+
type: "type";
|
|
5636
5766
|
send: "send";
|
|
5637
5767
|
grid: "grid";
|
|
5638
5768
|
group: "group";
|
|
5639
5769
|
heading: "heading";
|
|
5770
|
+
list: "list";
|
|
5640
5771
|
menu: "menu";
|
|
5641
5772
|
navigation: "navigation";
|
|
5642
5773
|
option: "option";
|
|
@@ -5647,20 +5778,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5647
5778
|
text: "text";
|
|
5648
5779
|
mouse: "mouse";
|
|
5649
5780
|
pen: "pen";
|
|
5650
|
-
regex: "regex";
|
|
5651
|
-
target: "target";
|
|
5652
|
-
radius: "radius";
|
|
5653
|
-
scale: "scale";
|
|
5654
|
-
x: "x";
|
|
5655
5781
|
section: "section";
|
|
5656
5782
|
video: "video";
|
|
5657
5783
|
circle: "circle";
|
|
5658
5784
|
image: "image";
|
|
5659
5785
|
view: "view";
|
|
5786
|
+
target: "target";
|
|
5787
|
+
radius: "radius";
|
|
5788
|
+
scale: "scale";
|
|
5789
|
+
x: "x";
|
|
5660
5790
|
baseline: "baseline";
|
|
5661
5791
|
terminal: "terminal";
|
|
5662
5792
|
square: "square";
|
|
5663
|
-
move: "move";
|
|
5664
5793
|
"a-arrow-down": "a-arrow-down";
|
|
5665
5794
|
"a-arrow-up": "a-arrow-up";
|
|
5666
5795
|
"a-large-small": "a-large-small";
|
|
@@ -5825,6 +5954,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5825
5954
|
"badge-question-mark": "badge-question-mark";
|
|
5826
5955
|
"badge-russian-ruble": "badge-russian-ruble";
|
|
5827
5956
|
"badge-swiss-franc": "badge-swiss-franc";
|
|
5957
|
+
"badge-turkish-lira": "badge-turkish-lira";
|
|
5828
5958
|
"badge-x": "badge-x";
|
|
5829
5959
|
"baggage-claim": "baggage-claim";
|
|
5830
5960
|
ban: "ban";
|
|
@@ -5875,9 +6005,11 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5875
6005
|
"between-vertical-start": "between-vertical-start";
|
|
5876
6006
|
"biceps-flexed": "biceps-flexed";
|
|
5877
6007
|
bike: "bike";
|
|
6008
|
+
binary: "binary";
|
|
5878
6009
|
binoculars: "binoculars";
|
|
5879
6010
|
biohazard: "biohazard";
|
|
5880
6011
|
bird: "bird";
|
|
6012
|
+
birdhouse: "birdhouse";
|
|
5881
6013
|
bitcoin: "bitcoin";
|
|
5882
6014
|
blend: "blend";
|
|
5883
6015
|
blinds: "blinds";
|
|
@@ -5936,6 +6068,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5936
6068
|
"brain-cog": "brain-cog";
|
|
5937
6069
|
"brick-wall": "brick-wall";
|
|
5938
6070
|
"brick-wall-fire": "brick-wall-fire";
|
|
6071
|
+
"brick-wall-shield": "brick-wall-shield";
|
|
5939
6072
|
briefcase: "briefcase";
|
|
5940
6073
|
"briefcase-business": "briefcase-business";
|
|
5941
6074
|
"briefcase-conveyor-belt": "briefcase-conveyor-belt";
|
|
@@ -6023,6 +6156,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6023
6156
|
"chart-pie": "chart-pie";
|
|
6024
6157
|
"chart-scatter": "chart-scatter";
|
|
6025
6158
|
"chart-spline": "chart-spline";
|
|
6159
|
+
check: "check";
|
|
6026
6160
|
"check-check": "check-check";
|
|
6027
6161
|
"check-circle": "check-circle";
|
|
6028
6162
|
"check-circle-2": "check-circle-2";
|
|
@@ -6055,6 +6189,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6055
6189
|
"chevrons-up": "chevrons-up";
|
|
6056
6190
|
"chevrons-up-down": "chevrons-up-down";
|
|
6057
6191
|
chrome: "chrome";
|
|
6192
|
+
chromium: "chromium";
|
|
6058
6193
|
church: "church";
|
|
6059
6194
|
cigarette: "cigarette";
|
|
6060
6195
|
"cigarette-off": "cigarette-off";
|
|
@@ -6099,6 +6234,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6099
6234
|
"circle-slash-2": "circle-slash-2";
|
|
6100
6235
|
"circle-slashed": "circle-slashed";
|
|
6101
6236
|
"circle-small": "circle-small";
|
|
6237
|
+
"circle-star": "circle-star";
|
|
6102
6238
|
"circle-stop": "circle-stop";
|
|
6103
6239
|
"circle-user": "circle-user";
|
|
6104
6240
|
"circle-user-round": "circle-user-round";
|
|
@@ -6108,6 +6244,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6108
6244
|
clapperboard: "clapperboard";
|
|
6109
6245
|
clipboard: "clipboard";
|
|
6110
6246
|
"clipboard-check": "clipboard-check";
|
|
6247
|
+
"clipboard-clock": "clipboard-clock";
|
|
6111
6248
|
"clipboard-copy": "clipboard-copy";
|
|
6112
6249
|
"clipboard-edit": "clipboard-edit";
|
|
6113
6250
|
"clipboard-list": "clipboard-list";
|
|
@@ -6137,6 +6274,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6137
6274
|
"clock-arrow-up": "clock-arrow-up";
|
|
6138
6275
|
"clock-fading": "clock-fading";
|
|
6139
6276
|
"clock-plus": "clock-plus";
|
|
6277
|
+
"closed-caption": "closed-caption";
|
|
6140
6278
|
cloud: "cloud";
|
|
6141
6279
|
"cloud-alert": "cloud-alert";
|
|
6142
6280
|
"cloud-check": "cloud-check";
|
|
@@ -6180,10 +6318,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6180
6318
|
"concierge-bell": "concierge-bell";
|
|
6181
6319
|
cone: "cone";
|
|
6182
6320
|
construction: "construction";
|
|
6321
|
+
contact: "contact";
|
|
6183
6322
|
"contact-2": "contact-2";
|
|
6184
6323
|
"contact-round": "contact-round";
|
|
6185
6324
|
container: "container";
|
|
6186
6325
|
contrast: "contrast";
|
|
6326
|
+
cookie: "cookie";
|
|
6187
6327
|
"cooking-pot": "cooking-pot";
|
|
6188
6328
|
"copy-check": "copy-check";
|
|
6189
6329
|
"copy-minus": "copy-minus";
|
|
@@ -6219,6 +6359,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6219
6359
|
"database-zap": "database-zap";
|
|
6220
6360
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
6221
6361
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
6362
|
+
delete: "delete";
|
|
6222
6363
|
dessert: "dessert";
|
|
6223
6364
|
diameter: "diameter";
|
|
6224
6365
|
diamond: "diamond";
|
|
@@ -6284,6 +6425,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6284
6425
|
eraser: "eraser";
|
|
6285
6426
|
"ethernet-port": "ethernet-port";
|
|
6286
6427
|
euro: "euro";
|
|
6428
|
+
"ev-charger": "ev-charger";
|
|
6287
6429
|
"external-link": "external-link";
|
|
6288
6430
|
eye: "eye";
|
|
6289
6431
|
"eye-closed": "eye-closed";
|
|
@@ -6338,6 +6480,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6338
6480
|
"file-pen": "file-pen";
|
|
6339
6481
|
"file-pen-line": "file-pen-line";
|
|
6340
6482
|
"file-pie-chart": "file-pie-chart";
|
|
6483
|
+
"file-play": "file-play";
|
|
6341
6484
|
"file-plus": "file-plus";
|
|
6342
6485
|
"file-plus-2": "file-plus-2";
|
|
6343
6486
|
"file-question": "file-question";
|
|
@@ -6358,6 +6501,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6358
6501
|
"file-user": "file-user";
|
|
6359
6502
|
"file-video": "file-video";
|
|
6360
6503
|
"file-video-2": "file-video-2";
|
|
6504
|
+
"file-video-camera": "file-video-camera";
|
|
6361
6505
|
"file-volume": "file-volume";
|
|
6362
6506
|
"file-volume-2": "file-volume-2";
|
|
6363
6507
|
"file-warning": "file-warning";
|
|
@@ -6445,6 +6589,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6445
6589
|
"gallery-vertical-end": "gallery-vertical-end";
|
|
6446
6590
|
gamepad: "gamepad";
|
|
6447
6591
|
"gamepad-2": "gamepad-2";
|
|
6592
|
+
"gamepad-directional": "gamepad-directional";
|
|
6448
6593
|
"gantt-chart": "gantt-chart";
|
|
6449
6594
|
"gantt-chart-square": "gantt-chart-square";
|
|
6450
6595
|
gauge: "gauge";
|
|
@@ -6501,16 +6646,20 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6501
6646
|
hammer: "hammer";
|
|
6502
6647
|
hand: "hand";
|
|
6503
6648
|
"hand-coins": "hand-coins";
|
|
6649
|
+
"hand-fist": "hand-fist";
|
|
6650
|
+
"hand-grab": "hand-grab";
|
|
6504
6651
|
"hand-heart": "hand-heart";
|
|
6505
6652
|
"hand-helping": "hand-helping";
|
|
6506
6653
|
"hand-metal": "hand-metal";
|
|
6507
6654
|
"hand-platter": "hand-platter";
|
|
6655
|
+
handbag: "handbag";
|
|
6508
6656
|
handshake: "handshake";
|
|
6509
6657
|
"hard-drive": "hard-drive";
|
|
6510
6658
|
"hard-drive-download": "hard-drive-download";
|
|
6511
6659
|
"hard-drive-upload": "hard-drive-upload";
|
|
6512
6660
|
"hard-hat": "hard-hat";
|
|
6513
6661
|
hash: "hash";
|
|
6662
|
+
"hat-glasses": "hat-glasses";
|
|
6514
6663
|
haze: "haze";
|
|
6515
6664
|
"hdmi-port": "hdmi-port";
|
|
6516
6665
|
"heading-1": "heading-1";
|
|
@@ -6542,6 +6691,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6542
6691
|
hotel: "hotel";
|
|
6543
6692
|
hourglass: "hourglass";
|
|
6544
6693
|
house: "house";
|
|
6694
|
+
"house-heart": "house-heart";
|
|
6545
6695
|
"house-plug": "house-plug";
|
|
6546
6696
|
"house-plus": "house-plus";
|
|
6547
6697
|
"house-wifi": "house-wifi";
|
|
@@ -6577,6 +6727,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6577
6727
|
kanban: "kanban";
|
|
6578
6728
|
"kanban-square": "kanban-square";
|
|
6579
6729
|
"kanban-square-dashed": "kanban-square-dashed";
|
|
6730
|
+
kayak: "kayak";
|
|
6580
6731
|
"key-round": "key-round";
|
|
6581
6732
|
"key-square": "key-square";
|
|
6582
6733
|
keyboard: "keyboard";
|
|
@@ -6626,10 +6777,14 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6626
6777
|
linkedin: "linkedin";
|
|
6627
6778
|
"list-check": "list-check";
|
|
6628
6779
|
"list-checks": "list-checks";
|
|
6780
|
+
"list-chevrons-down-up": "list-chevrons-down-up";
|
|
6781
|
+
"list-chevrons-up-down": "list-chevrons-up-down";
|
|
6629
6782
|
"list-collapse": "list-collapse";
|
|
6630
6783
|
"list-end": "list-end";
|
|
6631
6784
|
"list-filter": "list-filter";
|
|
6632
6785
|
"list-filter-plus": "list-filter-plus";
|
|
6786
|
+
"list-indent-decrease": "list-indent-decrease";
|
|
6787
|
+
"list-indent-increase": "list-indent-increase";
|
|
6633
6788
|
"list-minus": "list-minus";
|
|
6634
6789
|
"list-music": "list-music";
|
|
6635
6790
|
"list-ordered": "list-ordered";
|
|
@@ -6671,6 +6826,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6671
6826
|
"mail-x": "mail-x";
|
|
6672
6827
|
mailbox: "mailbox";
|
|
6673
6828
|
mails: "mails";
|
|
6829
|
+
"map-minus": "map-minus";
|
|
6674
6830
|
"map-pin": "map-pin";
|
|
6675
6831
|
"map-pin-check": "map-pin-check";
|
|
6676
6832
|
"map-pin-check-inside": "map-pin-check-inside";
|
|
@@ -6678,6 +6834,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6678
6834
|
"map-pin-minus": "map-pin-minus";
|
|
6679
6835
|
"map-pin-minus-inside": "map-pin-minus-inside";
|
|
6680
6836
|
"map-pin-off": "map-pin-off";
|
|
6837
|
+
"map-pin-pen": "map-pin-pen";
|
|
6681
6838
|
"map-pin-plus": "map-pin-plus";
|
|
6682
6839
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
6683
6840
|
"map-pin-x": "map-pin-x";
|
|
@@ -6741,6 +6898,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6741
6898
|
"minus-square": "minus-square";
|
|
6742
6899
|
monitor: "monitor";
|
|
6743
6900
|
"monitor-check": "monitor-check";
|
|
6901
|
+
"monitor-cloud": "monitor-cloud";
|
|
6744
6902
|
"monitor-cog": "monitor-cog";
|
|
6745
6903
|
"monitor-dot": "monitor-dot";
|
|
6746
6904
|
"monitor-down": "monitor-down";
|
|
@@ -6756,6 +6914,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6756
6914
|
"moon-star": "moon-star";
|
|
6757
6915
|
"more-horizontal": "more-horizontal";
|
|
6758
6916
|
"more-vertical": "more-vertical";
|
|
6917
|
+
motorbike: "motorbike";
|
|
6759
6918
|
mountain: "mountain";
|
|
6760
6919
|
"mountain-snow": "mountain-snow";
|
|
6761
6920
|
"mouse-off": "mouse-off";
|
|
@@ -6764,6 +6923,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6764
6923
|
"mouse-pointer-ban": "mouse-pointer-ban";
|
|
6765
6924
|
"mouse-pointer-click": "mouse-pointer-click";
|
|
6766
6925
|
"mouse-pointer-square-dashed": "mouse-pointer-square-dashed";
|
|
6926
|
+
move: "move";
|
|
6767
6927
|
"move-3-d": "move-3-d";
|
|
6768
6928
|
"move-3d": "move-3d";
|
|
6769
6929
|
"move-diagonal": "move-diagonal";
|
|
@@ -6832,12 +6992,14 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6832
6992
|
"panel-left-dashed": "panel-left-dashed";
|
|
6833
6993
|
"panel-left-inactive": "panel-left-inactive";
|
|
6834
6994
|
"panel-left-open": "panel-left-open";
|
|
6995
|
+
"panel-left-right-dashed": "panel-left-right-dashed";
|
|
6835
6996
|
"panel-right": "panel-right";
|
|
6836
6997
|
"panel-right-close": "panel-right-close";
|
|
6837
6998
|
"panel-right-dashed": "panel-right-dashed";
|
|
6838
6999
|
"panel-right-inactive": "panel-right-inactive";
|
|
6839
7000
|
"panel-right-open": "panel-right-open";
|
|
6840
7001
|
"panel-top": "panel-top";
|
|
7002
|
+
"panel-top-bottom-dashed": "panel-top-bottom-dashed";
|
|
6841
7003
|
"panel-top-close": "panel-top-close";
|
|
6842
7004
|
"panel-top-dashed": "panel-top-dashed";
|
|
6843
7005
|
"panel-top-inactive": "panel-top-inactive";
|
|
@@ -6951,6 +7113,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6951
7113
|
"receipt-russian-ruble": "receipt-russian-ruble";
|
|
6952
7114
|
"receipt-swiss-franc": "receipt-swiss-franc";
|
|
6953
7115
|
"receipt-text": "receipt-text";
|
|
7116
|
+
"receipt-turkish-lira": "receipt-turkish-lira";
|
|
6954
7117
|
"rectangle-circle": "rectangle-circle";
|
|
6955
7118
|
"rectangle-ellipsis": "rectangle-ellipsis";
|
|
6956
7119
|
"rectangle-goggles": "rectangle-goggles";
|
|
@@ -6965,6 +7128,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6965
7128
|
"refresh-cw": "refresh-cw";
|
|
6966
7129
|
"refresh-cw-off": "refresh-cw-off";
|
|
6967
7130
|
refrigerator: "refrigerator";
|
|
7131
|
+
regex: "regex";
|
|
6968
7132
|
"remove-formatting": "remove-formatting";
|
|
6969
7133
|
"repeat-1": "repeat-1";
|
|
6970
7134
|
"repeat-2": "repeat-2";
|
|
@@ -6976,6 +7140,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6976
7140
|
rocket: "rocket";
|
|
6977
7141
|
"rocking-chair": "rocking-chair";
|
|
6978
7142
|
"roller-coaster": "roller-coaster";
|
|
7143
|
+
rose: "rose";
|
|
6979
7144
|
"rotate-3-d": "rotate-3-d";
|
|
6980
7145
|
"rotate-3d": "rotate-3d";
|
|
6981
7146
|
"rotate-ccw": "rotate-ccw";
|
|
@@ -7034,6 +7199,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7034
7199
|
"send-to-back": "send-to-back";
|
|
7035
7200
|
"separator-horizontal": "separator-horizontal";
|
|
7036
7201
|
"separator-vertical": "separator-vertical";
|
|
7202
|
+
server: "server";
|
|
7037
7203
|
"server-cog": "server-cog";
|
|
7038
7204
|
"server-crash": "server-crash";
|
|
7039
7205
|
"server-off": "server-off";
|
|
@@ -7119,6 +7285,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7119
7285
|
"split-square-horizontal": "split-square-horizontal";
|
|
7120
7286
|
"split-square-vertical": "split-square-vertical";
|
|
7121
7287
|
spool: "spool";
|
|
7288
|
+
spotlight: "spotlight";
|
|
7122
7289
|
"spray-can": "spray-can";
|
|
7123
7290
|
sprout: "sprout";
|
|
7124
7291
|
"square-activity": "square-activity";
|
|
@@ -7163,6 +7330,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7163
7330
|
"square-mouse-pointer": "square-mouse-pointer";
|
|
7164
7331
|
"square-parking": "square-parking";
|
|
7165
7332
|
"square-parking-off": "square-parking-off";
|
|
7333
|
+
"square-pause": "square-pause";
|
|
7166
7334
|
"square-pen": "square-pen";
|
|
7167
7335
|
"square-percent": "square-percent";
|
|
7168
7336
|
"square-pi": "square-pi";
|
|
@@ -7179,6 +7347,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7179
7347
|
"square-split-vertical": "square-split-vertical";
|
|
7180
7348
|
"square-square": "square-square";
|
|
7181
7349
|
"square-stack": "square-stack";
|
|
7350
|
+
"square-star": "square-star";
|
|
7351
|
+
"square-stop": "square-stop";
|
|
7182
7352
|
"square-terminal": "square-terminal";
|
|
7183
7353
|
"square-user": "square-user";
|
|
7184
7354
|
"square-user-round": "square-user-round";
|
|
@@ -7232,6 +7402,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7232
7402
|
tablet: "tablet";
|
|
7233
7403
|
"tablet-smartphone": "tablet-smartphone";
|
|
7234
7404
|
tablets: "tablets";
|
|
7405
|
+
tag: "tag";
|
|
7406
|
+
tags: "tags";
|
|
7235
7407
|
"tally-1": "tally-1";
|
|
7236
7408
|
"tally-2": "tally-2";
|
|
7237
7409
|
"tally-3": "tally-3";
|
|
@@ -7246,12 +7418,18 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7246
7418
|
"test-tube-2": "test-tube-2";
|
|
7247
7419
|
"test-tube-diagonal": "test-tube-diagonal";
|
|
7248
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";
|
|
7249
7425
|
"text-cursor": "text-cursor";
|
|
7250
7426
|
"text-cursor-input": "text-cursor-input";
|
|
7427
|
+
"text-initial": "text-initial";
|
|
7251
7428
|
"text-quote": "text-quote";
|
|
7252
7429
|
"text-search": "text-search";
|
|
7253
7430
|
"text-select": "text-select";
|
|
7254
7431
|
"text-selection": "text-selection";
|
|
7432
|
+
"text-wrap": "text-wrap";
|
|
7255
7433
|
theater: "theater";
|
|
7256
7434
|
thermometer: "thermometer";
|
|
7257
7435
|
"thermometer-snowflake": "thermometer-snowflake";
|
|
@@ -7304,6 +7482,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7304
7482
|
trophy: "trophy";
|
|
7305
7483
|
truck: "truck";
|
|
7306
7484
|
"truck-electric": "truck-electric";
|
|
7485
|
+
"turkish-lira": "turkish-lira";
|
|
7486
|
+
turntable: "turntable";
|
|
7307
7487
|
turtle: "turtle";
|
|
7308
7488
|
tv: "tv";
|
|
7309
7489
|
"tv-2": "tv-2";
|
|
@@ -7355,6 +7535,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7355
7535
|
"user-search": "user-search";
|
|
7356
7536
|
"user-square": "user-square";
|
|
7357
7537
|
"user-square-2": "user-square-2";
|
|
7538
|
+
"user-star": "user-star";
|
|
7358
7539
|
"user-x": "user-x";
|
|
7359
7540
|
"user-x-2": "user-x-2";
|
|
7360
7541
|
users: "users";
|
|
@@ -7410,6 +7591,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7410
7591
|
"wifi-low": "wifi-low";
|
|
7411
7592
|
"wifi-off": "wifi-off";
|
|
7412
7593
|
"wifi-pen": "wifi-pen";
|
|
7594
|
+
"wifi-sync": "wifi-sync";
|
|
7413
7595
|
"wifi-zero": "wifi-zero";
|
|
7414
7596
|
wind: "wind";
|
|
7415
7597
|
"wind-arrow-down": "wind-arrow-down";
|
|
@@ -7438,9 +7620,9 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7438
7620
|
}, z.core.$strip>]>>;
|
|
7439
7621
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7440
7622
|
hide: "hide";
|
|
7441
|
-
always: "always";
|
|
7442
7623
|
auth: "auth";
|
|
7443
7624
|
anon: "anon";
|
|
7625
|
+
always: "always";
|
|
7444
7626
|
}>, z.ZodCustom<(params: {
|
|
7445
7627
|
context: ZudokuContext;
|
|
7446
7628
|
auth: UseAuthReturn;
|