zudoku 0.0.0-fed343e → 0.0.0-feda542
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 +121 -0
- package/cli.js +5 -2
- package/client.d.ts +7 -0
- package/dist/app/demo.js +1 -4
- package/dist/app/demo.js.map +1 -1
- package/dist/app/entry.client.d.ts +6 -0
- package/dist/app/entry.client.js +17 -3
- package/dist/app/entry.client.js.map +1 -1
- package/dist/app/entry.server.d.ts +9 -6
- package/dist/app/entry.server.js +21 -14
- package/dist/app/entry.server.js.map +1 -1
- package/dist/app/main.d.ts +3 -2
- package/dist/app/main.js +34 -38
- 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 -4
- package/dist/app/standalone.js.map +1 -1
- package/dist/app/tailwind.d.ts +2 -1
- package/dist/app/tailwind.js +80 -48
- package/dist/app/tailwind.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 +6 -4
- 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.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/box.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 +16 -13
- 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/codegen.d.ts +3 -0
- package/dist/codegen.js +45 -0
- package/dist/codegen.js.map +1 -0
- package/dist/config/common.d.ts +10 -0
- package/dist/config/common.js +2 -0
- package/dist/config/common.js.map +1 -0
- package/dist/config/config.d.ts +20 -20
- package/dist/config/loader.d.ts +21 -0
- package/dist/config/loader.js +149 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/config/validators/BuildSchema.d.ts +59 -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 +63 -31
- package/dist/config/validators/InputSidebarSchema.js +17 -28
- package/dist/config/validators/InputSidebarSchema.js.map +1 -1
- package/dist/config/validators/SidebarSchema.d.ts +24 -1
- package/dist/config/validators/SidebarSchema.js +80 -44
- package/dist/config/validators/SidebarSchema.js.map +1 -1
- package/dist/config/validators/common.d.ts +7670 -0
- package/dist/config/validators/common.js +402 -0
- package/dist/config/validators/common.js.map +1 -0
- 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 +1965 -443
- package/dist/config/validators/validate.js +14 -210
- package/dist/config/validators/validate.js.map +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.js +2 -1
- 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 +4 -2
- package/dist/lib/authentication/AuthenticationPlugin.js +3 -0
- package/dist/lib/authentication/AuthenticationPlugin.js.map +1 -1
- package/dist/lib/authentication/authentication.d.ts +4 -3
- package/dist/lib/authentication/components/CallbackHandler.js +21 -31
- package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
- package/dist/lib/authentication/components/SignIn.js +1 -1
- 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/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 +14 -12
- 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 +54 -12
- package/dist/lib/authentication/providers/clerk.js.map +1 -1
- package/dist/lib/authentication/providers/openid.d.ts +12 -4
- package/dist/lib/authentication/providers/openid.js +54 -44
- 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 +117 -0
- package/dist/lib/authentication/providers/supabase.js.map +1 -0
- package/dist/lib/authentication/state.d.ts +23 -3
- package/dist/lib/authentication/state.js +34 -2
- package/dist/lib/authentication/state.js.map +1 -1
- package/dist/lib/authentication/use-broadcast/shared.d.ts +48 -0
- package/dist/lib/authentication/use-broadcast/shared.js +243 -0
- package/dist/lib/authentication/use-broadcast/shared.js.map +1 -0
- package/dist/lib/authentication/use-broadcast/useBroadcast.d.ts +24 -0
- package/dist/lib/authentication/use-broadcast/useBroadcast.js +106 -0
- package/dist/lib/authentication/use-broadcast/useBroadcast.js.map +1 -0
- 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 +7 -1
- package/dist/lib/components/Banner.js.map +1 -1
- package/dist/lib/components/Bootstrap.d.ts +5 -3
- package/dist/lib/components/Bootstrap.js +13 -6
- package/dist/lib/components/Bootstrap.js.map +1 -1
- package/dist/lib/components/ClientOnly.d.ts +4 -2
- package/dist/lib/components/ClientOnly.js +1 -1
- package/dist/lib/components/ClientOnly.js.map +1 -1
- package/dist/lib/components/DeveloperHint.js +2 -1
- package/dist/lib/components/DeveloperHint.js.map +1 -1
- package/dist/lib/components/ErrorPage.js +1 -2
- package/dist/lib/components/ErrorPage.js.map +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 +22 -11
- package/dist/lib/components/Header.js.map +1 -1
- package/dist/lib/components/Heading.d.ts +4 -4
- package/dist/lib/components/Heading.js +1 -1
- package/dist/lib/components/Heading.js.map +1 -1
- package/dist/lib/components/InlineCode.d.ts +3 -1
- package/dist/lib/components/InlineCode.js +2 -1
- package/dist/lib/components/InlineCode.js.map +1 -1
- package/dist/lib/components/Layout.js +9 -20
- package/dist/lib/components/Layout.js.map +1 -1
- package/dist/lib/components/Main.d.ts +2 -0
- package/dist/lib/components/Main.js +17 -0
- package/dist/lib/components/Main.js.map +1 -0
- package/dist/lib/components/Markdown.d.ts +2 -2
- package/dist/lib/components/Markdown.js +4 -2
- package/dist/lib/components/Markdown.js.map +1 -1
- package/dist/lib/components/MobileTopNavigation.js +13 -7
- package/dist/lib/components/MobileTopNavigation.js.map +1 -1
- package/dist/lib/components/NotFoundPage.js +1 -1
- 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/SlotletProvider.d.ts +11 -3
- package/dist/lib/components/SlotletProvider.js +4 -2
- package/dist/lib/components/SlotletProvider.js.map +1 -1
- 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.d.ts +1 -0
- package/dist/lib/components/ThemeSwitch.js +16 -0
- package/dist/lib/components/ThemeSwitch.js.map +1 -0
- package/dist/lib/components/TopNavigation.d.ts +6 -0
- package/dist/lib/components/TopNavigation.js +61 -8
- package/dist/lib/components/TopNavigation.js.map +1 -1
- package/dist/lib/components/{DevPortal.d.ts → Zudoku.d.ts} +3 -3
- package/dist/lib/components/{DevPortal.js → Zudoku.js} +24 -18
- package/dist/lib/components/Zudoku.js.map +1 -0
- 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/ViewportAnchorContext.d.ts +2 -4
- package/dist/lib/components/context/ViewportAnchorContext.js +21 -14
- package/dist/lib/components/context/ViewportAnchorContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuContext.d.ts +10 -14
- package/dist/lib/components/context/ZudokuContext.js +41 -27
- package/dist/lib/components/context/ZudokuContext.js.map +1 -1
- package/dist/lib/components/context/ZudokuProvider.d.ts +2 -2
- package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
- package/dist/lib/components/index.d.ts +54 -16
- package/dist/lib/components/index.js +25 -6
- 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 +6 -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 +3 -7
- 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 +27 -13
- package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
- package/dist/lib/components/navigation/SidebarItem.d.ts +3 -4
- package/dist/lib/components/navigation/SidebarItem.js +23 -16
- 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 +5 -7
- 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/utils.js +11 -15
- 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 +99 -0
- package/dist/lib/core/ZudokuContext.js +69 -0
- package/dist/lib/core/ZudokuContext.js.map +1 -0
- package/dist/lib/core/plugins.d.ts +32 -17
- package/dist/lib/core/plugins.js +3 -0
- package/dist/lib/core/plugins.js.map +1 -1
- package/dist/lib/errors/ErrorAlert.d.ts +1 -1
- package/dist/lib/errors/ErrorAlert.js +13 -3
- 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 +3 -0
- package/dist/lib/hooks/index.js +5 -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 +38 -0
- package/dist/lib/oas/graphql/circular.js.map +1 -0
- package/dist/lib/oas/graphql/index.d.ts +26 -1
- package/dist/lib/oas/graphql/index.js +229 -74
- 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 +6 -3
- package/dist/lib/oas/parser/index.js +0 -22
- package/dist/lib/oas/parser/index.js.map +1 -1
- package/dist/lib/oas/parser/upgrade/index.d.ts +2 -2
- package/dist/lib/oas/parser/upgrade/index.js +21 -21
- 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.js +9 -5
- 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.js +1 -1
- package/dist/lib/plugins/api-keys/SettingsApiKeys.js.map +1 -1
- package/dist/lib/plugins/api-keys/index.d.ts +10 -9
- package/dist/lib/plugins/api-keys/index.js +4 -0
- package/dist/lib/plugins/api-keys/index.js.map +1 -1
- package/dist/lib/plugins/custom-pages/CustomPage.d.ts +2 -0
- package/dist/lib/plugins/custom-pages/CustomPage.js +11 -0
- package/dist/lib/plugins/custom-pages/CustomPage.js.map +1 -0
- package/dist/lib/plugins/custom-pages/index.d.ts +10 -0
- package/dist/lib/plugins/custom-pages/index.js +11 -0
- package/dist/lib/plugins/custom-pages/index.js.map +1 -0
- package/dist/lib/plugins/markdown/MdxPage.d.ts +10 -2
- package/dist/lib/plugins/markdown/MdxPage.js +18 -5
- package/dist/lib/plugins/markdown/MdxPage.js.map +1 -1
- package/dist/lib/plugins/markdown/index.d.ts +8 -6
- package/dist/lib/plugins/markdown/index.js +31 -3
- package/dist/lib/plugins/markdown/index.js.map +1 -1
- package/dist/lib/plugins/markdown/resolver.d.ts +32 -0
- package/dist/lib/plugins/markdown/resolver.js +46 -0
- package/dist/lib/plugins/markdown/resolver.js.map +1 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +5 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js +25 -0
- package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -0
- package/dist/lib/plugins/openapi/ColorizedParam.d.ts +10 -2
- package/dist/lib/plugins/openapi/ColorizedParam.js +29 -14
- package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
- package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -3
- package/dist/lib/plugins/openapi/Endpoint.js +43 -8
- 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 +6 -3
- package/dist/lib/plugins/openapi/OperationList.js +105 -27
- 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 +10 -5
- 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 +42 -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 +12 -1
- package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.d.ts +5 -2
- package/dist/lib/plugins/openapi/PlaygroundDialogWrapper.js +12 -3
- 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 -9
- package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
- package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +7 -6
- 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 +52 -0
- package/dist/lib/plugins/openapi/SchemaList.js.map +1 -0
- package/dist/lib/plugins/openapi/Sidecar.d.ts +1 -1
- package/dist/lib/plugins/openapi/Sidecar.js +90 -60
- 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 +68 -0
- package/dist/lib/plugins/openapi/SidecarExamples.js.map +1 -0
- package/dist/lib/plugins/openapi/SimpleSelect.d.ts +2 -1
- 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 +8 -0
- package/dist/lib/plugins/openapi/client/GraphQLClient.js +43 -0
- package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -0
- package/dist/lib/plugins/openapi/client/GraphQLContext.d.ts +7 -0
- package/dist/lib/plugins/openapi/client/GraphQLContext.js +5 -0
- package/dist/lib/plugins/openapi/client/GraphQLContext.js.map +1 -0
- package/dist/lib/plugins/openapi/client/createServer.d.ts +3 -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 +9 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.js +14 -0
- package/dist/lib/plugins/openapi/client/useCreateQuery.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/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/fragment-masking.d.ts +3 -3
- package/dist/lib/plugins/openapi/graphql/fragment-masking.js +3 -4
- package/dist/lib/plugins/openapi/graphql/fragment-masking.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/gql.d.ts +11 -41
- package/dist/lib/plugins/openapi/graphql/gql.js +8 -14
- package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
- package/dist/lib/plugins/openapi/graphql/graphql.d.ts +168 -26
- package/dist/lib/plugins/openapi/graphql/graphql.js +238 -575
- package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
- package/dist/lib/plugins/openapi/index.d.ts +11 -7
- package/dist/lib/plugins/openapi/index.js +72 -104
- package/dist/lib/plugins/openapi/index.js.map +1 -1
- package/dist/lib/plugins/openapi/interfaces.d.ts +59 -3
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.d.ts +6 -0
- package/dist/lib/plugins/openapi/playground/ExamplesDropdown.js +8 -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 +10 -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 +38 -2
- package/dist/lib/plugins/openapi/playground/Playground.js +134 -63
- package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +2 -2
- package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +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/SubmitButton.d.ts +7 -0
- package/dist/lib/plugins/openapi/playground/SubmitButton.js +22 -0
- package/dist/lib/plugins/openapi/playground/SubmitButton.js.map +1 -0
- package/dist/lib/plugins/openapi/playground/createUrl.js +3 -1
- package/dist/lib/plugins/openapi/playground/createUrl.js.map +1 -1
- 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 +8 -0
- package/dist/lib/plugins/openapi/playground/result-panel/ResponseTab.js +101 -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.js +56 -0
- package/dist/lib/plugins/openapi/playground/result-panel/convertToTypes.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.d.ts +7 -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 +174 -0
- package/dist/lib/plugins/openapi/processors/removeExtensions.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.d.ts +10 -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 +131 -0
- package/dist/lib/plugins/openapi/processors/removeParameters.test.js.map +1 -0
- package/dist/lib/plugins/openapi/processors/removePaths.d.ts +11 -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 +104 -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 +12 -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 +42 -0
- package/dist/lib/plugins/openapi/schema/SchemaPropertyItem.js.map +1 -0
- package/dist/lib/plugins/openapi/schema/SchemaView.d.ts +1 -2
- package/dist/lib/plugins/openapi/schema/SchemaView.js +34 -48
- package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
- package/dist/lib/plugins/openapi/schema/utils.d.ts +2 -0
- package/dist/lib/plugins/openapi/schema/utils.js +5 -1
- 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/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 +0 -1
- package/dist/lib/plugins/openapi/util/generateSchemaExample.js +36 -39
- 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 +80 -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 +4 -7
- package/dist/lib/plugins/redirect/index.js +2 -2
- package/dist/lib/plugins/redirect/index.js.map +1 -1
- package/dist/lib/plugins/search-inkeep/index.d.ts +24 -5
- 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/ui/Accordion.d.ts +7 -0
- package/dist/lib/ui/Accordion.js +14 -0
- package/dist/lib/ui/Accordion.js.map +1 -0
- package/dist/lib/ui/ActionButton.d.ts +4 -0
- package/dist/lib/ui/ActionButton.js +10 -0
- package/dist/lib/ui/ActionButton.js.map +1 -0
- package/dist/lib/ui/Alert.d.ts +8 -0
- package/dist/lib/ui/Alert.js +23 -0
- package/dist/lib/ui/Alert.js.map +1 -0
- package/dist/lib/ui/AlertDialog.d.ts +20 -0
- package/dist/lib/ui/AlertDialog.js +27 -0
- package/dist/lib/ui/AlertDialog.js.map +1 -0
- package/dist/lib/ui/AspectRatio.d.ts +3 -0
- package/dist/lib/ui/AspectRatio.js +4 -0
- package/dist/lib/ui/AspectRatio.js.map +1 -0
- package/dist/lib/ui/Badge.d.ts +9 -0
- package/dist/lib/ui/Badge.js +22 -0
- package/dist/lib/ui/Badge.js.map +1 -0
- package/dist/lib/ui/Breadcrumb.d.ts +19 -0
- package/dist/lib/ui/Breadcrumb.js +24 -0
- package/dist/lib/ui/Breadcrumb.js.map +1 -0
- package/dist/lib/ui/Button.d.ts +3 -4
- package/dist/lib/ui/Button.js +2 -1
- package/dist/lib/ui/Button.js.map +1 -1
- package/dist/lib/ui/Callout.d.ts +38 -36
- 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/Carousel.d.ts +18 -0
- package/dist/lib/ui/Carousel.js +99 -0
- package/dist/lib/ui/Carousel.js.map +1 -0
- package/dist/lib/ui/Checkbox.d.ts +4 -0
- package/dist/lib/ui/Checkbox.js +9 -0
- package/dist/lib/ui/Checkbox.js.map +1 -0
- package/dist/lib/ui/Collapsible.d.ts +5 -0
- package/dist/lib/ui/Collapsible.js +6 -0
- package/dist/lib/ui/Collapsible.js.map +1 -0
- package/dist/lib/ui/Command.d.ts +94 -0
- package/dist/lib/ui/Command.js +35 -0
- package/dist/lib/ui/Command.js.map +1 -0
- package/dist/lib/{components → ui}/Dialog.js +2 -2
- package/dist/lib/ui/Dialog.js.map +1 -0
- package/dist/lib/ui/Drawer.d.ts +8 -10
- package/dist/lib/ui/Drawer.js.map +1 -1
- package/dist/lib/ui/Form.d.ts +23 -0
- package/dist/lib/ui/Form.js +63 -0
- package/dist/lib/ui/Form.js.map +1 -0
- package/dist/lib/ui/HoverCard.d.ts +6 -0
- package/dist/lib/ui/HoverCard.js +10 -0
- package/dist/lib/ui/HoverCard.js.map +1 -0
- package/dist/lib/ui/Input.d.ts +1 -2
- package/dist/lib/ui/Input.js.map +1 -1
- package/dist/lib/ui/Label.d.ts +5 -0
- package/dist/lib/ui/Label.js +10 -0
- package/dist/lib/ui/Label.js.map +1 -0
- package/dist/lib/ui/Pagination.d.ts +28 -0
- package/dist/lib/ui/Pagination.js +24 -0
- package/dist/lib/ui/Pagination.js.map +1 -0
- package/dist/lib/ui/Popover.d.ts +6 -0
- package/dist/lib/ui/Popover.js +10 -0
- package/dist/lib/ui/Popover.js.map +1 -0
- package/dist/lib/ui/Progress.d.ts +4 -0
- package/dist/lib/ui/Progress.js +8 -0
- package/dist/lib/ui/Progress.js.map +1 -0
- package/dist/lib/ui/RadioGroup.d.ts +5 -0
- package/dist/lib/ui/RadioGroup.js +15 -0
- package/dist/lib/ui/RadioGroup.js.map +1 -0
- package/dist/lib/ui/ScrollArea.d.ts +5 -0
- package/dist/lib/ui/ScrollArea.js +12 -0
- package/dist/lib/ui/ScrollArea.js.map +1 -0
- package/dist/lib/{components → ui}/Select.js +3 -3
- package/dist/lib/ui/Select.js.map +1 -0
- package/dist/lib/ui/Skeleton.d.ts +2 -0
- package/dist/lib/ui/Skeleton.js +7 -0
- package/dist/lib/ui/Skeleton.js.map +1 -0
- package/dist/lib/ui/Slider.d.ts +4 -0
- package/dist/lib/ui/Slider.js +8 -0
- package/dist/lib/ui/Slider.js.map +1 -0
- 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.d.ts +4 -0
- package/dist/lib/ui/Switch.js +8 -0
- package/dist/lib/ui/Switch.js.map +1 -0
- package/dist/lib/ui/SyntaxHighlight.d.ts +15 -0
- package/dist/lib/ui/SyntaxHighlight.js +62 -0
- package/dist/lib/ui/SyntaxHighlight.js.map +1 -0
- package/dist/lib/ui/Textarea.d.ts +4 -0
- package/dist/lib/ui/Textarea.js +9 -0
- package/dist/lib/ui/Textarea.js.map +1 -0
- package/dist/lib/ui/Toggle.d.ts +12 -0
- package/dist/lib/ui/Toggle.js +26 -0
- package/dist/lib/ui/Toggle.js.map +1 -0
- package/dist/lib/ui/ToggleGroup.d.ts +12 -0
- package/dist/lib/ui/ToggleGroup.js +21 -0
- package/dist/lib/ui/ToggleGroup.js.map +1 -0
- package/dist/lib/ui/Tooltip.d.ts +7 -0
- package/dist/lib/ui/Tooltip.js +11 -0
- package/dist/lib/ui/Tooltip.js.map +1 -0
- 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 +24 -21
- package/dist/lib/util/MdxComponents.js +10 -7
- 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/invariant.d.ts +9 -0
- package/dist/lib/util/invariant.js +7 -3
- package/dist/lib/util/invariant.js.map +1 -1
- 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 +22 -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/useExposedProps.d.ts +2 -0
- package/dist/lib/util/useExposedProps.js +9 -0
- package/dist/lib/util/useExposedProps.js.map +1 -0
- package/dist/lib/util/useIsomorphicLayoutEffect.d.ts +3 -0
- package/dist/lib/util/useIsomorphicLayoutEffect.js +4 -0
- package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -0
- 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 +5 -0
- package/dist/lib/util/useOnScreen.js +19 -0
- package/dist/lib/util/useOnScreen.js.map +1 -0
- 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/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 +47 -13
- package/dist/vite/build.js.map +1 -1
- package/dist/vite/config.d.ts +8 -15
- package/dist/vite/config.js +133 -118
- package/dist/vite/config.js.map +1 -1
- package/dist/vite/config.test.js +11 -5
- 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 +5 -0
- package/dist/vite/css/plugin.js +79 -0
- package/dist/vite/css/plugin.js.map +1 -0
- package/dist/vite/debug.d.ts +1 -0
- package/dist/vite/debug.js +10 -0
- package/dist/vite/debug.js.map +1 -0
- package/dist/vite/dev-server.d.ts +12 -3
- package/dist/vite/dev-server.js +79 -25
- 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.js +0 -2
- package/dist/vite/html.js.map +1 -1
- package/dist/vite/output.d.ts +113 -0
- package/dist/vite/output.js +60 -0
- package/dist/vite/output.js.map +1 -0
- package/dist/vite/plugin-api-keys.d.ts +2 -2
- package/dist/vite/plugin-api-keys.js +5 -5
- package/dist/vite/plugin-api-keys.js.map +1 -1
- package/dist/vite/plugin-api.d.ts +2 -2
- package/dist/vite/plugin-api.js +223 -35
- package/dist/vite/plugin-api.js.map +1 -1
- package/dist/vite/plugin-auth.d.ts +2 -2
- package/dist/vite/plugin-auth.js +7 -4
- package/dist/vite/plugin-auth.js.map +1 -1
- package/dist/vite/plugin-component.d.ts +2 -2
- package/dist/vite/plugin-component.js +22 -13
- package/dist/vite/plugin-component.js.map +1 -1
- package/dist/vite/plugin-config-reload.d.ts +4 -4
- package/dist/vite/plugin-config-reload.js +18 -8
- package/dist/vite/plugin-config-reload.js.map +1 -1
- package/dist/vite/plugin-config.d.ts +2 -3
- package/dist/vite/plugin-config.js +26 -3
- package/dist/vite/plugin-config.js.map +1 -1
- package/dist/vite/plugin-custom-pages.d.ts +4 -0
- package/dist/vite/plugin-custom-pages.js +30 -0
- package/dist/vite/plugin-custom-pages.js.map +1 -0
- package/dist/vite/plugin-docs.d.ts +3 -3
- package/dist/vite/plugin-docs.js +57 -27
- package/dist/vite/plugin-docs.js.map +1 -1
- package/dist/vite/plugin-docs.test.js +15 -23
- package/dist/vite/plugin-docs.test.js.map +1 -1
- package/dist/vite/plugin-frontmatter.d.ts +3 -0
- package/dist/vite/plugin-frontmatter.js +34 -0
- package/dist/vite/plugin-frontmatter.js.map +1 -0
- package/dist/vite/plugin-mdx.d.ts +2 -8
- package/dist/vite/plugin-mdx.js +97 -7
- package/dist/vite/plugin-mdx.js.map +1 -1
- package/dist/vite/plugin-redirect.d.ts +2 -2
- package/dist/vite/plugin-redirect.js +3 -3
- package/dist/vite/plugin-redirect.js.map +1 -1
- package/dist/vite/plugin-search.d.ts +3 -0
- package/dist/vite/plugin-search.js +30 -0
- package/dist/vite/plugin-search.js.map +1 -0
- package/dist/vite/plugin-sidebar.d.ts +2 -2
- package/dist/vite/plugin-sidebar.js +30 -7
- package/dist/vite/plugin-sidebar.js.map +1 -1
- package/dist/vite/{plugin-custom-css.d.ts → plugin-theme-css.d.ts} +3 -3
- package/dist/vite/plugin-theme-css.js +117 -0
- package/dist/vite/plugin-theme-css.js.map +1 -0
- package/dist/vite/plugin.d.ts +2 -3
- package/dist/vite/plugin.js +13 -7
- 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.d.ts +3 -0
- package/dist/vite/remarkStaticGeneration.js +125 -0
- package/dist/vite/remarkStaticGeneration.js.map +1 -0
- 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 +184 -0
- package/dist/zuplo/enrich-with-zuplo.js.map +1 -0
- package/dist/zuplo/env.d.ts +7 -0
- package/dist/zuplo/env.js +12 -0
- package/dist/zuplo/env.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 +3 -0
- package/dist/zuplo/with-zuplo.js +13 -0
- package/dist/zuplo/with-zuplo.js.map +1 -0
- package/lib/AuthenticationPlugin-foqdvvkf.js +58 -0
- package/lib/AuthenticationPlugin-foqdvvkf.js.map +1 -0
- package/lib/Button-Fp19CMUr.js +49 -0
- package/lib/Button-Fp19CMUr.js.map +1 -0
- package/lib/Callout-Boqdgl-z.js +230 -0
- package/lib/Callout-Boqdgl-z.js.map +1 -0
- package/lib/CategoryHeading-DpB47wvk.js +10 -0
- package/lib/{CategoryHeading-XnFqN2lJ.js.map → CategoryHeading-DpB47wvk.js.map} +1 -1
- package/lib/ClientOnly-E7hGysn1.js +11 -0
- package/lib/ClientOnly-E7hGysn1.js.map +1 -0
- package/lib/Dialog-sbgekbjb.js +98 -0
- package/lib/Dialog-sbgekbjb.js.map +1 -0
- package/lib/Drawer-kDAfOq_2.js +1133 -0
- package/lib/Drawer-kDAfOq_2.js.map +1 -0
- package/lib/Markdown-CKXePgqR.js +16962 -0
- package/lib/Markdown-CKXePgqR.js.map +1 -0
- package/lib/MdxPage-DzpRK-fu.js +85 -0
- package/lib/MdxPage-DzpRK-fu.js.map +1 -0
- package/lib/OasProvider-Dw2mP5VZ.js +34 -0
- package/lib/OasProvider-Dw2mP5VZ.js.map +1 -0
- package/lib/OperationList-Cr_NA4e2.js +5069 -0
- package/lib/OperationList-Cr_NA4e2.js.map +1 -0
- package/lib/Pagination-DT6eKg_U.js +48 -0
- package/lib/Pagination-DT6eKg_U.js.map +1 -0
- package/lib/RouteGuard-CqZPoZYJ.js +744 -0
- package/lib/RouteGuard-CqZPoZYJ.js.map +1 -0
- package/lib/SchemaList-DNvUJgwI.js +148 -0
- package/lib/SchemaList-DNvUJgwI.js.map +1 -0
- package/lib/SchemaView-Cxh_msLc.js +357 -0
- package/lib/SchemaView-Cxh_msLc.js.map +1 -0
- package/lib/Select-DVFRKf1R.js +223 -0
- package/lib/Select-DVFRKf1R.js.map +1 -0
- package/lib/SlotletProvider-BV1xrg-l.js +338 -0
- package/lib/SlotletProvider-BV1xrg-l.js.map +1 -0
- package/lib/{Spinner-3cQDBVGr.js → Spinner-CE68iCm0.js} +2 -2
- package/lib/{Spinner-3cQDBVGr.js.map → Spinner-CE68iCm0.js.map} +1 -1
- package/lib/SyntaxHighlight-BEoSoPEo.js +2890 -0
- package/lib/SyntaxHighlight-BEoSoPEo.js.map +1 -0
- package/lib/Toc-D40bDl5J.js +92 -0
- package/lib/Toc-D40bDl5J.js.map +1 -0
- package/lib/chunk-HA7DTUK3-C4gP41vD.js +1821 -0
- package/lib/chunk-HA7DTUK3-C4gP41vD.js.map +1 -0
- package/lib/circular-ByJI6Mci.js +15877 -0
- package/lib/circular-ByJI6Mci.js.map +1 -0
- package/lib/cn-qaFjX9_3.js +2279 -0
- package/lib/cn-qaFjX9_3.js.map +1 -0
- package/lib/context-DLCwaMXN.js +22 -0
- package/lib/context-DLCwaMXN.js.map +1 -0
- package/lib/createServer-Cq73y9Kv.js +12454 -0
- package/lib/createServer-Cq73y9Kv.js.map +1 -0
- package/lib/hook-CqpVYDqN.js +1483 -0
- package/lib/hook-CqpVYDqN.js.map +1 -0
- package/lib/index-Bn6Lc9tq.js +9 -0
- package/lib/index-Bn6Lc9tq.js.map +1 -0
- package/lib/index-CN3TIw7H.js +2009 -0
- package/lib/index-CN3TIw7H.js.map +1 -0
- package/lib/index-CPNSgwSb.js +36 -0
- package/lib/index-CPNSgwSb.js.map +1 -0
- package/lib/{index-CLd8ycZz.js → index-Dl3Yl0yb.js} +1056 -1009
- package/lib/index-Dl3Yl0yb.js.map +1 -0
- package/lib/index-DwT-v3zK.js +86 -0
- package/lib/index-DwT-v3zK.js.map +1 -0
- package/lib/index-LNp6rxyU.js +2094 -0
- package/lib/index-LNp6rxyU.js.map +1 -0
- package/lib/index-dQecW8K5.js +2227 -0
- package/lib/index-dQecW8K5.js.map +1 -0
- package/lib/index-gQD2h1wX.js +447 -0
- package/lib/index-gQD2h1wX.js.map +1 -0
- package/lib/index.esm--gIChbWs.js +1207 -0
- package/lib/index.esm--gIChbWs.js.map +1 -0
- package/lib/invariant-Caa8-XvF.js +26 -0
- package/lib/invariant-Caa8-XvF.js.map +1 -0
- package/lib/jsx-runtime-CYK1ROHF.js +446 -0
- package/lib/jsx-runtime-CYK1ROHF.js.map +1 -0
- package/lib/mutation-8LjrN7uz.js +208 -0
- package/lib/mutation-8LjrN7uz.js.map +1 -0
- package/lib/objectEntries-yMIkr2mI.js +5 -0
- package/lib/objectEntries-yMIkr2mI.js.map +1 -0
- package/lib/{prism-bash.min-DadFsM4Z.js → prism-bash.min-HHIMdNJ_.js} +4 -4
- package/lib/{prism-bash.min-DadFsM4Z.js.map → prism-bash.min-HHIMdNJ_.js.map} +1 -1
- package/lib/prism-csharp.min-bQAo2pmx.js +63 -0
- package/lib/{prism-csharp.min-Yizuc34Y.js.map → prism-csharp.min-bQAo2pmx.js.map} +1 -1
- package/lib/prism-java.min-BpvsOuIa.js +35 -0
- package/lib/{prism-java.min-d5iT_mOd.js.map → prism-java.min-BpvsOuIa.js.map} +1 -1
- package/lib/prism-javascript.min-CEqHqgbm.js.map +1 -1
- package/lib/prism-json.min-B1GJqK1k.js.map +1 -1
- package/lib/prism-jsstacktrace.min-BfobCF2F.js +2 -0
- package/lib/prism-jsstacktrace.min-BfobCF2F.js.map +1 -0
- package/lib/{prism-markdown.min-F3U-vPBi.js → prism-markdown.min-C0Qn0m-5.js} +30 -30
- package/lib/{prism-markdown.min-F3U-vPBi.js.map → prism-markdown.min-C0Qn0m-5.js.map} +1 -1
- package/lib/prism-markup-BNGj0Tvm.js.map +1 -1
- package/lib/prism-objectivec.min-BXSWqpJJ.js.map +1 -1
- package/lib/prism-ruby.min-Dx9KO9ds.js +38 -0
- package/lib/{prism-ruby.min-C7LwcKyz.js.map → prism-ruby.min-Dx9KO9ds.js.map} +1 -1
- package/lib/prism-typescript.min-CD7H2IYQ.js +34 -0
- package/lib/{prism-typescript.min-oSVeWCAd.js.map → prism-typescript.min-CD7H2IYQ.js.map} +1 -1
- package/lib/processors/removeExtensions.js +11 -0
- package/lib/processors/removeExtensions.js.map +1 -0
- package/lib/processors/removeParameters.js +48 -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 +15 -0
- package/lib/processors/traverse.js.map +1 -0
- package/lib/ui/Accordion.js +47 -0
- package/lib/ui/Accordion.js.map +1 -0
- package/lib/ui/ActionButton.js +25 -0
- package/lib/ui/ActionButton.js.map +1 -0
- package/lib/ui/Alert.js +51 -0
- package/lib/ui/Alert.js.map +1 -0
- package/lib/ui/AlertDialog.js +114 -0
- package/lib/ui/AlertDialog.js.map +1 -0
- package/lib/ui/AspectRatio.js +6 -0
- package/lib/ui/AspectRatio.js.map +1 -0
- package/lib/ui/Badge.js +28 -0
- package/lib/ui/Badge.js.map +1 -0
- package/lib/ui/Breadcrumb.js +94 -0
- package/lib/ui/Breadcrumb.js.map +1 -0
- package/lib/ui/Button.js +50 -0
- package/lib/ui/Button.js.map +1 -0
- package/lib/ui/Callout.js +96 -0
- package/lib/ui/Callout.js.map +1 -0
- package/lib/ui/Card.js +62 -0
- package/lib/ui/Card.js.map +1 -0
- package/lib/ui/Carousel.js +1416 -0
- package/lib/ui/Carousel.js.map +1 -0
- package/lib/ui/Checkbox.js +29 -0
- package/lib/ui/Checkbox.js.map +1 -0
- package/lib/ui/Collapsible.js +8 -0
- package/lib/ui/Collapsible.js.map +1 -0
- package/lib/ui/Command.js +156 -0
- package/lib/ui/Command.js.map +1 -0
- package/lib/ui/Dialog.js +101 -0
- package/lib/ui/Dialog.js.map +1 -0
- package/lib/ui/Drawer.js +17 -0
- package/lib/ui/Drawer.js.map +1 -0
- package/lib/ui/DropdownMenu.js +145 -0
- package/lib/ui/DropdownMenu.js.map +1 -0
- package/lib/ui/Form.js +95 -0
- package/lib/ui/Form.js.map +1 -0
- package/lib/ui/HoverCard.js +24 -0
- package/lib/ui/HoverCard.js.map +1 -0
- package/lib/ui/Input.js +22 -0
- package/lib/ui/Input.js.map +1 -0
- package/lib/ui/Label.js +20 -0
- package/lib/ui/Label.js.map +1 -0
- package/lib/ui/Pagination.js +106 -0
- package/lib/ui/Pagination.js.map +1 -0
- package/lib/ui/Popover.js +24 -0
- package/lib/ui/Popover.js.map +1 -0
- package/lib/ui/Progress.js +27 -0
- package/lib/ui/Progress.js.map +1 -0
- package/lib/ui/RadioGroup.js +32 -0
- package/lib/ui/RadioGroup.js.map +1 -0
- package/lib/ui/ScrollArea.js +39 -0
- package/lib/ui/ScrollArea.js.map +1 -0
- package/lib/ui/Select.js +122 -0
- package/lib/ui/Select.js.map +1 -0
- package/lib/ui/Skeleton.js +18 -0
- package/lib/ui/Skeleton.js.map +1 -0
- package/lib/ui/Slider.js +24 -0
- package/lib/ui/Slider.js.map +1 -0
- package/lib/ui/Stepper.js +6 -0
- package/lib/ui/Stepper.js.map +1 -0
- package/lib/ui/Switch.js +28 -0
- package/lib/ui/Switch.js.map +1 -0
- package/lib/ui/SyntaxHighlight.js +11 -0
- package/lib/ui/SyntaxHighlight.js.map +1 -0
- package/lib/ui/Tabs.js +47 -0
- package/lib/ui/Tabs.js.map +1 -0
- package/lib/ui/Textarea.js +21 -0
- package/lib/ui/Textarea.js.map +1 -0
- package/lib/ui/Toggle.js +38 -0
- package/lib/ui/Toggle.js.map +1 -0
- package/lib/ui/ToggleGroup.js +42 -0
- package/lib/ui/ToggleGroup.js.map +1 -0
- package/lib/ui/Tooltip.js +24 -0
- package/lib/ui/Tooltip.js.map +1 -0
- package/lib/ui/util.js +6 -0
- package/lib/ui/util.js.map +1 -0
- package/lib/useExposedProps-B9qXJedG.js +9 -0
- package/lib/useExposedProps-B9qXJedG.js.map +1 -0
- package/lib/useLatest-hmRS46UF.js +11 -0
- package/lib/useLatest-hmRS46UF.js.map +1 -0
- package/lib/zudoku.auth-auth0.js +30 -25
- package/lib/zudoku.auth-auth0.js.map +1 -1
- package/lib/zudoku.auth-clerk.js +101 -55
- package/lib/zudoku.auth-clerk.js.map +1 -1
- package/lib/zudoku.auth-openid.js +636 -665
- package/lib/zudoku.auth-openid.js.map +1 -1
- package/lib/zudoku.components.js +32 -3360
- package/lib/zudoku.components.js.map +1 -1
- package/lib/zudoku.hooks.js +19 -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 +104 -108
- package/lib/zudoku.plugin-api-keys.js.map +1 -1
- package/lib/zudoku.plugin-custom-pages.js +22 -0
- package/lib/zudoku.plugin-custom-pages.js.map +1 -0
- package/lib/zudoku.plugin-markdown.js +73 -24
- package/lib/zudoku.plugin-markdown.js.map +1 -1
- package/lib/zudoku.plugin-openapi.js +7 -12
- package/lib/zudoku.plugin-openapi.js.map +1 -1
- package/lib/zudoku.plugin-redirect.js +2 -2
- package/lib/zudoku.plugin-redirect.js.map +1 -1
- package/lib/zudoku.plugin-search-inkeep.js +53 -28
- package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
- package/lib/zudoku.plugin-search-pagefind.js +233 -0
- package/lib/zudoku.plugin-search-pagefind.js.map +1 -0
- package/lib/zudoku.plugins.js +14 -0
- package/lib/zudoku.plugins.js.map +1 -0
- package/package.json +180 -100
- package/src/app/demo-cdn.html +31 -31
- package/src/app/demo.tsx +1 -5
- package/src/app/entry.client.tsx +28 -3
- package/src/app/entry.server.tsx +81 -60
- package/src/app/main.css +105 -41
- package/src/app/main.tsx +55 -44
- package/src/app/sentry.ts +24 -0
- package/src/app/standalone.tsx +2 -6
- package/src/app/tailwind.ts +83 -48
- package/src/lib/MissingIcon.tsx +22 -0
- package/src/lib/authentication/AuthenticationPlugin.tsx +4 -1
- package/src/lib/authentication/authentication.ts +5 -3
- package/src/lib/authentication/components/CallbackHandler.tsx +20 -51
- package/src/lib/authentication/components/SignIn.tsx +1 -1
- package/src/lib/authentication/components/SignOut.tsx +3 -2
- package/src/lib/authentication/hook.ts +13 -4
- package/src/lib/authentication/providers/auth0.tsx +20 -16
- package/src/lib/authentication/providers/clerk.tsx +70 -15
- package/src/lib/authentication/providers/openid.tsx +72 -55
- package/src/lib/authentication/providers/supabase.tsx +157 -0
- package/src/lib/authentication/state.ts +56 -8
- package/{LICENSE.md → src/lib/authentication/use-broadcast/LICENSE.md} +2 -2
- package/src/lib/authentication/use-broadcast/shared.ts +372 -0
- package/src/lib/authentication/use-broadcast/useBroadcast.ts +146 -0
- package/src/lib/components/AnchorLink.tsx +13 -8
- package/src/lib/components/Autocomplete.tsx +113 -0
- package/src/lib/components/Banner.tsx +13 -2
- package/src/lib/components/Bootstrap.tsx +43 -16
- package/src/lib/components/ClientOnly.tsx +6 -3
- package/src/lib/components/DeveloperHint.tsx +6 -1
- package/src/lib/components/ErrorPage.tsx +0 -2
- package/src/lib/components/Footer.tsx +139 -0
- package/src/lib/components/Header.tsx +104 -51
- package/src/lib/components/Heading.tsx +13 -13
- package/src/lib/components/InlineCode.tsx +15 -8
- package/src/lib/components/Layout.tsx +34 -54
- package/src/lib/components/Main.tsx +50 -0
- package/src/lib/components/Markdown.tsx +15 -16
- package/src/lib/components/MobileTopNavigation.tsx +42 -28
- package/src/lib/components/NotFoundPage.tsx +1 -1
- package/src/lib/components/Pagination.tsx +50 -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/SlotletProvider.tsx +29 -4
- package/src/lib/components/StatusPage.tsx +91 -0
- package/src/lib/components/ThemeSwitch.tsx +46 -0
- package/src/lib/components/TopNavigation.tsx +107 -25
- package/src/lib/components/Zudoku.tsx +121 -0
- 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/ViewportAnchorContext.tsx +26 -21
- package/src/lib/components/context/ZudokuContext.ts +54 -29
- package/src/lib/components/context/ZudokuProvider.tsx +2 -2
- package/src/lib/components/index.ts +31 -6
- package/src/lib/components/navigation/PoweredByZudoku.tsx +23 -0
- package/src/lib/components/navigation/Sidebar.tsx +38 -29
- package/src/lib/components/navigation/SidebarBadge.tsx +17 -12
- package/src/lib/components/navigation/SidebarCategory.tsx +61 -52
- package/src/lib/components/navigation/SidebarItem.tsx +38 -50
- package/src/lib/components/navigation/SidebarWrapper.tsx +42 -22
- package/src/lib/{plugins/markdown → components/navigation}/Toc.tsx +5 -14
- package/src/lib/components/navigation/ZudokuLogo.tsx +25 -0
- package/src/lib/components/navigation/utils.ts +12 -17
- package/src/lib/core/RouteGuard.tsx +96 -0
- package/src/lib/core/ZudokuContext.ts +180 -0
- package/src/lib/core/plugins.ts +46 -22
- package/src/lib/errors/ErrorAlert.tsx +36 -15
- package/src/lib/errors/RouterError.tsx +1 -1
- package/src/lib/hooks/index.ts +5 -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 +50 -0
- package/src/lib/oas/graphql/index.ts +321 -115
- package/src/lib/oas/parser/dereference/index.ts +10 -4
- package/src/lib/oas/parser/index.ts +8 -29
- package/src/lib/oas/parser/upgrade/index.ts +24 -29
- 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 +10 -6
- package/src/lib/plugins/api-keys/ProtectedRoute.tsx +1 -1
- package/src/lib/plugins/api-keys/SettingsApiKeys.tsx +1 -1
- package/src/lib/plugins/api-keys/index.tsx +16 -10
- package/src/lib/plugins/custom-pages/CustomPage.tsx +18 -0
- package/src/lib/plugins/custom-pages/index.tsx +24 -0
- package/src/lib/plugins/markdown/MdxPage.tsx +54 -50
- package/src/lib/plugins/markdown/index.tsx +53 -11
- package/src/lib/plugins/markdown/resolver.ts +57 -0
- package/src/lib/plugins/openapi/CollapsibleCode.tsx +83 -0
- package/src/lib/plugins/openapi/ColorizedParam.tsx +49 -23
- package/src/lib/plugins/openapi/Endpoint.tsx +83 -22
- package/src/lib/plugins/openapi/OasProvider.tsx +51 -0
- package/src/lib/plugins/openapi/OperationList.tsx +231 -71
- package/src/lib/plugins/openapi/OperationListItem.tsx +136 -88
- package/src/lib/plugins/openapi/ParamInfos.tsx +87 -0
- package/src/lib/plugins/openapi/ParameterList.tsx +4 -0
- package/src/lib/plugins/openapi/ParameterListItem.tsx +48 -31
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +24 -2
- package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +15 -33
- package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +46 -58
- package/src/lib/plugins/openapi/SchemaList.tsx +151 -0
- package/src/lib/plugins/openapi/Sidecar.tsx +155 -106
- package/src/lib/plugins/openapi/SidecarBox.tsx +4 -16
- package/src/lib/plugins/openapi/SidecarExamples.tsx +162 -0
- package/src/lib/plugins/openapi/SimpleSelect.tsx +11 -3
- package/src/lib/plugins/openapi/client/GraphQLClient.tsx +65 -0
- package/src/lib/plugins/openapi/client/GraphQLContext.tsx +16 -0
- package/src/lib/plugins/openapi/client/createServer.ts +8 -2
- package/src/lib/plugins/openapi/client/useCreateQuery.ts +26 -0
- package/src/lib/plugins/openapi/components/EnumValues.tsx +58 -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/fragment-masking.ts +11 -18
- package/src/lib/plugins/openapi/graphql/gql.ts +46 -30
- package/src/lib/plugins/openapi/graphql/graphql.ts +413 -597
- package/src/lib/plugins/openapi/index.tsx +110 -138
- package/src/lib/plugins/openapi/interfaces.ts +60 -3
- package/src/lib/plugins/openapi/playground/ExamplesDropdown.tsx +52 -0
- package/src/lib/plugins/openapi/playground/Headers.tsx +165 -36
- package/src/lib/plugins/openapi/playground/IdentityDialog.tsx +74 -0
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +54 -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 +395 -220
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +7 -4
- package/src/lib/plugins/openapi/playground/QueryParams.tsx +86 -88
- package/src/lib/plugins/openapi/playground/RequestLoginDialog.tsx +51 -0
- package/src/lib/plugins/openapi/playground/SubmitButton.tsx +75 -0
- package/src/lib/plugins/openapi/playground/createUrl.ts +6 -1
- 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 +230 -0
- package/src/lib/plugins/openapi/playground/result-panel/ResultPanel.tsx +123 -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/processors/removeExtensions.test.ts +202 -0
- package/src/lib/plugins/openapi/processors/removeExtensions.ts +27 -0
- package/src/lib/plugins/openapi/processors/removeParameters.test.ts +148 -0
- package/src/lib/plugins/openapi/processors/removeParameters.ts +101 -0
- package/src/lib/plugins/openapi/processors/removePaths.test.ts +126 -0
- package/src/lib/plugins/openapi/processors/removePaths.ts +55 -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 +36 -0
- package/src/lib/plugins/openapi/schema/SchemaPropertyItem.tsx +148 -0
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +88 -136
- package/src/lib/plugins/openapi/schema/utils.ts +11 -1
- package/src/lib/plugins/openapi/state.ts +36 -0
- package/src/lib/plugins/openapi/util/createSidebarCategory.tsx +37 -0
- package/src/lib/plugins/openapi/util/generateSchemaExample.ts +44 -43
- package/src/lib/plugins/openapi/util/getRoutes.tsx +126 -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 +6 -10
- package/src/lib/plugins/search-inkeep/index.tsx +80 -25
- 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/ui/Accordion.tsx +56 -0
- package/src/lib/ui/ActionButton.tsx +28 -0
- package/src/lib/ui/{Note.tsx → Alert.tsx} +11 -10
- package/src/lib/ui/AlertDialog.tsx +139 -0
- package/src/lib/ui/AspectRatio.tsx +5 -0
- package/src/lib/ui/Badge.tsx +37 -0
- package/src/lib/ui/Breadcrumb.tsx +115 -0
- package/src/lib/ui/Button.tsx +5 -3
- package/src/lib/ui/Callout.tsx +36 -16
- package/src/lib/ui/Card.tsx +1 -1
- package/src/lib/ui/Carousel.tsx +260 -0
- package/src/lib/ui/Checkbox.tsx +29 -0
- package/src/lib/ui/Collapsible.tsx +9 -0
- package/src/lib/ui/Command.tsx +193 -0
- package/src/lib/{components → ui}/Dialog.tsx +4 -3
- package/src/lib/ui/Drawer.tsx +38 -36
- package/src/lib/ui/Form.tsx +177 -0
- package/src/lib/ui/HoverCard.tsx +27 -0
- package/src/lib/ui/Input.tsx +1 -2
- package/src/lib/ui/Label.tsx +24 -0
- package/src/lib/ui/Pagination.tsx +117 -0
- package/src/lib/ui/Popover.tsx +29 -0
- package/src/lib/ui/Progress.tsx +26 -0
- package/src/lib/ui/RadioGroup.tsx +42 -0
- package/src/lib/ui/ScrollArea.tsx +46 -0
- package/src/lib/{components → ui}/Select.tsx +2 -2
- package/src/lib/ui/Skeleton.tsx +15 -0
- package/src/lib/ui/Slider.tsx +26 -0
- package/src/lib/ui/Stepper.tsx +8 -0
- package/src/lib/ui/Switch.tsx +27 -0
- package/src/lib/ui/SyntaxHighlight.tsx +186 -0
- package/src/lib/ui/Textarea.tsx +23 -0
- package/src/lib/ui/Toggle.tsx +43 -0
- package/src/lib/ui/ToggleGroup.tsx +59 -0
- package/src/lib/ui/Tooltip.tsx +28 -0
- package/src/lib/ui/util.tsx +3 -0
- package/src/lib/util/MdxComponents.tsx +12 -12
- package/src/lib/util/createVariantComponent.tsx +2 -2
- package/src/lib/util/detectOS.ts +9 -0
- package/src/lib/util/invariant.ts +15 -3
- 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 +31 -0
- package/src/lib/util/types.ts +7 -0
- package/src/lib/util/useExposedProps.tsx +16 -0
- package/src/lib/util/useIsomorphicLayoutEffect.ts +5 -0
- package/src/lib/util/useLatest.ts +18 -0
- package/src/lib/util/useOnScreen.ts +34 -0
- package/src/lib/util/useScrollToAnchor.ts +48 -39
- package/src/lib/util/useScrollToTop.ts +9 -4
- package/dist/internal.d.ts +0 -1
- package/dist/internal.js +0 -2
- package/dist/internal.js.map +0 -1
- package/dist/lib/components/DevPortal.js.map +0 -1
- package/dist/lib/components/Dialog.js.map +0 -1
- package/dist/lib/components/Select.js.map +0 -1
- package/dist/lib/components/SyntaxHighlight.d.ts +0 -11
- package/dist/lib/components/SyntaxHighlight.js +0 -50
- 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/components/context/ThemeContext.d.ts +0 -2
- package/dist/lib/components/context/ThemeContext.js +0 -7
- package/dist/lib/components/context/ThemeContext.js.map +0 -1
- package/dist/lib/components/context/ThemeProvider.d.ts +0 -4
- package/dist/lib/components/context/ThemeProvider.js +0 -23
- package/dist/lib/components/context/ThemeProvider.js.map +0 -1
- package/dist/lib/core/DevPortalContext.d.ts +0 -78
- package/dist/lib/core/DevPortalContext.js +0 -49
- package/dist/lib/core/DevPortalContext.js.map +0 -1
- package/dist/lib/plugins/custom-page/index.d.ts +0 -8
- package/dist/lib/plugins/custom-page/index.js +0 -12
- package/dist/lib/plugins/custom-page/index.js.map +0 -1
- package/dist/lib/plugins/markdown/Toc.js.map +0 -1
- package/dist/lib/plugins/markdown/generateRoutes.d.ts +0 -3
- package/dist/lib/plugins/markdown/generateRoutes.js +0 -19
- package/dist/lib/plugins/markdown/generateRoutes.js.map +0 -1
- package/dist/lib/plugins/openapi/Route.d.ts +0 -6
- package/dist/lib/plugins/openapi/Route.js +0 -8
- package/dist/lib/plugins/openapi/Route.js.map +0 -1
- package/dist/lib/plugins/openapi/client/createMemoryClient.d.ts +0 -12
- package/dist/lib/plugins/openapi/client/createMemoryClient.js +0 -46
- package/dist/lib/plugins/openapi/client/createMemoryClient.js.map +0 -1
- package/dist/lib/plugins/openapi/client/createWorkerClient.d.ts +0 -10
- package/dist/lib/plugins/openapi/client/createWorkerClient.js +0 -61
- package/dist/lib/plugins/openapi/client/createWorkerClient.js.map +0 -1
- package/dist/lib/plugins/openapi/client/interfaces.d.ts +0 -4
- package/dist/lib/plugins/openapi/client/interfaces.js +0 -2
- package/dist/lib/plugins/openapi/client/interfaces.js.map +0 -1
- package/dist/lib/plugins/openapi/client/worker.js +0 -20
- package/dist/lib/plugins/openapi/client/worker.js.map +0 -1
- package/dist/lib/plugins/openapi/playground/Editor.d.ts +0 -1
- package/dist/lib/plugins/openapi/playground/Editor.js +0 -5
- package/dist/lib/plugins/openapi/playground/Editor.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/util/urql.d.ts +0 -7
- package/dist/lib/plugins/openapi/util/urql.js +0 -8
- package/dist/lib/plugins/openapi/util/urql.js.map +0 -1
- package/dist/lib/plugins/openapi-worker.d.ts +0 -1
- package/dist/lib/plugins/openapi-worker.js +0 -2
- 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/lib/themeToggle.d.ts +0 -1
- package/dist/lib/themeToggle.js +0 -7
- package/dist/lib/themeToggle.js.map +0 -1
- package/dist/lib/ui/Note.d.ts +0 -8
- package/dist/lib/ui/Note.js +0 -23
- package/dist/lib/ui/Note.js.map +0 -1
- package/dist/lib/util/createWaitForNotify.d.ts +0 -1
- package/dist/lib/util/createWaitForNotify.js +0 -15
- package/dist/lib/util/createWaitForNotify.js.map +0 -1
- package/dist/lib/util/slugify.d.ts +0 -2
- package/dist/lib/util/slugify.js +0 -3
- package/dist/lib/util/slugify.js.map +0 -1
- package/dist/vite/plugin-custom-css.js +0 -55
- package/dist/vite/plugin-custom-css.js.map +0 -1
- package/dist/vite/plugin-html-transform.d.ts +0 -2
- package/dist/vite/plugin-html-transform.js +0 -15
- package/dist/vite/plugin-html-transform.js.map +0 -1
- package/dist/vite/plugin-icons.d.ts +0 -3
- package/dist/vite/plugin-icons.js +0 -47
- package/dist/vite/plugin-icons.js.map +0 -1
- package/dist/vite/prerender.d.ts +0 -17
- package/dist/vite/prerender.js +0 -87
- package/dist/vite/prerender.js.map +0 -1
- package/lib/AuthenticationPlugin-Bx9FK124.js +0 -55
- package/lib/AuthenticationPlugin-Bx9FK124.js.map +0 -1
- package/lib/CategoryHeading-XnFqN2lJ.js +0 -10
- package/lib/DeveloperHint-FBb2uXJe.js +0 -16
- package/lib/DeveloperHint-FBb2uXJe.js.map +0 -1
- package/lib/ErrorPage-knunPbKI.js +0 -18
- package/lib/ErrorPage-knunPbKI.js.map +0 -1
- package/lib/InkeepCustomTrigger-CE5-K5ex.js +0 -6
- package/lib/InkeepCustomTrigger-CE5-K5ex.js.map +0 -1
- package/lib/Input-BEDZAKw0.js +0 -2198
- package/lib/Input-BEDZAKw0.js.map +0 -1
- package/lib/Markdown-B4aR03g6.js +0 -20279
- package/lib/Markdown-B4aR03g6.js.map +0 -1
- package/lib/MdxPage-BZyQsH8Z.js +0 -172
- package/lib/MdxPage-BZyQsH8Z.js.map +0 -1
- package/lib/OperationList-2NeWEM0u.js +0 -560
- package/lib/OperationList-2NeWEM0u.js.map +0 -1
- package/lib/Route-BZPewmrN.js +0 -14
- package/lib/Route-BZPewmrN.js.map +0 -1
- package/lib/SidebarBadge-COz0hgfa.js +0 -498
- package/lib/SidebarBadge-COz0hgfa.js.map +0 -1
- package/lib/SlotletProvider-DJMaOUDs.js +0 -238
- package/lib/SlotletProvider-DJMaOUDs.js.map +0 -1
- package/lib/ZudokuContext-cr-pTRY1.js +0 -1084
- package/lib/ZudokuContext-cr-pTRY1.js.map +0 -1
- package/lib/assets/index-B9EWVYfo.js +0 -4790
- package/lib/assets/index-B9EWVYfo.js.map +0 -1
- package/lib/assets/worker-BvD7B6MG.js +0 -15839
- package/lib/assets/worker-BvD7B6MG.js.map +0 -1
- package/lib/index-1EDgIO6b.js +0 -124
- package/lib/index-1EDgIO6b.js.map +0 -1
- package/lib/index-BG0g4WW0.js +0 -1771
- package/lib/index-BG0g4WW0.js.map +0 -1
- package/lib/index-CLd8ycZz.js.map +0 -1
- package/lib/index-Dv2KZuEw.js +0 -5685
- package/lib/index-Dv2KZuEw.js.map +0 -1
- package/lib/index-Zezcv0xb.js +0 -2814
- package/lib/index-Zezcv0xb.js.map +0 -1
- package/lib/joinPath-B7kNnUX4.js +0 -8
- package/lib/joinPath-B7kNnUX4.js.map +0 -1
- package/lib/jsx-runtime-B6kdoens.js +0 -635
- package/lib/jsx-runtime-B6kdoens.js.map +0 -1
- package/lib/prism-csharp.min-Yizuc34Y.js +0 -35
- package/lib/prism-java.min-d5iT_mOd.js +0 -7
- package/lib/prism-markup-templating-DZrrEs0A.js +0 -62
- package/lib/prism-markup-templating-DZrrEs0A.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-typescript.min-oSVeWCAd.js +0 -6
- package/lib/router-D2p7Olpn.js +0 -2971
- package/lib/router-D2p7Olpn.js.map +0 -1
- package/lib/slugify-DbLhpSPt.js +0 -28
- package/lib/slugify-DbLhpSPt.js.map +0 -1
- package/lib/state-lIwt9isb.js +0 -288
- package/lib/state-lIwt9isb.js.map +0 -1
- package/lib/urql-YhcsXYy8.js +0 -1591
- package/lib/urql-YhcsXYy8.js.map +0 -1
- package/lib/utils-ByIc_KIM.js +0 -749
- package/lib/utils-ByIc_KIM.js.map +0 -1
- package/lib/zudoku.openapi-worker.js +0 -16053
- package/lib/zudoku.openapi-worker.js.map +0 -1
- package/lib/zudoku.plugin-custom-page.js +0 -13
- package/lib/zudoku.plugin-custom-page.js.map +0 -1
- package/src/lib/components/DevPortal.tsx +0 -111
- package/src/lib/components/SyntaxHighlight.tsx +0 -122
- package/src/lib/components/context/PluginSystem.ts +0 -0
- package/src/lib/components/context/ThemeContext.tsx +0 -8
- package/src/lib/components/context/ThemeProvider.tsx +0 -27
- package/src/lib/core/DevPortalContext.ts +0 -135
- package/src/lib/plugins/custom-page/index.tsx +0 -22
- package/src/lib/plugins/markdown/generateRoutes.tsx +0 -35
- package/src/lib/plugins/openapi/Route.tsx +0 -21
- package/src/lib/plugins/openapi/client/createMemoryClient.ts +0 -56
- package/src/lib/plugins/openapi/client/createWorkerClient.ts +0 -80
- package/src/lib/plugins/openapi/client/interfaces.ts +0 -5
- package/src/lib/plugins/openapi/client/worker.ts +0 -30
- package/src/lib/plugins/openapi/playground/Editor.tsx +0 -4
- package/src/lib/plugins/openapi/playground/ResponseTab.tsx +0 -77
- package/src/lib/plugins/openapi/schema/SchemaComponents.tsx +0 -126
- package/src/lib/plugins/openapi/util/urql.ts +0 -8
- package/src/lib/plugins/openapi-worker.ts +0 -1
- package/src/lib/plugins/search-inkeep/InkeepCustomTrigger.tsx +0 -3
- package/src/lib/themeToggle.ts +0 -7
- package/src/lib/util/createWaitForNotify.ts +0 -18
- package/src/lib/util/slugify.ts +0 -3
- /package/dist/lib/{plugins/markdown → components/navigation}/Toc.d.ts +0 -0
- /package/dist/lib/{components/context/PluginSystem.d.ts → hooks/useEvent.test.d.ts} +0 -0
- /package/dist/lib/plugins/openapi/{client/worker.d.ts → playground/result-panel/convertToTypes.test.d.ts} +0 -0
- /package/dist/lib/{components → ui}/Dialog.d.ts +0 -0
- /package/dist/lib/{components → ui}/Select.d.ts +0 -0
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
const
|
|
1
|
+
const dt = Symbol.for("yaml.alias"), lt = Symbol.for("yaml.document"), Y = Symbol.for("yaml.map"), qt = Symbol.for("yaml.pair"), R = Symbol.for("yaml.scalar"), he = Symbol.for("yaml.seq"), j = Symbol.for("yaml.node.type"), x = (s) => !!s && typeof s == "object" && s[j] === dt, ee = (s) => !!s && typeof s == "object" && s[j] === lt, de = (s) => !!s && typeof s == "object" && s[j] === Y, T = (s) => !!s && typeof s == "object" && s[j] === qt, E = (s) => !!s && typeof s == "object" && s[j] === R, pe = (s) => !!s && typeof s == "object" && s[j] === he;
|
|
2
2
|
function L(s) {
|
|
3
3
|
if (s && typeof s == "object")
|
|
4
|
-
switch (s[
|
|
5
|
-
case
|
|
6
|
-
case
|
|
4
|
+
switch (s[j]) {
|
|
5
|
+
case Y:
|
|
6
|
+
case he:
|
|
7
7
|
return !0;
|
|
8
8
|
}
|
|
9
9
|
return !1;
|
|
10
10
|
}
|
|
11
11
|
function $(s) {
|
|
12
12
|
if (s && typeof s == "object")
|
|
13
|
-
switch (s[
|
|
14
|
-
case
|
|
15
|
-
case
|
|
13
|
+
switch (s[j]) {
|
|
14
|
+
case dt:
|
|
15
|
+
case Y:
|
|
16
16
|
case R:
|
|
17
|
-
case
|
|
17
|
+
case he:
|
|
18
18
|
return !0;
|
|
19
19
|
}
|
|
20
20
|
return !1;
|
|
21
21
|
}
|
|
22
|
-
const
|
|
23
|
-
function
|
|
24
|
-
const t =
|
|
25
|
-
|
|
22
|
+
const vs = (s) => (E(s) || L(s)) && !!s.anchor, M = Symbol("break visit"), Ft = Symbol("skip children"), F = Symbol("remove node");
|
|
23
|
+
function G(s, e) {
|
|
24
|
+
const t = Rt(e);
|
|
25
|
+
ee(s) ? ie(null, s.contents, t, Object.freeze([s])) === F && (s.contents = null) : ie(null, s, t, Object.freeze([]));
|
|
26
26
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
function
|
|
27
|
+
G.BREAK = M;
|
|
28
|
+
G.SKIP = Ft;
|
|
29
|
+
G.REMOVE = F;
|
|
30
|
+
function ie(s, e, t, n) {
|
|
31
31
|
const i = Ut(s, e, t, n);
|
|
32
|
-
if ($(i) ||
|
|
33
|
-
return
|
|
32
|
+
if ($(i) || T(i))
|
|
33
|
+
return Vt(s, n, i), ie(s, i, t, n);
|
|
34
34
|
if (typeof i != "symbol") {
|
|
35
35
|
if (L(e)) {
|
|
36
36
|
n = Object.freeze(n.concat(e));
|
|
37
37
|
for (let r = 0; r < e.items.length; ++r) {
|
|
38
|
-
const o =
|
|
38
|
+
const o = ie(r, e.items[r], t, n);
|
|
39
39
|
if (typeof o == "number")
|
|
40
40
|
r = o - 1;
|
|
41
41
|
else {
|
|
42
42
|
if (o === M)
|
|
43
43
|
return M;
|
|
44
|
-
o ===
|
|
44
|
+
o === F && (e.items.splice(r, 1), r -= 1);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
} else if (
|
|
47
|
+
} else if (T(e)) {
|
|
48
48
|
n = Object.freeze(n.concat(e));
|
|
49
|
-
const r =
|
|
49
|
+
const r = ie("key", e.key, t, n);
|
|
50
50
|
if (r === M)
|
|
51
51
|
return M;
|
|
52
|
-
r ===
|
|
53
|
-
const o =
|
|
52
|
+
r === F && (e.key = null);
|
|
53
|
+
const o = ie("value", e.value, t, n);
|
|
54
54
|
if (o === M)
|
|
55
55
|
return M;
|
|
56
|
-
o ===
|
|
56
|
+
o === F && (e.value = null);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
return i;
|
|
60
60
|
}
|
|
61
|
-
async function
|
|
62
|
-
const t =
|
|
63
|
-
|
|
61
|
+
async function Fe(s, e) {
|
|
62
|
+
const t = Rt(e);
|
|
63
|
+
ee(s) ? await re(null, s.contents, t, Object.freeze([s])) === F && (s.contents = null) : await re(null, s, t, Object.freeze([]));
|
|
64
64
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
async function
|
|
65
|
+
Fe.BREAK = M;
|
|
66
|
+
Fe.SKIP = Ft;
|
|
67
|
+
Fe.REMOVE = F;
|
|
68
|
+
async function re(s, e, t, n) {
|
|
69
69
|
const i = await Ut(s, e, t, n);
|
|
70
|
-
if ($(i) ||
|
|
71
|
-
return
|
|
70
|
+
if ($(i) || T(i))
|
|
71
|
+
return Vt(s, n, i), re(s, i, t, n);
|
|
72
72
|
if (typeof i != "symbol") {
|
|
73
73
|
if (L(e)) {
|
|
74
74
|
n = Object.freeze(n.concat(e));
|
|
75
75
|
for (let r = 0; r < e.items.length; ++r) {
|
|
76
|
-
const o = await
|
|
76
|
+
const o = await re(r, e.items[r], t, n);
|
|
77
77
|
if (typeof o == "number")
|
|
78
78
|
r = o - 1;
|
|
79
79
|
else {
|
|
80
80
|
if (o === M)
|
|
81
81
|
return M;
|
|
82
|
-
o ===
|
|
82
|
+
o === F && (e.items.splice(r, 1), r -= 1);
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
-
} else if (
|
|
85
|
+
} else if (T(e)) {
|
|
86
86
|
n = Object.freeze(n.concat(e));
|
|
87
|
-
const r = await
|
|
87
|
+
const r = await re("key", e.key, t, n);
|
|
88
88
|
if (r === M)
|
|
89
89
|
return M;
|
|
90
|
-
r ===
|
|
91
|
-
const o = await
|
|
90
|
+
r === F && (e.key = null);
|
|
91
|
+
const o = await re("value", e.value, t, n);
|
|
92
92
|
if (o === M)
|
|
93
93
|
return M;
|
|
94
|
-
o ===
|
|
94
|
+
o === F && (e.value = null);
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
return i;
|
|
98
98
|
}
|
|
99
|
-
function
|
|
99
|
+
function Rt(s) {
|
|
100
100
|
return typeof s == "object" && (s.Collection || s.Node || s.Value) ? Object.assign({
|
|
101
101
|
Alias: s.Node,
|
|
102
102
|
Map: s.Node,
|
|
@@ -115,38 +115,38 @@ function Ut(s, e, t, n) {
|
|
|
115
115
|
var i, r, o, l, a;
|
|
116
116
|
if (typeof t == "function")
|
|
117
117
|
return t(s, e, n);
|
|
118
|
-
if (he(e))
|
|
119
|
-
return (i = t.Map) == null ? void 0 : i.call(t, s, e, n);
|
|
120
118
|
if (de(e))
|
|
119
|
+
return (i = t.Map) == null ? void 0 : i.call(t, s, e, n);
|
|
120
|
+
if (pe(e))
|
|
121
121
|
return (r = t.Seq) == null ? void 0 : r.call(t, s, e, n);
|
|
122
|
-
if (
|
|
122
|
+
if (T(e))
|
|
123
123
|
return (o = t.Pair) == null ? void 0 : o.call(t, s, e, n);
|
|
124
124
|
if (E(e))
|
|
125
125
|
return (l = t.Scalar) == null ? void 0 : l.call(t, s, e, n);
|
|
126
|
-
if (
|
|
126
|
+
if (x(e))
|
|
127
127
|
return (a = t.Alias) == null ? void 0 : a.call(t, s, e, n);
|
|
128
128
|
}
|
|
129
|
-
function
|
|
129
|
+
function Vt(s, e, t) {
|
|
130
130
|
const n = e[e.length - 1];
|
|
131
131
|
if (L(n))
|
|
132
132
|
n.items[s] = t;
|
|
133
|
-
else if (
|
|
133
|
+
else if (T(n))
|
|
134
134
|
s === "key" ? n.key = t : n.value = t;
|
|
135
|
-
else if (
|
|
135
|
+
else if (ee(n))
|
|
136
136
|
n.contents = t;
|
|
137
137
|
else {
|
|
138
|
-
const i =
|
|
138
|
+
const i = x(n) ? "alias" : "scalar";
|
|
139
139
|
throw new Error(`Cannot replace node with ${i} parent`);
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
|
-
const
|
|
142
|
+
const Bs = {
|
|
143
143
|
"!": "%21",
|
|
144
144
|
",": "%2C",
|
|
145
145
|
"[": "%5B",
|
|
146
146
|
"]": "%5D",
|
|
147
147
|
"{": "%7B",
|
|
148
148
|
"}": "%7D"
|
|
149
|
-
},
|
|
149
|
+
}, Ms = (s) => s.replace(/[!,[\]{}]/g, (e) => Bs[e]);
|
|
150
150
|
class B {
|
|
151
151
|
constructor(e, t) {
|
|
152
152
|
this.docStart = null, this.docEnd = !1, this.yaml = Object.assign({}, B.defaultYaml, e), this.tags = Object.assign({}, B.defaultTags, t);
|
|
@@ -236,7 +236,7 @@ class B {
|
|
|
236
236
|
tagString(e) {
|
|
237
237
|
for (const [t, n] of Object.entries(this.tags))
|
|
238
238
|
if (e.startsWith(n))
|
|
239
|
-
return t +
|
|
239
|
+
return t + Ms(e.substring(n.length));
|
|
240
240
|
return e[0] === "!" ? e : `!<${e}>`;
|
|
241
241
|
}
|
|
242
242
|
toString(e) {
|
|
@@ -244,7 +244,7 @@ class B {
|
|
|
244
244
|
let i;
|
|
245
245
|
if (e && n.length > 0 && $(e.contents)) {
|
|
246
246
|
const r = {};
|
|
247
|
-
|
|
247
|
+
G(e.contents, (o, l) => {
|
|
248
248
|
$(l) && l.tag && (r[l.tag] = !0);
|
|
249
249
|
}), i = Object.keys(r);
|
|
250
250
|
} else
|
|
@@ -257,35 +257,35 @@ class B {
|
|
|
257
257
|
}
|
|
258
258
|
B.defaultYaml = { explicit: !1, version: "1.2" };
|
|
259
259
|
B.defaultTags = { "!!": "tag:yaml.org,2002:" };
|
|
260
|
-
function
|
|
260
|
+
function Jt(s) {
|
|
261
261
|
if (/[\x00-\x19\s,[\]{}]/.test(s)) {
|
|
262
262
|
const t = `Anchor must not contain whitespace or control characters: ${JSON.stringify(s)}`;
|
|
263
263
|
throw new Error(t);
|
|
264
264
|
}
|
|
265
265
|
return !0;
|
|
266
266
|
}
|
|
267
|
-
function
|
|
267
|
+
function Yt(s) {
|
|
268
268
|
const e = /* @__PURE__ */ new Set();
|
|
269
|
-
return
|
|
269
|
+
return G(s, {
|
|
270
270
|
Value(t, n) {
|
|
271
271
|
n.anchor && e.add(n.anchor);
|
|
272
272
|
}
|
|
273
273
|
}), e;
|
|
274
274
|
}
|
|
275
|
-
function
|
|
275
|
+
function Gt(s, e) {
|
|
276
276
|
for (let t = 1; ; ++t) {
|
|
277
277
|
const n = `${s}${t}`;
|
|
278
278
|
if (!e.has(n))
|
|
279
279
|
return n;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
function
|
|
282
|
+
function Ks(s, e) {
|
|
283
283
|
const t = [], n = /* @__PURE__ */ new Map();
|
|
284
284
|
let i = null;
|
|
285
285
|
return {
|
|
286
286
|
onAnchor: (r) => {
|
|
287
|
-
t.push(r), i || (i =
|
|
288
|
-
const o =
|
|
287
|
+
t.push(r), i || (i = Yt(s));
|
|
288
|
+
const o = Gt(e, i);
|
|
289
289
|
return i.add(o), o;
|
|
290
290
|
},
|
|
291
291
|
/**
|
|
@@ -307,35 +307,35 @@ function vs(s, e) {
|
|
|
307
307
|
sourceObjects: n
|
|
308
308
|
};
|
|
309
309
|
}
|
|
310
|
-
function
|
|
310
|
+
function oe(s, e, t, n) {
|
|
311
311
|
if (n && typeof n == "object")
|
|
312
312
|
if (Array.isArray(n))
|
|
313
313
|
for (let i = 0, r = n.length; i < r; ++i) {
|
|
314
|
-
const o = n[i], l =
|
|
314
|
+
const o = n[i], l = oe(s, n, String(i), o);
|
|
315
315
|
l === void 0 ? delete n[i] : l !== o && (n[i] = l);
|
|
316
316
|
}
|
|
317
317
|
else if (n instanceof Map)
|
|
318
318
|
for (const i of Array.from(n.keys())) {
|
|
319
|
-
const r = n.get(i), o =
|
|
319
|
+
const r = n.get(i), o = oe(s, n, i, r);
|
|
320
320
|
o === void 0 ? n.delete(i) : o !== r && n.set(i, o);
|
|
321
321
|
}
|
|
322
322
|
else if (n instanceof Set)
|
|
323
323
|
for (const i of Array.from(n)) {
|
|
324
|
-
const r =
|
|
324
|
+
const r = oe(s, n, i, i);
|
|
325
325
|
r === void 0 ? n.delete(i) : r !== i && (n.delete(i), n.add(r));
|
|
326
326
|
}
|
|
327
327
|
else
|
|
328
328
|
for (const [i, r] of Object.entries(n)) {
|
|
329
|
-
const o =
|
|
329
|
+
const o = oe(s, n, i, r);
|
|
330
330
|
o === void 0 ? delete n[i] : o !== r && (n[i] = o);
|
|
331
331
|
}
|
|
332
332
|
return s.call(e, t, n);
|
|
333
333
|
}
|
|
334
|
-
function
|
|
334
|
+
function P(s, e, t) {
|
|
335
335
|
if (Array.isArray(s))
|
|
336
|
-
return s.map((n, i) =>
|
|
336
|
+
return s.map((n, i) => P(n, String(i), t));
|
|
337
337
|
if (s && typeof s.toJSON == "function") {
|
|
338
|
-
if (!t ||
|
|
338
|
+
if (!t || !vs(s))
|
|
339
339
|
return s.toJSON(e, t);
|
|
340
340
|
const n = { aliasCount: 0, count: 1, res: void 0 };
|
|
341
341
|
t.anchors.set(s, n), t.onCreate = (r) => {
|
|
@@ -346,9 +346,9 @@ function j(s, e, t) {
|
|
|
346
346
|
}
|
|
347
347
|
return typeof s == "bigint" && !(t != null && t.keep) ? Number(s) : s;
|
|
348
348
|
}
|
|
349
|
-
class
|
|
349
|
+
class pt {
|
|
350
350
|
constructor(e) {
|
|
351
|
-
Object.defineProperty(this,
|
|
351
|
+
Object.defineProperty(this, j, { value: e });
|
|
352
352
|
}
|
|
353
353
|
/** Create a copy of this node. */
|
|
354
354
|
clone() {
|
|
@@ -357,7 +357,7 @@ class ht {
|
|
|
357
357
|
}
|
|
358
358
|
/** A plain JavaScript representation of this node. */
|
|
359
359
|
toJS(e, { mapAsMap: t, maxAliasCount: n, onAnchor: i, reviver: r } = {}) {
|
|
360
|
-
if (!
|
|
360
|
+
if (!ee(e))
|
|
361
361
|
throw new TypeError("A document argument is required");
|
|
362
362
|
const o = {
|
|
363
363
|
anchors: /* @__PURE__ */ new Map(),
|
|
@@ -366,16 +366,16 @@ class ht {
|
|
|
366
366
|
mapAsMap: t === !0,
|
|
367
367
|
mapKeyWarned: !1,
|
|
368
368
|
maxAliasCount: typeof n == "number" ? n : 100
|
|
369
|
-
}, l =
|
|
369
|
+
}, l = P(this, "", o);
|
|
370
370
|
if (typeof i == "function")
|
|
371
371
|
for (const { count: a, res: c } of o.anchors.values())
|
|
372
372
|
i(c, a);
|
|
373
|
-
return typeof r == "function" ?
|
|
373
|
+
return typeof r == "function" ? oe(r, { "": l }, "", l) : l;
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
|
-
class
|
|
376
|
+
class Re extends pt {
|
|
377
377
|
constructor(e) {
|
|
378
|
-
super(
|
|
378
|
+
super(dt), this.source = e, Object.defineProperty(this, "tag", {
|
|
379
379
|
set() {
|
|
380
380
|
throw new Error("Alias nodes cannot have tags");
|
|
381
381
|
}
|
|
@@ -387,10 +387,10 @@ class qe extends ht {
|
|
|
387
387
|
*/
|
|
388
388
|
resolve(e) {
|
|
389
389
|
let t;
|
|
390
|
-
return
|
|
390
|
+
return G(e, {
|
|
391
391
|
Node: (n, i) => {
|
|
392
392
|
if (i === this)
|
|
393
|
-
return
|
|
393
|
+
return G.BREAK;
|
|
394
394
|
i.anchor === this.source && (t = i);
|
|
395
395
|
}
|
|
396
396
|
}), t;
|
|
@@ -404,11 +404,11 @@ class qe extends ht {
|
|
|
404
404
|
throw new ReferenceError(a);
|
|
405
405
|
}
|
|
406
406
|
let l = n.get(o);
|
|
407
|
-
if (l || (
|
|
407
|
+
if (l || (P(o, null, t), l = n.get(o)), !l || l.res === void 0) {
|
|
408
408
|
const a = "This should not happen: Alias anchor was not resolved?";
|
|
409
409
|
throw new ReferenceError(a);
|
|
410
410
|
}
|
|
411
|
-
if (r >= 0 && (l.count += 1, l.aliasCount === 0 && (l.aliasCount =
|
|
411
|
+
if (r >= 0 && (l.count += 1, l.aliasCount === 0 && (l.aliasCount = ve(i, o, n)), l.count * l.aliasCount > r)) {
|
|
412
412
|
const a = "Excessive alias count indicates a resource exhaustion attack";
|
|
413
413
|
throw new ReferenceError(a);
|
|
414
414
|
}
|
|
@@ -417,7 +417,7 @@ class qe extends ht {
|
|
|
417
417
|
toString(e, t, n) {
|
|
418
418
|
const i = `*${this.source}`;
|
|
419
419
|
if (e) {
|
|
420
|
-
if (
|
|
420
|
+
if (Jt(this.source), e.options.verifyAliasOrder && !e.anchors.has(this.source)) {
|
|
421
421
|
const r = `Unresolved alias (the anchor must be set before the alias): ${this.source}`;
|
|
422
422
|
throw new Error(r);
|
|
423
423
|
}
|
|
@@ -427,42 +427,42 @@ class qe extends ht {
|
|
|
427
427
|
return i;
|
|
428
428
|
}
|
|
429
429
|
}
|
|
430
|
-
function
|
|
431
|
-
if (
|
|
430
|
+
function ve(s, e, t) {
|
|
431
|
+
if (x(e)) {
|
|
432
432
|
const n = e.resolve(s), i = t && n && t.get(n);
|
|
433
433
|
return i ? i.count * i.aliasCount : 0;
|
|
434
434
|
} else if (L(e)) {
|
|
435
435
|
let n = 0;
|
|
436
436
|
for (const i of e.items) {
|
|
437
|
-
const r =
|
|
437
|
+
const r = ve(s, i, t);
|
|
438
438
|
r > n && (n = r);
|
|
439
439
|
}
|
|
440
440
|
return n;
|
|
441
|
-
} else if (
|
|
442
|
-
const n =
|
|
441
|
+
} else if (T(e)) {
|
|
442
|
+
const n = ve(s, e.key, t), i = ve(s, e.value, t);
|
|
443
443
|
return Math.max(n, i);
|
|
444
444
|
}
|
|
445
445
|
return 1;
|
|
446
446
|
}
|
|
447
|
-
const
|
|
448
|
-
class
|
|
447
|
+
const Qt = (s) => !s || typeof s != "function" && typeof s != "object";
|
|
448
|
+
class A extends pt {
|
|
449
449
|
constructor(e) {
|
|
450
450
|
super(R), this.value = e;
|
|
451
451
|
}
|
|
452
452
|
toJSON(e, t) {
|
|
453
|
-
return t != null && t.keep ? this.value :
|
|
453
|
+
return t != null && t.keep ? this.value : P(this.value, e, t);
|
|
454
454
|
}
|
|
455
455
|
toString() {
|
|
456
456
|
return String(this.value);
|
|
457
457
|
}
|
|
458
458
|
}
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
const
|
|
465
|
-
function
|
|
459
|
+
A.BLOCK_FOLDED = "BLOCK_FOLDED";
|
|
460
|
+
A.BLOCK_LITERAL = "BLOCK_LITERAL";
|
|
461
|
+
A.PLAIN = "PLAIN";
|
|
462
|
+
A.QUOTE_DOUBLE = "QUOTE_DOUBLE";
|
|
463
|
+
A.QUOTE_SINGLE = "QUOTE_SINGLE";
|
|
464
|
+
const Ps = "tag:yaml.org,2002:";
|
|
465
|
+
function js(s, e, t) {
|
|
466
466
|
if (e) {
|
|
467
467
|
const n = t.filter((r) => r.tag === e), i = n.find((r) => !r.format) ?? n[0];
|
|
468
468
|
if (!i)
|
|
@@ -474,12 +474,12 @@ function Ms(s, e, t) {
|
|
|
474
474
|
return ((i = n.identify) == null ? void 0 : i.call(n, s)) && !n.format;
|
|
475
475
|
});
|
|
476
476
|
}
|
|
477
|
-
function
|
|
477
|
+
function ke(s, e, t) {
|
|
478
478
|
var f, d, h;
|
|
479
|
-
if (
|
|
479
|
+
if (ee(s) && (s = s.contents), $(s))
|
|
480
480
|
return s;
|
|
481
|
-
if (
|
|
482
|
-
const y = (d = (f = t.schema[
|
|
481
|
+
if (T(s)) {
|
|
482
|
+
const y = (d = (f = t.schema[Y]).createNode) == null ? void 0 : d.call(f, t.schema, null, t);
|
|
483
483
|
return y.items.push(s), y;
|
|
484
484
|
}
|
|
485
485
|
(s instanceof String || s instanceof Number || s instanceof Boolean || typeof BigInt < "u" && s instanceof BigInt) && (s = s.valueOf());
|
|
@@ -487,23 +487,23 @@ function Se(s, e, t) {
|
|
|
487
487
|
let a;
|
|
488
488
|
if (n && s && typeof s == "object") {
|
|
489
489
|
if (a = l.get(s), a)
|
|
490
|
-
return a.anchor || (a.anchor = i(s)), new
|
|
490
|
+
return a.anchor || (a.anchor = i(s)), new Re(a.anchor);
|
|
491
491
|
a = { anchor: null, node: null }, l.set(s, a);
|
|
492
492
|
}
|
|
493
|
-
e != null && e.startsWith("!!") && (e =
|
|
494
|
-
let c =
|
|
493
|
+
e != null && e.startsWith("!!") && (e = Ps + e.slice(2));
|
|
494
|
+
let c = js(s, e, o.tags);
|
|
495
495
|
if (!c) {
|
|
496
496
|
if (s && typeof s.toJSON == "function" && (s = s.toJSON()), !s || typeof s != "object") {
|
|
497
|
-
const y = new
|
|
497
|
+
const y = new A(s);
|
|
498
498
|
return a && (a.node = y), y;
|
|
499
499
|
}
|
|
500
|
-
c = s instanceof Map ? o[
|
|
500
|
+
c = s instanceof Map ? o[Y] : Symbol.iterator in Object(s) ? o[he] : o[Y];
|
|
501
501
|
}
|
|
502
502
|
r && (r(c), delete t.onTagObj);
|
|
503
|
-
const
|
|
504
|
-
return e ?
|
|
503
|
+
const p = c != null && c.createNode ? c.createNode(t.schema, s, t) : typeof ((h = c == null ? void 0 : c.nodeClass) == null ? void 0 : h.from) == "function" ? c.nodeClass.from(t.schema, s, t) : new A(s);
|
|
504
|
+
return e ? p.tag = e : c.default || (p.tag = c.tag), a && (a.node = p), p;
|
|
505
505
|
}
|
|
506
|
-
function
|
|
506
|
+
function Pe(s, e, t) {
|
|
507
507
|
let n = t;
|
|
508
508
|
for (let i = e.length - 1; i >= 0; --i) {
|
|
509
509
|
const r = e[i];
|
|
@@ -513,7 +513,7 @@ function Me(s, e, t) {
|
|
|
513
513
|
} else
|
|
514
514
|
n = /* @__PURE__ */ new Map([[r, n]]);
|
|
515
515
|
}
|
|
516
|
-
return
|
|
516
|
+
return ke(n, void 0, {
|
|
517
517
|
aliasDuplicateObjects: !1,
|
|
518
518
|
keepUndefined: !1,
|
|
519
519
|
onAnchor: () => {
|
|
@@ -523,8 +523,8 @@ function Me(s, e, t) {
|
|
|
523
523
|
sourceObjects: /* @__PURE__ */ new Map()
|
|
524
524
|
});
|
|
525
525
|
}
|
|
526
|
-
const
|
|
527
|
-
class
|
|
526
|
+
const we = (s) => s == null || typeof s == "object" && !!s[Symbol.iterator]().next().done;
|
|
527
|
+
class Wt extends pt {
|
|
528
528
|
constructor(e, t) {
|
|
529
529
|
super(e), Object.defineProperty(this, "schema", {
|
|
530
530
|
value: t,
|
|
@@ -540,7 +540,7 @@ class Gt extends ht {
|
|
|
540
540
|
*/
|
|
541
541
|
clone(e) {
|
|
542
542
|
const t = Object.create(Object.getPrototypeOf(this), Object.getOwnPropertyDescriptors(this));
|
|
543
|
-
return e && (t.schema = e), t.items = t.items.map((n) => $(n) ||
|
|
543
|
+
return e && (t.schema = e), t.items = t.items.map((n) => $(n) || T(n) ? n.clone(e) : n), this.range && (t.range = this.range.slice()), t;
|
|
544
544
|
}
|
|
545
545
|
/**
|
|
546
546
|
* Adds a value to the collection. For `!!map` and `!!omap` the value must
|
|
@@ -548,14 +548,14 @@ class Gt extends ht {
|
|
|
548
548
|
* that already exists in the map.
|
|
549
549
|
*/
|
|
550
550
|
addIn(e, t) {
|
|
551
|
-
if (
|
|
551
|
+
if (we(e))
|
|
552
552
|
this.add(t);
|
|
553
553
|
else {
|
|
554
554
|
const [n, ...i] = e, r = this.get(n, !0);
|
|
555
555
|
if (L(r))
|
|
556
556
|
r.addIn(i, t);
|
|
557
557
|
else if (r === void 0 && this.schema)
|
|
558
|
-
this.set(n,
|
|
558
|
+
this.set(n, Pe(this.schema, i, t));
|
|
559
559
|
else
|
|
560
560
|
throw new Error(`Expected YAML collection at ${n}. Remaining path: ${i}`);
|
|
561
561
|
}
|
|
@@ -584,7 +584,7 @@ class Gt extends ht {
|
|
|
584
584
|
}
|
|
585
585
|
hasAllNullValues(e) {
|
|
586
586
|
return this.items.every((t) => {
|
|
587
|
-
if (!
|
|
587
|
+
if (!T(t))
|
|
588
588
|
return !1;
|
|
589
589
|
const n = t.value;
|
|
590
590
|
return n == null || e && E(n) && n.value == null && !n.commentBefore && !n.comment && !n.tag;
|
|
@@ -613,20 +613,20 @@ class Gt extends ht {
|
|
|
613
613
|
if (L(r))
|
|
614
614
|
r.setIn(i, t);
|
|
615
615
|
else if (r === void 0 && this.schema)
|
|
616
|
-
this.set(n,
|
|
616
|
+
this.set(n, Pe(this.schema, i, t));
|
|
617
617
|
else
|
|
618
618
|
throw new Error(`Expected YAML collection at ${n}. Remaining path: ${i}`);
|
|
619
619
|
}
|
|
620
620
|
}
|
|
621
621
|
}
|
|
622
|
-
const
|
|
623
|
-
function
|
|
622
|
+
const Ds = (s) => s.replace(/^(?!$)(?: $)?/gm, "#");
|
|
623
|
+
function U(s, e) {
|
|
624
624
|
return /^\n+$/.test(s) ? s.substring(1) : e ? s.replace(/^(?! *$)/gm, e) : s;
|
|
625
625
|
}
|
|
626
|
-
const
|
|
627
|
-
`) ?
|
|
626
|
+
const H = (s, e, t) => s.endsWith(`
|
|
627
|
+
`) ? U(t, e) : t.includes(`
|
|
628
628
|
`) ? `
|
|
629
|
-
` +
|
|
629
|
+
` + U(t, e) : (s.endsWith(" ") ? "" : " ") + t, Ht = "flow", at = "block", Be = "quoted";
|
|
630
630
|
function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentWidth: r = 20, onFold: o, onOverflow: l } = {}) {
|
|
631
631
|
if (!i || i < 0)
|
|
632
632
|
return s;
|
|
@@ -634,14 +634,14 @@ function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentW
|
|
|
634
634
|
const a = Math.max(1 + r, 1 + i - e.length);
|
|
635
635
|
if (s.length <= a)
|
|
636
636
|
return s;
|
|
637
|
-
const c = [],
|
|
637
|
+
const c = [], p = {};
|
|
638
638
|
let f = i - e.length;
|
|
639
639
|
typeof n == "number" && (n > i - Math.max(2, r) ? c.push(0) : f = i - n);
|
|
640
|
-
let d, h, y = !1, u = -1,
|
|
641
|
-
t ===
|
|
640
|
+
let d, h, y = !1, u = -1, m = -1, b = -1;
|
|
641
|
+
t === at && (u = $t(s, u, e.length), u !== -1 && (f = u + a));
|
|
642
642
|
for (let N; N = s[u += 1]; ) {
|
|
643
|
-
if (t ===
|
|
644
|
-
switch (
|
|
643
|
+
if (t === Be && N === "\\") {
|
|
644
|
+
switch (m = u, s[u + 1]) {
|
|
645
645
|
case "x":
|
|
646
646
|
u += 3;
|
|
647
647
|
break;
|
|
@@ -654,28 +654,28 @@ function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentW
|
|
|
654
654
|
default:
|
|
655
655
|
u += 1;
|
|
656
656
|
}
|
|
657
|
-
|
|
657
|
+
b = u;
|
|
658
658
|
}
|
|
659
659
|
if (N === `
|
|
660
660
|
`)
|
|
661
|
-
t ===
|
|
661
|
+
t === at && (u = $t(s, u, e.length)), f = u + e.length + a, d = void 0;
|
|
662
662
|
else {
|
|
663
663
|
if (N === " " && h && h !== " " && h !== `
|
|
664
664
|
` && h !== " ") {
|
|
665
|
-
const
|
|
666
|
-
|
|
667
|
-
` &&
|
|
665
|
+
const w = s[u + 1];
|
|
666
|
+
w && w !== " " && w !== `
|
|
667
|
+
` && w !== " " && (d = u);
|
|
668
668
|
}
|
|
669
669
|
if (u >= f)
|
|
670
670
|
if (d)
|
|
671
671
|
c.push(d), f = d + a, d = void 0;
|
|
672
|
-
else if (t ===
|
|
672
|
+
else if (t === Be) {
|
|
673
673
|
for (; h === " " || h === " "; )
|
|
674
674
|
h = N, N = s[u += 1], y = !0;
|
|
675
|
-
const
|
|
676
|
-
if (
|
|
675
|
+
const w = u > b + 1 ? u - 2 : m - 1;
|
|
676
|
+
if (p[w])
|
|
677
677
|
return s;
|
|
678
|
-
c.push(
|
|
678
|
+
c.push(w), p[w] = !0, f = w + a, d = void 0;
|
|
679
679
|
} else
|
|
680
680
|
y = !0;
|
|
681
681
|
}
|
|
@@ -684,16 +684,16 @@ function Ue(s, e, t = "flow", { indentAtStart: n, lineWidth: i = 80, minContentW
|
|
|
684
684
|
if (y && l && l(), c.length === 0)
|
|
685
685
|
return s;
|
|
686
686
|
o && o();
|
|
687
|
-
let
|
|
687
|
+
let S = s.slice(0, c[0]);
|
|
688
688
|
for (let N = 0; N < c.length; ++N) {
|
|
689
|
-
const
|
|
690
|
-
|
|
691
|
-
${e}${s.slice(0,
|
|
692
|
-
${e}${s.slice(
|
|
689
|
+
const w = c[N], k = c[N + 1] || s.length;
|
|
690
|
+
w === 0 ? S = `
|
|
691
|
+
${e}${s.slice(0, k)}` : (t === Be && p[w] && (S += `${s[w]}\\`), S += `
|
|
692
|
+
${e}${s.slice(w + 1, k)}`);
|
|
693
693
|
}
|
|
694
|
-
return
|
|
694
|
+
return S;
|
|
695
695
|
}
|
|
696
|
-
function
|
|
696
|
+
function $t(s, e, t) {
|
|
697
697
|
let n = e, i = e + 1, r = s[i];
|
|
698
698
|
for (; r === " " || r === " "; )
|
|
699
699
|
if (e < i + t)
|
|
@@ -707,12 +707,12 @@ function It(s, e, t) {
|
|
|
707
707
|
}
|
|
708
708
|
return n;
|
|
709
709
|
}
|
|
710
|
-
const
|
|
710
|
+
const Ve = (s, e) => ({
|
|
711
711
|
indentAtStart: e ? s.indent.length : s.indentAtStart,
|
|
712
712
|
lineWidth: s.options.lineWidth,
|
|
713
713
|
minContentWidth: s.options.minContentWidth
|
|
714
|
-
}),
|
|
715
|
-
function
|
|
714
|
+
}), Je = (s) => /^(%|---|\.\.\.)/m.test(s);
|
|
715
|
+
function qs(s, e, t) {
|
|
716
716
|
if (!e || e < 0)
|
|
717
717
|
return !1;
|
|
718
718
|
const n = e - t, i = s.length;
|
|
@@ -728,11 +728,11 @@ function js(s, e, t) {
|
|
|
728
728
|
}
|
|
729
729
|
return !0;
|
|
730
730
|
}
|
|
731
|
-
function
|
|
731
|
+
function Se(s, e) {
|
|
732
732
|
const t = JSON.stringify(s);
|
|
733
733
|
if (e.options.doubleQuotedAsJSON)
|
|
734
734
|
return t;
|
|
735
|
-
const { implicitKey: n } = e, i = e.options.doubleQuotedMinMultiLineLength, r = e.indent || (
|
|
735
|
+
const { implicitKey: n } = e, i = e.options.doubleQuotedMinMultiLineLength, r = e.indent || (Je(s) ? " " : "");
|
|
736
736
|
let o = "", l = 0;
|
|
737
737
|
for (let a = 0, c = t[a]; c; c = t[++a])
|
|
738
738
|
if (c === " " && t[a + 1] === "\\" && t[a + 2] === "n" && (o += t.slice(l, a) + "\\ ", a += 1, l = a, c = "\\"), c === "\\")
|
|
@@ -740,8 +740,8 @@ function we(s, e) {
|
|
|
740
740
|
case "u":
|
|
741
741
|
{
|
|
742
742
|
o += t.slice(l, a);
|
|
743
|
-
const
|
|
744
|
-
switch (
|
|
743
|
+
const p = t.substr(a + 2, 4);
|
|
744
|
+
switch (p) {
|
|
745
745
|
case "0000":
|
|
746
746
|
o += "\\0";
|
|
747
747
|
break;
|
|
@@ -767,7 +767,7 @@ function we(s, e) {
|
|
|
767
767
|
o += "\\P";
|
|
768
768
|
break;
|
|
769
769
|
default:
|
|
770
|
-
|
|
770
|
+
p.substr(0, 2) === "00" ? o += "\\x" + p.substr(2) : o += t.substr(a, 6);
|
|
771
771
|
}
|
|
772
772
|
a += 5, l = a + 1;
|
|
773
773
|
}
|
|
@@ -787,43 +787,43 @@ function we(s, e) {
|
|
|
787
787
|
default:
|
|
788
788
|
a += 1;
|
|
789
789
|
}
|
|
790
|
-
return o = l ? o + t.slice(l) : t, n ? o : Ue(o, r,
|
|
790
|
+
return o = l ? o + t.slice(l) : t, n ? o : Ue(o, r, Be, Ve(e, !1));
|
|
791
791
|
}
|
|
792
|
-
function
|
|
792
|
+
function ct(s, e) {
|
|
793
793
|
if (e.options.singleQuote === !1 || e.implicitKey && s.includes(`
|
|
794
794
|
`) || /[ \t]\n|\n[ \t]/.test(s))
|
|
795
|
-
return
|
|
796
|
-
const t = e.indent || (
|
|
795
|
+
return Se(s, e);
|
|
796
|
+
const t = e.indent || (Je(s) ? " " : ""), n = "'" + s.replace(/'/g, "''").replace(/\n+/g, `$&
|
|
797
797
|
${t}`) + "'";
|
|
798
|
-
return e.implicitKey ? n : Ue(n, t,
|
|
798
|
+
return e.implicitKey ? n : Ue(n, t, Ht, Ve(e, !1));
|
|
799
799
|
}
|
|
800
|
-
function
|
|
800
|
+
function le(s, e) {
|
|
801
801
|
const { singleQuote: t } = e.options;
|
|
802
802
|
let n;
|
|
803
803
|
if (t === !1)
|
|
804
|
-
n =
|
|
804
|
+
n = Se;
|
|
805
805
|
else {
|
|
806
806
|
const i = s.includes('"'), r = s.includes("'");
|
|
807
|
-
i && !r ? n =
|
|
807
|
+
i && !r ? n = ct : r && !i ? n = Se : n = t ? ct : Se;
|
|
808
808
|
}
|
|
809
809
|
return n(s, e);
|
|
810
810
|
}
|
|
811
|
-
let
|
|
811
|
+
let ft;
|
|
812
812
|
try {
|
|
813
|
-
|
|
813
|
+
ft = new RegExp(`(^|(?<!
|
|
814
814
|
))
|
|
815
815
|
+(?!
|
|
816
816
|
|$)`, "g");
|
|
817
817
|
} catch {
|
|
818
|
-
|
|
818
|
+
ft = /\n+(?!\n|$)/g;
|
|
819
819
|
}
|
|
820
|
-
function
|
|
820
|
+
function Me({ comment: s, type: e, value: t }, n, i, r) {
|
|
821
821
|
const { blockQuote: o, commentString: l, lineWidth: a } = n.options;
|
|
822
822
|
if (!o || /\n[\t ]+$/.test(t) || /^\s*$/.test(t))
|
|
823
|
-
return
|
|
824
|
-
const c = n.indent || (n.forceBlockIndent ||
|
|
823
|
+
return le(t, n);
|
|
824
|
+
const c = n.indent || (n.forceBlockIndent || Je(t) ? " " : ""), p = o === "literal" ? !0 : o === "folded" || e === A.BLOCK_FOLDED ? !1 : e === A.BLOCK_LITERAL ? !0 : !qs(t, a, c.length);
|
|
825
825
|
if (!t)
|
|
826
|
-
return
|
|
826
|
+
return p ? `|
|
|
827
827
|
` : `>
|
|
828
828
|
`;
|
|
829
829
|
let f, d;
|
|
@@ -837,90 +837,97 @@ function ve({ comment: s, type: e, value: t }, n, i, r) {
|
|
|
837
837
|
const y = h.indexOf(`
|
|
838
838
|
`);
|
|
839
839
|
y === -1 ? f = "-" : t === h || y !== h.length - 1 ? (f = "+", r && r()) : f = "", h && (t = t.slice(0, -h.length), h[h.length - 1] === `
|
|
840
|
-
` && (h = h.slice(0, -1)), h = h.replace(
|
|
841
|
-
let u = !1,
|
|
842
|
-
for (
|
|
843
|
-
const k = t[
|
|
840
|
+
` && (h = h.slice(0, -1)), h = h.replace(ft, `$&${c}`));
|
|
841
|
+
let u = !1, m, b = -1;
|
|
842
|
+
for (m = 0; m < t.length; ++m) {
|
|
843
|
+
const k = t[m];
|
|
844
844
|
if (k === " ")
|
|
845
845
|
u = !0;
|
|
846
846
|
else if (k === `
|
|
847
847
|
`)
|
|
848
|
-
|
|
848
|
+
b = m;
|
|
849
849
|
else
|
|
850
850
|
break;
|
|
851
851
|
}
|
|
852
|
-
let
|
|
853
|
-
|
|
854
|
-
let
|
|
855
|
-
if (s && (
|
|
856
|
-
|
|
857
|
-
${c}${w}${t}${h}`;
|
|
858
|
-
t = t.replace(/\n+/g, `
|
|
852
|
+
let S = t.substring(0, b < m ? b + 1 : m);
|
|
853
|
+
S && (t = t.substring(S.length), S = S.replace(/\n+/g, `$&${c}`));
|
|
854
|
+
let w = (u ? c ? "2" : "1" : "") + f;
|
|
855
|
+
if (s && (w += " " + l(s.replace(/ ?[\r\n]+/g, " ")), i && i()), !p) {
|
|
856
|
+
const k = t.replace(/\n+/g, `
|
|
859
857
|
$&`).replace(/(?:^|\n)([\t ].*)(?:([\n\t ]*)\n(?![\n\t ]))?/g, "$1$2").replace(/\n+/g, `$&${c}`);
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
858
|
+
let O = !1;
|
|
859
|
+
const I = Ve(n, !0);
|
|
860
|
+
o !== "folded" && e !== A.BLOCK_FOLDED && (I.onOverflow = () => {
|
|
861
|
+
O = !0;
|
|
862
|
+
});
|
|
863
|
+
const g = Ue(`${S}${k}${h}`, c, at, I);
|
|
864
|
+
if (!O)
|
|
865
|
+
return `>${w}
|
|
866
|
+
${c}${g}`;
|
|
867
|
+
}
|
|
868
|
+
return t = t.replace(/\n+/g, `$&${c}`), `|${w}
|
|
869
|
+
${c}${S}${t}${h}`;
|
|
863
870
|
}
|
|
864
|
-
function
|
|
865
|
-
const { type: i, value: r } = s, { actualString: o, implicitKey: l, indent: a, indentStep: c, inFlow:
|
|
871
|
+
function Fs(s, e, t, n) {
|
|
872
|
+
const { type: i, value: r } = s, { actualString: o, implicitKey: l, indent: a, indentStep: c, inFlow: p } = e;
|
|
866
873
|
if (l && r.includes(`
|
|
867
|
-
`) ||
|
|
868
|
-
return
|
|
874
|
+
`) || p && /[[\]{},]/.test(r))
|
|
875
|
+
return le(r, e);
|
|
869
876
|
if (!r || /^[\n\t ,[\]{}#&*!|>'"%@`]|^[?-]$|^[?-][ \t]|[\n:][ \t]|[ \t]\n|[\n\t ]#|[\n\t :]$/.test(r))
|
|
870
|
-
return l ||
|
|
871
|
-
`) ?
|
|
872
|
-
if (!l && !
|
|
877
|
+
return l || p || !r.includes(`
|
|
878
|
+
`) ? le(r, e) : Me(s, e, t, n);
|
|
879
|
+
if (!l && !p && i !== A.PLAIN && r.includes(`
|
|
873
880
|
`))
|
|
874
|
-
return
|
|
875
|
-
if (
|
|
881
|
+
return Me(s, e, t, n);
|
|
882
|
+
if (Je(r)) {
|
|
876
883
|
if (a === "")
|
|
877
|
-
return e.forceBlockIndent = !0,
|
|
884
|
+
return e.forceBlockIndent = !0, Me(s, e, t, n);
|
|
878
885
|
if (l && a === c)
|
|
879
|
-
return
|
|
886
|
+
return le(r, e);
|
|
880
887
|
}
|
|
881
888
|
const f = r.replace(/\n+/g, `$&
|
|
882
889
|
${a}`);
|
|
883
890
|
if (o) {
|
|
884
891
|
const d = (u) => {
|
|
885
|
-
var
|
|
886
|
-
return u.default && u.tag !== "tag:yaml.org,2002:str" && ((
|
|
892
|
+
var m;
|
|
893
|
+
return u.default && u.tag !== "tag:yaml.org,2002:str" && ((m = u.test) == null ? void 0 : m.test(f));
|
|
887
894
|
}, { compat: h, tags: y } = e.doc.schema;
|
|
888
895
|
if (y.some(d) || h != null && h.some(d))
|
|
889
|
-
return
|
|
896
|
+
return le(r, e);
|
|
890
897
|
}
|
|
891
|
-
return l ? f : Ue(f, a,
|
|
898
|
+
return l ? f : Ue(f, a, Ht, Ve(e, !1));
|
|
892
899
|
}
|
|
893
|
-
function
|
|
900
|
+
function Ae(s, e, t, n) {
|
|
894
901
|
const { implicitKey: i, inFlow: r } = e, o = typeof s.value == "string" ? s : Object.assign({}, s, { value: String(s.value) });
|
|
895
902
|
let { type: l } = s;
|
|
896
|
-
l !==
|
|
897
|
-
const a = (
|
|
898
|
-
switch (
|
|
899
|
-
case
|
|
900
|
-
case
|
|
901
|
-
return i || r ?
|
|
902
|
-
case
|
|
903
|
-
return
|
|
904
|
-
case
|
|
905
|
-
return
|
|
906
|
-
case
|
|
907
|
-
return
|
|
903
|
+
l !== A.QUOTE_DOUBLE && /[\x00-\x08\x0b-\x1f\x7f-\x9f\u{D800}-\u{DFFF}]/u.test(o.value) && (l = A.QUOTE_DOUBLE);
|
|
904
|
+
const a = (p) => {
|
|
905
|
+
switch (p) {
|
|
906
|
+
case A.BLOCK_FOLDED:
|
|
907
|
+
case A.BLOCK_LITERAL:
|
|
908
|
+
return i || r ? le(o.value, e) : Me(o, e, t, n);
|
|
909
|
+
case A.QUOTE_DOUBLE:
|
|
910
|
+
return Se(o.value, e);
|
|
911
|
+
case A.QUOTE_SINGLE:
|
|
912
|
+
return ct(o.value, e);
|
|
913
|
+
case A.PLAIN:
|
|
914
|
+
return Fs(o, e, t, n);
|
|
908
915
|
default:
|
|
909
916
|
return null;
|
|
910
917
|
}
|
|
911
918
|
};
|
|
912
919
|
let c = a(l);
|
|
913
920
|
if (c === null) {
|
|
914
|
-
const { defaultKeyType:
|
|
921
|
+
const { defaultKeyType: p, defaultStringType: f } = e.options, d = i && p || f;
|
|
915
922
|
if (c = a(d), c === null)
|
|
916
923
|
throw new Error(`Unsupported default string type ${d}`);
|
|
917
924
|
}
|
|
918
925
|
return c;
|
|
919
926
|
}
|
|
920
|
-
function
|
|
927
|
+
function Xt(s, e) {
|
|
921
928
|
const t = Object.assign({
|
|
922
929
|
blockQuote: !0,
|
|
923
|
-
commentString:
|
|
930
|
+
commentString: Ds,
|
|
924
931
|
defaultKeyType: null,
|
|
925
932
|
defaultStringType: "PLAIN",
|
|
926
933
|
directives: null,
|
|
@@ -958,7 +965,7 @@ function Wt(s, e) {
|
|
|
958
965
|
options: t
|
|
959
966
|
};
|
|
960
967
|
}
|
|
961
|
-
function
|
|
968
|
+
function Rs(s, e) {
|
|
962
969
|
var i;
|
|
963
970
|
if (e.tag) {
|
|
964
971
|
const r = s.filter((o) => o.tag === e.tag);
|
|
@@ -968,10 +975,14 @@ function Ds(s, e) {
|
|
|
968
975
|
let t, n;
|
|
969
976
|
if (E(e)) {
|
|
970
977
|
n = e.value;
|
|
971
|
-
|
|
978
|
+
let r = s.filter((o) => {
|
|
972
979
|
var l;
|
|
973
980
|
return (l = o.identify) == null ? void 0 : l.call(o, n);
|
|
974
981
|
});
|
|
982
|
+
if (r.length > 1) {
|
|
983
|
+
const o = r.filter((l) => l.test);
|
|
984
|
+
o.length > 0 && (r = o);
|
|
985
|
+
}
|
|
975
986
|
t = r.find((o) => o.format === e.format) ?? r.find((o) => !o.format);
|
|
976
987
|
} else
|
|
977
988
|
n = e, t = s.find((r) => r.nodeClass && n instanceof r.nodeClass);
|
|
@@ -981,19 +992,19 @@ function Ds(s, e) {
|
|
|
981
992
|
}
|
|
982
993
|
return t;
|
|
983
994
|
}
|
|
984
|
-
function
|
|
995
|
+
function Us(s, e, { anchors: t, doc: n }) {
|
|
985
996
|
if (!n.directives)
|
|
986
997
|
return "";
|
|
987
998
|
const i = [], r = (E(s) || L(s)) && s.anchor;
|
|
988
|
-
r &&
|
|
999
|
+
r && Jt(r) && (t.add(r), i.push(`&${r}`));
|
|
989
1000
|
const o = s.tag ? s.tag : e.default ? null : e.tag;
|
|
990
1001
|
return o && i.push(n.directives.tagString(o)), i.join(" ");
|
|
991
1002
|
}
|
|
992
|
-
function
|
|
1003
|
+
function fe(s, e, t, n) {
|
|
993
1004
|
var a;
|
|
994
|
-
if (
|
|
1005
|
+
if (T(s))
|
|
995
1006
|
return s.toString(e, t, n);
|
|
996
|
-
if (
|
|
1007
|
+
if (x(s)) {
|
|
997
1008
|
if (e.doc.directives)
|
|
998
1009
|
return s.toString(e);
|
|
999
1010
|
if ((a = e.resolvedAliases) != null && a.has(s))
|
|
@@ -1002,98 +1013,126 @@ function ae(s, e, t, n) {
|
|
|
1002
1013
|
}
|
|
1003
1014
|
let i;
|
|
1004
1015
|
const r = $(s) ? s : e.doc.createNode(s, { onTagObj: (c) => i = c });
|
|
1005
|
-
i || (i =
|
|
1006
|
-
const o =
|
|
1016
|
+
i || (i = Rs(e.doc.schema.tags, r));
|
|
1017
|
+
const o = Us(r, i, e);
|
|
1007
1018
|
o.length > 0 && (e.indentAtStart = (e.indentAtStart ?? 0) + o.length + 1);
|
|
1008
|
-
const l = typeof i.stringify == "function" ? i.stringify(r, e, t, n) : E(r) ?
|
|
1019
|
+
const l = typeof i.stringify == "function" ? i.stringify(r, e, t, n) : E(r) ? Ae(r, e, t, n) : r.toString(e, t, n);
|
|
1009
1020
|
return o ? E(r) || l[0] === "{" || l[0] === "[" ? `${o} ${l}` : `${o}
|
|
1010
1021
|
${e.indent}${l}` : l;
|
|
1011
1022
|
}
|
|
1012
|
-
function
|
|
1013
|
-
const { allNullValues: r, doc: o, indent: l, indentStep: a, options: { commentString: c, indentSeq:
|
|
1023
|
+
function Vs({ key: s, value: e }, t, n, i) {
|
|
1024
|
+
const { allNullValues: r, doc: o, indent: l, indentStep: a, options: { commentString: c, indentSeq: p, simpleKeys: f } } = t;
|
|
1014
1025
|
let d = $(s) && s.comment || null;
|
|
1015
1026
|
if (f) {
|
|
1016
1027
|
if (d)
|
|
1017
1028
|
throw new Error("With simple keys, key nodes cannot have comments");
|
|
1018
1029
|
if (L(s) || !$(s) && typeof s == "object") {
|
|
1019
|
-
const
|
|
1020
|
-
throw new Error(
|
|
1030
|
+
const I = "With simple keys, collection cannot be used as a key value";
|
|
1031
|
+
throw new Error(I);
|
|
1021
1032
|
}
|
|
1022
1033
|
}
|
|
1023
|
-
let h = !f && (!s || d && e == null && !t.inFlow || L(s) || (E(s) ? s.type ===
|
|
1034
|
+
let h = !f && (!s || d && e == null && !t.inFlow || L(s) || (E(s) ? s.type === A.BLOCK_FOLDED || s.type === A.BLOCK_LITERAL : typeof s == "object"));
|
|
1024
1035
|
t = Object.assign({}, t, {
|
|
1025
1036
|
allNullValues: !1,
|
|
1026
1037
|
implicitKey: !h && (f || !r),
|
|
1027
1038
|
indent: l + a
|
|
1028
1039
|
});
|
|
1029
|
-
let y = !1, u = !1,
|
|
1030
|
-
if (!h && !t.inFlow &&
|
|
1040
|
+
let y = !1, u = !1, m = fe(s, t, () => y = !0, () => u = !0);
|
|
1041
|
+
if (!h && !t.inFlow && m.length > 1024) {
|
|
1031
1042
|
if (f)
|
|
1032
1043
|
throw new Error("With simple keys, single line scalar must not span more than 1024 characters");
|
|
1033
1044
|
h = !0;
|
|
1034
1045
|
}
|
|
1035
1046
|
if (t.inFlow) {
|
|
1036
1047
|
if (r || e == null)
|
|
1037
|
-
return y && n && n(),
|
|
1048
|
+
return y && n && n(), m === "" ? "?" : h ? `? ${m}` : m;
|
|
1038
1049
|
} else if (r && !f || e == null && h)
|
|
1039
|
-
return
|
|
1040
|
-
y && (d = null), h ? (d && (
|
|
1041
|
-
${l}:`) : (
|
|
1042
|
-
let
|
|
1043
|
-
$(e) ? (
|
|
1044
|
-
let
|
|
1045
|
-
const
|
|
1046
|
-
let
|
|
1047
|
-
if (d ||
|
|
1048
|
-
if (
|
|
1049
|
-
` : "",
|
|
1050
|
-
const
|
|
1051
|
-
|
|
1052
|
-
${
|
|
1050
|
+
return m = `? ${m}`, d && !y ? m += H(m, t.indent, c(d)) : u && i && i(), m;
|
|
1051
|
+
y && (d = null), h ? (d && (m += H(m, t.indent, c(d))), m = `? ${m}
|
|
1052
|
+
${l}:`) : (m = `${m}:`, d && (m += H(m, t.indent, c(d))));
|
|
1053
|
+
let b, S, N;
|
|
1054
|
+
$(e) ? (b = !!e.spaceBefore, S = e.commentBefore, N = e.comment) : (b = !1, S = null, N = null, e && typeof e == "object" && (e = o.createNode(e))), t.implicitKey = !1, !h && !d && E(e) && (t.indentAtStart = m.length + 1), u = !1, !p && a.length >= 2 && !t.inFlow && !h && pe(e) && !e.flow && !e.tag && !e.anchor && (t.indent = t.indent.substring(2));
|
|
1055
|
+
let w = !1;
|
|
1056
|
+
const k = fe(e, t, () => w = !0, () => u = !0);
|
|
1057
|
+
let O = " ";
|
|
1058
|
+
if (d || b || S) {
|
|
1059
|
+
if (O = b ? `
|
|
1060
|
+
` : "", S) {
|
|
1061
|
+
const I = c(S);
|
|
1062
|
+
O += `
|
|
1063
|
+
${U(I, t.indent)}`;
|
|
1053
1064
|
}
|
|
1054
|
-
|
|
1055
|
-
` && (
|
|
1065
|
+
k === "" && !t.inFlow ? O === `
|
|
1066
|
+
` && (O = `
|
|
1056
1067
|
|
|
1057
|
-
`) :
|
|
1068
|
+
`) : O += `
|
|
1058
1069
|
${t.indent}`;
|
|
1059
1070
|
} else if (!h && L(e)) {
|
|
1060
|
-
const
|
|
1061
|
-
`), _ =
|
|
1062
|
-
if (_ || !
|
|
1063
|
-
let
|
|
1064
|
-
if (_ && (
|
|
1065
|
-
let C =
|
|
1066
|
-
|
|
1071
|
+
const I = k[0], g = k.indexOf(`
|
|
1072
|
+
`), _ = g !== -1, J = t.inFlow ?? e.flow ?? e.items.length === 0;
|
|
1073
|
+
if (_ || !J) {
|
|
1074
|
+
let te = !1;
|
|
1075
|
+
if (_ && (I === "&" || I === "!")) {
|
|
1076
|
+
let C = k.indexOf(" ");
|
|
1077
|
+
I === "&" && C !== -1 && C < g && k[C + 1] === "!" && (C = k.indexOf(" ", C + 1)), (C === -1 || g < C) && (te = !0);
|
|
1067
1078
|
}
|
|
1068
|
-
|
|
1079
|
+
te || (O = `
|
|
1069
1080
|
${t.indent}`);
|
|
1070
1081
|
}
|
|
1071
|
-
} else (
|
|
1072
|
-
`) && (
|
|
1073
|
-
return
|
|
1074
|
-
}
|
|
1075
|
-
function
|
|
1076
|
-
(s === "debug" || s === "warn") &&
|
|
1077
|
-
}
|
|
1078
|
-
const
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1082
|
+
} else (k === "" || k[0] === `
|
|
1083
|
+
`) && (O = "");
|
|
1084
|
+
return m += O + k, t.inFlow ? w && n && n() : N && !w ? m += H(m, t.indent, c(N)) : u && i && i(), m;
|
|
1085
|
+
}
|
|
1086
|
+
function zt(s, e) {
|
|
1087
|
+
(s === "debug" || s === "warn") && console.warn(e);
|
|
1088
|
+
}
|
|
1089
|
+
const Te = "<<", V = {
|
|
1090
|
+
identify: (s) => s === Te || typeof s == "symbol" && s.description === Te,
|
|
1091
|
+
default: "key",
|
|
1092
|
+
tag: "tag:yaml.org,2002:merge",
|
|
1093
|
+
test: /^<<$/,
|
|
1094
|
+
resolve: () => Object.assign(new A(Symbol(Te)), {
|
|
1095
|
+
addToJSMap: Zt
|
|
1096
|
+
}),
|
|
1097
|
+
stringify: () => Te
|
|
1098
|
+
}, Js = (s, e) => (V.identify(e) || E(e) && (!e.type || e.type === A.PLAIN) && V.identify(e.value)) && (s == null ? void 0 : s.doc.schema.tags.some((t) => t.tag === V.tag && t.default));
|
|
1099
|
+
function Zt(s, e, t) {
|
|
1100
|
+
if (t = s && x(t) ? t.resolve(s.doc) : t, pe(t))
|
|
1101
|
+
for (const n of t.items)
|
|
1102
|
+
et(s, e, n);
|
|
1103
|
+
else if (Array.isArray(t))
|
|
1104
|
+
for (const n of t)
|
|
1105
|
+
et(s, e, n);
|
|
1106
|
+
else
|
|
1107
|
+
et(s, e, t);
|
|
1108
|
+
}
|
|
1109
|
+
function et(s, e, t) {
|
|
1110
|
+
const n = s && x(t) ? t.resolve(s.doc) : t;
|
|
1111
|
+
if (!de(n))
|
|
1112
|
+
throw new Error("Merge sources must be maps or map aliases");
|
|
1113
|
+
const i = n.toJSON(null, s, Map);
|
|
1114
|
+
for (const [r, o] of i)
|
|
1115
|
+
e instanceof Map ? e.has(r) || e.set(r, o) : e instanceof Set ? e.add(r) : Object.prototype.hasOwnProperty.call(e, r) || Object.defineProperty(e, r, {
|
|
1116
|
+
value: o,
|
|
1117
|
+
writable: !0,
|
|
1118
|
+
enumerable: !0,
|
|
1119
|
+
configurable: !0
|
|
1120
|
+
});
|
|
1121
|
+
return e;
|
|
1122
|
+
}
|
|
1123
|
+
function xt(s, e, { key: t, value: n }) {
|
|
1124
|
+
if ($(t) && t.addToJSMap)
|
|
1125
|
+
t.addToJSMap(s, e, n);
|
|
1126
|
+
else if (Js(s, t))
|
|
1127
|
+
Zt(s, e, n);
|
|
1089
1128
|
else {
|
|
1090
|
-
const i =
|
|
1129
|
+
const i = P(t, "", s);
|
|
1091
1130
|
if (e instanceof Map)
|
|
1092
|
-
e.set(i,
|
|
1131
|
+
e.set(i, P(n, i, s));
|
|
1093
1132
|
else if (e instanceof Set)
|
|
1094
1133
|
e.add(i);
|
|
1095
1134
|
else {
|
|
1096
|
-
const r =
|
|
1135
|
+
const r = Ys(t, i, s), o = P(n, r, s);
|
|
1097
1136
|
r in e ? Object.defineProperty(e, r, {
|
|
1098
1137
|
value: o,
|
|
1099
1138
|
writable: !0,
|
|
@@ -1104,28 +1143,13 @@ function Xt(s, e, { key: t, value: n }) {
|
|
|
1104
1143
|
}
|
|
1105
1144
|
return e;
|
|
1106
1145
|
}
|
|
1107
|
-
|
|
1108
|
-
function Ze(s, e, t) {
|
|
1109
|
-
const n = s && Z(t) ? t.resolve(s.doc) : t;
|
|
1110
|
-
if (!he(n))
|
|
1111
|
-
throw new Error("Merge sources must be maps or map aliases");
|
|
1112
|
-
const i = n.toJSON(null, s, Map);
|
|
1113
|
-
for (const [r, o] of i)
|
|
1114
|
-
e instanceof Map ? e.has(r) || e.set(r, o) : e instanceof Set ? e.add(r) : Object.prototype.hasOwnProperty.call(e, r) || Object.defineProperty(e, r, {
|
|
1115
|
-
value: o,
|
|
1116
|
-
writable: !0,
|
|
1117
|
-
enumerable: !0,
|
|
1118
|
-
configurable: !0
|
|
1119
|
-
});
|
|
1120
|
-
return e;
|
|
1121
|
-
}
|
|
1122
|
-
function Rs(s, e, t) {
|
|
1146
|
+
function Ys(s, e, t) {
|
|
1123
1147
|
if (e === null)
|
|
1124
1148
|
return "";
|
|
1125
1149
|
if (typeof e != "object")
|
|
1126
1150
|
return String(e);
|
|
1127
1151
|
if ($(s) && (t != null && t.doc)) {
|
|
1128
|
-
const n =
|
|
1152
|
+
const n = Xt(t.doc, {});
|
|
1129
1153
|
n.anchors = /* @__PURE__ */ new Set();
|
|
1130
1154
|
for (const r of t.anchors.keys())
|
|
1131
1155
|
n.anchors.add(r.anchor);
|
|
@@ -1133,19 +1157,19 @@ function Rs(s, e, t) {
|
|
|
1133
1157
|
const i = s.toString(n);
|
|
1134
1158
|
if (!t.mapKeyWarned) {
|
|
1135
1159
|
let r = JSON.stringify(i);
|
|
1136
|
-
r.length > 40 && (r = r.substring(0, 36) + '..."'),
|
|
1160
|
+
r.length > 40 && (r = r.substring(0, 36) + '..."'), zt(t.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${r}. Set mapAsMap: true to use object keys.`), t.mapKeyWarned = !0;
|
|
1137
1161
|
}
|
|
1138
1162
|
return i;
|
|
1139
1163
|
}
|
|
1140
1164
|
return JSON.stringify(e);
|
|
1141
1165
|
}
|
|
1142
|
-
function
|
|
1143
|
-
const n =
|
|
1166
|
+
function mt(s, e, t) {
|
|
1167
|
+
const n = ke(s, void 0, t), i = ke(e, void 0, t);
|
|
1144
1168
|
return new v(n, i);
|
|
1145
1169
|
}
|
|
1146
1170
|
class v {
|
|
1147
1171
|
constructor(e, t = null) {
|
|
1148
|
-
Object.defineProperty(this,
|
|
1172
|
+
Object.defineProperty(this, j, { value: qt }), this.key = e, this.value = t;
|
|
1149
1173
|
}
|
|
1150
1174
|
clone(e) {
|
|
1151
1175
|
let { key: t, value: n } = this;
|
|
@@ -1153,31 +1177,31 @@ class v {
|
|
|
1153
1177
|
}
|
|
1154
1178
|
toJSON(e, t) {
|
|
1155
1179
|
const n = t != null && t.mapAsMap ? /* @__PURE__ */ new Map() : {};
|
|
1156
|
-
return
|
|
1180
|
+
return xt(t, n, this);
|
|
1157
1181
|
}
|
|
1158
1182
|
toString(e, t, n) {
|
|
1159
|
-
return e != null && e.doc ?
|
|
1183
|
+
return e != null && e.doc ? Vs(this, e, t, n) : JSON.stringify(this);
|
|
1160
1184
|
}
|
|
1161
1185
|
}
|
|
1162
|
-
function
|
|
1163
|
-
return (e.inFlow ?? s.flow ?
|
|
1186
|
+
function es(s, e, t) {
|
|
1187
|
+
return (e.inFlow ?? s.flow ? Qs : Gs)(s, e, t);
|
|
1164
1188
|
}
|
|
1165
|
-
function
|
|
1166
|
-
const { indent: a, options: { commentString: c } } = t,
|
|
1189
|
+
function Gs({ comment: s, items: e }, t, { blockItemPrefix: n, flowChars: i, itemIndent: r, onChompKeep: o, onComment: l }) {
|
|
1190
|
+
const { indent: a, options: { commentString: c } } = t, p = Object.assign({}, t, { indent: r, type: null });
|
|
1167
1191
|
let f = !1;
|
|
1168
1192
|
const d = [];
|
|
1169
1193
|
for (let y = 0; y < e.length; ++y) {
|
|
1170
1194
|
const u = e[y];
|
|
1171
|
-
let
|
|
1195
|
+
let m = null;
|
|
1172
1196
|
if ($(u))
|
|
1173
|
-
!f && u.spaceBefore && d.push(""),
|
|
1174
|
-
else if (
|
|
1175
|
-
const
|
|
1176
|
-
|
|
1197
|
+
!f && u.spaceBefore && d.push(""), je(t, d, u.commentBefore, f), u.comment && (m = u.comment);
|
|
1198
|
+
else if (T(u)) {
|
|
1199
|
+
const S = $(u.key) ? u.key : null;
|
|
1200
|
+
S && (!f && S.spaceBefore && d.push(""), je(t, d, S.commentBefore, f));
|
|
1177
1201
|
}
|
|
1178
1202
|
f = !1;
|
|
1179
|
-
let
|
|
1180
|
-
|
|
1203
|
+
let b = fe(u, p, () => m = null, () => f = !0);
|
|
1204
|
+
m && (b += H(b, r, c(m))), f && m && (f = !1), d.push(n + b);
|
|
1181
1205
|
}
|
|
1182
1206
|
let h;
|
|
1183
1207
|
if (d.length === 0)
|
|
@@ -1192,9 +1216,9 @@ ${a}${u}` : `
|
|
|
1192
1216
|
}
|
|
1193
1217
|
}
|
|
1194
1218
|
return s ? (h += `
|
|
1195
|
-
` +
|
|
1219
|
+
` + U(c(s), a), l && l()) : f && o && o(), h;
|
|
1196
1220
|
}
|
|
1197
|
-
function
|
|
1221
|
+
function Qs({ items: s }, e, { flowChars: t, itemIndent: n }) {
|
|
1198
1222
|
const { indent: i, indentStep: r, flowCollectionPadding: o, options: { commentString: l } } = e;
|
|
1199
1223
|
n += r;
|
|
1200
1224
|
const a = Object.assign({}, e, {
|
|
@@ -1202,29 +1226,29 @@ function Js({ items: s }, e, { flowChars: t, itemIndent: n }) {
|
|
|
1202
1226
|
inFlow: !0,
|
|
1203
1227
|
type: null
|
|
1204
1228
|
});
|
|
1205
|
-
let c = !1,
|
|
1229
|
+
let c = !1, p = 0;
|
|
1206
1230
|
const f = [];
|
|
1207
1231
|
for (let y = 0; y < s.length; ++y) {
|
|
1208
1232
|
const u = s[y];
|
|
1209
|
-
let
|
|
1233
|
+
let m = null;
|
|
1210
1234
|
if ($(u))
|
|
1211
|
-
u.spaceBefore && f.push(""),
|
|
1212
|
-
else if (
|
|
1213
|
-
const
|
|
1214
|
-
|
|
1235
|
+
u.spaceBefore && f.push(""), je(e, f, u.commentBefore, !1), u.comment && (m = u.comment);
|
|
1236
|
+
else if (T(u)) {
|
|
1237
|
+
const S = $(u.key) ? u.key : null;
|
|
1238
|
+
S && (S.spaceBefore && f.push(""), je(e, f, S.commentBefore, !1), S.comment && (c = !0));
|
|
1215
1239
|
const N = $(u.value) ? u.value : null;
|
|
1216
|
-
N ? (N.comment && (
|
|
1240
|
+
N ? (N.comment && (m = N.comment), N.commentBefore && (c = !0)) : u.value == null && (S != null && S.comment) && (m = S.comment);
|
|
1217
1241
|
}
|
|
1218
|
-
|
|
1219
|
-
let
|
|
1220
|
-
y < s.length - 1 && (
|
|
1221
|
-
`)) && (c = !0), f.push(
|
|
1242
|
+
m && (c = !0);
|
|
1243
|
+
let b = fe(u, a, () => m = null);
|
|
1244
|
+
y < s.length - 1 && (b += ","), m && (b += H(b, n, l(m))), !c && (f.length > p || b.includes(`
|
|
1245
|
+
`)) && (c = !0), f.push(b), p = f.length;
|
|
1222
1246
|
}
|
|
1223
1247
|
const { start: d, end: h } = t;
|
|
1224
1248
|
if (f.length === 0)
|
|
1225
1249
|
return d + h;
|
|
1226
1250
|
if (!c) {
|
|
1227
|
-
const y = f.reduce((u,
|
|
1251
|
+
const y = f.reduce((u, m) => u + m.length + 2, 2);
|
|
1228
1252
|
c = e.options.lineWidth > 0 && y > e.options.lineWidth;
|
|
1229
1253
|
}
|
|
1230
1254
|
if (c) {
|
|
@@ -1238,24 +1262,24 @@ ${i}${h}`;
|
|
|
1238
1262
|
} else
|
|
1239
1263
|
return `${d}${o}${f.join(" ")}${o}${h}`;
|
|
1240
1264
|
}
|
|
1241
|
-
function
|
|
1265
|
+
function je({ indent: s, options: { commentString: e } }, t, n, i) {
|
|
1242
1266
|
if (n && i && (n = n.replace(/^\n+/, "")), n) {
|
|
1243
|
-
const r =
|
|
1267
|
+
const r = U(e(n), s);
|
|
1244
1268
|
t.push(r.trimStart());
|
|
1245
1269
|
}
|
|
1246
1270
|
}
|
|
1247
|
-
function
|
|
1271
|
+
function X(s, e) {
|
|
1248
1272
|
const t = E(e) ? e.value : e;
|
|
1249
1273
|
for (const n of s)
|
|
1250
|
-
if (
|
|
1274
|
+
if (T(n) && (n.key === e || n.key === t || E(n.key) && n.key.value === t))
|
|
1251
1275
|
return n;
|
|
1252
1276
|
}
|
|
1253
|
-
class
|
|
1277
|
+
class K extends Wt {
|
|
1254
1278
|
static get tagName() {
|
|
1255
1279
|
return "tag:yaml.org,2002:map";
|
|
1256
1280
|
}
|
|
1257
1281
|
constructor(e) {
|
|
1258
|
-
super(
|
|
1282
|
+
super(Y, e), this.items = [];
|
|
1259
1283
|
}
|
|
1260
1284
|
/**
|
|
1261
1285
|
* A generic collection parsing method that can be extended
|
|
@@ -1267,7 +1291,7 @@ class P extends Gt {
|
|
|
1267
1291
|
c = r.call(t, a, c);
|
|
1268
1292
|
else if (Array.isArray(r) && !r.includes(a))
|
|
1269
1293
|
return;
|
|
1270
|
-
(c !== void 0 || i) && o.items.push(
|
|
1294
|
+
(c !== void 0 || i) && o.items.push(mt(a, c, n));
|
|
1271
1295
|
};
|
|
1272
1296
|
if (t instanceof Map)
|
|
1273
1297
|
for (const [a, c] of t)
|
|
@@ -1286,12 +1310,12 @@ class P extends Gt {
|
|
|
1286
1310
|
add(e, t) {
|
|
1287
1311
|
var o;
|
|
1288
1312
|
let n;
|
|
1289
|
-
|
|
1290
|
-
const i =
|
|
1313
|
+
T(e) ? n = e : !e || typeof e != "object" || !("key" in e) ? n = new v(e, e == null ? void 0 : e.value) : n = new v(e.key, e.value);
|
|
1314
|
+
const i = X(this.items, n.key), r = (o = this.schema) == null ? void 0 : o.sortMapEntries;
|
|
1291
1315
|
if (i) {
|
|
1292
1316
|
if (!t)
|
|
1293
1317
|
throw new Error(`Key ${n.key} already set`);
|
|
1294
|
-
E(i.value) &&
|
|
1318
|
+
E(i.value) && Qt(n.value) ? i.value.value = n.value : i.value = n.value;
|
|
1295
1319
|
} else if (r) {
|
|
1296
1320
|
const l = this.items.findIndex((a) => r(n, a) < 0);
|
|
1297
1321
|
l === -1 ? this.items.push(n) : this.items.splice(l, 0, n);
|
|
@@ -1299,15 +1323,15 @@ class P extends Gt {
|
|
|
1299
1323
|
this.items.push(n);
|
|
1300
1324
|
}
|
|
1301
1325
|
delete(e) {
|
|
1302
|
-
const t =
|
|
1326
|
+
const t = X(this.items, e);
|
|
1303
1327
|
return t ? this.items.splice(this.items.indexOf(t), 1).length > 0 : !1;
|
|
1304
1328
|
}
|
|
1305
1329
|
get(e, t) {
|
|
1306
|
-
const n =
|
|
1330
|
+
const n = X(this.items, e), i = n == null ? void 0 : n.value;
|
|
1307
1331
|
return (!t && E(i) ? i.value : i) ?? void 0;
|
|
1308
1332
|
}
|
|
1309
1333
|
has(e) {
|
|
1310
|
-
return !!
|
|
1334
|
+
return !!X(this.items, e);
|
|
1311
1335
|
}
|
|
1312
1336
|
set(e, t) {
|
|
1313
1337
|
this.add(new v(e, t), !0);
|
|
@@ -1321,16 +1345,16 @@ class P extends Gt {
|
|
|
1321
1345
|
const i = n ? new n() : t != null && t.mapAsMap ? /* @__PURE__ */ new Map() : {};
|
|
1322
1346
|
t != null && t.onCreate && t.onCreate(i);
|
|
1323
1347
|
for (const r of this.items)
|
|
1324
|
-
|
|
1348
|
+
xt(t, i, r);
|
|
1325
1349
|
return i;
|
|
1326
1350
|
}
|
|
1327
1351
|
toString(e, t, n) {
|
|
1328
1352
|
if (!e)
|
|
1329
1353
|
return JSON.stringify(this);
|
|
1330
1354
|
for (const i of this.items)
|
|
1331
|
-
if (!
|
|
1355
|
+
if (!T(i))
|
|
1332
1356
|
throw new Error(`Map items must all be pairs; found ${JSON.stringify(i)} instead`);
|
|
1333
|
-
return !e.allNullValues && this.hasAllNullValues(!1) && (e = Object.assign({}, e, { allNullValues: !0 })),
|
|
1357
|
+
return !e.allNullValues && this.hasAllNullValues(!1) && (e = Object.assign({}, e, { allNullValues: !0 })), es(this, e, {
|
|
1334
1358
|
blockItemPrefix: "",
|
|
1335
1359
|
flowChars: { start: "{", end: "}" },
|
|
1336
1360
|
itemIndent: e.indent || "",
|
|
@@ -1339,22 +1363,22 @@ class P extends Gt {
|
|
|
1339
1363
|
});
|
|
1340
1364
|
}
|
|
1341
1365
|
}
|
|
1342
|
-
const
|
|
1366
|
+
const me = {
|
|
1343
1367
|
collection: "map",
|
|
1344
1368
|
default: !0,
|
|
1345
|
-
nodeClass:
|
|
1369
|
+
nodeClass: K,
|
|
1346
1370
|
tag: "tag:yaml.org,2002:map",
|
|
1347
1371
|
resolve(s, e) {
|
|
1348
|
-
return
|
|
1372
|
+
return de(s) || e("Expected a mapping for this tag"), s;
|
|
1349
1373
|
},
|
|
1350
|
-
createNode: (s, e, t) =>
|
|
1374
|
+
createNode: (s, e, t) => K.from(s, e, t)
|
|
1351
1375
|
};
|
|
1352
|
-
class
|
|
1376
|
+
class Q extends Wt {
|
|
1353
1377
|
static get tagName() {
|
|
1354
1378
|
return "tag:yaml.org,2002:seq";
|
|
1355
1379
|
}
|
|
1356
1380
|
constructor(e) {
|
|
1357
|
-
super(
|
|
1381
|
+
super(he, e), this.items = [];
|
|
1358
1382
|
}
|
|
1359
1383
|
add(e) {
|
|
1360
1384
|
this.items.push(e);
|
|
@@ -1368,11 +1392,11 @@ class Y extends Gt {
|
|
|
1368
1392
|
* @returns `true` if the item was found and removed.
|
|
1369
1393
|
*/
|
|
1370
1394
|
delete(e) {
|
|
1371
|
-
const t =
|
|
1395
|
+
const t = Le(e);
|
|
1372
1396
|
return typeof t != "number" ? !1 : this.items.splice(t, 1).length > 0;
|
|
1373
1397
|
}
|
|
1374
1398
|
get(e, t) {
|
|
1375
|
-
const n =
|
|
1399
|
+
const n = Le(e);
|
|
1376
1400
|
if (typeof n != "number")
|
|
1377
1401
|
return;
|
|
1378
1402
|
const i = this.items[n];
|
|
@@ -1385,7 +1409,7 @@ class Y extends Gt {
|
|
|
1385
1409
|
* It may be wrapped in a `Scalar`.
|
|
1386
1410
|
*/
|
|
1387
1411
|
has(e) {
|
|
1388
|
-
const t =
|
|
1412
|
+
const t = Le(e);
|
|
1389
1413
|
return typeof t == "number" && t < this.items.length;
|
|
1390
1414
|
}
|
|
1391
1415
|
/**
|
|
@@ -1396,22 +1420,22 @@ class Y extends Gt {
|
|
|
1396
1420
|
* It may be wrapped in a `Scalar`.
|
|
1397
1421
|
*/
|
|
1398
1422
|
set(e, t) {
|
|
1399
|
-
const n =
|
|
1423
|
+
const n = Le(e);
|
|
1400
1424
|
if (typeof n != "number")
|
|
1401
1425
|
throw new Error(`Expected a valid index, not ${e}.`);
|
|
1402
1426
|
const i = this.items[n];
|
|
1403
|
-
E(i) &&
|
|
1427
|
+
E(i) && Qt(t) ? i.value = t : this.items[n] = t;
|
|
1404
1428
|
}
|
|
1405
1429
|
toJSON(e, t) {
|
|
1406
1430
|
const n = [];
|
|
1407
1431
|
t != null && t.onCreate && t.onCreate(n);
|
|
1408
1432
|
let i = 0;
|
|
1409
1433
|
for (const r of this.items)
|
|
1410
|
-
n.push(
|
|
1434
|
+
n.push(P(r, String(i++), t));
|
|
1411
1435
|
return n;
|
|
1412
1436
|
}
|
|
1413
1437
|
toString(e, t, n) {
|
|
1414
|
-
return e ?
|
|
1438
|
+
return e ? es(this, e, {
|
|
1415
1439
|
blockItemPrefix: "- ",
|
|
1416
1440
|
flowChars: { start: "[", end: "]" },
|
|
1417
1441
|
itemIndent: (e.indent || "") + " ",
|
|
@@ -1428,49 +1452,49 @@ class Y extends Gt {
|
|
|
1428
1452
|
const a = t instanceof Set ? l : String(o++);
|
|
1429
1453
|
l = i.call(t, a, l);
|
|
1430
1454
|
}
|
|
1431
|
-
r.items.push(
|
|
1455
|
+
r.items.push(ke(l, void 0, n));
|
|
1432
1456
|
}
|
|
1433
1457
|
}
|
|
1434
1458
|
return r;
|
|
1435
1459
|
}
|
|
1436
1460
|
}
|
|
1437
|
-
function
|
|
1461
|
+
function Le(s) {
|
|
1438
1462
|
let e = E(s) ? s.value : s;
|
|
1439
1463
|
return e && typeof e == "string" && (e = Number(e)), typeof e == "number" && Number.isInteger(e) && e >= 0 ? e : null;
|
|
1440
1464
|
}
|
|
1441
|
-
const
|
|
1465
|
+
const ye = {
|
|
1442
1466
|
collection: "seq",
|
|
1443
1467
|
default: !0,
|
|
1444
|
-
nodeClass:
|
|
1468
|
+
nodeClass: Q,
|
|
1445
1469
|
tag: "tag:yaml.org,2002:seq",
|
|
1446
1470
|
resolve(s, e) {
|
|
1447
|
-
return
|
|
1471
|
+
return pe(s) || e("Expected a sequence for this tag"), s;
|
|
1448
1472
|
},
|
|
1449
|
-
createNode: (s, e, t) =>
|
|
1450
|
-
},
|
|
1473
|
+
createNode: (s, e, t) => Q.from(s, e, t)
|
|
1474
|
+
}, Ye = {
|
|
1451
1475
|
identify: (s) => typeof s == "string",
|
|
1452
1476
|
default: !0,
|
|
1453
1477
|
tag: "tag:yaml.org,2002:str",
|
|
1454
1478
|
resolve: (s) => s,
|
|
1455
1479
|
stringify(s, e, t, n) {
|
|
1456
|
-
return e = Object.assign({ actualString: !0 }, e),
|
|
1480
|
+
return e = Object.assign({ actualString: !0 }, e), Ae(s, e, t, n);
|
|
1457
1481
|
}
|
|
1458
|
-
},
|
|
1482
|
+
}, Ge = {
|
|
1459
1483
|
identify: (s) => s == null,
|
|
1460
|
-
createNode: () => new
|
|
1484
|
+
createNode: () => new A(null),
|
|
1461
1485
|
default: !0,
|
|
1462
1486
|
tag: "tag:yaml.org,2002:null",
|
|
1463
1487
|
test: /^(?:~|[Nn]ull|NULL)?$/,
|
|
1464
|
-
resolve: () => new
|
|
1465
|
-
stringify: ({ source: s }, e) => typeof s == "string" &&
|
|
1466
|
-
},
|
|
1488
|
+
resolve: () => new A(null),
|
|
1489
|
+
stringify: ({ source: s }, e) => typeof s == "string" && Ge.test.test(s) ? s : e.options.nullStr
|
|
1490
|
+
}, yt = {
|
|
1467
1491
|
identify: (s) => typeof s == "boolean",
|
|
1468
1492
|
default: !0,
|
|
1469
1493
|
tag: "tag:yaml.org,2002:bool",
|
|
1470
1494
|
test: /^(?:[Tt]rue|TRUE|[Ff]alse|FALSE)$/,
|
|
1471
|
-
resolve: (s) => new
|
|
1495
|
+
resolve: (s) => new A(s[0] === "t" || s[0] === "T"),
|
|
1472
1496
|
stringify({ source: s, value: e }, t) {
|
|
1473
|
-
if (s &&
|
|
1497
|
+
if (s && yt.test.test(s)) {
|
|
1474
1498
|
const n = s[0] === "t" || s[0] === "T";
|
|
1475
1499
|
if (e === n)
|
|
1476
1500
|
return s;
|
|
@@ -1494,14 +1518,14 @@ function q({ format: s, minFractionDigits: e, tag: t, value: n }) {
|
|
|
1494
1518
|
}
|
|
1495
1519
|
return r;
|
|
1496
1520
|
}
|
|
1497
|
-
const
|
|
1521
|
+
const ts = {
|
|
1498
1522
|
identify: (s) => typeof s == "number",
|
|
1499
1523
|
default: !0,
|
|
1500
1524
|
tag: "tag:yaml.org,2002:float",
|
|
1501
1525
|
test: /^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,
|
|
1502
1526
|
resolve: (s) => s.slice(-3).toLowerCase() === "nan" ? NaN : s[0] === "-" ? Number.NEGATIVE_INFINITY : Number.POSITIVE_INFINITY,
|
|
1503
1527
|
stringify: q
|
|
1504
|
-
},
|
|
1528
|
+
}, ss = {
|
|
1505
1529
|
identify: (s) => typeof s == "number",
|
|
1506
1530
|
default: !0,
|
|
1507
1531
|
tag: "tag:yaml.org,2002:float",
|
|
@@ -1512,92 +1536,92 @@ const Zt = {
|
|
|
1512
1536
|
const e = Number(s.value);
|
|
1513
1537
|
return isFinite(e) ? e.toExponential() : q(s);
|
|
1514
1538
|
}
|
|
1515
|
-
},
|
|
1539
|
+
}, ns = {
|
|
1516
1540
|
identify: (s) => typeof s == "number",
|
|
1517
1541
|
default: !0,
|
|
1518
1542
|
tag: "tag:yaml.org,2002:float",
|
|
1519
1543
|
test: /^[-+]?(?:\.[0-9]+|[0-9]+\.[0-9]*)$/,
|
|
1520
1544
|
resolve(s) {
|
|
1521
|
-
const e = new
|
|
1545
|
+
const e = new A(parseFloat(s)), t = s.indexOf(".");
|
|
1522
1546
|
return t !== -1 && s[s.length - 1] === "0" && (e.minFractionDigits = s.length - t - 1), e;
|
|
1523
1547
|
},
|
|
1524
1548
|
stringify: q
|
|
1525
|
-
},
|
|
1526
|
-
function
|
|
1549
|
+
}, Qe = (s) => typeof s == "bigint" || Number.isInteger(s), gt = (s, e, t, { intAsBigInt: n }) => n ? BigInt(s) : parseInt(s.substring(e), t);
|
|
1550
|
+
function is(s, e, t) {
|
|
1527
1551
|
const { value: n } = s;
|
|
1528
|
-
return
|
|
1552
|
+
return Qe(n) && n >= 0 ? t + n.toString(e) : q(s);
|
|
1529
1553
|
}
|
|
1530
|
-
const
|
|
1531
|
-
identify: (s) =>
|
|
1554
|
+
const rs = {
|
|
1555
|
+
identify: (s) => Qe(s) && s >= 0,
|
|
1532
1556
|
default: !0,
|
|
1533
1557
|
tag: "tag:yaml.org,2002:int",
|
|
1534
1558
|
format: "OCT",
|
|
1535
1559
|
test: /^0o[0-7]+$/,
|
|
1536
|
-
resolve: (s, e, t) =>
|
|
1537
|
-
stringify: (s) =>
|
|
1538
|
-
},
|
|
1539
|
-
identify:
|
|
1560
|
+
resolve: (s, e, t) => gt(s, 2, 8, t),
|
|
1561
|
+
stringify: (s) => is(s, 8, "0o")
|
|
1562
|
+
}, os = {
|
|
1563
|
+
identify: Qe,
|
|
1540
1564
|
default: !0,
|
|
1541
1565
|
tag: "tag:yaml.org,2002:int",
|
|
1542
1566
|
test: /^[-+]?[0-9]+$/,
|
|
1543
|
-
resolve: (s, e, t) =>
|
|
1567
|
+
resolve: (s, e, t) => gt(s, 0, 10, t),
|
|
1544
1568
|
stringify: q
|
|
1545
|
-
},
|
|
1546
|
-
identify: (s) =>
|
|
1569
|
+
}, ls = {
|
|
1570
|
+
identify: (s) => Qe(s) && s >= 0,
|
|
1547
1571
|
default: !0,
|
|
1548
1572
|
tag: "tag:yaml.org,2002:int",
|
|
1549
1573
|
format: "HEX",
|
|
1550
1574
|
test: /^0x[0-9a-fA-F]+$/,
|
|
1551
|
-
resolve: (s, e, t) =>
|
|
1552
|
-
stringify: (s) =>
|
|
1553
|
-
},
|
|
1554
|
-
pe,
|
|
1575
|
+
resolve: (s, e, t) => gt(s, 2, 16, t),
|
|
1576
|
+
stringify: (s) => is(s, 16, "0x")
|
|
1577
|
+
}, Ws = [
|
|
1555
1578
|
me,
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1579
|
+
ye,
|
|
1580
|
+
Ye,
|
|
1581
|
+
Ge,
|
|
1582
|
+
yt,
|
|
1583
|
+
rs,
|
|
1584
|
+
os,
|
|
1585
|
+
ls,
|
|
1586
|
+
ts,
|
|
1559
1587
|
ss,
|
|
1560
|
-
ns
|
|
1561
|
-
is,
|
|
1562
|
-
Zt,
|
|
1563
|
-
xt,
|
|
1564
|
-
es
|
|
1588
|
+
ns
|
|
1565
1589
|
];
|
|
1566
|
-
function
|
|
1590
|
+
function _t(s) {
|
|
1567
1591
|
return typeof s == "bigint" || Number.isInteger(s);
|
|
1568
1592
|
}
|
|
1569
|
-
const
|
|
1593
|
+
const $e = ({ value: s }) => JSON.stringify(s), Hs = [
|
|
1570
1594
|
{
|
|
1571
1595
|
identify: (s) => typeof s == "string",
|
|
1572
1596
|
default: !0,
|
|
1573
1597
|
tag: "tag:yaml.org,2002:str",
|
|
1574
1598
|
resolve: (s) => s,
|
|
1575
|
-
stringify:
|
|
1599
|
+
stringify: $e
|
|
1576
1600
|
},
|
|
1577
1601
|
{
|
|
1578
1602
|
identify: (s) => s == null,
|
|
1579
|
-
createNode: () => new
|
|
1603
|
+
createNode: () => new A(null),
|
|
1580
1604
|
default: !0,
|
|
1581
1605
|
tag: "tag:yaml.org,2002:null",
|
|
1582
1606
|
test: /^null$/,
|
|
1583
1607
|
resolve: () => null,
|
|
1584
|
-
stringify:
|
|
1608
|
+
stringify: $e
|
|
1585
1609
|
},
|
|
1586
1610
|
{
|
|
1587
1611
|
identify: (s) => typeof s == "boolean",
|
|
1588
1612
|
default: !0,
|
|
1589
1613
|
tag: "tag:yaml.org,2002:bool",
|
|
1590
|
-
test: /^true
|
|
1614
|
+
test: /^true$|^false$/,
|
|
1591
1615
|
resolve: (s) => s === "true",
|
|
1592
|
-
stringify:
|
|
1616
|
+
stringify: $e
|
|
1593
1617
|
},
|
|
1594
1618
|
{
|
|
1595
|
-
identify:
|
|
1619
|
+
identify: _t,
|
|
1596
1620
|
default: !0,
|
|
1597
1621
|
tag: "tag:yaml.org,2002:int",
|
|
1598
1622
|
test: /^-?(?:0|[1-9][0-9]*)$/,
|
|
1599
1623
|
resolve: (s, e, { intAsBigInt: t }) => t ? BigInt(s) : parseInt(s, 10),
|
|
1600
|
-
stringify: ({ value: s }) =>
|
|
1624
|
+
stringify: ({ value: s }) => _t(s) ? s.toString() : JSON.stringify(s)
|
|
1601
1625
|
},
|
|
1602
1626
|
{
|
|
1603
1627
|
identify: (s) => typeof s == "number",
|
|
@@ -1605,16 +1629,16 @@ const Te = ({ value: s }) => JSON.stringify(s), Gs = [
|
|
|
1605
1629
|
tag: "tag:yaml.org,2002:float",
|
|
1606
1630
|
test: /^-?(?:0|[1-9][0-9]*)(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?$/,
|
|
1607
1631
|
resolve: (s) => parseFloat(s),
|
|
1608
|
-
stringify:
|
|
1632
|
+
stringify: $e
|
|
1609
1633
|
}
|
|
1610
|
-
],
|
|
1634
|
+
], Xs = {
|
|
1611
1635
|
default: !0,
|
|
1612
1636
|
tag: "",
|
|
1613
1637
|
test: /^/,
|
|
1614
1638
|
resolve(s, e) {
|
|
1615
1639
|
return e(`Unresolved plain scalar ${JSON.stringify(s)}`), s;
|
|
1616
1640
|
}
|
|
1617
|
-
},
|
|
1641
|
+
}, zs = [me, ye].concat(Hs, Xs), bt = {
|
|
1618
1642
|
identify: (s) => s instanceof Uint8Array,
|
|
1619
1643
|
// Buffer inherits from Uint8Array
|
|
1620
1644
|
default: !1,
|
|
@@ -1628,8 +1652,6 @@ const Te = ({ value: s }) => JSON.stringify(s), Gs = [
|
|
|
1628
1652
|
* document.querySelector('#photo').src = URL.createObjectURL(blob)
|
|
1629
1653
|
*/
|
|
1630
1654
|
resolve(s, e) {
|
|
1631
|
-
if (typeof Buffer == "function")
|
|
1632
|
-
return Buffer.from(s, "base64");
|
|
1633
1655
|
if (typeof atob == "function") {
|
|
1634
1656
|
const t = atob(s.replace(/[\n\r]/g, "")), n = new Uint8Array(t.length);
|
|
1635
1657
|
for (let i = 0; i < t.length; ++i)
|
|
@@ -1641,33 +1663,31 @@ const Te = ({ value: s }) => JSON.stringify(s), Gs = [
|
|
|
1641
1663
|
stringify({ comment: s, type: e, value: t }, n, i, r) {
|
|
1642
1664
|
const o = t;
|
|
1643
1665
|
let l;
|
|
1644
|
-
if (typeof
|
|
1645
|
-
l = o instanceof Buffer ? o.toString("base64") : Buffer.from(o.buffer).toString("base64");
|
|
1646
|
-
else if (typeof btoa == "function") {
|
|
1666
|
+
if (typeof btoa == "function") {
|
|
1647
1667
|
let a = "";
|
|
1648
1668
|
for (let c = 0; c < o.length; ++c)
|
|
1649
1669
|
a += String.fromCharCode(o[c]);
|
|
1650
1670
|
l = btoa(a);
|
|
1651
1671
|
} else
|
|
1652
1672
|
throw new Error("This environment does not support writing binary tags; either Buffer or btoa is required");
|
|
1653
|
-
if (e || (e =
|
|
1654
|
-
const a = Math.max(n.options.lineWidth - n.indent.length, n.options.minContentWidth), c = Math.ceil(l.length / a),
|
|
1673
|
+
if (e || (e = A.BLOCK_LITERAL), e !== A.QUOTE_DOUBLE) {
|
|
1674
|
+
const a = Math.max(n.options.lineWidth - n.indent.length, n.options.minContentWidth), c = Math.ceil(l.length / a), p = new Array(c);
|
|
1655
1675
|
for (let f = 0, d = 0; f < c; ++f, d += a)
|
|
1656
|
-
|
|
1657
|
-
l =
|
|
1676
|
+
p[f] = l.substr(d, a);
|
|
1677
|
+
l = p.join(e === A.BLOCK_LITERAL ? `
|
|
1658
1678
|
` : " ");
|
|
1659
1679
|
}
|
|
1660
|
-
return
|
|
1680
|
+
return Ae({ comment: s, type: e, value: l }, n, i, r);
|
|
1661
1681
|
}
|
|
1662
1682
|
};
|
|
1663
|
-
function
|
|
1664
|
-
if (
|
|
1683
|
+
function as(s, e) {
|
|
1684
|
+
if (pe(s))
|
|
1665
1685
|
for (let t = 0; t < s.items.length; ++t) {
|
|
1666
1686
|
let n = s.items[t];
|
|
1667
|
-
if (!
|
|
1668
|
-
if (
|
|
1687
|
+
if (!T(n)) {
|
|
1688
|
+
if (de(n)) {
|
|
1669
1689
|
n.items.length > 1 && e("Each pair must have its own sequence indicator");
|
|
1670
|
-
const i = n.items[0] || new v(new
|
|
1690
|
+
const i = n.items[0] || new v(new A(null));
|
|
1671
1691
|
if (n.commentBefore && (i.key.commentBefore = i.key.commentBefore ? `${n.commentBefore}
|
|
1672
1692
|
${i.key.commentBefore}` : n.commentBefore), n.comment) {
|
|
1673
1693
|
const r = i.value ?? i.key;
|
|
@@ -1676,15 +1696,15 @@ ${r.comment}` : n.comment;
|
|
|
1676
1696
|
}
|
|
1677
1697
|
n = i;
|
|
1678
1698
|
}
|
|
1679
|
-
s.items[t] =
|
|
1699
|
+
s.items[t] = T(n) ? n : new v(n);
|
|
1680
1700
|
}
|
|
1681
1701
|
}
|
|
1682
1702
|
else
|
|
1683
1703
|
e("Expected a sequence for this tag");
|
|
1684
1704
|
return s;
|
|
1685
1705
|
}
|
|
1686
|
-
function
|
|
1687
|
-
const { replacer: n } = t, i = new
|
|
1706
|
+
function cs(s, e, t) {
|
|
1707
|
+
const { replacer: n } = t, i = new Q(s);
|
|
1688
1708
|
i.tag = "tag:yaml.org,2002:pairs";
|
|
1689
1709
|
let r = 0;
|
|
1690
1710
|
if (e && Symbol.iterator in Object(e))
|
|
@@ -1704,20 +1724,20 @@ function os(s, e, t) {
|
|
|
1704
1724
|
throw new TypeError(`Expected tuple with one key, not ${c.length} keys`);
|
|
1705
1725
|
} else
|
|
1706
1726
|
l = o;
|
|
1707
|
-
i.items.push(
|
|
1727
|
+
i.items.push(mt(l, a, t));
|
|
1708
1728
|
}
|
|
1709
1729
|
return i;
|
|
1710
1730
|
}
|
|
1711
|
-
const
|
|
1731
|
+
const wt = {
|
|
1712
1732
|
collection: "seq",
|
|
1713
1733
|
default: !1,
|
|
1714
1734
|
tag: "tag:yaml.org,2002:pairs",
|
|
1715
|
-
resolve:
|
|
1716
|
-
createNode:
|
|
1735
|
+
resolve: as,
|
|
1736
|
+
createNode: cs
|
|
1717
1737
|
};
|
|
1718
|
-
class
|
|
1738
|
+
class ae extends Q {
|
|
1719
1739
|
constructor() {
|
|
1720
|
-
super(), this.add =
|
|
1740
|
+
super(), this.add = K.prototype.add.bind(this), this.delete = K.prototype.delete.bind(this), this.get = K.prototype.get.bind(this), this.has = K.prototype.has.bind(this), this.set = K.prototype.set.bind(this), this.tag = ae.tag;
|
|
1721
1741
|
}
|
|
1722
1742
|
/**
|
|
1723
1743
|
* If `ctx` is given, the return type is actually `Map<unknown, unknown>`,
|
|
@@ -1730,57 +1750,57 @@ class oe extends Y {
|
|
|
1730
1750
|
t != null && t.onCreate && t.onCreate(n);
|
|
1731
1751
|
for (const i of this.items) {
|
|
1732
1752
|
let r, o;
|
|
1733
|
-
if (
|
|
1753
|
+
if (T(i) ? (r = P(i.key, "", t), o = P(i.value, r, t)) : r = P(i, "", t), n.has(r))
|
|
1734
1754
|
throw new Error("Ordered maps must not include duplicate keys");
|
|
1735
1755
|
n.set(r, o);
|
|
1736
1756
|
}
|
|
1737
1757
|
return n;
|
|
1738
1758
|
}
|
|
1739
1759
|
static from(e, t, n) {
|
|
1740
|
-
const i =
|
|
1760
|
+
const i = cs(e, t, n), r = new this();
|
|
1741
1761
|
return r.items = i.items, r;
|
|
1742
1762
|
}
|
|
1743
1763
|
}
|
|
1744
|
-
|
|
1745
|
-
const
|
|
1764
|
+
ae.tag = "tag:yaml.org,2002:omap";
|
|
1765
|
+
const St = {
|
|
1746
1766
|
collection: "seq",
|
|
1747
1767
|
identify: (s) => s instanceof Map,
|
|
1748
|
-
nodeClass:
|
|
1768
|
+
nodeClass: ae,
|
|
1749
1769
|
default: !1,
|
|
1750
1770
|
tag: "tag:yaml.org,2002:omap",
|
|
1751
1771
|
resolve(s, e) {
|
|
1752
|
-
const t =
|
|
1772
|
+
const t = as(s, e), n = [];
|
|
1753
1773
|
for (const { key: i } of t.items)
|
|
1754
1774
|
E(i) && (n.includes(i.value) ? e(`Ordered maps must not include duplicate keys: ${i.value}`) : n.push(i.value));
|
|
1755
|
-
return Object.assign(new
|
|
1775
|
+
return Object.assign(new ae(), t);
|
|
1756
1776
|
},
|
|
1757
|
-
createNode: (s, e, t) =>
|
|
1777
|
+
createNode: (s, e, t) => ae.from(s, e, t)
|
|
1758
1778
|
};
|
|
1759
|
-
function
|
|
1760
|
-
return e && (s ?
|
|
1779
|
+
function fs({ value: s, source: e }, t) {
|
|
1780
|
+
return e && (s ? us : hs).test.test(e) ? e : s ? t.options.trueStr : t.options.falseStr;
|
|
1761
1781
|
}
|
|
1762
|
-
const
|
|
1782
|
+
const us = {
|
|
1763
1783
|
identify: (s) => s === !0,
|
|
1764
1784
|
default: !0,
|
|
1765
1785
|
tag: "tag:yaml.org,2002:bool",
|
|
1766
1786
|
test: /^(?:Y|y|[Yy]es|YES|[Tt]rue|TRUE|[Oo]n|ON)$/,
|
|
1767
|
-
resolve: () => new
|
|
1768
|
-
stringify:
|
|
1769
|
-
},
|
|
1787
|
+
resolve: () => new A(!0),
|
|
1788
|
+
stringify: fs
|
|
1789
|
+
}, hs = {
|
|
1770
1790
|
identify: (s) => s === !1,
|
|
1771
1791
|
default: !0,
|
|
1772
1792
|
tag: "tag:yaml.org,2002:bool",
|
|
1773
1793
|
test: /^(?:N|n|[Nn]o|NO|[Ff]alse|FALSE|[Oo]ff|OFF)$/,
|
|
1774
|
-
resolve: () => new
|
|
1775
|
-
stringify:
|
|
1776
|
-
},
|
|
1794
|
+
resolve: () => new A(!1),
|
|
1795
|
+
stringify: fs
|
|
1796
|
+
}, Zs = {
|
|
1777
1797
|
identify: (s) => typeof s == "number",
|
|
1778
1798
|
default: !0,
|
|
1779
1799
|
tag: "tag:yaml.org,2002:float",
|
|
1780
1800
|
test: /^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,
|
|
1781
1801
|
resolve: (s) => s.slice(-3).toLowerCase() === "nan" ? NaN : s[0] === "-" ? Number.NEGATIVE_INFINITY : Number.POSITIVE_INFINITY,
|
|
1782
1802
|
stringify: q
|
|
1783
|
-
},
|
|
1803
|
+
}, xs = {
|
|
1784
1804
|
identify: (s) => typeof s == "number",
|
|
1785
1805
|
default: !0,
|
|
1786
1806
|
tag: "tag:yaml.org,2002:float",
|
|
@@ -1791,13 +1811,13 @@ const as = {
|
|
|
1791
1811
|
const e = Number(s.value);
|
|
1792
1812
|
return isFinite(e) ? e.toExponential() : q(s);
|
|
1793
1813
|
}
|
|
1794
|
-
},
|
|
1814
|
+
}, en = {
|
|
1795
1815
|
identify: (s) => typeof s == "number",
|
|
1796
1816
|
default: !0,
|
|
1797
1817
|
tag: "tag:yaml.org,2002:float",
|
|
1798
1818
|
test: /^[-+]?(?:[0-9][0-9_]*)?\.[0-9_]*$/,
|
|
1799
1819
|
resolve(s) {
|
|
1800
|
-
const e = new
|
|
1820
|
+
const e = new A(parseFloat(s.replace(/_/g, ""))), t = s.indexOf(".");
|
|
1801
1821
|
if (t !== -1) {
|
|
1802
1822
|
const n = s.substring(t + 1).replace(/_/g, "");
|
|
1803
1823
|
n[n.length - 1] === "0" && (e.minFractionDigits = n.length);
|
|
@@ -1805,8 +1825,8 @@ const as = {
|
|
|
1805
1825
|
return e;
|
|
1806
1826
|
},
|
|
1807
1827
|
stringify: q
|
|
1808
|
-
},
|
|
1809
|
-
function
|
|
1828
|
+
}, Ee = (s) => typeof s == "bigint" || Number.isInteger(s);
|
|
1829
|
+
function We(s, e, t, { intAsBigInt: n }) {
|
|
1810
1830
|
const i = s[0];
|
|
1811
1831
|
if ((i === "-" || i === "+") && (e += 1), s = s.substring(e).replace(/_/g, ""), n) {
|
|
1812
1832
|
switch (t) {
|
|
@@ -1826,66 +1846,66 @@ function Ge(s, e, t, { intAsBigInt: n }) {
|
|
|
1826
1846
|
const r = parseInt(s, t);
|
|
1827
1847
|
return i === "-" ? -1 * r : r;
|
|
1828
1848
|
}
|
|
1829
|
-
function
|
|
1849
|
+
function kt(s, e, t) {
|
|
1830
1850
|
const { value: n } = s;
|
|
1831
|
-
if (
|
|
1851
|
+
if (Ee(n)) {
|
|
1832
1852
|
const i = n.toString(e);
|
|
1833
1853
|
return n < 0 ? "-" + t + i.substr(1) : t + i;
|
|
1834
1854
|
}
|
|
1835
1855
|
return q(s);
|
|
1836
1856
|
}
|
|
1837
|
-
const
|
|
1838
|
-
identify:
|
|
1857
|
+
const tn = {
|
|
1858
|
+
identify: Ee,
|
|
1839
1859
|
default: !0,
|
|
1840
1860
|
tag: "tag:yaml.org,2002:int",
|
|
1841
1861
|
format: "BIN",
|
|
1842
1862
|
test: /^[-+]?0b[0-1_]+$/,
|
|
1843
|
-
resolve: (s, e, t) =>
|
|
1844
|
-
stringify: (s) =>
|
|
1845
|
-
},
|
|
1846
|
-
identify:
|
|
1863
|
+
resolve: (s, e, t) => We(s, 2, 2, t),
|
|
1864
|
+
stringify: (s) => kt(s, 2, "0b")
|
|
1865
|
+
}, sn = {
|
|
1866
|
+
identify: Ee,
|
|
1847
1867
|
default: !0,
|
|
1848
1868
|
tag: "tag:yaml.org,2002:int",
|
|
1849
1869
|
format: "OCT",
|
|
1850
1870
|
test: /^[-+]?0[0-7_]+$/,
|
|
1851
|
-
resolve: (s, e, t) =>
|
|
1852
|
-
stringify: (s) =>
|
|
1853
|
-
},
|
|
1854
|
-
identify:
|
|
1871
|
+
resolve: (s, e, t) => We(s, 1, 8, t),
|
|
1872
|
+
stringify: (s) => kt(s, 8, "0")
|
|
1873
|
+
}, nn = {
|
|
1874
|
+
identify: Ee,
|
|
1855
1875
|
default: !0,
|
|
1856
1876
|
tag: "tag:yaml.org,2002:int",
|
|
1857
1877
|
test: /^[-+]?[0-9][0-9_]*$/,
|
|
1858
|
-
resolve: (s, e, t) =>
|
|
1878
|
+
resolve: (s, e, t) => We(s, 0, 10, t),
|
|
1859
1879
|
stringify: q
|
|
1860
|
-
},
|
|
1861
|
-
identify:
|
|
1880
|
+
}, rn = {
|
|
1881
|
+
identify: Ee,
|
|
1862
1882
|
default: !0,
|
|
1863
1883
|
tag: "tag:yaml.org,2002:int",
|
|
1864
1884
|
format: "HEX",
|
|
1865
1885
|
test: /^[-+]?0x[0-9a-fA-F_]+$/,
|
|
1866
|
-
resolve: (s, e, t) =>
|
|
1867
|
-
stringify: (s) =>
|
|
1886
|
+
resolve: (s, e, t) => We(s, 2, 16, t),
|
|
1887
|
+
stringify: (s) => kt(s, 16, "0x")
|
|
1868
1888
|
};
|
|
1869
|
-
class
|
|
1889
|
+
class ce extends K {
|
|
1870
1890
|
constructor(e) {
|
|
1871
|
-
super(e), this.tag =
|
|
1891
|
+
super(e), this.tag = ce.tag;
|
|
1872
1892
|
}
|
|
1873
1893
|
add(e) {
|
|
1874
1894
|
let t;
|
|
1875
|
-
|
|
1895
|
+
T(e) ? t = e : e && typeof e == "object" && "key" in e && "value" in e && e.value === null ? t = new v(e.key, null) : t = new v(e, null), X(this.items, t.key) || this.items.push(t);
|
|
1876
1896
|
}
|
|
1877
1897
|
/**
|
|
1878
1898
|
* If `keepPair` is `true`, returns the Pair matching `key`.
|
|
1879
1899
|
* Otherwise, returns the value of that Pair's key.
|
|
1880
1900
|
*/
|
|
1881
1901
|
get(e, t) {
|
|
1882
|
-
const n =
|
|
1883
|
-
return !t &&
|
|
1902
|
+
const n = X(this.items, e);
|
|
1903
|
+
return !t && T(n) ? E(n.key) ? n.key.value : n.key : n;
|
|
1884
1904
|
}
|
|
1885
1905
|
set(e, t) {
|
|
1886
1906
|
if (typeof t != "boolean")
|
|
1887
1907
|
throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof t}`);
|
|
1888
|
-
const n =
|
|
1908
|
+
const n = X(this.items, e);
|
|
1889
1909
|
n && !t ? this.items.splice(this.items.indexOf(n), 1) : !n && t && this.items.push(new v(e));
|
|
1890
1910
|
}
|
|
1891
1911
|
toJSON(e, t) {
|
|
@@ -1902,33 +1922,33 @@ class le extends P {
|
|
|
1902
1922
|
const { replacer: i } = n, r = new this(e);
|
|
1903
1923
|
if (t && Symbol.iterator in Object(t))
|
|
1904
1924
|
for (let o of t)
|
|
1905
|
-
typeof i == "function" && (o = i.call(t, o, o)), r.items.push(
|
|
1925
|
+
typeof i == "function" && (o = i.call(t, o, o)), r.items.push(mt(o, null, n));
|
|
1906
1926
|
return r;
|
|
1907
1927
|
}
|
|
1908
1928
|
}
|
|
1909
|
-
|
|
1910
|
-
const
|
|
1929
|
+
ce.tag = "tag:yaml.org,2002:set";
|
|
1930
|
+
const Nt = {
|
|
1911
1931
|
collection: "map",
|
|
1912
1932
|
identify: (s) => s instanceof Set,
|
|
1913
|
-
nodeClass:
|
|
1933
|
+
nodeClass: ce,
|
|
1914
1934
|
default: !1,
|
|
1915
1935
|
tag: "tag:yaml.org,2002:set",
|
|
1916
|
-
createNode: (s, e, t) =>
|
|
1936
|
+
createNode: (s, e, t) => ce.from(s, e, t),
|
|
1917
1937
|
resolve(s, e) {
|
|
1918
|
-
if (
|
|
1938
|
+
if (de(s)) {
|
|
1919
1939
|
if (s.hasAllNullValues(!0))
|
|
1920
|
-
return Object.assign(new
|
|
1940
|
+
return Object.assign(new ce(), s);
|
|
1921
1941
|
e("Set items must all have null values");
|
|
1922
1942
|
} else
|
|
1923
1943
|
e("Expected a mapping for this tag");
|
|
1924
1944
|
return s;
|
|
1925
1945
|
}
|
|
1926
1946
|
};
|
|
1927
|
-
function
|
|
1947
|
+
function Ot(s, e) {
|
|
1928
1948
|
const t = s[0], n = t === "-" || t === "+" ? s.substring(1) : s, i = (o) => e ? BigInt(o) : Number(o), r = n.replace(/_/g, "").split(":").reduce((o, l) => o * i(60) + i(l), i(0));
|
|
1929
1949
|
return t === "-" ? i(-1) * r : r;
|
|
1930
1950
|
}
|
|
1931
|
-
function
|
|
1951
|
+
function ds(s) {
|
|
1932
1952
|
let { value: e } = s, t = (o) => o;
|
|
1933
1953
|
if (typeof e == "bigint")
|
|
1934
1954
|
t = (o) => BigInt(o);
|
|
@@ -1939,23 +1959,23 @@ function fs(s) {
|
|
|
1939
1959
|
const i = t(60), r = [e % i];
|
|
1940
1960
|
return e < 60 ? r.unshift(0) : (e = (e - r[0]) / i, r.unshift(e % i), e >= 60 && (e = (e - r[0]) / i, r.unshift(e))), n + r.map((o) => String(o).padStart(2, "0")).join(":").replace(/000000\d*$/, "");
|
|
1941
1961
|
}
|
|
1942
|
-
const
|
|
1962
|
+
const ps = {
|
|
1943
1963
|
identify: (s) => typeof s == "bigint" || Number.isInteger(s),
|
|
1944
1964
|
default: !0,
|
|
1945
1965
|
tag: "tag:yaml.org,2002:int",
|
|
1946
1966
|
format: "TIME",
|
|
1947
1967
|
test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,
|
|
1948
|
-
resolve: (s, e, { intAsBigInt: t }) =>
|
|
1949
|
-
stringify:
|
|
1950
|
-
},
|
|
1968
|
+
resolve: (s, e, { intAsBigInt: t }) => Ot(s, t),
|
|
1969
|
+
stringify: ds
|
|
1970
|
+
}, ms = {
|
|
1951
1971
|
identify: (s) => typeof s == "number",
|
|
1952
1972
|
default: !0,
|
|
1953
1973
|
tag: "tag:yaml.org,2002:float",
|
|
1954
1974
|
format: "TIME",
|
|
1955
1975
|
test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,
|
|
1956
|
-
resolve: (s) =>
|
|
1957
|
-
stringify:
|
|
1958
|
-
},
|
|
1976
|
+
resolve: (s) => Ot(s, !1),
|
|
1977
|
+
stringify: ds
|
|
1978
|
+
}, He = {
|
|
1959
1979
|
identify: (s) => s instanceof Date,
|
|
1960
1980
|
default: !0,
|
|
1961
1981
|
tag: "tag:yaml.org,2002:timestamp",
|
|
@@ -1964,105 +1984,110 @@ const us = {
|
|
|
1964
1984
|
// assumed to be 00:00:00Z (start of day, UTC).
|
|
1965
1985
|
test: RegExp("^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})(?:(?:t|T|[ \\t]+)([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?)?$"),
|
|
1966
1986
|
resolve(s) {
|
|
1967
|
-
const e = s.match(
|
|
1987
|
+
const e = s.match(He.test);
|
|
1968
1988
|
if (!e)
|
|
1969
1989
|
throw new Error("!!timestamp expects a date, starting with yyyy-mm-dd");
|
|
1970
1990
|
const [, t, n, i, r, o, l] = e.map(Number), a = e[7] ? Number((e[7] + "00").substr(1, 3)) : 0;
|
|
1971
1991
|
let c = Date.UTC(t, n - 1, i, r || 0, o || 0, l || 0, a);
|
|
1972
|
-
const
|
|
1973
|
-
if (
|
|
1974
|
-
let f =
|
|
1992
|
+
const p = e[8];
|
|
1993
|
+
if (p && p !== "Z") {
|
|
1994
|
+
let f = Ot(p, !1);
|
|
1975
1995
|
Math.abs(f) < 30 && (f *= 60), c -= 6e4 * f;
|
|
1976
1996
|
}
|
|
1977
1997
|
return new Date(c);
|
|
1978
1998
|
},
|
|
1979
|
-
stringify: ({ value: s }) => s.toISOString().replace(/(
|
|
1980
|
-
},
|
|
1981
|
-
pe,
|
|
1999
|
+
stringify: ({ value: s }) => s.toISOString().replace(/(T00:00:00)?\.000Z$/, "")
|
|
2000
|
+
}, Ct = [
|
|
1982
2001
|
me,
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
2002
|
+
ye,
|
|
2003
|
+
Ye,
|
|
2004
|
+
Ge,
|
|
2005
|
+
us,
|
|
2006
|
+
hs,
|
|
2007
|
+
tn,
|
|
2008
|
+
sn,
|
|
2009
|
+
nn,
|
|
2010
|
+
rn,
|
|
1987
2011
|
Zs,
|
|
1988
2012
|
xs,
|
|
1989
2013
|
en,
|
|
1990
|
-
tn,
|
|
1991
|
-
Hs,
|
|
1992
|
-
Xs,
|
|
1993
|
-
zs,
|
|
1994
|
-
yt,
|
|
1995
2014
|
bt,
|
|
1996
|
-
|
|
2015
|
+
V,
|
|
1997
2016
|
St,
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
["
|
|
2005
|
-
["
|
|
2006
|
-
["
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
"tag:yaml.org,2002:
|
|
2030
|
-
"tag:yaml.org,2002:
|
|
2017
|
+
wt,
|
|
2018
|
+
Nt,
|
|
2019
|
+
ps,
|
|
2020
|
+
ms,
|
|
2021
|
+
He
|
|
2022
|
+
], vt = /* @__PURE__ */ new Map([
|
|
2023
|
+
["core", Ws],
|
|
2024
|
+
["failsafe", [me, ye, Ye]],
|
|
2025
|
+
["json", zs],
|
|
2026
|
+
["yaml11", Ct],
|
|
2027
|
+
["yaml-1.1", Ct]
|
|
2028
|
+
]), Bt = {
|
|
2029
|
+
binary: bt,
|
|
2030
|
+
bool: yt,
|
|
2031
|
+
float: ns,
|
|
2032
|
+
floatExp: ss,
|
|
2033
|
+
floatNaN: ts,
|
|
2034
|
+
floatTime: ms,
|
|
2035
|
+
int: os,
|
|
2036
|
+
intHex: ls,
|
|
2037
|
+
intOct: rs,
|
|
2038
|
+
intTime: ps,
|
|
2039
|
+
map: me,
|
|
2040
|
+
merge: V,
|
|
2041
|
+
null: Ge,
|
|
2042
|
+
omap: St,
|
|
2043
|
+
pairs: wt,
|
|
2044
|
+
seq: ye,
|
|
2045
|
+
set: Nt,
|
|
2046
|
+
timestamp: He
|
|
2047
|
+
}, on = {
|
|
2048
|
+
"tag:yaml.org,2002:binary": bt,
|
|
2049
|
+
"tag:yaml.org,2002:merge": V,
|
|
2050
|
+
"tag:yaml.org,2002:omap": St,
|
|
2051
|
+
"tag:yaml.org,2002:pairs": wt,
|
|
2052
|
+
"tag:yaml.org,2002:set": Nt,
|
|
2053
|
+
"tag:yaml.org,2002:timestamp": He
|
|
2031
2054
|
};
|
|
2032
|
-
function
|
|
2033
|
-
|
|
2034
|
-
if (!
|
|
2055
|
+
function tt(s, e, t) {
|
|
2056
|
+
const n = vt.get(e);
|
|
2057
|
+
if (n && !s)
|
|
2058
|
+
return t && !n.includes(V) ? n.concat(V) : n.slice();
|
|
2059
|
+
let i = n;
|
|
2060
|
+
if (!i)
|
|
2035
2061
|
if (Array.isArray(s))
|
|
2036
|
-
|
|
2062
|
+
i = [];
|
|
2037
2063
|
else {
|
|
2038
|
-
const
|
|
2039
|
-
throw new Error(`Unknown schema "${e}"; use one of ${
|
|
2064
|
+
const r = Array.from(vt.keys()).filter((o) => o !== "yaml11").map((o) => JSON.stringify(o)).join(", ");
|
|
2065
|
+
throw new Error(`Unknown schema "${e}"; use one of ${r} or define customTags array`);
|
|
2040
2066
|
}
|
|
2041
2067
|
if (Array.isArray(s))
|
|
2042
|
-
for (const
|
|
2043
|
-
|
|
2044
|
-
else typeof s == "function" && (
|
|
2045
|
-
return t.
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
});
|
|
2068
|
+
for (const r of s)
|
|
2069
|
+
i = i.concat(r);
|
|
2070
|
+
else typeof s == "function" && (i = s(i.slice()));
|
|
2071
|
+
return t && (i = i.concat(V)), i.reduce((r, o) => {
|
|
2072
|
+
const l = typeof o == "string" ? Bt[o] : o;
|
|
2073
|
+
if (!l) {
|
|
2074
|
+
const a = JSON.stringify(o), c = Object.keys(Bt).map((p) => JSON.stringify(p)).join(", ");
|
|
2075
|
+
throw new Error(`Unknown custom tag ${a}; use one of ${c}`);
|
|
2076
|
+
}
|
|
2077
|
+
return r.includes(l) || r.push(l), r;
|
|
2078
|
+
}, []);
|
|
2054
2079
|
}
|
|
2055
|
-
const
|
|
2056
|
-
class
|
|
2080
|
+
const ln = (s, e) => s.key < e.key ? -1 : s.key > e.key ? 1 : 0;
|
|
2081
|
+
class Xe {
|
|
2057
2082
|
constructor({ compat: e, customTags: t, merge: n, resolveKnownTags: i, schema: r, sortMapEntries: o, toStringDefaults: l }) {
|
|
2058
|
-
this.compat = Array.isArray(e) ?
|
|
2083
|
+
this.compat = Array.isArray(e) ? tt(e, "compat") : e ? tt(null, e) : null, this.name = typeof r == "string" && r || "core", this.knownTags = i ? on : {}, this.tags = tt(t, this.name, n), this.toStringOptions = l ?? null, Object.defineProperty(this, Y, { value: me }), Object.defineProperty(this, R, { value: Ye }), Object.defineProperty(this, he, { value: ye }), this.sortMapEntries = typeof o == "function" ? o : o === !0 ? ln : null;
|
|
2059
2084
|
}
|
|
2060
2085
|
clone() {
|
|
2061
|
-
const e = Object.create(
|
|
2086
|
+
const e = Object.create(Xe.prototype, Object.getOwnPropertyDescriptors(this));
|
|
2062
2087
|
return e.tags = this.tags.slice(), e;
|
|
2063
2088
|
}
|
|
2064
2089
|
}
|
|
2065
|
-
function
|
|
2090
|
+
function an(s, e) {
|
|
2066
2091
|
var a;
|
|
2067
2092
|
const t = [];
|
|
2068
2093
|
let n = e.directives === !0;
|
|
@@ -2071,44 +2096,44 @@ function rn(s, e) {
|
|
|
2071
2096
|
c ? (t.push(c), n = !0) : s.directives.docStart && (n = !0);
|
|
2072
2097
|
}
|
|
2073
2098
|
n && t.push("---");
|
|
2074
|
-
const i =
|
|
2099
|
+
const i = Xt(s, e), { commentString: r } = i.options;
|
|
2075
2100
|
if (s.commentBefore) {
|
|
2076
2101
|
t.length !== 1 && t.unshift("");
|
|
2077
2102
|
const c = r(s.commentBefore);
|
|
2078
|
-
t.unshift(
|
|
2103
|
+
t.unshift(U(c, ""));
|
|
2079
2104
|
}
|
|
2080
2105
|
let o = !1, l = null;
|
|
2081
2106
|
if (s.contents) {
|
|
2082
2107
|
if ($(s.contents)) {
|
|
2083
2108
|
if (s.contents.spaceBefore && n && t.push(""), s.contents.commentBefore) {
|
|
2084
2109
|
const f = r(s.contents.commentBefore);
|
|
2085
|
-
t.push(
|
|
2110
|
+
t.push(U(f, ""));
|
|
2086
2111
|
}
|
|
2087
2112
|
i.forceBlockIndent = !!s.comment, l = s.contents.comment;
|
|
2088
2113
|
}
|
|
2089
2114
|
const c = l ? void 0 : () => o = !0;
|
|
2090
|
-
let
|
|
2091
|
-
l && (
|
|
2115
|
+
let p = fe(s.contents, i, () => l = null, c);
|
|
2116
|
+
l && (p += H(p, "", r(l))), (p[0] === "|" || p[0] === ">") && t[t.length - 1] === "---" ? t[t.length - 1] = `--- ${p}` : t.push(p);
|
|
2092
2117
|
} else
|
|
2093
|
-
t.push(
|
|
2118
|
+
t.push(fe(s.contents, i));
|
|
2094
2119
|
if ((a = s.directives) != null && a.docEnd)
|
|
2095
2120
|
if (s.comment) {
|
|
2096
2121
|
const c = r(s.comment);
|
|
2097
2122
|
c.includes(`
|
|
2098
|
-
`) ? (t.push("..."), t.push(
|
|
2123
|
+
`) ? (t.push("..."), t.push(U(c, ""))) : t.push(`... ${c}`);
|
|
2099
2124
|
} else
|
|
2100
2125
|
t.push("...");
|
|
2101
2126
|
else {
|
|
2102
2127
|
let c = s.comment;
|
|
2103
|
-
c && o && (c = c.replace(/^\n+/, "")), c && ((!o || l) && t[t.length - 1] !== "" && t.push(""), t.push(
|
|
2128
|
+
c && o && (c = c.replace(/^\n+/, "")), c && ((!o || l) && t[t.length - 1] !== "" && t.push(""), t.push(U(r(c), "")));
|
|
2104
2129
|
}
|
|
2105
2130
|
return t.join(`
|
|
2106
2131
|
`) + `
|
|
2107
2132
|
`;
|
|
2108
2133
|
}
|
|
2109
|
-
class
|
|
2134
|
+
class ge {
|
|
2110
2135
|
constructor(e, t, n) {
|
|
2111
|
-
this.commentBefore = null, this.comment = null, this.errors = [], this.warnings = [], Object.defineProperty(this,
|
|
2136
|
+
this.commentBefore = null, this.comment = null, this.errors = [], this.warnings = [], Object.defineProperty(this, j, { value: lt });
|
|
2112
2137
|
let i = null;
|
|
2113
2138
|
typeof t == "function" || Array.isArray(t) ? i = t : n === void 0 && t && (n = t, t = void 0);
|
|
2114
2139
|
const r = Object.assign({
|
|
@@ -2117,6 +2142,7 @@ class ye {
|
|
|
2117
2142
|
logLevel: "warn",
|
|
2118
2143
|
prettyErrors: !0,
|
|
2119
2144
|
strict: !0,
|
|
2145
|
+
stringKeys: !1,
|
|
2120
2146
|
uniqueKeys: !0,
|
|
2121
2147
|
version: "1.2"
|
|
2122
2148
|
}, n);
|
|
@@ -2130,18 +2156,18 @@ class ye {
|
|
|
2130
2156
|
* Custom Node values that inherit from `Object` still refer to their original instances.
|
|
2131
2157
|
*/
|
|
2132
2158
|
clone() {
|
|
2133
|
-
const e = Object.create(
|
|
2134
|
-
[
|
|
2159
|
+
const e = Object.create(ge.prototype, {
|
|
2160
|
+
[j]: { value: lt }
|
|
2135
2161
|
});
|
|
2136
2162
|
return e.commentBefore = this.commentBefore, e.comment = this.comment, e.errors = this.errors.slice(), e.warnings = this.warnings.slice(), e.options = Object.assign({}, this.options), this.directives && (e.directives = this.directives.clone()), e.schema = this.schema.clone(), e.contents = $(this.contents) ? this.contents.clone(e.schema) : this.contents, this.range && (e.range = this.range.slice()), e;
|
|
2137
2163
|
}
|
|
2138
2164
|
/** Adds a value to the document. */
|
|
2139
2165
|
add(e) {
|
|
2140
|
-
|
|
2166
|
+
se(this.contents) && this.contents.add(e);
|
|
2141
2167
|
}
|
|
2142
2168
|
/** Adds a value to the document. */
|
|
2143
2169
|
addIn(e, t) {
|
|
2144
|
-
|
|
2170
|
+
se(this.contents) && this.contents.addIn(e, t);
|
|
2145
2171
|
}
|
|
2146
2172
|
/**
|
|
2147
2173
|
* Create a new `Alias` node, ensuring that the target `node` has the required anchor.
|
|
@@ -2154,21 +2180,21 @@ class ye {
|
|
|
2154
2180
|
*/
|
|
2155
2181
|
createAlias(e, t) {
|
|
2156
2182
|
if (!e.anchor) {
|
|
2157
|
-
const n =
|
|
2183
|
+
const n = Yt(this);
|
|
2158
2184
|
e.anchor = // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
|
2159
|
-
!t || n.has(t) ?
|
|
2185
|
+
!t || n.has(t) ? Gt(t || "a", n) : t;
|
|
2160
2186
|
}
|
|
2161
|
-
return new
|
|
2187
|
+
return new Re(e.anchor);
|
|
2162
2188
|
}
|
|
2163
2189
|
createNode(e, t, n) {
|
|
2164
2190
|
let i;
|
|
2165
2191
|
if (typeof t == "function")
|
|
2166
2192
|
e = t.call({ "": e }, "", e), i = t;
|
|
2167
2193
|
else if (Array.isArray(t)) {
|
|
2168
|
-
const
|
|
2169
|
-
|
|
2194
|
+
const m = (S) => typeof S == "number" || S instanceof String || S instanceof Number, b = t.filter(m).map(String);
|
|
2195
|
+
b.length > 0 && (t = t.concat(b)), i = t;
|
|
2170
2196
|
} else n === void 0 && t && (n = t, t = void 0);
|
|
2171
|
-
const { aliasDuplicateObjects: r, anchorPrefix: o, flow: l, keepUndefined: a, onTagObj: c, tag:
|
|
2197
|
+
const { aliasDuplicateObjects: r, anchorPrefix: o, flow: l, keepUndefined: a, onTagObj: c, tag: p } = n ?? {}, { onAnchor: f, setAnchors: d, sourceObjects: h } = Ks(
|
|
2172
2198
|
this,
|
|
2173
2199
|
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
|
2174
2200
|
o || "a"
|
|
@@ -2180,7 +2206,7 @@ class ye {
|
|
|
2180
2206
|
replacer: i,
|
|
2181
2207
|
schema: this.schema,
|
|
2182
2208
|
sourceObjects: h
|
|
2183
|
-
}, u =
|
|
2209
|
+
}, u = ke(e, p, y);
|
|
2184
2210
|
return l && L(u) && (u.flow = !0), d(), u;
|
|
2185
2211
|
}
|
|
2186
2212
|
/**
|
|
@@ -2196,14 +2222,14 @@ class ye {
|
|
|
2196
2222
|
* @returns `true` if the item was found and removed.
|
|
2197
2223
|
*/
|
|
2198
2224
|
delete(e) {
|
|
2199
|
-
return
|
|
2225
|
+
return se(this.contents) ? this.contents.delete(e) : !1;
|
|
2200
2226
|
}
|
|
2201
2227
|
/**
|
|
2202
2228
|
* Removes a value from the document.
|
|
2203
2229
|
* @returns `true` if the item was found and removed.
|
|
2204
2230
|
*/
|
|
2205
2231
|
deleteIn(e) {
|
|
2206
|
-
return
|
|
2232
|
+
return we(e) ? this.contents == null ? !1 : (this.contents = null, !0) : se(this.contents) ? this.contents.deleteIn(e) : !1;
|
|
2207
2233
|
}
|
|
2208
2234
|
/**
|
|
2209
2235
|
* Returns item at `key`, or `undefined` if not found. By default unwraps
|
|
@@ -2219,7 +2245,7 @@ class ye {
|
|
|
2219
2245
|
* `true` (collections are always returned intact).
|
|
2220
2246
|
*/
|
|
2221
2247
|
getIn(e, t) {
|
|
2222
|
-
return
|
|
2248
|
+
return we(e) ? !t && E(this.contents) ? this.contents.value : this.contents : L(this.contents) ? this.contents.getIn(e, t) : void 0;
|
|
2223
2249
|
}
|
|
2224
2250
|
/**
|
|
2225
2251
|
* Checks if the document includes a value with the key `key`.
|
|
@@ -2231,21 +2257,21 @@ class ye {
|
|
|
2231
2257
|
* Checks if the document includes a value at `path`.
|
|
2232
2258
|
*/
|
|
2233
2259
|
hasIn(e) {
|
|
2234
|
-
return
|
|
2260
|
+
return we(e) ? this.contents !== void 0 : L(this.contents) ? this.contents.hasIn(e) : !1;
|
|
2235
2261
|
}
|
|
2236
2262
|
/**
|
|
2237
2263
|
* Sets a value in this document. For `!!set`, `value` needs to be a
|
|
2238
2264
|
* boolean to add/remove the item from the set.
|
|
2239
2265
|
*/
|
|
2240
2266
|
set(e, t) {
|
|
2241
|
-
this.contents == null ? this.contents =
|
|
2267
|
+
this.contents == null ? this.contents = Pe(this.schema, [e], t) : se(this.contents) && this.contents.set(e, t);
|
|
2242
2268
|
}
|
|
2243
2269
|
/**
|
|
2244
2270
|
* Sets a value in this document. For `!!set`, `value` needs to be a
|
|
2245
2271
|
* boolean to add/remove the item from the set.
|
|
2246
2272
|
*/
|
|
2247
2273
|
setIn(e, t) {
|
|
2248
|
-
|
|
2274
|
+
we(e) ? this.contents = t : this.contents == null ? this.contents = Pe(this.schema, Array.from(e), t) : se(this.contents) && this.contents.setIn(e, t);
|
|
2249
2275
|
}
|
|
2250
2276
|
/**
|
|
2251
2277
|
* Change the YAML version and schema used by the document.
|
|
@@ -2259,11 +2285,11 @@ class ye {
|
|
|
2259
2285
|
let n;
|
|
2260
2286
|
switch (e) {
|
|
2261
2287
|
case "1.1":
|
|
2262
|
-
this.directives ? this.directives.yaml.version = "1.1" : this.directives = new B({ version: "1.1" }), n = {
|
|
2288
|
+
this.directives ? this.directives.yaml.version = "1.1" : this.directives = new B({ version: "1.1" }), n = { resolveKnownTags: !1, schema: "yaml-1.1" };
|
|
2263
2289
|
break;
|
|
2264
2290
|
case "1.2":
|
|
2265
2291
|
case "next":
|
|
2266
|
-
this.directives ? this.directives.yaml.version = e : this.directives = new B({ version: e }), n = {
|
|
2292
|
+
this.directives ? this.directives.yaml.version = e : this.directives = new B({ version: e }), n = { resolveKnownTags: !0, schema: "core" };
|
|
2267
2293
|
break;
|
|
2268
2294
|
case null:
|
|
2269
2295
|
this.directives && delete this.directives, n = null;
|
|
@@ -2276,7 +2302,7 @@ class ye {
|
|
|
2276
2302
|
if (t.schema instanceof Object)
|
|
2277
2303
|
this.schema = t.schema;
|
|
2278
2304
|
else if (n)
|
|
2279
|
-
this.schema = new
|
|
2305
|
+
this.schema = new Xe(Object.assign(n, t));
|
|
2280
2306
|
else
|
|
2281
2307
|
throw new Error("With a null YAML version, the { schema: Schema } option is required");
|
|
2282
2308
|
}
|
|
@@ -2289,11 +2315,11 @@ class ye {
|
|
|
2289
2315
|
mapAsMap: n === !0,
|
|
2290
2316
|
mapKeyWarned: !1,
|
|
2291
2317
|
maxAliasCount: typeof i == "number" ? i : 100
|
|
2292
|
-
}, a =
|
|
2318
|
+
}, a = P(this.contents, t ?? "", l);
|
|
2293
2319
|
if (typeof r == "function")
|
|
2294
|
-
for (const { count: c, res:
|
|
2295
|
-
r(
|
|
2296
|
-
return typeof o == "function" ?
|
|
2320
|
+
for (const { count: c, res: p } of l.anchors.values())
|
|
2321
|
+
r(p, c);
|
|
2322
|
+
return typeof o == "function" ? oe(o, { "": a }, "", a) : a;
|
|
2297
2323
|
}
|
|
2298
2324
|
/**
|
|
2299
2325
|
* A JSON representation of the document `contents`.
|
|
@@ -2312,30 +2338,30 @@ class ye {
|
|
|
2312
2338
|
const t = JSON.stringify(e.indent);
|
|
2313
2339
|
throw new Error(`"indent" option must be a positive integer, not ${t}`);
|
|
2314
2340
|
}
|
|
2315
|
-
return
|
|
2341
|
+
return an(this, e);
|
|
2316
2342
|
}
|
|
2317
2343
|
}
|
|
2318
|
-
function
|
|
2344
|
+
function se(s) {
|
|
2319
2345
|
if (L(s))
|
|
2320
2346
|
return !0;
|
|
2321
2347
|
throw new Error("Expected a YAML collection as document contents");
|
|
2322
2348
|
}
|
|
2323
|
-
class
|
|
2349
|
+
class At extends Error {
|
|
2324
2350
|
constructor(e, t, n, i) {
|
|
2325
2351
|
super(), this.name = e, this.code = n, this.message = i, this.pos = t;
|
|
2326
2352
|
}
|
|
2327
2353
|
}
|
|
2328
|
-
class
|
|
2354
|
+
class z extends At {
|
|
2329
2355
|
constructor(e, t, n) {
|
|
2330
2356
|
super("YAMLParseError", e, t, n);
|
|
2331
2357
|
}
|
|
2332
2358
|
}
|
|
2333
|
-
class
|
|
2359
|
+
class ys extends At {
|
|
2334
2360
|
constructor(e, t, n) {
|
|
2335
2361
|
super("YAMLWarning", e, t, n);
|
|
2336
2362
|
}
|
|
2337
2363
|
}
|
|
2338
|
-
const
|
|
2364
|
+
const De = (s, e) => (t) => {
|
|
2339
2365
|
if (t.pos[0] === -1)
|
|
2340
2366
|
return;
|
|
2341
2367
|
t.linePos = t.pos.map((l) => e.linePos(l));
|
|
@@ -2363,55 +2389,56 @@ ${c}
|
|
|
2363
2389
|
`;
|
|
2364
2390
|
}
|
|
2365
2391
|
};
|
|
2366
|
-
function
|
|
2367
|
-
let a = !1, c = l,
|
|
2368
|
-
for (const
|
|
2369
|
-
switch (y && (
|
|
2392
|
+
function ue(s, { flow: e, indicator: t, next: n, offset: i, onError: r, parentIndent: o, startOnNewline: l }) {
|
|
2393
|
+
let a = !1, c = l, p = l, f = "", d = "", h = !1, y = !1, u = null, m = null, b = null, S = null, N = null, w = null, k = null;
|
|
2394
|
+
for (const g of s)
|
|
2395
|
+
switch (y && (g.type !== "space" && g.type !== "newline" && g.type !== "comma" && r(g.offset, "MISSING_CHAR", "Tags and anchors must be separated from the next token by white space"), y = !1), u && (c && g.type !== "comment" && g.type !== "newline" && r(u, "TAB_AS_INDENT", "Tabs are not allowed as indentation"), u = null), g.type) {
|
|
2370
2396
|
case "space":
|
|
2371
|
-
!e && (t !== "doc-start" || (n == null ? void 0 : n.type) !== "flow-collection") &&
|
|
2397
|
+
!e && (t !== "doc-start" || (n == null ? void 0 : n.type) !== "flow-collection") && g.source.includes(" ") && (u = g), p = !0;
|
|
2372
2398
|
break;
|
|
2373
2399
|
case "comment": {
|
|
2374
|
-
|
|
2375
|
-
const _ =
|
|
2400
|
+
p || r(g, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters");
|
|
2401
|
+
const _ = g.source.substring(1) || " ";
|
|
2376
2402
|
f ? f += d + _ : f = _, d = "", c = !1;
|
|
2377
2403
|
break;
|
|
2378
2404
|
}
|
|
2379
2405
|
case "newline":
|
|
2380
|
-
c ? f ? f +=
|
|
2406
|
+
c ? f ? f += g.source : (!w || t !== "seq-item-ind") && (a = !0) : d += g.source, c = !0, h = !0, (m || b) && (S = g), p = !0;
|
|
2381
2407
|
break;
|
|
2382
2408
|
case "anchor":
|
|
2383
|
-
|
|
2409
|
+
m && r(g, "MULTIPLE_ANCHORS", "A node can have at most one anchor"), g.source.endsWith(":") && r(g.offset + g.source.length - 1, "BAD_ALIAS", "Anchor ending in : is ambiguous", !0), m = g, k === null && (k = g.offset), c = !1, p = !1, y = !0;
|
|
2384
2410
|
break;
|
|
2385
2411
|
case "tag": {
|
|
2386
|
-
|
|
2412
|
+
b && r(g, "MULTIPLE_TAGS", "A node can have at most one tag"), b = g, k === null && (k = g.offset), c = !1, p = !1, y = !0;
|
|
2387
2413
|
break;
|
|
2388
2414
|
}
|
|
2389
2415
|
case t:
|
|
2390
|
-
(
|
|
2416
|
+
(m || b) && r(g, "BAD_PROP_ORDER", `Anchors and tags must be after the ${g.source} indicator`), w && r(g, "UNEXPECTED_TOKEN", `Unexpected ${g.source} in ${e ?? "collection"}`), w = g, c = t === "seq-item-ind" || t === "explicit-key-ind", p = !1;
|
|
2391
2417
|
break;
|
|
2392
2418
|
case "comma":
|
|
2393
2419
|
if (e) {
|
|
2394
|
-
N && r(
|
|
2420
|
+
N && r(g, "UNEXPECTED_TOKEN", `Unexpected , in ${e}`), N = g, c = !1, p = !1;
|
|
2395
2421
|
break;
|
|
2396
2422
|
}
|
|
2423
|
+
// else fallthrough
|
|
2397
2424
|
default:
|
|
2398
|
-
r(
|
|
2425
|
+
r(g, "UNEXPECTED_TOKEN", `Unexpected ${g.type} token`), c = !1, p = !1;
|
|
2399
2426
|
}
|
|
2400
|
-
const
|
|
2427
|
+
const O = s[s.length - 1], I = O ? O.offset + O.source.length : i;
|
|
2401
2428
|
return y && n && n.type !== "space" && n.type !== "newline" && n.type !== "comma" && (n.type !== "scalar" || n.source !== "") && r(n.offset, "MISSING_CHAR", "Tags and anchors must be separated from the next token by white space"), u && (c && u.indent <= o || (n == null ? void 0 : n.type) === "block-map" || (n == null ? void 0 : n.type) === "block-seq") && r(u, "TAB_AS_INDENT", "Tabs are not allowed as indentation"), {
|
|
2402
2429
|
comma: N,
|
|
2403
|
-
found:
|
|
2430
|
+
found: w,
|
|
2404
2431
|
spaceBefore: a,
|
|
2405
2432
|
comment: f,
|
|
2406
2433
|
hasNewline: h,
|
|
2407
|
-
anchor:
|
|
2408
|
-
tag:
|
|
2409
|
-
newlineAfterProp:
|
|
2410
|
-
end:
|
|
2411
|
-
start:
|
|
2434
|
+
anchor: m,
|
|
2435
|
+
tag: b,
|
|
2436
|
+
newlineAfterProp: S,
|
|
2437
|
+
end: I,
|
|
2438
|
+
start: k ?? I
|
|
2412
2439
|
};
|
|
2413
2440
|
}
|
|
2414
|
-
function
|
|
2441
|
+
function Ne(s) {
|
|
2415
2442
|
if (!s)
|
|
2416
2443
|
return null;
|
|
2417
2444
|
switch (s.type) {
|
|
@@ -2438,7 +2465,7 @@ function ke(s) {
|
|
|
2438
2465
|
if (t.type === "newline")
|
|
2439
2466
|
return !0;
|
|
2440
2467
|
}
|
|
2441
|
-
if (
|
|
2468
|
+
if (Ne(e.key) || Ne(e.value))
|
|
2442
2469
|
return !0;
|
|
2443
2470
|
}
|
|
2444
2471
|
return !1;
|
|
@@ -2446,45 +2473,46 @@ function ke(s) {
|
|
|
2446
2473
|
return !0;
|
|
2447
2474
|
}
|
|
2448
2475
|
}
|
|
2449
|
-
function
|
|
2476
|
+
function ut(s, e, t) {
|
|
2450
2477
|
if ((e == null ? void 0 : e.type) === "flow-collection") {
|
|
2451
2478
|
const n = e.end[0];
|
|
2452
|
-
n.indent === s && (n.source === "]" || n.source === "}") &&
|
|
2479
|
+
n.indent === s && (n.source === "]" || n.source === "}") && Ne(e) && t(n, "BAD_INDENT", "Flow end indicator should be more indented than parent", !0);
|
|
2453
2480
|
}
|
|
2454
2481
|
}
|
|
2455
|
-
function
|
|
2482
|
+
function gs(s, e, t) {
|
|
2456
2483
|
const { uniqueKeys: n } = s.options;
|
|
2457
2484
|
if (n === !1)
|
|
2458
2485
|
return !1;
|
|
2459
|
-
const i = typeof n == "function" ? n : (r, o) => r === o || E(r) && E(o) && r.value === o.value
|
|
2486
|
+
const i = typeof n == "function" ? n : (r, o) => r === o || E(r) && E(o) && r.value === o.value;
|
|
2460
2487
|
return e.some((r) => i(r.key, t));
|
|
2461
2488
|
}
|
|
2462
|
-
const
|
|
2463
|
-
function
|
|
2464
|
-
var
|
|
2465
|
-
const o = (r == null ? void 0 : r.nodeClass) ??
|
|
2489
|
+
const Mt = "All mapping items must start at the same column";
|
|
2490
|
+
function cn({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
|
|
2491
|
+
var p;
|
|
2492
|
+
const o = (r == null ? void 0 : r.nodeClass) ?? K, l = new o(t.schema);
|
|
2466
2493
|
t.atRoot && (t.atRoot = !1);
|
|
2467
2494
|
let a = n.offset, c = null;
|
|
2468
2495
|
for (const f of n.items) {
|
|
2469
|
-
const { start: d, key: h, sep: y, value: u } = f,
|
|
2496
|
+
const { start: d, key: h, sep: y, value: u } = f, m = ue(d, {
|
|
2470
2497
|
indicator: "explicit-key-ind",
|
|
2471
2498
|
next: h ?? (y == null ? void 0 : y[0]),
|
|
2472
2499
|
offset: a,
|
|
2473
2500
|
onError: i,
|
|
2474
2501
|
parentIndent: n.indent,
|
|
2475
2502
|
startOnNewline: !0
|
|
2476
|
-
}),
|
|
2477
|
-
if (
|
|
2478
|
-
if (h && (h.type === "block-seq" ? i(a, "BLOCK_AS_IMPLICIT_KEY", "A block sequence may not be used as an implicit map key") : "indent" in h && h.indent !== n.indent && i(a, "BAD_INDENT",
|
|
2479
|
-
c =
|
|
2480
|
-
` +
|
|
2503
|
+
}), b = !m.found;
|
|
2504
|
+
if (b) {
|
|
2505
|
+
if (h && (h.type === "block-seq" ? i(a, "BLOCK_AS_IMPLICIT_KEY", "A block sequence may not be used as an implicit map key") : "indent" in h && h.indent !== n.indent && i(a, "BAD_INDENT", Mt)), !m.anchor && !m.tag && !y) {
|
|
2506
|
+
c = m.end, m.comment && (l.comment ? l.comment += `
|
|
2507
|
+
` + m.comment : l.comment = m.comment);
|
|
2481
2508
|
continue;
|
|
2482
2509
|
}
|
|
2483
|
-
(
|
|
2484
|
-
} else ((
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2510
|
+
(m.newlineAfterProp || Ne(h)) && i(h ?? d[d.length - 1], "MULTILINE_IMPLICIT_KEY", "Implicit keys need to be on a single line");
|
|
2511
|
+
} else ((p = m.found) == null ? void 0 : p.indent) !== n.indent && i(a, "BAD_INDENT", Mt);
|
|
2512
|
+
t.atKey = !0;
|
|
2513
|
+
const S = m.end, N = h ? s(t, h, m, i) : e(t, S, d, null, m, i);
|
|
2514
|
+
t.schema.compat && ut(n.indent, h, i), t.atKey = !1, gs(t, l.items, N) && i(S, "DUPLICATE_KEY", "Map keys must be unique");
|
|
2515
|
+
const w = ue(y ?? [], {
|
|
2488
2516
|
indicator: "map-value-ind",
|
|
2489
2517
|
next: u,
|
|
2490
2518
|
offset: N.range[2],
|
|
@@ -2492,27 +2520,27 @@ function on({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
|
|
|
2492
2520
|
parentIndent: n.indent,
|
|
2493
2521
|
startOnNewline: !h || h.type === "block-scalar"
|
|
2494
2522
|
});
|
|
2495
|
-
if (a =
|
|
2496
|
-
|
|
2497
|
-
const
|
|
2498
|
-
t.schema.compat &&
|
|
2499
|
-
const
|
|
2500
|
-
t.options.keepSourceTokens && (
|
|
2523
|
+
if (a = w.end, w.found) {
|
|
2524
|
+
b && ((u == null ? void 0 : u.type) === "block-map" && !w.hasNewline && i(a, "BLOCK_AS_IMPLICIT_KEY", "Nested mappings are not allowed in compact mappings"), t.options.strict && m.start < w.found.offset - 1024 && i(N.range, "KEY_OVER_1024_CHARS", "The : indicator must be at most 1024 chars after the start of an implicit block mapping key"));
|
|
2525
|
+
const k = u ? s(t, u, w, i) : e(t, a, y, null, w, i);
|
|
2526
|
+
t.schema.compat && ut(n.indent, u, i), a = k.range[2];
|
|
2527
|
+
const O = new v(N, k);
|
|
2528
|
+
t.options.keepSourceTokens && (O.srcToken = f), l.items.push(O);
|
|
2501
2529
|
} else {
|
|
2502
|
-
|
|
2503
|
-
` +
|
|
2504
|
-
const
|
|
2505
|
-
t.options.keepSourceTokens && (
|
|
2530
|
+
b && i(N.range, "MISSING_CHAR", "Implicit map keys need to be followed by map values"), w.comment && (N.comment ? N.comment += `
|
|
2531
|
+
` + w.comment : N.comment = w.comment);
|
|
2532
|
+
const k = new v(N);
|
|
2533
|
+
t.options.keepSourceTokens && (k.srcToken = f), l.items.push(k);
|
|
2506
2534
|
}
|
|
2507
2535
|
}
|
|
2508
2536
|
return c && c < a && i(c, "IMPOSSIBLE", "Map comment with trailing content"), l.range = [n.offset, a, c ?? a], l;
|
|
2509
2537
|
}
|
|
2510
|
-
function
|
|
2511
|
-
const o = (r == null ? void 0 : r.nodeClass) ??
|
|
2512
|
-
t.atRoot && (t.atRoot = !1);
|
|
2538
|
+
function fn({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
|
|
2539
|
+
const o = (r == null ? void 0 : r.nodeClass) ?? Q, l = new o(t.schema);
|
|
2540
|
+
t.atRoot && (t.atRoot = !1), t.atKey && (t.atKey = !1);
|
|
2513
2541
|
let a = n.offset, c = null;
|
|
2514
|
-
for (const { start:
|
|
2515
|
-
const d =
|
|
2542
|
+
for (const { start: p, value: f } of n.items) {
|
|
2543
|
+
const d = ue(p, {
|
|
2516
2544
|
indicator: "seq-item-ind",
|
|
2517
2545
|
next: f,
|
|
2518
2546
|
offset: a,
|
|
@@ -2527,12 +2555,12 @@ function ln({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
|
|
|
2527
2555
|
c = d.end, d.comment && (l.comment = d.comment);
|
|
2528
2556
|
continue;
|
|
2529
2557
|
}
|
|
2530
|
-
const h = f ? s(t, f, d, i) : e(t, d.end,
|
|
2531
|
-
t.schema.compat &&
|
|
2558
|
+
const h = f ? s(t, f, d, i) : e(t, d.end, p, null, d, i);
|
|
2559
|
+
t.schema.compat && ut(n.indent, f, i), a = h.range[2], l.items.push(h);
|
|
2532
2560
|
}
|
|
2533
2561
|
return l.range = [n.offset, a, c ?? a], l;
|
|
2534
2562
|
}
|
|
2535
|
-
function
|
|
2563
|
+
function Ie(s, e, t, n) {
|
|
2536
2564
|
let i = "";
|
|
2537
2565
|
if (s) {
|
|
2538
2566
|
let r = !1, o = "";
|
|
@@ -2544,8 +2572,8 @@ function Ee(s, e, t, n) {
|
|
|
2544
2572
|
break;
|
|
2545
2573
|
case "comment": {
|
|
2546
2574
|
t && !r && n(l, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters");
|
|
2547
|
-
const
|
|
2548
|
-
i ? i += o +
|
|
2575
|
+
const p = a.substring(1) || " ";
|
|
2576
|
+
i ? i += o + p : i = p, o = "";
|
|
2549
2577
|
break;
|
|
2550
2578
|
}
|
|
2551
2579
|
case "newline":
|
|
@@ -2559,76 +2587,77 @@ function Ee(s, e, t, n) {
|
|
|
2559
2587
|
}
|
|
2560
2588
|
return { comment: i, offset: e };
|
|
2561
2589
|
}
|
|
2562
|
-
const
|
|
2563
|
-
function
|
|
2564
|
-
const o = n.start.source === "{", l = o ? "flow map" : "flow sequence", a = (r == null ? void 0 : r.nodeClass) ?? (o ?
|
|
2590
|
+
const st = "Block collections are not allowed within flow collections", nt = (s) => s && (s.type === "block-map" || s.type === "block-seq");
|
|
2591
|
+
function un({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
|
|
2592
|
+
const o = n.start.source === "{", l = o ? "flow map" : "flow sequence", a = (r == null ? void 0 : r.nodeClass) ?? (o ? K : Q), c = new a(t.schema);
|
|
2565
2593
|
c.flow = !0;
|
|
2566
|
-
const
|
|
2567
|
-
|
|
2594
|
+
const p = t.atRoot;
|
|
2595
|
+
p && (t.atRoot = !1), t.atKey && (t.atKey = !1);
|
|
2568
2596
|
let f = n.offset + n.start.source.length;
|
|
2569
|
-
for (let
|
|
2570
|
-
const
|
|
2597
|
+
for (let m = 0; m < n.items.length; ++m) {
|
|
2598
|
+
const b = n.items[m], { start: S, key: N, sep: w, value: k } = b, O = ue(S, {
|
|
2571
2599
|
flow: l,
|
|
2572
2600
|
indicator: "explicit-key-ind",
|
|
2573
|
-
next: N ?? (
|
|
2601
|
+
next: N ?? (w == null ? void 0 : w[0]),
|
|
2574
2602
|
offset: f,
|
|
2575
2603
|
onError: i,
|
|
2576
2604
|
parentIndent: n.indent,
|
|
2577
2605
|
startOnNewline: !1
|
|
2578
2606
|
});
|
|
2579
|
-
if (!
|
|
2580
|
-
if (!
|
|
2581
|
-
|
|
2582
|
-
` +
|
|
2607
|
+
if (!O.found) {
|
|
2608
|
+
if (!O.anchor && !O.tag && !w && !k) {
|
|
2609
|
+
m === 0 && O.comma ? i(O.comma, "UNEXPECTED_TOKEN", `Unexpected , in ${l}`) : m < n.items.length - 1 && i(O.start, "UNEXPECTED_TOKEN", `Unexpected empty item in ${l}`), O.comment && (c.comment ? c.comment += `
|
|
2610
|
+
` + O.comment : c.comment = O.comment), f = O.end;
|
|
2583
2611
|
continue;
|
|
2584
2612
|
}
|
|
2585
|
-
!o && t.options.strict &&
|
|
2613
|
+
!o && t.options.strict && Ne(N) && i(
|
|
2586
2614
|
N,
|
|
2587
2615
|
// checked by containsNewline()
|
|
2588
2616
|
"MULTILINE_IMPLICIT_KEY",
|
|
2589
2617
|
"Implicit keys of flow sequence pairs need to be on a single line"
|
|
2590
2618
|
);
|
|
2591
2619
|
}
|
|
2592
|
-
if (
|
|
2593
|
-
|
|
2594
|
-
else if (
|
|
2595
|
-
let
|
|
2596
|
-
e: for (const
|
|
2597
|
-
switch (
|
|
2620
|
+
if (m === 0)
|
|
2621
|
+
O.comma && i(O.comma, "UNEXPECTED_TOKEN", `Unexpected , in ${l}`);
|
|
2622
|
+
else if (O.comma || i(O.start, "MISSING_CHAR", `Missing , between ${l} items`), O.comment) {
|
|
2623
|
+
let I = "";
|
|
2624
|
+
e: for (const g of S)
|
|
2625
|
+
switch (g.type) {
|
|
2598
2626
|
case "comma":
|
|
2599
2627
|
case "space":
|
|
2600
2628
|
break;
|
|
2601
2629
|
case "comment":
|
|
2602
|
-
|
|
2630
|
+
I = g.source.substring(1);
|
|
2603
2631
|
break e;
|
|
2604
2632
|
default:
|
|
2605
2633
|
break e;
|
|
2606
2634
|
}
|
|
2607
|
-
if (
|
|
2608
|
-
let
|
|
2609
|
-
|
|
2610
|
-
` +
|
|
2635
|
+
if (I) {
|
|
2636
|
+
let g = c.items[c.items.length - 1];
|
|
2637
|
+
T(g) && (g = g.value ?? g.key), g.comment ? g.comment += `
|
|
2638
|
+
` + I : g.comment = I, O.comment = O.comment.substring(I.length + 1);
|
|
2611
2639
|
}
|
|
2612
2640
|
}
|
|
2613
|
-
if (!o && !
|
|
2614
|
-
const
|
|
2615
|
-
c.items.push(
|
|
2641
|
+
if (!o && !w && !O.found) {
|
|
2642
|
+
const I = k ? s(t, k, O, i) : e(t, O.end, w, null, O, i);
|
|
2643
|
+
c.items.push(I), f = I.range[2], nt(k) && i(I.range, "BLOCK_IN_FLOW", st);
|
|
2616
2644
|
} else {
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2645
|
+
t.atKey = !0;
|
|
2646
|
+
const I = O.end, g = N ? s(t, N, O, i) : e(t, I, S, null, O, i);
|
|
2647
|
+
nt(N) && i(g.range, "BLOCK_IN_FLOW", st), t.atKey = !1;
|
|
2648
|
+
const _ = ue(w ?? [], {
|
|
2620
2649
|
flow: l,
|
|
2621
2650
|
indicator: "map-value-ind",
|
|
2622
|
-
next:
|
|
2623
|
-
offset:
|
|
2651
|
+
next: k,
|
|
2652
|
+
offset: g.range[2],
|
|
2624
2653
|
onError: i,
|
|
2625
2654
|
parentIndent: n.indent,
|
|
2626
2655
|
startOnNewline: !1
|
|
2627
2656
|
});
|
|
2628
2657
|
if (_.found) {
|
|
2629
|
-
if (!o && !
|
|
2630
|
-
if (
|
|
2631
|
-
for (const C of
|
|
2658
|
+
if (!o && !O.found && t.options.strict) {
|
|
2659
|
+
if (w)
|
|
2660
|
+
for (const C of w) {
|
|
2632
2661
|
if (C === _.found)
|
|
2633
2662
|
break;
|
|
2634
2663
|
if (C.type === "newline") {
|
|
@@ -2636,21 +2665,23 @@ function an({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
|
|
|
2636
2665
|
break;
|
|
2637
2666
|
}
|
|
2638
2667
|
}
|
|
2639
|
-
|
|
2668
|
+
O.start < _.found.offset - 1024 && i(_.found, "KEY_OVER_1024_CHARS", "The : indicator must be at most 1024 chars after the start of an implicit flow sequence key");
|
|
2640
2669
|
}
|
|
2641
|
-
} else
|
|
2642
|
-
const
|
|
2643
|
-
|
|
2644
|
-
` + _.comment :
|
|
2645
|
-
const
|
|
2646
|
-
if (t.options.keepSourceTokens && (
|
|
2670
|
+
} else k && ("source" in k && k.source && k.source[0] === ":" ? i(k, "MISSING_CHAR", `Missing space after : in ${l}`) : i(_.start, "MISSING_CHAR", `Missing , or : between ${l} items`));
|
|
2671
|
+
const J = k ? s(t, k, _, i) : _.found ? e(t, _.end, w, null, _, i) : null;
|
|
2672
|
+
J ? nt(k) && i(J.range, "BLOCK_IN_FLOW", st) : _.comment && (g.comment ? g.comment += `
|
|
2673
|
+
` + _.comment : g.comment = _.comment);
|
|
2674
|
+
const te = new v(g, J);
|
|
2675
|
+
if (t.options.keepSourceTokens && (te.srcToken = b), o) {
|
|
2647
2676
|
const C = c;
|
|
2648
|
-
|
|
2677
|
+
gs(t, C.items, g) && i(I, "DUPLICATE_KEY", "Map keys must be unique"), C.items.push(te);
|
|
2649
2678
|
} else {
|
|
2650
|
-
const C = new
|
|
2651
|
-
C.flow = !0, C.items.push(
|
|
2679
|
+
const C = new K(t.schema);
|
|
2680
|
+
C.flow = !0, C.items.push(te);
|
|
2681
|
+
const Lt = (J ?? g).range;
|
|
2682
|
+
C.range = [g.range[0], Lt[1], Lt[2]], c.items.push(C);
|
|
2652
2683
|
}
|
|
2653
|
-
f =
|
|
2684
|
+
f = J ? J.range[2] : _.end;
|
|
2654
2685
|
}
|
|
2655
2686
|
}
|
|
2656
2687
|
const d = o ? "}" : "]", [h, ...y] = n.end;
|
|
@@ -2658,22 +2689,22 @@ function an({ composeNode: s, composeEmptyNode: e }, t, n, i, r) {
|
|
|
2658
2689
|
if (h && h.source === d)
|
|
2659
2690
|
u = h.offset + h.source.length;
|
|
2660
2691
|
else {
|
|
2661
|
-
const
|
|
2662
|
-
i(f,
|
|
2692
|
+
const m = l[0].toUpperCase() + l.substring(1), b = p ? `${m} must end with a ${d}` : `${m} in block collection must be sufficiently indented and end with a ${d}`;
|
|
2693
|
+
i(f, p ? "MISSING_CHAR" : "BAD_INDENT", b), h && h.source.length !== 1 && y.unshift(h);
|
|
2663
2694
|
}
|
|
2664
2695
|
if (y.length > 0) {
|
|
2665
|
-
const
|
|
2666
|
-
|
|
2667
|
-
` +
|
|
2696
|
+
const m = Ie(y, u, t.options.strict, i);
|
|
2697
|
+
m.comment && (c.comment ? c.comment += `
|
|
2698
|
+
` + m.comment : c.comment = m.comment), c.range = [n.offset, u, m.offset];
|
|
2668
2699
|
} else
|
|
2669
2700
|
c.range = [n.offset, u, u];
|
|
2670
2701
|
return c;
|
|
2671
2702
|
}
|
|
2672
|
-
function
|
|
2673
|
-
const o = t.type === "block-map" ?
|
|
2703
|
+
function it(s, e, t, n, i, r) {
|
|
2704
|
+
const o = t.type === "block-map" ? cn(s, e, t, n, r) : t.type === "block-seq" ? fn(s, e, t, n, r) : un(s, e, t, n, r), l = o.constructor;
|
|
2674
2705
|
return i === "!" || i === l.tagName ? (o.tag = l.tagName, o) : (i && (o.tag = i), o);
|
|
2675
2706
|
}
|
|
2676
|
-
function
|
|
2707
|
+
function hn(s, e, t, n, i) {
|
|
2677
2708
|
var d;
|
|
2678
2709
|
const r = n.tag, o = r ? e.directives.tagName(r.source, (h) => i(r, "TAG_RESOLVE_FAILED", h)) : null;
|
|
2679
2710
|
if (t.type === "block-seq") {
|
|
@@ -2681,28 +2712,28 @@ function cn(s, e, t, n, i) {
|
|
|
2681
2712
|
u && (!y || y.offset < u.offset) && i(u, "MISSING_CHAR", "Missing newline after block sequence props");
|
|
2682
2713
|
}
|
|
2683
2714
|
const l = t.type === "block-map" ? "map" : t.type === "block-seq" ? "seq" : t.start.source === "{" ? "map" : "seq";
|
|
2684
|
-
if (!r || !o || o === "!" || o ===
|
|
2685
|
-
return
|
|
2715
|
+
if (!r || !o || o === "!" || o === K.tagName && l === "map" || o === Q.tagName && l === "seq")
|
|
2716
|
+
return it(s, e, t, i, o);
|
|
2686
2717
|
let a = e.schema.tags.find((h) => h.tag === o && h.collection === l);
|
|
2687
2718
|
if (!a) {
|
|
2688
2719
|
const h = e.schema.knownTags[o];
|
|
2689
2720
|
if (h && h.collection === l)
|
|
2690
2721
|
e.schema.tags.push(Object.assign({}, h, { default: !1 })), a = h;
|
|
2691
2722
|
else
|
|
2692
|
-
return h != null && h.collection ? i(r, "BAD_COLLECTION_TYPE", `${h.tag} used for ${l} collection, but expects ${h.collection}`, !0) : i(r, "TAG_RESOLVE_FAILED", `Unresolved tag: ${o}`, !0),
|
|
2723
|
+
return h != null && h.collection ? i(r, "BAD_COLLECTION_TYPE", `${h.tag} used for ${l} collection, but expects ${h.collection}`, !0) : i(r, "TAG_RESOLVE_FAILED", `Unresolved tag: ${o}`, !0), it(s, e, t, i, o);
|
|
2693
2724
|
}
|
|
2694
|
-
const c =
|
|
2725
|
+
const c = it(s, e, t, i, o, a), p = ((d = a.resolve) == null ? void 0 : d.call(a, c, (h) => i(r, "TAG_RESOLVE_FAILED", h), e.options)) ?? c, f = $(p) ? p : new A(p);
|
|
2695
2726
|
return f.range = c.range, f.tag = o, a != null && a.format && (f.format = a.format), f;
|
|
2696
2727
|
}
|
|
2697
|
-
function
|
|
2698
|
-
const n = e.offset, i =
|
|
2728
|
+
function bs(s, e, t) {
|
|
2729
|
+
const n = e.offset, i = dn(e, s.options.strict, t);
|
|
2699
2730
|
if (!i)
|
|
2700
2731
|
return { value: "", type: null, comment: "", range: [n, n, n] };
|
|
2701
|
-
const r = i.mode === ">" ?
|
|
2732
|
+
const r = i.mode === ">" ? A.BLOCK_FOLDED : A.BLOCK_LITERAL, o = e.source ? pn(e.source) : [];
|
|
2702
2733
|
let l = o.length;
|
|
2703
2734
|
for (let u = o.length - 1; u >= 0; --u) {
|
|
2704
|
-
const
|
|
2705
|
-
if (
|
|
2735
|
+
const m = o[u][1];
|
|
2736
|
+
if (m === "" || m === "\r")
|
|
2706
2737
|
l = u;
|
|
2707
2738
|
else
|
|
2708
2739
|
break;
|
|
@@ -2710,44 +2741,44 @@ function ms(s, e, t) {
|
|
|
2710
2741
|
if (l === 0) {
|
|
2711
2742
|
const u = i.chomp === "+" && o.length > 0 ? `
|
|
2712
2743
|
`.repeat(Math.max(1, o.length - 1)) : "";
|
|
2713
|
-
let
|
|
2714
|
-
return e.source && (
|
|
2744
|
+
let m = n + i.length;
|
|
2745
|
+
return e.source && (m += e.source.length), { value: u, type: r, comment: i.comment, range: [n, m, m] };
|
|
2715
2746
|
}
|
|
2716
|
-
let a = e.indent + i.indent, c = e.offset + i.length,
|
|
2747
|
+
let a = e.indent + i.indent, c = e.offset + i.length, p = 0;
|
|
2717
2748
|
for (let u = 0; u < l; ++u) {
|
|
2718
|
-
const [
|
|
2719
|
-
if (
|
|
2720
|
-
i.indent === 0 &&
|
|
2749
|
+
const [m, b] = o[u];
|
|
2750
|
+
if (b === "" || b === "\r")
|
|
2751
|
+
i.indent === 0 && m.length > a && (a = m.length);
|
|
2721
2752
|
else {
|
|
2722
|
-
|
|
2753
|
+
m.length < a && t(c + m.length, "MISSING_CHAR", "Block scalars with more-indented leading empty lines must use an explicit indentation indicator"), i.indent === 0 && (a = m.length), p = u, a === 0 && !s.atRoot && t(c, "BAD_INDENT", "Block scalar values in collections must be indented");
|
|
2723
2754
|
break;
|
|
2724
2755
|
}
|
|
2725
|
-
c +=
|
|
2756
|
+
c += m.length + b.length + 1;
|
|
2726
2757
|
}
|
|
2727
2758
|
for (let u = o.length - 1; u >= l; --u)
|
|
2728
2759
|
o[u][0].length > a && (l = u + 1);
|
|
2729
2760
|
let f = "", d = "", h = !1;
|
|
2730
|
-
for (let u = 0; u <
|
|
2761
|
+
for (let u = 0; u < p; ++u)
|
|
2731
2762
|
f += o[u][0].slice(a) + `
|
|
2732
2763
|
`;
|
|
2733
|
-
for (let u =
|
|
2734
|
-
let [
|
|
2735
|
-
c +=
|
|
2736
|
-
const
|
|
2737
|
-
if (
|
|
2738
|
-
const
|
|
2739
|
-
t(c -
|
|
2764
|
+
for (let u = p; u < l; ++u) {
|
|
2765
|
+
let [m, b] = o[u];
|
|
2766
|
+
c += m.length + b.length + 1;
|
|
2767
|
+
const S = b[b.length - 1] === "\r";
|
|
2768
|
+
if (S && (b = b.slice(0, -1)), b && m.length < a) {
|
|
2769
|
+
const w = `Block scalar lines must not be less indented than their ${i.indent ? "explicit indentation indicator" : "first line"}`;
|
|
2770
|
+
t(c - b.length - (S ? 2 : 1), "BAD_INDENT", w), m = "";
|
|
2740
2771
|
}
|
|
2741
|
-
r ===
|
|
2742
|
-
`) :
|
|
2772
|
+
r === A.BLOCK_LITERAL ? (f += d + m.slice(a) + b, d = `
|
|
2773
|
+
`) : m.length > a || b[0] === " " ? (d === " " ? d = `
|
|
2743
2774
|
` : !h && d === `
|
|
2744
2775
|
` && (d = `
|
|
2745
2776
|
|
|
2746
|
-
`), f += d +
|
|
2747
|
-
`, h = !0) :
|
|
2777
|
+
`), f += d + m.slice(a) + b, d = `
|
|
2778
|
+
`, h = !0) : b === "" ? d === `
|
|
2748
2779
|
` ? f += `
|
|
2749
2780
|
` : d = `
|
|
2750
|
-
` : (f += d +
|
|
2781
|
+
` : (f += d + b, d = " ", h = !1);
|
|
2751
2782
|
}
|
|
2752
2783
|
switch (i.chomp) {
|
|
2753
2784
|
case "-":
|
|
@@ -2767,7 +2798,7 @@ function ms(s, e, t) {
|
|
|
2767
2798
|
const y = n + i.length + e.source.length;
|
|
2768
2799
|
return { value: f, type: r, comment: i.comment, range: [n, y, y] };
|
|
2769
2800
|
}
|
|
2770
|
-
function
|
|
2801
|
+
function dn({ offset: s, props: e }, t, n) {
|
|
2771
2802
|
if (e[0].type !== "block-scalar-header")
|
|
2772
2803
|
return n(e[0], "IMPOSSIBLE", "Block scalar header not found"), null;
|
|
2773
2804
|
const { source: i } = e[0], r = i[0];
|
|
@@ -2782,21 +2813,23 @@ function fn({ offset: s, props: e }, t, n) {
|
|
|
2782
2813
|
}
|
|
2783
2814
|
}
|
|
2784
2815
|
a !== -1 && n(a, "UNEXPECTED_TOKEN", `Block scalar header includes extra characters: ${i}`);
|
|
2785
|
-
let c = !1,
|
|
2816
|
+
let c = !1, p = "", f = i.length;
|
|
2786
2817
|
for (let d = 1; d < e.length; ++d) {
|
|
2787
2818
|
const h = e[d];
|
|
2788
2819
|
switch (h.type) {
|
|
2789
2820
|
case "space":
|
|
2790
2821
|
c = !0;
|
|
2822
|
+
// fallthrough
|
|
2791
2823
|
case "newline":
|
|
2792
2824
|
f += h.source.length;
|
|
2793
2825
|
break;
|
|
2794
2826
|
case "comment":
|
|
2795
|
-
t && !c && n(h, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters"), f += h.source.length,
|
|
2827
|
+
t && !c && n(h, "MISSING_CHAR", "Comments must be separated from other tokens by white space characters"), f += h.source.length, p = h.source.substring(1);
|
|
2796
2828
|
break;
|
|
2797
2829
|
case "error":
|
|
2798
2830
|
n(h, "UNEXPECTED_TOKEN", h.message), f += h.source.length;
|
|
2799
2831
|
break;
|
|
2832
|
+
/* istanbul ignore next should not happen */
|
|
2800
2833
|
default: {
|
|
2801
2834
|
const y = `Unexpected token in block scalar header: ${h.type}`;
|
|
2802
2835
|
n(h, "UNEXPECTED_TOKEN", y);
|
|
@@ -2805,28 +2838,29 @@ function fn({ offset: s, props: e }, t, n) {
|
|
|
2805
2838
|
}
|
|
2806
2839
|
}
|
|
2807
2840
|
}
|
|
2808
|
-
return { mode: r, indent: o, chomp: l, comment:
|
|
2841
|
+
return { mode: r, indent: o, chomp: l, comment: p, length: f };
|
|
2809
2842
|
}
|
|
2810
|
-
function
|
|
2843
|
+
function pn(s) {
|
|
2811
2844
|
const e = s.split(/\n( *)/), t = e[0], n = t.match(/^( *)/), r = [n != null && n[1] ? [n[1], t.slice(n[1].length)] : ["", t]];
|
|
2812
2845
|
for (let o = 1; o < e.length; o += 2)
|
|
2813
2846
|
r.push([e[o], e[o + 1]]);
|
|
2814
2847
|
return r;
|
|
2815
2848
|
}
|
|
2816
|
-
function
|
|
2849
|
+
function ws(s, e, t) {
|
|
2817
2850
|
const { offset: n, type: i, source: r, end: o } = s;
|
|
2818
2851
|
let l, a;
|
|
2819
2852
|
const c = (d, h, y) => t(n + d, h, y);
|
|
2820
2853
|
switch (i) {
|
|
2821
2854
|
case "scalar":
|
|
2822
|
-
l =
|
|
2855
|
+
l = A.PLAIN, a = mn(r, c);
|
|
2823
2856
|
break;
|
|
2824
2857
|
case "single-quoted-scalar":
|
|
2825
|
-
l =
|
|
2858
|
+
l = A.QUOTE_SINGLE, a = yn(r, c);
|
|
2826
2859
|
break;
|
|
2827
2860
|
case "double-quoted-scalar":
|
|
2828
|
-
l =
|
|
2861
|
+
l = A.QUOTE_DOUBLE, a = gn(r, c);
|
|
2829
2862
|
break;
|
|
2863
|
+
/* istanbul ignore next should not happen */
|
|
2830
2864
|
default:
|
|
2831
2865
|
return t(s, "UNEXPECTED_TOKEN", `Expected a flow scalar value, but found: ${i}`), {
|
|
2832
2866
|
value: "",
|
|
@@ -2835,17 +2869,18 @@ function ys(s, e, t) {
|
|
|
2835
2869
|
range: [n, n + r.length, n + r.length]
|
|
2836
2870
|
};
|
|
2837
2871
|
}
|
|
2838
|
-
const
|
|
2872
|
+
const p = n + r.length, f = Ie(o, p, e, t);
|
|
2839
2873
|
return {
|
|
2840
2874
|
value: a,
|
|
2841
2875
|
type: l,
|
|
2842
2876
|
comment: f.comment,
|
|
2843
|
-
range: [n,
|
|
2877
|
+
range: [n, p, f.offset]
|
|
2844
2878
|
};
|
|
2845
2879
|
}
|
|
2846
|
-
function
|
|
2880
|
+
function mn(s, e) {
|
|
2847
2881
|
let t = "";
|
|
2848
2882
|
switch (s[0]) {
|
|
2883
|
+
/* istanbul ignore next should not happen */
|
|
2849
2884
|
case " ":
|
|
2850
2885
|
t = "a tab character";
|
|
2851
2886
|
break;
|
|
@@ -2866,12 +2901,12 @@ function hn(s, e) {
|
|
|
2866
2901
|
break;
|
|
2867
2902
|
}
|
|
2868
2903
|
}
|
|
2869
|
-
return t && e(0, "BAD_SCALAR_START", `Plain value cannot start with ${t}`),
|
|
2904
|
+
return t && e(0, "BAD_SCALAR_START", `Plain value cannot start with ${t}`), Ss(s);
|
|
2870
2905
|
}
|
|
2871
|
-
function
|
|
2872
|
-
return (s[s.length - 1] !== "'" || s.length === 1) && e(s.length, "MISSING_CHAR", "Missing closing 'quote"),
|
|
2906
|
+
function yn(s, e) {
|
|
2907
|
+
return (s[s.length - 1] !== "'" || s.length === 1) && e(s.length, "MISSING_CHAR", "Missing closing 'quote"), Ss(s.slice(1, -1)).replace(/''/g, "'");
|
|
2873
2908
|
}
|
|
2874
|
-
function
|
|
2909
|
+
function Ss(s) {
|
|
2875
2910
|
let e, t;
|
|
2876
2911
|
try {
|
|
2877
2912
|
e = new RegExp(`(.*?)(?<![ ])[ ]*\r?
|
|
@@ -2891,7 +2926,7 @@ function gs(s) {
|
|
|
2891
2926
|
const l = /[ \t]*(.*)/sy;
|
|
2892
2927
|
return l.lastIndex = o, n = l.exec(s), i + r + ((n == null ? void 0 : n[1]) ?? "");
|
|
2893
2928
|
}
|
|
2894
|
-
function
|
|
2929
|
+
function gn(s, e) {
|
|
2895
2930
|
let t = "";
|
|
2896
2931
|
for (let n = 1; n < s.length - 1; ++n) {
|
|
2897
2932
|
const i = s[n];
|
|
@@ -2899,11 +2934,11 @@ function pn(s, e) {
|
|
|
2899
2934
|
`))
|
|
2900
2935
|
if (i === `
|
|
2901
2936
|
`) {
|
|
2902
|
-
const { fold: r, offset: o } =
|
|
2937
|
+
const { fold: r, offset: o } = bn(s, n);
|
|
2903
2938
|
t += r, n = o;
|
|
2904
2939
|
} else if (i === "\\") {
|
|
2905
2940
|
let r = s[++n];
|
|
2906
|
-
const o =
|
|
2941
|
+
const o = wn[r];
|
|
2907
2942
|
if (o)
|
|
2908
2943
|
t += o;
|
|
2909
2944
|
else if (r === `
|
|
@@ -2916,7 +2951,7 @@ function pn(s, e) {
|
|
|
2916
2951
|
r = s[++n + 1];
|
|
2917
2952
|
else if (r === "x" || r === "u" || r === "U") {
|
|
2918
2953
|
const l = { x: 2, u: 4, U: 8 }[r];
|
|
2919
|
-
t +=
|
|
2954
|
+
t += Sn(s, n + 1, l, e), n += l;
|
|
2920
2955
|
} else {
|
|
2921
2956
|
const l = s.substr(n - 1, 2);
|
|
2922
2957
|
e(n - 1, "BAD_DQ_ESCAPE", `Invalid escape sequence ${l}`), t += l;
|
|
@@ -2934,7 +2969,7 @@ function pn(s, e) {
|
|
|
2934
2969
|
}
|
|
2935
2970
|
return (s[s.length - 1] !== '"' || s.length === 1) && e(s.length, "MISSING_CHAR", 'Missing closing "quote'), t;
|
|
2936
2971
|
}
|
|
2937
|
-
function
|
|
2972
|
+
function bn(s, e) {
|
|
2938
2973
|
let t = "", n = s[e + 1];
|
|
2939
2974
|
for (; (n === " " || n === " " || n === `
|
|
2940
2975
|
` || n === "\r") && !(n === "\r" && s[e + 2] !== `
|
|
@@ -2944,7 +2979,7 @@ function mn(s, e) {
|
|
|
2944
2979
|
`), e += 1, n = s[e + 1];
|
|
2945
2980
|
return t || (t = " "), { fold: t, offset: e };
|
|
2946
2981
|
}
|
|
2947
|
-
const
|
|
2982
|
+
const wn = {
|
|
2948
2983
|
0: "\0",
|
|
2949
2984
|
// null character
|
|
2950
2985
|
a: "\x07",
|
|
@@ -2978,7 +3013,7 @@ const yn = {
|
|
|
2978
3013
|
"\\": "\\",
|
|
2979
3014
|
" ": " "
|
|
2980
3015
|
};
|
|
2981
|
-
function
|
|
3016
|
+
function Sn(s, e, t, n) {
|
|
2982
3017
|
const i = s.substr(e, t), o = i.length === t && /^[0-9a-fA-F]+$/.test(i) ? parseInt(i, 16) : NaN;
|
|
2983
3018
|
if (isNaN(o)) {
|
|
2984
3019
|
const l = s.substr(e - 2, t + 2);
|
|
@@ -2986,19 +3021,21 @@ function gn(s, e, t, n) {
|
|
|
2986
3021
|
}
|
|
2987
3022
|
return String.fromCodePoint(o);
|
|
2988
3023
|
}
|
|
2989
|
-
function
|
|
2990
|
-
const { value: i, type: r, comment: o, range: l } = e.type === "block-scalar" ?
|
|
2991
|
-
let
|
|
3024
|
+
function ks(s, e, t, n) {
|
|
3025
|
+
const { value: i, type: r, comment: o, range: l } = e.type === "block-scalar" ? bs(s, e, n) : ws(e, s.options.strict, n), a = t ? s.directives.tagName(t.source, (f) => n(t, "TAG_RESOLVE_FAILED", f)) : null;
|
|
3026
|
+
let c;
|
|
3027
|
+
s.options.stringKeys && s.atKey ? c = s.schema[R] : a ? c = kn(s.schema, i, a, t, n) : e.type === "scalar" ? c = Nn(s, i, e, n) : c = s.schema[R];
|
|
3028
|
+
let p;
|
|
2992
3029
|
try {
|
|
2993
3030
|
const f = c.resolve(i, (d) => n(t ?? e, "TAG_RESOLVE_FAILED", d), s.options);
|
|
2994
|
-
|
|
3031
|
+
p = E(f) ? f : new A(f);
|
|
2995
3032
|
} catch (f) {
|
|
2996
3033
|
const d = f instanceof Error ? f.message : String(f);
|
|
2997
|
-
n(t ?? e, "TAG_RESOLVE_FAILED", d),
|
|
3034
|
+
n(t ?? e, "TAG_RESOLVE_FAILED", d), p = new A(i);
|
|
2998
3035
|
}
|
|
2999
|
-
return
|
|
3036
|
+
return p.range = l, p.source = i, r && (p.type = r), a && (p.tag = a), c.format && (p.format = c.format), o && (p.comment = o), p;
|
|
3000
3037
|
}
|
|
3001
|
-
function
|
|
3038
|
+
function kn(s, e, t, n, i) {
|
|
3002
3039
|
var l;
|
|
3003
3040
|
if (t === "!")
|
|
3004
3041
|
return s[R];
|
|
@@ -3015,24 +3052,24 @@ function bn(s, e, t, n, i) {
|
|
|
3015
3052
|
const o = s.knownTags[t];
|
|
3016
3053
|
return o && !o.collection ? (s.tags.push(Object.assign({}, o, { default: !1, test: void 0 })), o) : (i(n, "TAG_RESOLVE_FAILED", `Unresolved tag: ${t}`, t !== "tag:yaml.org,2002:str"), s[R]);
|
|
3017
3054
|
}
|
|
3018
|
-
function
|
|
3019
|
-
const
|
|
3020
|
-
var
|
|
3021
|
-
return
|
|
3022
|
-
}) ||
|
|
3023
|
-
if (
|
|
3024
|
-
const
|
|
3025
|
-
var
|
|
3026
|
-
return
|
|
3027
|
-
}) ??
|
|
3028
|
-
if (
|
|
3029
|
-
const
|
|
3030
|
-
i
|
|
3055
|
+
function Nn({ atKey: s, directives: e, schema: t }, n, i, r) {
|
|
3056
|
+
const o = t.tags.find((l) => {
|
|
3057
|
+
var a;
|
|
3058
|
+
return (l.default === !0 || s && l.default === "key") && ((a = l.test) == null ? void 0 : a.test(n));
|
|
3059
|
+
}) || t[R];
|
|
3060
|
+
if (t.compat) {
|
|
3061
|
+
const l = t.compat.find((a) => {
|
|
3062
|
+
var c;
|
|
3063
|
+
return a.default && ((c = a.test) == null ? void 0 : c.test(n));
|
|
3064
|
+
}) ?? t[R];
|
|
3065
|
+
if (o.tag !== l.tag) {
|
|
3066
|
+
const a = e.tagString(o.tag), c = e.tagString(l.tag), p = `Value may be parsed as either ${a} or ${c}`;
|
|
3067
|
+
r(i, "TAG_RESOLVE_FAILED", p, !0);
|
|
3031
3068
|
}
|
|
3032
3069
|
}
|
|
3033
|
-
return
|
|
3070
|
+
return o;
|
|
3034
3071
|
}
|
|
3035
|
-
function
|
|
3072
|
+
function On(s, e, t) {
|
|
3036
3073
|
if (e) {
|
|
3037
3074
|
t === null && (t = e.length);
|
|
3038
3075
|
for (let n = t - 1; n >= 0; --n) {
|
|
@@ -3051,54 +3088,55 @@ function Sn(s, e, t) {
|
|
|
3051
3088
|
}
|
|
3052
3089
|
return s;
|
|
3053
3090
|
}
|
|
3054
|
-
const
|
|
3055
|
-
function
|
|
3056
|
-
const { spaceBefore:
|
|
3057
|
-
let
|
|
3091
|
+
const An = { composeNode: Ns, composeEmptyNode: Et };
|
|
3092
|
+
function Ns(s, e, t, n) {
|
|
3093
|
+
const i = s.atKey, { spaceBefore: r, comment: o, anchor: l, tag: a } = t;
|
|
3094
|
+
let c, p = !0;
|
|
3058
3095
|
switch (e.type) {
|
|
3059
3096
|
case "alias":
|
|
3060
|
-
|
|
3097
|
+
c = En(s, e, n), (l || a) && n(e, "ALIAS_PROPS", "An alias node must not specify any properties");
|
|
3061
3098
|
break;
|
|
3062
3099
|
case "scalar":
|
|
3063
3100
|
case "single-quoted-scalar":
|
|
3064
3101
|
case "double-quoted-scalar":
|
|
3065
3102
|
case "block-scalar":
|
|
3066
|
-
|
|
3103
|
+
c = ks(s, e, a, n), l && (c.anchor = l.source.substring(1));
|
|
3067
3104
|
break;
|
|
3068
3105
|
case "block-map":
|
|
3069
3106
|
case "block-seq":
|
|
3070
3107
|
case "flow-collection":
|
|
3071
|
-
|
|
3108
|
+
c = hn(An, s, e, t, n), l && (c.anchor = l.source.substring(1));
|
|
3072
3109
|
break;
|
|
3073
3110
|
default: {
|
|
3074
|
-
const
|
|
3075
|
-
n(e, "UNEXPECTED_TOKEN",
|
|
3111
|
+
const f = e.type === "error" ? e.message : `Unsupported token (type: ${e.type})`;
|
|
3112
|
+
n(e, "UNEXPECTED_TOKEN", f), c = Et(s, e.offset, void 0, null, t, n), p = !1;
|
|
3076
3113
|
}
|
|
3077
3114
|
}
|
|
3078
|
-
return
|
|
3115
|
+
return l && c.anchor === "" && n(l, "BAD_ALIAS", "Anchor cannot be an empty string"), i && s.options.stringKeys && (!E(c) || typeof c.value != "string" || c.tag && c.tag !== "tag:yaml.org,2002:str") && n(a ?? e, "NON_STRING_KEY", "With stringKeys, all keys must be strings"), r && (c.spaceBefore = !0), o && (e.type === "scalar" && e.source === "" ? c.comment = o : c.commentBefore = o), s.options.keepSourceTokens && p && (c.srcToken = e), c;
|
|
3079
3116
|
}
|
|
3080
|
-
function
|
|
3081
|
-
const
|
|
3117
|
+
function Et(s, e, t, n, { spaceBefore: i, comment: r, anchor: o, tag: l, end: a }, c) {
|
|
3118
|
+
const p = {
|
|
3082
3119
|
type: "scalar",
|
|
3083
|
-
offset:
|
|
3120
|
+
offset: On(e, t, n),
|
|
3084
3121
|
indent: -1,
|
|
3085
3122
|
source: ""
|
|
3086
|
-
}, f =
|
|
3123
|
+
}, f = ks(s, p, l, c);
|
|
3087
3124
|
return o && (f.anchor = o.source.substring(1), f.anchor === "" && c(o, "BAD_ALIAS", "Anchor cannot be an empty string")), i && (f.spaceBefore = !0), r && (f.comment = r, f.range[2] = a), f;
|
|
3088
3125
|
}
|
|
3089
|
-
function
|
|
3090
|
-
const r = new
|
|
3126
|
+
function En({ options: s }, { offset: e, source: t, end: n }, i) {
|
|
3127
|
+
const r = new Re(t.substring(1));
|
|
3091
3128
|
r.source === "" && i(e, "BAD_ALIAS", "Alias cannot be an empty string"), r.source.endsWith(":") && i(e + t.length - 1, "BAD_ALIAS", "Alias ending in : is ambiguous", !0);
|
|
3092
|
-
const o = e + t.length, l =
|
|
3129
|
+
const o = e + t.length, l = Ie(n, o, s.strict, i);
|
|
3093
3130
|
return r.range = [e, o, l.offset], l.comment && (r.comment = l.comment), r;
|
|
3094
3131
|
}
|
|
3095
|
-
function
|
|
3096
|
-
const l = Object.assign({ _directives: e }, s), a = new
|
|
3132
|
+
function In(s, e, { offset: t, start: n, value: i, end: r }, o) {
|
|
3133
|
+
const l = Object.assign({ _directives: e }, s), a = new ge(void 0, l), c = {
|
|
3134
|
+
atKey: !1,
|
|
3097
3135
|
atRoot: !0,
|
|
3098
3136
|
directives: a.directives,
|
|
3099
3137
|
options: a.options,
|
|
3100
3138
|
schema: a.schema
|
|
3101
|
-
},
|
|
3139
|
+
}, p = ue(n, {
|
|
3102
3140
|
indicator: "doc-start",
|
|
3103
3141
|
next: i ?? (r == null ? void 0 : r[0]),
|
|
3104
3142
|
offset: t,
|
|
@@ -3106,11 +3144,11 @@ function On(s, e, { offset: t, start: n, value: i, end: r }, o) {
|
|
|
3106
3144
|
parentIndent: 0,
|
|
3107
3145
|
startOnNewline: !0
|
|
3108
3146
|
});
|
|
3109
|
-
|
|
3110
|
-
const f = a.contents.range[2], d =
|
|
3147
|
+
p.found && (a.directives.docStart = !0, i && (i.type === "block-map" || i.type === "block-seq") && !p.hasNewline && o(p.end, "MISSING_CHAR", "Block collection cannot start on same line with directives-end marker")), a.contents = i ? Ns(c, i, p, o) : Et(c, p.end, n, null, p, o);
|
|
3148
|
+
const f = a.contents.range[2], d = Ie(r, f, !1, o);
|
|
3111
3149
|
return d.comment && (a.comment = d.comment), a.range = [t, f, d.offset], a;
|
|
3112
3150
|
}
|
|
3113
|
-
function
|
|
3151
|
+
function be(s) {
|
|
3114
3152
|
if (typeof s == "number")
|
|
3115
3153
|
return [s, s + 1];
|
|
3116
3154
|
if (Array.isArray(s))
|
|
@@ -3118,7 +3156,7 @@ function ge(s) {
|
|
|
3118
3156
|
const { offset: e, source: t } = s;
|
|
3119
3157
|
return [e, e + (typeof t == "string" ? t.length : 1)];
|
|
3120
3158
|
}
|
|
3121
|
-
function
|
|
3159
|
+
function Kt(s) {
|
|
3122
3160
|
var i;
|
|
3123
3161
|
let e = "", t = !1, n = !1;
|
|
3124
3162
|
for (let r = 0; r < s.length; ++r) {
|
|
@@ -3139,15 +3177,15 @@ function Bt(s) {
|
|
|
3139
3177
|
}
|
|
3140
3178
|
return { comment: e, afterEmptyLine: n };
|
|
3141
3179
|
}
|
|
3142
|
-
class
|
|
3180
|
+
class It {
|
|
3143
3181
|
constructor(e = {}) {
|
|
3144
3182
|
this.doc = null, this.atDirectives = !1, this.prelude = [], this.errors = [], this.warnings = [], this.onError = (t, n, i, r) => {
|
|
3145
|
-
const o =
|
|
3146
|
-
r ? this.warnings.push(new
|
|
3183
|
+
const o = be(t);
|
|
3184
|
+
r ? this.warnings.push(new ys(o, n, i)) : this.errors.push(new z(o, n, i));
|
|
3147
3185
|
}, this.directives = new B({ version: e.version || "1.2" }), this.options = e;
|
|
3148
3186
|
}
|
|
3149
3187
|
decorate(e, t) {
|
|
3150
|
-
const { comment: n, afterEmptyLine: i } =
|
|
3188
|
+
const { comment: n, afterEmptyLine: i } = Kt(this.prelude);
|
|
3151
3189
|
if (n) {
|
|
3152
3190
|
const r = e.contents;
|
|
3153
3191
|
if (t)
|
|
@@ -3157,7 +3195,7 @@ ${n}` : n;
|
|
|
3157
3195
|
e.commentBefore = n;
|
|
3158
3196
|
else if (L(r) && !r.flow && r.items.length > 0) {
|
|
3159
3197
|
let o = r.items[0];
|
|
3160
|
-
|
|
3198
|
+
T(o) && (o = o.key);
|
|
3161
3199
|
const l = o.commentBefore;
|
|
3162
3200
|
o.commentBefore = l ? `${n}
|
|
3163
3201
|
${l}` : n;
|
|
@@ -3176,7 +3214,7 @@ ${o}` : n;
|
|
|
3176
3214
|
*/
|
|
3177
3215
|
streamInfo() {
|
|
3178
3216
|
return {
|
|
3179
|
-
comment:
|
|
3217
|
+
comment: Kt(this.prelude).comment,
|
|
3180
3218
|
directives: this.directives,
|
|
3181
3219
|
errors: this.errors,
|
|
3182
3220
|
warnings: this.warnings
|
|
@@ -3198,12 +3236,12 @@ ${o}` : n;
|
|
|
3198
3236
|
switch (e.type) {
|
|
3199
3237
|
case "directive":
|
|
3200
3238
|
this.directives.add(e.source, (t, n, i) => {
|
|
3201
|
-
const r =
|
|
3239
|
+
const r = be(e);
|
|
3202
3240
|
r[0] += t, this.onError(r, "BAD_DIRECTIVE", n, i);
|
|
3203
3241
|
}), this.prelude.push(e.source), this.atDirectives = !0;
|
|
3204
3242
|
break;
|
|
3205
3243
|
case "document": {
|
|
3206
|
-
const t =
|
|
3244
|
+
const t = In(this.options, this.directives, e, this.onError);
|
|
3207
3245
|
this.atDirectives && !t.directives.docStart && this.onError(e, "MISSING_CHAR", "Missing directives-end/doc-start indicator line"), this.decorate(t, !1), this.doc && (yield this.doc), this.doc = t, this.atDirectives = !1;
|
|
3208
3246
|
break;
|
|
3209
3247
|
}
|
|
@@ -3215,18 +3253,18 @@ ${o}` : n;
|
|
|
3215
3253
|
this.prelude.push(e.source);
|
|
3216
3254
|
break;
|
|
3217
3255
|
case "error": {
|
|
3218
|
-
const t = e.source ? `${e.message}: ${JSON.stringify(e.source)}` : e.message, n = new
|
|
3256
|
+
const t = e.source ? `${e.message}: ${JSON.stringify(e.source)}` : e.message, n = new z(be(e), "UNEXPECTED_TOKEN", t);
|
|
3219
3257
|
this.atDirectives || !this.doc ? this.errors.push(n) : this.doc.errors.push(n);
|
|
3220
3258
|
break;
|
|
3221
3259
|
}
|
|
3222
3260
|
case "doc-end": {
|
|
3223
3261
|
if (!this.doc) {
|
|
3224
3262
|
const n = "Unexpected doc-end without preceding document";
|
|
3225
|
-
this.errors.push(new
|
|
3263
|
+
this.errors.push(new z(be(e), "UNEXPECTED_TOKEN", n));
|
|
3226
3264
|
break;
|
|
3227
3265
|
}
|
|
3228
3266
|
this.doc.directives.docEnd = !0;
|
|
3229
|
-
const t =
|
|
3267
|
+
const t = Ie(e.end, e.offset + e.source.length, this.doc.options.strict, this.onError);
|
|
3230
3268
|
if (this.decorate(this.doc, !0), t.comment) {
|
|
3231
3269
|
const n = this.doc.comment;
|
|
3232
3270
|
this.doc.comment = n ? `${n}
|
|
@@ -3236,7 +3274,7 @@ ${t.comment}` : t.comment;
|
|
|
3236
3274
|
break;
|
|
3237
3275
|
}
|
|
3238
3276
|
default:
|
|
3239
|
-
this.errors.push(new
|
|
3277
|
+
this.errors.push(new z(be(e), "UNEXPECTED_TOKEN", `Unsupported token ${e.type}`));
|
|
3240
3278
|
}
|
|
3241
3279
|
}
|
|
3242
3280
|
/**
|
|
@@ -3249,33 +3287,33 @@ ${t.comment}` : t.comment;
|
|
|
3249
3287
|
if (this.doc)
|
|
3250
3288
|
this.decorate(this.doc, !0), yield this.doc, this.doc = null;
|
|
3251
3289
|
else if (e) {
|
|
3252
|
-
const n = Object.assign({ _directives: this.directives }, this.options), i = new
|
|
3290
|
+
const n = Object.assign({ _directives: this.directives }, this.options), i = new ge(void 0, n);
|
|
3253
3291
|
this.atDirectives && this.onError(t, "MISSING_CHAR", "Missing directives-end indicator line"), i.range = [0, t, t], this.decorate(i, !1), yield i;
|
|
3254
3292
|
}
|
|
3255
3293
|
}
|
|
3256
3294
|
}
|
|
3257
|
-
function
|
|
3295
|
+
function Tn(s, e = !0, t) {
|
|
3258
3296
|
if (s) {
|
|
3259
3297
|
const n = (i, r, o) => {
|
|
3260
3298
|
const l = typeof i == "number" ? i : Array.isArray(i) ? i[0] : i.offset;
|
|
3261
3299
|
if (t)
|
|
3262
3300
|
t(l, r, o);
|
|
3263
3301
|
else
|
|
3264
|
-
throw new
|
|
3302
|
+
throw new z([l, l + 1], r, o);
|
|
3265
3303
|
};
|
|
3266
3304
|
switch (s.type) {
|
|
3267
3305
|
case "scalar":
|
|
3268
3306
|
case "single-quoted-scalar":
|
|
3269
3307
|
case "double-quoted-scalar":
|
|
3270
|
-
return
|
|
3308
|
+
return ws(s, e, n);
|
|
3271
3309
|
case "block-scalar":
|
|
3272
|
-
return
|
|
3310
|
+
return bs({ options: { strict: e } }, s, n);
|
|
3273
3311
|
}
|
|
3274
3312
|
}
|
|
3275
3313
|
return null;
|
|
3276
3314
|
}
|
|
3277
|
-
function
|
|
3278
|
-
const { implicitKey: t = !1, indent: n, inFlow: i = !1, offset: r = -1, type: o = "PLAIN" } = e, l =
|
|
3315
|
+
function Ln(s, e) {
|
|
3316
|
+
const { implicitKey: t = !1, indent: n, inFlow: i = !1, offset: r = -1, type: o = "PLAIN" } = e, l = Ae({ type: o, value: s }, {
|
|
3279
3317
|
implicitKey: t,
|
|
3280
3318
|
indent: n > 0 ? " ".repeat(n) : "",
|
|
3281
3319
|
inFlow: i,
|
|
@@ -3288,11 +3326,11 @@ function En(s, e) {
|
|
|
3288
3326
|
case "|":
|
|
3289
3327
|
case ">": {
|
|
3290
3328
|
const c = l.indexOf(`
|
|
3291
|
-
`),
|
|
3329
|
+
`), p = l.substring(0, c), f = l.substring(c + 1) + `
|
|
3292
3330
|
`, d = [
|
|
3293
|
-
{ type: "block-scalar-header", offset: r, indent: n, source:
|
|
3331
|
+
{ type: "block-scalar-header", offset: r, indent: n, source: p }
|
|
3294
3332
|
];
|
|
3295
|
-
return
|
|
3333
|
+
return Os(d, a) || d.push({ type: "newline", offset: -1, indent: n, source: `
|
|
3296
3334
|
` }), { type: "block-scalar", offset: r, indent: n, props: d, source: f };
|
|
3297
3335
|
}
|
|
3298
3336
|
case '"':
|
|
@@ -3303,7 +3341,7 @@ function En(s, e) {
|
|
|
3303
3341
|
return { type: "scalar", offset: r, indent: n, source: l, end: a };
|
|
3304
3342
|
}
|
|
3305
3343
|
}
|
|
3306
|
-
function
|
|
3344
|
+
function $n(s, e, t = {}) {
|
|
3307
3345
|
let { afterKey: n = !1, implicitKey: i = !1, inFlow: r = !1, type: o } = t, l = "indent" in s ? s.indent : null;
|
|
3308
3346
|
if (n && typeof l == "number" && (l += 2), !o)
|
|
3309
3347
|
switch (s.type) {
|
|
@@ -3323,7 +3361,7 @@ function In(s, e, t = {}) {
|
|
|
3323
3361
|
default:
|
|
3324
3362
|
o = "PLAIN";
|
|
3325
3363
|
}
|
|
3326
|
-
const a =
|
|
3364
|
+
const a = Ae({ type: o, value: e }, {
|
|
3327
3365
|
implicitKey: i || l === null,
|
|
3328
3366
|
indent: l !== null && l > 0 ? " ".repeat(l) : "",
|
|
3329
3367
|
inFlow: r,
|
|
@@ -3332,19 +3370,19 @@ function In(s, e, t = {}) {
|
|
|
3332
3370
|
switch (a[0]) {
|
|
3333
3371
|
case "|":
|
|
3334
3372
|
case ">":
|
|
3335
|
-
|
|
3373
|
+
_n(s, a);
|
|
3336
3374
|
break;
|
|
3337
3375
|
case '"':
|
|
3338
|
-
|
|
3376
|
+
rt(s, a, "double-quoted-scalar");
|
|
3339
3377
|
break;
|
|
3340
3378
|
case "'":
|
|
3341
|
-
|
|
3379
|
+
rt(s, a, "single-quoted-scalar");
|
|
3342
3380
|
break;
|
|
3343
3381
|
default:
|
|
3344
|
-
|
|
3382
|
+
rt(s, a, "scalar");
|
|
3345
3383
|
}
|
|
3346
3384
|
}
|
|
3347
|
-
function
|
|
3385
|
+
function _n(s, e) {
|
|
3348
3386
|
const t = e.indexOf(`
|
|
3349
3387
|
`), n = e.substring(0, t), i = e.substring(t + 1) + `
|
|
3350
3388
|
`;
|
|
@@ -3357,14 +3395,14 @@ function Tn(s, e) {
|
|
|
3357
3395
|
const { offset: r } = s, o = "indent" in s ? s.indent : -1, l = [
|
|
3358
3396
|
{ type: "block-scalar-header", offset: r, indent: o, source: n }
|
|
3359
3397
|
];
|
|
3360
|
-
|
|
3398
|
+
Os(l, "end" in s ? s.end : void 0) || l.push({ type: "newline", offset: -1, indent: o, source: `
|
|
3361
3399
|
` });
|
|
3362
3400
|
for (const a of Object.keys(s))
|
|
3363
3401
|
a !== "type" && a !== "offset" && delete s[a];
|
|
3364
3402
|
Object.assign(s, { type: "block-scalar", indent: o, props: l, source: i });
|
|
3365
3403
|
}
|
|
3366
3404
|
}
|
|
3367
|
-
function
|
|
3405
|
+
function Os(s, e) {
|
|
3368
3406
|
if (e)
|
|
3369
3407
|
for (const t of e)
|
|
3370
3408
|
switch (t.type) {
|
|
@@ -3377,7 +3415,7 @@ function Ss(s, e) {
|
|
|
3377
3415
|
}
|
|
3378
3416
|
return !1;
|
|
3379
3417
|
}
|
|
3380
|
-
function
|
|
3418
|
+
function rt(s, e, t) {
|
|
3381
3419
|
switch (s.type) {
|
|
3382
3420
|
case "scalar":
|
|
3383
3421
|
case "double-quoted-scalar":
|
|
@@ -3408,32 +3446,32 @@ function nt(s, e, t) {
|
|
|
3408
3446
|
}
|
|
3409
3447
|
}
|
|
3410
3448
|
}
|
|
3411
|
-
const
|
|
3412
|
-
function
|
|
3449
|
+
const Cn = (s) => "type" in s ? qe(s) : Ke(s);
|
|
3450
|
+
function qe(s) {
|
|
3413
3451
|
switch (s.type) {
|
|
3414
3452
|
case "block-scalar": {
|
|
3415
3453
|
let e = "";
|
|
3416
3454
|
for (const t of s.props)
|
|
3417
|
-
e +=
|
|
3455
|
+
e += qe(t);
|
|
3418
3456
|
return e + s.source;
|
|
3419
3457
|
}
|
|
3420
3458
|
case "block-map":
|
|
3421
3459
|
case "block-seq": {
|
|
3422
3460
|
let e = "";
|
|
3423
3461
|
for (const t of s.items)
|
|
3424
|
-
e +=
|
|
3462
|
+
e += Ke(t);
|
|
3425
3463
|
return e;
|
|
3426
3464
|
}
|
|
3427
3465
|
case "flow-collection": {
|
|
3428
3466
|
let e = s.start.source;
|
|
3429
3467
|
for (const t of s.items)
|
|
3430
|
-
e +=
|
|
3468
|
+
e += Ke(t);
|
|
3431
3469
|
for (const t of s.end)
|
|
3432
3470
|
e += t.source;
|
|
3433
3471
|
return e;
|
|
3434
3472
|
}
|
|
3435
3473
|
case "document": {
|
|
3436
|
-
let e =
|
|
3474
|
+
let e = Ke(s);
|
|
3437
3475
|
if (s.end)
|
|
3438
3476
|
for (const t of s.end)
|
|
3439
3477
|
e += t.source;
|
|
@@ -3448,23 +3486,23 @@ function Ke(s) {
|
|
|
3448
3486
|
}
|
|
3449
3487
|
}
|
|
3450
3488
|
}
|
|
3451
|
-
function
|
|
3489
|
+
function Ke({ start: s, key: e, sep: t, value: n }) {
|
|
3452
3490
|
let i = "";
|
|
3453
3491
|
for (const r of s)
|
|
3454
3492
|
i += r.source;
|
|
3455
|
-
if (e && (i +=
|
|
3493
|
+
if (e && (i += qe(e)), t)
|
|
3456
3494
|
for (const r of t)
|
|
3457
3495
|
i += r.source;
|
|
3458
|
-
return n && (i +=
|
|
3496
|
+
return n && (i += qe(n)), i;
|
|
3459
3497
|
}
|
|
3460
|
-
const
|
|
3461
|
-
function
|
|
3462
|
-
"type" in s && s.type === "document" && (s = { start: s.start, value: s.value }),
|
|
3498
|
+
const ht = Symbol("break visit"), vn = Symbol("skip children"), As = Symbol("remove item");
|
|
3499
|
+
function Z(s, e) {
|
|
3500
|
+
"type" in s && s.type === "document" && (s = { start: s.start, value: s.value }), Es(Object.freeze([]), s, e);
|
|
3463
3501
|
}
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3502
|
+
Z.BREAK = ht;
|
|
3503
|
+
Z.SKIP = vn;
|
|
3504
|
+
Z.REMOVE = As;
|
|
3505
|
+
Z.itemAtPath = (s, e) => {
|
|
3468
3506
|
let t = s;
|
|
3469
3507
|
for (const [n, i] of e) {
|
|
3470
3508
|
const r = t == null ? void 0 : t[n];
|
|
@@ -3475,13 +3513,13 @@ z.itemAtPath = (s, e) => {
|
|
|
3475
3513
|
}
|
|
3476
3514
|
return t;
|
|
3477
3515
|
};
|
|
3478
|
-
|
|
3479
|
-
const t =
|
|
3516
|
+
Z.parentCollection = (s, e) => {
|
|
3517
|
+
const t = Z.itemAtPath(s, e.slice(0, -1)), n = e[e.length - 1][0], i = t == null ? void 0 : t[n];
|
|
3480
3518
|
if (i && "items" in i)
|
|
3481
3519
|
return i;
|
|
3482
3520
|
throw new Error("Parent collection not found");
|
|
3483
3521
|
};
|
|
3484
|
-
function
|
|
3522
|
+
function Es(s, e, t) {
|
|
3485
3523
|
let n = t(e, s);
|
|
3486
3524
|
if (typeof n == "symbol")
|
|
3487
3525
|
return n;
|
|
@@ -3489,13 +3527,13 @@ function Ns(s, e, t) {
|
|
|
3489
3527
|
const r = e[i];
|
|
3490
3528
|
if (r && "items" in r) {
|
|
3491
3529
|
for (let o = 0; o < r.items.length; ++o) {
|
|
3492
|
-
const l =
|
|
3530
|
+
const l = Es(Object.freeze(s.concat([[i, o]])), r.items[o], t);
|
|
3493
3531
|
if (typeof l == "number")
|
|
3494
3532
|
o = l - 1;
|
|
3495
3533
|
else {
|
|
3496
|
-
if (l ===
|
|
3497
|
-
return
|
|
3498
|
-
l ===
|
|
3534
|
+
if (l === ht)
|
|
3535
|
+
return ht;
|
|
3536
|
+
l === As && (r.items.splice(o, 1), o -= 1);
|
|
3499
3537
|
}
|
|
3500
3538
|
}
|
|
3501
3539
|
typeof n == "function" && i === "key" && (n = n(e, s));
|
|
@@ -3503,30 +3541,30 @@ function Ns(s, e, t) {
|
|
|
3503
3541
|
}
|
|
3504
3542
|
return typeof n == "function" ? n(e, s) : n;
|
|
3505
3543
|
}
|
|
3506
|
-
const
|
|
3507
|
-
function
|
|
3544
|
+
const ze = "\uFEFF", Ze = "", xe = "", Oe = "", Bn = (s) => !!s && "items" in s, Mn = (s) => !!s && (s.type === "scalar" || s.type === "single-quoted-scalar" || s.type === "double-quoted-scalar" || s.type === "block-scalar");
|
|
3545
|
+
function Kn(s) {
|
|
3508
3546
|
switch (s) {
|
|
3509
|
-
case
|
|
3547
|
+
case ze:
|
|
3510
3548
|
return "<BOM>";
|
|
3511
|
-
case
|
|
3549
|
+
case Ze:
|
|
3512
3550
|
return "<DOC>";
|
|
3513
|
-
case
|
|
3551
|
+
case xe:
|
|
3514
3552
|
return "<FLOW_END>";
|
|
3515
|
-
case
|
|
3553
|
+
case Oe:
|
|
3516
3554
|
return "<SCALAR>";
|
|
3517
3555
|
default:
|
|
3518
3556
|
return JSON.stringify(s);
|
|
3519
3557
|
}
|
|
3520
3558
|
}
|
|
3521
|
-
function
|
|
3559
|
+
function Is(s) {
|
|
3522
3560
|
switch (s) {
|
|
3523
|
-
case
|
|
3561
|
+
case ze:
|
|
3524
3562
|
return "byte-order-mark";
|
|
3525
|
-
case
|
|
3563
|
+
case Ze:
|
|
3526
3564
|
return "doc-mode";
|
|
3527
|
-
case
|
|
3565
|
+
case xe:
|
|
3528
3566
|
return "flow-error-end";
|
|
3529
|
-
case
|
|
3567
|
+
case Oe:
|
|
3530
3568
|
return "scalar";
|
|
3531
3569
|
case "---":
|
|
3532
3570
|
return "doc-start";
|
|
@@ -3579,21 +3617,21 @@ function Os(s) {
|
|
|
3579
3617
|
}
|
|
3580
3618
|
return null;
|
|
3581
3619
|
}
|
|
3582
|
-
const
|
|
3620
|
+
const Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3583
3621
|
__proto__: null,
|
|
3584
|
-
BOM:
|
|
3585
|
-
DOCUMENT:
|
|
3586
|
-
FLOW_END:
|
|
3587
|
-
SCALAR:
|
|
3588
|
-
createScalarToken:
|
|
3589
|
-
isCollection:
|
|
3590
|
-
isScalar:
|
|
3591
|
-
prettyToken:
|
|
3592
|
-
resolveAsScalar:
|
|
3593
|
-
setScalarValue:
|
|
3594
|
-
stringify:
|
|
3595
|
-
tokenType:
|
|
3596
|
-
visit:
|
|
3622
|
+
BOM: ze,
|
|
3623
|
+
DOCUMENT: Ze,
|
|
3624
|
+
FLOW_END: xe,
|
|
3625
|
+
SCALAR: Oe,
|
|
3626
|
+
createScalarToken: Ln,
|
|
3627
|
+
isCollection: Bn,
|
|
3628
|
+
isScalar: Mn,
|
|
3629
|
+
prettyToken: Kn,
|
|
3630
|
+
resolveAsScalar: Tn,
|
|
3631
|
+
setScalarValue: $n,
|
|
3632
|
+
stringify: Cn,
|
|
3633
|
+
tokenType: Is,
|
|
3634
|
+
visit: Z
|
|
3597
3635
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
3598
3636
|
function D(s) {
|
|
3599
3637
|
switch (s) {
|
|
@@ -3608,9 +3646,9 @@ function D(s) {
|
|
|
3608
3646
|
return !1;
|
|
3609
3647
|
}
|
|
3610
3648
|
}
|
|
3611
|
-
const
|
|
3612
|
-
\r `),
|
|
3613
|
-
class
|
|
3649
|
+
const Pt = new Set("0123456789ABCDEFabcdef"), jn = new Set("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-#;/?:@&=+$_.!~*'()"), _e = new Set(",[]{}"), Dn = new Set(` ,[]{}
|
|
3650
|
+
\r `), ot = (s) => !s || Dn.has(s);
|
|
3651
|
+
class Ts {
|
|
3614
3652
|
constructor() {
|
|
3615
3653
|
this.atEnd = !1, this.blockScalarIndent = -1, this.blockScalarKeep = !1, this.buffer = "", this.flowKey = !1, this.flowLevel = 0, this.indentNext = 0, this.indentValue = 0, this.lineEndPos = null, this.next = null, this.pos = 0;
|
|
3616
3654
|
}
|
|
@@ -3702,7 +3740,7 @@ class As {
|
|
|
3702
3740
|
let e = this.getLine();
|
|
3703
3741
|
if (e === null)
|
|
3704
3742
|
return this.setNext("stream");
|
|
3705
|
-
if (e[0] ===
|
|
3743
|
+
if (e[0] === ze && (yield* this.pushCount(1), e = e.substring(1)), e[0] === "%") {
|
|
3706
3744
|
let t = e.length, n = e.indexOf("#");
|
|
3707
3745
|
for (; n !== -1; ) {
|
|
3708
3746
|
const r = e[n - 1];
|
|
@@ -3726,7 +3764,7 @@ class As {
|
|
|
3726
3764
|
const t = yield* this.pushSpaces(!0);
|
|
3727
3765
|
return yield* this.pushCount(e.length - t), yield* this.pushNewline(), "stream";
|
|
3728
3766
|
}
|
|
3729
|
-
return yield
|
|
3767
|
+
return yield Ze, yield* this.parseLineStart();
|
|
3730
3768
|
}
|
|
3731
3769
|
*parseLineStart() {
|
|
3732
3770
|
const e = this.charAt(0);
|
|
@@ -3760,6 +3798,7 @@ class As {
|
|
|
3760
3798
|
switch (e[t]) {
|
|
3761
3799
|
case "#":
|
|
3762
3800
|
yield* this.pushCount(e.length - t);
|
|
3801
|
+
// fallthrough
|
|
3763
3802
|
case void 0:
|
|
3764
3803
|
return yield* this.pushNewline(), yield* this.parseLineStart();
|
|
3765
3804
|
case "{":
|
|
@@ -3769,7 +3808,7 @@ class As {
|
|
|
3769
3808
|
case "]":
|
|
3770
3809
|
return yield* this.pushCount(1), "doc";
|
|
3771
3810
|
case "*":
|
|
3772
|
-
return yield* this.pushUntil(
|
|
3811
|
+
return yield* this.pushUntil(ot), "doc";
|
|
3773
3812
|
case '"':
|
|
3774
3813
|
case "'":
|
|
3775
3814
|
return yield* this.parseQuotedScalar();
|
|
@@ -3789,7 +3828,7 @@ class As {
|
|
|
3789
3828
|
if (i === null)
|
|
3790
3829
|
return this.setNext("flow");
|
|
3791
3830
|
if ((n !== -1 && n < this.indentNext && i[0] !== "#" || n === 0 && (i.startsWith("---") || i.startsWith("...")) && D(i[3])) && !(n === this.indentNext - 1 && this.flowLevel === 1 && (i[0] === "]" || i[0] === "}")))
|
|
3792
|
-
return this.flowLevel = 0, yield
|
|
3831
|
+
return this.flowLevel = 0, yield xe, yield* this.parseLineStart();
|
|
3793
3832
|
let r = 0;
|
|
3794
3833
|
for (; i[r] === ","; )
|
|
3795
3834
|
r += yield* this.pushCount(1), r += yield* this.pushSpaces(!0), this.flowKey = !1;
|
|
@@ -3805,7 +3844,7 @@ class As {
|
|
|
3805
3844
|
case "]":
|
|
3806
3845
|
return yield* this.pushCount(1), this.flowKey = !0, this.flowLevel -= 1, this.flowLevel ? "flow" : "doc";
|
|
3807
3846
|
case "*":
|
|
3808
|
-
return yield* this.pushUntil(
|
|
3847
|
+
return yield* this.pushUntil(ot), "flow";
|
|
3809
3848
|
case '"':
|
|
3810
3849
|
case "'":
|
|
3811
3850
|
return this.flowKey = !0, yield* this.parseQuotedScalar();
|
|
@@ -3814,6 +3853,7 @@ class As {
|
|
|
3814
3853
|
if (this.flowKey || D(o) || o === ",")
|
|
3815
3854
|
return this.flowKey = !1, yield* this.pushCount(1), yield* this.pushSpaces(!0), "flow";
|
|
3816
3855
|
}
|
|
3856
|
+
// fallthrough
|
|
3817
3857
|
default:
|
|
3818
3858
|
return this.flowKey = !1, yield* this.parsePlainScalar();
|
|
3819
3859
|
}
|
|
@@ -3886,6 +3926,7 @@ class As {
|
|
|
3886
3926
|
`)
|
|
3887
3927
|
break;
|
|
3888
3928
|
}
|
|
3929
|
+
// fallthrough
|
|
3889
3930
|
default:
|
|
3890
3931
|
break e;
|
|
3891
3932
|
}
|
|
@@ -3927,7 +3968,7 @@ class As {
|
|
|
3927
3968
|
else
|
|
3928
3969
|
break;
|
|
3929
3970
|
} while (!0);
|
|
3930
|
-
return yield
|
|
3971
|
+
return yield Oe, yield* this.pushToIndex(e + 1, !0), yield* this.parseLineStart();
|
|
3931
3972
|
}
|
|
3932
3973
|
*parsePlainScalar() {
|
|
3933
3974
|
const e = this.flowLevel > 0;
|
|
@@ -3935,14 +3976,14 @@ class As {
|
|
|
3935
3976
|
for (; i = this.buffer[++n]; )
|
|
3936
3977
|
if (i === ":") {
|
|
3937
3978
|
const r = this.buffer[n + 1];
|
|
3938
|
-
if (D(r) || e &&
|
|
3979
|
+
if (D(r) || e && _e.has(r))
|
|
3939
3980
|
break;
|
|
3940
3981
|
t = n;
|
|
3941
3982
|
} else if (D(i)) {
|
|
3942
3983
|
let r = this.buffer[n + 1];
|
|
3943
3984
|
if (i === "\r" && (r === `
|
|
3944
3985
|
` ? (n += 1, i = `
|
|
3945
|
-
`, r = this.buffer[n + 1]) : t = n), r === "#" || e &&
|
|
3986
|
+
`, r = this.buffer[n + 1]) : t = n), r === "#" || e && _e.has(r))
|
|
3946
3987
|
break;
|
|
3947
3988
|
if (i === `
|
|
3948
3989
|
`) {
|
|
@@ -3952,11 +3993,11 @@ class As {
|
|
|
3952
3993
|
n = Math.max(n, o - 2);
|
|
3953
3994
|
}
|
|
3954
3995
|
} else {
|
|
3955
|
-
if (e &&
|
|
3996
|
+
if (e && _e.has(i))
|
|
3956
3997
|
break;
|
|
3957
3998
|
t = n;
|
|
3958
3999
|
}
|
|
3959
|
-
return !i && !this.atEnd ? this.setNext("plain-scalar") : (yield
|
|
4000
|
+
return !i && !this.atEnd ? this.setNext("plain-scalar") : (yield Oe, yield* this.pushToIndex(t + 1, !0), e ? "flow" : "doc");
|
|
3960
4001
|
}
|
|
3961
4002
|
*pushCount(e) {
|
|
3962
4003
|
return e > 0 ? (yield this.buffer.substr(this.pos, e), this.pos += e, e) : 0;
|
|
@@ -3970,12 +4011,14 @@ class As {
|
|
|
3970
4011
|
case "!":
|
|
3971
4012
|
return (yield* this.pushTag()) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
|
|
3972
4013
|
case "&":
|
|
3973
|
-
return (yield* this.pushUntil(
|
|
4014
|
+
return (yield* this.pushUntil(ot)) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
|
|
3974
4015
|
case "-":
|
|
4016
|
+
// this is an error
|
|
3975
4017
|
case "?":
|
|
4018
|
+
// this is an error outside flow collections
|
|
3976
4019
|
case ":": {
|
|
3977
4020
|
const e = this.flowLevel > 0, t = this.charAt(1);
|
|
3978
|
-
if (D(t) || e &&
|
|
4021
|
+
if (D(t) || e && _e.has(t))
|
|
3979
4022
|
return e ? this.flowKey && (this.flowKey = !1) : this.indentNext = this.indentValue + 1, (yield* this.pushCount(1)) + (yield* this.pushSpaces(!0)) + (yield* this.pushIndicators());
|
|
3980
4023
|
}
|
|
3981
4024
|
}
|
|
@@ -3990,9 +4033,9 @@ class As {
|
|
|
3990
4033
|
} else {
|
|
3991
4034
|
let e = this.pos + 1, t = this.buffer[e];
|
|
3992
4035
|
for (; t; )
|
|
3993
|
-
if (
|
|
4036
|
+
if (jn.has(t))
|
|
3994
4037
|
t = this.buffer[++e];
|
|
3995
|
-
else if (t === "%" &&
|
|
4038
|
+
else if (t === "%" && Pt.has(this.buffer[e + 1]) && Pt.has(this.buffer[e + 2]))
|
|
3996
4039
|
t = this.buffer[e += 3];
|
|
3997
4040
|
else
|
|
3998
4041
|
break;
|
|
@@ -4020,7 +4063,7 @@ class As {
|
|
|
4020
4063
|
return yield* this.pushToIndex(t, !1);
|
|
4021
4064
|
}
|
|
4022
4065
|
}
|
|
4023
|
-
class
|
|
4066
|
+
class Ls {
|
|
4024
4067
|
constructor() {
|
|
4025
4068
|
this.lineStarts = [], this.addNewLine = (e) => this.lineStarts.push(e), this.linePos = (e) => {
|
|
4026
4069
|
let t = 0, n = this.lineStarts.length;
|
|
@@ -4037,13 +4080,13 @@ class Es {
|
|
|
4037
4080
|
};
|
|
4038
4081
|
}
|
|
4039
4082
|
}
|
|
4040
|
-
function
|
|
4083
|
+
function W(s, e) {
|
|
4041
4084
|
for (let t = 0; t < s.length; ++t)
|
|
4042
4085
|
if (s[t].type === e)
|
|
4043
4086
|
return !0;
|
|
4044
4087
|
return !1;
|
|
4045
4088
|
}
|
|
4046
|
-
function
|
|
4089
|
+
function jt(s) {
|
|
4047
4090
|
for (let e = 0; e < s.length; ++e)
|
|
4048
4091
|
switch (s[e].type) {
|
|
4049
4092
|
case "space":
|
|
@@ -4055,7 +4098,7 @@ function Pt(s) {
|
|
|
4055
4098
|
}
|
|
4056
4099
|
return -1;
|
|
4057
4100
|
}
|
|
4058
|
-
function
|
|
4101
|
+
function $s(s) {
|
|
4059
4102
|
switch (s == null ? void 0 : s.type) {
|
|
4060
4103
|
case "alias":
|
|
4061
4104
|
case "scalar":
|
|
@@ -4067,7 +4110,7 @@ function Is(s) {
|
|
|
4067
4110
|
return !1;
|
|
4068
4111
|
}
|
|
4069
4112
|
}
|
|
4070
|
-
function
|
|
4113
|
+
function Ce(s) {
|
|
4071
4114
|
switch (s.type) {
|
|
4072
4115
|
case "document":
|
|
4073
4116
|
return s.start;
|
|
@@ -4077,11 +4120,12 @@ function $e(s) {
|
|
|
4077
4120
|
}
|
|
4078
4121
|
case "block-seq":
|
|
4079
4122
|
return s.items[s.items.length - 1].start;
|
|
4123
|
+
/* istanbul ignore next should not happen */
|
|
4080
4124
|
default:
|
|
4081
4125
|
return [];
|
|
4082
4126
|
}
|
|
4083
4127
|
}
|
|
4084
|
-
function
|
|
4128
|
+
function ne(s) {
|
|
4085
4129
|
var t;
|
|
4086
4130
|
if (s.length === 0)
|
|
4087
4131
|
return [];
|
|
@@ -4099,18 +4143,18 @@ function te(s) {
|
|
|
4099
4143
|
;
|
|
4100
4144
|
return s.splice(e, s.length);
|
|
4101
4145
|
}
|
|
4102
|
-
function
|
|
4146
|
+
function Dt(s) {
|
|
4103
4147
|
if (s.start.type === "flow-seq-start")
|
|
4104
4148
|
for (const e of s.items)
|
|
4105
|
-
e.sep && !e.value && !
|
|
4149
|
+
e.sep && !e.value && !W(e.start, "explicit-key-ind") && !W(e.sep, "map-value-ind") && (e.key && (e.value = e.key), delete e.key, $s(e.value) ? e.value.end ? Array.prototype.push.apply(e.value.end, e.sep) : e.value.end = e.sep : Array.prototype.push.apply(e.start, e.sep), delete e.sep);
|
|
4106
4150
|
}
|
|
4107
|
-
class
|
|
4151
|
+
class Tt {
|
|
4108
4152
|
/**
|
|
4109
4153
|
* @param onNewLine - If defined, called separately with the start position of
|
|
4110
4154
|
* each new line (in `parse()`, including the start of input).
|
|
4111
4155
|
*/
|
|
4112
4156
|
constructor(e) {
|
|
4113
|
-
this.atNewLine = !0, this.atScalar = !1, this.indent = 0, this.offset = 0, this.onKeyLine = !1, this.stack = [], this.source = "", this.type = "", this.lexer = new
|
|
4157
|
+
this.atNewLine = !0, this.atScalar = !1, this.indent = 0, this.offset = 0, this.onKeyLine = !1, this.stack = [], this.source = "", this.type = "", this.lexer = new Ts(), this.onNewLine = e;
|
|
4114
4158
|
}
|
|
4115
4159
|
/**
|
|
4116
4160
|
* Parse `source` as a YAML stream.
|
|
@@ -4134,7 +4178,7 @@ class Et {
|
|
|
4134
4178
|
this.atScalar = !1, yield* this.step(), this.offset += e.length;
|
|
4135
4179
|
return;
|
|
4136
4180
|
}
|
|
4137
|
-
const t =
|
|
4181
|
+
const t = Is(e);
|
|
4138
4182
|
if (t)
|
|
4139
4183
|
if (t === "scalar")
|
|
4140
4184
|
this.atNewLine = !1, this.atScalar = !0, this.type = "scalar";
|
|
@@ -4223,7 +4267,7 @@ class Et {
|
|
|
4223
4267
|
yield t;
|
|
4224
4268
|
else {
|
|
4225
4269
|
const n = this.peek(1);
|
|
4226
|
-
switch (t.type === "block-scalar" ? t.indent = "indent" in n ? n.indent : 0 : t.type === "flow-collection" && n.type === "document" && (t.indent = 0), t.type === "flow-collection" &&
|
|
4270
|
+
switch (t.type === "block-scalar" ? t.indent = "indent" in n ? n.indent : 0 : t.type === "flow-collection" && n.type === "document" && (t.indent = 0), t.type === "flow-collection" && Dt(t), n.type) {
|
|
4227
4271
|
case "document":
|
|
4228
4272
|
n.value = t;
|
|
4229
4273
|
break;
|
|
@@ -4253,12 +4297,13 @@ class Et {
|
|
|
4253
4297
|
!i || i.value ? n.items.push({ start: [], key: t, sep: [] }) : i.sep ? i.value = t : Object.assign(i, { key: t, sep: [] });
|
|
4254
4298
|
return;
|
|
4255
4299
|
}
|
|
4300
|
+
/* istanbul ignore next should not happen */
|
|
4256
4301
|
default:
|
|
4257
4302
|
yield* this.pop(), yield* this.pop(t);
|
|
4258
4303
|
}
|
|
4259
4304
|
if ((n.type === "document" || n.type === "block-map" || n.type === "block-seq") && (t.type === "block-map" || t.type === "block-seq")) {
|
|
4260
4305
|
const i = t.items[t.items.length - 1];
|
|
4261
|
-
i && !i.sep && !i.value && i.start.length > 0 &&
|
|
4306
|
+
i && !i.sep && !i.value && i.start.length > 0 && jt(i.start) === -1 && (t.indent === 0 || i.start.every((r) => r.type !== "comment" || r.indent < t.indent)) && (n.type === "document" ? n.end = i.start : n.items.push({ start: i.start }), t.items.splice(-1, 1));
|
|
4262
4307
|
}
|
|
4263
4308
|
}
|
|
4264
4309
|
}
|
|
@@ -4296,7 +4341,7 @@ class Et {
|
|
|
4296
4341
|
return yield* this.lineEnd(e);
|
|
4297
4342
|
switch (this.type) {
|
|
4298
4343
|
case "doc-start": {
|
|
4299
|
-
|
|
4344
|
+
jt(e.start) !== -1 ? (yield* this.pop(), yield* this.step()) : e.start.push(this.sourceToken);
|
|
4300
4345
|
return;
|
|
4301
4346
|
}
|
|
4302
4347
|
case "anchor":
|
|
@@ -4317,7 +4362,7 @@ class Et {
|
|
|
4317
4362
|
}
|
|
4318
4363
|
*scalar(e) {
|
|
4319
4364
|
if (this.type === "map-value-ind") {
|
|
4320
|
-
const t =
|
|
4365
|
+
const t = Ce(this.peek(2)), n = ne(t);
|
|
4321
4366
|
let i;
|
|
4322
4367
|
e.end ? (i = e.end, i.push(this.sourceToken), delete e.end) : i = [this.sourceToken];
|
|
4323
4368
|
const r = {
|
|
@@ -4347,6 +4392,7 @@ class Et {
|
|
|
4347
4392
|
}
|
|
4348
4393
|
yield* this.pop();
|
|
4349
4394
|
break;
|
|
4395
|
+
/* istanbul ignore next should not happen */
|
|
4350
4396
|
default:
|
|
4351
4397
|
yield* this.pop(), yield* this.step();
|
|
4352
4398
|
}
|
|
@@ -4419,15 +4465,15 @@ class Et {
|
|
|
4419
4465
|
if (t.sep)
|
|
4420
4466
|
if (t.value)
|
|
4421
4467
|
e.items.push({ start: [], key: null, sep: [this.sourceToken] });
|
|
4422
|
-
else if (
|
|
4468
|
+
else if (W(t.sep, "map-value-ind"))
|
|
4423
4469
|
this.stack.push({
|
|
4424
4470
|
type: "block-map",
|
|
4425
4471
|
offset: this.offset,
|
|
4426
4472
|
indent: this.indent,
|
|
4427
4473
|
items: [{ start: o, key: null, sep: [this.sourceToken] }]
|
|
4428
4474
|
});
|
|
4429
|
-
else if (
|
|
4430
|
-
const l =
|
|
4475
|
+
else if ($s(t.key) && !W(t.sep, "newline")) {
|
|
4476
|
+
const l = ne(t.start), a = t.key, c = t.sep;
|
|
4431
4477
|
c.push(this.sourceToken), delete t.key, delete t.sep, this.stack.push({
|
|
4432
4478
|
type: "block-map",
|
|
4433
4479
|
offset: this.offset,
|
|
@@ -4435,10 +4481,10 @@ class Et {
|
|
|
4435
4481
|
items: [{ start: l, key: a, sep: c }]
|
|
4436
4482
|
});
|
|
4437
4483
|
} else o.length > 0 ? t.sep = t.sep.concat(o, this.sourceToken) : t.sep.push(this.sourceToken);
|
|
4438
|
-
else if (
|
|
4484
|
+
else if (W(t.start, "newline"))
|
|
4439
4485
|
Object.assign(t, { key: null, sep: [this.sourceToken] });
|
|
4440
4486
|
else {
|
|
4441
|
-
const l =
|
|
4487
|
+
const l = ne(t.start);
|
|
4442
4488
|
this.stack.push({
|
|
4443
4489
|
type: "block-map",
|
|
4444
4490
|
offset: this.offset,
|
|
@@ -4447,7 +4493,7 @@ class Et {
|
|
|
4447
4493
|
});
|
|
4448
4494
|
}
|
|
4449
4495
|
else
|
|
4450
|
-
t.sep ? t.value || r ? e.items.push({ start: o, key: null, sep: [this.sourceToken] }) :
|
|
4496
|
+
t.sep ? t.value || r ? e.items.push({ start: o, key: null, sep: [this.sourceToken] }) : W(t.sep, "map-value-ind") ? this.stack.push({
|
|
4451
4497
|
type: "block-map",
|
|
4452
4498
|
offset: this.offset,
|
|
4453
4499
|
indent: this.indent,
|
|
@@ -4509,7 +4555,7 @@ class Et {
|
|
|
4509
4555
|
case "seq-item-ind":
|
|
4510
4556
|
if (this.indent !== e.indent)
|
|
4511
4557
|
break;
|
|
4512
|
-
t.value ||
|
|
4558
|
+
t.value || W(t.start, "seq-item-ind") ? e.items.push({ start: [this.sourceToken] }) : t.start.push(this.sourceToken);
|
|
4513
4559
|
return;
|
|
4514
4560
|
}
|
|
4515
4561
|
if (this.indent > e.indent) {
|
|
@@ -4564,8 +4610,8 @@ class Et {
|
|
|
4564
4610
|
if (n.type === "block-map" && (this.type === "map-value-ind" && n.indent === e.indent || this.type === "newline" && !n.items[n.items.length - 1].sep))
|
|
4565
4611
|
yield* this.pop(), yield* this.step();
|
|
4566
4612
|
else if (this.type === "map-value-ind" && n.type !== "flow-collection") {
|
|
4567
|
-
const i =
|
|
4568
|
-
|
|
4613
|
+
const i = Ce(n), r = ne(i);
|
|
4614
|
+
Dt(e);
|
|
4569
4615
|
const o = e.end.splice(1, e.end.length);
|
|
4570
4616
|
o.push(this.sourceToken);
|
|
4571
4617
|
const l = {
|
|
@@ -4628,7 +4674,7 @@ class Et {
|
|
|
4628
4674
|
};
|
|
4629
4675
|
case "explicit-key-ind": {
|
|
4630
4676
|
this.onKeyLine = !0;
|
|
4631
|
-
const t =
|
|
4677
|
+
const t = Ce(e), n = ne(t);
|
|
4632
4678
|
return n.push(this.sourceToken), {
|
|
4633
4679
|
type: "block-map",
|
|
4634
4680
|
offset: this.offset,
|
|
@@ -4638,7 +4684,7 @@ class Et {
|
|
|
4638
4684
|
}
|
|
4639
4685
|
case "map-value-ind": {
|
|
4640
4686
|
this.onKeyLine = !0;
|
|
4641
|
-
const t =
|
|
4687
|
+
const t = Ce(e), n = ne(t);
|
|
4642
4688
|
return {
|
|
4643
4689
|
type: "block-map",
|
|
4644
4690
|
offset: this.offset,
|
|
@@ -4667,6 +4713,7 @@ class Et {
|
|
|
4667
4713
|
break;
|
|
4668
4714
|
case "newline":
|
|
4669
4715
|
this.onKeyLine = !1;
|
|
4716
|
+
// fallthrough
|
|
4670
4717
|
case "space":
|
|
4671
4718
|
case "comment":
|
|
4672
4719
|
default:
|
|
@@ -4674,43 +4721,43 @@ class Et {
|
|
|
4674
4721
|
}
|
|
4675
4722
|
}
|
|
4676
4723
|
}
|
|
4677
|
-
function
|
|
4724
|
+
function _s(s) {
|
|
4678
4725
|
const e = s.prettyErrors !== !1;
|
|
4679
|
-
return { lineCounter: s.lineCounter || e && new
|
|
4726
|
+
return { lineCounter: s.lineCounter || e && new Ls() || null, prettyErrors: e };
|
|
4680
4727
|
}
|
|
4681
|
-
function
|
|
4682
|
-
const { lineCounter: t, prettyErrors: n } =
|
|
4728
|
+
function qn(s, e = {}) {
|
|
4729
|
+
const { lineCounter: t, prettyErrors: n } = _s(e), i = new Tt(t == null ? void 0 : t.addNewLine), r = new It(e), o = Array.from(r.compose(i.parse(s)));
|
|
4683
4730
|
if (n && t)
|
|
4684
4731
|
for (const l of o)
|
|
4685
|
-
l.errors.forEach(
|
|
4732
|
+
l.errors.forEach(De(s, t)), l.warnings.forEach(De(s, t));
|
|
4686
4733
|
return o.length > 0 ? o : Object.assign([], { empty: !0 }, r.streamInfo());
|
|
4687
4734
|
}
|
|
4688
|
-
function
|
|
4689
|
-
const { lineCounter: t, prettyErrors: n } =
|
|
4735
|
+
function Cs(s, e = {}) {
|
|
4736
|
+
const { lineCounter: t, prettyErrors: n } = _s(e), i = new Tt(t == null ? void 0 : t.addNewLine), r = new It(e);
|
|
4690
4737
|
let o = null;
|
|
4691
4738
|
for (const l of r.compose(i.parse(s), !0, s.length))
|
|
4692
4739
|
if (!o)
|
|
4693
4740
|
o = l;
|
|
4694
4741
|
else if (o.options.logLevel !== "silent") {
|
|
4695
|
-
o.errors.push(new
|
|
4742
|
+
o.errors.push(new z(l.range.slice(0, 2), "MULTIPLE_DOCS", "Source contains multiple documents; please use YAML.parseAllDocuments()"));
|
|
4696
4743
|
break;
|
|
4697
4744
|
}
|
|
4698
|
-
return n && t && (o.errors.forEach(
|
|
4745
|
+
return n && t && (o.errors.forEach(De(s, t)), o.warnings.forEach(De(s, t))), o;
|
|
4699
4746
|
}
|
|
4700
|
-
function
|
|
4747
|
+
function Fn(s, e, t) {
|
|
4701
4748
|
let n;
|
|
4702
4749
|
typeof e == "function" ? n = e : t === void 0 && e && typeof e == "object" && (t = e);
|
|
4703
|
-
const i =
|
|
4750
|
+
const i = Cs(s, t);
|
|
4704
4751
|
if (!i)
|
|
4705
4752
|
return null;
|
|
4706
|
-
if (i.warnings.forEach((r) =>
|
|
4753
|
+
if (i.warnings.forEach((r) => zt(i.options.logLevel, r)), i.errors.length > 0) {
|
|
4707
4754
|
if (i.options.logLevel !== "silent")
|
|
4708
4755
|
throw i.errors[0];
|
|
4709
4756
|
i.errors = [];
|
|
4710
4757
|
}
|
|
4711
4758
|
return i.toJS(Object.assign({ reviver: n }, t));
|
|
4712
4759
|
}
|
|
4713
|
-
function
|
|
4760
|
+
function Rn(s, e, t) {
|
|
4714
4761
|
let n = null;
|
|
4715
4762
|
if (typeof e == "function" || Array.isArray(e) ? n = e : t === void 0 && e && (t = e), typeof t == "string" && (t = t.length), typeof t == "number") {
|
|
4716
4763
|
const i = Math.round(t);
|
|
@@ -4721,70 +4768,70 @@ function Dn(s, e, t) {
|
|
|
4721
4768
|
if (!i)
|
|
4722
4769
|
return;
|
|
4723
4770
|
}
|
|
4724
|
-
return new
|
|
4771
|
+
return ee(s) && !n ? s.toString(t) : new ge(s, n, t).toString(t);
|
|
4725
4772
|
}
|
|
4726
|
-
const
|
|
4773
|
+
const Un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4727
4774
|
__proto__: null,
|
|
4728
|
-
Alias:
|
|
4729
|
-
CST:
|
|
4730
|
-
Composer:
|
|
4731
|
-
Document:
|
|
4732
|
-
Lexer:
|
|
4733
|
-
LineCounter:
|
|
4775
|
+
Alias: Re,
|
|
4776
|
+
CST: Pn,
|
|
4777
|
+
Composer: It,
|
|
4778
|
+
Document: ge,
|
|
4779
|
+
Lexer: Ts,
|
|
4780
|
+
LineCounter: Ls,
|
|
4734
4781
|
Pair: v,
|
|
4735
|
-
Parser:
|
|
4736
|
-
Scalar:
|
|
4737
|
-
Schema:
|
|
4738
|
-
YAMLError:
|
|
4739
|
-
YAMLMap:
|
|
4740
|
-
YAMLParseError:
|
|
4741
|
-
YAMLSeq:
|
|
4742
|
-
YAMLWarning:
|
|
4743
|
-
isAlias:
|
|
4782
|
+
Parser: Tt,
|
|
4783
|
+
Scalar: A,
|
|
4784
|
+
Schema: Xe,
|
|
4785
|
+
YAMLError: At,
|
|
4786
|
+
YAMLMap: K,
|
|
4787
|
+
YAMLParseError: z,
|
|
4788
|
+
YAMLSeq: Q,
|
|
4789
|
+
YAMLWarning: ys,
|
|
4790
|
+
isAlias: x,
|
|
4744
4791
|
isCollection: L,
|
|
4745
|
-
isDocument:
|
|
4746
|
-
isMap:
|
|
4792
|
+
isDocument: ee,
|
|
4793
|
+
isMap: de,
|
|
4747
4794
|
isNode: $,
|
|
4748
|
-
isPair:
|
|
4795
|
+
isPair: T,
|
|
4749
4796
|
isScalar: E,
|
|
4750
|
-
isSeq:
|
|
4751
|
-
parse:
|
|
4752
|
-
parseAllDocuments:
|
|
4753
|
-
parseDocument:
|
|
4754
|
-
stringify:
|
|
4755
|
-
visit:
|
|
4756
|
-
visitAsync:
|
|
4797
|
+
isSeq: pe,
|
|
4798
|
+
parse: Fn,
|
|
4799
|
+
parseAllDocuments: qn,
|
|
4800
|
+
parseDocument: Cs,
|
|
4801
|
+
stringify: Rn,
|
|
4802
|
+
visit: G,
|
|
4803
|
+
visitAsync: Fe
|
|
4757
4804
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
4758
4805
|
export {
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4806
|
+
Re as Alias,
|
|
4807
|
+
Pn as CST,
|
|
4808
|
+
It as Composer,
|
|
4809
|
+
ge as Document,
|
|
4810
|
+
Ts as Lexer,
|
|
4811
|
+
Ls as LineCounter,
|
|
4765
4812
|
v as Pair,
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4813
|
+
Tt as Parser,
|
|
4814
|
+
A as Scalar,
|
|
4815
|
+
Xe as Schema,
|
|
4816
|
+
At as YAMLError,
|
|
4817
|
+
K as YAMLMap,
|
|
4818
|
+
z as YAMLParseError,
|
|
4819
|
+
Q as YAMLSeq,
|
|
4820
|
+
ys as YAMLWarning,
|
|
4821
|
+
Un as default,
|
|
4822
|
+
x as isAlias,
|
|
4776
4823
|
L as isCollection,
|
|
4777
|
-
|
|
4778
|
-
|
|
4824
|
+
ee as isDocument,
|
|
4825
|
+
de as isMap,
|
|
4779
4826
|
$ as isNode,
|
|
4780
|
-
|
|
4827
|
+
T as isPair,
|
|
4781
4828
|
E as isScalar,
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4829
|
+
pe as isSeq,
|
|
4830
|
+
Fn as parse,
|
|
4831
|
+
qn as parseAllDocuments,
|
|
4832
|
+
Cs as parseDocument,
|
|
4833
|
+
Rn as stringify,
|
|
4834
|
+
G as visit,
|
|
4835
|
+
Fe as visitAsync
|
|
4789
4836
|
};
|
|
4790
|
-
//# sourceMappingURL=index-
|
|
4837
|
+
//# sourceMappingURL=index-Dl3Yl0yb.js.map
|