zudoku 0.0.0-fd8f8ad → 0.0.0-feat-bundled-types.1c7f1db
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 +1 -1
- package/cli.js +9 -0
- package/dist/app/ZuploBuildConfig.d.ts +155 -0
- package/dist/app/ZuploBuildConfig.js +29 -0
- package/dist/app/ZuploBuildConfig.js.map +1 -0
- package/dist/app/demo.js +1 -2
- package/dist/app/demo.js.map +1 -1
- package/dist/app/entry.client.d.ts +6 -0
- package/dist/app/entry.client.js +51 -15
- package/dist/app/entry.client.js.map +1 -1
- package/dist/app/entry.server.d.ts +9 -6
- package/dist/app/entry.server.js +14 -10
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/env.d.ts +33 -0
- package/dist/app/env.js +29 -0
- package/dist/app/env.js.map +1 -0
- package/dist/app/main.d.ts +2 -2
- package/dist/app/main.js +41 -35
- package/dist/app/main.js.map +1 -1
- package/dist/app/sentry.d.ts +3 -0
- package/dist/app/sentry.js +19 -0
- package/dist/app/sentry.js.map +1 -0
- package/dist/app/standalone.js +1 -2
- package/dist/app/standalone.js.map +1 -1
- package/dist/cli/build/handler.d.ts +1 -3
- package/dist/cli/build/handler.js +9 -1
- package/dist/cli/build/handler.js.map +1 -1
- package/dist/cli/cli.js +17 -3
- package/dist/cli/cli.js.map +1 -1
- package/dist/cli/cmds/build.d.ts +11 -3
- package/dist/cli/cmds/build.js +21 -13
- package/dist/cli/cmds/build.js.map +1 -1
- package/dist/cli/cmds/dev.d.ts +1 -1
- package/dist/cli/cmds/dev.js +5 -0
- package/dist/cli/cmds/dev.js.map +1 -1
- package/dist/cli/cmds/preview.d.ts +16 -0
- package/dist/cli/cmds/preview.js +25 -0
- package/dist/cli/cmds/preview.js.map +1 -0
- package/dist/cli/common/logger.js +9 -0
- package/dist/cli/common/logger.js.map +1 -1
- package/dist/cli/common/machine-id/lib.js +1 -0
- package/dist/cli/common/machine-id/lib.js.map +1 -1
- package/dist/cli/common/outdated.js +2 -1
- package/dist/cli/common/outdated.js.map +1 -1
- package/dist/cli/common/output.js.map +1 -1
- package/dist/cli/common/utils/ports.d.ts +1 -1
- package/dist/cli/common/utils/ports.js +16 -15
- package/dist/cli/common/utils/ports.js.map +1 -1
- package/dist/cli/dev/handler.d.ts +1 -0
- package/dist/cli/dev/handler.js +15 -12
- package/dist/cli/dev/handler.js.map +1 -1
- package/dist/cli/preview/handler.d.ts +3 -0
- package/dist/cli/preview/handler.js +35 -0
- package/dist/cli/preview/handler.js.map +1 -0
- package/dist/config/config.d.ts +20 -16
- package/dist/config/file-exists.d.ts +1 -0
- package/dist/config/file-exists.js +5 -0
- package/dist/config/file-exists.js.map +1 -0
- package/dist/config/loader.d.ts +21 -0
- package/dist/config/loader.js +145 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/config/validators/BuildSchema.d.ts +60 -0
- package/dist/config/validators/BuildSchema.js +31 -0
- package/dist/config/validators/BuildSchema.js.map +1 -0
- package/dist/config/validators/InputSidebarSchema.d.ts +46 -30
- package/dist/config/validators/InputSidebarSchema.js +11 -1
- package/dist/config/validators/InputSidebarSchema.js.map +1 -1
- package/dist/config/validators/icon-types.d.ts +1 -0
- package/dist/config/validators/icon-types.js +2 -0
- package/dist/config/validators/icon-types.js.map +1 -0
- package/dist/config/validators/validate.d.ts +4334 -173
- package/dist/config/validators/validate.js +278 -112
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/index.d.ts +7 -3
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/MissingIcon.d.ts +2 -0
- package/dist/lib/MissingIcon.js +7 -0
- package/dist/lib/MissingIcon.js.map +1 -0
- package/dist/lib/authentication/AuthenticationPlugin.d.ts +6 -4
- package/dist/lib/authentication/AuthenticationPlugin.js +4 -1
- package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +4 -5
- package/dist/lib/authentication/components/CallbackHandler.js +6 -2
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.d.ts +1 -1
- package/dist/lib/authentication/components/SignIn.js +5 -2
- package/dist/lib/authentication/components/SignIn.js.map +1 -1
- package/dist/lib/authentication/components/SignOut.js +2 -2
- package/dist/lib/authentication/components/SignOut.js.map +1 -1
- package/dist/lib/authentication/components/SignUp.d.ts +1 -1
- package/dist/lib/authentication/components/SignUp.js +4 -1
- package/dist/lib/authentication/components/SignUp.js.map +1 -1
- package/dist/lib/authentication/hook.d.ts +6 -4
- package/dist/lib/authentication/hook.js +12 -4
- package/dist/lib/authentication/hook.js.map +1 -1
- package/dist/lib/authentication/providers/auth0.d.ts +2 -2
- package/dist/lib/authentication/providers/auth0.js +5 -4
- package/dist/lib/authentication/providers/auth0.js.map +1 -1
- package/dist/lib/authentication/providers/clerk.d.ts +2 -2
- package/dist/lib/authentication/providers/clerk.js +116 -47
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/openid.d.ts +21 -19
- package/dist/lib/authentication/providers/openid.js +62 -69
- package/dist/lib/authentication/providers/openid.js.map +1 -1
- package/dist/lib/authentication/providers/supabase.d.ts +4 -0
- package/dist/lib/authentication/providers/supabase.js +115 -0
- package/dist/lib/authentication/providers/supabase.js.map +1 -0
- package/dist/lib/authentication/state.d.ts +23 -19
- package/dist/lib/authentication/state.js +35 -10
- package/dist/lib/authentication/state.js.map +1 -1
- package/dist/lib/components/AnchorLink.d.ts +2 -2
- package/dist/lib/components/AnchorLink.js +9 -5
- package/dist/lib/components/AnchorLink.js.map +1 -1
- package/dist/lib/components/Autocomplete.d.ts +13 -0
- package/dist/lib/components/Autocomplete.js +47 -0
- package/dist/lib/components/Autocomplete.js.map +1 -0
- package/dist/lib/components/Banner.js +1 -1
- package/dist/lib/components/Banner.js.map +1 -1
- package/dist/lib/components/Bootstrap.d.ts +5 -5
- package/dist/lib/components/Bootstrap.js +14 -13
- package/dist/lib/components/Bootstrap.js.map +1 -1
- package/dist/lib/components/BuildCheck.d.ts +4 -0
- package/dist/lib/components/BuildCheck.js +38 -0
- package/dist/lib/components/BuildCheck.js.map +1 -0
- package/dist/lib/components/ErrorPage.js +1 -1
- package/dist/lib/components/Footer.d.ts +1 -0
- package/dist/lib/components/Footer.js +32 -0
- package/dist/lib/components/Footer.js.map +1 -0
- package/dist/lib/components/Header.js +28 -12
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +5 -5
- package/dist/lib/components/Heading.js +6 -1
- package/dist/lib/components/Heading.js.map +1 -1
- package/dist/lib/components/InlineCode.d.ts +2 -1
- package/dist/lib/components/InlineCode.js +2 -9
- package/dist/lib/components/InlineCode.js.map +1 -1
- package/dist/lib/components/Layout.js +10 -21
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/Main.d.ts +2 -0
- package/dist/lib/components/Main.js +18 -0
- package/dist/lib/components/Main.js.map +1 -0
- package/dist/lib/components/Markdown.d.ts +4 -2
- package/dist/lib/components/Markdown.js +14 -13
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +10 -8
- 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/Pagination.d.ts +11 -0
- package/dist/lib/components/Pagination.js +10 -0
- package/dist/lib/components/Pagination.js.map +1 -0
- package/dist/lib/components/PathRenderer.d.ts +11 -0
- package/dist/lib/components/PathRenderer.js +28 -0
- package/dist/lib/components/PathRenderer.js.map +1 -0
- package/dist/lib/components/ReactMarkdown.d.ts +29 -0
- package/dist/lib/components/ReactMarkdown.js +182 -0
- package/dist/lib/components/ReactMarkdown.js.map +1 -0
- package/dist/lib/components/Search.d.ts +3 -1
- package/dist/lib/components/Search.js +9 -3
- package/dist/lib/components/Search.js.map +1 -1
- package/dist/lib/components/Slot.d.ts +17 -0
- package/dist/lib/components/Slot.js +24 -0
- package/dist/lib/components/Slot.js.map +1 -0
- package/dist/lib/components/Slot.test.js +168 -0
- package/dist/lib/components/Slot.test.js.map +1 -0
- package/dist/lib/components/StatusPage.d.ts +7 -0
- package/dist/lib/components/StatusPage.js +71 -0
- package/dist/lib/components/StatusPage.js.map +1 -0
- package/dist/lib/components/ThemeSwitch.js +10 -5
- package/dist/lib/components/ThemeSwitch.js.map +1 -1
- package/dist/lib/components/TopNavigation.d.ts +3 -3
- package/dist/lib/components/TopNavigation.js +35 -23
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/Zudoku.d.ts +1 -1
- package/dist/lib/components/Zudoku.js +14 -9
- package/dist/lib/components/Zudoku.js.map +1 -1
- package/dist/lib/components/cache.d.ts +13 -0
- package/dist/lib/components/cache.js +20 -0
- package/dist/lib/components/cache.js.map +1 -0
- package/dist/lib/components/context/BypassProtectedRoutesContext.d.ts +1 -0
- package/dist/lib/components/context/BypassProtectedRoutesContext.js +3 -0
- package/dist/lib/components/context/BypassProtectedRoutesContext.js.map +1 -0
- package/dist/lib/components/context/RouterEventsEmitter.d.ts +1 -0
- package/dist/lib/components/context/RouterEventsEmitter.js +17 -0
- package/dist/lib/components/context/RouterEventsEmitter.js.map +1 -0
- package/dist/lib/components/context/SlotProvider.d.ts +26 -0
- package/dist/lib/components/context/SlotProvider.js +83 -0
- package/dist/lib/components/context/SlotProvider.js.map +1 -0
- package/dist/lib/components/context/ViewportAnchorContext.d.ts +2 -4
- package/dist/lib/components/context/ViewportAnchorContext.js +29 -23
- package/dist/lib/components/context/ViewportAnchorContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuContext.d.ts +2 -2
- package/dist/lib/components/context/ZudokuContext.js +20 -8
- package/dist/lib/components/context/ZudokuContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuProvider.js +2 -1
- package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
- package/dist/lib/components/index.d.ts +56 -15
- package/dist/lib/components/index.js +28 -7
- package/dist/lib/components/index.js.map +1 -1
- package/dist/lib/components/navigation/PoweredByZudoku.d.ts +3 -0
- package/dist/lib/components/navigation/PoweredByZudoku.js +7 -0
- package/dist/lib/components/navigation/PoweredByZudoku.js.map +1 -0
- package/dist/lib/components/navigation/Sidebar.d.ts +5 -1
- package/dist/lib/components/navigation/Sidebar.js +4 -8
- package/dist/lib/components/navigation/Sidebar.js.map +1 -1
- package/dist/lib/components/navigation/SidebarBadge.d.ts +6 -3
- package/dist/lib/components/navigation/SidebarBadge.js +13 -11
- package/dist/lib/components/navigation/SidebarBadge.js.map +1 -1
- package/dist/lib/components/navigation/SidebarCategory.d.ts +3 -3
- package/dist/lib/components/navigation/SidebarCategory.js +33 -24
- package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
- package/dist/lib/components/navigation/SidebarItem.d.ts +2 -8
- package/dist/lib/components/navigation/SidebarItem.js +30 -33
- package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
- package/dist/lib/components/navigation/SidebarWrapper.d.ts +7 -6
- package/dist/lib/components/navigation/SidebarWrapper.js +18 -3
- package/dist/lib/components/navigation/SidebarWrapper.js.map +1 -1
- package/dist/lib/{plugins/markdown → components/navigation}/Toc.js +6 -8
- package/dist/lib/components/navigation/Toc.js.map +1 -0
- package/dist/lib/components/navigation/ZudokuLogo.d.ts +6 -0
- package/dist/lib/components/navigation/ZudokuLogo.js +5 -0
- package/dist/lib/components/navigation/ZudokuLogo.js.map +1 -0
- package/dist/lib/components/navigation/ZuploLogo.d.ts +3 -0
- package/dist/lib/components/navigation/ZuploLogo.js +4 -0
- package/dist/lib/components/navigation/ZuploLogo.js.map +1 -0
- package/dist/lib/components/navigation/utils.d.ts +8 -0
- package/dist/lib/components/navigation/utils.js +35 -7
- package/dist/lib/components/navigation/utils.js.map +1 -1
- package/dist/lib/core/RouteGuard.d.ts +2 -0
- package/dist/lib/core/RouteGuard.js +52 -0
- package/dist/lib/core/RouteGuard.js.map +1 -0
- package/dist/lib/core/ZudokuContext.d.ts +52 -11
- package/dist/lib/core/ZudokuContext.js +38 -12
- package/dist/lib/core/ZudokuContext.js.map +1 -1
- package/dist/lib/core/plugins.d.ts +25 -8
- package/dist/lib/core/plugins.js +4 -0
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/errors/ErrorAlert.js +6 -1
- package/dist/lib/errors/ErrorAlert.js.map +1 -1
- package/dist/lib/errors/RouterError.js +1 -1
- package/dist/lib/errors/RouterError.js.map +1 -1
- package/dist/lib/hooks/index.d.ts +22 -0
- package/dist/lib/hooks/index.js +16 -0
- package/dist/lib/hooks/index.js.map +1 -0
- package/dist/lib/hooks/useEvent.d.ts +11 -0
- package/dist/lib/hooks/useEvent.js +19 -0
- package/dist/lib/hooks/useEvent.js.map +1 -0
- package/dist/lib/hooks/useEvent.test.js +100 -0
- package/dist/lib/hooks/useEvent.test.js.map +1 -0
- package/dist/lib/icons.d.ts +1 -0
- package/dist/lib/icons.js +1 -0
- package/dist/lib/icons.js.map +1 -1
- package/dist/lib/oas/graphql/circular.d.ts +3 -0
- package/dist/lib/oas/graphql/circular.js +43 -0
- package/dist/lib/oas/graphql/circular.js.map +1 -0
- package/dist/lib/oas/graphql/index.d.ts +25 -1
- package/dist/lib/oas/graphql/index.js +213 -66
- package/dist/lib/oas/graphql/index.js.map +1 -1
- package/dist/lib/oas/parser/dereference/index.js +8 -3
- package/dist/lib/oas/parser/dereference/index.js.map +1 -1
- package/dist/lib/oas/parser/index.d.ts +8 -3
- package/dist/lib/oas/parser/index.js +7 -23
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/oas/parser/upgrade/index.d.ts +3 -2
- package/dist/lib/oas/parser/upgrade/index.js +83 -33
- package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
- package/dist/lib/plugins/api-catalog/Catalog.d.ts +4 -0
- package/dist/lib/plugins/api-catalog/Catalog.js +26 -0
- package/dist/lib/plugins/api-catalog/Catalog.js.map +1 -0
- package/dist/lib/plugins/api-catalog/index.d.ts +31 -0
- package/dist/lib/plugins/api-catalog/index.js +46 -0
- package/dist/lib/plugins/api-catalog/index.js.map +1 -0
- package/dist/lib/plugins/api-keys/CreateApiKey.d.ts +3 -2
- package/dist/lib/plugins/api-keys/CreateApiKey.js +15 -7
- package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js +1 -1
- package/dist/lib/plugins/api-keys/ProtectedRoute.js.map +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.d.ts +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js +153 -27
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +21 -11
- package/dist/lib/plugins/api-keys/index.js +49 -30
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/custom-pages/index.d.ts +1 -1
- package/dist/lib/plugins/markdown/MdxPage.d.ts +10 -2
- package/dist/lib/plugins/markdown/MdxPage.js +17 -4
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/index.d.ts +3 -1
- package/dist/lib/plugins/markdown/index.js +1 -1
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/markdown/resolver.d.ts +1 -7
- package/dist/lib/plugins/markdown/resolver.js +0 -29
- package/dist/lib/plugins/markdown/resolver.js.map +1 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.js +2 -1
- package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -1
- package/dist/lib/plugins/openapi/ColorizedParam.d.ts +10 -2
- package/dist/lib/plugins/openapi/ColorizedParam.js +19 -8
- package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
- package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -1
- package/dist/lib/plugins/openapi/Endpoint.js +8 -7
- package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
- package/dist/lib/plugins/openapi/OasProvider.d.ts +8 -0
- package/dist/lib/plugins/openapi/OasProvider.js +29 -0
- package/dist/lib/plugins/openapi/OasProvider.js.map +1 -0
- package/dist/lib/plugins/openapi/OperationList.d.ts +5 -2
- package/dist/lib/plugins/openapi/OperationList.js +92 -11
- package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
- package/dist/lib/plugins/openapi/OperationListItem.d.ts +5 -3
- package/dist/lib/plugins/openapi/OperationListItem.js +12 -6
- package/dist/lib/plugins/openapi/OperationListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/ParamInfos.d.ts +6 -0
- package/dist/lib/plugins/openapi/ParamInfos.js +45 -0
- package/dist/lib/plugins/openapi/ParamInfos.js.map +1 -0
- package/dist/lib/plugins/openapi/ParameterList.d.ts +2 -1
- package/dist/lib/plugins/openapi/ParameterList.js +3 -2
- package/dist/lib/plugins/openapi/ParameterList.js.map +1 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js +16 -3
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +4 -2
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +17 -4
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js.map +1 -1
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.d.ts +3 -4
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +5 -13
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.d.ts +2 -4
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +4 -13
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/SchemaList.d.ts +1 -0
- package/dist/lib/plugins/openapi/SchemaList.js +53 -0
- package/dist/lib/plugins/openapi/SchemaList.js.map +1 -0
- package/dist/lib/plugins/openapi/Sidecar.js +60 -93
- 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 -0
- package/dist/lib/plugins/openapi/SidecarExamples.js +76 -0
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -0
- package/dist/lib/plugins/openapi/SimpleSelect.js +1 -1
- package/dist/lib/plugins/openapi/SimpleSelect.js.map +1 -1
- package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +2 -2
- package/dist/lib/plugins/openapi/client/GraphQLClient.js +23 -82
- package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -1
- package/dist/lib/plugins/openapi/client/createServer.d.ts +2 -1
- package/dist/lib/plugins/openapi/client/createServer.js +5 -2
- package/dist/lib/plugins/openapi/client/createServer.js.map +1 -1
- package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +11 -2
- package/dist/lib/plugins/openapi/client/useCreateQuery.js +14 -7
- package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -1
- package/dist/lib/plugins/openapi/components/ConstValue.d.ts +5 -0
- package/dist/lib/plugins/openapi/components/ConstValue.js +6 -0
- package/dist/lib/plugins/openapi/components/ConstValue.js.map +1 -0
- package/dist/lib/plugins/openapi/components/EnumValues.d.ts +5 -0
- package/dist/lib/plugins/openapi/components/EnumValues.js +15 -0
- package/dist/lib/plugins/openapi/components/EnumValues.js.map +1 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.d.ts +12 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.js +21 -0
- package/dist/lib/plugins/openapi/components/ResponseContent.js.map +1 -0
- package/dist/lib/plugins/openapi/components/SelectOnClick.d.ts +5 -0
- package/dist/lib/plugins/openapi/components/SelectOnClick.js +16 -0
- package/dist/lib/plugins/openapi/components/SelectOnClick.js.map +1 -0
- package/dist/lib/plugins/openapi/context.d.ts +3 -3
- package/dist/lib/plugins/openapi/graphql/gql.d.ts +11 -3
- package/dist/lib/plugins/openapi/graphql/gql.js +5 -14
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +113 -21
- package/dist/lib/plugins/openapi/graphql/graphql.js +55 -11
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +10 -7
- package/dist/lib/plugins/openapi/index.js +65 -82
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +57 -3
- package/dist/lib/plugins/openapi/playground/BodyPanel.d.ts +5 -0
- package/dist/lib/plugins/openapi/playground/BodyPanel.js +22 -0
- package/dist/lib/plugins/openapi/playground/BodyPanel.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.d.ts +6 -0
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +9 -0
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/Headers.d.ts +4 -4
- package/dist/lib/plugins/openapi/playground/Headers.js +84 -5
- package/dist/lib/plugins/openapi/playground/Headers.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/IdentityDialog.d.ts +11 -0
- package/dist/lib/plugins/openapi/playground/IdentityDialog.js +14 -0
- package/dist/lib/plugins/openapi/playground/IdentityDialog.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/IdentitySelector.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/IdentitySelector.js +8 -0
- package/dist/lib/plugins/openapi/playground/IdentitySelector.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/ParamsGrid.d.ts +9 -0
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js +5 -0
- package/dist/lib/plugins/openapi/playground/ParamsGrid.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/PathParams.d.ts +3 -2
- package/dist/lib/plugins/openapi/playground/PathParams.js +5 -7
- package/dist/lib/plugins/openapi/playground/PathParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/Playground.d.ts +32 -2
- package/dist/lib/plugins/openapi/playground/Playground.js +147 -78
- 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 +1 -1
- package/dist/lib/plugins/openapi/playground/QueryParams.js +24 -18
- package/dist/lib/plugins/openapi/playground/QueryParams.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.js +8 -0
- package/dist/lib/plugins/openapi/playground/RequestLoginDialog.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/rememberedIdentity.d.ts +17 -0
- package/dist/lib/plugins/openapi/playground/rememberedIdentity.js +11 -0
- package/dist/lib/plugins/openapi/playground/rememberedIdentity.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js +11 -0
- package/dist/lib/plugins/openapi/playground/result-panel/RequestTab.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.d.ts +11 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +110 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.d.ts +9 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js +17 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResultPanel.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.d.ts +10 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js +32 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js +56 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js.map +1 -0
- 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/processors/removeExtensions.d.ts +8 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.js +16 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.js +194 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.d.ts +12 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.js +66 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js +159 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.d.ts +13 -0
- package/dist/lib/plugins/openapi/processors/removePaths.js +33 -0
- package/dist/lib/plugins/openapi/processors/removePaths.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.test.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.test.js +144 -0
- package/dist/lib/plugins/openapi/processors/removePaths.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/traverse.d.ts +1 -0
- package/dist/lib/plugins/openapi/processors/traverse.js +2 -0
- package/dist/lib/plugins/openapi/processors/traverse.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.d.ts +1 -2
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js +2 -2
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.d.ts +2 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js +2 -2
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.d.ts +0 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js +1 -1
- package/dist/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.d.ts +4 -0
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js +15 -0
- package/dist/lib/plugins/openapi/schema/SchemaExampleAndDefault.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/{SchemaComponents.d.ts → SchemaPropertyItem.d.ts} +2 -4
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js +45 -0
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +2 -2
- package/dist/lib/plugins/openapi/schema/SchemaView.js +38 -50
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/utils.d.ts +8 -1
- package/dist/lib/plugins/openapi/schema/utils.js +15 -4
- package/dist/lib/plugins/openapi/schema/utils.js.map +1 -1
- package/dist/lib/plugins/openapi/state.d.ts +25 -0
- package/dist/lib/plugins/openapi/state.js +18 -0
- package/dist/lib/plugins/openapi/state.js.map +1 -0
- 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/createSidebarCategory.d.ts +9 -0
- package/dist/lib/plugins/openapi/util/createSidebarCategory.js +23 -0
- package/dist/lib/plugins/openapi/util/createSidebarCategory.js.map +1 -0
- package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +1 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +62 -10
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
- package/dist/lib/plugins/openapi/util/getRoutes.d.ts +10 -0
- package/dist/lib/plugins/openapi/util/getRoutes.js +117 -0
- package/dist/lib/plugins/openapi/util/getRoutes.js.map +1 -0
- package/dist/lib/plugins/openapi/util/methodColorMap.d.ts +2 -0
- package/dist/lib/plugins/openapi/util/methodColorMap.js +10 -0
- package/dist/lib/plugins/openapi/util/methodColorMap.js.map +1 -0
- package/dist/lib/plugins/openapi/util/methodToColor.d.ts +20 -0
- package/dist/lib/plugins/openapi/util/methodToColor.js +24 -0
- package/dist/lib/plugins/openapi/util/methodToColor.js.map +1 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.d.ts +1 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js +27 -0
- package/dist/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.js.map +1 -0
- package/dist/lib/plugins/redirect/index.d.ts +1 -1
- package/dist/lib/plugins/redirect/index.js +1 -1
- package/dist/lib/plugins/redirect/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/index.d.ts +22 -3
- package/dist/lib/plugins/search-inkeep/index.js +41 -5
- package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/inkeep.d.ts +3 -4
- package/dist/lib/plugins/search-inkeep/inkeep.js.map +1 -1
- package/dist/lib/plugins/search-pagefind/PagefindSearch.d.ts +6 -0
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js +80 -0
- package/dist/lib/plugins/search-pagefind/PagefindSearch.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/ResultList.d.ts +8 -0
- package/dist/lib/plugins/search-pagefind/ResultList.js +32 -0
- package/dist/lib/plugins/search-pagefind/ResultList.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/get-results.d.ts +10 -0
- package/dist/lib/plugins/search-pagefind/get-results.js +42 -0
- package/dist/lib/plugins/search-pagefind/get-results.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/index.d.ts +6 -0
- package/dist/lib/plugins/search-pagefind/index.js +9 -0
- package/dist/lib/plugins/search-pagefind/index.js.map +1 -0
- package/dist/lib/plugins/search-pagefind/types.d.ts +85 -0
- package/dist/lib/plugins/search-pagefind/types.js +2 -0
- package/dist/lib/plugins/search-pagefind/types.js.map +1 -0
- package/dist/lib/shiki.d.ts +31 -0
- package/dist/lib/shiki.js +101 -0
- package/dist/lib/shiki.js.map +1 -0
- package/dist/lib/ui/Badge.d.ts +2 -2
- package/dist/lib/ui/Badge.js +2 -1
- package/dist/lib/ui/Badge.js.map +1 -1
- package/dist/lib/ui/Button.d.ts +3 -3
- package/dist/lib/ui/Button.js +9 -6
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/Callout.d.ts +2 -1
- package/dist/lib/ui/Callout.js +3 -2
- package/dist/lib/ui/Callout.js.map +1 -1
- package/dist/lib/ui/Card.js +1 -1
- package/dist/lib/ui/Card.js.map +1 -1
- package/dist/lib/ui/Checkbox.js +1 -1
- package/dist/lib/ui/Checkbox.js.map +1 -1
- package/dist/lib/ui/CodeBlock.d.ts +16 -0
- package/dist/lib/ui/CodeBlock.js +18 -0
- package/dist/lib/ui/CodeBlock.js.map +1 -0
- package/dist/lib/ui/Command.d.ts +16 -2
- package/dist/lib/ui/Command.js +9 -5
- package/dist/lib/ui/Command.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/DropdownMenu.js +4 -4
- package/dist/lib/ui/DropdownMenu.js.map +1 -1
- package/dist/lib/ui/Form.d.ts +1 -1
- package/dist/lib/ui/HoverCard.js +1 -1
- package/dist/lib/ui/HoverCard.js.map +1 -1
- package/dist/lib/ui/Input.d.ts +1 -2
- package/dist/lib/ui/Input.js +1 -1
- package/dist/lib/ui/Input.js.map +1 -1
- package/dist/lib/ui/Popover.js +1 -1
- package/dist/lib/ui/Popover.js.map +1 -1
- package/dist/lib/ui/RadioGroup.js +1 -1
- package/dist/lib/ui/RadioGroup.js.map +1 -1
- package/dist/lib/ui/Select.js +4 -4
- package/dist/lib/ui/Select.js.map +1 -1
- package/dist/lib/ui/Slider.js +1 -1
- package/dist/lib/ui/Slider.js.map +1 -1
- package/dist/lib/ui/Stepper.d.ts +3 -0
- package/dist/lib/ui/Stepper.js +7 -0
- package/dist/lib/ui/Stepper.js.map +1 -0
- package/dist/lib/ui/Switch.js +1 -1
- package/dist/lib/ui/Switch.js.map +1 -1
- package/dist/lib/ui/SyntaxHighlight.d.ts +10 -0
- package/dist/lib/ui/SyntaxHighlight.js +14 -0
- package/dist/lib/ui/SyntaxHighlight.js.map +1 -0
- package/dist/lib/ui/Tabs.js +2 -2
- package/dist/lib/ui/Tabs.js.map +1 -1
- package/dist/lib/ui/Textarea.js +1 -1
- package/dist/lib/ui/Textarea.js.map +1 -1
- package/dist/lib/ui/Toggle.js +1 -1
- package/dist/lib/ui/Toggle.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/ui/util.d.ts +2 -0
- package/dist/lib/ui/util.js +3 -0
- package/dist/lib/ui/util.js.map +1 -0
- package/dist/lib/util/MdxComponents.d.ts +29 -20
- package/dist/lib/util/MdxComponents.js +17 -15
- package/dist/lib/util/MdxComponents.js.map +1 -1
- package/dist/lib/util/createVariantComponent.d.ts +2 -2
- package/dist/lib/util/detectOS.d.ts +1 -0
- package/dist/lib/util/detectOS.js +11 -0
- package/dist/lib/util/detectOS.js.map +1 -0
- package/dist/lib/util/ensureArray.d.ts +1 -0
- package/dist/lib/util/ensureArray.js +2 -0
- package/dist/lib/util/ensureArray.js.map +1 -0
- 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/joinPath.d.ts +3 -0
- package/dist/lib/util/joinPath.js +3 -0
- package/dist/lib/util/joinPath.js.map +1 -1
- package/dist/lib/util/joinUrl.d.ts +1 -0
- package/dist/lib/util/joinUrl.js +40 -0
- package/dist/lib/util/joinUrl.js.map +1 -0
- package/dist/lib/util/joinUrl.test.d.ts +1 -0
- package/dist/lib/util/joinUrl.test.js +43 -0
- package/dist/lib/util/joinUrl.test.js.map +1 -0
- package/dist/lib/util/scrollIntoViewIfNeeded.d.ts +1 -0
- package/dist/lib/util/scrollIntoViewIfNeeded.js +14 -0
- package/dist/lib/util/scrollIntoViewIfNeeded.js.map +1 -0
- package/dist/lib/util/traverse.d.ts +3 -0
- package/dist/lib/util/traverse.js +23 -0
- package/dist/lib/util/traverse.js.map +1 -0
- package/dist/lib/util/types.d.ts +7 -0
- package/dist/lib/util/types.js +2 -0
- package/dist/lib/util/types.js.map +1 -0
- package/dist/lib/util/url.d.ts +4 -0
- package/dist/lib/util/url.js +13 -0
- package/dist/lib/util/url.js.map +1 -0
- package/dist/lib/util/url.test.d.ts +1 -0
- package/dist/lib/util/url.test.js +26 -0
- package/dist/lib/util/url.test.js.map +1 -0
- package/dist/lib/util/useExposedProps.d.ts +8 -1
- package/dist/lib/util/useExposedProps.js +1 -1
- package/dist/lib/util/useExposedProps.js.map +1 -1
- package/dist/lib/util/useLatest.d.ts +1 -0
- package/dist/lib/util/useLatest.js +15 -0
- package/dist/lib/util/useLatest.js.map +1 -0
- package/dist/lib/util/useOnScreen.d.ts +3 -2
- package/dist/lib/util/useOnScreen.js +3 -3
- package/dist/lib/util/useOnScreen.js.map +1 -1
- package/dist/lib/util/useScrollToAnchor.d.ts +1 -0
- package/dist/lib/util/useScrollToAnchor.js +42 -37
- package/dist/lib/util/useScrollToAnchor.js.map +1 -1
- package/dist/lib/util/useScrollToTop.js +7 -5
- package/dist/lib/util/useScrollToTop.js.map +1 -1
- package/dist/vite/api/SchemaManager.d.ts +36 -0
- package/dist/vite/api/SchemaManager.js +137 -0
- package/dist/vite/api/SchemaManager.js.map +1 -0
- package/dist/vite/api/SchemaManager.test.d.ts +1 -0
- package/dist/vite/api/SchemaManager.test.js +106 -0
- package/dist/vite/api/SchemaManager.test.js.map +1 -0
- package/dist/vite/api/schema-codegen.d.ts +12 -0
- package/dist/vite/api/schema-codegen.js +85 -0
- package/dist/vite/api/schema-codegen.js.map +1 -0
- package/dist/vite/api/schema-codegen.test.d.ts +1 -0
- package/dist/vite/api/schema-codegen.test.js +313 -0
- package/dist/vite/api/schema-codegen.test.js.map +1 -0
- package/dist/vite/build.js +82 -18
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.d.ts +2 -10
- package/dist/vite/config.js +105 -111
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/config.test.js +12 -6
- package/dist/vite/config.test.js.map +1 -1
- package/dist/vite/create-pagefind-index.d.ts +4 -0
- package/dist/vite/create-pagefind-index.js +12 -0
- package/dist/vite/create-pagefind-index.js.map +1 -0
- package/dist/vite/css/collect.d.ts +2 -0
- package/dist/vite/css/collect.js +27 -0
- package/dist/vite/css/collect.js.map +1 -0
- package/dist/vite/css/plugin.d.ts +4 -0
- package/dist/vite/css/plugin.js +80 -0
- package/dist/vite/css/plugin.js.map +1 -0
- package/dist/vite/dev-server.d.ts +5 -3
- package/dist/vite/dev-server.js +73 -22
- package/dist/vite/dev-server.js.map +1 -1
- package/dist/vite/error-handler.d.ts +1 -1
- package/dist/vite/error-handler.js +1 -1
- package/dist/vite/error-handler.js.map +1 -1
- package/dist/vite/html.d.ts +7 -3
- package/dist/vite/html.js +15 -9
- package/dist/vite/html.js.map +1 -1
- package/dist/vite/output.d.ts +15 -3
- package/dist/vite/output.js +41 -14
- package/dist/vite/output.js.map +1 -1
- package/dist/vite/plugin-api-keys.d.ts +1 -2
- package/dist/vite/plugin-api-keys.js +13 -7
- package/dist/vite/plugin-api-keys.js.map +1 -1
- package/dist/vite/plugin-api.d.ts +1 -2
- package/dist/vite/plugin-api.js +146 -32
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-auth.d.ts +1 -2
- package/dist/vite/plugin-auth.js +10 -6
- package/dist/vite/plugin-auth.js.map +1 -1
- package/dist/vite/plugin-component.d.ts +1 -2
- package/dist/vite/plugin-component.js +23 -22
- package/dist/vite/plugin-component.js.map +1 -1
- package/dist/vite/plugin-config-reload.d.ts +3 -4
- package/dist/vite/plugin-config-reload.js +29 -23
- package/dist/vite/plugin-config-reload.js.map +1 -1
- package/dist/vite/plugin-config.d.ts +1 -2
- package/dist/vite/plugin-config.js +27 -2
- package/dist/vite/plugin-config.js.map +1 -1
- package/dist/vite/plugin-configure-tailwind.d.ts +2 -0
- package/dist/vite/plugin-configure-tailwind.js +38 -0
- package/dist/vite/plugin-configure-tailwind.js.map +1 -0
- package/dist/vite/plugin-custom-pages.d.ts +1 -2
- package/dist/vite/plugin-custom-pages.js +6 -5
- package/dist/vite/plugin-custom-pages.js.map +1 -1
- package/dist/vite/plugin-docs.d.ts +2 -3
- package/dist/vite/plugin-docs.js +26 -8
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-frontmatter.d.ts +1 -2
- package/dist/vite/plugin-frontmatter.js +8 -6
- package/dist/vite/plugin-frontmatter.js.map +1 -1
- package/dist/vite/plugin-mdx.d.ts +1 -2
- package/dist/vite/plugin-mdx.js +89 -23
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-redirect.d.ts +1 -2
- package/dist/vite/plugin-redirect.js +6 -5
- package/dist/vite/plugin-redirect.js.map +1 -1
- package/dist/vite/plugin-search.d.ts +1 -2
- package/dist/vite/plugin-search.js +8 -3
- package/dist/vite/plugin-search.js.map +1 -1
- package/dist/vite/plugin-shiki-register.d.ts +2 -0
- package/dist/vite/plugin-shiki-register.js +39 -0
- package/dist/vite/plugin-shiki-register.js.map +1 -0
- package/dist/vite/plugin-sidebar.d.ts +4 -3
- package/dist/vite/plugin-sidebar.js +24 -8
- package/dist/vite/plugin-sidebar.js.map +1 -1
- package/dist/vite/{plugin-custom-css.d.ts → plugin-theme-css.d.ts} +2 -3
- package/dist/vite/{plugin-custom-css.js → plugin-theme-css.js} +29 -7
- package/dist/vite/plugin-theme-css.js.map +1 -0
- package/dist/vite/plugin.d.ts +1 -3
- package/dist/vite/plugin.js +25 -18
- package/dist/vite/plugin.js.map +1 -1
- package/dist/vite/prerender/FileWritingResponse.d.ts +25 -0
- package/dist/vite/prerender/FileWritingResponse.js +51 -0
- package/dist/vite/prerender/FileWritingResponse.js.map +1 -0
- package/dist/vite/prerender/InMemoryResponse.d.ts +16 -0
- package/dist/vite/prerender/InMemoryResponse.js +32 -0
- package/dist/vite/prerender/InMemoryResponse.js.map +1 -0
- package/dist/vite/prerender/PrerenderResponse.d.ts +10 -0
- package/dist/vite/prerender/PrerenderResponse.js +2 -0
- package/dist/vite/prerender/PrerenderResponse.js.map +1 -0
- package/dist/vite/prerender/prerender.d.ts +15 -0
- package/dist/vite/prerender/prerender.js +109 -0
- package/dist/vite/prerender/prerender.js.map +1 -0
- package/dist/vite/prerender/worker.d.ts +13 -0
- package/dist/vite/prerender/worker.js +59 -0
- package/dist/vite/prerender/worker.js.map +1 -0
- package/dist/vite/remarkStaticGeneration.js +5 -5
- package/dist/vite/remarkStaticGeneration.js.map +1 -1
- package/dist/vite/reporter.d.ts +3 -0
- package/dist/vite/reporter.js +33 -0
- package/dist/vite/reporter.js.map +1 -0
- package/dist/vite/sitemap.d.ts +1 -1
- package/dist/vite/sitemap.js +2 -1
- package/dist/vite/sitemap.js.map +1 -1
- package/dist/zuplo/enrich-with-zuplo.d.ts +5 -0
- package/dist/zuplo/enrich-with-zuplo.js +185 -0
- package/dist/zuplo/enrich-with-zuplo.js.map +1 -0
- package/dist/zuplo/policy-types.d.ts +33 -0
- package/dist/zuplo/policy-types.js +8 -0
- package/dist/zuplo/policy-types.js.map +1 -0
- package/dist/zuplo/with-zuplo-processors.d.ts +3 -0
- package/dist/zuplo/with-zuplo-processors.js +26 -0
- package/dist/zuplo/with-zuplo-processors.js.map +1 -0
- package/dist/zuplo/with-zuplo.d.ts +6 -0
- package/dist/zuplo/with-zuplo.js +10 -0
- package/dist/zuplo/with-zuplo.js.map +1 -0
- package/lib/Button-BE9IVkWV.js +51 -0
- package/lib/Button-BE9IVkWV.js.map +1 -0
- package/lib/Callout-CoVxYafP.js +231 -0
- package/lib/Callout-CoVxYafP.js.map +1 -0
- package/lib/Card-DPhGbYUM.js +61 -0
- package/lib/Card-DPhGbYUM.js.map +1 -0
- package/lib/{CategoryHeading-Bb9dqxD3.js → CategoryHeading-Cu2RwgjC.js} +3 -3
- package/lib/{CategoryHeading-Bb9dqxD3.js.map → CategoryHeading-Cu2RwgjC.js.map} +1 -1
- package/lib/ClientOnly-E7hGysn1.js.map +1 -1
- package/lib/Dialog-BxpuVLh9.js +99 -0
- package/lib/Dialog-BxpuVLh9.js.map +1 -0
- package/lib/Drawer-BzkOKwgC.js +1133 -0
- package/lib/Drawer-BzkOKwgC.js.map +1 -0
- package/lib/{Markdown-BorQdbxW.js → Markdown-Cm4kj26S.js} +6073 -5916
- package/lib/Markdown-Cm4kj26S.js.map +1 -0
- package/lib/MdxPage-fDGQtB5w.js +84 -0
- package/lib/MdxPage-fDGQtB5w.js.map +1 -0
- package/lib/OasProvider-CFBvfR3r.js +33 -0
- package/lib/OasProvider-CFBvfR3r.js.map +1 -0
- package/lib/OperationList-Xs4KWmsh.js +5153 -0
- package/lib/OperationList-Xs4KWmsh.js.map +1 -0
- package/lib/Pagination-CCxhL836.js +36 -0
- package/lib/Pagination-CCxhL836.js.map +1 -0
- package/lib/RouteGuard-CZ_uLv3g.js +55 -0
- package/lib/RouteGuard-CZ_uLv3g.js.map +1 -0
- package/lib/SchemaList-BWaNlmUJ.js +160 -0
- package/lib/SchemaList-BWaNlmUJ.js.map +1 -0
- package/lib/SchemaView-DdKJt2ln.js +375 -0
- package/lib/SchemaView-DdKJt2ln.js.map +1 -0
- package/lib/SignUp-B-1Pvc-8.js +63 -0
- package/lib/SignUp-B-1Pvc-8.js.map +1 -0
- package/lib/Slot-B99cbD-q.js +160 -0
- package/lib/Slot-B99cbD-q.js.map +1 -0
- package/lib/{Spinner-3cQDBVGr.js → Spinner-mNLZ6awP.js} +2 -2
- package/lib/{Spinner-3cQDBVGr.js.map → Spinner-mNLZ6awP.js.map} +1 -1
- package/lib/SyntaxHighlight-Cz6Me7-F.js +10279 -0
- package/lib/SyntaxHighlight-Cz6Me7-F.js.map +1 -0
- package/lib/Toc-Qe7A4uj_.js +92 -0
- package/lib/Toc-Qe7A4uj_.js.map +1 -0
- package/lib/chunk-DQRVZFIR-BblmKnHy.js +1839 -0
- package/lib/chunk-DQRVZFIR-BblmKnHy.js.map +1 -0
- package/lib/circular-w5eL5J8a.js +14934 -0
- package/lib/circular-w5eL5J8a.js.map +1 -0
- package/lib/clsx-OuTLNxxd.js +17 -0
- package/lib/clsx-OuTLNxxd.js.map +1 -0
- package/lib/{cn-BmFQLtkS.js → cn-wvCW-ho6.js} +1016 -564
- package/lib/cn-wvCW-ho6.js.map +1 -0
- package/lib/createServer-p3yUA8Bu.js +12649 -0
- package/lib/createServer-p3yUA8Bu.js.map +1 -0
- package/lib/hook-k7PfUIsj.js +1465 -0
- package/lib/hook-k7PfUIsj.js.map +1 -0
- package/lib/index--oeBayMa.js +86 -0
- package/lib/index--oeBayMa.js.map +1 -0
- package/lib/{index-LNp6rxyU.js → index-BvvmIczU.js} +2 -2
- package/lib/{index-LNp6rxyU.js.map → index-BvvmIczU.js.map} +1 -1
- package/lib/index-CrcNWbel.js +316 -0
- package/lib/index-CrcNWbel.js.map +1 -0
- package/lib/index-DI5SPFK9.js +36 -0
- package/lib/index-DI5SPFK9.js.map +1 -0
- package/lib/index-QzXzw_ra.js +24 -0
- package/lib/index-QzXzw_ra.js.map +1 -0
- package/lib/index-yqBxBqxF.js +3226 -0
- package/lib/index-yqBxBqxF.js.map +1 -0
- package/lib/{assets/index-B_Jk_Yzp.js → index-zddirpDj.js} +727 -725
- package/lib/index-zddirpDj.js.map +1 -0
- package/lib/index.esm-BFcSKCe-.js +683 -0
- package/lib/index.esm-BFcSKCe-.js.map +1 -0
- package/lib/index.esm-Cp4wkyud.js +1236 -0
- package/lib/index.esm-Cp4wkyud.js.map +1 -0
- package/lib/invariant-DAFpPywt.js +48 -0
- package/lib/{invariant-Caa8-XvF.js.map → invariant-DAFpPywt.js.map} +1 -1
- package/lib/joinPath-B7kNnUX4.js +8 -0
- package/lib/joinPath-B7kNnUX4.js.map +1 -0
- package/lib/jsx-runtime-C5mzlN2N.js +285 -0
- package/lib/jsx-runtime-C5mzlN2N.js.map +1 -0
- package/lib/mutation-BSeQ8pEK.js +196 -0
- package/lib/mutation-BSeQ8pEK.js.map +1 -0
- package/lib/objectEntries-yMIkr2mI.js +5 -0
- package/lib/objectEntries-yMIkr2mI.js.map +1 -0
- package/lib/processors/removeExtensions.js +11 -0
- package/lib/processors/removeExtensions.js.map +1 -0
- package/lib/processors/removeParameters.js +47 -0
- package/lib/processors/removeParameters.js.map +1 -0
- package/lib/processors/removePaths.js +28 -0
- package/lib/processors/removePaths.js.map +1 -0
- package/lib/processors/traverse.js +17 -0
- package/lib/processors/traverse.js.map +1 -0
- package/lib/react-nprogress.esm-C2MPXjiJ.js +389 -0
- package/lib/react-nprogress.esm-C2MPXjiJ.js.map +1 -0
- package/lib/ui/Accordion.js +2 -2
- package/lib/ui/Accordion.js.map +1 -1
- package/lib/ui/ActionButton.js +4 -4
- package/lib/ui/ActionButton.js.map +1 -1
- package/lib/ui/Alert.js +3 -3
- package/lib/ui/Alert.js.map +1 -1
- package/lib/ui/AlertDialog.js +2 -2
- package/lib/ui/AlertDialog.js.map +1 -1
- package/lib/ui/Badge.js +5 -4
- package/lib/ui/Badge.js.map +1 -1
- package/lib/ui/Breadcrumb.js +5 -5
- package/lib/ui/Breadcrumb.js.map +1 -1
- package/lib/ui/Button.js +22 -19
- package/lib/ui/Button.js.map +1 -1
- package/lib/ui/Callout.js +40 -20
- package/lib/ui/Callout.js.map +1 -1
- package/lib/ui/Card.js +3 -3
- package/lib/ui/Card.js.map +1 -1
- package/lib/ui/Carousel.js +552 -546
- package/lib/ui/Carousel.js.map +1 -1
- package/lib/ui/Checkbox.js +14 -13
- package/lib/ui/Checkbox.js.map +1 -1
- package/lib/ui/CodeBlock.js +84 -0
- package/lib/ui/CodeBlock.js.map +1 -0
- package/lib/ui/Command.js +116 -510
- package/lib/ui/Command.js.map +1 -1
- package/lib/ui/Dialog.js +27 -27
- package/lib/ui/Dialog.js.map +1 -1
- package/lib/ui/Drawer.js +14 -1150
- package/lib/ui/Drawer.js.map +1 -1
- package/lib/ui/DropdownMenu.js +35 -35
- package/lib/ui/DropdownMenu.js.map +1 -1
- package/lib/ui/Form.js +6 -6
- package/lib/ui/Form.js.map +1 -1
- package/lib/ui/HoverCard.js +6 -6
- package/lib/ui/HoverCard.js.map +1 -1
- package/lib/ui/Input.js +3 -3
- package/lib/ui/Input.js.map +1 -1
- package/lib/ui/Label.js +3 -3
- package/lib/ui/Pagination.js +5 -5
- package/lib/ui/Pagination.js.map +1 -1
- package/lib/ui/Popover.js +3 -3
- package/lib/ui/Popover.js.map +1 -1
- package/lib/ui/Progress.js +2 -2
- package/lib/ui/Progress.js.map +1 -1
- package/lib/ui/RadioGroup.js +11 -11
- package/lib/ui/RadioGroup.js.map +1 -1
- package/lib/ui/ScrollArea.js +2 -2
- package/lib/ui/ScrollArea.js.map +1 -1
- package/lib/ui/Select.js +34 -34
- package/lib/ui/Select.js.map +1 -1
- package/lib/ui/Skeleton.js +2 -2
- package/lib/ui/Skeleton.js.map +1 -1
- package/lib/ui/Slider.js +6 -6
- package/lib/ui/Slider.js.map +1 -1
- package/lib/ui/Stepper.js +6 -0
- package/lib/ui/Stepper.js.map +1 -0
- package/lib/ui/Switch.js +6 -6
- package/lib/ui/Switch.js.map +1 -1
- package/lib/ui/SyntaxHighlight.js +10 -0
- package/lib/ui/SyntaxHighlight.js.map +1 -0
- package/lib/ui/Tabs.js +17 -17
- package/lib/ui/Tabs.js.map +1 -1
- package/lib/ui/Textarea.js +6 -6
- package/lib/ui/Textarea.js.map +1 -1
- package/lib/ui/Toggle.js +8 -8
- package/lib/ui/Toggle.js.map +1 -1
- package/lib/ui/ToggleGroup.js +2 -2
- package/lib/ui/ToggleGroup.js.map +1 -1
- package/lib/ui/Tooltip.js +15 -8
- package/lib/ui/Tooltip.js.map +1 -1
- package/lib/ui/util.js +6 -0
- package/lib/ui/util.js.map +1 -0
- package/lib/useExposedProps-BZQkZneR.js +9 -0
- package/lib/useExposedProps-BZQkZneR.js.map +1 -0
- package/lib/useLatest-hmRS46UF.js +11 -0
- package/lib/useLatest-hmRS46UF.js.map +1 -0
- package/lib/useMutation-CZSmsIGW.js +97 -0
- package/lib/useMutation-CZSmsIGW.js.map +1 -0
- package/lib/zudoku.auth-auth0.js +33 -36
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +115 -58
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +585 -601
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.components.js +4286 -1297
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +28 -0
- package/lib/zudoku.hooks.js.map +1 -0
- package/lib/zudoku.icons.js +10 -0
- package/lib/zudoku.icons.js.map +1 -1
- package/lib/zudoku.plugin-api-catalog.js +117 -0
- package/lib/zudoku.plugin-api-catalog.js.map +1 -0
- package/lib/zudoku.plugin-api-keys.js +520 -206
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +4 -4
- package/lib/zudoku.plugin-custom-pages.js.map +1 -1
- package/lib/zudoku.plugin-markdown.js +27 -50
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +7 -6
- package/lib/zudoku.plugin-openapi.js.map +1 -1
- package/lib/zudoku.plugin-redirect.js +1 -1
- package/lib/zudoku.plugin-redirect.js.map +1 -1
- package/lib/zudoku.plugin-search-inkeep.js +52 -24
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +230 -0
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -0
- package/lib/zudoku.plugins.js +15 -0
- package/lib/zudoku.plugins.js.map +1 -0
- package/package.json +160 -104
- package/src/app/ZuploBuildConfig.ts +33 -0
- package/src/app/defaultTheme.css +54 -0
- package/src/app/demo-cdn.html +31 -31
- package/src/app/demo.html +1 -1
- package/src/app/demo.tsx +1 -2
- package/src/app/entry.client.tsx +67 -15
- package/src/app/entry.server.tsx +26 -15
- package/src/app/env.ts +35 -0
- package/src/app/font.geist.css +73 -0
- package/src/app/main.css +199 -130
- package/src/app/main.tsx +67 -39
- package/src/app/sentry.ts +24 -0
- package/src/app/standalone.tsx +1 -2
- package/src/lib/MissingIcon.tsx +22 -0
- package/src/lib/authentication/AuthenticationPlugin.tsx +8 -5
- package/src/lib/authentication/authentication.ts +5 -6
- package/src/lib/authentication/components/CallbackHandler.tsx +12 -2
- package/src/lib/authentication/components/SignIn.tsx +35 -2
- package/src/lib/authentication/components/SignOut.tsx +3 -2
- package/src/lib/authentication/components/SignUp.tsx +35 -1
- package/src/lib/authentication/hook.ts +13 -4
- package/src/lib/authentication/providers/auth0.tsx +14 -9
- package/src/lib/authentication/providers/clerk.tsx +136 -53
- package/src/lib/authentication/providers/openid.tsx +87 -84
- package/src/lib/authentication/providers/supabase.tsx +157 -0
- package/src/lib/authentication/state.ts +51 -27
- package/src/lib/components/AnchorLink.tsx +13 -8
- package/src/lib/components/Autocomplete.tsx +113 -0
- package/src/lib/components/Banner.tsx +3 -2
- package/src/lib/components/Bootstrap.tsx +33 -31
- package/src/lib/components/BuildCheck.tsx +75 -0
- package/src/lib/components/ErrorPage.tsx +1 -1
- package/src/lib/components/Footer.tsx +136 -0
- package/src/lib/components/Header.tsx +85 -44
- package/src/lib/components/Heading.tsx +20 -16
- package/src/lib/components/InlineCode.tsx +13 -16
- package/src/lib/components/Layout.tsx +36 -60
- package/src/lib/components/Main.tsx +51 -0
- package/src/lib/components/Markdown.tsx +42 -28
- package/src/lib/components/MobileTopNavigation.tsx +37 -34
- package/src/lib/components/NotFoundPage.tsx +2 -2
- package/src/lib/components/Pagination.tsx +44 -0
- package/src/lib/components/PathRenderer.tsx +61 -0
- package/src/lib/components/ReactMarkdown.license.txt +21 -0
- package/src/lib/components/ReactMarkdown.tsx +264 -0
- package/src/lib/components/Search.tsx +18 -7
- package/src/lib/components/Slot.test.tsx +465 -0
- package/src/lib/components/Slot.tsx +64 -0
- package/src/lib/components/StatusPage.tsx +91 -0
- package/src/lib/components/ThemeSwitch.tsx +33 -11
- package/src/lib/components/TopNavigation.tsx +70 -47
- package/src/lib/components/Zudoku.tsx +27 -16
- package/src/lib/components/cache.ts +23 -0
- package/src/lib/components/context/BypassProtectedRoutesContext.ts +3 -0
- package/src/lib/components/context/RouterEventsEmitter.tsx +19 -0
- package/src/lib/components/context/SlotProvider.tsx +149 -0
- package/src/lib/components/context/ViewportAnchorContext.tsx +34 -36
- package/src/lib/components/context/ZudokuContext.ts +30 -9
- package/src/lib/components/context/ZudokuProvider.tsx +2 -1
- package/src/lib/components/index.ts +34 -11
- package/src/lib/components/navigation/PoweredByZudoku.tsx +33 -0
- package/src/lib/components/navigation/Sidebar.tsx +39 -30
- package/src/lib/components/navigation/SidebarBadge.tsx +17 -12
- package/src/lib/components/navigation/SidebarCategory.tsx +67 -60
- package/src/lib/components/navigation/SidebarItem.tsx +81 -64
- package/src/lib/components/navigation/SidebarWrapper.tsx +42 -22
- package/src/lib/{plugins/markdown → components/navigation}/Toc.tsx +9 -18
- package/src/lib/components/navigation/ZudokuLogo.tsx +25 -0
- package/src/lib/components/navigation/ZuploLogo.tsx +14 -0
- package/src/lib/components/navigation/utils.ts +43 -7
- package/src/lib/core/RouteGuard.tsx +96 -0
- package/src/lib/core/ZudokuContext.ts +93 -23
- package/src/lib/core/plugins.ts +42 -8
- package/src/lib/errors/ErrorAlert.tsx +24 -17
- package/src/lib/errors/RouterError.tsx +1 -1
- package/src/lib/hooks/index.ts +16 -0
- package/src/lib/hooks/useEvent.test.tsx +149 -0
- package/src/lib/hooks/useEvent.ts +41 -0
- package/src/lib/icons.ts +1 -0
- package/src/lib/oas/graphql/circular.ts +58 -0
- package/src/lib/oas/graphql/index.ts +295 -101
- package/src/lib/oas/parser/dereference/index.ts +10 -4
- package/src/lib/oas/parser/index.ts +14 -30
- package/src/lib/oas/parser/upgrade/index.ts +103 -40
- package/src/lib/plugins/api-catalog/Catalog.tsx +73 -0
- package/src/lib/plugins/api-catalog/index.tsx +115 -0
- package/src/lib/plugins/api-keys/CreateApiKey.tsx +61 -45
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +439 -114
- package/src/lib/plugins/api-keys/index.tsx +115 -56
- package/src/lib/plugins/custom-pages/index.tsx +2 -2
- package/src/lib/plugins/markdown/MdxPage.tsx +43 -41
- package/src/lib/plugins/markdown/index.tsx +5 -2
- package/src/lib/plugins/markdown/resolver.ts +1 -34
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +15 -9
- package/src/lib/plugins/openapi/ColorizedParam.tsx +30 -13
- package/src/lib/plugins/openapi/Endpoint.tsx +14 -12
- package/src/lib/plugins/openapi/OasProvider.tsx +51 -0
- package/src/lib/plugins/openapi/OperationList.tsx +232 -42
- package/src/lib/plugins/openapi/OperationListItem.tsx +122 -93
- package/src/lib/plugins/openapi/ParamInfos.tsx +90 -0
- package/src/lib/plugins/openapi/ParameterList.tsx +4 -0
- package/src/lib/plugins/openapi/ParameterListItem.tsx +65 -24
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +28 -3
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +15 -38
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +36 -64
- package/src/lib/plugins/openapi/SchemaList.tsx +163 -0
- package/src/lib/plugins/openapi/Sidecar.tsx +96 -129
- package/src/lib/plugins/openapi/SidecarBox.tsx +4 -16
- package/src/lib/plugins/openapi/SidecarExamples.tsx +168 -0
- package/src/lib/plugins/openapi/SimpleSelect.tsx +1 -1
- package/src/lib/plugins/openapi/client/GraphQLClient.tsx +29 -104
- package/src/lib/plugins/openapi/client/createServer.ts +6 -2
- package/src/lib/plugins/openapi/client/useCreateQuery.ts +34 -7
- package/src/lib/plugins/openapi/components/ConstValue.tsx +24 -0
- package/src/lib/plugins/openapi/components/EnumValues.tsx +58 -0
- package/src/lib/plugins/openapi/components/ResponseContent.tsx +104 -0
- package/src/lib/plugins/openapi/components/SelectOnClick.tsx +29 -0
- package/src/lib/plugins/openapi/context.tsx +2 -2
- package/src/lib/plugins/openapi/graphql/gql.ts +36 -11
- package/src/lib/plugins/openapi/graphql/graphql.ts +172 -36
- package/src/lib/plugins/openapi/index.tsx +100 -98
- package/src/lib/plugins/openapi/interfaces.ts +58 -3
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +46 -0
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +55 -0
- package/src/lib/plugins/openapi/playground/Headers.tsx +182 -49
- package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +74 -0
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +43 -0
- package/src/lib/plugins/openapi/playground/ParamsGrid.tsx +13 -0
- package/src/lib/plugins/openapi/playground/PathParams.tsx +39 -64
- package/src/lib/plugins/openapi/playground/Playground.tsx +329 -267
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +7 -3
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +87 -89
- package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +51 -0
- package/src/lib/plugins/openapi/playground/fileUtils.ts +32 -0
- package/src/lib/plugins/openapi/playground/rememberedIdentity.ts +26 -0
- package/src/lib/plugins/openapi/playground/result-panel/RequestTab.tsx +73 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResponseTab.tsx +265 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +126 -0
- package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.test.ts +64 -0
- package/src/lib/plugins/openapi/playground/result-panel/convertToTypes.ts +36 -0
- package/src/lib/plugins/openapi/playground/useRememberSkipLoginDialog.tsx +20 -0
- package/src/lib/plugins/openapi/processors/removeExtensions.test.ts +222 -0
- package/src/lib/plugins/openapi/processors/removeExtensions.ts +29 -0
- package/src/lib/plugins/openapi/processors/removeParameters.test.ts +182 -0
- package/src/lib/plugins/openapi/processors/removeParameters.ts +103 -0
- package/src/lib/plugins/openapi/processors/removePaths.test.ts +167 -0
- package/src/lib/plugins/openapi/processors/removePaths.ts +57 -0
- package/src/lib/plugins/openapi/processors/traverse.ts +1 -0
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroup.tsx +1 -8
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupConnector.tsx +3 -0
- package/src/lib/plugins/openapi/schema/LogicalGroup/LogicalGroupItem.tsx +6 -3
- package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +39 -0
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +160 -0
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +105 -141
- package/src/lib/plugins/openapi/schema/utils.ts +32 -5
- package/src/lib/plugins/openapi/state.ts +36 -0
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +107 -0
- package/src/lib/plugins/openapi/util/createSidebarCategory.tsx +37 -0
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +77 -12
- package/src/lib/plugins/openapi/util/getRoutes.tsx +198 -0
- package/src/lib/plugins/openapi/util/methodColorMap.tsx +11 -0
- package/src/lib/plugins/openapi/util/methodToColor.ts +27 -0
- package/src/lib/plugins/openapi/util/sanitizeMarkdownForMetatag.tsx +32 -0
- package/src/lib/plugins/redirect/index.tsx +2 -2
- package/src/lib/plugins/search-inkeep/index.tsx +78 -23
- package/src/lib/plugins/search-inkeep/inkeep.ts +3 -9
- package/src/lib/plugins/search-pagefind/PagefindSearch.tsx +164 -0
- package/src/lib/plugins/search-pagefind/ResultList.tsx +105 -0
- package/src/lib/plugins/search-pagefind/get-results.tsx +75 -0
- package/src/lib/plugins/search-pagefind/index.tsx +21 -0
- package/src/lib/plugins/search-pagefind/types.ts +118 -0
- package/src/lib/shiki.ts +132 -0
- package/src/lib/ui/Badge.tsx +3 -2
- package/src/lib/ui/Button.tsx +12 -7
- package/src/lib/ui/Callout.tsx +30 -10
- package/src/lib/ui/Card.tsx +1 -1
- package/src/lib/ui/Checkbox.tsx +2 -1
- package/src/lib/ui/CodeBlock.tsx +103 -0
- package/src/lib/ui/Command.tsx +47 -5
- package/src/lib/ui/Dialog.tsx +11 -7
- package/src/lib/ui/DropdownMenu.tsx +4 -4
- package/src/lib/ui/HoverCard.tsx +1 -1
- package/src/lib/ui/Input.tsx +2 -3
- package/src/lib/ui/Popover.tsx +1 -1
- package/src/lib/ui/RadioGroup.tsx +1 -1
- package/src/lib/ui/Select.tsx +4 -4
- package/src/lib/ui/Slider.tsx +1 -1
- package/src/lib/ui/Stepper.tsx +8 -0
- package/src/lib/ui/Switch.tsx +1 -1
- package/src/lib/ui/SyntaxHighlight.tsx +27 -0
- package/src/lib/ui/Tabs.tsx +2 -2
- package/src/lib/ui/Textarea.tsx +1 -1
- package/src/lib/ui/Toggle.tsx +1 -1
- package/src/lib/ui/Tooltip.tsx +16 -1
- package/src/lib/ui/util.tsx +3 -0
- package/src/lib/util/MdxComponents.tsx +37 -23
- package/src/lib/util/createVariantComponent.tsx +2 -2
- package/src/lib/util/detectOS.ts +9 -0
- package/src/lib/util/ensureArray.ts +3 -0
- package/src/lib/util/humanFileSize.test.ts +24 -0
- package/src/lib/util/humanFileSize.ts +16 -0
- package/src/lib/util/joinPath.tsx +3 -0
- package/src/lib/util/joinUrl.test.ts +62 -0
- package/src/lib/util/joinUrl.ts +57 -0
- package/src/lib/util/scrollIntoViewIfNeeded.ts +18 -0
- package/src/lib/util/traverse.ts +34 -0
- package/src/lib/util/types.ts +7 -0
- package/src/lib/util/url.test.ts +51 -0
- package/src/lib/util/url.ts +18 -0
- package/src/lib/util/useExposedProps.tsx +13 -2
- package/src/lib/util/useLatest.ts +18 -0
- package/src/lib/util/useOnScreen.ts +6 -4
- package/src/lib/util/useScrollToAnchor.ts +48 -39
- package/src/lib/util/useScrollToTop.ts +9 -4
- package/src/shiki/langs/abap.js +1 -0
- package/src/shiki/langs/actionscript-3.js +1 -0
- package/src/shiki/langs/ada.js +1 -0
- package/src/shiki/langs/angular-expression.js +1 -0
- package/src/shiki/langs/angular-html.js +1 -0
- package/src/shiki/langs/angular-inline-style.js +1 -0
- package/src/shiki/langs/angular-inline-template.js +1 -0
- package/src/shiki/langs/angular-let-declaration.js +1 -0
- package/src/shiki/langs/angular-template-blocks.js +1 -0
- package/src/shiki/langs/angular-template.js +1 -0
- package/src/shiki/langs/angular-ts.js +1 -0
- package/src/shiki/langs/apache.js +1 -0
- package/src/shiki/langs/apex.js +1 -0
- package/src/shiki/langs/apl.js +1 -0
- package/src/shiki/langs/applescript.js +1 -0
- package/src/shiki/langs/ara.js +1 -0
- package/src/shiki/langs/asciidoc.js +1 -0
- package/src/shiki/langs/asm.js +1 -0
- package/src/shiki/langs/astro.js +1 -0
- package/src/shiki/langs/awk.js +1 -0
- package/src/shiki/langs/ballerina.js +1 -0
- package/src/shiki/langs/bat.js +1 -0
- package/src/shiki/langs/beancount.js +1 -0
- package/src/shiki/langs/berry.js +1 -0
- package/src/shiki/langs/bibtex.js +1 -0
- package/src/shiki/langs/bicep.js +1 -0
- package/src/shiki/langs/blade.js +1 -0
- package/src/shiki/langs/bsl.js +1 -0
- package/src/shiki/langs/c.js +1 -0
- package/src/shiki/langs/cadence.js +1 -0
- package/src/shiki/langs/cairo.js +1 -0
- package/src/shiki/langs/clarity.js +1 -0
- package/src/shiki/langs/clojure.js +1 -0
- package/src/shiki/langs/cmake.js +1 -0
- package/src/shiki/langs/cobol.js +1 -0
- package/src/shiki/langs/codeowners.js +1 -0
- package/src/shiki/langs/codeql.js +1 -0
- package/src/shiki/langs/coffee.js +1 -0
- package/src/shiki/langs/common-lisp.js +1 -0
- package/src/shiki/langs/coq.js +1 -0
- package/src/shiki/langs/cpp-macro.js +1 -0
- package/src/shiki/langs/cpp.js +1 -0
- package/src/shiki/langs/crystal.js +1 -0
- package/src/shiki/langs/csharp.js +1 -0
- package/src/shiki/langs/css.js +1 -0
- package/src/shiki/langs/csv.js +1 -0
- package/src/shiki/langs/cue.js +1 -0
- package/src/shiki/langs/cypher.js +1 -0
- package/src/shiki/langs/d.js +1 -0
- package/src/shiki/langs/dart.js +1 -0
- package/src/shiki/langs/dax.js +1 -0
- package/src/shiki/langs/desktop.js +1 -0
- package/src/shiki/langs/diff.js +1 -0
- package/src/shiki/langs/docker.js +1 -0
- package/src/shiki/langs/dotenv.js +1 -0
- package/src/shiki/langs/dream-maker.js +1 -0
- package/src/shiki/langs/edge.js +1 -0
- package/src/shiki/langs/elixir.js +1 -0
- package/src/shiki/langs/elm.js +1 -0
- package/src/shiki/langs/emacs-lisp.js +1 -0
- package/src/shiki/langs/erb.js +1 -0
- package/src/shiki/langs/erlang.js +1 -0
- package/src/shiki/langs/es-tag-css.js +1 -0
- package/src/shiki/langs/es-tag-glsl.js +1 -0
- package/src/shiki/langs/es-tag-html.js +1 -0
- package/src/shiki/langs/es-tag-sql.js +1 -0
- package/src/shiki/langs/es-tag-xml.js +1 -0
- package/src/shiki/langs/fennel.js +1 -0
- package/src/shiki/langs/fish.js +1 -0
- package/src/shiki/langs/fluent.js +1 -0
- package/src/shiki/langs/fortran-fixed-form.js +1 -0
- package/src/shiki/langs/fortran-free-form.js +1 -0
- package/src/shiki/langs/fsharp.js +1 -0
- package/src/shiki/langs/gdresource.js +1 -0
- package/src/shiki/langs/gdscript.js +1 -0
- package/src/shiki/langs/gdshader.js +1 -0
- package/src/shiki/langs/genie.js +1 -0
- package/src/shiki/langs/gherkin.js +1 -0
- package/src/shiki/langs/git-commit.js +1 -0
- package/src/shiki/langs/git-rebase.js +1 -0
- package/src/shiki/langs/gleam.js +1 -0
- package/src/shiki/langs/glimmer-js.js +1 -0
- package/src/shiki/langs/glimmer-ts.js +1 -0
- package/src/shiki/langs/glsl.js +1 -0
- package/src/shiki/langs/gnuplot.js +1 -0
- package/src/shiki/langs/go.js +1 -0
- package/src/shiki/langs/graphql.js +1 -0
- package/src/shiki/langs/groovy.js +1 -0
- package/src/shiki/langs/hack.js +1 -0
- package/src/shiki/langs/haml.js +1 -0
- package/src/shiki/langs/handlebars.js +1 -0
- package/src/shiki/langs/haskell.js +1 -0
- package/src/shiki/langs/haxe.js +1 -0
- package/src/shiki/langs/hcl.js +1 -0
- package/src/shiki/langs/hjson.js +1 -0
- package/src/shiki/langs/hlsl.js +1 -0
- package/src/shiki/langs/html-derivative.js +1 -0
- package/src/shiki/langs/html.js +1 -0
- package/src/shiki/langs/http.js +1 -0
- package/src/shiki/langs/hxml.js +1 -0
- package/src/shiki/langs/hy.js +1 -0
- package/src/shiki/langs/imba.js +1 -0
- package/src/shiki/langs/ini.js +1 -0
- package/src/shiki/langs/java.js +1 -0
- package/src/shiki/langs/javascript.js +1 -0
- package/src/shiki/langs/jinja-html.js +1 -0
- package/src/shiki/langs/jinja.js +1 -0
- package/src/shiki/langs/jison.js +1 -0
- package/src/shiki/langs/json.js +1 -0
- package/src/shiki/langs/json5.js +1 -0
- package/src/shiki/langs/jsonc.js +1 -0
- package/src/shiki/langs/jsonl.js +1 -0
- package/src/shiki/langs/jsonnet.js +1 -0
- package/src/shiki/langs/jssm.js +1 -0
- package/src/shiki/langs/jsx.js +1 -0
- package/src/shiki/langs/julia.js +1 -0
- package/src/shiki/langs/kotlin.js +1 -0
- package/src/shiki/langs/kusto.js +1 -0
- package/src/shiki/langs/latex.js +1 -0
- package/src/shiki/langs/lean.js +1 -0
- package/src/shiki/langs/less.js +1 -0
- package/src/shiki/langs/liquid.js +1 -0
- package/src/shiki/langs/llvm.js +1 -0
- package/src/shiki/langs/log.js +1 -0
- package/src/shiki/langs/logo.js +1 -0
- package/src/shiki/langs/lua.js +1 -0
- package/src/shiki/langs/luau.js +1 -0
- package/src/shiki/langs/make.js +1 -0
- package/src/shiki/langs/markdown-vue.js +1 -0
- package/src/shiki/langs/markdown.js +1 -0
- package/src/shiki/langs/marko.js +1 -0
- package/src/shiki/langs/matlab.js +1 -0
- package/src/shiki/langs/mdc.js +1 -0
- package/src/shiki/langs/mdx.js +1 -0
- package/src/shiki/langs/mermaid.js +1 -0
- package/src/shiki/langs/mipsasm.js +1 -0
- package/src/shiki/langs/mojo.js +1 -0
- package/src/shiki/langs/move.js +1 -0
- package/src/shiki/langs/narrat.js +1 -0
- package/src/shiki/langs/nextflow.js +1 -0
- package/src/shiki/langs/nginx.js +1 -0
- package/src/shiki/langs/nim.js +1 -0
- package/src/shiki/langs/nix.js +1 -0
- package/src/shiki/langs/nushell.js +1 -0
- package/src/shiki/langs/objective-c.js +1 -0
- package/src/shiki/langs/objective-cpp.js +1 -0
- package/src/shiki/langs/ocaml.js +1 -0
- package/src/shiki/langs/pascal.js +1 -0
- package/src/shiki/langs/perl.js +1 -0
- package/src/shiki/langs/php.js +1 -0
- package/src/shiki/langs/plsql.js +1 -0
- package/src/shiki/langs/po.js +1 -0
- package/src/shiki/langs/polar.js +1 -0
- package/src/shiki/langs/postcss.js +1 -0
- package/src/shiki/langs/powerquery.js +1 -0
- package/src/shiki/langs/powershell.js +1 -0
- package/src/shiki/langs/prisma.js +1 -0
- package/src/shiki/langs/prolog.js +1 -0
- package/src/shiki/langs/proto.js +1 -0
- package/src/shiki/langs/pug.js +1 -0
- package/src/shiki/langs/puppet.js +1 -0
- package/src/shiki/langs/purescript.js +1 -0
- package/src/shiki/langs/python.js +1 -0
- package/src/shiki/langs/qml.js +1 -0
- package/src/shiki/langs/qmldir.js +1 -0
- package/src/shiki/langs/qss.js +1 -0
- package/src/shiki/langs/r.js +1 -0
- package/src/shiki/langs/racket.js +1 -0
- package/src/shiki/langs/raku.js +1 -0
- package/src/shiki/langs/razor.js +1 -0
- package/src/shiki/langs/reg.js +1 -0
- package/src/shiki/langs/regexp.js +1 -0
- package/src/shiki/langs/rel.js +1 -0
- package/src/shiki/langs/riscv.js +1 -0
- package/src/shiki/langs/rst.js +1 -0
- package/src/shiki/langs/ruby.js +1 -0
- package/src/shiki/langs/rust.js +1 -0
- package/src/shiki/langs/sas.js +1 -0
- package/src/shiki/langs/sass.js +1 -0
- package/src/shiki/langs/scala.js +1 -0
- package/src/shiki/langs/scheme.js +1 -0
- package/src/shiki/langs/scss.js +1 -0
- package/src/shiki/langs/sdbl.js +1 -0
- package/src/shiki/langs/shaderlab.js +1 -0
- package/src/shiki/langs/shellscript.js +1 -0
- package/src/shiki/langs/shellsession.js +1 -0
- package/src/shiki/langs/smalltalk.js +1 -0
- package/src/shiki/langs/solidity.js +1 -0
- package/src/shiki/langs/soy.js +1 -0
- package/src/shiki/langs/sparql.js +1 -0
- package/src/shiki/langs/splunk.js +1 -0
- package/src/shiki/langs/sql.js +1 -0
- package/src/shiki/langs/ssh-config.js +1 -0
- package/src/shiki/langs/stata.js +1 -0
- package/src/shiki/langs/stylus.js +1 -0
- package/src/shiki/langs/svelte.js +1 -0
- package/src/shiki/langs/swift.js +1 -0
- package/src/shiki/langs/system-verilog.js +1 -0
- package/src/shiki/langs/systemd.js +1 -0
- package/src/shiki/langs/talonscript.js +1 -0
- package/src/shiki/langs/tasl.js +1 -0
- package/src/shiki/langs/tcl.js +1 -0
- package/src/shiki/langs/templ.js +1 -0
- package/src/shiki/langs/terraform.js +1 -0
- package/src/shiki/langs/tex.js +1 -0
- package/src/shiki/langs/toml.js +1 -0
- package/src/shiki/langs/ts-tags.js +1 -0
- package/src/shiki/langs/tsv.js +1 -0
- package/src/shiki/langs/tsx.js +1 -0
- package/src/shiki/langs/turtle.js +1 -0
- package/src/shiki/langs/twig.js +1 -0
- package/src/shiki/langs/typescript.js +1 -0
- package/src/shiki/langs/typespec.js +1 -0
- package/src/shiki/langs/typst.js +1 -0
- package/src/shiki/langs/v.js +1 -0
- package/src/shiki/langs/vala.js +1 -0
- package/src/shiki/langs/vb.js +1 -0
- package/src/shiki/langs/verilog.js +1 -0
- package/src/shiki/langs/vhdl.js +1 -0
- package/src/shiki/langs/viml.js +1 -0
- package/src/shiki/langs/vue-directives.js +1 -0
- package/src/shiki/langs/vue-html.js +1 -0
- package/src/shiki/langs/vue-interpolations.js +1 -0
- package/src/shiki/langs/vue-sfc-style-variable-injection.js +1 -0
- package/src/shiki/langs/vue.js +1 -0
- package/src/shiki/langs/vyper.js +1 -0
- package/src/shiki/langs/wasm.js +1 -0
- package/src/shiki/langs/wenyan.js +1 -0
- package/src/shiki/langs/wgsl.js +1 -0
- package/src/shiki/langs/wikitext.js +1 -0
- package/src/shiki/langs/wit.js +1 -0
- package/src/shiki/langs/wolfram.js +1 -0
- package/src/shiki/langs/xml.js +1 -0
- package/src/shiki/langs/xsl.js +1 -0
- package/src/shiki/langs/yaml.js +1 -0
- package/src/shiki/langs/zenscript.js +1 -0
- package/src/shiki/langs/zig.js +1 -0
- package/src/shiki/themes/andromeeda.js +1 -0
- package/src/shiki/themes/aurora-x.js +1 -0
- package/src/shiki/themes/ayu-dark.js +1 -0
- package/src/shiki/themes/catppuccin-frappe.js +1 -0
- package/src/shiki/themes/catppuccin-latte.js +1 -0
- package/src/shiki/themes/catppuccin-macchiato.js +1 -0
- package/src/shiki/themes/catppuccin-mocha.js +1 -0
- package/src/shiki/themes/dark-plus.js +1 -0
- package/src/shiki/themes/dracula-soft.js +1 -0
- package/src/shiki/themes/dracula.js +1 -0
- package/src/shiki/themes/everforest-dark.js +1 -0
- package/src/shiki/themes/everforest-light.js +1 -0
- package/src/shiki/themes/github-dark-default.js +1 -0
- package/src/shiki/themes/github-dark-dimmed.js +1 -0
- package/src/shiki/themes/github-dark-high-contrast.js +1 -0
- package/src/shiki/themes/github-dark.js +1 -0
- package/src/shiki/themes/github-light-default.js +1 -0
- package/src/shiki/themes/github-light-high-contrast.js +1 -0
- package/src/shiki/themes/github-light.js +1 -0
- package/src/shiki/themes/gruvbox-dark-hard.js +1 -0
- package/src/shiki/themes/gruvbox-dark-medium.js +1 -0
- package/src/shiki/themes/gruvbox-dark-soft.js +1 -0
- package/src/shiki/themes/gruvbox-light-hard.js +1 -0
- package/src/shiki/themes/gruvbox-light-medium.js +1 -0
- package/src/shiki/themes/gruvbox-light-soft.js +1 -0
- package/src/shiki/themes/houston.js +1 -0
- package/src/shiki/themes/kanagawa-dragon.js +1 -0
- package/src/shiki/themes/kanagawa-lotus.js +1 -0
- package/src/shiki/themes/kanagawa-wave.js +1 -0
- package/src/shiki/themes/laserwave.js +1 -0
- package/src/shiki/themes/light-plus.js +1 -0
- package/src/shiki/themes/material-theme-darker.js +1 -0
- package/src/shiki/themes/material-theme-lighter.js +1 -0
- package/src/shiki/themes/material-theme-ocean.js +1 -0
- package/src/shiki/themes/material-theme-palenight.js +1 -0
- package/src/shiki/themes/material-theme.js +1 -0
- package/src/shiki/themes/min-dark.js +1 -0
- package/src/shiki/themes/min-light.js +1 -0
- package/src/shiki/themes/monokai.js +1 -0
- package/src/shiki/themes/night-owl.js +1 -0
- package/src/shiki/themes/nord.js +1 -0
- package/src/shiki/themes/one-dark-pro.js +1 -0
- package/src/shiki/themes/one-light.js +1 -0
- package/src/shiki/themes/plastic.js +1 -0
- package/src/shiki/themes/poimandres.js +1 -0
- package/src/shiki/themes/red.js +1 -0
- package/src/shiki/themes/rose-pine-dawn.js +1 -0
- package/src/shiki/themes/rose-pine-moon.js +1 -0
- package/src/shiki/themes/rose-pine.js +1 -0
- package/src/shiki/themes/slack-dark.js +1 -0
- package/src/shiki/themes/slack-ochin.js +1 -0
- package/src/shiki/themes/snazzy-light.js +1 -0
- package/src/shiki/themes/solarized-dark.js +1 -0
- package/src/shiki/themes/solarized-light.js +1 -0
- package/src/shiki/themes/synthwave-84.js +1 -0
- package/src/shiki/themes/tokyo-night.js +1 -0
- package/src/shiki/themes/vesper.js +1 -0
- package/src/shiki/themes/vitesse-black.js +1 -0
- package/src/shiki/themes/vitesse-dark.js +1 -0
- package/src/shiki/themes/vitesse-light.js +1 -0
- package/client.d.ts +0 -1
- package/dist/app/tailwind.d.ts +0 -3
- package/dist/app/tailwind.js +0 -65
- package/dist/app/tailwind.js.map +0 -1
- package/dist/lib/components/SlotletProvider.d.ts +0 -17
- package/dist/lib/components/SlotletProvider.js +0 -18
- package/dist/lib/components/SlotletProvider.js.map +0 -1
- package/dist/lib/components/SyntaxHighlight.d.ts +0 -11
- package/dist/lib/components/SyntaxHighlight.js +0 -57
- package/dist/lib/components/SyntaxHighlight.js.map +0 -1
- package/dist/lib/components/context/PluginSystem.js +0 -2
- package/dist/lib/components/context/PluginSystem.js.map +0 -1
- package/dist/lib/plugins/markdown/Toc.js.map +0 -1
- package/dist/lib/plugins/openapi/Route.d.ts +0 -6
- package/dist/lib/plugins/openapi/Route.js +0 -6
- package/dist/lib/plugins/openapi/Route.js.map +0 -1
- package/dist/lib/plugins/openapi/client/worker.d.ts +0 -4
- package/dist/lib/plugins/openapi/client/worker.js +0 -29
- package/dist/lib/plugins/openapi/client/worker.js.map +0 -1
- package/dist/lib/plugins/openapi/playground/ResponseTab.d.ts +0 -4
- package/dist/lib/plugins/openapi/playground/ResponseTab.js +0 -42
- package/dist/lib/plugins/openapi/playground/ResponseTab.js.map +0 -1
- package/dist/lib/plugins/openapi/schema/SchemaComponents.js +0 -28
- package/dist/lib/plugins/openapi/schema/SchemaComponents.js.map +0 -1
- package/dist/lib/plugins/openapi-worker.d.ts +0 -1
- package/dist/lib/plugins/openapi-worker.js +0 -8
- package/dist/lib/plugins/openapi-worker.js.map +0 -1
- package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.d.ts +0 -2
- package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js +0 -3
- package/dist/lib/plugins/search-inkeep/InkeepCustomTrigger.js.map +0 -1
- package/dist/ts.d.ts +0 -6
- package/dist/ts.js +0 -61
- package/dist/ts.js.map +0 -1
- package/dist/vite/plugin-custom-css.js.map +0 -1
- package/dist/vite/plugin-docs.test.js +0 -30
- package/dist/vite/plugin-docs.test.js.map +0 -1
- package/dist/vite/prerender.d.ts +0 -21
- package/dist/vite/prerender.js +0 -89
- package/dist/vite/prerender.js.map +0 -1
- package/lib/AnchorLink-CDlhr8gL.js +0 -706
- package/lib/AnchorLink-CDlhr8gL.js.map +0 -1
- package/lib/AuthenticationPlugin-DeGDVa1r.js +0 -56
- package/lib/AuthenticationPlugin-DeGDVa1r.js.map +0 -1
- package/lib/Button-jK0EsymC.js +0 -48
- package/lib/Button-jK0EsymC.js.map +0 -1
- package/lib/Dialog-k70Qfukb.js +0 -67
- package/lib/Dialog-k70Qfukb.js.map +0 -1
- package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
- package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
- package/lib/Markdown-BorQdbxW.js.map +0 -1
- package/lib/MdxPage-DFlbtJWi.js +0 -174
- package/lib/MdxPage-DFlbtJWi.js.map +0 -1
- package/lib/OperationList-KshJrrLL.js +0 -4691
- package/lib/OperationList-KshJrrLL.js.map +0 -1
- package/lib/Route-DlG_HTMu.js +0 -11
- package/lib/Route-DlG_HTMu.js.map +0 -1
- package/lib/Select-DP74t8Yy.js +0 -223
- package/lib/Select-DP74t8Yy.js.map +0 -1
- package/lib/SidebarBadge-DxFJcJ6V.js +0 -51
- package/lib/SidebarBadge-DxFJcJ6V.js.map +0 -1
- package/lib/SlotletProvider-D2v6rJy1.js +0 -252
- package/lib/SlotletProvider-D2v6rJy1.js.map +0 -1
- package/lib/SyntaxHighlight-CBmwwKoM.js +0 -2983
- package/lib/SyntaxHighlight-CBmwwKoM.js.map +0 -1
- package/lib/__vite-browser-external-BYRIRx8p.js +0 -9
- package/lib/__vite-browser-external-BYRIRx8p.js.map +0 -1
- package/lib/_commonjsHelpers-BkfeUUK-.js +0 -29
- package/lib/_commonjsHelpers-BkfeUUK-.js.map +0 -1
- package/lib/assets/index-B_Jk_Yzp.js.map +0 -1
- package/lib/assets/worker-CPsGZsve.js +0 -18201
- package/lib/assets/worker-CPsGZsve.js.map +0 -1
- package/lib/cn-BmFQLtkS.js.map +0 -1
- package/lib/context-D1nXWxm7.js +0 -22
- package/lib/context-D1nXWxm7.js.map +0 -1
- package/lib/createServer-DK-g7kbB.js +0 -16089
- package/lib/createServer-DK-g7kbB.js.map +0 -1
- package/lib/hook-Diu0rqp-.js +0 -229
- package/lib/hook-Diu0rqp-.js.map +0 -1
- package/lib/index-BcesIHH4.js +0 -1273
- package/lib/index-BcesIHH4.js.map +0 -1
- package/lib/index-BuAyrJe3.js +0 -46
- package/lib/index-BuAyrJe3.js.map +0 -1
- package/lib/index-CkwDvuPt.js +0 -4820
- package/lib/index-CkwDvuPt.js.map +0 -1
- package/lib/index-Czzd9rjU.js +0 -899
- package/lib/index-Czzd9rjU.js.map +0 -1
- package/lib/index-Yn8c3UWE.js +0 -921
- package/lib/index-Yn8c3UWE.js.map +0 -1
- package/lib/index.esm-C5mr_sKO.js +0 -1193
- package/lib/index.esm-C5mr_sKO.js.map +0 -1
- package/lib/invariant-Caa8-XvF.js +0 -26
- package/lib/jsx-runtime-B6kdoens.js +0 -635
- package/lib/jsx-runtime-B6kdoens.js.map +0 -1
- package/lib/prism-bash.min-DadFsM4Z.js +0 -7
- package/lib/prism-bash.min-DadFsM4Z.js.map +0 -1
- package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
- package/lib/prism-csharp.min-Yizuc34Y.js.map +0 -1
- package/lib/prism-java.min-d5iT_mOd.js +0 -7
- package/lib/prism-java.min-d5iT_mOd.js.map +0 -1
- package/lib/prism-javascript.min-CEqHqgbm.js +0 -9
- package/lib/prism-javascript.min-CEqHqgbm.js.map +0 -1
- package/lib/prism-json.min-B1GJqK1k.js +0 -2
- package/lib/prism-json.min-B1GJqK1k.js.map +0 -1
- package/lib/prism-markdown.min-F3U-vPBi.js +0 -61
- package/lib/prism-markdown.min-F3U-vPBi.js.map +0 -1
- package/lib/prism-markup-BNGj0Tvm.js +0 -174
- package/lib/prism-markup-BNGj0Tvm.js.map +0 -1
- package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
- package/lib/prism-markup-templating-DZrrEs0A.js.map +0 -1
- package/lib/prism-objectivec.min-BXSWqpJJ.js +0 -2
- package/lib/prism-objectivec.min-BXSWqpJJ.js.map +0 -1
- package/lib/prism-php.min-o7FpoMP_.js +0 -11
- package/lib/prism-php.min-o7FpoMP_.js.map +0 -1
- package/lib/prism-ruby.min-C7LwcKyz.js +0 -10
- package/lib/prism-ruby.min-C7LwcKyz.js.map +0 -1
- package/lib/prism-typescript.min-oSVeWCAd.js +0 -6
- package/lib/prism-typescript.min-oSVeWCAd.js.map +0 -1
- package/lib/router-lfyopgBI.js +0 -3024
- package/lib/router-lfyopgBI.js.map +0 -1
- package/lib/state-BsPrOUAh.js +0 -252
- package/lib/state-BsPrOUAh.js.map +0 -1
- package/lib/useExposedProps-CTPtylCV.js +0 -10
- package/lib/useExposedProps-CTPtylCV.js.map +0 -1
- package/lib/utils-DcpDOncX.js +0 -1218
- package/lib/utils-DcpDOncX.js.map +0 -1
- package/lib/zudoku.openapi-worker.js +0 -15
- package/lib/zudoku.openapi-worker.js.map +0 -1
- package/src/app/tailwind.ts +0 -68
- package/src/lib/components/SlotletProvider.tsx +0 -55
- package/src/lib/components/SyntaxHighlight.tsx +0 -160
- package/src/lib/components/context/PluginSystem.ts +0 -0
- package/src/lib/plugins/openapi/Route.tsx +0 -19
- package/src/lib/plugins/openapi/client/worker.ts +0 -44
- package/src/lib/plugins/openapi/playground/ResponseTab.tsx +0 -76
- package/src/lib/plugins/openapi/schema/SchemaComponents.tsx +0 -126
- package/src/lib/plugins/openapi-worker.ts +0 -11
- package/src/lib/plugins/search-inkeep/InkeepCustomTrigger.tsx +0 -3
- /package/dist/lib/components/{context/PluginSystem.d.ts → Slot.test.d.ts} +0 -0
- /package/dist/lib/{plugins/markdown → components/navigation}/Toc.d.ts +0 -0
- /package/dist/{vite/plugin-docs.test.d.ts → lib/hooks/useEvent.test.d.ts} +0 -0
|
@@ -1,95 +1,79 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
for (r = 0; r < l; r++) e[r] && (t = Y(e[r])) && (o && (o += " "), o += t);
|
|
7
|
-
} else for (t in e) e[t] && (o && (o += " "), o += t);
|
|
8
|
-
return o;
|
|
9
|
-
}
|
|
10
|
-
function ne() {
|
|
11
|
-
for (var e, r, t = 0, o = "", l = arguments.length; t < l; t++) (e = arguments[t]) && (r = Y(e)) && (o && (o += " "), o += r);
|
|
12
|
-
return o;
|
|
13
|
-
}
|
|
14
|
-
const B = "-", se = (e) => {
|
|
15
|
-
const r = ie(e), {
|
|
16
|
-
conflictingClassGroups: t,
|
|
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
|
|
22
|
-
return
|
|
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
|
|
26
|
-
return
|
|
12
|
+
getConflictingClassGroupIds: (i, u) => {
|
|
13
|
+
const p = s[i] || [];
|
|
14
|
+
return u && t[i] ? [...p, ...t[i]] : p;
|
|
27
15
|
}
|
|
28
16
|
};
|
|
29
|
-
},
|
|
30
|
-
var a;
|
|
17
|
+
}, xe = (e, n) => {
|
|
31
18
|
if (e.length === 0)
|
|
32
|
-
return
|
|
33
|
-
const
|
|
34
|
-
if (
|
|
35
|
-
return
|
|
36
|
-
if (
|
|
19
|
+
return n.classGroupId;
|
|
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;
|
|
23
|
+
if (n.validators.length === 0)
|
|
37
24
|
return;
|
|
38
|
-
const
|
|
39
|
-
return
|
|
40
|
-
validator:
|
|
41
|
-
}) =>
|
|
42
|
-
},
|
|
43
|
-
if (
|
|
44
|
-
const
|
|
45
|
-
if (
|
|
46
|
-
return "arbitrary.." +
|
|
25
|
+
const m = e.join(ne);
|
|
26
|
+
return n.validators.find(({
|
|
27
|
+
validator: i
|
|
28
|
+
}) => i(m))?.classGroupId;
|
|
29
|
+
}, fe = /^\[(.+)\]$/, Re = (e) => {
|
|
30
|
+
if (fe.test(e)) {
|
|
31
|
+
const n = fe.exec(e)[1], s = n?.substring(0, n.indexOf(":"));
|
|
32
|
+
if (s)
|
|
33
|
+
return "arbitrary.." + s;
|
|
47
34
|
}
|
|
48
|
-
},
|
|
35
|
+
}, Ge = (e) => {
|
|
49
36
|
const {
|
|
50
|
-
theme:
|
|
51
|
-
|
|
52
|
-
} = e,
|
|
37
|
+
theme: n,
|
|
38
|
+
classGroups: s
|
|
39
|
+
} = e, t = {
|
|
53
40
|
nextPart: /* @__PURE__ */ new Map(),
|
|
54
41
|
validators: []
|
|
55
42
|
};
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
},
|
|
60
|
-
e.forEach((
|
|
61
|
-
if (typeof
|
|
62
|
-
const
|
|
63
|
-
|
|
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;
|
|
64
51
|
return;
|
|
65
52
|
}
|
|
66
|
-
if (typeof
|
|
67
|
-
if (
|
|
68
|
-
|
|
53
|
+
if (typeof c == "function") {
|
|
54
|
+
if (Te(c)) {
|
|
55
|
+
re(c(t), n, s, t);
|
|
69
56
|
return;
|
|
70
57
|
}
|
|
71
|
-
|
|
72
|
-
validator:
|
|
73
|
-
classGroupId:
|
|
58
|
+
n.validators.push({
|
|
59
|
+
validator: c,
|
|
60
|
+
classGroupId: s
|
|
74
61
|
});
|
|
75
62
|
return;
|
|
76
63
|
}
|
|
77
|
-
Object.entries(
|
|
78
|
-
|
|
64
|
+
Object.entries(c).forEach(([m, i]) => {
|
|
65
|
+
re(i, be(n, m), s, t);
|
|
79
66
|
});
|
|
80
67
|
});
|
|
81
|
-
},
|
|
82
|
-
let
|
|
83
|
-
return
|
|
84
|
-
|
|
68
|
+
}, be = (e, n) => {
|
|
69
|
+
let s = e;
|
|
70
|
+
return n.split(ne).forEach((t) => {
|
|
71
|
+
s.nextPart.has(t) || s.nextPart.set(t, {
|
|
85
72
|
nextPart: /* @__PURE__ */ new Map(),
|
|
86
73
|
validators: []
|
|
87
|
-
}),
|
|
88
|
-
}),
|
|
89
|
-
},
|
|
90
|
-
const l = o.map((n) => typeof n == "string" ? r + n : typeof n == "object" ? Object.fromEntries(Object.entries(n).map(([a, s]) => [r + a, s])) : n);
|
|
91
|
-
return [t, l];
|
|
92
|
-
}) : e, de = (e) => {
|
|
74
|
+
}), s = s.nextPart.get(t);
|
|
75
|
+
}), s;
|
|
76
|
+
}, Te = (e) => e.isThemeGetter, Ee = (e) => {
|
|
93
77
|
if (e < 1)
|
|
94
78
|
return {
|
|
95
79
|
get: () => {
|
|
@@ -97,192 +81,257 @@ const B = "-", se = (e) => {
|
|
|
97
81
|
set: () => {
|
|
98
82
|
}
|
|
99
83
|
};
|
|
100
|
-
let
|
|
101
|
-
const
|
|
102
|
-
|
|
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());
|
|
103
87
|
};
|
|
104
88
|
return {
|
|
105
|
-
get(
|
|
106
|
-
let
|
|
107
|
-
if (
|
|
108
|
-
return
|
|
109
|
-
if ((
|
|
110
|
-
return
|
|
89
|
+
get(m) {
|
|
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;
|
|
111
95
|
},
|
|
112
|
-
set(
|
|
113
|
-
|
|
96
|
+
set(m, i) {
|
|
97
|
+
s.has(m) ? s.set(m, i) : c(m, i);
|
|
114
98
|
}
|
|
115
99
|
};
|
|
116
|
-
},
|
|
100
|
+
}, te = "!", se = ":", Ne = se.length, Le = (e) => {
|
|
117
101
|
const {
|
|
118
|
-
|
|
119
|
-
experimentalParseClassName:
|
|
120
|
-
} = e
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
102
|
+
prefix: n,
|
|
103
|
+
experimentalParseClassName: s
|
|
104
|
+
} = e;
|
|
105
|
+
let t = (c) => {
|
|
106
|
+
const m = [];
|
|
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) {
|
|
111
|
+
if (y === se) {
|
|
112
|
+
m.push(c.slice(p, k)), p = k + Ne;
|
|
128
113
|
continue;
|
|
129
114
|
}
|
|
130
|
-
if (
|
|
131
|
-
|
|
115
|
+
if (y === "/") {
|
|
116
|
+
g = k;
|
|
132
117
|
continue;
|
|
133
118
|
}
|
|
134
119
|
}
|
|
135
|
-
|
|
120
|
+
y === "[" ? i++ : y === "]" ? i-- : y === "(" ? u++ : y === ")" && u--;
|
|
136
121
|
}
|
|
137
|
-
const
|
|
122
|
+
const h = m.length === 0 ? c : c.substring(p), M = Ve(h), O = M !== h, F = g && g > p ? g - p : void 0;
|
|
138
123
|
return {
|
|
139
|
-
modifiers:
|
|
140
|
-
hasImportantModifier:
|
|
141
|
-
baseClassName:
|
|
142
|
-
maybePostfixModifierPosition:
|
|
124
|
+
modifiers: m,
|
|
125
|
+
hasImportantModifier: O,
|
|
126
|
+
baseClassName: M,
|
|
127
|
+
maybePostfixModifierPosition: F
|
|
143
128
|
};
|
|
144
129
|
};
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
}
|
|
130
|
+
if (n) {
|
|
131
|
+
const c = n + se, m = t;
|
|
132
|
+
t = (i) => i.startsWith(c) ? m(i.substring(c.length)) : {
|
|
133
|
+
isExternal: !0,
|
|
134
|
+
modifiers: [],
|
|
135
|
+
hasImportantModifier: !1,
|
|
136
|
+
baseClassName: i,
|
|
137
|
+
maybePostfixModifierPosition: void 0
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
if (s) {
|
|
141
|
+
const c = t;
|
|
142
|
+
t = (m) => s({
|
|
143
|
+
className: m,
|
|
144
|
+
parseClassName: c
|
|
145
|
+
});
|
|
146
|
+
}
|
|
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 = [];
|
|
154
|
+
let m = [];
|
|
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;
|
|
158
|
+
};
|
|
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) => {
|
|
162
165
|
const {
|
|
163
|
-
parseClassName:
|
|
164
|
-
getClassGroupId:
|
|
165
|
-
getConflictingClassGroupIds:
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
166
|
+
parseClassName: s,
|
|
167
|
+
getClassGroupId: t,
|
|
168
|
+
getConflictingClassGroupIds: c,
|
|
169
|
+
sortModifiers: m
|
|
170
|
+
} = n, i = [], u = e.trim().split(Fe);
|
|
171
|
+
let p = "";
|
|
172
|
+
for (let g = u.length - 1; g >= 0; g -= 1) {
|
|
173
|
+
const h = u[g], {
|
|
174
|
+
isExternal: M,
|
|
175
|
+
modifiers: O,
|
|
176
|
+
hasImportantModifier: F,
|
|
177
|
+
baseClassName: k,
|
|
178
|
+
maybePostfixModifierPosition: y
|
|
179
|
+
} = s(h);
|
|
180
|
+
if (M) {
|
|
181
|
+
p = h + (p.length > 0 ? " " + p : p);
|
|
182
|
+
continue;
|
|
183
|
+
}
|
|
184
|
+
let G = !!y, A = t(G ? k.substring(0, y) : k);
|
|
185
|
+
if (!A) {
|
|
186
|
+
if (!G) {
|
|
187
|
+
p = h + (p.length > 0 ? " " + p : p);
|
|
179
188
|
continue;
|
|
180
189
|
}
|
|
181
|
-
if (
|
|
182
|
-
|
|
190
|
+
if (A = t(k), !A) {
|
|
191
|
+
p = h + (p.length > 0 ? " " + p : p);
|
|
183
192
|
continue;
|
|
184
193
|
}
|
|
185
|
-
|
|
194
|
+
G = !1;
|
|
186
195
|
}
|
|
187
|
-
const
|
|
188
|
-
if (
|
|
196
|
+
const $ = m(O).join(":"), _ = F ? $ + te : $, T = _ + A;
|
|
197
|
+
if (i.includes(T))
|
|
189
198
|
continue;
|
|
190
|
-
|
|
191
|
-
const
|
|
192
|
-
for (let
|
|
193
|
-
const
|
|
194
|
-
|
|
199
|
+
i.push(T);
|
|
200
|
+
const E = c(A, G);
|
|
201
|
+
for (let I = 0; I < E.length; ++I) {
|
|
202
|
+
const B = E[I];
|
|
203
|
+
i.push(_ + B);
|
|
195
204
|
}
|
|
196
|
-
|
|
205
|
+
p = h + (p.length > 0 ? " " + p : p);
|
|
197
206
|
}
|
|
198
|
-
return
|
|
207
|
+
return p;
|
|
199
208
|
};
|
|
200
|
-
function
|
|
201
|
-
let e = 0,
|
|
209
|
+
function Be() {
|
|
210
|
+
let e = 0, n, s, t = "";
|
|
202
211
|
for (; e < arguments.length; )
|
|
203
|
-
(
|
|
204
|
-
return
|
|
212
|
+
(n = arguments[e++]) && (s = we(n)) && (t && (t += " "), t += s);
|
|
213
|
+
return t;
|
|
205
214
|
}
|
|
206
|
-
const
|
|
215
|
+
const we = (e) => {
|
|
207
216
|
if (typeof e == "string")
|
|
208
217
|
return e;
|
|
209
|
-
let
|
|
210
|
-
for (let
|
|
211
|
-
e[
|
|
212
|
-
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;
|
|
213
222
|
};
|
|
214
|
-
function
|
|
215
|
-
let
|
|
216
|
-
function
|
|
217
|
-
const g =
|
|
218
|
-
return
|
|
223
|
+
function We(e, ...n) {
|
|
224
|
+
let s, t, c, m = i;
|
|
225
|
+
function i(p) {
|
|
226
|
+
const g = n.reduce((h, M) => M(h), e());
|
|
227
|
+
return s = Oe(g), t = s.cache.get, c = s.cache.set, m = u, u(p);
|
|
219
228
|
}
|
|
220
|
-
function
|
|
221
|
-
const g =
|
|
229
|
+
function u(p) {
|
|
230
|
+
const g = t(p);
|
|
222
231
|
if (g)
|
|
223
232
|
return g;
|
|
224
|
-
const
|
|
225
|
-
return
|
|
233
|
+
const h = _e(p, s);
|
|
234
|
+
return c(p, h), h;
|
|
226
235
|
}
|
|
227
236
|
return function() {
|
|
228
|
-
return
|
|
237
|
+
return m(Be.apply(null, arguments));
|
|
229
238
|
};
|
|
230
239
|
}
|
|
231
|
-
const
|
|
232
|
-
const
|
|
233
|
-
return
|
|
234
|
-
},
|
|
235
|
-
const o = te.exec(e);
|
|
236
|
-
return o ? o[1] ? typeof r == "string" ? o[1] === r : r.has(o[1]) : t(o[2]) : !1;
|
|
237
|
-
}, je = (e) => (
|
|
240
|
+
const f = (e) => {
|
|
241
|
+
const n = (s) => s[e] || [];
|
|
242
|
+
return n.isThemeGetter = !0, n;
|
|
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))\(.+\)$/, 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) => (
|
|
238
244
|
// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
|
|
239
245
|
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
|
|
240
246
|
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
|
|
241
|
-
|
|
242
|
-
),
|
|
243
|
-
const
|
|
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 = () => [
|
|
256
|
+
"center",
|
|
257
|
+
"top",
|
|
258
|
+
"bottom",
|
|
259
|
+
"left",
|
|
260
|
+
"right",
|
|
261
|
+
"top-left",
|
|
262
|
+
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
263
|
+
"left-top",
|
|
264
|
+
"top-right",
|
|
265
|
+
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
266
|
+
"right-top",
|
|
267
|
+
"bottom-right",
|
|
268
|
+
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
269
|
+
"right-bottom",
|
|
270
|
+
"bottom-left",
|
|
271
|
+
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
272
|
+
"left-bottom"
|
|
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]
|
|
277
|
+
}], de = () => ["no-repeat", {
|
|
278
|
+
repeat: ["", "x", "y", "space", "round"]
|
|
279
|
+
}], me = () => ["auto", "cover", "contain", to, eo, {
|
|
280
|
+
size: [r, o]
|
|
281
|
+
}], Y = () => [ee, W, R], x = () => [
|
|
282
|
+
// Deprecated since Tailwind CSS v4.0.0
|
|
283
|
+
"",
|
|
284
|
+
"none",
|
|
285
|
+
"full",
|
|
286
|
+
g,
|
|
287
|
+
r,
|
|
288
|
+
o
|
|
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 = () => [
|
|
290
|
+
// Deprecated since Tailwind CSS v4.0.0
|
|
291
|
+
"",
|
|
292
|
+
"none",
|
|
293
|
+
k,
|
|
294
|
+
r,
|
|
295
|
+
o
|
|
296
|
+
], H = () => ["none", d, r, o], J = () => ["none", d, r, o], Z = () => [d, r, o], X = () => [L, "full", ...l()];
|
|
244
297
|
return {
|
|
245
298
|
cacheSize: 500,
|
|
246
|
-
separator: ":",
|
|
247
299
|
theme: {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
blur: [
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
saturate: k(),
|
|
268
|
-
scale: k(),
|
|
269
|
-
sepia: I(),
|
|
270
|
-
skew: k(),
|
|
271
|
-
space: d(),
|
|
272
|
-
translate: d()
|
|
300
|
+
animate: ["spin", "ping", "pulse", "bounce"],
|
|
301
|
+
aspect: ["video"],
|
|
302
|
+
blur: [C],
|
|
303
|
+
breakpoint: [C],
|
|
304
|
+
color: [De],
|
|
305
|
+
container: [C],
|
|
306
|
+
"drop-shadow": [C],
|
|
307
|
+
ease: ["in", "out", "in-out"],
|
|
308
|
+
font: [Ze],
|
|
309
|
+
"font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
|
|
310
|
+
"inset-shadow": [C],
|
|
311
|
+
leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
|
|
312
|
+
perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
|
|
313
|
+
radius: [C],
|
|
314
|
+
shadow: [C],
|
|
315
|
+
spacing: ["px", d],
|
|
316
|
+
text: [C],
|
|
317
|
+
"text-shadow": [C],
|
|
318
|
+
tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
|
|
273
319
|
},
|
|
274
320
|
classGroups: {
|
|
275
|
-
//
|
|
321
|
+
// --------------
|
|
322
|
+
// --- Layout ---
|
|
323
|
+
// --------------
|
|
276
324
|
/**
|
|
277
325
|
* Aspect Ratio
|
|
278
326
|
* @see https://tailwindcss.com/docs/aspect-ratio
|
|
279
327
|
*/
|
|
280
328
|
aspect: [{
|
|
281
|
-
aspect: ["auto", "square",
|
|
329
|
+
aspect: ["auto", "square", L, o, r, G]
|
|
282
330
|
}],
|
|
283
331
|
/**
|
|
284
332
|
* Container
|
|
285
333
|
* @see https://tailwindcss.com/docs/container
|
|
334
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
286
335
|
*/
|
|
287
336
|
container: ["container"],
|
|
288
337
|
/**
|
|
@@ -290,21 +339,21 @@ const c = (e) => {
|
|
|
290
339
|
* @see https://tailwindcss.com/docs/columns
|
|
291
340
|
*/
|
|
292
341
|
columns: [{
|
|
293
|
-
columns: [
|
|
342
|
+
columns: [d, o, r, u]
|
|
294
343
|
}],
|
|
295
344
|
/**
|
|
296
345
|
* Break After
|
|
297
346
|
* @see https://tailwindcss.com/docs/break-after
|
|
298
347
|
*/
|
|
299
348
|
"break-after": [{
|
|
300
|
-
"break-after":
|
|
349
|
+
"break-after": _()
|
|
301
350
|
}],
|
|
302
351
|
/**
|
|
303
352
|
* Break Before
|
|
304
353
|
* @see https://tailwindcss.com/docs/break-before
|
|
305
354
|
*/
|
|
306
355
|
"break-before": [{
|
|
307
|
-
"break-before":
|
|
356
|
+
"break-before": _()
|
|
308
357
|
}],
|
|
309
358
|
/**
|
|
310
359
|
* Break Inside
|
|
@@ -332,6 +381,11 @@ const c = (e) => {
|
|
|
332
381
|
* @see https://tailwindcss.com/docs/display
|
|
333
382
|
*/
|
|
334
383
|
display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"],
|
|
384
|
+
/**
|
|
385
|
+
* Screen Reader Only
|
|
386
|
+
* @see https://tailwindcss.com/docs/display#screen-reader-only
|
|
387
|
+
*/
|
|
388
|
+
sr: ["sr-only", "not-sr-only"],
|
|
335
389
|
/**
|
|
336
390
|
* Floats
|
|
337
391
|
* @see https://tailwindcss.com/docs/float
|
|
@@ -363,49 +417,49 @@ const c = (e) => {
|
|
|
363
417
|
* @see https://tailwindcss.com/docs/object-position
|
|
364
418
|
*/
|
|
365
419
|
"object-position": [{
|
|
366
|
-
object:
|
|
420
|
+
object: E()
|
|
367
421
|
}],
|
|
368
422
|
/**
|
|
369
423
|
* Overflow
|
|
370
424
|
* @see https://tailwindcss.com/docs/overflow
|
|
371
425
|
*/
|
|
372
426
|
overflow: [{
|
|
373
|
-
overflow:
|
|
427
|
+
overflow: I()
|
|
374
428
|
}],
|
|
375
429
|
/**
|
|
376
430
|
* Overflow X
|
|
377
431
|
* @see https://tailwindcss.com/docs/overflow
|
|
378
432
|
*/
|
|
379
433
|
"overflow-x": [{
|
|
380
|
-
"overflow-x":
|
|
434
|
+
"overflow-x": I()
|
|
381
435
|
}],
|
|
382
436
|
/**
|
|
383
437
|
* Overflow Y
|
|
384
438
|
* @see https://tailwindcss.com/docs/overflow
|
|
385
439
|
*/
|
|
386
440
|
"overflow-y": [{
|
|
387
|
-
"overflow-y":
|
|
441
|
+
"overflow-y": I()
|
|
388
442
|
}],
|
|
389
443
|
/**
|
|
390
444
|
* Overscroll Behavior
|
|
391
445
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
392
446
|
*/
|
|
393
447
|
overscroll: [{
|
|
394
|
-
overscroll:
|
|
448
|
+
overscroll: B()
|
|
395
449
|
}],
|
|
396
450
|
/**
|
|
397
451
|
* Overscroll Behavior X
|
|
398
452
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
399
453
|
*/
|
|
400
454
|
"overscroll-x": [{
|
|
401
|
-
"overscroll-x":
|
|
455
|
+
"overscroll-x": B()
|
|
402
456
|
}],
|
|
403
457
|
/**
|
|
404
458
|
* Overscroll Behavior Y
|
|
405
459
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
406
460
|
*/
|
|
407
461
|
"overscroll-y": [{
|
|
408
|
-
"overscroll-y":
|
|
462
|
+
"overscroll-y": B()
|
|
409
463
|
}],
|
|
410
464
|
/**
|
|
411
465
|
* Position
|
|
@@ -417,63 +471,63 @@ const c = (e) => {
|
|
|
417
471
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
418
472
|
*/
|
|
419
473
|
inset: [{
|
|
420
|
-
inset:
|
|
474
|
+
inset: v()
|
|
421
475
|
}],
|
|
422
476
|
/**
|
|
423
477
|
* Right / Left
|
|
424
478
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
425
479
|
*/
|
|
426
480
|
"inset-x": [{
|
|
427
|
-
"inset-x":
|
|
481
|
+
"inset-x": v()
|
|
428
482
|
}],
|
|
429
483
|
/**
|
|
430
484
|
* Top / Bottom
|
|
431
485
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
432
486
|
*/
|
|
433
487
|
"inset-y": [{
|
|
434
|
-
"inset-y":
|
|
488
|
+
"inset-y": v()
|
|
435
489
|
}],
|
|
436
490
|
/**
|
|
437
491
|
* Start
|
|
438
492
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
439
493
|
*/
|
|
440
494
|
start: [{
|
|
441
|
-
start:
|
|
495
|
+
start: v()
|
|
442
496
|
}],
|
|
443
497
|
/**
|
|
444
498
|
* End
|
|
445
499
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
446
500
|
*/
|
|
447
501
|
end: [{
|
|
448
|
-
end:
|
|
502
|
+
end: v()
|
|
449
503
|
}],
|
|
450
504
|
/**
|
|
451
505
|
* Top
|
|
452
506
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
453
507
|
*/
|
|
454
508
|
top: [{
|
|
455
|
-
top:
|
|
509
|
+
top: v()
|
|
456
510
|
}],
|
|
457
511
|
/**
|
|
458
512
|
* Right
|
|
459
513
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
460
514
|
*/
|
|
461
515
|
right: [{
|
|
462
|
-
right:
|
|
516
|
+
right: v()
|
|
463
517
|
}],
|
|
464
518
|
/**
|
|
465
519
|
* Bottom
|
|
466
520
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
467
521
|
*/
|
|
468
522
|
bottom: [{
|
|
469
|
-
bottom:
|
|
523
|
+
bottom: v()
|
|
470
524
|
}],
|
|
471
525
|
/**
|
|
472
526
|
* Left
|
|
473
527
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
474
528
|
*/
|
|
475
529
|
left: [{
|
|
476
|
-
left:
|
|
530
|
+
left: v()
|
|
477
531
|
}],
|
|
478
532
|
/**
|
|
479
533
|
* Visibility
|
|
@@ -485,15 +539,17 @@ const c = (e) => {
|
|
|
485
539
|
* @see https://tailwindcss.com/docs/z-index
|
|
486
540
|
*/
|
|
487
541
|
z: [{
|
|
488
|
-
z: ["auto",
|
|
542
|
+
z: [S, "auto", r, o]
|
|
489
543
|
}],
|
|
490
|
-
//
|
|
544
|
+
// ------------------------
|
|
545
|
+
// --- Flexbox and Grid ---
|
|
546
|
+
// ------------------------
|
|
491
547
|
/**
|
|
492
548
|
* Flex Basis
|
|
493
549
|
* @see https://tailwindcss.com/docs/flex-basis
|
|
494
550
|
*/
|
|
495
551
|
basis: [{
|
|
496
|
-
basis:
|
|
552
|
+
basis: [L, "full", "auto", u, ...l()]
|
|
497
553
|
}],
|
|
498
554
|
/**
|
|
499
555
|
* Flex Direction
|
|
@@ -507,95 +563,91 @@ const c = (e) => {
|
|
|
507
563
|
* @see https://tailwindcss.com/docs/flex-wrap
|
|
508
564
|
*/
|
|
509
565
|
"flex-wrap": [{
|
|
510
|
-
flex: ["
|
|
566
|
+
flex: ["nowrap", "wrap", "wrap-reverse"]
|
|
511
567
|
}],
|
|
512
568
|
/**
|
|
513
569
|
* Flex
|
|
514
570
|
* @see https://tailwindcss.com/docs/flex
|
|
515
571
|
*/
|
|
516
572
|
flex: [{
|
|
517
|
-
flex: [
|
|
573
|
+
flex: [d, L, "auto", "initial", "none", o]
|
|
518
574
|
}],
|
|
519
575
|
/**
|
|
520
576
|
* Flex Grow
|
|
521
577
|
* @see https://tailwindcss.com/docs/flex-grow
|
|
522
578
|
*/
|
|
523
579
|
grow: [{
|
|
524
|
-
grow:
|
|
580
|
+
grow: ["", d, r, o]
|
|
525
581
|
}],
|
|
526
582
|
/**
|
|
527
583
|
* Flex Shrink
|
|
528
584
|
* @see https://tailwindcss.com/docs/flex-shrink
|
|
529
585
|
*/
|
|
530
586
|
shrink: [{
|
|
531
|
-
shrink:
|
|
587
|
+
shrink: ["", d, r, o]
|
|
532
588
|
}],
|
|
533
589
|
/**
|
|
534
590
|
* Order
|
|
535
591
|
* @see https://tailwindcss.com/docs/order
|
|
536
592
|
*/
|
|
537
593
|
order: [{
|
|
538
|
-
order: ["first", "last", "none",
|
|
594
|
+
order: [S, "first", "last", "none", r, o]
|
|
539
595
|
}],
|
|
540
596
|
/**
|
|
541
597
|
* Grid Template Columns
|
|
542
598
|
* @see https://tailwindcss.com/docs/grid-template-columns
|
|
543
599
|
*/
|
|
544
600
|
"grid-cols": [{
|
|
545
|
-
"grid-cols":
|
|
601
|
+
"grid-cols": ae()
|
|
546
602
|
}],
|
|
547
603
|
/**
|
|
548
604
|
* Grid Column Start / End
|
|
549
605
|
* @see https://tailwindcss.com/docs/grid-column
|
|
550
606
|
*/
|
|
551
607
|
"col-start-end": [{
|
|
552
|
-
col:
|
|
553
|
-
span: ["full", P, i]
|
|
554
|
-
}, i]
|
|
608
|
+
col: ie()
|
|
555
609
|
}],
|
|
556
610
|
/**
|
|
557
611
|
* Grid Column Start
|
|
558
612
|
* @see https://tailwindcss.com/docs/grid-column
|
|
559
613
|
*/
|
|
560
614
|
"col-start": [{
|
|
561
|
-
"col-start":
|
|
615
|
+
"col-start": U()
|
|
562
616
|
}],
|
|
563
617
|
/**
|
|
564
618
|
* Grid Column End
|
|
565
619
|
* @see https://tailwindcss.com/docs/grid-column
|
|
566
620
|
*/
|
|
567
621
|
"col-end": [{
|
|
568
|
-
"col-end":
|
|
622
|
+
"col-end": U()
|
|
569
623
|
}],
|
|
570
624
|
/**
|
|
571
625
|
* Grid Template Rows
|
|
572
626
|
* @see https://tailwindcss.com/docs/grid-template-rows
|
|
573
627
|
*/
|
|
574
628
|
"grid-rows": [{
|
|
575
|
-
"grid-rows":
|
|
629
|
+
"grid-rows": ae()
|
|
576
630
|
}],
|
|
577
631
|
/**
|
|
578
632
|
* Grid Row Start / End
|
|
579
633
|
* @see https://tailwindcss.com/docs/grid-row
|
|
580
634
|
*/
|
|
581
635
|
"row-start-end": [{
|
|
582
|
-
row:
|
|
583
|
-
span: [P, i]
|
|
584
|
-
}, i]
|
|
636
|
+
row: ie()
|
|
585
637
|
}],
|
|
586
638
|
/**
|
|
587
639
|
* Grid Row Start
|
|
588
640
|
* @see https://tailwindcss.com/docs/grid-row
|
|
589
641
|
*/
|
|
590
642
|
"row-start": [{
|
|
591
|
-
"row-start":
|
|
643
|
+
"row-start": U()
|
|
592
644
|
}],
|
|
593
645
|
/**
|
|
594
646
|
* Grid Row End
|
|
595
647
|
* @see https://tailwindcss.com/docs/grid-row
|
|
596
648
|
*/
|
|
597
649
|
"row-end": [{
|
|
598
|
-
"row-end":
|
|
650
|
+
"row-end": U()
|
|
599
651
|
}],
|
|
600
652
|
/**
|
|
601
653
|
* Grid Auto Flow
|
|
@@ -609,98 +661,102 @@ const c = (e) => {
|
|
|
609
661
|
* @see https://tailwindcss.com/docs/grid-auto-columns
|
|
610
662
|
*/
|
|
611
663
|
"auto-cols": [{
|
|
612
|
-
"auto-cols":
|
|
664
|
+
"auto-cols": le()
|
|
613
665
|
}],
|
|
614
666
|
/**
|
|
615
667
|
* Grid Auto Rows
|
|
616
668
|
* @see https://tailwindcss.com/docs/grid-auto-rows
|
|
617
669
|
*/
|
|
618
670
|
"auto-rows": [{
|
|
619
|
-
"auto-rows":
|
|
671
|
+
"auto-rows": le()
|
|
620
672
|
}],
|
|
621
673
|
/**
|
|
622
674
|
* Gap
|
|
623
675
|
* @see https://tailwindcss.com/docs/gap
|
|
624
676
|
*/
|
|
625
677
|
gap: [{
|
|
626
|
-
gap:
|
|
678
|
+
gap: l()
|
|
627
679
|
}],
|
|
628
680
|
/**
|
|
629
681
|
* Gap X
|
|
630
682
|
* @see https://tailwindcss.com/docs/gap
|
|
631
683
|
*/
|
|
632
684
|
"gap-x": [{
|
|
633
|
-
"gap-x":
|
|
685
|
+
"gap-x": l()
|
|
634
686
|
}],
|
|
635
687
|
/**
|
|
636
688
|
* Gap Y
|
|
637
689
|
* @see https://tailwindcss.com/docs/gap
|
|
638
690
|
*/
|
|
639
691
|
"gap-y": [{
|
|
640
|
-
"gap-y":
|
|
692
|
+
"gap-y": l()
|
|
641
693
|
}],
|
|
642
694
|
/**
|
|
643
695
|
* Justify Content
|
|
644
696
|
* @see https://tailwindcss.com/docs/justify-content
|
|
645
697
|
*/
|
|
646
698
|
"justify-content": [{
|
|
647
|
-
justify: ["normal"
|
|
699
|
+
justify: [...Q(), "normal"]
|
|
648
700
|
}],
|
|
649
701
|
/**
|
|
650
702
|
* Justify Items
|
|
651
703
|
* @see https://tailwindcss.com/docs/justify-items
|
|
652
704
|
*/
|
|
653
705
|
"justify-items": [{
|
|
654
|
-
"justify-items": [
|
|
706
|
+
"justify-items": [...N(), "normal"]
|
|
655
707
|
}],
|
|
656
708
|
/**
|
|
657
709
|
* Justify Self
|
|
658
710
|
* @see https://tailwindcss.com/docs/justify-self
|
|
659
711
|
*/
|
|
660
712
|
"justify-self": [{
|
|
661
|
-
"justify-self": ["auto",
|
|
713
|
+
"justify-self": ["auto", ...N()]
|
|
662
714
|
}],
|
|
663
715
|
/**
|
|
664
716
|
* Align Content
|
|
665
717
|
* @see https://tailwindcss.com/docs/align-content
|
|
666
718
|
*/
|
|
667
719
|
"align-content": [{
|
|
668
|
-
content: ["normal", ...
|
|
720
|
+
content: ["normal", ...Q()]
|
|
669
721
|
}],
|
|
670
722
|
/**
|
|
671
723
|
* Align Items
|
|
672
724
|
* @see https://tailwindcss.com/docs/align-items
|
|
673
725
|
*/
|
|
674
726
|
"align-items": [{
|
|
675
|
-
items: [
|
|
727
|
+
items: [...N(), {
|
|
728
|
+
baseline: ["", "last"]
|
|
729
|
+
}]
|
|
676
730
|
}],
|
|
677
731
|
/**
|
|
678
732
|
* Align Self
|
|
679
733
|
* @see https://tailwindcss.com/docs/align-self
|
|
680
734
|
*/
|
|
681
735
|
"align-self": [{
|
|
682
|
-
self: ["auto",
|
|
736
|
+
self: ["auto", ...N(), {
|
|
737
|
+
baseline: ["", "last"]
|
|
738
|
+
}]
|
|
683
739
|
}],
|
|
684
740
|
/**
|
|
685
741
|
* Place Content
|
|
686
742
|
* @see https://tailwindcss.com/docs/place-content
|
|
687
743
|
*/
|
|
688
744
|
"place-content": [{
|
|
689
|
-
"place-content":
|
|
745
|
+
"place-content": Q()
|
|
690
746
|
}],
|
|
691
747
|
/**
|
|
692
748
|
* Place Items
|
|
693
749
|
* @see https://tailwindcss.com/docs/place-items
|
|
694
750
|
*/
|
|
695
751
|
"place-items": [{
|
|
696
|
-
"place-items": [
|
|
752
|
+
"place-items": [...N(), "baseline"]
|
|
697
753
|
}],
|
|
698
754
|
/**
|
|
699
755
|
* Place Self
|
|
700
756
|
* @see https://tailwindcss.com/docs/place-self
|
|
701
757
|
*/
|
|
702
758
|
"place-self": [{
|
|
703
|
-
"place-self": ["auto",
|
|
759
|
+
"place-self": ["auto", ...N()]
|
|
704
760
|
}],
|
|
705
761
|
// Spacing
|
|
706
762
|
/**
|
|
@@ -708,210 +764,229 @@ const c = (e) => {
|
|
|
708
764
|
* @see https://tailwindcss.com/docs/padding
|
|
709
765
|
*/
|
|
710
766
|
p: [{
|
|
711
|
-
p:
|
|
767
|
+
p: l()
|
|
712
768
|
}],
|
|
713
769
|
/**
|
|
714
770
|
* Padding X
|
|
715
771
|
* @see https://tailwindcss.com/docs/padding
|
|
716
772
|
*/
|
|
717
773
|
px: [{
|
|
718
|
-
px:
|
|
774
|
+
px: l()
|
|
719
775
|
}],
|
|
720
776
|
/**
|
|
721
777
|
* Padding Y
|
|
722
778
|
* @see https://tailwindcss.com/docs/padding
|
|
723
779
|
*/
|
|
724
780
|
py: [{
|
|
725
|
-
py:
|
|
781
|
+
py: l()
|
|
726
782
|
}],
|
|
727
783
|
/**
|
|
728
784
|
* Padding Start
|
|
729
785
|
* @see https://tailwindcss.com/docs/padding
|
|
730
786
|
*/
|
|
731
787
|
ps: [{
|
|
732
|
-
ps:
|
|
788
|
+
ps: l()
|
|
733
789
|
}],
|
|
734
790
|
/**
|
|
735
791
|
* Padding End
|
|
736
792
|
* @see https://tailwindcss.com/docs/padding
|
|
737
793
|
*/
|
|
738
794
|
pe: [{
|
|
739
|
-
pe:
|
|
795
|
+
pe: l()
|
|
740
796
|
}],
|
|
741
797
|
/**
|
|
742
798
|
* Padding Top
|
|
743
799
|
* @see https://tailwindcss.com/docs/padding
|
|
744
800
|
*/
|
|
745
801
|
pt: [{
|
|
746
|
-
pt:
|
|
802
|
+
pt: l()
|
|
747
803
|
}],
|
|
748
804
|
/**
|
|
749
805
|
* Padding Right
|
|
750
806
|
* @see https://tailwindcss.com/docs/padding
|
|
751
807
|
*/
|
|
752
808
|
pr: [{
|
|
753
|
-
pr:
|
|
809
|
+
pr: l()
|
|
754
810
|
}],
|
|
755
811
|
/**
|
|
756
812
|
* Padding Bottom
|
|
757
813
|
* @see https://tailwindcss.com/docs/padding
|
|
758
814
|
*/
|
|
759
815
|
pb: [{
|
|
760
|
-
pb:
|
|
816
|
+
pb: l()
|
|
761
817
|
}],
|
|
762
818
|
/**
|
|
763
819
|
* Padding Left
|
|
764
820
|
* @see https://tailwindcss.com/docs/padding
|
|
765
821
|
*/
|
|
766
822
|
pl: [{
|
|
767
|
-
pl:
|
|
823
|
+
pl: l()
|
|
768
824
|
}],
|
|
769
825
|
/**
|
|
770
826
|
* Margin
|
|
771
827
|
* @see https://tailwindcss.com/docs/margin
|
|
772
828
|
*/
|
|
773
829
|
m: [{
|
|
774
|
-
m:
|
|
830
|
+
m: z()
|
|
775
831
|
}],
|
|
776
832
|
/**
|
|
777
833
|
* Margin X
|
|
778
834
|
* @see https://tailwindcss.com/docs/margin
|
|
779
835
|
*/
|
|
780
836
|
mx: [{
|
|
781
|
-
mx:
|
|
837
|
+
mx: z()
|
|
782
838
|
}],
|
|
783
839
|
/**
|
|
784
840
|
* Margin Y
|
|
785
841
|
* @see https://tailwindcss.com/docs/margin
|
|
786
842
|
*/
|
|
787
843
|
my: [{
|
|
788
|
-
my:
|
|
844
|
+
my: z()
|
|
789
845
|
}],
|
|
790
846
|
/**
|
|
791
847
|
* Margin Start
|
|
792
848
|
* @see https://tailwindcss.com/docs/margin
|
|
793
849
|
*/
|
|
794
850
|
ms: [{
|
|
795
|
-
ms:
|
|
851
|
+
ms: z()
|
|
796
852
|
}],
|
|
797
853
|
/**
|
|
798
854
|
* Margin End
|
|
799
855
|
* @see https://tailwindcss.com/docs/margin
|
|
800
856
|
*/
|
|
801
857
|
me: [{
|
|
802
|
-
me:
|
|
858
|
+
me: z()
|
|
803
859
|
}],
|
|
804
860
|
/**
|
|
805
861
|
* Margin Top
|
|
806
862
|
* @see https://tailwindcss.com/docs/margin
|
|
807
863
|
*/
|
|
808
864
|
mt: [{
|
|
809
|
-
mt:
|
|
865
|
+
mt: z()
|
|
810
866
|
}],
|
|
811
867
|
/**
|
|
812
868
|
* Margin Right
|
|
813
869
|
* @see https://tailwindcss.com/docs/margin
|
|
814
870
|
*/
|
|
815
871
|
mr: [{
|
|
816
|
-
mr:
|
|
872
|
+
mr: z()
|
|
817
873
|
}],
|
|
818
874
|
/**
|
|
819
875
|
* Margin Bottom
|
|
820
876
|
* @see https://tailwindcss.com/docs/margin
|
|
821
877
|
*/
|
|
822
878
|
mb: [{
|
|
823
|
-
mb:
|
|
879
|
+
mb: z()
|
|
824
880
|
}],
|
|
825
881
|
/**
|
|
826
882
|
* Margin Left
|
|
827
883
|
* @see https://tailwindcss.com/docs/margin
|
|
828
884
|
*/
|
|
829
885
|
ml: [{
|
|
830
|
-
ml:
|
|
886
|
+
ml: z()
|
|
831
887
|
}],
|
|
832
888
|
/**
|
|
833
889
|
* Space Between X
|
|
834
|
-
* @see https://tailwindcss.com/docs/space
|
|
890
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
835
891
|
*/
|
|
836
892
|
"space-x": [{
|
|
837
|
-
"space-x":
|
|
893
|
+
"space-x": l()
|
|
838
894
|
}],
|
|
839
895
|
/**
|
|
840
896
|
* Space Between X Reverse
|
|
841
|
-
* @see https://tailwindcss.com/docs/space
|
|
897
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
842
898
|
*/
|
|
843
899
|
"space-x-reverse": ["space-x-reverse"],
|
|
844
900
|
/**
|
|
845
901
|
* Space Between Y
|
|
846
|
-
* @see https://tailwindcss.com/docs/space
|
|
902
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
847
903
|
*/
|
|
848
904
|
"space-y": [{
|
|
849
|
-
"space-y":
|
|
905
|
+
"space-y": l()
|
|
850
906
|
}],
|
|
851
907
|
/**
|
|
852
908
|
* Space Between Y Reverse
|
|
853
|
-
* @see https://tailwindcss.com/docs/space
|
|
909
|
+
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
854
910
|
*/
|
|
855
911
|
"space-y-reverse": ["space-y-reverse"],
|
|
856
|
-
//
|
|
912
|
+
// --------------
|
|
913
|
+
// --- Sizing ---
|
|
914
|
+
// --------------
|
|
915
|
+
/**
|
|
916
|
+
* Size
|
|
917
|
+
* @see https://tailwindcss.com/docs/width#setting-both-width-and-height
|
|
918
|
+
*/
|
|
919
|
+
size: [{
|
|
920
|
+
size: P()
|
|
921
|
+
}],
|
|
857
922
|
/**
|
|
858
923
|
* Width
|
|
859
924
|
* @see https://tailwindcss.com/docs/width
|
|
860
925
|
*/
|
|
861
926
|
w: [{
|
|
862
|
-
w: [
|
|
927
|
+
w: [u, "screen", ...P()]
|
|
863
928
|
}],
|
|
864
929
|
/**
|
|
865
930
|
* Min-Width
|
|
866
931
|
* @see https://tailwindcss.com/docs/min-width
|
|
867
932
|
*/
|
|
868
933
|
"min-w": [{
|
|
869
|
-
"min-w": [
|
|
934
|
+
"min-w": [
|
|
935
|
+
u,
|
|
936
|
+
"screen",
|
|
937
|
+
/** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
938
|
+
"none",
|
|
939
|
+
...P()
|
|
940
|
+
]
|
|
870
941
|
}],
|
|
871
942
|
/**
|
|
872
943
|
* Max-Width
|
|
873
944
|
* @see https://tailwindcss.com/docs/max-width
|
|
874
945
|
*/
|
|
875
946
|
"max-w": [{
|
|
876
|
-
"max-w": [
|
|
877
|
-
|
|
878
|
-
|
|
947
|
+
"max-w": [
|
|
948
|
+
u,
|
|
949
|
+
"screen",
|
|
950
|
+
"none",
|
|
951
|
+
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
952
|
+
"prose",
|
|
953
|
+
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
954
|
+
{
|
|
955
|
+
screen: [i]
|
|
956
|
+
},
|
|
957
|
+
...P()
|
|
958
|
+
]
|
|
879
959
|
}],
|
|
880
960
|
/**
|
|
881
961
|
* Height
|
|
882
962
|
* @see https://tailwindcss.com/docs/height
|
|
883
963
|
*/
|
|
884
964
|
h: [{
|
|
885
|
-
h: [
|
|
965
|
+
h: ["screen", "lh", ...P()]
|
|
886
966
|
}],
|
|
887
967
|
/**
|
|
888
968
|
* Min-Height
|
|
889
969
|
* @see https://tailwindcss.com/docs/min-height
|
|
890
970
|
*/
|
|
891
971
|
"min-h": [{
|
|
892
|
-
"min-h": [
|
|
972
|
+
"min-h": ["screen", "lh", "none", ...P()]
|
|
893
973
|
}],
|
|
894
974
|
/**
|
|
895
975
|
* Max-Height
|
|
896
976
|
* @see https://tailwindcss.com/docs/max-height
|
|
897
977
|
*/
|
|
898
978
|
"max-h": [{
|
|
899
|
-
"max-h": [
|
|
979
|
+
"max-h": ["screen", "lh", ...P()]
|
|
900
980
|
}],
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
*/
|
|
905
|
-
size: [{
|
|
906
|
-
size: [i, r, "auto", "min", "max", "fit"]
|
|
907
|
-
}],
|
|
908
|
-
// Typography
|
|
981
|
+
// ------------------
|
|
982
|
+
// --- Typography ---
|
|
983
|
+
// ------------------
|
|
909
984
|
/**
|
|
910
985
|
* Font Size
|
|
911
986
|
* @see https://tailwindcss.com/docs/font-size
|
|
912
987
|
*/
|
|
913
988
|
"font-size": [{
|
|
914
|
-
text: ["base",
|
|
989
|
+
text: ["base", s, W, R]
|
|
915
990
|
}],
|
|
916
991
|
/**
|
|
917
992
|
* Font Smoothing
|
|
@@ -928,14 +1003,21 @@ const c = (e) => {
|
|
|
928
1003
|
* @see https://tailwindcss.com/docs/font-weight
|
|
929
1004
|
*/
|
|
930
1005
|
"font-weight": [{
|
|
931
|
-
font: [
|
|
1006
|
+
font: [t, r, oe]
|
|
1007
|
+
}],
|
|
1008
|
+
/**
|
|
1009
|
+
* Font Stretch
|
|
1010
|
+
* @see https://tailwindcss.com/docs/font-stretch
|
|
1011
|
+
*/
|
|
1012
|
+
"font-stretch": [{
|
|
1013
|
+
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", ee, o]
|
|
932
1014
|
}],
|
|
933
1015
|
/**
|
|
934
1016
|
* Font Family
|
|
935
1017
|
* @see https://tailwindcss.com/docs/font-family
|
|
936
1018
|
*/
|
|
937
1019
|
"font-family": [{
|
|
938
|
-
font: [
|
|
1020
|
+
font: [ro, o, n]
|
|
939
1021
|
}],
|
|
940
1022
|
/**
|
|
941
1023
|
* Font Variant Numeric
|
|
@@ -966,41 +1048,38 @@ const c = (e) => {
|
|
|
966
1048
|
* Font Variant Numeric
|
|
967
1049
|
* @see https://tailwindcss.com/docs/font-variant-numeric
|
|
968
1050
|
*/
|
|
969
|
-
"fvn-fraction": ["diagonal-fractions", "stacked-
|
|
1051
|
+
"fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
|
|
970
1052
|
/**
|
|
971
1053
|
* Letter Spacing
|
|
972
1054
|
* @see https://tailwindcss.com/docs/letter-spacing
|
|
973
1055
|
*/
|
|
974
1056
|
tracking: [{
|
|
975
|
-
tracking: [
|
|
1057
|
+
tracking: [c, r, o]
|
|
976
1058
|
}],
|
|
977
1059
|
/**
|
|
978
1060
|
* Line Clamp
|
|
979
1061
|
* @see https://tailwindcss.com/docs/line-clamp
|
|
980
1062
|
*/
|
|
981
1063
|
"line-clamp": [{
|
|
982
|
-
"line-clamp": ["none",
|
|
1064
|
+
"line-clamp": [d, "none", r, oe]
|
|
983
1065
|
}],
|
|
984
1066
|
/**
|
|
985
1067
|
* Line Height
|
|
986
1068
|
* @see https://tailwindcss.com/docs/line-height
|
|
987
1069
|
*/
|
|
988
1070
|
leading: [{
|
|
989
|
-
leading: [
|
|
1071
|
+
leading: [
|
|
1072
|
+
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
1073
|
+
m,
|
|
1074
|
+
...l()
|
|
1075
|
+
]
|
|
990
1076
|
}],
|
|
991
1077
|
/**
|
|
992
1078
|
* List Style Image
|
|
993
1079
|
* @see https://tailwindcss.com/docs/list-style-image
|
|
994
1080
|
*/
|
|
995
1081
|
"list-image": [{
|
|
996
|
-
"list-image": ["none",
|
|
997
|
-
}],
|
|
998
|
-
/**
|
|
999
|
-
* List Style Type
|
|
1000
|
-
* @see https://tailwindcss.com/docs/list-style-type
|
|
1001
|
-
*/
|
|
1002
|
-
"list-style-type": [{
|
|
1003
|
-
list: ["none", "disc", "decimal", i]
|
|
1082
|
+
"list-image": ["none", r, o]
|
|
1004
1083
|
}],
|
|
1005
1084
|
/**
|
|
1006
1085
|
* List Style Position
|
|
@@ -1010,19 +1089,11 @@ const c = (e) => {
|
|
|
1010
1089
|
list: ["inside", "outside"]
|
|
1011
1090
|
}],
|
|
1012
1091
|
/**
|
|
1013
|
-
*
|
|
1014
|
-
* @
|
|
1015
|
-
* @see https://tailwindcss.com/docs/placeholder-color
|
|
1016
|
-
*/
|
|
1017
|
-
"placeholder-color": [{
|
|
1018
|
-
placeholder: [e]
|
|
1019
|
-
}],
|
|
1020
|
-
/**
|
|
1021
|
-
* Placeholder Opacity
|
|
1022
|
-
* @see https://tailwindcss.com/docs/placeholder-opacity
|
|
1092
|
+
* List Style Type
|
|
1093
|
+
* @see https://tailwindcss.com/docs/list-style-type
|
|
1023
1094
|
*/
|
|
1024
|
-
"
|
|
1025
|
-
"
|
|
1095
|
+
"list-style-type": [{
|
|
1096
|
+
list: ["disc", "decimal", "none", r, o]
|
|
1026
1097
|
}],
|
|
1027
1098
|
/**
|
|
1028
1099
|
* Text Alignment
|
|
@@ -1032,18 +1103,19 @@ const c = (e) => {
|
|
|
1032
1103
|
text: ["left", "center", "right", "justify", "start", "end"]
|
|
1033
1104
|
}],
|
|
1034
1105
|
/**
|
|
1035
|
-
*
|
|
1036
|
-
* @
|
|
1106
|
+
* Placeholder Color
|
|
1107
|
+
* @deprecated since Tailwind CSS v3.0.0
|
|
1108
|
+
* @see https://v3.tailwindcss.com/docs/placeholder-color
|
|
1037
1109
|
*/
|
|
1038
|
-
"
|
|
1039
|
-
|
|
1110
|
+
"placeholder-color": [{
|
|
1111
|
+
placeholder: a()
|
|
1040
1112
|
}],
|
|
1041
1113
|
/**
|
|
1042
|
-
* Text
|
|
1043
|
-
* @see https://tailwindcss.com/docs/text-
|
|
1114
|
+
* Text Color
|
|
1115
|
+
* @see https://tailwindcss.com/docs/text-color
|
|
1044
1116
|
*/
|
|
1045
|
-
"text-
|
|
1046
|
-
|
|
1117
|
+
"text-color": [{
|
|
1118
|
+
text: a()
|
|
1047
1119
|
}],
|
|
1048
1120
|
/**
|
|
1049
1121
|
* Text Decoration
|
|
@@ -1055,28 +1127,28 @@ const c = (e) => {
|
|
|
1055
1127
|
* @see https://tailwindcss.com/docs/text-decoration-style
|
|
1056
1128
|
*/
|
|
1057
1129
|
"text-decoration-style": [{
|
|
1058
|
-
decoration: [...
|
|
1130
|
+
decoration: [...q(), "wavy"]
|
|
1059
1131
|
}],
|
|
1060
1132
|
/**
|
|
1061
1133
|
* Text Decoration Thickness
|
|
1062
1134
|
* @see https://tailwindcss.com/docs/text-decoration-thickness
|
|
1063
1135
|
*/
|
|
1064
1136
|
"text-decoration-thickness": [{
|
|
1065
|
-
decoration: [
|
|
1066
|
-
}],
|
|
1067
|
-
/**
|
|
1068
|
-
* Text Underline Offset
|
|
1069
|
-
* @see https://tailwindcss.com/docs/text-underline-offset
|
|
1070
|
-
*/
|
|
1071
|
-
"underline-offset": [{
|
|
1072
|
-
"underline-offset": ["auto", C, i]
|
|
1137
|
+
decoration: [d, "from-font", "auto", r, R]
|
|
1073
1138
|
}],
|
|
1074
1139
|
/**
|
|
1075
1140
|
* Text Decoration Color
|
|
1076
1141
|
* @see https://tailwindcss.com/docs/text-decoration-color
|
|
1077
1142
|
*/
|
|
1078
1143
|
"text-decoration-color": [{
|
|
1079
|
-
decoration:
|
|
1144
|
+
decoration: a()
|
|
1145
|
+
}],
|
|
1146
|
+
/**
|
|
1147
|
+
* Text Underline Offset
|
|
1148
|
+
* @see https://tailwindcss.com/docs/text-underline-offset
|
|
1149
|
+
*/
|
|
1150
|
+
"underline-offset": [{
|
|
1151
|
+
"underline-offset": [d, "auto", r, o]
|
|
1080
1152
|
}],
|
|
1081
1153
|
/**
|
|
1082
1154
|
* Text Transform
|
|
@@ -1100,14 +1172,14 @@ const c = (e) => {
|
|
|
1100
1172
|
* @see https://tailwindcss.com/docs/text-indent
|
|
1101
1173
|
*/
|
|
1102
1174
|
indent: [{
|
|
1103
|
-
indent:
|
|
1175
|
+
indent: l()
|
|
1104
1176
|
}],
|
|
1105
1177
|
/**
|
|
1106
1178
|
* Vertical Alignment
|
|
1107
1179
|
* @see https://tailwindcss.com/docs/vertical-align
|
|
1108
1180
|
*/
|
|
1109
1181
|
"vertical-align": [{
|
|
1110
|
-
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]
|
|
1111
1183
|
}],
|
|
1112
1184
|
/**
|
|
1113
1185
|
* Whitespace
|
|
@@ -1123,6 +1195,13 @@ const c = (e) => {
|
|
|
1123
1195
|
break: [{
|
|
1124
1196
|
break: ["normal", "words", "all", "keep"]
|
|
1125
1197
|
}],
|
|
1198
|
+
/**
|
|
1199
|
+
* Overflow Wrap
|
|
1200
|
+
* @see https://tailwindcss.com/docs/overflow-wrap
|
|
1201
|
+
*/
|
|
1202
|
+
wrap: [{
|
|
1203
|
+
wrap: ["break-word", "anywhere", "normal"]
|
|
1204
|
+
}],
|
|
1126
1205
|
/**
|
|
1127
1206
|
* Hyphens
|
|
1128
1207
|
* @see https://tailwindcss.com/docs/hyphens
|
|
@@ -1135,9 +1214,11 @@ const c = (e) => {
|
|
|
1135
1214
|
* @see https://tailwindcss.com/docs/content
|
|
1136
1215
|
*/
|
|
1137
1216
|
content: [{
|
|
1138
|
-
content: ["none",
|
|
1217
|
+
content: ["none", r, o]
|
|
1139
1218
|
}],
|
|
1140
|
-
//
|
|
1219
|
+
// -------------------
|
|
1220
|
+
// --- Backgrounds ---
|
|
1221
|
+
// -------------------
|
|
1141
1222
|
/**
|
|
1142
1223
|
* Background Attachment
|
|
1143
1224
|
* @see https://tailwindcss.com/docs/background-attachment
|
|
@@ -1152,14 +1233,6 @@ const c = (e) => {
|
|
|
1152
1233
|
"bg-clip": [{
|
|
1153
1234
|
"bg-clip": ["border", "padding", "content", "text"]
|
|
1154
1235
|
}],
|
|
1155
|
-
/**
|
|
1156
|
-
* Background Opacity
|
|
1157
|
-
* @deprecated since Tailwind CSS v3.0.0
|
|
1158
|
-
* @see https://tailwindcss.com/docs/background-opacity
|
|
1159
|
-
*/
|
|
1160
|
-
"bg-opacity": [{
|
|
1161
|
-
"bg-opacity": [f]
|
|
1162
|
-
}],
|
|
1163
1236
|
/**
|
|
1164
1237
|
* Background Origin
|
|
1165
1238
|
* @see https://tailwindcss.com/docs/background-origin
|
|
@@ -1172,23 +1245,21 @@ const c = (e) => {
|
|
|
1172
1245
|
* @see https://tailwindcss.com/docs/background-position
|
|
1173
1246
|
*/
|
|
1174
1247
|
"bg-position": [{
|
|
1175
|
-
bg:
|
|
1248
|
+
bg: ce()
|
|
1176
1249
|
}],
|
|
1177
1250
|
/**
|
|
1178
1251
|
* Background Repeat
|
|
1179
1252
|
* @see https://tailwindcss.com/docs/background-repeat
|
|
1180
1253
|
*/
|
|
1181
1254
|
"bg-repeat": [{
|
|
1182
|
-
bg:
|
|
1183
|
-
repeat: ["", "x", "y", "round", "space"]
|
|
1184
|
-
}]
|
|
1255
|
+
bg: de()
|
|
1185
1256
|
}],
|
|
1186
1257
|
/**
|
|
1187
1258
|
* Background Size
|
|
1188
1259
|
* @see https://tailwindcss.com/docs/background-size
|
|
1189
1260
|
*/
|
|
1190
1261
|
"bg-size": [{
|
|
1191
|
-
bg:
|
|
1262
|
+
bg: me()
|
|
1192
1263
|
}],
|
|
1193
1264
|
/**
|
|
1194
1265
|
* Background Image
|
|
@@ -1196,597 +1267,863 @@ const c = (e) => {
|
|
|
1196
1267
|
*/
|
|
1197
1268
|
"bg-image": [{
|
|
1198
1269
|
bg: ["none", {
|
|
1199
|
-
|
|
1200
|
-
|
|
1270
|
+
linear: [{
|
|
1271
|
+
to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
|
|
1272
|
+
}, S, r, o],
|
|
1273
|
+
radial: ["", r, o],
|
|
1274
|
+
conic: [S, r, o]
|
|
1275
|
+
}, so, oo]
|
|
1201
1276
|
}],
|
|
1202
1277
|
/**
|
|
1203
1278
|
* Background Color
|
|
1204
1279
|
* @see https://tailwindcss.com/docs/background-color
|
|
1205
1280
|
*/
|
|
1206
1281
|
"bg-color": [{
|
|
1207
|
-
bg:
|
|
1282
|
+
bg: a()
|
|
1208
1283
|
}],
|
|
1209
1284
|
/**
|
|
1210
1285
|
* Gradient Color Stops From Position
|
|
1211
1286
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1212
1287
|
*/
|
|
1213
1288
|
"gradient-from-pos": [{
|
|
1214
|
-
from:
|
|
1289
|
+
from: Y()
|
|
1215
1290
|
}],
|
|
1216
1291
|
/**
|
|
1217
1292
|
* Gradient Color Stops Via Position
|
|
1218
1293
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1219
1294
|
*/
|
|
1220
1295
|
"gradient-via-pos": [{
|
|
1221
|
-
via:
|
|
1296
|
+
via: Y()
|
|
1222
1297
|
}],
|
|
1223
1298
|
/**
|
|
1224
1299
|
* Gradient Color Stops To Position
|
|
1225
1300
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1226
1301
|
*/
|
|
1227
1302
|
"gradient-to-pos": [{
|
|
1228
|
-
to:
|
|
1303
|
+
to: Y()
|
|
1229
1304
|
}],
|
|
1230
1305
|
/**
|
|
1231
1306
|
* Gradient Color Stops From
|
|
1232
1307
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1233
1308
|
*/
|
|
1234
1309
|
"gradient-from": [{
|
|
1235
|
-
from:
|
|
1310
|
+
from: a()
|
|
1236
1311
|
}],
|
|
1237
1312
|
/**
|
|
1238
1313
|
* Gradient Color Stops Via
|
|
1239
1314
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1240
1315
|
*/
|
|
1241
1316
|
"gradient-via": [{
|
|
1242
|
-
via:
|
|
1317
|
+
via: a()
|
|
1243
1318
|
}],
|
|
1244
1319
|
/**
|
|
1245
1320
|
* Gradient Color Stops To
|
|
1246
1321
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1247
1322
|
*/
|
|
1248
1323
|
"gradient-to": [{
|
|
1249
|
-
to:
|
|
1324
|
+
to: a()
|
|
1250
1325
|
}],
|
|
1251
|
-
//
|
|
1326
|
+
// ---------------
|
|
1327
|
+
// --- Borders ---
|
|
1328
|
+
// ---------------
|
|
1252
1329
|
/**
|
|
1253
1330
|
* Border Radius
|
|
1254
1331
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1255
1332
|
*/
|
|
1256
1333
|
rounded: [{
|
|
1257
|
-
rounded:
|
|
1334
|
+
rounded: x()
|
|
1258
1335
|
}],
|
|
1259
1336
|
/**
|
|
1260
1337
|
* Border Radius Start
|
|
1261
1338
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1262
1339
|
*/
|
|
1263
1340
|
"rounded-s": [{
|
|
1264
|
-
"rounded-s":
|
|
1341
|
+
"rounded-s": x()
|
|
1265
1342
|
}],
|
|
1266
1343
|
/**
|
|
1267
1344
|
* Border Radius End
|
|
1268
1345
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1269
1346
|
*/
|
|
1270
1347
|
"rounded-e": [{
|
|
1271
|
-
"rounded-e":
|
|
1348
|
+
"rounded-e": x()
|
|
1272
1349
|
}],
|
|
1273
1350
|
/**
|
|
1274
1351
|
* Border Radius Top
|
|
1275
1352
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1276
1353
|
*/
|
|
1277
1354
|
"rounded-t": [{
|
|
1278
|
-
"rounded-t":
|
|
1355
|
+
"rounded-t": x()
|
|
1279
1356
|
}],
|
|
1280
1357
|
/**
|
|
1281
1358
|
* Border Radius Right
|
|
1282
1359
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1283
1360
|
*/
|
|
1284
1361
|
"rounded-r": [{
|
|
1285
|
-
"rounded-r":
|
|
1362
|
+
"rounded-r": x()
|
|
1286
1363
|
}],
|
|
1287
1364
|
/**
|
|
1288
1365
|
* Border Radius Bottom
|
|
1289
1366
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1290
1367
|
*/
|
|
1291
1368
|
"rounded-b": [{
|
|
1292
|
-
"rounded-b":
|
|
1369
|
+
"rounded-b": x()
|
|
1293
1370
|
}],
|
|
1294
1371
|
/**
|
|
1295
1372
|
* Border Radius Left
|
|
1296
1373
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1297
1374
|
*/
|
|
1298
1375
|
"rounded-l": [{
|
|
1299
|
-
"rounded-l":
|
|
1376
|
+
"rounded-l": x()
|
|
1300
1377
|
}],
|
|
1301
1378
|
/**
|
|
1302
1379
|
* Border Radius Start Start
|
|
1303
1380
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1304
1381
|
*/
|
|
1305
1382
|
"rounded-ss": [{
|
|
1306
|
-
"rounded-ss":
|
|
1383
|
+
"rounded-ss": x()
|
|
1307
1384
|
}],
|
|
1308
1385
|
/**
|
|
1309
1386
|
* Border Radius Start End
|
|
1310
1387
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1311
1388
|
*/
|
|
1312
1389
|
"rounded-se": [{
|
|
1313
|
-
"rounded-se":
|
|
1390
|
+
"rounded-se": x()
|
|
1314
1391
|
}],
|
|
1315
1392
|
/**
|
|
1316
1393
|
* Border Radius End End
|
|
1317
1394
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1318
1395
|
*/
|
|
1319
1396
|
"rounded-ee": [{
|
|
1320
|
-
"rounded-ee":
|
|
1397
|
+
"rounded-ee": x()
|
|
1321
1398
|
}],
|
|
1322
1399
|
/**
|
|
1323
1400
|
* Border Radius End Start
|
|
1324
1401
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1325
1402
|
*/
|
|
1326
1403
|
"rounded-es": [{
|
|
1327
|
-
"rounded-es":
|
|
1404
|
+
"rounded-es": x()
|
|
1328
1405
|
}],
|
|
1329
1406
|
/**
|
|
1330
1407
|
* Border Radius Top Left
|
|
1331
1408
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1332
1409
|
*/
|
|
1333
1410
|
"rounded-tl": [{
|
|
1334
|
-
"rounded-tl":
|
|
1411
|
+
"rounded-tl": x()
|
|
1335
1412
|
}],
|
|
1336
1413
|
/**
|
|
1337
1414
|
* Border Radius Top Right
|
|
1338
1415
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1339
1416
|
*/
|
|
1340
1417
|
"rounded-tr": [{
|
|
1341
|
-
"rounded-tr":
|
|
1418
|
+
"rounded-tr": x()
|
|
1342
1419
|
}],
|
|
1343
1420
|
/**
|
|
1344
1421
|
* Border Radius Bottom Right
|
|
1345
1422
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1346
1423
|
*/
|
|
1347
1424
|
"rounded-br": [{
|
|
1348
|
-
"rounded-br":
|
|
1425
|
+
"rounded-br": x()
|
|
1349
1426
|
}],
|
|
1350
1427
|
/**
|
|
1351
1428
|
* Border Radius Bottom Left
|
|
1352
1429
|
* @see https://tailwindcss.com/docs/border-radius
|
|
1353
1430
|
*/
|
|
1354
1431
|
"rounded-bl": [{
|
|
1355
|
-
"rounded-bl":
|
|
1432
|
+
"rounded-bl": x()
|
|
1356
1433
|
}],
|
|
1357
1434
|
/**
|
|
1358
1435
|
* Border Width
|
|
1359
1436
|
* @see https://tailwindcss.com/docs/border-width
|
|
1360
1437
|
*/
|
|
1361
1438
|
"border-w": [{
|
|
1362
|
-
border:
|
|
1439
|
+
border: w()
|
|
1363
1440
|
}],
|
|
1364
1441
|
/**
|
|
1365
1442
|
* Border Width X
|
|
1366
1443
|
* @see https://tailwindcss.com/docs/border-width
|
|
1367
1444
|
*/
|
|
1368
1445
|
"border-w-x": [{
|
|
1369
|
-
"border-x":
|
|
1446
|
+
"border-x": w()
|
|
1370
1447
|
}],
|
|
1371
1448
|
/**
|
|
1372
1449
|
* Border Width Y
|
|
1373
1450
|
* @see https://tailwindcss.com/docs/border-width
|
|
1374
1451
|
*/
|
|
1375
1452
|
"border-w-y": [{
|
|
1376
|
-
"border-y":
|
|
1453
|
+
"border-y": w()
|
|
1377
1454
|
}],
|
|
1378
1455
|
/**
|
|
1379
1456
|
* Border Width Start
|
|
1380
1457
|
* @see https://tailwindcss.com/docs/border-width
|
|
1381
1458
|
*/
|
|
1382
1459
|
"border-w-s": [{
|
|
1383
|
-
"border-s":
|
|
1460
|
+
"border-s": w()
|
|
1384
1461
|
}],
|
|
1385
1462
|
/**
|
|
1386
1463
|
* Border Width End
|
|
1387
1464
|
* @see https://tailwindcss.com/docs/border-width
|
|
1388
1465
|
*/
|
|
1389
1466
|
"border-w-e": [{
|
|
1390
|
-
"border-e":
|
|
1467
|
+
"border-e": w()
|
|
1391
1468
|
}],
|
|
1392
1469
|
/**
|
|
1393
1470
|
* Border Width Top
|
|
1394
1471
|
* @see https://tailwindcss.com/docs/border-width
|
|
1395
1472
|
*/
|
|
1396
1473
|
"border-w-t": [{
|
|
1397
|
-
"border-t":
|
|
1474
|
+
"border-t": w()
|
|
1398
1475
|
}],
|
|
1399
1476
|
/**
|
|
1400
1477
|
* Border Width Right
|
|
1401
1478
|
* @see https://tailwindcss.com/docs/border-width
|
|
1402
1479
|
*/
|
|
1403
1480
|
"border-w-r": [{
|
|
1404
|
-
"border-r":
|
|
1481
|
+
"border-r": w()
|
|
1405
1482
|
}],
|
|
1406
1483
|
/**
|
|
1407
1484
|
* Border Width Bottom
|
|
1408
1485
|
* @see https://tailwindcss.com/docs/border-width
|
|
1409
1486
|
*/
|
|
1410
1487
|
"border-w-b": [{
|
|
1411
|
-
"border-b":
|
|
1488
|
+
"border-b": w()
|
|
1412
1489
|
}],
|
|
1413
1490
|
/**
|
|
1414
1491
|
* Border Width Left
|
|
1415
1492
|
* @see https://tailwindcss.com/docs/border-width
|
|
1416
1493
|
*/
|
|
1417
1494
|
"border-w-l": [{
|
|
1418
|
-
"border-l":
|
|
1419
|
-
}],
|
|
1420
|
-
/**
|
|
1421
|
-
* Border Opacity
|
|
1422
|
-
* @see https://tailwindcss.com/docs/border-opacity
|
|
1423
|
-
*/
|
|
1424
|
-
"border-opacity": [{
|
|
1425
|
-
"border-opacity": [f]
|
|
1426
|
-
}],
|
|
1427
|
-
/**
|
|
1428
|
-
* Border Style
|
|
1429
|
-
* @see https://tailwindcss.com/docs/border-style
|
|
1430
|
-
*/
|
|
1431
|
-
"border-style": [{
|
|
1432
|
-
border: [...T(), "hidden"]
|
|
1495
|
+
"border-l": w()
|
|
1433
1496
|
}],
|
|
1434
1497
|
/**
|
|
1435
1498
|
* Divide Width X
|
|
1436
|
-
* @see https://tailwindcss.com/docs/
|
|
1499
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1437
1500
|
*/
|
|
1438
1501
|
"divide-x": [{
|
|
1439
|
-
"divide-x":
|
|
1502
|
+
"divide-x": w()
|
|
1440
1503
|
}],
|
|
1441
1504
|
/**
|
|
1442
1505
|
* Divide Width X Reverse
|
|
1443
|
-
* @see https://tailwindcss.com/docs/
|
|
1506
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1444
1507
|
*/
|
|
1445
1508
|
"divide-x-reverse": ["divide-x-reverse"],
|
|
1446
1509
|
/**
|
|
1447
1510
|
* Divide Width Y
|
|
1448
|
-
* @see https://tailwindcss.com/docs/
|
|
1511
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1449
1512
|
*/
|
|
1450
1513
|
"divide-y": [{
|
|
1451
|
-
"divide-y":
|
|
1514
|
+
"divide-y": w()
|
|
1452
1515
|
}],
|
|
1453
1516
|
/**
|
|
1454
1517
|
* Divide Width Y Reverse
|
|
1455
|
-
* @see https://tailwindcss.com/docs/
|
|
1518
|
+
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
1456
1519
|
*/
|
|
1457
1520
|
"divide-y-reverse": ["divide-y-reverse"],
|
|
1458
1521
|
/**
|
|
1459
|
-
*
|
|
1460
|
-
* @see https://tailwindcss.com/docs/
|
|
1522
|
+
* Border Style
|
|
1523
|
+
* @see https://tailwindcss.com/docs/border-style
|
|
1461
1524
|
*/
|
|
1462
|
-
"
|
|
1463
|
-
"
|
|
1525
|
+
"border-style": [{
|
|
1526
|
+
border: [...q(), "hidden", "none"]
|
|
1464
1527
|
}],
|
|
1465
1528
|
/**
|
|
1466
1529
|
* Divide Style
|
|
1467
|
-
* @see https://tailwindcss.com/docs/
|
|
1530
|
+
* @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
|
|
1468
1531
|
*/
|
|
1469
1532
|
"divide-style": [{
|
|
1470
|
-
divide:
|
|
1533
|
+
divide: [...q(), "hidden", "none"]
|
|
1471
1534
|
}],
|
|
1472
1535
|
/**
|
|
1473
1536
|
* Border Color
|
|
1474
1537
|
* @see https://tailwindcss.com/docs/border-color
|
|
1475
1538
|
*/
|
|
1476
1539
|
"border-color": [{
|
|
1477
|
-
border:
|
|
1540
|
+
border: a()
|
|
1478
1541
|
}],
|
|
1479
1542
|
/**
|
|
1480
1543
|
* Border Color X
|
|
1481
1544
|
* @see https://tailwindcss.com/docs/border-color
|
|
1482
1545
|
*/
|
|
1483
1546
|
"border-color-x": [{
|
|
1484
|
-
"border-x":
|
|
1547
|
+
"border-x": a()
|
|
1485
1548
|
}],
|
|
1486
1549
|
/**
|
|
1487
1550
|
* Border Color Y
|
|
1488
1551
|
* @see https://tailwindcss.com/docs/border-color
|
|
1489
1552
|
*/
|
|
1490
1553
|
"border-color-y": [{
|
|
1491
|
-
"border-y":
|
|
1554
|
+
"border-y": a()
|
|
1492
1555
|
}],
|
|
1493
1556
|
/**
|
|
1494
1557
|
* Border Color S
|
|
1495
1558
|
* @see https://tailwindcss.com/docs/border-color
|
|
1496
1559
|
*/
|
|
1497
1560
|
"border-color-s": [{
|
|
1498
|
-
"border-s":
|
|
1561
|
+
"border-s": a()
|
|
1499
1562
|
}],
|
|
1500
1563
|
/**
|
|
1501
1564
|
* Border Color E
|
|
1502
1565
|
* @see https://tailwindcss.com/docs/border-color
|
|
1503
1566
|
*/
|
|
1504
1567
|
"border-color-e": [{
|
|
1505
|
-
"border-e":
|
|
1568
|
+
"border-e": a()
|
|
1506
1569
|
}],
|
|
1507
1570
|
/**
|
|
1508
1571
|
* Border Color Top
|
|
1509
1572
|
* @see https://tailwindcss.com/docs/border-color
|
|
1510
1573
|
*/
|
|
1511
1574
|
"border-color-t": [{
|
|
1512
|
-
"border-t":
|
|
1575
|
+
"border-t": a()
|
|
1513
1576
|
}],
|
|
1514
1577
|
/**
|
|
1515
1578
|
* Border Color Right
|
|
1516
1579
|
* @see https://tailwindcss.com/docs/border-color
|
|
1517
1580
|
*/
|
|
1518
1581
|
"border-color-r": [{
|
|
1519
|
-
"border-r":
|
|
1582
|
+
"border-r": a()
|
|
1520
1583
|
}],
|
|
1521
1584
|
/**
|
|
1522
1585
|
* Border Color Bottom
|
|
1523
1586
|
* @see https://tailwindcss.com/docs/border-color
|
|
1524
1587
|
*/
|
|
1525
1588
|
"border-color-b": [{
|
|
1526
|
-
"border-b":
|
|
1589
|
+
"border-b": a()
|
|
1527
1590
|
}],
|
|
1528
1591
|
/**
|
|
1529
1592
|
* Border Color Left
|
|
1530
1593
|
* @see https://tailwindcss.com/docs/border-color
|
|
1531
1594
|
*/
|
|
1532
1595
|
"border-color-l": [{
|
|
1533
|
-
"border-l":
|
|
1596
|
+
"border-l": a()
|
|
1534
1597
|
}],
|
|
1535
1598
|
/**
|
|
1536
1599
|
* Divide Color
|
|
1537
1600
|
* @see https://tailwindcss.com/docs/divide-color
|
|
1538
1601
|
*/
|
|
1539
1602
|
"divide-color": [{
|
|
1540
|
-
divide:
|
|
1603
|
+
divide: a()
|
|
1541
1604
|
}],
|
|
1542
1605
|
/**
|
|
1543
1606
|
* Outline Style
|
|
1544
1607
|
* @see https://tailwindcss.com/docs/outline-style
|
|
1545
1608
|
*/
|
|
1546
1609
|
"outline-style": [{
|
|
1547
|
-
outline: ["",
|
|
1610
|
+
outline: [...q(), "none", "hidden"]
|
|
1548
1611
|
}],
|
|
1549
1612
|
/**
|
|
1550
1613
|
* Outline Offset
|
|
1551
1614
|
* @see https://tailwindcss.com/docs/outline-offset
|
|
1552
1615
|
*/
|
|
1553
1616
|
"outline-offset": [{
|
|
1554
|
-
"outline-offset": [
|
|
1617
|
+
"outline-offset": [d, r, o]
|
|
1555
1618
|
}],
|
|
1556
1619
|
/**
|
|
1557
1620
|
* Outline Width
|
|
1558
1621
|
* @see https://tailwindcss.com/docs/outline-width
|
|
1559
1622
|
*/
|
|
1560
1623
|
"outline-w": [{
|
|
1561
|
-
outline: [
|
|
1624
|
+
outline: ["", d, W, R]
|
|
1562
1625
|
}],
|
|
1563
1626
|
/**
|
|
1564
1627
|
* Outline Color
|
|
1565
1628
|
* @see https://tailwindcss.com/docs/outline-color
|
|
1566
1629
|
*/
|
|
1567
1630
|
"outline-color": [{
|
|
1568
|
-
outline:
|
|
1631
|
+
outline: a()
|
|
1632
|
+
}],
|
|
1633
|
+
// ---------------
|
|
1634
|
+
// --- Effects ---
|
|
1635
|
+
// ---------------
|
|
1636
|
+
/**
|
|
1637
|
+
* Box Shadow
|
|
1638
|
+
* @see https://tailwindcss.com/docs/box-shadow
|
|
1639
|
+
*/
|
|
1640
|
+
shadow: [{
|
|
1641
|
+
shadow: [
|
|
1642
|
+
// Deprecated since Tailwind CSS v4.0.0
|
|
1643
|
+
"",
|
|
1644
|
+
"none",
|
|
1645
|
+
h,
|
|
1646
|
+
K,
|
|
1647
|
+
D
|
|
1648
|
+
]
|
|
1649
|
+
}],
|
|
1650
|
+
/**
|
|
1651
|
+
* Box Shadow Color
|
|
1652
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
|
|
1653
|
+
*/
|
|
1654
|
+
"shadow-color": [{
|
|
1655
|
+
shadow: a()
|
|
1656
|
+
}],
|
|
1657
|
+
/**
|
|
1658
|
+
* Inset Box Shadow
|
|
1659
|
+
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
|
|
1660
|
+
*/
|
|
1661
|
+
"inset-shadow": [{
|
|
1662
|
+
"inset-shadow": ["none", M, K, D]
|
|
1663
|
+
}],
|
|
1664
|
+
/**
|
|
1665
|
+
* Inset Box Shadow Color
|
|
1666
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
|
|
1667
|
+
*/
|
|
1668
|
+
"inset-shadow-color": [{
|
|
1669
|
+
"inset-shadow": a()
|
|
1569
1670
|
}],
|
|
1570
1671
|
/**
|
|
1571
1672
|
* Ring Width
|
|
1572
|
-
* @see https://tailwindcss.com/docs/ring
|
|
1673
|
+
* @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
|
|
1573
1674
|
*/
|
|
1574
1675
|
"ring-w": [{
|
|
1575
|
-
ring:
|
|
1676
|
+
ring: w()
|
|
1576
1677
|
}],
|
|
1577
1678
|
/**
|
|
1578
1679
|
* Ring Width Inset
|
|
1579
|
-
* @see https://tailwindcss.com/docs/ring-width
|
|
1680
|
+
* @see https://v3.tailwindcss.com/docs/ring-width#inset-rings
|
|
1681
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
1682
|
+
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1580
1683
|
*/
|
|
1581
1684
|
"ring-w-inset": ["ring-inset"],
|
|
1582
1685
|
/**
|
|
1583
1686
|
* Ring Color
|
|
1584
|
-
* @see https://tailwindcss.com/docs/ring-color
|
|
1687
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
|
|
1585
1688
|
*/
|
|
1586
1689
|
"ring-color": [{
|
|
1587
|
-
ring:
|
|
1588
|
-
}],
|
|
1589
|
-
/**
|
|
1590
|
-
* Ring Opacity
|
|
1591
|
-
* @see https://tailwindcss.com/docs/ring-opacity
|
|
1592
|
-
*/
|
|
1593
|
-
"ring-opacity": [{
|
|
1594
|
-
"ring-opacity": [f]
|
|
1690
|
+
ring: a()
|
|
1595
1691
|
}],
|
|
1596
1692
|
/**
|
|
1597
1693
|
* Ring Offset Width
|
|
1598
|
-
* @see https://tailwindcss.com/docs/ring-offset-width
|
|
1694
|
+
* @see https://v3.tailwindcss.com/docs/ring-offset-width
|
|
1695
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
1696
|
+
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1599
1697
|
*/
|
|
1600
1698
|
"ring-offset-w": [{
|
|
1601
|
-
"ring-offset": [
|
|
1699
|
+
"ring-offset": [d, R]
|
|
1602
1700
|
}],
|
|
1603
1701
|
/**
|
|
1604
1702
|
* Ring Offset Color
|
|
1605
|
-
* @see https://tailwindcss.com/docs/ring-offset-color
|
|
1703
|
+
* @see https://v3.tailwindcss.com/docs/ring-offset-color
|
|
1704
|
+
* @deprecated since Tailwind CSS v4.0.0
|
|
1705
|
+
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
1606
1706
|
*/
|
|
1607
1707
|
"ring-offset-color": [{
|
|
1608
|
-
"ring-offset":
|
|
1708
|
+
"ring-offset": a()
|
|
1609
1709
|
}],
|
|
1610
|
-
// Effects
|
|
1611
1710
|
/**
|
|
1612
|
-
*
|
|
1613
|
-
* @see https://tailwindcss.com/docs/box-shadow
|
|
1711
|
+
* Inset Ring Width
|
|
1712
|
+
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
|
|
1614
1713
|
*/
|
|
1615
|
-
|
|
1616
|
-
|
|
1714
|
+
"inset-ring-w": [{
|
|
1715
|
+
"inset-ring": w()
|
|
1617
1716
|
}],
|
|
1618
1717
|
/**
|
|
1619
|
-
*
|
|
1620
|
-
* @see https://tailwindcss.com/docs/box-shadow-color
|
|
1718
|
+
* Inset Ring Color
|
|
1719
|
+
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
|
|
1621
1720
|
*/
|
|
1622
|
-
"
|
|
1623
|
-
|
|
1721
|
+
"inset-ring-color": [{
|
|
1722
|
+
"inset-ring": a()
|
|
1723
|
+
}],
|
|
1724
|
+
/**
|
|
1725
|
+
* Text Shadow
|
|
1726
|
+
* @see https://tailwindcss.com/docs/text-shadow
|
|
1727
|
+
*/
|
|
1728
|
+
"text-shadow": [{
|
|
1729
|
+
"text-shadow": ["none", O, K, D]
|
|
1730
|
+
}],
|
|
1731
|
+
/**
|
|
1732
|
+
* Text Shadow Color
|
|
1733
|
+
* @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
|
|
1734
|
+
*/
|
|
1735
|
+
"text-shadow-color": [{
|
|
1736
|
+
"text-shadow": a()
|
|
1624
1737
|
}],
|
|
1625
1738
|
/**
|
|
1626
1739
|
* Opacity
|
|
1627
1740
|
* @see https://tailwindcss.com/docs/opacity
|
|
1628
1741
|
*/
|
|
1629
1742
|
opacity: [{
|
|
1630
|
-
opacity: [
|
|
1743
|
+
opacity: [d, r, o]
|
|
1631
1744
|
}],
|
|
1632
1745
|
/**
|
|
1633
1746
|
* Mix Blend Mode
|
|
1634
1747
|
* @see https://tailwindcss.com/docs/mix-blend-mode
|
|
1635
1748
|
*/
|
|
1636
1749
|
"mix-blend": [{
|
|
1637
|
-
"mix-blend": [...
|
|
1750
|
+
"mix-blend": [...pe(), "plus-darker", "plus-lighter"]
|
|
1638
1751
|
}],
|
|
1639
1752
|
/**
|
|
1640
1753
|
* Background Blend Mode
|
|
1641
1754
|
* @see https://tailwindcss.com/docs/background-blend-mode
|
|
1642
1755
|
*/
|
|
1643
1756
|
"bg-blend": [{
|
|
1644
|
-
"bg-blend":
|
|
1757
|
+
"bg-blend": pe()
|
|
1758
|
+
}],
|
|
1759
|
+
/**
|
|
1760
|
+
* Mask Clip
|
|
1761
|
+
* @see https://tailwindcss.com/docs/mask-clip
|
|
1762
|
+
*/
|
|
1763
|
+
"mask-clip": [{
|
|
1764
|
+
"mask-clip": ["border", "padding", "content", "fill", "stroke", "view"]
|
|
1765
|
+
}, "mask-no-clip"],
|
|
1766
|
+
/**
|
|
1767
|
+
* Mask Composite
|
|
1768
|
+
* @see https://tailwindcss.com/docs/mask-composite
|
|
1769
|
+
*/
|
|
1770
|
+
"mask-composite": [{
|
|
1771
|
+
mask: ["add", "subtract", "intersect", "exclude"]
|
|
1772
|
+
}],
|
|
1773
|
+
/**
|
|
1774
|
+
* Mask Image
|
|
1775
|
+
* @see https://tailwindcss.com/docs/mask-image
|
|
1776
|
+
*/
|
|
1777
|
+
"mask-image-linear-pos": [{
|
|
1778
|
+
"mask-linear": [d]
|
|
1779
|
+
}],
|
|
1780
|
+
"mask-image-linear-from-pos": [{
|
|
1781
|
+
"mask-linear-from": b()
|
|
1782
|
+
}],
|
|
1783
|
+
"mask-image-linear-to-pos": [{
|
|
1784
|
+
"mask-linear-to": b()
|
|
1785
|
+
}],
|
|
1786
|
+
"mask-image-linear-from-color": [{
|
|
1787
|
+
"mask-linear-from": a()
|
|
1788
|
+
}],
|
|
1789
|
+
"mask-image-linear-to-color": [{
|
|
1790
|
+
"mask-linear-to": a()
|
|
1791
|
+
}],
|
|
1792
|
+
"mask-image-t-from-pos": [{
|
|
1793
|
+
"mask-t-from": b()
|
|
1794
|
+
}],
|
|
1795
|
+
"mask-image-t-to-pos": [{
|
|
1796
|
+
"mask-t-to": b()
|
|
1797
|
+
}],
|
|
1798
|
+
"mask-image-t-from-color": [{
|
|
1799
|
+
"mask-t-from": a()
|
|
1800
|
+
}],
|
|
1801
|
+
"mask-image-t-to-color": [{
|
|
1802
|
+
"mask-t-to": a()
|
|
1803
|
+
}],
|
|
1804
|
+
"mask-image-r-from-pos": [{
|
|
1805
|
+
"mask-r-from": b()
|
|
1806
|
+
}],
|
|
1807
|
+
"mask-image-r-to-pos": [{
|
|
1808
|
+
"mask-r-to": b()
|
|
1809
|
+
}],
|
|
1810
|
+
"mask-image-r-from-color": [{
|
|
1811
|
+
"mask-r-from": a()
|
|
1812
|
+
}],
|
|
1813
|
+
"mask-image-r-to-color": [{
|
|
1814
|
+
"mask-r-to": a()
|
|
1815
|
+
}],
|
|
1816
|
+
"mask-image-b-from-pos": [{
|
|
1817
|
+
"mask-b-from": b()
|
|
1818
|
+
}],
|
|
1819
|
+
"mask-image-b-to-pos": [{
|
|
1820
|
+
"mask-b-to": b()
|
|
1821
|
+
}],
|
|
1822
|
+
"mask-image-b-from-color": [{
|
|
1823
|
+
"mask-b-from": a()
|
|
1824
|
+
}],
|
|
1825
|
+
"mask-image-b-to-color": [{
|
|
1826
|
+
"mask-b-to": a()
|
|
1827
|
+
}],
|
|
1828
|
+
"mask-image-l-from-pos": [{
|
|
1829
|
+
"mask-l-from": b()
|
|
1830
|
+
}],
|
|
1831
|
+
"mask-image-l-to-pos": [{
|
|
1832
|
+
"mask-l-to": b()
|
|
1833
|
+
}],
|
|
1834
|
+
"mask-image-l-from-color": [{
|
|
1835
|
+
"mask-l-from": a()
|
|
1836
|
+
}],
|
|
1837
|
+
"mask-image-l-to-color": [{
|
|
1838
|
+
"mask-l-to": a()
|
|
1839
|
+
}],
|
|
1840
|
+
"mask-image-x-from-pos": [{
|
|
1841
|
+
"mask-x-from": b()
|
|
1842
|
+
}],
|
|
1843
|
+
"mask-image-x-to-pos": [{
|
|
1844
|
+
"mask-x-to": b()
|
|
1845
|
+
}],
|
|
1846
|
+
"mask-image-x-from-color": [{
|
|
1847
|
+
"mask-x-from": a()
|
|
1848
|
+
}],
|
|
1849
|
+
"mask-image-x-to-color": [{
|
|
1850
|
+
"mask-x-to": a()
|
|
1851
|
+
}],
|
|
1852
|
+
"mask-image-y-from-pos": [{
|
|
1853
|
+
"mask-y-from": b()
|
|
1854
|
+
}],
|
|
1855
|
+
"mask-image-y-to-pos": [{
|
|
1856
|
+
"mask-y-to": b()
|
|
1857
|
+
}],
|
|
1858
|
+
"mask-image-y-from-color": [{
|
|
1859
|
+
"mask-y-from": a()
|
|
1860
|
+
}],
|
|
1861
|
+
"mask-image-y-to-color": [{
|
|
1862
|
+
"mask-y-to": a()
|
|
1863
|
+
}],
|
|
1864
|
+
"mask-image-radial": [{
|
|
1865
|
+
"mask-radial": [r, o]
|
|
1866
|
+
}],
|
|
1867
|
+
"mask-image-radial-from-pos": [{
|
|
1868
|
+
"mask-radial-from": b()
|
|
1869
|
+
}],
|
|
1870
|
+
"mask-image-radial-to-pos": [{
|
|
1871
|
+
"mask-radial-to": b()
|
|
1872
|
+
}],
|
|
1873
|
+
"mask-image-radial-from-color": [{
|
|
1874
|
+
"mask-radial-from": a()
|
|
1875
|
+
}],
|
|
1876
|
+
"mask-image-radial-to-color": [{
|
|
1877
|
+
"mask-radial-to": a()
|
|
1878
|
+
}],
|
|
1879
|
+
"mask-image-radial-shape": [{
|
|
1880
|
+
"mask-radial": ["circle", "ellipse"]
|
|
1881
|
+
}],
|
|
1882
|
+
"mask-image-radial-size": [{
|
|
1883
|
+
"mask-radial": [{
|
|
1884
|
+
closest: ["side", "corner"],
|
|
1885
|
+
farthest: ["side", "corner"]
|
|
1886
|
+
}]
|
|
1887
|
+
}],
|
|
1888
|
+
"mask-image-radial-pos": [{
|
|
1889
|
+
"mask-radial-at": T()
|
|
1890
|
+
}],
|
|
1891
|
+
"mask-image-conic-pos": [{
|
|
1892
|
+
"mask-conic": [d]
|
|
1893
|
+
}],
|
|
1894
|
+
"mask-image-conic-from-pos": [{
|
|
1895
|
+
"mask-conic-from": b()
|
|
1896
|
+
}],
|
|
1897
|
+
"mask-image-conic-to-pos": [{
|
|
1898
|
+
"mask-conic-to": b()
|
|
1899
|
+
}],
|
|
1900
|
+
"mask-image-conic-from-color": [{
|
|
1901
|
+
"mask-conic-from": a()
|
|
1902
|
+
}],
|
|
1903
|
+
"mask-image-conic-to-color": [{
|
|
1904
|
+
"mask-conic-to": a()
|
|
1905
|
+
}],
|
|
1906
|
+
/**
|
|
1907
|
+
* Mask Mode
|
|
1908
|
+
* @see https://tailwindcss.com/docs/mask-mode
|
|
1909
|
+
*/
|
|
1910
|
+
"mask-mode": [{
|
|
1911
|
+
mask: ["alpha", "luminance", "match"]
|
|
1912
|
+
}],
|
|
1913
|
+
/**
|
|
1914
|
+
* Mask Origin
|
|
1915
|
+
* @see https://tailwindcss.com/docs/mask-origin
|
|
1916
|
+
*/
|
|
1917
|
+
"mask-origin": [{
|
|
1918
|
+
"mask-origin": ["border", "padding", "content", "fill", "stroke", "view"]
|
|
1919
|
+
}],
|
|
1920
|
+
/**
|
|
1921
|
+
* Mask Position
|
|
1922
|
+
* @see https://tailwindcss.com/docs/mask-position
|
|
1923
|
+
*/
|
|
1924
|
+
"mask-position": [{
|
|
1925
|
+
mask: ce()
|
|
1645
1926
|
}],
|
|
1646
|
-
|
|
1927
|
+
/**
|
|
1928
|
+
* Mask Repeat
|
|
1929
|
+
* @see https://tailwindcss.com/docs/mask-repeat
|
|
1930
|
+
*/
|
|
1931
|
+
"mask-repeat": [{
|
|
1932
|
+
mask: de()
|
|
1933
|
+
}],
|
|
1934
|
+
/**
|
|
1935
|
+
* Mask Size
|
|
1936
|
+
* @see https://tailwindcss.com/docs/mask-size
|
|
1937
|
+
*/
|
|
1938
|
+
"mask-size": [{
|
|
1939
|
+
mask: me()
|
|
1940
|
+
}],
|
|
1941
|
+
/**
|
|
1942
|
+
* Mask Type
|
|
1943
|
+
* @see https://tailwindcss.com/docs/mask-type
|
|
1944
|
+
*/
|
|
1945
|
+
"mask-type": [{
|
|
1946
|
+
"mask-type": ["alpha", "luminance"]
|
|
1947
|
+
}],
|
|
1948
|
+
/**
|
|
1949
|
+
* Mask Image
|
|
1950
|
+
* @see https://tailwindcss.com/docs/mask-image
|
|
1951
|
+
*/
|
|
1952
|
+
"mask-image": [{
|
|
1953
|
+
mask: ["none", r, o]
|
|
1954
|
+
}],
|
|
1955
|
+
// ---------------
|
|
1956
|
+
// --- Filters ---
|
|
1957
|
+
// ---------------
|
|
1647
1958
|
/**
|
|
1648
1959
|
* Filter
|
|
1649
|
-
* @deprecated since Tailwind CSS v3.0.0
|
|
1650
1960
|
* @see https://tailwindcss.com/docs/filter
|
|
1651
1961
|
*/
|
|
1652
1962
|
filter: [{
|
|
1653
|
-
filter: [
|
|
1963
|
+
filter: [
|
|
1964
|
+
// Deprecated since Tailwind CSS v3.0.0
|
|
1965
|
+
"",
|
|
1966
|
+
"none",
|
|
1967
|
+
r,
|
|
1968
|
+
o
|
|
1969
|
+
]
|
|
1654
1970
|
}],
|
|
1655
1971
|
/**
|
|
1656
1972
|
* Blur
|
|
1657
1973
|
* @see https://tailwindcss.com/docs/blur
|
|
1658
1974
|
*/
|
|
1659
1975
|
blur: [{
|
|
1660
|
-
blur:
|
|
1976
|
+
blur: ue()
|
|
1661
1977
|
}],
|
|
1662
1978
|
/**
|
|
1663
1979
|
* Brightness
|
|
1664
1980
|
* @see https://tailwindcss.com/docs/brightness
|
|
1665
1981
|
*/
|
|
1666
1982
|
brightness: [{
|
|
1667
|
-
brightness: [o]
|
|
1983
|
+
brightness: [d, r, o]
|
|
1668
1984
|
}],
|
|
1669
1985
|
/**
|
|
1670
1986
|
* Contrast
|
|
1671
1987
|
* @see https://tailwindcss.com/docs/contrast
|
|
1672
1988
|
*/
|
|
1673
1989
|
contrast: [{
|
|
1674
|
-
contrast: [
|
|
1990
|
+
contrast: [d, r, o]
|
|
1675
1991
|
}],
|
|
1676
1992
|
/**
|
|
1677
1993
|
* Drop Shadow
|
|
1678
1994
|
* @see https://tailwindcss.com/docs/drop-shadow
|
|
1679
1995
|
*/
|
|
1680
1996
|
"drop-shadow": [{
|
|
1681
|
-
"drop-shadow": [
|
|
1997
|
+
"drop-shadow": [
|
|
1998
|
+
// Deprecated since Tailwind CSS v4.0.0
|
|
1999
|
+
"",
|
|
2000
|
+
"none",
|
|
2001
|
+
F,
|
|
2002
|
+
K,
|
|
2003
|
+
D
|
|
2004
|
+
]
|
|
2005
|
+
}],
|
|
2006
|
+
/**
|
|
2007
|
+
* Drop Shadow Color
|
|
2008
|
+
* @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
|
|
2009
|
+
*/
|
|
2010
|
+
"drop-shadow-color": [{
|
|
2011
|
+
"drop-shadow": a()
|
|
1682
2012
|
}],
|
|
1683
2013
|
/**
|
|
1684
2014
|
* Grayscale
|
|
1685
2015
|
* @see https://tailwindcss.com/docs/grayscale
|
|
1686
2016
|
*/
|
|
1687
2017
|
grayscale: [{
|
|
1688
|
-
grayscale: [
|
|
2018
|
+
grayscale: ["", d, r, o]
|
|
1689
2019
|
}],
|
|
1690
2020
|
/**
|
|
1691
2021
|
* Hue Rotate
|
|
1692
2022
|
* @see https://tailwindcss.com/docs/hue-rotate
|
|
1693
2023
|
*/
|
|
1694
2024
|
"hue-rotate": [{
|
|
1695
|
-
"hue-rotate": [
|
|
2025
|
+
"hue-rotate": [d, r, o]
|
|
1696
2026
|
}],
|
|
1697
2027
|
/**
|
|
1698
2028
|
* Invert
|
|
1699
2029
|
* @see https://tailwindcss.com/docs/invert
|
|
1700
2030
|
*/
|
|
1701
2031
|
invert: [{
|
|
1702
|
-
invert: [
|
|
2032
|
+
invert: ["", d, r, o]
|
|
1703
2033
|
}],
|
|
1704
2034
|
/**
|
|
1705
2035
|
* Saturate
|
|
1706
2036
|
* @see https://tailwindcss.com/docs/saturate
|
|
1707
2037
|
*/
|
|
1708
2038
|
saturate: [{
|
|
1709
|
-
saturate: [
|
|
2039
|
+
saturate: [d, r, o]
|
|
1710
2040
|
}],
|
|
1711
2041
|
/**
|
|
1712
2042
|
* Sepia
|
|
1713
2043
|
* @see https://tailwindcss.com/docs/sepia
|
|
1714
2044
|
*/
|
|
1715
2045
|
sepia: [{
|
|
1716
|
-
sepia: [
|
|
2046
|
+
sepia: ["", d, r, o]
|
|
1717
2047
|
}],
|
|
1718
2048
|
/**
|
|
1719
2049
|
* Backdrop Filter
|
|
1720
|
-
* @deprecated since Tailwind CSS v3.0.0
|
|
1721
2050
|
* @see https://tailwindcss.com/docs/backdrop-filter
|
|
1722
2051
|
*/
|
|
1723
2052
|
"backdrop-filter": [{
|
|
1724
|
-
"backdrop-filter": [
|
|
2053
|
+
"backdrop-filter": [
|
|
2054
|
+
// Deprecated since Tailwind CSS v3.0.0
|
|
2055
|
+
"",
|
|
2056
|
+
"none",
|
|
2057
|
+
r,
|
|
2058
|
+
o
|
|
2059
|
+
]
|
|
1725
2060
|
}],
|
|
1726
2061
|
/**
|
|
1727
2062
|
* Backdrop Blur
|
|
1728
2063
|
* @see https://tailwindcss.com/docs/backdrop-blur
|
|
1729
2064
|
*/
|
|
1730
2065
|
"backdrop-blur": [{
|
|
1731
|
-
"backdrop-blur":
|
|
2066
|
+
"backdrop-blur": ue()
|
|
1732
2067
|
}],
|
|
1733
2068
|
/**
|
|
1734
2069
|
* Backdrop Brightness
|
|
1735
2070
|
* @see https://tailwindcss.com/docs/backdrop-brightness
|
|
1736
2071
|
*/
|
|
1737
2072
|
"backdrop-brightness": [{
|
|
1738
|
-
"backdrop-brightness": [o]
|
|
2073
|
+
"backdrop-brightness": [d, r, o]
|
|
1739
2074
|
}],
|
|
1740
2075
|
/**
|
|
1741
2076
|
* Backdrop Contrast
|
|
1742
2077
|
* @see https://tailwindcss.com/docs/backdrop-contrast
|
|
1743
2078
|
*/
|
|
1744
2079
|
"backdrop-contrast": [{
|
|
1745
|
-
"backdrop-contrast": [
|
|
2080
|
+
"backdrop-contrast": [d, r, o]
|
|
1746
2081
|
}],
|
|
1747
2082
|
/**
|
|
1748
2083
|
* Backdrop Grayscale
|
|
1749
2084
|
* @see https://tailwindcss.com/docs/backdrop-grayscale
|
|
1750
2085
|
*/
|
|
1751
2086
|
"backdrop-grayscale": [{
|
|
1752
|
-
"backdrop-grayscale": [
|
|
2087
|
+
"backdrop-grayscale": ["", d, r, o]
|
|
1753
2088
|
}],
|
|
1754
2089
|
/**
|
|
1755
2090
|
* Backdrop Hue Rotate
|
|
1756
2091
|
* @see https://tailwindcss.com/docs/backdrop-hue-rotate
|
|
1757
2092
|
*/
|
|
1758
2093
|
"backdrop-hue-rotate": [{
|
|
1759
|
-
"backdrop-hue-rotate": [
|
|
2094
|
+
"backdrop-hue-rotate": [d, r, o]
|
|
1760
2095
|
}],
|
|
1761
2096
|
/**
|
|
1762
2097
|
* Backdrop Invert
|
|
1763
2098
|
* @see https://tailwindcss.com/docs/backdrop-invert
|
|
1764
2099
|
*/
|
|
1765
2100
|
"backdrop-invert": [{
|
|
1766
|
-
"backdrop-invert": [
|
|
2101
|
+
"backdrop-invert": ["", d, r, o]
|
|
1767
2102
|
}],
|
|
1768
2103
|
/**
|
|
1769
2104
|
* Backdrop Opacity
|
|
1770
2105
|
* @see https://tailwindcss.com/docs/backdrop-opacity
|
|
1771
2106
|
*/
|
|
1772
2107
|
"backdrop-opacity": [{
|
|
1773
|
-
"backdrop-opacity": [
|
|
2108
|
+
"backdrop-opacity": [d, r, o]
|
|
1774
2109
|
}],
|
|
1775
2110
|
/**
|
|
1776
2111
|
* Backdrop Saturate
|
|
1777
2112
|
* @see https://tailwindcss.com/docs/backdrop-saturate
|
|
1778
2113
|
*/
|
|
1779
2114
|
"backdrop-saturate": [{
|
|
1780
|
-
"backdrop-saturate": [
|
|
2115
|
+
"backdrop-saturate": [d, r, o]
|
|
1781
2116
|
}],
|
|
1782
2117
|
/**
|
|
1783
2118
|
* Backdrop Sepia
|
|
1784
2119
|
* @see https://tailwindcss.com/docs/backdrop-sepia
|
|
1785
2120
|
*/
|
|
1786
2121
|
"backdrop-sepia": [{
|
|
1787
|
-
"backdrop-sepia": [
|
|
2122
|
+
"backdrop-sepia": ["", d, r, o]
|
|
1788
2123
|
}],
|
|
1789
|
-
//
|
|
2124
|
+
// --------------
|
|
2125
|
+
// --- Tables ---
|
|
2126
|
+
// --------------
|
|
1790
2127
|
/**
|
|
1791
2128
|
* Border Collapse
|
|
1792
2129
|
* @see https://tailwindcss.com/docs/border-collapse
|
|
@@ -1799,21 +2136,21 @@ const c = (e) => {
|
|
|
1799
2136
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
1800
2137
|
*/
|
|
1801
2138
|
"border-spacing": [{
|
|
1802
|
-
"border-spacing":
|
|
2139
|
+
"border-spacing": l()
|
|
1803
2140
|
}],
|
|
1804
2141
|
/**
|
|
1805
2142
|
* Border Spacing X
|
|
1806
2143
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
1807
2144
|
*/
|
|
1808
2145
|
"border-spacing-x": [{
|
|
1809
|
-
"border-spacing-x":
|
|
2146
|
+
"border-spacing-x": l()
|
|
1810
2147
|
}],
|
|
1811
2148
|
/**
|
|
1812
2149
|
* Border Spacing Y
|
|
1813
2150
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
1814
2151
|
*/
|
|
1815
2152
|
"border-spacing-y": [{
|
|
1816
|
-
"border-spacing-y":
|
|
2153
|
+
"border-spacing-y": l()
|
|
1817
2154
|
}],
|
|
1818
2155
|
/**
|
|
1819
2156
|
* Table Layout
|
|
@@ -1829,120 +2166,220 @@ const c = (e) => {
|
|
|
1829
2166
|
caption: [{
|
|
1830
2167
|
caption: ["top", "bottom"]
|
|
1831
2168
|
}],
|
|
1832
|
-
//
|
|
2169
|
+
// ---------------------------------
|
|
2170
|
+
// --- Transitions and Animation ---
|
|
2171
|
+
// ---------------------------------
|
|
1833
2172
|
/**
|
|
1834
|
-
*
|
|
2173
|
+
* Transition Property
|
|
1835
2174
|
* @see https://tailwindcss.com/docs/transition-property
|
|
1836
2175
|
*/
|
|
1837
2176
|
transition: [{
|
|
1838
|
-
transition: ["
|
|
2177
|
+
transition: ["", "all", "colors", "opacity", "shadow", "transform", "none", r, o]
|
|
2178
|
+
}],
|
|
2179
|
+
/**
|
|
2180
|
+
* Transition Behavior
|
|
2181
|
+
* @see https://tailwindcss.com/docs/transition-behavior
|
|
2182
|
+
*/
|
|
2183
|
+
"transition-behavior": [{
|
|
2184
|
+
transition: ["normal", "discrete"]
|
|
1839
2185
|
}],
|
|
1840
2186
|
/**
|
|
1841
2187
|
* Transition Duration
|
|
1842
2188
|
* @see https://tailwindcss.com/docs/transition-duration
|
|
1843
2189
|
*/
|
|
1844
2190
|
duration: [{
|
|
1845
|
-
duration:
|
|
2191
|
+
duration: [d, "initial", r, o]
|
|
1846
2192
|
}],
|
|
1847
2193
|
/**
|
|
1848
2194
|
* Transition Timing Function
|
|
1849
2195
|
* @see https://tailwindcss.com/docs/transition-timing-function
|
|
1850
2196
|
*/
|
|
1851
2197
|
ease: [{
|
|
1852
|
-
ease: ["linear", "
|
|
2198
|
+
ease: ["linear", "initial", A, r, o]
|
|
1853
2199
|
}],
|
|
1854
2200
|
/**
|
|
1855
2201
|
* Transition Delay
|
|
1856
2202
|
* @see https://tailwindcss.com/docs/transition-delay
|
|
1857
2203
|
*/
|
|
1858
2204
|
delay: [{
|
|
1859
|
-
delay:
|
|
2205
|
+
delay: [d, r, o]
|
|
1860
2206
|
}],
|
|
1861
2207
|
/**
|
|
1862
2208
|
* Animation
|
|
1863
2209
|
* @see https://tailwindcss.com/docs/animation
|
|
1864
2210
|
*/
|
|
1865
2211
|
animate: [{
|
|
1866
|
-
animate: ["none",
|
|
2212
|
+
animate: ["none", $, r, o]
|
|
1867
2213
|
}],
|
|
1868
|
-
//
|
|
2214
|
+
// ------------------
|
|
2215
|
+
// --- Transforms ---
|
|
2216
|
+
// ------------------
|
|
1869
2217
|
/**
|
|
1870
|
-
*
|
|
1871
|
-
* @see https://tailwindcss.com/docs/
|
|
2218
|
+
* Backface Visibility
|
|
2219
|
+
* @see https://tailwindcss.com/docs/backface-visibility
|
|
1872
2220
|
*/
|
|
1873
|
-
|
|
1874
|
-
|
|
2221
|
+
backface: [{
|
|
2222
|
+
backface: ["hidden", "visible"]
|
|
2223
|
+
}],
|
|
2224
|
+
/**
|
|
2225
|
+
* Perspective
|
|
2226
|
+
* @see https://tailwindcss.com/docs/perspective
|
|
2227
|
+
*/
|
|
2228
|
+
perspective: [{
|
|
2229
|
+
perspective: [y, r, o]
|
|
2230
|
+
}],
|
|
2231
|
+
/**
|
|
2232
|
+
* Perspective Origin
|
|
2233
|
+
* @see https://tailwindcss.com/docs/perspective-origin
|
|
2234
|
+
*/
|
|
2235
|
+
"perspective-origin": [{
|
|
2236
|
+
"perspective-origin": E()
|
|
2237
|
+
}],
|
|
2238
|
+
/**
|
|
2239
|
+
* Rotate
|
|
2240
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2241
|
+
*/
|
|
2242
|
+
rotate: [{
|
|
2243
|
+
rotate: H()
|
|
2244
|
+
}],
|
|
2245
|
+
/**
|
|
2246
|
+
* Rotate X
|
|
2247
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2248
|
+
*/
|
|
2249
|
+
"rotate-x": [{
|
|
2250
|
+
"rotate-x": H()
|
|
2251
|
+
}],
|
|
2252
|
+
/**
|
|
2253
|
+
* Rotate Y
|
|
2254
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2255
|
+
*/
|
|
2256
|
+
"rotate-y": [{
|
|
2257
|
+
"rotate-y": H()
|
|
2258
|
+
}],
|
|
2259
|
+
/**
|
|
2260
|
+
* Rotate Z
|
|
2261
|
+
* @see https://tailwindcss.com/docs/rotate
|
|
2262
|
+
*/
|
|
2263
|
+
"rotate-z": [{
|
|
2264
|
+
"rotate-z": H()
|
|
1875
2265
|
}],
|
|
1876
2266
|
/**
|
|
1877
2267
|
* Scale
|
|
1878
2268
|
* @see https://tailwindcss.com/docs/scale
|
|
1879
2269
|
*/
|
|
1880
2270
|
scale: [{
|
|
1881
|
-
scale:
|
|
2271
|
+
scale: J()
|
|
1882
2272
|
}],
|
|
1883
2273
|
/**
|
|
1884
2274
|
* Scale X
|
|
1885
2275
|
* @see https://tailwindcss.com/docs/scale
|
|
1886
2276
|
*/
|
|
1887
2277
|
"scale-x": [{
|
|
1888
|
-
"scale-x":
|
|
2278
|
+
"scale-x": J()
|
|
1889
2279
|
}],
|
|
1890
2280
|
/**
|
|
1891
2281
|
* Scale Y
|
|
1892
2282
|
* @see https://tailwindcss.com/docs/scale
|
|
1893
2283
|
*/
|
|
1894
2284
|
"scale-y": [{
|
|
1895
|
-
"scale-y":
|
|
2285
|
+
"scale-y": J()
|
|
1896
2286
|
}],
|
|
1897
2287
|
/**
|
|
1898
|
-
*
|
|
1899
|
-
* @see https://tailwindcss.com/docs/
|
|
2288
|
+
* Scale Z
|
|
2289
|
+
* @see https://tailwindcss.com/docs/scale
|
|
1900
2290
|
*/
|
|
1901
|
-
|
|
1902
|
-
|
|
2291
|
+
"scale-z": [{
|
|
2292
|
+
"scale-z": J()
|
|
1903
2293
|
}],
|
|
1904
2294
|
/**
|
|
1905
|
-
*
|
|
1906
|
-
* @see https://tailwindcss.com/docs/
|
|
2295
|
+
* Scale 3D
|
|
2296
|
+
* @see https://tailwindcss.com/docs/scale
|
|
1907
2297
|
*/
|
|
1908
|
-
"
|
|
1909
|
-
"translate-x": [q]
|
|
1910
|
-
}],
|
|
2298
|
+
"scale-3d": ["scale-3d"],
|
|
1911
2299
|
/**
|
|
1912
|
-
*
|
|
1913
|
-
* @see https://tailwindcss.com/docs/
|
|
2300
|
+
* Skew
|
|
2301
|
+
* @see https://tailwindcss.com/docs/skew
|
|
1914
2302
|
*/
|
|
1915
|
-
|
|
1916
|
-
|
|
2303
|
+
skew: [{
|
|
2304
|
+
skew: Z()
|
|
1917
2305
|
}],
|
|
1918
2306
|
/**
|
|
1919
2307
|
* Skew X
|
|
1920
2308
|
* @see https://tailwindcss.com/docs/skew
|
|
1921
2309
|
*/
|
|
1922
2310
|
"skew-x": [{
|
|
1923
|
-
"skew-x":
|
|
2311
|
+
"skew-x": Z()
|
|
1924
2312
|
}],
|
|
1925
2313
|
/**
|
|
1926
2314
|
* Skew Y
|
|
1927
2315
|
* @see https://tailwindcss.com/docs/skew
|
|
1928
2316
|
*/
|
|
1929
2317
|
"skew-y": [{
|
|
1930
|
-
"skew-y":
|
|
2318
|
+
"skew-y": Z()
|
|
2319
|
+
}],
|
|
2320
|
+
/**
|
|
2321
|
+
* Transform
|
|
2322
|
+
* @see https://tailwindcss.com/docs/transform
|
|
2323
|
+
*/
|
|
2324
|
+
transform: [{
|
|
2325
|
+
transform: [r, o, "", "none", "gpu", "cpu"]
|
|
1931
2326
|
}],
|
|
1932
2327
|
/**
|
|
1933
2328
|
* Transform Origin
|
|
1934
2329
|
* @see https://tailwindcss.com/docs/transform-origin
|
|
1935
2330
|
*/
|
|
1936
2331
|
"transform-origin": [{
|
|
1937
|
-
origin:
|
|
2332
|
+
origin: E()
|
|
2333
|
+
}],
|
|
2334
|
+
/**
|
|
2335
|
+
* Transform Style
|
|
2336
|
+
* @see https://tailwindcss.com/docs/transform-style
|
|
2337
|
+
*/
|
|
2338
|
+
"transform-style": [{
|
|
2339
|
+
transform: ["3d", "flat"]
|
|
2340
|
+
}],
|
|
2341
|
+
/**
|
|
2342
|
+
* Translate
|
|
2343
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2344
|
+
*/
|
|
2345
|
+
translate: [{
|
|
2346
|
+
translate: X()
|
|
1938
2347
|
}],
|
|
1939
|
-
|
|
2348
|
+
/**
|
|
2349
|
+
* Translate X
|
|
2350
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2351
|
+
*/
|
|
2352
|
+
"translate-x": [{
|
|
2353
|
+
"translate-x": X()
|
|
2354
|
+
}],
|
|
2355
|
+
/**
|
|
2356
|
+
* Translate Y
|
|
2357
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2358
|
+
*/
|
|
2359
|
+
"translate-y": [{
|
|
2360
|
+
"translate-y": X()
|
|
2361
|
+
}],
|
|
2362
|
+
/**
|
|
2363
|
+
* Translate Z
|
|
2364
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2365
|
+
*/
|
|
2366
|
+
"translate-z": [{
|
|
2367
|
+
"translate-z": X()
|
|
2368
|
+
}],
|
|
2369
|
+
/**
|
|
2370
|
+
* Translate None
|
|
2371
|
+
* @see https://tailwindcss.com/docs/translate
|
|
2372
|
+
*/
|
|
2373
|
+
"translate-none": ["translate-none"],
|
|
2374
|
+
// ---------------------
|
|
2375
|
+
// --- Interactivity ---
|
|
2376
|
+
// ---------------------
|
|
1940
2377
|
/**
|
|
1941
2378
|
* Accent Color
|
|
1942
2379
|
* @see https://tailwindcss.com/docs/accent-color
|
|
1943
2380
|
*/
|
|
1944
2381
|
accent: [{
|
|
1945
|
-
accent:
|
|
2382
|
+
accent: a()
|
|
1946
2383
|
}],
|
|
1947
2384
|
/**
|
|
1948
2385
|
* Appearance
|
|
@@ -1951,33 +2388,47 @@ const c = (e) => {
|
|
|
1951
2388
|
appearance: [{
|
|
1952
2389
|
appearance: ["none", "auto"]
|
|
1953
2390
|
}],
|
|
2391
|
+
/**
|
|
2392
|
+
* Caret Color
|
|
2393
|
+
* @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
|
|
2394
|
+
*/
|
|
2395
|
+
"caret-color": [{
|
|
2396
|
+
caret: a()
|
|
2397
|
+
}],
|
|
2398
|
+
/**
|
|
2399
|
+
* Color Scheme
|
|
2400
|
+
* @see https://tailwindcss.com/docs/color-scheme
|
|
2401
|
+
*/
|
|
2402
|
+
"color-scheme": [{
|
|
2403
|
+
scheme: ["normal", "dark", "light", "light-dark", "only-dark", "only-light"]
|
|
2404
|
+
}],
|
|
1954
2405
|
/**
|
|
1955
2406
|
* Cursor
|
|
1956
2407
|
* @see https://tailwindcss.com/docs/cursor
|
|
1957
2408
|
*/
|
|
1958
2409
|
cursor: [{
|
|
1959
|
-
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]
|
|
1960
2411
|
}],
|
|
1961
2412
|
/**
|
|
1962
|
-
*
|
|
1963
|
-
* @see https://tailwindcss.com/docs/
|
|
2413
|
+
* Field Sizing
|
|
2414
|
+
* @see https://tailwindcss.com/docs/field-sizing
|
|
1964
2415
|
*/
|
|
1965
|
-
"
|
|
1966
|
-
|
|
2416
|
+
"field-sizing": [{
|
|
2417
|
+
"field-sizing": ["fixed", "content"]
|
|
1967
2418
|
}],
|
|
1968
2419
|
/**
|
|
1969
2420
|
* Pointer Events
|
|
1970
2421
|
* @see https://tailwindcss.com/docs/pointer-events
|
|
1971
2422
|
*/
|
|
1972
2423
|
"pointer-events": [{
|
|
1973
|
-
"pointer-events": ["
|
|
2424
|
+
"pointer-events": ["auto", "none"]
|
|
1974
2425
|
}],
|
|
1975
2426
|
/**
|
|
1976
2427
|
* Resize
|
|
1977
2428
|
* @see https://tailwindcss.com/docs/resize
|
|
1978
2429
|
*/
|
|
1979
2430
|
resize: [{
|
|
1980
|
-
resize: ["none", "
|
|
2431
|
+
resize: ["none", "", "y", "x"]
|
|
1981
2432
|
}],
|
|
1982
2433
|
/**
|
|
1983
2434
|
* Scroll Behavior
|
|
@@ -1991,126 +2442,126 @@ const c = (e) => {
|
|
|
1991
2442
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
1992
2443
|
*/
|
|
1993
2444
|
"scroll-m": [{
|
|
1994
|
-
"scroll-m":
|
|
2445
|
+
"scroll-m": l()
|
|
1995
2446
|
}],
|
|
1996
2447
|
/**
|
|
1997
2448
|
* Scroll Margin X
|
|
1998
2449
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
1999
2450
|
*/
|
|
2000
2451
|
"scroll-mx": [{
|
|
2001
|
-
"scroll-mx":
|
|
2452
|
+
"scroll-mx": l()
|
|
2002
2453
|
}],
|
|
2003
2454
|
/**
|
|
2004
2455
|
* Scroll Margin Y
|
|
2005
2456
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2006
2457
|
*/
|
|
2007
2458
|
"scroll-my": [{
|
|
2008
|
-
"scroll-my":
|
|
2459
|
+
"scroll-my": l()
|
|
2009
2460
|
}],
|
|
2010
2461
|
/**
|
|
2011
2462
|
* Scroll Margin Start
|
|
2012
2463
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2013
2464
|
*/
|
|
2014
2465
|
"scroll-ms": [{
|
|
2015
|
-
"scroll-ms":
|
|
2466
|
+
"scroll-ms": l()
|
|
2016
2467
|
}],
|
|
2017
2468
|
/**
|
|
2018
2469
|
* Scroll Margin End
|
|
2019
2470
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2020
2471
|
*/
|
|
2021
2472
|
"scroll-me": [{
|
|
2022
|
-
"scroll-me":
|
|
2473
|
+
"scroll-me": l()
|
|
2023
2474
|
}],
|
|
2024
2475
|
/**
|
|
2025
2476
|
* Scroll Margin Top
|
|
2026
2477
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2027
2478
|
*/
|
|
2028
2479
|
"scroll-mt": [{
|
|
2029
|
-
"scroll-mt":
|
|
2480
|
+
"scroll-mt": l()
|
|
2030
2481
|
}],
|
|
2031
2482
|
/**
|
|
2032
2483
|
* Scroll Margin Right
|
|
2033
2484
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2034
2485
|
*/
|
|
2035
2486
|
"scroll-mr": [{
|
|
2036
|
-
"scroll-mr":
|
|
2487
|
+
"scroll-mr": l()
|
|
2037
2488
|
}],
|
|
2038
2489
|
/**
|
|
2039
2490
|
* Scroll Margin Bottom
|
|
2040
2491
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2041
2492
|
*/
|
|
2042
2493
|
"scroll-mb": [{
|
|
2043
|
-
"scroll-mb":
|
|
2494
|
+
"scroll-mb": l()
|
|
2044
2495
|
}],
|
|
2045
2496
|
/**
|
|
2046
2497
|
* Scroll Margin Left
|
|
2047
2498
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
2048
2499
|
*/
|
|
2049
2500
|
"scroll-ml": [{
|
|
2050
|
-
"scroll-ml":
|
|
2501
|
+
"scroll-ml": l()
|
|
2051
2502
|
}],
|
|
2052
2503
|
/**
|
|
2053
2504
|
* Scroll Padding
|
|
2054
2505
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2055
2506
|
*/
|
|
2056
2507
|
"scroll-p": [{
|
|
2057
|
-
"scroll-p":
|
|
2508
|
+
"scroll-p": l()
|
|
2058
2509
|
}],
|
|
2059
2510
|
/**
|
|
2060
2511
|
* Scroll Padding X
|
|
2061
2512
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2062
2513
|
*/
|
|
2063
2514
|
"scroll-px": [{
|
|
2064
|
-
"scroll-px":
|
|
2515
|
+
"scroll-px": l()
|
|
2065
2516
|
}],
|
|
2066
2517
|
/**
|
|
2067
2518
|
* Scroll Padding Y
|
|
2068
2519
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2069
2520
|
*/
|
|
2070
2521
|
"scroll-py": [{
|
|
2071
|
-
"scroll-py":
|
|
2522
|
+
"scroll-py": l()
|
|
2072
2523
|
}],
|
|
2073
2524
|
/**
|
|
2074
2525
|
* Scroll Padding Start
|
|
2075
2526
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2076
2527
|
*/
|
|
2077
2528
|
"scroll-ps": [{
|
|
2078
|
-
"scroll-ps":
|
|
2529
|
+
"scroll-ps": l()
|
|
2079
2530
|
}],
|
|
2080
2531
|
/**
|
|
2081
2532
|
* Scroll Padding End
|
|
2082
2533
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2083
2534
|
*/
|
|
2084
2535
|
"scroll-pe": [{
|
|
2085
|
-
"scroll-pe":
|
|
2536
|
+
"scroll-pe": l()
|
|
2086
2537
|
}],
|
|
2087
2538
|
/**
|
|
2088
2539
|
* Scroll Padding Top
|
|
2089
2540
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2090
2541
|
*/
|
|
2091
2542
|
"scroll-pt": [{
|
|
2092
|
-
"scroll-pt":
|
|
2543
|
+
"scroll-pt": l()
|
|
2093
2544
|
}],
|
|
2094
2545
|
/**
|
|
2095
2546
|
* Scroll Padding Right
|
|
2096
2547
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2097
2548
|
*/
|
|
2098
2549
|
"scroll-pr": [{
|
|
2099
|
-
"scroll-pr":
|
|
2550
|
+
"scroll-pr": l()
|
|
2100
2551
|
}],
|
|
2101
2552
|
/**
|
|
2102
2553
|
* Scroll Padding Bottom
|
|
2103
2554
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2104
2555
|
*/
|
|
2105
2556
|
"scroll-pb": [{
|
|
2106
|
-
"scroll-pb":
|
|
2557
|
+
"scroll-pb": l()
|
|
2107
2558
|
}],
|
|
2108
2559
|
/**
|
|
2109
2560
|
* Scroll Padding Left
|
|
2110
2561
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
2111
2562
|
*/
|
|
2112
2563
|
"scroll-pl": [{
|
|
2113
|
-
"scroll-pl":
|
|
2564
|
+
"scroll-pl": l()
|
|
2114
2565
|
}],
|
|
2115
2566
|
/**
|
|
2116
2567
|
* Scroll Snap Align
|
|
@@ -2178,36 +2629,35 @@ const c = (e) => {
|
|
|
2178
2629
|
* @see https://tailwindcss.com/docs/will-change
|
|
2179
2630
|
*/
|
|
2180
2631
|
"will-change": [{
|
|
2181
|
-
"will-change": ["auto", "scroll", "contents", "transform",
|
|
2632
|
+
"will-change": ["auto", "scroll", "contents", "transform", r, o]
|
|
2182
2633
|
}],
|
|
2183
|
-
//
|
|
2634
|
+
// -----------
|
|
2635
|
+
// --- SVG ---
|
|
2636
|
+
// -----------
|
|
2184
2637
|
/**
|
|
2185
2638
|
* Fill
|
|
2186
2639
|
* @see https://tailwindcss.com/docs/fill
|
|
2187
2640
|
*/
|
|
2188
2641
|
fill: [{
|
|
2189
|
-
fill: [
|
|
2642
|
+
fill: ["none", ...a()]
|
|
2190
2643
|
}],
|
|
2191
2644
|
/**
|
|
2192
2645
|
* Stroke Width
|
|
2193
2646
|
* @see https://tailwindcss.com/docs/stroke-width
|
|
2194
2647
|
*/
|
|
2195
2648
|
"stroke-w": [{
|
|
2196
|
-
stroke: [
|
|
2649
|
+
stroke: [d, W, R, oe]
|
|
2197
2650
|
}],
|
|
2198
2651
|
/**
|
|
2199
2652
|
* Stroke
|
|
2200
2653
|
* @see https://tailwindcss.com/docs/stroke
|
|
2201
2654
|
*/
|
|
2202
2655
|
stroke: [{
|
|
2203
|
-
stroke: [
|
|
2656
|
+
stroke: ["none", ...a()]
|
|
2204
2657
|
}],
|
|
2205
|
-
//
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
* @see https://tailwindcss.com/docs/screen-readers
|
|
2209
|
-
*/
|
|
2210
|
-
sr: ["sr-only", "not-sr-only"],
|
|
2658
|
+
// ---------------------
|
|
2659
|
+
// --- Accessibility ---
|
|
2660
|
+
// ---------------------
|
|
2211
2661
|
/**
|
|
2212
2662
|
* Forced Color Adjust
|
|
2213
2663
|
* @see https://tailwindcss.com/docs/forced-color-adjust
|
|
@@ -2247,12 +2697,14 @@ const c = (e) => {
|
|
|
2247
2697
|
"rounded-b": ["rounded-br", "rounded-bl"],
|
|
2248
2698
|
"rounded-l": ["rounded-tl", "rounded-bl"],
|
|
2249
2699
|
"border-spacing": ["border-spacing-x", "border-spacing-y"],
|
|
2250
|
-
"border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
|
|
2700
|
+
"border-w": ["border-w-x", "border-w-y", "border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
|
|
2251
2701
|
"border-w-x": ["border-w-r", "border-w-l"],
|
|
2252
2702
|
"border-w-y": ["border-w-t", "border-w-b"],
|
|
2253
|
-
"border-color": ["border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
|
|
2703
|
+
"border-color": ["border-color-x", "border-color-y", "border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
|
|
2254
2704
|
"border-color-x": ["border-color-r", "border-color-l"],
|
|
2255
2705
|
"border-color-y": ["border-color-t", "border-color-b"],
|
|
2706
|
+
translate: ["translate-x", "translate-y", "translate-none"],
|
|
2707
|
+
"translate-none": ["translate", "translate-x", "translate-y", "translate-z"],
|
|
2256
2708
|
"scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
|
|
2257
2709
|
"scroll-mx": ["scroll-mr", "scroll-ml"],
|
|
2258
2710
|
"scroll-my": ["scroll-mt", "scroll-mb"],
|
|
@@ -2266,14 +2718,14 @@ const c = (e) => {
|
|
|
2266
2718
|
},
|
|
2267
2719
|
conflictingClassGroupModifiers: {
|
|
2268
2720
|
"font-size": ["leading"]
|
|
2269
|
-
}
|
|
2721
|
+
},
|
|
2722
|
+
orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
|
|
2270
2723
|
};
|
|
2271
|
-
},
|
|
2272
|
-
function
|
|
2273
|
-
return
|
|
2724
|
+
}, lo = /* @__PURE__ */ We(io);
|
|
2725
|
+
function mo(...e) {
|
|
2726
|
+
return lo(Ie(e));
|
|
2274
2727
|
}
|
|
2275
2728
|
export {
|
|
2276
|
-
|
|
2277
|
-
We as c
|
|
2729
|
+
mo as c
|
|
2278
2730
|
};
|
|
2279
|
-
//# sourceMappingURL=cn-
|
|
2731
|
+
//# sourceMappingURL=cn-wvCW-ho6.js.map
|