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,10 +1,12 @@
|
|
|
1
|
-
import { z } from "zod
|
|
1
|
+
import { z } from "zod";
|
|
2
2
|
import { IconNames } from "./icon-types.js";
|
|
3
3
|
const IconSchema = z.enum(IconNames);
|
|
4
4
|
const BadgeSchema = z.object({
|
|
5
5
|
label: z.string(),
|
|
6
|
-
//
|
|
6
|
+
// biome-ignore format: for readability
|
|
7
7
|
color: z.enum(["green", "blue", "yellow", "red", "purple", "indigo", "gray", "outline"]),
|
|
8
|
+
invert: z.boolean().optional(),
|
|
9
|
+
className: z.string().optional(),
|
|
8
10
|
});
|
|
9
11
|
const InputNavigationCategoryLinkDocSchema = z.union([
|
|
10
12
|
z.string(),
|
|
@@ -38,6 +40,7 @@ const InputNavigationLinkSchema = z.object({
|
|
|
38
40
|
type: z.literal("link"),
|
|
39
41
|
to: z.string(),
|
|
40
42
|
label: z.string(),
|
|
43
|
+
target: z.enum(["_self", "_blank"]).optional(),
|
|
41
44
|
icon: IconSchema.optional(),
|
|
42
45
|
badge: BadgeSchema.optional(),
|
|
43
46
|
display: DisplaySchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputNavigationSchema.js","sourceRoot":"","sources":["../../../src/config/validators/InputNavigationSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"InputNavigationSchema.js","sourceRoot":"","sources":["../../../src/config/validators/InputNavigationSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,MAAM,UAAU,GAAG,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;AAErC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,uCAAuC;IACvC,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,CAAC,CAAC;IACxF,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC;AAEH,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CAAC;IACnD,CAAC,CAAC,MAAM,EAAE;IACV,CAAC,CAAC,MAAM,CAAC;QACP,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;QACtB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAC7B,CAAC;CACH,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC;KAC3B,KAAK,CAAC;IACL,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAC;IAC1C,CAAC,CAAC,MAAM,CAEN,CAAC,GAAG,EAAE,EAAE,CAAC,OAAO,GAAG,KAAK,UAAU,CAAC;CACtC,CAAC;KACD,OAAO,CAAC,QAAQ,CAAC;KACjB,QAAQ,EAAE,CAAC;AAEd,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC;IACvC,CAAC,CAAC,MAAM,EAAE;IACV,CAAC,CAAC,MAAM,CAAC;QACP,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;QACtB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,gEAAgE;QAChE,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC3B,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;QAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC5B,KAAK,EAAE,WAAW,CAAC,QAAQ,EAAE;QAC7B,OAAO,EAAE,aAAa;KACvB,CAAC;CACH,CAAC,CAAC;AAEH,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC;IACvB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC9C,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,WAAW,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,aAAa;CACvB,CAAC,CAAC;AAEH,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC;IAC9B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,OAAO,EAAE,CAAC,CAAC,GAAG,EAAE;IAChB,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,WAAW,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,aAAa;IACtB,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAC;AAEH,qCAAqC;AACrC,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC;IAC3B,IAAI,EAAE,UAAU,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACnC,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACjC,IAAI,EAAE,oCAAoC,CAAC,QAAQ,EAAE;IACrD,OAAO,EAAE,aAAa;CACvB,CAAC,CAAC;AAUH,MAAM,6BAA6B,GAI/B,iCAAiC,CAAC,MAAM,CAAC;IAC3C,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,yBAAyB,CAAC,KAAK,EAAE,CAAC;CACvD,CAAC,CAAC;AAEH,MAAM,yBAAyB,GAAmC,CAAC,CAAC,KAAK,CAAC;IACxE,wBAAwB;IACxB,yBAAyB;IACzB,+BAA+B;IAC/B,6BAA6B;CAC9B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,yBAAyB,CAAC,KAAK,EAAE,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
// biome-ignore-all lint/suspicious/noExplicitAny: Allow any type
|
|
2
|
+
// biome-ignore-all lint/style/noNonNullAssertion: Allow it
|
|
2
3
|
import { assertType, describe, expectTypeOf, it } from "vitest";
|
|
3
4
|
describe("InputNavigationSchema types", () => {
|
|
4
5
|
it("infers correct types for navigation items", () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputNavigationSchema.test-d.js","sourceRoot":"","sources":["../../../src/config/validators/InputNavigationSchema.test-d.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"InputNavigationSchema.test-d.js","sourceRoot":"","sources":["../../../src/config/validators/InputNavigationSchema.test-d.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { LucideIcon } from "lucide-react";
|
|
2
2
|
import type { ConfigWithMeta } from "../loader.js";
|
|
3
3
|
import type { InputNavigationCategory, InputNavigationCategoryLinkDoc, InputNavigationCustomPage, InputNavigationDoc, InputNavigationLink } from "./InputNavigationSchema.js";
|
|
4
4
|
type ReplaceFields<Base, Overrides> = Omit<Base, keyof Overrides> & Overrides;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { glob } from "glob";
|
|
2
|
-
import matter from "gray-matter";
|
|
3
1
|
import fs from "node:fs/promises";
|
|
4
2
|
import path from "node:path";
|
|
3
|
+
import { glob } from "glob";
|
|
4
|
+
import matter from "gray-matter";
|
|
5
5
|
import { DocsConfigSchema } from "./validate.js";
|
|
6
6
|
const extractTitleFromContent = (content) => content.match(/^\s*#\s(.*)$/m)?.at(1);
|
|
7
7
|
const isNavigationItem = (item) => item !== undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavigationSchema.js","sourceRoot":"","sources":["../../../src/config/validators/NavigationSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"NavigationSchema.js","sourceRoot":"","sources":["../../../src/config/validators/NavigationSchema.ts"],"names":[],"mappings":"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"}
|
|
@@ -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
|
export type CallbackContext = {
|
|
@@ -9,5 +9,5 @@ type ProtectedRouteCallback = (c: CallbackContext) => boolean;
|
|
|
9
9
|
export type ProtectedRoutesInput = z.input<typeof ProtectedRoutesInputSchema>;
|
|
10
10
|
export type ProtectedRoutes = z.output<typeof ProtectedRoutesInputSchema>;
|
|
11
11
|
export declare const ProtectedRoutesInputSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodRecord<z.ZodString, z.ZodCustom<ProtectedRouteCallback, ProtectedRouteCallback>>]>>;
|
|
12
|
-
export declare const ProtectedRoutesSchema: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodRecord<z.ZodString, z.ZodCustom<ProtectedRouteCallback, ProtectedRouteCallback>>]>>, z.ZodTransform<Record<string, (c: CallbackContext) => boolean> | undefined,
|
|
12
|
+
export declare const ProtectedRoutesSchema: z.ZodPipe<z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodRecord<z.ZodString, z.ZodCustom<ProtectedRouteCallback, ProtectedRouteCallback>>]>>, z.ZodTransform<Record<string, (c: CallbackContext) => boolean> | undefined, Record<string, ProtectedRouteCallback> | string[] | undefined>>;
|
|
13
13
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ProtectedRoutesSchema.js","sourceRoot":"","sources":["../../../src/config/validators/ProtectedRoutesSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"ProtectedRoutesSchema.js","sourceRoot":"","sources":["../../../src/config/validators/ProtectedRoutesSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAO3E,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC;KACxC,KAAK,CAAC;IACL,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE;IAClB,CAAC,CAAC,MAAM,CACN,CAAC,CAAC,MAAM,EAAE,EACV,CAAC,CAAC,MAAM,CAAyB,CAAC,GAAG,EAAE,EAAE,CAAC,OAAO,GAAG,KAAK,UAAU,CAAC,CACrE;CACF,CAAC;KACD,QAAQ,EAAE,CAAC;AAEd,MAAM,CAAC,MAAM,qBAAqB,GAAG,0BAA0B,CAAC,SAAS,CACvE,wBAAwB,CACzB,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Auth0AuthenticationConfig } from "../config.js";
|
|
2
|
-
export declare function auth0Validator(
|
|
1
|
+
import type { Auth0AuthenticationConfig } from "../config.js";
|
|
2
|
+
export declare function auth0Validator(_config: Auth0AuthenticationConfig): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export function auth0Validator(
|
|
1
|
+
export function auth0Validator(_config) { }
|
|
2
2
|
//# sourceMappingURL=auth.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../src/config/validators/auth.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,cAAc,CAAC,
|
|
1
|
+
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../src/config/validators/auth.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,cAAc,CAAC,OAAkC,IAAS,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const IconNames: readonly ["a-arrow-down", "a-arrow-up", "a-large-small", "accessibility", "activity", "activity-square", "air-vent", "airplay", "alarm-check", "alarm-clock", "alarm-clock-check", "alarm-clock-minus", "alarm-clock-off", "alarm-clock-plus", "alarm-minus", "alarm-plus", "alarm-smoke", "album", "alert-circle", "alert-octagon", "alert-triangle", "align-center", "align-center-horizontal", "align-center-vertical", "align-end-horizontal", "align-end-vertical", "align-horizontal-distribute-center", "align-horizontal-distribute-end", "align-horizontal-distribute-start", "align-horizontal-justify-center", "align-horizontal-justify-end", "align-horizontal-justify-start", "align-horizontal-space-around", "align-horizontal-space-between", "align-justify", "align-left", "align-right", "align-start-horizontal", "align-start-vertical", "align-vertical-distribute-center", "align-vertical-distribute-end", "align-vertical-distribute-start", "align-vertical-justify-center", "align-vertical-justify-end", "align-vertical-justify-start", "align-vertical-space-around", "align-vertical-space-between", "ambulance", "ampersand", "ampersands", "amphora", "anchor", "angry", "annoyed", "antenna", "anvil", "aperture", "app-window", "app-window-mac", "apple", "archive", "archive-restore", "archive-x", "area-chart", "armchair", "arrow-big-down", "arrow-big-down-dash", "arrow-big-left", "arrow-big-left-dash", "arrow-big-right", "arrow-big-right-dash", "arrow-big-up", "arrow-big-up-dash", "arrow-down", "arrow-down-0-1", "arrow-down-01", "arrow-down-1-0", "arrow-down-10", "arrow-down-a-z", "arrow-down-az", "arrow-down-circle", "arrow-down-from-line", "arrow-down-left", "arrow-down-left-from-circle", "arrow-down-left-from-square", "arrow-down-left-square", "arrow-down-narrow-wide", "arrow-down-right", "arrow-down-right-from-circle", "arrow-down-right-from-square", "arrow-down-right-square", "arrow-down-square", "arrow-down-to-dot", "arrow-down-to-line", "arrow-down-up", "arrow-down-wide-narrow", "arrow-down-z-a", "arrow-down-za", "arrow-left", "arrow-left-circle", "arrow-left-from-line", "arrow-left-right", "arrow-left-square", "arrow-left-to-line", "arrow-right", "arrow-right-circle", "arrow-right-from-line", "arrow-right-left", "arrow-right-square", "arrow-right-to-line", "arrow-up", "arrow-up-0-1", "arrow-up-01", "arrow-up-1-0", "arrow-up-10", "arrow-up-a-z", "arrow-up-az", "arrow-up-circle", "arrow-up-down", "arrow-up-from-dot", "arrow-up-from-line", "arrow-up-left", "arrow-up-left-from-circle", "arrow-up-left-from-square", "arrow-up-left-square", "arrow-up-narrow-wide", "arrow-up-right", "arrow-up-right-from-circle", "arrow-up-right-from-square", "arrow-up-right-square", "arrow-up-square", "arrow-up-to-line", "arrow-up-wide-narrow", "arrow-up-z-a", "arrow-up-za", "arrows-up-from-line", "asterisk", "asterisk-square", "at-sign", "atom", "audio-lines", "audio-waveform", "award", "axe", "axis-3-d", "axis-3d", "baby", "backpack", "badge", "badge-alert", "badge-cent", "badge-check", "badge-dollar-sign", "badge-euro", "badge-help", "badge-indian-rupee", "badge-info", "badge-japanese-yen", "badge-minus", "badge-percent", "badge-plus", "badge-pound-sterling", "badge-question-mark", "badge-russian-ruble", "badge-swiss-franc", "badge-x", "baggage-claim", "ban", "banana", "bandage", "banknote", "banknote-arrow-down", "banknote-arrow-up", "banknote-x", "bar-chart", "bar-chart-2", "bar-chart-3", "bar-chart-4", "bar-chart-big", "bar-chart-horizontal", "bar-chart-horizontal-big", "barcode", "barrel", "baseline", "bath", "battery", "battery-charging", "battery-full", "battery-low", "battery-medium", "battery-plus", "battery-warning", "beaker", "bean", "bean-off", "bed", "bed-double", "bed-single", "beef", "beer", "beer-off", "bell", "bell-dot", "bell-electric", "bell-minus", "bell-off", "bell-plus", "bell-ring", "between-horizonal-end", "between-horizonal-start", "between-horizontal-end", "between-horizontal-start", "between-vertical-end", "between-vertical-start", "biceps-flexed", "bike", "binary", "binoculars", "biohazard", "bird", "bitcoin", "blend", "blinds", "blocks", "bluetooth", "bluetooth-connected", "bluetooth-off", "bluetooth-searching", "bold", "bolt", "bomb", "bone", "book", "book-a", "book-alert", "book-audio", "book-check", "book-copy", "book-dashed", "book-down", "book-headphones", "book-heart", "book-image", "book-key", "book-lock", "book-marked", "book-minus", "book-open", "book-open-check", "book-open-text", "book-plus", "book-template", "book-text", "book-type", "book-up", "book-up-2", "book-user", "book-x", "bookmark", "bookmark-check", "bookmark-minus", "bookmark-plus", "bookmark-x", "boom-box", "bot", "bot-message-square", "bot-off", "bottle-wine", "bow-arrow", "box", "box-select", "boxes", "braces", "brackets", "brain", "brain-circuit", "brain-cog", "brick-wall", "brick-wall-fire", "briefcase", "briefcase-business", "briefcase-conveyor-belt", "briefcase-medical", "bring-to-front", "brush", "brush-cleaning", "bubbles", "bug", "bug-off", "bug-play", "building", "building-2", "bus", "bus-front", "cable", "cable-car", "cake", "cake-slice", "calculator", "calendar", "calendar-1", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-check-2", "calendar-clock", "calendar-cog", "calendar-days", "calendar-fold", "calendar-heart", "calendar-minus", "calendar-minus-2", "calendar-off", "calendar-plus", "calendar-plus-2", "calendar-range", "calendar-search", "calendar-sync", "calendar-x", "calendar-x-2", "camera", "camera-off", "candlestick-chart", "candy", "candy-cane", "candy-off", "cannabis", "captions", "captions-off", "car", "car-front", "car-taxi-front", "caravan", "card-sim", "carrot", "case-lower", "case-sensitive", "case-upper", "cassette-tape", "cast", "castle", "cat", "cctv", "chart-area", "chart-bar", "chart-bar-big", "chart-bar-decreasing", "chart-bar-increasing", "chart-bar-stacked", "chart-candlestick", "chart-column", "chart-column-big", "chart-column-decreasing", "chart-column-increasing", "chart-column-stacked", "chart-gantt", "chart-line", "chart-network", "chart-no-axes-column", "chart-no-axes-column-decreasing", "chart-no-axes-column-increasing", "chart-no-axes-combined", "chart-no-axes-gantt", "chart-pie", "chart-scatter", "chart-spline", "check", "check-check", "check-circle", "check-circle-2", "check-line", "check-square", "check-square-2", "chef-hat", "cherry", "chevron-down", "chevron-down-circle", "chevron-down-square", "chevron-first", "chevron-last", "chevron-left", "chevron-left-circle", "chevron-left-square", "chevron-right", "chevron-right-circle", "chevron-right-square", "chevron-up", "chevron-up-circle", "chevron-up-square", "chevrons-down", "chevrons-down-up", "chevrons-left", "chevrons-left-right", "chevrons-left-right-ellipsis", "chevrons-right", "chevrons-right-left", "chevrons-up", "chevrons-up-down", "chrome", "church", "cigarette", "cigarette-off", "circle", "circle-alert", "circle-arrow-down", "circle-arrow-left", "circle-arrow-out-down-left", "circle-arrow-out-down-right", "circle-arrow-out-up-left", "circle-arrow-out-up-right", "circle-arrow-right", "circle-arrow-up", "circle-check", "circle-check-big", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-dashed", "circle-divide", "circle-dollar-sign", "circle-dot", "circle-dot-dashed", "circle-ellipsis", "circle-equal", "circle-fading-arrow-up", "circle-fading-plus", "circle-gauge", "circle-help", "circle-minus", "circle-off", "circle-parking", "circle-parking-off", "circle-pause", "circle-percent", "circle-play", "circle-plus", "circle-pound-sterling", "circle-power", "circle-question-mark", "circle-slash", "circle-slash-2", "circle-slashed", "circle-small", "circle-stop", "circle-user", "circle-user-round", "circle-x", "circuit-board", "citrus", "clapperboard", "clipboard", "clipboard-check", "clipboard-copy", "clipboard-edit", "clipboard-list", "clipboard-minus", "clipboard-paste", "clipboard-pen", "clipboard-pen-line", "clipboard-plus", "clipboard-signature", "clipboard-type", "clipboard-x", "clock", "clock-1", "clock-10", "clock-11", "clock-12", "clock-2", "clock-3", "clock-4", "clock-5", "clock-6", "clock-7", "clock-8", "clock-9", "clock-alert", "clock-arrow-down", "clock-arrow-up", "clock-fading", "clock-plus", "cloud", "cloud-alert", "cloud-check", "cloud-cog", "cloud-download", "cloud-drizzle", "cloud-fog", "cloud-hail", "cloud-lightning", "cloud-moon", "cloud-moon-rain", "cloud-off", "cloud-rain", "cloud-rain-wind", "cloud-snow", "cloud-sun", "cloud-sun-rain", "cloud-upload", "cloudy", "clover", "club", "code", "code-2", "code-square", "code-xml", "codepen", "codesandbox", "coffee", "cog", "coins", "columns", "columns-2", "columns-3", "columns-3-cog", "columns-4", "columns-settings", "combine", "command", "compass", "component", "computer", "concierge-bell", "cone", "construction", "contact", "contact-2", "contact-round", "container", "contrast", "cookie", "cooking-pot", "copy", "copy-check", "copy-minus", "copy-plus", "copy-slash", "copy-x", "copyleft", "copyright", "corner-down-left", "corner-down-right", "corner-left-down", "corner-left-up", "corner-right-down", "corner-right-up", "corner-up-left", "corner-up-right", "cpu", "creative-commons", "credit-card", "croissant", "crop", "cross", "crosshair", "crown", "cuboid", "cup-soda", "curly-braces", "currency", "cylinder", "dam", "database", "database-backup", "database-zap", "decimals-arrow-left", "decimals-arrow-right", "delete", "dessert", "diameter", "diamond", "diamond-minus", "diamond-percent", "diamond-plus", "dice-1", "dice-2", "dice-3", "dice-4", "dice-5", "dice-6", "dices", "diff", "disc", "disc-2", "disc-3", "disc-album", "divide", "divide-circle", "divide-square", "dna", "dna-off", "dock", "dog", "dollar-sign", "donut", "door-closed", "door-closed-locked", "door-open", "dot", "dot-square", "download", "download-cloud", "drafting-compass", "drama", "dribbble", "drill", "drone", "droplet", "droplet-off", "droplets", "drum", "drumstick", "dumbbell", "ear", "ear-off", "earth", "earth-lock", "eclipse", "edit", "edit-2", "edit-3", "egg", "egg-fried", "egg-off", "ellipsis", "ellipsis-vertical", "equal", "equal-approximately", "equal-not", "equal-square", "eraser", "ethernet-port", "euro", "expand", "external-link", "eye", "eye-closed", "eye-off", "facebook", "factory", "fan", "fast-forward", "feather", "fence", "ferris-wheel", "figma", "file", "file-archive", "file-audio", "file-audio-2", "file-axis-3-d", "file-axis-3d", "file-badge", "file-badge-2", "file-bar-chart", "file-bar-chart-2", "file-box", "file-chart-column", "file-chart-column-increasing", "file-chart-line", "file-chart-pie", "file-check", "file-check-2", "file-clock", "file-code", "file-code-2", "file-cog", "file-cog-2", "file-diff", "file-digit", "file-down", "file-edit", "file-heart", "file-image", "file-input", "file-json", "file-json-2", "file-key", "file-key-2", "file-line-chart", "file-lock", "file-lock-2", "file-minus", "file-minus-2", "file-music", "file-output", "file-pen", "file-pen-line", "file-pie-chart", "file-plus", "file-plus-2", "file-question", "file-question-mark", "file-scan", "file-search", "file-search-2", "file-signature", "file-sliders", "file-spreadsheet", "file-stack", "file-symlink", "file-terminal", "file-text", "file-type", "file-type-2", "file-up", "file-user", "file-video", "file-video-2", "file-volume", "file-volume-2", "file-warning", "file-x", "file-x-2", "files", "film", "filter", "filter-x", "fingerprint", "fire-extinguisher", "fish", "fish-off", "fish-symbol", "flag", "flag-off", "flag-triangle-left", "flag-triangle-right", "flame", "flame-kindling", "flashlight", "flashlight-off", "flask-conical", "flask-conical-off", "flask-round", "flip-horizontal", "flip-horizontal-2", "flip-vertical", "flip-vertical-2", "flower", "flower-2", "focus", "fold-horizontal", "fold-vertical", "folder", "folder-archive", "folder-check", "folder-clock", "folder-closed", "folder-code", "folder-cog", "folder-cog-2", "folder-dot", "folder-down", "folder-edit", "folder-git", "folder-git-2", "folder-heart", "folder-input", "folder-kanban", "folder-key", "folder-lock", "folder-minus", "folder-open", "folder-open-dot", "folder-output", "folder-pen", "folder-plus", "folder-root", "folder-search", "folder-search-2", "folder-symlink", "folder-sync", "folder-tree", "folder-up", "folder-x", "folders", "footprints", "fork-knife", "fork-knife-crossed", "forklift", "form-input", "forward", "frame", "framer", "frown", "fuel", "fullscreen", "function-square", "funnel", "funnel-plus", "funnel-x", "gallery-horizontal", "gallery-horizontal-end", "gallery-thumbnails", "gallery-vertical", "gallery-vertical-end", "gamepad", "gamepad-2", "gantt-chart", "gantt-chart-square", "gauge", "gauge-circle", "gavel", "gem", "georgian-lari", "ghost", "gift", "git-branch", "git-branch-plus", "git-commit", "git-commit-horizontal", "git-commit-vertical", "git-compare", "git-compare-arrows", "git-fork", "git-graph", "git-merge", "git-pull-request", "git-pull-request-arrow", "git-pull-request-closed", "git-pull-request-create", "git-pull-request-create-arrow", "git-pull-request-draft", "github", "gitlab", "glass-water", "glasses", "globe", "globe-2", "globe-lock", "goal", "gpu", "grab", "graduation-cap", "grape", "grid", "grid-2-x-2", "grid-2-x-2-check", "grid-2-x-2-plus", "grid-2-x-2-x", "grid-2x2", "grid-2x2-check", "grid-2x2-plus", "grid-2x2-x", "grid-3-x-3", "grid-3x2", "grid-3x3", "grip", "grip-horizontal", "grip-vertical", "group", "guitar", "ham", "hamburger", "hammer", "hand", "hand-coins", "hand-heart", "hand-helping", "hand-metal", "hand-platter", "handshake", "hard-drive", "hard-drive-download", "hard-drive-upload", "hard-hat", "hash", "haze", "hdmi-port", "heading", "heading-1", "heading-2", "heading-3", "heading-4", "heading-5", "heading-6", "headphone-off", "headphones", "headset", "heart", "heart-crack", "heart-handshake", "heart-minus", "heart-off", "heart-plus", "heart-pulse", "heater", "help-circle", "helping-hand", "hexagon", "highlighter", "history", "home", "hop", "hop-off", "hospital", "hotel", "hourglass", "house", "house-plug", "house-plus", "house-wifi", "ice-cream", "ice-cream-2", "ice-cream-bowl", "ice-cream-cone", "id-card", "id-card-lanyard", "image", "image-down", "image-minus", "image-off", "image-play", "image-plus", "image-up", "image-upscale", "images", "import", "inbox", "indent", "indent-decrease", "indent-increase", "indian-rupee", "infinity", "info", "inspect", "inspection-panel", "instagram", "italic", "iteration-ccw", "iteration-cw", "japanese-yen", "joystick", "kanban", "kanban-square", "kanban-square-dashed", "key", "key-round", "key-square", "keyboard", "keyboard-music", "keyboard-off", "lamp", "lamp-ceiling", "lamp-desk", "lamp-floor", "lamp-wall-down", "lamp-wall-up", "land-plot", "landmark", "languages", "laptop", "laptop-2", "laptop-minimal", "laptop-minimal-check", "lasso", "lasso-select", "laugh", "layers", "layers-2", "layers-3", "layout", "layout-dashboard", "layout-grid", "layout-list", "layout-panel-left", "layout-panel-top", "layout-template", "leaf", "leafy-green", "lectern", "letter-text", "library", "library-big", "library-square", "life-buoy", "ligature", "lightbulb", "lightbulb-off", "line-chart", "line-squiggle", "link", "link-2", "link-2-off", "linkedin", "list", "list-check", "list-checks", "list-collapse", "list-end", "list-filter", "list-filter-plus", "list-minus", "list-music", "list-ordered", "list-plus", "list-restart", "list-start", "list-todo", "list-tree", "list-video", "list-x", "loader", "loader-2", "loader-circle", "loader-pinwheel", "locate", "locate-fixed", "locate-off", "location-edit", "lock", "lock-keyhole", "lock-keyhole-open", "lock-open", "log-in", "log-out", "logs", "lollipop", "luggage", "m-square", "magnet", "mail", "mail-check", "mail-minus", "mail-open", "mail-plus", "mail-question", "mail-question-mark", "mail-search", "mail-warning", "mail-x", "mailbox", "mails", "map", "map-pin", "map-pin-check", "map-pin-check-inside", "map-pin-house", "map-pin-minus", "map-pin-minus-inside", "map-pin-off", "map-pin-plus", "map-pin-plus-inside", "map-pin-x", "map-pin-x-inside", "map-pinned", "map-plus", "mars", "mars-stroke", "martini", "maximize", "maximize-2", "medal", "megaphone", "megaphone-off", "meh", "memory-stick", "menu", "menu-square", "merge", "message-circle", "message-circle-code", "message-circle-dashed", "message-circle-heart", "message-circle-more", "message-circle-off", "message-circle-plus", "message-circle-question", "message-circle-question-mark", "message-circle-reply", "message-circle-warning", "message-circle-x", "message-square", "message-square-code", "message-square-dashed", "message-square-diff", "message-square-dot", "message-square-heart", "message-square-lock", "message-square-more", "message-square-off", "message-square-plus", "message-square-quote", "message-square-reply", "message-square-share", "message-square-text", "message-square-warning", "message-square-x", "messages-square", "mic", "mic-2", "mic-off", "mic-vocal", "microchip", "microscope", "microwave", "milestone", "milk", "milk-off", "minimize", "minimize-2", "minus", "minus-circle", "minus-square", "monitor", "monitor-check", "monitor-cog", "monitor-dot", "monitor-down", "monitor-off", "monitor-pause", "monitor-play", "monitor-smartphone", "monitor-speaker", "monitor-stop", "monitor-up", "monitor-x", "moon", "moon-star", "more-horizontal", "more-vertical", "mountain", "mountain-snow", "mouse", "mouse-off", "mouse-pointer", "mouse-pointer-2", "mouse-pointer-ban", "mouse-pointer-click", "mouse-pointer-square-dashed", "move", "move-3-d", "move-3d", "move-diagonal", "move-diagonal-2", "move-down", "move-down-left", "move-down-right", "move-horizontal", "move-left", "move-right", "move-up", "move-up-left", "move-up-right", "move-vertical", "music", "music-2", "music-3", "music-4", "navigation", "navigation-2", "navigation-2-off", "navigation-off", "network", "newspaper", "nfc", "non-binary", "notebook", "notebook-pen", "notebook-tabs", "notebook-text", "notepad-text", "notepad-text-dashed", "nut", "nut-off", "octagon", "octagon-alert", "octagon-minus", "octagon-pause", "octagon-x", "omega", "option", "orbit", "origami", "outdent", "package", "package-2", "package-check", "package-minus", "package-open", "package-plus", "package-search", "package-x", "paint-bucket", "paint-roller", "paintbrush", "paintbrush-2", "paintbrush-vertical", "palette", "palmtree", "panda", "panel-bottom", "panel-bottom-close", "panel-bottom-dashed", "panel-bottom-inactive", "panel-bottom-open", "panel-left", "panel-left-close", "panel-left-dashed", "panel-left-inactive", "panel-left-open", "panel-right", "panel-right-close", "panel-right-dashed", "panel-right-inactive", "panel-right-open", "panel-top", "panel-top-close", "panel-top-dashed", "panel-top-inactive", "panel-top-open", "panels-left-bottom", "panels-left-right", "panels-right-bottom", "panels-top-bottom", "panels-top-left", "paperclip", "parentheses", "parking-circle", "parking-circle-off", "parking-meter", "parking-square", "parking-square-off", "party-popper", "pause", "pause-circle", "pause-octagon", "paw-print", "pc-case", "pen", "pen-box", "pen-line", "pen-off", "pen-square", "pen-tool", "pencil", "pencil-line", "pencil-off", "pencil-ruler", "pentagon", "percent", "percent-circle", "percent-diamond", "percent-square", "person-standing", "philippine-peso", "phone", "phone-call", "phone-forwarded", "phone-incoming", "phone-missed", "phone-off", "phone-outgoing", "pi", "pi-square", "piano", "pickaxe", "picture-in-picture", "picture-in-picture-2", "pie-chart", "piggy-bank", "pilcrow", "pilcrow-left", "pilcrow-right", "pilcrow-square", "pill", "pill-bottle", "pin", "pin-off", "pipette", "pizza", "plane", "plane-landing", "plane-takeoff", "play", "play-circle", "play-square", "plug", "plug-2", "plug-zap", "plug-zap-2", "plus", "plus-circle", "plus-square", "pocket", "pocket-knife", "podcast", "pointer", "pointer-off", "popcorn", "popsicle", "pound-sterling", "power", "power-circle", "power-off", "power-square", "presentation", "printer", "printer-check", "projector", "proportions", "puzzle", "pyramid", "qr-code", "quote", "rabbit", "radar", "radiation", "radical", "radio", "radio-receiver", "radio-tower", "radius", "rail-symbol", "rainbow", "rat", "ratio", "receipt", "receipt-cent", "receipt-euro", "receipt-indian-rupee", "receipt-japanese-yen", "receipt-pound-sterling", "receipt-russian-ruble", "receipt-swiss-franc", "receipt-text", "rectangle-circle", "rectangle-ellipsis", "rectangle-goggles", "rectangle-horizontal", "rectangle-vertical", "recycle", "redo", "redo-2", "redo-dot", "refresh-ccw", "refresh-ccw-dot", "refresh-cw", "refresh-cw-off", "refrigerator", "regex", "remove-formatting", "repeat", "repeat-1", "repeat-2", "replace", "replace-all", "reply", "reply-all", "rewind", "ribbon", "rocket", "rocking-chair", "roller-coaster", "rotate-3-d", "rotate-3d", "rotate-ccw", "rotate-ccw-key", "rotate-ccw-square", "rotate-cw", "rotate-cw-square", "route", "route-off", "router", "rows", "rows-2", "rows-3", "rows-4", "rss", "ruler", "ruler-dimension-line", "russian-ruble", "sailboat", "salad", "sandwich", "satellite", "satellite-dish", "saudi-riyal", "save", "save-all", "save-off", "scale", "scale-3-d", "scale-3d", "scaling", "scan", "scan-barcode", "scan-eye", "scan-face", "scan-heart", "scan-line", "scan-qr-code", "scan-search", "scan-text", "scatter-chart", "school", "school-2", "scissors", "scissors-line-dashed", "scissors-square", "scissors-square-dashed-bottom", "screen-share", "screen-share-off", "scroll", "scroll-text", "search", "search-check", "search-code", "search-slash", "search-x", "section", "send", "send-horizonal", "send-horizontal", "send-to-back", "separator-horizontal", "separator-vertical", "server", "server-cog", "server-crash", "server-off", "settings", "settings-2", "shapes", "share", "share-2", "sheet", "shell", "shield", "shield-alert", "shield-ban", "shield-check", "shield-close", "shield-ellipsis", "shield-half", "shield-minus", "shield-off", "shield-plus", "shield-question", "shield-question-mark", "shield-user", "shield-x", "ship", "ship-wheel", "shirt", "shopping-bag", "shopping-basket", "shopping-cart", "shovel", "shower-head", "shredder", "shrimp", "shrink", "shrub", "shuffle", "sidebar", "sidebar-close", "sidebar-open", "sigma", "sigma-square", "signal", "signal-high", "signal-low", "signal-medium", "signal-zero", "signature", "signpost", "signpost-big", "siren", "skip-back", "skip-forward", "skull", "slack", "slash", "slash-square", "slice", "sliders", "sliders-horizontal", "sliders-vertical", "smartphone", "smartphone-charging", "smartphone-nfc", "smile", "smile-plus", "snail", "snowflake", "soap-dispenser-droplet", "sofa", "sort-asc", "sort-desc", "soup", "space", "spade", "sparkle", "sparkles", "speaker", "speech", "spell-check", "spell-check-2", "spline", "spline-pointer", "split", "split-square-horizontal", "split-square-vertical", "spool", "spray-can", "sprout", "square", "square-activity", "square-arrow-down", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-left", "square-arrow-out-down-left", "square-arrow-out-down-right", "square-arrow-out-up-left", "square-arrow-out-up-right", "square-arrow-right", "square-arrow-up", "square-arrow-up-left", "square-arrow-up-right", "square-asterisk", "square-bottom-dashed-scissors", "square-chart-gantt", "square-check", "square-check-big", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-dashed", "square-dashed-bottom", "square-dashed-bottom-code", "square-dashed-kanban", "square-dashed-mouse-pointer", "square-dashed-top-solid", "square-divide", "square-dot", "square-equal", "square-function", "square-gantt-chart", "square-kanban", "square-library", "square-m", "square-menu", "square-minus", "square-mouse-pointer", "square-parking", "square-parking-off", "square-pen", "square-percent", "square-pi", "square-pilcrow", "square-play", "square-plus", "square-power", "square-radical", "square-round-corner", "square-scissors", "square-sigma", "square-slash", "square-split-horizontal", "square-split-vertical", "square-square", "square-stack", "square-terminal", "square-user", "square-user-round", "square-x", "squares-exclude", "squares-intersect", "squares-subtract", "squares-unite", "squircle", "squircle-dashed", "squirrel", "stamp", "star", "star-half", "star-off", "stars", "step-back", "step-forward", "stethoscope", "sticker", "sticky-note", "stop-circle", "store", "stretch-horizontal", "stretch-vertical", "strikethrough", "subscript", "subtitles", "sun", "sun-dim", "sun-medium", "sun-moon", "sun-snow", "sunrise", "sunset", "superscript", "swatch-book", "swiss-franc", "switch-camera", "sword", "swords", "syringe", "table", "table-2", "table-cells-merge", "table-cells-split", "table-columns-split", "table-config", "table-of-contents", "table-properties", "table-rows-split", "tablet", "tablet-smartphone", "tablets", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally-5", "tangent", "target", "telescope", "tent", "tent-tree", "terminal", "terminal-square", "test-tube", "test-tube-2", "test-tube-diagonal", "test-tubes", "text", "text-cursor", "text-cursor-input", "text-quote", "text-search", "text-select", "text-selection", "theater", "thermometer", "thermometer-snowflake", "thermometer-sun", "thumbs-down", "thumbs-up", "ticket", "ticket-check", "ticket-minus", "ticket-percent", "ticket-plus", "ticket-slash", "ticket-x", "tickets", "tickets-plane", "timer", "timer-off", "timer-reset", "toggle-left", "toggle-right", "toilet", "tool-case", "tornado", "torus", "touchpad", "touchpad-off", "tower-control", "toy-brick", "tractor", "traffic-cone", "train", "train-front", "train-front-tunnel", "train-track", "tram-front", "transgender", "trash", "trash-2", "tree-deciduous", "tree-palm", "tree-pine", "trees", "trello", "trending-down", "trending-up", "trending-up-down", "triangle", "triangle-alert", "triangle-dashed", "triangle-right", "trophy", "truck", "truck-electric", "turtle", "tv", "tv-2", "tv-minimal", "tv-minimal-play", "twitch", "twitter", "type", "type-outline", "umbrella", "umbrella-off", "underline", "undo", "undo-2", "undo-dot", "unfold-horizontal", "unfold-vertical", "ungroup", "university", "unlink", "unlink-2", "unlock", "unlock-keyhole", "unplug", "upload", "upload-cloud", "usb", "user", "user-2", "user-check", "user-check-2", "user-circle", "user-circle-2", "user-cog", "user-cog-2", "user-lock", "user-minus", "user-minus-2", "user-pen", "user-plus", "user-plus-2", "user-round", "user-round-check", "user-round-cog", "user-round-minus", "user-round-pen", "user-round-plus", "user-round-search", "user-round-x", "user-search", "user-square", "user-square-2", "user-x", "user-x-2", "users", "users-2", "users-round", "utensils", "utensils-crossed", "utility-pole", "variable", "vault", "vector-square", "vegan", "venetian-mask", "venus", "venus-and-mars", "verified", "vibrate", "vibrate-off", "video", "video-off", "videotape", "view", "voicemail", "volleyball", "volume", "volume-1", "volume-2", "volume-off", "volume-x", "vote", "wallet", "wallet-2", "wallet-cards", "wallet-minimal", "wallpaper", "wand", "wand-2", "wand-sparkles", "warehouse", "washing-machine", "watch", "waves", "waves-ladder", "waypoints", "webcam", "webhook", "webhook-off", "weight", "wheat", "wheat-off", "whole-word", "wifi", "wifi-cog", "wifi-high", "wifi-low", "wifi-off", "wifi-pen", "wifi-zero", "wind", "wind-arrow-down", "wine", "wine-off", "workflow", "worm", "wrap-text", "wrench", "x", "x-circle", "x-octagon", "x-square", "youtube", "zap", "zap-off", "zoom-in", "zoom-out"];
|
|
1
|
+
export declare const IconNames: readonly ["a-arrow-down", "a-arrow-up", "a-large-small", "accessibility", "activity", "activity-square", "air-vent", "airplay", "alarm-check", "alarm-clock", "alarm-clock-check", "alarm-clock-minus", "alarm-clock-off", "alarm-clock-plus", "alarm-minus", "alarm-plus", "alarm-smoke", "album", "alert-circle", "alert-octagon", "alert-triangle", "align-center", "align-center-horizontal", "align-center-vertical", "align-end-horizontal", "align-end-vertical", "align-horizontal-distribute-center", "align-horizontal-distribute-end", "align-horizontal-distribute-start", "align-horizontal-justify-center", "align-horizontal-justify-end", "align-horizontal-justify-start", "align-horizontal-space-around", "align-horizontal-space-between", "align-justify", "align-left", "align-right", "align-start-horizontal", "align-start-vertical", "align-vertical-distribute-center", "align-vertical-distribute-end", "align-vertical-distribute-start", "align-vertical-justify-center", "align-vertical-justify-end", "align-vertical-justify-start", "align-vertical-space-around", "align-vertical-space-between", "ambulance", "ampersand", "ampersands", "amphora", "anchor", "angry", "annoyed", "antenna", "anvil", "aperture", "app-window", "app-window-mac", "apple", "archive", "archive-restore", "archive-x", "area-chart", "armchair", "arrow-big-down", "arrow-big-down-dash", "arrow-big-left", "arrow-big-left-dash", "arrow-big-right", "arrow-big-right-dash", "arrow-big-up", "arrow-big-up-dash", "arrow-down", "arrow-down-0-1", "arrow-down-01", "arrow-down-1-0", "arrow-down-10", "arrow-down-a-z", "arrow-down-az", "arrow-down-circle", "arrow-down-from-line", "arrow-down-left", "arrow-down-left-from-circle", "arrow-down-left-from-square", "arrow-down-left-square", "arrow-down-narrow-wide", "arrow-down-right", "arrow-down-right-from-circle", "arrow-down-right-from-square", "arrow-down-right-square", "arrow-down-square", "arrow-down-to-dot", "arrow-down-to-line", "arrow-down-up", "arrow-down-wide-narrow", "arrow-down-z-a", "arrow-down-za", "arrow-left", "arrow-left-circle", "arrow-left-from-line", "arrow-left-right", "arrow-left-square", "arrow-left-to-line", "arrow-right", "arrow-right-circle", "arrow-right-from-line", "arrow-right-left", "arrow-right-square", "arrow-right-to-line", "arrow-up", "arrow-up-0-1", "arrow-up-01", "arrow-up-1-0", "arrow-up-10", "arrow-up-a-z", "arrow-up-az", "arrow-up-circle", "arrow-up-down", "arrow-up-from-dot", "arrow-up-from-line", "arrow-up-left", "arrow-up-left-from-circle", "arrow-up-left-from-square", "arrow-up-left-square", "arrow-up-narrow-wide", "arrow-up-right", "arrow-up-right-from-circle", "arrow-up-right-from-square", "arrow-up-right-square", "arrow-up-square", "arrow-up-to-line", "arrow-up-wide-narrow", "arrow-up-z-a", "arrow-up-za", "arrows-up-from-line", "asterisk", "asterisk-square", "at-sign", "atom", "audio-lines", "audio-waveform", "award", "axe", "axis-3-d", "axis-3d", "baby", "backpack", "badge", "badge-alert", "badge-cent", "badge-check", "badge-dollar-sign", "badge-euro", "badge-help", "badge-indian-rupee", "badge-info", "badge-japanese-yen", "badge-minus", "badge-percent", "badge-plus", "badge-pound-sterling", "badge-question-mark", "badge-russian-ruble", "badge-swiss-franc", "badge-turkish-lira", "badge-x", "baggage-claim", "ban", "banana", "bandage", "banknote", "banknote-arrow-down", "banknote-arrow-up", "banknote-x", "bar-chart", "bar-chart-2", "bar-chart-3", "bar-chart-4", "bar-chart-big", "bar-chart-horizontal", "bar-chart-horizontal-big", "barcode", "barrel", "baseline", "bath", "battery", "battery-charging", "battery-full", "battery-low", "battery-medium", "battery-plus", "battery-warning", "beaker", "bean", "bean-off", "bed", "bed-double", "bed-single", "beef", "beer", "beer-off", "bell", "bell-dot", "bell-electric", "bell-minus", "bell-off", "bell-plus", "bell-ring", "between-horizonal-end", "between-horizonal-start", "between-horizontal-end", "between-horizontal-start", "between-vertical-end", "between-vertical-start", "biceps-flexed", "bike", "binary", "binoculars", "biohazard", "bird", "birdhouse", "bitcoin", "blend", "blinds", "blocks", "bluetooth", "bluetooth-connected", "bluetooth-off", "bluetooth-searching", "bold", "bolt", "bomb", "bone", "book", "book-a", "book-alert", "book-audio", "book-check", "book-copy", "book-dashed", "book-down", "book-headphones", "book-heart", "book-image", "book-key", "book-lock", "book-marked", "book-minus", "book-open", "book-open-check", "book-open-text", "book-plus", "book-template", "book-text", "book-type", "book-up", "book-up-2", "book-user", "book-x", "bookmark", "bookmark-check", "bookmark-minus", "bookmark-plus", "bookmark-x", "boom-box", "bot", "bot-message-square", "bot-off", "bottle-wine", "bow-arrow", "box", "box-select", "boxes", "braces", "brackets", "brain", "brain-circuit", "brain-cog", "brick-wall", "brick-wall-fire", "brick-wall-shield", "briefcase", "briefcase-business", "briefcase-conveyor-belt", "briefcase-medical", "bring-to-front", "brush", "brush-cleaning", "bubbles", "bug", "bug-off", "bug-play", "building", "building-2", "bus", "bus-front", "cable", "cable-car", "cake", "cake-slice", "calculator", "calendar", "calendar-1", "calendar-arrow-down", "calendar-arrow-up", "calendar-check", "calendar-check-2", "calendar-clock", "calendar-cog", "calendar-days", "calendar-fold", "calendar-heart", "calendar-minus", "calendar-minus-2", "calendar-off", "calendar-plus", "calendar-plus-2", "calendar-range", "calendar-search", "calendar-sync", "calendar-x", "calendar-x-2", "camera", "camera-off", "candlestick-chart", "candy", "candy-cane", "candy-off", "cannabis", "captions", "captions-off", "car", "car-front", "car-taxi-front", "caravan", "card-sim", "carrot", "case-lower", "case-sensitive", "case-upper", "cassette-tape", "cast", "castle", "cat", "cctv", "chart-area", "chart-bar", "chart-bar-big", "chart-bar-decreasing", "chart-bar-increasing", "chart-bar-stacked", "chart-candlestick", "chart-column", "chart-column-big", "chart-column-decreasing", "chart-column-increasing", "chart-column-stacked", "chart-gantt", "chart-line", "chart-network", "chart-no-axes-column", "chart-no-axes-column-decreasing", "chart-no-axes-column-increasing", "chart-no-axes-combined", "chart-no-axes-gantt", "chart-pie", "chart-scatter", "chart-spline", "check", "check-check", "check-circle", "check-circle-2", "check-line", "check-square", "check-square-2", "chef-hat", "cherry", "chevron-down", "chevron-down-circle", "chevron-down-square", "chevron-first", "chevron-last", "chevron-left", "chevron-left-circle", "chevron-left-square", "chevron-right", "chevron-right-circle", "chevron-right-square", "chevron-up", "chevron-up-circle", "chevron-up-square", "chevrons-down", "chevrons-down-up", "chevrons-left", "chevrons-left-right", "chevrons-left-right-ellipsis", "chevrons-right", "chevrons-right-left", "chevrons-up", "chevrons-up-down", "chrome", "chromium", "church", "cigarette", "cigarette-off", "circle", "circle-alert", "circle-arrow-down", "circle-arrow-left", "circle-arrow-out-down-left", "circle-arrow-out-down-right", "circle-arrow-out-up-left", "circle-arrow-out-up-right", "circle-arrow-right", "circle-arrow-up", "circle-check", "circle-check-big", "circle-chevron-down", "circle-chevron-left", "circle-chevron-right", "circle-chevron-up", "circle-dashed", "circle-divide", "circle-dollar-sign", "circle-dot", "circle-dot-dashed", "circle-ellipsis", "circle-equal", "circle-fading-arrow-up", "circle-fading-plus", "circle-gauge", "circle-help", "circle-minus", "circle-off", "circle-parking", "circle-parking-off", "circle-pause", "circle-percent", "circle-play", "circle-plus", "circle-pound-sterling", "circle-power", "circle-question-mark", "circle-slash", "circle-slash-2", "circle-slashed", "circle-small", "circle-star", "circle-stop", "circle-user", "circle-user-round", "circle-x", "circuit-board", "citrus", "clapperboard", "clipboard", "clipboard-check", "clipboard-clock", "clipboard-copy", "clipboard-edit", "clipboard-list", "clipboard-minus", "clipboard-paste", "clipboard-pen", "clipboard-pen-line", "clipboard-plus", "clipboard-signature", "clipboard-type", "clipboard-x", "clock", "clock-1", "clock-10", "clock-11", "clock-12", "clock-2", "clock-3", "clock-4", "clock-5", "clock-6", "clock-7", "clock-8", "clock-9", "clock-alert", "clock-arrow-down", "clock-arrow-up", "clock-fading", "clock-plus", "closed-caption", "cloud", "cloud-alert", "cloud-check", "cloud-cog", "cloud-download", "cloud-drizzle", "cloud-fog", "cloud-hail", "cloud-lightning", "cloud-moon", "cloud-moon-rain", "cloud-off", "cloud-rain", "cloud-rain-wind", "cloud-snow", "cloud-sun", "cloud-sun-rain", "cloud-upload", "cloudy", "clover", "club", "code", "code-2", "code-square", "code-xml", "codepen", "codesandbox", "coffee", "cog", "coins", "columns", "columns-2", "columns-3", "columns-3-cog", "columns-4", "columns-settings", "combine", "command", "compass", "component", "computer", "concierge-bell", "cone", "construction", "contact", "contact-2", "contact-round", "container", "contrast", "cookie", "cooking-pot", "copy", "copy-check", "copy-minus", "copy-plus", "copy-slash", "copy-x", "copyleft", "copyright", "corner-down-left", "corner-down-right", "corner-left-down", "corner-left-up", "corner-right-down", "corner-right-up", "corner-up-left", "corner-up-right", "cpu", "creative-commons", "credit-card", "croissant", "crop", "cross", "crosshair", "crown", "cuboid", "cup-soda", "curly-braces", "currency", "cylinder", "dam", "database", "database-backup", "database-zap", "decimals-arrow-left", "decimals-arrow-right", "delete", "dessert", "diameter", "diamond", "diamond-minus", "diamond-percent", "diamond-plus", "dice-1", "dice-2", "dice-3", "dice-4", "dice-5", "dice-6", "dices", "diff", "disc", "disc-2", "disc-3", "disc-album", "divide", "divide-circle", "divide-square", "dna", "dna-off", "dock", "dog", "dollar-sign", "donut", "door-closed", "door-closed-locked", "door-open", "dot", "dot-square", "download", "download-cloud", "drafting-compass", "drama", "dribbble", "drill", "drone", "droplet", "droplet-off", "droplets", "drum", "drumstick", "dumbbell", "ear", "ear-off", "earth", "earth-lock", "eclipse", "edit", "edit-2", "edit-3", "egg", "egg-fried", "egg-off", "ellipsis", "ellipsis-vertical", "equal", "equal-approximately", "equal-not", "equal-square", "eraser", "ethernet-port", "euro", "ev-charger", "expand", "external-link", "eye", "eye-closed", "eye-off", "facebook", "factory", "fan", "fast-forward", "feather", "fence", "ferris-wheel", "figma", "file", "file-archive", "file-audio", "file-audio-2", "file-axis-3-d", "file-axis-3d", "file-badge", "file-badge-2", "file-bar-chart", "file-bar-chart-2", "file-box", "file-chart-column", "file-chart-column-increasing", "file-chart-line", "file-chart-pie", "file-check", "file-check-2", "file-clock", "file-code", "file-code-2", "file-cog", "file-cog-2", "file-diff", "file-digit", "file-down", "file-edit", "file-heart", "file-image", "file-input", "file-json", "file-json-2", "file-key", "file-key-2", "file-line-chart", "file-lock", "file-lock-2", "file-minus", "file-minus-2", "file-music", "file-output", "file-pen", "file-pen-line", "file-pie-chart", "file-play", "file-plus", "file-plus-2", "file-question", "file-question-mark", "file-scan", "file-search", "file-search-2", "file-signature", "file-sliders", "file-spreadsheet", "file-stack", "file-symlink", "file-terminal", "file-text", "file-type", "file-type-2", "file-up", "file-user", "file-video", "file-video-2", "file-video-camera", "file-volume", "file-volume-2", "file-warning", "file-x", "file-x-2", "files", "film", "filter", "filter-x", "fingerprint", "fire-extinguisher", "fish", "fish-off", "fish-symbol", "flag", "flag-off", "flag-triangle-left", "flag-triangle-right", "flame", "flame-kindling", "flashlight", "flashlight-off", "flask-conical", "flask-conical-off", "flask-round", "flip-horizontal", "flip-horizontal-2", "flip-vertical", "flip-vertical-2", "flower", "flower-2", "focus", "fold-horizontal", "fold-vertical", "folder", "folder-archive", "folder-check", "folder-clock", "folder-closed", "folder-code", "folder-cog", "folder-cog-2", "folder-dot", "folder-down", "folder-edit", "folder-git", "folder-git-2", "folder-heart", "folder-input", "folder-kanban", "folder-key", "folder-lock", "folder-minus", "folder-open", "folder-open-dot", "folder-output", "folder-pen", "folder-plus", "folder-root", "folder-search", "folder-search-2", "folder-symlink", "folder-sync", "folder-tree", "folder-up", "folder-x", "folders", "footprints", "fork-knife", "fork-knife-crossed", "forklift", "form-input", "forward", "frame", "framer", "frown", "fuel", "fullscreen", "function-square", "funnel", "funnel-plus", "funnel-x", "gallery-horizontal", "gallery-horizontal-end", "gallery-thumbnails", "gallery-vertical", "gallery-vertical-end", "gamepad", "gamepad-2", "gamepad-directional", "gantt-chart", "gantt-chart-square", "gauge", "gauge-circle", "gavel", "gem", "georgian-lari", "ghost", "gift", "git-branch", "git-branch-plus", "git-commit", "git-commit-horizontal", "git-commit-vertical", "git-compare", "git-compare-arrows", "git-fork", "git-graph", "git-merge", "git-pull-request", "git-pull-request-arrow", "git-pull-request-closed", "git-pull-request-create", "git-pull-request-create-arrow", "git-pull-request-draft", "github", "gitlab", "glass-water", "glasses", "globe", "globe-2", "globe-lock", "goal", "gpu", "grab", "graduation-cap", "grape", "grid", "grid-2-x-2", "grid-2-x-2-check", "grid-2-x-2-plus", "grid-2-x-2-x", "grid-2x2", "grid-2x2-check", "grid-2x2-plus", "grid-2x2-x", "grid-3-x-3", "grid-3x2", "grid-3x3", "grip", "grip-horizontal", "grip-vertical", "group", "guitar", "ham", "hamburger", "hammer", "hand", "hand-coins", "hand-fist", "hand-grab", "hand-heart", "hand-helping", "hand-metal", "hand-platter", "handbag", "handshake", "hard-drive", "hard-drive-download", "hard-drive-upload", "hard-hat", "hash", "hat-glasses", "haze", "hdmi-port", "heading", "heading-1", "heading-2", "heading-3", "heading-4", "heading-5", "heading-6", "headphone-off", "headphones", "headset", "heart", "heart-crack", "heart-handshake", "heart-minus", "heart-off", "heart-plus", "heart-pulse", "heater", "help-circle", "helping-hand", "hexagon", "highlighter", "history", "home", "hop", "hop-off", "hospital", "hotel", "hourglass", "house", "house-heart", "house-plug", "house-plus", "house-wifi", "ice-cream", "ice-cream-2", "ice-cream-bowl", "ice-cream-cone", "id-card", "id-card-lanyard", "image", "image-down", "image-minus", "image-off", "image-play", "image-plus", "image-up", "image-upscale", "images", "import", "inbox", "indent", "indent-decrease", "indent-increase", "indian-rupee", "infinity", "info", "inspect", "inspection-panel", "instagram", "italic", "iteration-ccw", "iteration-cw", "japanese-yen", "joystick", "kanban", "kanban-square", "kanban-square-dashed", "kayak", "key", "key-round", "key-square", "keyboard", "keyboard-music", "keyboard-off", "lamp", "lamp-ceiling", "lamp-desk", "lamp-floor", "lamp-wall-down", "lamp-wall-up", "land-plot", "landmark", "languages", "laptop", "laptop-2", "laptop-minimal", "laptop-minimal-check", "lasso", "lasso-select", "laugh", "layers", "layers-2", "layers-3", "layout", "layout-dashboard", "layout-grid", "layout-list", "layout-panel-left", "layout-panel-top", "layout-template", "leaf", "leafy-green", "lectern", "letter-text", "library", "library-big", "library-square", "life-buoy", "ligature", "lightbulb", "lightbulb-off", "line-chart", "line-squiggle", "link", "link-2", "link-2-off", "linkedin", "list", "list-check", "list-checks", "list-chevrons-down-up", "list-chevrons-up-down", "list-collapse", "list-end", "list-filter", "list-filter-plus", "list-indent-decrease", "list-indent-increase", "list-minus", "list-music", "list-ordered", "list-plus", "list-restart", "list-start", "list-todo", "list-tree", "list-video", "list-x", "loader", "loader-2", "loader-circle", "loader-pinwheel", "locate", "locate-fixed", "locate-off", "location-edit", "lock", "lock-keyhole", "lock-keyhole-open", "lock-open", "log-in", "log-out", "logs", "lollipop", "luggage", "m-square", "magnet", "mail", "mail-check", "mail-minus", "mail-open", "mail-plus", "mail-question", "mail-question-mark", "mail-search", "mail-warning", "mail-x", "mailbox", "mails", "map", "map-minus", "map-pin", "map-pin-check", "map-pin-check-inside", "map-pin-house", "map-pin-minus", "map-pin-minus-inside", "map-pin-off", "map-pin-pen", "map-pin-plus", "map-pin-plus-inside", "map-pin-x", "map-pin-x-inside", "map-pinned", "map-plus", "mars", "mars-stroke", "martini", "maximize", "maximize-2", "medal", "megaphone", "megaphone-off", "meh", "memory-stick", "menu", "menu-square", "merge", "message-circle", "message-circle-code", "message-circle-dashed", "message-circle-heart", "message-circle-more", "message-circle-off", "message-circle-plus", "message-circle-question", "message-circle-question-mark", "message-circle-reply", "message-circle-warning", "message-circle-x", "message-square", "message-square-code", "message-square-dashed", "message-square-diff", "message-square-dot", "message-square-heart", "message-square-lock", "message-square-more", "message-square-off", "message-square-plus", "message-square-quote", "message-square-reply", "message-square-share", "message-square-text", "message-square-warning", "message-square-x", "messages-square", "mic", "mic-2", "mic-off", "mic-vocal", "microchip", "microscope", "microwave", "milestone", "milk", "milk-off", "minimize", "minimize-2", "minus", "minus-circle", "minus-square", "monitor", "monitor-check", "monitor-cloud", "monitor-cog", "monitor-dot", "monitor-down", "monitor-off", "monitor-pause", "monitor-play", "monitor-smartphone", "monitor-speaker", "monitor-stop", "monitor-up", "monitor-x", "moon", "moon-star", "more-horizontal", "more-vertical", "motorbike", "mountain", "mountain-snow", "mouse", "mouse-off", "mouse-pointer", "mouse-pointer-2", "mouse-pointer-ban", "mouse-pointer-click", "mouse-pointer-square-dashed", "move", "move-3-d", "move-3d", "move-diagonal", "move-diagonal-2", "move-down", "move-down-left", "move-down-right", "move-horizontal", "move-left", "move-right", "move-up", "move-up-left", "move-up-right", "move-vertical", "music", "music-2", "music-3", "music-4", "navigation", "navigation-2", "navigation-2-off", "navigation-off", "network", "newspaper", "nfc", "non-binary", "notebook", "notebook-pen", "notebook-tabs", "notebook-text", "notepad-text", "notepad-text-dashed", "nut", "nut-off", "octagon", "octagon-alert", "octagon-minus", "octagon-pause", "octagon-x", "omega", "option", "orbit", "origami", "outdent", "package", "package-2", "package-check", "package-minus", "package-open", "package-plus", "package-search", "package-x", "paint-bucket", "paint-roller", "paintbrush", "paintbrush-2", "paintbrush-vertical", "palette", "palmtree", "panda", "panel-bottom", "panel-bottom-close", "panel-bottom-dashed", "panel-bottom-inactive", "panel-bottom-open", "panel-left", "panel-left-close", "panel-left-dashed", "panel-left-inactive", "panel-left-open", "panel-left-right-dashed", "panel-right", "panel-right-close", "panel-right-dashed", "panel-right-inactive", "panel-right-open", "panel-top", "panel-top-bottom-dashed", "panel-top-close", "panel-top-dashed", "panel-top-inactive", "panel-top-open", "panels-left-bottom", "panels-left-right", "panels-right-bottom", "panels-top-bottom", "panels-top-left", "paperclip", "parentheses", "parking-circle", "parking-circle-off", "parking-meter", "parking-square", "parking-square-off", "party-popper", "pause", "pause-circle", "pause-octagon", "paw-print", "pc-case", "pen", "pen-box", "pen-line", "pen-off", "pen-square", "pen-tool", "pencil", "pencil-line", "pencil-off", "pencil-ruler", "pentagon", "percent", "percent-circle", "percent-diamond", "percent-square", "person-standing", "philippine-peso", "phone", "phone-call", "phone-forwarded", "phone-incoming", "phone-missed", "phone-off", "phone-outgoing", "pi", "pi-square", "piano", "pickaxe", "picture-in-picture", "picture-in-picture-2", "pie-chart", "piggy-bank", "pilcrow", "pilcrow-left", "pilcrow-right", "pilcrow-square", "pill", "pill-bottle", "pin", "pin-off", "pipette", "pizza", "plane", "plane-landing", "plane-takeoff", "play", "play-circle", "play-square", "plug", "plug-2", "plug-zap", "plug-zap-2", "plus", "plus-circle", "plus-square", "pocket", "pocket-knife", "podcast", "pointer", "pointer-off", "popcorn", "popsicle", "pound-sterling", "power", "power-circle", "power-off", "power-square", "presentation", "printer", "printer-check", "projector", "proportions", "puzzle", "pyramid", "qr-code", "quote", "rabbit", "radar", "radiation", "radical", "radio", "radio-receiver", "radio-tower", "radius", "rail-symbol", "rainbow", "rat", "ratio", "receipt", "receipt-cent", "receipt-euro", "receipt-indian-rupee", "receipt-japanese-yen", "receipt-pound-sterling", "receipt-russian-ruble", "receipt-swiss-franc", "receipt-text", "receipt-turkish-lira", "rectangle-circle", "rectangle-ellipsis", "rectangle-goggles", "rectangle-horizontal", "rectangle-vertical", "recycle", "redo", "redo-2", "redo-dot", "refresh-ccw", "refresh-ccw-dot", "refresh-cw", "refresh-cw-off", "refrigerator", "regex", "remove-formatting", "repeat", "repeat-1", "repeat-2", "replace", "replace-all", "reply", "reply-all", "rewind", "ribbon", "rocket", "rocking-chair", "roller-coaster", "rose", "rotate-3-d", "rotate-3d", "rotate-ccw", "rotate-ccw-key", "rotate-ccw-square", "rotate-cw", "rotate-cw-square", "route", "route-off", "router", "rows", "rows-2", "rows-3", "rows-4", "rss", "ruler", "ruler-dimension-line", "russian-ruble", "sailboat", "salad", "sandwich", "satellite", "satellite-dish", "saudi-riyal", "save", "save-all", "save-off", "scale", "scale-3-d", "scale-3d", "scaling", "scan", "scan-barcode", "scan-eye", "scan-face", "scan-heart", "scan-line", "scan-qr-code", "scan-search", "scan-text", "scatter-chart", "school", "school-2", "scissors", "scissors-line-dashed", "scissors-square", "scissors-square-dashed-bottom", "screen-share", "screen-share-off", "scroll", "scroll-text", "search", "search-check", "search-code", "search-slash", "search-x", "section", "send", "send-horizonal", "send-horizontal", "send-to-back", "separator-horizontal", "separator-vertical", "server", "server-cog", "server-crash", "server-off", "settings", "settings-2", "shapes", "share", "share-2", "sheet", "shell", "shield", "shield-alert", "shield-ban", "shield-check", "shield-close", "shield-ellipsis", "shield-half", "shield-minus", "shield-off", "shield-plus", "shield-question", "shield-question-mark", "shield-user", "shield-x", "ship", "ship-wheel", "shirt", "shopping-bag", "shopping-basket", "shopping-cart", "shovel", "shower-head", "shredder", "shrimp", "shrink", "shrub", "shuffle", "sidebar", "sidebar-close", "sidebar-open", "sigma", "sigma-square", "signal", "signal-high", "signal-low", "signal-medium", "signal-zero", "signature", "signpost", "signpost-big", "siren", "skip-back", "skip-forward", "skull", "slack", "slash", "slash-square", "slice", "sliders", "sliders-horizontal", "sliders-vertical", "smartphone", "smartphone-charging", "smartphone-nfc", "smile", "smile-plus", "snail", "snowflake", "soap-dispenser-droplet", "sofa", "sort-asc", "sort-desc", "soup", "space", "spade", "sparkle", "sparkles", "speaker", "speech", "spell-check", "spell-check-2", "spline", "spline-pointer", "split", "split-square-horizontal", "split-square-vertical", "spool", "spotlight", "spray-can", "sprout", "square", "square-activity", "square-arrow-down", "square-arrow-down-left", "square-arrow-down-right", "square-arrow-left", "square-arrow-out-down-left", "square-arrow-out-down-right", "square-arrow-out-up-left", "square-arrow-out-up-right", "square-arrow-right", "square-arrow-up", "square-arrow-up-left", "square-arrow-up-right", "square-asterisk", "square-bottom-dashed-scissors", "square-chart-gantt", "square-check", "square-check-big", "square-chevron-down", "square-chevron-left", "square-chevron-right", "square-chevron-up", "square-code", "square-dashed", "square-dashed-bottom", "square-dashed-bottom-code", "square-dashed-kanban", "square-dashed-mouse-pointer", "square-dashed-top-solid", "square-divide", "square-dot", "square-equal", "square-function", "square-gantt-chart", "square-kanban", "square-library", "square-m", "square-menu", "square-minus", "square-mouse-pointer", "square-parking", "square-parking-off", "square-pause", "square-pen", "square-percent", "square-pi", "square-pilcrow", "square-play", "square-plus", "square-power", "square-radical", "square-round-corner", "square-scissors", "square-sigma", "square-slash", "square-split-horizontal", "square-split-vertical", "square-square", "square-stack", "square-star", "square-stop", "square-terminal", "square-user", "square-user-round", "square-x", "squares-exclude", "squares-intersect", "squares-subtract", "squares-unite", "squircle", "squircle-dashed", "squirrel", "stamp", "star", "star-half", "star-off", "stars", "step-back", "step-forward", "stethoscope", "sticker", "sticky-note", "stop-circle", "store", "stretch-horizontal", "stretch-vertical", "strikethrough", "subscript", "subtitles", "sun", "sun-dim", "sun-medium", "sun-moon", "sun-snow", "sunrise", "sunset", "superscript", "swatch-book", "swiss-franc", "switch-camera", "sword", "swords", "syringe", "table", "table-2", "table-cells-merge", "table-cells-split", "table-columns-split", "table-config", "table-of-contents", "table-properties", "table-rows-split", "tablet", "tablet-smartphone", "tablets", "tag", "tags", "tally-1", "tally-2", "tally-3", "tally-4", "tally-5", "tangent", "target", "telescope", "tent", "tent-tree", "terminal", "terminal-square", "test-tube", "test-tube-2", "test-tube-diagonal", "test-tubes", "text", "text-align-center", "text-align-end", "text-align-justify", "text-align-start", "text-cursor", "text-cursor-input", "text-initial", "text-quote", "text-search", "text-select", "text-selection", "text-wrap", "theater", "thermometer", "thermometer-snowflake", "thermometer-sun", "thumbs-down", "thumbs-up", "ticket", "ticket-check", "ticket-minus", "ticket-percent", "ticket-plus", "ticket-slash", "ticket-x", "tickets", "tickets-plane", "timer", "timer-off", "timer-reset", "toggle-left", "toggle-right", "toilet", "tool-case", "tornado", "torus", "touchpad", "touchpad-off", "tower-control", "toy-brick", "tractor", "traffic-cone", "train", "train-front", "train-front-tunnel", "train-track", "tram-front", "transgender", "trash", "trash-2", "tree-deciduous", "tree-palm", "tree-pine", "trees", "trello", "trending-down", "trending-up", "trending-up-down", "triangle", "triangle-alert", "triangle-dashed", "triangle-right", "trophy", "truck", "truck-electric", "turkish-lira", "turntable", "turtle", "tv", "tv-2", "tv-minimal", "tv-minimal-play", "twitch", "twitter", "type", "type-outline", "umbrella", "umbrella-off", "underline", "undo", "undo-2", "undo-dot", "unfold-horizontal", "unfold-vertical", "ungroup", "university", "unlink", "unlink-2", "unlock", "unlock-keyhole", "unplug", "upload", "upload-cloud", "usb", "user", "user-2", "user-check", "user-check-2", "user-circle", "user-circle-2", "user-cog", "user-cog-2", "user-lock", "user-minus", "user-minus-2", "user-pen", "user-plus", "user-plus-2", "user-round", "user-round-check", "user-round-cog", "user-round-minus", "user-round-pen", "user-round-plus", "user-round-search", "user-round-x", "user-search", "user-square", "user-square-2", "user-star", "user-x", "user-x-2", "users", "users-2", "users-round", "utensils", "utensils-crossed", "utility-pole", "variable", "vault", "vector-square", "vegan", "venetian-mask", "venus", "venus-and-mars", "verified", "vibrate", "vibrate-off", "video", "video-off", "videotape", "view", "voicemail", "volleyball", "volume", "volume-1", "volume-2", "volume-off", "volume-x", "vote", "wallet", "wallet-2", "wallet-cards", "wallet-minimal", "wallpaper", "wand", "wand-2", "wand-sparkles", "warehouse", "washing-machine", "watch", "waves", "waves-ladder", "waypoints", "webcam", "webhook", "webhook-off", "weight", "wheat", "wheat-off", "whole-word", "wifi", "wifi-cog", "wifi-high", "wifi-low", "wifi-off", "wifi-pen", "wifi-sync", "wifi-zero", "wind", "wind-arrow-down", "wine", "wine-off", "workflow", "worm", "wrap-text", "wrench", "x", "x-circle", "x-octagon", "x-square", "youtube", "zap", "zap-off", "zoom-in", "zoom-out"];
|
|
2
2
|
export type IconNames = (typeof IconNames)[number];
|
|
@@ -165,6 +165,7 @@ export const IconNames = [
|
|
|
165
165
|
"badge-question-mark",
|
|
166
166
|
"badge-russian-ruble",
|
|
167
167
|
"badge-swiss-franc",
|
|
168
|
+
"badge-turkish-lira",
|
|
168
169
|
"badge-x",
|
|
169
170
|
"baggage-claim",
|
|
170
171
|
"ban",
|
|
@@ -220,6 +221,7 @@ export const IconNames = [
|
|
|
220
221
|
"binoculars",
|
|
221
222
|
"biohazard",
|
|
222
223
|
"bird",
|
|
224
|
+
"birdhouse",
|
|
223
225
|
"bitcoin",
|
|
224
226
|
"blend",
|
|
225
227
|
"blinds",
|
|
@@ -279,6 +281,7 @@ export const IconNames = [
|
|
|
279
281
|
"brain-cog",
|
|
280
282
|
"brick-wall",
|
|
281
283
|
"brick-wall-fire",
|
|
284
|
+
"brick-wall-shield",
|
|
282
285
|
"briefcase",
|
|
283
286
|
"briefcase-business",
|
|
284
287
|
"briefcase-conveyor-belt",
|
|
@@ -399,6 +402,7 @@ export const IconNames = [
|
|
|
399
402
|
"chevrons-up",
|
|
400
403
|
"chevrons-up-down",
|
|
401
404
|
"chrome",
|
|
405
|
+
"chromium",
|
|
402
406
|
"church",
|
|
403
407
|
"cigarette",
|
|
404
408
|
"cigarette-off",
|
|
@@ -444,6 +448,7 @@ export const IconNames = [
|
|
|
444
448
|
"circle-slash-2",
|
|
445
449
|
"circle-slashed",
|
|
446
450
|
"circle-small",
|
|
451
|
+
"circle-star",
|
|
447
452
|
"circle-stop",
|
|
448
453
|
"circle-user",
|
|
449
454
|
"circle-user-round",
|
|
@@ -453,6 +458,7 @@ export const IconNames = [
|
|
|
453
458
|
"clapperboard",
|
|
454
459
|
"clipboard",
|
|
455
460
|
"clipboard-check",
|
|
461
|
+
"clipboard-clock",
|
|
456
462
|
"clipboard-copy",
|
|
457
463
|
"clipboard-edit",
|
|
458
464
|
"clipboard-list",
|
|
@@ -482,6 +488,7 @@ export const IconNames = [
|
|
|
482
488
|
"clock-arrow-up",
|
|
483
489
|
"clock-fading",
|
|
484
490
|
"clock-plus",
|
|
491
|
+
"closed-caption",
|
|
485
492
|
"cloud",
|
|
486
493
|
"cloud-alert",
|
|
487
494
|
"cloud-check",
|
|
@@ -634,6 +641,7 @@ export const IconNames = [
|
|
|
634
641
|
"eraser",
|
|
635
642
|
"ethernet-port",
|
|
636
643
|
"euro",
|
|
644
|
+
"ev-charger",
|
|
637
645
|
"expand",
|
|
638
646
|
"external-link",
|
|
639
647
|
"eye",
|
|
@@ -690,6 +698,7 @@ export const IconNames = [
|
|
|
690
698
|
"file-pen",
|
|
691
699
|
"file-pen-line",
|
|
692
700
|
"file-pie-chart",
|
|
701
|
+
"file-play",
|
|
693
702
|
"file-plus",
|
|
694
703
|
"file-plus-2",
|
|
695
704
|
"file-question",
|
|
@@ -710,6 +719,7 @@ export const IconNames = [
|
|
|
710
719
|
"file-user",
|
|
711
720
|
"file-video",
|
|
712
721
|
"file-video-2",
|
|
722
|
+
"file-video-camera",
|
|
713
723
|
"file-volume",
|
|
714
724
|
"file-volume-2",
|
|
715
725
|
"file-warning",
|
|
@@ -799,6 +809,7 @@ export const IconNames = [
|
|
|
799
809
|
"gallery-vertical-end",
|
|
800
810
|
"gamepad",
|
|
801
811
|
"gamepad-2",
|
|
812
|
+
"gamepad-directional",
|
|
802
813
|
"gantt-chart",
|
|
803
814
|
"gantt-chart-square",
|
|
804
815
|
"gauge",
|
|
@@ -858,16 +869,20 @@ export const IconNames = [
|
|
|
858
869
|
"hammer",
|
|
859
870
|
"hand",
|
|
860
871
|
"hand-coins",
|
|
872
|
+
"hand-fist",
|
|
873
|
+
"hand-grab",
|
|
861
874
|
"hand-heart",
|
|
862
875
|
"hand-helping",
|
|
863
876
|
"hand-metal",
|
|
864
877
|
"hand-platter",
|
|
878
|
+
"handbag",
|
|
865
879
|
"handshake",
|
|
866
880
|
"hard-drive",
|
|
867
881
|
"hard-drive-download",
|
|
868
882
|
"hard-drive-upload",
|
|
869
883
|
"hard-hat",
|
|
870
884
|
"hash",
|
|
885
|
+
"hat-glasses",
|
|
871
886
|
"haze",
|
|
872
887
|
"hdmi-port",
|
|
873
888
|
"heading",
|
|
@@ -900,6 +915,7 @@ export const IconNames = [
|
|
|
900
915
|
"hotel",
|
|
901
916
|
"hourglass",
|
|
902
917
|
"house",
|
|
918
|
+
"house-heart",
|
|
903
919
|
"house-plug",
|
|
904
920
|
"house-plus",
|
|
905
921
|
"house-wifi",
|
|
@@ -937,6 +953,7 @@ export const IconNames = [
|
|
|
937
953
|
"kanban",
|
|
938
954
|
"kanban-square",
|
|
939
955
|
"kanban-square-dashed",
|
|
956
|
+
"kayak",
|
|
940
957
|
"key",
|
|
941
958
|
"key-round",
|
|
942
959
|
"key-square",
|
|
@@ -989,10 +1006,14 @@ export const IconNames = [
|
|
|
989
1006
|
"list",
|
|
990
1007
|
"list-check",
|
|
991
1008
|
"list-checks",
|
|
1009
|
+
"list-chevrons-down-up",
|
|
1010
|
+
"list-chevrons-up-down",
|
|
992
1011
|
"list-collapse",
|
|
993
1012
|
"list-end",
|
|
994
1013
|
"list-filter",
|
|
995
1014
|
"list-filter-plus",
|
|
1015
|
+
"list-indent-decrease",
|
|
1016
|
+
"list-indent-increase",
|
|
996
1017
|
"list-minus",
|
|
997
1018
|
"list-music",
|
|
998
1019
|
"list-ordered",
|
|
@@ -1035,6 +1056,7 @@ export const IconNames = [
|
|
|
1035
1056
|
"mailbox",
|
|
1036
1057
|
"mails",
|
|
1037
1058
|
"map",
|
|
1059
|
+
"map-minus",
|
|
1038
1060
|
"map-pin",
|
|
1039
1061
|
"map-pin-check",
|
|
1040
1062
|
"map-pin-check-inside",
|
|
@@ -1042,6 +1064,7 @@ export const IconNames = [
|
|
|
1042
1064
|
"map-pin-minus",
|
|
1043
1065
|
"map-pin-minus-inside",
|
|
1044
1066
|
"map-pin-off",
|
|
1067
|
+
"map-pin-pen",
|
|
1045
1068
|
"map-pin-plus",
|
|
1046
1069
|
"map-pin-plus-inside",
|
|
1047
1070
|
"map-pin-x",
|
|
@@ -1107,6 +1130,7 @@ export const IconNames = [
|
|
|
1107
1130
|
"minus-square",
|
|
1108
1131
|
"monitor",
|
|
1109
1132
|
"monitor-check",
|
|
1133
|
+
"monitor-cloud",
|
|
1110
1134
|
"monitor-cog",
|
|
1111
1135
|
"monitor-dot",
|
|
1112
1136
|
"monitor-down",
|
|
@@ -1122,6 +1146,7 @@ export const IconNames = [
|
|
|
1122
1146
|
"moon-star",
|
|
1123
1147
|
"more-horizontal",
|
|
1124
1148
|
"more-vertical",
|
|
1149
|
+
"motorbike",
|
|
1125
1150
|
"mountain",
|
|
1126
1151
|
"mountain-snow",
|
|
1127
1152
|
"mouse",
|
|
@@ -1202,12 +1227,14 @@ export const IconNames = [
|
|
|
1202
1227
|
"panel-left-dashed",
|
|
1203
1228
|
"panel-left-inactive",
|
|
1204
1229
|
"panel-left-open",
|
|
1230
|
+
"panel-left-right-dashed",
|
|
1205
1231
|
"panel-right",
|
|
1206
1232
|
"panel-right-close",
|
|
1207
1233
|
"panel-right-dashed",
|
|
1208
1234
|
"panel-right-inactive",
|
|
1209
1235
|
"panel-right-open",
|
|
1210
1236
|
"panel-top",
|
|
1237
|
+
"panel-top-bottom-dashed",
|
|
1211
1238
|
"panel-top-close",
|
|
1212
1239
|
"panel-top-dashed",
|
|
1213
1240
|
"panel-top-inactive",
|
|
@@ -1327,6 +1354,7 @@ export const IconNames = [
|
|
|
1327
1354
|
"receipt-russian-ruble",
|
|
1328
1355
|
"receipt-swiss-franc",
|
|
1329
1356
|
"receipt-text",
|
|
1357
|
+
"receipt-turkish-lira",
|
|
1330
1358
|
"rectangle-circle",
|
|
1331
1359
|
"rectangle-ellipsis",
|
|
1332
1360
|
"rectangle-goggles",
|
|
@@ -1355,6 +1383,7 @@ export const IconNames = [
|
|
|
1355
1383
|
"rocket",
|
|
1356
1384
|
"rocking-chair",
|
|
1357
1385
|
"roller-coaster",
|
|
1386
|
+
"rose",
|
|
1358
1387
|
"rotate-3-d",
|
|
1359
1388
|
"rotate-3d",
|
|
1360
1389
|
"rotate-ccw",
|
|
@@ -1506,6 +1535,7 @@ export const IconNames = [
|
|
|
1506
1535
|
"split-square-horizontal",
|
|
1507
1536
|
"split-square-vertical",
|
|
1508
1537
|
"spool",
|
|
1538
|
+
"spotlight",
|
|
1509
1539
|
"spray-can",
|
|
1510
1540
|
"sprout",
|
|
1511
1541
|
"square",
|
|
@@ -1551,6 +1581,7 @@ export const IconNames = [
|
|
|
1551
1581
|
"square-mouse-pointer",
|
|
1552
1582
|
"square-parking",
|
|
1553
1583
|
"square-parking-off",
|
|
1584
|
+
"square-pause",
|
|
1554
1585
|
"square-pen",
|
|
1555
1586
|
"square-percent",
|
|
1556
1587
|
"square-pi",
|
|
@@ -1567,6 +1598,8 @@ export const IconNames = [
|
|
|
1567
1598
|
"square-split-vertical",
|
|
1568
1599
|
"square-square",
|
|
1569
1600
|
"square-stack",
|
|
1601
|
+
"square-star",
|
|
1602
|
+
"square-stop",
|
|
1570
1603
|
"square-terminal",
|
|
1571
1604
|
"square-user",
|
|
1572
1605
|
"square-user-round",
|
|
@@ -1640,12 +1673,18 @@ export const IconNames = [
|
|
|
1640
1673
|
"test-tube-diagonal",
|
|
1641
1674
|
"test-tubes",
|
|
1642
1675
|
"text",
|
|
1676
|
+
"text-align-center",
|
|
1677
|
+
"text-align-end",
|
|
1678
|
+
"text-align-justify",
|
|
1679
|
+
"text-align-start",
|
|
1643
1680
|
"text-cursor",
|
|
1644
1681
|
"text-cursor-input",
|
|
1682
|
+
"text-initial",
|
|
1645
1683
|
"text-quote",
|
|
1646
1684
|
"text-search",
|
|
1647
1685
|
"text-select",
|
|
1648
1686
|
"text-selection",
|
|
1687
|
+
"text-wrap",
|
|
1649
1688
|
"theater",
|
|
1650
1689
|
"thermometer",
|
|
1651
1690
|
"thermometer-snowflake",
|
|
@@ -1699,6 +1738,8 @@ export const IconNames = [
|
|
|
1699
1738
|
"trophy",
|
|
1700
1739
|
"truck",
|
|
1701
1740
|
"truck-electric",
|
|
1741
|
+
"turkish-lira",
|
|
1742
|
+
"turntable",
|
|
1702
1743
|
"turtle",
|
|
1703
1744
|
"tv",
|
|
1704
1745
|
"tv-2",
|
|
@@ -1751,6 +1792,7 @@ export const IconNames = [
|
|
|
1751
1792
|
"user-search",
|
|
1752
1793
|
"user-square",
|
|
1753
1794
|
"user-square-2",
|
|
1795
|
+
"user-star",
|
|
1754
1796
|
"user-x",
|
|
1755
1797
|
"user-x-2",
|
|
1756
1798
|
"users",
|
|
@@ -1808,6 +1850,7 @@ export const IconNames = [
|
|
|
1808
1850
|
"wifi-low",
|
|
1809
1851
|
"wifi-off",
|
|
1810
1852
|
"wifi-pen",
|
|
1853
|
+
"wifi-sync",
|
|
1811
1854
|
"wifi-zero",
|
|
1812
1855
|
"wind",
|
|
1813
1856
|
"wind-arrow-down",
|