@loopstack/loopstack-studio 0.25.1 → 0.25.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/_virtual/rolldown_runtime.js +20 -0
- package/dist/api/auth.js +2 -4
- package/dist/api/client.js +7 -9
- package/dist/api/config.js +2 -4
- package/dist/api/dashboard.js +2 -4
- package/dist/api/documents.js +2 -4
- package/dist/api/index.js +19 -21
- package/dist/api/processor.js +2 -4
- package/dist/api/secrets.js +2 -4
- package/dist/api/workflows.js +2 -4
- package/dist/api/workspaces.js +2 -4
- package/dist/app/EnvironmentEmbedRoot.js +31 -24
- package/dist/components/ai-elements/code-block.js +71 -53
- package/dist/components/ai-elements/message.js +82 -41
- package/dist/components/ai-elements/prompt-input.js +253 -162
- package/dist/components/ai-elements/reasoning.js +116 -78
- package/dist/components/ai-elements/shimmer.js +35 -23
- package/dist/components/ai-elements/sources.js +58 -29
- package/dist/components/data-table/ConfirmDialog.js +30 -14
- package/dist/components/data-table/DataList.js +198 -138
- package/dist/components/data-table/DataTable.js +234 -168
- package/dist/components/data-table/DataTableBatchAction.js +27 -18
- package/dist/components/data-table/DataTableFilters.js +78 -53
- package/dist/components/data-table/DataTablePagination.js +104 -72
- package/dist/components/data-table/DataTableToolbar.js +65 -53
- package/dist/components/dynamic-form/ArrayController.js +103 -85
- package/dist/components/dynamic-form/CodeContent.js +36 -28
- package/dist/components/dynamic-form/Form.js +56 -43
- package/dist/components/dynamic-form/FormBody.js +10 -12
- package/dist/components/dynamic-form/FormElement.js +41 -31
- package/dist/components/dynamic-form/FormElementHeader.js +20 -12
- package/dist/components/dynamic-form/InputController.js +38 -36
- package/dist/components/dynamic-form/MarkdownContent.js +74 -53
- package/dist/components/dynamic-form/MermaidDiagram.js +24 -22
- package/dist/components/dynamic-form/ObjectController.js +32 -24
- package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +47 -35
- package/dist/components/dynamic-form/fields/CheckboxField.js +48 -39
- package/dist/components/dynamic-form/fields/CodeViewField.js +50 -42
- package/dist/components/dynamic-form/fields/InputField.js +90 -62
- package/dist/components/dynamic-form/fields/MarkdownViewField.js +19 -16
- package/dist/components/dynamic-form/fields/RadioField.js +62 -46
- package/dist/components/dynamic-form/fields/SelectField.js +58 -40
- package/dist/components/dynamic-form/fields/SliderField.js +100 -94
- package/dist/components/dynamic-form/fields/SwitchField.js +61 -42
- package/dist/components/dynamic-form/fields/TextareaField.js +72 -53
- package/dist/components/dynamic-form/fields/utils/text-validation-utils.js +2 -4
- package/dist/components/dynamic-form/hooks/useArrayDefaultValue.js +5 -6
- package/dist/components/dynamic-form/hooks/useFieldConfig.js +20 -19
- package/dist/components/dynamic-form/hooks/useMergeParentKey.js +2 -4
- package/dist/components/dynamic-form/hooks/useSortPropertyNames.js +2 -4
- package/dist/components/feedback/ErrorAlert.js +17 -11
- package/dist/components/feedback/ErrorBoundary.js +14 -16
- package/dist/components/feedback/ErrorSnackbar.js +30 -13
- package/dist/components/feedback/LoadingCentered.js +28 -15
- package/dist/components/feedback/Snackbar.js +44 -43
- package/dist/components/feedback/index.js +5 -5
- package/dist/components/index.js +47 -47
- package/dist/components/layout/MainLayout.js +25 -17
- package/dist/components/layout/StudioSidebar.js +202 -132
- package/dist/components/lists/CustomListView.js +74 -49
- package/dist/components/lists/ListView.js +102 -66
- package/dist/components/loopstack-elements/link.js +104 -65
- package/dist/components/loopstack-elements/tool.js +142 -70
- package/dist/components/messages/CompletionMessagePaper.js +85 -53
- package/dist/components/page/PageBreadcrumbs.js +83 -64
- package/dist/components/ui/DiscordLogo.js +22 -16
- package/dist/components/ui/GoogleLogo.js +44 -40
- package/dist/components/ui/accordion.js +52 -31
- package/dist/components/ui/alert-dialog.js +109 -59
- package/dist/components/ui/alert.js +36 -22
- package/dist/components/ui/avatar.js +35 -21
- package/dist/components/ui/badge.js +17 -13
- package/dist/components/ui/breadcrumb.js +82 -46
- package/dist/components/ui/button-group.js +5 -5
- package/dist/components/ui/button.js +21 -17
- package/dist/components/ui/card.js +74 -40
- package/dist/components/ui/checkbox.js +23 -17
- package/dist/components/ui/collapsible.js +25 -17
- package/dist/components/ui/command.js +2 -1
- package/dist/components/ui/context-menu.js +52 -32
- package/dist/components/ui/dialog.js +107 -62
- package/dist/components/ui/drawer.js +99 -54
- package/dist/components/ui/dropdown-menu.js +159 -91
- package/dist/components/ui/hover-card.js +2 -1
- package/dist/components/ui/input-group.js +56 -36
- package/dist/components/ui/input.js +15 -11
- package/dist/components/ui/label.js +15 -11
- package/dist/components/ui/popover.js +38 -25
- package/dist/components/ui/radio-group.js +33 -22
- package/dist/components/ui/scroll-area.js +43 -28
- package/dist/components/ui/select.js +134 -73
- package/dist/components/ui/separator.js +17 -13
- package/dist/components/ui/sheet.js +105 -60
- package/dist/components/ui/sidebar.js +451 -269
- package/dist/components/ui/skeleton.js +14 -10
- package/dist/components/ui/slider.js +15 -17
- package/dist/components/ui/switch.js +21 -15
- package/dist/components/ui/table.js +85 -46
- package/dist/components/ui/tabs.js +45 -26
- package/dist/components/ui/textarea.js +14 -10
- package/dist/components/ui/tooltip.js +41 -26
- package/dist/components/ui-widgets/UiActions.js +37 -30
- package/dist/components/ui-widgets/UiWidget.js +46 -34
- package/dist/components/ui-widgets/widgets/AiPromptInput.js +42 -28
- package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +21 -16
- package/dist/components/ui-widgets/widgets/SandboxRun.js +26 -19
- package/dist/components/ui-widgets/widgets/SubmitButton.js +20 -15
- package/dist/events/api-client-events.js +2 -4
- package/dist/events/sse-client-events.js +2 -4
- package/dist/features/code-explorer/CodeExplorer.js +2 -1
- package/dist/features/code-explorer/components/CodeExplorerTree.js +2 -2
- package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +29 -31
- package/dist/features/code-explorer/components/FileContentViewer.js +148 -108
- package/dist/features/code-explorer/components/FileTabsBar.js +2 -1
- package/dist/features/code-explorer/components/FileTabsBarBase.js +169 -134
- package/dist/features/code-explorer/index.js +1 -1
- package/dist/features/code-explorer/providers/CodeExplorerProvider.js +4 -4
- package/dist/features/code-explorer/utils/fileIcons.js +39 -41
- package/dist/features/dashboard/Dashboard.js +121 -79
- package/dist/features/dashboard/RunItem.js +68 -50
- package/dist/features/dashboard/RunList.js +28 -17
- package/dist/features/debug/components/ConfigFlowViewer.js +67 -49
- package/dist/features/debug/components/WorkflowDebugHeader.js +46 -30
- package/dist/features/debug/components/WorkflowDebugLegend.js +68 -56
- package/dist/features/debug/components/WorkflowFlowViewer.js +96 -76
- package/dist/features/debug/components/workflow-flow/StateNode.js +102 -73
- package/dist/features/debug/components/workflow-flow/WorkflowGraph.js +40 -35
- package/dist/features/debug/components/workflow-flow/WorkflowTransitionEdge.js +94 -61
- package/dist/features/debug/index.js +3 -3
- package/dist/features/debug/lib/edge-paths.js +31 -33
- package/dist/features/debug/lib/flow-utils.js +145 -147
- package/dist/features/documents/DocumentRenderer.js +77 -73
- package/dist/features/documents/components/DocumentItem.js +24 -21
- package/dist/features/documents/components/DocumentList.js +45 -39
- package/dist/features/documents/components/DocumentMetadataPills.js +59 -44
- package/dist/features/documents/document-details/DocumentDetails.js +413 -298
- package/dist/features/documents/document-details/PromptDetails.js +142 -105
- package/dist/features/documents/index.js +4 -4
- package/dist/features/documents/renderers/AiMessage.js +48 -39
- package/dist/features/documents/renderers/AiMessageContent.js +164 -108
- package/dist/features/documents/renderers/ChoicesRenderer.js +89 -77
- package/dist/features/documents/renderers/ClaudeMessage.js +91 -74
- package/dist/features/documents/renderers/ConfirmPromptRenderer.js +53 -44
- package/dist/features/documents/renderers/DocumentDebugRenderer.js +30 -26
- package/dist/features/documents/renderers/DocumentFormRenderer.js +85 -69
- package/dist/features/documents/renderers/DocumentMessageRenderer.js +9 -10
- package/dist/features/documents/renderers/ErrorMessageRenderer.js +13 -11
- package/dist/features/documents/renderers/LinkMessageRenderer.js +14 -15
- package/dist/features/documents/renderers/MarkdownMessageRenderer.js +10 -8
- package/dist/features/documents/renderers/PlainMessageRenderer.js +9 -7
- package/dist/features/documents/renderers/SecretInputRenderer.js +35 -37
- package/dist/features/documents/renderers/TextPromptRenderer.js +54 -45
- package/dist/features/documents/renderers/useDocumentTransition.js +7 -9
- package/dist/features/health/LocalHealthCheck.js +53 -54
- package/dist/features/health/index.js +1 -1
- package/dist/features/oauth/OAuthCallbackPage.js +2 -2
- package/dist/features/oauth/OAuthPromptRenderer.js +197 -148
- package/dist/features/oauth/index.js +2 -2
- package/dist/features/oauth/useOAuthPopup.js +71 -52
- package/dist/features/runs/Runs.js +187 -145
- package/dist/features/workbench/Workbench.js +98 -72
- package/dist/features/workbench/WorkflowItem.js +68 -49
- package/dist/features/workbench/WorkflowList.js +66 -51
- package/dist/features/workbench/components/NewRunDialog.js +309 -212
- package/dist/features/workbench/components/RemoteFileTabsBar.js +17 -18
- package/dist/features/workbench/components/RemoteFileTree.js +85 -54
- package/dist/features/workbench/components/WorkbenchFilesPanel.js +63 -52
- package/dist/features/workbench/components/WorkbenchFloatingPanel.js +51 -34
- package/dist/features/workbench/components/WorkbenchFlowPanel.js +44 -35
- package/dist/features/workbench/components/WorkbenchIconSidebar.js +68 -50
- package/dist/features/workbench/components/WorkbenchPreviewPanel.js +49 -51
- package/dist/features/workbench/components/WorkbenchSecretsPanel.js +172 -143
- package/dist/features/workbench/components/WorkbenchSettingsModal.js +60 -49
- package/dist/features/workbench/components/WorkflowForms.js +23 -17
- package/dist/features/workbench/components/WorkflowHistoryItem.js +122 -96
- package/dist/features/workbench/components/WorkflowHistoryList.js +54 -31
- package/dist/features/workbench/components/buttons/WorkflowButtons.js +99 -70
- package/dist/features/workbench/hooks/useAutoScrollBottom.js +25 -21
- package/dist/features/workbench/hooks/useScrollToListItem.js +21 -20
- package/dist/features/workbench/hooks/useWorkflowData.js +44 -31
- package/dist/features/workbench/hooks/useWorkflowListState.js +12 -13
- package/dist/features/workbench/index.js +7 -7
- package/dist/features/workbench/providers/RemoteFileExplorerProvider.js +138 -123
- package/dist/features/workbench/providers/ScrollProvider.js +19 -15
- package/dist/features/workbench/providers/WorkbenchLayoutProvider.js +75 -76
- package/dist/features/workspaces/Workspaces.js +226 -161
- package/dist/features/workspaces/components/CreateWorkspace.js +194 -137
- package/dist/features/workspaces/components/EnvironmentSlotSelector.js +25 -27
- package/dist/features/workspaces/components/ExecutionTimeline.js +185 -143
- package/dist/features/workspaces/components/NewWorkflowRunDialog.js +26 -18
- package/dist/features/workspaces/components/WorkflowRunForm.js +133 -85
- package/dist/features/workspaces/components/WorkspaceHomePage.js +80 -59
- package/dist/features/workspaces/components/workflow-form/ArgumentsView.js +69 -52
- package/dist/features/workspaces/components/workflow-form/HeaderSection.js +41 -27
- package/dist/features/workspaces/components/workflow-form/SelectionView.js +103 -64
- package/dist/features/workspaces/index.js +3 -3
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/query-keys.js +31 -33
- package/dist/hooks/use-mobile.js +11 -12
- package/dist/hooks/useApi.js +14 -16
- package/dist/hooks/useAuth.js +53 -38
- package/dist/hooks/useConfig.js +37 -26
- package/dist/hooks/useDashboard.js +15 -12
- package/dist/hooks/useDebounce.js +11 -12
- package/dist/hooks/useDocuments.js +35 -23
- package/dist/hooks/useFiles.js +2 -1
- package/dist/hooks/useProcessor.js +17 -14
- package/dist/hooks/useSecrets.js +64 -45
- package/dist/hooks/useWorkflows.js +161 -109
- package/dist/hooks/useWorkspaces.js +123 -83
- package/dist/index.d.ts +1304 -0
- package/dist/index.js +80 -80
- package/dist/lib/requireParam.js +2 -4
- package/dist/lib/utils.js +5 -7
- package/dist/node_modules/@braintree/sanitize-url/dist/constants.js +4 -6
- package/dist/node_modules/@braintree/sanitize-url/dist/index.js +6 -8
- package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +17 -19
- package/dist/node_modules/@chevrotain/gast/lib/src/model.js +71 -73
- package/dist/node_modules/@chevrotain/gast/lib/src/visitor.js +13 -16
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/api.js +2 -2
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/base-regexp-visitor.js +2 -4
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/character-classes.js +34 -36
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/regexp-parser.js +110 -138
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/utils.js +11 -13
- package/dist/node_modules/@chevrotain/utils/lib/src/print.js +3 -5
- package/dist/node_modules/@chevrotain/utils/lib/src/timer.js +2 -4
- package/dist/node_modules/@chevrotain/utils/lib/src/to-fast-properties.js +2 -4
- package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1913 -1812
- package/dist/node_modules/@iconify/utils/lib/customisations/defaults.js +6 -8
- package/dist/node_modules/@iconify/utils/lib/icon/defaults.js +8 -10
- package/dist/node_modules/@iconify/utils/lib/icon/merge.js +6 -8
- package/dist/node_modules/@iconify/utils/lib/icon/name.js +6 -8
- package/dist/node_modules/@iconify/utils/lib/icon/transformations.js +2 -4
- package/dist/node_modules/@iconify/utils/lib/icon-set/get-icon.js +10 -12
- package/dist/node_modules/@iconify/utils/lib/icon-set/tree.js +2 -4
- package/dist/node_modules/@iconify/utils/lib/svg/build.js +18 -20
- package/dist/node_modules/@iconify/utils/lib/svg/defs.js +6 -8
- package/dist/node_modules/@iconify/utils/lib/svg/html.js +2 -4
- package/dist/node_modules/@iconify/utils/lib/svg/id.js +8 -10
- package/dist/node_modules/@iconify/utils/lib/svg/size.js +5 -7
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-YZFGNWBL.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-2KRD3SAO.js +17 -20
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-67CJDMHE.js +17 -20
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-7N4EOEYR.js +23 -28
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-AA7GKIK3.js +21 -26
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-CIAEETIT.js +17 -20
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FOC6F5B3.js +17 -20
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-K5T4RW27.js +425 -436
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-KGLVRYIC.js +17 -20
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-LIHQZDEY.js +38 -45
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-ORNJ4GCN.js +22 -27
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-7Q5UKJZL.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-OMHHGYJF.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-4T2RLAQJ.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-ZZUOXDRM.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-PYXPWWZC.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treeView-SZITEDCU.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-W4RFUUIX.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/wardley-RL74JXVD.js +2 -2
- package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +52 -56
- package/dist/node_modules/@shikijs/core/dist/index.js +1119 -583
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +148 -163
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -4
- package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/angular-html.js +13 -15
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/apl.js +13 -15
- package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/astro.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/blade.js +17 -19
- package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/c.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/cobol.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/cpp.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/crystal.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/css.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/d.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/edge.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/erb.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/gdresource.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/go.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/graphql.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/hack.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/haml.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/handlebars.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/html.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/http.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/hurl.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/java.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/json.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/julia.js +13 -15
- package/dist/node_modules/@shikijs/langs/dist/just.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/less.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/liquid.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/log.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/make.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/marko.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/mdc.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/move.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/nim.js +17 -19
- package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/perl.js +13 -15
- package/dist/node_modules/@shikijs/langs/dist/php.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/po.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/pug.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/python.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/r.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/razor.js +7 -9
- package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/rst.js +19 -21
- package/dist/node_modules/@shikijs/langs/dist/ruby.js +27 -29
- package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/svelte.js +11 -13
- package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/templ.js +9 -11
- package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/twig.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/v.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +15 -17
- package/dist/node_modules/@shikijs/langs/dist/vue.js +23 -25
- package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -5
- package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -3
- package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -3
- package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/red.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -4
- package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -4
- package/dist/node_modules/@shikijs/types/dist/index.js +2 -4
- package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +947 -949
- package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +30 -30
- package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -6
- package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +64 -64
- package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
- package/dist/node_modules/@upsetjs/venn.js/build/venn.esm.js +693 -695
- package/dist/node_modules/@xyflow/react/dist/esm/index.js +881 -883
- package/dist/node_modules/@xyflow/system/dist/esm/index.js +1221 -1223
- package/dist/node_modules/bail/index.js +2 -4
- package/dist/node_modules/ccount/index.js +2 -4
- package/dist/node_modules/character-entities-html4/index.js +2 -4
- package/dist/node_modules/character-entities-legacy/index.js +2 -4
- package/dist/node_modules/chevrotain/lib/src/api.js +10 -10
- package/dist/node_modules/chevrotain/lib/src/lang/lang_extensions.js +4 -6
- package/dist/node_modules/chevrotain/lib/src/parse/constants.js +2 -4
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst.js +9 -11
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +15 -17
- package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +17 -19
- package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +24 -26
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +201 -203
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +16 -18
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +17 -19
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +12 -14
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +140 -142
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/keys.js +4 -5
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +25 -27
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +149 -151
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +14 -16
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +38 -40
- package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +64 -65
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +11 -13
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +101 -103
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +5 -7
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +45 -47
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +6 -8
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +73 -75
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +180 -182
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +23 -24
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +26 -28
- package/dist/node_modules/chevrotain/lib/src/parse/parser/utils/apply_mixins.js +2 -4
- package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +246 -246
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_errors_public.js +2 -4
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +31 -33
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +64 -67
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp_parser.js +10 -12
- package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +35 -36
- package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +26 -28
- package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +240 -242
- package/dist/node_modules/chevrotain-allstar/lib/atn.js +133 -134
- package/dist/node_modules/chevrotain-allstar/lib/dfa.js +10 -11
- package/dist/node_modules/chevrotain-allstar/lib/index.js +1 -1
- package/dist/node_modules/classcat/index.js +3 -5
- package/dist/node_modules/comma-separated-tokens/index.js +3 -5
- package/dist/node_modules/cose-base/cose-base.js +21 -21
- package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +7940 -7937
- package/dist/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js +6 -8
- package/dist/node_modules/cytoscape-fcose/cytoscape-fcose.js +6 -8
- package/dist/node_modules/cytoscape-fcose/node_modules/cose-base/cose-base.js +20 -20
- package/dist/node_modules/cytoscape-fcose/node_modules/layout-base/layout-base.js +4 -6
- package/dist/node_modules/d3/src/index.js +95 -95
- package/dist/node_modules/d3-array/src/ascending.js +2 -4
- package/dist/node_modules/d3-array/src/bisect.js +8 -8
- package/dist/node_modules/d3-array/src/bisector.js +6 -8
- package/dist/node_modules/d3-array/src/descending.js +2 -4
- package/dist/node_modules/d3-array/src/max.js +2 -4
- package/dist/node_modules/d3-array/src/min.js +2 -4
- package/dist/node_modules/d3-array/src/number.js +2 -4
- package/dist/node_modules/d3-array/src/range.js +2 -4
- package/dist/node_modules/d3-array/src/ticks.js +11 -13
- package/dist/node_modules/d3-axis/src/axis.js +46 -48
- package/dist/node_modules/d3-axis/src/identity.js +2 -4
- package/dist/node_modules/d3-brush/src/brush.js +4 -6
- package/dist/node_modules/d3-color/src/color.js +84 -86
- package/dist/node_modules/d3-color/src/define.js +3 -5
- package/dist/node_modules/d3-color/src/lab.js +43 -45
- package/dist/node_modules/d3-color/src/math.js +2 -4
- package/dist/node_modules/d3-dispatch/src/dispatch.js +17 -18
- package/dist/node_modules/d3-drag/src/constant.js +2 -4
- package/dist/node_modules/d3-drag/src/drag.js +75 -77
- package/dist/node_modules/d3-drag/src/event.js +3 -5
- package/dist/node_modules/d3-drag/src/nodrag.js +9 -11
- package/dist/node_modules/d3-drag/src/noevent.js +4 -6
- package/dist/node_modules/d3-ease/src/cubic.js +2 -4
- package/dist/node_modules/d3-format/src/defaultLocale.js +6 -8
- package/dist/node_modules/d3-format/src/exponent.js +4 -6
- package/dist/node_modules/d3-format/src/formatDecimal.js +3 -5
- package/dist/node_modules/d3-format/src/formatGroup.js +2 -4
- package/dist/node_modules/d3-format/src/formatNumerals.js +2 -4
- package/dist/node_modules/d3-format/src/formatPrefixAuto.js +8 -10
- package/dist/node_modules/d3-format/src/formatRounded.js +4 -6
- package/dist/node_modules/d3-format/src/formatSpecifier.js +8 -10
- package/dist/node_modules/d3-format/src/formatTrim.js +2 -4
- package/dist/node_modules/d3-format/src/formatTypes.js +13 -15
- package/dist/node_modules/d3-format/src/identity.js +2 -4
- package/dist/node_modules/d3-format/src/locale.js +31 -33
- package/dist/node_modules/d3-format/src/precisionFixed.js +4 -6
- package/dist/node_modules/d3-format/src/precisionPrefix.js +4 -6
- package/dist/node_modules/d3-format/src/precisionRound.js +4 -6
- package/dist/node_modules/d3-hierarchy/src/accessors.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/constant.js +3 -5
- package/dist/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/count.js +4 -6
- package/dist/node_modules/d3-hierarchy/src/hierarchy/descendants.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/each.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/find.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/index.js +44 -46
- package/dist/node_modules/d3-hierarchy/src/hierarchy/iterator.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/leaves.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/links.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/path.js +4 -6
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sort.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sum.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/treemap/dice.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/treemap/index.js +14 -16
- package/dist/node_modules/d3-hierarchy/src/treemap/round.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/treemap/slice.js +2 -4
- package/dist/node_modules/d3-hierarchy/src/treemap/squarify.js +9 -11
- package/dist/node_modules/d3-interpolate/src/array.js +4 -6
- package/dist/node_modules/d3-interpolate/src/basis.js +4 -6
- package/dist/node_modules/d3-interpolate/src/basisClosed.js +4 -6
- package/dist/node_modules/d3-interpolate/src/color.js +17 -19
- package/dist/node_modules/d3-interpolate/src/constant.js +2 -4
- package/dist/node_modules/d3-interpolate/src/date.js +2 -4
- package/dist/node_modules/d3-interpolate/src/hcl.js +6 -8
- package/dist/node_modules/d3-interpolate/src/number.js +2 -4
- package/dist/node_modules/d3-interpolate/src/numberArray.js +3 -5
- package/dist/node_modules/d3-interpolate/src/object.js +4 -6
- package/dist/node_modules/d3-interpolate/src/rgb.js +9 -11
- package/dist/node_modules/d3-interpolate/src/round.js +2 -4
- package/dist/node_modules/d3-interpolate/src/string.js +14 -16
- package/dist/node_modules/d3-interpolate/src/transform/decompose.js +5 -7
- package/dist/node_modules/d3-interpolate/src/transform/index.js +11 -13
- package/dist/node_modules/d3-interpolate/src/transform/parse.js +8 -10
- package/dist/node_modules/d3-interpolate/src/value.js +12 -14
- package/dist/node_modules/d3-interpolate/src/zoom.js +11 -13
- package/dist/node_modules/d3-path/src/path.js +14 -16
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/max.js +2 -4
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/min.js +2 -4
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/sum.js +2 -4
- package/dist/node_modules/d3-sankey/node_modules/d3-path/src/path.js +12 -13
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/array.js +2 -4
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/constant.js +2 -4
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/link/index.js +17 -19
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/point.js +3 -5
- package/dist/node_modules/d3-sankey/src/align.js +10 -12
- package/dist/node_modules/d3-sankey/src/constant.js +2 -4
- package/dist/node_modules/d3-sankey/src/sankey.js +168 -170
- package/dist/node_modules/d3-sankey/src/sankeyLinkHorizontal.js +6 -8
- package/dist/node_modules/d3-scale/src/band.js +9 -11
- package/dist/node_modules/d3-scale/src/constant.js +2 -4
- package/dist/node_modules/d3-scale/src/continuous.js +47 -49
- package/dist/node_modules/d3-scale/src/init.js +2 -4
- package/dist/node_modules/d3-scale/src/linear.js +13 -15
- package/dist/node_modules/d3-scale/src/nice.js +2 -4
- package/dist/node_modules/d3-scale/src/number.js +2 -4
- package/dist/node_modules/d3-scale/src/ordinal.js +16 -18
- package/dist/node_modules/d3-scale/src/tickFormat.js +14 -16
- package/dist/node_modules/d3-scale/src/time.js +34 -36
- package/dist/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +3 -5
- package/dist/node_modules/d3-scale-chromatic/src/colors.js +2 -4
- package/dist/node_modules/d3-selection/src/array.js +2 -4
- package/dist/node_modules/d3-selection/src/constant.js +2 -4
- package/dist/node_modules/d3-selection/src/creator.js +10 -12
- package/dist/node_modules/d3-selection/src/matcher.js +3 -5
- package/dist/node_modules/d3-selection/src/namespace.js +5 -7
- package/dist/node_modules/d3-selection/src/namespaces.js +3 -5
- package/dist/node_modules/d3-selection/src/pointer.js +4 -6
- package/dist/node_modules/d3-selection/src/select.js +4 -6
- package/dist/node_modules/d3-selection/src/selection/append.js +4 -6
- package/dist/node_modules/d3-selection/src/selection/attr.js +17 -19
- package/dist/node_modules/d3-selection/src/selection/call.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/classed.js +23 -25
- package/dist/node_modules/d3-selection/src/selection/clone.js +5 -7
- package/dist/node_modules/d3-selection/src/selection/data.js +16 -18
- package/dist/node_modules/d3-selection/src/selection/datum.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/dispatch.js +10 -12
- package/dist/node_modules/d3-selection/src/selection/each.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/empty.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/enter.js +11 -13
- package/dist/node_modules/d3-selection/src/selection/exit.js +5 -7
- package/dist/node_modules/d3-selection/src/selection/filter.js +6 -8
- package/dist/node_modules/d3-selection/src/selection/html.js +6 -8
- package/dist/node_modules/d3-selection/src/selection/index.js +79 -80
- package/dist/node_modules/d3-selection/src/selection/insert.js +6 -8
- package/dist/node_modules/d3-selection/src/selection/iterator.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/join.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/lower.js +4 -6
- package/dist/node_modules/d3-selection/src/selection/merge.js +4 -6
- package/dist/node_modules/d3-selection/src/selection/node.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/nodes.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/on.js +9 -11
- package/dist/node_modules/d3-selection/src/selection/order.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/property.js +6 -8
- package/dist/node_modules/d3-selection/src/selection/raise.js +4 -6
- package/dist/node_modules/d3-selection/src/selection/remove.js +4 -6
- package/dist/node_modules/d3-selection/src/selection/select.js +6 -8
- package/dist/node_modules/d3-selection/src/selection/selectAll.js +9 -11
- package/dist/node_modules/d3-selection/src/selection/selectChild.js +8 -10
- package/dist/node_modules/d3-selection/src/selection/selectChildren.js +8 -10
- package/dist/node_modules/d3-selection/src/selection/size.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/sort.js +6 -8
- package/dist/node_modules/d3-selection/src/selection/sparse.js +2 -4
- package/dist/node_modules/d3-selection/src/selection/style.js +12 -14
- package/dist/node_modules/d3-selection/src/selection/text.js +6 -8
- package/dist/node_modules/d3-selection/src/selector.js +4 -6
- package/dist/node_modules/d3-selection/src/selectorAll.js +4 -6
- package/dist/node_modules/d3-selection/src/sourceEvent.js +2 -4
- package/dist/node_modules/d3-selection/src/window.js +2 -4
- package/dist/node_modules/d3-shape/src/arc.js +36 -38
- package/dist/node_modules/d3-shape/src/array.js +2 -3
- package/dist/node_modules/d3-shape/src/constant.js +2 -4
- package/dist/node_modules/d3-shape/src/curve/basis.js +8 -10
- package/dist/node_modules/d3-shape/src/curve/basisClosed.js +16 -18
- package/dist/node_modules/d3-shape/src/curve/basisOpen.js +7 -9
- package/dist/node_modules/d3-shape/src/curve/bump.js +13 -15
- package/dist/node_modules/d3-shape/src/curve/bundle.js +7 -9
- package/dist/node_modules/d3-shape/src/curve/cardinal.js +8 -10
- package/dist/node_modules/d3-shape/src/curve/cardinalClosed.js +10 -12
- package/dist/node_modules/d3-shape/src/curve/cardinalOpen.js +7 -9
- package/dist/node_modules/d3-shape/src/curve/catmullRom.js +17 -19
- package/dist/node_modules/d3-shape/src/curve/catmullRomClosed.js +11 -13
- package/dist/node_modules/d3-shape/src/curve/catmullRomOpen.js +8 -10
- package/dist/node_modules/d3-shape/src/curve/linear.js +5 -7
- package/dist/node_modules/d3-shape/src/curve/linearClosed.js +10 -12
- package/dist/node_modules/d3-shape/src/curve/monotone.js +21 -23
- package/dist/node_modules/d3-shape/src/curve/natural.js +7 -9
- package/dist/node_modules/d3-shape/src/curve/step.js +17 -19
- package/dist/node_modules/d3-shape/src/descending.js +2 -4
- package/dist/node_modules/d3-shape/src/identity.js +2 -4
- package/dist/node_modules/d3-shape/src/line.js +17 -19
- package/dist/node_modules/d3-shape/src/math.js +6 -8
- package/dist/node_modules/d3-shape/src/noop.js +2 -4
- package/dist/node_modules/d3-shape/src/path.js +4 -6
- package/dist/node_modules/d3-shape/src/pie.js +13 -15
- package/dist/node_modules/d3-shape/src/point.js +3 -5
- package/dist/node_modules/d3-time/src/day.js +15 -17
- package/dist/node_modules/d3-time/src/duration.js +2 -4
- package/dist/node_modules/d3-time/src/hour.js +14 -16
- package/dist/node_modules/d3-time/src/interval.js +5 -7
- package/dist/node_modules/d3-time/src/millisecond.js +5 -7
- package/dist/node_modules/d3-time/src/minute.js +14 -16
- package/dist/node_modules/d3-time/src/month.js +12 -14
- package/dist/node_modules/d3-time/src/second.js +7 -9
- package/dist/node_modules/d3-time/src/ticks.js +64 -66
- package/dist/node_modules/d3-time/src/week.js +19 -21
- package/dist/node_modules/d3-time/src/year.js +8 -10
- package/dist/node_modules/d3-time-format/src/defaultLocale.js +6 -8
- package/dist/node_modules/d3-time-format/src/locale.js +344 -346
- package/dist/node_modules/d3-timer/src/timeout.js +4 -6
- package/dist/node_modules/d3-timer/src/timer.js +31 -33
- package/dist/node_modules/d3-transition/src/index.js +2 -2
- package/dist/node_modules/d3-transition/src/interrupt.js +3 -4
- package/dist/node_modules/d3-transition/src/selection/index.js +4 -5
- package/dist/node_modules/d3-transition/src/selection/interrupt.js +4 -6
- package/dist/node_modules/d3-transition/src/selection/transition.js +14 -16
- package/dist/node_modules/d3-transition/src/transition/attr.js +26 -28
- package/dist/node_modules/d3-transition/src/transition/attrTween.js +11 -13
- package/dist/node_modules/d3-transition/src/transition/delay.js +9 -11
- package/dist/node_modules/d3-transition/src/transition/duration.js +9 -11
- package/dist/node_modules/d3-transition/src/transition/ease.js +6 -8
- package/dist/node_modules/d3-transition/src/transition/easeVarying.js +6 -8
- package/dist/node_modules/d3-transition/src/transition/end.js +4 -6
- package/dist/node_modules/d3-transition/src/transition/filter.js +6 -8
- package/dist/node_modules/d3-transition/src/transition/index.js +61 -63
- package/dist/node_modules/d3-transition/src/transition/interpolate.js +7 -9
- package/dist/node_modules/d3-transition/src/transition/merge.js +4 -6
- package/dist/node_modules/d3-transition/src/transition/on.js +7 -9
- package/dist/node_modules/d3-transition/src/transition/remove.js +4 -6
- package/dist/node_modules/d3-transition/src/transition/schedule.js +18 -20
- package/dist/node_modules/d3-transition/src/transition/select.js +8 -10
- package/dist/node_modules/d3-transition/src/transition/selectAll.js +8 -10
- package/dist/node_modules/d3-transition/src/transition/selection.js +5 -7
- package/dist/node_modules/d3-transition/src/transition/style.js +19 -21
- package/dist/node_modules/d3-transition/src/transition/styleTween.js +6 -8
- package/dist/node_modules/d3-transition/src/transition/text.js +6 -8
- package/dist/node_modules/d3-transition/src/transition/textTween.js +6 -8
- package/dist/node_modules/d3-transition/src/transition/transition.js +8 -10
- package/dist/node_modules/d3-transition/src/transition/tween.js +12 -14
- package/dist/node_modules/d3-zoom/src/constant.js +2 -4
- package/dist/node_modules/d3-zoom/src/event.js +2 -4
- package/dist/node_modules/d3-zoom/src/index.js +2 -2
- package/dist/node_modules/d3-zoom/src/noevent.js +3 -5
- package/dist/node_modules/d3-zoom/src/transform.js +10 -12
- package/dist/node_modules/d3-zoom/src/zoom.js +114 -116
- package/dist/node_modules/dagre-d3-es/src/dagre/acyclic.js +12 -14
- package/dist/node_modules/dagre-d3-es/src/dagre/add-border-segments.js +9 -11
- package/dist/node_modules/dagre-d3-es/src/dagre/coordinate-system.js +34 -36
- package/dist/node_modules/dagre-d3-es/src/dagre/data/list.js +7 -9
- package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +49 -51
- package/dist/node_modules/dagre-d3-es/src/dagre/index.js +2 -2
- package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +163 -165
- package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +43 -45
- package/dist/node_modules/dagre-d3-es/src/dagre/normalize.js +10 -12
- package/dist/node_modules/dagre-d3-es/src/dagre/order/add-subgraph-constraints.js +4 -6
- package/dist/node_modules/dagre-d3-es/src/dagre/order/barycenter.js +6 -8
- package/dist/node_modules/dagre-d3-es/src/dagre/order/build-layer-graph.js +12 -14
- package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +20 -22
- package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +34 -36
- package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +13 -15
- package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +30 -32
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +28 -30
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +18 -20
- package/dist/node_modules/dagre-d3-es/src/dagre/parent-dummy-chains.js +10 -12
- package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +148 -150
- package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +18 -20
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/feasible-tree.js +17 -19
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/index.js +14 -16
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +63 -64
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +8 -10
- package/dist/node_modules/dagre-d3-es/src/dagre/util.js +82 -84
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dfs.js +13 -15
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra.js +2 -3
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/floyd-warshall.js +2 -3
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/index.js +3 -3
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/postorder.js +4 -6
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/preorder.js +4 -6
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/topsort.js +11 -13
- package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +129 -131
- package/dist/node_modules/dagre-d3-es/src/graphlib/index.js +1 -1
- package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +16 -18
- package/dist/node_modules/dayjs/dayjs.min.js +4 -6
- package/dist/node_modules/dayjs/plugin/advancedFormat.js +4 -6
- package/dist/node_modules/dayjs/plugin/customParseFormat.js +4 -6
- package/dist/node_modules/dayjs/plugin/duration.js +4 -6
- package/dist/node_modules/dayjs/plugin/isoWeek.js +4 -6
- package/dist/node_modules/decode-named-character-reference/index.dom.js +5 -7
- package/dist/node_modules/devlop/lib/default.js +2 -4
- package/dist/node_modules/dompurify/dist/purify.es.js +180 -182
- package/dist/node_modules/entities/dist/esm/decode-codepoint.js +4 -6
- package/dist/node_modules/entities/dist/esm/decode.js +85 -87
- package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -4
- package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +4 -6
- package/dist/node_modules/extend/index.js +6 -9
- package/dist/node_modules/hast-util-from-dom/lib/index.js +30 -32
- package/dist/node_modules/hast-util-from-html-isomorphic/lib/browser.js +8 -10
- package/dist/node_modules/hast-util-from-parse5/lib/index.js +80 -82
- package/dist/node_modules/hast-util-is-element/lib/index.js +15 -17
- package/dist/node_modules/hast-util-parse-selector/lib/index.js +5 -7
- package/dist/node_modules/hast-util-raw/lib/index.js +134 -136
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +21 -23
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +3 -5
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +89 -89
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +249 -250
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +4 -6
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +14 -14
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +4 -4
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +15 -17
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1495 -1497
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +146 -148
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +19 -20
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +798 -800
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +31 -33
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +8 -10
- package/dist/node_modules/hast-util-sanitize/lib/index.js +104 -106
- package/dist/node_modules/hast-util-sanitize/lib/schema.js +11 -12
- package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +7 -9
- package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +2 -4
- package/dist/node_modules/hast-util-to-html/lib/handle/element.js +23 -25
- package/dist/node_modules/hast-util-to-html/lib/handle/index.js +21 -22
- package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +4 -6
- package/dist/node_modules/hast-util-to-html/lib/handle/root.js +2 -4
- package/dist/node_modules/hast-util-to-html/lib/handle/text.js +5 -7
- package/dist/node_modules/hast-util-to-html/lib/index.js +36 -38
- package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +68 -70
- package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +4 -6
- package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +30 -32
- package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +9 -10
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +190 -192
- package/dist/node_modules/hast-util-to-parse5/lib/index.js +69 -71
- package/dist/node_modules/hast-util-to-text/lib/index.js +59 -61
- package/dist/node_modules/hast-util-whitespace/lib/index.js +6 -8
- package/dist/node_modules/hastscript/lib/create-h.js +24 -26
- package/dist/node_modules/hastscript/lib/index.js +5 -7
- package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +2 -4
- package/dist/node_modules/html-url-attributes/lib/index.js +2 -4
- package/dist/node_modules/html-void-elements/index.js +2 -4
- package/dist/node_modules/inline-style-parser/cjs/index.js +4 -6
- package/dist/node_modules/internmap/src/index.js +20 -22
- package/dist/node_modules/katex/dist/katex.js +2307 -2301
- package/dist/node_modules/khroma/dist/channels/index.js +21 -23
- package/dist/node_modules/khroma/dist/channels/reusable.js +3 -5
- package/dist/node_modules/khroma/dist/channels/type.js +5 -7
- package/dist/node_modules/khroma/dist/color/hex.js +8 -10
- package/dist/node_modules/khroma/dist/color/hsl.js +17 -19
- package/dist/node_modules/khroma/dist/color/index.js +15 -17
- package/dist/node_modules/khroma/dist/color/keyword.js +8 -10
- package/dist/node_modules/khroma/dist/color/rgb.js +12 -14
- package/dist/node_modules/khroma/dist/constants.js +5 -7
- package/dist/node_modules/khroma/dist/methods/adjust.js +6 -8
- package/dist/node_modules/khroma/dist/methods/adjust_channel.js +6 -8
- package/dist/node_modules/khroma/dist/methods/change.js +7 -9
- package/dist/node_modules/khroma/dist/methods/channel.js +4 -6
- package/dist/node_modules/khroma/dist/methods/darken.js +3 -5
- package/dist/node_modules/khroma/dist/methods/invert.js +6 -8
- package/dist/node_modules/khroma/dist/methods/is_dark.js +3 -5
- package/dist/node_modules/khroma/dist/methods/is_light.js +3 -5
- package/dist/node_modules/khroma/dist/methods/lighten.js +3 -5
- package/dist/node_modules/khroma/dist/methods/luminance.js +6 -8
- package/dist/node_modules/khroma/dist/methods/mix.js +6 -8
- package/dist/node_modules/khroma/dist/methods/rgba.js +13 -15
- package/dist/node_modules/khroma/dist/methods/transparentize.js +3 -5
- package/dist/node_modules/khroma/dist/utils/channel.js +6 -8
- package/dist/node_modules/khroma/dist/utils/index.js +8 -10
- package/dist/node_modules/khroma/dist/utils/lang.js +2 -4
- package/dist/node_modules/khroma/dist/utils/unit.js +2 -4
- package/dist/node_modules/langium/lib/default-module.js +64 -66
- package/dist/node_modules/langium/lib/dependency-injection.js +39 -37
- package/dist/node_modules/langium/lib/documentation/comment-provider.js +5 -7
- package/dist/node_modules/langium/lib/documentation/documentation-provider.js +6 -8
- package/dist/node_modules/langium/lib/documentation/jsdoc.js +202 -204
- package/dist/node_modules/langium/lib/index.js +182 -0
- package/dist/node_modules/langium/lib/languages/generated/ast.js +534 -343
- package/dist/node_modules/langium/lib/languages/grammar-config.js +8 -10
- package/dist/node_modules/langium/lib/parser/async-parser.js +76 -4
- package/dist/node_modules/langium/lib/parser/completion-parser-builder.js +6 -8
- package/dist/node_modules/langium/lib/parser/cst-node-builder.js +54 -56
- package/dist/node_modules/langium/lib/parser/indentation-aware.js +141 -0
- package/dist/node_modules/langium/lib/parser/langium-parser-builder.js +7 -9
- package/dist/node_modules/langium/lib/parser/langium-parser.js +188 -190
- package/dist/node_modules/langium/lib/parser/lexer.js +25 -25
- package/dist/node_modules/langium/lib/parser/parser-builder-base.js +203 -204
- package/dist/node_modules/langium/lib/parser/token-builder.js +30 -32
- package/dist/node_modules/langium/lib/parser/value-converter.js +15 -17
- package/dist/node_modules/langium/lib/references/linker.js +103 -104
- package/dist/node_modules/langium/lib/references/name-provider.js +7 -9
- package/dist/node_modules/langium/lib/references/references.js +51 -53
- package/dist/node_modules/langium/lib/references/scope-computation.js +12 -14
- package/dist/node_modules/langium/lib/references/scope-provider.js +11 -13
- package/dist/node_modules/langium/lib/references/scope.js +56 -27
- package/dist/node_modules/langium/lib/serializer/hydrator.js +69 -71
- package/dist/node_modules/langium/lib/serializer/json-serializer.js +21 -23
- package/dist/node_modules/langium/lib/service-registry.js +5 -7
- package/dist/node_modules/langium/lib/syntax-tree.js +31 -33
- package/dist/node_modules/langium/lib/utils/ast-utils.js +112 -77
- package/dist/node_modules/langium/lib/utils/caching.js +42 -33
- package/dist/node_modules/langium/lib/utils/cancellation.js +5 -7
- package/dist/node_modules/langium/lib/utils/collections.js +33 -35
- package/dist/node_modules/langium/lib/utils/cst-utils.js +161 -46
- package/dist/node_modules/langium/lib/utils/disposable.js +3 -5
- package/dist/node_modules/langium/lib/utils/errors.js +9 -8
- package/dist/node_modules/langium/lib/utils/event.js +5 -7
- package/dist/node_modules/langium/lib/utils/grammar-loader.js +14 -16
- package/dist/node_modules/langium/lib/utils/grammar-utils.js +249 -172
- package/dist/node_modules/langium/lib/utils/index.js +53 -0
- package/dist/node_modules/langium/lib/utils/promise-utils.js +19 -18
- package/dist/node_modules/langium/lib/utils/regexp-utils.js +76 -53
- package/dist/node_modules/langium/lib/utils/stream.js +153 -155
- package/dist/node_modules/langium/lib/utils/uri-utils.js +12 -14
- package/dist/node_modules/langium/lib/validation/document-validator.js +103 -104
- package/dist/node_modules/langium/lib/validation/validation-registry.js +14 -15
- package/dist/node_modules/langium/lib/workspace/ast-descriptions.js +17 -19
- package/dist/node_modules/langium/lib/workspace/ast-node-locator.js +2 -4
- package/dist/node_modules/langium/lib/workspace/configuration.js +5 -7
- package/dist/node_modules/langium/lib/workspace/document-builder.js +134 -131
- package/dist/node_modules/langium/lib/workspace/documents.js +83 -85
- package/dist/node_modules/langium/lib/workspace/file-system-provider.js +4 -5
- package/dist/node_modules/langium/lib/workspace/index-manager.js +14 -16
- package/dist/node_modules/langium/lib/workspace/profiler.js +89 -0
- package/dist/node_modules/langium/lib/workspace/workspace-lock.js +9 -11
- package/dist/node_modules/langium/lib/workspace/workspace-manager.js +33 -35
- package/dist/node_modules/layout-base/layout-base.js +4 -6
- 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/{frontend/studio/node_modules → node_modules}/lodash/debounce.js +8 -10
- 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/lodash-es/_DataView.js +4 -6
- package/dist/node_modules/lodash-es/_Hash.js +13 -14
- package/dist/node_modules/lodash-es/_ListCache.js +13 -14
- package/dist/node_modules/lodash-es/_Map.js +4 -6
- package/dist/node_modules/lodash-es/_MapCache.js +13 -14
- package/dist/node_modules/lodash-es/_Promise.js +4 -6
- package/dist/node_modules/lodash-es/_Set.js +4 -6
- package/dist/node_modules/lodash-es/_SetCache.js +9 -10
- package/dist/node_modules/lodash-es/_Stack.js +11 -12
- package/dist/node_modules/lodash-es/_Symbol.js +3 -5
- package/dist/node_modules/lodash-es/_Uint8Array.js +3 -5
- package/dist/node_modules/lodash-es/_WeakMap.js +4 -6
- package/dist/node_modules/lodash-es/_apply.js +3 -4
- package/dist/node_modules/lodash-es/_arrayEach.js +3 -4
- package/dist/node_modules/lodash-es/_arrayFilter.js +3 -4
- package/dist/node_modules/lodash-es/_arrayIncludes.js +5 -6
- package/dist/node_modules/lodash-es/_arrayIncludesWith.js +3 -4
- package/dist/node_modules/lodash-es/_arrayLikeKeys.js +12 -13
- package/dist/node_modules/lodash-es/_arrayMap.js +3 -4
- package/dist/node_modules/lodash-es/_arrayPush.js +3 -4
- package/dist/node_modules/lodash-es/_arrayReduce.js +3 -4
- package/dist/node_modules/lodash-es/_arraySome.js +3 -4
- package/dist/node_modules/lodash-es/_asciiSize.js +3 -5
- package/dist/node_modules/lodash-es/_assignMergeValue.js +6 -7
- package/dist/node_modules/lodash-es/_assignValue.js +7 -8
- package/dist/node_modules/lodash-es/_assocIndexOf.js +5 -6
- package/dist/node_modules/lodash-es/_baseAssign.js +6 -7
- package/dist/node_modules/lodash-es/_baseAssignIn.js +6 -7
- package/dist/node_modules/lodash-es/_baseAssignValue.js +5 -6
- package/dist/node_modules/lodash-es/_baseClone.js +50 -51
- package/dist/node_modules/lodash-es/_baseCreate.js +5 -7
- package/dist/node_modules/lodash-es/_baseEach.js +4 -6
- package/dist/node_modules/lodash-es/_baseExtremum.js +5 -6
- package/dist/node_modules/lodash-es/_baseFilter.js +5 -6
- package/dist/node_modules/lodash-es/_baseFindIndex.js +3 -4
- package/dist/node_modules/lodash-es/_baseFlatten.js +7 -8
- package/dist/node_modules/lodash-es/_baseFor.js +3 -5
- package/dist/node_modules/lodash-es/_baseForOwn.js +6 -7
- package/dist/node_modules/lodash-es/_baseGet.js +7 -8
- package/dist/node_modules/lodash-es/_baseGetAllKeys.js +6 -7
- package/dist/node_modules/lodash-es/_baseGetTag.js +8 -9
- package/dist/node_modules/lodash-es/_baseGt.js +3 -4
- package/dist/node_modules/lodash-es/_baseHas.js +5 -6
- package/dist/node_modules/lodash-es/_baseHasIn.js +3 -4
- package/dist/node_modules/lodash-es/_baseIndexOf.js +7 -8
- package/dist/node_modules/lodash-es/_baseIsArguments.js +7 -8
- package/dist/node_modules/lodash-es/_baseIsEqual.js +6 -7
- package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +22 -23
- package/dist/node_modules/lodash-es/_baseIsMap.js +7 -8
- package/dist/node_modules/lodash-es/_baseIsMatch.js +8 -9
- package/dist/node_modules/lodash-es/_baseIsNaN.js +3 -4
- package/dist/node_modules/lodash-es/_baseIsNative.js +9 -10
- package/dist/node_modules/lodash-es/_baseIsSet.js +7 -8
- package/dist/node_modules/lodash-es/_baseIsTypedArray.js +9 -10
- package/dist/node_modules/lodash-es/_baseIteratee.js +9 -10
- package/dist/node_modules/lodash-es/_baseKeys.js +8 -9
- package/dist/node_modules/lodash-es/_baseKeysIn.js +10 -11
- package/dist/node_modules/lodash-es/_baseLt.js +3 -4
- package/dist/node_modules/lodash-es/_baseMap.js +7 -8
- package/dist/node_modules/lodash-es/_baseMatches.js +9 -10
- package/dist/node_modules/lodash-es/_baseMatchesProperty.js +14 -15
- package/dist/node_modules/lodash-es/_baseMerge.js +15 -16
- package/dist/node_modules/lodash-es/_baseMergeDeep.js +23 -24
- package/dist/node_modules/lodash-es/_baseOrderBy.js +22 -23
- package/dist/node_modules/lodash-es/_basePick.js +7 -8
- package/dist/node_modules/lodash-es/_basePickBy.js +8 -9
- package/dist/node_modules/lodash-es/_baseProperty.js +3 -4
- package/dist/node_modules/lodash-es/_basePropertyDeep.js +5 -6
- package/dist/node_modules/lodash-es/_baseRange.js +5 -6
- package/dist/node_modules/lodash-es/_baseReduce.js +3 -4
- package/dist/node_modules/lodash-es/_baseRest.js +7 -8
- package/dist/node_modules/lodash-es/_baseSet.js +13 -14
- package/dist/node_modules/lodash-es/_baseSetToString.js +8 -10
- package/dist/node_modules/lodash-es/_baseSortBy.js +3 -4
- package/dist/node_modules/lodash-es/_baseTimes.js +3 -4
- package/dist/node_modules/lodash-es/_baseToString.js +12 -13
- package/dist/node_modules/lodash-es/_baseTrim.js +6 -7
- package/dist/node_modules/lodash-es/_baseUnary.js +3 -4
- package/dist/node_modules/lodash-es/_baseUniq.js +16 -17
- package/dist/node_modules/lodash-es/_baseValues.js +5 -6
- package/dist/node_modules/lodash-es/_baseZipObject.js +3 -4
- package/dist/node_modules/lodash-es/_cacheHas.js +3 -4
- package/dist/node_modules/lodash-es/_castFunction.js +5 -6
- package/dist/node_modules/lodash-es/_castPath.js +8 -9
- package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +5 -6
- package/dist/node_modules/lodash-es/_cloneBuffer.js +8 -9
- package/dist/node_modules/lodash-es/_cloneDataView.js +5 -6
- package/dist/node_modules/lodash-es/_cloneRegExp.js +5 -6
- package/dist/node_modules/lodash-es/_cloneSymbol.js +6 -7
- package/dist/node_modules/lodash-es/_cloneTypedArray.js +5 -6
- package/dist/node_modules/lodash-es/_compareAscending.js +5 -6
- package/dist/node_modules/lodash-es/_compareMultiple.js +5 -6
- package/dist/node_modules/lodash-es/_copyArray.js +3 -4
- package/dist/node_modules/lodash-es/_copyObject.js +6 -7
- package/dist/node_modules/lodash-es/_copySymbols.js +6 -7
- package/dist/node_modules/lodash-es/_copySymbolsIn.js +6 -7
- package/dist/node_modules/lodash-es/_coreJsData.js +3 -5
- package/dist/node_modules/lodash-es/_createAssigner.js +7 -8
- package/dist/node_modules/lodash-es/_createBaseEach.js +5 -6
- package/dist/node_modules/lodash-es/_createBaseFor.js +3 -4
- package/dist/node_modules/lodash-es/_createFind.js +9 -10
- package/dist/node_modules/lodash-es/_createRange.js +7 -8
- package/dist/node_modules/lodash-es/_createSet.js +7 -9
- package/dist/node_modules/lodash-es/_defineProperty.js +4 -6
- package/dist/node_modules/lodash-es/_equalArrays.js +11 -12
- package/dist/node_modules/lodash-es/_equalByTag.js +28 -29
- package/dist/node_modules/lodash-es/_equalObjects.js +8 -9
- package/dist/node_modules/lodash-es/_flatRest.js +7 -8
- package/dist/node_modules/lodash-es/_freeGlobal.js +2 -4
- package/dist/node_modules/lodash-es/_getAllKeys.js +7 -8
- package/dist/node_modules/lodash-es/_getAllKeysIn.js +7 -8
- package/dist/node_modules/lodash-es/_getMapData.js +5 -6
- package/dist/node_modules/lodash-es/_getMatchData.js +7 -8
- package/dist/node_modules/lodash-es/_getNative.js +7 -8
- package/dist/node_modules/lodash-es/_getPrototype.js +3 -5
- package/dist/node_modules/lodash-es/_getRawTag.js +9 -10
- package/dist/node_modules/lodash-es/_getSymbols.js +7 -9
- package/dist/node_modules/lodash-es/_getSymbolsIn.js +8 -10
- package/dist/node_modules/lodash-es/_getTag.js +19 -21
- package/dist/node_modules/lodash-es/_getValue.js +3 -4
- package/dist/node_modules/lodash-es/_hasPath.js +12 -13
- package/dist/node_modules/lodash-es/_hasUnicode.js +5 -6
- package/dist/node_modules/lodash-es/_hashClear.js +5 -6
- package/dist/node_modules/lodash-es/_hashDelete.js +4 -5
- package/dist/node_modules/lodash-es/_hashGet.js +8 -9
- package/dist/node_modules/lodash-es/_hashHas.js +6 -7
- package/dist/node_modules/lodash-es/_hashSet.js +6 -7
- package/dist/node_modules/lodash-es/_initCloneArray.js +5 -6
- package/dist/node_modules/lodash-es/_initCloneByTag.js +28 -29
- package/dist/node_modules/lodash-es/_initCloneObject.js +7 -8
- package/dist/node_modules/lodash-es/_isFlattenable.js +8 -9
- package/dist/node_modules/lodash-es/_isIndex.js +5 -6
- package/dist/node_modules/lodash-es/_isIterateeCall.js +9 -10
- package/dist/node_modules/lodash-es/_isKey.js +8 -9
- package/dist/node_modules/lodash-es/_isKeyable.js +3 -4
- package/dist/node_modules/lodash-es/_isMasked.js +8 -9
- package/dist/node_modules/lodash-es/_isPrototype.js +5 -6
- package/dist/node_modules/lodash-es/_isStrictComparable.js +5 -6
- package/dist/node_modules/lodash-es/_listCacheClear.js +3 -4
- package/dist/node_modules/lodash-es/_listCacheDelete.js +7 -8
- package/dist/node_modules/lodash-es/_listCacheGet.js +5 -6
- package/dist/node_modules/lodash-es/_listCacheHas.js +5 -6
- package/dist/node_modules/lodash-es/_listCacheSet.js +5 -6
- package/dist/node_modules/lodash-es/_mapCacheClear.js +9 -10
- package/dist/node_modules/lodash-es/_mapCacheDelete.js +6 -7
- package/dist/node_modules/lodash-es/_mapCacheGet.js +5 -6
- package/dist/node_modules/lodash-es/_mapCacheHas.js +5 -6
- package/dist/node_modules/lodash-es/_mapCacheSet.js +5 -6
- package/dist/node_modules/lodash-es/_mapToArray.js +3 -4
- package/dist/node_modules/lodash-es/_matchesStrictComparable.js +3 -4
- package/dist/node_modules/lodash-es/_memoizeCapped.js +7 -8
- package/dist/node_modules/lodash-es/_nativeCreate.js +3 -5
- package/dist/node_modules/lodash-es/_nativeKeys.js +3 -5
- package/dist/node_modules/lodash-es/_nativeKeysIn.js +3 -4
- package/dist/node_modules/lodash-es/_nodeUtil.js +4 -6
- package/dist/node_modules/lodash-es/_objectToString.js +5 -6
- package/dist/node_modules/lodash-es/_overArg.js +3 -4
- package/dist/node_modules/lodash-es/_overRest.js +8 -9
- package/dist/node_modules/lodash-es/_root.js +3 -5
- package/dist/node_modules/lodash-es/_safeGet.js +3 -4
- package/dist/node_modules/lodash-es/_setCacheAdd.js +5 -6
- package/dist/node_modules/lodash-es/_setCacheHas.js +3 -4
- package/dist/node_modules/lodash-es/_setToArray.js +3 -4
- package/dist/node_modules/lodash-es/_setToString.js +4 -6
- package/dist/node_modules/lodash-es/_shortOut.js +6 -7
- package/dist/node_modules/lodash-es/_stackClear.js +5 -6
- package/dist/node_modules/lodash-es/_stackDelete.js +3 -4
- package/dist/node_modules/lodash-es/_stackGet.js +3 -4
- package/dist/node_modules/lodash-es/_stackHas.js +3 -4
- package/dist/node_modules/lodash-es/_stackSet.js +10 -11
- package/dist/node_modules/lodash-es/_strictIndexOf.js +3 -4
- package/dist/node_modules/lodash-es/_stringSize.js +7 -8
- package/dist/node_modules/lodash-es/_stringToPath.js +5 -7
- package/dist/node_modules/lodash-es/_toKey.js +7 -8
- package/dist/node_modules/lodash-es/_toSource.js +7 -8
- package/dist/node_modules/lodash-es/_trimmedEndIndex.js +5 -6
- package/dist/node_modules/lodash-es/_unicodeSize.js +16 -17
- package/dist/node_modules/lodash-es/clone.js +6 -7
- package/dist/node_modules/lodash-es/cloneDeep.js +6 -7
- package/dist/node_modules/lodash-es/constant.js +3 -4
- package/dist/node_modules/lodash-es/defaults.js +11 -13
- package/dist/node_modules/lodash-es/eq.js +3 -4
- package/dist/node_modules/lodash-es/filter.js +8 -9
- package/dist/node_modules/lodash-es/find.js +4 -6
- package/dist/node_modules/lodash-es/findIndex.js +9 -10
- package/dist/node_modules/lodash-es/flatMap.js +6 -7
- package/dist/node_modules/lodash-es/flatten.js +5 -6
- package/dist/node_modules/lodash-es/forEach.js +8 -9
- package/dist/node_modules/lodash-es/forIn.js +7 -8
- package/dist/node_modules/lodash-es/forOwn.js +6 -7
- package/dist/node_modules/lodash-es/get.js +5 -6
- package/dist/node_modules/lodash-es/has.js +6 -7
- package/dist/node_modules/lodash-es/hasIn.js +6 -7
- package/dist/node_modules/lodash-es/identity.js +3 -4
- package/dist/node_modules/lodash-es/isArguments.js +6 -8
- package/dist/node_modules/lodash-es/isArray.js +2 -4
- package/dist/node_modules/lodash-es/isArrayLike.js +6 -7
- package/dist/node_modules/lodash-es/isArrayLikeObject.js +6 -7
- package/dist/node_modules/lodash-es/isBuffer.js +4 -6
- package/dist/node_modules/lodash-es/isEmpty.js +17 -18
- package/dist/node_modules/lodash-es/isFunction.js +9 -10
- package/dist/node_modules/lodash-es/isLength.js +5 -6
- package/dist/node_modules/lodash-es/isMap.js +5 -7
- package/dist/node_modules/lodash-es/isObject.js +3 -4
- package/dist/node_modules/lodash-es/isObjectLike.js +3 -4
- package/dist/node_modules/lodash-es/isPlainObject.js +12 -13
- package/dist/node_modules/lodash-es/isSet.js +5 -7
- package/dist/node_modules/lodash-es/isString.js +8 -9
- package/dist/node_modules/lodash-es/isSymbol.js +7 -8
- package/dist/node_modules/lodash-es/isTypedArray.js +5 -7
- package/dist/node_modules/lodash-es/isUndefined.js +3 -4
- package/dist/node_modules/lodash-es/keys.js +7 -8
- package/dist/node_modules/lodash-es/keysIn.js +7 -8
- package/dist/node_modules/lodash-es/last.js +3 -4
- package/dist/node_modules/lodash-es/map.js +8 -9
- package/dist/node_modules/lodash-es/mapValues.js +8 -9
- package/dist/node_modules/lodash-es/max.js +7 -8
- package/dist/node_modules/lodash-es/memoize.js +8 -9
- package/dist/node_modules/lodash-es/merge.js +5 -7
- package/dist/node_modules/lodash-es/min.js +7 -8
- package/dist/node_modules/lodash-es/minBy.js +7 -8
- package/dist/node_modules/lodash-es/noop.js +3 -4
- package/dist/node_modules/lodash-es/now.js +4 -6
- package/dist/node_modules/lodash-es/pick.js +5 -7
- package/dist/node_modules/lodash-es/property.js +8 -9
- package/dist/node_modules/lodash-es/range.js +3 -5
- package/dist/node_modules/lodash-es/reduce.js +10 -11
- package/dist/node_modules/lodash-es/size.js +12 -13
- package/dist/node_modules/lodash-es/sortBy.js +7 -9
- package/dist/node_modules/lodash-es/stubArray.js +3 -4
- package/dist/node_modules/lodash-es/stubFalse.js +3 -4
- package/dist/node_modules/lodash-es/toFinite.js +6 -7
- package/dist/node_modules/lodash-es/toInteger.js +5 -6
- package/dist/node_modules/lodash-es/toNumber.js +13 -14
- package/dist/node_modules/lodash-es/toPlainObject.js +6 -7
- package/dist/node_modules/lodash-es/toString.js +5 -6
- package/dist/node_modules/lodash-es/union.js +7 -9
- package/dist/node_modules/lodash-es/uniqBy.js +6 -7
- package/dist/node_modules/lodash-es/uniqueId.js +7 -8
- package/dist/node_modules/lodash-es/values.js +6 -7
- package/dist/node_modules/lodash-es/zipObject.js +6 -7
- package/dist/node_modules/longest-streak/index.js +2 -4
- package/dist/node_modules/markdown-table/index.js +9 -11
- package/dist/node_modules/marked/lib/marked.esm.js +685 -687
- package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +12 -14
- package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +2 -4
- package/dist/node_modules/mdast-util-from-markdown/lib/index.js +180 -182
- package/dist/node_modules/mdast-util-gfm/lib/index.js +18 -20
- package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +67 -69
- package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +45 -47
- package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +13 -15
- package/dist/node_modules/mdast-util-gfm-table/lib/index.js +28 -30
- package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +14 -16
- package/dist/node_modules/mdast-util-math/lib/index.js +13 -15
- package/dist/node_modules/mdast-util-phrasing/lib/index.js +3 -5
- package/dist/node_modules/mdast-util-to-hast/lib/footer.js +9 -11
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +4 -6
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +6 -8
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +4 -6
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +53 -55
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +6 -8
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +4 -6
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +13 -15
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +4 -6
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +4 -6
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/index.js +6 -8
- package/dist/node_modules/mdast-util-to-hast/lib/revert.js +2 -4
- package/dist/node_modules/mdast-util-to-hast/lib/state.js +59 -61
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +16 -18
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +12 -14
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +6 -8
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +6 -8
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +41 -43
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +5 -7
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +9 -11
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +5 -7
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +10 -12
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +12 -14
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +5 -7
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +2 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +7 -8
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +4 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +4 -6
- package/dist/node_modules/mdast-util-to-string/lib/index.js +12 -14
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-Q4EWVU46.js +374 -378
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-DXYQGD6D.js +1347 -1349
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-AHTNJAMY.js +549 -555
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-336JU56O.js +38 -40
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-426QAEUC.js +7 -9
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4BX2VUAB.js +4 -6
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4TB4RGXK.js +198 -204
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +5 -7
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5FUZZQ4R.js +2345 -2347
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5PVQY5BW.js +253 -257
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-AGHRB4JF.js +20 -22
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-BSJP7CBP.js +35 -37
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EDXVE4YY.js +15 -17
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ENJZ2VHE.js +344 -346
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-FMBD7UC4.js +3 -5
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ICPOFSXX.js +718 -746
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-OYMX7WX6.js +588 -594
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QZHKN3VN.js +4 -8
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-U2HBQHQK.js +204 -206
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-X2U36JSP.js +37 -39
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-XPW4576I.js +891 -893
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-YZCP3GAM.js +37 -39
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZZ45TVLE.js +13 -15
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-6PBFFD2Q.js +9 -11
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-HSJHXN6E.js +9 -11
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +114 -116
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-KV5264BT.js +188 -190
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-5BDNPKRD.js +70 -72
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-G4DWMVQ6.js +185 -189
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-MMDJMWI5.js +154 -156
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-TYMM5635.js +72 -76
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-SMLLAGMA.js +75 -79
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-DWJPFMVM.js +896 -900
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-T4ZO3ILL.js +685 -687
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-UUTBAWPF.js +569 -571
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-42DDH7IO.js +15 -17
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-UXIWVN3A.js +304 -308
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-VCZTEJTY.js +377 -379
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-6JOO6SKY.js +114 -116
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-QFDTVHPH.js +87 -91
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-DEJITSTG.js +94 -96
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-34T5L4WZ.js +273 -279
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-MS252O5E.js +59 -63
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-XADWPNL6.js +202 -212
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-FGHM5R23.js +564 -568
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FHFEXIEX.js +155 -157
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-QKLJ7IA2.js +9 -11
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-GMOUNBTQ.js +559 -561
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-DHZGUBPP.js +370 -372
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-NUSXRM2D.js +450 -454
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-5P7HB3ND.js +658 -680
- package/dist/node_modules/mermaid/dist/mermaid.core.js +430 -434
- package/dist/node_modules/micromark/lib/constructs.js +79 -80
- package/dist/node_modules/micromark/lib/create-tokenizer.js +12 -14
- package/dist/node_modules/micromark/lib/initialize/content.js +7 -9
- package/dist/node_modules/micromark/lib/initialize/document.js +14 -15
- package/dist/node_modules/micromark/lib/initialize/flow.js +7 -9
- package/dist/node_modules/micromark/lib/initialize/text.js +6 -8
- package/dist/node_modules/micromark/lib/parse.js +18 -20
- package/dist/node_modules/micromark/lib/postprocess.js +4 -6
- package/dist/node_modules/micromark/lib/preprocess.js +4 -6
- package/dist/node_modules/micromark-core-commonmark/lib/attention.js +18 -20
- package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +15 -17
- package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +9 -11
- package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +13 -15
- package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +6 -8
- package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +14 -16
- package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +21 -22
- package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +15 -16
- package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +11 -13
- package/dist/node_modules/micromark-core-commonmark/lib/content.js +17 -18
- package/dist/node_modules/micromark-core-commonmark/lib/definition.js +29 -30
- package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +6 -8
- package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +13 -15
- package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +67 -68
- package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +64 -66
- package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +111 -112
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +6 -8
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +6 -8
- package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +6 -8
- package/dist/node_modules/micromark-core-commonmark/lib/list.js +31 -32
- package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +10 -12
- package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +9 -11
- package/dist/node_modules/micromark-extension-gfm/index.js +14 -16
- package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +120 -122
- package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +31 -33
- package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +9 -11
- package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +4 -6
- package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +2 -4
- package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +34 -36
- package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +18 -20
- package/dist/node_modules/micromark-extension-math/lib/math-flow.js +20 -21
- package/dist/node_modules/micromark-extension-math/lib/math-text.js +9 -11
- package/dist/node_modules/micromark-extension-math/lib/syntax.js +6 -8
- package/dist/node_modules/micromark-factory-destination/index.js +8 -10
- package/dist/node_modules/micromark-factory-label/index.js +5 -7
- package/dist/node_modules/micromark-factory-space/index.js +5 -7
- package/dist/node_modules/micromark-factory-title/index.js +6 -8
- package/dist/node_modules/micromark-factory-whitespace/index.js +5 -7
- package/dist/node_modules/micromark-util-character/index.js +12 -14
- package/dist/node_modules/micromark-util-chunked/index.js +4 -6
- package/dist/node_modules/micromark-util-classify-character/index.js +5 -7
- package/dist/node_modules/micromark-util-combine-extensions/index.js +11 -13
- package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +2 -4
- package/dist/node_modules/micromark-util-decode-string/index.js +9 -11
- package/dist/node_modules/micromark-util-html-tag-name/index.js +2 -4
- package/dist/node_modules/micromark-util-normalize-identifier/index.js +2 -4
- package/dist/node_modules/micromark-util-resolve-all/index.js +2 -4
- package/dist/node_modules/micromark-util-sanitize-uri/index.js +4 -6
- package/dist/node_modules/micromark-util-subtokenize/index.js +8 -10
- package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +8 -10
- package/dist/node_modules/motion/dist/es/react.js +2 -2
- package/dist/node_modules/nanoid/index.browser.js +4 -6
- package/dist/node_modules/nanoid/url-alphabet/index.js +2 -4
- package/dist/node_modules/property-information/index.js +23 -25
- package/dist/node_modules/property-information/lib/aria.js +39 -41
- package/dist/node_modules/property-information/lib/find.js +16 -18
- package/dist/node_modules/property-information/lib/hast-to-react.js +2 -4
- package/dist/node_modules/property-information/lib/html.js +94 -96
- package/dist/node_modules/property-information/lib/normalize.js +2 -4
- package/dist/node_modules/property-information/lib/svg.js +77 -79
- package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +4 -6
- package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +2 -4
- package/dist/node_modules/property-information/lib/util/create.js +8 -10
- package/dist/node_modules/property-information/lib/util/defined-info.js +11 -13
- package/dist/node_modules/property-information/lib/util/info.js +3 -5
- package/dist/node_modules/property-information/lib/util/merge.js +4 -6
- package/dist/node_modules/property-information/lib/util/schema.js +3 -5
- package/dist/node_modules/property-information/lib/util/types.js +14 -15
- package/dist/node_modules/property-information/lib/xlink.js +3 -5
- package/dist/node_modules/property-information/lib/xml.js +3 -5
- package/dist/node_modules/property-information/lib/xmlns.js +5 -7
- package/dist/node_modules/rehype-harden/dist/index.js +45 -47
- package/dist/node_modules/rehype-katex/lib/index.js +23 -25
- package/dist/node_modules/rehype-raw/lib/index.js +4 -6
- package/dist/node_modules/rehype-sanitize/lib/index.js +4 -6
- package/dist/node_modules/remark-gfm/lib/index.js +7 -9
- package/dist/node_modules/remark-math/lib/index.js +7 -9
- package/dist/node_modules/remark-parse/lib/index.js +4 -6
- package/dist/node_modules/remark-rehype/lib/index.js +5 -7
- package/dist/node_modules/remend/dist/index.js +324 -326
- package/dist/node_modules/roughjs/bundled/rough.esm.js +875 -877
- package/dist/node_modules/shiki/dist/bundle-full.js +11 -13
- package/dist/node_modules/shiki/dist/{langs-bundle-full-DfKZStlK.js → langs.js} +6 -8
- package/dist/node_modules/shiki/dist/themes.js +4 -6
- package/dist/node_modules/shiki/dist/wasm.js +2 -2
- package/dist/node_modules/space-separated-tokens/index.js +3 -5
- package/dist/node_modules/streamdown/dist/chunk-BO2N2NFS.js +699 -701
- package/dist/node_modules/streamdown/dist/highlighted-body-OFNGDK62.js +8 -10
- package/dist/node_modules/streamdown/dist/index.js +1 -1
- package/dist/node_modules/streamdown/dist/mermaid-GHXKKRXX.js +2 -2
- package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +712 -709
- package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +2 -4
- package/dist/node_modules/stringify-entities/lib/core.js +16 -18
- package/dist/node_modules/stringify-entities/lib/index.js +5 -7
- package/dist/node_modules/stringify-entities/lib/util/format-smart.js +8 -10
- package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +4 -6
- package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +4 -6
- package/dist/node_modules/stringify-entities/lib/util/to-named.js +12 -14
- package/dist/node_modules/style-to-js/cjs/index.js +7 -9
- package/dist/node_modules/style-to-js/cjs/utilities.js +4 -6
- package/dist/node_modules/style-to-object/cjs/index.js +6 -8
- package/dist/node_modules/stylis/src/Enum.js +2 -4
- package/dist/node_modules/stylis/src/Parser.js +36 -38
- package/dist/node_modules/stylis/src/Serializer.js +15 -17
- package/dist/node_modules/stylis/src/Tokenizer.js +51 -53
- package/dist/node_modules/stylis/src/Utility.js +15 -17
- package/dist/node_modules/trim-lines/index.js +8 -10
- package/dist/node_modules/trough/lib/index.js +4 -6
- package/dist/node_modules/ts-dedent/esm/index.js +2 -4
- package/dist/node_modules/unified/lib/callable-instance.js +2 -4
- package/dist/node_modules/unified/lib/index.js +101 -102
- package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +2 -4
- package/dist/node_modules/unist-util-find-after/lib/index.js +4 -6
- package/dist/node_modules/unist-util-is/lib/index.js +29 -31
- package/dist/node_modules/unist-util-position/lib/index.js +5 -7
- package/dist/node_modules/unist-util-stringify-position/lib/index.js +8 -10
- package/dist/node_modules/unist-util-visit/lib/index.js +4 -6
- package/dist/node_modules/unist-util-visit-parents/lib/color.js +2 -4
- package/dist/node_modules/unist-util-visit-parents/lib/index.js +20 -21
- package/dist/node_modules/uuid/dist/esm-browser/native.js +2 -3
- package/dist/node_modules/uuid/dist/esm-browser/rng.js +6 -8
- package/dist/node_modules/uuid/dist/esm-browser/stringify.js +5 -7
- package/dist/node_modules/uuid/dist/esm-browser/v4.js +9 -10
- package/dist/node_modules/vaul/dist/index.js +274 -276
- package/dist/node_modules/vfile/lib/index.js +42 -44
- package/dist/node_modules/vfile/lib/minpath.browser.js +20 -22
- package/dist/node_modules/vfile/lib/minproc.browser.js +3 -5
- package/dist/node_modules/vfile/lib/minurl.browser.js +6 -8
- package/dist/node_modules/vfile/lib/minurl.shared.js +2 -4
- package/dist/node_modules/vfile-location/lib/index.js +5 -7
- package/dist/node_modules/vfile-message/lib/index.js +5 -7
- package/dist/node_modules/vscode-jsonrpc/browser.js +6 -8
- package/dist/node_modules/vscode-jsonrpc/lib/browser/main.js +9 -11
- package/dist/node_modules/vscode-jsonrpc/lib/browser/ril.js +6 -8
- package/dist/node_modules/vscode-jsonrpc/lib/common/api.js +26 -28
- package/dist/node_modules/vscode-jsonrpc/lib/common/cancellation.js +15 -17
- package/dist/node_modules/vscode-jsonrpc/lib/common/connection.js +11 -13
- package/dist/node_modules/vscode-jsonrpc/lib/common/disposable.js +4 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/events.js +6 -8
- package/dist/node_modules/vscode-jsonrpc/lib/common/is.js +4 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/linkedMap.js +4 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js +4 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageReader.js +9 -11
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageWriter.js +29 -31
- package/dist/node_modules/vscode-jsonrpc/lib/common/messages.js +6 -8
- package/dist/node_modules/vscode-jsonrpc/lib/common/ral.js +4 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/semaphore.js +6 -8
- package/dist/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/browser/main.js +8 -10
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/api.js +21 -23
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/connection.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/messages.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js +12 -14
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineCompletion.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.js +53 -55
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js +8 -10
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js +10 -12
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js +6 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js +4 -6
- package/dist/node_modules/vscode-languageserver-textdocument/lib/esm/main.js +19 -21
- package/dist/node_modules/vscode-languageserver-types/lib/esm/main.js +847 -849
- package/dist/node_modules/vscode-uri/lib/esm/index.js +4 -6
- package/dist/node_modules/web-namespaces/index.js +2 -4
- package/dist/node_modules/zwitch/index.js +5 -7
- package/dist/packages/contracts/dist/enums/index.js +12 -14
- package/dist/packages/contracts/dist/enums/registry.enum.js +4 -6
- package/dist/packages/contracts/dist/enums/sort-order.enum.js +4 -6
- package/dist/packages/contracts/dist/enums/user-type.enum.js +4 -6
- package/dist/packages/contracts/dist/enums/workflow-state.enum.js +4 -6
- package/dist/pages/DashboardPage.js +99 -55
- package/dist/pages/DebugPage.js +17 -12
- package/dist/pages/DebugWorkflowDetailsPage.js +119 -91
- package/dist/pages/DebugWorkflowsPage.js +37 -39
- package/dist/pages/EmbedWorkbenchPage.js +62 -48
- package/dist/pages/PreviewWorkbenchPage.js +324 -243
- package/dist/pages/RunsListPage.js +61 -44
- package/dist/pages/RunsPage.js +48 -31
- package/dist/pages/StudioLandingPage.js +132 -97
- package/dist/pages/WorkbenchPage.js +86 -56
- package/dist/pages/WorkflowDebugPage.js +110 -74
- package/dist/pages/WorkspacePage.js +115 -72
- package/dist/pages/WorkspaceRunsPage.js +70 -43
- package/dist/pages/WorkspacesPage.js +35 -24
- package/dist/providers/ComponentOverridesProvider.js +12 -9
- package/dist/providers/InvalidationEventsProvider.js +35 -33
- package/dist/providers/QueryProvider.js +18 -14
- package/dist/providers/SseProvider.js +29 -28
- package/dist/providers/StudioProvider.js +19 -14
- package/dist/routing/LocalRouter.js +9 -6
- package/dist/services/createApiClient.js +5 -7
- package/dist/services/eventEmitter.js +2 -3
- package/dist/services/index.js +2 -2
- package/dist/types/ai.types.js +5 -7
- package/package.json +33 -33
- package/dist/_virtual/_rolldown/runtime.js +0 -20
- package/dist/frontend/studio/node_modules/lodash/_Symbol.js +0 -9
- package/dist/frontend/studio/node_modules/lodash/_baseGetTag.js +0 -15
- package/dist/frontend/studio/node_modules/lodash/_baseTrim.js +0 -13
- package/dist/frontend/studio/node_modules/lodash/_freeGlobal.js +0 -8
- package/dist/frontend/studio/node_modules/lodash/_getRawTag.js +0 -19
- package/dist/frontend/studio/node_modules/lodash/_objectToString.js +0 -12
- package/dist/frontend/studio/node_modules/lodash/_root.js +0 -10
- package/dist/frontend/studio/node_modules/lodash/_trimmedEndIndex.js +0 -13
- package/dist/frontend/studio/node_modules/lodash/isObject.js +0 -12
- package/dist/frontend/studio/node_modules/lodash/isObjectLike.js +0 -11
- package/dist/frontend/studio/node_modules/lodash/isSymbol.js +0 -14
- package/dist/frontend/studio/node_modules/lodash/now.js +0 -12
- package/dist/frontend/studio/node_modules/lodash/toNumber.js +0 -24
- package/dist/node_modules/@shikijs/primitive/dist/index.js +0 -540
- package/dist/node_modules/shiki/dist/chunk-CtajNgzt.js +0 -17
- package/dist/node_modules/shiki/dist/engine-oniguruma.js +0 -7
|
@@ -1,1867 +1,1968 @@
|
|
|
1
|
-
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}) : t
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
1
|
+
var v = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), y = v((e, t) => {
|
|
2
|
+
var n = Object.defineProperty, r = (e, t, r) => t in e ? n(e, t, {
|
|
3
|
+
enumerable: !0,
|
|
4
|
+
configurable: !0,
|
|
5
|
+
writable: !0,
|
|
6
|
+
value: r
|
|
7
|
+
}) : e[t] = r, i = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), a = (e, t, n) => r(e, typeof t == "symbol" ? t : t + "", n), o = i((e, t) => {
|
|
8
|
+
var n = "\0", r = "\0", i = "", o = class {
|
|
9
|
+
constructor(e) {
|
|
10
|
+
a(this, "_isDirected", !0), a(this, "_isMultigraph", !1), a(this, "_isCompound", !1), a(this, "_label"), a(this, "_defaultNodeLabelFn", () => {}), a(this, "_defaultEdgeLabelFn", () => {}), a(this, "_nodes", {}), a(this, "_in", {}), a(this, "_preds", {}), a(this, "_out", {}), a(this, "_sucs", {}), a(this, "_edgeObjs", {}), a(this, "_edgeLabels", {}), a(this, "_nodeCount", 0), a(this, "_edgeCount", 0), a(this, "_parent"), a(this, "_children"), e && (this._isDirected = Object.hasOwn(e, "directed") ? e.directed : !0, this._isMultigraph = Object.hasOwn(e, "multigraph") ? e.multigraph : !1, this._isCompound = Object.hasOwn(e, "compound") ? e.compound : !1), this._isCompound && (this._parent = {}, this._children = {}, this._children[r] = {});
|
|
11
|
+
}
|
|
12
|
+
isDirected() {
|
|
13
|
+
return this._isDirected;
|
|
14
|
+
}
|
|
15
|
+
isMultigraph() {
|
|
16
|
+
return this._isMultigraph;
|
|
17
|
+
}
|
|
18
|
+
isCompound() {
|
|
19
|
+
return this._isCompound;
|
|
20
|
+
}
|
|
21
|
+
setGraph(e) {
|
|
22
|
+
return this._label = e, this;
|
|
23
|
+
}
|
|
24
|
+
graph() {
|
|
25
|
+
return this._label;
|
|
26
|
+
}
|
|
27
|
+
setDefaultNodeLabel(e) {
|
|
28
|
+
return this._defaultNodeLabelFn = e, typeof e != "function" && (this._defaultNodeLabelFn = () => e), this;
|
|
29
|
+
}
|
|
30
|
+
nodeCount() {
|
|
31
|
+
return this._nodeCount;
|
|
32
|
+
}
|
|
33
|
+
nodes() {
|
|
34
|
+
return Object.keys(this._nodes);
|
|
35
|
+
}
|
|
36
|
+
sources() {
|
|
37
|
+
var e = this;
|
|
38
|
+
return this.nodes().filter((t) => Object.keys(e._in[t]).length === 0);
|
|
39
|
+
}
|
|
40
|
+
sinks() {
|
|
41
|
+
var e = this;
|
|
42
|
+
return this.nodes().filter((t) => Object.keys(e._out[t]).length === 0);
|
|
43
|
+
}
|
|
44
|
+
setNodes(e, t) {
|
|
45
|
+
var n = arguments, r = this;
|
|
46
|
+
return e.forEach(function(e) {
|
|
47
|
+
n.length > 1 ? r.setNode(e, t) : r.setNode(e);
|
|
48
|
+
}), this;
|
|
49
|
+
}
|
|
50
|
+
setNode(e, t) {
|
|
51
|
+
return Object.hasOwn(this._nodes, e) ? (arguments.length > 1 && (this._nodes[e] = t), this) : (this._nodes[e] = arguments.length > 1 ? t : this._defaultNodeLabelFn(e), this._isCompound && (this._parent[e] = r, this._children[e] = {}, this._children[r][e] = !0), this._in[e] = {}, this._preds[e] = {}, this._out[e] = {}, this._sucs[e] = {}, ++this._nodeCount, this);
|
|
52
|
+
}
|
|
53
|
+
node(e) {
|
|
54
|
+
return this._nodes[e];
|
|
55
|
+
}
|
|
56
|
+
hasNode(e) {
|
|
57
|
+
return Object.hasOwn(this._nodes, e);
|
|
58
|
+
}
|
|
59
|
+
removeNode(e) {
|
|
60
|
+
var t = this;
|
|
61
|
+
if (Object.hasOwn(this._nodes, e)) {
|
|
62
|
+
var n = (e) => t.removeEdge(t._edgeObjs[e]);
|
|
63
|
+
delete this._nodes[e], this._isCompound && (this._removeFromParentsChildList(e), delete this._parent[e], this.children(e).forEach(function(e) {
|
|
64
|
+
t.setParent(e);
|
|
65
|
+
}), delete this._children[e]), Object.keys(this._in[e]).forEach(n), delete this._in[e], delete this._preds[e], Object.keys(this._out[e]).forEach(n), delete this._out[e], delete this._sucs[e], --this._nodeCount;
|
|
66
|
+
}
|
|
67
|
+
return this;
|
|
68
|
+
}
|
|
69
|
+
setParent(e, t) {
|
|
70
|
+
if (!this._isCompound) throw Error("Cannot set parent in a non-compound graph");
|
|
71
|
+
if (t === void 0) t = r;
|
|
72
|
+
else {
|
|
73
|
+
t += "";
|
|
74
|
+
for (var n = t; n !== void 0; n = this.parent(n)) if (n === e) throw Error("Setting " + t + " as parent of " + e + " would create a cycle");
|
|
75
|
+
this.setNode(t);
|
|
76
|
+
}
|
|
77
|
+
return this.setNode(e), this._removeFromParentsChildList(e), this._parent[e] = t, this._children[t][e] = !0, this;
|
|
78
|
+
}
|
|
79
|
+
_removeFromParentsChildList(e) {
|
|
80
|
+
delete this._children[this._parent[e]][e];
|
|
81
|
+
}
|
|
82
|
+
parent(e) {
|
|
83
|
+
if (this._isCompound) {
|
|
84
|
+
var t = this._parent[e];
|
|
85
|
+
if (t !== r) return t;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
children(e = r) {
|
|
89
|
+
if (this._isCompound) {
|
|
90
|
+
var t = this._children[e];
|
|
91
|
+
if (t) return Object.keys(t);
|
|
92
|
+
} else {
|
|
93
|
+
if (e === r) return this.nodes();
|
|
94
|
+
if (this.hasNode(e)) return [];
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
predecessors(e) {
|
|
98
|
+
var t = this._preds[e];
|
|
99
|
+
if (t) return Object.keys(t);
|
|
100
|
+
}
|
|
101
|
+
successors(e) {
|
|
102
|
+
var t = this._sucs[e];
|
|
103
|
+
if (t) return Object.keys(t);
|
|
104
|
+
}
|
|
105
|
+
neighbors(e) {
|
|
106
|
+
var t = this.predecessors(e);
|
|
107
|
+
if (t) {
|
|
108
|
+
let r = new Set(t);
|
|
109
|
+
for (var n of this.successors(e)) r.add(n);
|
|
110
|
+
return Array.from(r.values());
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
isLeaf(e) {
|
|
114
|
+
var t;
|
|
115
|
+
return t = this.isDirected() ? this.successors(e) : this.neighbors(e), t.length === 0;
|
|
116
|
+
}
|
|
117
|
+
filterNodes(e) {
|
|
118
|
+
var t = new this.constructor({
|
|
119
|
+
directed: this._isDirected,
|
|
120
|
+
multigraph: this._isMultigraph,
|
|
121
|
+
compound: this._isCompound
|
|
122
|
+
});
|
|
123
|
+
t.setGraph(this.graph());
|
|
124
|
+
var n = this;
|
|
125
|
+
Object.entries(this._nodes).forEach(function([n, r]) {
|
|
126
|
+
e(n) && t.setNode(n, r);
|
|
127
|
+
}), Object.values(this._edgeObjs).forEach(function(e) {
|
|
128
|
+
t.hasNode(e.v) && t.hasNode(e.w) && t.setEdge(e, n.edge(e));
|
|
129
|
+
});
|
|
130
|
+
var r = {};
|
|
131
|
+
function i(e) {
|
|
132
|
+
var a = n.parent(e);
|
|
133
|
+
return a === void 0 || t.hasNode(a) ? (r[e] = a, a) : a in r ? r[a] : i(a);
|
|
134
|
+
}
|
|
135
|
+
return this._isCompound && t.nodes().forEach((e) => t.setParent(e, i(e))), t;
|
|
136
|
+
}
|
|
137
|
+
setDefaultEdgeLabel(e) {
|
|
138
|
+
return this._defaultEdgeLabelFn = e, typeof e != "function" && (this._defaultEdgeLabelFn = () => e), this;
|
|
139
|
+
}
|
|
140
|
+
edgeCount() {
|
|
141
|
+
return this._edgeCount;
|
|
142
|
+
}
|
|
143
|
+
edges() {
|
|
144
|
+
return Object.values(this._edgeObjs);
|
|
145
|
+
}
|
|
146
|
+
setPath(e, t) {
|
|
147
|
+
var n = this, r = arguments;
|
|
148
|
+
return e.reduce(function(e, i) {
|
|
149
|
+
return r.length > 1 ? n.setEdge(e, i, t) : n.setEdge(e, i), i;
|
|
150
|
+
}), this;
|
|
151
|
+
}
|
|
152
|
+
setEdge() {
|
|
153
|
+
var e, t, n, r, i = !1, a = arguments[0];
|
|
154
|
+
typeof a == "object" && a && "v" in a ? (e = a.v, t = a.w, n = a.name, arguments.length === 2 && (r = arguments[1], i = !0)) : (e = a, t = arguments[1], n = arguments[3], arguments.length > 2 && (r = arguments[2], i = !0)), e = "" + e, t = "" + t, n !== void 0 && (n = "" + n);
|
|
155
|
+
var o = l(this._isDirected, e, t, n);
|
|
156
|
+
if (Object.hasOwn(this._edgeLabels, o)) return i && (this._edgeLabels[o] = r), this;
|
|
157
|
+
if (n !== void 0 && !this._isMultigraph) throw Error("Cannot set a named edge when isMultigraph = false");
|
|
158
|
+
this.setNode(e), this.setNode(t), this._edgeLabels[o] = i ? r : this._defaultEdgeLabelFn(e, t, n);
|
|
159
|
+
var c = u(this._isDirected, e, t, n);
|
|
160
|
+
return e = c.v, t = c.w, Object.freeze(c), this._edgeObjs[o] = c, s(this._preds[t], e), s(this._sucs[e], t), this._in[t][o] = c, this._out[e][o] = c, this._edgeCount++, this;
|
|
161
|
+
}
|
|
162
|
+
edge(e, t, n) {
|
|
163
|
+
var r = arguments.length === 1 ? d(this._isDirected, arguments[0]) : l(this._isDirected, e, t, n);
|
|
164
|
+
return this._edgeLabels[r];
|
|
165
|
+
}
|
|
166
|
+
edgeAsObj() {
|
|
167
|
+
let e = this.edge(...arguments);
|
|
168
|
+
return typeof e == "object" ? e : { label: e };
|
|
169
|
+
}
|
|
170
|
+
hasEdge(e, t, n) {
|
|
171
|
+
var r = arguments.length === 1 ? d(this._isDirected, arguments[0]) : l(this._isDirected, e, t, n);
|
|
172
|
+
return Object.hasOwn(this._edgeLabels, r);
|
|
173
|
+
}
|
|
174
|
+
removeEdge(e, t, n) {
|
|
175
|
+
var r = arguments.length === 1 ? d(this._isDirected, arguments[0]) : l(this._isDirected, e, t, n), i = this._edgeObjs[r];
|
|
176
|
+
return i && (e = i.v, t = i.w, delete this._edgeLabels[r], delete this._edgeObjs[r], c(this._preds[t], e), c(this._sucs[e], t), delete this._in[t][r], delete this._out[e][r], this._edgeCount--), this;
|
|
177
|
+
}
|
|
178
|
+
inEdges(e, t) {
|
|
179
|
+
return this.isDirected() ? this.filterEdges(this._in[e], e, t) : this.nodeEdges(e, t);
|
|
180
|
+
}
|
|
181
|
+
outEdges(e, t) {
|
|
182
|
+
return this.isDirected() ? this.filterEdges(this._out[e], e, t) : this.nodeEdges(e, t);
|
|
183
|
+
}
|
|
184
|
+
nodeEdges(e, t) {
|
|
185
|
+
if (e in this._nodes) return this.filterEdges({
|
|
186
|
+
...this._in[e],
|
|
187
|
+
...this._out[e]
|
|
188
|
+
}, e, t);
|
|
189
|
+
}
|
|
190
|
+
filterEdges(e, t, n) {
|
|
191
|
+
if (e) {
|
|
192
|
+
var r = Object.values(e);
|
|
193
|
+
return n ? r.filter(function(e) {
|
|
194
|
+
return e.v === t && e.w === n || e.v === n && e.w === t;
|
|
195
|
+
}) : r;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
141
198
|
};
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
let r = arguments.length === 1 ? f(this._isDirected, e) : u(this._isDirected, e, t, n), i = this._edgeObjs[r];
|
|
179
|
-
if (i) {
|
|
180
|
-
let e = i.v, t = i.w;
|
|
181
|
-
delete this._edgeLabels[r], delete this._edgeObjs[r], l(this._preds[t], e), l(this._sucs[e], t), delete this._in[t][r], delete this._out[e][r], this._edgeCount--;
|
|
182
|
-
}
|
|
183
|
-
return this;
|
|
184
|
-
}
|
|
185
|
-
inEdges(e, t) {
|
|
186
|
-
return this.isDirected() ? this.filterEdges(this._in[e], e, t) : this.nodeEdges(e, t);
|
|
187
|
-
}
|
|
188
|
-
outEdges(e, t) {
|
|
189
|
-
return this.isDirected() ? this.filterEdges(this._out[e], e, t) : this.nodeEdges(e, t);
|
|
190
|
-
}
|
|
191
|
-
nodeEdges(e, t) {
|
|
192
|
-
if (e in this._nodes) return this.filterEdges({
|
|
193
|
-
...this._in[e],
|
|
194
|
-
...this._out[e]
|
|
195
|
-
}, e, t);
|
|
196
|
-
}
|
|
197
|
-
_removeFromParentsChildList(e) {
|
|
198
|
-
delete this._children[this._parent[e]][e];
|
|
199
|
-
}
|
|
200
|
-
filterEdges(e, t, n) {
|
|
201
|
-
if (!e) return;
|
|
202
|
-
let r = Object.values(e);
|
|
203
|
-
return n ? r.filter((e) => e.v === t && e.w === n || e.v === n && e.w === t) : r;
|
|
204
|
-
}
|
|
205
|
-
};
|
|
206
|
-
function c(e, t) {
|
|
207
|
-
e[t] ? e[t]++ : e[t] = 1;
|
|
208
|
-
}
|
|
209
|
-
function l(e, t) {
|
|
210
|
-
e[t] !== void 0 && !--e[t] && delete e[t];
|
|
211
|
-
}
|
|
212
|
-
function u(e, t, n, r) {
|
|
213
|
-
let i = "" + t, a = "" + n;
|
|
214
|
-
if (!e && i > a) {
|
|
215
|
-
let e = i;
|
|
216
|
-
i = a, a = e;
|
|
217
|
-
}
|
|
218
|
-
return i + "" + a + "" + (r === void 0 ? "\0" : r);
|
|
219
|
-
}
|
|
220
|
-
function d(e, t, n, r) {
|
|
221
|
-
let i = "" + t, a = "" + n;
|
|
222
|
-
if (!e && i > a) {
|
|
223
|
-
let e = i;
|
|
224
|
-
i = a, a = e;
|
|
225
|
-
}
|
|
226
|
-
let o = {
|
|
227
|
-
v: i,
|
|
228
|
-
w: a
|
|
229
|
-
};
|
|
230
|
-
return r && (o.name = r), o;
|
|
231
|
-
}
|
|
232
|
-
function f(e, t) {
|
|
233
|
-
return u(e, t.v, t.w, t.name);
|
|
234
|
-
}
|
|
235
|
-
var p = "4.0.1", m = {};
|
|
236
|
-
o(m, {
|
|
237
|
-
read: () => re,
|
|
238
|
-
write: () => ee
|
|
239
|
-
});
|
|
240
|
-
function ee(e) {
|
|
241
|
-
let t = {
|
|
242
|
-
options: {
|
|
243
|
-
directed: e.isDirected(),
|
|
244
|
-
multigraph: e.isMultigraph(),
|
|
245
|
-
compound: e.isCompound()
|
|
246
|
-
},
|
|
247
|
-
nodes: te(e),
|
|
248
|
-
edges: ne(e)
|
|
249
|
-
}, n = e.graph();
|
|
250
|
-
return n !== void 0 && (t.value = structuredClone(n)), t;
|
|
251
|
-
}
|
|
252
|
-
function te(e) {
|
|
253
|
-
return e.nodes().map((t) => {
|
|
254
|
-
let n = e.node(t), r = e.parent(t), i = { v: t };
|
|
255
|
-
return n !== void 0 && (i.value = n), r !== void 0 && (i.parent = r), i;
|
|
256
|
-
});
|
|
257
|
-
}
|
|
258
|
-
function ne(e) {
|
|
259
|
-
return e.edges().map((t) => {
|
|
260
|
-
let n = e.edge(t), r = {
|
|
261
|
-
v: t.v,
|
|
262
|
-
w: t.w
|
|
199
|
+
function s(e, t) {
|
|
200
|
+
e[t] ? e[t]++ : e[t] = 1;
|
|
201
|
+
}
|
|
202
|
+
function c(e, t) {
|
|
203
|
+
--e[t] || delete e[t];
|
|
204
|
+
}
|
|
205
|
+
function l(e, t, r, a) {
|
|
206
|
+
var o = "" + t, s = "" + r;
|
|
207
|
+
if (!e && o > s) {
|
|
208
|
+
var c = o;
|
|
209
|
+
o = s, s = c;
|
|
210
|
+
}
|
|
211
|
+
return o + i + s + i + (a === void 0 ? n : a);
|
|
212
|
+
}
|
|
213
|
+
function u(e, t, n, r) {
|
|
214
|
+
var i = "" + t, a = "" + n;
|
|
215
|
+
if (!e && i > a) {
|
|
216
|
+
var o = i;
|
|
217
|
+
i = a, a = o;
|
|
218
|
+
}
|
|
219
|
+
var s = {
|
|
220
|
+
v: i,
|
|
221
|
+
w: a
|
|
222
|
+
};
|
|
223
|
+
return r && (s.name = r), s;
|
|
224
|
+
}
|
|
225
|
+
function d(e, t) {
|
|
226
|
+
return l(e, t.v, t.w, t.name);
|
|
227
|
+
}
|
|
228
|
+
t.exports = o;
|
|
229
|
+
}), s = i((e, t) => {
|
|
230
|
+
t.exports = "3.0.2";
|
|
231
|
+
}), c = i((e, t) => {
|
|
232
|
+
t.exports = {
|
|
233
|
+
Graph: o(),
|
|
234
|
+
version: s()
|
|
263
235
|
};
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
});
|
|
296
|
-
|
|
297
|
-
function
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
236
|
+
}), l = i((e, t) => {
|
|
237
|
+
var n = o();
|
|
238
|
+
t.exports = {
|
|
239
|
+
write: r,
|
|
240
|
+
read: s
|
|
241
|
+
};
|
|
242
|
+
function r(e) {
|
|
243
|
+
var t = {
|
|
244
|
+
options: {
|
|
245
|
+
directed: e.isDirected(),
|
|
246
|
+
multigraph: e.isMultigraph(),
|
|
247
|
+
compound: e.isCompound()
|
|
248
|
+
},
|
|
249
|
+
nodes: i(e),
|
|
250
|
+
edges: a(e)
|
|
251
|
+
};
|
|
252
|
+
return e.graph() !== void 0 && (t.value = structuredClone(e.graph())), t;
|
|
253
|
+
}
|
|
254
|
+
function i(e) {
|
|
255
|
+
return e.nodes().map(function(t) {
|
|
256
|
+
var n = e.node(t), r = e.parent(t), i = { v: t };
|
|
257
|
+
return n !== void 0 && (i.value = n), r !== void 0 && (i.parent = r), i;
|
|
258
|
+
});
|
|
259
|
+
}
|
|
260
|
+
function a(e) {
|
|
261
|
+
return e.edges().map(function(t) {
|
|
262
|
+
var n = e.edge(t), r = {
|
|
263
|
+
v: t.v,
|
|
264
|
+
w: t.w
|
|
265
|
+
};
|
|
266
|
+
return t.name !== void 0 && (r.name = t.name), n !== void 0 && (r.value = n), r;
|
|
267
|
+
});
|
|
268
|
+
}
|
|
269
|
+
function s(e) {
|
|
270
|
+
var t = new n(e.options).setGraph(e.value);
|
|
271
|
+
return e.nodes.forEach(function(e) {
|
|
272
|
+
t.setNode(e.v, e.value), e.parent && t.setParent(e.v, e.parent);
|
|
273
|
+
}), e.edges.forEach(function(e) {
|
|
274
|
+
t.setEdge({
|
|
275
|
+
v: e.v,
|
|
276
|
+
w: e.w,
|
|
277
|
+
name: e.name
|
|
278
|
+
}, e.value);
|
|
279
|
+
}), t;
|
|
280
|
+
}
|
|
281
|
+
}), u = i((e, t) => {
|
|
282
|
+
t.exports = r;
|
|
283
|
+
var n = () => 1;
|
|
284
|
+
function r(e, t, r, a) {
|
|
285
|
+
return i(e, String(t), r || n, a || function(t) {
|
|
286
|
+
return e.outEdges(t);
|
|
287
|
+
});
|
|
288
|
+
}
|
|
289
|
+
function i(e, t, n, r) {
|
|
290
|
+
var i = {}, a = !0, o = 0, s = e.nodes(), c = function(e) {
|
|
291
|
+
var t = n(e);
|
|
292
|
+
i[e.v].distance + t < i[e.w].distance && (i[e.w] = {
|
|
293
|
+
distance: i[e.v].distance + t,
|
|
294
|
+
predecessor: e.v
|
|
295
|
+
}, a = !0);
|
|
296
|
+
}, l = function() {
|
|
297
|
+
s.forEach(function(e) {
|
|
298
|
+
r(e).forEach(function(t) {
|
|
299
|
+
var n = t.v === e ? t.v : t.w;
|
|
300
|
+
c({
|
|
301
|
+
v: n,
|
|
302
|
+
w: n === t.v ? t.w : t.v
|
|
303
|
+
});
|
|
304
|
+
});
|
|
316
305
|
});
|
|
306
|
+
};
|
|
307
|
+
s.forEach(function(e) {
|
|
308
|
+
i[e] = { distance: e === t ? 0 : Infinity };
|
|
317
309
|
});
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
let t = this._arr, n = t[e].priority, r;
|
|
390
|
-
for (; e !== 0 && (r = e >> 1, !(t[r].priority < n));) this._swap(e, r), e = r;
|
|
391
|
-
}
|
|
392
|
-
_swap(e, t) {
|
|
393
|
-
let n = this._arr, r = this._keyIndices, i = n[e], a = n[t];
|
|
394
|
-
n[e] = a, n[t] = i, r[a.key] = e, r[i.key] = t;
|
|
395
|
-
}
|
|
396
|
-
}, se = () => 1;
|
|
397
|
-
function v(e, t, n, r) {
|
|
398
|
-
return ce(e, String(t), n || se, r || function(t) {
|
|
399
|
-
return e.outEdges(t);
|
|
400
|
-
});
|
|
401
|
-
}
|
|
402
|
-
function ce(e, t, n, r) {
|
|
403
|
-
let i = {}, a = new _(), o, s, c = function(e) {
|
|
404
|
-
let t = e.v === o ? e.w : e.v, r = i[t], c = n(e), l = s.distance + c;
|
|
405
|
-
if (c < 0) throw Error("dijkstra does not allow negative edge weights. Bad edge: " + e + " Weight: " + c);
|
|
406
|
-
l < r.distance && (r.distance = l, r.predecessor = o, a.decrease(t, l));
|
|
407
|
-
};
|
|
408
|
-
for (e.nodes().forEach(function(e) {
|
|
409
|
-
let n = e === t ? 0 : Infinity;
|
|
410
|
-
i[e] = {
|
|
411
|
-
distance: n,
|
|
412
|
-
predecessor: ""
|
|
413
|
-
}, a.add(e, n);
|
|
414
|
-
}); a.size() > 0 && (o = a.removeMin(), s = i[o], s.distance !== Infinity);) r(o).forEach(c);
|
|
415
|
-
return i;
|
|
416
|
-
}
|
|
417
|
-
function le(e, t, n) {
|
|
418
|
-
return e.nodes().reduce(function(r, i) {
|
|
419
|
-
return r[i] = v(e, i, t, n), r;
|
|
420
|
-
}, {});
|
|
421
|
-
}
|
|
422
|
-
function y(e) {
|
|
423
|
-
let t = 0, n = [], r = {}, i = [];
|
|
424
|
-
function a(o) {
|
|
425
|
-
let s = r[o] = {
|
|
426
|
-
onStack: !0,
|
|
427
|
-
lowlink: t,
|
|
428
|
-
index: t++
|
|
310
|
+
for (var u = s.length, d = 1; d < u && (a = !1, o++, l(), a); d++);
|
|
311
|
+
if (o === u - 1 && (a = !1, l(), a)) throw Error("The graph contains a negative weight cycle");
|
|
312
|
+
return i;
|
|
313
|
+
}
|
|
314
|
+
}), d = i((e, t) => {
|
|
315
|
+
t.exports = n;
|
|
316
|
+
function n(e) {
|
|
317
|
+
var t = {}, n = [], r;
|
|
318
|
+
function i(n) {
|
|
319
|
+
Object.hasOwn(t, n) || (t[n] = !0, r.push(n), e.successors(n).forEach(i), e.predecessors(n).forEach(i));
|
|
320
|
+
}
|
|
321
|
+
return e.nodes().forEach(function(e) {
|
|
322
|
+
r = [], i(e), r.length && n.push(r);
|
|
323
|
+
}), n;
|
|
324
|
+
}
|
|
325
|
+
}), f = i((e, t) => {
|
|
326
|
+
t.exports = class {
|
|
327
|
+
constructor() {
|
|
328
|
+
a(this, "_arr", []), a(this, "_keyIndices", {});
|
|
329
|
+
}
|
|
330
|
+
size() {
|
|
331
|
+
return this._arr.length;
|
|
332
|
+
}
|
|
333
|
+
keys() {
|
|
334
|
+
return this._arr.map(function(e) {
|
|
335
|
+
return e.key;
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
has(e) {
|
|
339
|
+
return Object.hasOwn(this._keyIndices, e);
|
|
340
|
+
}
|
|
341
|
+
priority(e) {
|
|
342
|
+
var t = this._keyIndices[e];
|
|
343
|
+
if (t !== void 0) return this._arr[t].priority;
|
|
344
|
+
}
|
|
345
|
+
min() {
|
|
346
|
+
if (this.size() === 0) throw Error("Queue underflow");
|
|
347
|
+
return this._arr[0].key;
|
|
348
|
+
}
|
|
349
|
+
add(e, t) {
|
|
350
|
+
var n = this._keyIndices;
|
|
351
|
+
if (e = String(e), !Object.hasOwn(n, e)) {
|
|
352
|
+
var r = this._arr, i = r.length;
|
|
353
|
+
return n[e] = i, r.push({
|
|
354
|
+
key: e,
|
|
355
|
+
priority: t
|
|
356
|
+
}), this._decrease(i), !0;
|
|
357
|
+
}
|
|
358
|
+
return !1;
|
|
359
|
+
}
|
|
360
|
+
removeMin() {
|
|
361
|
+
this._swap(0, this._arr.length - 1);
|
|
362
|
+
var e = this._arr.pop();
|
|
363
|
+
return delete this._keyIndices[e.key], this._heapify(0), e.key;
|
|
364
|
+
}
|
|
365
|
+
decrease(e, t) {
|
|
366
|
+
var n = this._keyIndices[e];
|
|
367
|
+
if (t > this._arr[n].priority) throw Error("New priority is greater than current priority. Key: " + e + " Old: " + this._arr[n].priority + " New: " + t);
|
|
368
|
+
this._arr[n].priority = t, this._decrease(n);
|
|
369
|
+
}
|
|
370
|
+
_heapify(e) {
|
|
371
|
+
var t = this._arr, n = 2 * e, r = n + 1, i = e;
|
|
372
|
+
n < t.length && (i = t[n].priority < t[i].priority ? n : i, r < t.length && (i = t[r].priority < t[i].priority ? r : i), i !== e && (this._swap(e, i), this._heapify(i)));
|
|
373
|
+
}
|
|
374
|
+
_decrease(e) {
|
|
375
|
+
for (var t = this._arr, n = t[e].priority, r; e !== 0 && (r = e >> 1, !(t[r].priority < n));) this._swap(e, r), e = r;
|
|
376
|
+
}
|
|
377
|
+
_swap(e, t) {
|
|
378
|
+
var n = this._arr, r = this._keyIndices, i = n[e], a = n[t];
|
|
379
|
+
n[e] = a, n[t] = i, r[a.key] = e, r[i.key] = t;
|
|
380
|
+
}
|
|
429
381
|
};
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
i.push(e);
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
return e.nodes().forEach(function(e) {
|
|
441
|
-
e in r || a(e);
|
|
442
|
-
}), i;
|
|
443
|
-
}
|
|
444
|
-
function ue(e) {
|
|
445
|
-
return y(e).filter(function(t) {
|
|
446
|
-
return t.length > 1 || t.length === 1 && e.hasEdge(t[0], t[0]);
|
|
447
|
-
});
|
|
448
|
-
}
|
|
449
|
-
var de = () => 1;
|
|
450
|
-
function fe(e, t, n) {
|
|
451
|
-
return pe(e, t || de, n || function(t) {
|
|
452
|
-
return e.outEdges(t);
|
|
453
|
-
});
|
|
454
|
-
}
|
|
455
|
-
function pe(e, t, n) {
|
|
456
|
-
let r = {}, i = e.nodes();
|
|
457
|
-
return i.forEach(function(e) {
|
|
458
|
-
r[e] = {}, r[e][e] = {
|
|
459
|
-
distance: 0,
|
|
460
|
-
predecessor: ""
|
|
461
|
-
}, i.forEach(function(t) {
|
|
462
|
-
e !== t && (r[e][t] = {
|
|
463
|
-
distance: Infinity,
|
|
464
|
-
predecessor: ""
|
|
382
|
+
}), p = i((e, t) => {
|
|
383
|
+
var n = f();
|
|
384
|
+
t.exports = i;
|
|
385
|
+
var r = () => 1;
|
|
386
|
+
function i(e, t, n, i) {
|
|
387
|
+
return a(e, String(t), n || r, i || function(t) {
|
|
388
|
+
return e.outEdges(t);
|
|
465
389
|
});
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
390
|
+
}
|
|
391
|
+
function a(e, t, r, i) {
|
|
392
|
+
var a = {}, o = new n(), s, c, l = function(e) {
|
|
393
|
+
var t = e.v === s ? e.w : e.v, n = a[t], i = r(e), l = c.distance + i;
|
|
394
|
+
if (i < 0) throw Error("dijkstra does not allow negative edge weights. Bad edge: " + e + " Weight: " + i);
|
|
395
|
+
l < n.distance && (n.distance = l, n.predecessor = s, o.decrease(t, l));
|
|
471
396
|
};
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
397
|
+
for (e.nodes().forEach(function(e) {
|
|
398
|
+
var n = e === t ? 0 : Infinity;
|
|
399
|
+
a[e] = { distance: n }, o.add(e, n);
|
|
400
|
+
}); o.size() > 0 && (s = o.removeMin(), c = a[s], c.distance !== Infinity);) i(s).forEach(l);
|
|
401
|
+
return a;
|
|
402
|
+
}
|
|
403
|
+
}), m = i((e, t) => {
|
|
404
|
+
var n = p();
|
|
405
|
+
t.exports = r;
|
|
406
|
+
function r(e, t, r) {
|
|
407
|
+
return e.nodes().reduce(function(i, a) {
|
|
408
|
+
return i[a] = n(e, a, t, r), i;
|
|
409
|
+
}, {});
|
|
410
|
+
}
|
|
411
|
+
}), h = i((e, t) => {
|
|
412
|
+
t.exports = n;
|
|
413
|
+
function n(e, t, n) {
|
|
414
|
+
if (e[t].predecessor !== void 0) throw Error("Invalid source vertex");
|
|
415
|
+
if (e[n].predecessor === void 0 && n !== t) throw Error("Invalid destination vertex");
|
|
416
|
+
return {
|
|
417
|
+
weight: e[n].distance,
|
|
418
|
+
path: r(e, t, n)
|
|
419
|
+
};
|
|
420
|
+
}
|
|
421
|
+
function r(e, t, n) {
|
|
422
|
+
for (var r = [], i = n; i !== t;) r.push(i), i = e[i].predecessor;
|
|
423
|
+
return r.push(t), r.reverse();
|
|
424
|
+
}
|
|
425
|
+
}), g = i((e, t) => {
|
|
426
|
+
t.exports = n;
|
|
427
|
+
function n(e) {
|
|
428
|
+
var t = 0, n = [], r = {}, i = [];
|
|
429
|
+
function a(o) {
|
|
430
|
+
var s = r[o] = {
|
|
431
|
+
onStack: !0,
|
|
432
|
+
lowlink: t,
|
|
433
|
+
index: t++
|
|
434
|
+
};
|
|
435
|
+
if (n.push(o), e.successors(o).forEach(function(e) {
|
|
436
|
+
Object.hasOwn(r, e) ? r[e].onStack && (s.lowlink = Math.min(s.lowlink, r[e].index)) : (a(e), s.lowlink = Math.min(s.lowlink, r[e].lowlink));
|
|
437
|
+
}), s.lowlink === s.index) {
|
|
438
|
+
var c = [], l;
|
|
439
|
+
do
|
|
440
|
+
l = n.pop(), r[l].onStack = !1, c.push(l);
|
|
441
|
+
while (o !== l);
|
|
442
|
+
i.push(c);
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
return e.nodes().forEach(function(e) {
|
|
446
|
+
Object.hasOwn(r, e) || a(e);
|
|
447
|
+
}), i;
|
|
448
|
+
}
|
|
449
|
+
}), b = i((e, t) => {
|
|
450
|
+
var n = g();
|
|
451
|
+
t.exports = r;
|
|
452
|
+
function r(e) {
|
|
453
|
+
return n(e).filter(function(t) {
|
|
454
|
+
return t.length > 1 || t.length === 1 && e.hasEdge(t[0], t[0]);
|
|
455
|
+
});
|
|
456
|
+
}
|
|
457
|
+
}), x = i((e, t) => {
|
|
458
|
+
t.exports = r;
|
|
459
|
+
var n = () => 1;
|
|
460
|
+
function r(e, t, r) {
|
|
461
|
+
return i(e, t || n, r || function(t) {
|
|
462
|
+
return e.outEdges(t);
|
|
463
|
+
});
|
|
464
|
+
}
|
|
465
|
+
function i(e, t, n) {
|
|
466
|
+
var r = {}, i = e.nodes();
|
|
467
|
+
return i.forEach(function(e) {
|
|
468
|
+
r[e] = {}, r[e][e] = { distance: 0 }, i.forEach(function(t) {
|
|
469
|
+
e !== t && (r[e][t] = { distance: Infinity });
|
|
470
|
+
}), n(e).forEach(function(n) {
|
|
471
|
+
var i = n.v === e ? n.w : n.v, a = t(n);
|
|
472
|
+
r[e][i] = {
|
|
473
|
+
distance: a,
|
|
474
|
+
predecessor: e
|
|
475
|
+
};
|
|
476
|
+
});
|
|
477
|
+
}), i.forEach(function(e) {
|
|
478
|
+
var t = r[e];
|
|
479
|
+
i.forEach(function(n) {
|
|
480
|
+
var a = r[n];
|
|
481
|
+
i.forEach(function(n) {
|
|
482
|
+
var r = a[e], i = t[n], o = a[n], s = r.distance + i.distance;
|
|
483
|
+
s < o.distance && (o.distance = s, o.predecessor = i.predecessor);
|
|
484
|
+
});
|
|
485
|
+
});
|
|
486
|
+
}), r;
|
|
487
|
+
}
|
|
488
|
+
}), S = i((e, t) => {
|
|
489
|
+
function n(e) {
|
|
490
|
+
var t = {}, n = {}, i = [];
|
|
491
|
+
function a(o) {
|
|
492
|
+
if (Object.hasOwn(n, o)) throw new r();
|
|
493
|
+
Object.hasOwn(t, o) || (n[o] = !0, t[o] = !0, e.predecessors(o).forEach(a), delete n[o], i.push(o));
|
|
494
|
+
}
|
|
495
|
+
if (e.sinks().forEach(a), Object.keys(t).length !== e.nodeCount()) throw new r();
|
|
496
|
+
return i;
|
|
497
|
+
}
|
|
498
|
+
var r = class extends Error {
|
|
499
|
+
constructor() {
|
|
500
|
+
super(...arguments);
|
|
501
|
+
}
|
|
502
|
+
};
|
|
503
|
+
t.exports = n, n.CycleException = r;
|
|
504
|
+
}), C = i((e, t) => {
|
|
505
|
+
var n = S();
|
|
506
|
+
t.exports = r;
|
|
507
|
+
function r(e) {
|
|
508
|
+
try {
|
|
509
|
+
n(e);
|
|
510
|
+
} catch (e) {
|
|
511
|
+
if (e instanceof n.CycleException) return !1;
|
|
512
|
+
throw e;
|
|
513
|
+
}
|
|
514
|
+
return !0;
|
|
515
|
+
}
|
|
516
|
+
}), w = i((e, t) => {
|
|
517
|
+
t.exports = n;
|
|
518
|
+
function n(e, t, n, i, a) {
|
|
519
|
+
Array.isArray(t) || (t = [t]);
|
|
520
|
+
var o = (e.isDirected() ? e.successors : e.neighbors).bind(e), s = {};
|
|
521
|
+
return t.forEach(function(t) {
|
|
522
|
+
if (!e.hasNode(t)) throw Error("Graph does not have node: " + t);
|
|
523
|
+
a = r(e, t, n === "post", s, o, i, a);
|
|
524
|
+
}), a;
|
|
525
|
+
}
|
|
526
|
+
function r(e, t, n, i, a, o, s) {
|
|
527
|
+
return Object.hasOwn(i, t) || (i[t] = !0, n || (s = o(s, t)), a(t).forEach(function(t) {
|
|
528
|
+
s = r(e, t, n, i, a, o, s);
|
|
529
|
+
}), n && (s = o(s, t))), s;
|
|
530
|
+
}
|
|
531
|
+
}), T = i((e, t) => {
|
|
532
|
+
var n = w();
|
|
533
|
+
t.exports = r;
|
|
534
|
+
function r(e, t, r) {
|
|
535
|
+
return n(e, t, r, function(e, t) {
|
|
536
|
+
return e.push(t), e;
|
|
537
|
+
}, []);
|
|
538
|
+
}
|
|
539
|
+
}), E = i((e, t) => {
|
|
540
|
+
var n = T();
|
|
541
|
+
t.exports = r;
|
|
542
|
+
function r(e, t) {
|
|
543
|
+
return n(e, t, "post");
|
|
544
|
+
}
|
|
545
|
+
}), D = i((e, t) => {
|
|
546
|
+
var n = T();
|
|
547
|
+
t.exports = r;
|
|
548
|
+
function r(e, t) {
|
|
549
|
+
return n(e, t, "pre");
|
|
550
|
+
}
|
|
551
|
+
}), O = i((e, t) => {
|
|
552
|
+
var n = o(), r = f();
|
|
553
|
+
t.exports = i;
|
|
554
|
+
function i(e, t) {
|
|
555
|
+
var i = new n(), a = {}, o = new r(), s;
|
|
556
|
+
function c(e) {
|
|
557
|
+
var n = e.v === s ? e.w : e.v, r = o.priority(n);
|
|
558
|
+
if (r !== void 0) {
|
|
559
|
+
var i = t(e);
|
|
560
|
+
i < r && (a[n] = s, o.decrease(n, i));
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
if (e.nodeCount() === 0) return i;
|
|
564
|
+
e.nodes().forEach(function(e) {
|
|
565
|
+
o.add(e, Infinity), i.setNode(e);
|
|
566
|
+
}), o.decrease(e.nodes()[0], 0);
|
|
567
|
+
for (var l = !1; o.size() > 0;) {
|
|
568
|
+
if (s = o.removeMin(), Object.hasOwn(a, s)) i.setEdge(s, a[s]);
|
|
569
|
+
else {
|
|
570
|
+
if (l) throw Error("Input graph is not connected: " + e);
|
|
571
|
+
l = !0;
|
|
572
|
+
}
|
|
573
|
+
e.nodeEdges(s).forEach(c);
|
|
574
|
+
}
|
|
575
|
+
return i;
|
|
576
|
+
}
|
|
577
|
+
}), k = i((e, t) => {
|
|
578
|
+
var n = p(), r = u();
|
|
579
|
+
t.exports = i;
|
|
580
|
+
function i(e, t, n, r) {
|
|
581
|
+
return a(e, t, n, r || function(t) {
|
|
582
|
+
return e.outEdges(t);
|
|
480
583
|
});
|
|
584
|
+
}
|
|
585
|
+
function a(e, t, i, a) {
|
|
586
|
+
if (i === void 0) return n(e, t, i, a);
|
|
587
|
+
for (var o = !1, s = e.nodes(), c = 0; c < s.length; c++) {
|
|
588
|
+
for (var l = a(s[c]), u = 0; u < l.length; u++) {
|
|
589
|
+
var d = l[u], f = d.v === s[c] ? d.v : d.w;
|
|
590
|
+
i({
|
|
591
|
+
v: f,
|
|
592
|
+
w: f === d.v ? d.w : d.v
|
|
593
|
+
}) < 0 && (o = !0);
|
|
594
|
+
}
|
|
595
|
+
if (o) return r(e, t, i, a);
|
|
596
|
+
}
|
|
597
|
+
return n(e, t, i, a);
|
|
598
|
+
}
|
|
599
|
+
}), A = i((e, t) => {
|
|
600
|
+
t.exports = {
|
|
601
|
+
bellmanFord: u(),
|
|
602
|
+
components: d(),
|
|
603
|
+
dijkstra: p(),
|
|
604
|
+
dijkstraAll: m(),
|
|
605
|
+
extractPath: h(),
|
|
606
|
+
findCycles: b(),
|
|
607
|
+
floydWarshall: x(),
|
|
608
|
+
isAcyclic: C(),
|
|
609
|
+
postorder: E(),
|
|
610
|
+
preorder: D(),
|
|
611
|
+
prim: O(),
|
|
612
|
+
shortestPaths: k(),
|
|
613
|
+
reduce: w(),
|
|
614
|
+
tarjan: g(),
|
|
615
|
+
topsort: S()
|
|
616
|
+
};
|
|
617
|
+
}), M = c();
|
|
618
|
+
t.exports = {
|
|
619
|
+
Graph: M.Graph,
|
|
620
|
+
json: l(),
|
|
621
|
+
alg: A(),
|
|
622
|
+
version: M.version
|
|
623
|
+
};
|
|
624
|
+
}), ne = v((e, t) => {
|
|
625
|
+
var n = class {
|
|
626
|
+
constructor() {
|
|
627
|
+
let e = {};
|
|
628
|
+
e._next = e._prev = e, this._sentinel = e;
|
|
629
|
+
}
|
|
630
|
+
dequeue() {
|
|
631
|
+
let e = this._sentinel, t = e._prev;
|
|
632
|
+
if (t !== e) return r(t), t;
|
|
633
|
+
}
|
|
634
|
+
enqueue(e) {
|
|
635
|
+
let t = this._sentinel;
|
|
636
|
+
e._prev && e._next && r(e), e._next = t._next, t._next._prev = e, t._next = e, e._prev = t;
|
|
637
|
+
}
|
|
638
|
+
toString() {
|
|
639
|
+
let e = [], t = this._sentinel, n = t._prev;
|
|
640
|
+
for (; n !== t;) e.push(JSON.stringify(n, i)), n = n._prev;
|
|
641
|
+
return "[" + e.join(", ") + "]";
|
|
642
|
+
}
|
|
643
|
+
};
|
|
644
|
+
function r(e) {
|
|
645
|
+
e._prev._next = e._next, e._next._prev = e._prev, delete e._next, delete e._prev;
|
|
646
|
+
}
|
|
647
|
+
function i(e, t) {
|
|
648
|
+
if (e !== "_next" && e !== "_prev") return t;
|
|
649
|
+
}
|
|
650
|
+
t.exports = n;
|
|
651
|
+
}), oe = v((e, r) => {
|
|
652
|
+
var i = y().Graph, a = ne();
|
|
653
|
+
r.exports = s;
|
|
654
|
+
var o = () => 1;
|
|
655
|
+
function s(e, t) {
|
|
656
|
+
if (e.nodeCount() <= 1) return [];
|
|
657
|
+
let n = u(e, t || o);
|
|
658
|
+
return c(n.graph, n.buckets, n.zeroIdx).flatMap((t) => e.outEdges(t.v, t.w));
|
|
659
|
+
}
|
|
660
|
+
function c(e, t, n) {
|
|
661
|
+
let r = [], i = t[t.length - 1], a = t[0], o;
|
|
662
|
+
for (; e.nodeCount();) {
|
|
663
|
+
for (; o = a.dequeue();) l(e, t, n, o);
|
|
664
|
+
for (; o = i.dequeue();) l(e, t, n, o);
|
|
665
|
+
if (e.nodeCount()) {
|
|
666
|
+
for (let i = t.length - 2; i > 0; --i) if (o = t[i].dequeue(), o) {
|
|
667
|
+
r = r.concat(l(e, t, n, o, !0));
|
|
668
|
+
break;
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
return r;
|
|
673
|
+
}
|
|
674
|
+
function l(e, t, n, r, i) {
|
|
675
|
+
let a = i ? [] : void 0;
|
|
676
|
+
return e.inEdges(r.v).forEach((r) => {
|
|
677
|
+
let o = e.edge(r), s = e.node(r.v);
|
|
678
|
+
i && a.push({
|
|
679
|
+
v: r.v,
|
|
680
|
+
w: r.w
|
|
681
|
+
}), s.out -= o, d(t, n, s);
|
|
682
|
+
}), e.outEdges(r.v).forEach((r) => {
|
|
683
|
+
let i = e.edge(r), a = r.w, o = e.node(a);
|
|
684
|
+
o.in -= i, d(t, n, o);
|
|
685
|
+
}), e.removeNode(r.v), a;
|
|
686
|
+
}
|
|
687
|
+
function u(e, t) {
|
|
688
|
+
let n = new i(), r = 0, o = 0;
|
|
689
|
+
e.nodes().forEach((e) => {
|
|
690
|
+
n.setNode(e, {
|
|
691
|
+
v: e,
|
|
692
|
+
in: 0,
|
|
693
|
+
out: 0
|
|
694
|
+
});
|
|
695
|
+
}), e.edges().forEach((e) => {
|
|
696
|
+
let i = n.edge(e.v, e.w) || 0, a = t(e), s = i + a;
|
|
697
|
+
n.setEdge(e.v, e.w, s), o = Math.max(o, n.node(e.v).out += a), r = Math.max(r, n.node(e.w).in += a);
|
|
481
698
|
});
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
function
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
699
|
+
let s = f(o + r + 3).map(() => new a()), c = r + 1;
|
|
700
|
+
return n.nodes().forEach((e) => {
|
|
701
|
+
d(s, c, n.node(e));
|
|
702
|
+
}), {
|
|
703
|
+
graph: n,
|
|
704
|
+
buckets: s,
|
|
705
|
+
zeroIdx: c
|
|
706
|
+
};
|
|
707
|
+
}
|
|
708
|
+
function d(e, t, n) {
|
|
709
|
+
n.out ? n.in ? e[n.out - n.in + t].enqueue(n) : e[e.length - 1].enqueue(n) : e[0].enqueue(n);
|
|
710
|
+
}
|
|
711
|
+
function f(e) {
|
|
712
|
+
let t = [];
|
|
713
|
+
for (let n = 0; n < e; n++) t.push(n);
|
|
714
|
+
return t;
|
|
715
|
+
}
|
|
716
|
+
}), _ = v((e, n) => {
|
|
717
|
+
var r = y().Graph;
|
|
718
|
+
n.exports = {
|
|
719
|
+
addBorderNode: p,
|
|
720
|
+
addDummyNode: i,
|
|
721
|
+
applyWithChunking: g,
|
|
722
|
+
asNonCompoundGraph: o,
|
|
723
|
+
buildLayerMatrix: u,
|
|
724
|
+
intersectRect: l,
|
|
725
|
+
mapValues: O,
|
|
726
|
+
maxRank: b,
|
|
727
|
+
normalizeRanks: d,
|
|
728
|
+
notime: C,
|
|
729
|
+
partition: x,
|
|
730
|
+
pick: D,
|
|
731
|
+
predecessorWeights: c,
|
|
732
|
+
range: E,
|
|
733
|
+
removeEmptyRanks: f,
|
|
734
|
+
simplify: a,
|
|
735
|
+
successorWeights: s,
|
|
736
|
+
time: S,
|
|
737
|
+
uniqueId: T,
|
|
738
|
+
zipObject: k
|
|
739
|
+
};
|
|
740
|
+
function i(e, t, n, r) {
|
|
741
|
+
for (var i = r; e.hasNode(i);) i = T(r);
|
|
742
|
+
return n.dummy = t, e.setNode(i, n), i;
|
|
743
|
+
}
|
|
744
|
+
function a(e) {
|
|
745
|
+
let t = new r().setGraph(e.graph());
|
|
746
|
+
return e.nodes().forEach((n) => t.setNode(n, e.node(n))), e.edges().forEach((n) => {
|
|
747
|
+
let r = t.edge(n.v, n.w) || {
|
|
748
|
+
weight: 0,
|
|
749
|
+
minlen: 1
|
|
750
|
+
}, i = e.edge(n);
|
|
751
|
+
t.setEdge(n.v, n.w, {
|
|
752
|
+
weight: r.weight + i.weight,
|
|
753
|
+
minlen: Math.max(r.minlen, i.minlen)
|
|
754
|
+
});
|
|
755
|
+
}), t;
|
|
756
|
+
}
|
|
533
757
|
function o(e) {
|
|
534
|
-
let
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
else {
|
|
548
|
-
if (c) throw Error("Input graph is not connected: " + e);
|
|
549
|
-
c = !0;
|
|
550
|
-
}
|
|
551
|
-
e.nodeEdges(a).forEach(o);
|
|
552
|
-
}
|
|
553
|
-
return n;
|
|
554
|
-
}
|
|
555
|
-
function xe(e, t, n, r) {
|
|
556
|
-
return Se(e, t, n, r ?? ((t) => e.outEdges(t) ?? []));
|
|
557
|
-
}
|
|
558
|
-
function Se(e, t, n, r) {
|
|
559
|
-
if (n === void 0) return v(e, t, n, r);
|
|
560
|
-
let i = !1, a = e.nodes();
|
|
561
|
-
for (let o = 0; o < a.length; o++) {
|
|
562
|
-
let s = r(a[o]);
|
|
563
|
-
for (let e = 0; e < s.length; e++) {
|
|
564
|
-
let t = s[e], r = t.v === a[o] ? t.v : t.w;
|
|
565
|
-
n({
|
|
566
|
-
v: r,
|
|
567
|
-
w: r === t.v ? t.w : t.v
|
|
568
|
-
}) < 0 && (i = !0);
|
|
569
|
-
}
|
|
570
|
-
if (i) return g(e, t, n, r);
|
|
571
|
-
}
|
|
572
|
-
return v(e, t, n, r);
|
|
573
|
-
}
|
|
574
|
-
function S(e, t, n, r) {
|
|
575
|
-
let i = r;
|
|
576
|
-
for (; e.hasNode(i);) i = M(r);
|
|
577
|
-
return n.dummy = t, e.setNode(i, n), i;
|
|
578
|
-
}
|
|
579
|
-
function Ce(e) {
|
|
580
|
-
let t = new s().setGraph(e.graph());
|
|
581
|
-
return e.nodes().forEach((n) => t.setNode(n, e.node(n))), e.edges().forEach((n) => {
|
|
582
|
-
let r = t.edge(n.v, n.w) || {
|
|
583
|
-
weight: 0,
|
|
584
|
-
minlen: 1
|
|
585
|
-
}, i = e.edge(n);
|
|
586
|
-
t.setEdge(n.v, n.w, {
|
|
587
|
-
weight: r.weight + i.weight,
|
|
588
|
-
minlen: Math.max(r.minlen, i.minlen)
|
|
758
|
+
let t = new r({ multigraph: e.isMultigraph() }).setGraph(e.graph());
|
|
759
|
+
return e.nodes().forEach((n) => {
|
|
760
|
+
e.children(n).length || t.setNode(n, e.node(n));
|
|
761
|
+
}), e.edges().forEach((n) => {
|
|
762
|
+
t.setEdge(n, e.edge(n));
|
|
763
|
+
}), t;
|
|
764
|
+
}
|
|
765
|
+
function s(e) {
|
|
766
|
+
let t = e.nodes().map((t) => {
|
|
767
|
+
let n = {};
|
|
768
|
+
return e.outEdges(t).forEach((t) => {
|
|
769
|
+
n[t.w] = (n[t.w] || 0) + e.edge(t).weight;
|
|
770
|
+
}), n;
|
|
589
771
|
});
|
|
590
|
-
|
|
591
|
-
}
|
|
592
|
-
function
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
772
|
+
return k(e.nodes(), t);
|
|
773
|
+
}
|
|
774
|
+
function c(e) {
|
|
775
|
+
let t = e.nodes().map((t) => {
|
|
776
|
+
let n = {};
|
|
777
|
+
return e.inEdges(t).forEach((t) => {
|
|
778
|
+
n[t.v] = (n[t.v] || 0) + e.edge(t).weight;
|
|
779
|
+
}), n;
|
|
780
|
+
});
|
|
781
|
+
return k(e.nodes(), t);
|
|
782
|
+
}
|
|
783
|
+
function l(e, t) {
|
|
784
|
+
let n = e.x, r = e.y, i = t.x - n, a = t.y - r, o = e.width / 2, s = e.height / 2;
|
|
785
|
+
if (!i && !a) throw Error("Not possible to find intersection inside of the rectangle");
|
|
786
|
+
let c, l;
|
|
787
|
+
return Math.abs(a) * o > Math.abs(i) * s ? (a < 0 && (s = -s), c = s * i / a, l = s) : (i < 0 && (o = -o), c = o, l = o * a / i), {
|
|
788
|
+
x: n + c,
|
|
789
|
+
y: r + l
|
|
790
|
+
};
|
|
791
|
+
}
|
|
792
|
+
function u(e) {
|
|
793
|
+
let t = E(b(e) + 1).map(() => []);
|
|
794
|
+
return e.nodes().forEach((n) => {
|
|
795
|
+
let r = e.node(n), i = r.rank;
|
|
796
|
+
i !== void 0 && (t[i][r.order] = n);
|
|
797
|
+
}), t;
|
|
798
|
+
}
|
|
799
|
+
function d(e) {
|
|
800
|
+
let t = e.nodes().map((t) => {
|
|
801
|
+
let n = e.node(t).rank;
|
|
802
|
+
return n === void 0 ? Number.MAX_VALUE : n;
|
|
803
|
+
}), n = g(Math.min, t);
|
|
804
|
+
e.nodes().forEach((t) => {
|
|
805
|
+
let r = e.node(t);
|
|
806
|
+
Object.hasOwn(r, "rank") && (r.rank -= n);
|
|
807
|
+
});
|
|
808
|
+
}
|
|
809
|
+
function f(e) {
|
|
810
|
+
let t = e.nodes().map((t) => e.node(t).rank).filter((e) => e !== void 0), n = g(Math.min, t), r = [];
|
|
811
|
+
e.nodes().forEach((t) => {
|
|
812
|
+
let i = e.node(t).rank - n;
|
|
813
|
+
r[i] || (r[i] = []), r[i].push(t);
|
|
814
|
+
});
|
|
815
|
+
let i = 0, a = e.graph().nodeRankFactor;
|
|
816
|
+
Array.from(r).forEach((t, n) => {
|
|
817
|
+
t === void 0 && n % a !== 0 ? --i : t !== void 0 && i && t.forEach((t) => e.node(t).rank += i);
|
|
818
|
+
});
|
|
819
|
+
}
|
|
820
|
+
function p(e, t, n, r) {
|
|
821
|
+
let a = {
|
|
822
|
+
width: 0,
|
|
823
|
+
height: 0
|
|
824
|
+
};
|
|
825
|
+
return arguments.length >= 4 && (a.rank = n, a.order = r), i(e, "border", a, t);
|
|
826
|
+
}
|
|
827
|
+
function m(e, t = h) {
|
|
828
|
+
let n = [];
|
|
829
|
+
for (let r = 0; r < e.length; r += t) {
|
|
830
|
+
let i = e.slice(r, r + t);
|
|
831
|
+
n.push(i);
|
|
832
|
+
}
|
|
833
|
+
return n;
|
|
834
|
+
}
|
|
835
|
+
var h = 65535;
|
|
836
|
+
function g(e, t) {
|
|
837
|
+
if (t.length > h) {
|
|
838
|
+
let n = m(t);
|
|
839
|
+
return e.apply(null, n.map((t) => e.apply(null, t)));
|
|
840
|
+
} else return e.apply(null, t);
|
|
841
|
+
}
|
|
842
|
+
function b(e) {
|
|
843
|
+
let t = e.nodes().map((t) => {
|
|
844
|
+
let n = e.node(t).rank;
|
|
845
|
+
return n === void 0 ? Number.MIN_VALUE : n;
|
|
846
|
+
});
|
|
847
|
+
return g(Math.max, t);
|
|
848
|
+
}
|
|
849
|
+
function x(e, t) {
|
|
850
|
+
let n = {
|
|
851
|
+
lhs: [],
|
|
852
|
+
rhs: []
|
|
853
|
+
};
|
|
854
|
+
return e.forEach((e) => {
|
|
855
|
+
t(e) ? n.lhs.push(e) : n.rhs.push(e);
|
|
856
|
+
}), n;
|
|
857
|
+
}
|
|
858
|
+
function S(e, t) {
|
|
859
|
+
let n = Date.now();
|
|
860
|
+
try {
|
|
861
|
+
return t();
|
|
862
|
+
} finally {
|
|
863
|
+
console.log(e + " time: " + (Date.now() - n) + "ms");
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
function C(e, t) {
|
|
867
|
+
return t();
|
|
868
|
+
}
|
|
869
|
+
var w = 0;
|
|
870
|
+
function T(e) {
|
|
871
|
+
return e + ("" + ++w);
|
|
872
|
+
}
|
|
873
|
+
function E(e, t, n = 1) {
|
|
874
|
+
t ?? (t = e, e = 0);
|
|
875
|
+
let r = (e) => e < t;
|
|
876
|
+
n < 0 && (r = (e) => t < e);
|
|
877
|
+
let i = [];
|
|
878
|
+
for (let t = e; r(t); t += n) i.push(t);
|
|
879
|
+
return i;
|
|
880
|
+
}
|
|
881
|
+
function D(e, t) {
|
|
882
|
+
let n = {};
|
|
883
|
+
for (let r of t) e[r] !== void 0 && (n[r] = e[r]);
|
|
884
|
+
return n;
|
|
885
|
+
}
|
|
886
|
+
function O(e, t) {
|
|
887
|
+
let n = t;
|
|
888
|
+
return typeof t == "string" && (n = (e) => e[t]), Object.entries(e).reduce((e, [t, r]) => (e[t] = n(r, t), e), {});
|
|
889
|
+
}
|
|
890
|
+
function k(e, t) {
|
|
891
|
+
return e.reduce((e, n, r) => (e[n] = t[r], e), {});
|
|
892
|
+
}
|
|
893
|
+
}), pe = v((e, t) => {
|
|
894
|
+
var n = oe(), a = _().uniqueId;
|
|
895
|
+
t.exports = {
|
|
896
|
+
run: o,
|
|
897
|
+
undo: c
|
|
607
898
|
};
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
let n =
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
}
|
|
626
|
-
function
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
899
|
+
function o(e) {
|
|
900
|
+
(e.graph().acyclicer === "greedy" ? n(e, t(e)) : s(e)).forEach((t) => {
|
|
901
|
+
let n = e.edge(t);
|
|
902
|
+
e.removeEdge(t), n.forwardName = t.name, n.reversed = !0, e.setEdge(t.w, t.v, n, a("rev"));
|
|
903
|
+
});
|
|
904
|
+
function t(e) {
|
|
905
|
+
return (t) => e.edge(t).weight;
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
function s(e) {
|
|
909
|
+
let t = [], n = {}, r = {};
|
|
910
|
+
function i(a) {
|
|
911
|
+
Object.hasOwn(r, a) || (r[a] = !0, n[a] = !0, e.outEdges(a).forEach((e) => {
|
|
912
|
+
Object.hasOwn(n, e.w) ? t.push(e) : i(e.w);
|
|
913
|
+
}), delete n[a]);
|
|
914
|
+
}
|
|
915
|
+
return e.nodes().forEach(i), t;
|
|
916
|
+
}
|
|
917
|
+
function c(e) {
|
|
918
|
+
e.edges().forEach((t) => {
|
|
919
|
+
let n = e.edge(t);
|
|
920
|
+
if (n.reversed) {
|
|
921
|
+
e.removeEdge(t);
|
|
922
|
+
let r = n.forwardName;
|
|
923
|
+
delete n.reversed, delete n.forwardName, e.setEdge(t.w, t.v, n, r);
|
|
924
|
+
}
|
|
925
|
+
});
|
|
926
|
+
}
|
|
927
|
+
}), we = v((e, t) => {
|
|
928
|
+
var n = _();
|
|
929
|
+
t.exports = {
|
|
930
|
+
run: r,
|
|
931
|
+
undo: o
|
|
641
932
|
};
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
933
|
+
function r(e) {
|
|
934
|
+
e.graph().dummyChains = [], e.edges().forEach((t) => a(e, t));
|
|
935
|
+
}
|
|
936
|
+
function a(e, t) {
|
|
937
|
+
let r = t.v, i = e.node(r).rank, a = t.w, o = e.node(a).rank, s = t.name, c = e.edge(t), l = c.labelRank;
|
|
938
|
+
if (o === i + 1) return;
|
|
939
|
+
e.removeEdge(t);
|
|
940
|
+
let u, d, f;
|
|
941
|
+
for (f = 0, ++i; i < o; ++f, ++i) c.points = [], d = {
|
|
942
|
+
width: 0,
|
|
943
|
+
height: 0,
|
|
944
|
+
edgeLabel: c,
|
|
945
|
+
edgeObj: t,
|
|
946
|
+
rank: i
|
|
947
|
+
}, u = n.addDummyNode(e, "edge", d, "_d"), i === l && (d.width = c.width, d.height = c.height, d.dummy = "edge-label", d.labelpos = c.labelpos), e.setEdge(r, u, { weight: c.weight }, s), f === 0 && e.graph().dummyChains.push(u), r = u;
|
|
948
|
+
e.setEdge(r, a, { weight: c.weight }, s);
|
|
949
|
+
}
|
|
950
|
+
function o(e) {
|
|
951
|
+
e.graph().dummyChains.forEach((t) => {
|
|
952
|
+
let n = e.node(t), r = n.edgeLabel, i;
|
|
953
|
+
for (e.setEdge(n.edgeObj, r); n.dummy;) i = e.successors(t)[0], e.removeNode(t), r.points.push({
|
|
954
|
+
x: n.x,
|
|
955
|
+
y: n.y
|
|
956
|
+
}), n.dummy === "edge-label" && (r.x = n.x, r.y = n.y, r.width = n.width, r.height = n.height), t = i, n = e.node(t);
|
|
957
|
+
});
|
|
958
|
+
}
|
|
959
|
+
}), j = v((e, t) => {
|
|
960
|
+
var { applyWithChunking: n } = _();
|
|
961
|
+
t.exports = {
|
|
962
|
+
longestPath: r,
|
|
963
|
+
slack: a
|
|
667
964
|
};
|
|
668
|
-
|
|
669
|
-
t
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
}
|
|
680
|
-
function
|
|
681
|
-
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
}
|
|
727
|
-
function
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
return Ie(n.graph, n.buckets, n.zeroIdx).flatMap((t) => e.outEdges(t.v, t.w) || []);
|
|
738
|
-
}
|
|
739
|
-
function Ie(e, t, n) {
|
|
740
|
-
let r = [], i = t[t.length - 1], a = t[0], o;
|
|
741
|
-
for (; e.nodeCount();) {
|
|
742
|
-
for (; o = a.dequeue();) R(e, t, n, o);
|
|
743
|
-
for (; o = i.dequeue();) R(e, t, n, o);
|
|
744
|
-
if (e.nodeCount()) {
|
|
745
|
-
for (let i = t.length - 2; i > 0; --i) if (o = t[i]?.dequeue(), o) {
|
|
746
|
-
r = r.concat(R(e, t, n, o, !0) || []);
|
|
747
|
-
break;
|
|
965
|
+
function r(e) {
|
|
966
|
+
var t = {};
|
|
967
|
+
function r(i) {
|
|
968
|
+
var a = e.node(i);
|
|
969
|
+
if (Object.hasOwn(t, i)) return a.rank;
|
|
970
|
+
t[i] = !0;
|
|
971
|
+
let o = e.outEdges(i).map((t) => t == null ? Infinity : r(t.w) - e.edge(t).minlen);
|
|
972
|
+
var s = n(Math.min, o);
|
|
973
|
+
return s === Infinity && (s = 0), a.rank = s;
|
|
974
|
+
}
|
|
975
|
+
e.sources().forEach(r);
|
|
976
|
+
}
|
|
977
|
+
function a(e, t) {
|
|
978
|
+
return e.node(t.w).rank - e.node(t.v).rank - e.edge(t).minlen;
|
|
979
|
+
}
|
|
980
|
+
}), G = v((e, n) => {
|
|
981
|
+
var r = y().Graph, i = j().slack;
|
|
982
|
+
n.exports = a;
|
|
983
|
+
function a(e) {
|
|
984
|
+
var t = new r({ directed: !1 }), n = e.nodes()[0], a = e.nodeCount();
|
|
985
|
+
t.setNode(n, {});
|
|
986
|
+
for (var s, u; o(t, e) < a;) s = c(t, e), u = t.hasNode(s.v) ? i(e, s) : -i(e, s), l(t, e, u);
|
|
987
|
+
return t;
|
|
988
|
+
}
|
|
989
|
+
function o(e, t) {
|
|
990
|
+
function n(r) {
|
|
991
|
+
t.nodeEdges(r).forEach((a) => {
|
|
992
|
+
var o = a.v, s = r === o ? a.w : o;
|
|
993
|
+
!e.hasNode(s) && !i(t, a) && (e.setNode(s, {}), e.setEdge(r, s, {}), n(s));
|
|
994
|
+
});
|
|
995
|
+
}
|
|
996
|
+
return e.nodes().forEach(n), e.nodeCount();
|
|
997
|
+
}
|
|
998
|
+
function c(e, t) {
|
|
999
|
+
return t.edges().reduce((n, r) => {
|
|
1000
|
+
let a = Infinity;
|
|
1001
|
+
return e.hasNode(r.v) !== e.hasNode(r.w) && (a = i(t, r)), a < n[0] ? [a, r] : n;
|
|
1002
|
+
}, [Infinity, null])[1];
|
|
1003
|
+
}
|
|
1004
|
+
function l(e, t, n) {
|
|
1005
|
+
e.nodes().forEach((e) => t.node(e).rank += n);
|
|
1006
|
+
}
|
|
1007
|
+
}), Ie = v((e, n) => {
|
|
1008
|
+
var r = G(), a = j().slack, o = j().longestPath, l = y().alg.preorder, u = y().alg.postorder, d = _().simplify;
|
|
1009
|
+
n.exports = f, f.initLowLimValues = g, f.initCutValues = p, f.calcCutValue = h, f.leaveEdge = x, f.enterEdge = S, f.exchangeEdges = C;
|
|
1010
|
+
function f(e) {
|
|
1011
|
+
e = d(e), o(e);
|
|
1012
|
+
var t = r(e);
|
|
1013
|
+
g(t), p(t, e);
|
|
1014
|
+
for (var n, i; n = x(t);) i = S(t, e, n), C(t, e, n, i);
|
|
1015
|
+
}
|
|
1016
|
+
function p(e, t) {
|
|
1017
|
+
var n = u(e, e.nodes());
|
|
1018
|
+
n = n.slice(0, n.length - 1), n.forEach((n) => m(e, t, n));
|
|
1019
|
+
}
|
|
1020
|
+
function m(e, t, n) {
|
|
1021
|
+
var r = e.node(n).parent;
|
|
1022
|
+
e.edge(n, r).cutvalue = h(e, t, n);
|
|
1023
|
+
}
|
|
1024
|
+
function h(e, t, n) {
|
|
1025
|
+
var r = e.node(n).parent, i = !0, a = t.edge(n, r), o = 0;
|
|
1026
|
+
return a ||= (i = !1, t.edge(r, n)), o = a.weight, t.nodeEdges(n).forEach((a) => {
|
|
1027
|
+
var s = a.v === n, c = s ? a.w : a.v;
|
|
1028
|
+
if (c !== r) {
|
|
1029
|
+
var l = s === i, u = t.edge(a).weight;
|
|
1030
|
+
if (o += l ? u : -u, T(e, n, c)) {
|
|
1031
|
+
var d = e.edge(n, c).cutvalue;
|
|
1032
|
+
o += l ? -d : d;
|
|
1033
|
+
}
|
|
748
1034
|
}
|
|
1035
|
+
}), o;
|
|
1036
|
+
}
|
|
1037
|
+
function g(e, t) {
|
|
1038
|
+
arguments.length < 2 && (t = e.nodes()[0]), b(e, {}, 1, t);
|
|
1039
|
+
}
|
|
1040
|
+
function b(e, t, n, r, i) {
|
|
1041
|
+
var a = n, o = e.node(r);
|
|
1042
|
+
return t[r] = !0, e.neighbors(r).forEach((i) => {
|
|
1043
|
+
Object.hasOwn(t, i) || (n = b(e, t, n, i, r));
|
|
1044
|
+
}), o.low = a, o.lim = n++, i ? o.parent = i : delete o.parent, n;
|
|
1045
|
+
}
|
|
1046
|
+
function x(e) {
|
|
1047
|
+
return e.edges().find((t) => e.edge(t).cutvalue < 0);
|
|
1048
|
+
}
|
|
1049
|
+
function S(e, t, n) {
|
|
1050
|
+
var r = n.v, i = n.w;
|
|
1051
|
+
t.hasEdge(r, i) || (r = n.w, i = n.v);
|
|
1052
|
+
var o = e.node(r), s = e.node(i), c = o, l = !1;
|
|
1053
|
+
return o.lim > s.lim && (c = s, l = !0), t.edges().filter((t) => l === E(e, e.node(t.v), c) && l !== E(e, e.node(t.w), c)).reduce((e, n) => a(t, n) < a(t, e) ? n : e);
|
|
1054
|
+
}
|
|
1055
|
+
function C(e, t, n, r) {
|
|
1056
|
+
var i = n.v, a = n.w;
|
|
1057
|
+
e.removeEdge(i, a), e.setEdge(r.v, r.w, {}), g(e), p(e, t), w(e, t);
|
|
1058
|
+
}
|
|
1059
|
+
function w(e, t) {
|
|
1060
|
+
var n = l(e, e.nodes().find((e) => !t.node(e).parent));
|
|
1061
|
+
n = n.slice(1), n.forEach((n) => {
|
|
1062
|
+
var r = e.node(n).parent, i = t.edge(n, r), a = !1;
|
|
1063
|
+
i || (i = t.edge(r, n), a = !0), t.node(n).rank = t.node(r).rank + (a ? i.minlen : -i.minlen);
|
|
1064
|
+
});
|
|
1065
|
+
}
|
|
1066
|
+
function T(e, t, n) {
|
|
1067
|
+
return e.hasEdge(t, n);
|
|
1068
|
+
}
|
|
1069
|
+
function E(e, t, n) {
|
|
1070
|
+
return n.low <= t.lim && t.lim <= n.lim;
|
|
1071
|
+
}
|
|
1072
|
+
}), qe = v((e, t) => {
|
|
1073
|
+
var n = j().longestPath, r = G(), i = Ie();
|
|
1074
|
+
t.exports = a;
|
|
1075
|
+
function a(e) {
|
|
1076
|
+
var t = e.graph().ranker;
|
|
1077
|
+
if (t instanceof Function) return t(e);
|
|
1078
|
+
switch (e.graph().ranker) {
|
|
1079
|
+
case "network-simplex":
|
|
1080
|
+
d(e);
|
|
1081
|
+
break;
|
|
1082
|
+
case "tight-tree":
|
|
1083
|
+
u(e);
|
|
1084
|
+
break;
|
|
1085
|
+
case "longest-path":
|
|
1086
|
+
o(e);
|
|
1087
|
+
break;
|
|
1088
|
+
case "none": break;
|
|
1089
|
+
default: d(e);
|
|
749
1090
|
}
|
|
750
1091
|
}
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
1092
|
+
var o = n;
|
|
1093
|
+
function u(e) {
|
|
1094
|
+
n(e), r(e);
|
|
1095
|
+
}
|
|
1096
|
+
function d(e) {
|
|
1097
|
+
i(e);
|
|
1098
|
+
}
|
|
1099
|
+
}), Re = v((e, t) => {
|
|
1100
|
+
t.exports = n;
|
|
1101
|
+
function n(e) {
|
|
1102
|
+
let t = i(e);
|
|
1103
|
+
e.graph().dummyChains.forEach((n) => {
|
|
1104
|
+
let i = e.node(n), a = i.edgeObj, o = r(e, t, a.v, a.w), s = o.path, c = o.lca, l = 0, u = s[l], d = !0;
|
|
1105
|
+
for (; n !== a.w;) {
|
|
1106
|
+
if (i = e.node(n), d) {
|
|
1107
|
+
for (; (u = s[l]) !== c && e.node(u).maxRank < i.rank;) l++;
|
|
1108
|
+
u === c && (d = !1);
|
|
1109
|
+
}
|
|
1110
|
+
if (!d) {
|
|
1111
|
+
for (; l < s.length - 1 && e.node(u = s[l + 1]).minRank <= i.rank;) l++;
|
|
1112
|
+
u = s[l];
|
|
1113
|
+
}
|
|
1114
|
+
e.setParent(n, u), n = e.successors(n)[0];
|
|
1115
|
+
}
|
|
773
1116
|
});
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
1117
|
+
}
|
|
1118
|
+
function r(e, t, n, r) {
|
|
1119
|
+
let i = [], a = [], o = Math.min(t[n].low, t[r].low), s = Math.max(t[n].lim, t[r].lim), c, l;
|
|
1120
|
+
c = n;
|
|
1121
|
+
do
|
|
1122
|
+
c = e.parent(c), i.push(c);
|
|
1123
|
+
while (c && (t[c].low > o || s > t[c].lim));
|
|
1124
|
+
for (l = c, c = r; (c = e.parent(c)) !== l;) a.push(c);
|
|
1125
|
+
return {
|
|
1126
|
+
path: i.concat(a.reverse()),
|
|
1127
|
+
lca: l
|
|
1128
|
+
};
|
|
1129
|
+
}
|
|
1130
|
+
function i(e) {
|
|
1131
|
+
let t = {}, n = 0;
|
|
1132
|
+
function r(i) {
|
|
1133
|
+
let a = n;
|
|
1134
|
+
e.children(i).forEach(r), t[i] = {
|
|
1135
|
+
low: a,
|
|
1136
|
+
lim: n++
|
|
1137
|
+
};
|
|
1138
|
+
}
|
|
1139
|
+
return e.children().forEach(r), t;
|
|
1140
|
+
}
|
|
1141
|
+
}), Pe = v((e, t) => {
|
|
1142
|
+
var n = _();
|
|
1143
|
+
t.exports = {
|
|
1144
|
+
run: r,
|
|
1145
|
+
cleanup: c
|
|
787
1146
|
};
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
if (n.reversed) {
|
|
820
|
-
e.removeEdge(t);
|
|
821
|
-
let r = n.forwardName;
|
|
822
|
-
delete n.reversed, delete n.forwardName, e.setEdge(t.w, t.v, n, r);
|
|
823
|
-
}
|
|
824
|
-
});
|
|
825
|
-
}
|
|
826
|
-
function He(e) {
|
|
827
|
-
e.graph().dummyChains = [], e.edges().forEach((t) => Ue(e, t));
|
|
828
|
-
}
|
|
829
|
-
function Ue(e, t) {
|
|
830
|
-
let n = t.v, r = e.node(n).rank, i = t.w, a = e.node(i).rank, o = t.name, s = e.edge(t), c = s.labelRank;
|
|
831
|
-
if (a === r + 1) return;
|
|
832
|
-
e.removeEdge(t);
|
|
833
|
-
let l, u, d;
|
|
834
|
-
for (d = 0, ++r; r < a; ++d, ++r) s.points = [], u = {
|
|
835
|
-
width: 0,
|
|
836
|
-
height: 0,
|
|
837
|
-
edgeLabel: s,
|
|
838
|
-
edgeObj: t,
|
|
839
|
-
rank: r
|
|
840
|
-
}, l = S(e, "edge", u, "_d"), r === c && (u.width = s.width, u.height = s.height, u.dummy = "edge-label", u.labelpos = s.labelpos), e.setEdge(n, l, { weight: s.weight }, o), d === 0 && e.graph().dummyChains.push(l), n = l;
|
|
841
|
-
e.setEdge(n, i, { weight: s.weight }, o);
|
|
842
|
-
}
|
|
843
|
-
function We(e) {
|
|
844
|
-
e.graph().dummyChains.forEach((t) => {
|
|
845
|
-
let n = e.node(t), r = n.edgeLabel, i;
|
|
846
|
-
for (e.setEdge(n.edgeObj, r); n.dummy;) i = e.successors(t)[0], e.removeNode(t), r.points.push({
|
|
847
|
-
x: n.x,
|
|
848
|
-
y: n.y
|
|
849
|
-
}), n.dummy === "edge-label" && (r.x = n.x, r.y = n.y, r.width = n.width, r.height = n.height), t = i, n = e.node(t);
|
|
850
|
-
});
|
|
851
|
-
}
|
|
852
|
-
function B(e) {
|
|
853
|
-
let t = {};
|
|
854
|
-
function n(r) {
|
|
855
|
-
let i = e.node(r);
|
|
856
|
-
if (Object.hasOwn(t, r)) return i.rank;
|
|
857
|
-
t[r] = !0;
|
|
858
|
-
let a = e.outEdges(r), o = a ? a.map((t) => t == null ? Infinity : n(t.w) - e.edge(t).minlen) : [], s = O(Math.min, o);
|
|
859
|
-
return s === Infinity && (s = 0), i.rank = s;
|
|
860
|
-
}
|
|
861
|
-
e.sources().forEach(n);
|
|
862
|
-
}
|
|
863
|
-
function V(e, t) {
|
|
864
|
-
return e.node(t.w).rank - e.node(t.v).rank - e.edge(t).minlen;
|
|
865
|
-
}
|
|
866
|
-
var H = Ge;
|
|
867
|
-
function Ge(e) {
|
|
868
|
-
let t = new s({ directed: !1 }), n = e.nodes();
|
|
869
|
-
if (n.length === 0) throw Error("Graph must have at least one node");
|
|
870
|
-
let r = n[0], i = e.nodeCount();
|
|
871
|
-
t.setNode(r, {});
|
|
872
|
-
let a, o;
|
|
873
|
-
for (; Ke(t, e) < i && (a = qe(t, e), a);) o = t.hasNode(a.v) ? V(e, a) : -V(e, a), Je(t, e, o);
|
|
874
|
-
return t;
|
|
875
|
-
}
|
|
876
|
-
function Ke(e, t) {
|
|
877
|
-
function n(r) {
|
|
878
|
-
let i = t.nodeEdges(r);
|
|
879
|
-
i && i.forEach((i) => {
|
|
880
|
-
let a = i.v, o = r === a ? i.w : a;
|
|
881
|
-
!e.hasNode(o) && !V(t, i) && (e.setNode(o, {}), e.setEdge(r, o, {}), n(o));
|
|
1147
|
+
function r(e) {
|
|
1148
|
+
let t = n.addDummyNode(e, "root", {}, "_root"), r = o(e), i = Object.values(r), c = n.applyWithChunking(Math.max, i) - 1, l = 2 * c + 1;
|
|
1149
|
+
e.graph().nestingRoot = t, e.edges().forEach((t) => e.edge(t).minlen *= l);
|
|
1150
|
+
let u = s(e) + 1;
|
|
1151
|
+
e.children().forEach((n) => a(e, t, l, u, c, r, n)), e.graph().nodeRankFactor = l;
|
|
1152
|
+
}
|
|
1153
|
+
function a(e, t, r, i, o, s, c) {
|
|
1154
|
+
let l = e.children(c);
|
|
1155
|
+
if (!l.length) {
|
|
1156
|
+
c !== t && e.setEdge(t, c, {
|
|
1157
|
+
weight: 0,
|
|
1158
|
+
minlen: r
|
|
1159
|
+
});
|
|
1160
|
+
return;
|
|
1161
|
+
}
|
|
1162
|
+
let u = n.addBorderNode(e, "_bt"), d = n.addBorderNode(e, "_bb"), f = e.node(c);
|
|
1163
|
+
e.setParent(u, c), f.borderTop = u, e.setParent(d, c), f.borderBottom = d, l.forEach((n) => {
|
|
1164
|
+
a(e, t, r, i, o, s, n);
|
|
1165
|
+
let l = e.node(n), f = l.borderTop ? l.borderTop : n, p = l.borderBottom ? l.borderBottom : n, m = l.borderTop ? i : 2 * i, h = f === p ? o - s[c] + 1 : 1;
|
|
1166
|
+
e.setEdge(u, f, {
|
|
1167
|
+
weight: m,
|
|
1168
|
+
minlen: h,
|
|
1169
|
+
nestingEdge: !0
|
|
1170
|
+
}), e.setEdge(p, d, {
|
|
1171
|
+
weight: m,
|
|
1172
|
+
minlen: h,
|
|
1173
|
+
nestingEdge: !0
|
|
1174
|
+
});
|
|
1175
|
+
}), e.parent(c) || e.setEdge(t, u, {
|
|
1176
|
+
weight: 0,
|
|
1177
|
+
minlen: o + s[c]
|
|
882
1178
|
});
|
|
883
1179
|
}
|
|
884
|
-
|
|
885
|
-
}
|
|
886
|
-
function
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
}
|
|
892
|
-
function
|
|
893
|
-
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
function
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
a
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
function K(e, t) {
|
|
928
|
-
arguments.length < 2 && (t = e.nodes()[0]), q(e, {}, 1, t);
|
|
929
|
-
}
|
|
930
|
-
function q(e, t, n, r, i) {
|
|
931
|
-
let a = n, o = e.node(r);
|
|
932
|
-
t[r] = !0;
|
|
933
|
-
let s = e.neighbors(r);
|
|
934
|
-
return s && s.forEach((i) => {
|
|
935
|
-
Object.hasOwn(t, i) || (n = q(e, t, n, i, r));
|
|
936
|
-
}), o.low = a, o.lim = n++, i ? o.parent = i : delete o.parent, n;
|
|
937
|
-
}
|
|
938
|
-
function J(e) {
|
|
939
|
-
return e.edges().find((t) => e.edge(t).cutvalue < 0);
|
|
940
|
-
}
|
|
941
|
-
function $e(e, t, n) {
|
|
942
|
-
let r = n.v, i = n.w;
|
|
943
|
-
t.hasEdge(r, i) || (r = n.w, i = n.v);
|
|
944
|
-
let a = e.node(r), o = e.node(i), s = a, c = !1;
|
|
945
|
-
return a.lim > o.lim && (s = o, c = !0), t.edges().filter((t) => c === rt(e, e.node(t.v), s) && c !== rt(e, e.node(t.w), s)).reduce((e, n) => V(t, n) < V(t, e) ? n : e);
|
|
946
|
-
}
|
|
947
|
-
function et(e, t, n, r) {
|
|
948
|
-
let i = n.v, a = n.w;
|
|
949
|
-
e.removeEdge(i, a), e.setEdge(r.v, r.w, {}), K(e), W(e, t), tt(e, t);
|
|
950
|
-
}
|
|
951
|
-
function tt(e, t) {
|
|
952
|
-
let n = e.nodes().find((t) => !e.node(t).parent);
|
|
953
|
-
if (!n) return;
|
|
954
|
-
let r = Ye(e, [n]);
|
|
955
|
-
r = r.slice(1), r.forEach((n) => {
|
|
956
|
-
let r = e.node(n).parent, i = t.edge(n, r), a = !1;
|
|
957
|
-
i || (i = t.edge(r, n), a = !0), t.node(n).rank = t.node(r).rank + (a ? i.minlen : -i.minlen);
|
|
958
|
-
});
|
|
959
|
-
}
|
|
960
|
-
function nt(e, t, n) {
|
|
961
|
-
return e.hasEdge(t, n);
|
|
962
|
-
}
|
|
963
|
-
function rt(e, t, n) {
|
|
964
|
-
return n.low <= t.lim && t.lim <= n.lim;
|
|
965
|
-
}
|
|
966
|
-
var it = at;
|
|
967
|
-
function at(e) {
|
|
968
|
-
let t = e.graph().ranker;
|
|
969
|
-
if (typeof t == "function") return t(e);
|
|
970
|
-
switch (t) {
|
|
971
|
-
case "network-simplex":
|
|
972
|
-
ct(e);
|
|
973
|
-
break;
|
|
974
|
-
case "tight-tree":
|
|
975
|
-
st(e);
|
|
976
|
-
break;
|
|
977
|
-
case "longest-path":
|
|
978
|
-
ot(e);
|
|
979
|
-
break;
|
|
980
|
-
case "none": break;
|
|
981
|
-
default: ct(e);
|
|
982
|
-
}
|
|
983
|
-
}
|
|
984
|
-
var ot = B;
|
|
985
|
-
function st(e) {
|
|
986
|
-
B(e), H(e);
|
|
987
|
-
}
|
|
988
|
-
function ct(e) {
|
|
989
|
-
Ze(e);
|
|
990
|
-
}
|
|
991
|
-
var lt = ut;
|
|
992
|
-
function ut(e) {
|
|
993
|
-
let t = ft(e);
|
|
994
|
-
e.graph().dummyChains.forEach((n) => {
|
|
995
|
-
let r = e.node(n), i = r.edgeObj, a = dt(e, t, i.v, i.w), o = a.path, s = a.lca, c = 0, l = o[c], u = !0;
|
|
996
|
-
for (; n !== i.w;) {
|
|
997
|
-
if (r = e.node(n), u) {
|
|
998
|
-
for (; (l = o[c]) !== s && e.node(l).maxRank < r.rank;) c++;
|
|
999
|
-
l === s && (u = !1);
|
|
1000
|
-
}
|
|
1001
|
-
if (!u) {
|
|
1002
|
-
for (; c < o.length - 1 && e.node(o[c + 1]).minRank <= r.rank;) c++;
|
|
1003
|
-
l = o[c];
|
|
1004
|
-
}
|
|
1005
|
-
l !== void 0 && e.setParent(n, l), n = e.successors(n)[0];
|
|
1006
|
-
}
|
|
1007
|
-
});
|
|
1008
|
-
}
|
|
1009
|
-
function dt(e, t, n, r) {
|
|
1010
|
-
let i = [], a = [], o = Math.min(t[n].low, t[r].low), s = Math.max(t[n].lim, t[r].lim), c;
|
|
1011
|
-
c = n;
|
|
1012
|
-
do
|
|
1013
|
-
c = e.parent(c), i.push(c);
|
|
1014
|
-
while (c && (t[c].low > o || s > t[c].lim));
|
|
1015
|
-
let l = c, u = r;
|
|
1016
|
-
for (; (u = e.parent(u)) !== l;) a.push(u);
|
|
1017
|
-
return {
|
|
1018
|
-
path: i.concat(a.reverse()),
|
|
1019
|
-
lca: l
|
|
1180
|
+
function o(e) {
|
|
1181
|
+
var t = {};
|
|
1182
|
+
function n(r, i) {
|
|
1183
|
+
var a = e.children(r);
|
|
1184
|
+
a && a.length && a.forEach((e) => n(e, i + 1)), t[r] = i;
|
|
1185
|
+
}
|
|
1186
|
+
return e.children().forEach((e) => n(e, 1)), t;
|
|
1187
|
+
}
|
|
1188
|
+
function s(e) {
|
|
1189
|
+
return e.edges().reduce((t, n) => t + e.edge(n).weight, 0);
|
|
1190
|
+
}
|
|
1191
|
+
function c(e) {
|
|
1192
|
+
var t = e.graph();
|
|
1193
|
+
e.removeNode(t.nestingRoot), delete t.nestingRoot, e.edges().forEach((t) => {
|
|
1194
|
+
e.edge(t).nestingEdge && e.removeEdge(t);
|
|
1195
|
+
});
|
|
1196
|
+
}
|
|
1197
|
+
}), Ge = v((e, t) => {
|
|
1198
|
+
var n = _();
|
|
1199
|
+
t.exports = r;
|
|
1200
|
+
function r(e) {
|
|
1201
|
+
function t(n) {
|
|
1202
|
+
let r = e.children(n), i = e.node(n);
|
|
1203
|
+
if (r.length && r.forEach(t), Object.hasOwn(i, "minRank")) {
|
|
1204
|
+
i.borderLeft = [], i.borderRight = [];
|
|
1205
|
+
for (let t = i.minRank, r = i.maxRank + 1; t < r; ++t) a(e, "borderLeft", "_bl", n, i, t), a(e, "borderRight", "_br", n, i, t);
|
|
1206
|
+
}
|
|
1207
|
+
}
|
|
1208
|
+
e.children().forEach(t);
|
|
1209
|
+
}
|
|
1210
|
+
function a(e, t, r, i, a, o) {
|
|
1211
|
+
let s = {
|
|
1212
|
+
width: 0,
|
|
1213
|
+
height: 0,
|
|
1214
|
+
rank: o,
|
|
1215
|
+
borderType: t
|
|
1216
|
+
}, c = a[t][o - 1], l = n.addDummyNode(e, "border", s, r);
|
|
1217
|
+
a[t][o] = l, e.setParent(l, i), c && e.setEdge(c, l, { weight: 1 });
|
|
1218
|
+
}
|
|
1219
|
+
}), Be = v((e, t) => {
|
|
1220
|
+
t.exports = {
|
|
1221
|
+
adjust: n,
|
|
1222
|
+
undo: r
|
|
1020
1223
|
};
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
function r(i) {
|
|
1025
|
-
let a = n;
|
|
1026
|
-
e.children(i).forEach(r), t[i] = {
|
|
1027
|
-
low: a,
|
|
1028
|
-
lim: n++
|
|
1029
|
-
};
|
|
1224
|
+
function n(e) {
|
|
1225
|
+
let t = e.graph().rankdir.toLowerCase();
|
|
1226
|
+
(t === "lr" || t === "rl") && i(e);
|
|
1030
1227
|
}
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1228
|
+
function r(e) {
|
|
1229
|
+
let t = e.graph().rankdir.toLowerCase();
|
|
1230
|
+
(t === "bt" || t === "rl") && o(e), (t === "lr" || t === "rl") && (c(e), i(e));
|
|
1231
|
+
}
|
|
1232
|
+
function i(e) {
|
|
1233
|
+
e.nodes().forEach((t) => a(e.node(t))), e.edges().forEach((t) => a(e.edge(t)));
|
|
1234
|
+
}
|
|
1235
|
+
function a(e) {
|
|
1236
|
+
let t = e.width;
|
|
1237
|
+
e.width = e.height, e.height = t;
|
|
1238
|
+
}
|
|
1239
|
+
function o(e) {
|
|
1240
|
+
e.nodes().forEach((t) => s(e.node(t))), e.edges().forEach((t) => {
|
|
1241
|
+
let n = e.edge(t);
|
|
1242
|
+
n.points.forEach(s), Object.hasOwn(n, "y") && s(n);
|
|
1045
1243
|
});
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
minlen: m,
|
|
1055
|
-
nestingEdge: !0
|
|
1056
|
-
}), e.setEdge(f, l, {
|
|
1057
|
-
weight: p,
|
|
1058
|
-
minlen: m,
|
|
1059
|
-
nestingEdge: !0
|
|
1244
|
+
}
|
|
1245
|
+
function s(e) {
|
|
1246
|
+
e.y = -e.y;
|
|
1247
|
+
}
|
|
1248
|
+
function c(e) {
|
|
1249
|
+
e.nodes().forEach((t) => l(e.node(t))), e.edges().forEach((t) => {
|
|
1250
|
+
let n = e.edge(t);
|
|
1251
|
+
n.points.forEach(l), Object.hasOwn(n, "x") && l(n);
|
|
1060
1252
|
});
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
e
|
|
1080
|
-
e.edge(t).nestingEdge && e.removeEdge(t);
|
|
1081
|
-
});
|
|
1082
|
-
}
|
|
1083
|
-
var _t = vt;
|
|
1084
|
-
function vt(e) {
|
|
1085
|
-
function t(n) {
|
|
1086
|
-
let r = e.children(n), i = e.node(n);
|
|
1087
|
-
if (r.length && r.forEach(t), Object.hasOwn(i, "minRank")) {
|
|
1088
|
-
i.borderLeft = [], i.borderRight = [];
|
|
1089
|
-
for (let t = i.minRank, r = i.maxRank + 1; t < r; ++t) yt(e, "borderLeft", "_bl", n, i, t), yt(e, "borderRight", "_br", n, i, t);
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
e.children(I).forEach(t);
|
|
1093
|
-
}
|
|
1094
|
-
function yt(e, t, n, r, i, a) {
|
|
1095
|
-
let o = {
|
|
1096
|
-
width: 0,
|
|
1097
|
-
height: 0,
|
|
1098
|
-
rank: a,
|
|
1099
|
-
borderType: t
|
|
1100
|
-
}, s = i[t][a - 1], c = S(e, "border", o, n);
|
|
1101
|
-
i[t][a] = c, e.setParent(c, r), s && e.setEdge(s, c, { weight: 1 });
|
|
1102
|
-
}
|
|
1103
|
-
function bt(e) {
|
|
1104
|
-
let t = e.graph().rankdir?.toLowerCase();
|
|
1105
|
-
(t === "lr" || t === "rl") && St(e);
|
|
1106
|
-
}
|
|
1107
|
-
function xt(e) {
|
|
1108
|
-
let t = e.graph().rankdir?.toLowerCase();
|
|
1109
|
-
(t === "bt" || t === "rl") && wt(e), (t === "lr" || t === "rl") && (Tt(e), St(e));
|
|
1110
|
-
}
|
|
1111
|
-
function St(e) {
|
|
1112
|
-
e.nodes().forEach((t) => Ct(e.node(t))), e.edges().forEach((t) => Ct(e.edge(t)));
|
|
1113
|
-
}
|
|
1114
|
-
function Ct(e) {
|
|
1115
|
-
let t = e.width;
|
|
1116
|
-
e.width = e.height, e.height = t;
|
|
1117
|
-
}
|
|
1118
|
-
function wt(e) {
|
|
1119
|
-
e.nodes().forEach((t) => X(e.node(t))), e.edges().forEach((t) => {
|
|
1120
|
-
var n;
|
|
1121
|
-
let r = e.edge(t);
|
|
1122
|
-
(n = r.points) == null || n.forEach(X), Object.hasOwn(r, "y") && X(r);
|
|
1123
|
-
});
|
|
1124
|
-
}
|
|
1125
|
-
function X(e) {
|
|
1126
|
-
e.y = -e.y;
|
|
1127
|
-
}
|
|
1128
|
-
function Tt(e) {
|
|
1129
|
-
e.nodes().forEach((t) => Z(e.node(t))), e.edges().forEach((t) => {
|
|
1130
|
-
var n;
|
|
1131
|
-
let r = e.edge(t);
|
|
1132
|
-
(n = r.points) == null || n.forEach(Z), Object.hasOwn(r, "x") && Z(r);
|
|
1133
|
-
});
|
|
1134
|
-
}
|
|
1135
|
-
function Z(e) {
|
|
1136
|
-
let t = e.x;
|
|
1137
|
-
e.x = e.y, e.y = t;
|
|
1138
|
-
}
|
|
1139
|
-
function Et(e) {
|
|
1140
|
-
let t = {}, n = e.nodes().filter((t) => !e.children(t).length), r = n.map((t) => e.node(t).rank), i = N(O(Math.max, r) + 1).map(() => []);
|
|
1141
|
-
function a(n) {
|
|
1142
|
-
if (t[n]) return;
|
|
1143
|
-
t[n] = !0, i[e.node(n).rank].push(n);
|
|
1144
|
-
let r = e.successors(n);
|
|
1145
|
-
r && r.forEach(a);
|
|
1146
|
-
}
|
|
1147
|
-
return n.sort((t, n) => e.node(t).rank - e.node(n).rank).forEach(a), i;
|
|
1148
|
-
}
|
|
1149
|
-
function Dt(e, t) {
|
|
1150
|
-
let n = 0;
|
|
1151
|
-
for (let r = 1; r < t.length; ++r) n += Ot(e, t[r - 1], t[r]);
|
|
1152
|
-
return n;
|
|
1153
|
-
}
|
|
1154
|
-
function Ot(e, t, n) {
|
|
1155
|
-
let r = ke(n, n.map((e, t) => t)), i = t.flatMap((t) => {
|
|
1156
|
-
let n = e.outEdges(t);
|
|
1157
|
-
return n ? n.map((t) => ({
|
|
1158
|
-
pos: r[t.w],
|
|
1159
|
-
weight: e.edge(t).weight
|
|
1160
|
-
})).sort((e, t) => e.pos - t.pos) : [];
|
|
1161
|
-
}), a = 1;
|
|
1162
|
-
for (; a < n.length;) a <<= 1;
|
|
1163
|
-
let o = 2 * a - 1;
|
|
1164
|
-
--a;
|
|
1165
|
-
let s = Array(o).fill(0), c = 0;
|
|
1166
|
-
return i.forEach((e) => {
|
|
1167
|
-
let t = e.pos + a;
|
|
1168
|
-
s[t] += e.weight;
|
|
1253
|
+
}
|
|
1254
|
+
function l(e) {
|
|
1255
|
+
let t = e.x;
|
|
1256
|
+
e.x = e.y, e.y = t;
|
|
1257
|
+
}
|
|
1258
|
+
}), Xe = v((e, t) => {
|
|
1259
|
+
var n = _();
|
|
1260
|
+
t.exports = r;
|
|
1261
|
+
function r(e) {
|
|
1262
|
+
let t = {}, r = e.nodes().filter((t) => !e.children(t).length), i = r.map((t) => e.node(t).rank), a = n.applyWithChunking(Math.max, i), o = n.range(a + 1).map(() => []);
|
|
1263
|
+
function s(n) {
|
|
1264
|
+
t[n] || (t[n] = !0, o[e.node(n).rank].push(n), e.successors(n).forEach(s));
|
|
1265
|
+
}
|
|
1266
|
+
return r.sort((t, n) => e.node(t).rank - e.node(n).rank).forEach(s), o;
|
|
1267
|
+
}
|
|
1268
|
+
}), Ue = v((e, t) => {
|
|
1269
|
+
var n = _().zipObject;
|
|
1270
|
+
t.exports = r;
|
|
1271
|
+
function r(e, t) {
|
|
1169
1272
|
let n = 0;
|
|
1170
|
-
for (
|
|
1171
|
-
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1273
|
+
for (let r = 1; r < t.length; ++r) n += a(e, t[r - 1], t[r]);
|
|
1274
|
+
return n;
|
|
1275
|
+
}
|
|
1276
|
+
function a(e, t, r) {
|
|
1277
|
+
let i = n(r, r.map((e, t) => t)), a = t.flatMap((t) => e.outEdges(t).map((t) => ({
|
|
1278
|
+
pos: i[t.w],
|
|
1279
|
+
weight: e.edge(t).weight
|
|
1280
|
+
})).sort((e, t) => e.pos - t.pos)), o = 1;
|
|
1281
|
+
for (; o < r.length;) o <<= 1;
|
|
1282
|
+
let s = 2 * o - 1;
|
|
1283
|
+
--o;
|
|
1284
|
+
let c = Array(s).fill(0), l = 0;
|
|
1285
|
+
return a.forEach((e) => {
|
|
1286
|
+
let t = e.pos + o;
|
|
1287
|
+
c[t] += e.weight;
|
|
1288
|
+
let n = 0;
|
|
1289
|
+
for (; t > 0;) t % 2 && (n += c[t + 1]), t = t - 1 >> 1, c[t] += e.weight;
|
|
1290
|
+
l += e.weight * n;
|
|
1291
|
+
}), l;
|
|
1292
|
+
}
|
|
1293
|
+
}), Qe = v((e, t) => {
|
|
1294
|
+
t.exports = n;
|
|
1295
|
+
function n(e, t = []) {
|
|
1296
|
+
return t.map((t) => {
|
|
1297
|
+
let n = e.inEdges(t);
|
|
1298
|
+
if (n.length) {
|
|
1299
|
+
let r = n.reduce((t, n) => {
|
|
1300
|
+
let r = e.edge(n), i = e.node(n.v);
|
|
1301
|
+
return {
|
|
1302
|
+
sum: t.sum + r.weight * i.order,
|
|
1303
|
+
weight: t.weight + r.weight
|
|
1304
|
+
};
|
|
1305
|
+
}, {
|
|
1306
|
+
sum: 0,
|
|
1307
|
+
weight: 0
|
|
1308
|
+
});
|
|
1181
1309
|
return {
|
|
1182
|
-
|
|
1183
|
-
|
|
1310
|
+
v: t,
|
|
1311
|
+
barycenter: r.sum / r.weight,
|
|
1312
|
+
weight: r.weight
|
|
1184
1313
|
};
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1314
|
+
} else return { v: t };
|
|
1315
|
+
});
|
|
1316
|
+
}
|
|
1317
|
+
}), Ze = v((e, t) => {
|
|
1318
|
+
var n = _();
|
|
1319
|
+
t.exports = r;
|
|
1320
|
+
function r(e, t) {
|
|
1321
|
+
let n = {};
|
|
1322
|
+
return e.forEach((e, t) => {
|
|
1323
|
+
let r = n[e.v] = {
|
|
1324
|
+
indegree: 0,
|
|
1325
|
+
in: [],
|
|
1326
|
+
out: [],
|
|
1327
|
+
vs: [e.v],
|
|
1328
|
+
i: t
|
|
1329
|
+
};
|
|
1330
|
+
e.barycenter !== void 0 && (r.barycenter = e.barycenter, r.weight = e.weight);
|
|
1331
|
+
}), t.edges().forEach((e) => {
|
|
1332
|
+
let t = n[e.v], r = n[e.w];
|
|
1333
|
+
t !== void 0 && r !== void 0 && (r.indegree++, t.out.push(n[e.w]));
|
|
1334
|
+
}), a(Object.values(n).filter((e) => !e.indegree));
|
|
1335
|
+
}
|
|
1336
|
+
function a(e) {
|
|
1337
|
+
let t = [];
|
|
1338
|
+
function r(e) {
|
|
1339
|
+
return (t) => {
|
|
1340
|
+
t.merged || (t.barycenter === void 0 || e.barycenter === void 0 || t.barycenter >= e.barycenter) && o(e, t);
|
|
1193
1341
|
};
|
|
1194
1342
|
}
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
in
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1343
|
+
function i(t) {
|
|
1344
|
+
return (n) => {
|
|
1345
|
+
n.in.push(t), --n.indegree === 0 && e.push(n);
|
|
1346
|
+
};
|
|
1347
|
+
}
|
|
1348
|
+
for (; e.length;) {
|
|
1349
|
+
let n = e.pop();
|
|
1350
|
+
t.push(n), n.in.reverse().forEach(r(n)), n.out.forEach(i(n));
|
|
1351
|
+
}
|
|
1352
|
+
return t.filter((e) => !e.merged).map((e) => n.pick(e, [
|
|
1353
|
+
"vs",
|
|
1354
|
+
"i",
|
|
1355
|
+
"barycenter",
|
|
1356
|
+
"weight"
|
|
1357
|
+
]));
|
|
1358
|
+
}
|
|
1359
|
+
function o(e, t) {
|
|
1360
|
+
let n = 0, r = 0;
|
|
1361
|
+
e.weight && (n += e.barycenter * e.weight, r += e.weight), t.weight && (n += t.barycenter * t.weight, r += t.weight), e.vs = t.vs.concat(e.vs), e.barycenter = n / r, e.weight = r, e.i = Math.min(t.i, e.i), t.merged = !0;
|
|
1362
|
+
}
|
|
1363
|
+
}), tt = v((e, t) => {
|
|
1364
|
+
var n = _();
|
|
1365
|
+
t.exports = r;
|
|
1366
|
+
function r(e, t) {
|
|
1367
|
+
let r = n.partition(e, (e) => Object.hasOwn(e, "barycenter")), i = r.lhs, s = r.rhs.sort((e, t) => t.i - e.i), c = [], l = 0, u = 0, d = 0;
|
|
1368
|
+
i.sort(o(!!t)), d = a(c, s, d), i.forEach((e) => {
|
|
1369
|
+
d += e.vs.length, c.push(e.vs), l += e.barycenter * e.weight, u += e.weight, d = a(c, s, d);
|
|
1370
|
+
});
|
|
1371
|
+
let f = { vs: c.flat(!0) };
|
|
1372
|
+
return u && (f.barycenter = l / u, f.weight = u), f;
|
|
1219
1373
|
}
|
|
1220
|
-
function
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1374
|
+
function a(e, t, n) {
|
|
1375
|
+
let r;
|
|
1376
|
+
for (; t.length && (r = t[t.length - 1]).i <= n;) t.pop(), e.push(r.vs), n++;
|
|
1377
|
+
return n;
|
|
1224
1378
|
}
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
}
|
|
1240
|
-
function Nt(e, t) {
|
|
1241
|
-
let n = De(e, (e) => Object.hasOwn(e, "barycenter")), r = n.lhs, i = n.rhs.sort((e, t) => t.i - e.i), a = [], o = 0, s = 0, c = 0;
|
|
1242
|
-
r.sort(Ft(!!t)), c = Pt(a, i, c), r.forEach((e) => {
|
|
1243
|
-
c += e.vs.length, a.push(e.vs), o += e.barycenter * e.weight, s += e.weight, c = Pt(a, i, c);
|
|
1244
|
-
});
|
|
1245
|
-
let l = { vs: a.flat(1) };
|
|
1246
|
-
return s && (l.barycenter = o / s, l.weight = s), l;
|
|
1247
|
-
}
|
|
1248
|
-
function Pt(e, t, n) {
|
|
1249
|
-
let r;
|
|
1250
|
-
for (; t.length && (r = t[t.length - 1]).i <= n;) t.pop(), e.push(r.vs), n++;
|
|
1251
|
-
return n;
|
|
1252
|
-
}
|
|
1253
|
-
function Ft(e) {
|
|
1254
|
-
return (t, n) => t.barycenter < n.barycenter ? -1 : t.barycenter > n.barycenter ? 1 : e ? n.i - t.i : t.i - n.i;
|
|
1255
|
-
}
|
|
1256
|
-
function It(e, t, n, r) {
|
|
1257
|
-
let i = e.children(t), a = e.node(t), o = a ? a.borderLeft : void 0, s = a ? a.borderRight : void 0, c = {};
|
|
1258
|
-
o && (i = i.filter((e) => e !== o && e !== s));
|
|
1259
|
-
let l = kt(e, i);
|
|
1260
|
-
l.forEach((t) => {
|
|
1261
|
-
if (e.children(t.v).length) {
|
|
1262
|
-
let i = It(e, t.v, n, r);
|
|
1263
|
-
c[t.v] = i, Object.hasOwn(i, "barycenter") && Rt(t, i);
|
|
1264
|
-
}
|
|
1265
|
-
});
|
|
1266
|
-
let u = At(l, n);
|
|
1267
|
-
Lt(u, c);
|
|
1268
|
-
let d = Nt(u, r);
|
|
1269
|
-
if (o && s) {
|
|
1270
|
-
d.vs = [
|
|
1271
|
-
o,
|
|
1272
|
-
d.vs,
|
|
1273
|
-
s
|
|
1274
|
-
].flat(1);
|
|
1275
|
-
let t = e.predecessors(o);
|
|
1276
|
-
if (t && t.length) {
|
|
1277
|
-
let n = e.node(t[0]), r = e.predecessors(s), i = e.node(r[0]);
|
|
1278
|
-
Object.hasOwn(d, "barycenter") || (d.barycenter = 0, d.weight = 0), d.barycenter = (d.barycenter * d.weight + n.order + i.order) / (d.weight + 2), d.weight += 2;
|
|
1279
|
-
}
|
|
1280
|
-
}
|
|
1281
|
-
return d;
|
|
1282
|
-
}
|
|
1283
|
-
function Lt(e, t) {
|
|
1284
|
-
e.forEach((e) => {
|
|
1285
|
-
e.vs = e.vs.flatMap((e) => t[e] ? t[e].vs : e);
|
|
1286
|
-
});
|
|
1287
|
-
}
|
|
1288
|
-
function Rt(e, t) {
|
|
1289
|
-
e.barycenter === void 0 ? (e.barycenter = t.barycenter, e.weight = t.weight) : (e.barycenter = (e.barycenter * e.weight + t.barycenter * t.weight) / (e.weight + t.weight), e.weight += t.weight);
|
|
1290
|
-
}
|
|
1291
|
-
function zt(e, t, n, r) {
|
|
1292
|
-
r ||= e.nodes();
|
|
1293
|
-
let i = Bt(e), a = new s({ compound: !0 }).setGraph({ root: i }).setDefaultNodeLabel((t) => e.node(t));
|
|
1294
|
-
return r.forEach((r) => {
|
|
1295
|
-
let o = e.node(r), s = e.parent(r);
|
|
1296
|
-
if (o.rank === t || o.minRank <= t && t <= o.maxRank) {
|
|
1297
|
-
a.setNode(r), a.setParent(r, s || i);
|
|
1298
|
-
let c = e[n](r);
|
|
1299
|
-
c && c.forEach((t) => {
|
|
1300
|
-
let n = t.v === r ? t.w : t.v, i = a.edge(n, r), o = i === void 0 ? 0 : i.weight;
|
|
1301
|
-
a.setEdge(n, r, { weight: e.edge(t).weight + o });
|
|
1302
|
-
}), Object.hasOwn(o, "minRank") && a.setNode(r, {
|
|
1303
|
-
borderLeft: o.borderLeft[t],
|
|
1304
|
-
borderRight: o.borderRight[t]
|
|
1305
|
-
});
|
|
1306
|
-
}
|
|
1307
|
-
}), a;
|
|
1308
|
-
}
|
|
1309
|
-
function Bt(e) {
|
|
1310
|
-
let t;
|
|
1311
|
-
for (; e.hasNode(t = M("_root")););
|
|
1312
|
-
return t;
|
|
1313
|
-
}
|
|
1314
|
-
function Vt(e, t, n) {
|
|
1315
|
-
let r = {}, i;
|
|
1316
|
-
n.forEach((n) => {
|
|
1317
|
-
let a = e.parent(n), o, s;
|
|
1318
|
-
for (; a;) {
|
|
1319
|
-
if (o = e.parent(a), o ? (s = r[o], r[o] = a) : (s = i, i = a), s && s !== a) {
|
|
1320
|
-
t.setEdge(s, a);
|
|
1321
|
-
return;
|
|
1322
|
-
}
|
|
1323
|
-
a = o;
|
|
1324
|
-
}
|
|
1325
|
-
});
|
|
1326
|
-
}
|
|
1327
|
-
function Ht(e, t = {}) {
|
|
1328
|
-
if (typeof t.customOrder == "function") {
|
|
1329
|
-
t.customOrder(e, Ht);
|
|
1330
|
-
return;
|
|
1331
|
-
}
|
|
1332
|
-
let n = k(e), r = Ut(e, N(1, n + 1), "inEdges"), i = Ut(e, N(n - 1, -1, -1), "outEdges"), a = Et(e);
|
|
1333
|
-
if (Gt(e, a), t.disableOptimalOrderHeuristic) return;
|
|
1334
|
-
let o = Infinity, s, c = t.constraints || [];
|
|
1335
|
-
for (let t = 0, n = 0; n < 4; ++t, ++n) {
|
|
1336
|
-
Wt(t % 2 ? r : i, t % 4 >= 2, c), a = T(e);
|
|
1337
|
-
let l = Dt(e, a);
|
|
1338
|
-
l < o ? (n = 0, s = Object.assign({}, a), o = l) : l === o && (s = structuredClone(a));
|
|
1339
|
-
}
|
|
1340
|
-
Gt(e, s);
|
|
1341
|
-
}
|
|
1342
|
-
function Ut(e, t, n) {
|
|
1343
|
-
let r = /* @__PURE__ */ new Map(), i = (e, t) => {
|
|
1344
|
-
r.has(e) || r.set(e, []), r.get(e).push(t);
|
|
1345
|
-
};
|
|
1346
|
-
for (let t of e.nodes()) {
|
|
1347
|
-
let n = e.node(t);
|
|
1348
|
-
if (typeof n.rank == "number" && i(n.rank, t), typeof n.minRank == "number" && typeof n.maxRank == "number") for (let e = n.minRank; e <= n.maxRank; e++) e !== n.rank && i(e, t);
|
|
1349
|
-
}
|
|
1350
|
-
return t.map(function(t) {
|
|
1351
|
-
return zt(e, t, n, r.get(t) || []);
|
|
1352
|
-
});
|
|
1353
|
-
}
|
|
1354
|
-
function Wt(e, t, n) {
|
|
1355
|
-
let r = new s();
|
|
1356
|
-
e.forEach(function(e) {
|
|
1357
|
-
n.forEach((e) => r.setEdge(e.left, e.right));
|
|
1358
|
-
let i = e.graph().root, a = It(e, i, r, t);
|
|
1359
|
-
a.vs.forEach((t, n) => e.node(t).order = n), Vt(e, r, a.vs);
|
|
1360
|
-
});
|
|
1361
|
-
}
|
|
1362
|
-
function Gt(e, t) {
|
|
1363
|
-
Object.values(t).forEach((t) => t.forEach((t, n) => e.node(t).order = n));
|
|
1364
|
-
}
|
|
1365
|
-
function Kt(e, t) {
|
|
1366
|
-
let n = {};
|
|
1367
|
-
function r(t, r) {
|
|
1368
|
-
let i = 0, a = 0, o = t.length, s = r[r.length - 1];
|
|
1369
|
-
return r.forEach((t, c) => {
|
|
1370
|
-
let l = Jt(e, t), u = l ? e.node(l).order : o;
|
|
1371
|
-
(l || t === s) && (r.slice(a, c + 1).forEach((t) => {
|
|
1372
|
-
let r = e.predecessors(t);
|
|
1373
|
-
r && r.forEach((r) => {
|
|
1374
|
-
let a = e.node(r), o = a.order;
|
|
1375
|
-
(o < i || u < o) && !(a.dummy && e.node(t).dummy) && Yt(n, r, t);
|
|
1376
|
-
});
|
|
1377
|
-
}), a = c + 1, i = u);
|
|
1378
|
-
}), r;
|
|
1379
|
-
}
|
|
1380
|
-
return t.length && t.reduce(r), n;
|
|
1381
|
-
}
|
|
1382
|
-
function qt(e, t) {
|
|
1383
|
-
let n = {};
|
|
1384
|
-
function r(t, r, i, a, o) {
|
|
1385
|
-
N(r, i).forEach((r) => {
|
|
1386
|
-
let i = t[r];
|
|
1387
|
-
if (i !== void 0 && e.node(i).dummy) {
|
|
1388
|
-
let t = e.predecessors(i);
|
|
1389
|
-
t && t.forEach((t) => {
|
|
1390
|
-
if (t === void 0) return;
|
|
1391
|
-
let r = e.node(t);
|
|
1392
|
-
r.dummy && (r.order < a || r.order > o) && Yt(n, t, i);
|
|
1393
|
-
});
|
|
1379
|
+
function o(e) {
|
|
1380
|
+
return (t, n) => t.barycenter < n.barycenter ? -1 : t.barycenter > n.barycenter ? 1 : e ? n.i - t.i : t.i - n.i;
|
|
1381
|
+
}
|
|
1382
|
+
}), it = v((e, t) => {
|
|
1383
|
+
var n = Qe(), r = Ze(), i = tt();
|
|
1384
|
+
t.exports = a;
|
|
1385
|
+
function a(e, t, c, l) {
|
|
1386
|
+
let u = e.children(t), d = e.node(t), f = d ? d.borderLeft : void 0, p = d ? d.borderRight : void 0, m = {};
|
|
1387
|
+
f && (u = u.filter((e) => e !== f && e !== p));
|
|
1388
|
+
let h = n(e, u);
|
|
1389
|
+
h.forEach((t) => {
|
|
1390
|
+
if (e.children(t.v).length) {
|
|
1391
|
+
let n = a(e, t.v, c, l);
|
|
1392
|
+
m[t.v] = n, Object.hasOwn(n, "barycenter") && s(t, n);
|
|
1394
1393
|
}
|
|
1395
1394
|
});
|
|
1395
|
+
let g = r(h, c);
|
|
1396
|
+
o(g, m);
|
|
1397
|
+
let b = i(g, l);
|
|
1398
|
+
if (f && (b.vs = [
|
|
1399
|
+
f,
|
|
1400
|
+
b.vs,
|
|
1401
|
+
p
|
|
1402
|
+
].flat(!0), e.predecessors(f).length)) {
|
|
1403
|
+
let t = e.node(e.predecessors(f)[0]), n = e.node(e.predecessors(p)[0]);
|
|
1404
|
+
Object.hasOwn(b, "barycenter") || (b.barycenter = 0, b.weight = 0), b.barycenter = (b.barycenter * b.weight + t.order + n.order) / (b.weight + 2), b.weight += 2;
|
|
1405
|
+
}
|
|
1406
|
+
return b;
|
|
1407
|
+
}
|
|
1408
|
+
function o(e, t) {
|
|
1409
|
+
e.forEach((e) => {
|
|
1410
|
+
e.vs = e.vs.flatMap((e) => t[e] ? t[e].vs : e);
|
|
1411
|
+
});
|
|
1396
1412
|
}
|
|
1397
|
-
function
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1413
|
+
function s(e, t) {
|
|
1414
|
+
e.barycenter === void 0 ? (e.barycenter = t.barycenter, e.weight = t.weight) : (e.barycenter = (e.barycenter * e.weight + t.barycenter * t.weight) / (e.weight + t.weight), e.weight += t.weight);
|
|
1415
|
+
}
|
|
1416
|
+
}), st = v((e, n) => {
|
|
1417
|
+
var r = y().Graph, a = _();
|
|
1418
|
+
n.exports = o;
|
|
1419
|
+
function o(e, t, n, i) {
|
|
1420
|
+
i ||= e.nodes();
|
|
1421
|
+
let a = s(e), o = new r({ compound: !0 }).setGraph({ root: a }).setDefaultNodeLabel((t) => e.node(t));
|
|
1422
|
+
return i.forEach((r) => {
|
|
1423
|
+
let i = e.node(r), s = e.parent(r);
|
|
1424
|
+
(i.rank === t || i.minRank <= t && t <= i.maxRank) && (o.setNode(r), o.setParent(r, s || a), e[n](r).forEach((t) => {
|
|
1425
|
+
let n = t.v === r ? t.w : t.v, i = o.edge(n, r), a = i === void 0 ? 0 : i.weight;
|
|
1426
|
+
o.setEdge(n, r, { weight: e.edge(t).weight + a });
|
|
1427
|
+
}), Object.hasOwn(i, "minRank") && o.setNode(r, {
|
|
1428
|
+
borderLeft: i.borderLeft[t],
|
|
1429
|
+
borderRight: i.borderRight[t]
|
|
1430
|
+
}));
|
|
1431
|
+
}), o;
|
|
1432
|
+
}
|
|
1433
|
+
function s(e) {
|
|
1434
|
+
for (var t; e.hasNode(t = a.uniqueId("_root")););
|
|
1435
|
+
return t;
|
|
1436
|
+
}
|
|
1437
|
+
}), dt = v((e, t) => {
|
|
1438
|
+
t.exports = n;
|
|
1439
|
+
function n(e, t, n) {
|
|
1440
|
+
let r = {}, i;
|
|
1441
|
+
n.forEach((n) => {
|
|
1442
|
+
let a = e.parent(n), o, s;
|
|
1443
|
+
for (; a;) {
|
|
1444
|
+
if (o = e.parent(a), o ? (s = r[o], r[o] = a) : (s = i, i = a), s && s !== a) {
|
|
1445
|
+
t.setEdge(s, a);
|
|
1446
|
+
return;
|
|
1406
1447
|
}
|
|
1448
|
+
a = o;
|
|
1407
1449
|
}
|
|
1408
|
-
|
|
1409
|
-
|
|
1450
|
+
});
|
|
1451
|
+
}
|
|
1452
|
+
}), ft = v((e, n) => {
|
|
1453
|
+
var r = Xe(), a = Ue(), o = it(), s = st(), c = dt(), l = y().Graph, u = _();
|
|
1454
|
+
n.exports = d;
|
|
1455
|
+
function d(e, t = {}) {
|
|
1456
|
+
if (typeof t.customOrder == "function") {
|
|
1457
|
+
t.customOrder(e, d);
|
|
1458
|
+
return;
|
|
1459
|
+
}
|
|
1460
|
+
let n = u.maxRank(e), i = f(e, u.range(1, n + 1), "inEdges"), o = f(e, u.range(n - 1, -1, -1), "outEdges"), s = r(e);
|
|
1461
|
+
if (m(e, s), t.disableOptimalOrderHeuristic) return;
|
|
1462
|
+
let c = Infinity, l, h = t.constraints || [];
|
|
1463
|
+
for (let t = 0, n = 0; n < 4; ++t, ++n) {
|
|
1464
|
+
p(t % 2 ? i : o, t % 4 >= 2, h), s = u.buildLayerMatrix(e);
|
|
1465
|
+
let r = a(e, s);
|
|
1466
|
+
r < c ? (n = 0, l = Object.assign({}, s), c = r) : r === c && (l = structuredClone(s));
|
|
1467
|
+
}
|
|
1468
|
+
m(e, l);
|
|
1410
1469
|
}
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
let
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
}
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
let e = t;
|
|
1422
|
-
t = n, n = e;
|
|
1423
|
-
}
|
|
1424
|
-
let r = e[t];
|
|
1425
|
-
r || (e[t] = r = {}), r[n] = !0;
|
|
1426
|
-
}
|
|
1427
|
-
function Xt(e, t, n) {
|
|
1428
|
-
if (t > n) {
|
|
1429
|
-
let e = t;
|
|
1430
|
-
t = n, n = e;
|
|
1431
|
-
}
|
|
1432
|
-
let r = e[t];
|
|
1433
|
-
return r !== void 0 && Object.hasOwn(r, n);
|
|
1434
|
-
}
|
|
1435
|
-
function Zt(e, t, n, r) {
|
|
1436
|
-
let i = {}, a = {}, o = {};
|
|
1437
|
-
return t.forEach((e) => {
|
|
1438
|
-
e.forEach((e, t) => {
|
|
1439
|
-
i[e] = e, a[e] = e, o[e] = t;
|
|
1470
|
+
function f(e, t, n) {
|
|
1471
|
+
let r = /* @__PURE__ */ new Map(), i = (e, t) => {
|
|
1472
|
+
r.has(e) || r.set(e, []), r.get(e).push(t);
|
|
1473
|
+
};
|
|
1474
|
+
for (let t of e.nodes()) {
|
|
1475
|
+
let n = e.node(t);
|
|
1476
|
+
if (typeof n.rank == "number" && i(n.rank, t), typeof n.minRank == "number" && typeof n.maxRank == "number") for (let e = n.minRank; e <= n.maxRank; e++) e !== n.rank && i(e, t);
|
|
1477
|
+
}
|
|
1478
|
+
return t.map(function(t) {
|
|
1479
|
+
return s(e, t, n, r.get(t) || []);
|
|
1440
1480
|
});
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
return (n === void 0 ? 0 : n) - (r === void 0 ? 0 : r);
|
|
1449
|
-
}), c = (r.length - 1) / 2;
|
|
1450
|
-
for (let s = Math.floor(c), l = Math.ceil(c); s <= l; ++s) {
|
|
1451
|
-
let c = r[s];
|
|
1452
|
-
if (c === void 0) continue;
|
|
1453
|
-
let l = o[c];
|
|
1454
|
-
if (l !== void 0 && a[e] === e && t < l && !Xt(n, e, c)) {
|
|
1455
|
-
let n = i[c];
|
|
1456
|
-
n !== void 0 && (a[c] = e, a[e] = i[e] = n, t = l);
|
|
1457
|
-
}
|
|
1458
|
-
}
|
|
1459
|
-
}
|
|
1481
|
+
}
|
|
1482
|
+
function p(e, t, n) {
|
|
1483
|
+
let r = new l();
|
|
1484
|
+
e.forEach(function(e) {
|
|
1485
|
+
n.forEach((e) => r.setEdge(e.left, e.right));
|
|
1486
|
+
let i = e.graph().root, a = o(e, i, r, t);
|
|
1487
|
+
a.vs.forEach((t, n) => e.node(t).order = n), c(e, r, a.vs);
|
|
1460
1488
|
});
|
|
1461
|
-
}
|
|
1462
|
-
|
|
1463
|
-
|
|
1489
|
+
}
|
|
1490
|
+
function m(e, t) {
|
|
1491
|
+
Object.values(t).forEach((t) => t.forEach((t, n) => e.node(t).order = n));
|
|
1492
|
+
}
|
|
1493
|
+
}), yt = v((e, n) => {
|
|
1494
|
+
var r = y().Graph, a = _();
|
|
1495
|
+
n.exports = {
|
|
1496
|
+
positionX: b,
|
|
1497
|
+
findType1Conflicts: o,
|
|
1498
|
+
findType2Conflicts: s,
|
|
1499
|
+
addConflict: l,
|
|
1500
|
+
hasConflict: u,
|
|
1501
|
+
verticalAlignment: d,
|
|
1502
|
+
horizontalCompaction: f,
|
|
1503
|
+
alignCoordinates: h,
|
|
1504
|
+
findSmallestWidthAlignment: m,
|
|
1505
|
+
balance: g
|
|
1464
1506
|
};
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1507
|
+
function o(e, t) {
|
|
1508
|
+
let n = {};
|
|
1509
|
+
function r(t, r) {
|
|
1510
|
+
let i = 0, a = 0, o = t.length, s = r[r.length - 1];
|
|
1511
|
+
return r.forEach((t, u) => {
|
|
1512
|
+
let d = c(e, t), f = d ? e.node(d).order : o;
|
|
1513
|
+
(d || t === s) && (r.slice(a, u + 1).forEach((t) => {
|
|
1514
|
+
e.predecessors(t).forEach((r) => {
|
|
1515
|
+
let a = e.node(r), o = a.order;
|
|
1516
|
+
(o < i || f < o) && !(a.dummy && e.node(t).dummy) && l(n, r, t);
|
|
1517
|
+
});
|
|
1518
|
+
}), a = u + 1, i = f);
|
|
1519
|
+
}), r;
|
|
1477
1520
|
}
|
|
1521
|
+
return t.length && t.reduce(r), n;
|
|
1522
|
+
}
|
|
1523
|
+
function s(e, t) {
|
|
1524
|
+
let n = {};
|
|
1525
|
+
function r(t, r, i, o, s) {
|
|
1526
|
+
let c;
|
|
1527
|
+
a.range(r, i).forEach((r) => {
|
|
1528
|
+
c = t[r], e.node(c).dummy && e.predecessors(c).forEach((t) => {
|
|
1529
|
+
let r = e.node(t);
|
|
1530
|
+
r.dummy && (r.order < o || r.order > s) && l(n, t, c);
|
|
1531
|
+
});
|
|
1532
|
+
});
|
|
1533
|
+
}
|
|
1534
|
+
function i(t, n) {
|
|
1535
|
+
let i = -1, a, o = 0;
|
|
1536
|
+
return n.forEach((s, c) => {
|
|
1537
|
+
if (e.node(s).dummy === "border") {
|
|
1538
|
+
let t = e.predecessors(s);
|
|
1539
|
+
t.length && (a = e.node(t[0]).order, r(n, o, c, i, a), o = c, i = a);
|
|
1540
|
+
}
|
|
1541
|
+
r(n, o, n.length, a, t.length);
|
|
1542
|
+
}), n;
|
|
1543
|
+
}
|
|
1544
|
+
return t.length && t.reduce(i), n;
|
|
1478
1545
|
}
|
|
1479
|
-
function
|
|
1480
|
-
|
|
1481
|
-
t ? a[e] = t.reduce((e, t) => {
|
|
1482
|
-
let n = a[t.v] ?? 0, r = o.edge(t);
|
|
1483
|
-
return Math.max(e, n + (r === void 0 ? 0 : r));
|
|
1484
|
-
}, 0) : a[e] = 0;
|
|
1485
|
-
}
|
|
1486
|
-
function u(t) {
|
|
1487
|
-
let n = o.outEdges(t), r = Infinity;
|
|
1488
|
-
n && (r = n.reduce((e, t) => {
|
|
1489
|
-
let n = a[t.w], r = o.edge(t);
|
|
1490
|
-
return Math.min(e, (n === void 0 ? 0 : n) - (r === void 0 ? 0 : r));
|
|
1491
|
-
}, Infinity));
|
|
1492
|
-
let i = e.node(t);
|
|
1493
|
-
r !== Infinity && i.borderType !== s && (a[t] = Math.max(a[t] === void 0 ? 0 : a[t], r));
|
|
1546
|
+
function c(e, t) {
|
|
1547
|
+
if (e.node(t).dummy) return e.predecessors(t).find((t) => e.node(t).dummy);
|
|
1494
1548
|
}
|
|
1495
|
-
function
|
|
1496
|
-
|
|
1549
|
+
function l(e, t, n) {
|
|
1550
|
+
if (t > n) {
|
|
1551
|
+
let e = t;
|
|
1552
|
+
t = n, n = e;
|
|
1553
|
+
}
|
|
1554
|
+
let r = e[t];
|
|
1555
|
+
r || (e[t] = r = {}), r[n] = !0;
|
|
1497
1556
|
}
|
|
1498
|
-
function
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
t
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1557
|
+
function u(e, t, n) {
|
|
1558
|
+
if (t > n) {
|
|
1559
|
+
let e = t;
|
|
1560
|
+
t = n, n = e;
|
|
1561
|
+
}
|
|
1562
|
+
return !!e[t] && Object.hasOwn(e[t], n);
|
|
1563
|
+
}
|
|
1564
|
+
function d(e, t, n, r) {
|
|
1565
|
+
let i = {}, a = {}, o = {};
|
|
1566
|
+
return t.forEach((e) => {
|
|
1567
|
+
e.forEach((e, t) => {
|
|
1568
|
+
i[e] = e, a[e] = e, o[e] = t;
|
|
1569
|
+
});
|
|
1570
|
+
}), t.forEach((e) => {
|
|
1571
|
+
let t = -1;
|
|
1572
|
+
e.forEach((e) => {
|
|
1573
|
+
let s = r(e);
|
|
1574
|
+
if (s.length) {
|
|
1575
|
+
s = s.sort((e, t) => o[e] - o[t]);
|
|
1576
|
+
let r = (s.length - 1) / 2;
|
|
1577
|
+
for (let c = Math.floor(r), l = Math.ceil(r); c <= l; ++c) {
|
|
1578
|
+
let r = s[c];
|
|
1579
|
+
a[e] === e && t < o[r] && !u(n, e, r) && (a[r] = e, a[e] = i[e] = i[r], t = o[r]);
|
|
1518
1580
|
}
|
|
1519
1581
|
}
|
|
1582
|
+
});
|
|
1583
|
+
}), {
|
|
1584
|
+
root: i,
|
|
1585
|
+
align: a
|
|
1586
|
+
};
|
|
1587
|
+
}
|
|
1588
|
+
function f(e, t, n, r, i) {
|
|
1589
|
+
let a = {}, o = p(e, t, n, i), s = i ? "borderLeft" : "borderRight";
|
|
1590
|
+
function c(e, t) {
|
|
1591
|
+
let n = o.nodes().slice(), r = {}, i = n.pop();
|
|
1592
|
+
for (; i;) {
|
|
1593
|
+
if (r[i]) e(i);
|
|
1594
|
+
else {
|
|
1595
|
+
r[i] = !0, n.push(i);
|
|
1596
|
+
for (let e of t(i)) n.push(e);
|
|
1597
|
+
}
|
|
1598
|
+
i = n.pop();
|
|
1599
|
+
}
|
|
1600
|
+
}
|
|
1601
|
+
function l(e) {
|
|
1602
|
+
a[e] = o.inEdges(e).reduce((e, t) => Math.max(e, a[t.v] + o.edge(t)), 0);
|
|
1603
|
+
}
|
|
1604
|
+
function u(t) {
|
|
1605
|
+
let n = o.outEdges(t).reduce((e, t) => Math.min(e, a[t.w] - o.edge(t)), Infinity), r = e.node(t);
|
|
1606
|
+
n !== Infinity && r.borderType !== s && (a[t] = Math.max(a[t], n));
|
|
1607
|
+
}
|
|
1608
|
+
return c(l, o.predecessors.bind(o)), c(u, o.successors.bind(o)), Object.keys(r).forEach((e) => a[e] = a[n[e]]), a;
|
|
1609
|
+
}
|
|
1610
|
+
function p(e, t, n, i) {
|
|
1611
|
+
let a = new r(), o = e.graph(), s = x(o.nodesep, o.edgesep, i);
|
|
1612
|
+
return t.forEach((t) => {
|
|
1613
|
+
let r;
|
|
1614
|
+
t.forEach((t) => {
|
|
1615
|
+
let i = n[t];
|
|
1616
|
+
if (a.setNode(i), r) {
|
|
1617
|
+
var o = n[r], c = a.edge(o, i);
|
|
1618
|
+
a.setEdge(o, i, Math.max(s(e, t, r), c || 0));
|
|
1619
|
+
}
|
|
1520
1620
|
r = t;
|
|
1621
|
+
});
|
|
1622
|
+
}), a;
|
|
1623
|
+
}
|
|
1624
|
+
function m(e, t) {
|
|
1625
|
+
return Object.values(t).reduce((t, n) => {
|
|
1626
|
+
let r = -Infinity, i = Infinity;
|
|
1627
|
+
Object.entries(n).forEach(([t, n]) => {
|
|
1628
|
+
let a = S(e, t) / 2;
|
|
1629
|
+
r = Math.max(n + a, r), i = Math.min(n - a, i);
|
|
1630
|
+
});
|
|
1631
|
+
let a = r - i;
|
|
1632
|
+
return a < t[0] && (t = [a, n]), t;
|
|
1633
|
+
}, [Infinity, null])[1];
|
|
1634
|
+
}
|
|
1635
|
+
function h(e, t) {
|
|
1636
|
+
let n = Object.values(t), r = a.applyWithChunking(Math.min, n), i = a.applyWithChunking(Math.max, n);
|
|
1637
|
+
["u", "d"].forEach((n) => {
|
|
1638
|
+
["l", "r"].forEach((o) => {
|
|
1639
|
+
let s = n + o, c = e[s];
|
|
1640
|
+
if (c === t) return;
|
|
1641
|
+
let l = Object.values(c), u = r - a.applyWithChunking(Math.min, l);
|
|
1642
|
+
o !== "l" && (u = i - a.applyWithChunking(Math.max, l)), u && (e[s] = a.mapValues(c, (e) => e + u));
|
|
1643
|
+
});
|
|
1644
|
+
});
|
|
1645
|
+
}
|
|
1646
|
+
function g(e, t) {
|
|
1647
|
+
return a.mapValues(e.ul, (n, r) => {
|
|
1648
|
+
if (t) return e[t.toLowerCase()][r];
|
|
1649
|
+
{
|
|
1650
|
+
let t = Object.values(e).map((e) => e[r]).sort((e, t) => e - t);
|
|
1651
|
+
return (t[1] + t[2]) / 2;
|
|
1521
1652
|
}
|
|
1522
1653
|
});
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1654
|
+
}
|
|
1655
|
+
function b(e) {
|
|
1656
|
+
let t = a.buildLayerMatrix(e), n = Object.assign(o(e, t), s(e, t)), r = {}, i;
|
|
1657
|
+
return ["u", "d"].forEach((o) => {
|
|
1658
|
+
i = o === "u" ? t : Object.values(t).reverse(), ["l", "r"].forEach((t) => {
|
|
1659
|
+
t === "r" && (i = i.map((e) => Object.values(e).reverse()));
|
|
1660
|
+
let s = (o === "u" ? e.predecessors : e.successors).bind(e), c = d(e, i, n, s), l = f(e, i, c.root, c.align, t === "r");
|
|
1661
|
+
t === "r" && (l = a.mapValues(l, (e) => -e)), r[o + t] = l;
|
|
1662
|
+
});
|
|
1663
|
+
}), h(r, m(e, r)), g(r, e.graph().align);
|
|
1664
|
+
}
|
|
1665
|
+
function x(e, t, n) {
|
|
1666
|
+
return (r, i, a) => {
|
|
1667
|
+
let o = r.node(i), s = r.node(a), c = 0, l;
|
|
1668
|
+
if (c += o.width / 2, Object.hasOwn(o, "labelpos")) switch (o.labelpos.toLowerCase()) {
|
|
1669
|
+
case "l":
|
|
1670
|
+
l = -o.width / 2;
|
|
1671
|
+
break;
|
|
1672
|
+
case "r":
|
|
1673
|
+
l = o.width / 2;
|
|
1674
|
+
break;
|
|
1675
|
+
}
|
|
1676
|
+
if (l && (c += n ? l : -l), l = 0, c += (o.dummy ? t : e) / 2, c += (s.dummy ? t : e) / 2, c += s.width / 2, Object.hasOwn(s, "labelpos")) switch (s.labelpos.toLowerCase()) {
|
|
1677
|
+
case "l":
|
|
1678
|
+
l = s.width / 2;
|
|
1679
|
+
break;
|
|
1680
|
+
case "r":
|
|
1681
|
+
l = -s.width / 2;
|
|
1682
|
+
break;
|
|
1683
|
+
}
|
|
1684
|
+
return l && (c += n ? l : -l), l = 0, c;
|
|
1685
|
+
};
|
|
1686
|
+
}
|
|
1687
|
+
function S(e, t) {
|
|
1688
|
+
return e.node(t).width;
|
|
1689
|
+
}
|
|
1690
|
+
}), Nt = v((e, t) => {
|
|
1691
|
+
var n = _(), r = yt().positionX;
|
|
1692
|
+
t.exports = a;
|
|
1693
|
+
function a(e) {
|
|
1694
|
+
e = n.asNonCompoundGraph(e), o(e), Object.entries(r(e)).forEach(([t, n]) => e.node(t).x = n);
|
|
1695
|
+
}
|
|
1696
|
+
function o(e) {
|
|
1697
|
+
let t = n.buildLayerMatrix(e), r = e.graph().ranksep, i = e.graph().rankalign, a = 0;
|
|
1698
|
+
t.forEach((t) => {
|
|
1699
|
+
let n = t.reduce((t, n) => {
|
|
1700
|
+
let r = e.node(n).height;
|
|
1701
|
+
return t > r ? t : r;
|
|
1702
|
+
}, 0);
|
|
1703
|
+
t.forEach((t) => {
|
|
1704
|
+
let r = e.node(t);
|
|
1705
|
+
i === "top" ? r.y = a + r.height / 2 : i === "bottom" ? r.y = a + n - r.height / 2 : r.y = a + n / 2;
|
|
1706
|
+
}), a += n + r;
|
|
1531
1707
|
});
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
function
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
if (!s || s === t) return;
|
|
1542
|
-
let c = Object.values(s), l = r - O(Math.min, c);
|
|
1543
|
-
a !== "l" && (l = i - O(Math.max, c)), l && (e[o] = F(s, (e) => e + l));
|
|
1708
|
+
}
|
|
1709
|
+
}), Rt = v((e, n) => {
|
|
1710
|
+
var r = pe(), s = we(), c = qe(), l = _().normalizeRanks, h = Re(), g = _().removeEmptyRanks, b = Pe(), x = Ge(), S = Be(), C = ft(), w = Nt(), T = _(), D = y().Graph;
|
|
1711
|
+
n.exports = k;
|
|
1712
|
+
function k(e, t = {}) {
|
|
1713
|
+
let n = t.debugTiming ? T.time : T.notime;
|
|
1714
|
+
return n("layout", () => {
|
|
1715
|
+
let r = n(" buildLayoutGraph", () => V(e));
|
|
1716
|
+
return n(" runLayout", () => A(r, n, t)), n(" updateInputGraph", () => M(e, r)), r;
|
|
1544
1717
|
});
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
let n =
|
|
1552
|
-
|
|
1553
|
-
}
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1718
|
+
}
|
|
1719
|
+
function A(e, t, n) {
|
|
1720
|
+
t(" makeSpaceForEdgeLabels", () => H(e)), t(" removeSelfEdges", () => ee(e)), t(" acyclic", () => r.run(e)), t(" nestingGraph.run", () => b.run(e)), t(" rank", () => c(T.asNonCompoundGraph(e))), t(" injectEdgeLabelProxies", () => U(e)), t(" removeEmptyRanks", () => g(e)), t(" nestingGraph.cleanup", () => b.cleanup(e)), t(" normalizeRanks", () => l(e)), t(" assignRankMinMax", () => W(e)), t(" removeEdgeLabelProxies", () => K(e)), t(" normalize.run", () => s.run(e)), t(" parentDummyChains", () => h(e)), t(" addBorderSegments", () => x(e)), t(" order", () => C(e, n)), t(" insertSelfEdges", () => te(e)), t(" adjustCoordinateSystem", () => S.adjust(e)), t(" position", () => w(e)), t(" positionSelfEdges", () => re(e)), t(" removeBorderNodes", () => Z(e)), t(" normalize.undo", () => s.undo(e)), t(" fixupEdgeLabelCoords", () => Y(e)), t(" undoCoordinateSystem", () => S.undo(e)), t(" translateGraph", () => q(e)), t(" assignNodeIntersects", () => J(e)), t(" reversePoints", () => X(e)), t(" acyclic.undo", () => r.undo(e));
|
|
1721
|
+
}
|
|
1722
|
+
function M(e, t) {
|
|
1723
|
+
e.nodes().forEach((n) => {
|
|
1724
|
+
let r = e.node(n), i = t.node(n);
|
|
1725
|
+
r && (r.x = i.x, r.y = i.y, r.order = i.order, r.rank = i.rank, t.children(n).length && (r.width = i.width, r.height = i.height));
|
|
1726
|
+
}), e.edges().forEach((n) => {
|
|
1727
|
+
let r = e.edge(n), i = t.edge(n);
|
|
1728
|
+
r.points = i.points, Object.hasOwn(i, "x") && (r.x = i.x, r.y = i.y);
|
|
1729
|
+
}), e.graph().width = t.graph().width, e.graph().height = t.graph().height;
|
|
1730
|
+
}
|
|
1731
|
+
var N = [
|
|
1732
|
+
"nodesep",
|
|
1733
|
+
"edgesep",
|
|
1734
|
+
"ranksep",
|
|
1735
|
+
"marginx",
|
|
1736
|
+
"marginy"
|
|
1737
|
+
], P = {
|
|
1738
|
+
ranksep: 50,
|
|
1739
|
+
edgesep: 20,
|
|
1740
|
+
nodesep: 50,
|
|
1741
|
+
rankdir: "tb",
|
|
1742
|
+
rankalign: "center"
|
|
1743
|
+
}, F = [
|
|
1744
|
+
"acyclicer",
|
|
1745
|
+
"ranker",
|
|
1746
|
+
"rankdir",
|
|
1747
|
+
"align",
|
|
1748
|
+
"rankalign"
|
|
1749
|
+
], I = [
|
|
1750
|
+
"width",
|
|
1751
|
+
"height",
|
|
1752
|
+
"rank"
|
|
1753
|
+
], L = {
|
|
1754
|
+
width: 0,
|
|
1755
|
+
height: 0
|
|
1756
|
+
}, R = [
|
|
1757
|
+
"minlen",
|
|
1758
|
+
"weight",
|
|
1759
|
+
"width",
|
|
1760
|
+
"height",
|
|
1761
|
+
"labeloffset"
|
|
1762
|
+
], z = {
|
|
1763
|
+
minlen: 1,
|
|
1764
|
+
weight: 1,
|
|
1765
|
+
width: 0,
|
|
1766
|
+
height: 0,
|
|
1767
|
+
labeloffset: 10,
|
|
1768
|
+
labelpos: "r"
|
|
1769
|
+
}, B = ["labelpos"];
|
|
1770
|
+
function V(e) {
|
|
1771
|
+
let t = new D({
|
|
1772
|
+
multigraph: !0,
|
|
1773
|
+
compound: !0
|
|
1774
|
+
}), n = $(e.graph());
|
|
1775
|
+
return t.setGraph(Object.assign({}, P, Q(n, N), T.pick(n, F))), e.nodes().forEach((n) => {
|
|
1776
|
+
let r = Q($(e.node(n)), I);
|
|
1777
|
+
Object.keys(L).forEach((e) => {
|
|
1778
|
+
r[e] === void 0 && (r[e] = L[e]);
|
|
1779
|
+
}), t.setNode(n, r), t.setParent(n, e.parent(n));
|
|
1780
|
+
}), e.edges().forEach((n) => {
|
|
1781
|
+
let r = $(e.edge(n));
|
|
1782
|
+
t.setEdge(n, Object.assign({}, z, Q(r, R), T.pick(r, B)));
|
|
1783
|
+
}), t;
|
|
1784
|
+
}
|
|
1785
|
+
function H(e) {
|
|
1786
|
+
let t = e.graph();
|
|
1787
|
+
t.ranksep /= 2, e.edges().forEach((n) => {
|
|
1788
|
+
let r = e.edge(n);
|
|
1789
|
+
r.minlen *= 2, r.labelpos.toLowerCase() !== "c" && (t.rankdir === "TB" || t.rankdir === "BT" ? r.width += r.labeloffset : r.height += r.labeloffset);
|
|
1568
1790
|
});
|
|
1569
|
-
}
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
let t = T(e), n = e.graph(), r = n.ranksep, i = n.rankalign, a = 0;
|
|
1601
|
-
t.forEach((t) => {
|
|
1602
|
-
let n = t.reduce((t, n) => {
|
|
1603
|
-
let r = e.node(n).height ?? 0;
|
|
1604
|
-
return t > r ? t : r;
|
|
1605
|
-
}, 0);
|
|
1606
|
-
t.forEach((t) => {
|
|
1607
|
-
let r = e.node(t);
|
|
1608
|
-
i === "top" ? r.y = a + r.height / 2 : i === "bottom" ? r.y = a + n - r.height / 2 : r.y = a + n / 2;
|
|
1609
|
-
}), a += n + r;
|
|
1610
|
-
});
|
|
1611
|
-
}
|
|
1612
|
-
function ln(e, t = {}) {
|
|
1613
|
-
let n = t.debugTiming ? A : j;
|
|
1614
|
-
return n("layout", () => {
|
|
1615
|
-
let r = n(" buildLayoutGraph", () => bn(e));
|
|
1616
|
-
return n(" runLayout", () => un(r, n, t)), n(" updateInputGraph", () => dn(e, r)), r;
|
|
1617
|
-
});
|
|
1618
|
-
}
|
|
1619
|
-
function un(e, t, n) {
|
|
1620
|
-
t(" makeSpaceForEdgeLabels", () => xn(e)), t(" removeSelfEdges", () => An(e)), t(" acyclic", () => ze(e)), t(" nestingGraph.run", () => pt(e)), t(" rank", () => it(C(e))), t(" injectEdgeLabelProxies", () => Sn(e)), t(" removeEmptyRanks", () => Te(e)), t(" nestingGraph.cleanup", () => gt(e)), t(" normalizeRanks", () => we(e)), t(" assignRankMinMax", () => Cn(e)), t(" removeEdgeLabelProxies", () => wn(e)), t(" normalize.run", () => He(e)), t(" parentDummyChains", () => lt(e)), t(" addBorderSegments", () => _t(e)), t(" order", () => Ht(e, n)), t(" insertSelfEdges", () => jn(e)), t(" adjustCoordinateSystem", () => bt(e)), t(" position", () => sn(e)), t(" positionSelfEdges", () => Mn(e)), t(" removeBorderNodes", () => kn(e)), t(" normalize.undo", () => We(e)), t(" fixupEdgeLabelCoords", () => Dn(e)), t(" undoCoordinateSystem", () => xt(e)), t(" translateGraph", () => Tn(e)), t(" assignNodeIntersects", () => En(e)), t(" reversePoints", () => On(e)), t(" acyclic.undo", () => Ve(e));
|
|
1621
|
-
}
|
|
1622
|
-
function dn(e, t) {
|
|
1623
|
-
e.nodes().forEach((n) => {
|
|
1624
|
-
let r = e.node(n), i = t.node(n);
|
|
1625
|
-
r && (r.x = i.x, r.y = i.y, r.order = i.order, r.rank = i.rank, t.children(n).length && (r.width = i.width, r.height = i.height));
|
|
1626
|
-
}), e.edges().forEach((n) => {
|
|
1627
|
-
let r = e.edge(n), i = t.edge(n);
|
|
1628
|
-
r.points = i.points, Object.hasOwn(i, "x") && (r.x = i.x, r.y = i.y);
|
|
1629
|
-
}), e.graph().width = t.graph().width, e.graph().height = t.graph().height;
|
|
1630
|
-
}
|
|
1631
|
-
var fn = [
|
|
1632
|
-
"nodesep",
|
|
1633
|
-
"edgesep",
|
|
1634
|
-
"ranksep",
|
|
1635
|
-
"marginx",
|
|
1636
|
-
"marginy"
|
|
1637
|
-
], pn = {
|
|
1638
|
-
ranksep: 50,
|
|
1639
|
-
edgesep: 20,
|
|
1640
|
-
nodesep: 50,
|
|
1641
|
-
rankdir: "TB",
|
|
1642
|
-
rankalign: "center"
|
|
1643
|
-
}, mn = [
|
|
1644
|
-
"acyclicer",
|
|
1645
|
-
"ranker",
|
|
1646
|
-
"rankdir",
|
|
1647
|
-
"align",
|
|
1648
|
-
"rankalign"
|
|
1649
|
-
], hn = [
|
|
1650
|
-
"width",
|
|
1651
|
-
"height",
|
|
1652
|
-
"rank"
|
|
1653
|
-
], gn = {
|
|
1654
|
-
width: 0,
|
|
1655
|
-
height: 0
|
|
1656
|
-
}, _n = [
|
|
1657
|
-
"minlen",
|
|
1658
|
-
"weight",
|
|
1659
|
-
"width",
|
|
1660
|
-
"height",
|
|
1661
|
-
"labeloffset"
|
|
1662
|
-
], vn = {
|
|
1663
|
-
minlen: 1,
|
|
1664
|
-
weight: 1,
|
|
1665
|
-
width: 0,
|
|
1666
|
-
height: 0,
|
|
1667
|
-
labeloffset: 10,
|
|
1668
|
-
labelpos: "r"
|
|
1669
|
-
}, yn = ["labelpos"];
|
|
1670
|
-
function bn(e) {
|
|
1671
|
-
let t = new s({
|
|
1672
|
-
multigraph: !0,
|
|
1673
|
-
compound: !0
|
|
1674
|
-
}), n = $(e.graph());
|
|
1675
|
-
return t.setGraph(Object.assign({}, pn, Q(n, fn), P(n, mn))), e.nodes().forEach((n) => {
|
|
1676
|
-
let r = Q($(e.node(n)), hn);
|
|
1677
|
-
Object.keys(gn).forEach((e) => {
|
|
1678
|
-
r[e] === void 0 && (r[e] = gn[e]);
|
|
1679
|
-
}), t.setNode(n, r);
|
|
1680
|
-
let i = e.parent(n);
|
|
1681
|
-
i !== void 0 && t.setParent(n, i);
|
|
1682
|
-
}), e.edges().forEach((n) => {
|
|
1683
|
-
let r = $(e.edge(n));
|
|
1684
|
-
t.setEdge(n, Object.assign({}, vn, Q(r, _n), P(r, yn)));
|
|
1685
|
-
}), t;
|
|
1686
|
-
}
|
|
1687
|
-
function xn(e) {
|
|
1688
|
-
let t = e.graph();
|
|
1689
|
-
t.ranksep /= 2, e.edges().forEach((n) => {
|
|
1690
|
-
let r = e.edge(n);
|
|
1691
|
-
r.minlen *= 2, r.labelpos.toLowerCase() !== "c" && (t.rankdir === "TB" || t.rankdir === "BT" ? r.width += r.labeloffset : r.height += r.labeloffset);
|
|
1692
|
-
});
|
|
1693
|
-
}
|
|
1694
|
-
function Sn(e) {
|
|
1695
|
-
e.edges().forEach((t) => {
|
|
1696
|
-
let n = e.edge(t);
|
|
1697
|
-
if (n.width && n.height) {
|
|
1698
|
-
let n = e.node(t.v);
|
|
1699
|
-
S(e, "edge-proxy", {
|
|
1700
|
-
rank: (e.node(t.w).rank - n.rank) / 2 + n.rank,
|
|
1701
|
-
e: t
|
|
1702
|
-
}, "_ep");
|
|
1703
|
-
}
|
|
1704
|
-
});
|
|
1705
|
-
}
|
|
1706
|
-
function Cn(e) {
|
|
1707
|
-
let t = 0;
|
|
1708
|
-
e.nodes().forEach((n) => {
|
|
1709
|
-
let r = e.node(n);
|
|
1710
|
-
r.borderTop && (r.minRank = e.node(r.borderTop).rank, r.maxRank = e.node(r.borderBottom).rank, t = Math.max(t, r.maxRank));
|
|
1711
|
-
}), e.graph().maxRank = t;
|
|
1712
|
-
}
|
|
1713
|
-
function wn(e) {
|
|
1714
|
-
e.nodes().forEach((t) => {
|
|
1715
|
-
let n = e.node(t);
|
|
1716
|
-
if (n.dummy === "edge-proxy") {
|
|
1717
|
-
let r = n;
|
|
1718
|
-
e.edge(r.e).labelRank = n.rank, e.removeNode(t);
|
|
1719
|
-
}
|
|
1720
|
-
});
|
|
1721
|
-
}
|
|
1722
|
-
function Tn(e) {
|
|
1723
|
-
let t = Infinity, n = 0, r = Infinity, i = 0, a = e.graph(), o = a.marginx || 0, s = a.marginy || 0;
|
|
1724
|
-
function c(e) {
|
|
1725
|
-
let a = e.x, o = e.y, s = e.width, c = e.height;
|
|
1726
|
-
t = Math.min(t, a - s / 2), n = Math.max(n, a + s / 2), r = Math.min(r, o - c / 2), i = Math.max(i, o + c / 2);
|
|
1727
|
-
}
|
|
1728
|
-
e.nodes().forEach((t) => c(e.node(t))), e.edges().forEach((t) => {
|
|
1729
|
-
let n = e.edge(t);
|
|
1730
|
-
Object.hasOwn(n, "x") && c(n);
|
|
1731
|
-
}), t -= o, r -= s, e.nodes().forEach((n) => {
|
|
1732
|
-
let i = e.node(n);
|
|
1733
|
-
i.x -= t, i.y -= r;
|
|
1734
|
-
}), e.edges().forEach((n) => {
|
|
1735
|
-
let i = e.edge(n);
|
|
1736
|
-
i.points.forEach((e) => {
|
|
1737
|
-
e.x -= t, e.y -= r;
|
|
1738
|
-
}), Object.hasOwn(i, "x") && (i.x -= t), Object.hasOwn(i, "y") && (i.y -= r);
|
|
1739
|
-
}), a.width = n - t + o, a.height = i - r + s;
|
|
1740
|
-
}
|
|
1741
|
-
function En(e) {
|
|
1742
|
-
e.edges().forEach((t) => {
|
|
1743
|
-
let n = e.edge(t), r = e.node(t.v), i = e.node(t.w), a, o;
|
|
1744
|
-
n.points ? (a = n.points[0], o = n.points[n.points.length - 1]) : (n.points = [], a = i, o = r), n.points.unshift(w(r, a)), n.points.push(w(i, o));
|
|
1745
|
-
});
|
|
1746
|
-
}
|
|
1747
|
-
function Dn(e) {
|
|
1748
|
-
e.edges().forEach((t) => {
|
|
1749
|
-
let n = e.edge(t);
|
|
1750
|
-
if (Object.hasOwn(n, "x")) switch ((n.labelpos === "l" || n.labelpos === "r") && (n.width -= n.labeloffset), n.labelpos) {
|
|
1751
|
-
case "l":
|
|
1752
|
-
n.x -= n.width / 2 + n.labeloffset;
|
|
1753
|
-
break;
|
|
1754
|
-
case "r":
|
|
1755
|
-
n.x += n.width / 2 + n.labeloffset;
|
|
1756
|
-
break;
|
|
1791
|
+
}
|
|
1792
|
+
function U(e) {
|
|
1793
|
+
e.edges().forEach((t) => {
|
|
1794
|
+
let n = e.edge(t);
|
|
1795
|
+
if (n.width && n.height) {
|
|
1796
|
+
let n = e.node(t.v), r = {
|
|
1797
|
+
rank: (e.node(t.w).rank - n.rank) / 2 + n.rank,
|
|
1798
|
+
e: t
|
|
1799
|
+
};
|
|
1800
|
+
T.addDummyNode(e, "edge-proxy", r, "_ep");
|
|
1801
|
+
}
|
|
1802
|
+
});
|
|
1803
|
+
}
|
|
1804
|
+
function W(e) {
|
|
1805
|
+
let t = 0;
|
|
1806
|
+
e.nodes().forEach((n) => {
|
|
1807
|
+
let r = e.node(n);
|
|
1808
|
+
r.borderTop && (r.minRank = e.node(r.borderTop).rank, r.maxRank = e.node(r.borderBottom).rank, t = Math.max(t, r.maxRank));
|
|
1809
|
+
}), e.graph().maxRank = t;
|
|
1810
|
+
}
|
|
1811
|
+
function K(e) {
|
|
1812
|
+
e.nodes().forEach((t) => {
|
|
1813
|
+
let n = e.node(t);
|
|
1814
|
+
n.dummy === "edge-proxy" && (e.edge(n.e).labelRank = n.rank, e.removeNode(t));
|
|
1815
|
+
});
|
|
1816
|
+
}
|
|
1817
|
+
function q(e) {
|
|
1818
|
+
let t = Infinity, n = 0, r = Infinity, i = 0, a = e.graph(), o = a.marginx || 0, s = a.marginy || 0;
|
|
1819
|
+
function c(e) {
|
|
1820
|
+
let a = e.x, o = e.y, s = e.width, c = e.height;
|
|
1821
|
+
t = Math.min(t, a - s / 2), n = Math.max(n, a + s / 2), r = Math.min(r, o - c / 2), i = Math.max(i, o + c / 2);
|
|
1757
1822
|
}
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
}
|
|
1776
|
-
function An(e) {
|
|
1777
|
-
e.edges().forEach((t) => {
|
|
1778
|
-
if (t.v === t.w) {
|
|
1779
|
-
let n = e.node(t.v);
|
|
1780
|
-
n.selfEdges ||= [], n.selfEdges.push({
|
|
1781
|
-
e: t,
|
|
1782
|
-
label: e.edge(t)
|
|
1783
|
-
}), e.removeEdge(t);
|
|
1784
|
-
}
|
|
1785
|
-
});
|
|
1786
|
-
}
|
|
1787
|
-
function jn(e) {
|
|
1788
|
-
T(e).forEach((t) => {
|
|
1789
|
-
let n = 0;
|
|
1790
|
-
t.forEach((t, r) => {
|
|
1791
|
-
let i = e.node(t);
|
|
1792
|
-
i.order = r + n, (i.selfEdges || []).forEach((t) => {
|
|
1793
|
-
S(e, "selfedge", {
|
|
1794
|
-
width: t.label.width,
|
|
1795
|
-
height: t.label.height,
|
|
1796
|
-
rank: i.rank,
|
|
1797
|
-
order: r + ++n,
|
|
1798
|
-
e: t.e,
|
|
1799
|
-
label: t.label
|
|
1800
|
-
}, "_se");
|
|
1801
|
-
}), delete i.selfEdges;
|
|
1823
|
+
e.nodes().forEach((t) => c(e.node(t))), e.edges().forEach((t) => {
|
|
1824
|
+
let n = e.edge(t);
|
|
1825
|
+
Object.hasOwn(n, "x") && c(n);
|
|
1826
|
+
}), t -= o, r -= s, e.nodes().forEach((n) => {
|
|
1827
|
+
let i = e.node(n);
|
|
1828
|
+
i.x -= t, i.y -= r;
|
|
1829
|
+
}), e.edges().forEach((n) => {
|
|
1830
|
+
let i = e.edge(n);
|
|
1831
|
+
i.points.forEach((e) => {
|
|
1832
|
+
e.x -= t, e.y -= r;
|
|
1833
|
+
}), Object.hasOwn(i, "x") && (i.x -= t), Object.hasOwn(i, "y") && (i.y -= r);
|
|
1834
|
+
}), a.width = n - t + o, a.height = i - r + s;
|
|
1835
|
+
}
|
|
1836
|
+
function J(e) {
|
|
1837
|
+
e.edges().forEach((t) => {
|
|
1838
|
+
let n = e.edge(t), r = e.node(t.v), i = e.node(t.w), a, o;
|
|
1839
|
+
n.points ? (a = n.points[0], o = n.points[n.points.length - 1]) : (n.points = [], a = i, o = r), n.points.unshift(T.intersectRect(r, a)), n.points.push(T.intersectRect(i, o));
|
|
1802
1840
|
});
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
x
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
}
|
|
1844
|
-
function
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1841
|
+
}
|
|
1842
|
+
function Y(e) {
|
|
1843
|
+
e.edges().forEach((t) => {
|
|
1844
|
+
let n = e.edge(t);
|
|
1845
|
+
if (Object.hasOwn(n, "x")) switch ((n.labelpos === "l" || n.labelpos === "r") && (n.width -= n.labeloffset), n.labelpos) {
|
|
1846
|
+
case "l":
|
|
1847
|
+
n.x -= n.width / 2 + n.labeloffset;
|
|
1848
|
+
break;
|
|
1849
|
+
case "r":
|
|
1850
|
+
n.x += n.width / 2 + n.labeloffset;
|
|
1851
|
+
break;
|
|
1852
|
+
}
|
|
1853
|
+
});
|
|
1854
|
+
}
|
|
1855
|
+
function X(e) {
|
|
1856
|
+
e.edges().forEach((t) => {
|
|
1857
|
+
let n = e.edge(t);
|
|
1858
|
+
n.reversed && n.points.reverse();
|
|
1859
|
+
});
|
|
1860
|
+
}
|
|
1861
|
+
function Z(e) {
|
|
1862
|
+
e.nodes().forEach((t) => {
|
|
1863
|
+
if (e.children(t).length) {
|
|
1864
|
+
let n = e.node(t), r = e.node(n.borderTop), i = e.node(n.borderBottom), a = e.node(n.borderLeft[n.borderLeft.length - 1]), o = e.node(n.borderRight[n.borderRight.length - 1]);
|
|
1865
|
+
n.width = Math.abs(o.x - a.x), n.height = Math.abs(i.y - r.y), n.x = a.x + n.width / 2, n.y = r.y + n.height / 2;
|
|
1866
|
+
}
|
|
1867
|
+
}), e.nodes().forEach((t) => {
|
|
1868
|
+
e.node(t).dummy === "border" && e.removeNode(t);
|
|
1869
|
+
});
|
|
1870
|
+
}
|
|
1871
|
+
function ee(e) {
|
|
1872
|
+
e.edges().forEach((t) => {
|
|
1873
|
+
if (t.v === t.w) {
|
|
1874
|
+
var n = e.node(t.v);
|
|
1875
|
+
n.selfEdges ||= [], n.selfEdges.push({
|
|
1876
|
+
e: t,
|
|
1877
|
+
label: e.edge(t)
|
|
1878
|
+
}), e.removeEdge(t);
|
|
1879
|
+
}
|
|
1880
|
+
});
|
|
1881
|
+
}
|
|
1882
|
+
function te(e) {
|
|
1883
|
+
T.buildLayerMatrix(e).forEach((t) => {
|
|
1884
|
+
var n = 0;
|
|
1885
|
+
t.forEach((t, r) => {
|
|
1886
|
+
var i = e.node(t);
|
|
1887
|
+
i.order = r + n, (i.selfEdges || []).forEach((t) => {
|
|
1888
|
+
T.addDummyNode(e, "selfedge", {
|
|
1889
|
+
width: t.label.width,
|
|
1890
|
+
height: t.label.height,
|
|
1891
|
+
rank: i.rank,
|
|
1892
|
+
order: r + ++n,
|
|
1893
|
+
e: t.e,
|
|
1894
|
+
label: t.label
|
|
1895
|
+
}, "_se");
|
|
1896
|
+
}), delete i.selfEdges;
|
|
1897
|
+
});
|
|
1898
|
+
});
|
|
1899
|
+
}
|
|
1900
|
+
function re(e) {
|
|
1901
|
+
e.nodes().forEach((t) => {
|
|
1902
|
+
var n = e.node(t);
|
|
1903
|
+
if (n.dummy === "selfedge") {
|
|
1904
|
+
var r = e.node(n.e.v), i = r.x + r.width / 2, a = r.y, o = n.x - i, s = r.height / 2;
|
|
1905
|
+
e.setEdge(n.e, n.label), e.removeNode(t), n.label.points = [
|
|
1906
|
+
{
|
|
1907
|
+
x: i + 2 * o / 3,
|
|
1908
|
+
y: a - s
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
x: i + 5 * o / 6,
|
|
1912
|
+
y: a - s
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
x: i + o,
|
|
1916
|
+
y: a
|
|
1917
|
+
},
|
|
1918
|
+
{
|
|
1919
|
+
x: i + 5 * o / 6,
|
|
1920
|
+
y: a + s
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
x: i + 2 * o / 3,
|
|
1924
|
+
y: a + s
|
|
1925
|
+
}
|
|
1926
|
+
], n.label.x = n.x, n.label.y = n.y;
|
|
1927
|
+
}
|
|
1928
|
+
});
|
|
1929
|
+
}
|
|
1930
|
+
function Q(e, t) {
|
|
1931
|
+
return T.mapValues(T.pick(e, t), Number);
|
|
1932
|
+
}
|
|
1933
|
+
function $(e) {
|
|
1934
|
+
var t = {};
|
|
1935
|
+
return e && Object.entries(e).forEach(([e, n]) => {
|
|
1936
|
+
typeof e == "string" && (e = e.toLowerCase()), t[e] = n;
|
|
1937
|
+
}), t;
|
|
1938
|
+
}
|
|
1939
|
+
}), St = v((e, n) => {
|
|
1940
|
+
var r = _(), a = y().Graph;
|
|
1941
|
+
n.exports = { debugOrdering: o };
|
|
1942
|
+
function o(e) {
|
|
1943
|
+
let t = r.buildLayerMatrix(e), n = new a({
|
|
1944
|
+
compound: !0,
|
|
1945
|
+
multigraph: !0
|
|
1946
|
+
}).setGraph({});
|
|
1947
|
+
return e.nodes().forEach((t) => {
|
|
1948
|
+
n.setNode(t, { label: t }), n.setParent(t, "layer" + e.node(t).rank);
|
|
1949
|
+
}), e.edges().forEach((e) => n.setEdge(e.v, e.w, {}, e.name)), t.forEach((e, t) => {
|
|
1950
|
+
let r = "layer" + t;
|
|
1951
|
+
n.setNode(r, { rank: "same" }), e.reduce((e, t) => (n.setEdge(e, t, { style: "invis" }), t));
|
|
1952
|
+
}), n;
|
|
1953
|
+
}
|
|
1954
|
+
}), Ft = v((e, t) => {
|
|
1955
|
+
t.exports = "2.0.4";
|
|
1956
|
+
}), dagre_esm_default = v((e, n) => {
|
|
1957
|
+
n.exports = {
|
|
1958
|
+
graphlib: y(),
|
|
1959
|
+
layout: Rt(),
|
|
1960
|
+
debug: St(),
|
|
1961
|
+
util: {
|
|
1962
|
+
time: _().time,
|
|
1963
|
+
notime: _().notime
|
|
1964
|
+
},
|
|
1965
|
+
version: Ft()
|
|
1966
|
+
};
|
|
1967
|
+
})();
|
|
1968
|
+
export { dagre_esm_default as default };
|