@loopstack/loopstack-studio 0.21.0 → 0.21.2
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/dist/components/LoadingCentered.js +2 -2
- package/dist/components/ai-elements/code-block.js +96 -0
- package/dist/components/ai-elements/message.js +87 -0
- package/dist/components/ai-elements/prompt-input.js +321 -0
- package/dist/components/ai-elements/reasoning.js +124 -0
- package/dist/components/ai-elements/shimmer.js +37 -0
- package/dist/components/ai-elements/sources.js +65 -0
- package/dist/components/ai-elements/tool.js +158 -0
- package/dist/components/content/ErrorAlert.js +17 -0
- package/dist/components/data-table/DataTable.js +99 -96
- package/dist/components/dynamic-form/CodeContent.js +2 -2
- package/dist/components/dynamic-form/FormElement.js +3 -3
- package/dist/components/dynamic-form/FormElementHeader.js +2 -2
- package/dist/components/dynamic-form/ObjectController.js +2 -2
- package/dist/components/layout/MainLayout.js +0 -1
- package/dist/components/lists/ListView.js +62 -59
- package/dist/components/loopstack-elements/link.js +115 -0
- package/dist/components/ui/button-group.js +13 -0
- package/dist/components/ui/command.js +7 -0
- package/dist/components/ui/context-menu.js +63 -0
- package/dist/components/ui/hover-card.js +6 -0
- package/dist/components/ui/input-group.js +85 -0
- package/dist/components/ui/select.js +2 -2
- package/dist/components/ui/table.js +2 -2
- package/dist/components/ui/tabs.js +54 -0
- package/dist/components/ui-widgets/UiActions.js +24 -0
- package/dist/components/ui-widgets/UiWidget.js +43 -0
- package/dist/components/ui-widgets/widgets/AiPromptInput.js +43 -0
- package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +23 -0
- package/dist/components/ui-widgets/widgets/SubmitButton.js +23 -0
- package/dist/events/sse-client-events.js +7 -0
- package/dist/features/code-explorer/CodeExplorer.js +69 -0
- package/dist/features/code-explorer/components/CodeExplorerTree.js +43 -0
- package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +82 -0
- package/dist/features/code-explorer/components/FileContentViewer.js +237 -0
- package/dist/features/code-explorer/components/FileTabsBar.js +191 -0
- package/dist/features/code-explorer/providers/CodeExplorerProvider.js +165 -0
- package/dist/features/code-explorer/utils/fileIcons.js +42 -0
- package/dist/features/dashboard/Dashboard.js +125 -0
- package/dist/features/dashboard/RunItem.js +76 -0
- package/dist/features/dashboard/RunList.js +32 -0
- package/dist/features/debug/components/ConfigFlowViewer.js +79 -0
- package/dist/features/debug/components/PipelineDebugHeader.js +48 -0
- package/dist/features/debug/components/PipelineDebugLegend.js +68 -0
- package/dist/features/debug/components/PipelineFlowViewer.js +109 -0
- package/dist/features/debug/components/pipeline-flow/StateNode.js +111 -0
- package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +41 -0
- package/dist/features/debug/components/pipeline-flow/WorkflowTransitionEdge.js +97 -0
- package/dist/features/debug/lib/edge-paths.js +47 -0
- package/dist/features/debug/lib/flow-utils.js +247 -0
- package/dist/features/health/LocalHealthCheck.js +80 -67
- package/dist/features/oauth/OAuthCallbackPage.js +2 -0
- package/dist/features/oauth/OAuthPromptRenderer.js +223 -0
- package/dist/features/oauth/index.js +3 -0
- package/dist/features/oauth/useOAuthPopup.js +83 -0
- package/dist/features/workbench/NavigationItems.js +52 -0
- package/dist/features/workbench/Workbench.js +101 -0
- package/dist/features/workbench/WorkbenchNavigation.js +38 -0
- package/dist/features/workbench/WorkflowItem.js +67 -0
- package/dist/features/workbench/WorkflowList.js +110 -0
- package/dist/features/workbench/components/DocumentItem.js +27 -0
- package/dist/features/workbench/components/DocumentList.js +40 -0
- package/dist/features/workbench/components/DocumentMetadataPills.js +63 -0
- package/dist/features/workbench/components/DocumentRenderer.js +54 -0
- package/dist/features/workbench/components/NavigationItem.js +68 -0
- package/dist/features/workbench/components/PipelineHistoryList.js +56 -0
- package/dist/features/workbench/components/WorkbenchSettingsModal.js +89 -0
- package/dist/features/workbench/components/WorkbenchSidebar.js +109 -0
- package/dist/features/workbench/components/WorkflowForms.js +22 -0
- package/dist/features/workbench/components/WorkflowHistoryItem.js +144 -0
- package/dist/features/workbench/components/buttons/WorkflowButtons.js +85 -0
- package/dist/features/workbench/components/document-details/DocumentDetails.js +425 -0
- package/dist/features/workbench/components/document-details/PromptDetails.js +146 -0
- package/dist/features/workbench/components/document-renderer/AiMessage.js +56 -0
- package/dist/features/workbench/components/document-renderer/AiMessageContent.js +174 -0
- package/dist/features/workbench/components/document-renderer/DocumentDebugRenderer.js +30 -0
- package/dist/features/workbench/components/document-renderer/DocumentFormRenderer.js +79 -0
- package/dist/features/workbench/components/document-renderer/DocumentMessageRenderer.js +10 -0
- package/dist/features/workbench/components/document-renderer/ErrorMessageRenderer.js +13 -0
- package/dist/features/workbench/components/document-renderer/LinkMessageRenderer.js +17 -0
- package/dist/features/workbench/components/document-renderer/MarkdownMessageRenderer.js +10 -0
- package/dist/features/workbench/components/document-renderer/PlainMessageRenderer.js +9 -0
- package/dist/features/workbench/hooks/useAutoScrollBottom.js +29 -0
- package/dist/features/workbench/hooks/useIntersectionObserver.js +44 -0
- package/dist/features/workbench/hooks/useScrollToListItem.js +23 -0
- package/dist/features/workbench/providers/ScrollProvider.js +22 -0
- package/dist/features/workbench/providers/WorkbenchContextProvider.js +3 -0
- package/dist/features/workspaces/Workspaces.js +166 -99
- package/dist/features/workspaces/components/CreateWorkspace.js +101 -78
- package/dist/features/workspaces/components/ExecutionTimeline.js +1 -1
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/useAuth.js +25 -4
- package/dist/hooks/useDashboard.js +23 -0
- package/dist/hooks/useDocuments.js +45 -0
- package/dist/hooks/useFiles.js +63 -0
- package/dist/hooks/useNamespaceTree.js +27 -0
- package/dist/hooks/useNamespaces.js +34 -0
- package/dist/hooks/usePipelines.js +83 -6
- package/dist/hooks/useWorkflows.js +122 -0
- package/dist/hooks/useWorkspaces.js +49 -29
- package/dist/index.d.ts +88 -10
- package/dist/index.js +11 -1
- package/dist/lib/requireParam.js +6 -0
- package/dist/loopstack-studio.css +1 -1
- package/dist/node_modules/@ai-sdk/provider/dist/index.js +65 -0
- package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +1008 -0
- package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1968 -0
- package/dist/node_modules/@shikijs/core/dist/index.js +1420 -0
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +236 -0
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-html.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/apl.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/astro.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/blade.js +18 -0
- package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/c.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cobol.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/cpp.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/crystal.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/css.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/d.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/edge.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/erb.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/gdresource.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/go.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/graphql.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hack.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/haml.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/handlebars.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/html.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/http.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/hurl.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/java.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/json.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/julia.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/just.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/less.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/liquid.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/log.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/make.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/marko.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mdc.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/move.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/nim.js +18 -0
- package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/perl.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/php.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/po.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/pug.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/python.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/r.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/razor.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/rst.js +20 -0
- package/dist/node_modules/@shikijs/langs/dist/ruby.js +28 -0
- package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/svelte.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/templ.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/twig.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/v.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/vue.js +24 -0
- package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/red.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -0
- package/dist/node_modules/@shikijs/types/dist/index.js +6 -0
- package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +1580 -0
- package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +51 -0
- package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -0
- package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +91 -0
- package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
- package/dist/node_modules/@xyflow/react/dist/esm/index.js +3280 -0
- package/dist/node_modules/@xyflow/system/dist/esm/index.js +1839 -0
- package/dist/node_modules/ai/dist/index.js +1083 -0
- package/dist/node_modules/bail/index.js +4 -0
- package/dist/node_modules/character-entities-html4/index.js +255 -0
- package/dist/node_modules/character-entities-legacy/index.js +2 -0
- package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +6 -1
- package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +4 -10
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +56 -65
- package/dist/node_modules/classcat/index.js +8 -0
- package/dist/node_modules/comma-separated-tokens/index.js +5 -1
- package/dist/node_modules/d3/src/index.js +5 -0
- package/dist/node_modules/d3-drag/src/constant.js +2 -0
- package/dist/node_modules/d3-drag/src/drag.js +112 -0
- package/dist/node_modules/d3-drag/src/event.js +60 -0
- package/dist/node_modules/d3-drag/src/nodrag.js +13 -0
- package/dist/node_modules/d3-drag/src/noevent.js +11 -0
- package/dist/node_modules/d3-interpolate/src/zoom.js +39 -0
- package/dist/node_modules/d3-selection/src/pointer.js +16 -0
- package/dist/node_modules/d3-selection/src/sourceEvent.js +6 -0
- package/dist/node_modules/d3-zoom/src/constant.js +2 -0
- package/dist/node_modules/d3-zoom/src/event.js +26 -0
- package/dist/node_modules/d3-zoom/src/index.js +1 -1
- package/dist/node_modules/d3-zoom/src/noevent.js +7 -0
- package/dist/node_modules/d3-zoom/src/zoom.js +214 -1
- package/dist/node_modules/decode-named-character-reference/index.dom.js +8 -0
- package/dist/node_modules/entities/dist/esm/decode-codepoint.js +35 -0
- package/dist/node_modules/entities/dist/esm/decode.js +129 -0
- package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -0
- package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +5 -0
- package/dist/node_modules/extend/index.js +37 -0
- package/dist/node_modules/hast-util-from-parse5/lib/index.js +121 -0
- package/dist/node_modules/hast-util-raw/lib/index.js +204 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +34 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +150 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +267 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +9 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +65 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +8 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +69 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1936 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +239 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +22 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +1451 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +75 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +155 -0
- package/dist/node_modules/hast-util-sanitize/lib/index.js +159 -0
- package/dist/node_modules/hast-util-sanitize/lib/schema.js +73 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/element.js +47 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/index.js +27 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +5 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/text.js +6 -0
- package/dist/node_modules/hast-util-to-html/lib/index.js +46 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +84 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +8 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +37 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +12 -0
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +251 -0
- package/dist/node_modules/hast-util-to-parse5/lib/index.js +113 -0
- package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -0
- package/dist/node_modules/html-url-attributes/lib/index.js +34 -0
- package/dist/node_modules/html-void-elements/index.js +23 -0
- package/dist/node_modules/inline-style-parser/cjs/index.js +88 -0
- package/dist/node_modules/lodash/_Symbol.js +7 -0
- package/dist/node_modules/lodash/_baseGetTag.js +13 -0
- package/dist/node_modules/lodash/_baseTrim.js +11 -0
- package/dist/node_modules/lodash/_freeGlobal.js +6 -0
- package/dist/node_modules/lodash/_getRawTag.js +17 -0
- package/dist/node_modules/lodash/_objectToString.js +10 -0
- package/dist/node_modules/lodash/_root.js +8 -0
- package/dist/node_modules/lodash/_trimmedEndIndex.js +11 -0
- package/dist/node_modules/lodash/debounce.js +53 -0
- package/dist/node_modules/lodash/isObject.js +10 -0
- package/dist/node_modules/lodash/isObjectLike.js +9 -0
- package/dist/node_modules/lodash/isSymbol.js +12 -0
- package/dist/node_modules/lodash/now.js +10 -0
- package/dist/node_modules/lodash/toNumber.js +22 -0
- package/dist/node_modules/mdast-util-from-markdown/lib/index.js +555 -0
- package/dist/node_modules/mdast-util-to-hast/lib/footer.js +101 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +13 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +20 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +28 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +19 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +13 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +54 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +15 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +16 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +13 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +57 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +18 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +8 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +22 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +33 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +9 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/index.js +17 -0
- package/dist/node_modules/mdast-util-to-hast/lib/revert.js +18 -0
- package/dist/node_modules/mdast-util-to-hast/lib/state.js +106 -0
- package/dist/node_modules/micromark/lib/constructs.js +79 -0
- package/dist/node_modules/micromark/lib/create-tokenizer.js +175 -0
- package/dist/node_modules/micromark/lib/initialize/content.js +32 -0
- package/dist/node_modules/micromark/lib/initialize/document.js +101 -0
- package/dist/node_modules/micromark/lib/initialize/flow.js +23 -0
- package/dist/node_modules/micromark/lib/initialize/text.js +84 -0
- package/dist/node_modules/micromark/lib/parse.js +27 -0
- package/dist/node_modules/micromark/lib/postprocess.js +6 -0
- package/dist/node_modules/micromark/lib/preprocess.js +30 -0
- package/dist/node_modules/micromark-core-commonmark/lib/attention.js +112 -0
- package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +41 -0
- package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +36 -0
- package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +15 -0
- package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +27 -0
- package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +88 -0
- package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +42 -0
- package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +41 -0
- package/dist/node_modules/micromark-core-commonmark/lib/content.js +46 -0
- package/dist/node_modules/micromark-core-commonmark/lib/definition.js +59 -0
- package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +15 -0
- package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +65 -0
- package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +140 -0
- package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +98 -0
- package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +157 -0
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +21 -0
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +18 -0
- package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +12 -0
- package/dist/node_modules/micromark-core-commonmark/lib/list.js +77 -0
- package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +57 -0
- package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +23 -0
- package/dist/node_modules/micromark-factory-destination/index.js +24 -0
- package/dist/node_modules/micromark-factory-label/index.js +18 -0
- package/dist/node_modules/micromark-factory-title/index.js +22 -0
- package/dist/node_modules/micromark-factory-whitespace/index.js +10 -0
- package/dist/node_modules/micromark-util-character/index.js +6 -5
- package/dist/node_modules/micromark-util-chunked/index.js +4 -1
- package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +5 -0
- package/dist/node_modules/micromark-util-decode-string/index.js +15 -0
- package/dist/node_modules/micromark-util-html-tag-name/index.js +7 -0
- package/dist/node_modules/micromark-util-sanitize-uri/index.js +16 -0
- package/dist/node_modules/micromark-util-subtokenize/index.js +33 -0
- package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +55 -0
- package/dist/node_modules/motion/dist/es/react.js +3 -0
- package/dist/node_modules/nanoid/index.browser.js +7 -0
- package/dist/node_modules/nanoid/url-alphabet/index.js +2 -0
- package/dist/node_modules/property-information/index.js +1 -0
- package/dist/node_modules/property-information/lib/hast-to-react.js +20 -0
- package/dist/node_modules/rehype-harden/dist/index.js +168 -0
- package/dist/node_modules/rehype-raw/lib/index.js +10 -0
- package/dist/node_modules/rehype-sanitize/lib/index.js +7 -0
- package/dist/node_modules/remark-parse/lib/index.js +14 -0
- package/dist/node_modules/remark-rehype/lib/index.js +16 -0
- package/dist/node_modules/remend/dist/index.js +459 -0
- package/dist/node_modules/shiki/dist/bundle-full.js +11 -0
- package/dist/node_modules/shiki/dist/langs.js +1278 -0
- package/dist/node_modules/shiki/dist/themes.js +393 -0
- package/dist/node_modules/shiki/dist/wasm.js +2 -0
- package/dist/node_modules/space-separated-tokens/index.js +4 -1
- package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +2189 -0
- package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +33 -0
- package/dist/node_modules/streamdown/dist/index.js +2 -0
- package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +3 -0
- package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +1421 -0
- package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +11 -0
- package/dist/node_modules/stringify-entities/lib/core.js +21 -0
- package/dist/node_modules/stringify-entities/lib/index.js +6 -0
- package/dist/node_modules/stringify-entities/lib/util/format-smart.js +12 -0
- package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -0
- package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -0
- package/dist/node_modules/stringify-entities/lib/util/to-named.js +15 -0
- package/dist/node_modules/style-to-js/cjs/index.js +17 -0
- package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
- package/dist/node_modules/style-to-object/cjs/index.js +21 -0
- package/dist/node_modules/trim-lines/index.js +19 -0
- package/dist/node_modules/trough/lib/index.js +48 -0
- package/dist/node_modules/unified/lib/callable-instance.js +7 -0
- package/dist/node_modules/unified/lib/index.js +160 -0
- package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +6 -0
- package/dist/node_modules/unist-util-position/lib/index.js +20 -0
- package/dist/node_modules/unist-util-stringify-position/lib/index.js +13 -0
- package/dist/node_modules/vfile/lib/index.js +87 -0
- package/dist/node_modules/vfile/lib/minpath.browser.js +97 -0
- package/dist/node_modules/vfile/lib/minproc.browser.js +5 -0
- package/dist/node_modules/vfile/lib/minurl.browser.js +29 -0
- package/dist/node_modules/vfile/lib/minurl.shared.js +4 -0
- package/dist/node_modules/vfile-location/lib/index.js +41 -0
- package/dist/node_modules/vfile-message/lib/index.js +22 -0
- package/dist/node_modules/zod/v3/ZodError.js +79 -0
- package/dist/node_modules/zod/v3/errors.js +6 -0
- package/dist/node_modules/zod/v3/helpers/errorUtil.js +5 -0
- package/dist/node_modules/zod/v3/helpers/parseUtil.js +90 -0
- package/dist/node_modules/zod/v3/helpers/util.js +72 -0
- package/dist/node_modules/zod/v3/locales/en.js +58 -0
- package/dist/node_modules/zod/v3/types.js +2425 -0
- package/dist/node_modules/zod/v4/classic/errors.js +21 -0
- package/dist/node_modules/zod/v4/classic/iso.js +29 -0
- package/dist/node_modules/zod/v4/classic/parse.js +4 -0
- package/dist/node_modules/zod/v4/classic/schemas.js +392 -0
- package/dist/node_modules/zod/v4/core/api.js +532 -0
- package/dist/node_modules/zod/v4/core/checks.js +283 -0
- package/dist/node_modules/zod/v4/core/core.js +44 -0
- package/dist/node_modules/zod/v4/core/doc.js +21 -0
- package/dist/node_modules/zod/v4/core/errors.js +40 -0
- package/dist/node_modules/zod/v4/core/json-schema-processors.js +305 -0
- package/dist/node_modules/zod/v4/core/parse.js +66 -0
- package/dist/node_modules/zod/v4/core/regexes.js +28 -0
- package/dist/node_modules/zod/v4/core/registries.js +38 -0
- package/dist/node_modules/zod/v4/core/schemas.js +863 -0
- package/dist/node_modules/zod/v4/core/to-json-schema.js +220 -0
- package/dist/node_modules/zod/v4/core/util.js +267 -0
- package/dist/node_modules/zod/v4/core/versions.js +6 -0
- package/dist/node_modules/zwitch/index.js +14 -0
- package/dist/pages/DashboardPage.js +58 -0
- package/dist/pages/DebugWorkflowDetailsPage.js +121 -0
- package/dist/pages/DebugWorkflowsPage.js +130 -0
- package/dist/pages/EmbedWorkbenchPage.js +73 -0
- package/dist/pages/PipelineDebugPage.js +114 -0
- package/dist/pages/WorkbenchPage.js +67 -0
- package/dist/pages/WorkspacePage.js +1 -1
- package/dist/providers/ComponentOverridesProvider.js +12 -0
- package/dist/providers/InvalidationEventsProvider.js +43 -0
- package/dist/providers/SseProvider.js +44 -0
- package/dist/routing/LocalRouter.js +3 -0
- package/package.json +3 -3
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
const characterEntitiesHtml4 = {
|
|
2
|
+
nbsp: "\xA0",
|
|
3
|
+
iexcl: "¡",
|
|
4
|
+
cent: "¢",
|
|
5
|
+
pound: "£",
|
|
6
|
+
curren: "¤",
|
|
7
|
+
yen: "¥",
|
|
8
|
+
brvbar: "¦",
|
|
9
|
+
sect: "§",
|
|
10
|
+
uml: "¨",
|
|
11
|
+
copy: "©",
|
|
12
|
+
ordf: "ª",
|
|
13
|
+
laquo: "«",
|
|
14
|
+
not: "¬",
|
|
15
|
+
shy: "",
|
|
16
|
+
reg: "®",
|
|
17
|
+
macr: "¯",
|
|
18
|
+
deg: "°",
|
|
19
|
+
plusmn: "±",
|
|
20
|
+
sup2: "²",
|
|
21
|
+
sup3: "³",
|
|
22
|
+
acute: "´",
|
|
23
|
+
micro: "µ",
|
|
24
|
+
para: "¶",
|
|
25
|
+
middot: "·",
|
|
26
|
+
cedil: "¸",
|
|
27
|
+
sup1: "¹",
|
|
28
|
+
ordm: "º",
|
|
29
|
+
raquo: "»",
|
|
30
|
+
frac14: "¼",
|
|
31
|
+
frac12: "½",
|
|
32
|
+
frac34: "¾",
|
|
33
|
+
iquest: "¿",
|
|
34
|
+
Agrave: "À",
|
|
35
|
+
Aacute: "Á",
|
|
36
|
+
Acirc: "Â",
|
|
37
|
+
Atilde: "Ã",
|
|
38
|
+
Auml: "Ä",
|
|
39
|
+
Aring: "Å",
|
|
40
|
+
AElig: "Æ",
|
|
41
|
+
Ccedil: "Ç",
|
|
42
|
+
Egrave: "È",
|
|
43
|
+
Eacute: "É",
|
|
44
|
+
Ecirc: "Ê",
|
|
45
|
+
Euml: "Ë",
|
|
46
|
+
Igrave: "Ì",
|
|
47
|
+
Iacute: "Í",
|
|
48
|
+
Icirc: "Î",
|
|
49
|
+
Iuml: "Ï",
|
|
50
|
+
ETH: "Ð",
|
|
51
|
+
Ntilde: "Ñ",
|
|
52
|
+
Ograve: "Ò",
|
|
53
|
+
Oacute: "Ó",
|
|
54
|
+
Ocirc: "Ô",
|
|
55
|
+
Otilde: "Õ",
|
|
56
|
+
Ouml: "Ö",
|
|
57
|
+
times: "×",
|
|
58
|
+
Oslash: "Ø",
|
|
59
|
+
Ugrave: "Ù",
|
|
60
|
+
Uacute: "Ú",
|
|
61
|
+
Ucirc: "Û",
|
|
62
|
+
Uuml: "Ü",
|
|
63
|
+
Yacute: "Ý",
|
|
64
|
+
THORN: "Þ",
|
|
65
|
+
szlig: "ß",
|
|
66
|
+
agrave: "à",
|
|
67
|
+
aacute: "á",
|
|
68
|
+
acirc: "â",
|
|
69
|
+
atilde: "ã",
|
|
70
|
+
auml: "ä",
|
|
71
|
+
aring: "å",
|
|
72
|
+
aelig: "æ",
|
|
73
|
+
ccedil: "ç",
|
|
74
|
+
egrave: "è",
|
|
75
|
+
eacute: "é",
|
|
76
|
+
ecirc: "ê",
|
|
77
|
+
euml: "ë",
|
|
78
|
+
igrave: "ì",
|
|
79
|
+
iacute: "í",
|
|
80
|
+
icirc: "î",
|
|
81
|
+
iuml: "ï",
|
|
82
|
+
eth: "ð",
|
|
83
|
+
ntilde: "ñ",
|
|
84
|
+
ograve: "ò",
|
|
85
|
+
oacute: "ó",
|
|
86
|
+
ocirc: "ô",
|
|
87
|
+
otilde: "õ",
|
|
88
|
+
ouml: "ö",
|
|
89
|
+
divide: "÷",
|
|
90
|
+
oslash: "ø",
|
|
91
|
+
ugrave: "ù",
|
|
92
|
+
uacute: "ú",
|
|
93
|
+
ucirc: "û",
|
|
94
|
+
uuml: "ü",
|
|
95
|
+
yacute: "ý",
|
|
96
|
+
thorn: "þ",
|
|
97
|
+
yuml: "ÿ",
|
|
98
|
+
fnof: "ƒ",
|
|
99
|
+
Alpha: "Α",
|
|
100
|
+
Beta: "Β",
|
|
101
|
+
Gamma: "Γ",
|
|
102
|
+
Delta: "Δ",
|
|
103
|
+
Epsilon: "Ε",
|
|
104
|
+
Zeta: "Ζ",
|
|
105
|
+
Eta: "Η",
|
|
106
|
+
Theta: "Θ",
|
|
107
|
+
Iota: "Ι",
|
|
108
|
+
Kappa: "Κ",
|
|
109
|
+
Lambda: "Λ",
|
|
110
|
+
Mu: "Μ",
|
|
111
|
+
Nu: "Ν",
|
|
112
|
+
Xi: "Ξ",
|
|
113
|
+
Omicron: "Ο",
|
|
114
|
+
Pi: "Π",
|
|
115
|
+
Rho: "Ρ",
|
|
116
|
+
Sigma: "Σ",
|
|
117
|
+
Tau: "Τ",
|
|
118
|
+
Upsilon: "Υ",
|
|
119
|
+
Phi: "Φ",
|
|
120
|
+
Chi: "Χ",
|
|
121
|
+
Psi: "Ψ",
|
|
122
|
+
Omega: "Ω",
|
|
123
|
+
alpha: "α",
|
|
124
|
+
beta: "β",
|
|
125
|
+
gamma: "γ",
|
|
126
|
+
delta: "δ",
|
|
127
|
+
epsilon: "ε",
|
|
128
|
+
zeta: "ζ",
|
|
129
|
+
eta: "η",
|
|
130
|
+
theta: "θ",
|
|
131
|
+
iota: "ι",
|
|
132
|
+
kappa: "κ",
|
|
133
|
+
lambda: "λ",
|
|
134
|
+
mu: "μ",
|
|
135
|
+
nu: "ν",
|
|
136
|
+
xi: "ξ",
|
|
137
|
+
omicron: "ο",
|
|
138
|
+
pi: "π",
|
|
139
|
+
rho: "ρ",
|
|
140
|
+
sigmaf: "ς",
|
|
141
|
+
sigma: "σ",
|
|
142
|
+
tau: "τ",
|
|
143
|
+
upsilon: "υ",
|
|
144
|
+
phi: "φ",
|
|
145
|
+
chi: "χ",
|
|
146
|
+
psi: "ψ",
|
|
147
|
+
omega: "ω",
|
|
148
|
+
thetasym: "ϑ",
|
|
149
|
+
upsih: "ϒ",
|
|
150
|
+
piv: "ϖ",
|
|
151
|
+
bull: "•",
|
|
152
|
+
hellip: "…",
|
|
153
|
+
prime: "′",
|
|
154
|
+
Prime: "″",
|
|
155
|
+
oline: "‾",
|
|
156
|
+
frasl: "⁄",
|
|
157
|
+
weierp: "℘",
|
|
158
|
+
image: "ℑ",
|
|
159
|
+
real: "ℜ",
|
|
160
|
+
trade: "™",
|
|
161
|
+
alefsym: "ℵ",
|
|
162
|
+
larr: "←",
|
|
163
|
+
uarr: "↑",
|
|
164
|
+
rarr: "→",
|
|
165
|
+
darr: "↓",
|
|
166
|
+
harr: "↔",
|
|
167
|
+
crarr: "↵",
|
|
168
|
+
lArr: "⇐",
|
|
169
|
+
uArr: "⇑",
|
|
170
|
+
rArr: "⇒",
|
|
171
|
+
dArr: "⇓",
|
|
172
|
+
hArr: "⇔",
|
|
173
|
+
forall: "∀",
|
|
174
|
+
part: "∂",
|
|
175
|
+
exist: "∃",
|
|
176
|
+
empty: "∅",
|
|
177
|
+
nabla: "∇",
|
|
178
|
+
isin: "∈",
|
|
179
|
+
notin: "∉",
|
|
180
|
+
ni: "∋",
|
|
181
|
+
prod: "∏",
|
|
182
|
+
sum: "∑",
|
|
183
|
+
minus: "−",
|
|
184
|
+
lowast: "∗",
|
|
185
|
+
radic: "√",
|
|
186
|
+
prop: "∝",
|
|
187
|
+
infin: "∞",
|
|
188
|
+
ang: "∠",
|
|
189
|
+
and: "∧",
|
|
190
|
+
or: "∨",
|
|
191
|
+
cap: "∩",
|
|
192
|
+
cup: "∪",
|
|
193
|
+
int: "∫",
|
|
194
|
+
there4: "∴",
|
|
195
|
+
sim: "∼",
|
|
196
|
+
cong: "≅",
|
|
197
|
+
asymp: "≈",
|
|
198
|
+
ne: "≠",
|
|
199
|
+
equiv: "≡",
|
|
200
|
+
le: "≤",
|
|
201
|
+
ge: "≥",
|
|
202
|
+
sub: "⊂",
|
|
203
|
+
sup: "⊃",
|
|
204
|
+
nsub: "⊄",
|
|
205
|
+
sube: "⊆",
|
|
206
|
+
supe: "⊇",
|
|
207
|
+
oplus: "⊕",
|
|
208
|
+
otimes: "⊗",
|
|
209
|
+
perp: "⊥",
|
|
210
|
+
sdot: "⋅",
|
|
211
|
+
lceil: "⌈",
|
|
212
|
+
rceil: "⌉",
|
|
213
|
+
lfloor: "⌊",
|
|
214
|
+
rfloor: "⌋",
|
|
215
|
+
lang: "〈",
|
|
216
|
+
rang: "〉",
|
|
217
|
+
loz: "◊",
|
|
218
|
+
spades: "♠",
|
|
219
|
+
clubs: "♣",
|
|
220
|
+
hearts: "♥",
|
|
221
|
+
diams: "♦",
|
|
222
|
+
quot: "\"",
|
|
223
|
+
amp: "&",
|
|
224
|
+
lt: "<",
|
|
225
|
+
gt: ">",
|
|
226
|
+
OElig: "Œ",
|
|
227
|
+
oelig: "œ",
|
|
228
|
+
Scaron: "Š",
|
|
229
|
+
scaron: "š",
|
|
230
|
+
Yuml: "Ÿ",
|
|
231
|
+
circ: "ˆ",
|
|
232
|
+
tilde: "˜",
|
|
233
|
+
ensp: " ",
|
|
234
|
+
emsp: " ",
|
|
235
|
+
thinsp: " ",
|
|
236
|
+
zwnj: "",
|
|
237
|
+
zwj: "",
|
|
238
|
+
lrm: "",
|
|
239
|
+
rlm: "",
|
|
240
|
+
ndash: "–",
|
|
241
|
+
mdash: "—",
|
|
242
|
+
lsquo: "‘",
|
|
243
|
+
rsquo: "’",
|
|
244
|
+
sbquo: "‚",
|
|
245
|
+
ldquo: "“",
|
|
246
|
+
rdquo: "”",
|
|
247
|
+
bdquo: "„",
|
|
248
|
+
dagger: "†",
|
|
249
|
+
Dagger: "‡",
|
|
250
|
+
permil: "‰",
|
|
251
|
+
lsaquo: "‹",
|
|
252
|
+
rsaquo: "›",
|
|
253
|
+
euro: "€"
|
|
254
|
+
};
|
|
255
|
+
export { characterEntitiesHtml4 };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
const characterEntitiesLegacy = /* @__PURE__ */ "AElig.AMP.Aacute.Acirc.Agrave.Aring.Atilde.Auml.COPY.Ccedil.ETH.Eacute.Ecirc.Egrave.Euml.GT.Iacute.Icirc.Igrave.Iuml.LT.Ntilde.Oacute.Ocirc.Ograve.Oslash.Otilde.Ouml.QUOT.REG.THORN.Uacute.Ucirc.Ugrave.Uuml.Yacute.aacute.acirc.acute.aelig.agrave.amp.aring.atilde.auml.brvbar.ccedil.cedil.cent.copy.curren.deg.divide.eacute.ecirc.egrave.eth.euml.frac12.frac14.frac34.gt.iacute.icirc.iexcl.igrave.iquest.iuml.laquo.lt.macr.micro.middot.nbsp.not.ntilde.oacute.ocirc.ograve.ordf.ordm.oslash.otilde.ouml.para.plusmn.pound.quot.raquo.reg.sect.shy.sup1.sup2.sup3.szlig.thorn.times.uacute.ucirc.ugrave.uml.uuml.yacute.yen.yuml".split(".");
|
|
2
|
+
export { characterEntitiesLegacy };
|
|
@@ -42,7 +42,12 @@ const defaultGrammarResolverErrorProvider = { buildRuleNotFoundError(e, t) {
|
|
|
42
42
|
return `Ambiguous alternatives: <${e.ambiguityIndices.join(" ,")}> due to common lookahead prefix\nin <OR${r}> inside <${e.topLevelRule.name}> Rule,\n<${n}> may appears as a prefix path in all these alternatives.\nSee: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#COMMON_PREFIX\nFor Further details.`;
|
|
43
43
|
},
|
|
44
44
|
buildAlternationAmbiguityError(e) {
|
|
45
|
-
let n =
|
|
45
|
+
let n = e.alternation.idx === 0 ? "" : e.alternation.idx, r = e.prefixPath.length === 0, i = `Ambiguous Alternatives Detected: <${e.ambiguityIndices.join(" ,")}> in <OR${n}> inside <${e.topLevelRule.name}> Rule,\n`;
|
|
46
|
+
if (r) i += "These alternatives are all empty (match no tokens), making them indistinguishable.\nOnly the last alternative may be empty.\n";
|
|
47
|
+
else {
|
|
48
|
+
let n = map_default(e.prefixPath, (e) => tokenLabel(e)).join(", ");
|
|
49
|
+
i += `<${n}> may appears as a prefix path in all these alternatives.\n`;
|
|
50
|
+
}
|
|
46
51
|
return i += "See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#AMBIGUOUS_ALTERNATIVES\nFor Further details.", i;
|
|
47
52
|
},
|
|
48
53
|
buildEmptyRepetitionError(e) {
|
|
@@ -28,10 +28,8 @@ import { canMatchCharCode, failedOptimizationPrefixMsg, getOptimizedStartCodesIn
|
|
|
28
28
|
import { Lexer, LexerDefinitionErrorType } from "./lexer_public.js";
|
|
29
29
|
var PATTERN = "PATTERN";
|
|
30
30
|
const DEFAULT_MODE = "defaultMode";
|
|
31
|
-
let SUPPORT_STICKY = typeof (/* @__PURE__ */ RegExp("(?:)")).sticky == "boolean";
|
|
32
31
|
function analyzeTokenTypes(F, I) {
|
|
33
32
|
I = defaults_default(I, {
|
|
34
|
-
useSticky: SUPPORT_STICKY,
|
|
35
33
|
debug: !1,
|
|
36
34
|
safeMode: !1,
|
|
37
35
|
positionTracking: "full",
|
|
@@ -70,14 +68,14 @@ function analyzeTokenTypes(F, I) {
|
|
|
70
68
|
"v",
|
|
71
69
|
"w",
|
|
72
70
|
"W"
|
|
73
|
-
], i[1]) ? i[1] :
|
|
71
|
+
], i[1]) ? i[1] : addStickyFlag(P);
|
|
74
72
|
} else if (isFunction_default(P)) return B = !0, { exec: P };
|
|
75
73
|
else if (typeof P == "object") return B = !0, P;
|
|
76
74
|
else if (typeof P == "string") {
|
|
77
75
|
if (P.length === 1) return P;
|
|
78
76
|
{
|
|
79
|
-
let i = P.replace(/[\\^$.*+?()[\]{}|]/g, "\\$&")
|
|
80
|
-
return
|
|
77
|
+
let i = P.replace(/[\\^$.*+?()[\]{}|]/g, "\\$&");
|
|
78
|
+
return addStickyFlag(new RegExp(i));
|
|
81
79
|
}
|
|
82
80
|
} else throw Error("non exhaustive match");
|
|
83
81
|
});
|
|
@@ -338,10 +336,6 @@ function noMetaChar(i) {
|
|
|
338
336
|
function usesLookAheadOrBehind(i) {
|
|
339
337
|
return /(\(\?=)|(\(\?!)|(\(\?<=)|(\(\?<!)/.test(i.source);
|
|
340
338
|
}
|
|
341
|
-
function addStartOfInput(i) {
|
|
342
|
-
let N = i.ignoreCase ? "i" : "";
|
|
343
|
-
return RegExp(`^(?:${i.source})`, N);
|
|
344
|
-
}
|
|
345
339
|
function addStickyFlag(i) {
|
|
346
340
|
let N = i.ignoreCase ? "iy" : "y";
|
|
347
341
|
return RegExp(`${i.source}`, N);
|
|
@@ -462,4 +456,4 @@ function initCharCodeToOptimizedIndexMap() {
|
|
|
462
456
|
for (let i = 0; i < 65536; i++) charCodeToOptimizedIdxMap[i] = i > 255 ? 255 + ~~(i / 255) : i;
|
|
463
457
|
}
|
|
464
458
|
}
|
|
465
|
-
export { DEFAULT_MODE, LineTerminatorOptimizedTester,
|
|
459
|
+
export { DEFAULT_MODE, LineTerminatorOptimizedTester, analyzeTokenTypes, charCodeToOptimizedIndex, cloneEmptyGroups, minOptimizationVal, performRuntimeChecks, performWarningRuntimeChecks, validatePatterns };
|
|
@@ -15,7 +15,7 @@ import { PRINT_WARNING } from "../../../../@chevrotain/utils/lib/src/print.js";
|
|
|
15
15
|
import { timer } from "../../../../@chevrotain/utils/lib/src/timer.js";
|
|
16
16
|
import { toFastProperties } from "../../../../@chevrotain/utils/lib/src/to-fast-properties.js";
|
|
17
17
|
import { clearRegExpParserCache } from "./reg_exp_parser.js";
|
|
18
|
-
import { DEFAULT_MODE, LineTerminatorOptimizedTester,
|
|
18
|
+
import { DEFAULT_MODE, LineTerminatorOptimizedTester, analyzeTokenTypes, charCodeToOptimizedIndex, cloneEmptyGroups, performRuntimeChecks, performWarningRuntimeChecks, validatePatterns } from "./lexer.js";
|
|
19
19
|
import { augmentTokenTypes } from "./tokens.js";
|
|
20
20
|
import { defaultLexerErrorProvider } from "./lexer_errors_public.js";
|
|
21
21
|
var LexerDefinitionErrorType;
|
|
@@ -36,7 +36,7 @@ var DEFAULT_LEXER_CONFIG = {
|
|
|
36
36
|
};
|
|
37
37
|
Object.freeze(DEFAULT_LEXER_CONFIG);
|
|
38
38
|
var Lexer = class {
|
|
39
|
-
constructor(s,
|
|
39
|
+
constructor(s, b = DEFAULT_LEXER_CONFIG) {
|
|
40
40
|
if (this.lexerDefinition = s, this.lexerDefinitionErrors = [], this.lexerDefinitionWarning = [], this.patternIdxToConfig = {}, this.charCodeToPatternIdxToConfig = {}, this.modes = [], this.emptyGroups = {}, this.trackStartLines = !0, this.trackEndLines = !0, this.hasCustom = !1, this.canModeBeOptimized = {}, this.TRACE_INIT = (e, t) => {
|
|
41
41
|
if (this.traceInitPerf === !0) {
|
|
42
42
|
this.traceInitIndent++;
|
|
@@ -45,19 +45,19 @@ var Lexer = class {
|
|
|
45
45
|
let { time: r, value: i } = timer(t), a = r > 10 ? console.warn : console.log;
|
|
46
46
|
return this.traceInitIndent < this.traceInitMaxIdent && a(`${n}<-- <${e}> time: ${r}ms`), this.traceInitIndent--, i;
|
|
47
47
|
} else return t();
|
|
48
|
-
}, typeof
|
|
49
|
-
this.config = assign_default({}, DEFAULT_LEXER_CONFIG,
|
|
50
|
-
let
|
|
51
|
-
|
|
52
|
-
let m,
|
|
48
|
+
}, typeof b == "boolean") throw Error("The second argument to the Lexer constructor is now an ILexerConfig Object.\na boolean 2nd argument is no longer supported");
|
|
49
|
+
this.config = assign_default({}, DEFAULT_LEXER_CONFIG, b);
|
|
50
|
+
let x = this.config.traceInitPerf;
|
|
51
|
+
x === !0 ? (this.traceInitMaxIdent = Infinity, this.traceInitPerf = !0) : typeof x == "number" && (this.traceInitMaxIdent = x, this.traceInitPerf = !0), this.traceInitIndent = -1, this.TRACE_INIT("Lexer Constructor", () => {
|
|
52
|
+
let m, x = !0;
|
|
53
53
|
this.TRACE_INIT("Lexer Config handling", () => {
|
|
54
54
|
if (this.config.lineTerminatorsPattern === DEFAULT_LEXER_CONFIG.lineTerminatorsPattern) this.config.lineTerminatorsPattern = LineTerminatorOptimizedTester;
|
|
55
55
|
else if (this.config.lineTerminatorCharacters === DEFAULT_LEXER_CONFIG.lineTerminatorCharacters) throw Error("Error: Missing <lineTerminatorCharacters> property on the Lexer config.\n For details See: https://chevrotain.io/docs/guide/resolving_lexer_errors.html#MISSING_LINE_TERM_CHARS");
|
|
56
|
-
if (
|
|
56
|
+
if (b.safeMode && b.ensureOptimizations) throw Error("\"safeMode\" and \"ensureOptimizations\" flags are mutually exclusive.");
|
|
57
57
|
this.trackStartLines = /full|onlyStart/i.test(this.config.positionTracking), this.trackEndLines = /full/i.test(this.config.positionTracking), isArray_default(s) ? m = {
|
|
58
58
|
modes: { defaultMode: clone_default(s) },
|
|
59
59
|
defaultMode: DEFAULT_MODE
|
|
60
|
-
} : (
|
|
60
|
+
} : (x = !1, m = clone_default(s));
|
|
61
61
|
}), this.config.skipValidations === !1 && (this.TRACE_INIT("performRuntimeChecks", () => {
|
|
62
62
|
this.lexerDefinitionErrors = this.lexerDefinitionErrors.concat(performRuntimeChecks(m, this.trackStartLines, this.config.lineTerminatorCharacters));
|
|
63
63
|
}), this.TRACE_INIT("performWarningRuntimeChecks", () => {
|
|
@@ -65,20 +65,20 @@ var Lexer = class {
|
|
|
65
65
|
})), m.modes = m.modes ? m.modes : {}, forEach_default(m.modes, (e, t) => {
|
|
66
66
|
m.modes[t] = reject_default(e, (e) => isUndefined_default(e));
|
|
67
67
|
});
|
|
68
|
-
let
|
|
68
|
+
let E = keys_default(m.modes);
|
|
69
69
|
if (forEach_default(m.modes, (e, t) => {
|
|
70
70
|
this.TRACE_INIT(`Mode: <${t}> processing`, () => {
|
|
71
71
|
if (this.modes.push(t), this.config.skipValidations === !1 && this.TRACE_INIT("validatePatterns", () => {
|
|
72
|
-
this.lexerDefinitionErrors = this.lexerDefinitionErrors.concat(validatePatterns(e,
|
|
72
|
+
this.lexerDefinitionErrors = this.lexerDefinitionErrors.concat(validatePatterns(e, E));
|
|
73
73
|
}), isEmpty_default(this.lexerDefinitionErrors)) {
|
|
74
74
|
augmentTokenTypes(e);
|
|
75
75
|
let n;
|
|
76
76
|
this.TRACE_INIT("analyzeTokenTypes", () => {
|
|
77
77
|
n = analyzeTokenTypes(e, {
|
|
78
78
|
lineTerminatorCharacters: this.config.lineTerminatorCharacters,
|
|
79
|
-
positionTracking:
|
|
80
|
-
ensureOptimizations:
|
|
81
|
-
safeMode:
|
|
79
|
+
positionTracking: b.positionTracking,
|
|
80
|
+
ensureOptimizations: b.ensureOptimizations,
|
|
81
|
+
safeMode: b.safeMode,
|
|
82
82
|
tracer: this.TRACE_INIT
|
|
83
83
|
});
|
|
84
84
|
}), this.patternIdxToConfig[t] = n.patternIdxToConfig, this.charCodeToPatternIdxToConfig[t] = n.charCodeToPatternIdxToConfig, this.emptyGroups = assign_default({}, this.emptyGroups, n.emptyGroups), this.hasCustom = n.hasCustom || this.hasCustom, this.canModeBeOptimized[t] = n.canBeOptimized;
|
|
@@ -91,14 +91,14 @@ var Lexer = class {
|
|
|
91
91
|
forEach_default(this.lexerDefinitionWarning, (e) => {
|
|
92
92
|
PRINT_WARNING(e.message);
|
|
93
93
|
}), this.TRACE_INIT("Choosing sub-methods implementations", () => {
|
|
94
|
-
if (
|
|
94
|
+
if (x && (this.handleModes = noop_default), this.trackStartLines === !1 && (this.computeNewColumn = identity_default), this.trackEndLines === !1 && (this.updateTokenEndLineColumnLocation = noop_default), /full/i.test(this.config.positionTracking)) this.createTokenInstance = this.createFullToken;
|
|
95
95
|
else if (/onlyStart/i.test(this.config.positionTracking)) this.createTokenInstance = this.createStartOnlyToken;
|
|
96
96
|
else if (/onlyOffset/i.test(this.config.positionTracking)) this.createTokenInstance = this.createOffsetOnlyToken;
|
|
97
97
|
else throw Error(`Invalid <positionTracking> config option: "${this.config.positionTracking}"`);
|
|
98
98
|
this.hasCustom ? (this.addToken = this.addTokenUsingPush, this.handlePayload = this.handlePayloadWithCustom) : (this.addToken = this.addTokenUsingMemberAccess, this.handlePayload = this.handlePayloadNoCustom);
|
|
99
99
|
}), this.TRACE_INIT("Failed Optimization Warnings", () => {
|
|
100
100
|
let e = reduce_default(this.canModeBeOptimized, (e, t, n) => (t === !1 && e.push(n), e), []);
|
|
101
|
-
if (
|
|
101
|
+
if (b.ensureOptimizations && !isEmpty_default(e)) throw Error(`Lexer Modes: < ${e.join(", ")} > cannot be optimized.\n Disable the "ensureOptimizations" lexer config flag to silently ignore this and run the lexer in an un-optimized mode.
|
|
102
102
|
Or inspect the console log for details on how to resolve these issues.`);
|
|
103
103
|
}), this.TRACE_INIT("clearRegExpParserCache", () => {
|
|
104
104
|
clearRegExpParserCache();
|
|
@@ -115,17 +115,9 @@ var Lexer = class {
|
|
|
115
115
|
return this.tokenizeInternal(e, t);
|
|
116
116
|
}
|
|
117
117
|
tokenizeInternal(e, t) {
|
|
118
|
-
let n, r, i, a, o, c, l, u, d, f, p, m, h, g, _, v = e, y = v.length,
|
|
118
|
+
let n, r, i, a, o, c, l, u, d, f, p, m, h, g, _, v = e, y = v.length, S = 0, C = 0, w = this.hasCustom ? 0 : Math.floor(e.length / 10), T = Array(w), E = [], D = this.trackStartLines ? 1 : void 0, O = this.trackStartLines ? 1 : void 0, k = cloneEmptyGroups(this.emptyGroups), A = this.trackStartLines, j = this.config.lineTerminatorsPattern, M = 0, N = [], P = [], F = [], I = [];
|
|
119
119
|
Object.freeze(I);
|
|
120
|
-
let L
|
|
121
|
-
function R() {
|
|
122
|
-
return N;
|
|
123
|
-
}
|
|
124
|
-
function z(e) {
|
|
125
|
-
let t = charCodeToOptimizedIndex(e), n = P[t];
|
|
126
|
-
return n === void 0 ? I : n;
|
|
127
|
-
}
|
|
128
|
-
let B = (e) => {
|
|
120
|
+
let L = !1, R = (e) => {
|
|
129
121
|
if (F.length === 1 && e.tokenType.PUSH_MODE === void 0) {
|
|
130
122
|
let t = this.config.errorMessageProvider.buildUnableToPopLexerModeMessage(e);
|
|
131
123
|
E.push({
|
|
@@ -140,31 +132,37 @@ var Lexer = class {
|
|
|
140
132
|
let e = last_default(F);
|
|
141
133
|
N = this.patternIdxToConfig[e], P = this.charCodeToPatternIdxToConfig[e], M = N.length;
|
|
142
134
|
let t = this.canModeBeOptimized[e] && this.config.safeMode === !1;
|
|
143
|
-
L = P && t
|
|
135
|
+
L = !!(P && t);
|
|
144
136
|
}
|
|
145
137
|
};
|
|
146
|
-
function
|
|
138
|
+
function z(e) {
|
|
147
139
|
F.push(e), P = this.charCodeToPatternIdxToConfig[e], N = this.patternIdxToConfig[e], M = N.length, M = N.length;
|
|
148
140
|
let t = this.canModeBeOptimized[e] && this.config.safeMode === !1;
|
|
149
|
-
L = P && t
|
|
141
|
+
L = !!(P && t);
|
|
150
142
|
}
|
|
151
|
-
|
|
152
|
-
let
|
|
153
|
-
for (;
|
|
154
|
-
c = null;
|
|
155
|
-
let t = v.charCodeAt(
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
143
|
+
z.call(this, t);
|
|
144
|
+
let B, V = this.config.recoveryEnabled;
|
|
145
|
+
for (; S < y;) {
|
|
146
|
+
c = null, d = -1;
|
|
147
|
+
let t = v.charCodeAt(S), x;
|
|
148
|
+
if (L) {
|
|
149
|
+
let e = charCodeToOptimizedIndex(t), n = P[e];
|
|
150
|
+
x = n === void 0 ? I : n;
|
|
151
|
+
} else x = N;
|
|
152
|
+
let w = x.length;
|
|
153
|
+
for (n = 0; n < w; n++) {
|
|
154
|
+
B = x[n];
|
|
155
|
+
let r = B.pattern;
|
|
159
156
|
l = null;
|
|
160
|
-
let s =
|
|
161
|
-
if (s === !1 ?
|
|
162
|
-
if (o =
|
|
157
|
+
let s = B.short;
|
|
158
|
+
if (s === !1 ? B.isCustom === !0 ? (_ = r.exec(v, S, T, k), _ === null ? c = null : (c = _[0], d = c.length, _.payload !== void 0 && (l = _.payload))) : (r.lastIndex = S, d = this.matchLength(r, e, S)) : t === s && (d = 1, c = r), d !== -1) {
|
|
159
|
+
if (o = B.longerAlt, o !== void 0) {
|
|
160
|
+
c = e.substring(S, S + d);
|
|
163
161
|
let t = o.length;
|
|
164
162
|
for (i = 0; i < t; i++) {
|
|
165
163
|
let t = N[o[i]], n = t.pattern;
|
|
166
|
-
if (u = null, t.isCustom === !0 ? (_ = n.exec(v,
|
|
167
|
-
c = a, l = u,
|
|
164
|
+
if (u = null, t.isCustom === !0 ? (_ = n.exec(v, S, T, k), _ === null ? a = null : (a = _[0], _.payload !== void 0 && (u = _.payload))) : (n.lastIndex = S, a = this.match(n, e, S)), a && a.length > c.length) {
|
|
165
|
+
c = a, d = a.length, l = u, B = t;
|
|
168
166
|
break;
|
|
169
167
|
}
|
|
170
168
|
}
|
|
@@ -172,29 +170,29 @@ var Lexer = class {
|
|
|
172
170
|
break;
|
|
173
171
|
}
|
|
174
172
|
}
|
|
175
|
-
if (
|
|
176
|
-
if (
|
|
177
|
-
let
|
|
173
|
+
if (d !== -1) {
|
|
174
|
+
if (f = B.group, f !== void 0 && (c = c === null ? e.substring(S, S + d) : c, p = B.tokenTypeIdx, m = this.createTokenInstance(c, S, p, B.tokenType, D, O, d), this.handlePayload(m, l), f === !1 ? C = this.addToken(T, C, m) : k[f].push(m)), A === !0 && B.canLineTerminator === !0) {
|
|
175
|
+
let t = 0, n, r;
|
|
178
176
|
j.lastIndex = 0;
|
|
179
177
|
do
|
|
180
|
-
|
|
181
|
-
while (
|
|
182
|
-
|
|
183
|
-
}
|
|
184
|
-
this.handleModes(
|
|
178
|
+
c = c === null ? e.substring(S, S + d) : c, n = j.test(c), n === !0 && (r = j.lastIndex - 1, t++);
|
|
179
|
+
while (n === !0);
|
|
180
|
+
t === 0 ? O = this.computeNewColumn(O, d) : (D += t, O = d - r, this.updateTokenEndLineColumnLocation(m, f, r, t, D, O, d));
|
|
181
|
+
} else O = this.computeNewColumn(O, d);
|
|
182
|
+
S += d, this.handleModes(B, R, z, m);
|
|
185
183
|
} else {
|
|
186
|
-
let t =
|
|
187
|
-
for (; a === !1 &&
|
|
184
|
+
let t = S, n = D, i = O, a = V === !1;
|
|
185
|
+
for (; a === !1 && S < y;) for (S++, r = 0; r < M; r++) {
|
|
188
186
|
let t = N[r], n = t.pattern, i = t.short;
|
|
189
|
-
if (i === !1 ? t.isCustom === !0 ? a = n.exec(v,
|
|
187
|
+
if (i === !1 ? t.isCustom === !0 ? a = n.exec(v, S, T, k) !== null : (n.lastIndex = S, a = n.exec(e) !== null) : v.charCodeAt(S) === i && (a = !0), a === !0) break;
|
|
190
188
|
}
|
|
191
|
-
if (h =
|
|
189
|
+
if (h = S - t, O = this.computeNewColumn(O, h), g = this.config.errorMessageProvider.buildUnexpectedCharactersMessage(v, t, h, n, i, last_default(F)), E.push({
|
|
192
190
|
offset: t,
|
|
193
191
|
line: n,
|
|
194
192
|
column: i,
|
|
195
193
|
length: h,
|
|
196
194
|
message: g
|
|
197
|
-
}),
|
|
195
|
+
}), V === !1) break;
|
|
198
196
|
}
|
|
199
197
|
}
|
|
200
198
|
return this.hasCustom || (T.length = C), {
|
|
@@ -209,12 +207,6 @@ var Lexer = class {
|
|
|
209
207
|
t(r), i !== void 0 && n.call(this, i);
|
|
210
208
|
} else e.push !== void 0 && n.call(this, e.push);
|
|
211
209
|
}
|
|
212
|
-
chopInput(e, t) {
|
|
213
|
-
return e.substring(t);
|
|
214
|
-
}
|
|
215
|
-
updateLastIndex(e, t) {
|
|
216
|
-
e.lastIndex = t;
|
|
217
|
-
}
|
|
218
210
|
updateTokenEndLineColumnLocation(e, t, n, r, i, a, o) {
|
|
219
211
|
let s, c;
|
|
220
212
|
t !== void 0 && (s = n === o - 1, c = s ? -1 : 0, r === 1 && s === !0 || (e.endLine = i + c, e.endColumn = a - 1 + -c));
|
|
@@ -263,12 +255,11 @@ var Lexer = class {
|
|
|
263
255
|
handlePayloadWithCustom(e, t) {
|
|
264
256
|
t !== null && (e.payload = t);
|
|
265
257
|
}
|
|
266
|
-
|
|
258
|
+
match(e, t, n) {
|
|
267
259
|
return e.test(t) === !0 ? t.substring(n, e.lastIndex) : null;
|
|
268
260
|
}
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
return n === null ? null : n[0];
|
|
261
|
+
matchLength(e, t, n) {
|
|
262
|
+
return e.test(t) === !0 ? e.lastIndex - n : -1;
|
|
272
263
|
}
|
|
273
264
|
};
|
|
274
265
|
Lexer.SKIPPED = "This marks a skipped Token pattern, this means each token identified by it will be consumed and then thrown into oblivion, this can be used to for example to completely ignore whitespace.", Lexer.NA = /NOT_APPLICABLE/;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
function cc(t) {
|
|
2
|
+
if (typeof t == "string" || typeof t == "number") return "" + t;
|
|
3
|
+
let n = "";
|
|
4
|
+
if (Array.isArray(t)) for (let r = 0, i; r < t.length; r++) (i = cc(t[r])) !== "" && (n += (n && " ") + i);
|
|
5
|
+
else for (let e in t) t[e] && (n += (n && " ") + e);
|
|
6
|
+
return n;
|
|
7
|
+
}
|
|
8
|
+
export { cc as default };
|
|
@@ -7,4 +7,8 @@ function parse(e) {
|
|
|
7
7
|
}
|
|
8
8
|
return t;
|
|
9
9
|
}
|
|
10
|
-
|
|
10
|
+
function stringify(e, t) {
|
|
11
|
+
let n = t || {};
|
|
12
|
+
return (e[e.length - 1] === "" ? [...e, ""] : e).join((n.padRight ? " " : "") + "," + (n.padLeft === !1 ? "" : " ")).trim();
|
|
13
|
+
}
|
|
14
|
+
export { parse, stringify };
|
|
@@ -19,6 +19,9 @@ import window_default from "../../d3-selection/src/window.js";
|
|
|
19
19
|
import { styleValue } from "../../d3-selection/src/selection/style.js";
|
|
20
20
|
import selection_default from "../../d3-selection/src/selection/index.js";
|
|
21
21
|
import select_default from "../../d3-selection/src/select.js";
|
|
22
|
+
import pointer_default from "../../d3-selection/src/pointer.js";
|
|
23
|
+
import nodrag_default, { yesdrag } from "../../d3-drag/src/nodrag.js";
|
|
24
|
+
import drag_default from "../../d3-drag/src/drag.js";
|
|
22
25
|
import color, { hsl, rgb } from "../../d3-color/src/color.js";
|
|
23
26
|
import lab, { hcl } from "../../d3-color/src/lab.js";
|
|
24
27
|
import basis_default from "../../d3-interpolate/src/basis.js";
|
|
@@ -32,6 +35,7 @@ import string_default from "../../d3-interpolate/src/string.js";
|
|
|
32
35
|
import value_default from "../../d3-interpolate/src/value.js";
|
|
33
36
|
import round_default from "../../d3-interpolate/src/round.js";
|
|
34
37
|
import { interpolateTransformCss, interpolateTransformSvg } from "../../d3-interpolate/src/transform/index.js";
|
|
38
|
+
import zoom_default from "../../d3-interpolate/src/zoom.js";
|
|
35
39
|
import hcl_default from "../../d3-interpolate/src/hcl.js";
|
|
36
40
|
import { now, timer, timerFlush } from "../../d3-timer/src/timer.js";
|
|
37
41
|
import timeout_default from "../../d3-timer/src/timeout.js";
|
|
@@ -90,4 +94,5 @@ import { monotoneX, monotoneY } from "../../d3-shape/src/curve/monotone.js";
|
|
|
90
94
|
import natural_default from "../../d3-shape/src/curve/natural.js";
|
|
91
95
|
import step_default, { stepAfter, stepBefore } from "../../d3-shape/src/curve/step.js";
|
|
92
96
|
import transform, { Transform, identity } from "../../d3-zoom/src/transform.js";
|
|
97
|
+
import zoom_default$1 from "../../d3-zoom/src/zoom.js";
|
|
93
98
|
import "../../d3-zoom/src/index.js";
|