@loopstack/loopstack-studio 0.21.0 → 0.21.1
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/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/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 +1 -1
- 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 +156 -89
- 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/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 +75 -9
- package/dist/index.js +9 -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/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/routing/LocalRouter.js +3 -0
- package/package.json +3 -3
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import { MarkerType, Position } from "../../../node_modules/@xyflow/system/dist/esm/index.js";
|
|
2
|
+
import dagre_esm_default from "../../../node_modules/@dagrejs/dagre/dist/dagre.esm.js";
|
|
3
|
+
var NODE_WIDTH = 130, NODE_HEIGHT = 70, CONDITION_OPERATORS = {
|
|
4
|
+
gt: ">",
|
|
5
|
+
lt: "<",
|
|
6
|
+
eq: "==",
|
|
7
|
+
ne: "!=",
|
|
8
|
+
ge: ">=",
|
|
9
|
+
le: "<="
|
|
10
|
+
};
|
|
11
|
+
function getLayoutedElements(e, d, f = "LR") {
|
|
12
|
+
let p = new dagre_esm_default.graphlib.Graph().setDefaultEdgeLabel(() => ({}));
|
|
13
|
+
p.setGraph({
|
|
14
|
+
rankdir: f,
|
|
15
|
+
nodesep: 100,
|
|
16
|
+
ranksep: 200
|
|
17
|
+
});
|
|
18
|
+
for (let s of e) p.setNode(s.id, {
|
|
19
|
+
width: NODE_WIDTH,
|
|
20
|
+
height: NODE_HEIGHT
|
|
21
|
+
});
|
|
22
|
+
for (let e of d) p.setEdge(e.source, e.target);
|
|
23
|
+
return dagre_esm_default.layout(p), {
|
|
24
|
+
nodes: e.map((e) => {
|
|
25
|
+
let c = p.node(e.id);
|
|
26
|
+
return {
|
|
27
|
+
...e,
|
|
28
|
+
targetPosition: f === "LR" ? Position.Left : Position.Top,
|
|
29
|
+
sourcePosition: f === "LR" ? Position.Right : Position.Bottom,
|
|
30
|
+
position: {
|
|
31
|
+
x: c.x - NODE_WIDTH / 2,
|
|
32
|
+
y: c.y - NODE_HEIGHT / 2
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
}),
|
|
36
|
+
edges: d
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function getTransitions(e, s = /* @__PURE__ */ new Set()) {
|
|
40
|
+
if (!e || typeof e != "object" || s.has(e)) return [];
|
|
41
|
+
try {
|
|
42
|
+
s.add(e);
|
|
43
|
+
} catch {
|
|
44
|
+
return [];
|
|
45
|
+
}
|
|
46
|
+
let c = e;
|
|
47
|
+
if (Array.isArray(c.transitions)) return c.transitions;
|
|
48
|
+
if (c.definition) {
|
|
49
|
+
let e = getTransitions(c.definition, s);
|
|
50
|
+
if (e.length > 0) return e;
|
|
51
|
+
}
|
|
52
|
+
if (c.specification) {
|
|
53
|
+
let e = getTransitions(c.specification, s);
|
|
54
|
+
if (e.length > 0) return e;
|
|
55
|
+
}
|
|
56
|
+
for (let e in c) {
|
|
57
|
+
if (e === "history" || e === "data") continue;
|
|
58
|
+
let l = c[e];
|
|
59
|
+
if (l && typeof l == "object") {
|
|
60
|
+
let e = getTransitions(l, s);
|
|
61
|
+
if (e.length > 0) return e;
|
|
62
|
+
} else if (typeof l == "string" && l.includes("\"transitions\":")) try {
|
|
63
|
+
let e = getTransitions(JSON.parse(l), s);
|
|
64
|
+
if (e.length > 0) return e;
|
|
65
|
+
} catch {}
|
|
66
|
+
}
|
|
67
|
+
return [];
|
|
68
|
+
}
|
|
69
|
+
function formatCondition(e) {
|
|
70
|
+
if (!e) return "";
|
|
71
|
+
let s = e.replace(/\{\{|\}\}/g, "").trim(), c = s.split(/\s+/);
|
|
72
|
+
if (c.length === 3) {
|
|
73
|
+
let [e, s, l] = c, u = CONDITION_OPERATORS[e];
|
|
74
|
+
if (u) return `${s} ${u} ${l}`;
|
|
75
|
+
}
|
|
76
|
+
return s;
|
|
77
|
+
}
|
|
78
|
+
function buildWorkflowGraph(e, s, c, l = [], u, d = !1) {
|
|
79
|
+
let p = collectTransitions(e, s, l), m = extractHistory(s), h = collectStates(p, m), x = buildExecutedMap(m), S = resolveTransitions(p, m), C = findEndStates(h, S), w = findVisitedStates(m), T = computeStateRanks(S), E = buildNodes(h, {
|
|
80
|
+
workflowId: c,
|
|
81
|
+
currentPlace: s?.place,
|
|
82
|
+
endStates: C,
|
|
83
|
+
visitedStates: w,
|
|
84
|
+
visitCounts: buildVisitCounts(m),
|
|
85
|
+
direction: u,
|
|
86
|
+
forceVisible: d
|
|
87
|
+
}), D = buildEdges(S, {
|
|
88
|
+
workflowId: c,
|
|
89
|
+
executedMap: x,
|
|
90
|
+
stateRanks: T,
|
|
91
|
+
forceVisible: d
|
|
92
|
+
});
|
|
93
|
+
return E.length > 1 ? getLayoutedElements(E, D, u) : {
|
|
94
|
+
nodes: E,
|
|
95
|
+
edges: D
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
function collectTransitions(e, s, c) {
|
|
99
|
+
let l = [...c];
|
|
100
|
+
e && l.push(...getTransitions(e)), s && l.push(...getTransitions(s));
|
|
101
|
+
let u = /* @__PURE__ */ new Set();
|
|
102
|
+
return l.filter((e) => {
|
|
103
|
+
let s = Array.isArray(e.from) ? e.from.join(",") : e.from, c = `${e.id}-${s}-${e.to}`;
|
|
104
|
+
return u.has(c) ? !1 : (u.add(c), !0);
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
function extractHistory(e) {
|
|
108
|
+
return e?.history ?? [];
|
|
109
|
+
}
|
|
110
|
+
function collectStates(e, s) {
|
|
111
|
+
let c = new Set(["start"]);
|
|
112
|
+
for (let s of e) {
|
|
113
|
+
let e = Array.isArray(s.from) ? s.from : [s.from];
|
|
114
|
+
for (let s of e) c.add(s ?? "start");
|
|
115
|
+
c.add(s.to);
|
|
116
|
+
}
|
|
117
|
+
for (let e of s) e.data?.place && c.add(e.data.place), e.data?.transition && (c.add(e.data.transition.from ?? "start"), c.add(e.data.transition.to));
|
|
118
|
+
return c;
|
|
119
|
+
}
|
|
120
|
+
function buildVisitCounts(e) {
|
|
121
|
+
let s = new Map([["start", 1]]);
|
|
122
|
+
for (let c of e) {
|
|
123
|
+
let e = c.data?.place;
|
|
124
|
+
e && s.set(e, (s.get(e) ?? 0) + 1);
|
|
125
|
+
}
|
|
126
|
+
return s;
|
|
127
|
+
}
|
|
128
|
+
function buildExecutedMap(e) {
|
|
129
|
+
let s = /* @__PURE__ */ new Map();
|
|
130
|
+
for (let c of e) {
|
|
131
|
+
let e = c.data?.transition;
|
|
132
|
+
if (!e) continue;
|
|
133
|
+
let l = `${e.from ?? "start"}->${e.to}:${e.id}`;
|
|
134
|
+
s.set(l, (s.get(l) ?? 0) + 1);
|
|
135
|
+
}
|
|
136
|
+
return s;
|
|
137
|
+
}
|
|
138
|
+
function resolveTransitions(e, s) {
|
|
139
|
+
let c = [];
|
|
140
|
+
for (let s of e) {
|
|
141
|
+
let e = Array.isArray(s.from) ? s.from : [s.from], l = s;
|
|
142
|
+
for (let u of e) c.push({
|
|
143
|
+
id: s.id,
|
|
144
|
+
from: u ?? "start",
|
|
145
|
+
to: s.to,
|
|
146
|
+
condition: l.if ?? l.condition,
|
|
147
|
+
trigger: s.trigger,
|
|
148
|
+
call: s.call
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
for (let e of s) {
|
|
152
|
+
let s = e.data?.transition;
|
|
153
|
+
if (!s?.id) continue;
|
|
154
|
+
let l = s.from ?? "start";
|
|
155
|
+
c.some((e) => e.from === l && e.to === s.to && e.id === s.id) || c.push({
|
|
156
|
+
id: s.id,
|
|
157
|
+
from: l,
|
|
158
|
+
to: s.to
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
return c;
|
|
162
|
+
}
|
|
163
|
+
function findEndStates(e, s) {
|
|
164
|
+
let c = new Set(s.map((e) => e.from)), l = /* @__PURE__ */ new Set();
|
|
165
|
+
for (let s of e) !c.has(s) && s !== "start" && l.add(s);
|
|
166
|
+
return l;
|
|
167
|
+
}
|
|
168
|
+
function findVisitedStates(e) {
|
|
169
|
+
let s = new Set(["start"]);
|
|
170
|
+
for (let c of e) c.data?.place && s.add(c.data.place), c.data?.transition?.to && s.add(c.data.transition.to);
|
|
171
|
+
return s;
|
|
172
|
+
}
|
|
173
|
+
function computeStateRanks(e) {
|
|
174
|
+
let s = /* @__PURE__ */ new Map();
|
|
175
|
+
for (let c of e) {
|
|
176
|
+
if (c.from === c.to) continue;
|
|
177
|
+
let e = s.get(c.from) ?? [];
|
|
178
|
+
e.push(c.to), s.set(c.from, e);
|
|
179
|
+
}
|
|
180
|
+
let c = new Map([["start", 0]]), l = ["start"];
|
|
181
|
+
for (; l.length > 0;) {
|
|
182
|
+
let e = l.shift(), u = c.get(e);
|
|
183
|
+
for (let d of s.get(e) ?? []) c.has(d) || (c.set(d, u + 1), l.push(d));
|
|
184
|
+
}
|
|
185
|
+
return c;
|
|
186
|
+
}
|
|
187
|
+
function buildNodes(e, s) {
|
|
188
|
+
return Array.from(e).map((e) => ({
|
|
189
|
+
id: `${s.workflowId}-${e}`,
|
|
190
|
+
type: "stateNode",
|
|
191
|
+
position: {
|
|
192
|
+
x: 0,
|
|
193
|
+
y: 0
|
|
194
|
+
},
|
|
195
|
+
data: {
|
|
196
|
+
label: e,
|
|
197
|
+
isStart: e === "start",
|
|
198
|
+
isEnd: s.endStates.has(e),
|
|
199
|
+
isCurrent: e === s.currentPlace,
|
|
200
|
+
isVisited: s.visitedStates.has(e),
|
|
201
|
+
visitCount: s.visitCounts.get(e) ?? 0,
|
|
202
|
+
direction: s.direction,
|
|
203
|
+
forceVisible: s.forceVisible
|
|
204
|
+
}
|
|
205
|
+
}));
|
|
206
|
+
}
|
|
207
|
+
function buildEdges(s, c) {
|
|
208
|
+
let l = /* @__PURE__ */ new Set(), u = [], d = 0;
|
|
209
|
+
for (let f of s) {
|
|
210
|
+
let s = `${f.from}->${f.to}:${f.id}`;
|
|
211
|
+
if (l.has(s)) continue;
|
|
212
|
+
l.add(s);
|
|
213
|
+
let p = c.executedMap.has(s), m = f.trigger === "onEntry", h = f.from === f.to, g = c.stateRanks.get(f.from) ?? 0, _ = c.stateRanks.get(f.to) ?? 0, v = !h && _ <= g, y = p ? "var(--primary)" : "var(--muted-foreground)", b = {
|
|
214
|
+
...f,
|
|
215
|
+
isExecuted: p,
|
|
216
|
+
isSelfLoop: h,
|
|
217
|
+
isBackEdge: v,
|
|
218
|
+
forceVisible: c.forceVisible
|
|
219
|
+
};
|
|
220
|
+
u.push({
|
|
221
|
+
id: `edge-${c.workflowId}-${d++}`,
|
|
222
|
+
source: `${c.workflowId}-${f.from}`,
|
|
223
|
+
target: `${c.workflowId}-${f.to}`,
|
|
224
|
+
...v && {
|
|
225
|
+
sourceHandle: "bottom-source",
|
|
226
|
+
targetHandle: "bottom-target"
|
|
227
|
+
},
|
|
228
|
+
type: "workflowTransition",
|
|
229
|
+
animated: !1,
|
|
230
|
+
style: {
|
|
231
|
+
strokeWidth: p ? 2.5 : 1.5,
|
|
232
|
+
stroke: y,
|
|
233
|
+
strokeDasharray: m ? "4,4" : p ? void 0 : "5,5",
|
|
234
|
+
opacity: p || c.forceVisible ? 1 : .3
|
|
235
|
+
},
|
|
236
|
+
markerEnd: {
|
|
237
|
+
type: MarkerType.ArrowClosed,
|
|
238
|
+
width: 18,
|
|
239
|
+
height: 18,
|
|
240
|
+
color: y
|
|
241
|
+
},
|
|
242
|
+
data: b
|
|
243
|
+
});
|
|
244
|
+
}
|
|
245
|
+
return u;
|
|
246
|
+
}
|
|
247
|
+
export { buildWorkflowGraph, formatCondition, getTransitions };
|
|
@@ -6,8 +6,8 @@ import { Sheet, SheetContent, SheetDescription, SheetHeader, SheetTitle } from "
|
|
|
6
6
|
import { useGetHealthInfo, useWorkerAuth, useWorkerAuthTokenRefresh } from "../../hooks/useAuth.js";
|
|
7
7
|
import { useCallback, useEffect, useRef, useState } from "react";
|
|
8
8
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
|
-
import { RefreshCw } from "lucide-react";
|
|
10
9
|
import { useQueryClient } from "@tanstack/react-query";
|
|
10
|
+
import { RefreshCw } from "lucide-react";
|
|
11
11
|
const Escalation = {
|
|
12
12
|
None: 0,
|
|
13
13
|
Refresh: 1,
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
import CompletionMessagePaper_default from "../../components/messages/CompletionMessagePaper.js";
|
|
2
|
+
import { useRunPipeline } from "../../hooks/useProcessor.js";
|
|
3
|
+
import { useOAuthPopup } from "./useOAuthPopup.js";
|
|
4
|
+
import { c } from "react/compiler-runtime";
|
|
5
|
+
import React, { useCallback, useEffect, useRef } from "react";
|
|
6
|
+
import { Fragment as Fragment$1, jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
var OAuthPromptRenderer = ({ pipeline: l, workflow: u, document: m, isActive: h }) => {
|
|
8
|
+
let g = m.content, _ = (m.ui?.actions ?? []).find((e) => e.transition)?.transition, v = useRunPipeline(), { result: y, open: b, reset: x } = useOAuthPopup(), S = useRef(!1), C = u.availableTransitions?.map((e) => e.id) ?? [], w = useCallback((e, o) => {
|
|
9
|
+
!_ || !C.includes(_) || v.mutate({
|
|
10
|
+
pipelineId: l.id,
|
|
11
|
+
runPipelinePayloadDto: { transition: {
|
|
12
|
+
id: _,
|
|
13
|
+
workflowId: u.id,
|
|
14
|
+
payload: {
|
|
15
|
+
code: e,
|
|
16
|
+
state: o
|
|
17
|
+
}
|
|
18
|
+
} }
|
|
19
|
+
});
|
|
20
|
+
}, [
|
|
21
|
+
_,
|
|
22
|
+
C,
|
|
23
|
+
v,
|
|
24
|
+
l.id,
|
|
25
|
+
u.id
|
|
26
|
+
]);
|
|
27
|
+
useEffect(() => {
|
|
28
|
+
y.status === "success" && !S.current && (S.current = !0, w(y.code, y.state));
|
|
29
|
+
}, [y, w]);
|
|
30
|
+
let T = () => {
|
|
31
|
+
S.current = !1, b({
|
|
32
|
+
authUrl: g.authUrl,
|
|
33
|
+
state: g.state
|
|
34
|
+
});
|
|
35
|
+
}, E = () => {
|
|
36
|
+
x(), S.current = !1, b({
|
|
37
|
+
authUrl: g.authUrl,
|
|
38
|
+
state: g.state
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
return g.status === "success" ? /* @__PURE__ */ jsx(CompletionMessagePaper_default, { children: /* @__PURE__ */ jsx(StatusDisplay, {
|
|
42
|
+
status: "success",
|
|
43
|
+
provider: g.provider,
|
|
44
|
+
message: g.message
|
|
45
|
+
}) }) : g.status === "error" ? /* @__PURE__ */ jsxs(CompletionMessagePaper_default, { children: [/* @__PURE__ */ jsx(StatusDisplay, {
|
|
46
|
+
status: "error",
|
|
47
|
+
provider: g.provider,
|
|
48
|
+
message: g.message
|
|
49
|
+
}), h && /* @__PURE__ */ jsx(RetryButton, { onClick: E })] }) : /* @__PURE__ */ jsx(CompletionMessagePaper_default, { children: /* @__PURE__ */ jsx(PopupResultView, {
|
|
50
|
+
result: y,
|
|
51
|
+
provider: g.provider,
|
|
52
|
+
isActive: h,
|
|
53
|
+
isSubmitting: v.isPending,
|
|
54
|
+
onSignIn: T,
|
|
55
|
+
onRetry: E
|
|
56
|
+
}) });
|
|
57
|
+
}, ProviderLabel = (e) => {
|
|
58
|
+
let o = c(2), { provider: s } = e, u = s.charAt(0).toUpperCase() + s.slice(1), d;
|
|
59
|
+
return o[0] === u ? d = o[1] : (d = /* @__PURE__ */ jsx(Fragment$1, { children: u }), o[0] = u, o[1] = d), d;
|
|
60
|
+
}, StatusDisplay = (e) => {
|
|
61
|
+
let o = c(4), { status: s, provider: u, message: d } = e, f;
|
|
62
|
+
return o[0] !== d || o[1] !== u || o[2] !== s ? (f = /* @__PURE__ */ jsx("div", {
|
|
63
|
+
className: "flex items-center gap-3 py-1",
|
|
64
|
+
children: s === "success" ? /* @__PURE__ */ jsxs(Fragment$1, { children: [/* @__PURE__ */ jsx("span", {
|
|
65
|
+
className: "flex h-6 w-6 items-center justify-center rounded-full bg-green-100 text-green-600 text-sm",
|
|
66
|
+
children: "✓"
|
|
67
|
+
}), /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsxs("div", {
|
|
68
|
+
className: "text-sm font-medium",
|
|
69
|
+
children: ["Connected to ", /* @__PURE__ */ jsx(ProviderLabel, { provider: u })]
|
|
70
|
+
}), d && /* @__PURE__ */ jsx("div", {
|
|
71
|
+
className: "text-xs text-gray-500 mt-0.5",
|
|
72
|
+
children: d
|
|
73
|
+
})] })] }) : /* @__PURE__ */ jsxs(Fragment$1, { children: [/* @__PURE__ */ jsx("span", {
|
|
74
|
+
className: "flex h-6 w-6 items-center justify-center rounded-full bg-red-100 text-red-600 text-sm",
|
|
75
|
+
children: "✗"
|
|
76
|
+
}), /* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsx("div", {
|
|
77
|
+
className: "text-sm font-medium",
|
|
78
|
+
children: "Authentication failed"
|
|
79
|
+
}), d && /* @__PURE__ */ jsx("div", {
|
|
80
|
+
className: "text-xs text-red-500 mt-0.5",
|
|
81
|
+
children: d
|
|
82
|
+
})] })] })
|
|
83
|
+
}), o[0] = d, o[1] = u, o[2] = s, o[3] = f) : f = o[3], f;
|
|
84
|
+
}, RetryButton = (e) => {
|
|
85
|
+
let o = c(2), { onClick: s } = e, u;
|
|
86
|
+
return o[0] === s ? u = o[1] : (u = /* @__PURE__ */ jsx("button", {
|
|
87
|
+
onClick: s,
|
|
88
|
+
className: "mt-3 rounded-md border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-700 shadow-sm hover:bg-gray-50",
|
|
89
|
+
children: "Try again"
|
|
90
|
+
}), o[0] = s, o[1] = u), u;
|
|
91
|
+
}, PopupResultView = (e) => {
|
|
92
|
+
let o = c(47), { result: s, provider: u, isActive: d, isSubmitting: f, onSignIn: p, onRetry: m } = e;
|
|
93
|
+
switch (s.status) {
|
|
94
|
+
case "idle": {
|
|
95
|
+
let e;
|
|
96
|
+
o[0] === u ? e = o[1] : (e = /* @__PURE__ */ jsxs("div", {
|
|
97
|
+
className: "text-sm font-medium mb-1",
|
|
98
|
+
children: [
|
|
99
|
+
"Connect your ",
|
|
100
|
+
/* @__PURE__ */ jsx(ProviderLabel, { provider: u }),
|
|
101
|
+
" account"
|
|
102
|
+
]
|
|
103
|
+
}), o[0] = u, o[1] = e);
|
|
104
|
+
let s;
|
|
105
|
+
o[2] === u ? s = o[3] : (s = /* @__PURE__ */ jsxs("div", {
|
|
106
|
+
className: "text-xs text-gray-500 mb-3",
|
|
107
|
+
children: [
|
|
108
|
+
"This workflow needs access to your ",
|
|
109
|
+
/* @__PURE__ */ jsx(ProviderLabel, { provider: u }),
|
|
110
|
+
" resources."
|
|
111
|
+
]
|
|
112
|
+
}), o[2] = u, o[3] = s);
|
|
113
|
+
let l;
|
|
114
|
+
o[4] !== d || o[5] !== p || o[6] !== u ? (l = d && /* @__PURE__ */ jsxs("button", {
|
|
115
|
+
onClick: p,
|
|
116
|
+
className: "rounded-md border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-700 shadow-sm hover:bg-gray-50",
|
|
117
|
+
children: ["Sign in with ", /* @__PURE__ */ jsx(ProviderLabel, { provider: u })]
|
|
118
|
+
}), o[4] = d, o[5] = p, o[6] = u, o[7] = l) : l = o[7];
|
|
119
|
+
let f;
|
|
120
|
+
return o[8] !== e || o[9] !== s || o[10] !== l ? (f = /* @__PURE__ */ jsxs("div", {
|
|
121
|
+
className: "py-1",
|
|
122
|
+
children: [
|
|
123
|
+
e,
|
|
124
|
+
s,
|
|
125
|
+
l
|
|
126
|
+
]
|
|
127
|
+
}), o[8] = e, o[9] = s, o[10] = l, o[11] = f) : f = o[11], f;
|
|
128
|
+
}
|
|
129
|
+
case "pending": {
|
|
130
|
+
let e, s;
|
|
131
|
+
o[12] === Symbol.for("react.memo_cache_sentinel") ? (e = /* @__PURE__ */ jsxs("div", {
|
|
132
|
+
className: "flex items-center gap-3",
|
|
133
|
+
children: [/* @__PURE__ */ jsx("div", { className: "h-4 w-4 animate-spin rounded-full border-2 border-gray-300 border-t-gray-600" }), /* @__PURE__ */ jsx("div", {
|
|
134
|
+
className: "text-sm font-medium",
|
|
135
|
+
children: "Waiting for authentication..."
|
|
136
|
+
})]
|
|
137
|
+
}), s = /* @__PURE__ */ jsx("div", {
|
|
138
|
+
className: "text-xs text-gray-500 mt-2",
|
|
139
|
+
children: "Complete the sign-in in the popup window."
|
|
140
|
+
}), o[12] = e, o[13] = s) : (e = o[12], s = o[13]);
|
|
141
|
+
let l;
|
|
142
|
+
o[14] !== d || o[15] !== m ? (l = d && /* @__PURE__ */ jsx("div", {
|
|
143
|
+
className: "mt-3 flex gap-2",
|
|
144
|
+
children: /* @__PURE__ */ jsx("button", {
|
|
145
|
+
onClick: m,
|
|
146
|
+
className: "rounded-md border border-gray-300 bg-white px-3 py-1.5 text-xs font-medium text-gray-600 hover:bg-gray-50",
|
|
147
|
+
children: "Retry"
|
|
148
|
+
})
|
|
149
|
+
}), o[14] = d, o[15] = m, o[16] = l) : l = o[16];
|
|
150
|
+
let u;
|
|
151
|
+
return o[17] === l ? u = o[18] : (u = /* @__PURE__ */ jsxs("div", {
|
|
152
|
+
className: "py-1",
|
|
153
|
+
children: [
|
|
154
|
+
e,
|
|
155
|
+
s,
|
|
156
|
+
l
|
|
157
|
+
]
|
|
158
|
+
}), o[17] = l, o[18] = u), u;
|
|
159
|
+
}
|
|
160
|
+
case "success": {
|
|
161
|
+
let e;
|
|
162
|
+
return o[19] !== f || o[20] !== u ? (e = /* @__PURE__ */ jsx("div", {
|
|
163
|
+
className: "py-1",
|
|
164
|
+
children: f ? /* @__PURE__ */ jsxs("div", {
|
|
165
|
+
className: "flex items-center gap-3",
|
|
166
|
+
children: [/* @__PURE__ */ jsx("div", { className: "h-4 w-4 animate-spin rounded-full border-2 border-gray-300 border-t-gray-600" }), /* @__PURE__ */ jsx("div", {
|
|
167
|
+
className: "text-sm font-medium",
|
|
168
|
+
children: "Completing authentication..."
|
|
169
|
+
})]
|
|
170
|
+
}) : /* @__PURE__ */ jsx(StatusDisplay, {
|
|
171
|
+
status: "success",
|
|
172
|
+
provider: u
|
|
173
|
+
})
|
|
174
|
+
}), o[19] = f, o[20] = u, o[21] = e) : e = o[21], e;
|
|
175
|
+
}
|
|
176
|
+
case "error": {
|
|
177
|
+
let e;
|
|
178
|
+
o[22] !== u || o[23] !== s.error ? (e = /* @__PURE__ */ jsx(StatusDisplay, {
|
|
179
|
+
status: "error",
|
|
180
|
+
provider: u,
|
|
181
|
+
message: s.error
|
|
182
|
+
}), o[22] = u, o[23] = s.error, o[24] = e) : e = o[24];
|
|
183
|
+
let l;
|
|
184
|
+
o[25] !== d || o[26] !== m ? (l = d && /* @__PURE__ */ jsx(RetryButton, { onClick: m }), o[25] = d, o[26] = m, o[27] = l) : l = o[27];
|
|
185
|
+
let f;
|
|
186
|
+
return o[28] !== e || o[29] !== l ? (f = /* @__PURE__ */ jsxs("div", {
|
|
187
|
+
className: "py-1",
|
|
188
|
+
children: [e, l]
|
|
189
|
+
}), o[28] = e, o[29] = l, o[30] = f) : f = o[30], f;
|
|
190
|
+
}
|
|
191
|
+
case "timeout": {
|
|
192
|
+
let e;
|
|
193
|
+
o[31] === u ? e = o[32] : (e = /* @__PURE__ */ jsx(StatusDisplay, {
|
|
194
|
+
status: "error",
|
|
195
|
+
provider: u,
|
|
196
|
+
message: "Authentication timed out."
|
|
197
|
+
}), o[31] = u, o[32] = e);
|
|
198
|
+
let s;
|
|
199
|
+
o[33] !== d || o[34] !== m ? (s = d && /* @__PURE__ */ jsx(RetryButton, { onClick: m }), o[33] = d, o[34] = m, o[35] = s) : s = o[35];
|
|
200
|
+
let l;
|
|
201
|
+
return o[36] !== e || o[37] !== s ? (l = /* @__PURE__ */ jsxs("div", {
|
|
202
|
+
className: "py-1",
|
|
203
|
+
children: [e, s]
|
|
204
|
+
}), o[36] = e, o[37] = s, o[38] = l) : l = o[38], l;
|
|
205
|
+
}
|
|
206
|
+
case "blocked": {
|
|
207
|
+
let e;
|
|
208
|
+
o[39] === u ? e = o[40] : (e = /* @__PURE__ */ jsx(StatusDisplay, {
|
|
209
|
+
status: "error",
|
|
210
|
+
provider: u,
|
|
211
|
+
message: "Popup was blocked by the browser. Please allow popups for this site and try again."
|
|
212
|
+
}), o[39] = u, o[40] = e);
|
|
213
|
+
let s;
|
|
214
|
+
o[41] !== d || o[42] !== m ? (s = d && /* @__PURE__ */ jsx(RetryButton, { onClick: m }), o[41] = d, o[42] = m, o[43] = s) : s = o[43];
|
|
215
|
+
let l;
|
|
216
|
+
return o[44] !== e || o[45] !== s ? (l = /* @__PURE__ */ jsxs("div", {
|
|
217
|
+
className: "py-1",
|
|
218
|
+
children: [e, s]
|
|
219
|
+
}), o[44] = e, o[45] = s, o[46] = l) : l = o[46], l;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}, OAuthPromptRenderer_default = OAuthPromptRenderer;
|
|
223
|
+
export { OAuthPromptRenderer_default as default };
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { c } from "react/compiler-runtime";
|
|
2
|
+
import { useCallback, useEffect, useRef, useState } from "react";
|
|
3
|
+
var OAUTH_MESSAGE_TYPE = "loopstack:oauth:callback", POPUP_POLL_INTERVAL_MS = 500, DEFAULT_TIMEOUT_MS = 3e5;
|
|
4
|
+
function isOAuthCallbackMessage(e) {
|
|
5
|
+
return typeof e == "object" && !!e && e.type === OAUTH_MESSAGE_TYPE;
|
|
6
|
+
}
|
|
7
|
+
function openCenteredPopup(e, o, s) {
|
|
8
|
+
let l = `width=${o},height=${s},left=${Math.round(window.screenX + (window.outerWidth - o) / 2)},top=${Math.round(window.screenY + (window.outerHeight - s) / 2)},popup=yes,noopener=no`;
|
|
9
|
+
return window.open(e, "loopstack-oauth", l);
|
|
10
|
+
}
|
|
11
|
+
function useOAuthPopup() {
|
|
12
|
+
let o = c(11), d;
|
|
13
|
+
o[0] === Symbol.for("react.memo_cache_sentinel") ? (d = { status: "idle" }, o[0] = d) : d = o[0];
|
|
14
|
+
let [p, m] = useState(d), h = useRef(null), g = useRef(null), _ = useRef(null), v = useRef(null), y;
|
|
15
|
+
o[1] === Symbol.for("react.memo_cache_sentinel") ? (y = () => {
|
|
16
|
+
g.current &&= (clearTimeout(g.current), null), _.current &&= (clearInterval(_.current), null), v.current = null;
|
|
17
|
+
}, o[1] = y) : y = o[1];
|
|
18
|
+
let b = y, x;
|
|
19
|
+
o[2] === Symbol.for("react.memo_cache_sentinel") ? (x = () => {
|
|
20
|
+
h.current && !h.current.closed && h.current.close(), h.current = null;
|
|
21
|
+
}, o[2] = x) : x = o[2];
|
|
22
|
+
let S = x, C, w;
|
|
23
|
+
o[3] === Symbol.for("react.memo_cache_sentinel") ? (C = () => {
|
|
24
|
+
let e = (e) => {
|
|
25
|
+
if (e.origin !== window.location.origin || !isOAuthCallbackMessage(e.data) || !v.current) return;
|
|
26
|
+
let o = e.data;
|
|
27
|
+
o.error ? m({
|
|
28
|
+
status: "error",
|
|
29
|
+
error: o.errorDescription || o.error
|
|
30
|
+
}) : o.code && o.state ? o.state === v.current ? m({
|
|
31
|
+
status: "success",
|
|
32
|
+
code: o.code,
|
|
33
|
+
state: o.state
|
|
34
|
+
}) : m({
|
|
35
|
+
status: "error",
|
|
36
|
+
error: "State mismatch. Possible CSRF attack."
|
|
37
|
+
}) : m({
|
|
38
|
+
status: "error",
|
|
39
|
+
error: "Invalid callback response."
|
|
40
|
+
}), b(), S();
|
|
41
|
+
};
|
|
42
|
+
return window.addEventListener("message", e), () => window.removeEventListener("message", e);
|
|
43
|
+
}, w = [b, S], o[3] = C, o[4] = w) : (C = o[3], w = o[4]), useEffect(C, w);
|
|
44
|
+
let T, E;
|
|
45
|
+
o[5] === Symbol.for("react.memo_cache_sentinel") ? (T = () => () => {
|
|
46
|
+
b();
|
|
47
|
+
}, E = [b], o[5] = T, o[6] = E) : (T = o[5], E = o[6]), useEffect(T, E);
|
|
48
|
+
let D;
|
|
49
|
+
o[7] === Symbol.for("react.memo_cache_sentinel") ? (D = (e) => {
|
|
50
|
+
let { authUrl: o, state: s, popupWidth: l, popupHeight: u, timeoutMs: d } = e, f = l === void 0 ? 500 : l, p = u === void 0 ? 700 : u, y = d === void 0 ? DEFAULT_TIMEOUT_MS : d;
|
|
51
|
+
b(), S(), v.current = s;
|
|
52
|
+
let x = openCenteredPopup(o, f, p);
|
|
53
|
+
if (!x) {
|
|
54
|
+
m({ status: "blocked" });
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
h.current = x, m({ status: "pending" }), _.current = setInterval(() => {
|
|
58
|
+
x.closed && (_.current && clearInterval(_.current), _.current = null, m(_temp), b());
|
|
59
|
+
}, POPUP_POLL_INTERVAL_MS), g.current = setTimeout(() => {
|
|
60
|
+
m(_temp2), b(), S();
|
|
61
|
+
}, y);
|
|
62
|
+
}, o[7] = D) : D = o[7];
|
|
63
|
+
let O = D, k;
|
|
64
|
+
o[8] === Symbol.for("react.memo_cache_sentinel") ? (k = () => {
|
|
65
|
+
b(), S(), m({ status: "idle" });
|
|
66
|
+
}, o[8] = k) : k = o[8];
|
|
67
|
+
let A = k, j;
|
|
68
|
+
return o[9] === p ? j = o[10] : (j = {
|
|
69
|
+
result: p,
|
|
70
|
+
open: O,
|
|
71
|
+
reset: A
|
|
72
|
+
}, o[9] = p, o[10] = j), j;
|
|
73
|
+
}
|
|
74
|
+
function _temp2(e) {
|
|
75
|
+
return e.status === "pending" ? { status: "timeout" } : e;
|
|
76
|
+
}
|
|
77
|
+
function _temp(e) {
|
|
78
|
+
return e.status === "pending" ? {
|
|
79
|
+
status: "error",
|
|
80
|
+
error: "Authentication window was closed."
|
|
81
|
+
} : e;
|
|
82
|
+
}
|
|
83
|
+
export { useOAuthPopup };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { useStudio } from "../../providers/StudioProvider.js";
|
|
2
|
+
import { Skeleton } from "../../components/ui/skeleton.js";
|
|
3
|
+
import { SidebarMenuSubItem } from "../../components/ui/sidebar.js";
|
|
4
|
+
import { useFetchWorkflowsByNamespace } from "../../hooks/useWorkflows.js";
|
|
5
|
+
import { WorkbenchContextProvider } from "./providers/WorkbenchContextProvider.js";
|
|
6
|
+
import NavigationItem_default from "./components/NavigationItem.js";
|
|
7
|
+
import { useScroll } from "./providers/ScrollProvider.js";
|
|
8
|
+
import { c } from "react/compiler-runtime";
|
|
9
|
+
import React, { useContext } from "react";
|
|
10
|
+
import { Fragment as Fragment$1, jsx, jsxs } from "react/jsx-runtime";
|
|
11
|
+
import { useParams } from "react-router-dom";
|
|
12
|
+
var NavigationItems_default = (m) => {
|
|
13
|
+
let h = c(17), { namespace: g } = m, { router: _ } = useStudio(), { pipelineId: v, clickId: y } = useParams(), b = useContext(WorkbenchContextProvider), x = useFetchWorkflowsByNamespace(g.id), { setScrollTo: S } = useScroll(), C;
|
|
14
|
+
h[0] !== y || h[1] !== v || h[2] !== _ || h[3] !== S ? (C = (e) => {
|
|
15
|
+
S(!0), v && _.navigateToWorkflow(v, e, y);
|
|
16
|
+
}, h[0] = y, h[1] = v, h[2] = _, h[3] = S, h[4] = C) : C = h[4];
|
|
17
|
+
let w = C;
|
|
18
|
+
if (x.isPending) {
|
|
19
|
+
let e;
|
|
20
|
+
h[5] === Symbol.for("react.memo_cache_sentinel") ? (e = /* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsxs("div", {
|
|
21
|
+
className: "flex items-center gap-2 p-2",
|
|
22
|
+
children: [/* @__PURE__ */ jsx(Skeleton, { className: "h-4 w-4 rounded" }), /* @__PURE__ */ jsx(Skeleton, { className: "h-4 flex-1" })]
|
|
23
|
+
}) }), h[5] = e) : e = h[5];
|
|
24
|
+
let f;
|
|
25
|
+
h[6] === Symbol.for("react.memo_cache_sentinel") ? (f = /* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsxs("div", {
|
|
26
|
+
className: "flex items-center gap-2 p-2",
|
|
27
|
+
children: [/* @__PURE__ */ jsx(Skeleton, { className: "h-4 w-4 rounded" }), /* @__PURE__ */ jsx(Skeleton, { className: "h-4 flex-1" })]
|
|
28
|
+
}) }), h[6] = f) : f = h[6];
|
|
29
|
+
let p;
|
|
30
|
+
return h[7] === Symbol.for("react.memo_cache_sentinel") ? (p = /* @__PURE__ */ jsxs(Fragment$1, { children: [
|
|
31
|
+
e,
|
|
32
|
+
f,
|
|
33
|
+
/* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsxs("div", {
|
|
34
|
+
className: "flex items-center gap-2 p-2",
|
|
35
|
+
children: [/* @__PURE__ */ jsx(Skeleton, { className: "h-4 w-4 rounded" }), /* @__PURE__ */ jsx(Skeleton, { className: "h-4 flex-1" })]
|
|
36
|
+
}) })
|
|
37
|
+
] }), h[7] = p) : p = h[7], p;
|
|
38
|
+
}
|
|
39
|
+
if (!v || !x.data?.length) return null;
|
|
40
|
+
let T;
|
|
41
|
+
if (h[8] !== x.data || h[9] !== w || h[10] !== b?.state) {
|
|
42
|
+
let e;
|
|
43
|
+
h[12] !== w || h[13] !== b?.state ? (e = (e) => /* @__PURE__ */ jsx(SidebarMenuSubItem, { children: /* @__PURE__ */ jsx(NavigationItem_default, {
|
|
44
|
+
workflow: e,
|
|
45
|
+
isSelected: b?.state.activeSectionId?.endsWith(e.id) ?? !1,
|
|
46
|
+
navigateTo: w
|
|
47
|
+
}) }, `wf-${e.id}`), h[12] = w, h[13] = b?.state, h[14] = e) : e = h[14], T = x.data.map(e), h[8] = x.data, h[9] = w, h[10] = b?.state, h[11] = T;
|
|
48
|
+
} else T = h[11];
|
|
49
|
+
let E;
|
|
50
|
+
return h[15] === T ? E = h[16] : (E = /* @__PURE__ */ jsx(Fragment$1, { children: T }), h[15] = T, h[16] = E), E;
|
|
51
|
+
};
|
|
52
|
+
export { NavigationItems_default as default };
|