zudoku 0.0.0-reset-hash-value.ac516c6d → 0.0.0-z06bf8c86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client.d.ts +8 -0
- package/dist/app/entry.server.js +14 -1
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/main.d.ts +91 -1
- package/dist/app/main.js +5 -1
- package/dist/app/main.js.map +1 -1
- package/dist/app/sentry.js +1 -1
- package/dist/cli/common/version-check.js +12 -3
- package/dist/cli/common/version-check.js.map +1 -1
- package/dist/config/config.d.ts +15 -44
- package/dist/config/loader.js +3 -1
- package/dist/config/loader.js.map +1 -1
- package/dist/config/validators/BuildSchema.d.ts +5 -4
- package/dist/config/validators/BuildSchema.js +23 -5
- package/dist/config/validators/BuildSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +126 -124
- package/dist/config/validators/InputNavigationSchema.js +1 -0
- package/dist/config/validators/InputNavigationSchema.js.map +1 -1
- package/dist/config/validators/NavigationSchema.js +8 -5
- package/dist/config/validators/NavigationSchema.js.map +1 -1
- package/dist/config/validators/ProtectedRoutesSchema.d.ts +1 -1
- package/dist/config/validators/validate.d.ts +264 -23
- package/dist/config/validators/validate.js +56 -11
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/config/validators/validate.test.js +43 -0
- package/dist/config/validators/validate.test.js.map +1 -1
- package/dist/flat-config.d.ts +59 -23
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/auth/issuer.js +3 -0
- package/dist/lib/auth/issuer.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +19 -10
- package/dist/lib/authentication/components/CallbackHandler.js +1 -1
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/OAuthErrorPage.js +1 -1
- package/dist/lib/authentication/components/OAuthErrorPage.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.js +8 -5
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/components/SignOut.js +6 -6
- package/dist/lib/authentication/components/SignOut.js.map +1 -1
- package/dist/lib/authentication/components/SignUp.js +7 -5
- package/dist/lib/authentication/components/SignUp.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +5 -2
- package/dist/lib/authentication/hook.js +22 -8
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/auth0.js +18 -9
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/providers/azureb2c.d.ts +4 -4
- package/dist/lib/authentication/providers/azureb2c.js +3 -3
- package/dist/lib/authentication/providers/azureb2c.js.map +1 -1
- package/dist/lib/authentication/providers/clerk.js +2 -24
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/firebase.d.ts +4 -0
- package/dist/lib/authentication/providers/firebase.js +273 -0
- package/dist/lib/authentication/providers/firebase.js.map +1 -0
- package/dist/lib/authentication/providers/openid.d.ts +7 -7
- package/dist/lib/authentication/providers/openid.js +3 -3
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/authentication/providers/supabase/SupabaseAuthUI.d.ts +8 -0
- package/dist/lib/authentication/providers/supabase/SupabaseAuthUI.js +39 -0
- package/dist/lib/authentication/providers/supabase/SupabaseAuthUI.js.map +1 -0
- package/dist/lib/authentication/providers/supabase.js +36 -46
- package/dist/lib/authentication/providers/supabase.js.map +1 -1
- package/dist/lib/authentication/state.d.ts +1 -5
- package/dist/lib/authentication/state.js +2 -14
- package/dist/lib/authentication/state.js.map +1 -1
- package/dist/lib/authentication/ui/EmailVerificationUi.d.ts +4 -0
- package/dist/lib/authentication/ui/EmailVerificationUi.js +34 -0
- package/dist/lib/authentication/ui/EmailVerificationUi.js.map +1 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.d.ts +29 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js +160 -0
- package/dist/lib/authentication/ui/ZudokuAuthUi.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Apple.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Apple.js +4 -0
- package/dist/lib/authentication/ui/icons/Apple.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Facebook.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Facebook.js +4 -0
- package/dist/lib/authentication/ui/icons/Facebook.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Github.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Github.js +4 -0
- package/dist/lib/authentication/ui/icons/Github.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Google.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Google.js +4 -0
- package/dist/lib/authentication/ui/icons/Google.js.map +1 -0
- package/dist/lib/authentication/ui/icons/Microsoft.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js +4 -0
- package/dist/lib/authentication/ui/icons/Microsoft.js.map +1 -0
- package/dist/lib/authentication/ui/icons/X.d.ts +3 -0
- package/dist/lib/authentication/ui/icons/X.js +4 -0
- package/dist/lib/authentication/ui/icons/X.js.map +1 -0
- package/dist/lib/authentication/utils/relativeRedirectUrl.d.ts +1 -0
- package/dist/lib/authentication/utils/relativeRedirectUrl.js +8 -0
- package/dist/lib/authentication/utils/relativeRedirectUrl.js.map +1 -0
- package/dist/lib/components/Autocomplete.d.ts +3 -1
- package/dist/lib/components/Autocomplete.js +6 -2
- package/dist/lib/components/Autocomplete.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +1 -1
- package/dist/lib/components/Layout.js +3 -2
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/Mermaid.d.ts +7 -0
- package/dist/lib/components/Mermaid.js +42 -0
- package/dist/lib/components/Mermaid.js.map +1 -0
- package/dist/lib/components/PagefindSearchMeta.d.ts +8 -0
- package/dist/lib/components/PagefindSearchMeta.js +7 -0
- package/dist/lib/components/PagefindSearchMeta.js.map +1 -0
- package/dist/lib/components/Pagination.js +2 -2
- package/dist/lib/components/Pagination.js.map +1 -1
- package/dist/lib/components/Zudoku.js +5 -8
- package/dist/lib/components/Zudoku.js.map +1 -1
- package/dist/lib/components/index.d.ts +7 -2
- package/dist/lib/components/index.js +4 -0
- package/dist/lib/components/index.js.map +1 -1
- package/dist/lib/components/navigation/NavigationItem.js +4 -4
- package/dist/lib/components/navigation/NavigationItem.js.map +1 -1
- package/dist/lib/components/navigation/Toc.js +1 -1
- package/dist/lib/components/navigation/Toc.js.map +1 -1
- package/dist/lib/core/RouteGuard.d.ts +1 -1
- package/dist/lib/core/RouteGuard.js +22 -25
- package/dist/lib/core/RouteGuard.js.map +1 -1
- package/dist/lib/core/ZudokuContext.d.ts +1 -0
- package/dist/lib/core/ZudokuContext.js +2 -0
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/__internal.d.ts +1 -1
- package/dist/lib/core/plugins.d.ts +14 -4
- package/dist/lib/core/plugins.js +1 -0
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/core/react-query.d.ts +1 -0
- package/dist/lib/core/react-query.js +2 -0
- package/dist/lib/core/react-query.js.map +1 -0
- package/dist/lib/core/transform-config.d.ts +2 -0
- package/dist/lib/core/transform-config.js +22 -0
- package/dist/lib/core/transform-config.js.map +1 -0
- package/dist/lib/errors/ErrorAlert.js +1 -1
- package/dist/lib/errors/ErrorMessage.d.ts +3 -0
- package/dist/lib/errors/ErrorMessage.js +16 -0
- package/dist/lib/errors/ErrorMessage.js.map +1 -0
- package/dist/lib/errors/RouterError.d.ts +3 -1
- package/dist/lib/errors/RouterError.js +3 -2
- package/dist/lib/errors/RouterError.js.map +1 -1
- package/dist/lib/hooks/index.d.ts +4 -2
- package/dist/lib/oas/graphql/circular.d.ts +2 -0
- package/dist/lib/oas/graphql/circular.js +32 -10
- package/dist/lib/oas/graphql/circular.js.map +1 -1
- package/dist/lib/oas/graphql/circular.test.d.ts +1 -0
- package/dist/lib/oas/graphql/circular.test.js +152 -0
- package/dist/lib/oas/graphql/circular.test.js.map +1 -0
- package/dist/lib/oas/graphql/index.js +7 -3
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/index.d.ts +1 -0
- package/dist/lib/oas/parser/index.js +7 -3
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js +4 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js +9 -172
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +11 -4
- package/dist/lib/plugins/api-keys/index.js +36 -22
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.d.ts +12 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.js +133 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyItem.js.map +1 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.d.ts +4 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.js +33 -0
- package/dist/lib/plugins/api-keys/settings/ApiKeyList.js.map +1 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.d.ts +6 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.js +39 -0
- package/dist/lib/plugins/api-keys/settings/RevealApiKey.js.map +1 -0
- package/dist/lib/plugins/markdown/MdxPage.d.ts +2 -1
- package/dist/lib/plugins/markdown/MdxPage.js +3 -2
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/index.d.ts +1 -0
- package/dist/lib/plugins/markdown/index.js +1 -1
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +1 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js +2 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -1
- package/dist/lib/plugins/openapi/DownloadSchemaButton.d.ts +3 -0
- package/dist/lib/plugins/openapi/DownloadSchemaButton.js +47 -0
- package/dist/lib/plugins/openapi/DownloadSchemaButton.js.map +1 -0
- package/dist/lib/plugins/openapi/Endpoint.js +3 -6
- package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.d.ts +5 -0
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.js +10 -0
- package/dist/lib/plugins/openapi/GeneratedExampleSidecarBox.js.map +1 -0
- package/dist/lib/plugins/openapi/OasProvider.js +26 -13
- package/dist/lib/plugins/openapi/OasProvider.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.js +15 -5
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationListItem.d.ts +2 -1
- package/dist/lib/plugins/openapi/OperationListItem.js +4 -3
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/ParamInfos.js +1 -0
- package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterList.js +7 -4
- package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js +17 -6
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +9 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +5 -2
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +4 -2
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +26 -4
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SchemaList.js +2 -1
- package/dist/lib/plugins/openapi/SchemaList.js.map +1 -1
- package/dist/lib/plugins/openapi/Sidecar.d.ts +2 -2
- package/dist/lib/plugins/openapi/Sidecar.js +64 -28
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarBox.js +4 -4
- package/dist/lib/plugins/openapi/SidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.d.ts +9 -2
- package/dist/lib/plugins/openapi/SidecarExamples.js +24 -43
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
- package/dist/lib/plugins/openapi/components/ConstValue.js +1 -1
- package/dist/lib/plugins/openapi/components/ConstValue.js.map +1 -1
- package/dist/lib/plugins/openapi/components/EnumValues.js +1 -1
- package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -1
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.d.ts +4 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js +5 -0
- package/dist/lib/plugins/openapi/components/NonHighlightedCode.js.map +1 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.js +5 -6
- package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -1
- package/dist/lib/plugins/openapi/index.js +15 -14
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +32 -13
- package/dist/lib/plugins/openapi/playground/BodyPanel.js +67 -15
- package/dist/lib/plugins/openapi/playground/BodyPanel.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js +2 -2
- package/dist/lib/plugins/openapi/playground/CollapsibleHeader.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +1 -1
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Headers.js +23 -83
- package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +10 -2
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js +8 -1
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PathParams.js +2 -3
- package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Playground.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/Playground.js +70 -28
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +3 -2
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/QueryParams.js +16 -40
- package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.d.ts +2 -1
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js +10 -2
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/request-panel/MultipartField.d.ts +8 -0
- package/dist/lib/plugins/openapi/playground/request-panel/MultipartField.js +19 -0
- package/dist/lib/plugins/openapi/playground/request-panel/MultipartField.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js +1 -1
- package/dist/lib/plugins/openapi/playground/request-panel/UrlQueryParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.js +540 -0
- package/dist/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.d.ts +40 -0
- package/dist/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.js +205 -0
- package/dist/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/Highlight.d.ts +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +23 -21
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js +2 -0
- package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +17 -8
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js +31 -16
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/UnionView.js +2 -5
- package/dist/lib/plugins/openapi/schema/UnionView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/union-helpers.js +0 -1
- package/dist/lib/plugins/openapi/schema/union-helpers.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/utils.d.ts +2 -2
- package/dist/lib/plugins/openapi/schema/utils.js +11 -3
- package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js +24 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js.map +1 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +9 -11
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
- package/dist/lib/plugins/openapi/util/getRoutes.d.ts +9 -1
- package/dist/lib/plugins/openapi/util/getRoutes.js +30 -2
- package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/IndexingDialog.d.ts +3 -0
- package/dist/lib/plugins/search-pagefind/IndexingDialog.js +64 -0
- package/dist/lib/plugins/search-pagefind/IndexingDialog.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js +22 -5
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.js +5 -4
- package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -1
- package/dist/lib/shiki.d.ts +2 -2
- package/dist/lib/shiki.js +31 -14
- package/dist/lib/shiki.js.map +1 -1
- package/dist/lib/ui/Badge.d.ts +3 -3
- package/dist/lib/ui/Badge.js +9 -7
- package/dist/lib/ui/Badge.js.map +1 -1
- package/dist/lib/ui/Button.d.ts +2 -2
- package/dist/lib/ui/Button.js +10 -8
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/ButtonGroup.d.ts +11 -0
- package/dist/lib/ui/ButtonGroup.js +28 -0
- package/dist/lib/ui/ButtonGroup.js.map +1 -0
- package/dist/lib/ui/Callout.d.ts +5 -5
- package/dist/lib/ui/Callout.js +5 -5
- package/dist/lib/ui/Callout.js.map +1 -1
- package/dist/lib/ui/Checkbox.d.ts +2 -2
- package/dist/lib/ui/Checkbox.js +4 -4
- package/dist/lib/ui/Checkbox.js.map +1 -1
- package/dist/lib/ui/CodeBlock.d.ts +0 -1
- package/dist/lib/ui/CodeBlock.js +1 -1
- package/dist/lib/ui/CodeBlock.js.map +1 -1
- package/dist/lib/ui/Collapsible.d.ts +4 -4
- package/dist/lib/ui/Collapsible.js +11 -4
- package/dist/lib/ui/Collapsible.js.map +1 -1
- package/dist/lib/ui/Command.js +2 -2
- package/dist/lib/ui/Command.js.map +1 -1
- package/dist/lib/ui/Dialog.d.ts +12 -18
- package/dist/lib/ui/Dialog.js +30 -17
- package/dist/lib/ui/Dialog.js.map +1 -1
- package/dist/lib/ui/DropdownMenu.d.ts +21 -23
- package/dist/lib/ui/DropdownMenu.js +47 -32
- package/dist/lib/ui/DropdownMenu.js.map +1 -1
- package/dist/lib/ui/EmbeddedCodeBlock.d.ts +3 -2
- package/dist/lib/ui/EmbeddedCodeBlock.js +4 -3
- package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/dist/lib/ui/Frame.d.ts +8 -0
- package/dist/lib/ui/Frame.js +22 -0
- package/dist/lib/ui/Frame.js.map +1 -0
- package/dist/lib/ui/Item.d.ts +23 -0
- package/dist/lib/ui/Item.js +67 -0
- package/dist/lib/ui/Item.js.map +1 -0
- package/dist/lib/ui/Kbd.d.ts +3 -0
- package/dist/lib/ui/Kbd.js +10 -0
- package/dist/lib/ui/Kbd.js.map +1 -0
- package/dist/lib/ui/NativeSelect.d.ts +5 -0
- package/dist/lib/ui/NativeSelect.js +14 -0
- package/dist/lib/ui/NativeSelect.js.map +1 -0
- package/dist/lib/ui/ReactComponentDoc.d.ts +1 -1
- package/dist/lib/ui/ReactComponentDoc.js +2 -2
- package/dist/lib/ui/ReactComponentDoc.js.map +1 -1
- package/dist/lib/ui/Select.d.ts +13 -11
- package/dist/lib/ui/Select.js +34 -23
- package/dist/lib/ui/Select.js.map +1 -1
- package/dist/lib/ui/Separator.d.ts +4 -0
- package/dist/lib/ui/Separator.js +8 -0
- package/dist/lib/ui/Separator.js.map +1 -0
- package/dist/lib/ui/SyntaxHighlight.d.ts +1 -0
- package/dist/lib/ui/SyntaxHighlight.js.map +1 -1
- package/dist/lib/ui/Tooltip.d.ts +7 -7
- package/dist/lib/ui/Tooltip.js +16 -10
- package/dist/lib/ui/Tooltip.js.map +1 -1
- package/dist/lib/util/MdxComponents.d.ts +3 -1
- package/dist/lib/util/MdxComponents.js +5 -2
- package/dist/lib/util/MdxComponents.js.map +1 -1
- package/dist/lib/util/createVariantComponent.d.ts +5 -2
- package/dist/lib/util/createVariantComponent.js +5 -2
- package/dist/lib/util/createVariantComponent.js.map +1 -1
- package/dist/lib/util/flattenAllOf.d.ts +4 -0
- package/dist/lib/util/flattenAllOf.js +88 -0
- package/dist/lib/util/flattenAllOf.js.map +1 -0
- package/dist/lib/util/flattenAllOf.test.d.ts +1 -0
- package/dist/lib/util/flattenAllOf.test.js +587 -0
- package/dist/lib/util/flattenAllOf.test.js.map +1 -0
- package/dist/lib/util/invariant.d.ts +1 -1
- package/dist/lib/util/invariant.js +2 -2
- package/dist/lib/util/invariant.js.map +1 -1
- package/dist/lib/util/readFrontmatter.d.ts +6 -0
- package/dist/lib/util/readFrontmatter.js +12 -0
- package/dist/lib/util/readFrontmatter.js.map +1 -0
- package/dist/lib/util/syncZustandState.d.ts +5 -0
- package/dist/lib/util/syncZustandState.js +14 -0
- package/dist/lib/util/syncZustandState.js.map +1 -0
- package/dist/vite/api/SchemaManager.d.ts +20 -2
- package/dist/vite/api/SchemaManager.js +79 -31
- package/dist/vite/api/SchemaManager.js.map +1 -1
- package/dist/vite/api/SchemaManager.test.js +113 -2
- package/dist/vite/api/SchemaManager.test.js.map +1 -1
- package/dist/vite/config.js +13 -1
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/dev-server.js +25 -0
- package/dist/vite/dev-server.js.map +1 -1
- package/dist/vite/error-handler.js +1 -5
- package/dist/vite/error-handler.js.map +1 -1
- package/dist/vite/mdx/remark-last-modified.js +57 -3
- package/dist/vite/mdx/remark-last-modified.js.map +1 -1
- package/dist/vite/mdx/remark-link-rewrite.js +1 -1
- package/dist/vite/pagefind-dev-index.d.ts +16 -0
- package/dist/vite/pagefind-dev-index.js +68 -0
- package/dist/vite/pagefind-dev-index.js.map +1 -0
- package/dist/vite/plugin-api-keys.js +5 -1
- package/dist/vite/plugin-api-keys.js.map +1 -1
- package/dist/vite/plugin-api.js +57 -8
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-docs.js +1 -1
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-frontmatter.js +3 -5
- package/dist/vite/plugin-frontmatter.js.map +1 -1
- package/dist/vite/plugin-markdown-export.js +8 -7
- package/dist/vite/plugin-markdown-export.js.map +1 -1
- package/dist/vite/plugin-mdx.js +36 -30
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-theme.js +10 -1
- package/dist/vite/plugin-theme.js.map +1 -1
- package/dist/vite/prerender/prerender.js +1 -19
- package/dist/vite/prerender/prerender.js.map +1 -1
- package/dist/vite/prerender/utils.d.ts +2 -0
- package/dist/vite/prerender/utils.js +30 -0
- package/dist/vite/prerender/utils.js.map +1 -0
- package/dist/vite/prerender/worker.js +3 -0
- package/dist/vite/prerender/worker.js.map +1 -1
- package/dist/vite/zuplo.d.ts +13 -0
- package/dist/vite/zuplo.js +15 -0
- package/dist/vite/zuplo.js.map +1 -0
- package/lib/ActionButton-B0CXL1Lq.js +25 -0
- package/lib/ActionButton-B0CXL1Lq.js.map +1 -0
- package/lib/Button-GUVe7pmt.js +54 -0
- package/lib/Button-GUVe7pmt.js.map +1 -0
- package/lib/{Card-KFniaZn5.js → Card-DCdq37aA.js} +2 -2
- package/lib/{Card-KFniaZn5.js.map → Card-DCdq37aA.js.map} +1 -1
- package/lib/ClaudeLogo-DJ9bU-sO.js +69 -0
- package/lib/ClaudeLogo-DJ9bU-sO.js.map +1 -0
- package/lib/{Command-CJY6q3PF.js → Command-N6VujV30.js} +26 -26
- package/lib/Command-N6VujV30.js.map +1 -0
- package/lib/Dialog-hlvmmQ_c.js +144 -0
- package/lib/Dialog-hlvmmQ_c.js.map +1 -0
- package/lib/{Drawer-Ci7XwhqT.js → Drawer-Ch7927PF.js} +7 -7
- package/lib/{Drawer-Ci7XwhqT.js.map → Drawer-Ch7927PF.js.map} +1 -1
- package/lib/DropdownMenu-DN0jNrjj.js +104 -0
- package/lib/DropdownMenu-DN0jNrjj.js.map +1 -0
- package/lib/Frame-DKlOmSkU.js +205 -0
- package/lib/Frame-DKlOmSkU.js.map +1 -0
- package/lib/HydrationBoundary-CNF2ZV3E.js +601 -0
- package/lib/HydrationBoundary-CNF2ZV3E.js.map +1 -0
- package/lib/IndexingDialog-D0YdGfbn.js +100 -0
- package/lib/IndexingDialog-D0YdGfbn.js.map +1 -0
- package/lib/Input-Cx-GeKoF.js +22 -0
- package/lib/Input-Cx-GeKoF.js.map +1 -0
- package/lib/MdxPage-stpAoBtx.js +210 -0
- package/lib/MdxPage-stpAoBtx.js.map +1 -0
- package/lib/Mermaid-Koc3z8mU.js +102 -0
- package/lib/Mermaid-Koc3z8mU.js.map +1 -0
- package/lib/{OAuthErrorPage-DJUOdr6Q.js → OAuthErrorPage-DJ811Bn_.js} +16 -16
- package/lib/OAuthErrorPage-DJ811Bn_.js.map +1 -0
- package/lib/OasProvider-CS_ASmBB.js +48 -0
- package/lib/OasProvider-CS_ASmBB.js.map +1 -0
- package/lib/OperationList-Dq_AB4W9.js +5820 -0
- package/lib/OperationList-Dq_AB4W9.js.map +1 -0
- package/lib/RouteGuard--A04ESy8.js +77 -0
- package/lib/RouteGuard--A04ESy8.js.map +1 -0
- package/lib/{SchemaList-1eLKXqn8.js → SchemaList-BJZJv1gD.js} +28 -27
- package/lib/SchemaList-BJZJv1gD.js.map +1 -0
- package/lib/SchemaView-U4JMYB3N.js +438 -0
- package/lib/SchemaView-U4JMYB3N.js.map +1 -0
- package/lib/Secret-BDBqq4p3.js +243 -0
- package/lib/Secret-BDBqq4p3.js.map +1 -0
- package/lib/Separator-BXt1LYnm.js +27 -0
- package/lib/Separator-BXt1LYnm.js.map +1 -0
- package/lib/SignUp-DCBViNUi.js +50 -0
- package/lib/SignUp-DCBViNUi.js.map +1 -0
- package/lib/{SyntaxHighlight-B0laqAqK.js → SyntaxHighlight-Dshjn3Zf.js} +1784 -1699
- package/lib/SyntaxHighlight-Dshjn3Zf.js.map +1 -0
- package/lib/{Toc-KzXCRqrX.js → Toc-Cgz6CPiE.js} +6 -6
- package/lib/Toc-Cgz6CPiE.js.map +1 -0
- package/lib/ZudokuContext-BZB1TWdT.js +387 -0
- package/lib/ZudokuContext-BZB1TWdT.js.map +1 -0
- package/lib/___vite-browser-external_commonjs-proxy-BttVsNON.js +9 -0
- package/lib/___vite-browser-external_commonjs-proxy-BttVsNON.js.map +1 -0
- package/lib/chunk-EPOLDU6W-C6C8jAwd.js +8558 -0
- package/lib/chunk-EPOLDU6W-C6C8jAwd.js.map +1 -0
- package/lib/{circular-D6wbrxuf.js → circular-BmMJjG1v.js} +6459 -6030
- package/lib/circular-BmMJjG1v.js.map +1 -0
- package/lib/{cn-dYga0KKN.js → cn-5-Gd1Dss.js} +531 -498
- package/lib/cn-5-Gd1Dss.js.map +1 -0
- package/lib/createServer-CLSZ7hWJ.js +16693 -0
- package/lib/createServer-CLSZ7hWJ.js.map +1 -0
- package/lib/createVariantComponent-Dc0vtOvr.js +18 -0
- package/lib/createVariantComponent-Dc0vtOvr.js.map +1 -0
- package/lib/{errors-XqO6MsfU.js → errors-b9I-fAOY.js} +3 -3
- package/lib/{errors-XqO6MsfU.js.map → errors-b9I-fAOY.js.map} +1 -1
- package/lib/firebase-BCXX7Qv5.js +7614 -0
- package/lib/firebase-BCXX7Qv5.js.map +1 -0
- package/lib/hook-BGlHBdET.js +52 -0
- package/lib/hook-BGlHBdET.js.map +1 -0
- package/lib/{ErrorAlert-VBJ8aHH7.js → index-CL8eDnQW.js} +5503 -4505
- package/lib/index-CL8eDnQW.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/index-DBjOT2H1.js +133 -0
- package/lib/index-DBjOT2H1.js.map +1 -0
- package/lib/index-O9RHI87z.js +3680 -0
- package/lib/index-O9RHI87z.js.map +1 -0
- package/lib/{index-C5L4favO.js → index-UOLtazB8.js} +2 -2
- package/lib/{index-C5L4favO.js.map → index-UOLtazB8.js.map} +1 -1
- package/lib/index.esm-BYObtETB.js.map +1 -1
- package/lib/{index.esm-BnYHxCYC.js → index.esm-B_0dvNjB.js} +20 -20
- package/lib/{index.esm-BnYHxCYC.js.map → index.esm-B_0dvNjB.js.map} +1 -1
- package/lib/index.esm-C5CBsVzN.js +34 -0
- package/lib/index.esm-C5CBsVzN.js.map +1 -0
- package/lib/{invariant-Bm-FVUQE.js → invariant-BJAl77rw.js} +6 -6
- package/lib/invariant-BJAl77rw.js.map +1 -0
- package/lib/jsx-runtime-BzflLqGi.js.map +1 -1
- package/lib/{mutation-CdGPxHNX.js → mutation-BISOc7OM.js} +70 -44
- package/lib/mutation-BISOc7OM.js.map +1 -0
- package/lib/ui/Accordion.js +1 -1
- package/lib/ui/ActionButton.js +2 -2
- package/lib/ui/Alert.js +1 -1
- package/lib/ui/AlertDialog.js +1 -1
- package/lib/ui/Badge.js +27 -13
- package/lib/ui/Badge.js.map +1 -1
- package/lib/ui/Breadcrumb.js +1 -1
- package/lib/ui/Button.js +28 -25
- package/lib/ui/Button.js.map +1 -1
- package/lib/ui/ButtonGroup.js +77 -0
- package/lib/ui/ButtonGroup.js.map +1 -0
- package/lib/ui/Callout.js +19 -19
- package/lib/ui/Callout.js.map +1 -1
- package/lib/ui/Card.js +1 -1
- package/lib/ui/Carousel.js +1 -1
- package/lib/ui/Carousel.js.map +1 -1
- package/lib/ui/Checkbox.js +29 -26
- package/lib/ui/Checkbox.js.map +1 -1
- package/lib/ui/CodeBlock.js +217 -7
- package/lib/ui/CodeBlock.js.map +1 -1
- package/lib/ui/Collapsible.js +32 -5
- package/lib/ui/Collapsible.js.map +1 -1
- package/lib/ui/Command.js +5 -5
- package/lib/ui/Command.js.map +1 -1
- package/lib/ui/Dialog.js +136 -106
- package/lib/ui/Dialog.js.map +1 -1
- package/lib/ui/Drawer.js +3 -3
- package/lib/ui/DropdownMenu.js +227 -140
- package/lib/ui/DropdownMenu.js.map +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +36 -32
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -1
- package/lib/ui/Form.js +1 -1
- package/lib/ui/Frame.js +81 -0
- package/lib/ui/Frame.js.map +1 -0
- package/lib/ui/HoverCard.js +1 -1
- package/lib/ui/Input.js +1 -1
- package/lib/ui/Item.js +188 -0
- package/lib/ui/Item.js.map +1 -0
- package/lib/ui/Kbd.js +32 -0
- package/lib/ui/Kbd.js.map +1 -0
- package/lib/ui/Label.js +1 -1
- package/lib/ui/NativeSelect.js +57 -0
- package/lib/ui/NativeSelect.js.map +1 -0
- package/lib/ui/Pagination.js +1 -1
- package/lib/ui/Popover.js +1 -1
- package/lib/ui/Progress.js +1 -1
- package/lib/ui/RadioGroup.js +1 -1
- package/lib/ui/ReactComponentDoc.js +13 -13
- package/lib/ui/ReactComponentDoc.js.map +1 -1
- package/lib/ui/ScrollArea.js +1 -1
- package/lib/ui/Secret.js +1 -1
- package/lib/ui/Select.js +166 -116
- package/lib/ui/Select.js.map +1 -1
- package/lib/ui/Separator.js +27 -0
- package/lib/ui/Separator.js.map +1 -0
- package/lib/ui/Skeleton.js +1 -1
- package/lib/ui/Slider.js +1 -1
- package/lib/ui/Switch.js +1 -1
- package/lib/ui/SyntaxHighlight.js +4 -4
- package/lib/ui/Tabs.js +11 -11
- package/lib/ui/Textarea.js +1 -1
- package/lib/ui/Toggle.js +1 -1
- package/lib/ui/ToggleGroup.js +1 -1
- package/lib/ui/Tooltip.js +55 -28
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/ui/Value.js +1 -1
- package/lib/ui/util.js +1 -1
- package/lib/useMutation-CFMGlAMW.js +119 -0
- package/lib/useMutation-CFMGlAMW.js.map +1 -0
- package/lib/useSuspenseQuery-CSB_rVek.js +1226 -0
- package/lib/useSuspenseQuery-CSB_rVek.js.map +1 -0
- package/lib/zudoku.__internal.js +826 -1325
- package/lib/zudoku.__internal.js.map +1 -1
- package/lib/zudoku.auth-auth0.js +19 -19
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-azureb2c.js +28 -28
- package/lib/zudoku.auth-azureb2c.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +41 -64
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-firebase.js +10 -0
- package/lib/zudoku.auth-firebase.js.map +1 -0
- package/lib/zudoku.auth-openid.js +52 -55
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.auth-supabase.js +107 -60
- package/lib/zudoku.auth-supabase.js.map +1 -1
- package/lib/zudoku.components.js +23 -21
- package/lib/zudoku.hooks.js +11 -24
- package/lib/zudoku.hooks.js.map +1 -1
- package/lib/zudoku.mermaid.js +10 -0
- package/lib/zudoku.mermaid.js.map +1 -0
- package/lib/zudoku.plugin-api-catalog.js +8 -8
- package/lib/zudoku.plugin-api-keys.js +607 -543
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +1 -1
- package/lib/zudoku.plugin-markdown.js +10 -9
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +6 -7
- package/lib/zudoku.plugin-openapi.js.map +1 -1
- package/lib/zudoku.plugin-redirect.js +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +185 -226
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js +9 -8
- package/lib/zudoku.plugins.js.map +1 -1
- package/lib/zudoku.react-query.js +440 -0
- package/lib/zudoku.react-query.js.map +1 -0
- package/lib/zudoku.router.js +1130 -1404
- package/lib/zudoku.router.js.map +1 -1
- package/package.json +77 -45
- package/src/app/entry.server.tsx +16 -6
- package/src/app/main.css +61 -9
- package/src/app/main.tsx +5 -1
- package/src/app/sentry.ts +1 -1
- package/src/lib/auth/issuer.ts +3 -0
- package/src/lib/authentication/authentication.ts +29 -5
- package/src/lib/authentication/components/CallbackHandler.tsx +1 -1
- package/src/lib/authentication/components/OAuthErrorPage.tsx +1 -1
- package/src/lib/authentication/components/SignIn.tsx +10 -5
- package/src/lib/authentication/components/SignOut.tsx +7 -6
- package/src/lib/authentication/components/SignUp.tsx +8 -8
- package/src/lib/authentication/hook.ts +37 -10
- package/src/lib/authentication/providers/auth0.tsx +23 -11
- package/src/lib/authentication/providers/azureb2c.tsx +10 -3
- package/src/lib/authentication/providers/clerk.tsx +9 -28
- package/src/lib/authentication/providers/firebase.tsx +376 -0
- package/src/lib/authentication/providers/openid.tsx +18 -15
- package/src/lib/authentication/providers/supabase/SupabaseAuthUI.tsx +75 -0
- package/src/lib/authentication/providers/supabase.tsx +61 -59
- package/src/lib/authentication/state.ts +3 -23
- package/src/lib/authentication/ui/EmailVerificationUi.tsx +129 -0
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +477 -0
- package/src/lib/authentication/ui/icons/Apple.tsx +10 -0
- package/src/lib/authentication/ui/icons/Facebook.tsx +15 -0
- package/src/lib/authentication/ui/icons/Github.tsx +16 -0
- package/src/lib/authentication/ui/icons/Google.tsx +16 -0
- package/src/lib/authentication/ui/icons/Microsoft.tsx +12 -0
- package/src/lib/authentication/ui/icons/X.tsx +10 -0
- package/src/lib/authentication/utils/relativeRedirectUrl.ts +12 -0
- package/src/lib/components/Autocomplete.tsx +11 -2
- package/src/lib/components/Layout.tsx +3 -2
- package/src/lib/components/Mermaid.tsx +68 -0
- package/src/lib/components/PagefindSearchMeta.tsx +14 -0
- package/src/lib/components/Pagination.tsx +4 -5
- package/src/lib/components/Zudoku.tsx +7 -10
- package/src/lib/components/index.ts +4 -0
- package/src/lib/components/navigation/NavigationItem.tsx +16 -23
- package/src/lib/components/navigation/Toc.tsx +3 -3
- package/src/lib/core/RouteGuard.tsx +69 -43
- package/src/lib/core/ZudokuContext.ts +3 -0
- package/src/lib/core/plugins.ts +23 -3
- package/src/lib/core/react-query.ts +1 -0
- package/src/lib/core/transform-config.ts +29 -0
- package/src/lib/errors/ErrorAlert.tsx +1 -1
- package/src/lib/errors/ErrorMessage.tsx +38 -0
- package/src/lib/errors/RouterError.tsx +7 -2
- package/src/lib/oas/graphql/circular.test.ts +186 -0
- package/src/lib/oas/graphql/circular.ts +49 -10
- package/src/lib/oas/graphql/index.ts +7 -3
- package/src/lib/oas/parser/index.ts +10 -3
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +11 -7
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +36 -476
- package/src/lib/plugins/api-keys/index.tsx +76 -32
- package/src/lib/plugins/api-keys/settings/ApiKeyItem.tsx +342 -0
- package/src/lib/plugins/api-keys/settings/ApiKeyList.tsx +67 -0
- package/src/lib/plugins/api-keys/settings/RevealApiKey.tsx +124 -0
- package/src/lib/plugins/markdown/MdxPage.tsx +4 -1
- package/src/lib/plugins/markdown/index.tsx +2 -0
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +5 -3
- package/src/lib/plugins/openapi/DownloadSchemaButton.tsx +115 -0
- package/src/lib/plugins/openapi/Endpoint.tsx +20 -27
- package/src/lib/plugins/openapi/GeneratedExampleSidecarBox.tsx +52 -0
- package/src/lib/plugins/openapi/OasProvider.tsx +38 -17
- package/src/lib/plugins/openapi/OperationList.tsx +46 -21
- package/src/lib/plugins/openapi/OperationListItem.tsx +15 -12
- package/src/lib/plugins/openapi/ParamInfos.tsx +1 -0
- package/src/lib/plugins/openapi/ParameterList.tsx +37 -23
- package/src/lib/plugins/openapi/ParameterListItem.tsx +105 -54
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +48 -7
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +101 -33
- package/src/lib/plugins/openapi/SchemaList.tsx +4 -0
- package/src/lib/plugins/openapi/Sidecar.tsx +148 -67
- package/src/lib/plugins/openapi/SidecarBox.tsx +26 -4
- package/src/lib/plugins/openapi/SidecarExamples.tsx +91 -79
- package/src/lib/plugins/openapi/components/ConstValue.tsx +1 -1
- package/src/lib/plugins/openapi/components/EnumValues.tsx +2 -2
- package/src/lib/plugins/openapi/components/NonHighlightedCode.tsx +22 -0
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +63 -53
- package/src/lib/plugins/openapi/index.tsx +25 -36
- package/src/lib/plugins/openapi/interfaces.ts +33 -7
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +246 -30
- package/src/lib/plugins/openapi/playground/CollapsibleHeader.tsx +10 -6
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +3 -2
- package/src/lib/plugins/openapi/playground/Headers.tsx +103 -219
- package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +33 -1
- package/src/lib/plugins/openapi/playground/PathParams.tsx +26 -34
- package/src/lib/plugins/openapi/playground/Playground.tsx +88 -35
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +10 -31
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +82 -136
- package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +20 -1
- package/src/lib/plugins/openapi/playground/request-panel/MultipartField.tsx +91 -0
- package/src/lib/plugins/openapi/playground/request-panel/UrlQueryParams.tsx +1 -1
- package/src/lib/plugins/openapi/playground/request-panel/fieldManager/useKeyValueFieldManager.test.tsx +872 -0
- package/src/lib/plugins/openapi/playground/request-panel/useKeyValueFieldManager.ts +349 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.tsx +2 -2
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +102 -62
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +1 -1
- package/src/lib/plugins/openapi/playground/useRememberSkipLoginDialog.tsx +3 -0
- package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +1 -1
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +89 -55
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +100 -60
- package/src/lib/plugins/openapi/schema/UnionView.tsx +6 -17
- package/src/lib/plugins/openapi/schema/union-helpers.ts +0 -1
- package/src/lib/plugins/openapi/schema/utils.ts +20 -6
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +29 -1
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +11 -11
- package/src/lib/plugins/openapi/util/getRoutes.tsx +38 -3
- package/src/lib/plugins/search-pagefind/IndexingDialog.tsx +163 -0
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +61 -22
- package/src/lib/plugins/search-pagefind/ResultList.tsx +8 -3
- package/src/lib/shiki.ts +37 -14
- package/src/lib/ui/Badge.tsx +21 -12
- package/src/lib/ui/Button.tsx +11 -9
- package/src/lib/ui/ButtonGroup.tsx +82 -0
- package/src/lib/ui/Callout.tsx +10 -5
- package/src/lib/ui/Checkbox.tsx +23 -24
- package/src/lib/ui/CodeBlock.tsx +3 -4
- package/src/lib/ui/Collapsible.tsx +26 -4
- package/src/lib/ui/Command.tsx +3 -3
- package/src/lib/ui/Dialog.tsx +112 -106
- package/src/lib/ui/DropdownMenu.tsx +226 -170
- package/src/lib/ui/EmbeddedCodeBlock.tsx +24 -19
- package/src/lib/ui/Frame.tsx +81 -0
- package/src/lib/ui/Item.tsx +192 -0
- package/src/lib/ui/Kbd.tsx +28 -0
- package/src/lib/ui/NativeSelect.tsx +47 -0
- package/src/lib/ui/ReactComponentDoc.tsx +17 -17
- package/src/lib/ui/Select.tsx +153 -126
- package/src/lib/ui/Separator.tsx +25 -0
- package/src/lib/ui/SyntaxHighlight.tsx +6 -1
- package/src/lib/ui/Tooltip.tsx +54 -32
- package/src/lib/util/MdxComponents.tsx +5 -5
- package/src/lib/util/createVariantComponent.tsx +31 -5
- package/src/lib/util/flattenAllOf.test.ts +689 -0
- package/src/lib/util/flattenAllOf.ts +122 -0
- package/src/lib/util/invariant.ts +2 -1
- package/src/lib/util/readFrontmatter.ts +13 -0
- package/src/lib/util/syncZustandState.ts +22 -0
- package/src/shiki/langs/c3.js +1 -0
- package/src/shiki/langs/gn.js +1 -0
- package/src/shiki/langs/markdown-nix.js +1 -0
- package/src/shiki/langs/moonbit.js +1 -0
- package/src/shiki/langs/openscad.js +1 -0
- package/dist/lib/plugins/openapi/playground/InlineInput.d.ts +0 -4
- package/dist/lib/plugins/openapi/playground/InlineInput.js +0 -3
- package/dist/lib/plugins/openapi/playground/InlineInput.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.d.ts +0 -5
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.js +0 -7
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.d.ts +0 -4
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.js +0 -10
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.d.ts +0 -5
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.js +0 -16
- package/dist/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.js.map +0 -1
- package/dist/vite/create-pagefind-index.d.ts +0 -4
- package/dist/vite/create-pagefind-index.js +0 -12
- package/dist/vite/create-pagefind-index.js.map +0 -1
- package/lib/Button-DmS4u8Lj.js +0 -51
- package/lib/Button-DmS4u8Lj.js.map +0 -1
- package/lib/CodeBlock-CanTUJLl.js +0 -221
- package/lib/CodeBlock-CanTUJLl.js.map +0 -1
- package/lib/Command-CJY6q3PF.js.map +0 -1
- package/lib/Dialog-BOl0QB3n.js +0 -114
- package/lib/Dialog-BOl0QB3n.js.map +0 -1
- package/lib/DropdownMenu-BZ2NKQ3K.js +0 -126
- package/lib/DropdownMenu-BZ2NKQ3K.js.map +0 -1
- package/lib/ErrorAlert-VBJ8aHH7.js.map +0 -1
- package/lib/MdxPage-DFRNwSsc.js +0 -239
- package/lib/MdxPage-DFRNwSsc.js.map +0 -1
- package/lib/OAuthErrorPage-DJUOdr6Q.js.map +0 -1
- package/lib/OasProvider-BMUgPYQU.js +0 -36
- package/lib/OasProvider-BMUgPYQU.js.map +0 -1
- package/lib/OperationList-DVig5I94.js +0 -5446
- package/lib/OperationList-DVig5I94.js.map +0 -1
- package/lib/Pagination-CT4VUR6u.js +0 -37
- package/lib/Pagination-CT4VUR6u.js.map +0 -1
- package/lib/RouteGuard-BPWQlxy5.js +0 -56
- package/lib/RouteGuard-BPWQlxy5.js.map +0 -1
- package/lib/RouterError-fm21cqlj.js +0 -41
- package/lib/RouterError-fm21cqlj.js.map +0 -1
- package/lib/SchemaList-1eLKXqn8.js.map +0 -1
- package/lib/SchemaView-fq3uKfOA.js +0 -458
- package/lib/SchemaView-fq3uKfOA.js.map +0 -1
- package/lib/Select-CPoGZU_V.js +0 -372
- package/lib/Select-CPoGZU_V.js.map +0 -1
- package/lib/SignUp-BraHuRN_.js +0 -56
- package/lib/SignUp-BraHuRN_.js.map +0 -1
- package/lib/SyntaxHighlight-B0laqAqK.js.map +0 -1
- package/lib/Toc-KzXCRqrX.js.map +0 -1
- package/lib/ZudokuContext-BXTZApgy.js +0 -1506
- package/lib/ZudokuContext-BXTZApgy.js.map +0 -1
- package/lib/chunk-PVWAREVJ-BO6B-RAk.js +0 -7965
- package/lib/chunk-PVWAREVJ-BO6B-RAk.js.map +0 -1
- package/lib/circular-D6wbrxuf.js.map +0 -1
- package/lib/cn-dYga0KKN.js.map +0 -1
- package/lib/createServer-C5aY10Bc.js +0 -12559
- package/lib/createServer-C5aY10Bc.js.map +0 -1
- package/lib/hook-CAebs2rv.js +0 -31
- package/lib/hook-CAebs2rv.js.map +0 -1
- package/lib/index-BPSpOxTK.js +0 -1058
- package/lib/index-BPSpOxTK.js.map +0 -1
- package/lib/index-Bb9AsFlk.js +0 -3318
- package/lib/index-Bb9AsFlk.js.map +0 -1
- package/lib/invariant-Bm-FVUQE.js.map +0 -1
- package/lib/mutation-CdGPxHNX.js.map +0 -1
- package/lib/useExposedProps-Cd7Yg_uG.js +0 -113
- package/lib/useExposedProps-Cd7Yg_uG.js.map +0 -1
- package/src/lib/plugins/openapi/playground/InlineInput.tsx +0 -6
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupConnector.tsx +0 -36
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupItem.tsx +0 -25
- package/src/lib/plugins/openapi/schema/AllOfGroup/AllOfGroupView.tsx +0 -42
|
@@ -5,12 +5,13 @@ declare const InputNavigationCategoryLinkDocSchema: z.ZodUnion<readonly [z.ZodSt
|
|
|
5
5
|
type: z.ZodLiteral<"doc">;
|
|
6
6
|
file: z.ZodString;
|
|
7
7
|
label: z.ZodOptional<z.ZodString>;
|
|
8
|
+
path: z.ZodOptional<z.ZodString>;
|
|
8
9
|
}, z.core.$strip>]>;
|
|
9
10
|
export declare const DisplaySchema: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10
11
|
hide: "hide";
|
|
11
|
-
always: "always";
|
|
12
12
|
auth: "auth";
|
|
13
13
|
anon: "anon";
|
|
14
|
+
always: "always";
|
|
14
15
|
}>, z.ZodCustom<(params: {
|
|
15
16
|
context: ZudokuContext;
|
|
16
17
|
auth: UseAuthReturn;
|
|
@@ -23,41 +24,35 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
23
24
|
file: z.ZodString;
|
|
24
25
|
path: z.ZodOptional<z.ZodString>;
|
|
25
26
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
26
|
-
|
|
27
|
-
map: "map";
|
|
28
|
-
filter: "filter";
|
|
29
|
-
key: "key";
|
|
27
|
+
info: "info";
|
|
30
28
|
replace: "replace";
|
|
31
29
|
search: "search";
|
|
30
|
+
slice: "slice";
|
|
32
31
|
split: "split";
|
|
33
32
|
repeat: "repeat";
|
|
34
33
|
anchor: "anchor";
|
|
35
34
|
bold: "bold";
|
|
36
35
|
link: "link";
|
|
37
|
-
info: "info";
|
|
38
|
-
tags: "tags";
|
|
39
|
-
contact: "contact";
|
|
40
|
-
type: "type";
|
|
41
36
|
binary: "binary";
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
server: "server";
|
|
45
|
-
tag: "tag";
|
|
46
|
-
file: "file";
|
|
47
|
-
delete: "delete";
|
|
48
|
-
code: "code";
|
|
37
|
+
map: "map";
|
|
38
|
+
filter: "filter";
|
|
49
39
|
copy: "copy";
|
|
50
40
|
focus: "focus";
|
|
51
41
|
pause: "pause";
|
|
52
42
|
play: "play";
|
|
53
43
|
scroll: "scroll";
|
|
44
|
+
key: "key";
|
|
54
45
|
merge: "merge";
|
|
46
|
+
file: "file";
|
|
47
|
+
code: "code";
|
|
55
48
|
ghost: "ghost";
|
|
56
49
|
expand: "expand";
|
|
50
|
+
type: "type";
|
|
57
51
|
send: "send";
|
|
58
52
|
grid: "grid";
|
|
59
53
|
group: "group";
|
|
60
54
|
heading: "heading";
|
|
55
|
+
list: "list";
|
|
61
56
|
menu: "menu";
|
|
62
57
|
navigation: "navigation";
|
|
63
58
|
option: "option";
|
|
@@ -68,20 +63,30 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
68
63
|
text: "text";
|
|
69
64
|
mouse: "mouse";
|
|
70
65
|
pen: "pen";
|
|
71
|
-
circle: "circle";
|
|
72
66
|
target: "target";
|
|
73
67
|
radius: "radius";
|
|
74
68
|
scale: "scale";
|
|
75
69
|
x: "x";
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
70
|
+
server: "server";
|
|
71
|
+
atom: "atom";
|
|
72
|
+
rss: "rss";
|
|
73
|
+
coffee: "coffee";
|
|
74
|
+
diff: "diff";
|
|
75
|
+
fish: "fish";
|
|
76
|
+
"git-commit": "git-commit";
|
|
80
77
|
move: "move";
|
|
78
|
+
regex: "regex";
|
|
79
|
+
shell: "shell";
|
|
80
|
+
turtle: "turtle";
|
|
81
81
|
section: "section";
|
|
82
82
|
video: "video";
|
|
83
|
+
circle: "circle";
|
|
83
84
|
image: "image";
|
|
84
85
|
view: "view";
|
|
86
|
+
settings: "settings";
|
|
87
|
+
baseline: "baseline";
|
|
88
|
+
terminal: "terminal";
|
|
89
|
+
square: "square";
|
|
85
90
|
"a-arrow-down": "a-arrow-down";
|
|
86
91
|
"a-arrow-up": "a-arrow-up";
|
|
87
92
|
"a-large-small": "a-large-small";
|
|
@@ -220,7 +225,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
220
225
|
asterisk: "asterisk";
|
|
221
226
|
"asterisk-square": "asterisk-square";
|
|
222
227
|
"at-sign": "at-sign";
|
|
223
|
-
atom: "atom";
|
|
224
228
|
"audio-lines": "audio-lines";
|
|
225
229
|
"audio-waveform": "audio-waveform";
|
|
226
230
|
award: "award";
|
|
@@ -592,7 +596,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
592
596
|
"code-xml": "code-xml";
|
|
593
597
|
codepen: "codepen";
|
|
594
598
|
codesandbox: "codesandbox";
|
|
595
|
-
coffee: "coffee";
|
|
596
599
|
cog: "cog";
|
|
597
600
|
coins: "coins";
|
|
598
601
|
columns: "columns";
|
|
@@ -609,10 +612,12 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
609
612
|
"concierge-bell": "concierge-bell";
|
|
610
613
|
cone: "cone";
|
|
611
614
|
construction: "construction";
|
|
615
|
+
contact: "contact";
|
|
612
616
|
"contact-2": "contact-2";
|
|
613
617
|
"contact-round": "contact-round";
|
|
614
618
|
container: "container";
|
|
615
619
|
contrast: "contrast";
|
|
620
|
+
cookie: "cookie";
|
|
616
621
|
"cooking-pot": "cooking-pot";
|
|
617
622
|
"copy-check": "copy-check";
|
|
618
623
|
"copy-minus": "copy-minus";
|
|
@@ -648,6 +653,7 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
648
653
|
"database-zap": "database-zap";
|
|
649
654
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
650
655
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
656
|
+
delete: "delete";
|
|
651
657
|
dessert: "dessert";
|
|
652
658
|
diameter: "diameter";
|
|
653
659
|
diamond: "diamond";
|
|
@@ -661,7 +667,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
661
667
|
"dice-5": "dice-5";
|
|
662
668
|
"dice-6": "dice-6";
|
|
663
669
|
dices: "dices";
|
|
664
|
-
diff: "diff";
|
|
665
670
|
disc: "disc";
|
|
666
671
|
"disc-2": "disc-2";
|
|
667
672
|
"disc-3": "disc-3";
|
|
@@ -800,7 +805,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
800
805
|
"filter-x": "filter-x";
|
|
801
806
|
fingerprint: "fingerprint";
|
|
802
807
|
"fire-extinguisher": "fire-extinguisher";
|
|
803
|
-
fish: "fish";
|
|
804
808
|
"fish-off": "fish-off";
|
|
805
809
|
"fish-symbol": "fish-symbol";
|
|
806
810
|
flag: "flag";
|
|
@@ -888,7 +892,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
888
892
|
gift: "gift";
|
|
889
893
|
"git-branch": "git-branch";
|
|
890
894
|
"git-branch-plus": "git-branch-plus";
|
|
891
|
-
"git-commit": "git-commit";
|
|
892
895
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
893
896
|
"git-commit-vertical": "git-commit-vertical";
|
|
894
897
|
"git-compare": "git-compare";
|
|
@@ -1415,7 +1418,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1415
1418
|
"refresh-cw": "refresh-cw";
|
|
1416
1419
|
"refresh-cw-off": "refresh-cw-off";
|
|
1417
1420
|
refrigerator: "refrigerator";
|
|
1418
|
-
regex: "regex";
|
|
1419
1421
|
"remove-formatting": "remove-formatting";
|
|
1420
1422
|
"repeat-1": "repeat-1";
|
|
1421
1423
|
"repeat-2": "repeat-2";
|
|
@@ -1442,7 +1444,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1442
1444
|
"rows-2": "rows-2";
|
|
1443
1445
|
"rows-3": "rows-3";
|
|
1444
1446
|
"rows-4": "rows-4";
|
|
1445
|
-
rss: "rss";
|
|
1446
1447
|
ruler: "ruler";
|
|
1447
1448
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
1448
1449
|
"russian-ruble": "russian-ruble";
|
|
@@ -1489,7 +1490,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1489
1490
|
"server-cog": "server-cog";
|
|
1490
1491
|
"server-crash": "server-crash";
|
|
1491
1492
|
"server-off": "server-off";
|
|
1492
|
-
settings: "settings";
|
|
1493
1493
|
"settings-2": "settings-2";
|
|
1494
1494
|
shapes: "shapes";
|
|
1495
1495
|
share: "share";
|
|
@@ -1687,6 +1687,8 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1687
1687
|
tablet: "tablet";
|
|
1688
1688
|
"tablet-smartphone": "tablet-smartphone";
|
|
1689
1689
|
tablets: "tablets";
|
|
1690
|
+
tag: "tag";
|
|
1691
|
+
tags: "tags";
|
|
1690
1692
|
"tally-1": "tally-1";
|
|
1691
1693
|
"tally-2": "tally-2";
|
|
1692
1694
|
"tally-3": "tally-3";
|
|
@@ -1767,7 +1769,6 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1767
1769
|
"truck-electric": "truck-electric";
|
|
1768
1770
|
"turkish-lira": "turkish-lira";
|
|
1769
1771
|
turntable: "turntable";
|
|
1770
|
-
turtle: "turtle";
|
|
1771
1772
|
tv: "tv";
|
|
1772
1773
|
"tv-2": "tv-2";
|
|
1773
1774
|
"tv-minimal": "tv-minimal";
|
|
@@ -1898,10 +1899,10 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1898
1899
|
label: z.ZodString;
|
|
1899
1900
|
color: z.ZodEnum<{
|
|
1900
1901
|
outline: "outline";
|
|
1902
|
+
red: "red";
|
|
1901
1903
|
green: "green";
|
|
1902
1904
|
blue: "blue";
|
|
1903
1905
|
yellow: "yellow";
|
|
1904
|
-
red: "red";
|
|
1905
1906
|
purple: "purple";
|
|
1906
1907
|
indigo: "indigo";
|
|
1907
1908
|
gray: "gray";
|
|
@@ -1911,9 +1912,9 @@ declare const InputNavigationDocSchema: z.ZodUnion<readonly [z.ZodString, z.ZodO
|
|
|
1911
1912
|
}, z.core.$strip>>;
|
|
1912
1913
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1913
1914
|
hide: "hide";
|
|
1914
|
-
always: "always";
|
|
1915
1915
|
auth: "auth";
|
|
1916
1916
|
anon: "anon";
|
|
1917
|
+
always: "always";
|
|
1917
1918
|
}>, z.ZodCustom<(params: {
|
|
1918
1919
|
context: ZudokuContext;
|
|
1919
1920
|
auth: UseAuthReturn;
|
|
@@ -1931,41 +1932,35 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1931
1932
|
_blank: "_blank";
|
|
1932
1933
|
}>>;
|
|
1933
1934
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
1934
|
-
|
|
1935
|
-
map: "map";
|
|
1936
|
-
filter: "filter";
|
|
1937
|
-
key: "key";
|
|
1935
|
+
info: "info";
|
|
1938
1936
|
replace: "replace";
|
|
1939
1937
|
search: "search";
|
|
1938
|
+
slice: "slice";
|
|
1940
1939
|
split: "split";
|
|
1941
1940
|
repeat: "repeat";
|
|
1942
1941
|
anchor: "anchor";
|
|
1943
1942
|
bold: "bold";
|
|
1944
1943
|
link: "link";
|
|
1945
|
-
info: "info";
|
|
1946
|
-
tags: "tags";
|
|
1947
|
-
contact: "contact";
|
|
1948
|
-
type: "type";
|
|
1949
1944
|
binary: "binary";
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
server: "server";
|
|
1953
|
-
tag: "tag";
|
|
1954
|
-
file: "file";
|
|
1955
|
-
delete: "delete";
|
|
1956
|
-
code: "code";
|
|
1945
|
+
map: "map";
|
|
1946
|
+
filter: "filter";
|
|
1957
1947
|
copy: "copy";
|
|
1958
1948
|
focus: "focus";
|
|
1959
1949
|
pause: "pause";
|
|
1960
1950
|
play: "play";
|
|
1961
1951
|
scroll: "scroll";
|
|
1952
|
+
key: "key";
|
|
1962
1953
|
merge: "merge";
|
|
1954
|
+
file: "file";
|
|
1955
|
+
code: "code";
|
|
1963
1956
|
ghost: "ghost";
|
|
1964
1957
|
expand: "expand";
|
|
1958
|
+
type: "type";
|
|
1965
1959
|
send: "send";
|
|
1966
1960
|
grid: "grid";
|
|
1967
1961
|
group: "group";
|
|
1968
1962
|
heading: "heading";
|
|
1963
|
+
list: "list";
|
|
1969
1964
|
menu: "menu";
|
|
1970
1965
|
navigation: "navigation";
|
|
1971
1966
|
option: "option";
|
|
@@ -1976,20 +1971,30 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
1976
1971
|
text: "text";
|
|
1977
1972
|
mouse: "mouse";
|
|
1978
1973
|
pen: "pen";
|
|
1979
|
-
circle: "circle";
|
|
1980
1974
|
target: "target";
|
|
1981
1975
|
radius: "radius";
|
|
1982
1976
|
scale: "scale";
|
|
1983
1977
|
x: "x";
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1978
|
+
server: "server";
|
|
1979
|
+
atom: "atom";
|
|
1980
|
+
rss: "rss";
|
|
1981
|
+
coffee: "coffee";
|
|
1982
|
+
diff: "diff";
|
|
1983
|
+
fish: "fish";
|
|
1984
|
+
"git-commit": "git-commit";
|
|
1988
1985
|
move: "move";
|
|
1986
|
+
regex: "regex";
|
|
1987
|
+
shell: "shell";
|
|
1988
|
+
turtle: "turtle";
|
|
1989
1989
|
section: "section";
|
|
1990
1990
|
video: "video";
|
|
1991
|
+
circle: "circle";
|
|
1991
1992
|
image: "image";
|
|
1992
1993
|
view: "view";
|
|
1994
|
+
settings: "settings";
|
|
1995
|
+
baseline: "baseline";
|
|
1996
|
+
terminal: "terminal";
|
|
1997
|
+
square: "square";
|
|
1993
1998
|
"a-arrow-down": "a-arrow-down";
|
|
1994
1999
|
"a-arrow-up": "a-arrow-up";
|
|
1995
2000
|
"a-large-small": "a-large-small";
|
|
@@ -2128,7 +2133,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2128
2133
|
asterisk: "asterisk";
|
|
2129
2134
|
"asterisk-square": "asterisk-square";
|
|
2130
2135
|
"at-sign": "at-sign";
|
|
2131
|
-
atom: "atom";
|
|
2132
2136
|
"audio-lines": "audio-lines";
|
|
2133
2137
|
"audio-waveform": "audio-waveform";
|
|
2134
2138
|
award: "award";
|
|
@@ -2500,7 +2504,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2500
2504
|
"code-xml": "code-xml";
|
|
2501
2505
|
codepen: "codepen";
|
|
2502
2506
|
codesandbox: "codesandbox";
|
|
2503
|
-
coffee: "coffee";
|
|
2504
2507
|
cog: "cog";
|
|
2505
2508
|
coins: "coins";
|
|
2506
2509
|
columns: "columns";
|
|
@@ -2517,10 +2520,12 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2517
2520
|
"concierge-bell": "concierge-bell";
|
|
2518
2521
|
cone: "cone";
|
|
2519
2522
|
construction: "construction";
|
|
2523
|
+
contact: "contact";
|
|
2520
2524
|
"contact-2": "contact-2";
|
|
2521
2525
|
"contact-round": "contact-round";
|
|
2522
2526
|
container: "container";
|
|
2523
2527
|
contrast: "contrast";
|
|
2528
|
+
cookie: "cookie";
|
|
2524
2529
|
"cooking-pot": "cooking-pot";
|
|
2525
2530
|
"copy-check": "copy-check";
|
|
2526
2531
|
"copy-minus": "copy-minus";
|
|
@@ -2556,6 +2561,7 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2556
2561
|
"database-zap": "database-zap";
|
|
2557
2562
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
2558
2563
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
2564
|
+
delete: "delete";
|
|
2559
2565
|
dessert: "dessert";
|
|
2560
2566
|
diameter: "diameter";
|
|
2561
2567
|
diamond: "diamond";
|
|
@@ -2569,7 +2575,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2569
2575
|
"dice-5": "dice-5";
|
|
2570
2576
|
"dice-6": "dice-6";
|
|
2571
2577
|
dices: "dices";
|
|
2572
|
-
diff: "diff";
|
|
2573
2578
|
disc: "disc";
|
|
2574
2579
|
"disc-2": "disc-2";
|
|
2575
2580
|
"disc-3": "disc-3";
|
|
@@ -2708,7 +2713,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2708
2713
|
"filter-x": "filter-x";
|
|
2709
2714
|
fingerprint: "fingerprint";
|
|
2710
2715
|
"fire-extinguisher": "fire-extinguisher";
|
|
2711
|
-
fish: "fish";
|
|
2712
2716
|
"fish-off": "fish-off";
|
|
2713
2717
|
"fish-symbol": "fish-symbol";
|
|
2714
2718
|
flag: "flag";
|
|
@@ -2796,7 +2800,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
2796
2800
|
gift: "gift";
|
|
2797
2801
|
"git-branch": "git-branch";
|
|
2798
2802
|
"git-branch-plus": "git-branch-plus";
|
|
2799
|
-
"git-commit": "git-commit";
|
|
2800
2803
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
2801
2804
|
"git-commit-vertical": "git-commit-vertical";
|
|
2802
2805
|
"git-compare": "git-compare";
|
|
@@ -3323,7 +3326,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3323
3326
|
"refresh-cw": "refresh-cw";
|
|
3324
3327
|
"refresh-cw-off": "refresh-cw-off";
|
|
3325
3328
|
refrigerator: "refrigerator";
|
|
3326
|
-
regex: "regex";
|
|
3327
3329
|
"remove-formatting": "remove-formatting";
|
|
3328
3330
|
"repeat-1": "repeat-1";
|
|
3329
3331
|
"repeat-2": "repeat-2";
|
|
@@ -3350,7 +3352,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3350
3352
|
"rows-2": "rows-2";
|
|
3351
3353
|
"rows-3": "rows-3";
|
|
3352
3354
|
"rows-4": "rows-4";
|
|
3353
|
-
rss: "rss";
|
|
3354
3355
|
ruler: "ruler";
|
|
3355
3356
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
3356
3357
|
"russian-ruble": "russian-ruble";
|
|
@@ -3397,7 +3398,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3397
3398
|
"server-cog": "server-cog";
|
|
3398
3399
|
"server-crash": "server-crash";
|
|
3399
3400
|
"server-off": "server-off";
|
|
3400
|
-
settings: "settings";
|
|
3401
3401
|
"settings-2": "settings-2";
|
|
3402
3402
|
shapes: "shapes";
|
|
3403
3403
|
share: "share";
|
|
@@ -3595,6 +3595,8 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3595
3595
|
tablet: "tablet";
|
|
3596
3596
|
"tablet-smartphone": "tablet-smartphone";
|
|
3597
3597
|
tablets: "tablets";
|
|
3598
|
+
tag: "tag";
|
|
3599
|
+
tags: "tags";
|
|
3598
3600
|
"tally-1": "tally-1";
|
|
3599
3601
|
"tally-2": "tally-2";
|
|
3600
3602
|
"tally-3": "tally-3";
|
|
@@ -3675,7 +3677,6 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3675
3677
|
"truck-electric": "truck-electric";
|
|
3676
3678
|
"turkish-lira": "turkish-lira";
|
|
3677
3679
|
turntable: "turntable";
|
|
3678
|
-
turtle: "turtle";
|
|
3679
3680
|
tv: "tv";
|
|
3680
3681
|
"tv-2": "tv-2";
|
|
3681
3682
|
"tv-minimal": "tv-minimal";
|
|
@@ -3805,10 +3806,10 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3805
3806
|
label: z.ZodString;
|
|
3806
3807
|
color: z.ZodEnum<{
|
|
3807
3808
|
outline: "outline";
|
|
3809
|
+
red: "red";
|
|
3808
3810
|
green: "green";
|
|
3809
3811
|
blue: "blue";
|
|
3810
3812
|
yellow: "yellow";
|
|
3811
|
-
red: "red";
|
|
3812
3813
|
purple: "purple";
|
|
3813
3814
|
indigo: "indigo";
|
|
3814
3815
|
gray: "gray";
|
|
@@ -3818,9 +3819,9 @@ declare const InputNavigationLinkSchema: z.ZodObject<{
|
|
|
3818
3819
|
}, z.core.$strip>>;
|
|
3819
3820
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3820
3821
|
hide: "hide";
|
|
3821
|
-
always: "always";
|
|
3822
3822
|
auth: "auth";
|
|
3823
3823
|
anon: "anon";
|
|
3824
|
+
always: "always";
|
|
3824
3825
|
}>, z.ZodCustom<(params: {
|
|
3825
3826
|
context: ZudokuContext;
|
|
3826
3827
|
auth: UseAuthReturn;
|
|
@@ -3835,41 +3836,35 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3835
3836
|
label: z.ZodOptional<z.ZodString>;
|
|
3836
3837
|
element: z.ZodAny;
|
|
3837
3838
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
3838
|
-
|
|
3839
|
-
map: "map";
|
|
3840
|
-
filter: "filter";
|
|
3841
|
-
key: "key";
|
|
3839
|
+
info: "info";
|
|
3842
3840
|
replace: "replace";
|
|
3843
3841
|
search: "search";
|
|
3842
|
+
slice: "slice";
|
|
3844
3843
|
split: "split";
|
|
3845
3844
|
repeat: "repeat";
|
|
3846
3845
|
anchor: "anchor";
|
|
3847
3846
|
bold: "bold";
|
|
3848
3847
|
link: "link";
|
|
3849
|
-
info: "info";
|
|
3850
|
-
tags: "tags";
|
|
3851
|
-
contact: "contact";
|
|
3852
|
-
type: "type";
|
|
3853
3848
|
binary: "binary";
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
server: "server";
|
|
3857
|
-
tag: "tag";
|
|
3858
|
-
file: "file";
|
|
3859
|
-
delete: "delete";
|
|
3860
|
-
code: "code";
|
|
3849
|
+
map: "map";
|
|
3850
|
+
filter: "filter";
|
|
3861
3851
|
copy: "copy";
|
|
3862
3852
|
focus: "focus";
|
|
3863
3853
|
pause: "pause";
|
|
3864
3854
|
play: "play";
|
|
3865
3855
|
scroll: "scroll";
|
|
3856
|
+
key: "key";
|
|
3866
3857
|
merge: "merge";
|
|
3858
|
+
file: "file";
|
|
3859
|
+
code: "code";
|
|
3867
3860
|
ghost: "ghost";
|
|
3868
3861
|
expand: "expand";
|
|
3862
|
+
type: "type";
|
|
3869
3863
|
send: "send";
|
|
3870
3864
|
grid: "grid";
|
|
3871
3865
|
group: "group";
|
|
3872
3866
|
heading: "heading";
|
|
3867
|
+
list: "list";
|
|
3873
3868
|
menu: "menu";
|
|
3874
3869
|
navigation: "navigation";
|
|
3875
3870
|
option: "option";
|
|
@@ -3880,20 +3875,30 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
3880
3875
|
text: "text";
|
|
3881
3876
|
mouse: "mouse";
|
|
3882
3877
|
pen: "pen";
|
|
3883
|
-
circle: "circle";
|
|
3884
3878
|
target: "target";
|
|
3885
3879
|
radius: "radius";
|
|
3886
3880
|
scale: "scale";
|
|
3887
3881
|
x: "x";
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3882
|
+
server: "server";
|
|
3883
|
+
atom: "atom";
|
|
3884
|
+
rss: "rss";
|
|
3885
|
+
coffee: "coffee";
|
|
3886
|
+
diff: "diff";
|
|
3887
|
+
fish: "fish";
|
|
3888
|
+
"git-commit": "git-commit";
|
|
3892
3889
|
move: "move";
|
|
3890
|
+
regex: "regex";
|
|
3891
|
+
shell: "shell";
|
|
3892
|
+
turtle: "turtle";
|
|
3893
3893
|
section: "section";
|
|
3894
3894
|
video: "video";
|
|
3895
|
+
circle: "circle";
|
|
3895
3896
|
image: "image";
|
|
3896
3897
|
view: "view";
|
|
3898
|
+
settings: "settings";
|
|
3899
|
+
baseline: "baseline";
|
|
3900
|
+
terminal: "terminal";
|
|
3901
|
+
square: "square";
|
|
3897
3902
|
"a-arrow-down": "a-arrow-down";
|
|
3898
3903
|
"a-arrow-up": "a-arrow-up";
|
|
3899
3904
|
"a-large-small": "a-large-small";
|
|
@@ -4032,7 +4037,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4032
4037
|
asterisk: "asterisk";
|
|
4033
4038
|
"asterisk-square": "asterisk-square";
|
|
4034
4039
|
"at-sign": "at-sign";
|
|
4035
|
-
atom: "atom";
|
|
4036
4040
|
"audio-lines": "audio-lines";
|
|
4037
4041
|
"audio-waveform": "audio-waveform";
|
|
4038
4042
|
award: "award";
|
|
@@ -4404,7 +4408,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4404
4408
|
"code-xml": "code-xml";
|
|
4405
4409
|
codepen: "codepen";
|
|
4406
4410
|
codesandbox: "codesandbox";
|
|
4407
|
-
coffee: "coffee";
|
|
4408
4411
|
cog: "cog";
|
|
4409
4412
|
coins: "coins";
|
|
4410
4413
|
columns: "columns";
|
|
@@ -4421,10 +4424,12 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4421
4424
|
"concierge-bell": "concierge-bell";
|
|
4422
4425
|
cone: "cone";
|
|
4423
4426
|
construction: "construction";
|
|
4427
|
+
contact: "contact";
|
|
4424
4428
|
"contact-2": "contact-2";
|
|
4425
4429
|
"contact-round": "contact-round";
|
|
4426
4430
|
container: "container";
|
|
4427
4431
|
contrast: "contrast";
|
|
4432
|
+
cookie: "cookie";
|
|
4428
4433
|
"cooking-pot": "cooking-pot";
|
|
4429
4434
|
"copy-check": "copy-check";
|
|
4430
4435
|
"copy-minus": "copy-minus";
|
|
@@ -4460,6 +4465,7 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4460
4465
|
"database-zap": "database-zap";
|
|
4461
4466
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
4462
4467
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
4468
|
+
delete: "delete";
|
|
4463
4469
|
dessert: "dessert";
|
|
4464
4470
|
diameter: "diameter";
|
|
4465
4471
|
diamond: "diamond";
|
|
@@ -4473,7 +4479,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4473
4479
|
"dice-5": "dice-5";
|
|
4474
4480
|
"dice-6": "dice-6";
|
|
4475
4481
|
dices: "dices";
|
|
4476
|
-
diff: "diff";
|
|
4477
4482
|
disc: "disc";
|
|
4478
4483
|
"disc-2": "disc-2";
|
|
4479
4484
|
"disc-3": "disc-3";
|
|
@@ -4612,7 +4617,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4612
4617
|
"filter-x": "filter-x";
|
|
4613
4618
|
fingerprint: "fingerprint";
|
|
4614
4619
|
"fire-extinguisher": "fire-extinguisher";
|
|
4615
|
-
fish: "fish";
|
|
4616
4620
|
"fish-off": "fish-off";
|
|
4617
4621
|
"fish-symbol": "fish-symbol";
|
|
4618
4622
|
flag: "flag";
|
|
@@ -4700,7 +4704,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
4700
4704
|
gift: "gift";
|
|
4701
4705
|
"git-branch": "git-branch";
|
|
4702
4706
|
"git-branch-plus": "git-branch-plus";
|
|
4703
|
-
"git-commit": "git-commit";
|
|
4704
4707
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
4705
4708
|
"git-commit-vertical": "git-commit-vertical";
|
|
4706
4709
|
"git-compare": "git-compare";
|
|
@@ -5227,7 +5230,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5227
5230
|
"refresh-cw": "refresh-cw";
|
|
5228
5231
|
"refresh-cw-off": "refresh-cw-off";
|
|
5229
5232
|
refrigerator: "refrigerator";
|
|
5230
|
-
regex: "regex";
|
|
5231
5233
|
"remove-formatting": "remove-formatting";
|
|
5232
5234
|
"repeat-1": "repeat-1";
|
|
5233
5235
|
"repeat-2": "repeat-2";
|
|
@@ -5254,7 +5256,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5254
5256
|
"rows-2": "rows-2";
|
|
5255
5257
|
"rows-3": "rows-3";
|
|
5256
5258
|
"rows-4": "rows-4";
|
|
5257
|
-
rss: "rss";
|
|
5258
5259
|
ruler: "ruler";
|
|
5259
5260
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
5260
5261
|
"russian-ruble": "russian-ruble";
|
|
@@ -5301,7 +5302,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5301
5302
|
"server-cog": "server-cog";
|
|
5302
5303
|
"server-crash": "server-crash";
|
|
5303
5304
|
"server-off": "server-off";
|
|
5304
|
-
settings: "settings";
|
|
5305
5305
|
"settings-2": "settings-2";
|
|
5306
5306
|
shapes: "shapes";
|
|
5307
5307
|
share: "share";
|
|
@@ -5499,6 +5499,8 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5499
5499
|
tablet: "tablet";
|
|
5500
5500
|
"tablet-smartphone": "tablet-smartphone";
|
|
5501
5501
|
tablets: "tablets";
|
|
5502
|
+
tag: "tag";
|
|
5503
|
+
tags: "tags";
|
|
5502
5504
|
"tally-1": "tally-1";
|
|
5503
5505
|
"tally-2": "tally-2";
|
|
5504
5506
|
"tally-3": "tally-3";
|
|
@@ -5579,7 +5581,6 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5579
5581
|
"truck-electric": "truck-electric";
|
|
5580
5582
|
"turkish-lira": "turkish-lira";
|
|
5581
5583
|
turntable: "turntable";
|
|
5582
|
-
turtle: "turtle";
|
|
5583
5584
|
tv: "tv";
|
|
5584
5585
|
"tv-2": "tv-2";
|
|
5585
5586
|
"tv-minimal": "tv-minimal";
|
|
@@ -5709,10 +5710,10 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5709
5710
|
label: z.ZodString;
|
|
5710
5711
|
color: z.ZodEnum<{
|
|
5711
5712
|
outline: "outline";
|
|
5713
|
+
red: "red";
|
|
5712
5714
|
green: "green";
|
|
5713
5715
|
blue: "blue";
|
|
5714
5716
|
yellow: "yellow";
|
|
5715
|
-
red: "red";
|
|
5716
5717
|
purple: "purple";
|
|
5717
5718
|
indigo: "indigo";
|
|
5718
5719
|
gray: "gray";
|
|
@@ -5722,9 +5723,9 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5722
5723
|
}, z.core.$strip>>;
|
|
5723
5724
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5724
5725
|
hide: "hide";
|
|
5725
|
-
always: "always";
|
|
5726
5726
|
auth: "auth";
|
|
5727
5727
|
anon: "anon";
|
|
5728
|
+
always: "always";
|
|
5728
5729
|
}>, z.ZodCustom<(params: {
|
|
5729
5730
|
context: ZudokuContext;
|
|
5730
5731
|
auth: UseAuthReturn;
|
|
@@ -5740,41 +5741,35 @@ declare const InputNavigationCustomPageSchema: z.ZodObject<{
|
|
|
5740
5741
|
declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
5741
5742
|
type: z.ZodLiteral<"category">;
|
|
5742
5743
|
icon: z.ZodOptional<z.ZodEnum<{
|
|
5743
|
-
|
|
5744
|
-
map: "map";
|
|
5745
|
-
filter: "filter";
|
|
5746
|
-
key: "key";
|
|
5744
|
+
info: "info";
|
|
5747
5745
|
replace: "replace";
|
|
5748
5746
|
search: "search";
|
|
5747
|
+
slice: "slice";
|
|
5749
5748
|
split: "split";
|
|
5750
5749
|
repeat: "repeat";
|
|
5751
5750
|
anchor: "anchor";
|
|
5752
5751
|
bold: "bold";
|
|
5753
5752
|
link: "link";
|
|
5754
|
-
info: "info";
|
|
5755
|
-
tags: "tags";
|
|
5756
|
-
contact: "contact";
|
|
5757
|
-
type: "type";
|
|
5758
5753
|
binary: "binary";
|
|
5759
|
-
|
|
5760
|
-
|
|
5761
|
-
server: "server";
|
|
5762
|
-
tag: "tag";
|
|
5763
|
-
file: "file";
|
|
5764
|
-
delete: "delete";
|
|
5765
|
-
code: "code";
|
|
5754
|
+
map: "map";
|
|
5755
|
+
filter: "filter";
|
|
5766
5756
|
copy: "copy";
|
|
5767
5757
|
focus: "focus";
|
|
5768
5758
|
pause: "pause";
|
|
5769
5759
|
play: "play";
|
|
5770
5760
|
scroll: "scroll";
|
|
5761
|
+
key: "key";
|
|
5771
5762
|
merge: "merge";
|
|
5763
|
+
file: "file";
|
|
5764
|
+
code: "code";
|
|
5772
5765
|
ghost: "ghost";
|
|
5773
5766
|
expand: "expand";
|
|
5767
|
+
type: "type";
|
|
5774
5768
|
send: "send";
|
|
5775
5769
|
grid: "grid";
|
|
5776
5770
|
group: "group";
|
|
5777
5771
|
heading: "heading";
|
|
5772
|
+
list: "list";
|
|
5778
5773
|
menu: "menu";
|
|
5779
5774
|
navigation: "navigation";
|
|
5780
5775
|
option: "option";
|
|
@@ -5785,20 +5780,30 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5785
5780
|
text: "text";
|
|
5786
5781
|
mouse: "mouse";
|
|
5787
5782
|
pen: "pen";
|
|
5788
|
-
circle: "circle";
|
|
5789
5783
|
target: "target";
|
|
5790
5784
|
radius: "radius";
|
|
5791
5785
|
scale: "scale";
|
|
5792
5786
|
x: "x";
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
|
|
5796
|
-
|
|
5787
|
+
server: "server";
|
|
5788
|
+
atom: "atom";
|
|
5789
|
+
rss: "rss";
|
|
5790
|
+
coffee: "coffee";
|
|
5791
|
+
diff: "diff";
|
|
5792
|
+
fish: "fish";
|
|
5793
|
+
"git-commit": "git-commit";
|
|
5797
5794
|
move: "move";
|
|
5795
|
+
regex: "regex";
|
|
5796
|
+
shell: "shell";
|
|
5797
|
+
turtle: "turtle";
|
|
5798
5798
|
section: "section";
|
|
5799
5799
|
video: "video";
|
|
5800
|
+
circle: "circle";
|
|
5800
5801
|
image: "image";
|
|
5801
5802
|
view: "view";
|
|
5803
|
+
settings: "settings";
|
|
5804
|
+
baseline: "baseline";
|
|
5805
|
+
terminal: "terminal";
|
|
5806
|
+
square: "square";
|
|
5802
5807
|
"a-arrow-down": "a-arrow-down";
|
|
5803
5808
|
"a-arrow-up": "a-arrow-up";
|
|
5804
5809
|
"a-large-small": "a-large-small";
|
|
@@ -5937,7 +5942,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
5937
5942
|
asterisk: "asterisk";
|
|
5938
5943
|
"asterisk-square": "asterisk-square";
|
|
5939
5944
|
"at-sign": "at-sign";
|
|
5940
|
-
atom: "atom";
|
|
5941
5945
|
"audio-lines": "audio-lines";
|
|
5942
5946
|
"audio-waveform": "audio-waveform";
|
|
5943
5947
|
award: "award";
|
|
@@ -6309,7 +6313,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6309
6313
|
"code-xml": "code-xml";
|
|
6310
6314
|
codepen: "codepen";
|
|
6311
6315
|
codesandbox: "codesandbox";
|
|
6312
|
-
coffee: "coffee";
|
|
6313
6316
|
cog: "cog";
|
|
6314
6317
|
coins: "coins";
|
|
6315
6318
|
columns: "columns";
|
|
@@ -6326,10 +6329,12 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6326
6329
|
"concierge-bell": "concierge-bell";
|
|
6327
6330
|
cone: "cone";
|
|
6328
6331
|
construction: "construction";
|
|
6332
|
+
contact: "contact";
|
|
6329
6333
|
"contact-2": "contact-2";
|
|
6330
6334
|
"contact-round": "contact-round";
|
|
6331
6335
|
container: "container";
|
|
6332
6336
|
contrast: "contrast";
|
|
6337
|
+
cookie: "cookie";
|
|
6333
6338
|
"cooking-pot": "cooking-pot";
|
|
6334
6339
|
"copy-check": "copy-check";
|
|
6335
6340
|
"copy-minus": "copy-minus";
|
|
@@ -6365,6 +6370,7 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6365
6370
|
"database-zap": "database-zap";
|
|
6366
6371
|
"decimals-arrow-left": "decimals-arrow-left";
|
|
6367
6372
|
"decimals-arrow-right": "decimals-arrow-right";
|
|
6373
|
+
delete: "delete";
|
|
6368
6374
|
dessert: "dessert";
|
|
6369
6375
|
diameter: "diameter";
|
|
6370
6376
|
diamond: "diamond";
|
|
@@ -6378,7 +6384,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6378
6384
|
"dice-5": "dice-5";
|
|
6379
6385
|
"dice-6": "dice-6";
|
|
6380
6386
|
dices: "dices";
|
|
6381
|
-
diff: "diff";
|
|
6382
6387
|
disc: "disc";
|
|
6383
6388
|
"disc-2": "disc-2";
|
|
6384
6389
|
"disc-3": "disc-3";
|
|
@@ -6517,7 +6522,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6517
6522
|
"filter-x": "filter-x";
|
|
6518
6523
|
fingerprint: "fingerprint";
|
|
6519
6524
|
"fire-extinguisher": "fire-extinguisher";
|
|
6520
|
-
fish: "fish";
|
|
6521
6525
|
"fish-off": "fish-off";
|
|
6522
6526
|
"fish-symbol": "fish-symbol";
|
|
6523
6527
|
flag: "flag";
|
|
@@ -6605,7 +6609,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
6605
6609
|
gift: "gift";
|
|
6606
6610
|
"git-branch": "git-branch";
|
|
6607
6611
|
"git-branch-plus": "git-branch-plus";
|
|
6608
|
-
"git-commit": "git-commit";
|
|
6609
6612
|
"git-commit-horizontal": "git-commit-horizontal";
|
|
6610
6613
|
"git-commit-vertical": "git-commit-vertical";
|
|
6611
6614
|
"git-compare": "git-compare";
|
|
@@ -7132,7 +7135,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7132
7135
|
"refresh-cw": "refresh-cw";
|
|
7133
7136
|
"refresh-cw-off": "refresh-cw-off";
|
|
7134
7137
|
refrigerator: "refrigerator";
|
|
7135
|
-
regex: "regex";
|
|
7136
7138
|
"remove-formatting": "remove-formatting";
|
|
7137
7139
|
"repeat-1": "repeat-1";
|
|
7138
7140
|
"repeat-2": "repeat-2";
|
|
@@ -7159,7 +7161,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7159
7161
|
"rows-2": "rows-2";
|
|
7160
7162
|
"rows-3": "rows-3";
|
|
7161
7163
|
"rows-4": "rows-4";
|
|
7162
|
-
rss: "rss";
|
|
7163
7164
|
ruler: "ruler";
|
|
7164
7165
|
"ruler-dimension-line": "ruler-dimension-line";
|
|
7165
7166
|
"russian-ruble": "russian-ruble";
|
|
@@ -7206,7 +7207,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7206
7207
|
"server-cog": "server-cog";
|
|
7207
7208
|
"server-crash": "server-crash";
|
|
7208
7209
|
"server-off": "server-off";
|
|
7209
|
-
settings: "settings";
|
|
7210
7210
|
"settings-2": "settings-2";
|
|
7211
7211
|
shapes: "shapes";
|
|
7212
7212
|
share: "share";
|
|
@@ -7404,6 +7404,8 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7404
7404
|
tablet: "tablet";
|
|
7405
7405
|
"tablet-smartphone": "tablet-smartphone";
|
|
7406
7406
|
tablets: "tablets";
|
|
7407
|
+
tag: "tag";
|
|
7408
|
+
tags: "tags";
|
|
7407
7409
|
"tally-1": "tally-1";
|
|
7408
7410
|
"tally-2": "tally-2";
|
|
7409
7411
|
"tally-3": "tally-3";
|
|
@@ -7484,7 +7486,6 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7484
7486
|
"truck-electric": "truck-electric";
|
|
7485
7487
|
"turkish-lira": "turkish-lira";
|
|
7486
7488
|
turntable: "turntable";
|
|
7487
|
-
turtle: "turtle";
|
|
7488
7489
|
tv: "tv";
|
|
7489
7490
|
"tv-2": "tv-2";
|
|
7490
7491
|
"tv-minimal": "tv-minimal";
|
|
@@ -7617,12 +7618,13 @@ declare const BaseInputNavigationCategorySchema: z.ZodObject<{
|
|
|
7617
7618
|
type: z.ZodLiteral<"doc">;
|
|
7618
7619
|
file: z.ZodString;
|
|
7619
7620
|
label: z.ZodOptional<z.ZodString>;
|
|
7621
|
+
path: z.ZodOptional<z.ZodString>;
|
|
7620
7622
|
}, z.core.$strip>]>>;
|
|
7621
7623
|
display: z.ZodOptional<z.ZodDefault<z.ZodUnion<readonly [z.ZodEnum<{
|
|
7622
7624
|
hide: "hide";
|
|
7623
|
-
always: "always";
|
|
7624
7625
|
auth: "auth";
|
|
7625
7626
|
anon: "anon";
|
|
7627
|
+
always: "always";
|
|
7626
7628
|
}>, z.ZodCustom<(params: {
|
|
7627
7629
|
context: ZudokuContext;
|
|
7628
7630
|
auth: UseAuthReturn;
|