zudoku 0.0.0-f0602bf → 0.0.0-f0b4321
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 +2 -2
- package/dist/app/ZuploBuildConfig.d.ts +11 -121
- package/dist/app/ZuploBuildConfig.js +8 -8
- package/dist/app/ZuploBuildConfig.js.map +1 -1
- package/dist/app/demo.js +21 -5
- package/dist/app/demo.js.map +1 -1
- package/dist/app/entry.client.d.ts +0 -2
- package/dist/app/entry.client.js +0 -2
- package/dist/app/entry.client.js.map +1 -1
- package/dist/app/entry.server.d.ts +0 -2
- package/dist/app/entry.server.js +0 -2
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/env.d.ts +7 -7
- package/dist/app/env.js +8 -0
- package/dist/app/env.js.map +1 -1
- package/dist/app/main.d.ts +1 -0
- package/dist/app/main.js +15 -20
- package/dist/app/main.js.map +1 -1
- package/dist/app/standalone.js +7 -6
- 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/config/config.d.ts +11 -0
- package/dist/config/loader.js +4 -8
- package/dist/config/loader.js.map +1 -1
- package/dist/config/validators/BuildSchema.d.ts +20 -44
- package/dist/config/validators/BuildSchema.js +8 -14
- package/dist/config/validators/BuildSchema.js.map +1 -1
- package/dist/config/validators/InputNavigationSchema.d.ts +7364 -0
- package/dist/config/validators/InputNavigationSchema.js +71 -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 +145 -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 +95 -0
- package/dist/config/validators/NavigationSchema.js.map +1 -0
- package/dist/config/validators/icon-types.d.ts +2 -1
- package/dist/config/validators/icon-types.js +1813 -1
- package/dist/config/validators/icon-types.js.map +1 -1
- package/dist/config/validators/validate.d.ts +474 -5556
- package/dist/config/validators/validate.js +106 -73
- 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 +141 -0
- package/dist/config/validators/validate.test.js.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/auth/issuer.d.ts +2 -0
- package/dist/lib/auth/issuer.js +37 -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 +94 -0
- package/dist/lib/auth/issuer.test.js.map +1 -0
- package/dist/lib/authentication/AuthenticationPlugin.d.ts +0 -5
- package/dist/lib/authentication/AuthenticationPlugin.js +0 -12
- package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +2 -0
- package/dist/lib/authentication/components/CallbackHandler.js +1 -1
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.js +4 -3
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +6 -0
- package/dist/lib/authentication/providers/auth0.js +1 -1
- 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 +145 -0
- package/dist/lib/authentication/providers/azureb2c.js.map +1 -0
- package/dist/lib/authentication/providers/clerk.js +3 -12
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/openid.d.ts +5 -2
- package/dist/lib/authentication/providers/openid.js +49 -5
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/authentication/providers/supabase.js +2 -9
- package/dist/lib/authentication/providers/supabase.js.map +1 -1
- package/dist/lib/authentication/state.d.ts +6 -5
- package/dist/lib/authentication/state.js +19 -6
- package/dist/lib/authentication/state.js.map +1 -1
- package/dist/lib/components/Autocomplete.js +2 -2
- 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/BuildCheck.js +1 -1
- 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 +19 -18
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +6 -2
- package/dist/lib/components/Heading.js +7 -2
- package/dist/lib/components/Heading.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 +9 -5
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +11 -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/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 +49 -44
- 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/context/ZudokuContext.d.ts +3 -7
- package/dist/lib/components/context/ZudokuContext.js +44 -26
- 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 +39 -23
- package/dist/lib/components/index.js +15 -7
- 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} +15 -13
- 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 +47 -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/utils.d.ts +12 -9
- package/dist/lib/components/navigation/utils.js +38 -18
- package/dist/lib/components/navigation/utils.js.map +1 -1
- package/dist/lib/core/ZudokuContext.d.ts +13 -13
- package/dist/lib/core/ZudokuContext.js +21 -10
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/plugins.d.ts +2 -2
- package/dist/lib/errors/ErrorAlert.js +2 -3
- package/dist/lib/errors/ErrorAlert.js.map +1 -1
- package/dist/lib/hooks/index.d.ts +25 -0
- package/dist/lib/hooks/index.js +11 -0
- package/dist/lib/hooks/index.js.map +1 -1
- 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/plugins/api-catalog/Catalog.d.ts +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/SettingsApiKeys.js +115 -23
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +3 -3
- package/dist/lib/plugins/api-keys/index.js +37 -18
- 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 +15 -10
- package/dist/lib/plugins/custom-pages/index.js.map +1 -1
- package/dist/lib/plugins/markdown/MdxPage.d.ts +1 -2
- package/dist/lib/plugins/markdown/MdxPage.js +30 -10
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/index.d.ts +10 -2
- package/dist/lib/plugins/markdown/index.js +9 -26
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationList.js +3 -3
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationListItem.js +2 -2
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +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.js +11 -91
- package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.js +1 -1
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.d.ts +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.js +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +3 -3
- package/dist/lib/plugins/openapi/graphql/graphql.js +2 -2
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +3 -3
- package/dist/lib/plugins/openapi/index.js +10 -10
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +3 -3
- package/dist/lib/plugins/openapi/playground/BodyPanel.d.ts +5 -0
- package/dist/lib/plugins/openapi/playground/BodyPanel.js +26 -0
- package/dist/lib/plugins/openapi/playground/BodyPanel.js.map +1 -0
- 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.js +2 -1
- 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 +54 -32
- package/dist/lib/plugins/openapi/playground/Headers.js.map +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.js +1 -2
- package/dist/lib/plugins/openapi/playground/IdentitySelector.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/InlineInput.js +1 -1
- package/dist/lib/plugins/openapi/playground/InlineInput.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js +2 -2
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PathParams.js +1 -2
- package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Playground.d.ts +3 -8
- package/dist/lib/plugins/openapi/playground/Playground.js +110 -92
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/QueryParams.d.ts +2 -2
- package/dist/lib/plugins/openapi/playground/QueryParams.js +38 -23
- package/dist/lib/plugins/openapi/playground/QueryParams.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.d.ts +2 -0
- package/dist/lib/plugins/openapi/playground/fileUtils.js +22 -0
- package/dist/lib/plugins/openapi/playground/fileUtils.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/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 +69 -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 +10 -4
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +33 -31
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +4 -2
- 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/useRememberSkipLoginDialog.d.ts +16 -0
- package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js +10 -0
- package/dist/lib/plugins/openapi/playground/useRememberSkipLoginDialog.js.map +1 -0
- 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.js +2 -3
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaView.js +5 -5
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/utils.js +3 -2
- package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
- package/dist/lib/plugins/openapi/util/createHttpSnippet.d.ts +11 -0
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js +89 -0
- package/dist/lib/plugins/openapi/util/createHttpSnippet.js.map +1 -0
- package/dist/lib/plugins/openapi/util/createNavigationCategory.d.ts +9 -0
- package/dist/lib/plugins/openapi/util/{createSidebarCategory.js → createNavigationCategory.js} +5 -4
- package/dist/lib/plugins/openapi/util/createNavigationCategory.js.map +1 -0
- package/dist/lib/plugins/openapi/util/getRoutes.js +2 -2
- 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 +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.d.ts +1 -1
- package/dist/lib/plugins/search-pagefind/ResultList.js +12 -5
- package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -1
- package/dist/lib/shiki.d.ts +8 -12
- package/dist/lib/shiki.js +11 -13
- package/dist/lib/shiki.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/Callout.js +1 -1
- package/dist/lib/ui/Callout.js.map +1 -1
- package/dist/lib/ui/CodeBlock.d.ts +1 -2
- package/dist/lib/ui/CodeBlock.js +10 -11
- package/dist/lib/ui/CodeBlock.js.map +1 -1
- package/dist/lib/ui/Dialog.d.ts +3 -1
- package/dist/lib/ui/Dialog.js +2 -2
- package/dist/lib/ui/Dialog.js.map +1 -1
- package/dist/lib/ui/EmbeddedCodeBlock.d.ts +15 -0
- package/dist/lib/ui/EmbeddedCodeBlock.js +18 -0
- package/dist/lib/ui/EmbeddedCodeBlock.js.map +1 -0
- package/dist/lib/ui/Select.js +1 -1
- package/dist/lib/ui/SyntaxHighlight.d.ts +3 -1
- package/dist/lib/ui/SyntaxHighlight.js +3 -2
- package/dist/lib/ui/SyntaxHighlight.js.map +1 -1
- package/dist/lib/ui/Tooltip.d.ts +2 -1
- package/dist/lib/ui/Tooltip.js +2 -1
- package/dist/lib/ui/Tooltip.js.map +1 -1
- package/dist/lib/util/MdxComponents.d.ts +9 -1
- package/dist/lib/util/MdxComponents.js +4 -2
- package/dist/lib/util/MdxComponents.js.map +1 -1
- package/dist/lib/util/humanFileSize.d.ts +6 -0
- package/dist/lib/util/humanFileSize.js +14 -0
- package/dist/lib/util/humanFileSize.js.map +1 -0
- package/dist/lib/util/humanFileSize.test.d.ts +1 -0
- package/dist/lib/util/humanFileSize.test.js +22 -0
- package/dist/lib/util/humanFileSize.test.js.map +1 -0
- 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/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/useScrollToAnchor.js +3 -3
- package/dist/lib/util/useScrollToAnchor.js.map +1 -1
- package/dist/vite/api/SchemaManager.d.ts +4 -4
- package/dist/vite/api/SchemaManager.js +25 -21
- package/dist/vite/api/SchemaManager.js.map +1 -1
- package/dist/vite/api/SchemaManager.test.js +4 -4
- package/dist/vite/api/SchemaManager.test.js.map +1 -1
- package/dist/vite/api/schema-codegen.js +42 -11
- package/dist/vite/api/schema-codegen.js.map +1 -1
- package/dist/vite/api/schema-codegen.test.js +82 -0
- package/dist/vite/api/schema-codegen.test.js.map +1 -1
- package/dist/vite/build.js +10 -34
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.js +12 -2
- 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 +1 -1
- package/dist/vite/mdx/remark-last-modified.d.ts +3 -0
- package/dist/vite/mdx/remark-last-modified.js +29 -0
- package/dist/vite/mdx/remark-last-modified.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/plugin-api.js +8 -8
- package/dist/vite/plugin-api.js.map +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-custom-pages.js +2 -2
- package/dist/vite/plugin-custom-pages.js.map +1 -1
- package/dist/vite/plugin-docs.js +61 -59
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-frontmatter.js +6 -2
- package/dist/vite/plugin-frontmatter.js.map +1 -1
- package/dist/vite/plugin-mdx.js +17 -38
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/{plugin-sidebar.d.ts → plugin-navigation.d.ts} +1 -1
- package/dist/vite/{plugin-sidebar.js → plugin-navigation.js} +20 -19
- package/dist/vite/plugin-navigation.js.map +1 -0
- package/dist/vite/plugin-theme.d.ts +8 -0
- package/dist/vite/plugin-theme.js +234 -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 +312 -0
- package/dist/vite/plugin-theme.test.js.map +1 -0
- package/dist/vite/plugin.js +4 -6
- package/dist/vite/plugin.js.map +1 -1
- package/dist/vite/shadcn-registry.d.ts +45 -0
- package/dist/vite/shadcn-registry.js +29 -0
- package/dist/vite/shadcn-registry.js.map +1 -0
- package/lib/Alert-Cig_8hW6.js +161 -0
- package/lib/Alert-Cig_8hW6.js.map +1 -0
- package/lib/{Button-u7M2QYds.js → Button-B3o-2Xdf.js} +3 -3
- package/lib/{Button-u7M2QYds.js.map → Button-B3o-2Xdf.js.map} +1 -1
- package/lib/{Card-DkH-AU1V.js → Card-CMDQUPM4.js} +2 -2
- package/lib/{Card-DkH-AU1V.js.map → Card-CMDQUPM4.js.map} +1 -1
- package/lib/CodeBlock-BaBgX9Wy.js +85 -0
- package/lib/CodeBlock-BaBgX9Wy.js.map +1 -0
- package/lib/Command-C9AC5cf-.js +140 -0
- package/lib/Command-C9AC5cf-.js.map +1 -0
- package/lib/{Dialog-irKZWXGg.js → Dialog-DMWw1doX.js} +26 -26
- package/lib/Dialog-DMWw1doX.js.map +1 -0
- package/lib/{Drawer-DZ214i5V.js → Drawer-DXGPOKPx.js} +2 -2
- package/lib/{Drawer-DZ214i5V.js.map → Drawer-DXGPOKPx.js.map} +1 -1
- package/lib/MdxPage-D8Med7IR.js +110 -0
- package/lib/MdxPage-D8Med7IR.js.map +1 -0
- package/lib/OasProvider-YexVRErA.js +35 -0
- package/lib/OasProvider-YexVRErA.js.map +1 -0
- package/lib/{OperationList-CkKcRPvk.js → OperationList-CL_tp7DC.js} +1749 -1728
- package/lib/OperationList-CL_tp7DC.js.map +1 -0
- package/lib/Pagination-Bcjbdo_g.js +37 -0
- package/lib/Pagination-Bcjbdo_g.js.map +1 -0
- package/lib/RouteGuard-Vnlz_t51.js +737 -0
- package/lib/RouteGuard-Vnlz_t51.js.map +1 -0
- package/lib/{SchemaList-BUiEgmw6.js → SchemaList-BNDTWO1B.js} +32 -43
- package/lib/SchemaList-BNDTWO1B.js.map +1 -0
- package/lib/{SchemaView-DSgzGi1L.js → SchemaView-DdKqED8D.js} +95 -104
- package/lib/SchemaView-DdKqED8D.js.map +1 -0
- package/lib/SignUp-BkAQMKsK.js +56 -0
- package/lib/SignUp-BkAQMKsK.js.map +1 -0
- package/lib/Slot-CrCBhP3G.js +15743 -0
- package/lib/Slot-CrCBhP3G.js.map +1 -0
- package/lib/{SyntaxHighlight-DTgNHbGp.js → SyntaxHighlight-CVe58ZSY.js} +4683 -3484
- package/lib/SyntaxHighlight-CVe58ZSY.js.map +1 -0
- package/lib/{Toc-Ccycwd-T.js → Toc-CpsFSXeD.js} +3 -3
- package/lib/{Toc-Ccycwd-T.js.map → Toc-CpsFSXeD.js.map} +1 -1
- package/lib/{chunk-BAXFHI7N-C9WnHsLV.js → chunk-DQRVZFIR-DHK7_Ilc.js} +701 -701
- package/lib/chunk-DQRVZFIR-DHK7_Ilc.js.map +1 -0
- package/lib/{circular-D1Bwr5bf.js → circular-BJUzZQ5q.js} +1812 -1807
- package/lib/circular-BJUzZQ5q.js.map +1 -0
- package/lib/clerk-BDZ31hjU.js +25190 -0
- package/lib/clerk-BDZ31hjU.js.map +1 -0
- package/lib/clsx-OuTLNxxd.js +17 -0
- package/lib/clsx-OuTLNxxd.js.map +1 -0
- package/lib/{cn-BOFVZgHd.js → cn-dYga0KKN.js} +237 -250
- package/lib/cn-dYga0KKN.js.map +1 -0
- package/lib/{createServer-BZp1gEBL.js → createServer-C8-YhyiB.js} +2459 -2448
- package/lib/createServer-C8-YhyiB.js.map +1 -0
- package/lib/errors-CKo4K1aM.js +78 -0
- package/lib/errors-CKo4K1aM.js.map +1 -0
- package/lib/hook-CZjW2buS.js +1510 -0
- package/lib/hook-CZjW2buS.js.map +1 -0
- package/lib/{index-BvvmIczU.js → index-4XtG1tlD.js} +2 -2
- package/lib/{index-BvvmIczU.js.map → index-4XtG1tlD.js.map} +1 -1
- package/lib/index-B3xhxwZH.js +3469 -0
- package/lib/index-B3xhxwZH.js.map +1 -0
- package/lib/index-B4yKFxne.js +3980 -0
- package/lib/index-B4yKFxne.js.map +1 -0
- package/lib/index-Bm35Tkgf.js +107 -0
- package/lib/index-Bm35Tkgf.js.map +1 -0
- package/lib/index-CrcNWbel.js.map +1 -1
- package/lib/{index-C1S4w-gl.js → index-DI5SPFK9.js} +2 -2
- package/lib/{index-C1S4w-gl.js.map → index-DI5SPFK9.js.map} +1 -1
- package/lib/{index-zddirpDj.js → index-DmNq2fbN.js} +226 -221
- package/lib/index-DmNq2fbN.js.map +1 -0
- package/lib/index.esm-Cp4wkyud.js +1236 -0
- package/lib/index.esm-Cp4wkyud.js.map +1 -0
- package/lib/ui/Accordion.js +1 -1
- package/lib/ui/ActionButton.js +2 -2
- package/lib/ui/Alert.js +54 -38
- package/lib/ui/Alert.js.map +1 -1
- package/lib/ui/AlertDialog.js +1 -1
- package/lib/ui/Badge.js +2 -2
- package/lib/ui/Breadcrumb.js +1 -1
- package/lib/ui/Button.js +2 -2
- package/lib/ui/Callout.js +6 -5
- 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/Checkbox.js +1 -1
- package/lib/ui/CodeBlock.js +6 -80
- package/lib/ui/CodeBlock.js.map +1 -1
- package/lib/ui/Command.js +2 -2
- package/lib/ui/Dialog.js +40 -40
- package/lib/ui/Dialog.js.map +1 -1
- package/lib/ui/Drawer.js +2 -2
- package/lib/ui/DropdownMenu.js +1 -1
- package/lib/ui/EmbeddedCodeBlock.js +80 -0
- package/lib/ui/EmbeddedCodeBlock.js.map +1 -0
- package/lib/ui/Form.js +2 -2
- package/lib/ui/HoverCard.js +1 -1
- package/lib/ui/Input.js +1 -1
- package/lib/ui/Label.js +2 -2
- 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/ScrollArea.js +1 -1
- package/lib/ui/Select.js +2 -2
- package/lib/ui/Select.js.map +1 -1
- 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 +5 -4
- package/lib/ui/SyntaxHighlight.js.map +1 -1
- package/lib/ui/Tabs.js +1 -1
- package/lib/ui/Textarea.js +1 -1
- package/lib/ui/Toggle.js +2 -2
- package/lib/ui/ToggleGroup.js +1 -1
- package/lib/ui/Tooltip.js +15 -8
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/ui/util.js +1 -1
- package/lib/{useExposedProps-DG8J6ewJ.js → useExposedProps-BIYjecPD.js} +2 -2
- package/lib/{useExposedProps-DG8J6ewJ.js.map → useExposedProps-BIYjecPD.js.map} +1 -1
- package/lib/zudoku.auth-auth0.js +2 -2
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-azureb2c.js +9971 -0
- package/lib/zudoku.auth-azureb2c.js.map +1 -0
- package/lib/zudoku.auth-clerk.js +39 -48
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +381 -406
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.components.js +29 -30
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +21 -13
- package/lib/zudoku.hooks.js.map +1 -1
- package/lib/zudoku.plugin-api-catalog.js +45 -45
- package/lib/zudoku.plugin-api-catalog.js.map +1 -1
- package/lib/zudoku.plugin-api-keys.js +512 -4971
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +12 -18
- package/lib/zudoku.plugin-custom-pages.js.map +1 -1
- package/lib/zudoku.plugin-markdown.js +19 -69
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +6 -6
- package/lib/zudoku.plugin-redirect.js +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 +211 -117
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -1
- package/lib/zudoku.plugins.js.map +1 -1
- package/package.json +91 -70
- package/src/app/ZuploBuildConfig.ts +8 -8
- package/src/app/defaultTheme.css +68 -49
- package/src/app/demo.tsx +24 -6
- package/src/app/entry.client.tsx +0 -2
- package/src/app/entry.server.tsx +0 -2
- package/src/app/env.ts +8 -0
- package/src/app/main.css +15 -57
- package/src/app/main.tsx +18 -24
- package/src/app/standalone.tsx +7 -6
- package/src/lib/auth/issuer.test.ts +120 -0
- package/src/lib/auth/issuer.ts +41 -0
- package/src/lib/authentication/AuthenticationPlugin.tsx +0 -14
- package/src/lib/authentication/authentication.ts +2 -2
- package/src/lib/authentication/components/CallbackHandler.tsx +1 -1
- package/src/lib/authentication/components/SignIn.tsx +5 -12
- package/src/lib/authentication/providers/auth0.tsx +1 -1
- package/src/lib/authentication/providers/azureb2c.tsx +196 -0
- package/src/lib/authentication/providers/clerk.tsx +3 -12
- package/src/lib/authentication/providers/openid.tsx +76 -4
- package/src/lib/authentication/providers/supabase.tsx +2 -9
- package/src/lib/authentication/state.ts +37 -7
- package/src/lib/components/Autocomplete.tsx +2 -1
- package/src/lib/components/Banner.tsx +1 -2
- package/src/lib/components/BuildCheck.tsx +1 -1
- 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 +25 -22
- package/src/lib/components/Heading.tsx +16 -8
- package/src/lib/components/Main.tsx +9 -9
- package/src/lib/components/Markdown.tsx +17 -9
- package/src/lib/components/MobileTopNavigation.tsx +69 -15
- package/src/lib/components/NotFoundPage.tsx +3 -3
- package/src/lib/components/PageProgress.tsx +28 -0
- package/src/lib/components/Pagination.tsx +5 -4
- package/src/lib/components/StatusPage.tsx +5 -0
- package/src/lib/components/TopNavigation.tsx +75 -68
- package/src/lib/components/Typography.tsx +14 -0
- package/src/lib/components/context/ZudokuContext.ts +50 -32
- package/src/lib/components/context/ZudokuProvider.tsx +1 -1
- package/src/lib/components/index.ts +16 -10
- 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} +17 -15
- package/src/lib/components/navigation/NavigationItem.tsx +151 -0
- package/src/lib/components/navigation/{SidebarWrapper.tsx → NavigationWrapper.tsx} +7 -4
- package/src/lib/components/navigation/utils.ts +52 -29
- package/src/lib/core/ZudokuContext.ts +36 -20
- package/src/lib/core/plugins.ts +2 -2
- package/src/lib/errors/ErrorAlert.tsx +3 -9
- package/src/lib/hooks/index.ts +11 -0
- package/src/lib/hooks/useEvent.test.tsx +7 -5
- package/src/lib/hooks/useHotkey.ts +70 -0
- package/src/lib/plugins/api-catalog/Catalog.tsx +1 -1
- package/src/lib/plugins/api-catalog/index.tsx +19 -19
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +238 -70
- package/src/lib/plugins/api-keys/index.tsx +50 -23
- package/src/lib/plugins/custom-pages/index.tsx +21 -16
- package/src/lib/plugins/markdown/MdxPage.tsx +76 -21
- package/src/lib/plugins/markdown/index.tsx +28 -41
- package/src/lib/plugins/openapi/OperationList.tsx +12 -20
- package/src/lib/plugins/openapi/OperationListItem.tsx +3 -3
- package/src/lib/plugins/openapi/ParameterListItem.tsx +6 -0
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +1 -1
- package/src/lib/plugins/openapi/SchemaList.tsx +5 -11
- package/src/lib/plugins/openapi/Sidecar.tsx +12 -97
- package/src/lib/plugins/openapi/SidecarExamples.tsx +1 -0
- package/src/lib/plugins/openapi/graphql/gql.ts +5 -5
- package/src/lib/plugins/openapi/graphql/graphql.ts +6 -6
- package/src/lib/plugins/openapi/index.tsx +12 -12
- package/src/lib/plugins/openapi/interfaces.ts +3 -3
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +55 -0
- package/src/lib/plugins/openapi/playground/CollapsibleHeader.tsx +47 -0
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +8 -1
- package/src/lib/plugins/openapi/playground/Headers.tsx +217 -115
- package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +3 -2
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +13 -16
- package/src/lib/plugins/openapi/playground/InlineInput.tsx +1 -1
- package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +2 -2
- package/src/lib/plugins/openapi/playground/PathParams.tsx +4 -5
- package/src/lib/plugins/openapi/playground/Playground.tsx +253 -288
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +2 -1
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +104 -58
- package/src/lib/plugins/openapi/playground/Spinner.tsx +87 -0
- package/src/lib/plugins/openapi/playground/fileUtils.ts +32 -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/result-panel/Highlight.tsx +26 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseStatusBar.tsx +115 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +149 -108
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +68 -89
- package/src/lib/plugins/openapi/playground/useRememberSkipLoginDialog.tsx +20 -0
- package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +3 -3
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +2 -3
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +6 -11
- package/src/lib/plugins/openapi/schema/utils.ts +3 -2
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +107 -0
- package/src/lib/plugins/openapi/util/{createSidebarCategory.tsx → createNavigationCategory.tsx} +6 -5
- package/src/lib/plugins/openapi/util/getRoutes.tsx +2 -2
- package/src/lib/plugins/openapi/util/methodColorMap.tsx +1 -1
- package/src/lib/plugins/search-inkeep/index.tsx +54 -58
- package/src/lib/plugins/search-inkeep/inkeep.ts +19 -21
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +1 -0
- package/src/lib/plugins/search-pagefind/ResultList.tsx +13 -4
- package/src/lib/shiki.ts +21 -22
- package/src/lib/ui/Alert.tsx +45 -39
- package/src/lib/ui/Callout.tsx +1 -0
- package/src/lib/ui/CodeBlock.tsx +40 -54
- package/src/lib/ui/Dialog.tsx +11 -7
- package/src/lib/ui/EmbeddedCodeBlock.tsx +94 -0
- package/src/lib/ui/Select.tsx +1 -1
- package/src/lib/ui/SyntaxHighlight.tsx +11 -3
- package/src/lib/ui/Tooltip.tsx +16 -1
- package/src/lib/util/MdxComponents.tsx +13 -2
- package/src/lib/util/humanFileSize.test.ts +24 -0
- package/src/lib/util/humanFileSize.ts +16 -0
- package/src/lib/util/os.ts +18 -0
- package/src/lib/util/useCopyToClipboard.ts +17 -0
- package/src/lib/util/useScrollToAnchor.ts +3 -3
- package/dist/config/validators/InputSidebarSchema.d.ts +0 -217
- package/dist/config/validators/InputSidebarSchema.js +0 -62
- 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/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 -11
- package/dist/lib/components/navigation/SidebarItem.js +0 -49
- 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/SubmitButton.d.ts +0 -7
- package/dist/lib/plugins/openapi/playground/SubmitButton.js +0 -19
- package/dist/lib/plugins/openapi/playground/SubmitButton.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/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.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/lib/Callout-CtCQJ6Cc.js +0 -230
- package/lib/Callout-CtCQJ6Cc.js.map +0 -1
- package/lib/CategoryHeading-BA7lKNWz.js +0 -10
- package/lib/CategoryHeading-BA7lKNWz.js.map +0 -1
- package/lib/Dialog-irKZWXGg.js.map +0 -1
- package/lib/Markdown-BNG8bTDA.js +0 -7691
- package/lib/Markdown-BNG8bTDA.js.map +0 -1
- package/lib/MdxPage-D74eGiYZ.js +0 -84
- package/lib/MdxPage-D74eGiYZ.js.map +0 -1
- package/lib/OasProvider-D61BSWef.js +0 -33
- package/lib/OasProvider-D61BSWef.js.map +0 -1
- package/lib/OperationList-CkKcRPvk.js.map +0 -1
- package/lib/Pagination-CeFxTDan.js +0 -36
- package/lib/Pagination-CeFxTDan.js.map +0 -1
- package/lib/RouteGuard-CIyGFkFD.js +0 -55
- package/lib/RouteGuard-CIyGFkFD.js.map +0 -1
- package/lib/SchemaList-BUiEgmw6.js.map +0 -1
- package/lib/SchemaView-DSgzGi1L.js.map +0 -1
- package/lib/SignUp-DCgoDR--.js +0 -63
- package/lib/SignUp-DCgoDR--.js.map +0 -1
- package/lib/Slot-Dw-g06lX.js +0 -160
- package/lib/Slot-Dw-g06lX.js.map +0 -1
- package/lib/SyntaxHighlight-DTgNHbGp.js.map +0 -1
- package/lib/chunk-BAXFHI7N-C9WnHsLV.js.map +0 -1
- package/lib/circular-D1Bwr5bf.js.map +0 -1
- package/lib/cn-BOFVZgHd.js.map +0 -1
- package/lib/createServer-BZp1gEBL.js.map +0 -1
- package/lib/hook-BpiAQVtd.js +0 -1446
- package/lib/hook-BpiAQVtd.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-DEr_Ta6s.js +0 -4977
- package/lib/index-DEr_Ta6s.js.map +0 -1
- package/lib/index-E90CTqBl.js +0 -3268
- package/lib/index-E90CTqBl.js.map +0 -1
- package/lib/index-zddirpDj.js.map +0 -1
- package/lib/index.esm-BFcSKCe-.js +0 -683
- package/lib/index.esm-BFcSKCe-.js.map +0 -1
- package/lib/index.esm-DSfX_eMP.js +0 -1216
- package/lib/index.esm-DSfX_eMP.js.map +0 -1
- package/lib/mutation-CJrIFMgY.js +0 -196
- package/lib/mutation-CJrIFMgY.js.map +0 -1
- package/lib/objectEntries-yMIkr2mI.js +0 -5
- package/lib/objectEntries-yMIkr2mI.js.map +0 -1
- package/lib/useLatest-hmRS46UF.js +0 -11
- package/lib/useLatest-hmRS46UF.js.map +0 -1
- package/lib/useMutation-B2LNwShM.js +0 -97
- package/lib/useMutation-B2LNwShM.js.map +0 -1
- package/src/lib/components/navigation/SidebarItem.tsx +0 -117
- 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/SubmitButton.tsx +0 -70
- package/src/lib/plugins/openapi/playground/UrlDisplay.tsx +0 -32
- package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +0 -73
|
@@ -1,91 +1,79 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
for (n = 0; n < i; n++) e[n] && (r = xe(e[n])) && (o && (o += " "), o += r);
|
|
7
|
-
} else for (r in e) e[r] && (o && (o += " "), o += r);
|
|
8
|
-
return o;
|
|
9
|
-
}
|
|
10
|
-
function Pe() {
|
|
11
|
-
for (var e, n, r = 0, o = "", i = arguments.length; r < i; r++) (e = arguments[r]) && (n = xe(e)) && (o && (o += " "), o += n);
|
|
12
|
-
return o;
|
|
13
|
-
}
|
|
14
|
-
const ne = "-", Re = (e) => {
|
|
15
|
-
const n = Te(e), {
|
|
16
|
-
conflictingClassGroups: r,
|
|
17
|
-
conflictingClassGroupModifiers: o
|
|
1
|
+
import { c as Ie } from "./clsx-OuTLNxxd.js";
|
|
2
|
+
const ne = "-", Pe = (e) => {
|
|
3
|
+
const n = Ge(e), {
|
|
4
|
+
conflictingClassGroups: s,
|
|
5
|
+
conflictingClassGroupModifiers: t
|
|
18
6
|
} = e;
|
|
19
7
|
return {
|
|
20
|
-
getClassGroupId: (
|
|
21
|
-
const u =
|
|
22
|
-
return u[0] === "" && u.length !== 1 && u.shift(),
|
|
8
|
+
getClassGroupId: (i) => {
|
|
9
|
+
const u = i.split(ne);
|
|
10
|
+
return u[0] === "" && u.length !== 1 && u.shift(), xe(u, n) || Re(i);
|
|
23
11
|
},
|
|
24
|
-
getConflictingClassGroupIds: (
|
|
25
|
-
const p =
|
|
26
|
-
return u &&
|
|
12
|
+
getConflictingClassGroupIds: (i, u) => {
|
|
13
|
+
const p = s[i] || [];
|
|
14
|
+
return u && t[i] ? [...p, ...t[i]] : p;
|
|
27
15
|
}
|
|
28
16
|
};
|
|
29
|
-
},
|
|
17
|
+
}, xe = (e, n) => {
|
|
30
18
|
if (e.length === 0)
|
|
31
19
|
return n.classGroupId;
|
|
32
|
-
const
|
|
33
|
-
if (
|
|
34
|
-
return
|
|
20
|
+
const s = e[0], t = n.nextPart.get(s), c = t ? xe(e.slice(1), t) : void 0;
|
|
21
|
+
if (c)
|
|
22
|
+
return c;
|
|
35
23
|
if (n.validators.length === 0)
|
|
36
24
|
return;
|
|
37
25
|
const m = e.join(ne);
|
|
38
26
|
return n.validators.find(({
|
|
39
|
-
validator:
|
|
40
|
-
}) =>
|
|
41
|
-
}, fe = /^\[(.+)\]$/,
|
|
27
|
+
validator: i
|
|
28
|
+
}) => i(m))?.classGroupId;
|
|
29
|
+
}, fe = /^\[(.+)\]$/, Re = (e) => {
|
|
42
30
|
if (fe.test(e)) {
|
|
43
|
-
const n = fe.exec(e)[1],
|
|
44
|
-
if (
|
|
45
|
-
return "arbitrary.." +
|
|
31
|
+
const n = fe.exec(e)[1], s = n?.substring(0, n.indexOf(":"));
|
|
32
|
+
if (s)
|
|
33
|
+
return "arbitrary.." + s;
|
|
46
34
|
}
|
|
47
|
-
},
|
|
35
|
+
}, Ge = (e) => {
|
|
48
36
|
const {
|
|
49
37
|
theme: n,
|
|
50
|
-
classGroups:
|
|
51
|
-
} = e,
|
|
38
|
+
classGroups: s
|
|
39
|
+
} = e, t = {
|
|
52
40
|
nextPart: /* @__PURE__ */ new Map(),
|
|
53
41
|
validators: []
|
|
54
42
|
};
|
|
55
|
-
for (const
|
|
56
|
-
re(
|
|
57
|
-
return
|
|
58
|
-
}, re = (e, n,
|
|
59
|
-
e.forEach((
|
|
60
|
-
if (typeof
|
|
61
|
-
const m =
|
|
62
|
-
m.classGroupId =
|
|
43
|
+
for (const c in s)
|
|
44
|
+
re(s[c], t, c, n);
|
|
45
|
+
return t;
|
|
46
|
+
}, re = (e, n, s, t) => {
|
|
47
|
+
e.forEach((c) => {
|
|
48
|
+
if (typeof c == "string") {
|
|
49
|
+
const m = c === "" ? n : be(n, c);
|
|
50
|
+
m.classGroupId = s;
|
|
63
51
|
return;
|
|
64
52
|
}
|
|
65
|
-
if (typeof
|
|
66
|
-
if (
|
|
67
|
-
re(
|
|
53
|
+
if (typeof c == "function") {
|
|
54
|
+
if (Te(c)) {
|
|
55
|
+
re(c(t), n, s, t);
|
|
68
56
|
return;
|
|
69
57
|
}
|
|
70
58
|
n.validators.push({
|
|
71
|
-
validator:
|
|
72
|
-
classGroupId:
|
|
59
|
+
validator: c,
|
|
60
|
+
classGroupId: s
|
|
73
61
|
});
|
|
74
62
|
return;
|
|
75
63
|
}
|
|
76
|
-
Object.entries(
|
|
77
|
-
re(
|
|
64
|
+
Object.entries(c).forEach(([m, i]) => {
|
|
65
|
+
re(i, be(n, m), s, t);
|
|
78
66
|
});
|
|
79
67
|
});
|
|
80
68
|
}, be = (e, n) => {
|
|
81
|
-
let
|
|
82
|
-
return n.split(ne).forEach((
|
|
83
|
-
|
|
69
|
+
let s = e;
|
|
70
|
+
return n.split(ne).forEach((t) => {
|
|
71
|
+
s.nextPart.has(t) || s.nextPart.set(t, {
|
|
84
72
|
nextPart: /* @__PURE__ */ new Map(),
|
|
85
73
|
validators: []
|
|
86
|
-
}),
|
|
87
|
-
}),
|
|
88
|
-
},
|
|
74
|
+
}), s = s.nextPart.get(t);
|
|
75
|
+
}), s;
|
|
76
|
+
}, Te = (e) => e.isThemeGetter, Ee = (e) => {
|
|
89
77
|
if (e < 1)
|
|
90
78
|
return {
|
|
91
79
|
get: () => {
|
|
@@ -93,35 +81,35 @@ const ne = "-", Re = (e) => {
|
|
|
93
81
|
set: () => {
|
|
94
82
|
}
|
|
95
83
|
};
|
|
96
|
-
let n = 0,
|
|
97
|
-
const
|
|
98
|
-
|
|
84
|
+
let n = 0, s = /* @__PURE__ */ new Map(), t = /* @__PURE__ */ new Map();
|
|
85
|
+
const c = (m, i) => {
|
|
86
|
+
s.set(m, i), n++, n > e && (n = 0, t = s, s = /* @__PURE__ */ new Map());
|
|
99
87
|
};
|
|
100
88
|
return {
|
|
101
89
|
get(m) {
|
|
102
|
-
let
|
|
103
|
-
if (
|
|
104
|
-
return
|
|
105
|
-
if ((
|
|
106
|
-
return
|
|
90
|
+
let i = s.get(m);
|
|
91
|
+
if (i !== void 0)
|
|
92
|
+
return i;
|
|
93
|
+
if ((i = t.get(m)) !== void 0)
|
|
94
|
+
return c(m, i), i;
|
|
107
95
|
},
|
|
108
|
-
set(m,
|
|
109
|
-
|
|
96
|
+
set(m, i) {
|
|
97
|
+
s.has(m) ? s.set(m, i) : c(m, i);
|
|
110
98
|
}
|
|
111
99
|
};
|
|
112
|
-
}, te = "!", se = ":",
|
|
100
|
+
}, te = "!", se = ":", Ne = se.length, Le = (e) => {
|
|
113
101
|
const {
|
|
114
102
|
prefix: n,
|
|
115
|
-
experimentalParseClassName:
|
|
103
|
+
experimentalParseClassName: s
|
|
116
104
|
} = e;
|
|
117
|
-
let
|
|
105
|
+
let t = (c) => {
|
|
118
106
|
const m = [];
|
|
119
|
-
let
|
|
120
|
-
for (let k = 0; k <
|
|
121
|
-
let y =
|
|
122
|
-
if (
|
|
107
|
+
let i = 0, u = 0, p = 0, g;
|
|
108
|
+
for (let k = 0; k < c.length; k++) {
|
|
109
|
+
let y = c[k];
|
|
110
|
+
if (i === 0 && u === 0) {
|
|
123
111
|
if (y === se) {
|
|
124
|
-
m.push(
|
|
112
|
+
m.push(c.slice(p, k)), p = k + Ne;
|
|
125
113
|
continue;
|
|
126
114
|
}
|
|
127
115
|
if (y === "/") {
|
|
@@ -129,9 +117,9 @@ const ne = "-", Re = (e) => {
|
|
|
129
117
|
continue;
|
|
130
118
|
}
|
|
131
119
|
}
|
|
132
|
-
y === "[" ?
|
|
120
|
+
y === "[" ? i++ : y === "]" ? i-- : y === "(" ? u++ : y === ")" && u--;
|
|
133
121
|
}
|
|
134
|
-
const h = m.length === 0 ?
|
|
122
|
+
const h = m.length === 0 ? c : c.substring(p), M = Ve(h), O = M !== h, F = g && g > p ? g - p : void 0;
|
|
135
123
|
return {
|
|
136
124
|
modifiers: m,
|
|
137
125
|
hasImportantModifier: O,
|
|
@@ -140,46 +128,46 @@ const ne = "-", Re = (e) => {
|
|
|
140
128
|
};
|
|
141
129
|
};
|
|
142
130
|
if (n) {
|
|
143
|
-
const
|
|
144
|
-
|
|
131
|
+
const c = n + se, m = t;
|
|
132
|
+
t = (i) => i.startsWith(c) ? m(i.substring(c.length)) : {
|
|
145
133
|
isExternal: !0,
|
|
146
134
|
modifiers: [],
|
|
147
135
|
hasImportantModifier: !1,
|
|
148
|
-
baseClassName:
|
|
136
|
+
baseClassName: i,
|
|
149
137
|
maybePostfixModifierPosition: void 0
|
|
150
138
|
};
|
|
151
139
|
}
|
|
152
|
-
if (
|
|
153
|
-
const
|
|
154
|
-
|
|
140
|
+
if (s) {
|
|
141
|
+
const c = t;
|
|
142
|
+
t = (m) => s({
|
|
155
143
|
className: m,
|
|
156
|
-
parseClassName:
|
|
144
|
+
parseClassName: c
|
|
157
145
|
});
|
|
158
146
|
}
|
|
159
|
-
return
|
|
160
|
-
},
|
|
161
|
-
const n = Object.fromEntries(e.orderSensitiveModifiers.map((
|
|
162
|
-
return (
|
|
163
|
-
if (
|
|
164
|
-
return
|
|
165
|
-
const
|
|
147
|
+
return t;
|
|
148
|
+
}, Ve = (e) => e.endsWith(te) ? e.substring(0, e.length - 1) : e.startsWith(te) ? e.substring(1) : e, je = (e) => {
|
|
149
|
+
const n = Object.fromEntries(e.orderSensitiveModifiers.map((t) => [t, !0]));
|
|
150
|
+
return (t) => {
|
|
151
|
+
if (t.length <= 1)
|
|
152
|
+
return t;
|
|
153
|
+
const c = [];
|
|
166
154
|
let m = [];
|
|
167
|
-
return
|
|
168
|
-
|
|
169
|
-
}),
|
|
155
|
+
return t.forEach((i) => {
|
|
156
|
+
i[0] === "[" || n[i] ? (c.push(...m.sort(), i), m = []) : m.push(i);
|
|
157
|
+
}), c.push(...m.sort()), c;
|
|
170
158
|
};
|
|
171
|
-
},
|
|
172
|
-
cache:
|
|
173
|
-
parseClassName:
|
|
174
|
-
sortModifiers:
|
|
175
|
-
...
|
|
176
|
-
}),
|
|
159
|
+
}, Oe = (e) => ({
|
|
160
|
+
cache: Ee(e.cacheSize),
|
|
161
|
+
parseClassName: Le(e),
|
|
162
|
+
sortModifiers: je(e),
|
|
163
|
+
...Pe(e)
|
|
164
|
+
}), Fe = /\s+/, _e = (e, n) => {
|
|
177
165
|
const {
|
|
178
|
-
parseClassName:
|
|
179
|
-
getClassGroupId:
|
|
180
|
-
getConflictingClassGroupIds:
|
|
166
|
+
parseClassName: s,
|
|
167
|
+
getClassGroupId: t,
|
|
168
|
+
getConflictingClassGroupIds: c,
|
|
181
169
|
sortModifiers: m
|
|
182
|
-
} = n,
|
|
170
|
+
} = n, i = [], u = e.trim().split(Fe);
|
|
183
171
|
let p = "";
|
|
184
172
|
for (let g = u.length - 1; g >= 0; g -= 1) {
|
|
185
173
|
const h = u[g], {
|
|
@@ -188,83 +176,83 @@ const ne = "-", Re = (e) => {
|
|
|
188
176
|
hasImportantModifier: F,
|
|
189
177
|
baseClassName: k,
|
|
190
178
|
maybePostfixModifierPosition: y
|
|
191
|
-
} =
|
|
179
|
+
} = s(h);
|
|
192
180
|
if (M) {
|
|
193
181
|
p = h + (p.length > 0 ? " " + p : p);
|
|
194
182
|
continue;
|
|
195
183
|
}
|
|
196
|
-
let G = !!y, A =
|
|
184
|
+
let G = !!y, A = t(G ? k.substring(0, y) : k);
|
|
197
185
|
if (!A) {
|
|
198
186
|
if (!G) {
|
|
199
187
|
p = h + (p.length > 0 ? " " + p : p);
|
|
200
188
|
continue;
|
|
201
189
|
}
|
|
202
|
-
if (A =
|
|
190
|
+
if (A = t(k), !A) {
|
|
203
191
|
p = h + (p.length > 0 ? " " + p : p);
|
|
204
192
|
continue;
|
|
205
193
|
}
|
|
206
194
|
G = !1;
|
|
207
195
|
}
|
|
208
196
|
const $ = m(O).join(":"), _ = F ? $ + te : $, T = _ + A;
|
|
209
|
-
if (
|
|
197
|
+
if (i.includes(T))
|
|
210
198
|
continue;
|
|
211
|
-
|
|
212
|
-
const E =
|
|
199
|
+
i.push(T);
|
|
200
|
+
const E = c(A, G);
|
|
213
201
|
for (let I = 0; I < E.length; ++I) {
|
|
214
202
|
const B = E[I];
|
|
215
|
-
|
|
203
|
+
i.push(_ + B);
|
|
216
204
|
}
|
|
217
205
|
p = h + (p.length > 0 ? " " + p : p);
|
|
218
206
|
}
|
|
219
207
|
return p;
|
|
220
208
|
};
|
|
221
|
-
function
|
|
222
|
-
let e = 0, n,
|
|
209
|
+
function Be() {
|
|
210
|
+
let e = 0, n, s, t = "";
|
|
223
211
|
for (; e < arguments.length; )
|
|
224
|
-
(n = arguments[e++]) && (
|
|
225
|
-
return
|
|
212
|
+
(n = arguments[e++]) && (s = we(n)) && (t && (t += " "), t += s);
|
|
213
|
+
return t;
|
|
226
214
|
}
|
|
227
|
-
const
|
|
215
|
+
const we = (e) => {
|
|
228
216
|
if (typeof e == "string")
|
|
229
217
|
return e;
|
|
230
|
-
let n,
|
|
231
|
-
for (let
|
|
232
|
-
e[
|
|
233
|
-
return
|
|
218
|
+
let n, s = "";
|
|
219
|
+
for (let t = 0; t < e.length; t++)
|
|
220
|
+
e[t] && (n = we(e[t])) && (s && (s += " "), s += n);
|
|
221
|
+
return s;
|
|
234
222
|
};
|
|
235
|
-
function
|
|
236
|
-
let
|
|
237
|
-
function
|
|
223
|
+
function We(e, ...n) {
|
|
224
|
+
let s, t, c, m = i;
|
|
225
|
+
function i(p) {
|
|
238
226
|
const g = n.reduce((h, M) => M(h), e());
|
|
239
|
-
return
|
|
227
|
+
return s = Oe(g), t = s.cache.get, c = s.cache.set, m = u, u(p);
|
|
240
228
|
}
|
|
241
229
|
function u(p) {
|
|
242
|
-
const g =
|
|
230
|
+
const g = t(p);
|
|
243
231
|
if (g)
|
|
244
232
|
return g;
|
|
245
|
-
const h =
|
|
246
|
-
return
|
|
233
|
+
const h = _e(p, s);
|
|
234
|
+
return c(p, h), h;
|
|
247
235
|
}
|
|
248
236
|
return function() {
|
|
249
|
-
return m(
|
|
237
|
+
return m(Be.apply(null, arguments));
|
|
250
238
|
};
|
|
251
239
|
}
|
|
252
240
|
const f = (e) => {
|
|
253
|
-
const n = (
|
|
241
|
+
const n = (s) => s[e] || [];
|
|
254
242
|
return n.isThemeGetter = !0, n;
|
|
255
|
-
},
|
|
243
|
+
}, ke = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, ye = /^\((?:(\w[\w-]*):)?(.+)\)$/i, $e = /^\d+\/\d+$/, Ue = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, qe = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, He = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, Je = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, Xe = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, L = (e) => $e.test(e), d = (e) => !!e && !Number.isNaN(Number(e)), S = (e) => !!e && Number.isInteger(Number(e)), ee = (e) => e.endsWith("%") && d(e.slice(0, -1)), C = (e) => Ue.test(e), De = () => !0, Ke = (e) => (
|
|
256
244
|
// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
|
|
257
245
|
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
|
|
258
246
|
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
|
|
259
|
-
|
|
260
|
-
),
|
|
261
|
-
const
|
|
262
|
-
return
|
|
263
|
-
}, j = (e, n,
|
|
264
|
-
const
|
|
265
|
-
return
|
|
266
|
-
},
|
|
267
|
-
const e = f("color"), n = f("font"),
|
|
247
|
+
qe.test(e) && !He.test(e)
|
|
248
|
+
), ve = () => !1, Qe = (e) => Je.test(e), Ye = (e) => Xe.test(e), Ze = (e) => !o(e) && !r(e), eo = (e) => V(e, Me, ve), o = (e) => ke.test(e), R = (e) => V(e, Se, Ke), oe = (e) => V(e, no, d), ge = (e) => V(e, ze, ve), oo = (e) => V(e, Ce, Ye), D = (e) => V(e, Ae, Qe), r = (e) => ye.test(e), W = (e) => j(e, Se), ro = (e) => j(e, ao), he = (e) => j(e, ze), to = (e) => j(e, Me), so = (e) => j(e, Ce), K = (e) => j(e, Ae, !0), V = (e, n, s) => {
|
|
249
|
+
const t = ke.exec(e);
|
|
250
|
+
return t ? t[1] ? n(t[1]) : s(t[2]) : !1;
|
|
251
|
+
}, j = (e, n, s = !1) => {
|
|
252
|
+
const t = ye.exec(e);
|
|
253
|
+
return t ? t[1] ? n(t[1]) : s : !1;
|
|
254
|
+
}, ze = (e) => e === "position" || e === "percentage", Ce = (e) => e === "image" || e === "url", Me = (e) => e === "length" || e === "size" || e === "bg-size", Se = (e) => e === "length", no = (e) => e === "number", ao = (e) => e === "family-name", Ae = (e) => e === "shadow", io = () => {
|
|
255
|
+
const e = f("color"), n = f("font"), s = f("text"), t = f("font-weight"), c = f("tracking"), m = f("leading"), i = f("breakpoint"), u = f("container"), p = f("spacing"), g = f("radius"), h = f("shadow"), M = f("inset-shadow"), O = f("text-shadow"), F = f("drop-shadow"), k = f("blur"), y = f("perspective"), G = f("aspect"), A = f("ease"), $ = f("animate"), _ = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], T = () => [
|
|
268
256
|
"center",
|
|
269
257
|
"top",
|
|
270
258
|
"bottom",
|
|
@@ -282,30 +270,30 @@ const f = (e) => {
|
|
|
282
270
|
"bottom-left",
|
|
283
271
|
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
284
272
|
"left-bottom"
|
|
285
|
-
], E = () => [...T(),
|
|
286
|
-
span: ["full", S,
|
|
287
|
-
}, S,
|
|
288
|
-
position: [
|
|
273
|
+
], E = () => [...T(), r, o], I = () => ["auto", "hidden", "clip", "visible", "scroll"], B = () => ["auto", "contain", "none"], l = () => [r, o, p], v = () => [L, "full", "auto", ...l()], ae = () => [S, "none", "subgrid", r, o], ie = () => ["auto", {
|
|
274
|
+
span: ["full", S, r, o]
|
|
275
|
+
}, S, r, o], U = () => [S, "auto", r, o], le = () => ["auto", "min", "max", "fr", r, o], Q = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], N = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], z = () => ["auto", ...l()], P = () => [L, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...l()], a = () => [e, r, o], ce = () => [...T(), he, ge, {
|
|
276
|
+
position: [r, o]
|
|
289
277
|
}], de = () => ["no-repeat", {
|
|
290
278
|
repeat: ["", "x", "y", "space", "round"]
|
|
291
|
-
}], me = () => ["auto", "cover", "contain",
|
|
292
|
-
size: [
|
|
279
|
+
}], me = () => ["auto", "cover", "contain", to, eo, {
|
|
280
|
+
size: [r, o]
|
|
293
281
|
}], Y = () => [ee, W, R], x = () => [
|
|
294
282
|
// Deprecated since Tailwind CSS v4.0.0
|
|
295
283
|
"",
|
|
296
284
|
"none",
|
|
297
285
|
"full",
|
|
298
286
|
g,
|
|
299
|
-
|
|
300
|
-
|
|
287
|
+
r,
|
|
288
|
+
o
|
|
301
289
|
], w = () => ["", d, W, R], q = () => ["solid", "dashed", "dotted", "double"], pe = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], b = () => [d, ee, he, ge], ue = () => [
|
|
302
290
|
// Deprecated since Tailwind CSS v4.0.0
|
|
303
291
|
"",
|
|
304
292
|
"none",
|
|
305
293
|
k,
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
], H = () => ["none", d,
|
|
294
|
+
r,
|
|
295
|
+
o
|
|
296
|
+
], H = () => ["none", d, r, o], J = () => ["none", d, r, o], Z = () => [d, r, o], X = () => [L, "full", ...l()];
|
|
309
297
|
return {
|
|
310
298
|
cacheSize: 500,
|
|
311
299
|
theme: {
|
|
@@ -313,11 +301,11 @@ const f = (e) => {
|
|
|
313
301
|
aspect: ["video"],
|
|
314
302
|
blur: [C],
|
|
315
303
|
breakpoint: [C],
|
|
316
|
-
color: [
|
|
304
|
+
color: [De],
|
|
317
305
|
container: [C],
|
|
318
306
|
"drop-shadow": [C],
|
|
319
307
|
ease: ["in", "out", "in-out"],
|
|
320
|
-
font: [
|
|
308
|
+
font: [Ze],
|
|
321
309
|
"font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
|
|
322
310
|
"inset-shadow": [C],
|
|
323
311
|
leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
|
|
@@ -338,7 +326,7 @@ const f = (e) => {
|
|
|
338
326
|
* @see https://tailwindcss.com/docs/aspect-ratio
|
|
339
327
|
*/
|
|
340
328
|
aspect: [{
|
|
341
|
-
aspect: ["auto", "square", L,
|
|
329
|
+
aspect: ["auto", "square", L, o, r, G]
|
|
342
330
|
}],
|
|
343
331
|
/**
|
|
344
332
|
* Container
|
|
@@ -351,7 +339,7 @@ const f = (e) => {
|
|
|
351
339
|
* @see https://tailwindcss.com/docs/columns
|
|
352
340
|
*/
|
|
353
341
|
columns: [{
|
|
354
|
-
columns: [d,
|
|
342
|
+
columns: [d, o, r, u]
|
|
355
343
|
}],
|
|
356
344
|
/**
|
|
357
345
|
* Break After
|
|
@@ -551,7 +539,7 @@ const f = (e) => {
|
|
|
551
539
|
* @see https://tailwindcss.com/docs/z-index
|
|
552
540
|
*/
|
|
553
541
|
z: [{
|
|
554
|
-
z: [S, "auto",
|
|
542
|
+
z: [S, "auto", r, o]
|
|
555
543
|
}],
|
|
556
544
|
// ------------------------
|
|
557
545
|
// --- Flexbox and Grid ---
|
|
@@ -561,7 +549,7 @@ const f = (e) => {
|
|
|
561
549
|
* @see https://tailwindcss.com/docs/flex-basis
|
|
562
550
|
*/
|
|
563
551
|
basis: [{
|
|
564
|
-
basis: [L, "full", "auto", u, ...
|
|
552
|
+
basis: [L, "full", "auto", u, ...l()]
|
|
565
553
|
}],
|
|
566
554
|
/**
|
|
567
555
|
* Flex Direction
|
|
@@ -582,28 +570,28 @@ const f = (e) => {
|
|
|
582
570
|
* @see https://tailwindcss.com/docs/flex
|
|
583
571
|
*/
|
|
584
572
|
flex: [{
|
|
585
|
-
flex: [d, L, "auto", "initial", "none",
|
|
573
|
+
flex: [d, L, "auto", "initial", "none", o]
|
|
586
574
|
}],
|
|
587
575
|
/**
|
|
588
576
|
* Flex Grow
|
|
589
577
|
* @see https://tailwindcss.com/docs/flex-grow
|
|
590
578
|
*/
|
|
591
579
|
grow: [{
|
|
592
|
-
grow: ["", d,
|
|
580
|
+
grow: ["", d, r, o]
|
|
593
581
|
}],
|
|
594
582
|
/**
|
|
595
583
|
* Flex Shrink
|
|
596
584
|
* @see https://tailwindcss.com/docs/flex-shrink
|
|
597
585
|
*/
|
|
598
586
|
shrink: [{
|
|
599
|
-
shrink: ["", d,
|
|
587
|
+
shrink: ["", d, r, o]
|
|
600
588
|
}],
|
|
601
589
|
/**
|
|
602
590
|
* Order
|
|
603
591
|
* @see https://tailwindcss.com/docs/order
|
|
604
592
|
*/
|
|
605
593
|
order: [{
|
|
606
|
-
order: [S, "first", "last", "none",
|
|
594
|
+
order: [S, "first", "last", "none", r, o]
|
|
607
595
|
}],
|
|
608
596
|
/**
|
|
609
597
|
* Grid Template Columns
|
|
@@ -687,21 +675,21 @@ const f = (e) => {
|
|
|
687
675
|
* @see https://tailwindcss.com/docs/gap
|
|
688
676
|
*/
|
|
689
677
|
gap: [{
|
|
690
|
-
gap:
|
|
678
|
+
gap: l()
|
|
691
679
|
}],
|
|
692
680
|
/**
|
|
693
681
|
* Gap X
|
|
694
682
|
* @see https://tailwindcss.com/docs/gap
|
|
695
683
|
*/
|
|
696
684
|
"gap-x": [{
|
|
697
|
-
"gap-x":
|
|
685
|
+
"gap-x": l()
|
|
698
686
|
}],
|
|
699
687
|
/**
|
|
700
688
|
* Gap Y
|
|
701
689
|
* @see https://tailwindcss.com/docs/gap
|
|
702
690
|
*/
|
|
703
691
|
"gap-y": [{
|
|
704
|
-
"gap-y":
|
|
692
|
+
"gap-y": l()
|
|
705
693
|
}],
|
|
706
694
|
/**
|
|
707
695
|
* Justify Content
|
|
@@ -776,63 +764,63 @@ const f = (e) => {
|
|
|
776
764
|
* @see https://tailwindcss.com/docs/padding
|
|
777
765
|
*/
|
|
778
766
|
p: [{
|
|
779
|
-
p:
|
|
767
|
+
p: l()
|
|
780
768
|
}],
|
|
781
769
|
/**
|
|
782
770
|
* Padding X
|
|
783
771
|
* @see https://tailwindcss.com/docs/padding
|
|
784
772
|
*/
|
|
785
773
|
px: [{
|
|
786
|
-
px:
|
|
774
|
+
px: l()
|
|
787
775
|
}],
|
|
788
776
|
/**
|
|
789
777
|
* Padding Y
|
|
790
778
|
* @see https://tailwindcss.com/docs/padding
|
|
791
779
|
*/
|
|
792
780
|
py: [{
|
|
793
|
-
py:
|
|
781
|
+
py: l()
|
|
794
782
|
}],
|
|
795
783
|
/**
|
|
796
784
|
* Padding Start
|
|
797
785
|
* @see https://tailwindcss.com/docs/padding
|
|
798
786
|
*/
|
|
799
787
|
ps: [{
|
|
800
|
-
ps:
|
|
788
|
+
ps: l()
|
|
801
789
|
}],
|
|
802
790
|
/**
|
|
803
791
|
* Padding End
|
|
804
792
|
* @see https://tailwindcss.com/docs/padding
|
|
805
793
|
*/
|
|
806
794
|
pe: [{
|
|
807
|
-
pe:
|
|
795
|
+
pe: l()
|
|
808
796
|
}],
|
|
809
797
|
/**
|
|
810
798
|
* Padding Top
|
|
811
799
|
* @see https://tailwindcss.com/docs/padding
|
|
812
800
|
*/
|
|
813
801
|
pt: [{
|
|
814
|
-
pt:
|
|
802
|
+
pt: l()
|
|
815
803
|
}],
|
|
816
804
|
/**
|
|
817
805
|
* Padding Right
|
|
818
806
|
* @see https://tailwindcss.com/docs/padding
|
|
819
807
|
*/
|
|
820
808
|
pr: [{
|
|
821
|
-
pr:
|
|
809
|
+
pr: l()
|
|
822
810
|
}],
|
|
823
811
|
/**
|
|
824
812
|
* Padding Bottom
|
|
825
813
|
* @see https://tailwindcss.com/docs/padding
|
|
826
814
|
*/
|
|
827
815
|
pb: [{
|
|
828
|
-
pb:
|
|
816
|
+
pb: l()
|
|
829
817
|
}],
|
|
830
818
|
/**
|
|
831
819
|
* Padding Left
|
|
832
820
|
* @see https://tailwindcss.com/docs/padding
|
|
833
821
|
*/
|
|
834
822
|
pl: [{
|
|
835
|
-
pl:
|
|
823
|
+
pl: l()
|
|
836
824
|
}],
|
|
837
825
|
/**
|
|
838
826
|
* Margin
|
|
@@ -902,7 +890,7 @@ const f = (e) => {
|
|
|
902
890
|
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
903
891
|
*/
|
|
904
892
|
"space-x": [{
|
|
905
|
-
"space-x":
|
|
893
|
+
"space-x": l()
|
|
906
894
|
}],
|
|
907
895
|
/**
|
|
908
896
|
* Space Between X Reverse
|
|
@@ -914,7 +902,7 @@ const f = (e) => {
|
|
|
914
902
|
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
915
903
|
*/
|
|
916
904
|
"space-y": [{
|
|
917
|
-
"space-y":
|
|
905
|
+
"space-y": l()
|
|
918
906
|
}],
|
|
919
907
|
/**
|
|
920
908
|
* Space Between Y Reverse
|
|
@@ -964,7 +952,7 @@ const f = (e) => {
|
|
|
964
952
|
"prose",
|
|
965
953
|
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
966
954
|
{
|
|
967
|
-
screen: [
|
|
955
|
+
screen: [i]
|
|
968
956
|
},
|
|
969
957
|
...P()
|
|
970
958
|
]
|
|
@@ -998,7 +986,7 @@ const f = (e) => {
|
|
|
998
986
|
* @see https://tailwindcss.com/docs/font-size
|
|
999
987
|
*/
|
|
1000
988
|
"font-size": [{
|
|
1001
|
-
text: ["base",
|
|
989
|
+
text: ["base", s, W, R]
|
|
1002
990
|
}],
|
|
1003
991
|
/**
|
|
1004
992
|
* Font Smoothing
|
|
@@ -1015,21 +1003,21 @@ const f = (e) => {
|
|
|
1015
1003
|
* @see https://tailwindcss.com/docs/font-weight
|
|
1016
1004
|
*/
|
|
1017
1005
|
"font-weight": [{
|
|
1018
|
-
font: [
|
|
1006
|
+
font: [t, r, oe]
|
|
1019
1007
|
}],
|
|
1020
1008
|
/**
|
|
1021
1009
|
* Font Stretch
|
|
1022
1010
|
* @see https://tailwindcss.com/docs/font-stretch
|
|
1023
1011
|
*/
|
|
1024
1012
|
"font-stretch": [{
|
|
1025
|
-
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", ee,
|
|
1013
|
+
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", ee, o]
|
|
1026
1014
|
}],
|
|
1027
1015
|
/**
|
|
1028
1016
|
* Font Family
|
|
1029
1017
|
* @see https://tailwindcss.com/docs/font-family
|
|
1030
1018
|
*/
|
|
1031
1019
|
"font-family": [{
|
|
1032
|
-
font: [
|
|
1020
|
+
font: [ro, o, n]
|
|
1033
1021
|
}],
|
|
1034
1022
|
/**
|
|
1035
1023
|
* Font Variant Numeric
|
|
@@ -1066,14 +1054,14 @@ const f = (e) => {
|
|
|
1066
1054
|
* @see https://tailwindcss.com/docs/letter-spacing
|
|
1067
1055
|
*/
|
|
1068
1056
|
tracking: [{
|
|
1069
|
-
tracking: [
|
|
1057
|
+
tracking: [c, r, o]
|
|
1070
1058
|
}],
|
|
1071
1059
|
/**
|
|
1072
1060
|
* Line Clamp
|
|
1073
1061
|
* @see https://tailwindcss.com/docs/line-clamp
|
|
1074
1062
|
*/
|
|
1075
1063
|
"line-clamp": [{
|
|
1076
|
-
"line-clamp": [d, "none",
|
|
1064
|
+
"line-clamp": [d, "none", r, oe]
|
|
1077
1065
|
}],
|
|
1078
1066
|
/**
|
|
1079
1067
|
* Line Height
|
|
@@ -1083,7 +1071,7 @@ const f = (e) => {
|
|
|
1083
1071
|
leading: [
|
|
1084
1072
|
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
1085
1073
|
m,
|
|
1086
|
-
...
|
|
1074
|
+
...l()
|
|
1087
1075
|
]
|
|
1088
1076
|
}],
|
|
1089
1077
|
/**
|
|
@@ -1091,7 +1079,7 @@ const f = (e) => {
|
|
|
1091
1079
|
* @see https://tailwindcss.com/docs/list-style-image
|
|
1092
1080
|
*/
|
|
1093
1081
|
"list-image": [{
|
|
1094
|
-
"list-image": ["none",
|
|
1082
|
+
"list-image": ["none", r, o]
|
|
1095
1083
|
}],
|
|
1096
1084
|
/**
|
|
1097
1085
|
* List Style Position
|
|
@@ -1105,7 +1093,7 @@ const f = (e) => {
|
|
|
1105
1093
|
* @see https://tailwindcss.com/docs/list-style-type
|
|
1106
1094
|
*/
|
|
1107
1095
|
"list-style-type": [{
|
|
1108
|
-
list: ["disc", "decimal", "none",
|
|
1096
|
+
list: ["disc", "decimal", "none", r, o]
|
|
1109
1097
|
}],
|
|
1110
1098
|
/**
|
|
1111
1099
|
* Text Alignment
|
|
@@ -1146,7 +1134,7 @@ const f = (e) => {
|
|
|
1146
1134
|
* @see https://tailwindcss.com/docs/text-decoration-thickness
|
|
1147
1135
|
*/
|
|
1148
1136
|
"text-decoration-thickness": [{
|
|
1149
|
-
decoration: [d, "from-font", "auto",
|
|
1137
|
+
decoration: [d, "from-font", "auto", r, R]
|
|
1150
1138
|
}],
|
|
1151
1139
|
/**
|
|
1152
1140
|
* Text Decoration Color
|
|
@@ -1160,7 +1148,7 @@ const f = (e) => {
|
|
|
1160
1148
|
* @see https://tailwindcss.com/docs/text-underline-offset
|
|
1161
1149
|
*/
|
|
1162
1150
|
"underline-offset": [{
|
|
1163
|
-
"underline-offset": [d, "auto",
|
|
1151
|
+
"underline-offset": [d, "auto", r, o]
|
|
1164
1152
|
}],
|
|
1165
1153
|
/**
|
|
1166
1154
|
* Text Transform
|
|
@@ -1184,14 +1172,14 @@ const f = (e) => {
|
|
|
1184
1172
|
* @see https://tailwindcss.com/docs/text-indent
|
|
1185
1173
|
*/
|
|
1186
1174
|
indent: [{
|
|
1187
|
-
indent:
|
|
1175
|
+
indent: l()
|
|
1188
1176
|
}],
|
|
1189
1177
|
/**
|
|
1190
1178
|
* Vertical Alignment
|
|
1191
1179
|
* @see https://tailwindcss.com/docs/vertical-align
|
|
1192
1180
|
*/
|
|
1193
1181
|
"vertical-align": [{
|
|
1194
|
-
align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super",
|
|
1182
|
+
align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", r, o]
|
|
1195
1183
|
}],
|
|
1196
1184
|
/**
|
|
1197
1185
|
* Whitespace
|
|
@@ -1226,7 +1214,7 @@ const f = (e) => {
|
|
|
1226
1214
|
* @see https://tailwindcss.com/docs/content
|
|
1227
1215
|
*/
|
|
1228
1216
|
content: [{
|
|
1229
|
-
content: ["none",
|
|
1217
|
+
content: ["none", r, o]
|
|
1230
1218
|
}],
|
|
1231
1219
|
// -------------------
|
|
1232
1220
|
// --- Backgrounds ---
|
|
@@ -1281,10 +1269,10 @@ const f = (e) => {
|
|
|
1281
1269
|
bg: ["none", {
|
|
1282
1270
|
linear: [{
|
|
1283
1271
|
to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
|
|
1284
|
-
}, S,
|
|
1285
|
-
radial: ["",
|
|
1286
|
-
conic: [S,
|
|
1287
|
-
},
|
|
1272
|
+
}, S, r, o],
|
|
1273
|
+
radial: ["", r, o],
|
|
1274
|
+
conic: [S, r, o]
|
|
1275
|
+
}, so, oo]
|
|
1288
1276
|
}],
|
|
1289
1277
|
/**
|
|
1290
1278
|
* Background Color
|
|
@@ -1626,7 +1614,7 @@ const f = (e) => {
|
|
|
1626
1614
|
* @see https://tailwindcss.com/docs/outline-offset
|
|
1627
1615
|
*/
|
|
1628
1616
|
"outline-offset": [{
|
|
1629
|
-
"outline-offset": [d,
|
|
1617
|
+
"outline-offset": [d, r, o]
|
|
1630
1618
|
}],
|
|
1631
1619
|
/**
|
|
1632
1620
|
* Outline Width
|
|
@@ -1752,7 +1740,7 @@ const f = (e) => {
|
|
|
1752
1740
|
* @see https://tailwindcss.com/docs/opacity
|
|
1753
1741
|
*/
|
|
1754
1742
|
opacity: [{
|
|
1755
|
-
opacity: [d,
|
|
1743
|
+
opacity: [d, r, o]
|
|
1756
1744
|
}],
|
|
1757
1745
|
/**
|
|
1758
1746
|
* Mix Blend Mode
|
|
@@ -1874,7 +1862,7 @@ const f = (e) => {
|
|
|
1874
1862
|
"mask-y-to": a()
|
|
1875
1863
|
}],
|
|
1876
1864
|
"mask-image-radial": [{
|
|
1877
|
-
"mask-radial": [
|
|
1865
|
+
"mask-radial": [r, o]
|
|
1878
1866
|
}],
|
|
1879
1867
|
"mask-image-radial-from-pos": [{
|
|
1880
1868
|
"mask-radial-from": b()
|
|
@@ -1962,7 +1950,7 @@ const f = (e) => {
|
|
|
1962
1950
|
* @see https://tailwindcss.com/docs/mask-image
|
|
1963
1951
|
*/
|
|
1964
1952
|
"mask-image": [{
|
|
1965
|
-
mask: ["none",
|
|
1953
|
+
mask: ["none", r, o]
|
|
1966
1954
|
}],
|
|
1967
1955
|
// ---------------
|
|
1968
1956
|
// --- Filters ---
|
|
@@ -1976,8 +1964,8 @@ const f = (e) => {
|
|
|
1976
1964
|
// Deprecated since Tailwind CSS v3.0.0
|
|
1977
1965
|
"",
|
|
1978
1966
|
"none",
|
|
1979
|
-
|
|
1980
|
-
|
|
1967
|
+
r,
|
|
1968
|
+
o
|
|
1981
1969
|
]
|
|
1982
1970
|
}],
|
|
1983
1971
|
/**
|
|
@@ -1992,14 +1980,14 @@ const f = (e) => {
|
|
|
1992
1980
|
* @see https://tailwindcss.com/docs/brightness
|
|
1993
1981
|
*/
|
|
1994
1982
|
brightness: [{
|
|
1995
|
-
brightness: [d,
|
|
1983
|
+
brightness: [d, r, o]
|
|
1996
1984
|
}],
|
|
1997
1985
|
/**
|
|
1998
1986
|
* Contrast
|
|
1999
1987
|
* @see https://tailwindcss.com/docs/contrast
|
|
2000
1988
|
*/
|
|
2001
1989
|
contrast: [{
|
|
2002
|
-
contrast: [d,
|
|
1990
|
+
contrast: [d, r, o]
|
|
2003
1991
|
}],
|
|
2004
1992
|
/**
|
|
2005
1993
|
* Drop Shadow
|
|
@@ -2027,35 +2015,35 @@ const f = (e) => {
|
|
|
2027
2015
|
* @see https://tailwindcss.com/docs/grayscale
|
|
2028
2016
|
*/
|
|
2029
2017
|
grayscale: [{
|
|
2030
|
-
grayscale: ["", d,
|
|
2018
|
+
grayscale: ["", d, r, o]
|
|
2031
2019
|
}],
|
|
2032
2020
|
/**
|
|
2033
2021
|
* Hue Rotate
|
|
2034
2022
|
* @see https://tailwindcss.com/docs/hue-rotate
|
|
2035
2023
|
*/
|
|
2036
2024
|
"hue-rotate": [{
|
|
2037
|
-
"hue-rotate": [d,
|
|
2025
|
+
"hue-rotate": [d, r, o]
|
|
2038
2026
|
}],
|
|
2039
2027
|
/**
|
|
2040
2028
|
* Invert
|
|
2041
2029
|
* @see https://tailwindcss.com/docs/invert
|
|
2042
2030
|
*/
|
|
2043
2031
|
invert: [{
|
|
2044
|
-
invert: ["", d,
|
|
2032
|
+
invert: ["", d, r, o]
|
|
2045
2033
|
}],
|
|
2046
2034
|
/**
|
|
2047
2035
|
* Saturate
|
|
2048
2036
|
* @see https://tailwindcss.com/docs/saturate
|
|
2049
2037
|
*/
|
|
2050
2038
|
saturate: [{
|
|
2051
|
-
saturate: [d,
|
|
2039
|
+
saturate: [d, r, o]
|
|
2052
2040
|
}],
|
|
2053
2041
|
/**
|
|
2054
2042
|
* Sepia
|
|
2055
2043
|
* @see https://tailwindcss.com/docs/sepia
|
|
2056
2044
|
*/
|
|
2057
2045
|
sepia: [{
|
|
2058
|
-
sepia: ["", d,
|
|
2046
|
+
sepia: ["", d, r, o]
|
|
2059
2047
|
}],
|
|
2060
2048
|
/**
|
|
2061
2049
|
* Backdrop Filter
|
|
@@ -2066,8 +2054,8 @@ const f = (e) => {
|
|
|
2066
2054
|
// Deprecated since Tailwind CSS v3.0.0
|
|
2067
2055
|
"",
|
|
2068
2056
|
"none",
|
|
2069
|
-
|
|
2070
|
-
|
|
2057
|
+
r,
|
|
2058
|
+
o
|
|
2071
2059
|
]
|
|
2072
2060
|
}],
|
|
2073
2061
|
/**
|
|
@@ -2082,56 +2070,56 @@ const f = (e) => {
|
|
|
2082
2070
|
* @see https://tailwindcss.com/docs/backdrop-brightness
|
|
2083
2071
|
*/
|
|
2084
2072
|
"backdrop-brightness": [{
|
|
2085
|
-
"backdrop-brightness": [d,
|
|
2073
|
+
"backdrop-brightness": [d, r, o]
|
|
2086
2074
|
}],
|
|
2087
2075
|
/**
|
|
2088
2076
|
* Backdrop Contrast
|
|
2089
2077
|
* @see https://tailwindcss.com/docs/backdrop-contrast
|
|
2090
2078
|
*/
|
|
2091
2079
|
"backdrop-contrast": [{
|
|
2092
|
-
"backdrop-contrast": [d,
|
|
2080
|
+
"backdrop-contrast": [d, r, o]
|
|
2093
2081
|
}],
|
|
2094
2082
|
/**
|
|
2095
2083
|
* Backdrop Grayscale
|
|
2096
2084
|
* @see https://tailwindcss.com/docs/backdrop-grayscale
|
|
2097
2085
|
*/
|
|
2098
2086
|
"backdrop-grayscale": [{
|
|
2099
|
-
"backdrop-grayscale": ["", d,
|
|
2087
|
+
"backdrop-grayscale": ["", d, r, o]
|
|
2100
2088
|
}],
|
|
2101
2089
|
/**
|
|
2102
2090
|
* Backdrop Hue Rotate
|
|
2103
2091
|
* @see https://tailwindcss.com/docs/backdrop-hue-rotate
|
|
2104
2092
|
*/
|
|
2105
2093
|
"backdrop-hue-rotate": [{
|
|
2106
|
-
"backdrop-hue-rotate": [d,
|
|
2094
|
+
"backdrop-hue-rotate": [d, r, o]
|
|
2107
2095
|
}],
|
|
2108
2096
|
/**
|
|
2109
2097
|
* Backdrop Invert
|
|
2110
2098
|
* @see https://tailwindcss.com/docs/backdrop-invert
|
|
2111
2099
|
*/
|
|
2112
2100
|
"backdrop-invert": [{
|
|
2113
|
-
"backdrop-invert": ["", d,
|
|
2101
|
+
"backdrop-invert": ["", d, r, o]
|
|
2114
2102
|
}],
|
|
2115
2103
|
/**
|
|
2116
2104
|
* Backdrop Opacity
|
|
2117
2105
|
* @see https://tailwindcss.com/docs/backdrop-opacity
|
|
2118
2106
|
*/
|
|
2119
2107
|
"backdrop-opacity": [{
|
|
2120
|
-
"backdrop-opacity": [d,
|
|
2108
|
+
"backdrop-opacity": [d, r, o]
|
|
2121
2109
|
}],
|
|
2122
2110
|
/**
|
|
2123
2111
|
* Backdrop Saturate
|
|
2124
2112
|
* @see https://tailwindcss.com/docs/backdrop-saturate
|
|
2125
2113
|
*/
|
|
2126
2114
|
"backdrop-saturate": [{
|
|
2127
|
-
"backdrop-saturate": [d,
|
|
2115
|
+
"backdrop-saturate": [d, r, o]
|
|
2128
2116
|
}],
|
|
2129
2117
|
/**
|
|
2130
2118
|
* Backdrop Sepia
|
|
2131
2119
|
* @see https://tailwindcss.com/docs/backdrop-sepia
|
|
2132
2120
|
*/
|
|
2133
2121
|
"backdrop-sepia": [{
|
|
2134
|
-
"backdrop-sepia": ["", d,
|
|
2122
|
+
"backdrop-sepia": ["", d, r, o]
|
|
2135
2123
|
}],
|
|
2136
2124
|
// --------------
|
|
2137
2125
|
// --- Tables ---
|
|
@@ -2148,21 +2136,21 @@ const f = (e) => {
|
|
|
2148
2136
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2149
2137
|
*/
|
|
2150
2138
|
"border-spacing": [{
|
|
2151
|
-
"border-spacing":
|
|
2139
|
+
"border-spacing": l()
|
|
2152
2140
|
}],
|
|
2153
2141
|
/**
|
|
2154
2142
|
* Border Spacing X
|
|
2155
2143
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2156
2144
|
*/
|
|
2157
2145
|
"border-spacing-x": [{
|
|
2158
|
-
"border-spacing-x":
|
|
2146
|
+
"border-spacing-x": l()
|
|
2159
2147
|
}],
|
|
2160
2148
|
/**
|
|
2161
2149
|
* Border Spacing Y
|
|
2162
2150
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2163
2151
|
*/
|
|
2164
2152
|
"border-spacing-y": [{
|
|
2165
|
-
"border-spacing-y":
|
|
2153
|
+
"border-spacing-y": l()
|
|
2166
2154
|
}],
|
|
2167
2155
|
/**
|
|
2168
2156
|
* Table Layout
|
|
@@ -2186,7 +2174,7 @@ const f = (e) => {
|
|
|
2186
2174
|
* @see https://tailwindcss.com/docs/transition-property
|
|
2187
2175
|
*/
|
|
2188
2176
|
transition: [{
|
|
2189
|
-
transition: ["", "all", "colors", "opacity", "shadow", "transform", "none",
|
|
2177
|
+
transition: ["", "all", "colors", "opacity", "shadow", "transform", "none", r, o]
|
|
2190
2178
|
}],
|
|
2191
2179
|
/**
|
|
2192
2180
|
* Transition Behavior
|
|
@@ -2200,28 +2188,28 @@ const f = (e) => {
|
|
|
2200
2188
|
* @see https://tailwindcss.com/docs/transition-duration
|
|
2201
2189
|
*/
|
|
2202
2190
|
duration: [{
|
|
2203
|
-
duration: [d, "initial",
|
|
2191
|
+
duration: [d, "initial", r, o]
|
|
2204
2192
|
}],
|
|
2205
2193
|
/**
|
|
2206
2194
|
* Transition Timing Function
|
|
2207
2195
|
* @see https://tailwindcss.com/docs/transition-timing-function
|
|
2208
2196
|
*/
|
|
2209
2197
|
ease: [{
|
|
2210
|
-
ease: ["linear", "initial", A,
|
|
2198
|
+
ease: ["linear", "initial", A, r, o]
|
|
2211
2199
|
}],
|
|
2212
2200
|
/**
|
|
2213
2201
|
* Transition Delay
|
|
2214
2202
|
* @see https://tailwindcss.com/docs/transition-delay
|
|
2215
2203
|
*/
|
|
2216
2204
|
delay: [{
|
|
2217
|
-
delay: [d,
|
|
2205
|
+
delay: [d, r, o]
|
|
2218
2206
|
}],
|
|
2219
2207
|
/**
|
|
2220
2208
|
* Animation
|
|
2221
2209
|
* @see https://tailwindcss.com/docs/animation
|
|
2222
2210
|
*/
|
|
2223
2211
|
animate: [{
|
|
2224
|
-
animate: ["none", $,
|
|
2212
|
+
animate: ["none", $, r, o]
|
|
2225
2213
|
}],
|
|
2226
2214
|
// ------------------
|
|
2227
2215
|
// --- Transforms ---
|
|
@@ -2238,7 +2226,7 @@ const f = (e) => {
|
|
|
2238
2226
|
* @see https://tailwindcss.com/docs/perspective
|
|
2239
2227
|
*/
|
|
2240
2228
|
perspective: [{
|
|
2241
|
-
perspective: [y,
|
|
2229
|
+
perspective: [y, r, o]
|
|
2242
2230
|
}],
|
|
2243
2231
|
/**
|
|
2244
2232
|
* Perspective Origin
|
|
@@ -2334,7 +2322,7 @@ const f = (e) => {
|
|
|
2334
2322
|
* @see https://tailwindcss.com/docs/transform
|
|
2335
2323
|
*/
|
|
2336
2324
|
transform: [{
|
|
2337
|
-
transform: [
|
|
2325
|
+
transform: [r, o, "", "none", "gpu", "cpu"]
|
|
2338
2326
|
}],
|
|
2339
2327
|
/**
|
|
2340
2328
|
* Transform Origin
|
|
@@ -2419,7 +2407,7 @@ const f = (e) => {
|
|
|
2419
2407
|
* @see https://tailwindcss.com/docs/cursor
|
|
2420
2408
|
*/
|
|
2421
2409
|
cursor: [{
|
|
2422
|
-
cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out",
|
|
2410
|
+
cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", r, o]
|
|
2423
2411
|
}],
|
|
2424
2412
|
/**
|
|
2425
2413
|
* Field Sizing
|
|
@@ -2454,126 +2442,126 @@ const f = (e) => {
|
|
|
2454
2442
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2455
2443
|
*/
|
|
2456
2444
|
"scroll-m": [{
|
|
2457
|
-
"scroll-m":
|
|
2445
|
+
"scroll-m": l()
|
|
2458
2446
|
}],
|
|
2459
2447
|
/**
|
|
2460
2448
|
* Scroll Margin X
|
|
2461
2449
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2462
2450
|
*/
|
|
2463
2451
|
"scroll-mx": [{
|
|
2464
|
-
"scroll-mx":
|
|
2452
|
+
"scroll-mx": l()
|
|
2465
2453
|
}],
|
|
2466
2454
|
/**
|
|
2467
2455
|
* Scroll Margin Y
|
|
2468
2456
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2469
2457
|
*/
|
|
2470
2458
|
"scroll-my": [{
|
|
2471
|
-
"scroll-my":
|
|
2459
|
+
"scroll-my": l()
|
|
2472
2460
|
}],
|
|
2473
2461
|
/**
|
|
2474
2462
|
* Scroll Margin Start
|
|
2475
2463
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2476
2464
|
*/
|
|
2477
2465
|
"scroll-ms": [{
|
|
2478
|
-
"scroll-ms":
|
|
2466
|
+
"scroll-ms": l()
|
|
2479
2467
|
}],
|
|
2480
2468
|
/**
|
|
2481
2469
|
* Scroll Margin End
|
|
2482
2470
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2483
2471
|
*/
|
|
2484
2472
|
"scroll-me": [{
|
|
2485
|
-
"scroll-me":
|
|
2473
|
+
"scroll-me": l()
|
|
2486
2474
|
}],
|
|
2487
2475
|
/**
|
|
2488
2476
|
* Scroll Margin Top
|
|
2489
2477
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2490
2478
|
*/
|
|
2491
2479
|
"scroll-mt": [{
|
|
2492
|
-
"scroll-mt":
|
|
2480
|
+
"scroll-mt": l()
|
|
2493
2481
|
}],
|
|
2494
2482
|
/**
|
|
2495
2483
|
* Scroll Margin Right
|
|
2496
2484
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2497
2485
|
*/
|
|
2498
2486
|
"scroll-mr": [{
|
|
2499
|
-
"scroll-mr":
|
|
2487
|
+
"scroll-mr": l()
|
|
2500
2488
|
}],
|
|
2501
2489
|
/**
|
|
2502
2490
|
* Scroll Margin Bottom
|
|
2503
2491
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2504
2492
|
*/
|
|
2505
2493
|
"scroll-mb": [{
|
|
2506
|
-
"scroll-mb":
|
|
2494
|
+
"scroll-mb": l()
|
|
2507
2495
|
}],
|
|
2508
2496
|
/**
|
|
2509
2497
|
* Scroll Margin Left
|
|
2510
2498
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2511
2499
|
*/
|
|
2512
2500
|
"scroll-ml": [{
|
|
2513
|
-
"scroll-ml":
|
|
2501
|
+
"scroll-ml": l()
|
|
2514
2502
|
}],
|
|
2515
2503
|
/**
|
|
2516
2504
|
* Scroll Padding
|
|
2517
2505
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2518
2506
|
*/
|
|
2519
2507
|
"scroll-p": [{
|
|
2520
|
-
"scroll-p":
|
|
2508
|
+
"scroll-p": l()
|
|
2521
2509
|
}],
|
|
2522
2510
|
/**
|
|
2523
2511
|
* Scroll Padding X
|
|
2524
2512
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2525
2513
|
*/
|
|
2526
2514
|
"scroll-px": [{
|
|
2527
|
-
"scroll-px":
|
|
2515
|
+
"scroll-px": l()
|
|
2528
2516
|
}],
|
|
2529
2517
|
/**
|
|
2530
2518
|
* Scroll Padding Y
|
|
2531
2519
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2532
2520
|
*/
|
|
2533
2521
|
"scroll-py": [{
|
|
2534
|
-
"scroll-py":
|
|
2522
|
+
"scroll-py": l()
|
|
2535
2523
|
}],
|
|
2536
2524
|
/**
|
|
2537
2525
|
* Scroll Padding Start
|
|
2538
2526
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2539
2527
|
*/
|
|
2540
2528
|
"scroll-ps": [{
|
|
2541
|
-
"scroll-ps":
|
|
2529
|
+
"scroll-ps": l()
|
|
2542
2530
|
}],
|
|
2543
2531
|
/**
|
|
2544
2532
|
* Scroll Padding End
|
|
2545
2533
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2546
2534
|
*/
|
|
2547
2535
|
"scroll-pe": [{
|
|
2548
|
-
"scroll-pe":
|
|
2536
|
+
"scroll-pe": l()
|
|
2549
2537
|
}],
|
|
2550
2538
|
/**
|
|
2551
2539
|
* Scroll Padding Top
|
|
2552
2540
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2553
2541
|
*/
|
|
2554
2542
|
"scroll-pt": [{
|
|
2555
|
-
"scroll-pt":
|
|
2543
|
+
"scroll-pt": l()
|
|
2556
2544
|
}],
|
|
2557
2545
|
/**
|
|
2558
2546
|
* Scroll Padding Right
|
|
2559
2547
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2560
2548
|
*/
|
|
2561
2549
|
"scroll-pr": [{
|
|
2562
|
-
"scroll-pr":
|
|
2550
|
+
"scroll-pr": l()
|
|
2563
2551
|
}],
|
|
2564
2552
|
/**
|
|
2565
2553
|
* Scroll Padding Bottom
|
|
2566
2554
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2567
2555
|
*/
|
|
2568
2556
|
"scroll-pb": [{
|
|
2569
|
-
"scroll-pb":
|
|
2557
|
+
"scroll-pb": l()
|
|
2570
2558
|
}],
|
|
2571
2559
|
/**
|
|
2572
2560
|
* Scroll Padding Left
|
|
2573
2561
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2574
2562
|
*/
|
|
2575
2563
|
"scroll-pl": [{
|
|
2576
|
-
"scroll-pl":
|
|
2564
|
+
"scroll-pl": l()
|
|
2577
2565
|
}],
|
|
2578
2566
|
/**
|
|
2579
2567
|
* Scroll Snap Align
|
|
@@ -2641,7 +2629,7 @@ const f = (e) => {
|
|
|
2641
2629
|
* @see https://tailwindcss.com/docs/will-change
|
|
2642
2630
|
*/
|
|
2643
2631
|
"will-change": [{
|
|
2644
|
-
"will-change": ["auto", "scroll", "contents", "transform",
|
|
2632
|
+
"will-change": ["auto", "scroll", "contents", "transform", r, o]
|
|
2645
2633
|
}],
|
|
2646
2634
|
// -----------
|
|
2647
2635
|
// --- SVG ---
|
|
@@ -2733,12 +2721,11 @@ const f = (e) => {
|
|
|
2733
2721
|
},
|
|
2734
2722
|
orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
|
|
2735
2723
|
};
|
|
2736
|
-
},
|
|
2724
|
+
}, lo = /* @__PURE__ */ We(io);
|
|
2737
2725
|
function mo(...e) {
|
|
2738
|
-
return
|
|
2726
|
+
return lo(Ie(e));
|
|
2739
2727
|
}
|
|
2740
2728
|
export {
|
|
2741
|
-
Pe as a,
|
|
2742
2729
|
mo as c
|
|
2743
2730
|
};
|
|
2744
|
-
//# sourceMappingURL=cn-
|
|
2731
|
+
//# sourceMappingURL=cn-dYga0KKN.js.map
|