@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,16 +1,15 @@
|
|
|
1
|
-
import { __name
|
|
2
|
-
import { assignWithDepth_default
|
|
3
|
-
import
|
|
1
|
+
import { __name, log } from "./chunk-AGHRB4JF.js";
|
|
2
|
+
import { assignWithDepth_default, common_default, configureSvgSize, getAccDescription, getAccTitle, getConfig2, sanitizeText, setAccDescription, setAccTitle } from "./chunk-ICPOFSXX.js";
|
|
3
|
+
import select_default from "../../../../d3-selection/src/select.js";
|
|
4
4
|
import "../../../../d3/src/index.js";
|
|
5
|
-
import { require_dist
|
|
6
|
-
import { calculateTextHeight
|
|
7
|
-
import { drawRect
|
|
8
|
-
|
|
9
|
-
var
|
|
10
|
-
var t = /* @__PURE__ */ e(function(e, t, n, r) {
|
|
5
|
+
import { require_dist } from "../../../../@braintree/sanitize-url/dist/index.js";
|
|
6
|
+
import { calculateTextHeight, calculateTextWidth, wrapLabel } from "./chunk-5PVQY5BW.js";
|
|
7
|
+
import { drawRect, getNoteRect } from "./chunk-YZCP3GAM.js";
|
|
8
|
+
var import_dist = require_dist(), parser = (function() {
|
|
9
|
+
var t = /* @__PURE__ */ __name(function(e, t, n, r) {
|
|
11
10
|
for (n ||= {}, r = e.length; r--; n[e[r]] = t);
|
|
12
11
|
return n;
|
|
13
|
-
}, "o"), n = [1, 24], r = [1, 25], i = [1, 26], a = [1, 27], o = [1, 28], s = [1, 63], l = [1, 64], u = [1, 65], d = [1, 66], f = [1, 67], p = [1, 68], m = [1, 69], h = [1, 29], g = [1, 30], _ = [1, 31], v = [1, 32], y = [1, 33], b = [1, 34], x = [1, 35], S = [1, 36], C = [1, 37], w = [1, 38], T = [1, 39], E = [1, 40], D = [1, 41], O = [1, 42], k = [1, 43], A = [1, 44], j = [1, 45], M = [1, 46], N = [1, 47], P = [1, 48], F = [1, 50], I = [1, 51], L = [1, 52], R = [1, 53],
|
|
12
|
+
}, "o"), n = [1, 24], r = [1, 25], i = [1, 26], a = [1, 27], o = [1, 28], s = [1, 63], l = [1, 64], u = [1, 65], d = [1, 66], f = [1, 67], p = [1, 68], m = [1, 69], h = [1, 29], g = [1, 30], _ = [1, 31], v = [1, 32], y = [1, 33], b = [1, 34], x = [1, 35], S = [1, 36], C = [1, 37], w = [1, 38], T = [1, 39], E = [1, 40], D = [1, 41], O = [1, 42], k = [1, 43], A = [1, 44], j = [1, 45], M = [1, 46], N = [1, 47], P = [1, 48], F = [1, 50], I = [1, 51], L = [1, 52], R = [1, 53], z = [1, 54], B = [1, 55], V = [1, 56], H = [1, 57], U = [1, 58], W = [1, 59], G = [1, 60], K = [14, 42], Fe = [
|
|
14
13
|
14,
|
|
15
14
|
34,
|
|
16
15
|
36,
|
|
@@ -51,7 +50,7 @@ var y = p(), b = (function() {
|
|
|
51
50
|
72,
|
|
52
51
|
73,
|
|
53
52
|
74
|
|
54
|
-
],
|
|
53
|
+
], q = [
|
|
55
54
|
12,
|
|
56
55
|
14,
|
|
57
56
|
34,
|
|
@@ -93,16 +92,16 @@ var y = p(), b = (function() {
|
|
|
93
92
|
72,
|
|
94
93
|
73,
|
|
95
94
|
74
|
|
96
|
-
],
|
|
95
|
+
], J = [1, 82], Y = [1, 83], X = [1, 84], Z = [1, 85], Q = [
|
|
97
96
|
12,
|
|
98
97
|
14,
|
|
99
98
|
42
|
|
100
|
-
],
|
|
99
|
+
], Ie = [
|
|
101
100
|
12,
|
|
102
101
|
14,
|
|
103
102
|
33,
|
|
104
103
|
42
|
|
105
|
-
],
|
|
104
|
+
], Le = [
|
|
106
105
|
12,
|
|
107
106
|
14,
|
|
108
107
|
33,
|
|
@@ -111,7 +110,7 @@ var y = p(), b = (function() {
|
|
|
111
110
|
77,
|
|
112
111
|
79,
|
|
113
112
|
80
|
|
114
|
-
],
|
|
113
|
+
], $ = [12, 33], Re = [
|
|
115
114
|
34,
|
|
116
115
|
36,
|
|
117
116
|
37,
|
|
@@ -150,8 +149,8 @@ var y = p(), b = (function() {
|
|
|
150
149
|
72,
|
|
151
150
|
73,
|
|
152
151
|
74
|
|
153
|
-
],
|
|
154
|
-
trace: /* @__PURE__ */
|
|
152
|
+
], ze = {
|
|
153
|
+
trace: /* @__PURE__ */ __name(function() {}, "trace"),
|
|
155
154
|
yy: {},
|
|
156
155
|
symbols_: {
|
|
157
156
|
error: 2,
|
|
@@ -381,7 +380,7 @@ var y = p(), b = (function() {
|
|
|
381
380
|
[75, 1],
|
|
382
381
|
[75, 1]
|
|
383
382
|
],
|
|
384
|
-
performAction: /* @__PURE__ */
|
|
383
|
+
performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
|
|
385
384
|
var s = a.length - 1;
|
|
386
385
|
switch (i) {
|
|
387
386
|
case 3:
|
|
@@ -626,13 +625,13 @@ var y = p(), b = (function() {
|
|
|
626
625
|
65: I,
|
|
627
626
|
66: L,
|
|
628
627
|
67: R,
|
|
629
|
-
68:
|
|
630
|
-
69:
|
|
631
|
-
70:
|
|
632
|
-
71:
|
|
633
|
-
72:
|
|
634
|
-
73:
|
|
635
|
-
74:
|
|
628
|
+
68: z,
|
|
629
|
+
69: B,
|
|
630
|
+
70: V,
|
|
631
|
+
71: H,
|
|
632
|
+
72: U,
|
|
633
|
+
73: W,
|
|
634
|
+
74: G
|
|
636
635
|
},
|
|
637
636
|
{
|
|
638
637
|
13: 70,
|
|
@@ -679,13 +678,13 @@ var y = p(), b = (function() {
|
|
|
679
678
|
65: I,
|
|
680
679
|
66: L,
|
|
681
680
|
67: R,
|
|
682
|
-
68:
|
|
683
|
-
69:
|
|
684
|
-
70:
|
|
685
|
-
71:
|
|
686
|
-
72:
|
|
687
|
-
73:
|
|
688
|
-
74:
|
|
681
|
+
68: z,
|
|
682
|
+
69: B,
|
|
683
|
+
70: V,
|
|
684
|
+
71: H,
|
|
685
|
+
72: U,
|
|
686
|
+
73: W,
|
|
687
|
+
74: G
|
|
689
688
|
},
|
|
690
689
|
{
|
|
691
690
|
13: 71,
|
|
@@ -732,13 +731,13 @@ var y = p(), b = (function() {
|
|
|
732
731
|
65: I,
|
|
733
732
|
66: L,
|
|
734
733
|
67: R,
|
|
735
|
-
68:
|
|
736
|
-
69:
|
|
737
|
-
70:
|
|
738
|
-
71:
|
|
739
|
-
72:
|
|
740
|
-
73:
|
|
741
|
-
74:
|
|
734
|
+
68: z,
|
|
735
|
+
69: B,
|
|
736
|
+
70: V,
|
|
737
|
+
71: H,
|
|
738
|
+
72: U,
|
|
739
|
+
73: W,
|
|
740
|
+
74: G
|
|
742
741
|
},
|
|
743
742
|
{
|
|
744
743
|
13: 72,
|
|
@@ -785,13 +784,13 @@ var y = p(), b = (function() {
|
|
|
785
784
|
65: I,
|
|
786
785
|
66: L,
|
|
787
786
|
67: R,
|
|
788
|
-
68:
|
|
789
|
-
69:
|
|
790
|
-
70:
|
|
791
|
-
71:
|
|
792
|
-
72:
|
|
793
|
-
73:
|
|
794
|
-
74:
|
|
787
|
+
68: z,
|
|
788
|
+
69: B,
|
|
789
|
+
70: V,
|
|
790
|
+
71: H,
|
|
791
|
+
72: U,
|
|
792
|
+
73: W,
|
|
793
|
+
74: G
|
|
795
794
|
},
|
|
796
795
|
{
|
|
797
796
|
13: 73,
|
|
@@ -838,16 +837,16 @@ var y = p(), b = (function() {
|
|
|
838
837
|
65: I,
|
|
839
838
|
66: L,
|
|
840
839
|
67: R,
|
|
841
|
-
68:
|
|
842
|
-
69:
|
|
843
|
-
70:
|
|
844
|
-
71:
|
|
845
|
-
72:
|
|
846
|
-
73:
|
|
847
|
-
74:
|
|
840
|
+
68: z,
|
|
841
|
+
69: B,
|
|
842
|
+
70: V,
|
|
843
|
+
71: H,
|
|
844
|
+
72: U,
|
|
845
|
+
73: W,
|
|
846
|
+
74: G
|
|
848
847
|
},
|
|
849
848
|
{ 14: [1, 74] },
|
|
850
|
-
t(
|
|
849
|
+
t(K, [2, 13], {
|
|
851
850
|
43: 23,
|
|
852
851
|
29: 49,
|
|
853
852
|
30: 61,
|
|
@@ -884,270 +883,270 @@ var y = p(), b = (function() {
|
|
|
884
883
|
65: I,
|
|
885
884
|
66: L,
|
|
886
885
|
67: R,
|
|
887
|
-
68:
|
|
888
|
-
69:
|
|
889
|
-
70:
|
|
890
|
-
71:
|
|
891
|
-
72:
|
|
892
|
-
73:
|
|
893
|
-
74:
|
|
886
|
+
68: z,
|
|
887
|
+
69: B,
|
|
888
|
+
70: V,
|
|
889
|
+
71: H,
|
|
890
|
+
72: U,
|
|
891
|
+
73: W,
|
|
892
|
+
74: G
|
|
894
893
|
}),
|
|
895
|
-
t(
|
|
896
|
-
t(
|
|
897
|
-
t(
|
|
898
|
-
t(
|
|
899
|
-
t(
|
|
894
|
+
t(K, [2, 14]),
|
|
895
|
+
t(Fe, [2, 16], { 12: [1, 76] }),
|
|
896
|
+
t(K, [2, 36], { 12: [1, 77] }),
|
|
897
|
+
t(q, [2, 19]),
|
|
898
|
+
t(q, [2, 20]),
|
|
900
899
|
{ 25: [1, 78] },
|
|
901
900
|
{ 27: [1, 79] },
|
|
902
|
-
t(
|
|
901
|
+
t(q, [2, 23]),
|
|
903
902
|
{
|
|
904
903
|
35: 80,
|
|
905
904
|
75: 81,
|
|
906
|
-
76:
|
|
907
|
-
77:
|
|
908
|
-
79:
|
|
909
|
-
80:
|
|
905
|
+
76: J,
|
|
906
|
+
77: Y,
|
|
907
|
+
79: X,
|
|
908
|
+
80: Z
|
|
910
909
|
},
|
|
911
910
|
{
|
|
912
911
|
35: 86,
|
|
913
912
|
75: 81,
|
|
914
|
-
76:
|
|
915
|
-
77:
|
|
916
|
-
79:
|
|
917
|
-
80:
|
|
913
|
+
76: J,
|
|
914
|
+
77: Y,
|
|
915
|
+
79: X,
|
|
916
|
+
80: Z
|
|
918
917
|
},
|
|
919
918
|
{
|
|
920
919
|
35: 87,
|
|
921
920
|
75: 81,
|
|
922
|
-
76:
|
|
923
|
-
77:
|
|
924
|
-
79:
|
|
925
|
-
80:
|
|
921
|
+
76: J,
|
|
922
|
+
77: Y,
|
|
923
|
+
79: X,
|
|
924
|
+
80: Z
|
|
926
925
|
},
|
|
927
926
|
{
|
|
928
927
|
35: 88,
|
|
929
928
|
75: 81,
|
|
930
|
-
76:
|
|
931
|
-
77:
|
|
932
|
-
79:
|
|
933
|
-
80:
|
|
929
|
+
76: J,
|
|
930
|
+
77: Y,
|
|
931
|
+
79: X,
|
|
932
|
+
80: Z
|
|
934
933
|
},
|
|
935
934
|
{
|
|
936
935
|
35: 89,
|
|
937
936
|
75: 81,
|
|
938
|
-
76:
|
|
939
|
-
77:
|
|
940
|
-
79:
|
|
941
|
-
80:
|
|
937
|
+
76: J,
|
|
938
|
+
77: Y,
|
|
939
|
+
79: X,
|
|
940
|
+
80: Z
|
|
942
941
|
},
|
|
943
942
|
{
|
|
944
943
|
35: 90,
|
|
945
944
|
75: 81,
|
|
946
|
-
76:
|
|
947
|
-
77:
|
|
948
|
-
79:
|
|
949
|
-
80:
|
|
945
|
+
76: J,
|
|
946
|
+
77: Y,
|
|
947
|
+
79: X,
|
|
948
|
+
80: Z
|
|
950
949
|
},
|
|
951
950
|
{
|
|
952
951
|
35: 91,
|
|
953
952
|
75: 81,
|
|
954
|
-
76:
|
|
955
|
-
77:
|
|
956
|
-
79:
|
|
957
|
-
80:
|
|
953
|
+
76: J,
|
|
954
|
+
77: Y,
|
|
955
|
+
79: X,
|
|
956
|
+
80: Z
|
|
958
957
|
},
|
|
959
958
|
{
|
|
960
959
|
35: 92,
|
|
961
960
|
75: 81,
|
|
962
|
-
76:
|
|
963
|
-
77:
|
|
964
|
-
79:
|
|
965
|
-
80:
|
|
961
|
+
76: J,
|
|
962
|
+
77: Y,
|
|
963
|
+
79: X,
|
|
964
|
+
80: Z
|
|
966
965
|
},
|
|
967
966
|
{
|
|
968
967
|
35: 93,
|
|
969
968
|
75: 81,
|
|
970
|
-
76:
|
|
971
|
-
77:
|
|
972
|
-
79:
|
|
973
|
-
80:
|
|
969
|
+
76: J,
|
|
970
|
+
77: Y,
|
|
971
|
+
79: X,
|
|
972
|
+
80: Z
|
|
974
973
|
},
|
|
975
974
|
{
|
|
976
975
|
35: 94,
|
|
977
976
|
75: 81,
|
|
978
|
-
76:
|
|
979
|
-
77:
|
|
980
|
-
79:
|
|
981
|
-
80:
|
|
977
|
+
76: J,
|
|
978
|
+
77: Y,
|
|
979
|
+
79: X,
|
|
980
|
+
80: Z
|
|
982
981
|
},
|
|
983
982
|
{
|
|
984
983
|
35: 95,
|
|
985
984
|
75: 81,
|
|
986
|
-
76:
|
|
987
|
-
77:
|
|
988
|
-
79:
|
|
989
|
-
80:
|
|
985
|
+
76: J,
|
|
986
|
+
77: Y,
|
|
987
|
+
79: X,
|
|
988
|
+
80: Z
|
|
990
989
|
},
|
|
991
990
|
{
|
|
992
991
|
35: 96,
|
|
993
992
|
75: 81,
|
|
994
|
-
76:
|
|
995
|
-
77:
|
|
996
|
-
79:
|
|
997
|
-
80:
|
|
993
|
+
76: J,
|
|
994
|
+
77: Y,
|
|
995
|
+
79: X,
|
|
996
|
+
80: Z
|
|
998
997
|
},
|
|
999
998
|
{
|
|
1000
999
|
35: 97,
|
|
1001
1000
|
75: 81,
|
|
1002
|
-
76:
|
|
1003
|
-
77:
|
|
1004
|
-
79:
|
|
1005
|
-
80:
|
|
1001
|
+
76: J,
|
|
1002
|
+
77: Y,
|
|
1003
|
+
79: X,
|
|
1004
|
+
80: Z
|
|
1006
1005
|
},
|
|
1007
1006
|
{
|
|
1008
1007
|
35: 98,
|
|
1009
1008
|
75: 81,
|
|
1010
|
-
76:
|
|
1011
|
-
77:
|
|
1012
|
-
79:
|
|
1013
|
-
80:
|
|
1009
|
+
76: J,
|
|
1010
|
+
77: Y,
|
|
1011
|
+
79: X,
|
|
1012
|
+
80: Z
|
|
1014
1013
|
},
|
|
1015
1014
|
{
|
|
1016
1015
|
35: 99,
|
|
1017
1016
|
75: 81,
|
|
1018
|
-
76:
|
|
1019
|
-
77:
|
|
1020
|
-
79:
|
|
1021
|
-
80:
|
|
1017
|
+
76: J,
|
|
1018
|
+
77: Y,
|
|
1019
|
+
79: X,
|
|
1020
|
+
80: Z
|
|
1022
1021
|
},
|
|
1023
1022
|
{
|
|
1024
1023
|
35: 100,
|
|
1025
1024
|
75: 81,
|
|
1026
|
-
76:
|
|
1027
|
-
77:
|
|
1028
|
-
79:
|
|
1029
|
-
80:
|
|
1025
|
+
76: J,
|
|
1026
|
+
77: Y,
|
|
1027
|
+
79: X,
|
|
1028
|
+
80: Z
|
|
1030
1029
|
},
|
|
1031
1030
|
{
|
|
1032
1031
|
35: 101,
|
|
1033
1032
|
75: 81,
|
|
1034
|
-
76:
|
|
1035
|
-
77:
|
|
1036
|
-
79:
|
|
1037
|
-
80:
|
|
1033
|
+
76: J,
|
|
1034
|
+
77: Y,
|
|
1035
|
+
79: X,
|
|
1036
|
+
80: Z
|
|
1038
1037
|
},
|
|
1039
1038
|
{
|
|
1040
1039
|
35: 102,
|
|
1041
1040
|
75: 81,
|
|
1042
|
-
76:
|
|
1043
|
-
77:
|
|
1044
|
-
79:
|
|
1045
|
-
80:
|
|
1041
|
+
76: J,
|
|
1042
|
+
77: Y,
|
|
1043
|
+
79: X,
|
|
1044
|
+
80: Z
|
|
1046
1045
|
},
|
|
1047
1046
|
{
|
|
1048
1047
|
35: 103,
|
|
1049
1048
|
75: 81,
|
|
1050
|
-
76:
|
|
1051
|
-
77:
|
|
1052
|
-
79:
|
|
1053
|
-
80:
|
|
1049
|
+
76: J,
|
|
1050
|
+
77: Y,
|
|
1051
|
+
79: X,
|
|
1052
|
+
80: Z
|
|
1054
1053
|
},
|
|
1055
1054
|
{
|
|
1056
1055
|
35: 104,
|
|
1057
1056
|
75: 81,
|
|
1058
|
-
76:
|
|
1059
|
-
77:
|
|
1060
|
-
79:
|
|
1061
|
-
80:
|
|
1057
|
+
76: J,
|
|
1058
|
+
77: Y,
|
|
1059
|
+
79: X,
|
|
1060
|
+
80: Z
|
|
1062
1061
|
},
|
|
1063
|
-
t(
|
|
1062
|
+
t(Q, [2, 59]),
|
|
1064
1063
|
{
|
|
1065
1064
|
35: 105,
|
|
1066
1065
|
75: 81,
|
|
1067
|
-
76:
|
|
1068
|
-
77:
|
|
1069
|
-
79:
|
|
1070
|
-
80:
|
|
1066
|
+
76: J,
|
|
1067
|
+
77: Y,
|
|
1068
|
+
79: X,
|
|
1069
|
+
80: Z
|
|
1071
1070
|
},
|
|
1072
1071
|
{
|
|
1073
1072
|
35: 106,
|
|
1074
1073
|
75: 81,
|
|
1075
|
-
76:
|
|
1076
|
-
77:
|
|
1077
|
-
79:
|
|
1078
|
-
80:
|
|
1074
|
+
76: J,
|
|
1075
|
+
77: Y,
|
|
1076
|
+
79: X,
|
|
1077
|
+
80: Z
|
|
1079
1078
|
},
|
|
1080
1079
|
{
|
|
1081
1080
|
35: 107,
|
|
1082
1081
|
75: 81,
|
|
1083
|
-
76:
|
|
1084
|
-
77:
|
|
1085
|
-
79:
|
|
1086
|
-
80:
|
|
1082
|
+
76: J,
|
|
1083
|
+
77: Y,
|
|
1084
|
+
79: X,
|
|
1085
|
+
80: Z
|
|
1087
1086
|
},
|
|
1088
1087
|
{
|
|
1089
1088
|
35: 108,
|
|
1090
1089
|
75: 81,
|
|
1091
|
-
76:
|
|
1092
|
-
77:
|
|
1093
|
-
79:
|
|
1094
|
-
80:
|
|
1090
|
+
76: J,
|
|
1091
|
+
77: Y,
|
|
1092
|
+
79: X,
|
|
1093
|
+
80: Z
|
|
1095
1094
|
},
|
|
1096
1095
|
{
|
|
1097
1096
|
35: 109,
|
|
1098
1097
|
75: 81,
|
|
1099
|
-
76:
|
|
1100
|
-
77:
|
|
1101
|
-
79:
|
|
1102
|
-
80:
|
|
1098
|
+
76: J,
|
|
1099
|
+
77: Y,
|
|
1100
|
+
79: X,
|
|
1101
|
+
80: Z
|
|
1103
1102
|
},
|
|
1104
1103
|
{
|
|
1105
1104
|
35: 110,
|
|
1106
1105
|
75: 81,
|
|
1107
|
-
76:
|
|
1108
|
-
77:
|
|
1109
|
-
79:
|
|
1110
|
-
80:
|
|
1106
|
+
76: J,
|
|
1107
|
+
77: Y,
|
|
1108
|
+
79: X,
|
|
1109
|
+
80: Z
|
|
1111
1110
|
},
|
|
1112
1111
|
{
|
|
1113
1112
|
35: 111,
|
|
1114
1113
|
75: 81,
|
|
1115
|
-
76:
|
|
1116
|
-
77:
|
|
1117
|
-
79:
|
|
1118
|
-
80:
|
|
1114
|
+
76: J,
|
|
1115
|
+
77: Y,
|
|
1116
|
+
79: X,
|
|
1117
|
+
80: Z
|
|
1119
1118
|
},
|
|
1120
1119
|
{
|
|
1121
1120
|
35: 112,
|
|
1122
1121
|
75: 81,
|
|
1123
|
-
76:
|
|
1124
|
-
77:
|
|
1125
|
-
79:
|
|
1126
|
-
80:
|
|
1122
|
+
76: J,
|
|
1123
|
+
77: Y,
|
|
1124
|
+
79: X,
|
|
1125
|
+
80: Z
|
|
1127
1126
|
},
|
|
1128
1127
|
{
|
|
1129
1128
|
35: 113,
|
|
1130
1129
|
75: 81,
|
|
1131
|
-
76:
|
|
1132
|
-
77:
|
|
1133
|
-
79:
|
|
1134
|
-
80:
|
|
1130
|
+
76: J,
|
|
1131
|
+
77: Y,
|
|
1132
|
+
79: X,
|
|
1133
|
+
80: Z
|
|
1135
1134
|
},
|
|
1136
1135
|
{
|
|
1137
1136
|
35: 114,
|
|
1138
1137
|
75: 81,
|
|
1139
|
-
76:
|
|
1140
|
-
77:
|
|
1141
|
-
79:
|
|
1142
|
-
80:
|
|
1138
|
+
76: J,
|
|
1139
|
+
77: Y,
|
|
1140
|
+
79: X,
|
|
1141
|
+
80: Z
|
|
1143
1142
|
},
|
|
1144
1143
|
{
|
|
1145
1144
|
35: 115,
|
|
1146
1145
|
75: 81,
|
|
1147
|
-
76:
|
|
1148
|
-
77:
|
|
1149
|
-
79:
|
|
1150
|
-
80:
|
|
1146
|
+
76: J,
|
|
1147
|
+
77: Y,
|
|
1148
|
+
79: X,
|
|
1149
|
+
80: Z
|
|
1151
1150
|
},
|
|
1152
1151
|
{
|
|
1153
1152
|
20: 116,
|
|
@@ -1186,13 +1185,13 @@ var y = p(), b = (function() {
|
|
|
1186
1185
|
65: I,
|
|
1187
1186
|
66: L,
|
|
1188
1187
|
67: R,
|
|
1189
|
-
68:
|
|
1190
|
-
69:
|
|
1191
|
-
70:
|
|
1192
|
-
71:
|
|
1193
|
-
72:
|
|
1194
|
-
73:
|
|
1195
|
-
74:
|
|
1188
|
+
68: z,
|
|
1189
|
+
69: B,
|
|
1190
|
+
70: V,
|
|
1191
|
+
71: H,
|
|
1192
|
+
72: U,
|
|
1193
|
+
73: W,
|
|
1194
|
+
74: G
|
|
1196
1195
|
},
|
|
1197
1196
|
{
|
|
1198
1197
|
12: [1, 118],
|
|
@@ -1201,66 +1200,66 @@ var y = p(), b = (function() {
|
|
|
1201
1200
|
{
|
|
1202
1201
|
35: 119,
|
|
1203
1202
|
75: 81,
|
|
1204
|
-
76:
|
|
1205
|
-
77:
|
|
1206
|
-
79:
|
|
1207
|
-
80:
|
|
1203
|
+
76: J,
|
|
1204
|
+
77: Y,
|
|
1205
|
+
79: X,
|
|
1206
|
+
80: Z
|
|
1208
1207
|
},
|
|
1209
1208
|
{
|
|
1210
1209
|
35: 120,
|
|
1211
1210
|
75: 81,
|
|
1212
|
-
76:
|
|
1213
|
-
77:
|
|
1214
|
-
79:
|
|
1215
|
-
80:
|
|
1211
|
+
76: J,
|
|
1212
|
+
77: Y,
|
|
1213
|
+
79: X,
|
|
1214
|
+
80: Z
|
|
1216
1215
|
},
|
|
1217
1216
|
{
|
|
1218
1217
|
35: 121,
|
|
1219
1218
|
75: 81,
|
|
1220
|
-
76:
|
|
1221
|
-
77:
|
|
1222
|
-
79:
|
|
1223
|
-
80:
|
|
1219
|
+
76: J,
|
|
1220
|
+
77: Y,
|
|
1221
|
+
79: X,
|
|
1222
|
+
80: Z
|
|
1224
1223
|
},
|
|
1225
1224
|
{
|
|
1226
1225
|
35: 122,
|
|
1227
1226
|
75: 81,
|
|
1228
|
-
76:
|
|
1229
|
-
77:
|
|
1230
|
-
79:
|
|
1231
|
-
80:
|
|
1227
|
+
76: J,
|
|
1228
|
+
77: Y,
|
|
1229
|
+
79: X,
|
|
1230
|
+
80: Z
|
|
1232
1231
|
},
|
|
1233
1232
|
{
|
|
1234
1233
|
35: 123,
|
|
1235
1234
|
75: 81,
|
|
1236
|
-
76:
|
|
1237
|
-
77:
|
|
1238
|
-
79:
|
|
1239
|
-
80:
|
|
1235
|
+
76: J,
|
|
1236
|
+
77: Y,
|
|
1237
|
+
79: X,
|
|
1238
|
+
80: Z
|
|
1240
1239
|
},
|
|
1241
1240
|
{
|
|
1242
1241
|
35: 124,
|
|
1243
1242
|
75: 81,
|
|
1244
|
-
76:
|
|
1245
|
-
77:
|
|
1246
|
-
79:
|
|
1247
|
-
80:
|
|
1243
|
+
76: J,
|
|
1244
|
+
77: Y,
|
|
1245
|
+
79: X,
|
|
1246
|
+
80: Z
|
|
1248
1247
|
},
|
|
1249
1248
|
{
|
|
1250
1249
|
35: 125,
|
|
1251
1250
|
75: 81,
|
|
1252
|
-
76:
|
|
1253
|
-
77:
|
|
1254
|
-
79:
|
|
1255
|
-
80:
|
|
1251
|
+
76: J,
|
|
1252
|
+
77: Y,
|
|
1253
|
+
79: X,
|
|
1254
|
+
80: Z
|
|
1256
1255
|
},
|
|
1257
1256
|
{ 14: [1, 126] },
|
|
1258
1257
|
{ 14: [1, 127] },
|
|
1259
1258
|
{ 14: [1, 128] },
|
|
1260
1259
|
{ 14: [1, 129] },
|
|
1261
1260
|
{ 1: [2, 8] },
|
|
1262
|
-
t(
|
|
1263
|
-
t(
|
|
1261
|
+
t(K, [2, 15]),
|
|
1262
|
+
t(Fe, [2, 17], {
|
|
1264
1263
|
21: 22,
|
|
1265
1264
|
19: 130,
|
|
1266
1265
|
22: n,
|
|
@@ -1269,7 +1268,7 @@ var y = p(), b = (function() {
|
|
|
1269
1268
|
26: a,
|
|
1270
1269
|
28: o
|
|
1271
1270
|
}),
|
|
1272
|
-
t(
|
|
1271
|
+
t(K, [2, 37], {
|
|
1273
1272
|
19: 20,
|
|
1274
1273
|
20: 21,
|
|
1275
1274
|
21: 22,
|
|
@@ -1314,85 +1313,85 @@ var y = p(), b = (function() {
|
|
|
1314
1313
|
65: I,
|
|
1315
1314
|
66: L,
|
|
1316
1315
|
67: R,
|
|
1317
|
-
68:
|
|
1318
|
-
69:
|
|
1319
|
-
70:
|
|
1320
|
-
71:
|
|
1321
|
-
72:
|
|
1322
|
-
73:
|
|
1323
|
-
74:
|
|
1316
|
+
68: z,
|
|
1317
|
+
69: B,
|
|
1318
|
+
70: V,
|
|
1319
|
+
71: H,
|
|
1320
|
+
72: U,
|
|
1321
|
+
73: W,
|
|
1322
|
+
74: G
|
|
1324
1323
|
}),
|
|
1325
|
-
t(
|
|
1326
|
-
t(
|
|
1327
|
-
t(
|
|
1328
|
-
t(
|
|
1324
|
+
t(q, [2, 21]),
|
|
1325
|
+
t(q, [2, 22]),
|
|
1326
|
+
t(Q, [2, 39]),
|
|
1327
|
+
t(Ie, [2, 71], {
|
|
1329
1328
|
75: 81,
|
|
1330
1329
|
35: 132,
|
|
1331
|
-
76:
|
|
1332
|
-
77:
|
|
1333
|
-
79:
|
|
1334
|
-
80:
|
|
1330
|
+
76: J,
|
|
1331
|
+
77: Y,
|
|
1332
|
+
79: X,
|
|
1333
|
+
80: Z
|
|
1335
1334
|
}),
|
|
1336
|
-
t(
|
|
1335
|
+
t(Le, [2, 73]),
|
|
1337
1336
|
{ 78: [1, 133] },
|
|
1338
|
-
t(
|
|
1339
|
-
t(
|
|
1340
|
-
t(
|
|
1341
|
-
t(
|
|
1342
|
-
t(
|
|
1343
|
-
t(
|
|
1344
|
-
t(
|
|
1345
|
-
t(
|
|
1346
|
-
t(
|
|
1347
|
-
t(
|
|
1348
|
-
t(
|
|
1349
|
-
t(
|
|
1350
|
-
t(
|
|
1351
|
-
t(
|
|
1352
|
-
t(
|
|
1353
|
-
t(
|
|
1354
|
-
t(
|
|
1355
|
-
t(
|
|
1356
|
-
t(
|
|
1357
|
-
t(
|
|
1358
|
-
t(
|
|
1359
|
-
t(
|
|
1360
|
-
t(
|
|
1361
|
-
t(
|
|
1362
|
-
t(
|
|
1363
|
-
t(
|
|
1364
|
-
t(
|
|
1365
|
-
t(
|
|
1366
|
-
t(
|
|
1367
|
-
t(
|
|
1368
|
-
t(
|
|
1369
|
-
t(
|
|
1337
|
+
t(Le, [2, 75]),
|
|
1338
|
+
t(Le, [2, 76]),
|
|
1339
|
+
t(Q, [2, 40]),
|
|
1340
|
+
t(Q, [2, 41]),
|
|
1341
|
+
t(Q, [2, 42]),
|
|
1342
|
+
t(Q, [2, 43]),
|
|
1343
|
+
t(Q, [2, 44]),
|
|
1344
|
+
t(Q, [2, 45]),
|
|
1345
|
+
t(Q, [2, 46]),
|
|
1346
|
+
t(Q, [2, 47]),
|
|
1347
|
+
t(Q, [2, 48]),
|
|
1348
|
+
t(Q, [2, 49]),
|
|
1349
|
+
t(Q, [2, 50]),
|
|
1350
|
+
t(Q, [2, 51]),
|
|
1351
|
+
t(Q, [2, 52]),
|
|
1352
|
+
t(Q, [2, 53]),
|
|
1353
|
+
t(Q, [2, 54]),
|
|
1354
|
+
t(Q, [2, 55]),
|
|
1355
|
+
t(Q, [2, 56]),
|
|
1356
|
+
t(Q, [2, 57]),
|
|
1357
|
+
t(Q, [2, 58]),
|
|
1358
|
+
t(Q, [2, 60]),
|
|
1359
|
+
t(Q, [2, 61]),
|
|
1360
|
+
t(Q, [2, 62]),
|
|
1361
|
+
t(Q, [2, 63]),
|
|
1362
|
+
t(Q, [2, 64]),
|
|
1363
|
+
t(Q, [2, 65]),
|
|
1364
|
+
t(Q, [2, 66]),
|
|
1365
|
+
t(Q, [2, 67]),
|
|
1366
|
+
t(Q, [2, 68]),
|
|
1367
|
+
t(Q, [2, 69]),
|
|
1368
|
+
t(Q, [2, 70]),
|
|
1370
1369
|
{
|
|
1371
1370
|
31: 134,
|
|
1372
1371
|
42: [1, 135]
|
|
1373
1372
|
},
|
|
1374
1373
|
{ 12: [1, 136] },
|
|
1375
1374
|
{ 33: [1, 137] },
|
|
1376
|
-
t(
|
|
1377
|
-
t(
|
|
1378
|
-
t(
|
|
1379
|
-
t(
|
|
1380
|
-
t(
|
|
1381
|
-
t(
|
|
1382
|
-
t(
|
|
1375
|
+
t($, [2, 28]),
|
|
1376
|
+
t($, [2, 29]),
|
|
1377
|
+
t($, [2, 30]),
|
|
1378
|
+
t($, [2, 31]),
|
|
1379
|
+
t($, [2, 32]),
|
|
1380
|
+
t($, [2, 33]),
|
|
1381
|
+
t($, [2, 34]),
|
|
1383
1382
|
{ 1: [2, 9] },
|
|
1384
1383
|
{ 1: [2, 10] },
|
|
1385
1384
|
{ 1: [2, 11] },
|
|
1386
1385
|
{ 1: [2, 12] },
|
|
1387
|
-
t(
|
|
1388
|
-
t(
|
|
1389
|
-
t(
|
|
1390
|
-
t(
|
|
1391
|
-
t(
|
|
1392
|
-
t(
|
|
1393
|
-
t(
|
|
1394
|
-
t(
|
|
1395
|
-
t(
|
|
1386
|
+
t(Fe, [2, 18]),
|
|
1387
|
+
t(K, [2, 38]),
|
|
1388
|
+
t(Ie, [2, 72]),
|
|
1389
|
+
t(Le, [2, 74]),
|
|
1390
|
+
t(Q, [2, 24]),
|
|
1391
|
+
t(Q, [2, 35]),
|
|
1392
|
+
t(Re, [2, 25]),
|
|
1393
|
+
t(Re, [2, 26], { 12: [1, 138] }),
|
|
1394
|
+
t(Re, [2, 27])
|
|
1396
1395
|
],
|
|
1397
1396
|
defaultActions: {
|
|
1398
1397
|
2: [2, 1],
|
|
@@ -1408,14 +1407,14 @@ var y = p(), b = (function() {
|
|
|
1408
1407
|
128: [2, 11],
|
|
1409
1408
|
129: [2, 12]
|
|
1410
1409
|
},
|
|
1411
|
-
parseError: /* @__PURE__ */
|
|
1410
|
+
parseError: /* @__PURE__ */ __name(function(e, t) {
|
|
1412
1411
|
if (t.recoverable) this.trace(e);
|
|
1413
1412
|
else {
|
|
1414
1413
|
var n = Error(e);
|
|
1415
1414
|
throw n.hash = t, n;
|
|
1416
1415
|
}
|
|
1417
1416
|
}, "parseError"),
|
|
1418
|
-
parse: /* @__PURE__ */
|
|
1417
|
+
parse: /* @__PURE__ */ __name(function(t) {
|
|
1419
1418
|
var n = this, r = [0], i = [], a = [null], o = [], s = this.table, l = "", u = 0, d = 0, f = 0, p = 2, m = 1, h = o.slice.call(arguments, 1), g = Object.create(this.lexer), _ = { yy: {} };
|
|
1420
1419
|
for (var v in this.yy) Object.prototype.hasOwnProperty.call(this.yy, v) && (_.yy[v] = this.yy[v]);
|
|
1421
1420
|
g.setInput(t, _.yy), _.yy.lexer = g, _.yy.parser = this, g.yylloc === void 0 && (g.yylloc = {});
|
|
@@ -1426,12 +1425,12 @@ var y = p(), b = (function() {
|
|
|
1426
1425
|
function x(e) {
|
|
1427
1426
|
r.length -= 2 * e, a.length -= e, o.length -= e;
|
|
1428
1427
|
}
|
|
1429
|
-
|
|
1428
|
+
__name(x, "popStack");
|
|
1430
1429
|
function S() {
|
|
1431
1430
|
var e = i.pop() || g.lex() || m;
|
|
1432
1431
|
return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
|
|
1433
1432
|
}
|
|
1434
|
-
|
|
1433
|
+
__name(S, "lex");
|
|
1435
1434
|
for (var C, w, T, E, D, O = {}, k, A, j, M;;) {
|
|
1436
1435
|
if (T = r[r.length - 1], this.defaultActions[T] ? E = this.defaultActions[T] : (C ??= S(), E = s[T] && s[T][C]), E === void 0 || !E.length || !E[0]) {
|
|
1437
1436
|
var N = "";
|
|
@@ -1472,14 +1471,14 @@ var y = p(), b = (function() {
|
|
|
1472
1471
|
return !0;
|
|
1473
1472
|
}, "parse")
|
|
1474
1473
|
};
|
|
1475
|
-
|
|
1474
|
+
ze.lexer = /* @__PURE__ */ (function() {
|
|
1476
1475
|
return {
|
|
1477
1476
|
EOF: 1,
|
|
1478
|
-
parseError: /* @__PURE__ */
|
|
1477
|
+
parseError: /* @__PURE__ */ __name(function(e, t) {
|
|
1479
1478
|
if (this.yy.parser) this.yy.parser.parseError(e, t);
|
|
1480
1479
|
else throw Error(e);
|
|
1481
1480
|
}, "parseError"),
|
|
1482
|
-
setInput: /* @__PURE__ */
|
|
1481
|
+
setInput: /* @__PURE__ */ __name(function(e, t) {
|
|
1483
1482
|
return this.yy = t || this.yy || {}, this._input = e, this._more = this._backtrack = this.done = !1, this.yylineno = this.yyleng = 0, this.yytext = this.matched = this.match = "", this.conditionStack = ["INITIAL"], this.yylloc = {
|
|
1484
1483
|
first_line: 1,
|
|
1485
1484
|
first_column: 0,
|
|
@@ -1487,11 +1486,11 @@ var y = p(), b = (function() {
|
|
|
1487
1486
|
last_column: 0
|
|
1488
1487
|
}, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
|
|
1489
1488
|
}, "setInput"),
|
|
1490
|
-
input: /* @__PURE__ */
|
|
1489
|
+
input: /* @__PURE__ */ __name(function() {
|
|
1491
1490
|
var e = this._input[0];
|
|
1492
1491
|
return this.yytext += e, this.yyleng++, this.offset++, this.match += e, this.matched += e, e.match(/(?:\r\n?|\n).*/g) ? (this.yylineno++, this.yylloc.last_line++) : this.yylloc.last_column++, this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1), e;
|
|
1493
1492
|
}, "input"),
|
|
1494
|
-
unput: /* @__PURE__ */
|
|
1493
|
+
unput: /* @__PURE__ */ __name(function(e) {
|
|
1495
1494
|
var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
|
|
1496
1495
|
this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
|
|
1497
1496
|
var r = this.match.split(/(?:\r\n?|\n)/g);
|
|
@@ -1504,10 +1503,10 @@ var y = p(), b = (function() {
|
|
|
1504
1503
|
last_column: n ? (n.length === r.length ? this.yylloc.first_column : 0) + r[r.length - n.length].length - n[0].length : this.yylloc.first_column - t
|
|
1505
1504
|
}, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
|
|
1506
1505
|
}, "unput"),
|
|
1507
|
-
more: /* @__PURE__ */
|
|
1506
|
+
more: /* @__PURE__ */ __name(function() {
|
|
1508
1507
|
return this._more = !0, this;
|
|
1509
1508
|
}, "more"),
|
|
1510
|
-
reject: /* @__PURE__ */
|
|
1509
|
+
reject: /* @__PURE__ */ __name(function() {
|
|
1511
1510
|
if (this.options.backtrack_lexer) this._backtrack = !0;
|
|
1512
1511
|
else return this.parseError("Lexical error on line " + (this.yylineno + 1) + ". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n" + this.showPosition(), {
|
|
1513
1512
|
text: "",
|
|
@@ -1516,22 +1515,22 @@ var y = p(), b = (function() {
|
|
|
1516
1515
|
});
|
|
1517
1516
|
return this;
|
|
1518
1517
|
}, "reject"),
|
|
1519
|
-
less: /* @__PURE__ */
|
|
1518
|
+
less: /* @__PURE__ */ __name(function(e) {
|
|
1520
1519
|
this.unput(this.match.slice(e));
|
|
1521
1520
|
}, "less"),
|
|
1522
|
-
pastInput: /* @__PURE__ */
|
|
1521
|
+
pastInput: /* @__PURE__ */ __name(function() {
|
|
1523
1522
|
var e = this.matched.substr(0, this.matched.length - this.match.length);
|
|
1524
1523
|
return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
|
|
1525
1524
|
}, "pastInput"),
|
|
1526
|
-
upcomingInput: /* @__PURE__ */
|
|
1525
|
+
upcomingInput: /* @__PURE__ */ __name(function() {
|
|
1527
1526
|
var e = this.match;
|
|
1528
1527
|
return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
|
|
1529
1528
|
}, "upcomingInput"),
|
|
1530
|
-
showPosition: /* @__PURE__ */
|
|
1529
|
+
showPosition: /* @__PURE__ */ __name(function() {
|
|
1531
1530
|
var e = this.pastInput(), t = Array(e.length + 1).join("-");
|
|
1532
1531
|
return e + this.upcomingInput() + "\n" + t + "^";
|
|
1533
1532
|
}, "showPosition"),
|
|
1534
|
-
test_match: /* @__PURE__ */
|
|
1533
|
+
test_match: /* @__PURE__ */ __name(function(e, t) {
|
|
1535
1534
|
var n, r, i;
|
|
1536
1535
|
if (this.options.backtrack_lexer && (i = {
|
|
1537
1536
|
yylineno: this.yylineno,
|
|
@@ -1564,7 +1563,7 @@ var y = p(), b = (function() {
|
|
|
1564
1563
|
}
|
|
1565
1564
|
return !1;
|
|
1566
1565
|
}, "test_match"),
|
|
1567
|
-
next: /* @__PURE__ */
|
|
1566
|
+
next: /* @__PURE__ */ __name(function() {
|
|
1568
1567
|
if (this.done) return this.EOF;
|
|
1569
1568
|
this._input || (this.done = !0);
|
|
1570
1569
|
var e, t, n, r;
|
|
@@ -1584,29 +1583,29 @@ var y = p(), b = (function() {
|
|
|
1584
1583
|
line: this.yylineno
|
|
1585
1584
|
});
|
|
1586
1585
|
}, "next"),
|
|
1587
|
-
lex: /* @__PURE__ */
|
|
1586
|
+
lex: /* @__PURE__ */ __name(function() {
|
|
1588
1587
|
return this.next() || this.lex();
|
|
1589
1588
|
}, "lex"),
|
|
1590
|
-
begin: /* @__PURE__ */
|
|
1589
|
+
begin: /* @__PURE__ */ __name(function(e) {
|
|
1591
1590
|
this.conditionStack.push(e);
|
|
1592
1591
|
}, "begin"),
|
|
1593
|
-
popState: /* @__PURE__ */
|
|
1592
|
+
popState: /* @__PURE__ */ __name(function() {
|
|
1594
1593
|
return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
|
|
1595
1594
|
}, "popState"),
|
|
1596
|
-
_currentRules: /* @__PURE__ */
|
|
1595
|
+
_currentRules: /* @__PURE__ */ __name(function() {
|
|
1597
1596
|
return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
|
|
1598
1597
|
}, "_currentRules"),
|
|
1599
|
-
topState: /* @__PURE__ */
|
|
1598
|
+
topState: /* @__PURE__ */ __name(function(e) {
|
|
1600
1599
|
return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
|
|
1601
1600
|
}, "topState"),
|
|
1602
|
-
pushState: /* @__PURE__ */
|
|
1601
|
+
pushState: /* @__PURE__ */ __name(function(e) {
|
|
1603
1602
|
this.begin(e);
|
|
1604
1603
|
}, "pushState"),
|
|
1605
|
-
stateStackSize: /* @__PURE__ */
|
|
1604
|
+
stateStackSize: /* @__PURE__ */ __name(function() {
|
|
1606
1605
|
return this.conditionStack.length;
|
|
1607
1606
|
}, "stateStackSize"),
|
|
1608
1607
|
options: {},
|
|
1609
|
-
performAction: /* @__PURE__ */
|
|
1608
|
+
performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
|
|
1610
1609
|
switch (n) {
|
|
1611
1610
|
case 0: return 6;
|
|
1612
1611
|
case 1: return 7;
|
|
@@ -2269,27 +2268,27 @@ var y = p(), b = (function() {
|
|
|
2269
2268
|
}
|
|
2270
2269
|
};
|
|
2271
2270
|
})();
|
|
2272
|
-
function
|
|
2271
|
+
function Be() {
|
|
2273
2272
|
this.yy = {};
|
|
2274
2273
|
}
|
|
2275
|
-
return
|
|
2274
|
+
return __name(Be, "Parser"), Be.prototype = ze, ze.Parser = Be, new Be();
|
|
2276
2275
|
})();
|
|
2277
|
-
|
|
2278
|
-
var
|
|
2276
|
+
parser.parser = parser;
|
|
2277
|
+
var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], currentBoundaryParse = "global", parentBoundaryParse = "", boundaries = [{
|
|
2279
2278
|
alias: "global",
|
|
2280
2279
|
label: { text: "global" },
|
|
2281
2280
|
type: { text: "global" },
|
|
2282
2281
|
tags: null,
|
|
2283
2282
|
link: null,
|
|
2284
2283
|
parentBoundary: ""
|
|
2285
|
-
}],
|
|
2286
|
-
return
|
|
2287
|
-
}, "getC4Type"),
|
|
2288
|
-
|
|
2289
|
-
}, "setC4Type"),
|
|
2284
|
+
}], rels = [], title = "", wrapEnabled = !1, c4ShapeInRow = 4, c4BoundaryInRow = 2, c4Type, getC4Type = /* @__PURE__ */ __name(function() {
|
|
2285
|
+
return c4Type;
|
|
2286
|
+
}, "getC4Type"), setC4Type = /* @__PURE__ */ __name(function(e) {
|
|
2287
|
+
c4Type = sanitizeText(e, getConfig2());
|
|
2288
|
+
}, "setC4Type"), addRel = /* @__PURE__ */ __name(function(e, t, n, r, i, a, o, s, l) {
|
|
2290
2289
|
if (e == null || t == null || n == null || r == null) return;
|
|
2291
|
-
let u = {}, d =
|
|
2292
|
-
if (d ? u = d :
|
|
2290
|
+
let u = {}, d = rels.find((e) => e.from === t && e.to === n);
|
|
2291
|
+
if (d ? u = d : rels.push(u), u.type = e, u.from = t, u.to = n, u.label = { text: r }, i == null) u.techn = { text: "" };
|
|
2293
2292
|
else if (typeof i == "object") {
|
|
2294
2293
|
let [e, t] = Object.entries(i)[0];
|
|
2295
2294
|
u[e] = { text: t };
|
|
@@ -2311,11 +2310,11 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2311
2310
|
let [e, t] = Object.entries(l)[0];
|
|
2312
2311
|
u[e] = t;
|
|
2313
2312
|
} else u.link = l;
|
|
2314
|
-
u.wrap =
|
|
2315
|
-
}, "addRel"),
|
|
2313
|
+
u.wrap = autoWrap();
|
|
2314
|
+
}, "addRel"), addPersonOrSystem = /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
|
|
2316
2315
|
if (t === null || n === null) return;
|
|
2317
|
-
let s = {}, l =
|
|
2318
|
-
if (l && t === l.alias ? s = l : (s.alias = t,
|
|
2316
|
+
let s = {}, l = c4ShapeArray.find((e) => e.alias === t);
|
|
2317
|
+
if (l && t === l.alias ? s = l : (s.alias = t, c4ShapeArray.push(s)), n == null ? s.label = { text: "" } : s.label = { text: n }, r == null) s.descr = { text: "" };
|
|
2319
2318
|
else if (typeof r == "object") {
|
|
2320
2319
|
let [e, t] = Object.entries(r)[0];
|
|
2321
2320
|
s[e] = { text: t };
|
|
@@ -2332,11 +2331,11 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2332
2331
|
let [e, t] = Object.entries(o)[0];
|
|
2333
2332
|
s[e] = t;
|
|
2334
2333
|
} else s.link = o;
|
|
2335
|
-
s.typeC4Shape = { text: e }, s.parentBoundary =
|
|
2336
|
-
}, "addPersonOrSystem"),
|
|
2334
|
+
s.typeC4Shape = { text: e }, s.parentBoundary = currentBoundaryParse, s.wrap = autoWrap();
|
|
2335
|
+
}, "addPersonOrSystem"), addContainer = /* @__PURE__ */ __name(function(e, t, n, r, i, a, o, s) {
|
|
2337
2336
|
if (t === null || n === null) return;
|
|
2338
|
-
let l = {}, u =
|
|
2339
|
-
if (u && t === u.alias ? l = u : (l.alias = t,
|
|
2337
|
+
let l = {}, u = c4ShapeArray.find((e) => e.alias === t);
|
|
2338
|
+
if (u && t === u.alias ? l = u : (l.alias = t, c4ShapeArray.push(l)), n == null ? l.label = { text: "" } : l.label = { text: n }, r == null) l.techn = { text: "" };
|
|
2340
2339
|
else if (typeof r == "object") {
|
|
2341
2340
|
let [e, t] = Object.entries(r)[0];
|
|
2342
2341
|
l[e] = { text: t };
|
|
@@ -2358,11 +2357,11 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2358
2357
|
let [e, t] = Object.entries(s)[0];
|
|
2359
2358
|
l[e] = t;
|
|
2360
2359
|
} else l.link = s;
|
|
2361
|
-
l.wrap =
|
|
2362
|
-
}, "addContainer"),
|
|
2360
|
+
l.wrap = autoWrap(), l.typeC4Shape = { text: e }, l.parentBoundary = currentBoundaryParse;
|
|
2361
|
+
}, "addContainer"), addComponent = /* @__PURE__ */ __name(function(e, t, n, r, i, a, o, s) {
|
|
2363
2362
|
if (t === null || n === null) return;
|
|
2364
|
-
let l = {}, u =
|
|
2365
|
-
if (u && t === u.alias ? l = u : (l.alias = t,
|
|
2363
|
+
let l = {}, u = c4ShapeArray.find((e) => e.alias === t);
|
|
2364
|
+
if (u && t === u.alias ? l = u : (l.alias = t, c4ShapeArray.push(l)), n == null ? l.label = { text: "" } : l.label = { text: n }, r == null) l.techn = { text: "" };
|
|
2366
2365
|
else if (typeof r == "object") {
|
|
2367
2366
|
let [e, t] = Object.entries(r)[0];
|
|
2368
2367
|
l[e] = { text: t };
|
|
@@ -2384,11 +2383,11 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2384
2383
|
let [e, t] = Object.entries(s)[0];
|
|
2385
2384
|
l[e] = t;
|
|
2386
2385
|
} else l.link = s;
|
|
2387
|
-
l.wrap =
|
|
2388
|
-
}, "addComponent"),
|
|
2386
|
+
l.wrap = autoWrap(), l.typeC4Shape = { text: e }, l.parentBoundary = currentBoundaryParse;
|
|
2387
|
+
}, "addComponent"), addPersonOrSystemBoundary = /* @__PURE__ */ __name(function(e, t, n, r, i) {
|
|
2389
2388
|
if (e === null || t === null) return;
|
|
2390
|
-
let a = {}, o =
|
|
2391
|
-
if (o && e === o.alias ? a = o : (a.alias = e,
|
|
2389
|
+
let a = {}, o = boundaries.find((t) => t.alias === e);
|
|
2390
|
+
if (o && e === o.alias ? a = o : (a.alias = e, boundaries.push(a)), t == null ? a.label = { text: "" } : a.label = { text: t }, n == null) a.type = { text: "system" };
|
|
2392
2391
|
else if (typeof n == "object") {
|
|
2393
2392
|
let [e, t] = Object.entries(n)[0];
|
|
2394
2393
|
a[e] = { text: t };
|
|
@@ -2401,11 +2400,11 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2401
2400
|
let [e, t] = Object.entries(i)[0];
|
|
2402
2401
|
a[e] = t;
|
|
2403
2402
|
} else a.link = i;
|
|
2404
|
-
a.parentBoundary =
|
|
2405
|
-
}, "addPersonOrSystemBoundary"),
|
|
2403
|
+
a.parentBoundary = currentBoundaryParse, a.wrap = autoWrap(), parentBoundaryParse = currentBoundaryParse, currentBoundaryParse = e, boundaryParseStack.push(parentBoundaryParse);
|
|
2404
|
+
}, "addPersonOrSystemBoundary"), addContainerBoundary = /* @__PURE__ */ __name(function(e, t, n, r, i) {
|
|
2406
2405
|
if (e === null || t === null) return;
|
|
2407
|
-
let a = {}, o =
|
|
2408
|
-
if (o && e === o.alias ? a = o : (a.alias = e,
|
|
2406
|
+
let a = {}, o = boundaries.find((t) => t.alias === e);
|
|
2407
|
+
if (o && e === o.alias ? a = o : (a.alias = e, boundaries.push(a)), t == null ? a.label = { text: "" } : a.label = { text: t }, n == null) a.type = { text: "container" };
|
|
2409
2408
|
else if (typeof n == "object") {
|
|
2410
2409
|
let [e, t] = Object.entries(n)[0];
|
|
2411
2410
|
a[e] = { text: t };
|
|
@@ -2418,11 +2417,11 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2418
2417
|
let [e, t] = Object.entries(i)[0];
|
|
2419
2418
|
a[e] = t;
|
|
2420
2419
|
} else a.link = i;
|
|
2421
|
-
a.parentBoundary =
|
|
2422
|
-
}, "addContainerBoundary"),
|
|
2420
|
+
a.parentBoundary = currentBoundaryParse, a.wrap = autoWrap(), parentBoundaryParse = currentBoundaryParse, currentBoundaryParse = e, boundaryParseStack.push(parentBoundaryParse);
|
|
2421
|
+
}, "addContainerBoundary"), addDeploymentNode = /* @__PURE__ */ __name(function(e, t, n, r, i, a, o, s) {
|
|
2423
2422
|
if (t === null || n === null) return;
|
|
2424
|
-
let l = {}, u =
|
|
2425
|
-
if (u && t === u.alias ? l = u : (l.alias = t,
|
|
2423
|
+
let l = {}, u = boundaries.find((e) => e.alias === t);
|
|
2424
|
+
if (u && t === u.alias ? l = u : (l.alias = t, boundaries.push(l)), n == null ? l.label = { text: "" } : l.label = { text: n }, r == null) l.type = { text: "node" };
|
|
2426
2425
|
else if (typeof r == "object") {
|
|
2427
2426
|
let [e, t] = Object.entries(r)[0];
|
|
2428
2427
|
l[e] = { text: t };
|
|
@@ -2440,12 +2439,12 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2440
2439
|
let [e, t] = Object.entries(s)[0];
|
|
2441
2440
|
l[e] = t;
|
|
2442
2441
|
} else l.link = s;
|
|
2443
|
-
l.nodeType = e, l.parentBoundary =
|
|
2444
|
-
}, "addDeploymentNode"),
|
|
2445
|
-
|
|
2446
|
-
}, "popBoundaryParseStack"),
|
|
2447
|
-
let f =
|
|
2448
|
-
if (!(f === void 0 && (f =
|
|
2442
|
+
l.nodeType = e, l.parentBoundary = currentBoundaryParse, l.wrap = autoWrap(), parentBoundaryParse = currentBoundaryParse, currentBoundaryParse = t, boundaryParseStack.push(parentBoundaryParse);
|
|
2443
|
+
}, "addDeploymentNode"), popBoundaryParseStack = /* @__PURE__ */ __name(function() {
|
|
2444
|
+
currentBoundaryParse = parentBoundaryParse, boundaryParseStack.pop(), parentBoundaryParse = boundaryParseStack.pop(), boundaryParseStack.push(parentBoundaryParse);
|
|
2445
|
+
}, "popBoundaryParseStack"), updateElStyle = /* @__PURE__ */ __name(function(e, t, n, r, i, a, o, s, l, u, d) {
|
|
2446
|
+
let f = c4ShapeArray.find((e) => e.alias === t);
|
|
2447
|
+
if (!(f === void 0 && (f = boundaries.find((e) => e.alias === t), f === void 0))) {
|
|
2449
2448
|
if (n != null) if (typeof n == "object") {
|
|
2450
2449
|
let [e, t] = Object.entries(n)[0];
|
|
2451
2450
|
f[e] = t;
|
|
@@ -2483,8 +2482,8 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2483
2482
|
f[e] = t;
|
|
2484
2483
|
} else f.legendSprite = d;
|
|
2485
2484
|
}
|
|
2486
|
-
}, "updateElStyle"),
|
|
2487
|
-
let s =
|
|
2485
|
+
}, "updateElStyle"), updateRelStyle = /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
|
|
2486
|
+
let s = rels.find((e) => e.from === t && e.to === n);
|
|
2488
2487
|
if (s !== void 0) {
|
|
2489
2488
|
if (r != null) if (typeof r == "object") {
|
|
2490
2489
|
let [e, t] = Object.entries(r)[0];
|
|
@@ -2503,8 +2502,8 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2503
2502
|
s[e] = parseInt(t);
|
|
2504
2503
|
} else s.offsetY = parseInt(o);
|
|
2505
2504
|
}
|
|
2506
|
-
}, "updateRelStyle"),
|
|
2507
|
-
let r =
|
|
2505
|
+
}, "updateRelStyle"), updateLayoutConfig = /* @__PURE__ */ __name(function(e, t, n) {
|
|
2506
|
+
let r = c4ShapeInRow, i = c4BoundaryInRow;
|
|
2508
2507
|
if (typeof t == "object") {
|
|
2509
2508
|
let e = Object.values(t)[0];
|
|
2510
2509
|
r = parseInt(e);
|
|
@@ -2513,71 +2512,71 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2513
2512
|
let e = Object.values(n)[0];
|
|
2514
2513
|
i = parseInt(e);
|
|
2515
2514
|
} else i = parseInt(n);
|
|
2516
|
-
r >= 1 && (
|
|
2517
|
-
}, "updateLayoutConfig"),
|
|
2518
|
-
return
|
|
2519
|
-
}, "getC4ShapeInRow"),
|
|
2520
|
-
return
|
|
2521
|
-
}, "getC4BoundaryInRow"),
|
|
2522
|
-
return
|
|
2523
|
-
}, "getCurrentBoundaryParse"),
|
|
2524
|
-
return
|
|
2525
|
-
}, "getParentBoundaryParse"),
|
|
2526
|
-
return e == null ?
|
|
2527
|
-
}, "getC4ShapeArray"),
|
|
2528
|
-
return
|
|
2529
|
-
}, "getC4Shape"),
|
|
2530
|
-
return Object.keys(
|
|
2531
|
-
}, "getC4ShapeKeys"),
|
|
2532
|
-
return e == null ?
|
|
2533
|
-
}, "getBoundaries"),
|
|
2534
|
-
return
|
|
2535
|
-
}, "getRels"),
|
|
2536
|
-
return
|
|
2537
|
-
}, "getTitle"),
|
|
2538
|
-
|
|
2539
|
-
}, "setWrap"),
|
|
2540
|
-
return
|
|
2541
|
-
}, "autoWrap"),
|
|
2542
|
-
addPersonOrSystem
|
|
2543
|
-
addPersonOrSystemBoundary
|
|
2544
|
-
addContainer
|
|
2545
|
-
addContainerBoundary
|
|
2546
|
-
addComponent
|
|
2547
|
-
addDeploymentNode
|
|
2548
|
-
popBoundaryParseStack
|
|
2549
|
-
addRel
|
|
2550
|
-
updateElStyle
|
|
2551
|
-
updateRelStyle
|
|
2552
|
-
updateLayoutConfig
|
|
2553
|
-
autoWrap
|
|
2554
|
-
setWrap
|
|
2555
|
-
getC4ShapeArray
|
|
2556
|
-
getC4Shape
|
|
2557
|
-
getC4ShapeKeys
|
|
2558
|
-
getBoundaries
|
|
2559
|
-
getBoundarys
|
|
2560
|
-
getCurrentBoundaryParse
|
|
2561
|
-
getParentBoundaryParse
|
|
2562
|
-
getRels
|
|
2563
|
-
getTitle
|
|
2564
|
-
getC4Type
|
|
2565
|
-
getC4ShapeInRow
|
|
2566
|
-
getC4BoundaryInRow
|
|
2567
|
-
setAccTitle
|
|
2568
|
-
getAccTitle
|
|
2569
|
-
getAccDescription
|
|
2570
|
-
setAccDescription
|
|
2571
|
-
getConfig: /* @__PURE__ */
|
|
2572
|
-
clear: /* @__PURE__ */
|
|
2573
|
-
|
|
2515
|
+
r >= 1 && (c4ShapeInRow = r), i >= 1 && (c4BoundaryInRow = i);
|
|
2516
|
+
}, "updateLayoutConfig"), getC4ShapeInRow = /* @__PURE__ */ __name(function() {
|
|
2517
|
+
return c4ShapeInRow;
|
|
2518
|
+
}, "getC4ShapeInRow"), getC4BoundaryInRow = /* @__PURE__ */ __name(function() {
|
|
2519
|
+
return c4BoundaryInRow;
|
|
2520
|
+
}, "getC4BoundaryInRow"), getCurrentBoundaryParse = /* @__PURE__ */ __name(function() {
|
|
2521
|
+
return currentBoundaryParse;
|
|
2522
|
+
}, "getCurrentBoundaryParse"), getParentBoundaryParse = /* @__PURE__ */ __name(function() {
|
|
2523
|
+
return parentBoundaryParse;
|
|
2524
|
+
}, "getParentBoundaryParse"), getC4ShapeArray = /* @__PURE__ */ __name(function(e) {
|
|
2525
|
+
return e == null ? c4ShapeArray : c4ShapeArray.filter((t) => t.parentBoundary === e);
|
|
2526
|
+
}, "getC4ShapeArray"), getC4Shape = /* @__PURE__ */ __name(function(e) {
|
|
2527
|
+
return c4ShapeArray.find((t) => t.alias === e);
|
|
2528
|
+
}, "getC4Shape"), getC4ShapeKeys = /* @__PURE__ */ __name(function(e) {
|
|
2529
|
+
return Object.keys(getC4ShapeArray(e));
|
|
2530
|
+
}, "getC4ShapeKeys"), getBoundaries = /* @__PURE__ */ __name(function(e) {
|
|
2531
|
+
return e == null ? boundaries : boundaries.filter((t) => t.parentBoundary === e);
|
|
2532
|
+
}, "getBoundaries"), getBoundarys = getBoundaries, getRels = /* @__PURE__ */ __name(function() {
|
|
2533
|
+
return rels;
|
|
2534
|
+
}, "getRels"), getTitle = /* @__PURE__ */ __name(function() {
|
|
2535
|
+
return title;
|
|
2536
|
+
}, "getTitle"), setWrap = /* @__PURE__ */ __name(function(e) {
|
|
2537
|
+
wrapEnabled = e;
|
|
2538
|
+
}, "setWrap"), autoWrap = /* @__PURE__ */ __name(function() {
|
|
2539
|
+
return wrapEnabled;
|
|
2540
|
+
}, "autoWrap"), c4Db_default = {
|
|
2541
|
+
addPersonOrSystem,
|
|
2542
|
+
addPersonOrSystemBoundary,
|
|
2543
|
+
addContainer,
|
|
2544
|
+
addContainerBoundary,
|
|
2545
|
+
addComponent,
|
|
2546
|
+
addDeploymentNode,
|
|
2547
|
+
popBoundaryParseStack,
|
|
2548
|
+
addRel,
|
|
2549
|
+
updateElStyle,
|
|
2550
|
+
updateRelStyle,
|
|
2551
|
+
updateLayoutConfig,
|
|
2552
|
+
autoWrap,
|
|
2553
|
+
setWrap,
|
|
2554
|
+
getC4ShapeArray,
|
|
2555
|
+
getC4Shape,
|
|
2556
|
+
getC4ShapeKeys,
|
|
2557
|
+
getBoundaries,
|
|
2558
|
+
getBoundarys,
|
|
2559
|
+
getCurrentBoundaryParse,
|
|
2560
|
+
getParentBoundaryParse,
|
|
2561
|
+
getRels,
|
|
2562
|
+
getTitle,
|
|
2563
|
+
getC4Type,
|
|
2564
|
+
getC4ShapeInRow,
|
|
2565
|
+
getC4BoundaryInRow,
|
|
2566
|
+
setAccTitle,
|
|
2567
|
+
getAccTitle,
|
|
2568
|
+
getAccDescription,
|
|
2569
|
+
setAccDescription,
|
|
2570
|
+
getConfig: /* @__PURE__ */ __name(() => getConfig2().c4, "getConfig"),
|
|
2571
|
+
clear: /* @__PURE__ */ __name(function() {
|
|
2572
|
+
c4ShapeArray = [], boundaries = [{
|
|
2574
2573
|
alias: "global",
|
|
2575
2574
|
label: { text: "global" },
|
|
2576
2575
|
type: { text: "global" },
|
|
2577
2576
|
tags: null,
|
|
2578
2577
|
link: null,
|
|
2579
2578
|
parentBoundary: ""
|
|
2580
|
-
}],
|
|
2579
|
+
}], parentBoundaryParse = "", currentBoundaryParse = "global", boundaryParseStack = [""], rels = [], boundaryParseStack = [""], title = "", wrapEnabled = !1, c4ShapeInRow = 4, c4BoundaryInRow = 2;
|
|
2581
2580
|
}, "clear"),
|
|
2582
2581
|
LINETYPE: {
|
|
2583
2582
|
SOLID: 0,
|
|
@@ -2613,18 +2612,18 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2613
2612
|
RIGHTOF: 1,
|
|
2614
2613
|
OVER: 2
|
|
2615
2614
|
},
|
|
2616
|
-
setTitle: /* @__PURE__ */
|
|
2617
|
-
|
|
2615
|
+
setTitle: /* @__PURE__ */ __name(function(e) {
|
|
2616
|
+
title = sanitizeText(e, getConfig2());
|
|
2618
2617
|
}, "setTitle"),
|
|
2619
|
-
setC4Type
|
|
2620
|
-
},
|
|
2621
|
-
return
|
|
2622
|
-
}, "drawRect"),
|
|
2618
|
+
setC4Type
|
|
2619
|
+
}, drawRect2 = /* @__PURE__ */ __name(function(e, t) {
|
|
2620
|
+
return drawRect(e, t);
|
|
2621
|
+
}, "drawRect"), drawImage = /* @__PURE__ */ __name(function(e, t, n, r, i, a) {
|
|
2623
2622
|
let o = e.append("image");
|
|
2624
2623
|
o.attr("width", t), o.attr("height", n), o.attr("x", r), o.attr("y", i);
|
|
2625
|
-
let s = a.startsWith("data:image/png;base64") ? a : (0,
|
|
2624
|
+
let s = a.startsWith("data:image/png;base64") ? a : (0, import_dist.sanitizeUrl)(a);
|
|
2626
2625
|
o.attr("xlink:href", s);
|
|
2627
|
-
}, "drawImage"),
|
|
2626
|
+
}, "drawImage"), drawRels = /* @__PURE__ */ __name((e, t, n, r) => {
|
|
2628
2627
|
let i = e.append("g"), a = 0;
|
|
2629
2628
|
for (let e of t) {
|
|
2630
2629
|
let t = e.textColor ? e.textColor : "#444444", o = e.lineColor ? e.lineColor : "#444444", s = e.offsetX ? parseInt(e.offsetX) : 0, l = e.offsetY ? parseInt(e.offsetY) : 0;
|
|
@@ -2636,17 +2635,17 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2636
2635
|
t.attr("fill", "none").attr("stroke-width", "1").attr("stroke", o).attr("d", "Mstartx,starty Qcontrolx,controly stopx,stopy ".replaceAll("startx", e.startPoint.x).replaceAll("starty", e.startPoint.y).replaceAll("controlx", e.startPoint.x + (e.endPoint.x - e.startPoint.x) / 2 - (e.endPoint.x - e.startPoint.x) / 4).replaceAll("controly", e.startPoint.y + (e.endPoint.y - e.startPoint.y) / 2).replaceAll("stopx", e.endPoint.x).replaceAll("stopy", e.endPoint.y)), e.type !== "rel_b" && t.attr("marker-end", "url(#" + r + "-arrowhead)"), (e.type === "birel" || e.type === "rel_b") && t.attr("marker-start", "url(#" + r + "-arrowend)");
|
|
2637
2636
|
}
|
|
2638
2637
|
let u = n.messageFont();
|
|
2639
|
-
|
|
2638
|
+
_drawTextCandidateFunc(n)(e.label.text, i, Math.min(e.startPoint.x, e.endPoint.x) + Math.abs(e.endPoint.x - e.startPoint.x) / 2 + s, Math.min(e.startPoint.y, e.endPoint.y) + Math.abs(e.endPoint.y - e.startPoint.y) / 2 + l, e.label.width, e.label.height, { fill: t }, u), e.techn && e.techn.text !== "" && (u = n.messageFont(), _drawTextCandidateFunc(n)("[" + e.techn.text + "]", i, Math.min(e.startPoint.x, e.endPoint.x) + Math.abs(e.endPoint.x - e.startPoint.x) / 2 + s, Math.min(e.startPoint.y, e.endPoint.y) + Math.abs(e.endPoint.y - e.startPoint.y) / 2 + n.messageFontSize + 5 + l, Math.max(e.label.width, e.techn.width), e.techn.height, {
|
|
2640
2639
|
fill: t,
|
|
2641
2640
|
"font-style": "italic"
|
|
2642
2641
|
}, u));
|
|
2643
2642
|
}
|
|
2644
|
-
}, "drawRels"),
|
|
2643
|
+
}, "drawRels"), drawBoundary = /* @__PURE__ */ __name(function(e, t, n) {
|
|
2645
2644
|
let r = e.append("g"), i = t.bgColor ? t.bgColor : "none", a = t.borderColor ? t.borderColor : "#444444", o = t.fontColor ? t.fontColor : "black", s = {
|
|
2646
2645
|
"stroke-width": 1,
|
|
2647
2646
|
"stroke-dasharray": "7.0,7.0"
|
|
2648
2647
|
};
|
|
2649
|
-
t.nodeType && (s = { "stroke-width": 1 }),
|
|
2648
|
+
t.nodeType && (s = { "stroke-width": 1 }), drawRect2(r, {
|
|
2650
2649
|
x: t.x,
|
|
2651
2650
|
y: t.y,
|
|
2652
2651
|
fill: i,
|
|
@@ -2658,8 +2657,8 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2658
2657
|
attrs: s
|
|
2659
2658
|
});
|
|
2660
2659
|
let l = n.boundaryFont();
|
|
2661
|
-
l.fontWeight = "bold", l.fontSize += 2, l.fontColor = o,
|
|
2662
|
-
}, "drawBoundary"),
|
|
2660
|
+
l.fontWeight = "bold", l.fontSize += 2, l.fontColor = o, _drawTextCandidateFunc(n)(t.label.text, r, t.x, t.y + t.label.Y, t.width, t.height, { fill: "#444444" }, l), t.type && t.type.text !== "" && (l = n.boundaryFont(), l.fontColor = o, _drawTextCandidateFunc(n)(t.type.text, r, t.x, t.y + t.type.Y, t.width, t.height, { fill: "#444444" }, l)), t.descr && t.descr.text !== "" && (l = n.boundaryFont(), l.fontSize -= 2, l.fontColor = o, _drawTextCandidateFunc(n)(t.descr.text, r, t.x, t.y + t.descr.Y, t.width, t.height, { fill: "#444444" }, l));
|
|
2661
|
+
}, "drawBoundary"), drawC4Shape = /* @__PURE__ */ __name(function(e, t, n) {
|
|
2663
2662
|
let r = t.bgColor ? t.bgColor : n[t.typeC4Shape.text + "_bg_color"], i = t.borderColor ? t.borderColor : n[t.typeC4Shape.text + "_border_color"], a = t.fontColor ? t.fontColor : "#FFFFFF", o = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAIAAADYYG7QAAACD0lEQVR4Xu2YoU4EMRCGT+4j8Ai8AhaH4QHgAUjQuFMECUgMIUgwJAgMhgQsAYUiJCiQIBBY+EITsjfTdme6V24v4c8vyGbb+ZjOtN0bNcvjQXmkH83WvYBWto6PLm6v7p7uH1/w2fXD+PBycX1Pv2l3IdDm/vn7x+dXQiAubRzoURa7gRZWd0iGRIiJbOnhnfYBQZNJjNbuyY2eJG8fkDE3bbG4ep6MHUAsgYxmE3nVs6VsBWJSGccsOlFPmLIViMzLOB7pCVO2AtHJMohH7Fh6zqitQK7m0rJvAVYgGcEpe//PLdDz65sM4pF9N7ICcXDKIB5Nv6j7tD0NoSdM2QrU9Gg0ewE1LqBhHR3BBdvj2vapnidjHxD/q6vd7Pvhr31AwcY8eXMTXAKECZZJFXuEq27aLgQK5uLMohCenGGuGewOxSjBvYBqeG6B+Nqiblggdjnc+ZXDy+FNFpFzw76O3UBAROuXh6FoiAcf5g9eTvUgzy0nWg6I8cXHRUpg5bOVBCo+KDpFajOf23GgPme7RSQ+lacIENUgJ6gg1k6HjgOlqnLqip4tEuhv0hNEMXUD0clyXE3p6pZA0S2nnvTlXwLJEZWlb7cTQH1+USgTN4VhAenm/wea1OCAOmqo6fE1WCb9WSKBah+rbUWPWAmE2Rvk0ApiB45eOyNAzU8xcTvj8KvkKEoOaIYeHNA3ZuygAvFMUO0AAAAASUVORK5CYII=";
|
|
2664
2663
|
switch (t.typeC4Shape.text) {
|
|
2665
2664
|
case "person":
|
|
@@ -2671,7 +2670,7 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2671
2670
|
}
|
|
2672
2671
|
let s = e.append("g");
|
|
2673
2672
|
s.attr("class", "person-man");
|
|
2674
|
-
let l =
|
|
2673
|
+
let l = getNoteRect();
|
|
2675
2674
|
switch (t.typeC4Shape.text) {
|
|
2676
2675
|
case "person":
|
|
2677
2676
|
case "external_person":
|
|
@@ -2681,7 +2680,7 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2681
2680
|
case "external_container":
|
|
2682
2681
|
case "component":
|
|
2683
2682
|
case "external_component":
|
|
2684
|
-
l.x = t.x, l.y = t.y, l.fill = r, l.width = t.width, l.height = t.height, l.stroke = i, l.rx = 2.5, l.ry = 2.5, l.attrs = { "stroke-width": .5 },
|
|
2683
|
+
l.x = t.x, l.y = t.y, l.fill = r, l.width = t.width, l.height = t.height, l.stroke = i, l.rx = 2.5, l.ry = 2.5, l.attrs = { "stroke-width": .5 }, drawRect2(s, l);
|
|
2685
2684
|
break;
|
|
2686
2685
|
case "system_db":
|
|
2687
2686
|
case "external_system_db":
|
|
@@ -2700,85 +2699,83 @@ var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
|
2700
2699
|
s.append("path").attr("fill", r).attr("stroke-width", "0.5").attr("stroke", i).attr("d", "Mstartx,startylwidth,0c5,0 5,half 5,halfc0,0 0,half -5,halfl-width,0c-5,0 -5,-half -5,-halfc0,0 0,-half 5,-half".replaceAll("startx", t.x).replaceAll("starty", t.y).replaceAll("width", t.width).replaceAll("half", t.height / 2)), s.append("path").attr("fill", "none").attr("stroke-width", "0.5").attr("stroke", i).attr("d", "Mstartx,startyc-5,0 -5,half -5,halfc0,half 5,half 5,half".replaceAll("startx", t.x + t.width).replaceAll("starty", t.y).replaceAll("half", t.height / 2));
|
|
2701
2700
|
break;
|
|
2702
2701
|
}
|
|
2703
|
-
let u =
|
|
2702
|
+
let u = getC4ShapeFont(n, t.typeC4Shape.text);
|
|
2704
2703
|
switch (s.append("text").attr("fill", a).attr("font-family", u.fontFamily).attr("font-size", u.fontSize - 2).attr("font-style", "italic").attr("lengthAdjust", "spacing").attr("textLength", t.typeC4Shape.width).attr("x", t.x + t.width / 2 - t.typeC4Shape.width / 2).attr("y", t.y + t.typeC4Shape.Y).text("<<" + t.typeC4Shape.text + ">>"), t.typeC4Shape.text) {
|
|
2705
2704
|
case "person":
|
|
2706
2705
|
case "external_person":
|
|
2707
|
-
|
|
2706
|
+
drawImage(s, 48, 48, t.x + t.width / 2 - 24, t.y + t.image.Y, o);
|
|
2708
2707
|
break;
|
|
2709
2708
|
}
|
|
2710
2709
|
let d = n[t.typeC4Shape.text + "Font"]();
|
|
2711
|
-
return d.fontWeight = "bold", d.fontSize += 2, d.fontColor = a,
|
|
2710
|
+
return d.fontWeight = "bold", d.fontSize += 2, d.fontColor = a, _drawTextCandidateFunc(n)(t.label.text, s, t.x, t.y + t.label.Y, t.width, t.height, { fill: a }, d), d = n[t.typeC4Shape.text + "Font"](), d.fontColor = a, t.techn && t.techn?.text !== "" ? _drawTextCandidateFunc(n)(t.techn.text, s, t.x, t.y + t.techn.Y, t.width, t.height, {
|
|
2712
2711
|
fill: a,
|
|
2713
2712
|
"font-style": "italic"
|
|
2714
|
-
}, d) : t.type && t.type.text !== "" &&
|
|
2713
|
+
}, d) : t.type && t.type.text !== "" && _drawTextCandidateFunc(n)(t.type.text, s, t.x, t.y + t.type.Y, t.width, t.height, {
|
|
2715
2714
|
fill: a,
|
|
2716
2715
|
"font-style": "italic"
|
|
2717
|
-
}, d), t.descr && t.descr.text !== "" && (d = n.personFont(), d.fontColor = a,
|
|
2718
|
-
}, "drawC4Shape"),
|
|
2716
|
+
}, d), t.descr && t.descr.text !== "" && (d = n.personFont(), d.fontColor = a, _drawTextCandidateFunc(n)(t.descr.text, s, t.x, t.y + t.descr.Y, t.width, t.height, { fill: a }, d)), t.height;
|
|
2717
|
+
}, "drawC4Shape"), insertDatabaseIcon = /* @__PURE__ */ __name(function(e, t) {
|
|
2719
2718
|
e.append("defs").append("symbol").attr("id", t + "-database").attr("fill-rule", "evenodd").attr("clip-rule", "evenodd").append("path").attr("transform", "scale(.5)").attr("d", "M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z");
|
|
2720
|
-
}, "insertDatabaseIcon"),
|
|
2719
|
+
}, "insertDatabaseIcon"), insertComputerIcon = /* @__PURE__ */ __name(function(e, t) {
|
|
2721
2720
|
e.append("defs").append("symbol").attr("id", t + "-computer").attr("width", "24").attr("height", "24").append("path").attr("transform", "scale(.5)").attr("d", "M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z");
|
|
2722
|
-
}, "insertComputerIcon"),
|
|
2721
|
+
}, "insertComputerIcon"), insertClockIcon = /* @__PURE__ */ __name(function(e, t) {
|
|
2723
2722
|
e.append("defs").append("symbol").attr("id", t + "-clock").attr("width", "24").attr("height", "24").append("path").attr("transform", "scale(.5)").attr("d", "M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z");
|
|
2724
|
-
}, "insertClockIcon"),
|
|
2723
|
+
}, "insertClockIcon"), insertArrowHead = /* @__PURE__ */ __name(function(e, t) {
|
|
2725
2724
|
e.append("defs").append("marker").attr("id", t + "-arrowhead").attr("refX", 9).attr("refY", 5).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 12).attr("markerHeight", 12).attr("orient", "auto").append("path").attr("d", "M 0 0 L 10 5 L 0 10 z");
|
|
2726
|
-
}, "insertArrowHead"),
|
|
2725
|
+
}, "insertArrowHead"), insertArrowEnd = /* @__PURE__ */ __name(function(e, t) {
|
|
2727
2726
|
e.append("defs").append("marker").attr("id", t + "-arrowend").attr("refX", 1).attr("refY", 5).attr("markerUnits", "userSpaceOnUse").attr("markerWidth", 12).attr("markerHeight", 12).attr("orient", "auto").append("path").attr("d", "M 10 0 L 0 5 L 10 10 z");
|
|
2728
|
-
}, "insertArrowEnd"),
|
|
2727
|
+
}, "insertArrowEnd"), insertArrowFilledHead = /* @__PURE__ */ __name(function(e, t) {
|
|
2729
2728
|
e.append("defs").append("marker").attr("id", t + "-filled-head").attr("refX", 18).attr("refY", 7).attr("markerWidth", 20).attr("markerHeight", 28).attr("orient", "auto").append("path").attr("d", "M 18,7 L9,13 L14,7 L9,1 Z");
|
|
2730
|
-
}, "insertArrowFilledHead"),
|
|
2729
|
+
}, "insertArrowFilledHead"), insertArrowCrossHead = /* @__PURE__ */ __name(function(e, t) {
|
|
2731
2730
|
let n = e.append("defs").append("marker").attr("id", t + "-crosshead").attr("markerWidth", 15).attr("markerHeight", 8).attr("orient", "auto").attr("refX", 16).attr("refY", 4);
|
|
2732
2731
|
n.append("path").attr("fill", "black").attr("stroke", "#000000").style("stroke-dasharray", "0, 0").attr("stroke-width", "1px").attr("d", "M 9,2 V 6 L16,4 Z"), n.append("path").attr("fill", "none").attr("stroke", "#000000").style("stroke-dasharray", "0, 0").attr("stroke-width", "1px").attr("d", "M 0,1 L 6,7 M 6,1 L 0,7");
|
|
2733
|
-
}, "insertArrowCrossHead"),
|
|
2732
|
+
}, "insertArrowCrossHead"), getC4ShapeFont = /* @__PURE__ */ __name((e, t) => ({
|
|
2734
2733
|
fontFamily: e[t + "FontFamily"],
|
|
2735
2734
|
fontSize: e[t + "FontSize"],
|
|
2736
2735
|
fontWeight: e[t + "FontWeight"]
|
|
2737
|
-
}), "getC4ShapeFont"),
|
|
2736
|
+
}), "getC4ShapeFont"), _drawTextCandidateFunc = /* @__PURE__ */ (function() {
|
|
2738
2737
|
function t(e, t, n, r, i, o, s) {
|
|
2739
2738
|
a(t.append("text").attr("x", n + i / 2).attr("y", r + o / 2 + 5).style("text-anchor", "middle").text(e), s);
|
|
2740
2739
|
}
|
|
2741
|
-
|
|
2740
|
+
__name(t, "byText");
|
|
2742
2741
|
function n(e, t, n, i, o, s, l, u) {
|
|
2743
|
-
let { fontSize: d, fontFamily: f, fontWeight: p } = u, m = e.split(
|
|
2742
|
+
let { fontSize: d, fontFamily: f, fontWeight: p } = u, m = e.split(common_default.lineBreakRegex);
|
|
2744
2743
|
for (let e = 0; e < m.length; e++) {
|
|
2745
2744
|
let r = e * d - d * (m.length - 1) / 2, s = t.append("text").attr("x", n + o / 2).attr("y", i).style("text-anchor", "middle").attr("dominant-baseline", "middle").style("font-size", d).style("font-weight", p).style("font-family", f);
|
|
2746
2745
|
s.append("tspan").attr("dy", r).text(m[e]).attr("alignment-baseline", "mathematical"), a(s, l);
|
|
2747
2746
|
}
|
|
2748
2747
|
}
|
|
2749
|
-
|
|
2748
|
+
__name(n, "byTspan");
|
|
2750
2749
|
function i(e, t, r, i, o, s, l, u) {
|
|
2751
2750
|
let d = t.append("switch"), f = d.append("foreignObject").attr("x", r).attr("y", i).attr("width", o).attr("height", s).append("xhtml:div").style("display", "table").style("height", "100%").style("width", "100%");
|
|
2752
2751
|
f.append("div").style("display", "table-cell").style("text-align", "center").style("vertical-align", "middle").text(e), n(e, d, r, i, o, s, l, u), a(f, l);
|
|
2753
2752
|
}
|
|
2754
|
-
|
|
2753
|
+
__name(i, "byFo");
|
|
2755
2754
|
function a(e, t) {
|
|
2756
2755
|
for (let n in t) t.hasOwnProperty(n) && e.attr(n, t[n]);
|
|
2757
2756
|
}
|
|
2758
|
-
return
|
|
2757
|
+
return __name(a, "_setTextAttrs"), function(e) {
|
|
2759
2758
|
return e.textPlacement === "fo" ? i : e.textPlacement === "old" ? t : n;
|
|
2760
2759
|
};
|
|
2761
|
-
})(),
|
|
2762
|
-
drawRect:
|
|
2763
|
-
drawBoundary
|
|
2764
|
-
drawC4Shape
|
|
2765
|
-
drawRels
|
|
2766
|
-
drawImage
|
|
2767
|
-
insertArrowHead
|
|
2768
|
-
insertArrowEnd
|
|
2769
|
-
insertArrowFilledHead
|
|
2770
|
-
insertArrowCrossHead
|
|
2771
|
-
insertDatabaseIcon
|
|
2772
|
-
insertComputerIcon
|
|
2773
|
-
insertClockIcon
|
|
2774
|
-
},
|
|
2775
|
-
|
|
2776
|
-
var
|
|
2777
|
-
static
|
|
2778
|
-
e(this, "Bounds");
|
|
2779
|
-
}
|
|
2760
|
+
})(), svgDraw_default = {
|
|
2761
|
+
drawRect: drawRect2,
|
|
2762
|
+
drawBoundary,
|
|
2763
|
+
drawC4Shape,
|
|
2764
|
+
drawRels,
|
|
2765
|
+
drawImage,
|
|
2766
|
+
insertArrowHead,
|
|
2767
|
+
insertArrowEnd,
|
|
2768
|
+
insertArrowFilledHead,
|
|
2769
|
+
insertArrowCrossHead,
|
|
2770
|
+
insertDatabaseIcon,
|
|
2771
|
+
insertComputerIcon,
|
|
2772
|
+
insertClockIcon
|
|
2773
|
+
}, globalBoundaryMaxX = 0, globalBoundaryMaxY = 0, c4ShapeInRow2 = 4, c4BoundaryInRow2 = 2;
|
|
2774
|
+
parser.yy = c4Db_default;
|
|
2775
|
+
var conf = {}, Bounds = class {
|
|
2776
|
+
static #e = __name(this, "Bounds");
|
|
2780
2777
|
constructor(e) {
|
|
2781
|
-
this.name = "", this.data = {}, this.data.startx = void 0, this.data.stopx = void 0, this.data.starty = void 0, this.data.stopy = void 0, this.data.widthLimit = void 0, this.nextData = {}, this.nextData.startx = void 0, this.nextData.stopx = void 0, this.nextData.starty = void 0, this.nextData.stopy = void 0, this.nextData.cnt = 0,
|
|
2778
|
+
this.name = "", this.data = {}, this.data.startx = void 0, this.data.stopx = void 0, this.data.starty = void 0, this.data.stopy = void 0, this.data.widthLimit = void 0, this.nextData = {}, this.nextData.startx = void 0, this.nextData.stopx = void 0, this.nextData.starty = void 0, this.nextData.stopy = void 0, this.nextData.cnt = 0, setConf(e.db.getConfig());
|
|
2782
2779
|
}
|
|
2783
2780
|
setData(e, t, n, r) {
|
|
2784
2781
|
this.nextData.startx = this.data.startx = e, this.nextData.stopx = this.data.stopx = t, this.nextData.starty = this.data.starty = n, this.nextData.stopy = this.data.stopy = r;
|
|
@@ -2789,7 +2786,7 @@ var Z = {}, Oe = class {
|
|
|
2789
2786
|
insert(e) {
|
|
2790
2787
|
this.nextData.cnt = this.nextData.cnt + 1;
|
|
2791
2788
|
let t = this.nextData.startx === this.nextData.stopx ? this.nextData.stopx + e.margin : this.nextData.stopx + e.margin * 2, n = t + e.width, r = this.nextData.starty + e.margin * 2, i = r + e.height;
|
|
2792
|
-
(t >= this.data.widthLimit || n >= this.data.widthLimit || this.nextData.cnt >
|
|
2789
|
+
(t >= this.data.widthLimit || n >= this.data.widthLimit || this.nextData.cnt > c4ShapeInRow2) && (t = this.nextData.startx + e.margin + conf.nextLinePaddingX, r = this.nextData.stopy + e.margin * 2, this.nextData.stopx = n = t + e.width, this.nextData.starty = this.nextData.stopy, this.nextData.stopy = i = r + e.height, this.nextData.cnt = 1), e.x = t, e.y = r, this.updateVal(this.data, "startx", t, Math.min), this.updateVal(this.data, "starty", r, Math.min), this.updateVal(this.data, "stopx", n, Math.max), this.updateVal(this.data, "stopy", i, Math.max), this.updateVal(this.nextData, "startx", t, Math.min), this.updateVal(this.nextData, "starty", r, Math.min), this.updateVal(this.nextData, "stopx", n, Math.max), this.updateVal(this.nextData, "stopy", i, Math.max);
|
|
2793
2790
|
}
|
|
2794
2791
|
init(e) {
|
|
2795
2792
|
this.name = "", this.data = {
|
|
@@ -2804,47 +2801,47 @@ var Z = {}, Oe = class {
|
|
|
2804
2801
|
starty: void 0,
|
|
2805
2802
|
stopy: void 0,
|
|
2806
2803
|
cnt: 0
|
|
2807
|
-
},
|
|
2804
|
+
}, setConf(e.db.getConfig());
|
|
2808
2805
|
}
|
|
2809
2806
|
bumpLastMargin(e) {
|
|
2810
2807
|
this.data.stopx += e, this.data.stopy += e;
|
|
2811
2808
|
}
|
|
2812
|
-
},
|
|
2813
|
-
|
|
2814
|
-
}, "setConf"),
|
|
2809
|
+
}, setConf = /* @__PURE__ */ __name(function(e) {
|
|
2810
|
+
assignWithDepth_default(conf, e), e.fontFamily && (conf.personFontFamily = conf.systemFontFamily = conf.messageFontFamily = e.fontFamily), e.fontSize && (conf.personFontSize = conf.systemFontSize = conf.messageFontSize = e.fontSize), e.fontWeight && (conf.personFontWeight = conf.systemFontWeight = conf.messageFontWeight = e.fontWeight);
|
|
2811
|
+
}, "setConf"), c4ShapeFont = /* @__PURE__ */ __name((e, t) => ({
|
|
2815
2812
|
fontFamily: e[t + "FontFamily"],
|
|
2816
2813
|
fontSize: e[t + "FontSize"],
|
|
2817
2814
|
fontWeight: e[t + "FontWeight"]
|
|
2818
|
-
}), "c4ShapeFont"),
|
|
2815
|
+
}), "c4ShapeFont"), boundaryFont = /* @__PURE__ */ __name((e) => ({
|
|
2819
2816
|
fontFamily: e.boundaryFontFamily,
|
|
2820
2817
|
fontSize: e.boundaryFontSize,
|
|
2821
2818
|
fontWeight: e.boundaryFontWeight
|
|
2822
|
-
}), "boundaryFont"),
|
|
2819
|
+
}), "boundaryFont"), messageFont = /* @__PURE__ */ __name((e) => ({
|
|
2823
2820
|
fontFamily: e.messageFontFamily,
|
|
2824
2821
|
fontSize: e.messageFontSize,
|
|
2825
2822
|
fontWeight: e.messageFontWeight
|
|
2826
2823
|
}), "messageFont");
|
|
2827
|
-
function
|
|
2828
|
-
if (!t[e].width) if (n) t[e].text =
|
|
2824
|
+
function calcC4ShapeTextWH(e, t, n, i, a) {
|
|
2825
|
+
if (!t[e].width) if (n) t[e].text = wrapLabel(t[e].text, a, i), t[e].textLines = t[e].text.split(common_default.lineBreakRegex).length, t[e].width = a, t[e].height = calculateTextHeight(t[e].text, i);
|
|
2829
2826
|
else {
|
|
2830
|
-
let n = t[e].text.split(
|
|
2827
|
+
let n = t[e].text.split(common_default.lineBreakRegex);
|
|
2831
2828
|
t[e].textLines = n.length;
|
|
2832
2829
|
let a = 0;
|
|
2833
2830
|
t[e].height = 0, t[e].width = 0;
|
|
2834
|
-
for (let r of n) t[e].width = Math.max(
|
|
2831
|
+
for (let r of n) t[e].width = Math.max(calculateTextWidth(r, i), t[e].width), a = calculateTextHeight(r, i), t[e].height = t[e].height + a;
|
|
2835
2832
|
}
|
|
2836
2833
|
}
|
|
2837
|
-
|
|
2838
|
-
var
|
|
2839
|
-
t.x = n.data.startx, t.y = n.data.starty, t.width = n.data.stopx - n.data.startx, t.height = n.data.stopy - n.data.starty, t.label.y =
|
|
2840
|
-
let r = t.wrap &&
|
|
2841
|
-
i.fontSize += 2, i.fontWeight = "bold",
|
|
2842
|
-
}, "drawBoundary"),
|
|
2834
|
+
__name(calcC4ShapeTextWH, "calcC4ShapeTextWH");
|
|
2835
|
+
var drawBoundary2 = /* @__PURE__ */ __name(function(e, t, n) {
|
|
2836
|
+
t.x = n.data.startx, t.y = n.data.starty, t.width = n.data.stopx - n.data.startx, t.height = n.data.stopy - n.data.starty, t.label.y = conf.c4ShapeMargin - 35;
|
|
2837
|
+
let r = t.wrap && conf.wrap, i = boundaryFont(conf);
|
|
2838
|
+
i.fontSize += 2, i.fontWeight = "bold", calcC4ShapeTextWH("label", t, r, i, calculateTextWidth(t.label.text, i)), svgDraw_default.drawBoundary(e, t, conf);
|
|
2839
|
+
}, "drawBoundary"), drawC4ShapeArray = /* @__PURE__ */ __name(function(e, t, n, r) {
|
|
2843
2840
|
let i = 0;
|
|
2844
2841
|
for (let a of r) {
|
|
2845
2842
|
i = 0;
|
|
2846
|
-
let r = n[a], o =
|
|
2847
|
-
switch (o.fontSize -= 2, r.typeC4Shape.width =
|
|
2843
|
+
let r = n[a], o = c4ShapeFont(conf, r.typeC4Shape.text);
|
|
2844
|
+
switch (o.fontSize -= 2, r.typeC4Shape.width = calculateTextWidth("«" + r.typeC4Shape.text + "»", o), r.typeC4Shape.height = o.fontSize + 2, r.typeC4Shape.Y = conf.c4ShapePadding, i = r.typeC4Shape.Y + r.typeC4Shape.height - 4, r.image = {
|
|
2848
2845
|
width: 0,
|
|
2849
2846
|
height: 0,
|
|
2850
2847
|
Y: 0
|
|
@@ -2855,49 +2852,47 @@ var Ne = /* @__PURE__ */ e(function(e, t, n) {
|
|
|
2855
2852
|
break;
|
|
2856
2853
|
}
|
|
2857
2854
|
r.sprite && (r.image.width = 48, r.image.height = 48, r.image.Y = i, i = r.image.Y + r.image.height);
|
|
2858
|
-
let s = r.wrap &&
|
|
2859
|
-
u.fontSize += 2, u.fontWeight = "bold",
|
|
2855
|
+
let s = r.wrap && conf.wrap, l = conf.width - conf.c4ShapePadding * 2, u = c4ShapeFont(conf, r.typeC4Shape.text);
|
|
2856
|
+
u.fontSize += 2, u.fontWeight = "bold", calcC4ShapeTextWH("label", r, s, u, l), r.label.Y = i + 8, i = r.label.Y + r.label.height, r.type && r.type.text !== "" ? (r.type.text = "[" + r.type.text + "]", calcC4ShapeTextWH("type", r, s, c4ShapeFont(conf, r.typeC4Shape.text), l), r.type.Y = i + 5, i = r.type.Y + r.type.height) : r.techn && r.techn.text !== "" && (r.techn.text = "[" + r.techn.text + "]", calcC4ShapeTextWH("techn", r, s, c4ShapeFont(conf, r.techn.text), l), r.techn.Y = i + 5, i = r.techn.Y + r.techn.height);
|
|
2860
2857
|
let d = i, f = r.label.width;
|
|
2861
|
-
r.descr && r.descr.text !== "" && (
|
|
2862
|
-
}
|
|
2863
|
-
e.bumpLastMargin(Z.c4ShapeMargin);
|
|
2864
|
-
}, "drawC4ShapeArray"), $ = class {
|
|
2865
|
-
static {
|
|
2866
|
-
e(this, "Point");
|
|
2858
|
+
r.descr && r.descr.text !== "" && (calcC4ShapeTextWH("descr", r, s, c4ShapeFont(conf, r.typeC4Shape.text), l), r.descr.Y = i + 20, i = r.descr.Y + r.descr.height, f = Math.max(r.label.width, r.descr.width), d = i - r.descr.textLines * 5), f += conf.c4ShapePadding, r.width = Math.max(r.width || conf.width, f, conf.width), r.height = Math.max(r.height || conf.height, d, conf.height), r.margin = r.margin || conf.c4ShapeMargin, e.insert(r), svgDraw_default.drawC4Shape(t, r, conf);
|
|
2867
2859
|
}
|
|
2860
|
+
e.bumpLastMargin(conf.c4ShapeMargin);
|
|
2861
|
+
}, "drawC4ShapeArray"), Point = class {
|
|
2862
|
+
static #e = __name(this, "Point");
|
|
2868
2863
|
constructor(e, t) {
|
|
2869
2864
|
this.x = e, this.y = t;
|
|
2870
2865
|
}
|
|
2871
|
-
},
|
|
2866
|
+
}, getIntersectPoint = /* @__PURE__ */ __name(function(e, t) {
|
|
2872
2867
|
let n = e.x, r = e.y, i = t.x, a = t.y, o = n + e.width / 2, s = r + e.height / 2, l = Math.abs(n - i), u = Math.abs(r - a), d = u / l, f = e.height / e.width, p = null;
|
|
2873
|
-
return r == a && n < i ? p = new
|
|
2874
|
-
}, "getIntersectPoint"),
|
|
2868
|
+
return r == a && n < i ? p = new Point(n + e.width, s) : r == a && n > i ? p = new Point(n, s) : n == i && r < a ? p = new Point(o, r + e.height) : n == i && r > a && (p = new Point(o, r)), n > i && r < a ? p = f >= d ? new Point(n, s + d * e.width / 2) : new Point(o - l / u * e.height / 2, r + e.height) : n < i && r < a ? p = f >= d ? new Point(n + e.width, s + d * e.width / 2) : new Point(o + l / u * e.height / 2, r + e.height) : n < i && r > a ? p = f >= d ? new Point(n + e.width, s - d * e.width / 2) : new Point(o + e.height / 2 * l / u, r) : n > i && r > a && (p = f >= d ? new Point(n, s - e.width / 2 * d) : new Point(o - e.height / 2 * l / u, r)), p;
|
|
2869
|
+
}, "getIntersectPoint"), getIntersectPoints = /* @__PURE__ */ __name(function(e, t) {
|
|
2875
2870
|
let n = {
|
|
2876
2871
|
x: 0,
|
|
2877
2872
|
y: 0
|
|
2878
2873
|
};
|
|
2879
2874
|
n.x = t.x + t.width / 2, n.y = t.y + t.height / 2;
|
|
2880
|
-
let r =
|
|
2875
|
+
let r = getIntersectPoint(e, n);
|
|
2881
2876
|
return n.x = e.x + e.width / 2, n.y = e.y + e.height / 2, {
|
|
2882
2877
|
startPoint: r,
|
|
2883
|
-
endPoint:
|
|
2878
|
+
endPoint: getIntersectPoint(t, n)
|
|
2884
2879
|
};
|
|
2885
|
-
}, "getIntersectPoints"),
|
|
2880
|
+
}, "getIntersectPoints"), drawRels2 = /* @__PURE__ */ __name(function(e, t, n, r, i) {
|
|
2886
2881
|
let a = 0;
|
|
2887
2882
|
for (let e of t) {
|
|
2888
2883
|
a += 1;
|
|
2889
|
-
let t = e.wrap &&
|
|
2884
|
+
let t = e.wrap && conf.wrap, i = messageFont(conf);
|
|
2890
2885
|
r.db.getC4Type() === "C4Dynamic" && (e.label.text = a + ": " + e.label.text);
|
|
2891
|
-
let o =
|
|
2892
|
-
|
|
2893
|
-
let s =
|
|
2886
|
+
let o = calculateTextWidth(e.label.text, i);
|
|
2887
|
+
calcC4ShapeTextWH("label", e, t, i, o), e.techn && e.techn.text !== "" && (o = calculateTextWidth(e.techn.text, i), calcC4ShapeTextWH("techn", e, t, i, o)), e.descr && e.descr.text !== "" && (o = calculateTextWidth(e.descr.text, i), calcC4ShapeTextWH("descr", e, t, i, o));
|
|
2888
|
+
let s = getIntersectPoints(n(e.from), n(e.to));
|
|
2894
2889
|
e.startPoint = s.startPoint, e.endPoint = s.endPoint;
|
|
2895
2890
|
}
|
|
2896
|
-
|
|
2891
|
+
svgDraw_default.drawRels(e, t, conf, i);
|
|
2897
2892
|
}, "drawRels");
|
|
2898
|
-
function
|
|
2899
|
-
let a = new
|
|
2900
|
-
a.data.widthLimit = n.data.widthLimit / Math.min(
|
|
2893
|
+
function drawInsideBoundary(e, t, n, r, i) {
|
|
2894
|
+
let a = new Bounds(i);
|
|
2895
|
+
a.data.widthLimit = n.data.widthLimit / Math.min(c4BoundaryInRow2, r.length);
|
|
2901
2896
|
for (let [o, s] of r.entries()) {
|
|
2902
2897
|
let r = 0;
|
|
2903
2898
|
s.image = {
|
|
@@ -2905,59 +2900,58 @@ function Re(e, t, n, r, i) {
|
|
|
2905
2900
|
height: 0,
|
|
2906
2901
|
Y: 0
|
|
2907
2902
|
}, s.sprite && (s.image.width = 48, s.image.height = 48, s.image.Y = r, r = s.image.Y + s.image.height);
|
|
2908
|
-
let l = s.wrap &&
|
|
2909
|
-
if (u.fontSize += 2, u.fontWeight = "bold",
|
|
2910
|
-
let e =
|
|
2911
|
-
e.fontSize -= 2,
|
|
2903
|
+
let l = s.wrap && conf.wrap, u = boundaryFont(conf);
|
|
2904
|
+
if (u.fontSize += 2, u.fontWeight = "bold", calcC4ShapeTextWH("label", s, l, u, a.data.widthLimit), s.label.Y = r + 8, r = s.label.Y + s.label.height, s.type && s.type.text !== "" && (s.type.text = "[" + s.type.text + "]", calcC4ShapeTextWH("type", s, l, boundaryFont(conf), a.data.widthLimit), s.type.Y = r + 5, r = s.type.Y + s.type.height), s.descr && s.descr.text !== "") {
|
|
2905
|
+
let e = boundaryFont(conf);
|
|
2906
|
+
e.fontSize -= 2, calcC4ShapeTextWH("descr", s, l, e, a.data.widthLimit), s.descr.Y = r + 20, r = s.descr.Y + s.descr.height;
|
|
2912
2907
|
}
|
|
2913
|
-
if (o == 0 || o %
|
|
2914
|
-
let e = n.data.startx +
|
|
2908
|
+
if (o == 0 || o % c4BoundaryInRow2 === 0) {
|
|
2909
|
+
let e = n.data.startx + conf.diagramMarginX, t = n.data.stopy + conf.diagramMarginY + r;
|
|
2915
2910
|
a.setData(e, e, t, t);
|
|
2916
2911
|
} else {
|
|
2917
|
-
let e = a.data.stopx === a.data.startx ? a.data.startx : a.data.stopx +
|
|
2912
|
+
let e = a.data.stopx === a.data.startx ? a.data.startx : a.data.stopx + conf.diagramMarginX, t = a.data.starty;
|
|
2918
2913
|
a.setData(e, e, t, t);
|
|
2919
2914
|
}
|
|
2920
2915
|
a.name = s.alias;
|
|
2921
2916
|
let d = i.db.getC4ShapeArray(s.alias), f = i.db.getC4ShapeKeys(s.alias);
|
|
2922
|
-
f.length > 0 &&
|
|
2917
|
+
f.length > 0 && drawC4ShapeArray(a, e, d, f), t = s.alias;
|
|
2923
2918
|
let p = i.db.getBoundaries(t);
|
|
2924
|
-
p.length > 0 &&
|
|
2919
|
+
p.length > 0 && drawInsideBoundary(e, t, a, p, i), s.alias !== "global" && drawBoundary2(e, s, a), n.data.stopy = Math.max(a.data.stopy + conf.c4ShapeMargin, n.data.stopy), n.data.stopx = Math.max(a.data.stopx + conf.c4ShapeMargin, n.data.stopx), globalBoundaryMaxX = Math.max(globalBoundaryMaxX, n.data.stopx), globalBoundaryMaxY = Math.max(globalBoundaryMaxY, n.data.stopy);
|
|
2925
2920
|
}
|
|
2926
2921
|
}
|
|
2927
|
-
|
|
2928
|
-
var
|
|
2929
|
-
drawPersonOrSystemArray:
|
|
2930
|
-
drawBoundary:
|
|
2931
|
-
setConf
|
|
2932
|
-
draw: /* @__PURE__ */
|
|
2933
|
-
|
|
2934
|
-
let o =
|
|
2935
|
-
o === "sandbox" && (l =
|
|
2936
|
-
let u =
|
|
2937
|
-
a.db.setWrap(
|
|
2938
|
-
let p = o === "sandbox" ? u.select(`[id="${n}"]`) :
|
|
2939
|
-
|
|
2940
|
-
let m = new
|
|
2941
|
-
m.setData(
|
|
2922
|
+
__name(drawInsideBoundary, "drawInsideBoundary");
|
|
2923
|
+
var c4Renderer_default = {
|
|
2924
|
+
drawPersonOrSystemArray: drawC4ShapeArray,
|
|
2925
|
+
drawBoundary: drawBoundary2,
|
|
2926
|
+
setConf,
|
|
2927
|
+
draw: /* @__PURE__ */ __name(function(e, n, r, a) {
|
|
2928
|
+
conf = getConfig2().c4;
|
|
2929
|
+
let o = getConfig2().securityLevel, l;
|
|
2930
|
+
o === "sandbox" && (l = select_default("#i" + n));
|
|
2931
|
+
let u = select_default(o === "sandbox" ? l.nodes()[0].contentDocument.body : "body"), d = a.db;
|
|
2932
|
+
a.db.setWrap(conf.wrap), c4ShapeInRow2 = d.getC4ShapeInRow(), c4BoundaryInRow2 = d.getC4BoundaryInRow(), log.debug(`C:${JSON.stringify(conf, null, 2)}`);
|
|
2933
|
+
let p = o === "sandbox" ? u.select(`[id="${n}"]`) : select_default(`[id="${n}"]`);
|
|
2934
|
+
svgDraw_default.insertComputerIcon(p, n), svgDraw_default.insertDatabaseIcon(p, n), svgDraw_default.insertClockIcon(p, n);
|
|
2935
|
+
let m = new Bounds(a);
|
|
2936
|
+
m.setData(conf.diagramMarginX, conf.diagramMarginX, conf.diagramMarginY, conf.diagramMarginY), m.data.widthLimit = screen.availWidth, globalBoundaryMaxX = conf.diagramMarginX, globalBoundaryMaxY = conf.diagramMarginY;
|
|
2942
2937
|
let h = a.db.getTitle();
|
|
2943
|
-
|
|
2944
|
-
let g = m.data, _ = g.stopy - g.starty + 2 *
|
|
2945
|
-
h && p.append("text").text(h).attr("x", (g.stopx - g.startx) / 2 - 4 *
|
|
2938
|
+
drawInsideBoundary(p, "", m, a.db.getBoundaries(""), a), svgDraw_default.insertArrowHead(p, n), svgDraw_default.insertArrowEnd(p, n), svgDraw_default.insertArrowCrossHead(p, n), svgDraw_default.insertArrowFilledHead(p, n), drawRels2(p, a.db.getRels(), a.db.getC4Shape, a, n), m.data.stopx = globalBoundaryMaxX, m.data.stopy = globalBoundaryMaxY;
|
|
2939
|
+
let g = m.data, _ = g.stopy - g.starty + 2 * conf.diagramMarginY, v = g.stopx - g.startx + 2 * conf.diagramMarginX;
|
|
2940
|
+
h && p.append("text").text(h).attr("x", (g.stopx - g.startx) / 2 - 4 * conf.diagramMarginX).attr("y", g.starty + conf.diagramMarginY), configureSvgSize(p, _, v, conf.useMaxWidth);
|
|
2946
2941
|
let y = h ? 60 : 0;
|
|
2947
|
-
p.attr("viewBox", g.startx -
|
|
2942
|
+
p.attr("viewBox", g.startx - conf.diagramMarginX + " -" + (conf.diagramMarginY + y) + " " + v + " " + (_ + y)), log.debug("models:", g);
|
|
2948
2943
|
}, "draw")
|
|
2949
|
-
},
|
|
2950
|
-
parser:
|
|
2951
|
-
db:
|
|
2952
|
-
renderer:
|
|
2953
|
-
styles: /* @__PURE__ */
|
|
2944
|
+
}, diagram = {
|
|
2945
|
+
parser: c4Diagram_default,
|
|
2946
|
+
db: c4Db_default,
|
|
2947
|
+
renderer: c4Renderer_default,
|
|
2948
|
+
styles: /* @__PURE__ */ __name((e) => `.person {
|
|
2954
2949
|
stroke: ${e.personBorder};
|
|
2955
2950
|
fill: ${e.personBkg};
|
|
2956
2951
|
}
|
|
2957
2952
|
`, "getStyles"),
|
|
2958
|
-
init: /* @__PURE__ */
|
|
2959
|
-
|
|
2953
|
+
init: /* @__PURE__ */ __name(({ c4: e, wrap: t }) => {
|
|
2954
|
+
c4Renderer_default.setConf(e), c4Db_default.setWrap(t);
|
|
2960
2955
|
}, "init")
|
|
2961
2956
|
};
|
|
2962
|
-
|
|
2963
|
-
export { Be as diagram };
|
|
2957
|
+
export { diagram };
|