@loopstack/loopstack-studio 0.25.0 → 0.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/_rolldown/runtime.js +20 -0
- package/dist/api/auth.js +4 -2
- package/dist/api/client.js +9 -7
- package/dist/api/config.js +4 -2
- package/dist/api/dashboard.js +4 -2
- package/dist/api/documents.js +4 -2
- package/dist/api/index.js +21 -19
- package/dist/api/processor.js +4 -2
- package/dist/api/secrets.js +4 -2
- package/dist/api/workflows.js +4 -2
- package/dist/api/workspaces.js +4 -2
- package/dist/app/EnvironmentEmbedRoot.js +24 -31
- package/dist/components/ai-elements/code-block.js +53 -71
- package/dist/components/ai-elements/message.js +41 -82
- package/dist/components/ai-elements/prompt-input.js +162 -253
- package/dist/components/ai-elements/reasoning.js +78 -116
- package/dist/components/ai-elements/shimmer.js +23 -35
- package/dist/components/ai-elements/sources.js +29 -58
- package/dist/components/data-table/ConfirmDialog.js +14 -30
- package/dist/components/data-table/DataList.js +138 -198
- package/dist/components/data-table/DataTable.js +168 -234
- package/dist/components/data-table/DataTableBatchAction.js +18 -27
- package/dist/components/data-table/DataTableFilters.js +53 -78
- package/dist/components/data-table/DataTablePagination.js +72 -104
- package/dist/components/data-table/DataTableToolbar.js +53 -65
- package/dist/components/dynamic-form/ArrayController.js +85 -103
- package/dist/components/dynamic-form/CodeContent.js +28 -36
- package/dist/components/dynamic-form/Form.js +43 -56
- package/dist/components/dynamic-form/FormBody.js +12 -10
- package/dist/components/dynamic-form/FormElement.js +31 -41
- package/dist/components/dynamic-form/FormElementHeader.js +12 -20
- package/dist/components/dynamic-form/InputController.js +36 -38
- package/dist/components/dynamic-form/MarkdownContent.js +53 -74
- package/dist/components/dynamic-form/MermaidDiagram.js +22 -24
- package/dist/components/dynamic-form/ObjectController.js +24 -32
- package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +35 -47
- package/dist/components/dynamic-form/fields/CheckboxField.js +39 -48
- package/dist/components/dynamic-form/fields/CodeViewField.js +42 -50
- package/dist/components/dynamic-form/fields/InputField.js +62 -90
- package/dist/components/dynamic-form/fields/MarkdownViewField.js +16 -19
- package/dist/components/dynamic-form/fields/RadioField.js +46 -62
- package/dist/components/dynamic-form/fields/SelectField.js +40 -58
- package/dist/components/dynamic-form/fields/SliderField.js +94 -100
- package/dist/components/dynamic-form/fields/SwitchField.js +42 -61
- package/dist/components/dynamic-form/fields/TextareaField.js +53 -72
- package/dist/components/dynamic-form/fields/utils/text-validation-utils.js +4 -2
- package/dist/components/dynamic-form/hooks/useArrayDefaultValue.js +6 -5
- package/dist/components/dynamic-form/hooks/useFieldConfig.js +19 -20
- package/dist/components/dynamic-form/hooks/useMergeParentKey.js +4 -2
- package/dist/components/dynamic-form/hooks/useSortPropertyNames.js +4 -2
- package/dist/components/feedback/ErrorAlert.js +11 -17
- package/dist/components/feedback/ErrorBoundary.js +16 -14
- package/dist/components/feedback/ErrorSnackbar.js +13 -30
- package/dist/components/feedback/LoadingCentered.js +15 -28
- package/dist/components/feedback/Snackbar.js +43 -44
- package/dist/components/feedback/index.js +5 -5
- package/dist/components/index.js +47 -47
- package/dist/components/layout/MainLayout.js +17 -25
- package/dist/components/layout/StudioSidebar.js +132 -202
- package/dist/components/lists/CustomListView.js +49 -74
- package/dist/components/lists/ListView.js +66 -102
- package/dist/components/loopstack-elements/link.js +65 -104
- package/dist/components/loopstack-elements/tool.js +70 -142
- package/dist/components/messages/CompletionMessagePaper.js +53 -85
- package/dist/components/page/PageBreadcrumbs.js +64 -83
- package/dist/components/ui/DiscordLogo.js +16 -22
- package/dist/components/ui/GoogleLogo.js +40 -44
- package/dist/components/ui/accordion.js +31 -52
- package/dist/components/ui/alert-dialog.js +59 -109
- package/dist/components/ui/alert.js +22 -36
- package/dist/components/ui/avatar.js +21 -35
- package/dist/components/ui/badge.js +13 -17
- package/dist/components/ui/breadcrumb.js +46 -82
- package/dist/components/ui/button-group.js +5 -5
- package/dist/components/ui/button.js +17 -21
- package/dist/components/ui/card.js +40 -74
- package/dist/components/ui/checkbox.js +17 -23
- package/dist/components/ui/collapsible.js +17 -25
- package/dist/components/ui/command.js +1 -2
- package/dist/components/ui/context-menu.js +32 -52
- package/dist/components/ui/dialog.js +62 -107
- package/dist/components/ui/drawer.js +54 -99
- package/dist/components/ui/dropdown-menu.js +91 -159
- package/dist/components/ui/hover-card.js +1 -2
- package/dist/components/ui/input-group.js +36 -56
- package/dist/components/ui/input.js +11 -15
- package/dist/components/ui/label.js +11 -15
- package/dist/components/ui/popover.js +25 -38
- package/dist/components/ui/radio-group.js +22 -33
- package/dist/components/ui/scroll-area.js +28 -43
- package/dist/components/ui/select.js +73 -134
- package/dist/components/ui/separator.js +13 -17
- package/dist/components/ui/sheet.js +60 -105
- package/dist/components/ui/sidebar.js +269 -451
- package/dist/components/ui/skeleton.js +10 -14
- package/dist/components/ui/slider.js +17 -15
- package/dist/components/ui/switch.js +15 -21
- package/dist/components/ui/table.js +46 -85
- package/dist/components/ui/tabs.js +26 -45
- package/dist/components/ui/textarea.js +10 -14
- package/dist/components/ui/tooltip.js +26 -41
- package/dist/components/ui-widgets/UiActions.js +30 -37
- package/dist/components/ui-widgets/UiWidget.js +34 -46
- package/dist/components/ui-widgets/widgets/AiPromptInput.js +28 -42
- package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +16 -21
- package/dist/components/ui-widgets/widgets/SandboxRun.js +19 -26
- package/dist/components/ui-widgets/widgets/SubmitButton.js +15 -20
- package/dist/events/api-client-events.js +4 -2
- package/dist/events/sse-client-events.js +4 -2
- package/dist/features/code-explorer/CodeExplorer.js +1 -2
- package/dist/features/code-explorer/components/CodeExplorerTree.js +2 -2
- package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +31 -29
- package/dist/features/code-explorer/components/FileContentViewer.js +108 -148
- package/dist/features/code-explorer/components/FileTabsBar.js +1 -2
- package/dist/features/code-explorer/components/FileTabsBarBase.js +134 -169
- 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 +41 -39
- package/dist/features/dashboard/Dashboard.js +79 -121
- package/dist/features/dashboard/RunItem.js +50 -68
- package/dist/features/dashboard/RunList.js +17 -28
- package/dist/features/debug/components/ConfigFlowViewer.js +49 -67
- package/dist/features/debug/components/WorkflowDebugHeader.js +30 -46
- package/dist/features/debug/components/WorkflowDebugLegend.js +56 -68
- package/dist/features/debug/components/WorkflowFlowViewer.js +76 -96
- package/dist/features/debug/components/workflow-flow/StateNode.js +73 -102
- package/dist/features/debug/components/workflow-flow/WorkflowGraph.js +35 -40
- package/dist/features/debug/components/workflow-flow/WorkflowTransitionEdge.js +61 -94
- package/dist/features/debug/index.js +3 -3
- package/dist/features/debug/lib/edge-paths.js +33 -31
- package/dist/features/debug/lib/flow-utils.js +147 -145
- package/dist/features/documents/DocumentRenderer.js +73 -77
- package/dist/features/documents/components/DocumentItem.js +21 -24
- package/dist/features/documents/components/DocumentList.js +39 -45
- package/dist/features/documents/components/DocumentMetadataPills.js +44 -59
- package/dist/features/documents/document-details/DocumentDetails.js +298 -413
- package/dist/features/documents/document-details/PromptDetails.js +105 -142
- package/dist/features/documents/index.js +4 -4
- package/dist/features/documents/renderers/AiMessage.js +39 -48
- package/dist/features/documents/renderers/AiMessageContent.js +108 -164
- package/dist/features/documents/renderers/ChoicesRenderer.js +77 -89
- package/dist/features/documents/renderers/ClaudeMessage.js +74 -91
- package/dist/features/documents/renderers/ConfirmPromptRenderer.js +44 -53
- package/dist/features/documents/renderers/DocumentDebugRenderer.js +26 -30
- package/dist/features/documents/renderers/DocumentFormRenderer.js +69 -85
- package/dist/features/documents/renderers/DocumentMessageRenderer.js +10 -9
- package/dist/features/documents/renderers/ErrorMessageRenderer.js +11 -13
- package/dist/features/documents/renderers/LinkMessageRenderer.js +15 -14
- package/dist/features/documents/renderers/MarkdownMessageRenderer.js +8 -10
- package/dist/features/documents/renderers/PlainMessageRenderer.js +7 -9
- package/dist/features/documents/renderers/SecretInputRenderer.js +37 -35
- package/dist/features/documents/renderers/TextPromptRenderer.js +45 -54
- package/dist/features/documents/renderers/useDocumentTransition.js +9 -7
- package/dist/features/health/LocalHealthCheck.js +54 -53
- package/dist/features/health/index.js +1 -1
- package/dist/features/oauth/OAuthCallbackPage.js +2 -2
- package/dist/features/oauth/OAuthPromptRenderer.js +148 -197
- package/dist/features/oauth/index.js +2 -2
- package/dist/features/oauth/useOAuthPopup.js +52 -71
- package/dist/features/runs/Runs.js +145 -187
- package/dist/features/workbench/Workbench.js +72 -98
- package/dist/features/workbench/WorkflowItem.js +49 -68
- package/dist/features/workbench/WorkflowList.js +51 -66
- package/dist/features/workbench/components/NewRunDialog.js +212 -309
- package/dist/features/workbench/components/RemoteFileTabsBar.js +18 -17
- package/dist/features/workbench/components/RemoteFileTree.js +54 -85
- package/dist/features/workbench/components/WorkbenchFilesPanel.js +52 -63
- package/dist/features/workbench/components/WorkbenchFloatingPanel.js +34 -51
- package/dist/features/workbench/components/WorkbenchFlowPanel.js +35 -44
- package/dist/features/workbench/components/WorkbenchIconSidebar.js +50 -68
- package/dist/features/workbench/components/WorkbenchPreviewPanel.js +51 -49
- package/dist/features/workbench/components/WorkbenchSecretsPanel.js +143 -172
- package/dist/features/workbench/components/WorkbenchSettingsModal.js +49 -60
- package/dist/features/workbench/components/WorkflowForms.js +17 -23
- package/dist/features/workbench/components/WorkflowHistoryItem.js +96 -122
- package/dist/features/workbench/components/WorkflowHistoryList.js +31 -54
- package/dist/features/workbench/components/buttons/WorkflowButtons.js +70 -99
- package/dist/features/workbench/hooks/useAutoScrollBottom.js +21 -25
- package/dist/features/workbench/hooks/useScrollToListItem.js +20 -21
- package/dist/features/workbench/hooks/useWorkflowData.js +31 -44
- package/dist/features/workbench/hooks/useWorkflowListState.js +13 -12
- package/dist/features/workbench/index.js +7 -7
- package/dist/features/workbench/providers/RemoteFileExplorerProvider.js +123 -138
- package/dist/features/workbench/providers/ScrollProvider.js +15 -19
- package/dist/features/workbench/providers/WorkbenchLayoutProvider.js +76 -75
- package/dist/features/workspaces/Workspaces.js +161 -226
- package/dist/features/workspaces/components/CreateWorkspace.js +137 -194
- package/dist/features/workspaces/components/EnvironmentSlotSelector.js +27 -25
- package/dist/features/workspaces/components/ExecutionTimeline.js +143 -185
- package/dist/features/workspaces/components/NewWorkflowRunDialog.js +18 -26
- package/dist/features/workspaces/components/WorkflowRunForm.js +85 -133
- package/dist/features/workspaces/components/WorkspaceHomePage.js +59 -80
- package/dist/features/workspaces/components/workflow-form/ArgumentsView.js +52 -69
- package/dist/features/workspaces/components/workflow-form/HeaderSection.js +27 -41
- package/dist/features/workspaces/components/workflow-form/SelectionView.js +64 -103
- package/dist/features/workspaces/index.js +3 -3
- package/dist/frontend/studio/node_modules/lodash/_Symbol.js +9 -0
- package/dist/frontend/studio/node_modules/lodash/_baseGetTag.js +15 -0
- package/dist/frontend/studio/node_modules/lodash/_baseTrim.js +13 -0
- package/dist/frontend/studio/node_modules/lodash/_freeGlobal.js +8 -0
- package/dist/frontend/studio/node_modules/lodash/_getRawTag.js +19 -0
- package/dist/frontend/studio/node_modules/lodash/_objectToString.js +12 -0
- package/dist/frontend/studio/node_modules/lodash/_root.js +10 -0
- package/dist/frontend/studio/node_modules/lodash/_trimmedEndIndex.js +13 -0
- package/dist/{node_modules → frontend/studio/node_modules}/lodash/debounce.js +10 -8
- package/dist/frontend/studio/node_modules/lodash/isObject.js +12 -0
- package/dist/frontend/studio/node_modules/lodash/isObjectLike.js +11 -0
- package/dist/frontend/studio/node_modules/lodash/isSymbol.js +14 -0
- package/dist/frontend/studio/node_modules/lodash/now.js +12 -0
- package/dist/frontend/studio/node_modules/lodash/toNumber.js +24 -0
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/query-keys.js +33 -31
- package/dist/hooks/use-mobile.js +12 -11
- package/dist/hooks/useApi.js +16 -14
- package/dist/hooks/useAuth.js +38 -53
- package/dist/hooks/useConfig.js +26 -37
- package/dist/hooks/useDashboard.js +12 -15
- package/dist/hooks/useDebounce.js +12 -11
- package/dist/hooks/useDocuments.js +23 -35
- package/dist/hooks/useFiles.js +1 -2
- package/dist/hooks/useProcessor.js +14 -17
- package/dist/hooks/useSecrets.js +45 -64
- package/dist/hooks/useWorkflows.js +109 -161
- package/dist/hooks/useWorkspaces.js +83 -123
- package/dist/index.d.ts +0 -1304
- package/dist/index.js +80 -80
- package/dist/lib/requireParam.js +4 -2
- package/dist/lib/utils.js +7 -5
- package/dist/loopstack-studio.css +1 -1
- package/dist/node_modules/@braintree/sanitize-url/dist/constants.js +6 -4
- package/dist/node_modules/@braintree/sanitize-url/dist/index.js +8 -6
- package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +19 -20
- package/dist/node_modules/@chevrotain/gast/lib/src/model.js +87 -88
- package/dist/node_modules/@chevrotain/gast/lib/src/visitor.js +16 -13
- 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 +4 -2
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/character-classes.js +36 -34
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/regexp-parser.js +138 -110
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/utils.js +13 -11
- package/dist/node_modules/@chevrotain/utils/lib/src/print.js +5 -3
- package/dist/node_modules/@chevrotain/utils/lib/src/timer.js +4 -2
- package/dist/node_modules/@chevrotain/utils/lib/src/to-fast-properties.js +4 -2
- package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1812 -1913
- package/dist/node_modules/@iconify/utils/lib/customisations/defaults.js +8 -6
- package/dist/node_modules/@iconify/utils/lib/icon/defaults.js +10 -8
- package/dist/node_modules/@iconify/utils/lib/icon/merge.js +8 -6
- package/dist/node_modules/@iconify/utils/lib/icon/name.js +8 -6
- package/dist/node_modules/@iconify/utils/lib/icon/transformations.js +4 -2
- package/dist/node_modules/@iconify/utils/lib/icon-set/get-icon.js +12 -10
- package/dist/node_modules/@iconify/utils/lib/icon-set/tree.js +4 -2
- package/dist/node_modules/@iconify/utils/lib/svg/build.js +20 -18
- package/dist/node_modules/@iconify/utils/lib/svg/defs.js +8 -6
- package/dist/node_modules/@iconify/utils/lib/svg/html.js +4 -2
- package/dist/node_modules/@iconify/utils/lib/svg/id.js +10 -8
- package/dist/node_modules/@iconify/utils/lib/svg/size.js +7 -5
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-YZFGNWBL.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-2KRD3SAO.js +26 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-67CJDMHE.js +26 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-7N4EOEYR.js +38 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-AA7GKIK3.js +33 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-CIAEETIT.js +26 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FOC6F5B3.js +26 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-K5T4RW27.js +1208 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-KGLVRYIC.js +26 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-LIHQZDEY.js +67 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-ORNJ4GCN.js +34 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-7Q5UKJZL.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-OMHHGYJF.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-4T2RLAQJ.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-ZZUOXDRM.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-PYXPWWZC.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treeView-SZITEDCU.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-W4RFUUIX.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/wardley-RL74JXVD.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +59 -45
- package/dist/node_modules/@shikijs/core/dist/index.js +583 -1119
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +163 -148
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +4 -2
- package/dist/node_modules/@shikijs/langs/dist/abap.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ada.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/angular-html.js +15 -13
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/angular-template.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/apache.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/apex.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/apl.js +15 -13
- package/dist/node_modules/@shikijs/langs/dist/applescript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ara.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/asm.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/astro.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/awk.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ballerina.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/bat.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/beancount.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/berry.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/bibtex.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/bicep.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/bird2.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/blade.js +19 -17
- package/dist/node_modules/@shikijs/langs/dist/bsl.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/c.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/c3.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/cadence.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/cairo.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/clarity.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/clojure.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/cmake.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/cobol.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/codeowners.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/codeql.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/coffee.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/coq.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/cpp.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/crystal.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/csharp.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/css.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/csv.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/cue.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/cypher.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/d.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/dart.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/dax.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/desktop.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/diff.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/docker.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/dotenv.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/edge.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/elixir.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/elm.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/erb.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/erlang.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/fennel.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/fish.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/fluent.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/fsharp.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/gdresource.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/gdscript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/gdshader.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/genie.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/gherkin.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/git-commit.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/gleam.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/glsl.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/gn.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/go.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/graphql.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/groovy.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/hack.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/haml.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/handlebars.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/haskell.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/haxe.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/hcl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/hjson.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/hlsl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/html.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/http.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/hurl.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/hxml.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/hy.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/imba.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ini.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/java.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/javascript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/jinja.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/jison.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/json.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/json5.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/jsonc.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/jsonl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/jssm.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/jsx.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/julia.js +15 -13
- package/dist/node_modules/@shikijs/langs/dist/just.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/kdl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/kotlin.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/kusto.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/latex.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/lean.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/less.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/liquid.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/llvm.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/log.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/logo.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/lua.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/luau.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/make.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/markdown.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/marko.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/matlab.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/mdc.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/mdx.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/mermaid.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/mojo.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/moonbit.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/move.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/narrat.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/nextflow.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/nginx.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/nim.js +19 -17
- package/dist/node_modules/@shikijs/langs/dist/nix.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/nushell.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/objective-c.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ocaml.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/odin.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/openscad.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/pascal.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/perl.js +15 -13
- package/dist/node_modules/@shikijs/langs/dist/php.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/pkl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/plsql.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/po.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/polar.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/postcss.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/powerquery.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/powershell.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/prisma.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/prolog.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/proto.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/pug.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/puppet.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/purescript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/python.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/qml.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/qmldir.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/qss.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/r.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/racket.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/raku.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/razor.js +9 -7
- package/dist/node_modules/@shikijs/langs/dist/reg.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/regexp.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/rel.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/riscv.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ron.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/rst.js +21 -19
- package/dist/node_modules/@shikijs/langs/dist/ruby.js +29 -27
- package/dist/node_modules/@shikijs/langs/dist/rust.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/sas.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/sass.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/scala.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/scheme.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/scss.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/sdbl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/shellscript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/shellsession.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/solidity.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/soy.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/sparql.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/splunk.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/sql.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/stata.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/stylus.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/surrealql.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/svelte.js +13 -11
- package/dist/node_modules/@shikijs/langs/dist/swift.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/systemd.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/talonscript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/tasl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/tcl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/templ.js +11 -9
- package/dist/node_modules/@shikijs/langs/dist/terraform.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/tex.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/toml.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/tsv.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/tsx.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/turtle.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/twig.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/typescript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/typespec.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/typst.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/v.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/vala.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/vb.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/verilog.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/vhdl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/viml.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/vue-html.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +17 -15
- package/dist/node_modules/@shikijs/langs/dist/vue.js +25 -23
- package/dist/node_modules/@shikijs/langs/dist/vyper.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/wasm.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/wenyan.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/wgsl.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/wikitext.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/wit.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/wolfram.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/xml.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/xsl.js +5 -3
- package/dist/node_modules/@shikijs/langs/dist/yaml.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/zenscript.js +3 -2
- package/dist/node_modules/@shikijs/langs/dist/zig.js +3 -2
- package/dist/node_modules/@shikijs/primitive/dist/index.js +540 -0
- package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/dracula.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/github-dark.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/github-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/horizon.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/houston.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/laserwave.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/light-plus.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/material-theme.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/min-dark.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/min-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/monokai.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/night-owl.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/nord.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/one-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/plastic.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/poimandres.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/red.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/vesper.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +4 -2
- package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +4 -2
- package/dist/node_modules/@shikijs/types/dist/index.js +4 -2
- package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +949 -947
- package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +30 -30
- package/dist/node_modules/@ungap/structured-clone/esm/index.js +6 -4
- package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +64 -64
- package/dist/node_modules/@upsetjs/venn.js/build/venn.esm.js +905 -0
- package/dist/node_modules/@xyflow/react/dist/esm/index.js +904 -901
- package/dist/node_modules/@xyflow/system/dist/esm/index.js +1226 -1222
- package/dist/node_modules/bail/index.js +4 -2
- package/dist/node_modules/ccount/index.js +4 -2
- package/dist/node_modules/character-entities-html4/index.js +4 -2
- package/dist/node_modules/character-entities-legacy/index.js +4 -2
- package/dist/node_modules/chevrotain/lib/src/api.js +10 -10
- package/dist/node_modules/chevrotain/lib/src/lang/lang_extensions.js +6 -4
- package/dist/node_modules/chevrotain/lib/src/parse/constants.js +4 -2
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst.js +11 -9
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +38 -45
- package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +35 -36
- package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +26 -25
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +204 -226
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +18 -18
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +20 -19
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +14 -13
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +195 -200
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/keys.js +5 -4
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +28 -28
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +165 -170
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +17 -17
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +50 -50
- package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +76 -83
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +21 -21
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +117 -121
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +12 -6
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +51 -51
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +15 -14
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +81 -80
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +229 -217
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +87 -86
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +36 -44
- package/dist/node_modules/chevrotain/lib/src/parse/parser/utils/apply_mixins.js +4 -2
- package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +287 -309
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_errors_public.js +4 -2
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +115 -126
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +73 -70
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp_parser.js +12 -10
- package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +45 -54
- package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +29 -30
- package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +242 -240
- package/dist/node_modules/chevrotain-allstar/lib/atn.js +134 -133
- package/dist/node_modules/chevrotain-allstar/lib/dfa.js +11 -10
- package/dist/node_modules/chevrotain-allstar/lib/index.js +1 -1
- package/dist/node_modules/classcat/index.js +5 -3
- package/dist/node_modules/comma-separated-tokens/index.js +5 -3
- package/dist/node_modules/cose-base/cose-base.js +21 -21
- package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +7935 -7935
- package/dist/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js +8 -6
- package/dist/node_modules/cytoscape-fcose/cytoscape-fcose.js +8 -6
- 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 +6 -4
- package/dist/node_modules/d3/src/index.js +95 -95
- package/dist/node_modules/d3-array/src/ascending.js +4 -2
- package/dist/node_modules/d3-array/src/bisect.js +8 -8
- package/dist/node_modules/d3-array/src/bisector.js +8 -6
- package/dist/node_modules/d3-array/src/descending.js +4 -2
- package/dist/node_modules/d3-array/src/max.js +4 -2
- package/dist/node_modules/d3-array/src/min.js +4 -2
- package/dist/node_modules/d3-array/src/number.js +4 -2
- package/dist/node_modules/d3-array/src/range.js +4 -2
- package/dist/node_modules/d3-array/src/ticks.js +13 -11
- package/dist/node_modules/d3-axis/src/axis.js +48 -46
- package/dist/node_modules/d3-axis/src/identity.js +4 -2
- package/dist/node_modules/d3-brush/src/brush.js +6 -4
- package/dist/node_modules/d3-color/src/color.js +86 -84
- package/dist/node_modules/d3-color/src/define.js +5 -3
- package/dist/node_modules/d3-color/src/lab.js +45 -43
- package/dist/node_modules/d3-color/src/math.js +4 -2
- package/dist/node_modules/d3-dispatch/src/dispatch.js +18 -17
- package/dist/node_modules/d3-drag/src/constant.js +4 -2
- package/dist/node_modules/d3-drag/src/drag.js +77 -75
- package/dist/node_modules/d3-drag/src/event.js +5 -3
- package/dist/node_modules/d3-drag/src/nodrag.js +11 -9
- package/dist/node_modules/d3-drag/src/noevent.js +6 -4
- package/dist/node_modules/d3-ease/src/cubic.js +4 -2
- package/dist/node_modules/d3-format/src/defaultLocale.js +8 -6
- package/dist/node_modules/d3-format/src/exponent.js +6 -4
- package/dist/node_modules/d3-format/src/formatDecimal.js +5 -3
- package/dist/node_modules/d3-format/src/formatGroup.js +4 -2
- package/dist/node_modules/d3-format/src/formatNumerals.js +4 -2
- package/dist/node_modules/d3-format/src/formatPrefixAuto.js +10 -8
- package/dist/node_modules/d3-format/src/formatRounded.js +6 -4
- package/dist/node_modules/d3-format/src/formatSpecifier.js +10 -8
- package/dist/node_modules/d3-format/src/formatTrim.js +4 -2
- package/dist/node_modules/d3-format/src/formatTypes.js +15 -13
- package/dist/node_modules/d3-format/src/identity.js +4 -2
- package/dist/node_modules/d3-format/src/locale.js +33 -31
- package/dist/node_modules/d3-format/src/precisionFixed.js +6 -4
- package/dist/node_modules/d3-format/src/precisionPrefix.js +6 -4
- package/dist/node_modules/d3-format/src/precisionRound.js +6 -4
- package/dist/node_modules/d3-hierarchy/src/accessors.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/constant.js +5 -3
- package/dist/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/count.js +6 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/descendants.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/each.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/find.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/index.js +46 -44
- package/dist/node_modules/d3-hierarchy/src/hierarchy/iterator.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/leaves.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/links.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/path.js +6 -4
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sort.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sum.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/treemap/dice.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/treemap/index.js +16 -14
- package/dist/node_modules/d3-hierarchy/src/treemap/round.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/treemap/slice.js +4 -2
- package/dist/node_modules/d3-hierarchy/src/treemap/squarify.js +11 -9
- package/dist/node_modules/d3-interpolate/src/array.js +6 -4
- package/dist/node_modules/d3-interpolate/src/basis.js +6 -4
- package/dist/node_modules/d3-interpolate/src/basisClosed.js +6 -4
- package/dist/node_modules/d3-interpolate/src/color.js +19 -17
- package/dist/node_modules/d3-interpolate/src/constant.js +4 -2
- package/dist/node_modules/d3-interpolate/src/date.js +4 -2
- package/dist/node_modules/d3-interpolate/src/hcl.js +8 -6
- package/dist/node_modules/d3-interpolate/src/number.js +4 -2
- package/dist/node_modules/d3-interpolate/src/numberArray.js +5 -3
- package/dist/node_modules/d3-interpolate/src/object.js +6 -4
- package/dist/node_modules/d3-interpolate/src/rgb.js +11 -9
- package/dist/node_modules/d3-interpolate/src/round.js +4 -2
- package/dist/node_modules/d3-interpolate/src/string.js +16 -14
- package/dist/node_modules/d3-interpolate/src/transform/decompose.js +7 -5
- package/dist/node_modules/d3-interpolate/src/transform/index.js +13 -11
- package/dist/node_modules/d3-interpolate/src/transform/parse.js +10 -8
- package/dist/node_modules/d3-interpolate/src/value.js +14 -12
- package/dist/node_modules/d3-interpolate/src/zoom.js +13 -11
- package/dist/node_modules/d3-path/src/path.js +16 -14
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/max.js +4 -2
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/min.js +4 -2
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/sum.js +4 -2
- package/dist/node_modules/d3-sankey/node_modules/d3-path/src/path.js +13 -12
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/array.js +4 -2
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/constant.js +4 -2
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/link/index.js +19 -17
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/point.js +5 -3
- package/dist/node_modules/d3-sankey/src/align.js +12 -10
- package/dist/node_modules/d3-sankey/src/constant.js +4 -2
- package/dist/node_modules/d3-sankey/src/sankey.js +170 -168
- package/dist/node_modules/d3-sankey/src/sankeyLinkHorizontal.js +8 -6
- package/dist/node_modules/d3-scale/src/band.js +11 -9
- package/dist/node_modules/d3-scale/src/constant.js +4 -2
- package/dist/node_modules/d3-scale/src/continuous.js +49 -47
- package/dist/node_modules/d3-scale/src/init.js +4 -2
- package/dist/node_modules/d3-scale/src/linear.js +15 -13
- package/dist/node_modules/d3-scale/src/nice.js +4 -2
- package/dist/node_modules/d3-scale/src/number.js +4 -2
- package/dist/node_modules/d3-scale/src/ordinal.js +18 -16
- package/dist/node_modules/d3-scale/src/tickFormat.js +16 -14
- package/dist/node_modules/d3-scale/src/time.js +36 -34
- package/dist/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +5 -3
- package/dist/node_modules/d3-scale-chromatic/src/colors.js +4 -2
- package/dist/node_modules/d3-selection/src/array.js +4 -2
- package/dist/node_modules/d3-selection/src/constant.js +4 -2
- package/dist/node_modules/d3-selection/src/creator.js +12 -10
- package/dist/node_modules/d3-selection/src/matcher.js +5 -3
- package/dist/node_modules/d3-selection/src/namespace.js +7 -5
- package/dist/node_modules/d3-selection/src/namespaces.js +5 -3
- package/dist/node_modules/d3-selection/src/pointer.js +6 -4
- package/dist/node_modules/d3-selection/src/select.js +6 -4
- package/dist/node_modules/d3-selection/src/selection/append.js +6 -4
- package/dist/node_modules/d3-selection/src/selection/attr.js +19 -17
- package/dist/node_modules/d3-selection/src/selection/call.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/classed.js +25 -23
- package/dist/node_modules/d3-selection/src/selection/clone.js +7 -5
- package/dist/node_modules/d3-selection/src/selection/data.js +18 -16
- package/dist/node_modules/d3-selection/src/selection/datum.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/dispatch.js +12 -10
- package/dist/node_modules/d3-selection/src/selection/each.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/empty.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/enter.js +13 -11
- package/dist/node_modules/d3-selection/src/selection/exit.js +7 -5
- package/dist/node_modules/d3-selection/src/selection/filter.js +8 -6
- package/dist/node_modules/d3-selection/src/selection/html.js +8 -6
- package/dist/node_modules/d3-selection/src/selection/index.js +80 -79
- package/dist/node_modules/d3-selection/src/selection/insert.js +8 -6
- package/dist/node_modules/d3-selection/src/selection/iterator.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/join.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/lower.js +6 -4
- package/dist/node_modules/d3-selection/src/selection/merge.js +6 -4
- package/dist/node_modules/d3-selection/src/selection/node.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/nodes.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/on.js +11 -9
- package/dist/node_modules/d3-selection/src/selection/order.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/property.js +8 -6
- package/dist/node_modules/d3-selection/src/selection/raise.js +6 -4
- package/dist/node_modules/d3-selection/src/selection/remove.js +6 -4
- package/dist/node_modules/d3-selection/src/selection/select.js +8 -6
- package/dist/node_modules/d3-selection/src/selection/selectAll.js +11 -9
- package/dist/node_modules/d3-selection/src/selection/selectChild.js +10 -8
- package/dist/node_modules/d3-selection/src/selection/selectChildren.js +10 -8
- package/dist/node_modules/d3-selection/src/selection/size.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/sort.js +8 -6
- package/dist/node_modules/d3-selection/src/selection/sparse.js +4 -2
- package/dist/node_modules/d3-selection/src/selection/style.js +14 -12
- package/dist/node_modules/d3-selection/src/selection/text.js +8 -6
- package/dist/node_modules/d3-selection/src/selector.js +6 -4
- package/dist/node_modules/d3-selection/src/selectorAll.js +6 -4
- package/dist/node_modules/d3-selection/src/sourceEvent.js +4 -2
- package/dist/node_modules/d3-selection/src/window.js +4 -2
- package/dist/node_modules/d3-shape/src/arc.js +38 -36
- package/dist/node_modules/d3-shape/src/array.js +3 -2
- package/dist/node_modules/d3-shape/src/constant.js +4 -2
- package/dist/node_modules/d3-shape/src/curve/basis.js +10 -8
- package/dist/node_modules/d3-shape/src/curve/basisClosed.js +18 -16
- package/dist/node_modules/d3-shape/src/curve/basisOpen.js +9 -7
- package/dist/node_modules/d3-shape/src/curve/bump.js +15 -13
- package/dist/node_modules/d3-shape/src/curve/bundle.js +9 -7
- package/dist/node_modules/d3-shape/src/curve/cardinal.js +10 -8
- package/dist/node_modules/d3-shape/src/curve/cardinalClosed.js +12 -10
- package/dist/node_modules/d3-shape/src/curve/cardinalOpen.js +9 -7
- package/dist/node_modules/d3-shape/src/curve/catmullRom.js +19 -17
- package/dist/node_modules/d3-shape/src/curve/catmullRomClosed.js +13 -11
- package/dist/node_modules/d3-shape/src/curve/catmullRomOpen.js +10 -8
- package/dist/node_modules/d3-shape/src/curve/linear.js +7 -5
- package/dist/node_modules/d3-shape/src/curve/linearClosed.js +12 -10
- package/dist/node_modules/d3-shape/src/curve/monotone.js +23 -21
- package/dist/node_modules/d3-shape/src/curve/natural.js +9 -7
- package/dist/node_modules/d3-shape/src/curve/step.js +19 -17
- package/dist/node_modules/d3-shape/src/descending.js +4 -2
- package/dist/node_modules/d3-shape/src/identity.js +4 -2
- package/dist/node_modules/d3-shape/src/line.js +19 -17
- package/dist/node_modules/d3-shape/src/math.js +8 -6
- package/dist/node_modules/d3-shape/src/noop.js +4 -2
- package/dist/node_modules/d3-shape/src/path.js +6 -4
- package/dist/node_modules/d3-shape/src/pie.js +15 -13
- package/dist/node_modules/d3-shape/src/point.js +5 -3
- package/dist/node_modules/d3-time/src/day.js +17 -15
- package/dist/node_modules/d3-time/src/duration.js +4 -2
- package/dist/node_modules/d3-time/src/hour.js +16 -14
- package/dist/node_modules/d3-time/src/interval.js +7 -5
- package/dist/node_modules/d3-time/src/millisecond.js +7 -5
- package/dist/node_modules/d3-time/src/minute.js +16 -14
- package/dist/node_modules/d3-time/src/month.js +14 -12
- package/dist/node_modules/d3-time/src/second.js +9 -7
- package/dist/node_modules/d3-time/src/ticks.js +66 -64
- package/dist/node_modules/d3-time/src/week.js +21 -19
- package/dist/node_modules/d3-time/src/year.js +10 -8
- package/dist/node_modules/d3-time-format/src/defaultLocale.js +8 -6
- package/dist/node_modules/d3-time-format/src/locale.js +346 -344
- package/dist/node_modules/d3-timer/src/timeout.js +6 -4
- package/dist/node_modules/d3-timer/src/timer.js +33 -31
- package/dist/node_modules/d3-transition/src/index.js +2 -2
- package/dist/node_modules/d3-transition/src/interrupt.js +4 -3
- package/dist/node_modules/d3-transition/src/selection/index.js +5 -4
- package/dist/node_modules/d3-transition/src/selection/interrupt.js +6 -4
- package/dist/node_modules/d3-transition/src/selection/transition.js +16 -14
- package/dist/node_modules/d3-transition/src/transition/attr.js +28 -26
- package/dist/node_modules/d3-transition/src/transition/attrTween.js +13 -11
- package/dist/node_modules/d3-transition/src/transition/delay.js +11 -9
- package/dist/node_modules/d3-transition/src/transition/duration.js +11 -9
- package/dist/node_modules/d3-transition/src/transition/ease.js +8 -6
- package/dist/node_modules/d3-transition/src/transition/easeVarying.js +8 -6
- package/dist/node_modules/d3-transition/src/transition/end.js +6 -4
- package/dist/node_modules/d3-transition/src/transition/filter.js +8 -6
- package/dist/node_modules/d3-transition/src/transition/index.js +63 -61
- package/dist/node_modules/d3-transition/src/transition/interpolate.js +9 -7
- package/dist/node_modules/d3-transition/src/transition/merge.js +6 -4
- package/dist/node_modules/d3-transition/src/transition/on.js +9 -7
- package/dist/node_modules/d3-transition/src/transition/remove.js +6 -4
- package/dist/node_modules/d3-transition/src/transition/schedule.js +20 -18
- package/dist/node_modules/d3-transition/src/transition/select.js +10 -8
- package/dist/node_modules/d3-transition/src/transition/selectAll.js +10 -8
- package/dist/node_modules/d3-transition/src/transition/selection.js +7 -5
- package/dist/node_modules/d3-transition/src/transition/style.js +21 -19
- package/dist/node_modules/d3-transition/src/transition/styleTween.js +8 -6
- package/dist/node_modules/d3-transition/src/transition/text.js +8 -6
- package/dist/node_modules/d3-transition/src/transition/textTween.js +8 -6
- package/dist/node_modules/d3-transition/src/transition/transition.js +10 -8
- package/dist/node_modules/d3-transition/src/transition/tween.js +14 -12
- package/dist/node_modules/d3-zoom/src/constant.js +4 -2
- package/dist/node_modules/d3-zoom/src/event.js +4 -2
- package/dist/node_modules/d3-zoom/src/index.js +2 -2
- package/dist/node_modules/d3-zoom/src/noevent.js +5 -3
- package/dist/node_modules/d3-zoom/src/transform.js +12 -10
- package/dist/node_modules/d3-zoom/src/zoom.js +116 -114
- package/dist/node_modules/dagre-d3-es/src/dagre/acyclic.js +14 -12
- package/dist/node_modules/dagre-d3-es/src/dagre/add-border-segments.js +11 -9
- package/dist/node_modules/dagre-d3-es/src/dagre/coordinate-system.js +36 -34
- package/dist/node_modules/dagre-d3-es/src/dagre/data/list.js +9 -7
- package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +51 -49
- package/dist/node_modules/dagre-d3-es/src/dagre/index.js +2 -2
- package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +165 -163
- package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +45 -43
- package/dist/node_modules/dagre-d3-es/src/dagre/normalize.js +12 -10
- package/dist/node_modules/dagre-d3-es/src/dagre/order/add-subgraph-constraints.js +6 -4
- package/dist/node_modules/dagre-d3-es/src/dagre/order/barycenter.js +8 -6
- package/dist/node_modules/dagre-d3-es/src/dagre/order/build-layer-graph.js +14 -12
- package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +22 -20
- package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +36 -34
- package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +16 -14
- package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +32 -30
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +30 -28
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +20 -18
- package/dist/node_modules/dagre-d3-es/src/dagre/parent-dummy-chains.js +12 -10
- package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +150 -148
- package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +20 -18
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/feasible-tree.js +19 -17
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/index.js +16 -14
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +64 -63
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +15 -13
- package/dist/node_modules/dagre-d3-es/src/dagre/util.js +84 -82
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dfs.js +15 -13
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra.js +3 -2
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/floyd-warshall.js +3 -2
- 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 +6 -4
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/preorder.js +6 -4
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/topsort.js +13 -11
- package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +131 -129
- package/dist/node_modules/dagre-d3-es/src/graphlib/index.js +1 -1
- package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +23 -21
- package/dist/node_modules/dayjs/dayjs.min.js +6 -4
- package/dist/node_modules/dayjs/plugin/advancedFormat.js +6 -4
- package/dist/node_modules/dayjs/plugin/customParseFormat.js +6 -4
- package/dist/node_modules/dayjs/plugin/duration.js +6 -4
- package/dist/node_modules/dayjs/plugin/isoWeek.js +6 -4
- package/dist/node_modules/decode-named-character-reference/index.dom.js +7 -5
- package/dist/node_modules/devlop/lib/default.js +4 -2
- package/dist/node_modules/dompurify/dist/purify.es.js +203 -201
- package/dist/node_modules/entities/dist/esm/decode-codepoint.js +6 -4
- package/dist/node_modules/entities/dist/esm/decode.js +87 -85
- package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -2
- package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +6 -4
- package/dist/node_modules/extend/index.js +9 -6
- package/dist/node_modules/hast-util-from-dom/lib/index.js +32 -30
- package/dist/node_modules/hast-util-from-html-isomorphic/lib/browser.js +10 -8
- package/dist/node_modules/hast-util-from-parse5/lib/index.js +82 -80
- package/dist/node_modules/hast-util-is-element/lib/index.js +17 -15
- package/dist/node_modules/hast-util-parse-selector/lib/index.js +7 -5
- package/dist/node_modules/hast-util-raw/lib/index.js +136 -134
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +23 -21
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -3
- 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 +250 -249
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +6 -4
- 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 +17 -15
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1497 -1495
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +148 -146
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +20 -19
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +800 -798
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +33 -31
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +10 -8
- package/dist/node_modules/hast-util-sanitize/lib/index.js +106 -104
- package/dist/node_modules/hast-util-sanitize/lib/schema.js +12 -11
- package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -7
- package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -2
- package/dist/node_modules/hast-util-to-html/lib/handle/element.js +25 -23
- package/dist/node_modules/hast-util-to-html/lib/handle/index.js +22 -21
- package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +6 -4
- package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -2
- package/dist/node_modules/hast-util-to-html/lib/handle/text.js +7 -5
- package/dist/node_modules/hast-util-to-html/lib/index.js +38 -36
- package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +70 -68
- package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +6 -4
- package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +32 -30
- package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +10 -9
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +192 -190
- package/dist/node_modules/hast-util-to-parse5/lib/index.js +71 -69
- package/dist/node_modules/hast-util-to-text/lib/index.js +61 -59
- package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -6
- package/dist/node_modules/hastscript/lib/create-h.js +26 -24
- package/dist/node_modules/hastscript/lib/index.js +7 -5
- package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +4 -2
- package/dist/node_modules/html-url-attributes/lib/index.js +4 -2
- package/dist/node_modules/html-void-elements/index.js +4 -2
- package/dist/node_modules/inline-style-parser/cjs/index.js +6 -4
- package/dist/node_modules/internmap/src/index.js +22 -20
- package/dist/node_modules/katex/dist/katex.js +2914 -2873
- package/dist/node_modules/khroma/dist/channels/index.js +23 -21
- package/dist/node_modules/khroma/dist/channels/reusable.js +5 -3
- package/dist/node_modules/khroma/dist/channels/type.js +7 -5
- package/dist/node_modules/khroma/dist/color/hex.js +10 -8
- package/dist/node_modules/khroma/dist/color/hsl.js +19 -17
- package/dist/node_modules/khroma/dist/color/index.js +17 -15
- package/dist/node_modules/khroma/dist/color/keyword.js +10 -8
- package/dist/node_modules/khroma/dist/color/rgb.js +14 -12
- package/dist/node_modules/khroma/dist/constants.js +7 -5
- package/dist/node_modules/khroma/dist/methods/adjust.js +8 -6
- package/dist/node_modules/khroma/dist/methods/adjust_channel.js +8 -6
- package/dist/node_modules/khroma/dist/methods/change.js +9 -7
- package/dist/node_modules/khroma/dist/methods/channel.js +6 -4
- package/dist/node_modules/khroma/dist/methods/darken.js +5 -3
- package/dist/node_modules/khroma/dist/methods/invert.js +8 -6
- package/dist/node_modules/khroma/dist/methods/is_dark.js +5 -3
- package/dist/node_modules/khroma/dist/methods/is_light.js +5 -3
- package/dist/node_modules/khroma/dist/methods/lighten.js +5 -3
- package/dist/node_modules/khroma/dist/methods/luminance.js +8 -6
- package/dist/node_modules/khroma/dist/methods/mix.js +8 -6
- package/dist/node_modules/khroma/dist/methods/rgba.js +15 -13
- package/dist/node_modules/khroma/dist/methods/transparentize.js +5 -0
- package/dist/node_modules/khroma/dist/utils/channel.js +8 -6
- package/dist/node_modules/khroma/dist/utils/index.js +10 -8
- package/dist/node_modules/khroma/dist/utils/lang.js +4 -2
- package/dist/node_modules/khroma/dist/utils/unit.js +4 -2
- package/dist/node_modules/langium/lib/default-module.js +66 -64
- package/dist/node_modules/langium/lib/dependency-injection.js +37 -39
- package/dist/node_modules/langium/lib/documentation/comment-provider.js +7 -5
- package/dist/node_modules/langium/lib/documentation/documentation-provider.js +8 -6
- package/dist/node_modules/langium/lib/documentation/jsdoc.js +204 -202
- package/dist/node_modules/langium/lib/languages/generated/ast.js +343 -534
- package/dist/node_modules/langium/lib/languages/grammar-config.js +10 -8
- package/dist/node_modules/langium/lib/parser/async-parser.js +4 -76
- package/dist/node_modules/langium/lib/parser/completion-parser-builder.js +8 -6
- package/dist/node_modules/langium/lib/parser/cst-node-builder.js +56 -54
- package/dist/node_modules/langium/lib/parser/langium-parser-builder.js +9 -7
- package/dist/node_modules/langium/lib/parser/langium-parser.js +190 -188
- package/dist/node_modules/langium/lib/parser/lexer.js +25 -25
- package/dist/node_modules/langium/lib/parser/parser-builder-base.js +204 -203
- package/dist/node_modules/langium/lib/parser/token-builder.js +32 -30
- package/dist/node_modules/langium/lib/parser/value-converter.js +17 -15
- package/dist/node_modules/langium/lib/references/linker.js +104 -103
- package/dist/node_modules/langium/lib/references/name-provider.js +9 -7
- package/dist/node_modules/langium/lib/references/references.js +53 -51
- package/dist/node_modules/langium/lib/references/scope-computation.js +14 -12
- package/dist/node_modules/langium/lib/references/scope-provider.js +13 -11
- package/dist/node_modules/langium/lib/references/scope.js +27 -56
- package/dist/node_modules/langium/lib/serializer/hydrator.js +71 -69
- package/dist/node_modules/langium/lib/serializer/json-serializer.js +23 -21
- package/dist/node_modules/langium/lib/service-registry.js +7 -5
- package/dist/node_modules/langium/lib/syntax-tree.js +33 -31
- package/dist/node_modules/langium/lib/utils/ast-utils.js +77 -112
- package/dist/node_modules/langium/lib/utils/caching.js +33 -42
- package/dist/node_modules/langium/lib/utils/cancellation.js +7 -5
- package/dist/node_modules/langium/lib/utils/collections.js +35 -33
- package/dist/node_modules/langium/lib/utils/cst-utils.js +46 -161
- package/dist/node_modules/langium/lib/utils/disposable.js +5 -3
- package/dist/node_modules/langium/lib/utils/errors.js +8 -9
- package/dist/node_modules/langium/lib/utils/event.js +7 -5
- package/dist/node_modules/langium/lib/utils/grammar-loader.js +16 -14
- package/dist/node_modules/langium/lib/utils/grammar-utils.js +172 -249
- package/dist/node_modules/langium/lib/utils/promise-utils.js +18 -19
- package/dist/node_modules/langium/lib/utils/regexp-utils.js +53 -76
- package/dist/node_modules/langium/lib/utils/stream.js +155 -153
- package/dist/node_modules/langium/lib/utils/uri-utils.js +14 -12
- package/dist/node_modules/langium/lib/validation/document-validator.js +104 -103
- package/dist/node_modules/langium/lib/validation/validation-registry.js +15 -14
- package/dist/node_modules/langium/lib/workspace/ast-descriptions.js +19 -17
- package/dist/node_modules/langium/lib/workspace/ast-node-locator.js +4 -2
- package/dist/node_modules/langium/lib/workspace/configuration.js +7 -5
- package/dist/node_modules/langium/lib/workspace/document-builder.js +131 -134
- package/dist/node_modules/langium/lib/workspace/documents.js +85 -83
- package/dist/node_modules/langium/lib/workspace/file-system-provider.js +5 -4
- package/dist/node_modules/langium/lib/workspace/index-manager.js +16 -14
- package/dist/node_modules/langium/lib/workspace/workspace-lock.js +11 -9
- package/dist/node_modules/langium/lib/workspace/workspace-manager.js +35 -33
- package/dist/node_modules/layout-base/layout-base.js +6 -4
- package/dist/node_modules/lodash-es/_DataView.js +6 -4
- package/dist/node_modules/lodash-es/_Hash.js +14 -13
- package/dist/node_modules/lodash-es/_ListCache.js +14 -13
- package/dist/node_modules/lodash-es/_Map.js +6 -4
- package/dist/node_modules/lodash-es/_MapCache.js +14 -13
- package/dist/node_modules/lodash-es/_Promise.js +6 -4
- package/dist/node_modules/lodash-es/_Set.js +6 -4
- package/dist/node_modules/lodash-es/_SetCache.js +10 -9
- package/dist/node_modules/lodash-es/_Stack.js +12 -11
- package/dist/node_modules/lodash-es/_Symbol.js +5 -3
- package/dist/node_modules/lodash-es/_Uint8Array.js +5 -3
- package/dist/node_modules/lodash-es/_WeakMap.js +6 -4
- package/dist/node_modules/lodash-es/_apply.js +4 -3
- package/dist/node_modules/lodash-es/_arrayEach.js +4 -3
- package/dist/node_modules/lodash-es/_arrayFilter.js +4 -3
- package/dist/node_modules/lodash-es/_arrayIncludes.js +6 -5
- package/dist/node_modules/lodash-es/_arrayIncludesWith.js +4 -3
- package/dist/node_modules/lodash-es/_arrayLikeKeys.js +13 -12
- package/dist/node_modules/lodash-es/_arrayMap.js +4 -3
- package/dist/node_modules/lodash-es/_arrayPush.js +4 -3
- package/dist/node_modules/lodash-es/_arrayReduce.js +4 -3
- package/dist/node_modules/lodash-es/_arraySome.js +4 -3
- package/dist/node_modules/lodash-es/_asciiSize.js +5 -3
- package/dist/node_modules/lodash-es/_assignMergeValue.js +7 -6
- package/dist/node_modules/lodash-es/_assignValue.js +8 -7
- package/dist/node_modules/lodash-es/_assocIndexOf.js +6 -5
- package/dist/node_modules/lodash-es/_baseAssign.js +7 -6
- package/dist/node_modules/lodash-es/_baseAssignIn.js +7 -6
- package/dist/node_modules/lodash-es/_baseAssignValue.js +6 -5
- package/dist/node_modules/lodash-es/_baseClone.js +51 -50
- package/dist/node_modules/lodash-es/_baseCreate.js +7 -5
- package/dist/node_modules/lodash-es/_baseEach.js +6 -4
- package/dist/node_modules/lodash-es/_baseExtremum.js +6 -5
- package/dist/node_modules/lodash-es/_baseFilter.js +6 -5
- package/dist/node_modules/lodash-es/_baseFindIndex.js +4 -3
- package/dist/node_modules/lodash-es/_baseFlatten.js +8 -7
- package/dist/node_modules/lodash-es/_baseFor.js +5 -3
- package/dist/node_modules/lodash-es/_baseForOwn.js +7 -6
- package/dist/node_modules/lodash-es/_baseGet.js +8 -7
- package/dist/node_modules/lodash-es/_baseGetAllKeys.js +7 -6
- package/dist/node_modules/lodash-es/_baseGetTag.js +9 -8
- package/dist/node_modules/lodash-es/_baseGt.js +4 -3
- package/dist/node_modules/lodash-es/_baseHas.js +6 -5
- package/dist/node_modules/lodash-es/_baseHasIn.js +4 -3
- package/dist/node_modules/lodash-es/_baseIndexOf.js +8 -7
- package/dist/node_modules/lodash-es/_baseIsArguments.js +8 -7
- package/dist/node_modules/lodash-es/_baseIsEqual.js +7 -6
- package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +23 -22
- package/dist/node_modules/lodash-es/_baseIsMap.js +8 -7
- package/dist/node_modules/lodash-es/_baseIsMatch.js +9 -8
- package/dist/node_modules/lodash-es/_baseIsNaN.js +4 -3
- package/dist/node_modules/lodash-es/_baseIsNative.js +10 -9
- package/dist/node_modules/lodash-es/_baseIsSet.js +8 -7
- package/dist/node_modules/lodash-es/_baseIsTypedArray.js +10 -9
- package/dist/node_modules/lodash-es/_baseIteratee.js +10 -9
- package/dist/node_modules/lodash-es/_baseKeys.js +9 -8
- package/dist/node_modules/lodash-es/_baseKeysIn.js +11 -10
- package/dist/node_modules/lodash-es/_baseLt.js +4 -3
- package/dist/node_modules/lodash-es/_baseMap.js +8 -7
- package/dist/node_modules/lodash-es/_baseMatches.js +10 -9
- package/dist/node_modules/lodash-es/_baseMatchesProperty.js +15 -14
- package/dist/node_modules/lodash-es/_baseMerge.js +16 -15
- package/dist/node_modules/lodash-es/_baseMergeDeep.js +24 -23
- package/dist/node_modules/lodash-es/_baseOrderBy.js +23 -22
- package/dist/node_modules/lodash-es/_basePick.js +8 -7
- package/dist/node_modules/lodash-es/_basePickBy.js +9 -8
- package/dist/node_modules/lodash-es/_baseProperty.js +4 -3
- package/dist/node_modules/lodash-es/_basePropertyDeep.js +6 -5
- package/dist/node_modules/lodash-es/_baseRange.js +6 -5
- package/dist/node_modules/lodash-es/_baseReduce.js +4 -3
- package/dist/node_modules/lodash-es/_baseRest.js +8 -7
- package/dist/node_modules/lodash-es/_baseSet.js +14 -13
- package/dist/node_modules/lodash-es/_baseSetToString.js +10 -8
- package/dist/node_modules/lodash-es/_baseSortBy.js +4 -3
- package/dist/node_modules/lodash-es/_baseTimes.js +4 -3
- package/dist/node_modules/lodash-es/_baseToString.js +13 -12
- package/dist/node_modules/lodash-es/_baseTrim.js +7 -6
- package/dist/node_modules/lodash-es/_baseUnary.js +4 -3
- package/dist/node_modules/lodash-es/_baseUniq.js +17 -16
- package/dist/node_modules/lodash-es/_baseValues.js +6 -5
- package/dist/node_modules/lodash-es/_baseZipObject.js +4 -3
- package/dist/node_modules/lodash-es/_cacheHas.js +4 -3
- package/dist/node_modules/lodash-es/_castFunction.js +6 -5
- package/dist/node_modules/lodash-es/_castPath.js +9 -8
- package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +6 -5
- package/dist/node_modules/lodash-es/_cloneBuffer.js +9 -8
- package/dist/node_modules/lodash-es/_cloneDataView.js +6 -5
- package/dist/node_modules/lodash-es/_cloneRegExp.js +6 -5
- package/dist/node_modules/lodash-es/_cloneSymbol.js +7 -6
- package/dist/node_modules/lodash-es/_cloneTypedArray.js +6 -5
- package/dist/node_modules/lodash-es/_compareAscending.js +6 -5
- package/dist/node_modules/lodash-es/_compareMultiple.js +6 -5
- package/dist/node_modules/lodash-es/_copyArray.js +4 -3
- package/dist/node_modules/lodash-es/_copyObject.js +7 -6
- package/dist/node_modules/lodash-es/_copySymbols.js +7 -6
- package/dist/node_modules/lodash-es/_copySymbolsIn.js +7 -6
- package/dist/node_modules/lodash-es/_coreJsData.js +5 -3
- package/dist/node_modules/lodash-es/_createAssigner.js +8 -7
- package/dist/node_modules/lodash-es/_createBaseEach.js +6 -5
- package/dist/node_modules/lodash-es/_createBaseFor.js +4 -3
- package/dist/node_modules/lodash-es/_createFind.js +10 -9
- package/dist/node_modules/lodash-es/_createRange.js +8 -7
- package/dist/node_modules/lodash-es/_createSet.js +9 -7
- package/dist/node_modules/lodash-es/_defineProperty.js +6 -4
- package/dist/node_modules/lodash-es/_equalArrays.js +12 -11
- package/dist/node_modules/lodash-es/_equalByTag.js +29 -28
- package/dist/node_modules/lodash-es/_equalObjects.js +9 -8
- package/dist/node_modules/lodash-es/_flatRest.js +8 -7
- package/dist/node_modules/lodash-es/_freeGlobal.js +4 -2
- package/dist/node_modules/lodash-es/_getAllKeys.js +8 -7
- package/dist/node_modules/lodash-es/_getAllKeysIn.js +8 -7
- package/dist/node_modules/lodash-es/_getMapData.js +6 -5
- package/dist/node_modules/lodash-es/_getMatchData.js +8 -7
- package/dist/node_modules/lodash-es/_getNative.js +8 -7
- package/dist/node_modules/lodash-es/_getPrototype.js +5 -3
- package/dist/node_modules/lodash-es/_getRawTag.js +10 -9
- package/dist/node_modules/lodash-es/_getSymbols.js +9 -7
- package/dist/node_modules/lodash-es/_getSymbolsIn.js +10 -8
- package/dist/node_modules/lodash-es/_getTag.js +21 -19
- package/dist/node_modules/lodash-es/_getValue.js +4 -3
- package/dist/node_modules/lodash-es/_hasPath.js +13 -12
- package/dist/node_modules/lodash-es/_hasUnicode.js +6 -5
- package/dist/node_modules/lodash-es/_hashClear.js +6 -5
- package/dist/node_modules/lodash-es/_hashDelete.js +5 -4
- package/dist/node_modules/lodash-es/_hashGet.js +9 -8
- package/dist/node_modules/lodash-es/_hashHas.js +7 -6
- package/dist/node_modules/lodash-es/_hashSet.js +7 -6
- package/dist/node_modules/lodash-es/_initCloneArray.js +6 -5
- package/dist/node_modules/lodash-es/_initCloneByTag.js +29 -28
- package/dist/node_modules/lodash-es/_initCloneObject.js +8 -7
- package/dist/node_modules/lodash-es/_isFlattenable.js +9 -8
- package/dist/node_modules/lodash-es/_isIndex.js +6 -5
- package/dist/node_modules/lodash-es/_isIterateeCall.js +10 -9
- package/dist/node_modules/lodash-es/_isKey.js +9 -8
- package/dist/node_modules/lodash-es/_isKeyable.js +4 -3
- package/dist/node_modules/lodash-es/_isMasked.js +9 -8
- package/dist/node_modules/lodash-es/_isPrototype.js +6 -5
- package/dist/node_modules/lodash-es/_isStrictComparable.js +6 -5
- package/dist/node_modules/lodash-es/_listCacheClear.js +4 -3
- package/dist/node_modules/lodash-es/_listCacheDelete.js +8 -7
- package/dist/node_modules/lodash-es/_listCacheGet.js +6 -5
- package/dist/node_modules/lodash-es/_listCacheHas.js +6 -5
- package/dist/node_modules/lodash-es/_listCacheSet.js +6 -5
- package/dist/node_modules/lodash-es/_mapCacheClear.js +10 -9
- package/dist/node_modules/lodash-es/_mapCacheDelete.js +7 -6
- package/dist/node_modules/lodash-es/_mapCacheGet.js +6 -5
- package/dist/node_modules/lodash-es/_mapCacheHas.js +6 -5
- package/dist/node_modules/lodash-es/_mapCacheSet.js +6 -5
- package/dist/node_modules/lodash-es/_mapToArray.js +4 -3
- package/dist/node_modules/lodash-es/_matchesStrictComparable.js +4 -3
- package/dist/node_modules/lodash-es/_memoizeCapped.js +8 -7
- package/dist/node_modules/lodash-es/_nativeCreate.js +5 -3
- package/dist/node_modules/lodash-es/_nativeKeys.js +5 -3
- package/dist/node_modules/lodash-es/_nativeKeysIn.js +4 -3
- package/dist/node_modules/lodash-es/_nodeUtil.js +6 -4
- package/dist/node_modules/lodash-es/_objectToString.js +6 -5
- package/dist/node_modules/lodash-es/_overArg.js +4 -3
- package/dist/node_modules/lodash-es/_overRest.js +9 -8
- package/dist/node_modules/lodash-es/_root.js +5 -3
- package/dist/node_modules/lodash-es/_safeGet.js +4 -3
- package/dist/node_modules/lodash-es/_setCacheAdd.js +6 -5
- package/dist/node_modules/lodash-es/_setCacheHas.js +4 -3
- package/dist/node_modules/lodash-es/_setToArray.js +4 -3
- package/dist/node_modules/lodash-es/_setToString.js +6 -4
- package/dist/node_modules/lodash-es/_shortOut.js +7 -6
- package/dist/node_modules/lodash-es/_stackClear.js +6 -5
- package/dist/node_modules/lodash-es/_stackDelete.js +4 -3
- package/dist/node_modules/lodash-es/_stackGet.js +4 -3
- package/dist/node_modules/lodash-es/_stackHas.js +4 -3
- package/dist/node_modules/lodash-es/_stackSet.js +11 -10
- package/dist/node_modules/lodash-es/_strictIndexOf.js +4 -3
- package/dist/node_modules/lodash-es/_stringSize.js +8 -7
- package/dist/node_modules/lodash-es/_stringToPath.js +7 -5
- package/dist/node_modules/lodash-es/_toKey.js +8 -7
- package/dist/node_modules/lodash-es/_toSource.js +8 -7
- package/dist/node_modules/lodash-es/_trimmedEndIndex.js +6 -5
- package/dist/node_modules/lodash-es/_unicodeSize.js +17 -16
- package/dist/node_modules/lodash-es/clone.js +7 -6
- package/dist/node_modules/lodash-es/cloneDeep.js +7 -6
- package/dist/node_modules/lodash-es/constant.js +4 -3
- package/dist/node_modules/lodash-es/defaults.js +13 -11
- package/dist/node_modules/lodash-es/eq.js +4 -3
- package/dist/node_modules/lodash-es/filter.js +9 -8
- package/dist/node_modules/lodash-es/find.js +6 -4
- package/dist/node_modules/lodash-es/findIndex.js +10 -9
- package/dist/node_modules/lodash-es/flatMap.js +7 -6
- package/dist/node_modules/lodash-es/flatten.js +6 -5
- package/dist/node_modules/lodash-es/forEach.js +9 -8
- package/dist/node_modules/lodash-es/forIn.js +8 -7
- package/dist/node_modules/lodash-es/forOwn.js +7 -6
- package/dist/node_modules/lodash-es/get.js +6 -5
- package/dist/node_modules/lodash-es/has.js +7 -6
- package/dist/node_modules/lodash-es/hasIn.js +7 -6
- package/dist/node_modules/lodash-es/identity.js +4 -3
- package/dist/node_modules/lodash-es/isArguments.js +8 -6
- package/dist/node_modules/lodash-es/isArray.js +4 -2
- package/dist/node_modules/lodash-es/isArrayLike.js +7 -6
- package/dist/node_modules/lodash-es/isArrayLikeObject.js +7 -6
- package/dist/node_modules/lodash-es/isBuffer.js +6 -4
- package/dist/node_modules/lodash-es/isEmpty.js +18 -17
- package/dist/node_modules/lodash-es/isFunction.js +10 -9
- package/dist/node_modules/lodash-es/isLength.js +6 -5
- package/dist/node_modules/lodash-es/isMap.js +7 -5
- package/dist/node_modules/lodash-es/isObject.js +4 -3
- package/dist/node_modules/lodash-es/isObjectLike.js +4 -3
- package/dist/node_modules/lodash-es/isPlainObject.js +13 -12
- package/dist/node_modules/lodash-es/isSet.js +7 -5
- package/dist/node_modules/lodash-es/isString.js +9 -8
- package/dist/node_modules/lodash-es/isSymbol.js +8 -7
- package/dist/node_modules/lodash-es/isTypedArray.js +7 -5
- package/dist/node_modules/lodash-es/isUndefined.js +4 -3
- package/dist/node_modules/lodash-es/keys.js +8 -7
- package/dist/node_modules/lodash-es/keysIn.js +8 -7
- package/dist/node_modules/lodash-es/last.js +4 -3
- package/dist/node_modules/lodash-es/map.js +9 -8
- package/dist/node_modules/lodash-es/mapValues.js +9 -8
- package/dist/node_modules/lodash-es/max.js +8 -7
- package/dist/node_modules/lodash-es/memoize.js +9 -8
- package/dist/node_modules/lodash-es/merge.js +7 -5
- package/dist/node_modules/lodash-es/min.js +8 -7
- package/dist/node_modules/lodash-es/minBy.js +8 -7
- package/dist/node_modules/lodash-es/noop.js +4 -3
- package/dist/node_modules/lodash-es/now.js +6 -4
- package/dist/node_modules/lodash-es/pick.js +7 -5
- package/dist/node_modules/lodash-es/property.js +9 -8
- package/dist/node_modules/lodash-es/range.js +5 -3
- package/dist/node_modules/lodash-es/reduce.js +11 -10
- package/dist/node_modules/lodash-es/size.js +13 -12
- package/dist/node_modules/lodash-es/sortBy.js +9 -7
- package/dist/node_modules/lodash-es/stubArray.js +4 -3
- package/dist/node_modules/lodash-es/stubFalse.js +4 -3
- package/dist/node_modules/lodash-es/toFinite.js +7 -6
- package/dist/node_modules/lodash-es/toInteger.js +6 -5
- package/dist/node_modules/lodash-es/toNumber.js +14 -13
- package/dist/node_modules/lodash-es/toPlainObject.js +7 -6
- package/dist/node_modules/lodash-es/toString.js +6 -5
- package/dist/node_modules/lodash-es/union.js +9 -7
- package/dist/node_modules/lodash-es/uniqBy.js +7 -6
- package/dist/node_modules/lodash-es/uniqueId.js +8 -7
- package/dist/node_modules/lodash-es/values.js +7 -6
- package/dist/node_modules/lodash-es/zipObject.js +7 -6
- package/dist/node_modules/longest-streak/index.js +4 -2
- package/dist/node_modules/markdown-table/index.js +11 -9
- package/dist/node_modules/marked/lib/marked.esm.js +687 -685
- package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +14 -12
- package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +4 -2
- package/dist/node_modules/mdast-util-from-markdown/lib/index.js +182 -180
- package/dist/node_modules/mdast-util-gfm/lib/index.js +20 -18
- package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +69 -67
- package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +47 -45
- package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +15 -13
- package/dist/node_modules/mdast-util-gfm-table/lib/index.js +30 -28
- package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +16 -14
- package/dist/node_modules/mdast-util-math/lib/index.js +15 -13
- package/dist/node_modules/mdast-util-phrasing/lib/index.js +5 -3
- package/dist/node_modules/mdast-util-to-hast/lib/footer.js +11 -9
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +6 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +8 -6
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +6 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +55 -53
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +8 -6
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +6 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +15 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +6 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +6 -4
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/index.js +8 -6
- package/dist/node_modules/mdast-util-to-hast/lib/revert.js +4 -2
- package/dist/node_modules/mdast-util-to-hast/lib/state.js +61 -59
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +18 -16
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +14 -12
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +8 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +8 -6
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +43 -41
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +7 -5
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +11 -9
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +7 -5
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +12 -10
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +14 -12
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +7 -5
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +4 -2
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +8 -7
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +6 -4
- package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +6 -4
- package/dist/node_modules/mdast-util-to-string/lib/index.js +14 -12
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-Q4EWVU46.js +695 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-DXYQGD6D.js +3038 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{c4Diagram-YG6GDRKO.js → c4Diagram-AHTNJAMY.js} +581 -573
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-336JU56O.js +49 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-426QAEUC.js +11 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4BX2VUAB.js +6 -4
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-B4BG7PRW.js → chunk-4TB4RGXK.js} +590 -444
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +7 -5
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5FUZZQ4R.js +3640 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5PVQY5BW.js +342 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-AGHRB4JF.js +22 -20
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-BSJP7CBP.js +82 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EDXVE4YY.js +25 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ENJZ2VHE.js +570 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-FMBD7UC4.js +5 -3
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ICPOFSXX.js +2348 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-OYMX7WX6.js +2014 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QZHKN3VN.js +8 -4
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-U2HBQHQK.js +274 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-X2U36JSP.js +67 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-XPW4576I.js +1146 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-YZCP3GAM.js +62 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZZ45TVLE.js +32 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-6PBFFD2Q.js +29 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-HSJHXN6E.js +29 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +116 -114
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-KV5264BT.js +265 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-5BDNPKRD.js +101 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-G4DWMVQ6.js +284 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-MMDJMWI5.js +213 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-TYMM5635.js +133 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{erDiagram-Q2GNP2WA.js → erDiagram-SMLLAGMA.js} +549 -445
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{flowDiagram-NV44I4VS.js → flowDiagram-DWJPFMVM.js} +1366 -1345
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-T4ZO3ILL.js +1720 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-UUTBAWPF.js +730 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-42DDH7IO.js +19 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-UXIWVN3A.js +718 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-VCZTEJTY.js +885 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{kanban-definition-3W4ZIXB7.js → kanban-definition-6JOO6SKY.js} +124 -118
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{mindmap-definition-VGOIOE7T.js → mindmap-definition-QFDTVHPH.js} +172 -122
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-DEJITSTG.js +119 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{quadrantDiagram-AYHSOK5B.js → quadrantDiagram-34T5L4WZ.js} +279 -273
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{requirementDiagram-UZGBJVZJ.js → requirementDiagram-MS252O5E.js} +100 -66
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-XADWPNL6.js +529 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-FGHM5R23.js +4159 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FHFEXIEX.js +222 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-QKLJ7IA2.js +27 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-GMOUNBTQ.js +1073 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-DHZGUBPP.js +961 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-NUSXRM2D.js +578 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-5P7HB3ND.js +2000 -0
- package/dist/node_modules/mermaid/dist/mermaid.core.js +492 -445
- package/dist/node_modules/micromark/lib/constructs.js +80 -79
- package/dist/node_modules/micromark/lib/create-tokenizer.js +14 -12
- package/dist/node_modules/micromark/lib/initialize/content.js +9 -7
- package/dist/node_modules/micromark/lib/initialize/document.js +15 -14
- package/dist/node_modules/micromark/lib/initialize/flow.js +9 -7
- package/dist/node_modules/micromark/lib/initialize/text.js +8 -6
- package/dist/node_modules/micromark/lib/parse.js +20 -18
- package/dist/node_modules/micromark/lib/postprocess.js +6 -4
- package/dist/node_modules/micromark/lib/preprocess.js +6 -4
- package/dist/node_modules/micromark-core-commonmark/lib/attention.js +20 -18
- package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +17 -15
- package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +11 -9
- package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +15 -13
- package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +8 -6
- package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +16 -14
- package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +22 -21
- package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +16 -15
- package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +13 -11
- package/dist/node_modules/micromark-core-commonmark/lib/content.js +18 -17
- package/dist/node_modules/micromark-core-commonmark/lib/definition.js +30 -29
- package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +8 -6
- package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +15 -13
- package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +68 -67
- package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +66 -64
- package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +112 -111
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +8 -6
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +8 -6
- package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +8 -6
- package/dist/node_modules/micromark-core-commonmark/lib/list.js +32 -31
- package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +12 -10
- package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +11 -9
- package/dist/node_modules/micromark-extension-gfm/index.js +16 -14
- package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +122 -120
- package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +33 -31
- package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +11 -9
- package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +6 -4
- package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +4 -2
- package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +36 -34
- package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +20 -18
- package/dist/node_modules/micromark-extension-math/lib/math-flow.js +21 -20
- package/dist/node_modules/micromark-extension-math/lib/math-text.js +11 -9
- package/dist/node_modules/micromark-extension-math/lib/syntax.js +8 -6
- package/dist/node_modules/micromark-factory-destination/index.js +10 -8
- package/dist/node_modules/micromark-factory-label/index.js +7 -5
- package/dist/node_modules/micromark-factory-space/index.js +7 -5
- package/dist/node_modules/micromark-factory-title/index.js +8 -6
- package/dist/node_modules/micromark-factory-whitespace/index.js +7 -5
- package/dist/node_modules/micromark-util-character/index.js +14 -12
- package/dist/node_modules/micromark-util-chunked/index.js +6 -4
- package/dist/node_modules/micromark-util-classify-character/index.js +7 -5
- package/dist/node_modules/micromark-util-combine-extensions/index.js +13 -11
- package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +4 -2
- package/dist/node_modules/micromark-util-decode-string/index.js +11 -9
- package/dist/node_modules/micromark-util-html-tag-name/index.js +4 -2
- package/dist/node_modules/micromark-util-normalize-identifier/index.js +4 -2
- package/dist/node_modules/micromark-util-resolve-all/index.js +4 -2
- package/dist/node_modules/micromark-util-sanitize-uri/index.js +6 -4
- package/dist/node_modules/micromark-util-subtokenize/index.js +10 -8
- package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +10 -8
- package/dist/node_modules/motion/dist/es/react.js +2 -2
- package/dist/node_modules/nanoid/index.browser.js +6 -4
- package/dist/node_modules/nanoid/url-alphabet/index.js +4 -2
- package/dist/node_modules/property-information/index.js +25 -23
- package/dist/node_modules/property-information/lib/aria.js +41 -39
- package/dist/node_modules/property-information/lib/find.js +18 -16
- package/dist/node_modules/property-information/lib/hast-to-react.js +4 -2
- package/dist/node_modules/property-information/lib/html.js +96 -94
- package/dist/node_modules/property-information/lib/normalize.js +4 -2
- package/dist/node_modules/property-information/lib/svg.js +79 -77
- package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +6 -4
- package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +4 -2
- package/dist/node_modules/property-information/lib/util/create.js +10 -8
- package/dist/node_modules/property-information/lib/util/defined-info.js +13 -11
- package/dist/node_modules/property-information/lib/util/info.js +5 -3
- package/dist/node_modules/property-information/lib/util/merge.js +6 -4
- package/dist/node_modules/property-information/lib/util/schema.js +5 -3
- package/dist/node_modules/property-information/lib/util/types.js +15 -14
- package/dist/node_modules/property-information/lib/xlink.js +5 -3
- package/dist/node_modules/property-information/lib/xml.js +5 -3
- package/dist/node_modules/property-information/lib/xmlns.js +7 -5
- package/dist/node_modules/rehype-harden/dist/index.js +47 -45
- package/dist/node_modules/rehype-katex/lib/index.js +25 -23
- package/dist/node_modules/rehype-raw/lib/index.js +6 -4
- package/dist/node_modules/rehype-sanitize/lib/index.js +6 -4
- package/dist/node_modules/remark-gfm/lib/index.js +9 -7
- package/dist/node_modules/remark-math/lib/index.js +9 -7
- package/dist/node_modules/remark-parse/lib/index.js +6 -4
- package/dist/node_modules/remark-rehype/lib/index.js +7 -5
- package/dist/node_modules/remend/dist/index.js +368 -297
- package/dist/node_modules/roughjs/bundled/rough.esm.js +877 -875
- package/dist/node_modules/shiki/dist/bundle-full.js +13 -11
- package/dist/node_modules/shiki/dist/chunk-CtajNgzt.js +17 -0
- package/dist/node_modules/shiki/dist/engine-oniguruma.js +7 -0
- package/dist/node_modules/shiki/dist/{langs.js → langs-bundle-full-DfKZStlK.js} +8 -6
- package/dist/node_modules/shiki/dist/themes.js +6 -4
- package/dist/node_modules/shiki/dist/wasm.js +2 -2
- package/dist/node_modules/space-separated-tokens/index.js +5 -3
- package/dist/node_modules/streamdown/dist/chunk-BO2N2NFS.js +2500 -0
- package/dist/node_modules/streamdown/dist/highlighted-body-OFNGDK62.js +37 -0
- package/dist/node_modules/streamdown/dist/index.js +1 -1
- package/dist/node_modules/streamdown/dist/mermaid-GHXKKRXX.js +3 -0
- package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +701 -699
- package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +4 -2
- package/dist/node_modules/stringify-entities/lib/core.js +18 -16
- package/dist/node_modules/stringify-entities/lib/index.js +7 -5
- package/dist/node_modules/stringify-entities/lib/util/format-smart.js +10 -8
- package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -4
- package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -4
- package/dist/node_modules/stringify-entities/lib/util/to-named.js +14 -12
- package/dist/node_modules/style-to-js/cjs/index.js +9 -7
- package/dist/node_modules/style-to-js/cjs/utilities.js +6 -4
- package/dist/node_modules/style-to-object/cjs/index.js +8 -6
- package/dist/node_modules/stylis/src/Enum.js +4 -2
- package/dist/node_modules/stylis/src/Parser.js +38 -36
- package/dist/node_modules/stylis/src/Serializer.js +17 -15
- package/dist/node_modules/stylis/src/Tokenizer.js +53 -51
- package/dist/node_modules/stylis/src/Utility.js +17 -15
- package/dist/node_modules/trim-lines/index.js +10 -8
- package/dist/node_modules/trough/lib/index.js +6 -4
- package/dist/node_modules/ts-dedent/esm/index.js +4 -2
- package/dist/node_modules/unified/lib/callable-instance.js +4 -2
- package/dist/node_modules/unified/lib/index.js +102 -101
- package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +4 -2
- package/dist/node_modules/unist-util-find-after/lib/index.js +6 -4
- package/dist/node_modules/unist-util-is/lib/index.js +31 -29
- package/dist/node_modules/unist-util-position/lib/index.js +7 -5
- package/dist/node_modules/unist-util-stringify-position/lib/index.js +10 -8
- package/dist/node_modules/unist-util-visit/lib/index.js +6 -4
- package/dist/node_modules/unist-util-visit-parents/lib/color.js +4 -2
- package/dist/node_modules/unist-util-visit-parents/lib/index.js +21 -20
- package/dist/node_modules/uuid/dist/esm-browser/native.js +3 -2
- package/dist/node_modules/uuid/dist/esm-browser/rng.js +8 -6
- package/dist/node_modules/uuid/dist/esm-browser/stringify.js +7 -5
- package/dist/node_modules/uuid/dist/esm-browser/v4.js +10 -9
- package/dist/node_modules/vaul/dist/index.js +276 -274
- package/dist/node_modules/vfile/lib/index.js +44 -42
- package/dist/node_modules/vfile/lib/minpath.browser.js +22 -20
- package/dist/node_modules/vfile/lib/minproc.browser.js +5 -3
- package/dist/node_modules/vfile/lib/minurl.browser.js +8 -6
- package/dist/node_modules/vfile/lib/minurl.shared.js +4 -2
- package/dist/node_modules/vfile-location/lib/index.js +7 -5
- package/dist/node_modules/vfile-message/lib/index.js +7 -5
- package/dist/node_modules/vscode-jsonrpc/browser.js +8 -6
- package/dist/node_modules/vscode-jsonrpc/lib/browser/main.js +11 -9
- package/dist/node_modules/vscode-jsonrpc/lib/browser/ril.js +8 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/api.js +28 -26
- package/dist/node_modules/vscode-jsonrpc/lib/common/cancellation.js +17 -15
- package/dist/node_modules/vscode-jsonrpc/lib/common/connection.js +13 -11
- package/dist/node_modules/vscode-jsonrpc/lib/common/disposable.js +6 -4
- package/dist/node_modules/vscode-jsonrpc/lib/common/events.js +8 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/is.js +6 -4
- package/dist/node_modules/vscode-jsonrpc/lib/common/linkedMap.js +6 -4
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js +6 -4
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageReader.js +11 -9
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageWriter.js +31 -29
- package/dist/node_modules/vscode-jsonrpc/lib/common/messages.js +8 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/ral.js +6 -4
- package/dist/node_modules/vscode-jsonrpc/lib/common/semaphore.js +8 -6
- package/dist/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/browser/main.js +10 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/api.js +23 -21
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/connection.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/messages.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js +14 -12
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineCompletion.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.js +55 -53
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js +10 -8
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js +12 -10
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js +8 -6
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js +6 -4
- package/dist/node_modules/vscode-languageserver-textdocument/lib/esm/main.js +21 -19
- package/dist/node_modules/vscode-languageserver-types/lib/esm/main.js +849 -847
- package/dist/node_modules/vscode-uri/lib/esm/index.js +6 -4
- package/dist/node_modules/web-namespaces/index.js +4 -2
- package/dist/node_modules/zwitch/index.js +7 -5
- package/dist/packages/contracts/dist/enums/index.js +14 -12
- package/dist/packages/contracts/dist/enums/registry.enum.js +6 -4
- package/dist/packages/contracts/dist/enums/sort-order.enum.js +6 -4
- package/dist/packages/contracts/dist/enums/user-type.enum.js +6 -4
- package/dist/packages/contracts/dist/enums/workflow-state.enum.js +6 -4
- package/dist/pages/DashboardPage.js +55 -99
- package/dist/pages/DebugPage.js +12 -17
- package/dist/pages/DebugWorkflowDetailsPage.js +91 -119
- package/dist/pages/DebugWorkflowsPage.js +39 -37
- package/dist/pages/EmbedWorkbenchPage.js +48 -62
- package/dist/pages/PreviewWorkbenchPage.js +243 -324
- package/dist/pages/RunsListPage.js +44 -61
- package/dist/pages/RunsPage.js +31 -48
- package/dist/pages/StudioLandingPage.js +97 -132
- package/dist/pages/WorkbenchPage.js +56 -86
- package/dist/pages/WorkflowDebugPage.js +74 -110
- package/dist/pages/WorkspacePage.js +72 -115
- package/dist/pages/WorkspaceRunsPage.js +43 -70
- package/dist/pages/WorkspacesPage.js +24 -35
- package/dist/providers/ComponentOverridesProvider.js +9 -12
- package/dist/providers/InvalidationEventsProvider.js +33 -35
- package/dist/providers/QueryProvider.js +14 -18
- package/dist/providers/SseProvider.js +28 -29
- package/dist/providers/StudioProvider.js +14 -19
- package/dist/routing/LocalRouter.js +6 -9
- package/dist/services/createApiClient.js +7 -5
- package/dist/services/eventEmitter.js +3 -2
- package/dist/services/index.js +2 -2
- package/dist/types/ai.types.js +7 -5
- package/package.json +33 -33
- package/dist/_virtual/rolldown_runtime.js +0 -20
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-7HQA4BMR.js +0 -3
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-4F5CHEZ2.js +0 -23
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-B2363JML.js +0 -60
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FRFDVMJY.js +0 -23
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-PL6DKKU2.js +0 -28
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-SJTYNZTY.js +0 -23
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TCCFYFTB.js +0 -787
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TQ3KTPDO.js +0 -23
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-UMXZTB3W.js +0 -30
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-G5XIXVHT.js +0 -3
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-VBDWY6EO.js +0 -3
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-DYOGHKS2.js +0 -3
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-VRWISCQL.js +0 -3
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-ZZBFDIW7.js +0 -3
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-GDKQZRPO.js +0 -3
- package/dist/node_modules/@ungap/structured-clone/esm/types.js +0 -2
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/context_assist.js +0 -16
- package/dist/node_modules/langium/lib/index.js +0 -182
- package/dist/node_modules/langium/lib/parser/indentation-aware.js +0 -141
- package/dist/node_modules/langium/lib/utils/index.js +0 -53
- package/dist/node_modules/langium/lib/workspace/profiler.js +0 -89
- package/dist/node_modules/lodash/_Symbol.js +0 -7
- package/dist/node_modules/lodash/_baseGetTag.js +0 -13
- package/dist/node_modules/lodash/_baseTrim.js +0 -11
- package/dist/node_modules/lodash/_freeGlobal.js +0 -6
- package/dist/node_modules/lodash/_getRawTag.js +0 -17
- package/dist/node_modules/lodash/_objectToString.js +0 -10
- package/dist/node_modules/lodash/_root.js +0 -8
- package/dist/node_modules/lodash/_trimmedEndIndex.js +0 -11
- package/dist/node_modules/lodash/isObject.js +0 -10
- package/dist/node_modules/lodash/isObjectLike.js +0 -9
- package/dist/node_modules/lodash/isSymbol.js +0 -12
- package/dist/node_modules/lodash/now.js +0 -10
- package/dist/node_modules/lodash/toNumber.js +0 -22
- package/dist/node_modules/lodash-es/_arrayAggregator.js +0 -9
- package/dist/node_modules/lodash-es/_arrayEvery.js +0 -6
- package/dist/node_modules/lodash-es/_baseAggregator.js +0 -8
- package/dist/node_modules/lodash-es/_baseDifference.js +0 -22
- package/dist/node_modules/lodash-es/_baseEvery.js +0 -9
- package/dist/node_modules/lodash-es/_baseIsRegExp.js +0 -8
- package/dist/node_modules/lodash-es/_baseSlice.js +0 -8
- package/dist/node_modules/lodash-es/_baseSome.js +0 -9
- package/dist/node_modules/lodash-es/_createAggregator.js +0 -12
- package/dist/node_modules/lodash-es/assign.js +0 -14
- package/dist/node_modules/lodash-es/compact.js +0 -9
- package/dist/node_modules/lodash-es/difference.js +0 -8
- package/dist/node_modules/lodash-es/drop.js +0 -8
- package/dist/node_modules/lodash-es/dropRight.js +0 -8
- package/dist/node_modules/lodash-es/every.js +0 -11
- package/dist/node_modules/lodash-es/groupBy.js +0 -6
- package/dist/node_modules/lodash-es/head.js +0 -5
- package/dist/node_modules/lodash-es/includes.js +0 -13
- package/dist/node_modules/lodash-es/indexOf.js +0 -11
- package/dist/node_modules/lodash-es/isRegExp.js +0 -5
- package/dist/node_modules/lodash-es/negate.js +0 -16
- package/dist/node_modules/lodash-es/pickBy.js +0 -15
- package/dist/node_modules/lodash-es/reject.js +0 -10
- package/dist/node_modules/lodash-es/some.js +0 -11
- package/dist/node_modules/lodash-es/uniq.js +0 -6
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-VXUJARFQ.js +0 -673
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VD42YOAC.js +0 -3010
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ABZYJK2D.js +0 -1547
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ATLVNIR6.js +0 -65
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-CVBHYZKI.js +0 -10
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DI55MBZ5.js +0 -1994
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DR5Q36YT.js +0 -135
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EXTU4WIE.js +0 -9
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-HN2XXSSU.js +0 -74
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JA3XYJ7Z.js +0 -247
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JZLCHNYA.js +0 -3516
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-MI3HLSF2.js +0 -1140
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-N4CR4FBY.js +0 -39
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QN33PNHL.js +0 -23
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QXUST7PY.js +0 -497
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-S3R3BYOJ.js +0 -338
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-TZMSLE5B.js +0 -55
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-2ON5EDUG.js +0 -26
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-WZHVMYZB.js +0 -26
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-6UL2VRFP.js +0 -263
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-PSM6KHXK.js +0 -283
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-QEK2KX5R.js +0 -211
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-S2PKOQOG.js +0 -129
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-JELNMOA3.js +0 -1688
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-V2S2FVAM.js +0 -621
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-HS3SLOUP.js +0 -18
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-XKPGCS4Q.js +0 -883
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ADFJNKIX.js +0 -117
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-TZEHDZUN.js +0 -519
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-WL72ISMW.js +0 -3560
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FKZM4ZOC.js +0 -220
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-4FDKWEC3.js +0 -25
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-IT6M3QCI.js +0 -833
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-PRI3JC2R.js +0 -1975
- package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +0 -2189
- package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +0 -33
- package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +0 -3
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { __name, log } from "./chunk-AGHRB4JF.js";
|
|
2
|
-
import { assignWithDepth_default, common_default, configureSvgSize, getAccDescription, getAccTitle, getConfig2, sanitizeText, setAccDescription, setAccTitle } from "./chunk-
|
|
3
|
-
import
|
|
1
|
+
import { __name as e, log as t } from "./chunk-AGHRB4JF.js";
|
|
2
|
+
import { assignWithDepth_default as n, common_default as r, configureSvgSize as i, getAccDescription as a, getAccTitle as o, getConfig2 as s, sanitizeText as l, setAccDescription as u, setAccTitle as d } from "./chunk-ICPOFSXX.js";
|
|
3
|
+
import f from "../../../../d3-selection/src/select.js";
|
|
4
4
|
import "../../../../d3/src/index.js";
|
|
5
|
-
import { require_dist } from "../../../../@braintree/sanitize-url/dist/index.js";
|
|
6
|
-
import { calculateTextHeight, calculateTextWidth, wrapLabel } from "./chunk-
|
|
7
|
-
import { drawRect, getNoteRect } from "./chunk-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
import { require_dist as p } from "../../../../@braintree/sanitize-url/dist/index.js";
|
|
6
|
+
import { calculateTextHeight as m, calculateTextWidth as h, wrapLabel as g } from "./chunk-5PVQY5BW.js";
|
|
7
|
+
import { drawRect as _, getNoteRect as v } from "./chunk-YZCP3GAM.js";
|
|
8
|
+
//#region ../../node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-AHTNJAMY.mjs
|
|
9
|
+
var y = p(), b = (function() {
|
|
10
|
+
var t = /* @__PURE__ */ e(function(e, t, n, r) {
|
|
10
11
|
for (n ||= {}, r = e.length; r--; n[e[r]] = t);
|
|
11
12
|
return n;
|
|
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],
|
|
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], ee = [1, 54], te = [1, 55], ne = [1, 56], z = [1, 57], B = [1, 58], V = [1, 59], H = [1, 60], re = [14, 42], ie = [
|
|
13
14
|
14,
|
|
14
15
|
34,
|
|
15
16
|
36,
|
|
@@ -50,7 +51,7 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
50
51
|
72,
|
|
51
52
|
73,
|
|
52
53
|
74
|
|
53
|
-
],
|
|
54
|
+
], ae = [
|
|
54
55
|
12,
|
|
55
56
|
14,
|
|
56
57
|
34,
|
|
@@ -92,16 +93,16 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
92
93
|
72,
|
|
93
94
|
73,
|
|
94
95
|
74
|
|
95
|
-
],
|
|
96
|
+
], U = [1, 82], W = [1, 83], G = [1, 84], K = [1, 85], q = [
|
|
96
97
|
12,
|
|
97
98
|
14,
|
|
98
99
|
42
|
|
99
|
-
],
|
|
100
|
+
], oe = [
|
|
100
101
|
12,
|
|
101
102
|
14,
|
|
102
103
|
33,
|
|
103
104
|
42
|
|
104
|
-
],
|
|
105
|
+
], se = [
|
|
105
106
|
12,
|
|
106
107
|
14,
|
|
107
108
|
33,
|
|
@@ -110,7 +111,7 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
110
111
|
77,
|
|
111
112
|
79,
|
|
112
113
|
80
|
|
113
|
-
],
|
|
114
|
+
], ce = [12, 33], le = [
|
|
114
115
|
34,
|
|
115
116
|
36,
|
|
116
117
|
37,
|
|
@@ -149,8 +150,8 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
149
150
|
72,
|
|
150
151
|
73,
|
|
151
152
|
74
|
|
152
|
-
],
|
|
153
|
-
trace: /* @__PURE__ */
|
|
153
|
+
], J = {
|
|
154
|
+
trace: /* @__PURE__ */ e(function() {}, "trace"),
|
|
154
155
|
yy: {},
|
|
155
156
|
symbols_: {
|
|
156
157
|
error: 2,
|
|
@@ -380,7 +381,7 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
380
381
|
[75, 1],
|
|
381
382
|
[75, 1]
|
|
382
383
|
],
|
|
383
|
-
performAction: /* @__PURE__ */
|
|
384
|
+
performAction: /* @__PURE__ */ e(function(e, t, n, r, i, a, o) {
|
|
384
385
|
var s = a.length - 1;
|
|
385
386
|
switch (i) {
|
|
386
387
|
case 3:
|
|
@@ -625,13 +626,13 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
625
626
|
65: I,
|
|
626
627
|
66: L,
|
|
627
628
|
67: R,
|
|
628
|
-
68:
|
|
629
|
-
69:
|
|
630
|
-
70:
|
|
631
|
-
71:
|
|
632
|
-
72:
|
|
633
|
-
73:
|
|
634
|
-
74:
|
|
629
|
+
68: ee,
|
|
630
|
+
69: te,
|
|
631
|
+
70: ne,
|
|
632
|
+
71: z,
|
|
633
|
+
72: B,
|
|
634
|
+
73: V,
|
|
635
|
+
74: H
|
|
635
636
|
},
|
|
636
637
|
{
|
|
637
638
|
13: 70,
|
|
@@ -678,13 +679,13 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
678
679
|
65: I,
|
|
679
680
|
66: L,
|
|
680
681
|
67: R,
|
|
681
|
-
68:
|
|
682
|
-
69:
|
|
683
|
-
70:
|
|
684
|
-
71:
|
|
685
|
-
72:
|
|
686
|
-
73:
|
|
687
|
-
74:
|
|
682
|
+
68: ee,
|
|
683
|
+
69: te,
|
|
684
|
+
70: ne,
|
|
685
|
+
71: z,
|
|
686
|
+
72: B,
|
|
687
|
+
73: V,
|
|
688
|
+
74: H
|
|
688
689
|
},
|
|
689
690
|
{
|
|
690
691
|
13: 71,
|
|
@@ -731,13 +732,13 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
731
732
|
65: I,
|
|
732
733
|
66: L,
|
|
733
734
|
67: R,
|
|
734
|
-
68:
|
|
735
|
-
69:
|
|
736
|
-
70:
|
|
737
|
-
71:
|
|
738
|
-
72:
|
|
739
|
-
73:
|
|
740
|
-
74:
|
|
735
|
+
68: ee,
|
|
736
|
+
69: te,
|
|
737
|
+
70: ne,
|
|
738
|
+
71: z,
|
|
739
|
+
72: B,
|
|
740
|
+
73: V,
|
|
741
|
+
74: H
|
|
741
742
|
},
|
|
742
743
|
{
|
|
743
744
|
13: 72,
|
|
@@ -784,13 +785,13 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
784
785
|
65: I,
|
|
785
786
|
66: L,
|
|
786
787
|
67: R,
|
|
787
|
-
68:
|
|
788
|
-
69:
|
|
789
|
-
70:
|
|
790
|
-
71:
|
|
791
|
-
72:
|
|
792
|
-
73:
|
|
793
|
-
74:
|
|
788
|
+
68: ee,
|
|
789
|
+
69: te,
|
|
790
|
+
70: ne,
|
|
791
|
+
71: z,
|
|
792
|
+
72: B,
|
|
793
|
+
73: V,
|
|
794
|
+
74: H
|
|
794
795
|
},
|
|
795
796
|
{
|
|
796
797
|
13: 73,
|
|
@@ -837,16 +838,16 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
837
838
|
65: I,
|
|
838
839
|
66: L,
|
|
839
840
|
67: R,
|
|
840
|
-
68:
|
|
841
|
-
69:
|
|
842
|
-
70:
|
|
843
|
-
71:
|
|
844
|
-
72:
|
|
845
|
-
73:
|
|
846
|
-
74:
|
|
841
|
+
68: ee,
|
|
842
|
+
69: te,
|
|
843
|
+
70: ne,
|
|
844
|
+
71: z,
|
|
845
|
+
72: B,
|
|
846
|
+
73: V,
|
|
847
|
+
74: H
|
|
847
848
|
},
|
|
848
849
|
{ 14: [1, 74] },
|
|
849
|
-
t(
|
|
850
|
+
t(re, [2, 13], {
|
|
850
851
|
43: 23,
|
|
851
852
|
29: 49,
|
|
852
853
|
30: 61,
|
|
@@ -883,270 +884,270 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
883
884
|
65: I,
|
|
884
885
|
66: L,
|
|
885
886
|
67: R,
|
|
886
|
-
68:
|
|
887
|
-
69:
|
|
888
|
-
70:
|
|
889
|
-
71:
|
|
890
|
-
72:
|
|
891
|
-
73:
|
|
892
|
-
74:
|
|
887
|
+
68: ee,
|
|
888
|
+
69: te,
|
|
889
|
+
70: ne,
|
|
890
|
+
71: z,
|
|
891
|
+
72: B,
|
|
892
|
+
73: V,
|
|
893
|
+
74: H
|
|
893
894
|
}),
|
|
894
|
-
t(
|
|
895
|
-
t(
|
|
896
|
-
t(
|
|
897
|
-
t(
|
|
898
|
-
t(
|
|
895
|
+
t(re, [2, 14]),
|
|
896
|
+
t(ie, [2, 16], { 12: [1, 76] }),
|
|
897
|
+
t(re, [2, 36], { 12: [1, 77] }),
|
|
898
|
+
t(ae, [2, 19]),
|
|
899
|
+
t(ae, [2, 20]),
|
|
899
900
|
{ 25: [1, 78] },
|
|
900
901
|
{ 27: [1, 79] },
|
|
901
|
-
t(
|
|
902
|
+
t(ae, [2, 23]),
|
|
902
903
|
{
|
|
903
904
|
35: 80,
|
|
904
905
|
75: 81,
|
|
905
|
-
76:
|
|
906
|
-
77:
|
|
907
|
-
79:
|
|
908
|
-
80:
|
|
906
|
+
76: U,
|
|
907
|
+
77: W,
|
|
908
|
+
79: G,
|
|
909
|
+
80: K
|
|
909
910
|
},
|
|
910
911
|
{
|
|
911
912
|
35: 86,
|
|
912
913
|
75: 81,
|
|
913
|
-
76:
|
|
914
|
-
77:
|
|
915
|
-
79:
|
|
916
|
-
80:
|
|
914
|
+
76: U,
|
|
915
|
+
77: W,
|
|
916
|
+
79: G,
|
|
917
|
+
80: K
|
|
917
918
|
},
|
|
918
919
|
{
|
|
919
920
|
35: 87,
|
|
920
921
|
75: 81,
|
|
921
|
-
76:
|
|
922
|
-
77:
|
|
923
|
-
79:
|
|
924
|
-
80:
|
|
922
|
+
76: U,
|
|
923
|
+
77: W,
|
|
924
|
+
79: G,
|
|
925
|
+
80: K
|
|
925
926
|
},
|
|
926
927
|
{
|
|
927
928
|
35: 88,
|
|
928
929
|
75: 81,
|
|
929
|
-
76:
|
|
930
|
-
77:
|
|
931
|
-
79:
|
|
932
|
-
80:
|
|
930
|
+
76: U,
|
|
931
|
+
77: W,
|
|
932
|
+
79: G,
|
|
933
|
+
80: K
|
|
933
934
|
},
|
|
934
935
|
{
|
|
935
936
|
35: 89,
|
|
936
937
|
75: 81,
|
|
937
|
-
76:
|
|
938
|
-
77:
|
|
939
|
-
79:
|
|
940
|
-
80:
|
|
938
|
+
76: U,
|
|
939
|
+
77: W,
|
|
940
|
+
79: G,
|
|
941
|
+
80: K
|
|
941
942
|
},
|
|
942
943
|
{
|
|
943
944
|
35: 90,
|
|
944
945
|
75: 81,
|
|
945
|
-
76:
|
|
946
|
-
77:
|
|
947
|
-
79:
|
|
948
|
-
80:
|
|
946
|
+
76: U,
|
|
947
|
+
77: W,
|
|
948
|
+
79: G,
|
|
949
|
+
80: K
|
|
949
950
|
},
|
|
950
951
|
{
|
|
951
952
|
35: 91,
|
|
952
953
|
75: 81,
|
|
953
|
-
76:
|
|
954
|
-
77:
|
|
955
|
-
79:
|
|
956
|
-
80:
|
|
954
|
+
76: U,
|
|
955
|
+
77: W,
|
|
956
|
+
79: G,
|
|
957
|
+
80: K
|
|
957
958
|
},
|
|
958
959
|
{
|
|
959
960
|
35: 92,
|
|
960
961
|
75: 81,
|
|
961
|
-
76:
|
|
962
|
-
77:
|
|
963
|
-
79:
|
|
964
|
-
80:
|
|
962
|
+
76: U,
|
|
963
|
+
77: W,
|
|
964
|
+
79: G,
|
|
965
|
+
80: K
|
|
965
966
|
},
|
|
966
967
|
{
|
|
967
968
|
35: 93,
|
|
968
969
|
75: 81,
|
|
969
|
-
76:
|
|
970
|
-
77:
|
|
971
|
-
79:
|
|
972
|
-
80:
|
|
970
|
+
76: U,
|
|
971
|
+
77: W,
|
|
972
|
+
79: G,
|
|
973
|
+
80: K
|
|
973
974
|
},
|
|
974
975
|
{
|
|
975
976
|
35: 94,
|
|
976
977
|
75: 81,
|
|
977
|
-
76:
|
|
978
|
-
77:
|
|
979
|
-
79:
|
|
980
|
-
80:
|
|
978
|
+
76: U,
|
|
979
|
+
77: W,
|
|
980
|
+
79: G,
|
|
981
|
+
80: K
|
|
981
982
|
},
|
|
982
983
|
{
|
|
983
984
|
35: 95,
|
|
984
985
|
75: 81,
|
|
985
|
-
76:
|
|
986
|
-
77:
|
|
987
|
-
79:
|
|
988
|
-
80:
|
|
986
|
+
76: U,
|
|
987
|
+
77: W,
|
|
988
|
+
79: G,
|
|
989
|
+
80: K
|
|
989
990
|
},
|
|
990
991
|
{
|
|
991
992
|
35: 96,
|
|
992
993
|
75: 81,
|
|
993
|
-
76:
|
|
994
|
-
77:
|
|
995
|
-
79:
|
|
996
|
-
80:
|
|
994
|
+
76: U,
|
|
995
|
+
77: W,
|
|
996
|
+
79: G,
|
|
997
|
+
80: K
|
|
997
998
|
},
|
|
998
999
|
{
|
|
999
1000
|
35: 97,
|
|
1000
1001
|
75: 81,
|
|
1001
|
-
76:
|
|
1002
|
-
77:
|
|
1003
|
-
79:
|
|
1004
|
-
80:
|
|
1002
|
+
76: U,
|
|
1003
|
+
77: W,
|
|
1004
|
+
79: G,
|
|
1005
|
+
80: K
|
|
1005
1006
|
},
|
|
1006
1007
|
{
|
|
1007
1008
|
35: 98,
|
|
1008
1009
|
75: 81,
|
|
1009
|
-
76:
|
|
1010
|
-
77:
|
|
1011
|
-
79:
|
|
1012
|
-
80:
|
|
1010
|
+
76: U,
|
|
1011
|
+
77: W,
|
|
1012
|
+
79: G,
|
|
1013
|
+
80: K
|
|
1013
1014
|
},
|
|
1014
1015
|
{
|
|
1015
1016
|
35: 99,
|
|
1016
1017
|
75: 81,
|
|
1017
|
-
76:
|
|
1018
|
-
77:
|
|
1019
|
-
79:
|
|
1020
|
-
80:
|
|
1018
|
+
76: U,
|
|
1019
|
+
77: W,
|
|
1020
|
+
79: G,
|
|
1021
|
+
80: K
|
|
1021
1022
|
},
|
|
1022
1023
|
{
|
|
1023
1024
|
35: 100,
|
|
1024
1025
|
75: 81,
|
|
1025
|
-
76:
|
|
1026
|
-
77:
|
|
1027
|
-
79:
|
|
1028
|
-
80:
|
|
1026
|
+
76: U,
|
|
1027
|
+
77: W,
|
|
1028
|
+
79: G,
|
|
1029
|
+
80: K
|
|
1029
1030
|
},
|
|
1030
1031
|
{
|
|
1031
1032
|
35: 101,
|
|
1032
1033
|
75: 81,
|
|
1033
|
-
76:
|
|
1034
|
-
77:
|
|
1035
|
-
79:
|
|
1036
|
-
80:
|
|
1034
|
+
76: U,
|
|
1035
|
+
77: W,
|
|
1036
|
+
79: G,
|
|
1037
|
+
80: K
|
|
1037
1038
|
},
|
|
1038
1039
|
{
|
|
1039
1040
|
35: 102,
|
|
1040
1041
|
75: 81,
|
|
1041
|
-
76:
|
|
1042
|
-
77:
|
|
1043
|
-
79:
|
|
1044
|
-
80:
|
|
1042
|
+
76: U,
|
|
1043
|
+
77: W,
|
|
1044
|
+
79: G,
|
|
1045
|
+
80: K
|
|
1045
1046
|
},
|
|
1046
1047
|
{
|
|
1047
1048
|
35: 103,
|
|
1048
1049
|
75: 81,
|
|
1049
|
-
76:
|
|
1050
|
-
77:
|
|
1051
|
-
79:
|
|
1052
|
-
80:
|
|
1050
|
+
76: U,
|
|
1051
|
+
77: W,
|
|
1052
|
+
79: G,
|
|
1053
|
+
80: K
|
|
1053
1054
|
},
|
|
1054
1055
|
{
|
|
1055
1056
|
35: 104,
|
|
1056
1057
|
75: 81,
|
|
1057
|
-
76:
|
|
1058
|
-
77:
|
|
1059
|
-
79:
|
|
1060
|
-
80:
|
|
1058
|
+
76: U,
|
|
1059
|
+
77: W,
|
|
1060
|
+
79: G,
|
|
1061
|
+
80: K
|
|
1061
1062
|
},
|
|
1062
|
-
t(
|
|
1063
|
+
t(q, [2, 59]),
|
|
1063
1064
|
{
|
|
1064
1065
|
35: 105,
|
|
1065
1066
|
75: 81,
|
|
1066
|
-
76:
|
|
1067
|
-
77:
|
|
1068
|
-
79:
|
|
1069
|
-
80:
|
|
1067
|
+
76: U,
|
|
1068
|
+
77: W,
|
|
1069
|
+
79: G,
|
|
1070
|
+
80: K
|
|
1070
1071
|
},
|
|
1071
1072
|
{
|
|
1072
1073
|
35: 106,
|
|
1073
1074
|
75: 81,
|
|
1074
|
-
76:
|
|
1075
|
-
77:
|
|
1076
|
-
79:
|
|
1077
|
-
80:
|
|
1075
|
+
76: U,
|
|
1076
|
+
77: W,
|
|
1077
|
+
79: G,
|
|
1078
|
+
80: K
|
|
1078
1079
|
},
|
|
1079
1080
|
{
|
|
1080
1081
|
35: 107,
|
|
1081
1082
|
75: 81,
|
|
1082
|
-
76:
|
|
1083
|
-
77:
|
|
1084
|
-
79:
|
|
1085
|
-
80:
|
|
1083
|
+
76: U,
|
|
1084
|
+
77: W,
|
|
1085
|
+
79: G,
|
|
1086
|
+
80: K
|
|
1086
1087
|
},
|
|
1087
1088
|
{
|
|
1088
1089
|
35: 108,
|
|
1089
1090
|
75: 81,
|
|
1090
|
-
76:
|
|
1091
|
-
77:
|
|
1092
|
-
79:
|
|
1093
|
-
80:
|
|
1091
|
+
76: U,
|
|
1092
|
+
77: W,
|
|
1093
|
+
79: G,
|
|
1094
|
+
80: K
|
|
1094
1095
|
},
|
|
1095
1096
|
{
|
|
1096
1097
|
35: 109,
|
|
1097
1098
|
75: 81,
|
|
1098
|
-
76:
|
|
1099
|
-
77:
|
|
1100
|
-
79:
|
|
1101
|
-
80:
|
|
1099
|
+
76: U,
|
|
1100
|
+
77: W,
|
|
1101
|
+
79: G,
|
|
1102
|
+
80: K
|
|
1102
1103
|
},
|
|
1103
1104
|
{
|
|
1104
1105
|
35: 110,
|
|
1105
1106
|
75: 81,
|
|
1106
|
-
76:
|
|
1107
|
-
77:
|
|
1108
|
-
79:
|
|
1109
|
-
80:
|
|
1107
|
+
76: U,
|
|
1108
|
+
77: W,
|
|
1109
|
+
79: G,
|
|
1110
|
+
80: K
|
|
1110
1111
|
},
|
|
1111
1112
|
{
|
|
1112
1113
|
35: 111,
|
|
1113
1114
|
75: 81,
|
|
1114
|
-
76:
|
|
1115
|
-
77:
|
|
1116
|
-
79:
|
|
1117
|
-
80:
|
|
1115
|
+
76: U,
|
|
1116
|
+
77: W,
|
|
1117
|
+
79: G,
|
|
1118
|
+
80: K
|
|
1118
1119
|
},
|
|
1119
1120
|
{
|
|
1120
1121
|
35: 112,
|
|
1121
1122
|
75: 81,
|
|
1122
|
-
76:
|
|
1123
|
-
77:
|
|
1124
|
-
79:
|
|
1125
|
-
80:
|
|
1123
|
+
76: U,
|
|
1124
|
+
77: W,
|
|
1125
|
+
79: G,
|
|
1126
|
+
80: K
|
|
1126
1127
|
},
|
|
1127
1128
|
{
|
|
1128
1129
|
35: 113,
|
|
1129
1130
|
75: 81,
|
|
1130
|
-
76:
|
|
1131
|
-
77:
|
|
1132
|
-
79:
|
|
1133
|
-
80:
|
|
1131
|
+
76: U,
|
|
1132
|
+
77: W,
|
|
1133
|
+
79: G,
|
|
1134
|
+
80: K
|
|
1134
1135
|
},
|
|
1135
1136
|
{
|
|
1136
1137
|
35: 114,
|
|
1137
1138
|
75: 81,
|
|
1138
|
-
76:
|
|
1139
|
-
77:
|
|
1140
|
-
79:
|
|
1141
|
-
80:
|
|
1139
|
+
76: U,
|
|
1140
|
+
77: W,
|
|
1141
|
+
79: G,
|
|
1142
|
+
80: K
|
|
1142
1143
|
},
|
|
1143
1144
|
{
|
|
1144
1145
|
35: 115,
|
|
1145
1146
|
75: 81,
|
|
1146
|
-
76:
|
|
1147
|
-
77:
|
|
1148
|
-
79:
|
|
1149
|
-
80:
|
|
1147
|
+
76: U,
|
|
1148
|
+
77: W,
|
|
1149
|
+
79: G,
|
|
1150
|
+
80: K
|
|
1150
1151
|
},
|
|
1151
1152
|
{
|
|
1152
1153
|
20: 116,
|
|
@@ -1185,13 +1186,13 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1185
1186
|
65: I,
|
|
1186
1187
|
66: L,
|
|
1187
1188
|
67: R,
|
|
1188
|
-
68:
|
|
1189
|
-
69:
|
|
1190
|
-
70:
|
|
1191
|
-
71:
|
|
1192
|
-
72:
|
|
1193
|
-
73:
|
|
1194
|
-
74:
|
|
1189
|
+
68: ee,
|
|
1190
|
+
69: te,
|
|
1191
|
+
70: ne,
|
|
1192
|
+
71: z,
|
|
1193
|
+
72: B,
|
|
1194
|
+
73: V,
|
|
1195
|
+
74: H
|
|
1195
1196
|
},
|
|
1196
1197
|
{
|
|
1197
1198
|
12: [1, 118],
|
|
@@ -1200,66 +1201,66 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1200
1201
|
{
|
|
1201
1202
|
35: 119,
|
|
1202
1203
|
75: 81,
|
|
1203
|
-
76:
|
|
1204
|
-
77:
|
|
1205
|
-
79:
|
|
1206
|
-
80:
|
|
1204
|
+
76: U,
|
|
1205
|
+
77: W,
|
|
1206
|
+
79: G,
|
|
1207
|
+
80: K
|
|
1207
1208
|
},
|
|
1208
1209
|
{
|
|
1209
1210
|
35: 120,
|
|
1210
1211
|
75: 81,
|
|
1211
|
-
76:
|
|
1212
|
-
77:
|
|
1213
|
-
79:
|
|
1214
|
-
80:
|
|
1212
|
+
76: U,
|
|
1213
|
+
77: W,
|
|
1214
|
+
79: G,
|
|
1215
|
+
80: K
|
|
1215
1216
|
},
|
|
1216
1217
|
{
|
|
1217
1218
|
35: 121,
|
|
1218
1219
|
75: 81,
|
|
1219
|
-
76:
|
|
1220
|
-
77:
|
|
1221
|
-
79:
|
|
1222
|
-
80:
|
|
1220
|
+
76: U,
|
|
1221
|
+
77: W,
|
|
1222
|
+
79: G,
|
|
1223
|
+
80: K
|
|
1223
1224
|
},
|
|
1224
1225
|
{
|
|
1225
1226
|
35: 122,
|
|
1226
1227
|
75: 81,
|
|
1227
|
-
76:
|
|
1228
|
-
77:
|
|
1229
|
-
79:
|
|
1230
|
-
80:
|
|
1228
|
+
76: U,
|
|
1229
|
+
77: W,
|
|
1230
|
+
79: G,
|
|
1231
|
+
80: K
|
|
1231
1232
|
},
|
|
1232
1233
|
{
|
|
1233
1234
|
35: 123,
|
|
1234
1235
|
75: 81,
|
|
1235
|
-
76:
|
|
1236
|
-
77:
|
|
1237
|
-
79:
|
|
1238
|
-
80:
|
|
1236
|
+
76: U,
|
|
1237
|
+
77: W,
|
|
1238
|
+
79: G,
|
|
1239
|
+
80: K
|
|
1239
1240
|
},
|
|
1240
1241
|
{
|
|
1241
1242
|
35: 124,
|
|
1242
1243
|
75: 81,
|
|
1243
|
-
76:
|
|
1244
|
-
77:
|
|
1245
|
-
79:
|
|
1246
|
-
80:
|
|
1244
|
+
76: U,
|
|
1245
|
+
77: W,
|
|
1246
|
+
79: G,
|
|
1247
|
+
80: K
|
|
1247
1248
|
},
|
|
1248
1249
|
{
|
|
1249
1250
|
35: 125,
|
|
1250
1251
|
75: 81,
|
|
1251
|
-
76:
|
|
1252
|
-
77:
|
|
1253
|
-
79:
|
|
1254
|
-
80:
|
|
1252
|
+
76: U,
|
|
1253
|
+
77: W,
|
|
1254
|
+
79: G,
|
|
1255
|
+
80: K
|
|
1255
1256
|
},
|
|
1256
1257
|
{ 14: [1, 126] },
|
|
1257
1258
|
{ 14: [1, 127] },
|
|
1258
1259
|
{ 14: [1, 128] },
|
|
1259
1260
|
{ 14: [1, 129] },
|
|
1260
1261
|
{ 1: [2, 8] },
|
|
1261
|
-
t(
|
|
1262
|
-
t(
|
|
1262
|
+
t(re, [2, 15]),
|
|
1263
|
+
t(ie, [2, 17], {
|
|
1263
1264
|
21: 22,
|
|
1264
1265
|
19: 130,
|
|
1265
1266
|
22: n,
|
|
@@ -1268,7 +1269,7 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1268
1269
|
26: a,
|
|
1269
1270
|
28: o
|
|
1270
1271
|
}),
|
|
1271
|
-
t(
|
|
1272
|
+
t(re, [2, 37], {
|
|
1272
1273
|
19: 20,
|
|
1273
1274
|
20: 21,
|
|
1274
1275
|
21: 22,
|
|
@@ -1313,85 +1314,85 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1313
1314
|
65: I,
|
|
1314
1315
|
66: L,
|
|
1315
1316
|
67: R,
|
|
1316
|
-
68:
|
|
1317
|
-
69:
|
|
1318
|
-
70:
|
|
1319
|
-
71:
|
|
1320
|
-
72:
|
|
1321
|
-
73:
|
|
1322
|
-
74:
|
|
1317
|
+
68: ee,
|
|
1318
|
+
69: te,
|
|
1319
|
+
70: ne,
|
|
1320
|
+
71: z,
|
|
1321
|
+
72: B,
|
|
1322
|
+
73: V,
|
|
1323
|
+
74: H
|
|
1323
1324
|
}),
|
|
1324
|
-
t(
|
|
1325
|
-
t(
|
|
1326
|
-
t(
|
|
1327
|
-
t(
|
|
1325
|
+
t(ae, [2, 21]),
|
|
1326
|
+
t(ae, [2, 22]),
|
|
1327
|
+
t(q, [2, 39]),
|
|
1328
|
+
t(oe, [2, 71], {
|
|
1328
1329
|
75: 81,
|
|
1329
1330
|
35: 132,
|
|
1330
|
-
76:
|
|
1331
|
-
77:
|
|
1332
|
-
79:
|
|
1333
|
-
80:
|
|
1331
|
+
76: U,
|
|
1332
|
+
77: W,
|
|
1333
|
+
79: G,
|
|
1334
|
+
80: K
|
|
1334
1335
|
}),
|
|
1335
|
-
t(
|
|
1336
|
+
t(se, [2, 73]),
|
|
1336
1337
|
{ 78: [1, 133] },
|
|
1337
|
-
t(
|
|
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(
|
|
1338
|
+
t(se, [2, 75]),
|
|
1339
|
+
t(se, [2, 76]),
|
|
1340
|
+
t(q, [2, 40]),
|
|
1341
|
+
t(q, [2, 41]),
|
|
1342
|
+
t(q, [2, 42]),
|
|
1343
|
+
t(q, [2, 43]),
|
|
1344
|
+
t(q, [2, 44]),
|
|
1345
|
+
t(q, [2, 45]),
|
|
1346
|
+
t(q, [2, 46]),
|
|
1347
|
+
t(q, [2, 47]),
|
|
1348
|
+
t(q, [2, 48]),
|
|
1349
|
+
t(q, [2, 49]),
|
|
1350
|
+
t(q, [2, 50]),
|
|
1351
|
+
t(q, [2, 51]),
|
|
1352
|
+
t(q, [2, 52]),
|
|
1353
|
+
t(q, [2, 53]),
|
|
1354
|
+
t(q, [2, 54]),
|
|
1355
|
+
t(q, [2, 55]),
|
|
1356
|
+
t(q, [2, 56]),
|
|
1357
|
+
t(q, [2, 57]),
|
|
1358
|
+
t(q, [2, 58]),
|
|
1359
|
+
t(q, [2, 60]),
|
|
1360
|
+
t(q, [2, 61]),
|
|
1361
|
+
t(q, [2, 62]),
|
|
1362
|
+
t(q, [2, 63]),
|
|
1363
|
+
t(q, [2, 64]),
|
|
1364
|
+
t(q, [2, 65]),
|
|
1365
|
+
t(q, [2, 66]),
|
|
1366
|
+
t(q, [2, 67]),
|
|
1367
|
+
t(q, [2, 68]),
|
|
1368
|
+
t(q, [2, 69]),
|
|
1369
|
+
t(q, [2, 70]),
|
|
1369
1370
|
{
|
|
1370
1371
|
31: 134,
|
|
1371
1372
|
42: [1, 135]
|
|
1372
1373
|
},
|
|
1373
1374
|
{ 12: [1, 136] },
|
|
1374
1375
|
{ 33: [1, 137] },
|
|
1375
|
-
t(
|
|
1376
|
-
t(
|
|
1377
|
-
t(
|
|
1378
|
-
t(
|
|
1379
|
-
t(
|
|
1380
|
-
t(
|
|
1381
|
-
t(
|
|
1376
|
+
t(ce, [2, 28]),
|
|
1377
|
+
t(ce, [2, 29]),
|
|
1378
|
+
t(ce, [2, 30]),
|
|
1379
|
+
t(ce, [2, 31]),
|
|
1380
|
+
t(ce, [2, 32]),
|
|
1381
|
+
t(ce, [2, 33]),
|
|
1382
|
+
t(ce, [2, 34]),
|
|
1382
1383
|
{ 1: [2, 9] },
|
|
1383
1384
|
{ 1: [2, 10] },
|
|
1384
1385
|
{ 1: [2, 11] },
|
|
1385
1386
|
{ 1: [2, 12] },
|
|
1386
|
-
t(
|
|
1387
|
-
t(
|
|
1388
|
-
t(
|
|
1389
|
-
t(
|
|
1390
|
-
t(
|
|
1391
|
-
t(
|
|
1392
|
-
t(
|
|
1393
|
-
t(
|
|
1394
|
-
t(
|
|
1387
|
+
t(ie, [2, 18]),
|
|
1388
|
+
t(re, [2, 38]),
|
|
1389
|
+
t(oe, [2, 72]),
|
|
1390
|
+
t(se, [2, 74]),
|
|
1391
|
+
t(q, [2, 24]),
|
|
1392
|
+
t(q, [2, 35]),
|
|
1393
|
+
t(le, [2, 25]),
|
|
1394
|
+
t(le, [2, 26], { 12: [1, 138] }),
|
|
1395
|
+
t(le, [2, 27])
|
|
1395
1396
|
],
|
|
1396
1397
|
defaultActions: {
|
|
1397
1398
|
2: [2, 1],
|
|
@@ -1407,14 +1408,14 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1407
1408
|
128: [2, 11],
|
|
1408
1409
|
129: [2, 12]
|
|
1409
1410
|
},
|
|
1410
|
-
parseError: /* @__PURE__ */
|
|
1411
|
+
parseError: /* @__PURE__ */ e(function(e, t) {
|
|
1411
1412
|
if (t.recoverable) this.trace(e);
|
|
1412
1413
|
else {
|
|
1413
1414
|
var n = Error(e);
|
|
1414
1415
|
throw n.hash = t, n;
|
|
1415
1416
|
}
|
|
1416
1417
|
}, "parseError"),
|
|
1417
|
-
parse: /* @__PURE__ */
|
|
1418
|
+
parse: /* @__PURE__ */ e(function(t) {
|
|
1418
1419
|
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: {} };
|
|
1419
1420
|
for (var v in this.yy) Object.prototype.hasOwnProperty.call(this.yy, v) && (_.yy[v] = this.yy[v]);
|
|
1420
1421
|
g.setInput(t, _.yy), _.yy.lexer = g, _.yy.parser = this, g.yylloc === void 0 && (g.yylloc = {});
|
|
@@ -1425,12 +1426,12 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1425
1426
|
function x(e) {
|
|
1426
1427
|
r.length -= 2 * e, a.length -= e, o.length -= e;
|
|
1427
1428
|
}
|
|
1428
|
-
|
|
1429
|
+
e(x, "popStack");
|
|
1429
1430
|
function S() {
|
|
1430
1431
|
var e = i.pop() || g.lex() || m;
|
|
1431
1432
|
return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
|
|
1432
1433
|
}
|
|
1433
|
-
|
|
1434
|
+
e(S, "lex");
|
|
1434
1435
|
for (var C, w, T, E, D, O = {}, k, A, j, M;;) {
|
|
1435
1436
|
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]) {
|
|
1436
1437
|
var N = "";
|
|
@@ -1471,14 +1472,14 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1471
1472
|
return !0;
|
|
1472
1473
|
}, "parse")
|
|
1473
1474
|
};
|
|
1474
|
-
|
|
1475
|
+
J.lexer = /* @__PURE__ */ (function() {
|
|
1475
1476
|
return {
|
|
1476
1477
|
EOF: 1,
|
|
1477
|
-
parseError: /* @__PURE__ */
|
|
1478
|
+
parseError: /* @__PURE__ */ e(function(e, t) {
|
|
1478
1479
|
if (this.yy.parser) this.yy.parser.parseError(e, t);
|
|
1479
1480
|
else throw Error(e);
|
|
1480
1481
|
}, "parseError"),
|
|
1481
|
-
setInput: /* @__PURE__ */
|
|
1482
|
+
setInput: /* @__PURE__ */ e(function(e, t) {
|
|
1482
1483
|
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 = {
|
|
1483
1484
|
first_line: 1,
|
|
1484
1485
|
first_column: 0,
|
|
@@ -1486,11 +1487,11 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1486
1487
|
last_column: 0
|
|
1487
1488
|
}, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
|
|
1488
1489
|
}, "setInput"),
|
|
1489
|
-
input: /* @__PURE__ */
|
|
1490
|
+
input: /* @__PURE__ */ e(function() {
|
|
1490
1491
|
var e = this._input[0];
|
|
1491
1492
|
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;
|
|
1492
1493
|
}, "input"),
|
|
1493
|
-
unput: /* @__PURE__ */
|
|
1494
|
+
unput: /* @__PURE__ */ e(function(e) {
|
|
1494
1495
|
var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
|
|
1495
1496
|
this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
|
|
1496
1497
|
var r = this.match.split(/(?:\r\n?|\n)/g);
|
|
@@ -1503,10 +1504,10 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1503
1504
|
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
|
|
1504
1505
|
}, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
|
|
1505
1506
|
}, "unput"),
|
|
1506
|
-
more: /* @__PURE__ */
|
|
1507
|
+
more: /* @__PURE__ */ e(function() {
|
|
1507
1508
|
return this._more = !0, this;
|
|
1508
1509
|
}, "more"),
|
|
1509
|
-
reject: /* @__PURE__ */
|
|
1510
|
+
reject: /* @__PURE__ */ e(function() {
|
|
1510
1511
|
if (this.options.backtrack_lexer) this._backtrack = !0;
|
|
1511
1512
|
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(), {
|
|
1512
1513
|
text: "",
|
|
@@ -1515,22 +1516,22 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1515
1516
|
});
|
|
1516
1517
|
return this;
|
|
1517
1518
|
}, "reject"),
|
|
1518
|
-
less: /* @__PURE__ */
|
|
1519
|
+
less: /* @__PURE__ */ e(function(e) {
|
|
1519
1520
|
this.unput(this.match.slice(e));
|
|
1520
1521
|
}, "less"),
|
|
1521
|
-
pastInput: /* @__PURE__ */
|
|
1522
|
+
pastInput: /* @__PURE__ */ e(function() {
|
|
1522
1523
|
var e = this.matched.substr(0, this.matched.length - this.match.length);
|
|
1523
1524
|
return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
|
|
1524
1525
|
}, "pastInput"),
|
|
1525
|
-
upcomingInput: /* @__PURE__ */
|
|
1526
|
+
upcomingInput: /* @__PURE__ */ e(function() {
|
|
1526
1527
|
var e = this.match;
|
|
1527
1528
|
return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
|
|
1528
1529
|
}, "upcomingInput"),
|
|
1529
|
-
showPosition: /* @__PURE__ */
|
|
1530
|
+
showPosition: /* @__PURE__ */ e(function() {
|
|
1530
1531
|
var e = this.pastInput(), t = Array(e.length + 1).join("-");
|
|
1531
1532
|
return e + this.upcomingInput() + "\n" + t + "^";
|
|
1532
1533
|
}, "showPosition"),
|
|
1533
|
-
test_match: /* @__PURE__ */
|
|
1534
|
+
test_match: /* @__PURE__ */ e(function(e, t) {
|
|
1534
1535
|
var n, r, i;
|
|
1535
1536
|
if (this.options.backtrack_lexer && (i = {
|
|
1536
1537
|
yylineno: this.yylineno,
|
|
@@ -1563,7 +1564,7 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1563
1564
|
}
|
|
1564
1565
|
return !1;
|
|
1565
1566
|
}, "test_match"),
|
|
1566
|
-
next: /* @__PURE__ */
|
|
1567
|
+
next: /* @__PURE__ */ e(function() {
|
|
1567
1568
|
if (this.done) return this.EOF;
|
|
1568
1569
|
this._input || (this.done = !0);
|
|
1569
1570
|
var e, t, n, r;
|
|
@@ -1583,29 +1584,29 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1583
1584
|
line: this.yylineno
|
|
1584
1585
|
});
|
|
1585
1586
|
}, "next"),
|
|
1586
|
-
lex: /* @__PURE__ */
|
|
1587
|
+
lex: /* @__PURE__ */ e(function() {
|
|
1587
1588
|
return this.next() || this.lex();
|
|
1588
1589
|
}, "lex"),
|
|
1589
|
-
begin: /* @__PURE__ */
|
|
1590
|
+
begin: /* @__PURE__ */ e(function(e) {
|
|
1590
1591
|
this.conditionStack.push(e);
|
|
1591
1592
|
}, "begin"),
|
|
1592
|
-
popState: /* @__PURE__ */
|
|
1593
|
+
popState: /* @__PURE__ */ e(function() {
|
|
1593
1594
|
return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
|
|
1594
1595
|
}, "popState"),
|
|
1595
|
-
_currentRules: /* @__PURE__ */
|
|
1596
|
+
_currentRules: /* @__PURE__ */ e(function() {
|
|
1596
1597
|
return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
|
|
1597
1598
|
}, "_currentRules"),
|
|
1598
|
-
topState: /* @__PURE__ */
|
|
1599
|
+
topState: /* @__PURE__ */ e(function(e) {
|
|
1599
1600
|
return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
|
|
1600
1601
|
}, "topState"),
|
|
1601
|
-
pushState: /* @__PURE__ */
|
|
1602
|
+
pushState: /* @__PURE__ */ e(function(e) {
|
|
1602
1603
|
this.begin(e);
|
|
1603
1604
|
}, "pushState"),
|
|
1604
|
-
stateStackSize: /* @__PURE__ */
|
|
1605
|
+
stateStackSize: /* @__PURE__ */ e(function() {
|
|
1605
1606
|
return this.conditionStack.length;
|
|
1606
1607
|
}, "stateStackSize"),
|
|
1607
1608
|
options: {},
|
|
1608
|
-
performAction: /* @__PURE__ */
|
|
1609
|
+
performAction: /* @__PURE__ */ e(function(e, t, n, r) {
|
|
1609
1610
|
switch (n) {
|
|
1610
1611
|
case 0: return 6;
|
|
1611
1612
|
case 1: return 7;
|
|
@@ -1970,7 +1971,12 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
1970
1971
|
inclusive: !1
|
|
1971
1972
|
},
|
|
1972
1973
|
component_ext_queue: {
|
|
1973
|
-
rules: [
|
|
1974
|
+
rules: [
|
|
1975
|
+
65,
|
|
1976
|
+
66,
|
|
1977
|
+
67,
|
|
1978
|
+
68
|
|
1979
|
+
],
|
|
1974
1980
|
inclusive: !1
|
|
1975
1981
|
},
|
|
1976
1982
|
component_ext_db: {
|
|
@@ -2263,27 +2269,27 @@ var import_dist = require_dist(), parser = (function() {
|
|
|
2263
2269
|
}
|
|
2264
2270
|
};
|
|
2265
2271
|
})();
|
|
2266
|
-
function
|
|
2272
|
+
function ue() {
|
|
2267
2273
|
this.yy = {};
|
|
2268
2274
|
}
|
|
2269
|
-
return
|
|
2275
|
+
return e(ue, "Parser"), ue.prototype = J, J.Parser = ue, new ue();
|
|
2270
2276
|
})();
|
|
2271
|
-
|
|
2272
|
-
var
|
|
2277
|
+
b.parser = b;
|
|
2278
|
+
var x = b, S = [], C = [""], w = "global", T = "", E = [{
|
|
2273
2279
|
alias: "global",
|
|
2274
2280
|
label: { text: "global" },
|
|
2275
2281
|
type: { text: "global" },
|
|
2276
2282
|
tags: null,
|
|
2277
2283
|
link: null,
|
|
2278
2284
|
parentBoundary: ""
|
|
2279
|
-
}],
|
|
2280
|
-
return
|
|
2281
|
-
}, "getC4Type"),
|
|
2282
|
-
|
|
2283
|
-
}, "setC4Type"),
|
|
2285
|
+
}], D = [], O = "", k = !1, A = 4, j = 2, M, N = /* @__PURE__ */ e(function() {
|
|
2286
|
+
return M;
|
|
2287
|
+
}, "getC4Type"), P = /* @__PURE__ */ e(function(e) {
|
|
2288
|
+
M = l(e, s());
|
|
2289
|
+
}, "setC4Type"), F = /* @__PURE__ */ e(function(e, t, n, r, i, a, o, s, l) {
|
|
2284
2290
|
if (e == null || t == null || n == null || r == null) return;
|
|
2285
|
-
let u = {}, d =
|
|
2286
|
-
if (d ? u = d :
|
|
2291
|
+
let u = {}, d = D.find((e) => e.from === t && e.to === n);
|
|
2292
|
+
if (d ? u = d : D.push(u), u.type = e, u.from = t, u.to = n, u.label = { text: r }, i == null) u.techn = { text: "" };
|
|
2287
2293
|
else if (typeof i == "object") {
|
|
2288
2294
|
let [e, t] = Object.entries(i)[0];
|
|
2289
2295
|
u[e] = { text: t };
|
|
@@ -2305,11 +2311,11 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2305
2311
|
let [e, t] = Object.entries(l)[0];
|
|
2306
2312
|
u[e] = t;
|
|
2307
2313
|
} else u.link = l;
|
|
2308
|
-
u.wrap =
|
|
2309
|
-
}, "addRel"),
|
|
2314
|
+
u.wrap = J();
|
|
2315
|
+
}, "addRel"), I = /* @__PURE__ */ e(function(e, t, n, r, i, a, o) {
|
|
2310
2316
|
if (t === null || n === null) return;
|
|
2311
|
-
let s = {}, l =
|
|
2312
|
-
if (l && t === l.alias ? s = l : (s.alias = t,
|
|
2317
|
+
let s = {}, l = S.find((e) => e.alias === t);
|
|
2318
|
+
if (l && t === l.alias ? s = l : (s.alias = t, S.push(s)), n == null ? s.label = { text: "" } : s.label = { text: n }, r == null) s.descr = { text: "" };
|
|
2313
2319
|
else if (typeof r == "object") {
|
|
2314
2320
|
let [e, t] = Object.entries(r)[0];
|
|
2315
2321
|
s[e] = { text: t };
|
|
@@ -2326,11 +2332,11 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2326
2332
|
let [e, t] = Object.entries(o)[0];
|
|
2327
2333
|
s[e] = t;
|
|
2328
2334
|
} else s.link = o;
|
|
2329
|
-
s.typeC4Shape = { text: e }, s.parentBoundary =
|
|
2330
|
-
}, "addPersonOrSystem"),
|
|
2335
|
+
s.typeC4Shape = { text: e }, s.parentBoundary = w, s.wrap = J();
|
|
2336
|
+
}, "addPersonOrSystem"), L = /* @__PURE__ */ e(function(e, t, n, r, i, a, o, s) {
|
|
2331
2337
|
if (t === null || n === null) return;
|
|
2332
|
-
let l = {}, u =
|
|
2333
|
-
if (u && t === u.alias ? l = u : (l.alias = t,
|
|
2338
|
+
let l = {}, u = S.find((e) => e.alias === t);
|
|
2339
|
+
if (u && t === u.alias ? l = u : (l.alias = t, S.push(l)), n == null ? l.label = { text: "" } : l.label = { text: n }, r == null) l.techn = { text: "" };
|
|
2334
2340
|
else if (typeof r == "object") {
|
|
2335
2341
|
let [e, t] = Object.entries(r)[0];
|
|
2336
2342
|
l[e] = { text: t };
|
|
@@ -2352,11 +2358,11 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2352
2358
|
let [e, t] = Object.entries(s)[0];
|
|
2353
2359
|
l[e] = t;
|
|
2354
2360
|
} else l.link = s;
|
|
2355
|
-
l.wrap =
|
|
2356
|
-
}, "addContainer"),
|
|
2361
|
+
l.wrap = J(), l.typeC4Shape = { text: e }, l.parentBoundary = w;
|
|
2362
|
+
}, "addContainer"), R = /* @__PURE__ */ e(function(e, t, n, r, i, a, o, s) {
|
|
2357
2363
|
if (t === null || n === null) return;
|
|
2358
|
-
let l = {}, u =
|
|
2359
|
-
if (u && t === u.alias ? l = u : (l.alias = t,
|
|
2364
|
+
let l = {}, u = S.find((e) => e.alias === t);
|
|
2365
|
+
if (u && t === u.alias ? l = u : (l.alias = t, S.push(l)), n == null ? l.label = { text: "" } : l.label = { text: n }, r == null) l.techn = { text: "" };
|
|
2360
2366
|
else if (typeof r == "object") {
|
|
2361
2367
|
let [e, t] = Object.entries(r)[0];
|
|
2362
2368
|
l[e] = { text: t };
|
|
@@ -2378,11 +2384,11 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2378
2384
|
let [e, t] = Object.entries(s)[0];
|
|
2379
2385
|
l[e] = t;
|
|
2380
2386
|
} else l.link = s;
|
|
2381
|
-
l.wrap =
|
|
2382
|
-
}, "addComponent"),
|
|
2387
|
+
l.wrap = J(), l.typeC4Shape = { text: e }, l.parentBoundary = w;
|
|
2388
|
+
}, "addComponent"), ee = /* @__PURE__ */ e(function(e, t, n, r, i) {
|
|
2383
2389
|
if (e === null || t === null) return;
|
|
2384
|
-
let a = {}, o =
|
|
2385
|
-
if (o && e === o.alias ? a = o : (a.alias = e,
|
|
2390
|
+
let a = {}, o = E.find((t) => t.alias === e);
|
|
2391
|
+
if (o && e === o.alias ? a = o : (a.alias = e, E.push(a)), t == null ? a.label = { text: "" } : a.label = { text: t }, n == null) a.type = { text: "system" };
|
|
2386
2392
|
else if (typeof n == "object") {
|
|
2387
2393
|
let [e, t] = Object.entries(n)[0];
|
|
2388
2394
|
a[e] = { text: t };
|
|
@@ -2395,11 +2401,11 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2395
2401
|
let [e, t] = Object.entries(i)[0];
|
|
2396
2402
|
a[e] = t;
|
|
2397
2403
|
} else a.link = i;
|
|
2398
|
-
a.parentBoundary =
|
|
2399
|
-
}, "addPersonOrSystemBoundary"),
|
|
2404
|
+
a.parentBoundary = w, a.wrap = J(), T = w, w = e, C.push(T);
|
|
2405
|
+
}, "addPersonOrSystemBoundary"), te = /* @__PURE__ */ e(function(e, t, n, r, i) {
|
|
2400
2406
|
if (e === null || t === null) return;
|
|
2401
|
-
let a = {}, o =
|
|
2402
|
-
if (o && e === o.alias ? a = o : (a.alias = e,
|
|
2407
|
+
let a = {}, o = E.find((t) => t.alias === e);
|
|
2408
|
+
if (o && e === o.alias ? a = o : (a.alias = e, E.push(a)), t == null ? a.label = { text: "" } : a.label = { text: t }, n == null) a.type = { text: "container" };
|
|
2403
2409
|
else if (typeof n == "object") {
|
|
2404
2410
|
let [e, t] = Object.entries(n)[0];
|
|
2405
2411
|
a[e] = { text: t };
|
|
@@ -2412,11 +2418,11 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2412
2418
|
let [e, t] = Object.entries(i)[0];
|
|
2413
2419
|
a[e] = t;
|
|
2414
2420
|
} else a.link = i;
|
|
2415
|
-
a.parentBoundary =
|
|
2416
|
-
}, "addContainerBoundary"),
|
|
2421
|
+
a.parentBoundary = w, a.wrap = J(), T = w, w = e, C.push(T);
|
|
2422
|
+
}, "addContainerBoundary"), ne = /* @__PURE__ */ e(function(e, t, n, r, i, a, o, s) {
|
|
2417
2423
|
if (t === null || n === null) return;
|
|
2418
|
-
let l = {}, u =
|
|
2419
|
-
if (u && t === u.alias ? l = u : (l.alias = t,
|
|
2424
|
+
let l = {}, u = E.find((e) => e.alias === t);
|
|
2425
|
+
if (u && t === u.alias ? l = u : (l.alias = t, E.push(l)), n == null ? l.label = { text: "" } : l.label = { text: n }, r == null) l.type = { text: "node" };
|
|
2420
2426
|
else if (typeof r == "object") {
|
|
2421
2427
|
let [e, t] = Object.entries(r)[0];
|
|
2422
2428
|
l[e] = { text: t };
|
|
@@ -2434,12 +2440,12 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2434
2440
|
let [e, t] = Object.entries(s)[0];
|
|
2435
2441
|
l[e] = t;
|
|
2436
2442
|
} else l.link = s;
|
|
2437
|
-
l.nodeType = e, l.parentBoundary =
|
|
2438
|
-
}, "addDeploymentNode"),
|
|
2439
|
-
|
|
2440
|
-
}, "popBoundaryParseStack"),
|
|
2441
|
-
let f =
|
|
2442
|
-
if (!(f === void 0 && (f =
|
|
2443
|
+
l.nodeType = e, l.parentBoundary = w, l.wrap = J(), T = w, w = t, C.push(T);
|
|
2444
|
+
}, "addDeploymentNode"), z = /* @__PURE__ */ e(function() {
|
|
2445
|
+
w = T, C.pop(), T = C.pop(), C.push(T);
|
|
2446
|
+
}, "popBoundaryParseStack"), B = /* @__PURE__ */ e(function(e, t, n, r, i, a, o, s, l, u, d) {
|
|
2447
|
+
let f = S.find((e) => e.alias === t);
|
|
2448
|
+
if (!(f === void 0 && (f = E.find((e) => e.alias === t), f === void 0))) {
|
|
2443
2449
|
if (n != null) if (typeof n == "object") {
|
|
2444
2450
|
let [e, t] = Object.entries(n)[0];
|
|
2445
2451
|
f[e] = t;
|
|
@@ -2477,8 +2483,8 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2477
2483
|
f[e] = t;
|
|
2478
2484
|
} else f.legendSprite = d;
|
|
2479
2485
|
}
|
|
2480
|
-
}, "updateElStyle"),
|
|
2481
|
-
let s =
|
|
2486
|
+
}, "updateElStyle"), V = /* @__PURE__ */ e(function(e, t, n, r, i, a, o) {
|
|
2487
|
+
let s = D.find((e) => e.from === t && e.to === n);
|
|
2482
2488
|
if (s !== void 0) {
|
|
2483
2489
|
if (r != null) if (typeof r == "object") {
|
|
2484
2490
|
let [e, t] = Object.entries(r)[0];
|
|
@@ -2497,8 +2503,8 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2497
2503
|
s[e] = parseInt(t);
|
|
2498
2504
|
} else s.offsetY = parseInt(o);
|
|
2499
2505
|
}
|
|
2500
|
-
}, "updateRelStyle"),
|
|
2501
|
-
let r =
|
|
2506
|
+
}, "updateRelStyle"), H = /* @__PURE__ */ e(function(e, t, n) {
|
|
2507
|
+
let r = A, i = j;
|
|
2502
2508
|
if (typeof t == "object") {
|
|
2503
2509
|
let e = Object.values(t)[0];
|
|
2504
2510
|
r = parseInt(e);
|
|
@@ -2507,71 +2513,71 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2507
2513
|
let e = Object.values(n)[0];
|
|
2508
2514
|
i = parseInt(e);
|
|
2509
2515
|
} else i = parseInt(n);
|
|
2510
|
-
r >= 1 && (
|
|
2511
|
-
}, "updateLayoutConfig"),
|
|
2512
|
-
return
|
|
2513
|
-
}, "getC4ShapeInRow"),
|
|
2514
|
-
return
|
|
2515
|
-
}, "getC4BoundaryInRow"),
|
|
2516
|
-
return
|
|
2517
|
-
}, "getCurrentBoundaryParse"),
|
|
2518
|
-
return
|
|
2519
|
-
}, "getParentBoundaryParse"),
|
|
2520
|
-
return e == null ?
|
|
2521
|
-
}, "getC4ShapeArray"),
|
|
2522
|
-
return
|
|
2523
|
-
}, "getC4Shape"),
|
|
2524
|
-
return Object.keys(
|
|
2525
|
-
}, "getC4ShapeKeys"),
|
|
2526
|
-
return e == null ?
|
|
2527
|
-
}, "getBoundaries"),
|
|
2528
|
-
return
|
|
2529
|
-
}, "getRels"),
|
|
2530
|
-
return
|
|
2531
|
-
}, "getTitle"),
|
|
2532
|
-
|
|
2533
|
-
}, "setWrap"),
|
|
2534
|
-
return
|
|
2535
|
-
}, "autoWrap"),
|
|
2536
|
-
addPersonOrSystem,
|
|
2537
|
-
addPersonOrSystemBoundary,
|
|
2538
|
-
addContainer,
|
|
2539
|
-
addContainerBoundary,
|
|
2540
|
-
addComponent,
|
|
2541
|
-
addDeploymentNode,
|
|
2542
|
-
popBoundaryParseStack,
|
|
2543
|
-
addRel,
|
|
2544
|
-
updateElStyle,
|
|
2545
|
-
updateRelStyle,
|
|
2546
|
-
updateLayoutConfig,
|
|
2547
|
-
autoWrap,
|
|
2548
|
-
setWrap,
|
|
2549
|
-
getC4ShapeArray,
|
|
2550
|
-
getC4Shape,
|
|
2551
|
-
getC4ShapeKeys,
|
|
2552
|
-
getBoundaries,
|
|
2553
|
-
getBoundarys,
|
|
2554
|
-
getCurrentBoundaryParse,
|
|
2555
|
-
getParentBoundaryParse,
|
|
2556
|
-
getRels,
|
|
2557
|
-
getTitle,
|
|
2558
|
-
getC4Type,
|
|
2559
|
-
getC4ShapeInRow,
|
|
2560
|
-
getC4BoundaryInRow,
|
|
2561
|
-
setAccTitle,
|
|
2562
|
-
getAccTitle,
|
|
2563
|
-
getAccDescription,
|
|
2564
|
-
setAccDescription,
|
|
2565
|
-
getConfig: /* @__PURE__ */
|
|
2566
|
-
clear: /* @__PURE__ */
|
|
2567
|
-
|
|
2516
|
+
r >= 1 && (A = r), i >= 1 && (j = i);
|
|
2517
|
+
}, "updateLayoutConfig"), re = /* @__PURE__ */ e(function() {
|
|
2518
|
+
return A;
|
|
2519
|
+
}, "getC4ShapeInRow"), ie = /* @__PURE__ */ e(function() {
|
|
2520
|
+
return j;
|
|
2521
|
+
}, "getC4BoundaryInRow"), ae = /* @__PURE__ */ e(function() {
|
|
2522
|
+
return w;
|
|
2523
|
+
}, "getCurrentBoundaryParse"), U = /* @__PURE__ */ e(function() {
|
|
2524
|
+
return T;
|
|
2525
|
+
}, "getParentBoundaryParse"), W = /* @__PURE__ */ e(function(e) {
|
|
2526
|
+
return e == null ? S : S.filter((t) => t.parentBoundary === e);
|
|
2527
|
+
}, "getC4ShapeArray"), G = /* @__PURE__ */ e(function(e) {
|
|
2528
|
+
return S.find((t) => t.alias === e);
|
|
2529
|
+
}, "getC4Shape"), K = /* @__PURE__ */ e(function(e) {
|
|
2530
|
+
return Object.keys(W(e));
|
|
2531
|
+
}, "getC4ShapeKeys"), q = /* @__PURE__ */ e(function(e) {
|
|
2532
|
+
return e == null ? E : E.filter((t) => t.parentBoundary === e);
|
|
2533
|
+
}, "getBoundaries"), oe = q, se = /* @__PURE__ */ e(function() {
|
|
2534
|
+
return D;
|
|
2535
|
+
}, "getRels"), ce = /* @__PURE__ */ e(function() {
|
|
2536
|
+
return O;
|
|
2537
|
+
}, "getTitle"), le = /* @__PURE__ */ e(function(e) {
|
|
2538
|
+
k = e;
|
|
2539
|
+
}, "setWrap"), J = /* @__PURE__ */ e(function() {
|
|
2540
|
+
return k;
|
|
2541
|
+
}, "autoWrap"), ue = {
|
|
2542
|
+
addPersonOrSystem: I,
|
|
2543
|
+
addPersonOrSystemBoundary: ee,
|
|
2544
|
+
addContainer: L,
|
|
2545
|
+
addContainerBoundary: te,
|
|
2546
|
+
addComponent: R,
|
|
2547
|
+
addDeploymentNode: ne,
|
|
2548
|
+
popBoundaryParseStack: z,
|
|
2549
|
+
addRel: F,
|
|
2550
|
+
updateElStyle: B,
|
|
2551
|
+
updateRelStyle: V,
|
|
2552
|
+
updateLayoutConfig: H,
|
|
2553
|
+
autoWrap: J,
|
|
2554
|
+
setWrap: le,
|
|
2555
|
+
getC4ShapeArray: W,
|
|
2556
|
+
getC4Shape: G,
|
|
2557
|
+
getC4ShapeKeys: K,
|
|
2558
|
+
getBoundaries: q,
|
|
2559
|
+
getBoundarys: oe,
|
|
2560
|
+
getCurrentBoundaryParse: ae,
|
|
2561
|
+
getParentBoundaryParse: U,
|
|
2562
|
+
getRels: se,
|
|
2563
|
+
getTitle: ce,
|
|
2564
|
+
getC4Type: N,
|
|
2565
|
+
getC4ShapeInRow: re,
|
|
2566
|
+
getC4BoundaryInRow: ie,
|
|
2567
|
+
setAccTitle: d,
|
|
2568
|
+
getAccTitle: o,
|
|
2569
|
+
getAccDescription: a,
|
|
2570
|
+
setAccDescription: u,
|
|
2571
|
+
getConfig: /* @__PURE__ */ e(() => s().c4, "getConfig"),
|
|
2572
|
+
clear: /* @__PURE__ */ e(function() {
|
|
2573
|
+
S = [], E = [{
|
|
2568
2574
|
alias: "global",
|
|
2569
2575
|
label: { text: "global" },
|
|
2570
2576
|
type: { text: "global" },
|
|
2571
2577
|
tags: null,
|
|
2572
2578
|
link: null,
|
|
2573
2579
|
parentBoundary: ""
|
|
2574
|
-
}],
|
|
2580
|
+
}], T = "", w = "global", C = [""], D = [], C = [""], O = "", k = !1, A = 4, j = 2;
|
|
2575
2581
|
}, "clear"),
|
|
2576
2582
|
LINETYPE: {
|
|
2577
2583
|
SOLID: 0,
|
|
@@ -2607,40 +2613,40 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2607
2613
|
RIGHTOF: 1,
|
|
2608
2614
|
OVER: 2
|
|
2609
2615
|
},
|
|
2610
|
-
setTitle: /* @__PURE__ */
|
|
2611
|
-
|
|
2616
|
+
setTitle: /* @__PURE__ */ e(function(e) {
|
|
2617
|
+
O = l(e, s());
|
|
2612
2618
|
}, "setTitle"),
|
|
2613
|
-
setC4Type
|
|
2614
|
-
},
|
|
2615
|
-
return
|
|
2616
|
-
}, "drawRect"),
|
|
2619
|
+
setC4Type: P
|
|
2620
|
+
}, de = /* @__PURE__ */ e(function(e, t) {
|
|
2621
|
+
return _(e, t);
|
|
2622
|
+
}, "drawRect"), fe = /* @__PURE__ */ e(function(e, t, n, r, i, a) {
|
|
2617
2623
|
let o = e.append("image");
|
|
2618
2624
|
o.attr("width", t), o.attr("height", n), o.attr("x", r), o.attr("y", i);
|
|
2619
|
-
let s = a.startsWith("data:image/png;base64") ? a : (0,
|
|
2625
|
+
let s = a.startsWith("data:image/png;base64") ? a : (0, y.sanitizeUrl)(a);
|
|
2620
2626
|
o.attr("xlink:href", s);
|
|
2621
|
-
}, "drawImage"),
|
|
2622
|
-
let
|
|
2627
|
+
}, "drawImage"), pe = /* @__PURE__ */ e((e, t, n, r) => {
|
|
2628
|
+
let i = e.append("g"), a = 0;
|
|
2623
2629
|
for (let e of t) {
|
|
2624
|
-
let t = e.textColor ? e.textColor : "#444444",
|
|
2625
|
-
if (
|
|
2626
|
-
let t =
|
|
2627
|
-
t.attr("x1", e.startPoint.x), t.attr("y1", e.startPoint.y), t.attr("x2", e.endPoint.x), t.attr("y2", e.endPoint.y), t.attr("stroke-width", "1"), t.attr("stroke",
|
|
2630
|
+
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;
|
|
2631
|
+
if (a === 0) {
|
|
2632
|
+
let t = i.append("line");
|
|
2633
|
+
t.attr("x1", e.startPoint.x), t.attr("y1", e.startPoint.y), t.attr("x2", e.endPoint.x), t.attr("y2", e.endPoint.y), t.attr("stroke-width", "1"), t.attr("stroke", o), t.style("fill", "none"), 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)"), a = -1;
|
|
2628
2634
|
} else {
|
|
2629
|
-
let t =
|
|
2630
|
-
t.attr("fill", "none").attr("stroke-width", "1").attr("stroke",
|
|
2635
|
+
let t = i.append("path");
|
|
2636
|
+
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)");
|
|
2631
2637
|
}
|
|
2632
|
-
let
|
|
2633
|
-
|
|
2638
|
+
let u = n.messageFont();
|
|
2639
|
+
Y(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(), Y(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, {
|
|
2634
2640
|
fill: t,
|
|
2635
2641
|
"font-style": "italic"
|
|
2636
|
-
},
|
|
2642
|
+
}, u));
|
|
2637
2643
|
}
|
|
2638
|
-
}, "drawRels"),
|
|
2644
|
+
}, "drawRels"), me = /* @__PURE__ */ e(function(e, t, n) {
|
|
2639
2645
|
let r = e.append("g"), i = t.bgColor ? t.bgColor : "none", a = t.borderColor ? t.borderColor : "#444444", o = t.fontColor ? t.fontColor : "black", s = {
|
|
2640
2646
|
"stroke-width": 1,
|
|
2641
2647
|
"stroke-dasharray": "7.0,7.0"
|
|
2642
2648
|
};
|
|
2643
|
-
t.nodeType && (s = { "stroke-width": 1 }),
|
|
2649
|
+
t.nodeType && (s = { "stroke-width": 1 }), de(r, {
|
|
2644
2650
|
x: t.x,
|
|
2645
2651
|
y: t.y,
|
|
2646
2652
|
fill: i,
|
|
@@ -2652,8 +2658,8 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2652
2658
|
attrs: s
|
|
2653
2659
|
});
|
|
2654
2660
|
let l = n.boundaryFont();
|
|
2655
|
-
l.fontWeight = "bold", l.fontSize += 2, l.fontColor = o,
|
|
2656
|
-
}, "drawBoundary"),
|
|
2661
|
+
l.fontWeight = "bold", l.fontSize += 2, l.fontColor = o, Y(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, Y(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, Y(n)(t.descr.text, r, t.x, t.y + t.descr.Y, t.width, t.height, { fill: "#444444" }, l));
|
|
2662
|
+
}, "drawBoundary"), he = /* @__PURE__ */ e(function(e, t, n) {
|
|
2657
2663
|
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=";
|
|
2658
2664
|
switch (t.typeC4Shape.text) {
|
|
2659
2665
|
case "person":
|
|
@@ -2665,7 +2671,7 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2665
2671
|
}
|
|
2666
2672
|
let s = e.append("g");
|
|
2667
2673
|
s.attr("class", "person-man");
|
|
2668
|
-
let l =
|
|
2674
|
+
let l = v();
|
|
2669
2675
|
switch (t.typeC4Shape.text) {
|
|
2670
2676
|
case "person":
|
|
2671
2677
|
case "external_person":
|
|
@@ -2675,7 +2681,7 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2675
2681
|
case "external_container":
|
|
2676
2682
|
case "component":
|
|
2677
2683
|
case "external_component":
|
|
2678
|
-
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 },
|
|
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 }, de(s, l);
|
|
2679
2685
|
break;
|
|
2680
2686
|
case "system_db":
|
|
2681
2687
|
case "external_system_db":
|
|
@@ -2694,86 +2700,85 @@ var c4Diagram_default = parser, c4ShapeArray = [], boundaryParseStack = [""], cu
|
|
|
2694
2700
|
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));
|
|
2695
2701
|
break;
|
|
2696
2702
|
}
|
|
2697
|
-
let u =
|
|
2703
|
+
let u = Ce(n, t.typeC4Shape.text);
|
|
2698
2704
|
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) {
|
|
2699
2705
|
case "person":
|
|
2700
2706
|
case "external_person":
|
|
2701
|
-
|
|
2707
|
+
fe(s, 48, 48, t.x + t.width / 2 - 24, t.y + t.image.Y, o);
|
|
2702
2708
|
break;
|
|
2703
2709
|
}
|
|
2704
2710
|
let d = n[t.typeC4Shape.text + "Font"]();
|
|
2705
|
-
return d.fontWeight = "bold", d.fontSize += 2, d.fontColor = a,
|
|
2711
|
+
return d.fontWeight = "bold", d.fontSize += 2, d.fontColor = a, Y(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 !== "" ? Y(n)(t.techn.text, s, t.x, t.y + t.techn.Y, t.width, t.height, {
|
|
2706
2712
|
fill: a,
|
|
2707
2713
|
"font-style": "italic"
|
|
2708
|
-
}, d) : t.type && t.type.text !== "" &&
|
|
2714
|
+
}, d) : t.type && t.type.text !== "" && Y(n)(t.type.text, s, t.x, t.y + t.type.Y, t.width, t.height, {
|
|
2709
2715
|
fill: a,
|
|
2710
2716
|
"font-style": "italic"
|
|
2711
|
-
}, d), t.descr && t.descr.text !== "" && (d = n.personFont(), d.fontColor = a,
|
|
2712
|
-
}, "drawC4Shape"),
|
|
2713
|
-
e.append("defs").append("symbol").attr("id", "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");
|
|
2714
|
-
}, "insertDatabaseIcon"),
|
|
2715
|
-
e.append("defs").append("symbol").attr("id", "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");
|
|
2716
|
-
}, "insertComputerIcon"),
|
|
2717
|
-
e.append("defs").append("symbol").attr("id", "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");
|
|
2718
|
-
}, "insertClockIcon"),
|
|
2719
|
-
e.append("defs").append("marker").attr("id", "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");
|
|
2720
|
-
}, "insertArrowHead"),
|
|
2721
|
-
e.append("defs").append("marker").attr("id", "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");
|
|
2722
|
-
}, "insertArrowEnd"),
|
|
2723
|
-
e.append("defs").append("marker").attr("id", "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");
|
|
2724
|
-
}, "insertArrowFilledHead"),
|
|
2725
|
-
e.append("defs").append("marker").attr("id",
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
t.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"), t.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");
|
|
2729
|
-
}, "insertArrowCrossHead"), getC4ShapeFont = /* @__PURE__ */ __name((e, t) => ({
|
|
2717
|
+
}, d), t.descr && t.descr.text !== "" && (d = n.personFont(), d.fontColor = a, Y(n)(t.descr.text, s, t.x, t.y + t.descr.Y, t.width, t.height, { fill: a }, d)), t.height;
|
|
2718
|
+
}, "drawC4Shape"), ge = /* @__PURE__ */ e(function(e, t) {
|
|
2719
|
+
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"), _e = /* @__PURE__ */ e(function(e, t) {
|
|
2721
|
+
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"), ve = /* @__PURE__ */ e(function(e, t) {
|
|
2723
|
+
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"), ye = /* @__PURE__ */ e(function(e, t) {
|
|
2725
|
+
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"), be = /* @__PURE__ */ e(function(e, t) {
|
|
2727
|
+
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"), xe = /* @__PURE__ */ e(function(e, t) {
|
|
2729
|
+
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"), Se = /* @__PURE__ */ e(function(e, t) {
|
|
2731
|
+
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
|
+
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"), Ce = /* @__PURE__ */ e((e, t) => ({
|
|
2730
2734
|
fontFamily: e[t + "FontFamily"],
|
|
2731
2735
|
fontSize: e[t + "FontSize"],
|
|
2732
2736
|
fontWeight: e[t + "FontWeight"]
|
|
2733
|
-
}), "getC4ShapeFont"),
|
|
2737
|
+
}), "getC4ShapeFont"), Y = /* @__PURE__ */ (function() {
|
|
2734
2738
|
function t(e, t, n, r, i, o, s) {
|
|
2735
2739
|
a(t.append("text").attr("x", n + i / 2).attr("y", r + o / 2 + 5).style("text-anchor", "middle").text(e), s);
|
|
2736
2740
|
}
|
|
2737
|
-
|
|
2741
|
+
e(t, "byText");
|
|
2738
2742
|
function n(e, t, n, i, o, s, l, u) {
|
|
2739
|
-
let { fontSize: d, fontFamily: f, fontWeight: p } = u, m = e.split(
|
|
2743
|
+
let { fontSize: d, fontFamily: f, fontWeight: p } = u, m = e.split(r.lineBreakRegex);
|
|
2740
2744
|
for (let e = 0; e < m.length; e++) {
|
|
2741
2745
|
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);
|
|
2742
2746
|
s.append("tspan").attr("dy", r).text(m[e]).attr("alignment-baseline", "mathematical"), a(s, l);
|
|
2743
2747
|
}
|
|
2744
2748
|
}
|
|
2745
|
-
|
|
2749
|
+
e(n, "byTspan");
|
|
2746
2750
|
function i(e, t, r, i, o, s, l, u) {
|
|
2747
2751
|
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%");
|
|
2748
2752
|
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);
|
|
2749
2753
|
}
|
|
2750
|
-
|
|
2754
|
+
e(i, "byFo");
|
|
2751
2755
|
function a(e, t) {
|
|
2752
2756
|
for (let n in t) t.hasOwnProperty(n) && e.attr(n, t[n]);
|
|
2753
2757
|
}
|
|
2754
|
-
return
|
|
2758
|
+
return e(a, "_setTextAttrs"), function(e) {
|
|
2755
2759
|
return e.textPlacement === "fo" ? i : e.textPlacement === "old" ? t : n;
|
|
2756
2760
|
};
|
|
2757
|
-
})(),
|
|
2758
|
-
drawRect:
|
|
2759
|
-
drawBoundary,
|
|
2760
|
-
drawC4Shape,
|
|
2761
|
-
drawRels,
|
|
2762
|
-
drawImage,
|
|
2763
|
-
insertArrowHead,
|
|
2764
|
-
insertArrowEnd,
|
|
2765
|
-
insertArrowFilledHead,
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2761
|
+
})(), X = {
|
|
2762
|
+
drawRect: de,
|
|
2763
|
+
drawBoundary: me,
|
|
2764
|
+
drawC4Shape: he,
|
|
2765
|
+
drawRels: pe,
|
|
2766
|
+
drawImage: fe,
|
|
2767
|
+
insertArrowHead: ye,
|
|
2768
|
+
insertArrowEnd: be,
|
|
2769
|
+
insertArrowFilledHead: xe,
|
|
2770
|
+
insertArrowCrossHead: Se,
|
|
2771
|
+
insertDatabaseIcon: ge,
|
|
2772
|
+
insertComputerIcon: _e,
|
|
2773
|
+
insertClockIcon: ve
|
|
2774
|
+
}, we = 0, Te = 0, Ee = 4, De = 2;
|
|
2775
|
+
b.yy = ue;
|
|
2776
|
+
var Z = {}, Oe = class {
|
|
2777
|
+
static {
|
|
2778
|
+
e(this, "Bounds");
|
|
2779
|
+
}
|
|
2775
2780
|
constructor(e) {
|
|
2776
|
-
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,
|
|
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, ke(e.db.getConfig());
|
|
2777
2782
|
}
|
|
2778
2783
|
setData(e, t, n, r) {
|
|
2779
2784
|
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;
|
|
@@ -2784,7 +2789,7 @@ var conf = {}, Bounds = class {
|
|
|
2784
2789
|
insert(e) {
|
|
2785
2790
|
this.nextData.cnt = this.nextData.cnt + 1;
|
|
2786
2791
|
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;
|
|
2787
|
-
(t >= this.data.widthLimit || n >= this.data.widthLimit || this.nextData.cnt >
|
|
2792
|
+
(t >= this.data.widthLimit || n >= this.data.widthLimit || this.nextData.cnt > Ee) && (t = this.nextData.startx + e.margin + Z.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);
|
|
2788
2793
|
}
|
|
2789
2794
|
init(e) {
|
|
2790
2795
|
this.name = "", this.data = {
|
|
@@ -2799,47 +2804,47 @@ var conf = {}, Bounds = class {
|
|
|
2799
2804
|
starty: void 0,
|
|
2800
2805
|
stopy: void 0,
|
|
2801
2806
|
cnt: 0
|
|
2802
|
-
},
|
|
2807
|
+
}, ke(e.db.getConfig());
|
|
2803
2808
|
}
|
|
2804
2809
|
bumpLastMargin(e) {
|
|
2805
2810
|
this.data.stopx += e, this.data.stopy += e;
|
|
2806
2811
|
}
|
|
2807
|
-
},
|
|
2808
|
-
|
|
2809
|
-
}, "setConf"),
|
|
2812
|
+
}, ke = /* @__PURE__ */ e(function(e) {
|
|
2813
|
+
n(Z, e), e.fontFamily && (Z.personFontFamily = Z.systemFontFamily = Z.messageFontFamily = e.fontFamily), e.fontSize && (Z.personFontSize = Z.systemFontSize = Z.messageFontSize = e.fontSize), e.fontWeight && (Z.personFontWeight = Z.systemFontWeight = Z.messageFontWeight = e.fontWeight);
|
|
2814
|
+
}, "setConf"), Ae = /* @__PURE__ */ e((e, t) => ({
|
|
2810
2815
|
fontFamily: e[t + "FontFamily"],
|
|
2811
2816
|
fontSize: e[t + "FontSize"],
|
|
2812
2817
|
fontWeight: e[t + "FontWeight"]
|
|
2813
|
-
}), "c4ShapeFont"),
|
|
2818
|
+
}), "c4ShapeFont"), je = /* @__PURE__ */ e((e) => ({
|
|
2814
2819
|
fontFamily: e.boundaryFontFamily,
|
|
2815
2820
|
fontSize: e.boundaryFontSize,
|
|
2816
2821
|
fontWeight: e.boundaryFontWeight
|
|
2817
|
-
}), "boundaryFont"),
|
|
2822
|
+
}), "boundaryFont"), Me = /* @__PURE__ */ e((e) => ({
|
|
2818
2823
|
fontFamily: e.messageFontFamily,
|
|
2819
2824
|
fontSize: e.messageFontSize,
|
|
2820
2825
|
fontWeight: e.messageFontWeight
|
|
2821
2826
|
}), "messageFont");
|
|
2822
|
-
function
|
|
2823
|
-
if (!t[e].width) if (n) t[e].text =
|
|
2827
|
+
function Q(e, t, n, i, a) {
|
|
2828
|
+
if (!t[e].width) if (n) t[e].text = g(t[e].text, a, i), t[e].textLines = t[e].text.split(r.lineBreakRegex).length, t[e].width = a, t[e].height = m(t[e].text, i);
|
|
2824
2829
|
else {
|
|
2825
|
-
let n = t[e].text.split(
|
|
2830
|
+
let n = t[e].text.split(r.lineBreakRegex);
|
|
2826
2831
|
t[e].textLines = n.length;
|
|
2827
2832
|
let a = 0;
|
|
2828
2833
|
t[e].height = 0, t[e].width = 0;
|
|
2829
|
-
for (let r of n) t[e].width = Math.max(
|
|
2834
|
+
for (let r of n) t[e].width = Math.max(h(r, i), t[e].width), a = m(r, i), t[e].height = t[e].height + a;
|
|
2830
2835
|
}
|
|
2831
2836
|
}
|
|
2832
|
-
|
|
2833
|
-
var
|
|
2834
|
-
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 =
|
|
2835
|
-
let r = t.wrap &&
|
|
2836
|
-
i.fontSize += 2, i.fontWeight = "bold",
|
|
2837
|
-
}, "drawBoundary"),
|
|
2837
|
+
e(Q, "calcC4ShapeTextWH");
|
|
2838
|
+
var Ne = /* @__PURE__ */ e(function(e, t, n) {
|
|
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 = Z.c4ShapeMargin - 35;
|
|
2840
|
+
let r = t.wrap && Z.wrap, i = je(Z);
|
|
2841
|
+
i.fontSize += 2, i.fontWeight = "bold", Q("label", t, r, i, h(t.label.text, i)), X.drawBoundary(e, t, Z);
|
|
2842
|
+
}, "drawBoundary"), Pe = /* @__PURE__ */ e(function(e, t, n, r) {
|
|
2838
2843
|
let i = 0;
|
|
2839
2844
|
for (let a of r) {
|
|
2840
2845
|
i = 0;
|
|
2841
|
-
let r = n[a], o =
|
|
2842
|
-
switch (o.fontSize -= 2, r.typeC4Shape.width =
|
|
2846
|
+
let r = n[a], o = Ae(Z, r.typeC4Shape.text);
|
|
2847
|
+
switch (o.fontSize -= 2, r.typeC4Shape.width = h("«" + r.typeC4Shape.text + "»", o), r.typeC4Shape.height = o.fontSize + 2, r.typeC4Shape.Y = Z.c4ShapePadding, i = r.typeC4Shape.Y + r.typeC4Shape.height - 4, r.image = {
|
|
2843
2848
|
width: 0,
|
|
2844
2849
|
height: 0,
|
|
2845
2850
|
Y: 0
|
|
@@ -2850,47 +2855,49 @@ var drawBoundary2 = /* @__PURE__ */ __name(function(e, t, n) {
|
|
|
2850
2855
|
break;
|
|
2851
2856
|
}
|
|
2852
2857
|
r.sprite && (r.image.width = 48, r.image.height = 48, r.image.Y = i, i = r.image.Y + r.image.height);
|
|
2853
|
-
let s = r.wrap &&
|
|
2854
|
-
u.fontSize += 2, u.fontWeight = "bold",
|
|
2858
|
+
let s = r.wrap && Z.wrap, l = Z.width - Z.c4ShapePadding * 2, u = Ae(Z, r.typeC4Shape.text);
|
|
2859
|
+
u.fontSize += 2, u.fontWeight = "bold", Q("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 + "]", Q("type", r, s, Ae(Z, 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 + "]", Q("techn", r, s, Ae(Z, r.techn.text), l), r.techn.Y = i + 5, i = r.techn.Y + r.techn.height);
|
|
2855
2860
|
let d = i, f = r.label.width;
|
|
2856
|
-
r.descr && r.descr.text !== "" && (
|
|
2861
|
+
r.descr && r.descr.text !== "" && (Q("descr", r, s, Ae(Z, 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 += Z.c4ShapePadding, r.width = Math.max(r.width || Z.width, f, Z.width), r.height = Math.max(r.height || Z.height, d, Z.height), r.margin = r.margin || Z.c4ShapeMargin, e.insert(r), X.drawC4Shape(t, r, Z);
|
|
2862
|
+
}
|
|
2863
|
+
e.bumpLastMargin(Z.c4ShapeMargin);
|
|
2864
|
+
}, "drawC4ShapeArray"), $ = class {
|
|
2865
|
+
static {
|
|
2866
|
+
e(this, "Point");
|
|
2857
2867
|
}
|
|
2858
|
-
e.bumpLastMargin(conf.c4ShapeMargin);
|
|
2859
|
-
}, "drawC4ShapeArray"), Point = class {
|
|
2860
|
-
static #e = __name(this, "Point");
|
|
2861
2868
|
constructor(e, t) {
|
|
2862
2869
|
this.x = e, this.y = t;
|
|
2863
2870
|
}
|
|
2864
|
-
},
|
|
2871
|
+
}, Fe = /* @__PURE__ */ e(function(e, t) {
|
|
2865
2872
|
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;
|
|
2866
|
-
return r == a && n < i ? p = new
|
|
2867
|
-
}, "getIntersectPoint"),
|
|
2873
|
+
return r == a && n < i ? p = new $(n + e.width, s) : r == a && n > i ? p = new $(n, s) : n == i && r < a ? p = new $(o, r + e.height) : n == i && r > a && (p = new $(o, r)), n > i && r < a ? p = f >= d ? new $(n, s + d * e.width / 2) : new $(o - l / u * e.height / 2, r + e.height) : n < i && r < a ? p = f >= d ? new $(n + e.width, s + d * e.width / 2) : new $(o + l / u * e.height / 2, r + e.height) : n < i && r > a ? p = f >= d ? new $(n + e.width, s - d * e.width / 2) : new $(o + e.height / 2 * l / u, r) : n > i && r > a && (p = f >= d ? new $(n, s - e.width / 2 * d) : new $(o - e.height / 2 * l / u, r)), p;
|
|
2874
|
+
}, "getIntersectPoint"), Ie = /* @__PURE__ */ e(function(e, t) {
|
|
2868
2875
|
let n = {
|
|
2869
2876
|
x: 0,
|
|
2870
2877
|
y: 0
|
|
2871
2878
|
};
|
|
2872
2879
|
n.x = t.x + t.width / 2, n.y = t.y + t.height / 2;
|
|
2873
|
-
let r =
|
|
2880
|
+
let r = Fe(e, n);
|
|
2874
2881
|
return n.x = e.x + e.width / 2, n.y = e.y + e.height / 2, {
|
|
2875
2882
|
startPoint: r,
|
|
2876
|
-
endPoint:
|
|
2883
|
+
endPoint: Fe(t, n)
|
|
2877
2884
|
};
|
|
2878
|
-
}, "getIntersectPoints"),
|
|
2879
|
-
let
|
|
2885
|
+
}, "getIntersectPoints"), Le = /* @__PURE__ */ e(function(e, t, n, r, i) {
|
|
2886
|
+
let a = 0;
|
|
2880
2887
|
for (let e of t) {
|
|
2881
|
-
|
|
2882
|
-
let t = e.wrap &&
|
|
2883
|
-
r.db.getC4Type() === "C4Dynamic" && (e.label.text =
|
|
2884
|
-
let o =
|
|
2885
|
-
|
|
2886
|
-
let s =
|
|
2888
|
+
a += 1;
|
|
2889
|
+
let t = e.wrap && Z.wrap, i = Me(Z);
|
|
2890
|
+
r.db.getC4Type() === "C4Dynamic" && (e.label.text = a + ": " + e.label.text);
|
|
2891
|
+
let o = h(e.label.text, i);
|
|
2892
|
+
Q("label", e, t, i, o), e.techn && e.techn.text !== "" && (o = h(e.techn.text, i), Q("techn", e, t, i, o)), e.descr && e.descr.text !== "" && (o = h(e.descr.text, i), Q("descr", e, t, i, o));
|
|
2893
|
+
let s = Ie(n(e.from), n(e.to));
|
|
2887
2894
|
e.startPoint = s.startPoint, e.endPoint = s.endPoint;
|
|
2888
2895
|
}
|
|
2889
|
-
|
|
2896
|
+
X.drawRels(e, t, Z, i);
|
|
2890
2897
|
}, "drawRels");
|
|
2891
|
-
function
|
|
2892
|
-
let a = new
|
|
2893
|
-
a.data.widthLimit = n.data.widthLimit / Math.min(
|
|
2898
|
+
function Re(e, t, n, r, i) {
|
|
2899
|
+
let a = new Oe(i);
|
|
2900
|
+
a.data.widthLimit = n.data.widthLimit / Math.min(De, r.length);
|
|
2894
2901
|
for (let [o, s] of r.entries()) {
|
|
2895
2902
|
let r = 0;
|
|
2896
2903
|
s.image = {
|
|
@@ -2898,58 +2905,59 @@ function drawInsideBoundary(e, t, n, r, i) {
|
|
|
2898
2905
|
height: 0,
|
|
2899
2906
|
Y: 0
|
|
2900
2907
|
}, s.sprite && (s.image.width = 48, s.image.height = 48, s.image.Y = r, r = s.image.Y + s.image.height);
|
|
2901
|
-
let l = s.wrap &&
|
|
2902
|
-
if (u.fontSize += 2, u.fontWeight = "bold",
|
|
2903
|
-
let e =
|
|
2904
|
-
e.fontSize -= 2,
|
|
2908
|
+
let l = s.wrap && Z.wrap, u = je(Z);
|
|
2909
|
+
if (u.fontSize += 2, u.fontWeight = "bold", Q("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 + "]", Q("type", s, l, je(Z), a.data.widthLimit), s.type.Y = r + 5, r = s.type.Y + s.type.height), s.descr && s.descr.text !== "") {
|
|
2910
|
+
let e = je(Z);
|
|
2911
|
+
e.fontSize -= 2, Q("descr", s, l, e, a.data.widthLimit), s.descr.Y = r + 20, r = s.descr.Y + s.descr.height;
|
|
2905
2912
|
}
|
|
2906
|
-
if (o == 0 || o %
|
|
2907
|
-
let e = n.data.startx +
|
|
2913
|
+
if (o == 0 || o % De === 0) {
|
|
2914
|
+
let e = n.data.startx + Z.diagramMarginX, t = n.data.stopy + Z.diagramMarginY + r;
|
|
2908
2915
|
a.setData(e, e, t, t);
|
|
2909
2916
|
} else {
|
|
2910
|
-
let e = a.data.stopx === a.data.startx ? a.data.startx : a.data.stopx +
|
|
2917
|
+
let e = a.data.stopx === a.data.startx ? a.data.startx : a.data.stopx + Z.diagramMarginX, t = a.data.starty;
|
|
2911
2918
|
a.setData(e, e, t, t);
|
|
2912
2919
|
}
|
|
2913
2920
|
a.name = s.alias;
|
|
2914
2921
|
let d = i.db.getC4ShapeArray(s.alias), f = i.db.getC4ShapeKeys(s.alias);
|
|
2915
|
-
f.length > 0 &&
|
|
2922
|
+
f.length > 0 && Pe(a, e, d, f), t = s.alias;
|
|
2916
2923
|
let p = i.db.getBoundaries(t);
|
|
2917
|
-
p.length > 0 &&
|
|
2924
|
+
p.length > 0 && Re(e, t, a, p, i), s.alias !== "global" && Ne(e, s, a), n.data.stopy = Math.max(a.data.stopy + Z.c4ShapeMargin, n.data.stopy), n.data.stopx = Math.max(a.data.stopx + Z.c4ShapeMargin, n.data.stopx), we = Math.max(we, n.data.stopx), Te = Math.max(Te, n.data.stopy);
|
|
2918
2925
|
}
|
|
2919
2926
|
}
|
|
2920
|
-
|
|
2921
|
-
var
|
|
2922
|
-
drawPersonOrSystemArray:
|
|
2923
|
-
drawBoundary:
|
|
2924
|
-
setConf,
|
|
2925
|
-
draw: /* @__PURE__ */
|
|
2926
|
-
|
|
2927
|
-
let o =
|
|
2928
|
-
o === "sandbox" && (l =
|
|
2929
|
-
let u =
|
|
2930
|
-
a.db.setWrap(
|
|
2931
|
-
let p = o === "sandbox" ? u.select(`[id="${n}"]`) :
|
|
2932
|
-
|
|
2933
|
-
let m = new
|
|
2934
|
-
m.setData(
|
|
2927
|
+
e(Re, "drawInsideBoundary");
|
|
2928
|
+
var ze = {
|
|
2929
|
+
drawPersonOrSystemArray: Pe,
|
|
2930
|
+
drawBoundary: Ne,
|
|
2931
|
+
setConf: ke,
|
|
2932
|
+
draw: /* @__PURE__ */ e(function(e, n, r, a) {
|
|
2933
|
+
Z = s().c4;
|
|
2934
|
+
let o = s().securityLevel, l;
|
|
2935
|
+
o === "sandbox" && (l = f("#i" + n));
|
|
2936
|
+
let u = f(o === "sandbox" ? l.nodes()[0].contentDocument.body : "body"), d = a.db;
|
|
2937
|
+
a.db.setWrap(Z.wrap), Ee = d.getC4ShapeInRow(), De = d.getC4BoundaryInRow(), t.debug(`C:${JSON.stringify(Z, null, 2)}`);
|
|
2938
|
+
let p = o === "sandbox" ? u.select(`[id="${n}"]`) : f(`[id="${n}"]`);
|
|
2939
|
+
X.insertComputerIcon(p, n), X.insertDatabaseIcon(p, n), X.insertClockIcon(p, n);
|
|
2940
|
+
let m = new Oe(a);
|
|
2941
|
+
m.setData(Z.diagramMarginX, Z.diagramMarginX, Z.diagramMarginY, Z.diagramMarginY), m.data.widthLimit = screen.availWidth, we = Z.diagramMarginX, Te = Z.diagramMarginY;
|
|
2935
2942
|
let h = a.db.getTitle();
|
|
2936
|
-
|
|
2937
|
-
let g = m.data, _ = g.stopy - g.starty + 2 *
|
|
2938
|
-
h && p.append("text").text(h).attr("x", (g.stopx - g.startx) / 2 - 4 *
|
|
2943
|
+
Re(p, "", m, a.db.getBoundaries(""), a), X.insertArrowHead(p, n), X.insertArrowEnd(p, n), X.insertArrowCrossHead(p, n), X.insertArrowFilledHead(p, n), Le(p, a.db.getRels(), a.db.getC4Shape, a, n), m.data.stopx = we, m.data.stopy = Te;
|
|
2944
|
+
let g = m.data, _ = g.stopy - g.starty + 2 * Z.diagramMarginY, v = g.stopx - g.startx + 2 * Z.diagramMarginX;
|
|
2945
|
+
h && p.append("text").text(h).attr("x", (g.stopx - g.startx) / 2 - 4 * Z.diagramMarginX).attr("y", g.starty + Z.diagramMarginY), i(p, _, v, Z.useMaxWidth);
|
|
2939
2946
|
let y = h ? 60 : 0;
|
|
2940
|
-
p.attr("viewBox", g.startx -
|
|
2947
|
+
p.attr("viewBox", g.startx - Z.diagramMarginX + " -" + (Z.diagramMarginY + y) + " " + v + " " + (_ + y)), t.debug("models:", g);
|
|
2941
2948
|
}, "draw")
|
|
2942
|
-
},
|
|
2943
|
-
parser:
|
|
2944
|
-
db:
|
|
2945
|
-
renderer:
|
|
2946
|
-
styles: /* @__PURE__ */
|
|
2949
|
+
}, Be = {
|
|
2950
|
+
parser: x,
|
|
2951
|
+
db: ue,
|
|
2952
|
+
renderer: ze,
|
|
2953
|
+
styles: /* @__PURE__ */ e((e) => `.person {
|
|
2947
2954
|
stroke: ${e.personBorder};
|
|
2948
2955
|
fill: ${e.personBkg};
|
|
2949
2956
|
}
|
|
2950
2957
|
`, "getStyles"),
|
|
2951
|
-
init: /* @__PURE__ */
|
|
2952
|
-
|
|
2958
|
+
init: /* @__PURE__ */ e(({ c4: e, wrap: t }) => {
|
|
2959
|
+
ze.setConf(e), ue.setWrap(t);
|
|
2953
2960
|
}, "init")
|
|
2954
2961
|
};
|
|
2955
|
-
|
|
2962
|
+
//#endregion
|
|
2963
|
+
export { Be as diagram };
|