zudoku 0.0.0-feat-bundled-types.71f1034 → 0.0.0-feat-openapi-docs-redesign.dab3fc6a
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 +33 -13
- package/cli.js +1 -0
- package/client.d.ts +8 -0
- package/dist/app/ZuploBuildConfig.d.ts +10 -120
- package/dist/app/ZuploBuildConfig.js +7 -7
- package/dist/app/ZuploBuildConfig.js.map +1 -1
- package/dist/app/demo.js +22 -6
- package/dist/app/demo.js.map +1 -1
- package/dist/app/entry.client.d.ts +0 -2
- package/dist/app/entry.client.js +6 -7
- package/dist/app/entry.client.js.map +1 -1
- package/dist/app/entry.server.d.ts +0 -2
- package/dist/app/entry.server.js +17 -6
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/env.d.ts +7 -7
- package/dist/app/env.js +10 -2
- package/dist/app/env.js.map +1 -1
- package/dist/app/main.d.ts +93 -2
- package/dist/app/main.js +31 -26
- package/dist/app/main.js.map +1 -1
- package/dist/app/standalone.js +11 -7
- package/dist/app/standalone.js.map +1 -1
- package/dist/cli/build/handler.js +9 -1
- package/dist/cli/build/handler.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 +16 -30
- package/dist/config/loader.js +4 -8
- package/dist/config/loader.js.map +1 -1
- package/dist/config/validators/BuildSchema.d.ts +30 -46
- package/dist/config/validators/BuildSchema.js +29 -18
- package/dist/config/validators/BuildSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +7646 -0
- package/dist/config/validators/InputNavigationSchema.js +78 -0
- package/dist/config/validators/InputNavigationSchema.js.map +1 -0
- package/dist/config/validators/InputNavigationSchema.test-d.d.ts +1 -0
- package/dist/config/validators/InputNavigationSchema.test-d.js +146 -0
- package/dist/config/validators/InputNavigationSchema.test-d.js.map +1 -0
- package/dist/config/validators/NavigationSchema.d.ts +44 -0
- package/dist/config/validators/NavigationSchema.js +98 -0
- package/dist/config/validators/NavigationSchema.js.map +1 -0
- package/dist/config/validators/ProtectedRoutesSchema.d.ts +13 -0
- package/dist/config/validators/ProtectedRoutesSchema.js +10 -0
- package/dist/config/validators/ProtectedRoutesSchema.js.map +1 -0
- 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 +2 -1
- package/dist/config/validators/icon-types.js +1872 -1
- package/dist/config/validators/icon-types.js.map +1 -1
- package/dist/config/validators/validate.d.ts +672 -5561
- package/dist/config/validators/validate.js +191 -94
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/config/validators/validate.test.d.ts +1 -0
- package/dist/config/validators/validate.test.js +140 -0
- package/dist/config/validators/validate.test.js.map +1 -0
- package/dist/flat-config.d.ts +378 -0
- package/dist/index.d.ts +7 -6
- package/dist/index.js +2 -1
- 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.d.ts +2 -0
- package/dist/lib/auth/issuer.js +40 -0
- package/dist/lib/auth/issuer.js.map +1 -0
- package/dist/lib/auth/issuer.test.d.ts +1 -0
- package/dist/lib/auth/issuer.test.js +95 -0
- package/dist/lib/auth/issuer.test.js.map +1 -0
- package/dist/lib/authentication/AuthenticationPlugin.d.ts +1 -1
- package/dist/lib/authentication/authentication.d.ts +19 -11
- package/dist/lib/authentication/components/CallbackHandler.js +12 -10
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/OAuthErrorPage.d.ts +3 -0
- package/dist/lib/authentication/components/OAuthErrorPage.js +99 -0
- package/dist/lib/authentication/components/OAuthErrorPage.js.map +1 -0
- package/dist/lib/authentication/components/SignIn.js +10 -8
- 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/errors.d.ts +6 -12
- package/dist/lib/authentication/errors.js +2 -1
- package/dist/lib/authentication/errors.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +10 -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 +10 -6
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/providers/azureb2c.d.ts +28 -0
- package/dist/lib/authentication/providers/azureb2c.js +147 -0
- package/dist/lib/authentication/providers/azureb2c.js.map +1 -0
- package/dist/lib/authentication/providers/clerk.d.ts +2 -2
- package/dist/lib/authentication/providers/clerk.js +9 -16
- 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 +10 -7
- package/dist/lib/authentication/providers/openid.js +55 -7
- 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 +32 -39
- package/dist/lib/authentication/providers/supabase.js.map +1 -1
- package/dist/lib/authentication/state.d.ts +11 -12
- package/dist/lib/authentication/state.js +21 -20
- 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 +7 -3
- package/dist/lib/components/Autocomplete.js.map +1 -1
- package/dist/lib/components/Banner.js +2 -2
- package/dist/lib/components/Banner.js.map +1 -1
- package/dist/lib/components/Bootstrap.js.map +1 -1
- package/dist/lib/components/BuildCheck.d.ts +2 -1
- package/dist/lib/components/BuildCheck.js +12 -5
- package/dist/lib/components/BuildCheck.js.map +1 -1
- package/dist/lib/components/CategoryHeading.js +1 -1
- package/dist/lib/components/CategoryHeading.js.map +1 -1
- package/dist/lib/components/ErrorPage.js +2 -2
- package/dist/lib/components/ErrorPage.js.map +1 -1
- package/dist/lib/components/Footer.js +1 -1
- package/dist/lib/components/Footer.js.map +1 -1
- package/dist/lib/components/Framed.d.ts +7 -0
- package/dist/lib/components/Framed.js +26 -0
- package/dist/lib/components/Framed.js.map +1 -0
- package/dist/lib/components/Header.js +20 -21
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +8 -4
- package/dist/lib/components/Heading.js +3 -7
- 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 +5 -7
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/Main.js +4 -4
- package/dist/lib/components/Main.js.map +1 -1
- package/dist/lib/components/Markdown.d.ts +0 -1
- package/dist/lib/components/Markdown.js +5 -6
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/Meta.d.ts +2 -0
- package/dist/lib/components/Meta.js +11 -0
- package/dist/lib/components/Meta.js.map +1 -0
- package/dist/lib/components/MobileTopNavigation.js +13 -7
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/NotFoundPage.js +2 -2
- package/dist/lib/components/NotFoundPage.js.map +1 -1
- package/dist/lib/components/PageProgress.d.ts +1 -0
- package/dist/lib/components/PageProgress.js +20 -0
- package/dist/lib/components/PageProgress.js.map +1 -0
- package/dist/lib/components/Pagination.js +1 -1
- package/dist/lib/components/Pagination.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/StatusPage.js +4 -0
- package/dist/lib/components/StatusPage.js.map +1 -1
- package/dist/lib/components/TopNavigation.d.ts +7 -3
- package/dist/lib/components/TopNavigation.js +51 -45
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/Typography.d.ts +5 -0
- package/dist/lib/components/Typography.js +8 -0
- package/dist/lib/components/Typography.js.map +1 -0
- 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 +3 -7
- package/dist/lib/components/context/ZudokuContext.js +66 -32
- 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 +24 -31
- package/dist/lib/components/index.js +5 -16
- package/dist/lib/components/index.js.map +1 -1
- package/dist/lib/components/navigation/Navigation.d.ts +5 -0
- package/dist/lib/components/navigation/Navigation.js +12 -0
- package/dist/lib/components/navigation/Navigation.js.map +1 -0
- package/dist/lib/components/navigation/{SidebarBadge.d.ts → NavigationBadge.d.ts} +1 -1
- package/dist/lib/components/navigation/{SidebarBadge.js → NavigationBadge.js} +2 -2
- package/dist/lib/components/navigation/NavigationBadge.js.map +1 -0
- package/dist/lib/components/navigation/NavigationCategory.d.ts +5 -0
- package/dist/lib/components/navigation/{SidebarCategory.js → NavigationCategory.js} +21 -14
- package/dist/lib/components/navigation/NavigationCategory.js.map +1 -0
- package/dist/lib/components/navigation/NavigationItem.d.ts +6 -0
- package/dist/lib/components/navigation/NavigationItem.js +55 -0
- package/dist/lib/components/navigation/NavigationItem.js.map +1 -0
- package/dist/lib/components/navigation/{SidebarWrapper.d.ts → NavigationWrapper.d.ts} +1 -1
- package/dist/lib/components/navigation/{SidebarWrapper.js → NavigationWrapper.js} +5 -5
- package/dist/lib/components/navigation/NavigationWrapper.js.map +1 -0
- 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 +11 -11
- package/dist/lib/components/navigation/utils.js +32 -29
- 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 +19 -27
- package/dist/lib/core/RouteGuard.js.map +1 -1
- package/dist/lib/core/ZudokuContext.d.ts +17 -13
- package/dist/lib/core/ZudokuContext.js +47 -11
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/__internal.d.ts +37 -0
- package/dist/lib/core/__internal.js +26 -0
- package/dist/lib/core/__internal.js.map +1 -0
- package/dist/lib/core/plugins.d.ts +4 -3
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/core/router.d.ts +1 -0
- package/dist/lib/core/router.js +2 -0
- package/dist/lib/core/router.js.map +1 -0
- package/dist/lib/errors/ErrorAlert.js +2 -4
- 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 +9 -3
- package/dist/lib/hooks/useEvent.test.js +5 -3
- package/dist/lib/hooks/useEvent.test.js.map +1 -1
- package/dist/lib/hooks/useHotkey.d.ts +4 -0
- package/dist/lib/hooks/useHotkey.js +58 -0
- package/dist/lib/hooks/useHotkey.js.map +1 -0
- 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.d.ts +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-catalog/index.d.ts +6 -6
- package/dist/lib/plugins/api-catalog/index.js +10 -10
- package/dist/lib/plugins/api-catalog/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/CreateApiKey.d.ts +1 -1
- package/dist/lib/plugins/api-keys/CreateApiKey.js +13 -3
- package/dist/lib/plugins/api-keys/CreateApiKey.js.map +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 +17 -24
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +11 -6
- package/dist/lib/plugins/api-keys/index.js +28 -13
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/custom-pages/index.d.ts +4 -6
- package/dist/lib/plugins/custom-pages/index.js +18 -10
- package/dist/lib/plugins/custom-pages/index.js.map +1 -1
- package/dist/lib/plugins/markdown/MdxPage.d.ts +3 -3
- package/dist/lib/plugins/markdown/MdxPage.js +56 -12
- 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 +13 -3
- package/dist/lib/plugins/markdown/index.js +9 -26
- 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 +33 -9
- 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 +14 -6
- 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 +8 -5
- 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 +18 -7
- 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 +5 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +3 -2
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +25 -4
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SchemaList.js +2 -3
- package/dist/lib/plugins/openapi/SchemaList.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.d.ts +5 -4
- package/dist/lib/plugins/openapi/Sidecar.js +57 -31
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarBox.js +4 -4
- package/dist/lib/plugins/openapi/SidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.d.ts +11 -6
- package/dist/lib/plugins/openapi/SidecarExamples.js +24 -43
- 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/ConstValue.js +1 -1
- package/dist/lib/plugins/openapi/components/ConstValue.js.map +1 -1
- package/dist/lib/plugins/openapi/components/EnumValues.js +1 -1
- package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -1
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.d.ts +4 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js +5 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js.map +1 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.js +5 -6
- package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -1
- package/dist/lib/plugins/openapi/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 +3 -3
- package/dist/lib/plugins/openapi/graphql/gql.js +3 -3
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +15 -5
- package/dist/lib/plugins/openapi/graphql/graphql.js +14 -2
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +5 -5
- package/dist/lib/plugins/openapi/index.js +57 -29
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +21 -7
- package/dist/lib/plugins/openapi/playground/BodyPanel.d.ts +3 -3
- package/dist/lib/plugins/openapi/playground/BodyPanel.js +71 -15
- package/dist/lib/plugins/openapi/playground/BodyPanel.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/CollapsibleHeader.d.ts +8 -0
- package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js +11 -0
- package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.d.ts +3 -3
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +2 -2
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Headers.d.ts +5 -4
- package/dist/lib/plugins/openapi/playground/Headers.js +42 -80
- 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/IdentityDialog.js +2 -1
- package/dist/lib/plugins/openapi/playground/IdentityDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/IdentitySelector.d.ts +1 -1
- package/dist/lib/plugins/openapi/playground/IdentitySelector.js +1 -2
- package/dist/lib/plugins/openapi/playground/IdentitySelector.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +10 -2
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js +9 -2
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PathParams.js +2 -4
- 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 +117 -64
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +5 -2
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/QueryParams.d.ts +3 -3
- package/dist/lib/plugins/openapi/playground/QueryParams.js +20 -29
- 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/Spinner.d.ts +2 -0
- package/dist/lib/plugins/openapi/playground/Spinner.js +63 -0
- package/dist/lib/plugins/openapi/playground/Spinner.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/fileUtils.js +1 -1
- package/dist/lib/plugins/openapi/playground/fileUtils.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/UrlPath.d.ts +3 -0
- package/dist/lib/plugins/openapi/playground/request-panel/UrlPath.js +13 -0
- package/dist/lib/plugins/openapi/playground/request-panel/UrlPath.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.d.ts +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js +12 -0
- package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js.map +1 -0
- 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 +12 -0
- package/dist/lib/plugins/openapi/playground/result-panel/Highlight.js +11 -0
- package/dist/lib/plugins/openapi/playground/result-panel/Highlight.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.d.ts +8 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js +71 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.d.ts +7 -4
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +40 -33
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +6 -4
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +8 -10
- 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/SchemaExampleAndDefault.js +3 -3
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.d.ts +0 -3
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +22 -22
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +3 -2
- package/dist/lib/plugins/openapi/schema/SchemaView.js +28 -17
- 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 +33 -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 +3 -8
- 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.d.ts +9 -0
- package/dist/lib/plugins/openapi/util/{createSidebarCategory.js → createNavigationCategory.js} +6 -4
- package/dist/lib/plugins/openapi/util/createNavigationCategory.js.map +1 -0
- 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 +3 -3
- 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.d.ts +5 -22
- package/dist/lib/plugins/search-inkeep/index.js +35 -29
- package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/inkeep.d.ts +5 -21
- package/dist/lib/plugins/search-inkeep/inkeep.js +10 -19
- package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js +2 -2
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.d.ts +2 -2
- package/dist/lib/plugins/search-pagefind/ResultList.js +15 -5
- 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 +7 -6
- package/dist/lib/shiki.js +31 -8
- package/dist/lib/shiki.js.map +1 -1
- package/dist/lib/ui/ActionButton.js +1 -1
- package/dist/lib/ui/ActionButton.js.map +1 -1
- package/dist/lib/ui/Alert.d.ts +6 -5
- package/dist/lib/ui/Alert.js +12 -10
- package/dist/lib/ui/Alert.js.map +1 -1
- package/dist/lib/ui/Badge.d.ts +4 -4
- package/dist/lib/ui/Badge.js +9 -7
- package/dist/lib/ui/Badge.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 +2 -2
- 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 +2 -4
- package/dist/lib/ui/CodeBlock.js +10 -10
- package/dist/lib/ui/CodeBlock.js.map +1 -1
- package/dist/lib/ui/Collapsible.d.ts +4 -4
- package/dist/lib/ui/Collapsible.js +11 -4
- package/dist/lib/ui/Collapsible.js.map +1 -1
- package/dist/lib/ui/Command.d.ts +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 +31 -18
- package/dist/lib/ui/Dialog.js.map +1 -1
- package/dist/lib/ui/EmbeddedCodeBlock.d.ts +16 -0
- package/dist/lib/ui/EmbeddedCodeBlock.js +19 -0
- package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -0
- package/dist/lib/ui/Form.d.ts +2 -2
- package/dist/lib/ui/Frame.d.ts +8 -0
- package/dist/lib/ui/Frame.js +22 -0
- package/dist/lib/ui/Frame.js.map +1 -0
- package/dist/lib/ui/Item.d.ts +23 -0
- package/dist/lib/ui/Item.js +67 -0
- package/dist/lib/ui/Item.js.map +1 -0
- package/dist/lib/ui/NativeSelect.d.ts +5 -0
- package/dist/lib/ui/NativeSelect.js +14 -0
- package/dist/lib/ui/NativeSelect.js.map +1 -0
- package/dist/lib/ui/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/Select.d.ts +13 -11
- package/dist/lib/ui/Select.js +34 -23
- package/dist/lib/ui/Select.js.map +1 -1
- package/dist/lib/ui/Separator.d.ts +4 -0
- package/dist/lib/ui/Separator.js +8 -0
- package/dist/lib/ui/Separator.js.map +1 -0
- package/dist/lib/ui/SyntaxHighlight.d.ts +4 -1
- package/dist/lib/ui/SyntaxHighlight.js +3 -2
- 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 +11 -2
- package/dist/lib/util/MdxComponents.js +9 -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.d.ts +6 -5
- package/dist/lib/util/invariant.js +4 -2
- package/dist/lib/util/invariant.js.map +1 -1
- package/dist/lib/util/os.d.ts +2 -0
- package/dist/lib/util/os.js +21 -0
- package/dist/lib/util/os.js.map +1 -0
- package/dist/lib/util/pastellize.js +4 -4
- package/dist/lib/util/pastellize.js.map +1 -1
- package/dist/lib/util/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/useCopyToClipboard.d.ts +1 -0
- package/dist/lib/util/useCopyToClipboard.js +11 -0
- package/dist/lib/util/useCopyToClipboard.js.map +1 -0
- package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -1
- package/dist/lib/util/useScrollToAnchor.js +5 -3
- package/dist/lib/util/useScrollToAnchor.js.map +1 -1
- package/dist/ts.d.ts +6 -0
- package/dist/ts.js +61 -0
- package/dist/ts.js.map +1 -0
- package/dist/vite/api/SchemaManager.d.ts +7 -5
- package/dist/vite/api/SchemaManager.js +62 -47
- package/dist/vite/api/SchemaManager.js.map +1 -1
- package/dist/vite/api/SchemaManager.test.js +6 -6
- package/dist/vite/api/SchemaManager.test.js.map +1 -1
- package/dist/vite/api/schema-codegen.js +71 -22
- package/dist/vite/api/schema-codegen.js.map +1 -1
- package/dist/vite/api/schema-codegen.test.js +156 -1
- package/dist/vite/api/schema-codegen.test.js.map +1 -1
- package/dist/vite/build.js +10 -31
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.js +18 -3
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/css/plugin.js +11 -0
- package/dist/vite/css/plugin.js.map +1 -1
- package/dist/vite/dev-server.js +12 -4
- 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.d.ts +3 -0
- package/dist/vite/mdx/remark-inject-filepath.js +6 -0
- package/dist/vite/mdx/remark-inject-filepath.js.map +1 -0
- package/dist/vite/mdx/remark-last-modified.d.ts +3 -0
- package/dist/vite/mdx/remark-last-modified.js +28 -0
- package/dist/vite/mdx/remark-last-modified.js.map +1 -0
- package/dist/vite/mdx/remark-link-rewrite.d.ts +2 -0
- package/dist/vite/mdx/remark-link-rewrite.js +20 -0
- package/dist/vite/mdx/remark-link-rewrite.js.map +1 -0
- package/dist/vite/mdx/remark-normalize-image-url.d.ts +2 -0
- package/dist/vite/mdx/remark-normalize-image-url.js +12 -0
- package/dist/vite/mdx/remark-normalize-image-url.js.map +1 -0
- package/dist/vite/{remarkStaticGeneration.d.ts → mdx/remark-static-generation.d.ts} +2 -2
- package/dist/vite/{remarkStaticGeneration.js → mdx/remark-static-generation.js} +2 -2
- package/dist/vite/mdx/remark-static-generation.js.map +1 -0
- package/dist/vite/mdx/utils.d.ts +2 -0
- package/dist/vite/mdx/utils.js +31 -0
- package/dist/vite/mdx/utils.js.map +1 -0
- 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 +29 -28
- 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-config-reload.js +2 -0
- package/dist/vite/plugin-config-reload.js.map +1 -1
- package/dist/vite/plugin-config.d.ts +1 -1
- package/dist/vite/plugin-config.js +2 -1
- package/dist/vite/plugin-config.js.map +1 -1
- package/dist/vite/plugin-custom-pages.d.ts +1 -1
- package/dist/vite/plugin-custom-pages.js +3 -3
- 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 +92 -62
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-frontmatter.js +7 -3
- 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 +57 -85
- 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 +4 -0
- package/dist/vite/plugin-navigation.js +67 -0
- package/dist/vite/plugin-navigation.js.map +1 -0
- 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.d.ts +8 -0
- package/dist/vite/plugin-theme.js +283 -0
- package/dist/vite/plugin-theme.js.map +1 -0
- package/dist/vite/plugin-theme.test.d.ts +1 -0
- package/dist/vite/plugin-theme.test.js +314 -0
- package/dist/vite/plugin-theme.test.js.map +1 -0
- package/dist/vite/plugin.d.ts +1 -1
- package/dist/vite/plugin.js +8 -8
- 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 +5 -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 +20 -0
- package/dist/vite/shadcn-registry.js +29 -0
- package/dist/vite/shadcn-registry.js.map +1 -0
- package/dist/vite/sitemap.js +14 -13
- 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-BE9IVkWV.js → Button-B3ucvvQw.js} +8 -7
- package/lib/Button-B3ucvvQw.js.map +1 -0
- package/lib/{Card-DPhGbYUM.js → Card-KFniaZn5.js} +3 -3
- package/lib/{Card-DPhGbYUM.js.map → Card-KFniaZn5.js.map} +1 -1
- package/lib/CategoryHeading-DhmodDcq.js +17 -0
- package/lib/CategoryHeading-DhmodDcq.js.map +1 -0
- package/lib/ClientOnly-E7hGysn1.js.map +1 -1
- package/lib/Command-CUcrW3qs.js +134 -0
- 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-BzkOKwgC.js → Drawer-Ci7XwhqT.js} +87 -87
- package/lib/{Drawer-BzkOKwgC.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/{Markdown-COBDvr4G.js → ErrorAlert-_1Zmhr68.js} +3253 -3130
- package/lib/ErrorAlert-_1Zmhr68.js.map +1 -0
- package/lib/MdxPage-B2t1EShN.js +240 -0
- package/lib/MdxPage-B2t1EShN.js.map +1 -0
- package/lib/OAuthErrorPage-DnKnq4xK.js +150 -0
- package/lib/OAuthErrorPage-DnKnq4xK.js.map +1 -0
- package/lib/OasProvider-BhuIkD4Z.js +36 -0
- package/lib/OasProvider-BhuIkD4Z.js.map +1 -0
- package/lib/OperationList-D8EDc9v7.js +5688 -0
- package/lib/OperationList-D8EDc9v7.js.map +1 -0
- package/lib/Pagination-hk-llhpw.js +37 -0
- package/lib/Pagination-hk-llhpw.js.map +1 -0
- package/lib/RouteGuard-Brz95MSt.js +77 -0
- package/lib/RouteGuard-Brz95MSt.js.map +1 -0
- package/lib/RouterError-CMaIfdjb.js +42 -0
- package/lib/RouterError-CMaIfdjb.js.map +1 -0
- package/lib/{SchemaList-CFiH9XCD.js → SchemaList-E6lF7dID.js} +31 -41
- package/lib/SchemaList-E6lF7dID.js.map +1 -0
- package/lib/SchemaView-CIv-OXgv.js +572 -0
- package/lib/SchemaView-CIv-OXgv.js.map +1 -0
- package/lib/Select-DFRCS31-.js +399 -0
- package/lib/Select-DFRCS31-.js.map +1 -0
- package/lib/SignUp-sGYAsj2K.js +50 -0
- package/lib/SignUp-sGYAsj2K.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-VHPtvkm2.js → SyntaxHighlight-C19vH0V_.js} +1469 -1422
- package/lib/SyntaxHighlight-C19vH0V_.js.map +1 -0
- package/lib/{Toc-CpVWtbJv.js → Toc-DbWS75JZ.js} +7 -7
- package/lib/Toc-DbWS75JZ.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-C8T14g4j.js → circular-BoYo7au5.js} +30 -30
- package/lib/{circular-C8T14g4j.js.map → circular-BoYo7au5.js.map} +1 -1
- package/lib/{cn-wvCW-ho6.js → cn-dYga0KKN.js} +2 -2
- package/lib/cn-dYga0KKN.js.map +1 -0
- package/lib/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-BNdsMmPY.js → createServer-B_BZ7xX8.js} +4921 -4597
- package/lib/createServer-B_BZ7xX8.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-CD873hrG.js +45 -0
- package/lib/errors-CD873hrG.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-BvvmIczU.js → index-BK0jKRrX.js} +166 -50
- package/lib/index-BK0jKRrX.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/index-DI5SPFK9.js.map +1 -1
- package/lib/index-HNVs5cgX.js +3667 -0
- package/lib/index-HNVs5cgX.js.map +1 -0
- package/lib/{index-zddirpDj.js → index-nGbmHh_A.js} +227 -222
- package/lib/index-nGbmHh_A.js.map +1 -0
- package/lib/index-pMMX55GH.js +1059 -0
- package/lib/index-pMMX55GH.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-BFcSKCe-.js → index.esm-BnYHxCYC.js} +2 -2
- package/lib/{index.esm-BFcSKCe-.js.map → index.esm-BnYHxCYC.js.map} +1 -1
- package/lib/{invariant-DAFpPywt.js → invariant-Bm-FVUQE.js} +2 -6
- package/lib/invariant-Bm-FVUQE.js.map +1 -0
- 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-BSeQ8pEK.js → mutation-BSU0xu4m.js} +2 -2
- package/lib/{mutation-BSeQ8pEK.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/removeExtensions.js.map +1 -1
- package/lib/processors/removeParameters.js.map +1 -1
- package/lib/processors/removePaths.js.map +1 -1
- package/lib/processors/traverse.js.map +1 -1
- package/lib/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 +2 -2
- package/lib/ui/Accordion.js.map +1 -1
- package/lib/ui/ActionButton.js +11 -11
- package/lib/ui/ActionButton.js.map +1 -1
- package/lib/ui/Alert.js +55 -39
- package/lib/ui/Alert.js.map +1 -1
- package/lib/ui/AlertDialog.js +2 -2
- package/lib/ui/AlertDialog.js.map +1 -1
- package/lib/ui/Badge.js +28 -14
- package/lib/ui/Badge.js.map +1 -1
- package/lib/ui/Breadcrumb.js +24 -23
- package/lib/ui/Breadcrumb.js.map +1 -1
- package/lib/ui/Button.js +7 -6
- package/lib/ui/Button.js.map +1 -1
- package/lib/ui/Callout.js +20 -20
- package/lib/ui/Callout.js.map +1 -1
- package/lib/ui/Card.js +2 -2
- package/lib/ui/Card.js.map +1 -1
- package/lib/ui/Carousel.js +2 -2
- 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 +203 -67
- package/lib/ui/CodeBlock.js.map +1 -1
- package/lib/ui/Collapsible.js +32 -5
- package/lib/ui/Collapsible.js.map +1 -1
- package/lib/ui/Command.js +22 -28
- package/lib/ui/Command.js.map +1 -1
- package/lib/ui/Dialog.js +140 -95
- package/lib/ui/Dialog.js.map +1 -1
- package/lib/ui/Drawer.js +3 -3
- package/lib/ui/DropdownMenu.js +2 -2
- package/lib/ui/DropdownMenu.js.map +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +84 -0
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -0
- package/lib/ui/Form.js +3 -3
- package/lib/ui/Form.js.map +1 -1
- package/lib/ui/Frame.js +81 -0
- package/lib/ui/Frame.js.map +1 -0
- package/lib/ui/HoverCard.js +2 -2
- package/lib/ui/HoverCard.js.map +1 -1
- package/lib/ui/Input.js +2 -2
- package/lib/ui/Input.js.map +1 -1
- package/lib/ui/Item.js +188 -0
- package/lib/ui/Item.js.map +1 -0
- package/lib/ui/Label.js +2 -2
- package/lib/ui/Label.js.map +1 -1
- package/lib/ui/NativeSelect.js +57 -0
- package/lib/ui/NativeSelect.js.map +1 -0
- package/lib/ui/Pagination.js +29 -30
- package/lib/ui/Pagination.js.map +1 -1
- package/lib/ui/Popover.js +2 -2
- package/lib/ui/Popover.js.map +1 -1
- package/lib/ui/Progress.js +2 -2
- package/lib/ui/Progress.js.map +1 -1
- package/lib/ui/RadioGroup.js +2 -2
- package/lib/ui/RadioGroup.js.map +1 -1
- package/lib/ui/ReactComponentDoc.js +28 -0
- package/lib/ui/ReactComponentDoc.js.map +1 -0
- package/lib/ui/ScrollArea.js +2 -2
- package/lib/ui/ScrollArea.js.map +1 -1
- package/lib/ui/Secret.js +106 -0
- package/lib/ui/Secret.js.map +1 -0
- package/lib/ui/Select.js +166 -116
- package/lib/ui/Select.js.map +1 -1
- package/lib/ui/Separator.js +27 -0
- package/lib/ui/Separator.js.map +1 -0
- package/lib/ui/Skeleton.js +2 -2
- package/lib/ui/Skeleton.js.map +1 -1
- package/lib/ui/Slider.js +2 -2
- package/lib/ui/Slider.js.map +1 -1
- package/lib/ui/Stepper.js +1 -1
- package/lib/ui/Stepper.js.map +1 -1
- package/lib/ui/Switch.js +2 -2
- package/lib/ui/Switch.js.map +1 -1
- package/lib/ui/SyntaxHighlight.js +6 -5
- package/lib/ui/SyntaxHighlight.js.map +1 -1
- package/lib/ui/Tabs.js +12 -12
- package/lib/ui/Tabs.js.map +1 -1
- package/lib/ui/Textarea.js +2 -2
- package/lib/ui/Textarea.js.map +1 -1
- package/lib/ui/Toggle.js +2 -2
- package/lib/ui/Toggle.js.map +1 -1
- package/lib/ui/ToggleGroup.js +2 -2
- 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/ui/util.js +1 -1
- package/lib/useCopyToClipboard-B_085nfO.js +14 -0
- package/lib/useCopyToClipboard-B_085nfO.js.map +1 -0
- package/lib/useExposedProps-U3pmsHaG.js +113 -0
- package/lib/useExposedProps-U3pmsHaG.js.map +1 -0
- package/lib/useLatest-hmRS46UF.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 +3084 -0
- package/lib/zudoku.__internal.js.map +1 -0
- package/lib/zudoku.auth-auth0.js +23 -22
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-azureb2c.js +136 -0
- package/lib/zudoku.auth-azureb2c.js.map +1 -0
- package/lib/zudoku.auth-clerk.js +59 -65
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +372 -383
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.auth-supabase.js +154 -0
- package/lib/zudoku.auth-supabase.js.map +1 -0
- package/lib/zudoku.components.js +27 -4573
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +13 -14
- 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 +62 -55
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +456 -328
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +15 -18
- package/lib/zudoku.plugin-custom-pages.js.map +1 -1
- package/lib/zudoku.plugin-markdown.js +21 -70
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +7 -7
- package/lib/zudoku.plugin-redirect.js +1 -1
- package/lib/zudoku.plugin-redirect.js.map +1 -1
- package/lib/zudoku.plugin-search-inkeep.js +54 -57
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +213 -119
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js.map +1 -1
- package/lib/zudoku.router.js +2507 -0
- package/lib/zudoku.router.js.map +1 -0
- package/package.json +140 -114
- package/src/app/ZuploBuildConfig.ts +7 -7
- package/src/app/defaultTheme.css +68 -49
- package/src/app/demo.tsx +25 -7
- package/src/app/entry.client.tsx +7 -8
- package/src/app/entry.server.tsx +20 -12
- package/src/app/env.ts +10 -2
- package/src/app/main.css +59 -33
- package/src/app/main.tsx +46 -36
- package/src/app/standalone.tsx +14 -8
- 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 +121 -0
- package/src/lib/auth/issuer.ts +44 -0
- package/src/lib/authentication/AuthenticationPlugin.tsx +4 -4
- package/src/lib/authentication/authentication.ts +26 -8
- package/src/lib/authentication/components/CallbackHandler.tsx +23 -16
- package/src/lib/authentication/components/OAuthErrorPage.tsx +171 -0
- package/src/lib/authentication/components/SignIn.tsx +12 -17
- package/src/lib/authentication/components/SignOut.tsx +7 -6
- package/src/lib/authentication/components/SignUp.tsx +5 -8
- package/src/lib/authentication/errors.ts +27 -13
- package/src/lib/authentication/hook.ts +23 -10
- package/src/lib/authentication/providers/auth0.tsx +15 -10
- package/src/lib/authentication/providers/azureb2c.tsx +208 -0
- package/src/lib/authentication/providers/clerk.tsx +21 -20
- package/src/lib/authentication/providers/firebase.tsx +284 -0
- package/src/lib/authentication/providers/openid.tsx +95 -12
- package/src/lib/authentication/providers/supabase/SupabaseAuthUI.tsx +75 -0
- package/src/lib/authentication/providers/supabase.tsx +63 -58
- package/src/lib/authentication/state.ts +40 -30
- 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 +14 -4
- package/src/lib/components/Banner.tsx +1 -2
- package/src/lib/components/Bootstrap.tsx +1 -0
- package/src/lib/components/BuildCheck.tsx +26 -13
- package/src/lib/components/CategoryHeading.tsx +4 -1
- package/src/lib/components/ErrorPage.tsx +3 -3
- package/src/lib/components/Footer.tsx +1 -1
- package/src/lib/components/Framed.tsx +51 -0
- package/src/lib/components/Header.tsx +28 -25
- package/src/lib/components/Heading.tsx +11 -12
- package/src/lib/components/LanguageIcon.tsx +181 -0
- package/src/lib/components/Layout.tsx +6 -24
- package/src/lib/components/Main.tsx +10 -10
- package/src/lib/components/Markdown.tsx +11 -10
- package/src/lib/components/Meta.tsx +45 -0
- package/src/lib/components/MobileTopNavigation.tsx +70 -15
- package/src/lib/components/NotFoundPage.tsx +6 -5
- package/src/lib/components/PageProgress.tsx +28 -0
- package/src/lib/components/Pagination.tsx +5 -4
- 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/StatusPage.tsx +5 -0
- package/src/lib/components/TopNavigation.tsx +77 -70
- package/src/lib/components/Typography.tsx +14 -0
- 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 +77 -43
- package/src/lib/components/context/ZudokuProvider.tsx +1 -1
- package/src/lib/components/index.ts +5 -19
- package/src/lib/components/navigation/{Sidebar.tsx → Navigation.tsx} +18 -16
- package/src/lib/components/navigation/{SidebarBadge.tsx → NavigationBadge.tsx} +1 -1
- package/src/lib/components/navigation/{SidebarCategory.tsx → NavigationCategory.tsx} +25 -16
- package/src/lib/components/navigation/{SidebarItem.tsx → NavigationItem.tsx} +42 -39
- package/src/lib/components/navigation/{SidebarWrapper.tsx → NavigationWrapper.tsx} +8 -5
- 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 +50 -46
- package/src/lib/core/RouteGuard.tsx +52 -32
- package/src/lib/core/ZudokuContext.ts +74 -23
- package/src/lib/core/__internal.tsx +30 -0
- package/src/lib/core/plugins.ts +4 -3
- package/src/lib/core/router.ts +1 -0
- package/src/lib/errors/ErrorAlert.tsx +8 -17
- package/src/lib/errors/RouterError.tsx +7 -2
- package/src/lib/errors/TopLevelError.tsx +2 -4
- package/src/lib/hooks/useEvent.test.tsx +9 -7
- package/src/lib/hooks/useHotkey.ts +70 -0
- 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 +8 -1
- package/src/lib/plugins/api-catalog/index.tsx +19 -19
- package/src/lib/plugins/api-keys/CreateApiKey.tsx +18 -4
- 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 +65 -71
- package/src/lib/plugins/api-keys/index.tsx +50 -25
- package/src/lib/plugins/custom-pages/index.tsx +24 -16
- package/src/lib/plugins/markdown/MdxPage.tsx +204 -32
- 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 +27 -42
- 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 +51 -31
- package/src/lib/plugins/openapi/OperationListItem.tsx +106 -79
- package/src/lib/plugins/openapi/ParamInfos.tsx +10 -9
- package/src/lib/plugins/openapi/ParameterList.tsx +40 -28
- package/src/lib/plugins/openapi/ParameterListItem.tsx +110 -59
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +8 -13
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +51 -9
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +75 -29
- package/src/lib/plugins/openapi/SchemaList.tsx +5 -11
- package/src/lib/plugins/openapi/Sidecar.tsx +138 -72
- package/src/lib/plugins/openapi/SidecarBox.tsx +26 -4
- package/src/lib/plugins/openapi/SidecarExamples.tsx +93 -87
- 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/ConstValue.tsx +1 -1
- package/src/lib/plugins/openapi/components/EnumValues.tsx +2 -2
- package/src/lib/plugins/openapi/components/NonHighlightedCode.tsx +22 -0
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +63 -53
- package/src/lib/plugins/openapi/context.tsx +1 -1
- package/src/lib/plugins/openapi/graphql/fragment-masking.ts +1 -1
- package/src/lib/plugins/openapi/graphql/gql.ts +11 -11
- package/src/lib/plugins/openapi/graphql/graphql.ts +33 -9
- package/src/lib/plugins/openapi/index.tsx +90 -59
- package/src/lib/plugins/openapi/interfaces.ts +22 -7
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +257 -32
- package/src/lib/plugins/openapi/playground/CollapsibleHeader.tsx +51 -0
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +11 -6
- package/src/lib/plugins/openapi/playground/Headers.tsx +158 -176
- package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +4 -3
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +8 -13
- package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +34 -2
- package/src/lib/plugins/openapi/playground/PathParams.tsx +26 -35
- package/src/lib/plugins/openapi/playground/Playground.tsx +263 -159
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +23 -33
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +92 -100
- package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +20 -1
- package/src/lib/plugins/openapi/playground/Spinner.tsx +87 -0
- package/src/lib/plugins/openapi/playground/fileUtils.ts +1 -1
- package/src/lib/plugins/openapi/playground/request-panel/MultipartField.tsx +91 -0
- package/src/lib/plugins/openapi/playground/request-panel/UrlPath.tsx +31 -0
- package/src/lib/plugins/openapi/playground/request-panel/UrlQueryParams.tsx +25 -0
- 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/Highlight.tsx +26 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.tsx +117 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +189 -115
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +70 -94
- 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/SchemaExampleAndDefault.tsx +4 -4
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +94 -79
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +89 -55
- package/src/lib/plugins/openapi/schema/UnionView.tsx +132 -0
- package/src/lib/plugins/openapi/schema/union-helpers.ts +123 -0
- package/src/lib/plugins/openapi/schema/utils.ts +3 -13
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +2 -2
- package/src/lib/plugins/openapi/util/{createSidebarCategory.tsx → createNavigationCategory.tsx} +7 -5
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +14 -15
- package/src/lib/plugins/openapi/util/getRoutes.tsx +4 -4
- package/src/lib/plugins/openapi/util/methodColorMap.tsx +1 -1
- package/src/lib/plugins/search-inkeep/index.tsx +54 -58
- package/src/lib/plugins/search-inkeep/inkeep.ts +19 -21
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +3 -4
- package/src/lib/plugins/search-pagefind/ResultList.tsx +16 -8
- package/src/lib/plugins/search-pagefind/get-results.tsx +0 -1
- package/src/lib/shiki.ts +37 -8
- package/src/lib/ui/ActionButton.tsx +3 -1
- package/src/lib/ui/Alert.tsx +45 -39
- package/src/lib/ui/Badge.tsx +21 -12
- 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 +37 -61
- package/src/lib/ui/Collapsible.tsx +26 -4
- package/src/lib/ui/Command.tsx +2 -4
- package/src/lib/ui/Dialog.tsx +113 -99
- package/src/lib/ui/EmbeddedCodeBlock.tsx +99 -0
- package/src/lib/ui/Form.tsx +4 -4
- package/src/lib/ui/Frame.tsx +81 -0
- package/src/lib/ui/Item.tsx +192 -0
- package/src/lib/ui/NativeSelect.tsx +47 -0
- package/src/lib/ui/Pagination.tsx +1 -2
- package/src/lib/ui/ReactComponentDoc.tsx +68 -0
- package/src/lib/ui/Secret.tsx +123 -0
- package/src/lib/ui/Select.tsx +153 -126
- package/src/lib/ui/Separator.tsx +25 -0
- package/src/lib/ui/SyntaxHighlight.tsx +16 -3
- 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 +24 -5
- 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 +8 -5
- package/src/lib/util/os.ts +18 -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/useCopyToClipboard.ts +17 -0
- package/src/lib/util/useIsomorphicLayoutEffect.ts +1 -0
- package/src/lib/util/useScrollToAnchor.ts +6 -4
- 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/src/shiki/langs/vue-vine.js +1 -0
- package/dist/config/index.d.ts +0 -4
- package/dist/config/index.js +0 -2
- package/dist/config/index.js.map +0 -1
- package/dist/config/validators/InputSidebarSchema.d.ts +0 -221
- package/dist/config/validators/InputSidebarSchema.js +0 -80
- package/dist/config/validators/InputSidebarSchema.js.map +0 -1
- package/dist/config/validators/SidebarSchema.d.ts +0 -46
- package/dist/config/validators/SidebarSchema.js +0 -118
- package/dist/config/validators/SidebarSchema.js.map +0 -1
- package/dist/config/validators/flat-config.d.ts +0 -420
- package/dist/config/validators/flat-config.js +0 -2
- package/dist/config/validators/flat-config.js.map +0 -1
- 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/components/navigation/Sidebar.d.ts +0 -5
- package/dist/lib/components/navigation/Sidebar.js +0 -10
- package/dist/lib/components/navigation/Sidebar.js.map +0 -1
- package/dist/lib/components/navigation/SidebarBadge.js.map +0 -1
- package/dist/lib/components/navigation/SidebarCategory.d.ts +0 -5
- package/dist/lib/components/navigation/SidebarCategory.js.map +0 -1
- package/dist/lib/components/navigation/SidebarItem.d.ts +0 -6
- package/dist/lib/components/navigation/SidebarItem.js +0 -44
- package/dist/lib/components/navigation/SidebarItem.js.map +0 -1
- package/dist/lib/components/navigation/SidebarWrapper.js.map +0 -1
- package/dist/lib/plugins/custom-pages/CustomPage.d.ts +0 -2
- package/dist/lib/plugins/custom-pages/CustomPage.js +0 -11
- package/dist/lib/plugins/custom-pages/CustomPage.js.map +0 -1
- package/dist/lib/plugins/markdown/resolver.d.ts +0 -32
- package/dist/lib/plugins/markdown/resolver.js +0 -46
- package/dist/lib/plugins/markdown/resolver.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/playground/UrlDisplay.d.ts +0 -4
- package/dist/lib/plugins/openapi/playground/UrlDisplay.js +0 -22
- package/dist/lib/plugins/openapi/playground/UrlDisplay.js.map +0 -1
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.d.ts +0 -7
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js +0 -11
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.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/dist/lib/plugins/openapi/util/createSidebarCategory.d.ts +0 -9
- package/dist/lib/plugins/openapi/util/createSidebarCategory.js.map +0 -1
- package/dist/vite/plugin-configure-tailwind.d.ts +0 -2
- package/dist/vite/plugin-configure-tailwind.js +0 -38
- package/dist/vite/plugin-configure-tailwind.js.map +0 -1
- package/dist/vite/plugin-sidebar.d.ts +0 -4
- package/dist/vite/plugin-sidebar.js +0 -63
- package/dist/vite/plugin-sidebar.js.map +0 -1
- package/dist/vite/plugin-theme-css.d.ts +0 -5
- package/dist/vite/plugin-theme-css.js +0 -77
- package/dist/vite/plugin-theme-css.js.map +0 -1
- package/dist/vite/remarkStaticGeneration.js.map +0 -1
- package/lib/Button-BE9IVkWV.js.map +0 -1
- package/lib/Callout-CoVxYafP.js +0 -231
- package/lib/Callout-CoVxYafP.js.map +0 -1
- package/lib/CategoryHeading-Cu2RwgjC.js +0 -10
- package/lib/CategoryHeading-Cu2RwgjC.js.map +0 -1
- package/lib/Dialog-BxpuVLh9.js +0 -99
- package/lib/Dialog-BxpuVLh9.js.map +0 -1
- package/lib/Markdown-COBDvr4G.js.map +0 -1
- package/lib/MdxPage-Dwb723gn.js +0 -84
- package/lib/MdxPage-Dwb723gn.js.map +0 -1
- package/lib/OasProvider-DZq25XRY.js +0 -33
- package/lib/OasProvider-DZq25XRY.js.map +0 -1
- package/lib/OperationList-ClZqCrZL.js +0 -5153
- package/lib/OperationList-ClZqCrZL.js.map +0 -1
- package/lib/Pagination-CCxhL836.js +0 -36
- package/lib/Pagination-CCxhL836.js.map +0 -1
- package/lib/RouteGuard-CZ_uLv3g.js +0 -55
- package/lib/RouteGuard-CZ_uLv3g.js.map +0 -1
- package/lib/SchemaList-CFiH9XCD.js.map +0 -1
- package/lib/SchemaView-DcAEVFMX.js +0 -375
- package/lib/SchemaView-DcAEVFMX.js.map +0 -1
- package/lib/SignUp-B-1Pvc-8.js +0 -63
- package/lib/SignUp-B-1Pvc-8.js.map +0 -1
- package/lib/Slot-CX5MJIIl.js +0 -160
- package/lib/Slot-CX5MJIIl.js.map +0 -1
- package/lib/SyntaxHighlight-VHPtvkm2.js.map +0 -1
- package/lib/Toc-CpVWtbJv.js.map +0 -1
- package/lib/chunk-DQRVZFIR-BblmKnHy.js +0 -1839
- package/lib/chunk-DQRVZFIR-BblmKnHy.js.map +0 -1
- package/lib/cn-wvCW-ho6.js.map +0 -1
- package/lib/createServer-BNdsMmPY.js.map +0 -1
- package/lib/hook-k7PfUIsj.js +0 -1465
- package/lib/hook-k7PfUIsj.js.map +0 -1
- package/lib/index--oeBayMa.js +0 -86
- package/lib/index--oeBayMa.js.map +0 -1
- package/lib/index-Bn6Lc9tq.js +0 -9
- package/lib/index-Bn6Lc9tq.js.map +0 -1
- package/lib/index-BvvmIczU.js.map +0 -1
- package/lib/index-DxDMCSQ1.js +0 -3226
- package/lib/index-DxDMCSQ1.js.map +0 -1
- package/lib/index-QzXzw_ra.js +0 -24
- package/lib/index-QzXzw_ra.js.map +0 -1
- package/lib/index-zddirpDj.js.map +0 -1
- package/lib/index.esm-Cp4wkyud.js +0 -1236
- package/lib/index.esm-Cp4wkyud.js.map +0 -1
- package/lib/invariant-DAFpPywt.js.map +0 -1
- package/lib/joinPath-B7kNnUX4.js +0 -8
- package/lib/joinPath-B7kNnUX4.js.map +0 -1
- package/lib/jsx-runtime-C5mzlN2N.js.map +0 -1
- package/lib/objectEntries-yMIkr2mI.js +0 -5
- package/lib/objectEntries-yMIkr2mI.js.map +0 -1
- package/lib/react-nprogress.esm-C2MPXjiJ.js +0 -389
- package/lib/react-nprogress.esm-C2MPXjiJ.js.map +0 -1
- package/lib/useExposedProps-BZQkZneR.js +0 -9
- package/lib/useExposedProps-BZQkZneR.js.map +0 -1
- package/lib/useMutation-CZSmsIGW.js +0 -97
- package/lib/useMutation-CZSmsIGW.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/custom-pages/CustomPage.tsx +0 -18
- package/src/lib/plugins/markdown/resolver.ts +0 -59
- package/src/lib/plugins/openapi/playground/InlineInput.tsx +0 -6
- package/src/lib/plugins/openapi/playground/UrlDisplay.tsx +0 -32
- package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +0 -73
- 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,1839 +0,0 @@
|
|
|
1
|
-
import * as i from "react";
|
|
2
|
-
var F = {}, ue;
|
|
3
|
-
function Ae() {
|
|
4
|
-
if (ue) return F;
|
|
5
|
-
ue = 1, Object.defineProperty(F, "__esModule", { value: !0 }), F.parse = s, F.serialize = u;
|
|
6
|
-
const e = /^[\u0021-\u003A\u003C\u003E-\u007E]+$/, t = /^[\u0021-\u003A\u003C-\u007E]*$/, r = /^([.]?[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)([.][a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)*$/i, o = /^[\u0020-\u003A\u003D-\u007E]*$/, n = Object.prototype.toString, a = /* @__PURE__ */ (() => {
|
|
7
|
-
const f = function() {
|
|
8
|
-
};
|
|
9
|
-
return f.prototype = /* @__PURE__ */ Object.create(null), f;
|
|
10
|
-
})();
|
|
11
|
-
function s(f, g) {
|
|
12
|
-
const d = new a(), v = f.length;
|
|
13
|
-
if (v < 2)
|
|
14
|
-
return d;
|
|
15
|
-
const E = g?.decode || m;
|
|
16
|
-
let h = 0;
|
|
17
|
-
do {
|
|
18
|
-
const w = f.indexOf("=", h);
|
|
19
|
-
if (w === -1)
|
|
20
|
-
break;
|
|
21
|
-
const y = f.indexOf(";", h), b = y === -1 ? v : y;
|
|
22
|
-
if (w > b) {
|
|
23
|
-
h = f.lastIndexOf(";", w - 1) + 1;
|
|
24
|
-
continue;
|
|
25
|
-
}
|
|
26
|
-
const R = c(f, h, w), C = l(f, w, R), $ = f.slice(R, C);
|
|
27
|
-
if (d[$] === void 0) {
|
|
28
|
-
let S = c(f, w + 1, b), P = l(f, b, S);
|
|
29
|
-
const O = E(f.slice(S, P));
|
|
30
|
-
d[$] = O;
|
|
31
|
-
}
|
|
32
|
-
h = b + 1;
|
|
33
|
-
} while (h < v);
|
|
34
|
-
return d;
|
|
35
|
-
}
|
|
36
|
-
function c(f, g, d) {
|
|
37
|
-
do {
|
|
38
|
-
const v = f.charCodeAt(g);
|
|
39
|
-
if (v !== 32 && v !== 9)
|
|
40
|
-
return g;
|
|
41
|
-
} while (++g < d);
|
|
42
|
-
return d;
|
|
43
|
-
}
|
|
44
|
-
function l(f, g, d) {
|
|
45
|
-
for (; g > d; ) {
|
|
46
|
-
const v = f.charCodeAt(--g);
|
|
47
|
-
if (v !== 32 && v !== 9)
|
|
48
|
-
return g + 1;
|
|
49
|
-
}
|
|
50
|
-
return d;
|
|
51
|
-
}
|
|
52
|
-
function u(f, g, d) {
|
|
53
|
-
const v = d?.encode || encodeURIComponent;
|
|
54
|
-
if (!e.test(f))
|
|
55
|
-
throw new TypeError(`argument name is invalid: ${f}`);
|
|
56
|
-
const E = v(g);
|
|
57
|
-
if (!t.test(E))
|
|
58
|
-
throw new TypeError(`argument val is invalid: ${g}`);
|
|
59
|
-
let h = f + "=" + E;
|
|
60
|
-
if (!d)
|
|
61
|
-
return h;
|
|
62
|
-
if (d.maxAge !== void 0) {
|
|
63
|
-
if (!Number.isInteger(d.maxAge))
|
|
64
|
-
throw new TypeError(`option maxAge is invalid: ${d.maxAge}`);
|
|
65
|
-
h += "; Max-Age=" + d.maxAge;
|
|
66
|
-
}
|
|
67
|
-
if (d.domain) {
|
|
68
|
-
if (!r.test(d.domain))
|
|
69
|
-
throw new TypeError(`option domain is invalid: ${d.domain}`);
|
|
70
|
-
h += "; Domain=" + d.domain;
|
|
71
|
-
}
|
|
72
|
-
if (d.path) {
|
|
73
|
-
if (!o.test(d.path))
|
|
74
|
-
throw new TypeError(`option path is invalid: ${d.path}`);
|
|
75
|
-
h += "; Path=" + d.path;
|
|
76
|
-
}
|
|
77
|
-
if (d.expires) {
|
|
78
|
-
if (!p(d.expires) || !Number.isFinite(d.expires.valueOf()))
|
|
79
|
-
throw new TypeError(`option expires is invalid: ${d.expires}`);
|
|
80
|
-
h += "; Expires=" + d.expires.toUTCString();
|
|
81
|
-
}
|
|
82
|
-
if (d.httpOnly && (h += "; HttpOnly"), d.secure && (h += "; Secure"), d.partitioned && (h += "; Partitioned"), d.priority)
|
|
83
|
-
switch (typeof d.priority == "string" ? d.priority.toLowerCase() : void 0) {
|
|
84
|
-
case "low":
|
|
85
|
-
h += "; Priority=Low";
|
|
86
|
-
break;
|
|
87
|
-
case "medium":
|
|
88
|
-
h += "; Priority=Medium";
|
|
89
|
-
break;
|
|
90
|
-
case "high":
|
|
91
|
-
h += "; Priority=High";
|
|
92
|
-
break;
|
|
93
|
-
default:
|
|
94
|
-
throw new TypeError(`option priority is invalid: ${d.priority}`);
|
|
95
|
-
}
|
|
96
|
-
if (d.sameSite)
|
|
97
|
-
switch (typeof d.sameSite == "string" ? d.sameSite.toLowerCase() : d.sameSite) {
|
|
98
|
-
case !0:
|
|
99
|
-
case "strict":
|
|
100
|
-
h += "; SameSite=Strict";
|
|
101
|
-
break;
|
|
102
|
-
case "lax":
|
|
103
|
-
h += "; SameSite=Lax";
|
|
104
|
-
break;
|
|
105
|
-
case "none":
|
|
106
|
-
h += "; SameSite=None";
|
|
107
|
-
break;
|
|
108
|
-
default:
|
|
109
|
-
throw new TypeError(`option sameSite is invalid: ${d.sameSite}`);
|
|
110
|
-
}
|
|
111
|
-
return h;
|
|
112
|
-
}
|
|
113
|
-
function m(f) {
|
|
114
|
-
if (f.indexOf("%") === -1)
|
|
115
|
-
return f;
|
|
116
|
-
try {
|
|
117
|
-
return decodeURIComponent(f);
|
|
118
|
-
} catch {
|
|
119
|
-
return f;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
function p(f) {
|
|
123
|
-
return n.call(f) === "[object Date]";
|
|
124
|
-
}
|
|
125
|
-
return F;
|
|
126
|
-
}
|
|
127
|
-
Ae();
|
|
128
|
-
/**
|
|
129
|
-
* react-router v7.6.1
|
|
130
|
-
*
|
|
131
|
-
* Copyright (c) Remix Software Inc.
|
|
132
|
-
*
|
|
133
|
-
* This source code is licensed under the MIT license found in the
|
|
134
|
-
* LICENSE.md file in the root directory of this source tree.
|
|
135
|
-
*
|
|
136
|
-
* @license MIT
|
|
137
|
-
*/
|
|
138
|
-
function x(e, t) {
|
|
139
|
-
if (e === !1 || e === null || typeof e > "u")
|
|
140
|
-
throw new Error(t);
|
|
141
|
-
}
|
|
142
|
-
function L(e, t) {
|
|
143
|
-
if (!e) {
|
|
144
|
-
typeof console < "u" && console.warn(t);
|
|
145
|
-
try {
|
|
146
|
-
throw new Error(t);
|
|
147
|
-
} catch {
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
function W({
|
|
152
|
-
pathname: e = "/",
|
|
153
|
-
search: t = "",
|
|
154
|
-
hash: r = ""
|
|
155
|
-
}) {
|
|
156
|
-
return t && t !== "?" && (e += t.charAt(0) === "?" ? t : "?" + t), r && r !== "#" && (e += r.charAt(0) === "#" ? r : "#" + r), e;
|
|
157
|
-
}
|
|
158
|
-
function Y(e) {
|
|
159
|
-
let t = {};
|
|
160
|
-
if (e) {
|
|
161
|
-
let r = e.indexOf("#");
|
|
162
|
-
r >= 0 && (t.hash = e.substring(r), e = e.substring(0, r));
|
|
163
|
-
let o = e.indexOf("?");
|
|
164
|
-
o >= 0 && (t.search = e.substring(o), e = e.substring(0, o)), e && (t.pathname = e);
|
|
165
|
-
}
|
|
166
|
-
return t;
|
|
167
|
-
}
|
|
168
|
-
function pe(e, t, r = "/") {
|
|
169
|
-
return Oe(e, t, r, !1);
|
|
170
|
-
}
|
|
171
|
-
function Oe(e, t, r, o) {
|
|
172
|
-
let n = typeof t == "string" ? Y(t) : t, a = A(n.pathname || "/", r);
|
|
173
|
-
if (a == null)
|
|
174
|
-
return null;
|
|
175
|
-
let s = ge(e);
|
|
176
|
-
De(s);
|
|
177
|
-
let c = null;
|
|
178
|
-
for (let l = 0; c == null && l < s.length; ++l) {
|
|
179
|
-
let u = ye(a);
|
|
180
|
-
c = ze(
|
|
181
|
-
s[l],
|
|
182
|
-
u,
|
|
183
|
-
o
|
|
184
|
-
);
|
|
185
|
-
}
|
|
186
|
-
return c;
|
|
187
|
-
}
|
|
188
|
-
function ge(e, t = [], r = [], o = "") {
|
|
189
|
-
let n = (a, s, c) => {
|
|
190
|
-
let l = {
|
|
191
|
-
relativePath: c === void 0 ? a.path || "" : c,
|
|
192
|
-
caseSensitive: a.caseSensitive === !0,
|
|
193
|
-
childrenIndex: s,
|
|
194
|
-
route: a
|
|
195
|
-
};
|
|
196
|
-
l.relativePath.startsWith("/") && (x(
|
|
197
|
-
l.relativePath.startsWith(o),
|
|
198
|
-
`Absolute route path "${l.relativePath}" nested under path "${o}" is not valid. An absolute child route path must start with the combined path of all its parent routes.`
|
|
199
|
-
), l.relativePath = l.relativePath.slice(o.length));
|
|
200
|
-
let u = M([o, l.relativePath]), m = r.concat(l);
|
|
201
|
-
a.children && a.children.length > 0 && (x(
|
|
202
|
-
// Our types know better, but runtime JS may not!
|
|
203
|
-
// @ts-expect-error
|
|
204
|
-
a.index !== !0,
|
|
205
|
-
`Index routes must not have child routes. Please remove all child routes from route path "${u}".`
|
|
206
|
-
), ge(a.children, t, m, u)), !(a.path == null && !a.index) && t.push({
|
|
207
|
-
path: u,
|
|
208
|
-
score: He(u, a.index),
|
|
209
|
-
routesMeta: m
|
|
210
|
-
});
|
|
211
|
-
};
|
|
212
|
-
return e.forEach((a, s) => {
|
|
213
|
-
if (a.path === "" || !a.path?.includes("?"))
|
|
214
|
-
n(a, s);
|
|
215
|
-
else
|
|
216
|
-
for (let c of ve(a.path))
|
|
217
|
-
n(a, s, c);
|
|
218
|
-
}), t;
|
|
219
|
-
}
|
|
220
|
-
function ve(e) {
|
|
221
|
-
let t = e.split("/");
|
|
222
|
-
if (t.length === 0) return [];
|
|
223
|
-
let [r, ...o] = t, n = r.endsWith("?"), a = r.replace(/\?$/, "");
|
|
224
|
-
if (o.length === 0)
|
|
225
|
-
return n ? [a, ""] : [a];
|
|
226
|
-
let s = ve(o.join("/")), c = [];
|
|
227
|
-
return c.push(
|
|
228
|
-
...s.map(
|
|
229
|
-
(l) => l === "" ? a : [a, l].join("/")
|
|
230
|
-
)
|
|
231
|
-
), n && c.push(...s), c.map(
|
|
232
|
-
(l) => e.startsWith("/") && l === "" ? "/" : l
|
|
233
|
-
);
|
|
234
|
-
}
|
|
235
|
-
function De(e) {
|
|
236
|
-
e.sort(
|
|
237
|
-
(t, r) => t.score !== r.score ? r.score - t.score : je(
|
|
238
|
-
t.routesMeta.map((o) => o.childrenIndex),
|
|
239
|
-
r.routesMeta.map((o) => o.childrenIndex)
|
|
240
|
-
)
|
|
241
|
-
);
|
|
242
|
-
}
|
|
243
|
-
var Ie = /^:[\w-]+$/, _e = 3, Fe = 2, Ue = 1, We = 10, Be = -2, ce = (e) => e === "*";
|
|
244
|
-
function He(e, t) {
|
|
245
|
-
let r = e.split("/"), o = r.length;
|
|
246
|
-
return r.some(ce) && (o += Be), t && (o += Fe), r.filter((n) => !ce(n)).reduce(
|
|
247
|
-
(n, a) => n + (Ie.test(a) ? _e : a === "" ? Ue : We),
|
|
248
|
-
o
|
|
249
|
-
);
|
|
250
|
-
}
|
|
251
|
-
function je(e, t) {
|
|
252
|
-
return e.length === t.length && e.slice(0, -1).every((o, n) => o === t[n]) ? (
|
|
253
|
-
// If two routes are siblings, we should try to match the earlier sibling
|
|
254
|
-
// first. This allows people to have fine-grained control over the matching
|
|
255
|
-
// behavior by simply putting routes with identical paths in the order they
|
|
256
|
-
// want them tried.
|
|
257
|
-
e[e.length - 1] - t[t.length - 1]
|
|
258
|
-
) : (
|
|
259
|
-
// Otherwise, it doesn't really make sense to rank non-siblings by index,
|
|
260
|
-
// so they sort equally.
|
|
261
|
-
0
|
|
262
|
-
);
|
|
263
|
-
}
|
|
264
|
-
function ze(e, t, r = !1) {
|
|
265
|
-
let { routesMeta: o } = e, n = {}, a = "/", s = [];
|
|
266
|
-
for (let c = 0; c < o.length; ++c) {
|
|
267
|
-
let l = o[c], u = c === o.length - 1, m = a === "/" ? t : t.slice(a.length) || "/", p = B(
|
|
268
|
-
{ path: l.relativePath, caseSensitive: l.caseSensitive, end: u },
|
|
269
|
-
m
|
|
270
|
-
), f = l.route;
|
|
271
|
-
if (!p && u && r && !o[o.length - 1].route.index && (p = B(
|
|
272
|
-
{
|
|
273
|
-
path: l.relativePath,
|
|
274
|
-
caseSensitive: l.caseSensitive,
|
|
275
|
-
end: !1
|
|
276
|
-
},
|
|
277
|
-
m
|
|
278
|
-
)), !p)
|
|
279
|
-
return null;
|
|
280
|
-
Object.assign(n, p.params), s.push({
|
|
281
|
-
// TODO: Can this as be avoided?
|
|
282
|
-
params: n,
|
|
283
|
-
pathname: M([a, p.pathname]),
|
|
284
|
-
pathnameBase: qe(
|
|
285
|
-
M([a, p.pathnameBase])
|
|
286
|
-
),
|
|
287
|
-
route: f
|
|
288
|
-
}), p.pathnameBase !== "/" && (a = M([a, p.pathnameBase]));
|
|
289
|
-
}
|
|
290
|
-
return s;
|
|
291
|
-
}
|
|
292
|
-
function or(e, t = {}) {
|
|
293
|
-
let r = e;
|
|
294
|
-
r.endsWith("*") && r !== "*" && !r.endsWith("/*") && (L(
|
|
295
|
-
!1,
|
|
296
|
-
`Route path "${r}" will be treated as if it were "${r.replace(/\*$/, "/*")}" because the \`*\` character must always follow a \`/\` in the pattern. To get rid of this warning, please change the route path to "${r.replace(/\*$/, "/*")}".`
|
|
297
|
-
), r = r.replace(/\*$/, "/*"));
|
|
298
|
-
const o = r.startsWith("/") ? "/" : "", n = (s) => s == null ? "" : typeof s == "string" ? s : String(s), a = r.split(/\/+/).map((s, c, l) => {
|
|
299
|
-
if (c === l.length - 1 && s === "*")
|
|
300
|
-
return n(t["*"]);
|
|
301
|
-
const m = s.match(/^:([\w-]+)(\??)$/);
|
|
302
|
-
if (m) {
|
|
303
|
-
const [, p, f] = m;
|
|
304
|
-
let g = t[p];
|
|
305
|
-
return x(f === "?" || g != null, `Missing ":${p}" param`), n(g);
|
|
306
|
-
}
|
|
307
|
-
return s.replace(/\?$/g, "");
|
|
308
|
-
}).filter((s) => !!s);
|
|
309
|
-
return o + a.join("/");
|
|
310
|
-
}
|
|
311
|
-
function B(e, t) {
|
|
312
|
-
typeof e == "string" && (e = { path: e, caseSensitive: !1, end: !0 });
|
|
313
|
-
let [r, o] = Ve(
|
|
314
|
-
e.path,
|
|
315
|
-
e.caseSensitive,
|
|
316
|
-
e.end
|
|
317
|
-
), n = t.match(r);
|
|
318
|
-
if (!n) return null;
|
|
319
|
-
let a = n[0], s = a.replace(/(.)\/+$/, "$1"), c = n.slice(1);
|
|
320
|
-
return {
|
|
321
|
-
params: o.reduce(
|
|
322
|
-
(u, { paramName: m, isOptional: p }, f) => {
|
|
323
|
-
if (m === "*") {
|
|
324
|
-
let d = c[f] || "";
|
|
325
|
-
s = a.slice(0, a.length - d.length).replace(/(.)\/+$/, "$1");
|
|
326
|
-
}
|
|
327
|
-
const g = c[f];
|
|
328
|
-
return p && !g ? u[m] = void 0 : u[m] = (g || "").replace(/%2F/g, "/"), u;
|
|
329
|
-
},
|
|
330
|
-
{}
|
|
331
|
-
),
|
|
332
|
-
pathname: a,
|
|
333
|
-
pathnameBase: s,
|
|
334
|
-
pattern: e
|
|
335
|
-
};
|
|
336
|
-
}
|
|
337
|
-
function Ve(e, t = !1, r = !0) {
|
|
338
|
-
L(
|
|
339
|
-
e === "*" || !e.endsWith("*") || e.endsWith("/*"),
|
|
340
|
-
`Route path "${e}" will be treated as if it were "${e.replace(/\*$/, "/*")}" because the \`*\` character must always follow a \`/\` in the pattern. To get rid of this warning, please change the route path to "${e.replace(/\*$/, "/*")}".`
|
|
341
|
-
);
|
|
342
|
-
let o = [], n = "^" + e.replace(/\/*\*?$/, "").replace(/^\/*/, "/").replace(/[\\.*+^${}|()[\]]/g, "\\$&").replace(
|
|
343
|
-
/\/:([\w-]+)(\?)?/g,
|
|
344
|
-
(s, c, l) => (o.push({ paramName: c, isOptional: l != null }), l ? "/?([^\\/]+)?" : "/([^\\/]+)")
|
|
345
|
-
);
|
|
346
|
-
return e.endsWith("*") ? (o.push({ paramName: "*" }), n += e === "*" || e === "/*" ? "(.*)$" : "(?:\\/(.+)|\\/*)$") : r ? n += "\\/*$" : e !== "" && e !== "/" && (n += "(?:(?=\\/|$))"), [new RegExp(n, t ? void 0 : "i"), o];
|
|
347
|
-
}
|
|
348
|
-
function ye(e) {
|
|
349
|
-
try {
|
|
350
|
-
return e.split("/").map((t) => decodeURIComponent(t).replace(/\//g, "%2F")).join("/");
|
|
351
|
-
} catch (t) {
|
|
352
|
-
return L(
|
|
353
|
-
!1,
|
|
354
|
-
`The URL path "${e}" could not be decoded because it is a malformed URL segment. This is probably due to a bad percent encoding (${t}).`
|
|
355
|
-
), e;
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
function A(e, t) {
|
|
359
|
-
if (t === "/") return e;
|
|
360
|
-
if (!e.toLowerCase().startsWith(t.toLowerCase()))
|
|
361
|
-
return null;
|
|
362
|
-
let r = t.endsWith("/") ? t.length - 1 : t.length, o = e.charAt(r);
|
|
363
|
-
return o && o !== "/" ? null : e.slice(r) || "/";
|
|
364
|
-
}
|
|
365
|
-
function Ye(e, t = "/") {
|
|
366
|
-
let {
|
|
367
|
-
pathname: r,
|
|
368
|
-
search: o = "",
|
|
369
|
-
hash: n = ""
|
|
370
|
-
} = typeof e == "string" ? Y(e) : e;
|
|
371
|
-
return {
|
|
372
|
-
pathname: r ? r.startsWith("/") ? r : Je(r, t) : t,
|
|
373
|
-
search: Ge(o),
|
|
374
|
-
hash: Xe(n)
|
|
375
|
-
};
|
|
376
|
-
}
|
|
377
|
-
function Je(e, t) {
|
|
378
|
-
let r = t.replace(/\/+$/, "").split("/");
|
|
379
|
-
return e.split("/").forEach((n) => {
|
|
380
|
-
n === ".." ? r.length > 1 && r.pop() : n !== "." && r.push(n);
|
|
381
|
-
}), r.length > 1 ? r.join("/") : "/";
|
|
382
|
-
}
|
|
383
|
-
function G(e, t, r, o) {
|
|
384
|
-
return `Cannot include a '${e}' character in a manually specified \`to.${t}\` field [${JSON.stringify(
|
|
385
|
-
o
|
|
386
|
-
)}]. Please separate it out to the \`to.${r}\` field. Alternatively you may provide the full path as a string in <Link to="..."> and the router will parse it for you.`;
|
|
387
|
-
}
|
|
388
|
-
function Ke(e) {
|
|
389
|
-
return e.filter(
|
|
390
|
-
(t, r) => r === 0 || t.route.path && t.route.path.length > 0
|
|
391
|
-
);
|
|
392
|
-
}
|
|
393
|
-
function Z(e) {
|
|
394
|
-
let t = Ke(e);
|
|
395
|
-
return t.map(
|
|
396
|
-
(r, o) => o === t.length - 1 ? r.pathname : r.pathnameBase
|
|
397
|
-
);
|
|
398
|
-
}
|
|
399
|
-
function ee(e, t, r, o = !1) {
|
|
400
|
-
let n;
|
|
401
|
-
typeof e == "string" ? n = Y(e) : (n = { ...e }, x(
|
|
402
|
-
!n.pathname || !n.pathname.includes("?"),
|
|
403
|
-
G("?", "pathname", "search", n)
|
|
404
|
-
), x(
|
|
405
|
-
!n.pathname || !n.pathname.includes("#"),
|
|
406
|
-
G("#", "pathname", "hash", n)
|
|
407
|
-
), x(
|
|
408
|
-
!n.search || !n.search.includes("#"),
|
|
409
|
-
G("#", "search", "hash", n)
|
|
410
|
-
));
|
|
411
|
-
let a = e === "" || n.pathname === "", s = a ? "/" : n.pathname, c;
|
|
412
|
-
if (s == null)
|
|
413
|
-
c = r;
|
|
414
|
-
else {
|
|
415
|
-
let p = t.length - 1;
|
|
416
|
-
if (!o && s.startsWith("..")) {
|
|
417
|
-
let f = s.split("/");
|
|
418
|
-
for (; f[0] === ".."; )
|
|
419
|
-
f.shift(), p -= 1;
|
|
420
|
-
n.pathname = f.join("/");
|
|
421
|
-
}
|
|
422
|
-
c = p >= 0 ? t[p] : "/";
|
|
423
|
-
}
|
|
424
|
-
let l = Ye(n, c), u = s && s !== "/" && s.endsWith("/"), m = (a || s === ".") && r.endsWith("/");
|
|
425
|
-
return !l.pathname.endsWith("/") && (u || m) && (l.pathname += "/"), l;
|
|
426
|
-
}
|
|
427
|
-
var M = (e) => e.join("/").replace(/\/\/+/g, "/"), qe = (e) => e.replace(/\/+$/, "").replace(/^\/*/, "/"), Ge = (e) => !e || e === "?" ? "" : e.startsWith("?") ? e : "?" + e, Xe = (e) => !e || e === "#" ? "" : e.startsWith("#") ? e : "#" + e, ir = (e, t = 302) => {
|
|
428
|
-
let r = t;
|
|
429
|
-
typeof r == "number" ? r = { status: r } : typeof r.status > "u" && (r.status = 302);
|
|
430
|
-
let o = new Headers(r.headers);
|
|
431
|
-
return o.set("Location", e), new Response(null, { ...r, headers: o });
|
|
432
|
-
};
|
|
433
|
-
function we(e) {
|
|
434
|
-
return e != null && typeof e.status == "number" && typeof e.statusText == "string" && typeof e.internal == "boolean" && "data" in e;
|
|
435
|
-
}
|
|
436
|
-
var Ee = [
|
|
437
|
-
"POST",
|
|
438
|
-
"PUT",
|
|
439
|
-
"PATCH",
|
|
440
|
-
"DELETE"
|
|
441
|
-
];
|
|
442
|
-
new Set(
|
|
443
|
-
Ee
|
|
444
|
-
);
|
|
445
|
-
var Qe = [
|
|
446
|
-
"GET",
|
|
447
|
-
...Ee
|
|
448
|
-
];
|
|
449
|
-
new Set(Qe);
|
|
450
|
-
var D = i.createContext(null);
|
|
451
|
-
D.displayName = "DataRouter";
|
|
452
|
-
var _ = i.createContext(null);
|
|
453
|
-
_.displayName = "DataRouterState";
|
|
454
|
-
var J = i.createContext({
|
|
455
|
-
isTransitioning: !1
|
|
456
|
-
});
|
|
457
|
-
J.displayName = "ViewTransition";
|
|
458
|
-
var te = i.createContext(
|
|
459
|
-
/* @__PURE__ */ new Map()
|
|
460
|
-
);
|
|
461
|
-
te.displayName = "Fetchers";
|
|
462
|
-
var Ze = i.createContext(null);
|
|
463
|
-
Ze.displayName = "Await";
|
|
464
|
-
var T = i.createContext(
|
|
465
|
-
null
|
|
466
|
-
);
|
|
467
|
-
T.displayName = "Navigation";
|
|
468
|
-
var K = i.createContext(
|
|
469
|
-
null
|
|
470
|
-
);
|
|
471
|
-
K.displayName = "Location";
|
|
472
|
-
var k = i.createContext({
|
|
473
|
-
outlet: null,
|
|
474
|
-
matches: [],
|
|
475
|
-
isDataRoute: !1
|
|
476
|
-
});
|
|
477
|
-
k.displayName = "Route";
|
|
478
|
-
var re = i.createContext(null);
|
|
479
|
-
re.displayName = "RouteError";
|
|
480
|
-
function et(e, { relative: t } = {}) {
|
|
481
|
-
x(
|
|
482
|
-
I(),
|
|
483
|
-
// TODO: This error is probably because they somehow have 2 versions of the
|
|
484
|
-
// router loaded. We can help them understand how to avoid that.
|
|
485
|
-
"useHref() may be used only in the context of a <Router> component."
|
|
486
|
-
);
|
|
487
|
-
let { basename: r, navigator: o } = i.useContext(T), { hash: n, pathname: a, search: s } = H(e, { relative: t }), c = a;
|
|
488
|
-
return r !== "/" && (c = a === "/" ? r : M([r, a])), o.createHref({ pathname: c, search: s, hash: n });
|
|
489
|
-
}
|
|
490
|
-
function I() {
|
|
491
|
-
return i.useContext(K) != null;
|
|
492
|
-
}
|
|
493
|
-
function N() {
|
|
494
|
-
return x(
|
|
495
|
-
I(),
|
|
496
|
-
// TODO: This error is probably because they somehow have 2 versions of the
|
|
497
|
-
// router loaded. We can help them understand how to avoid that.
|
|
498
|
-
"useLocation() may be used only in the context of a <Router> component."
|
|
499
|
-
), i.useContext(K).location;
|
|
500
|
-
}
|
|
501
|
-
function lr(e) {
|
|
502
|
-
x(
|
|
503
|
-
I(),
|
|
504
|
-
// TODO: This error is probably because they somehow have 2 versions of the
|
|
505
|
-
// router loaded. We can help them understand how to avoid that.
|
|
506
|
-
"useMatch() may be used only in the context of a <Router> component."
|
|
507
|
-
);
|
|
508
|
-
let { pathname: t } = N();
|
|
509
|
-
return i.useMemo(
|
|
510
|
-
() => B(e, ye(t)),
|
|
511
|
-
[t, e]
|
|
512
|
-
);
|
|
513
|
-
}
|
|
514
|
-
var xe = "You should call navigate() in a React.useEffect(), not when your component is first rendered.";
|
|
515
|
-
function Re(e) {
|
|
516
|
-
i.useContext(T).static || i.useLayoutEffect(e);
|
|
517
|
-
}
|
|
518
|
-
function ne() {
|
|
519
|
-
let { isDataRoute: e } = i.useContext(k);
|
|
520
|
-
return e ? ht() : tt();
|
|
521
|
-
}
|
|
522
|
-
function tt() {
|
|
523
|
-
x(
|
|
524
|
-
I(),
|
|
525
|
-
// TODO: This error is probably because they somehow have 2 versions of the
|
|
526
|
-
// router loaded. We can help them understand how to avoid that.
|
|
527
|
-
"useNavigate() may be used only in the context of a <Router> component."
|
|
528
|
-
);
|
|
529
|
-
let e = i.useContext(D), { basename: t, navigator: r } = i.useContext(T), { matches: o } = i.useContext(k), { pathname: n } = N(), a = JSON.stringify(Z(o)), s = i.useRef(!1);
|
|
530
|
-
return Re(() => {
|
|
531
|
-
s.current = !0;
|
|
532
|
-
}), i.useCallback(
|
|
533
|
-
(l, u = {}) => {
|
|
534
|
-
if (L(s.current, xe), !s.current) return;
|
|
535
|
-
if (typeof l == "number") {
|
|
536
|
-
r.go(l);
|
|
537
|
-
return;
|
|
538
|
-
}
|
|
539
|
-
let m = ee(
|
|
540
|
-
l,
|
|
541
|
-
JSON.parse(a),
|
|
542
|
-
n,
|
|
543
|
-
u.relative === "path"
|
|
544
|
-
);
|
|
545
|
-
e == null && t !== "/" && (m.pathname = m.pathname === "/" ? t : M([t, m.pathname])), (u.replace ? r.replace : r.push)(
|
|
546
|
-
m,
|
|
547
|
-
u.state,
|
|
548
|
-
u
|
|
549
|
-
);
|
|
550
|
-
},
|
|
551
|
-
[
|
|
552
|
-
t,
|
|
553
|
-
r,
|
|
554
|
-
a,
|
|
555
|
-
n,
|
|
556
|
-
e
|
|
557
|
-
]
|
|
558
|
-
);
|
|
559
|
-
}
|
|
560
|
-
var rt = i.createContext(null);
|
|
561
|
-
function nt(e) {
|
|
562
|
-
let t = i.useContext(k).outlet;
|
|
563
|
-
return t && /* @__PURE__ */ i.createElement(rt.Provider, { value: e }, t);
|
|
564
|
-
}
|
|
565
|
-
function sr() {
|
|
566
|
-
let { matches: e } = i.useContext(k), t = e[e.length - 1];
|
|
567
|
-
return t ? t.params : {};
|
|
568
|
-
}
|
|
569
|
-
function H(e, { relative: t } = {}) {
|
|
570
|
-
let { matches: r } = i.useContext(k), { pathname: o } = N(), n = JSON.stringify(Z(r));
|
|
571
|
-
return i.useMemo(
|
|
572
|
-
() => ee(
|
|
573
|
-
e,
|
|
574
|
-
JSON.parse(n),
|
|
575
|
-
o,
|
|
576
|
-
t === "path"
|
|
577
|
-
),
|
|
578
|
-
[e, n, o, t]
|
|
579
|
-
);
|
|
580
|
-
}
|
|
581
|
-
function be(e, t, r, o) {
|
|
582
|
-
x(
|
|
583
|
-
I(),
|
|
584
|
-
// TODO: This error is probably because they somehow have 2 versions of the
|
|
585
|
-
// router loaded. We can help them understand how to avoid that.
|
|
586
|
-
"useRoutes() may be used only in the context of a <Router> component."
|
|
587
|
-
);
|
|
588
|
-
let { navigator: n } = i.useContext(T), { matches: a } = i.useContext(k), s = a[a.length - 1], c = s ? s.params : {}, l = s ? s.pathname : "/", u = s ? s.pathnameBase : "/", m = s && s.route;
|
|
589
|
-
{
|
|
590
|
-
let h = m && m.path || "";
|
|
591
|
-
Se(
|
|
592
|
-
l,
|
|
593
|
-
!m || h.endsWith("*") || h.endsWith("*?"),
|
|
594
|
-
`You rendered descendant <Routes> (or called \`useRoutes()\`) at "${l}" (under <Route path="${h}">) but the parent route path has no trailing "*". This means if you navigate deeper, the parent won't match anymore and therefore the child routes will never render.
|
|
595
|
-
|
|
596
|
-
Please change the parent <Route path="${h}"> to <Route path="${h === "/" ? "*" : `${h}/*`}">.`
|
|
597
|
-
);
|
|
598
|
-
}
|
|
599
|
-
let p = N(), f;
|
|
600
|
-
f = p;
|
|
601
|
-
let g = f.pathname || "/", d = g;
|
|
602
|
-
if (u !== "/") {
|
|
603
|
-
let h = u.replace(/^\//, "").split("/");
|
|
604
|
-
d = "/" + g.replace(/^\//, "").split("/").slice(h.length).join("/");
|
|
605
|
-
}
|
|
606
|
-
let v = pe(e, { pathname: d });
|
|
607
|
-
return L(
|
|
608
|
-
m || v != null,
|
|
609
|
-
`No routes matched location "${f.pathname}${f.search}${f.hash}" `
|
|
610
|
-
), L(
|
|
611
|
-
v == null || v[v.length - 1].route.element !== void 0 || v[v.length - 1].route.Component !== void 0 || v[v.length - 1].route.lazy !== void 0,
|
|
612
|
-
`Matched leaf route at location "${f.pathname}${f.search}${f.hash}" does not have an element or Component. This means it will render an <Outlet /> with a null value by default resulting in an "empty" page.`
|
|
613
|
-
), st(
|
|
614
|
-
v && v.map(
|
|
615
|
-
(h) => Object.assign({}, h, {
|
|
616
|
-
params: Object.assign({}, c, h.params),
|
|
617
|
-
pathname: M([
|
|
618
|
-
u,
|
|
619
|
-
// Re-encode pathnames that were decoded inside matchRoutes
|
|
620
|
-
n.encodeLocation ? n.encodeLocation(h.pathname).pathname : h.pathname
|
|
621
|
-
]),
|
|
622
|
-
pathnameBase: h.pathnameBase === "/" ? u : M([
|
|
623
|
-
u,
|
|
624
|
-
// Re-encode pathnames that were decoded inside matchRoutes
|
|
625
|
-
n.encodeLocation ? n.encodeLocation(h.pathnameBase).pathname : h.pathnameBase
|
|
626
|
-
])
|
|
627
|
-
})
|
|
628
|
-
),
|
|
629
|
-
a,
|
|
630
|
-
r,
|
|
631
|
-
o
|
|
632
|
-
);
|
|
633
|
-
}
|
|
634
|
-
function at() {
|
|
635
|
-
let e = dt(), t = we(e) ? `${e.status} ${e.statusText}` : e instanceof Error ? e.message : JSON.stringify(e), r = e instanceof Error ? e.stack : null, o = "rgba(200,200,200, 0.5)", n = { padding: "0.5rem", backgroundColor: o }, a = { padding: "2px 4px", backgroundColor: o }, s = null;
|
|
636
|
-
return console.error(
|
|
637
|
-
"Error handled by React Router default ErrorBoundary:",
|
|
638
|
-
e
|
|
639
|
-
), s = /* @__PURE__ */ i.createElement(i.Fragment, null, /* @__PURE__ */ i.createElement("p", null, "💿 Hey developer 👋"), /* @__PURE__ */ i.createElement("p", null, "You can provide a way better UX than this when your app throws errors by providing your own ", /* @__PURE__ */ i.createElement("code", { style: a }, "ErrorBoundary"), " or", " ", /* @__PURE__ */ i.createElement("code", { style: a }, "errorElement"), " prop on your route.")), /* @__PURE__ */ i.createElement(i.Fragment, null, /* @__PURE__ */ i.createElement("h2", null, "Unexpected Application Error!"), /* @__PURE__ */ i.createElement("h3", { style: { fontStyle: "italic" } }, t), r ? /* @__PURE__ */ i.createElement("pre", { style: n }, r) : null, s);
|
|
640
|
-
}
|
|
641
|
-
var ot = /* @__PURE__ */ i.createElement(at, null), it = class extends i.Component {
|
|
642
|
-
constructor(e) {
|
|
643
|
-
super(e), this.state = {
|
|
644
|
-
location: e.location,
|
|
645
|
-
revalidation: e.revalidation,
|
|
646
|
-
error: e.error
|
|
647
|
-
};
|
|
648
|
-
}
|
|
649
|
-
static getDerivedStateFromError(e) {
|
|
650
|
-
return { error: e };
|
|
651
|
-
}
|
|
652
|
-
static getDerivedStateFromProps(e, t) {
|
|
653
|
-
return t.location !== e.location || t.revalidation !== "idle" && e.revalidation === "idle" ? {
|
|
654
|
-
error: e.error,
|
|
655
|
-
location: e.location,
|
|
656
|
-
revalidation: e.revalidation
|
|
657
|
-
} : {
|
|
658
|
-
error: e.error !== void 0 ? e.error : t.error,
|
|
659
|
-
location: t.location,
|
|
660
|
-
revalidation: e.revalidation || t.revalidation
|
|
661
|
-
};
|
|
662
|
-
}
|
|
663
|
-
componentDidCatch(e, t) {
|
|
664
|
-
console.error(
|
|
665
|
-
"React Router caught the following error during render",
|
|
666
|
-
e,
|
|
667
|
-
t
|
|
668
|
-
);
|
|
669
|
-
}
|
|
670
|
-
render() {
|
|
671
|
-
return this.state.error !== void 0 ? /* @__PURE__ */ i.createElement(k.Provider, { value: this.props.routeContext }, /* @__PURE__ */ i.createElement(
|
|
672
|
-
re.Provider,
|
|
673
|
-
{
|
|
674
|
-
value: this.state.error,
|
|
675
|
-
children: this.props.component
|
|
676
|
-
}
|
|
677
|
-
)) : this.props.children;
|
|
678
|
-
}
|
|
679
|
-
};
|
|
680
|
-
function lt({ routeContext: e, match: t, children: r }) {
|
|
681
|
-
let o = i.useContext(D);
|
|
682
|
-
return o && o.static && o.staticContext && (t.route.errorElement || t.route.ErrorBoundary) && (o.staticContext._deepestRenderedBoundaryId = t.route.id), /* @__PURE__ */ i.createElement(k.Provider, { value: e }, r);
|
|
683
|
-
}
|
|
684
|
-
function st(e, t = [], r = null, o = null) {
|
|
685
|
-
if (e == null) {
|
|
686
|
-
if (!r)
|
|
687
|
-
return null;
|
|
688
|
-
if (r.errors)
|
|
689
|
-
e = r.matches;
|
|
690
|
-
else if (t.length === 0 && !r.initialized && r.matches.length > 0)
|
|
691
|
-
e = r.matches;
|
|
692
|
-
else
|
|
693
|
-
return null;
|
|
694
|
-
}
|
|
695
|
-
let n = e, a = r?.errors;
|
|
696
|
-
if (a != null) {
|
|
697
|
-
let l = n.findIndex(
|
|
698
|
-
(u) => u.route.id && a?.[u.route.id] !== void 0
|
|
699
|
-
);
|
|
700
|
-
x(
|
|
701
|
-
l >= 0,
|
|
702
|
-
`Could not find a matching route for errors on route IDs: ${Object.keys(
|
|
703
|
-
a
|
|
704
|
-
).join(",")}`
|
|
705
|
-
), n = n.slice(
|
|
706
|
-
0,
|
|
707
|
-
Math.min(n.length, l + 1)
|
|
708
|
-
);
|
|
709
|
-
}
|
|
710
|
-
let s = !1, c = -1;
|
|
711
|
-
if (r)
|
|
712
|
-
for (let l = 0; l < n.length; l++) {
|
|
713
|
-
let u = n[l];
|
|
714
|
-
if ((u.route.HydrateFallback || u.route.hydrateFallbackElement) && (c = l), u.route.id) {
|
|
715
|
-
let { loaderData: m, errors: p } = r, f = u.route.loader && !m.hasOwnProperty(u.route.id) && (!p || p[u.route.id] === void 0);
|
|
716
|
-
if (u.route.lazy || f) {
|
|
717
|
-
s = !0, c >= 0 ? n = n.slice(0, c + 1) : n = [n[0]];
|
|
718
|
-
break;
|
|
719
|
-
}
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
return n.reduceRight((l, u, m) => {
|
|
723
|
-
let p, f = !1, g = null, d = null;
|
|
724
|
-
r && (p = a && u.route.id ? a[u.route.id] : void 0, g = u.route.errorElement || ot, s && (c < 0 && m === 0 ? (Se(
|
|
725
|
-
"route-fallback",
|
|
726
|
-
!1,
|
|
727
|
-
"No `HydrateFallback` element provided to render during initial hydration"
|
|
728
|
-
), f = !0, d = null) : c === m && (f = !0, d = u.route.hydrateFallbackElement || null)));
|
|
729
|
-
let v = t.concat(n.slice(0, m + 1)), E = () => {
|
|
730
|
-
let h;
|
|
731
|
-
return p ? h = g : f ? h = d : u.route.Component ? h = /* @__PURE__ */ i.createElement(u.route.Component, null) : u.route.element ? h = u.route.element : h = l, /* @__PURE__ */ i.createElement(
|
|
732
|
-
lt,
|
|
733
|
-
{
|
|
734
|
-
match: u,
|
|
735
|
-
routeContext: {
|
|
736
|
-
outlet: l,
|
|
737
|
-
matches: v,
|
|
738
|
-
isDataRoute: r != null
|
|
739
|
-
},
|
|
740
|
-
children: h
|
|
741
|
-
}
|
|
742
|
-
);
|
|
743
|
-
};
|
|
744
|
-
return r && (u.route.ErrorBoundary || u.route.errorElement || m === 0) ? /* @__PURE__ */ i.createElement(
|
|
745
|
-
it,
|
|
746
|
-
{
|
|
747
|
-
location: r.location,
|
|
748
|
-
revalidation: r.revalidation,
|
|
749
|
-
component: g,
|
|
750
|
-
error: p,
|
|
751
|
-
children: E(),
|
|
752
|
-
routeContext: { outlet: null, matches: v, isDataRoute: !0 }
|
|
753
|
-
}
|
|
754
|
-
) : E();
|
|
755
|
-
}, null);
|
|
756
|
-
}
|
|
757
|
-
function ae(e) {
|
|
758
|
-
return `${e} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`;
|
|
759
|
-
}
|
|
760
|
-
function ut(e) {
|
|
761
|
-
let t = i.useContext(D);
|
|
762
|
-
return x(t, ae(e)), t;
|
|
763
|
-
}
|
|
764
|
-
function Ce(e) {
|
|
765
|
-
let t = i.useContext(_);
|
|
766
|
-
return x(t, ae(e)), t;
|
|
767
|
-
}
|
|
768
|
-
function ct(e) {
|
|
769
|
-
let t = i.useContext(k);
|
|
770
|
-
return x(t, ae(e)), t;
|
|
771
|
-
}
|
|
772
|
-
function oe(e) {
|
|
773
|
-
let t = ct(e), r = t.matches[t.matches.length - 1];
|
|
774
|
-
return x(
|
|
775
|
-
r.route.id,
|
|
776
|
-
`${e} can only be used on routes that contain a unique "id"`
|
|
777
|
-
), r.route.id;
|
|
778
|
-
}
|
|
779
|
-
function ft() {
|
|
780
|
-
return oe(
|
|
781
|
-
"useRouteId"
|
|
782
|
-
/* UseRouteId */
|
|
783
|
-
);
|
|
784
|
-
}
|
|
785
|
-
function ur() {
|
|
786
|
-
return Ce(
|
|
787
|
-
"useNavigation"
|
|
788
|
-
/* UseNavigation */
|
|
789
|
-
).navigation;
|
|
790
|
-
}
|
|
791
|
-
function dt() {
|
|
792
|
-
let e = i.useContext(re), t = Ce(
|
|
793
|
-
"useRouteError"
|
|
794
|
-
/* UseRouteError */
|
|
795
|
-
), r = oe(
|
|
796
|
-
"useRouteError"
|
|
797
|
-
/* UseRouteError */
|
|
798
|
-
);
|
|
799
|
-
return e !== void 0 ? e : t.errors?.[r];
|
|
800
|
-
}
|
|
801
|
-
function ht() {
|
|
802
|
-
let { router: e } = ut(
|
|
803
|
-
"useNavigate"
|
|
804
|
-
/* UseNavigateStable */
|
|
805
|
-
), t = oe(
|
|
806
|
-
"useNavigate"
|
|
807
|
-
/* UseNavigateStable */
|
|
808
|
-
), r = i.useRef(!1);
|
|
809
|
-
return Re(() => {
|
|
810
|
-
r.current = !0;
|
|
811
|
-
}), i.useCallback(
|
|
812
|
-
async (n, a = {}) => {
|
|
813
|
-
L(r.current, xe), r.current && (typeof n == "number" ? e.navigate(n) : await e.navigate(n, { fromRouteId: t, ...a }));
|
|
814
|
-
},
|
|
815
|
-
[e, t]
|
|
816
|
-
);
|
|
817
|
-
}
|
|
818
|
-
var fe = {};
|
|
819
|
-
function Se(e, t, r) {
|
|
820
|
-
!t && !fe[e] && (fe[e] = !0, L(!1, r));
|
|
821
|
-
}
|
|
822
|
-
var de = {};
|
|
823
|
-
function he(e, t) {
|
|
824
|
-
!e && !de[t] && (de[t] = !0, console.warn(t));
|
|
825
|
-
}
|
|
826
|
-
var mt = class {
|
|
827
|
-
constructor() {
|
|
828
|
-
this.status = "pending", this.promise = new Promise((e, t) => {
|
|
829
|
-
this.resolve = (r) => {
|
|
830
|
-
this.status === "pending" && (this.status = "resolved", e(r));
|
|
831
|
-
}, this.reject = (r) => {
|
|
832
|
-
this.status === "pending" && (this.status = "rejected", t(r));
|
|
833
|
-
};
|
|
834
|
-
});
|
|
835
|
-
}
|
|
836
|
-
};
|
|
837
|
-
function cr({
|
|
838
|
-
router: e,
|
|
839
|
-
flushSync: t
|
|
840
|
-
}) {
|
|
841
|
-
let [r, o] = i.useState(e.state), [n, a] = i.useState(), [s, c] = i.useState({
|
|
842
|
-
isTransitioning: !1
|
|
843
|
-
}), [l, u] = i.useState(), [m, p] = i.useState(), [f, g] = i.useState(), d = i.useRef(/* @__PURE__ */ new Map()), v = i.useCallback(
|
|
844
|
-
(y, { deletedFetchers: b, flushSync: R, viewTransitionOpts: C }) => {
|
|
845
|
-
y.fetchers.forEach((S, P) => {
|
|
846
|
-
S.data !== void 0 && d.current.set(P, S.data);
|
|
847
|
-
}), b.forEach((S) => d.current.delete(S)), he(
|
|
848
|
-
R === !1 || t != null,
|
|
849
|
-
'You provided the `flushSync` option to a router update, but you are not using the `<RouterProvider>` from `react-router/dom` so `ReactDOM.flushSync()` is unavailable. Please update your app to `import { RouterProvider } from "react-router/dom"` and ensure you have `react-dom` installed as a dependency to use the `flushSync` option.'
|
|
850
|
-
);
|
|
851
|
-
let $ = e.window != null && e.window.document != null && typeof e.window.document.startViewTransition == "function";
|
|
852
|
-
if (he(
|
|
853
|
-
C == null || $,
|
|
854
|
-
"You provided the `viewTransition` option to a router update, but you do not appear to be running in a DOM environment as `window.startViewTransition` is not available."
|
|
855
|
-
), !C || !$) {
|
|
856
|
-
t && R ? t(() => o(y)) : i.startTransition(() => o(y));
|
|
857
|
-
return;
|
|
858
|
-
}
|
|
859
|
-
if (t && R) {
|
|
860
|
-
t(() => {
|
|
861
|
-
m && (l && l.resolve(), m.skipTransition()), c({
|
|
862
|
-
isTransitioning: !0,
|
|
863
|
-
flushSync: !0,
|
|
864
|
-
currentLocation: C.currentLocation,
|
|
865
|
-
nextLocation: C.nextLocation
|
|
866
|
-
});
|
|
867
|
-
});
|
|
868
|
-
let S = e.window.document.startViewTransition(() => {
|
|
869
|
-
t(() => o(y));
|
|
870
|
-
});
|
|
871
|
-
S.finished.finally(() => {
|
|
872
|
-
t(() => {
|
|
873
|
-
u(void 0), p(void 0), a(void 0), c({ isTransitioning: !1 });
|
|
874
|
-
});
|
|
875
|
-
}), t(() => p(S));
|
|
876
|
-
return;
|
|
877
|
-
}
|
|
878
|
-
m ? (l && l.resolve(), m.skipTransition(), g({
|
|
879
|
-
state: y,
|
|
880
|
-
currentLocation: C.currentLocation,
|
|
881
|
-
nextLocation: C.nextLocation
|
|
882
|
-
})) : (a(y), c({
|
|
883
|
-
isTransitioning: !0,
|
|
884
|
-
flushSync: !1,
|
|
885
|
-
currentLocation: C.currentLocation,
|
|
886
|
-
nextLocation: C.nextLocation
|
|
887
|
-
}));
|
|
888
|
-
},
|
|
889
|
-
[e.window, t, m, l]
|
|
890
|
-
);
|
|
891
|
-
i.useLayoutEffect(() => e.subscribe(v), [e, v]), i.useEffect(() => {
|
|
892
|
-
s.isTransitioning && !s.flushSync && u(new mt());
|
|
893
|
-
}, [s]), i.useEffect(() => {
|
|
894
|
-
if (l && n && e.window) {
|
|
895
|
-
let y = n, b = l.promise, R = e.window.document.startViewTransition(async () => {
|
|
896
|
-
i.startTransition(() => o(y)), await b;
|
|
897
|
-
});
|
|
898
|
-
R.finished.finally(() => {
|
|
899
|
-
u(void 0), p(void 0), a(void 0), c({ isTransitioning: !1 });
|
|
900
|
-
}), p(R);
|
|
901
|
-
}
|
|
902
|
-
}, [n, l, e.window]), i.useEffect(() => {
|
|
903
|
-
l && n && r.location.key === n.location.key && l.resolve();
|
|
904
|
-
}, [l, m, r.location, n]), i.useEffect(() => {
|
|
905
|
-
!s.isTransitioning && f && (a(f.state), c({
|
|
906
|
-
isTransitioning: !0,
|
|
907
|
-
flushSync: !1,
|
|
908
|
-
currentLocation: f.currentLocation,
|
|
909
|
-
nextLocation: f.nextLocation
|
|
910
|
-
}), g(void 0));
|
|
911
|
-
}, [s.isTransitioning, f]);
|
|
912
|
-
let E = i.useMemo(() => ({
|
|
913
|
-
createHref: e.createHref,
|
|
914
|
-
encodeLocation: e.encodeLocation,
|
|
915
|
-
go: (y) => e.navigate(y),
|
|
916
|
-
push: (y, b, R) => e.navigate(y, {
|
|
917
|
-
state: b,
|
|
918
|
-
preventScrollReset: R?.preventScrollReset
|
|
919
|
-
}),
|
|
920
|
-
replace: (y, b, R) => e.navigate(y, {
|
|
921
|
-
replace: !0,
|
|
922
|
-
state: b,
|
|
923
|
-
preventScrollReset: R?.preventScrollReset
|
|
924
|
-
})
|
|
925
|
-
}), [e]), h = e.basename || "/", w = i.useMemo(
|
|
926
|
-
() => ({
|
|
927
|
-
router: e,
|
|
928
|
-
navigator: E,
|
|
929
|
-
static: !1,
|
|
930
|
-
basename: h
|
|
931
|
-
}),
|
|
932
|
-
[e, E, h]
|
|
933
|
-
);
|
|
934
|
-
return /* @__PURE__ */ i.createElement(i.Fragment, null, /* @__PURE__ */ i.createElement(D.Provider, { value: w }, /* @__PURE__ */ i.createElement(_.Provider, { value: r }, /* @__PURE__ */ i.createElement(te.Provider, { value: d.current }, /* @__PURE__ */ i.createElement(J.Provider, { value: s }, /* @__PURE__ */ i.createElement(
|
|
935
|
-
Pe,
|
|
936
|
-
{
|
|
937
|
-
basename: h,
|
|
938
|
-
location: r.location,
|
|
939
|
-
navigationType: r.historyAction,
|
|
940
|
-
navigator: E
|
|
941
|
-
},
|
|
942
|
-
/* @__PURE__ */ i.createElement(
|
|
943
|
-
pt,
|
|
944
|
-
{
|
|
945
|
-
routes: e.routes,
|
|
946
|
-
future: e.future,
|
|
947
|
-
state: r
|
|
948
|
-
}
|
|
949
|
-
)
|
|
950
|
-
))))), null);
|
|
951
|
-
}
|
|
952
|
-
var pt = i.memo(gt);
|
|
953
|
-
function gt({
|
|
954
|
-
routes: e,
|
|
955
|
-
future: t,
|
|
956
|
-
state: r
|
|
957
|
-
}) {
|
|
958
|
-
return be(e, void 0, r, t);
|
|
959
|
-
}
|
|
960
|
-
function fr({
|
|
961
|
-
to: e,
|
|
962
|
-
replace: t,
|
|
963
|
-
state: r,
|
|
964
|
-
relative: o
|
|
965
|
-
}) {
|
|
966
|
-
x(
|
|
967
|
-
I(),
|
|
968
|
-
// TODO: This error is probably because they somehow have 2 versions of
|
|
969
|
-
// the router loaded. We can help them understand how to avoid that.
|
|
970
|
-
"<Navigate> may be used only in the context of a <Router> component."
|
|
971
|
-
);
|
|
972
|
-
let { static: n } = i.useContext(T);
|
|
973
|
-
L(
|
|
974
|
-
!n,
|
|
975
|
-
"<Navigate> must not be used on the initial render in a <StaticRouter>. This is a no-op, but you should modify your code so the <Navigate> is only ever rendered in response to some user interaction or state change."
|
|
976
|
-
);
|
|
977
|
-
let { matches: a } = i.useContext(k), { pathname: s } = N(), c = ne(), l = ee(
|
|
978
|
-
e,
|
|
979
|
-
Z(a),
|
|
980
|
-
s,
|
|
981
|
-
o === "path"
|
|
982
|
-
), u = JSON.stringify(l);
|
|
983
|
-
return i.useEffect(() => {
|
|
984
|
-
c(JSON.parse(u), { replace: t, state: r, relative: o });
|
|
985
|
-
}, [c, u, o, t, r]), null;
|
|
986
|
-
}
|
|
987
|
-
function dr(e) {
|
|
988
|
-
return nt(e.context);
|
|
989
|
-
}
|
|
990
|
-
function Pe({
|
|
991
|
-
basename: e = "/",
|
|
992
|
-
children: t = null,
|
|
993
|
-
location: r,
|
|
994
|
-
navigationType: o = "POP",
|
|
995
|
-
navigator: n,
|
|
996
|
-
static: a = !1
|
|
997
|
-
}) {
|
|
998
|
-
x(
|
|
999
|
-
!I(),
|
|
1000
|
-
"You cannot render a <Router> inside another <Router>. You should never have more than one in your app."
|
|
1001
|
-
);
|
|
1002
|
-
let s = e.replace(/^\/*/, "/"), c = i.useMemo(
|
|
1003
|
-
() => ({
|
|
1004
|
-
basename: s,
|
|
1005
|
-
navigator: n,
|
|
1006
|
-
static: a,
|
|
1007
|
-
future: {}
|
|
1008
|
-
}),
|
|
1009
|
-
[s, n, a]
|
|
1010
|
-
);
|
|
1011
|
-
typeof r == "string" && (r = Y(r));
|
|
1012
|
-
let {
|
|
1013
|
-
pathname: l = "/",
|
|
1014
|
-
search: u = "",
|
|
1015
|
-
hash: m = "",
|
|
1016
|
-
state: p = null,
|
|
1017
|
-
key: f = "default"
|
|
1018
|
-
} = r, g = i.useMemo(() => {
|
|
1019
|
-
let d = A(l, s);
|
|
1020
|
-
return d == null ? null : {
|
|
1021
|
-
location: {
|
|
1022
|
-
pathname: d,
|
|
1023
|
-
search: u,
|
|
1024
|
-
hash: m,
|
|
1025
|
-
state: p,
|
|
1026
|
-
key: f
|
|
1027
|
-
},
|
|
1028
|
-
navigationType: o
|
|
1029
|
-
};
|
|
1030
|
-
}, [s, l, u, m, p, f, o]);
|
|
1031
|
-
return L(
|
|
1032
|
-
g != null,
|
|
1033
|
-
`<Router basename="${s}"> is not able to match the URL "${l}${u}${m}" because it does not start with the basename, so the <Router> won't render anything.`
|
|
1034
|
-
), g == null ? null : /* @__PURE__ */ i.createElement(T.Provider, { value: c }, /* @__PURE__ */ i.createElement(K.Provider, { children: t, value: g }));
|
|
1035
|
-
}
|
|
1036
|
-
var z = "get", V = "application/x-www-form-urlencoded";
|
|
1037
|
-
function q(e) {
|
|
1038
|
-
return e != null && typeof e.tagName == "string";
|
|
1039
|
-
}
|
|
1040
|
-
function vt(e) {
|
|
1041
|
-
return q(e) && e.tagName.toLowerCase() === "button";
|
|
1042
|
-
}
|
|
1043
|
-
function yt(e) {
|
|
1044
|
-
return q(e) && e.tagName.toLowerCase() === "form";
|
|
1045
|
-
}
|
|
1046
|
-
function wt(e) {
|
|
1047
|
-
return q(e) && e.tagName.toLowerCase() === "input";
|
|
1048
|
-
}
|
|
1049
|
-
function Et(e) {
|
|
1050
|
-
return !!(e.metaKey || e.altKey || e.ctrlKey || e.shiftKey);
|
|
1051
|
-
}
|
|
1052
|
-
function xt(e, t) {
|
|
1053
|
-
return e.button === 0 && // Ignore everything but left clicks
|
|
1054
|
-
(!t || t === "_self") && // Let browser handle "target=_blank" etc.
|
|
1055
|
-
!Et(e);
|
|
1056
|
-
}
|
|
1057
|
-
function Q(e = "") {
|
|
1058
|
-
return new URLSearchParams(
|
|
1059
|
-
typeof e == "string" || Array.isArray(e) || e instanceof URLSearchParams ? e : Object.keys(e).reduce((t, r) => {
|
|
1060
|
-
let o = e[r];
|
|
1061
|
-
return t.concat(
|
|
1062
|
-
Array.isArray(o) ? o.map((n) => [r, n]) : [[r, o]]
|
|
1063
|
-
);
|
|
1064
|
-
}, [])
|
|
1065
|
-
);
|
|
1066
|
-
}
|
|
1067
|
-
function Rt(e, t) {
|
|
1068
|
-
let r = Q(e);
|
|
1069
|
-
return t && t.forEach((o, n) => {
|
|
1070
|
-
r.has(n) || t.getAll(n).forEach((a) => {
|
|
1071
|
-
r.append(n, a);
|
|
1072
|
-
});
|
|
1073
|
-
}), r;
|
|
1074
|
-
}
|
|
1075
|
-
var j = null;
|
|
1076
|
-
function bt() {
|
|
1077
|
-
if (j === null)
|
|
1078
|
-
try {
|
|
1079
|
-
new FormData(
|
|
1080
|
-
document.createElement("form"),
|
|
1081
|
-
// @ts-expect-error if FormData supports the submitter parameter, this will throw
|
|
1082
|
-
0
|
|
1083
|
-
), j = !1;
|
|
1084
|
-
} catch {
|
|
1085
|
-
j = !0;
|
|
1086
|
-
}
|
|
1087
|
-
return j;
|
|
1088
|
-
}
|
|
1089
|
-
var Ct = /* @__PURE__ */ new Set([
|
|
1090
|
-
"application/x-www-form-urlencoded",
|
|
1091
|
-
"multipart/form-data",
|
|
1092
|
-
"text/plain"
|
|
1093
|
-
]);
|
|
1094
|
-
function X(e) {
|
|
1095
|
-
return e != null && !Ct.has(e) ? (L(
|
|
1096
|
-
!1,
|
|
1097
|
-
`"${e}" is not a valid \`encType\` for \`<Form>\`/\`<fetcher.Form>\` and will default to "${V}"`
|
|
1098
|
-
), null) : e;
|
|
1099
|
-
}
|
|
1100
|
-
function St(e, t) {
|
|
1101
|
-
let r, o, n, a, s;
|
|
1102
|
-
if (yt(e)) {
|
|
1103
|
-
let c = e.getAttribute("action");
|
|
1104
|
-
o = c ? A(c, t) : null, r = e.getAttribute("method") || z, n = X(e.getAttribute("enctype")) || V, a = new FormData(e);
|
|
1105
|
-
} else if (vt(e) || wt(e) && (e.type === "submit" || e.type === "image")) {
|
|
1106
|
-
let c = e.form;
|
|
1107
|
-
if (c == null)
|
|
1108
|
-
throw new Error(
|
|
1109
|
-
'Cannot submit a <button> or <input type="submit"> without a <form>'
|
|
1110
|
-
);
|
|
1111
|
-
let l = e.getAttribute("formaction") || c.getAttribute("action");
|
|
1112
|
-
if (o = l ? A(l, t) : null, r = e.getAttribute("formmethod") || c.getAttribute("method") || z, n = X(e.getAttribute("formenctype")) || X(c.getAttribute("enctype")) || V, a = new FormData(c, e), !bt()) {
|
|
1113
|
-
let { name: u, type: m, value: p } = e;
|
|
1114
|
-
if (m === "image") {
|
|
1115
|
-
let f = u ? `${u}.` : "";
|
|
1116
|
-
a.append(`${f}x`, "0"), a.append(`${f}y`, "0");
|
|
1117
|
-
} else u && a.append(u, p);
|
|
1118
|
-
}
|
|
1119
|
-
} else {
|
|
1120
|
-
if (q(e))
|
|
1121
|
-
throw new Error(
|
|
1122
|
-
'Cannot submit element that is not <form>, <button>, or <input type="submit|image">'
|
|
1123
|
-
);
|
|
1124
|
-
r = z, o = null, n = V, s = e;
|
|
1125
|
-
}
|
|
1126
|
-
return a && n === "text/plain" && (s = a, a = void 0), { action: o, method: r.toLowerCase(), encType: n, formData: a, body: s };
|
|
1127
|
-
}
|
|
1128
|
-
function ie(e, t) {
|
|
1129
|
-
if (e === !1 || e === null || typeof e > "u")
|
|
1130
|
-
throw new Error(t);
|
|
1131
|
-
}
|
|
1132
|
-
async function Pt(e, t) {
|
|
1133
|
-
if (e.id in t)
|
|
1134
|
-
return t[e.id];
|
|
1135
|
-
try {
|
|
1136
|
-
let r = await import(
|
|
1137
|
-
/* @vite-ignore */
|
|
1138
|
-
/* webpackIgnore: true */
|
|
1139
|
-
e.module
|
|
1140
|
-
);
|
|
1141
|
-
return t[e.id] = r, r;
|
|
1142
|
-
} catch (r) {
|
|
1143
|
-
return console.error(
|
|
1144
|
-
`Error loading route module \`${e.module}\`, reloading page...`
|
|
1145
|
-
), console.error(r), window.__reactRouterContext && window.__reactRouterContext.isSpaMode, window.location.reload(), new Promise(() => {
|
|
1146
|
-
});
|
|
1147
|
-
}
|
|
1148
|
-
}
|
|
1149
|
-
function Lt(e) {
|
|
1150
|
-
return e == null ? !1 : e.href == null ? e.rel === "preload" && typeof e.imageSrcSet == "string" && typeof e.imageSizes == "string" : typeof e.rel == "string" && typeof e.href == "string";
|
|
1151
|
-
}
|
|
1152
|
-
async function kt(e, t, r) {
|
|
1153
|
-
let o = await Promise.all(
|
|
1154
|
-
e.map(async (n) => {
|
|
1155
|
-
let a = t.routes[n.route.id];
|
|
1156
|
-
if (a) {
|
|
1157
|
-
let s = await Pt(a, r);
|
|
1158
|
-
return s.links ? s.links() : [];
|
|
1159
|
-
}
|
|
1160
|
-
return [];
|
|
1161
|
-
})
|
|
1162
|
-
);
|
|
1163
|
-
return Mt(
|
|
1164
|
-
o.flat(1).filter(Lt).filter((n) => n.rel === "stylesheet" || n.rel === "preload").map(
|
|
1165
|
-
(n) => n.rel === "stylesheet" ? { ...n, rel: "prefetch", as: "style" } : { ...n, rel: "prefetch" }
|
|
1166
|
-
)
|
|
1167
|
-
);
|
|
1168
|
-
}
|
|
1169
|
-
function me(e, t, r, o, n, a) {
|
|
1170
|
-
let s = (l, u) => r[u] ? l.route.id !== r[u].route.id : !0, c = (l, u) => (
|
|
1171
|
-
// param change, /users/123 -> /users/456
|
|
1172
|
-
r[u].pathname !== l.pathname || // splat param changed, which is not present in match.path
|
|
1173
|
-
// e.g. /files/images/avatar.jpg -> files/finances.xls
|
|
1174
|
-
r[u].route.path?.endsWith("*") && r[u].params["*"] !== l.params["*"]
|
|
1175
|
-
);
|
|
1176
|
-
return a === "assets" ? t.filter(
|
|
1177
|
-
(l, u) => s(l, u) || c(l, u)
|
|
1178
|
-
) : a === "data" ? t.filter((l, u) => {
|
|
1179
|
-
let m = o.routes[l.route.id];
|
|
1180
|
-
if (!m || !m.hasLoader)
|
|
1181
|
-
return !1;
|
|
1182
|
-
if (s(l, u) || c(l, u))
|
|
1183
|
-
return !0;
|
|
1184
|
-
if (l.route.shouldRevalidate) {
|
|
1185
|
-
let p = l.route.shouldRevalidate({
|
|
1186
|
-
currentUrl: new URL(
|
|
1187
|
-
n.pathname + n.search + n.hash,
|
|
1188
|
-
window.origin
|
|
1189
|
-
),
|
|
1190
|
-
currentParams: r[0]?.params || {},
|
|
1191
|
-
nextUrl: new URL(e, window.origin),
|
|
1192
|
-
nextParams: l.params,
|
|
1193
|
-
defaultShouldRevalidate: !0
|
|
1194
|
-
});
|
|
1195
|
-
if (typeof p == "boolean")
|
|
1196
|
-
return p;
|
|
1197
|
-
}
|
|
1198
|
-
return !0;
|
|
1199
|
-
}) : [];
|
|
1200
|
-
}
|
|
1201
|
-
function $t(e, t, { includeHydrateFallback: r } = {}) {
|
|
1202
|
-
return Tt(
|
|
1203
|
-
e.map((o) => {
|
|
1204
|
-
let n = t.routes[o.route.id];
|
|
1205
|
-
if (!n) return [];
|
|
1206
|
-
let a = [n.module];
|
|
1207
|
-
return n.clientActionModule && (a = a.concat(n.clientActionModule)), n.clientLoaderModule && (a = a.concat(n.clientLoaderModule)), r && n.hydrateFallbackModule && (a = a.concat(n.hydrateFallbackModule)), n.imports && (a = a.concat(n.imports)), a;
|
|
1208
|
-
}).flat(1)
|
|
1209
|
-
);
|
|
1210
|
-
}
|
|
1211
|
-
function Tt(e) {
|
|
1212
|
-
return [...new Set(e)];
|
|
1213
|
-
}
|
|
1214
|
-
function Nt(e) {
|
|
1215
|
-
let t = {}, r = Object.keys(e).sort();
|
|
1216
|
-
for (let o of r)
|
|
1217
|
-
t[o] = e[o];
|
|
1218
|
-
return t;
|
|
1219
|
-
}
|
|
1220
|
-
function Mt(e, t) {
|
|
1221
|
-
let r = /* @__PURE__ */ new Set();
|
|
1222
|
-
return new Set(t), e.reduce((o, n) => {
|
|
1223
|
-
let a = JSON.stringify(Nt(n));
|
|
1224
|
-
return r.has(a) || (r.add(a), o.push({ key: a, link: n })), o;
|
|
1225
|
-
}, []);
|
|
1226
|
-
}
|
|
1227
|
-
Object.getOwnPropertyNames(Object.prototype).sort().join("\0");
|
|
1228
|
-
var At = /* @__PURE__ */ new Set([100, 101, 204, 205]);
|
|
1229
|
-
function Ot(e, t) {
|
|
1230
|
-
let r = typeof e == "string" ? new URL(
|
|
1231
|
-
e,
|
|
1232
|
-
// This can be called during the SSR flow via PrefetchPageLinksImpl so
|
|
1233
|
-
// don't assume window is available
|
|
1234
|
-
typeof window > "u" ? "server://singlefetch/" : window.location.origin
|
|
1235
|
-
) : e;
|
|
1236
|
-
return r.pathname === "/" ? r.pathname = "_root.data" : t && A(r.pathname, t) === "/" ? r.pathname = `${t.replace(/\/$/, "")}/_root.data` : r.pathname = `${r.pathname.replace(/\/$/, "")}.data`, r;
|
|
1237
|
-
}
|
|
1238
|
-
function Le() {
|
|
1239
|
-
let e = i.useContext(D);
|
|
1240
|
-
return ie(
|
|
1241
|
-
e,
|
|
1242
|
-
"You must render this element inside a <DataRouterContext.Provider> element"
|
|
1243
|
-
), e;
|
|
1244
|
-
}
|
|
1245
|
-
function Dt() {
|
|
1246
|
-
let e = i.useContext(_);
|
|
1247
|
-
return ie(
|
|
1248
|
-
e,
|
|
1249
|
-
"You must render this element inside a <DataRouterStateContext.Provider> element"
|
|
1250
|
-
), e;
|
|
1251
|
-
}
|
|
1252
|
-
var le = i.createContext(void 0);
|
|
1253
|
-
le.displayName = "FrameworkContext";
|
|
1254
|
-
function ke() {
|
|
1255
|
-
let e = i.useContext(le);
|
|
1256
|
-
return ie(
|
|
1257
|
-
e,
|
|
1258
|
-
"You must render this element inside a <HydratedRouter> element"
|
|
1259
|
-
), e;
|
|
1260
|
-
}
|
|
1261
|
-
function It(e, t) {
|
|
1262
|
-
let r = i.useContext(le), [o, n] = i.useState(!1), [a, s] = i.useState(!1), { onFocus: c, onBlur: l, onMouseEnter: u, onMouseLeave: m, onTouchStart: p } = t, f = i.useRef(null);
|
|
1263
|
-
i.useEffect(() => {
|
|
1264
|
-
if (e === "render" && s(!0), e === "viewport") {
|
|
1265
|
-
let v = (h) => {
|
|
1266
|
-
h.forEach((w) => {
|
|
1267
|
-
s(w.isIntersecting);
|
|
1268
|
-
});
|
|
1269
|
-
}, E = new IntersectionObserver(v, { threshold: 0.5 });
|
|
1270
|
-
return f.current && E.observe(f.current), () => {
|
|
1271
|
-
E.disconnect();
|
|
1272
|
-
};
|
|
1273
|
-
}
|
|
1274
|
-
}, [e]), i.useEffect(() => {
|
|
1275
|
-
if (o) {
|
|
1276
|
-
let v = setTimeout(() => {
|
|
1277
|
-
s(!0);
|
|
1278
|
-
}, 100);
|
|
1279
|
-
return () => {
|
|
1280
|
-
clearTimeout(v);
|
|
1281
|
-
};
|
|
1282
|
-
}
|
|
1283
|
-
}, [o]);
|
|
1284
|
-
let g = () => {
|
|
1285
|
-
n(!0);
|
|
1286
|
-
}, d = () => {
|
|
1287
|
-
n(!1), s(!1);
|
|
1288
|
-
};
|
|
1289
|
-
return r ? e !== "intent" ? [a, f, {}] : [
|
|
1290
|
-
a,
|
|
1291
|
-
f,
|
|
1292
|
-
{
|
|
1293
|
-
onFocus: U(c, g),
|
|
1294
|
-
onBlur: U(l, d),
|
|
1295
|
-
onMouseEnter: U(u, g),
|
|
1296
|
-
onMouseLeave: U(m, d),
|
|
1297
|
-
onTouchStart: U(p, g)
|
|
1298
|
-
}
|
|
1299
|
-
] : [!1, f, {}];
|
|
1300
|
-
}
|
|
1301
|
-
function U(e, t) {
|
|
1302
|
-
return (r) => {
|
|
1303
|
-
e && e(r), r.defaultPrevented || t(r);
|
|
1304
|
-
};
|
|
1305
|
-
}
|
|
1306
|
-
function _t({
|
|
1307
|
-
page: e,
|
|
1308
|
-
...t
|
|
1309
|
-
}) {
|
|
1310
|
-
let { router: r } = Le(), o = i.useMemo(
|
|
1311
|
-
() => pe(r.routes, e, r.basename),
|
|
1312
|
-
[r.routes, e, r.basename]
|
|
1313
|
-
);
|
|
1314
|
-
return o ? /* @__PURE__ */ i.createElement(Ut, { page: e, matches: o, ...t }) : null;
|
|
1315
|
-
}
|
|
1316
|
-
function Ft(e) {
|
|
1317
|
-
let { manifest: t, routeModules: r } = ke(), [o, n] = i.useState([]);
|
|
1318
|
-
return i.useEffect(() => {
|
|
1319
|
-
let a = !1;
|
|
1320
|
-
return kt(e, t, r).then(
|
|
1321
|
-
(s) => {
|
|
1322
|
-
a || n(s);
|
|
1323
|
-
}
|
|
1324
|
-
), () => {
|
|
1325
|
-
a = !0;
|
|
1326
|
-
};
|
|
1327
|
-
}, [e, t, r]), o;
|
|
1328
|
-
}
|
|
1329
|
-
function Ut({
|
|
1330
|
-
page: e,
|
|
1331
|
-
matches: t,
|
|
1332
|
-
...r
|
|
1333
|
-
}) {
|
|
1334
|
-
let o = N(), { manifest: n, routeModules: a } = ke(), { basename: s } = Le(), { loaderData: c, matches: l } = Dt(), u = i.useMemo(
|
|
1335
|
-
() => me(
|
|
1336
|
-
e,
|
|
1337
|
-
t,
|
|
1338
|
-
l,
|
|
1339
|
-
n,
|
|
1340
|
-
o,
|
|
1341
|
-
"data"
|
|
1342
|
-
),
|
|
1343
|
-
[e, t, l, n, o]
|
|
1344
|
-
), m = i.useMemo(
|
|
1345
|
-
() => me(
|
|
1346
|
-
e,
|
|
1347
|
-
t,
|
|
1348
|
-
l,
|
|
1349
|
-
n,
|
|
1350
|
-
o,
|
|
1351
|
-
"assets"
|
|
1352
|
-
),
|
|
1353
|
-
[e, t, l, n, o]
|
|
1354
|
-
), p = i.useMemo(() => {
|
|
1355
|
-
if (e === o.pathname + o.search + o.hash)
|
|
1356
|
-
return [];
|
|
1357
|
-
let d = /* @__PURE__ */ new Set(), v = !1;
|
|
1358
|
-
if (t.forEach((h) => {
|
|
1359
|
-
let w = n.routes[h.route.id];
|
|
1360
|
-
!w || !w.hasLoader || (!u.some((y) => y.route.id === h.route.id) && h.route.id in c && a[h.route.id]?.shouldRevalidate || w.hasClientLoader ? v = !0 : d.add(h.route.id));
|
|
1361
|
-
}), d.size === 0)
|
|
1362
|
-
return [];
|
|
1363
|
-
let E = Ot(e, s);
|
|
1364
|
-
return v && d.size > 0 && E.searchParams.set(
|
|
1365
|
-
"_routes",
|
|
1366
|
-
t.filter((h) => d.has(h.route.id)).map((h) => h.route.id).join(",")
|
|
1367
|
-
), [E.pathname + E.search];
|
|
1368
|
-
}, [
|
|
1369
|
-
s,
|
|
1370
|
-
c,
|
|
1371
|
-
o,
|
|
1372
|
-
n,
|
|
1373
|
-
u,
|
|
1374
|
-
t,
|
|
1375
|
-
e,
|
|
1376
|
-
a
|
|
1377
|
-
]), f = i.useMemo(
|
|
1378
|
-
() => $t(m, n),
|
|
1379
|
-
[m, n]
|
|
1380
|
-
), g = Ft(m);
|
|
1381
|
-
return /* @__PURE__ */ i.createElement(i.Fragment, null, p.map((d) => /* @__PURE__ */ i.createElement("link", { key: d, rel: "prefetch", as: "fetch", href: d, ...r })), f.map((d) => /* @__PURE__ */ i.createElement("link", { key: d, rel: "modulepreload", href: d, ...r })), g.map(({ key: d, link: v }) => (
|
|
1382
|
-
// these don't spread `linkProps` because they are full link descriptors
|
|
1383
|
-
// already with their own props
|
|
1384
|
-
/* @__PURE__ */ i.createElement("link", { key: d, ...v })
|
|
1385
|
-
)));
|
|
1386
|
-
}
|
|
1387
|
-
function Wt(...e) {
|
|
1388
|
-
return (t) => {
|
|
1389
|
-
e.forEach((r) => {
|
|
1390
|
-
typeof r == "function" ? r(t) : r != null && (r.current = t);
|
|
1391
|
-
});
|
|
1392
|
-
};
|
|
1393
|
-
}
|
|
1394
|
-
var $e = typeof window < "u" && typeof window.document < "u" && typeof window.document.createElement < "u";
|
|
1395
|
-
try {
|
|
1396
|
-
$e && (window.__reactRouterVersion = "7.6.1");
|
|
1397
|
-
} catch {
|
|
1398
|
-
}
|
|
1399
|
-
var Te = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i, Ne = i.forwardRef(
|
|
1400
|
-
function({
|
|
1401
|
-
onClick: t,
|
|
1402
|
-
discover: r = "render",
|
|
1403
|
-
prefetch: o = "none",
|
|
1404
|
-
relative: n,
|
|
1405
|
-
reloadDocument: a,
|
|
1406
|
-
replace: s,
|
|
1407
|
-
state: c,
|
|
1408
|
-
target: l,
|
|
1409
|
-
to: u,
|
|
1410
|
-
preventScrollReset: m,
|
|
1411
|
-
viewTransition: p,
|
|
1412
|
-
...f
|
|
1413
|
-
}, g) {
|
|
1414
|
-
let { basename: d } = i.useContext(T), v = typeof u == "string" && Te.test(u), E, h = !1;
|
|
1415
|
-
if (typeof u == "string" && v && (E = u, $e))
|
|
1416
|
-
try {
|
|
1417
|
-
let P = new URL(window.location.href), O = u.startsWith("//") ? new URL(P.protocol + u) : new URL(u), se = A(O.pathname, d);
|
|
1418
|
-
O.origin === P.origin && se != null ? u = se + O.search + O.hash : h = !0;
|
|
1419
|
-
} catch {
|
|
1420
|
-
L(
|
|
1421
|
-
!1,
|
|
1422
|
-
`<Link to="${u}"> contains an invalid URL which will probably break when clicked - please update to a valid URL path.`
|
|
1423
|
-
);
|
|
1424
|
-
}
|
|
1425
|
-
let w = et(u, { relative: n }), [y, b, R] = It(
|
|
1426
|
-
o,
|
|
1427
|
-
f
|
|
1428
|
-
), C = zt(u, {
|
|
1429
|
-
replace: s,
|
|
1430
|
-
state: c,
|
|
1431
|
-
target: l,
|
|
1432
|
-
preventScrollReset: m,
|
|
1433
|
-
relative: n,
|
|
1434
|
-
viewTransition: p
|
|
1435
|
-
});
|
|
1436
|
-
function $(P) {
|
|
1437
|
-
t && t(P), P.defaultPrevented || C(P);
|
|
1438
|
-
}
|
|
1439
|
-
let S = (
|
|
1440
|
-
// eslint-disable-next-line jsx-a11y/anchor-has-content
|
|
1441
|
-
/* @__PURE__ */ i.createElement(
|
|
1442
|
-
"a",
|
|
1443
|
-
{
|
|
1444
|
-
...f,
|
|
1445
|
-
...R,
|
|
1446
|
-
href: E || w,
|
|
1447
|
-
onClick: h || a ? t : $,
|
|
1448
|
-
ref: Wt(g, b),
|
|
1449
|
-
target: l,
|
|
1450
|
-
"data-discover": !v && r === "render" ? "true" : void 0
|
|
1451
|
-
}
|
|
1452
|
-
)
|
|
1453
|
-
);
|
|
1454
|
-
return y && !v ? /* @__PURE__ */ i.createElement(i.Fragment, null, S, /* @__PURE__ */ i.createElement(_t, { page: w })) : S;
|
|
1455
|
-
}
|
|
1456
|
-
);
|
|
1457
|
-
Ne.displayName = "Link";
|
|
1458
|
-
var Bt = i.forwardRef(
|
|
1459
|
-
function({
|
|
1460
|
-
"aria-current": t = "page",
|
|
1461
|
-
caseSensitive: r = !1,
|
|
1462
|
-
className: o = "",
|
|
1463
|
-
end: n = !1,
|
|
1464
|
-
style: a,
|
|
1465
|
-
to: s,
|
|
1466
|
-
viewTransition: c,
|
|
1467
|
-
children: l,
|
|
1468
|
-
...u
|
|
1469
|
-
}, m) {
|
|
1470
|
-
let p = H(s, { relative: u.relative }), f = N(), g = i.useContext(_), { navigator: d, basename: v } = i.useContext(T), E = g != null && // Conditional usage is OK here because the usage of a data router is static
|
|
1471
|
-
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
1472
|
-
qt(p) && c === !0, h = d.encodeLocation ? d.encodeLocation(p).pathname : p.pathname, w = f.pathname, y = g && g.navigation && g.navigation.location ? g.navigation.location.pathname : null;
|
|
1473
|
-
r || (w = w.toLowerCase(), y = y ? y.toLowerCase() : null, h = h.toLowerCase()), y && v && (y = A(y, v) || y);
|
|
1474
|
-
const b = h !== "/" && h.endsWith("/") ? h.length - 1 : h.length;
|
|
1475
|
-
let R = w === h || !n && w.startsWith(h) && w.charAt(b) === "/", C = y != null && (y === h || !n && y.startsWith(h) && y.charAt(h.length) === "/"), $ = {
|
|
1476
|
-
isActive: R,
|
|
1477
|
-
isPending: C,
|
|
1478
|
-
isTransitioning: E
|
|
1479
|
-
}, S = R ? t : void 0, P;
|
|
1480
|
-
typeof o == "function" ? P = o($) : P = [
|
|
1481
|
-
o,
|
|
1482
|
-
R ? "active" : null,
|
|
1483
|
-
C ? "pending" : null,
|
|
1484
|
-
E ? "transitioning" : null
|
|
1485
|
-
].filter(Boolean).join(" ");
|
|
1486
|
-
let O = typeof a == "function" ? a($) : a;
|
|
1487
|
-
return /* @__PURE__ */ i.createElement(
|
|
1488
|
-
Ne,
|
|
1489
|
-
{
|
|
1490
|
-
...u,
|
|
1491
|
-
"aria-current": S,
|
|
1492
|
-
className: P,
|
|
1493
|
-
ref: m,
|
|
1494
|
-
style: O,
|
|
1495
|
-
to: s,
|
|
1496
|
-
viewTransition: c
|
|
1497
|
-
},
|
|
1498
|
-
typeof l == "function" ? l($) : l
|
|
1499
|
-
);
|
|
1500
|
-
}
|
|
1501
|
-
);
|
|
1502
|
-
Bt.displayName = "NavLink";
|
|
1503
|
-
var Ht = i.forwardRef(
|
|
1504
|
-
({
|
|
1505
|
-
discover: e = "render",
|
|
1506
|
-
fetcherKey: t,
|
|
1507
|
-
navigate: r,
|
|
1508
|
-
reloadDocument: o,
|
|
1509
|
-
replace: n,
|
|
1510
|
-
state: a,
|
|
1511
|
-
method: s = z,
|
|
1512
|
-
action: c,
|
|
1513
|
-
onSubmit: l,
|
|
1514
|
-
relative: u,
|
|
1515
|
-
preventScrollReset: m,
|
|
1516
|
-
viewTransition: p,
|
|
1517
|
-
...f
|
|
1518
|
-
}, g) => {
|
|
1519
|
-
let d = Jt(), v = Kt(c, { relative: u }), E = s.toLowerCase() === "get" ? "get" : "post", h = typeof c == "string" && Te.test(c), w = (y) => {
|
|
1520
|
-
if (l && l(y), y.defaultPrevented) return;
|
|
1521
|
-
y.preventDefault();
|
|
1522
|
-
let b = y.nativeEvent.submitter, R = b?.getAttribute("formmethod") || s;
|
|
1523
|
-
d(b || y.currentTarget, {
|
|
1524
|
-
fetcherKey: t,
|
|
1525
|
-
method: R,
|
|
1526
|
-
navigate: r,
|
|
1527
|
-
replace: n,
|
|
1528
|
-
state: a,
|
|
1529
|
-
relative: u,
|
|
1530
|
-
preventScrollReset: m,
|
|
1531
|
-
viewTransition: p
|
|
1532
|
-
});
|
|
1533
|
-
};
|
|
1534
|
-
return /* @__PURE__ */ i.createElement(
|
|
1535
|
-
"form",
|
|
1536
|
-
{
|
|
1537
|
-
ref: g,
|
|
1538
|
-
method: E,
|
|
1539
|
-
action: v,
|
|
1540
|
-
onSubmit: o ? l : w,
|
|
1541
|
-
...f,
|
|
1542
|
-
"data-discover": !h && e === "render" ? "true" : void 0
|
|
1543
|
-
}
|
|
1544
|
-
);
|
|
1545
|
-
}
|
|
1546
|
-
);
|
|
1547
|
-
Ht.displayName = "Form";
|
|
1548
|
-
function jt(e) {
|
|
1549
|
-
return `${e} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`;
|
|
1550
|
-
}
|
|
1551
|
-
function Me(e) {
|
|
1552
|
-
let t = i.useContext(D);
|
|
1553
|
-
return x(t, jt(e)), t;
|
|
1554
|
-
}
|
|
1555
|
-
function zt(e, {
|
|
1556
|
-
target: t,
|
|
1557
|
-
replace: r,
|
|
1558
|
-
state: o,
|
|
1559
|
-
preventScrollReset: n,
|
|
1560
|
-
relative: a,
|
|
1561
|
-
viewTransition: s
|
|
1562
|
-
} = {}) {
|
|
1563
|
-
let c = ne(), l = N(), u = H(e, { relative: a });
|
|
1564
|
-
return i.useCallback(
|
|
1565
|
-
(m) => {
|
|
1566
|
-
if (xt(m, t)) {
|
|
1567
|
-
m.preventDefault();
|
|
1568
|
-
let p = r !== void 0 ? r : W(l) === W(u);
|
|
1569
|
-
c(e, {
|
|
1570
|
-
replace: p,
|
|
1571
|
-
state: o,
|
|
1572
|
-
preventScrollReset: n,
|
|
1573
|
-
relative: a,
|
|
1574
|
-
viewTransition: s
|
|
1575
|
-
});
|
|
1576
|
-
}
|
|
1577
|
-
},
|
|
1578
|
-
[
|
|
1579
|
-
l,
|
|
1580
|
-
c,
|
|
1581
|
-
u,
|
|
1582
|
-
r,
|
|
1583
|
-
o,
|
|
1584
|
-
t,
|
|
1585
|
-
e,
|
|
1586
|
-
n,
|
|
1587
|
-
a,
|
|
1588
|
-
s
|
|
1589
|
-
]
|
|
1590
|
-
);
|
|
1591
|
-
}
|
|
1592
|
-
function hr(e) {
|
|
1593
|
-
L(
|
|
1594
|
-
typeof URLSearchParams < "u",
|
|
1595
|
-
"You cannot use the `useSearchParams` hook in a browser that does not support the URLSearchParams API. If you need to support Internet Explorer 11, we recommend you load a polyfill such as https://github.com/ungap/url-search-params."
|
|
1596
|
-
);
|
|
1597
|
-
let t = i.useRef(Q(e)), r = i.useRef(!1), o = N(), n = i.useMemo(
|
|
1598
|
-
() => (
|
|
1599
|
-
// Only merge in the defaults if we haven't yet called setSearchParams.
|
|
1600
|
-
// Once we call that we want those to take precedence, otherwise you can't
|
|
1601
|
-
// remove a param with setSearchParams({}) if it has an initial value
|
|
1602
|
-
Rt(
|
|
1603
|
-
o.search,
|
|
1604
|
-
r.current ? null : t.current
|
|
1605
|
-
)
|
|
1606
|
-
),
|
|
1607
|
-
[o.search]
|
|
1608
|
-
), a = ne(), s = i.useCallback(
|
|
1609
|
-
(c, l) => {
|
|
1610
|
-
const u = Q(
|
|
1611
|
-
typeof c == "function" ? c(n) : c
|
|
1612
|
-
);
|
|
1613
|
-
r.current = !0, a("?" + u, l);
|
|
1614
|
-
},
|
|
1615
|
-
[a, n]
|
|
1616
|
-
);
|
|
1617
|
-
return [n, s];
|
|
1618
|
-
}
|
|
1619
|
-
var Vt = 0, Yt = () => `__${String(++Vt)}__`;
|
|
1620
|
-
function Jt() {
|
|
1621
|
-
let { router: e } = Me(
|
|
1622
|
-
"useSubmit"
|
|
1623
|
-
/* UseSubmit */
|
|
1624
|
-
), { basename: t } = i.useContext(T), r = ft();
|
|
1625
|
-
return i.useCallback(
|
|
1626
|
-
async (o, n = {}) => {
|
|
1627
|
-
let { action: a, method: s, encType: c, formData: l, body: u } = St(
|
|
1628
|
-
o,
|
|
1629
|
-
t
|
|
1630
|
-
);
|
|
1631
|
-
if (n.navigate === !1) {
|
|
1632
|
-
let m = n.fetcherKey || Yt();
|
|
1633
|
-
await e.fetch(m, r, n.action || a, {
|
|
1634
|
-
preventScrollReset: n.preventScrollReset,
|
|
1635
|
-
formData: l,
|
|
1636
|
-
body: u,
|
|
1637
|
-
formMethod: n.method || s,
|
|
1638
|
-
formEncType: n.encType || c,
|
|
1639
|
-
flushSync: n.flushSync
|
|
1640
|
-
});
|
|
1641
|
-
} else
|
|
1642
|
-
await e.navigate(n.action || a, {
|
|
1643
|
-
preventScrollReset: n.preventScrollReset,
|
|
1644
|
-
formData: l,
|
|
1645
|
-
body: u,
|
|
1646
|
-
formMethod: n.method || s,
|
|
1647
|
-
formEncType: n.encType || c,
|
|
1648
|
-
replace: n.replace,
|
|
1649
|
-
state: n.state,
|
|
1650
|
-
fromRouteId: r,
|
|
1651
|
-
flushSync: n.flushSync,
|
|
1652
|
-
viewTransition: n.viewTransition
|
|
1653
|
-
});
|
|
1654
|
-
},
|
|
1655
|
-
[e, t, r]
|
|
1656
|
-
);
|
|
1657
|
-
}
|
|
1658
|
-
function Kt(e, { relative: t } = {}) {
|
|
1659
|
-
let { basename: r } = i.useContext(T), o = i.useContext(k);
|
|
1660
|
-
x(o, "useFormAction must be used inside a RouteContext");
|
|
1661
|
-
let [n] = o.matches.slice(-1), a = { ...H(e || ".", { relative: t }) }, s = N();
|
|
1662
|
-
if (e == null) {
|
|
1663
|
-
a.search = s.search;
|
|
1664
|
-
let c = new URLSearchParams(a.search), l = c.getAll("index");
|
|
1665
|
-
if (l.some((m) => m === "")) {
|
|
1666
|
-
c.delete("index"), l.filter((p) => p).forEach((p) => c.append("index", p));
|
|
1667
|
-
let m = c.toString();
|
|
1668
|
-
a.search = m ? `?${m}` : "";
|
|
1669
|
-
}
|
|
1670
|
-
}
|
|
1671
|
-
return (!e || e === ".") && n.route.index && (a.search = a.search ? a.search.replace(/^\?/, "?index&") : "?index"), r !== "/" && (a.pathname = a.pathname === "/" ? r : M([r, a.pathname])), W(a);
|
|
1672
|
-
}
|
|
1673
|
-
function qt(e, t = {}) {
|
|
1674
|
-
let r = i.useContext(J);
|
|
1675
|
-
x(
|
|
1676
|
-
r != null,
|
|
1677
|
-
"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`. Did you accidentally import `RouterProvider` from `react-router`?"
|
|
1678
|
-
);
|
|
1679
|
-
let { basename: o } = Me(
|
|
1680
|
-
"useViewTransitionState"
|
|
1681
|
-
/* useViewTransitionState */
|
|
1682
|
-
), n = H(e, { relative: t.relative });
|
|
1683
|
-
if (!r.isTransitioning)
|
|
1684
|
-
return !1;
|
|
1685
|
-
let a = A(r.currentLocation.pathname, o) || r.currentLocation.pathname, s = A(r.nextLocation.pathname, o) || r.nextLocation.pathname;
|
|
1686
|
-
return B(n.pathname, s) != null || B(n.pathname, a) != null;
|
|
1687
|
-
}
|
|
1688
|
-
function mr({
|
|
1689
|
-
context: e,
|
|
1690
|
-
router: t,
|
|
1691
|
-
hydrate: r = !0,
|
|
1692
|
-
nonce: o
|
|
1693
|
-
}) {
|
|
1694
|
-
x(
|
|
1695
|
-
t && e,
|
|
1696
|
-
"You must provide `router` and `context` to <StaticRouterProvider>"
|
|
1697
|
-
);
|
|
1698
|
-
let n = {
|
|
1699
|
-
router: t,
|
|
1700
|
-
navigator: Qt(),
|
|
1701
|
-
static: !0,
|
|
1702
|
-
staticContext: e,
|
|
1703
|
-
basename: e.basename || "/"
|
|
1704
|
-
}, a = /* @__PURE__ */ new Map(), s = "";
|
|
1705
|
-
if (r !== !1) {
|
|
1706
|
-
let l = {
|
|
1707
|
-
loaderData: e.loaderData,
|
|
1708
|
-
actionData: e.actionData,
|
|
1709
|
-
errors: Xt(e.errors)
|
|
1710
|
-
};
|
|
1711
|
-
s = `window.__staticRouterHydrationData = JSON.parse(${ar(JSON.stringify(JSON.stringify(l)))});`;
|
|
1712
|
-
}
|
|
1713
|
-
let { state: c } = n.router;
|
|
1714
|
-
return /* @__PURE__ */ i.createElement(i.Fragment, null, /* @__PURE__ */ i.createElement(D.Provider, { value: n }, /* @__PURE__ */ i.createElement(_.Provider, { value: c }, /* @__PURE__ */ i.createElement(te.Provider, { value: a }, /* @__PURE__ */ i.createElement(J.Provider, { value: { isTransitioning: !1 } }, /* @__PURE__ */ i.createElement(
|
|
1715
|
-
Pe,
|
|
1716
|
-
{
|
|
1717
|
-
basename: n.basename,
|
|
1718
|
-
location: c.location,
|
|
1719
|
-
navigationType: c.historyAction,
|
|
1720
|
-
navigator: n.navigator,
|
|
1721
|
-
static: n.static
|
|
1722
|
-
},
|
|
1723
|
-
/* @__PURE__ */ i.createElement(
|
|
1724
|
-
Gt,
|
|
1725
|
-
{
|
|
1726
|
-
routes: t.routes,
|
|
1727
|
-
future: t.future,
|
|
1728
|
-
state: c
|
|
1729
|
-
}
|
|
1730
|
-
)
|
|
1731
|
-
))))), s ? /* @__PURE__ */ i.createElement(
|
|
1732
|
-
"script",
|
|
1733
|
-
{
|
|
1734
|
-
suppressHydrationWarning: !0,
|
|
1735
|
-
nonce: o,
|
|
1736
|
-
dangerouslySetInnerHTML: { __html: s }
|
|
1737
|
-
}
|
|
1738
|
-
) : null);
|
|
1739
|
-
}
|
|
1740
|
-
function Gt({
|
|
1741
|
-
routes: e,
|
|
1742
|
-
future: t,
|
|
1743
|
-
state: r
|
|
1744
|
-
}) {
|
|
1745
|
-
return be(e, void 0, r, t);
|
|
1746
|
-
}
|
|
1747
|
-
function Xt(e) {
|
|
1748
|
-
if (!e) return null;
|
|
1749
|
-
let t = Object.entries(e), r = {};
|
|
1750
|
-
for (let [o, n] of t)
|
|
1751
|
-
we(n) ? r[o] = { ...n, __type: "RouteErrorResponse" } : n instanceof Error ? r[o] = {
|
|
1752
|
-
message: n.message,
|
|
1753
|
-
__type: "Error",
|
|
1754
|
-
// If this is a subclass (i.e., ReferenceError), send up the type so we
|
|
1755
|
-
// can re-create the same type during hydration.
|
|
1756
|
-
...n.name !== "Error" ? {
|
|
1757
|
-
__subType: n.name
|
|
1758
|
-
} : {}
|
|
1759
|
-
} : r[o] = n;
|
|
1760
|
-
return r;
|
|
1761
|
-
}
|
|
1762
|
-
function Qt() {
|
|
1763
|
-
return {
|
|
1764
|
-
createHref: Zt,
|
|
1765
|
-
encodeLocation: er,
|
|
1766
|
-
push(e) {
|
|
1767
|
-
throw new Error(
|
|
1768
|
-
`You cannot use navigator.push() on the server because it is a stateless environment. This error was probably triggered when you did a \`navigate(${JSON.stringify(e)})\` somewhere in your app.`
|
|
1769
|
-
);
|
|
1770
|
-
},
|
|
1771
|
-
replace(e) {
|
|
1772
|
-
throw new Error(
|
|
1773
|
-
`You cannot use navigator.replace() on the server because it is a stateless environment. This error was probably triggered when you did a \`navigate(${JSON.stringify(e)}, { replace: true })\` somewhere in your app.`
|
|
1774
|
-
);
|
|
1775
|
-
},
|
|
1776
|
-
go(e) {
|
|
1777
|
-
throw new Error(
|
|
1778
|
-
`You cannot use navigator.go() on the server because it is a stateless environment. This error was probably triggered when you did a \`navigate(${e})\` somewhere in your app.`
|
|
1779
|
-
);
|
|
1780
|
-
},
|
|
1781
|
-
back() {
|
|
1782
|
-
throw new Error(
|
|
1783
|
-
"You cannot use navigator.back() on the server because it is a stateless environment."
|
|
1784
|
-
);
|
|
1785
|
-
},
|
|
1786
|
-
forward() {
|
|
1787
|
-
throw new Error(
|
|
1788
|
-
"You cannot use navigator.forward() on the server because it is a stateless environment."
|
|
1789
|
-
);
|
|
1790
|
-
}
|
|
1791
|
-
};
|
|
1792
|
-
}
|
|
1793
|
-
function Zt(e) {
|
|
1794
|
-
return typeof e == "string" ? e : W(e);
|
|
1795
|
-
}
|
|
1796
|
-
function er(e) {
|
|
1797
|
-
let t = typeof e == "string" ? e : W(e);
|
|
1798
|
-
t = t.replace(/ $/, "%20");
|
|
1799
|
-
let r = tr.test(t) ? new URL(t) : new URL(t, "http://localhost");
|
|
1800
|
-
return {
|
|
1801
|
-
pathname: r.pathname,
|
|
1802
|
-
search: r.search,
|
|
1803
|
-
hash: r.hash
|
|
1804
|
-
};
|
|
1805
|
-
}
|
|
1806
|
-
var tr = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i, rr = {
|
|
1807
|
-
"&": "\\u0026",
|
|
1808
|
-
">": "\\u003e",
|
|
1809
|
-
"<": "\\u003c",
|
|
1810
|
-
"\u2028": "\\u2028",
|
|
1811
|
-
"\u2029": "\\u2029"
|
|
1812
|
-
}, nr = /[&><\u2028\u2029]/g;
|
|
1813
|
-
function ar(e) {
|
|
1814
|
-
return e.replace(nr, (t) => rr[t]);
|
|
1815
|
-
}
|
|
1816
|
-
[
|
|
1817
|
-
...At
|
|
1818
|
-
];
|
|
1819
|
-
export {
|
|
1820
|
-
Ne as L,
|
|
1821
|
-
fr as N,
|
|
1822
|
-
dr as O,
|
|
1823
|
-
cr as R,
|
|
1824
|
-
mr as S,
|
|
1825
|
-
ne as a,
|
|
1826
|
-
hr as b,
|
|
1827
|
-
sr as c,
|
|
1828
|
-
lr as d,
|
|
1829
|
-
dt as e,
|
|
1830
|
-
ur as f,
|
|
1831
|
-
Bt as g,
|
|
1832
|
-
or as h,
|
|
1833
|
-
we as i,
|
|
1834
|
-
et as j,
|
|
1835
|
-
B as m,
|
|
1836
|
-
ir as r,
|
|
1837
|
-
N as u
|
|
1838
|
-
};
|
|
1839
|
-
//# sourceMappingURL=chunk-DQRVZFIR-BblmKnHy.js.map
|