@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.
Files changed (1746) hide show
  1. package/dist/_virtual/_rolldown/runtime.js +20 -0
  2. package/dist/api/auth.js +4 -2
  3. package/dist/api/client.js +9 -7
  4. package/dist/api/config.js +4 -2
  5. package/dist/api/dashboard.js +4 -2
  6. package/dist/api/documents.js +4 -2
  7. package/dist/api/index.js +21 -19
  8. package/dist/api/processor.js +4 -2
  9. package/dist/api/secrets.js +4 -2
  10. package/dist/api/workflows.js +4 -2
  11. package/dist/api/workspaces.js +4 -2
  12. package/dist/app/EnvironmentEmbedRoot.js +24 -31
  13. package/dist/components/ai-elements/code-block.js +53 -71
  14. package/dist/components/ai-elements/message.js +41 -82
  15. package/dist/components/ai-elements/prompt-input.js +162 -253
  16. package/dist/components/ai-elements/reasoning.js +78 -116
  17. package/dist/components/ai-elements/shimmer.js +23 -35
  18. package/dist/components/ai-elements/sources.js +29 -58
  19. package/dist/components/data-table/ConfirmDialog.js +14 -30
  20. package/dist/components/data-table/DataList.js +138 -198
  21. package/dist/components/data-table/DataTable.js +168 -234
  22. package/dist/components/data-table/DataTableBatchAction.js +18 -27
  23. package/dist/components/data-table/DataTableFilters.js +53 -78
  24. package/dist/components/data-table/DataTablePagination.js +72 -104
  25. package/dist/components/data-table/DataTableToolbar.js +53 -65
  26. package/dist/components/dynamic-form/ArrayController.js +85 -103
  27. package/dist/components/dynamic-form/CodeContent.js +28 -36
  28. package/dist/components/dynamic-form/Form.js +43 -56
  29. package/dist/components/dynamic-form/FormBody.js +12 -10
  30. package/dist/components/dynamic-form/FormElement.js +31 -41
  31. package/dist/components/dynamic-form/FormElementHeader.js +12 -20
  32. package/dist/components/dynamic-form/InputController.js +36 -38
  33. package/dist/components/dynamic-form/MarkdownContent.js +53 -74
  34. package/dist/components/dynamic-form/MermaidDiagram.js +22 -24
  35. package/dist/components/dynamic-form/ObjectController.js +24 -32
  36. package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +35 -47
  37. package/dist/components/dynamic-form/fields/CheckboxField.js +39 -48
  38. package/dist/components/dynamic-form/fields/CodeViewField.js +42 -50
  39. package/dist/components/dynamic-form/fields/InputField.js +62 -90
  40. package/dist/components/dynamic-form/fields/MarkdownViewField.js +16 -19
  41. package/dist/components/dynamic-form/fields/RadioField.js +46 -62
  42. package/dist/components/dynamic-form/fields/SelectField.js +40 -58
  43. package/dist/components/dynamic-form/fields/SliderField.js +94 -100
  44. package/dist/components/dynamic-form/fields/SwitchField.js +42 -61
  45. package/dist/components/dynamic-form/fields/TextareaField.js +53 -72
  46. package/dist/components/dynamic-form/fields/utils/text-validation-utils.js +4 -2
  47. package/dist/components/dynamic-form/hooks/useArrayDefaultValue.js +6 -5
  48. package/dist/components/dynamic-form/hooks/useFieldConfig.js +19 -20
  49. package/dist/components/dynamic-form/hooks/useMergeParentKey.js +4 -2
  50. package/dist/components/dynamic-form/hooks/useSortPropertyNames.js +4 -2
  51. package/dist/components/feedback/ErrorAlert.js +11 -17
  52. package/dist/components/feedback/ErrorBoundary.js +16 -14
  53. package/dist/components/feedback/ErrorSnackbar.js +13 -30
  54. package/dist/components/feedback/LoadingCentered.js +15 -28
  55. package/dist/components/feedback/Snackbar.js +43 -44
  56. package/dist/components/feedback/index.js +5 -5
  57. package/dist/components/index.js +47 -47
  58. package/dist/components/layout/MainLayout.js +17 -25
  59. package/dist/components/layout/StudioSidebar.js +132 -202
  60. package/dist/components/lists/CustomListView.js +49 -74
  61. package/dist/components/lists/ListView.js +66 -102
  62. package/dist/components/loopstack-elements/link.js +65 -104
  63. package/dist/components/loopstack-elements/tool.js +70 -142
  64. package/dist/components/messages/CompletionMessagePaper.js +53 -85
  65. package/dist/components/page/PageBreadcrumbs.js +64 -83
  66. package/dist/components/ui/DiscordLogo.js +16 -22
  67. package/dist/components/ui/GoogleLogo.js +40 -44
  68. package/dist/components/ui/accordion.js +31 -52
  69. package/dist/components/ui/alert-dialog.js +59 -109
  70. package/dist/components/ui/alert.js +22 -36
  71. package/dist/components/ui/avatar.js +21 -35
  72. package/dist/components/ui/badge.js +13 -17
  73. package/dist/components/ui/breadcrumb.js +46 -82
  74. package/dist/components/ui/button-group.js +5 -5
  75. package/dist/components/ui/button.js +17 -21
  76. package/dist/components/ui/card.js +40 -74
  77. package/dist/components/ui/checkbox.js +17 -23
  78. package/dist/components/ui/collapsible.js +17 -25
  79. package/dist/components/ui/command.js +1 -2
  80. package/dist/components/ui/context-menu.js +32 -52
  81. package/dist/components/ui/dialog.js +62 -107
  82. package/dist/components/ui/drawer.js +54 -99
  83. package/dist/components/ui/dropdown-menu.js +91 -159
  84. package/dist/components/ui/hover-card.js +1 -2
  85. package/dist/components/ui/input-group.js +36 -56
  86. package/dist/components/ui/input.js +11 -15
  87. package/dist/components/ui/label.js +11 -15
  88. package/dist/components/ui/popover.js +25 -38
  89. package/dist/components/ui/radio-group.js +22 -33
  90. package/dist/components/ui/scroll-area.js +28 -43
  91. package/dist/components/ui/select.js +73 -134
  92. package/dist/components/ui/separator.js +13 -17
  93. package/dist/components/ui/sheet.js +60 -105
  94. package/dist/components/ui/sidebar.js +269 -451
  95. package/dist/components/ui/skeleton.js +10 -14
  96. package/dist/components/ui/slider.js +17 -15
  97. package/dist/components/ui/switch.js +15 -21
  98. package/dist/components/ui/table.js +46 -85
  99. package/dist/components/ui/tabs.js +26 -45
  100. package/dist/components/ui/textarea.js +10 -14
  101. package/dist/components/ui/tooltip.js +26 -41
  102. package/dist/components/ui-widgets/UiActions.js +30 -37
  103. package/dist/components/ui-widgets/UiWidget.js +34 -46
  104. package/dist/components/ui-widgets/widgets/AiPromptInput.js +28 -42
  105. package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +16 -21
  106. package/dist/components/ui-widgets/widgets/SandboxRun.js +19 -26
  107. package/dist/components/ui-widgets/widgets/SubmitButton.js +15 -20
  108. package/dist/events/api-client-events.js +4 -2
  109. package/dist/events/sse-client-events.js +4 -2
  110. package/dist/features/code-explorer/CodeExplorer.js +1 -2
  111. package/dist/features/code-explorer/components/CodeExplorerTree.js +2 -2
  112. package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +31 -29
  113. package/dist/features/code-explorer/components/FileContentViewer.js +108 -148
  114. package/dist/features/code-explorer/components/FileTabsBar.js +1 -2
  115. package/dist/features/code-explorer/components/FileTabsBarBase.js +134 -169
  116. package/dist/features/code-explorer/index.js +1 -1
  117. package/dist/features/code-explorer/providers/CodeExplorerProvider.js +4 -4
  118. package/dist/features/code-explorer/utils/fileIcons.js +41 -39
  119. package/dist/features/dashboard/Dashboard.js +79 -121
  120. package/dist/features/dashboard/RunItem.js +50 -68
  121. package/dist/features/dashboard/RunList.js +17 -28
  122. package/dist/features/debug/components/ConfigFlowViewer.js +49 -67
  123. package/dist/features/debug/components/WorkflowDebugHeader.js +30 -46
  124. package/dist/features/debug/components/WorkflowDebugLegend.js +56 -68
  125. package/dist/features/debug/components/WorkflowFlowViewer.js +76 -96
  126. package/dist/features/debug/components/workflow-flow/StateNode.js +73 -102
  127. package/dist/features/debug/components/workflow-flow/WorkflowGraph.js +35 -40
  128. package/dist/features/debug/components/workflow-flow/WorkflowTransitionEdge.js +61 -94
  129. package/dist/features/debug/index.js +3 -3
  130. package/dist/features/debug/lib/edge-paths.js +33 -31
  131. package/dist/features/debug/lib/flow-utils.js +147 -145
  132. package/dist/features/documents/DocumentRenderer.js +73 -77
  133. package/dist/features/documents/components/DocumentItem.js +21 -24
  134. package/dist/features/documents/components/DocumentList.js +39 -45
  135. package/dist/features/documents/components/DocumentMetadataPills.js +44 -59
  136. package/dist/features/documents/document-details/DocumentDetails.js +298 -413
  137. package/dist/features/documents/document-details/PromptDetails.js +105 -142
  138. package/dist/features/documents/index.js +4 -4
  139. package/dist/features/documents/renderers/AiMessage.js +39 -48
  140. package/dist/features/documents/renderers/AiMessageContent.js +108 -164
  141. package/dist/features/documents/renderers/ChoicesRenderer.js +77 -89
  142. package/dist/features/documents/renderers/ClaudeMessage.js +74 -91
  143. package/dist/features/documents/renderers/ConfirmPromptRenderer.js +44 -53
  144. package/dist/features/documents/renderers/DocumentDebugRenderer.js +26 -30
  145. package/dist/features/documents/renderers/DocumentFormRenderer.js +69 -85
  146. package/dist/features/documents/renderers/DocumentMessageRenderer.js +10 -9
  147. package/dist/features/documents/renderers/ErrorMessageRenderer.js +11 -13
  148. package/dist/features/documents/renderers/LinkMessageRenderer.js +15 -14
  149. package/dist/features/documents/renderers/MarkdownMessageRenderer.js +8 -10
  150. package/dist/features/documents/renderers/PlainMessageRenderer.js +7 -9
  151. package/dist/features/documents/renderers/SecretInputRenderer.js +37 -35
  152. package/dist/features/documents/renderers/TextPromptRenderer.js +45 -54
  153. package/dist/features/documents/renderers/useDocumentTransition.js +9 -7
  154. package/dist/features/health/LocalHealthCheck.js +54 -53
  155. package/dist/features/health/index.js +1 -1
  156. package/dist/features/oauth/OAuthCallbackPage.js +2 -2
  157. package/dist/features/oauth/OAuthPromptRenderer.js +148 -197
  158. package/dist/features/oauth/index.js +2 -2
  159. package/dist/features/oauth/useOAuthPopup.js +52 -71
  160. package/dist/features/runs/Runs.js +145 -187
  161. package/dist/features/workbench/Workbench.js +72 -98
  162. package/dist/features/workbench/WorkflowItem.js +49 -68
  163. package/dist/features/workbench/WorkflowList.js +51 -66
  164. package/dist/features/workbench/components/NewRunDialog.js +212 -309
  165. package/dist/features/workbench/components/RemoteFileTabsBar.js +18 -17
  166. package/dist/features/workbench/components/RemoteFileTree.js +54 -85
  167. package/dist/features/workbench/components/WorkbenchFilesPanel.js +52 -63
  168. package/dist/features/workbench/components/WorkbenchFloatingPanel.js +34 -51
  169. package/dist/features/workbench/components/WorkbenchFlowPanel.js +35 -44
  170. package/dist/features/workbench/components/WorkbenchIconSidebar.js +50 -68
  171. package/dist/features/workbench/components/WorkbenchPreviewPanel.js +51 -49
  172. package/dist/features/workbench/components/WorkbenchSecretsPanel.js +143 -172
  173. package/dist/features/workbench/components/WorkbenchSettingsModal.js +49 -60
  174. package/dist/features/workbench/components/WorkflowForms.js +17 -23
  175. package/dist/features/workbench/components/WorkflowHistoryItem.js +96 -122
  176. package/dist/features/workbench/components/WorkflowHistoryList.js +31 -54
  177. package/dist/features/workbench/components/buttons/WorkflowButtons.js +70 -99
  178. package/dist/features/workbench/hooks/useAutoScrollBottom.js +21 -25
  179. package/dist/features/workbench/hooks/useScrollToListItem.js +20 -21
  180. package/dist/features/workbench/hooks/useWorkflowData.js +31 -44
  181. package/dist/features/workbench/hooks/useWorkflowListState.js +13 -12
  182. package/dist/features/workbench/index.js +7 -7
  183. package/dist/features/workbench/providers/RemoteFileExplorerProvider.js +123 -138
  184. package/dist/features/workbench/providers/ScrollProvider.js +15 -19
  185. package/dist/features/workbench/providers/WorkbenchLayoutProvider.js +76 -75
  186. package/dist/features/workspaces/Workspaces.js +161 -226
  187. package/dist/features/workspaces/components/CreateWorkspace.js +137 -194
  188. package/dist/features/workspaces/components/EnvironmentSlotSelector.js +27 -25
  189. package/dist/features/workspaces/components/ExecutionTimeline.js +143 -185
  190. package/dist/features/workspaces/components/NewWorkflowRunDialog.js +18 -26
  191. package/dist/features/workspaces/components/WorkflowRunForm.js +85 -133
  192. package/dist/features/workspaces/components/WorkspaceHomePage.js +59 -80
  193. package/dist/features/workspaces/components/workflow-form/ArgumentsView.js +52 -69
  194. package/dist/features/workspaces/components/workflow-form/HeaderSection.js +27 -41
  195. package/dist/features/workspaces/components/workflow-form/SelectionView.js +64 -103
  196. package/dist/features/workspaces/index.js +3 -3
  197. package/dist/frontend/studio/node_modules/lodash/_Symbol.js +9 -0
  198. package/dist/frontend/studio/node_modules/lodash/_baseGetTag.js +15 -0
  199. package/dist/frontend/studio/node_modules/lodash/_baseTrim.js +13 -0
  200. package/dist/frontend/studio/node_modules/lodash/_freeGlobal.js +8 -0
  201. package/dist/frontend/studio/node_modules/lodash/_getRawTag.js +19 -0
  202. package/dist/frontend/studio/node_modules/lodash/_objectToString.js +12 -0
  203. package/dist/frontend/studio/node_modules/lodash/_root.js +10 -0
  204. package/dist/frontend/studio/node_modules/lodash/_trimmedEndIndex.js +13 -0
  205. package/dist/{node_modules → frontend/studio/node_modules}/lodash/debounce.js +10 -8
  206. package/dist/frontend/studio/node_modules/lodash/isObject.js +12 -0
  207. package/dist/frontend/studio/node_modules/lodash/isObjectLike.js +11 -0
  208. package/dist/frontend/studio/node_modules/lodash/isSymbol.js +14 -0
  209. package/dist/frontend/studio/node_modules/lodash/now.js +12 -0
  210. package/dist/frontend/studio/node_modules/lodash/toNumber.js +24 -0
  211. package/dist/hooks/index.js +6 -6
  212. package/dist/hooks/query-keys.js +33 -31
  213. package/dist/hooks/use-mobile.js +12 -11
  214. package/dist/hooks/useApi.js +16 -14
  215. package/dist/hooks/useAuth.js +38 -53
  216. package/dist/hooks/useConfig.js +26 -37
  217. package/dist/hooks/useDashboard.js +12 -15
  218. package/dist/hooks/useDebounce.js +12 -11
  219. package/dist/hooks/useDocuments.js +23 -35
  220. package/dist/hooks/useFiles.js +1 -2
  221. package/dist/hooks/useProcessor.js +14 -17
  222. package/dist/hooks/useSecrets.js +45 -64
  223. package/dist/hooks/useWorkflows.js +109 -161
  224. package/dist/hooks/useWorkspaces.js +83 -123
  225. package/dist/index.d.ts +0 -1304
  226. package/dist/index.js +80 -80
  227. package/dist/lib/requireParam.js +4 -2
  228. package/dist/lib/utils.js +7 -5
  229. package/dist/loopstack-studio.css +1 -1
  230. package/dist/node_modules/@braintree/sanitize-url/dist/constants.js +6 -4
  231. package/dist/node_modules/@braintree/sanitize-url/dist/index.js +8 -6
  232. package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +19 -20
  233. package/dist/node_modules/@chevrotain/gast/lib/src/model.js +87 -88
  234. package/dist/node_modules/@chevrotain/gast/lib/src/visitor.js +16 -13
  235. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/api.js +2 -2
  236. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/base-regexp-visitor.js +4 -2
  237. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/character-classes.js +36 -34
  238. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/regexp-parser.js +138 -110
  239. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/utils.js +13 -11
  240. package/dist/node_modules/@chevrotain/utils/lib/src/print.js +5 -3
  241. package/dist/node_modules/@chevrotain/utils/lib/src/timer.js +4 -2
  242. package/dist/node_modules/@chevrotain/utils/lib/src/to-fast-properties.js +4 -2
  243. package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1812 -1913
  244. package/dist/node_modules/@iconify/utils/lib/customisations/defaults.js +8 -6
  245. package/dist/node_modules/@iconify/utils/lib/icon/defaults.js +10 -8
  246. package/dist/node_modules/@iconify/utils/lib/icon/merge.js +8 -6
  247. package/dist/node_modules/@iconify/utils/lib/icon/name.js +8 -6
  248. package/dist/node_modules/@iconify/utils/lib/icon/transformations.js +4 -2
  249. package/dist/node_modules/@iconify/utils/lib/icon-set/get-icon.js +12 -10
  250. package/dist/node_modules/@iconify/utils/lib/icon-set/tree.js +4 -2
  251. package/dist/node_modules/@iconify/utils/lib/svg/build.js +20 -18
  252. package/dist/node_modules/@iconify/utils/lib/svg/defs.js +8 -6
  253. package/dist/node_modules/@iconify/utils/lib/svg/html.js +4 -2
  254. package/dist/node_modules/@iconify/utils/lib/svg/id.js +10 -8
  255. package/dist/node_modules/@iconify/utils/lib/svg/size.js +7 -5
  256. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-YZFGNWBL.js +3 -0
  257. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-2KRD3SAO.js +26 -0
  258. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-67CJDMHE.js +26 -0
  259. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-7N4EOEYR.js +38 -0
  260. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-AA7GKIK3.js +33 -0
  261. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-CIAEETIT.js +26 -0
  262. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FOC6F5B3.js +26 -0
  263. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-K5T4RW27.js +1208 -0
  264. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-KGLVRYIC.js +26 -0
  265. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-LIHQZDEY.js +67 -0
  266. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-ORNJ4GCN.js +34 -0
  267. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-7Q5UKJZL.js +3 -0
  268. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-OMHHGYJF.js +3 -0
  269. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-4T2RLAQJ.js +3 -0
  270. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-ZZUOXDRM.js +3 -0
  271. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-PYXPWWZC.js +3 -0
  272. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treeView-SZITEDCU.js +3 -0
  273. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-W4RFUUIX.js +3 -0
  274. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/wardley-RL74JXVD.js +3 -0
  275. package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +59 -45
  276. package/dist/node_modules/@shikijs/core/dist/index.js +583 -1119
  277. package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +163 -148
  278. package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +4 -2
  279. package/dist/node_modules/@shikijs/langs/dist/abap.js +3 -2
  280. package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +3 -2
  281. package/dist/node_modules/@shikijs/langs/dist/ada.js +3 -2
  282. package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +3 -2
  283. package/dist/node_modules/@shikijs/langs/dist/angular-html.js +15 -13
  284. package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +5 -3
  285. package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +9 -7
  286. package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +5 -3
  287. package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +9 -7
  288. package/dist/node_modules/@shikijs/langs/dist/angular-template.js +5 -3
  289. package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +17 -15
  290. package/dist/node_modules/@shikijs/langs/dist/apache.js +3 -2
  291. package/dist/node_modules/@shikijs/langs/dist/apex.js +3 -2
  292. package/dist/node_modules/@shikijs/langs/dist/apl.js +15 -13
  293. package/dist/node_modules/@shikijs/langs/dist/applescript.js +3 -2
  294. package/dist/node_modules/@shikijs/langs/dist/ara.js +3 -2
  295. package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +3 -2
  296. package/dist/node_modules/@shikijs/langs/dist/asm.js +3 -2
  297. package/dist/node_modules/@shikijs/langs/dist/astro.js +17 -15
  298. package/dist/node_modules/@shikijs/langs/dist/awk.js +3 -2
  299. package/dist/node_modules/@shikijs/langs/dist/ballerina.js +3 -2
  300. package/dist/node_modules/@shikijs/langs/dist/bat.js +3 -2
  301. package/dist/node_modules/@shikijs/langs/dist/beancount.js +3 -2
  302. package/dist/node_modules/@shikijs/langs/dist/berry.js +3 -2
  303. package/dist/node_modules/@shikijs/langs/dist/bibtex.js +3 -2
  304. package/dist/node_modules/@shikijs/langs/dist/bicep.js +3 -2
  305. package/dist/node_modules/@shikijs/langs/dist/bird2.js +3 -2
  306. package/dist/node_modules/@shikijs/langs/dist/blade.js +19 -17
  307. package/dist/node_modules/@shikijs/langs/dist/bsl.js +5 -3
  308. package/dist/node_modules/@shikijs/langs/dist/c.js +3 -2
  309. package/dist/node_modules/@shikijs/langs/dist/c3.js +3 -2
  310. package/dist/node_modules/@shikijs/langs/dist/cadence.js +3 -2
  311. package/dist/node_modules/@shikijs/langs/dist/cairo.js +5 -3
  312. package/dist/node_modules/@shikijs/langs/dist/clarity.js +3 -2
  313. package/dist/node_modules/@shikijs/langs/dist/clojure.js +3 -2
  314. package/dist/node_modules/@shikijs/langs/dist/cmake.js +3 -2
  315. package/dist/node_modules/@shikijs/langs/dist/cobol.js +9 -7
  316. package/dist/node_modules/@shikijs/langs/dist/codeowners.js +3 -2
  317. package/dist/node_modules/@shikijs/langs/dist/codeql.js +3 -2
  318. package/dist/node_modules/@shikijs/langs/dist/coffee.js +5 -3
  319. package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +3 -2
  320. package/dist/node_modules/@shikijs/langs/dist/coq.js +3 -2
  321. package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +11 -9
  322. package/dist/node_modules/@shikijs/langs/dist/cpp.js +13 -11
  323. package/dist/node_modules/@shikijs/langs/dist/crystal.js +17 -15
  324. package/dist/node_modules/@shikijs/langs/dist/csharp.js +3 -2
  325. package/dist/node_modules/@shikijs/langs/dist/css.js +3 -2
  326. package/dist/node_modules/@shikijs/langs/dist/csv.js +3 -2
  327. package/dist/node_modules/@shikijs/langs/dist/cue.js +3 -2
  328. package/dist/node_modules/@shikijs/langs/dist/cypher.js +3 -2
  329. package/dist/node_modules/@shikijs/langs/dist/d.js +3 -2
  330. package/dist/node_modules/@shikijs/langs/dist/dart.js +3 -2
  331. package/dist/node_modules/@shikijs/langs/dist/dax.js +3 -2
  332. package/dist/node_modules/@shikijs/langs/dist/desktop.js +3 -2
  333. package/dist/node_modules/@shikijs/langs/dist/diff.js +3 -2
  334. package/dist/node_modules/@shikijs/langs/dist/docker.js +3 -2
  335. package/dist/node_modules/@shikijs/langs/dist/dotenv.js +3 -2
  336. package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +3 -2
  337. package/dist/node_modules/@shikijs/langs/dist/edge.js +11 -9
  338. package/dist/node_modules/@shikijs/langs/dist/elixir.js +5 -3
  339. package/dist/node_modules/@shikijs/langs/dist/elm.js +5 -3
  340. package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +3 -2
  341. package/dist/node_modules/@shikijs/langs/dist/erb.js +9 -7
  342. package/dist/node_modules/@shikijs/langs/dist/erlang.js +5 -3
  343. package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +11 -9
  344. package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +11 -9
  345. package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +11 -9
  346. package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +9 -7
  347. package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +5 -3
  348. package/dist/node_modules/@shikijs/langs/dist/fennel.js +3 -2
  349. package/dist/node_modules/@shikijs/langs/dist/fish.js +3 -2
  350. package/dist/node_modules/@shikijs/langs/dist/fluent.js +3 -2
  351. package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +5 -3
  352. package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +3 -2
  353. package/dist/node_modules/@shikijs/langs/dist/fsharp.js +5 -3
  354. package/dist/node_modules/@shikijs/langs/dist/gdresource.js +9 -7
  355. package/dist/node_modules/@shikijs/langs/dist/gdscript.js +3 -2
  356. package/dist/node_modules/@shikijs/langs/dist/gdshader.js +3 -2
  357. package/dist/node_modules/@shikijs/langs/dist/genie.js +3 -2
  358. package/dist/node_modules/@shikijs/langs/dist/gherkin.js +3 -2
  359. package/dist/node_modules/@shikijs/langs/dist/git-commit.js +5 -3
  360. package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +5 -3
  361. package/dist/node_modules/@shikijs/langs/dist/gleam.js +3 -2
  362. package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +13 -11
  363. package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +13 -11
  364. package/dist/node_modules/@shikijs/langs/dist/glsl.js +5 -3
  365. package/dist/node_modules/@shikijs/langs/dist/gn.js +3 -2
  366. package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +3 -2
  367. package/dist/node_modules/@shikijs/langs/dist/go.js +3 -2
  368. package/dist/node_modules/@shikijs/langs/dist/graphql.js +13 -11
  369. package/dist/node_modules/@shikijs/langs/dist/groovy.js +3 -2
  370. package/dist/node_modules/@shikijs/langs/dist/hack.js +9 -7
  371. package/dist/node_modules/@shikijs/langs/dist/haml.js +9 -7
  372. package/dist/node_modules/@shikijs/langs/dist/handlebars.js +13 -11
  373. package/dist/node_modules/@shikijs/langs/dist/haskell.js +3 -2
  374. package/dist/node_modules/@shikijs/langs/dist/haxe.js +3 -2
  375. package/dist/node_modules/@shikijs/langs/dist/hcl.js +3 -2
  376. package/dist/node_modules/@shikijs/langs/dist/hjson.js +3 -2
  377. package/dist/node_modules/@shikijs/langs/dist/hlsl.js +3 -2
  378. package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +5 -3
  379. package/dist/node_modules/@shikijs/langs/dist/html.js +9 -7
  380. package/dist/node_modules/@shikijs/langs/dist/http.js +13 -11
  381. package/dist/node_modules/@shikijs/langs/dist/hurl.js +11 -9
  382. package/dist/node_modules/@shikijs/langs/dist/hxml.js +5 -3
  383. package/dist/node_modules/@shikijs/langs/dist/hy.js +3 -2
  384. package/dist/node_modules/@shikijs/langs/dist/imba.js +3 -2
  385. package/dist/node_modules/@shikijs/langs/dist/ini.js +3 -2
  386. package/dist/node_modules/@shikijs/langs/dist/java.js +3 -2
  387. package/dist/node_modules/@shikijs/langs/dist/javascript.js +3 -2
  388. package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +5 -3
  389. package/dist/node_modules/@shikijs/langs/dist/jinja.js +5 -3
  390. package/dist/node_modules/@shikijs/langs/dist/jison.js +5 -3
  391. package/dist/node_modules/@shikijs/langs/dist/json.js +3 -2
  392. package/dist/node_modules/@shikijs/langs/dist/json5.js +3 -2
  393. package/dist/node_modules/@shikijs/langs/dist/jsonc.js +3 -2
  394. package/dist/node_modules/@shikijs/langs/dist/jsonl.js +3 -2
  395. package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +3 -2
  396. package/dist/node_modules/@shikijs/langs/dist/jssm.js +3 -2
  397. package/dist/node_modules/@shikijs/langs/dist/jsx.js +3 -2
  398. package/dist/node_modules/@shikijs/langs/dist/julia.js +15 -13
  399. package/dist/node_modules/@shikijs/langs/dist/just.js +17 -15
  400. package/dist/node_modules/@shikijs/langs/dist/kdl.js +3 -2
  401. package/dist/node_modules/@shikijs/langs/dist/kotlin.js +3 -2
  402. package/dist/node_modules/@shikijs/langs/dist/kusto.js +3 -2
  403. package/dist/node_modules/@shikijs/langs/dist/latex.js +5 -3
  404. package/dist/node_modules/@shikijs/langs/dist/lean.js +3 -2
  405. package/dist/node_modules/@shikijs/langs/dist/less.js +3 -2
  406. package/dist/node_modules/@shikijs/langs/dist/liquid.js +13 -11
  407. package/dist/node_modules/@shikijs/langs/dist/llvm.js +3 -2
  408. package/dist/node_modules/@shikijs/langs/dist/log.js +3 -2
  409. package/dist/node_modules/@shikijs/langs/dist/logo.js +3 -2
  410. package/dist/node_modules/@shikijs/langs/dist/lua.js +5 -3
  411. package/dist/node_modules/@shikijs/langs/dist/luau.js +3 -2
  412. package/dist/node_modules/@shikijs/langs/dist/make.js +3 -2
  413. package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +3 -2
  414. package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +3 -2
  415. package/dist/node_modules/@shikijs/langs/dist/markdown.js +3 -2
  416. package/dist/node_modules/@shikijs/langs/dist/marko.js +13 -11
  417. package/dist/node_modules/@shikijs/langs/dist/matlab.js +3 -2
  418. package/dist/node_modules/@shikijs/langs/dist/mdc.js +11 -9
  419. package/dist/node_modules/@shikijs/langs/dist/mdx.js +3 -2
  420. package/dist/node_modules/@shikijs/langs/dist/mermaid.js +3 -2
  421. package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +3 -2
  422. package/dist/node_modules/@shikijs/langs/dist/mojo.js +3 -2
  423. package/dist/node_modules/@shikijs/langs/dist/moonbit.js +3 -2
  424. package/dist/node_modules/@shikijs/langs/dist/move.js +3 -2
  425. package/dist/node_modules/@shikijs/langs/dist/narrat.js +3 -2
  426. package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +3 -2
  427. package/dist/node_modules/@shikijs/langs/dist/nextflow.js +5 -3
  428. package/dist/node_modules/@shikijs/langs/dist/nginx.js +5 -3
  429. package/dist/node_modules/@shikijs/langs/dist/nim.js +19 -17
  430. package/dist/node_modules/@shikijs/langs/dist/nix.js +5 -3
  431. package/dist/node_modules/@shikijs/langs/dist/nushell.js +3 -2
  432. package/dist/node_modules/@shikijs/langs/dist/objective-c.js +3 -2
  433. package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +3 -2
  434. package/dist/node_modules/@shikijs/langs/dist/ocaml.js +3 -2
  435. package/dist/node_modules/@shikijs/langs/dist/odin.js +3 -2
  436. package/dist/node_modules/@shikijs/langs/dist/openscad.js +3 -2
  437. package/dist/node_modules/@shikijs/langs/dist/pascal.js +3 -2
  438. package/dist/node_modules/@shikijs/langs/dist/perl.js +15 -13
  439. package/dist/node_modules/@shikijs/langs/dist/php.js +17 -15
  440. package/dist/node_modules/@shikijs/langs/dist/pkl.js +3 -2
  441. package/dist/node_modules/@shikijs/langs/dist/plsql.js +3 -2
  442. package/dist/node_modules/@shikijs/langs/dist/po.js +3 -2
  443. package/dist/node_modules/@shikijs/langs/dist/polar.js +3 -2
  444. package/dist/node_modules/@shikijs/langs/dist/postcss.js +3 -2
  445. package/dist/node_modules/@shikijs/langs/dist/powerquery.js +3 -2
  446. package/dist/node_modules/@shikijs/langs/dist/powershell.js +3 -2
  447. package/dist/node_modules/@shikijs/langs/dist/prisma.js +3 -2
  448. package/dist/node_modules/@shikijs/langs/dist/prolog.js +3 -2
  449. package/dist/node_modules/@shikijs/langs/dist/proto.js +3 -2
  450. package/dist/node_modules/@shikijs/langs/dist/pug.js +11 -9
  451. package/dist/node_modules/@shikijs/langs/dist/puppet.js +3 -2
  452. package/dist/node_modules/@shikijs/langs/dist/purescript.js +3 -2
  453. package/dist/node_modules/@shikijs/langs/dist/python.js +3 -2
  454. package/dist/node_modules/@shikijs/langs/dist/qml.js +5 -3
  455. package/dist/node_modules/@shikijs/langs/dist/qmldir.js +3 -2
  456. package/dist/node_modules/@shikijs/langs/dist/qss.js +3 -2
  457. package/dist/node_modules/@shikijs/langs/dist/r.js +3 -2
  458. package/dist/node_modules/@shikijs/langs/dist/racket.js +3 -2
  459. package/dist/node_modules/@shikijs/langs/dist/raku.js +3 -2
  460. package/dist/node_modules/@shikijs/langs/dist/razor.js +9 -7
  461. package/dist/node_modules/@shikijs/langs/dist/reg.js +3 -2
  462. package/dist/node_modules/@shikijs/langs/dist/regexp.js +3 -2
  463. package/dist/node_modules/@shikijs/langs/dist/rel.js +3 -2
  464. package/dist/node_modules/@shikijs/langs/dist/riscv.js +3 -2
  465. package/dist/node_modules/@shikijs/langs/dist/ron.js +3 -2
  466. package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +3 -2
  467. package/dist/node_modules/@shikijs/langs/dist/rst.js +21 -19
  468. package/dist/node_modules/@shikijs/langs/dist/ruby.js +29 -27
  469. package/dist/node_modules/@shikijs/langs/dist/rust.js +3 -2
  470. package/dist/node_modules/@shikijs/langs/dist/sas.js +5 -3
  471. package/dist/node_modules/@shikijs/langs/dist/sass.js +3 -2
  472. package/dist/node_modules/@shikijs/langs/dist/scala.js +3 -2
  473. package/dist/node_modules/@shikijs/langs/dist/scheme.js +3 -2
  474. package/dist/node_modules/@shikijs/langs/dist/scss.js +5 -3
  475. package/dist/node_modules/@shikijs/langs/dist/sdbl.js +3 -2
  476. package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +5 -3
  477. package/dist/node_modules/@shikijs/langs/dist/shellscript.js +3 -2
  478. package/dist/node_modules/@shikijs/langs/dist/shellsession.js +5 -3
  479. package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +3 -2
  480. package/dist/node_modules/@shikijs/langs/dist/solidity.js +3 -2
  481. package/dist/node_modules/@shikijs/langs/dist/soy.js +5 -3
  482. package/dist/node_modules/@shikijs/langs/dist/sparql.js +5 -3
  483. package/dist/node_modules/@shikijs/langs/dist/splunk.js +3 -2
  484. package/dist/node_modules/@shikijs/langs/dist/sql.js +3 -2
  485. package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +3 -2
  486. package/dist/node_modules/@shikijs/langs/dist/stata.js +5 -3
  487. package/dist/node_modules/@shikijs/langs/dist/stylus.js +3 -2
  488. package/dist/node_modules/@shikijs/langs/dist/surrealql.js +5 -3
  489. package/dist/node_modules/@shikijs/langs/dist/svelte.js +13 -11
  490. package/dist/node_modules/@shikijs/langs/dist/swift.js +3 -2
  491. package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +3 -2
  492. package/dist/node_modules/@shikijs/langs/dist/systemd.js +3 -2
  493. package/dist/node_modules/@shikijs/langs/dist/talonscript.js +3 -2
  494. package/dist/node_modules/@shikijs/langs/dist/tasl.js +3 -2
  495. package/dist/node_modules/@shikijs/langs/dist/tcl.js +3 -2
  496. package/dist/node_modules/@shikijs/langs/dist/templ.js +11 -9
  497. package/dist/node_modules/@shikijs/langs/dist/terraform.js +3 -2
  498. package/dist/node_modules/@shikijs/langs/dist/tex.js +5 -3
  499. package/dist/node_modules/@shikijs/langs/dist/toml.js +3 -2
  500. package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +17 -15
  501. package/dist/node_modules/@shikijs/langs/dist/tsv.js +3 -2
  502. package/dist/node_modules/@shikijs/langs/dist/tsx.js +3 -2
  503. package/dist/node_modules/@shikijs/langs/dist/turtle.js +3 -2
  504. package/dist/node_modules/@shikijs/langs/dist/twig.js +17 -15
  505. package/dist/node_modules/@shikijs/langs/dist/typescript.js +3 -2
  506. package/dist/node_modules/@shikijs/langs/dist/typespec.js +3 -2
  507. package/dist/node_modules/@shikijs/langs/dist/typst.js +3 -2
  508. package/dist/node_modules/@shikijs/langs/dist/v.js +3 -2
  509. package/dist/node_modules/@shikijs/langs/dist/vala.js +3 -2
  510. package/dist/node_modules/@shikijs/langs/dist/vb.js +3 -2
  511. package/dist/node_modules/@shikijs/langs/dist/verilog.js +3 -2
  512. package/dist/node_modules/@shikijs/langs/dist/vhdl.js +3 -2
  513. package/dist/node_modules/@shikijs/langs/dist/viml.js +3 -2
  514. package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +3 -2
  515. package/dist/node_modules/@shikijs/langs/dist/vue-html.js +5 -3
  516. package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +3 -2
  517. package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +5 -3
  518. package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +17 -15
  519. package/dist/node_modules/@shikijs/langs/dist/vue.js +25 -23
  520. package/dist/node_modules/@shikijs/langs/dist/vyper.js +3 -2
  521. package/dist/node_modules/@shikijs/langs/dist/wasm.js +3 -2
  522. package/dist/node_modules/@shikijs/langs/dist/wenyan.js +3 -2
  523. package/dist/node_modules/@shikijs/langs/dist/wgsl.js +3 -2
  524. package/dist/node_modules/@shikijs/langs/dist/wikitext.js +3 -2
  525. package/dist/node_modules/@shikijs/langs/dist/wit.js +3 -2
  526. package/dist/node_modules/@shikijs/langs/dist/wolfram.js +3 -2
  527. package/dist/node_modules/@shikijs/langs/dist/xml.js +5 -3
  528. package/dist/node_modules/@shikijs/langs/dist/xsl.js +5 -3
  529. package/dist/node_modules/@shikijs/langs/dist/yaml.js +3 -2
  530. package/dist/node_modules/@shikijs/langs/dist/zenscript.js +3 -2
  531. package/dist/node_modules/@shikijs/langs/dist/zig.js +3 -2
  532. package/dist/node_modules/@shikijs/primitive/dist/index.js +540 -0
  533. package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +4 -2
  534. package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +4 -2
  535. package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +4 -2
  536. package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +4 -2
  537. package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +4 -2
  538. package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +4 -2
  539. package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +4 -2
  540. package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +4 -2
  541. package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +4 -2
  542. package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +4 -2
  543. package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +4 -2
  544. package/dist/node_modules/@shikijs/themes/dist/dracula.js +4 -2
  545. package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +4 -2
  546. package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +4 -2
  547. package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +4 -2
  548. package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +4 -2
  549. package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +4 -2
  550. package/dist/node_modules/@shikijs/themes/dist/github-dark.js +4 -2
  551. package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +4 -2
  552. package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +4 -2
  553. package/dist/node_modules/@shikijs/themes/dist/github-light.js +4 -2
  554. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +4 -2
  555. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +4 -2
  556. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +4 -2
  557. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +4 -2
  558. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +4 -2
  559. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +4 -2
  560. package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +4 -2
  561. package/dist/node_modules/@shikijs/themes/dist/horizon.js +4 -2
  562. package/dist/node_modules/@shikijs/themes/dist/houston.js +4 -2
  563. package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +4 -2
  564. package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +4 -2
  565. package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +4 -2
  566. package/dist/node_modules/@shikijs/themes/dist/laserwave.js +4 -2
  567. package/dist/node_modules/@shikijs/themes/dist/light-plus.js +4 -2
  568. package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +4 -2
  569. package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +4 -2
  570. package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +4 -2
  571. package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +4 -2
  572. package/dist/node_modules/@shikijs/themes/dist/material-theme.js +4 -2
  573. package/dist/node_modules/@shikijs/themes/dist/min-dark.js +4 -2
  574. package/dist/node_modules/@shikijs/themes/dist/min-light.js +4 -2
  575. package/dist/node_modules/@shikijs/themes/dist/monokai.js +4 -2
  576. package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +4 -2
  577. package/dist/node_modules/@shikijs/themes/dist/night-owl.js +4 -2
  578. package/dist/node_modules/@shikijs/themes/dist/nord.js +4 -2
  579. package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +4 -2
  580. package/dist/node_modules/@shikijs/themes/dist/one-light.js +4 -2
  581. package/dist/node_modules/@shikijs/themes/dist/plastic.js +4 -2
  582. package/dist/node_modules/@shikijs/themes/dist/poimandres.js +4 -2
  583. package/dist/node_modules/@shikijs/themes/dist/red.js +4 -2
  584. package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +4 -2
  585. package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +4 -2
  586. package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +4 -2
  587. package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +4 -2
  588. package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +4 -2
  589. package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +4 -2
  590. package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +4 -2
  591. package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +4 -2
  592. package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +4 -2
  593. package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +4 -2
  594. package/dist/node_modules/@shikijs/themes/dist/vesper.js +4 -2
  595. package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +4 -2
  596. package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +4 -2
  597. package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +4 -2
  598. package/dist/node_modules/@shikijs/types/dist/index.js +4 -2
  599. package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +949 -947
  600. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +30 -30
  601. package/dist/node_modules/@ungap/structured-clone/esm/index.js +6 -4
  602. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +64 -64
  603. package/dist/node_modules/@upsetjs/venn.js/build/venn.esm.js +905 -0
  604. package/dist/node_modules/@xyflow/react/dist/esm/index.js +904 -901
  605. package/dist/node_modules/@xyflow/system/dist/esm/index.js +1226 -1222
  606. package/dist/node_modules/bail/index.js +4 -2
  607. package/dist/node_modules/ccount/index.js +4 -2
  608. package/dist/node_modules/character-entities-html4/index.js +4 -2
  609. package/dist/node_modules/character-entities-legacy/index.js +4 -2
  610. package/dist/node_modules/chevrotain/lib/src/api.js +10 -10
  611. package/dist/node_modules/chevrotain/lib/src/lang/lang_extensions.js +6 -4
  612. package/dist/node_modules/chevrotain/lib/src/parse/constants.js +4 -2
  613. package/dist/node_modules/chevrotain/lib/src/parse/cst/cst.js +11 -9
  614. package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +38 -45
  615. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +35 -36
  616. package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +26 -25
  617. package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +204 -226
  618. package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +18 -18
  619. package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +20 -19
  620. package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +14 -13
  621. package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +195 -200
  622. package/dist/node_modules/chevrotain/lib/src/parse/grammar/keys.js +5 -4
  623. package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +28 -28
  624. package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +165 -170
  625. package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +17 -17
  626. package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +50 -50
  627. package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +76 -83
  628. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +21 -21
  629. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +117 -121
  630. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +12 -6
  631. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +51 -51
  632. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +15 -14
  633. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +81 -80
  634. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +229 -217
  635. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +87 -86
  636. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +36 -44
  637. package/dist/node_modules/chevrotain/lib/src/parse/parser/utils/apply_mixins.js +4 -2
  638. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +287 -309
  639. package/dist/node_modules/chevrotain/lib/src/scan/lexer_errors_public.js +4 -2
  640. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +115 -126
  641. package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +73 -70
  642. package/dist/node_modules/chevrotain/lib/src/scan/reg_exp_parser.js +12 -10
  643. package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +45 -54
  644. package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +29 -30
  645. package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +242 -240
  646. package/dist/node_modules/chevrotain-allstar/lib/atn.js +134 -133
  647. package/dist/node_modules/chevrotain-allstar/lib/dfa.js +11 -10
  648. package/dist/node_modules/chevrotain-allstar/lib/index.js +1 -1
  649. package/dist/node_modules/classcat/index.js +5 -3
  650. package/dist/node_modules/comma-separated-tokens/index.js +5 -3
  651. package/dist/node_modules/cose-base/cose-base.js +21 -21
  652. package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +7935 -7935
  653. package/dist/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js +8 -6
  654. package/dist/node_modules/cytoscape-fcose/cytoscape-fcose.js +8 -6
  655. package/dist/node_modules/cytoscape-fcose/node_modules/cose-base/cose-base.js +20 -20
  656. package/dist/node_modules/cytoscape-fcose/node_modules/layout-base/layout-base.js +6 -4
  657. package/dist/node_modules/d3/src/index.js +95 -95
  658. package/dist/node_modules/d3-array/src/ascending.js +4 -2
  659. package/dist/node_modules/d3-array/src/bisect.js +8 -8
  660. package/dist/node_modules/d3-array/src/bisector.js +8 -6
  661. package/dist/node_modules/d3-array/src/descending.js +4 -2
  662. package/dist/node_modules/d3-array/src/max.js +4 -2
  663. package/dist/node_modules/d3-array/src/min.js +4 -2
  664. package/dist/node_modules/d3-array/src/number.js +4 -2
  665. package/dist/node_modules/d3-array/src/range.js +4 -2
  666. package/dist/node_modules/d3-array/src/ticks.js +13 -11
  667. package/dist/node_modules/d3-axis/src/axis.js +48 -46
  668. package/dist/node_modules/d3-axis/src/identity.js +4 -2
  669. package/dist/node_modules/d3-brush/src/brush.js +6 -4
  670. package/dist/node_modules/d3-color/src/color.js +86 -84
  671. package/dist/node_modules/d3-color/src/define.js +5 -3
  672. package/dist/node_modules/d3-color/src/lab.js +45 -43
  673. package/dist/node_modules/d3-color/src/math.js +4 -2
  674. package/dist/node_modules/d3-dispatch/src/dispatch.js +18 -17
  675. package/dist/node_modules/d3-drag/src/constant.js +4 -2
  676. package/dist/node_modules/d3-drag/src/drag.js +77 -75
  677. package/dist/node_modules/d3-drag/src/event.js +5 -3
  678. package/dist/node_modules/d3-drag/src/nodrag.js +11 -9
  679. package/dist/node_modules/d3-drag/src/noevent.js +6 -4
  680. package/dist/node_modules/d3-ease/src/cubic.js +4 -2
  681. package/dist/node_modules/d3-format/src/defaultLocale.js +8 -6
  682. package/dist/node_modules/d3-format/src/exponent.js +6 -4
  683. package/dist/node_modules/d3-format/src/formatDecimal.js +5 -3
  684. package/dist/node_modules/d3-format/src/formatGroup.js +4 -2
  685. package/dist/node_modules/d3-format/src/formatNumerals.js +4 -2
  686. package/dist/node_modules/d3-format/src/formatPrefixAuto.js +10 -8
  687. package/dist/node_modules/d3-format/src/formatRounded.js +6 -4
  688. package/dist/node_modules/d3-format/src/formatSpecifier.js +10 -8
  689. package/dist/node_modules/d3-format/src/formatTrim.js +4 -2
  690. package/dist/node_modules/d3-format/src/formatTypes.js +15 -13
  691. package/dist/node_modules/d3-format/src/identity.js +4 -2
  692. package/dist/node_modules/d3-format/src/locale.js +33 -31
  693. package/dist/node_modules/d3-format/src/precisionFixed.js +6 -4
  694. package/dist/node_modules/d3-format/src/precisionPrefix.js +6 -4
  695. package/dist/node_modules/d3-format/src/precisionRound.js +6 -4
  696. package/dist/node_modules/d3-hierarchy/src/accessors.js +4 -2
  697. package/dist/node_modules/d3-hierarchy/src/constant.js +5 -3
  698. package/dist/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +4 -2
  699. package/dist/node_modules/d3-hierarchy/src/hierarchy/count.js +6 -4
  700. package/dist/node_modules/d3-hierarchy/src/hierarchy/descendants.js +4 -2
  701. package/dist/node_modules/d3-hierarchy/src/hierarchy/each.js +4 -2
  702. package/dist/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +4 -2
  703. package/dist/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +4 -2
  704. package/dist/node_modules/d3-hierarchy/src/hierarchy/find.js +4 -2
  705. package/dist/node_modules/d3-hierarchy/src/hierarchy/index.js +46 -44
  706. package/dist/node_modules/d3-hierarchy/src/hierarchy/iterator.js +4 -2
  707. package/dist/node_modules/d3-hierarchy/src/hierarchy/leaves.js +4 -2
  708. package/dist/node_modules/d3-hierarchy/src/hierarchy/links.js +4 -2
  709. package/dist/node_modules/d3-hierarchy/src/hierarchy/path.js +6 -4
  710. package/dist/node_modules/d3-hierarchy/src/hierarchy/sort.js +4 -2
  711. package/dist/node_modules/d3-hierarchy/src/hierarchy/sum.js +4 -2
  712. package/dist/node_modules/d3-hierarchy/src/treemap/dice.js +4 -2
  713. package/dist/node_modules/d3-hierarchy/src/treemap/index.js +16 -14
  714. package/dist/node_modules/d3-hierarchy/src/treemap/round.js +4 -2
  715. package/dist/node_modules/d3-hierarchy/src/treemap/slice.js +4 -2
  716. package/dist/node_modules/d3-hierarchy/src/treemap/squarify.js +11 -9
  717. package/dist/node_modules/d3-interpolate/src/array.js +6 -4
  718. package/dist/node_modules/d3-interpolate/src/basis.js +6 -4
  719. package/dist/node_modules/d3-interpolate/src/basisClosed.js +6 -4
  720. package/dist/node_modules/d3-interpolate/src/color.js +19 -17
  721. package/dist/node_modules/d3-interpolate/src/constant.js +4 -2
  722. package/dist/node_modules/d3-interpolate/src/date.js +4 -2
  723. package/dist/node_modules/d3-interpolate/src/hcl.js +8 -6
  724. package/dist/node_modules/d3-interpolate/src/number.js +4 -2
  725. package/dist/node_modules/d3-interpolate/src/numberArray.js +5 -3
  726. package/dist/node_modules/d3-interpolate/src/object.js +6 -4
  727. package/dist/node_modules/d3-interpolate/src/rgb.js +11 -9
  728. package/dist/node_modules/d3-interpolate/src/round.js +4 -2
  729. package/dist/node_modules/d3-interpolate/src/string.js +16 -14
  730. package/dist/node_modules/d3-interpolate/src/transform/decompose.js +7 -5
  731. package/dist/node_modules/d3-interpolate/src/transform/index.js +13 -11
  732. package/dist/node_modules/d3-interpolate/src/transform/parse.js +10 -8
  733. package/dist/node_modules/d3-interpolate/src/value.js +14 -12
  734. package/dist/node_modules/d3-interpolate/src/zoom.js +13 -11
  735. package/dist/node_modules/d3-path/src/path.js +16 -14
  736. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/max.js +4 -2
  737. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/min.js +4 -2
  738. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/sum.js +4 -2
  739. package/dist/node_modules/d3-sankey/node_modules/d3-path/src/path.js +13 -12
  740. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/array.js +4 -2
  741. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/constant.js +4 -2
  742. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/link/index.js +19 -17
  743. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/point.js +5 -3
  744. package/dist/node_modules/d3-sankey/src/align.js +12 -10
  745. package/dist/node_modules/d3-sankey/src/constant.js +4 -2
  746. package/dist/node_modules/d3-sankey/src/sankey.js +170 -168
  747. package/dist/node_modules/d3-sankey/src/sankeyLinkHorizontal.js +8 -6
  748. package/dist/node_modules/d3-scale/src/band.js +11 -9
  749. package/dist/node_modules/d3-scale/src/constant.js +4 -2
  750. package/dist/node_modules/d3-scale/src/continuous.js +49 -47
  751. package/dist/node_modules/d3-scale/src/init.js +4 -2
  752. package/dist/node_modules/d3-scale/src/linear.js +15 -13
  753. package/dist/node_modules/d3-scale/src/nice.js +4 -2
  754. package/dist/node_modules/d3-scale/src/number.js +4 -2
  755. package/dist/node_modules/d3-scale/src/ordinal.js +18 -16
  756. package/dist/node_modules/d3-scale/src/tickFormat.js +16 -14
  757. package/dist/node_modules/d3-scale/src/time.js +36 -34
  758. package/dist/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +5 -3
  759. package/dist/node_modules/d3-scale-chromatic/src/colors.js +4 -2
  760. package/dist/node_modules/d3-selection/src/array.js +4 -2
  761. package/dist/node_modules/d3-selection/src/constant.js +4 -2
  762. package/dist/node_modules/d3-selection/src/creator.js +12 -10
  763. package/dist/node_modules/d3-selection/src/matcher.js +5 -3
  764. package/dist/node_modules/d3-selection/src/namespace.js +7 -5
  765. package/dist/node_modules/d3-selection/src/namespaces.js +5 -3
  766. package/dist/node_modules/d3-selection/src/pointer.js +6 -4
  767. package/dist/node_modules/d3-selection/src/select.js +6 -4
  768. package/dist/node_modules/d3-selection/src/selection/append.js +6 -4
  769. package/dist/node_modules/d3-selection/src/selection/attr.js +19 -17
  770. package/dist/node_modules/d3-selection/src/selection/call.js +4 -2
  771. package/dist/node_modules/d3-selection/src/selection/classed.js +25 -23
  772. package/dist/node_modules/d3-selection/src/selection/clone.js +7 -5
  773. package/dist/node_modules/d3-selection/src/selection/data.js +18 -16
  774. package/dist/node_modules/d3-selection/src/selection/datum.js +4 -2
  775. package/dist/node_modules/d3-selection/src/selection/dispatch.js +12 -10
  776. package/dist/node_modules/d3-selection/src/selection/each.js +4 -2
  777. package/dist/node_modules/d3-selection/src/selection/empty.js +4 -2
  778. package/dist/node_modules/d3-selection/src/selection/enter.js +13 -11
  779. package/dist/node_modules/d3-selection/src/selection/exit.js +7 -5
  780. package/dist/node_modules/d3-selection/src/selection/filter.js +8 -6
  781. package/dist/node_modules/d3-selection/src/selection/html.js +8 -6
  782. package/dist/node_modules/d3-selection/src/selection/index.js +80 -79
  783. package/dist/node_modules/d3-selection/src/selection/insert.js +8 -6
  784. package/dist/node_modules/d3-selection/src/selection/iterator.js +4 -2
  785. package/dist/node_modules/d3-selection/src/selection/join.js +4 -2
  786. package/dist/node_modules/d3-selection/src/selection/lower.js +6 -4
  787. package/dist/node_modules/d3-selection/src/selection/merge.js +6 -4
  788. package/dist/node_modules/d3-selection/src/selection/node.js +4 -2
  789. package/dist/node_modules/d3-selection/src/selection/nodes.js +4 -2
  790. package/dist/node_modules/d3-selection/src/selection/on.js +11 -9
  791. package/dist/node_modules/d3-selection/src/selection/order.js +4 -2
  792. package/dist/node_modules/d3-selection/src/selection/property.js +8 -6
  793. package/dist/node_modules/d3-selection/src/selection/raise.js +6 -4
  794. package/dist/node_modules/d3-selection/src/selection/remove.js +6 -4
  795. package/dist/node_modules/d3-selection/src/selection/select.js +8 -6
  796. package/dist/node_modules/d3-selection/src/selection/selectAll.js +11 -9
  797. package/dist/node_modules/d3-selection/src/selection/selectChild.js +10 -8
  798. package/dist/node_modules/d3-selection/src/selection/selectChildren.js +10 -8
  799. package/dist/node_modules/d3-selection/src/selection/size.js +4 -2
  800. package/dist/node_modules/d3-selection/src/selection/sort.js +8 -6
  801. package/dist/node_modules/d3-selection/src/selection/sparse.js +4 -2
  802. package/dist/node_modules/d3-selection/src/selection/style.js +14 -12
  803. package/dist/node_modules/d3-selection/src/selection/text.js +8 -6
  804. package/dist/node_modules/d3-selection/src/selector.js +6 -4
  805. package/dist/node_modules/d3-selection/src/selectorAll.js +6 -4
  806. package/dist/node_modules/d3-selection/src/sourceEvent.js +4 -2
  807. package/dist/node_modules/d3-selection/src/window.js +4 -2
  808. package/dist/node_modules/d3-shape/src/arc.js +38 -36
  809. package/dist/node_modules/d3-shape/src/array.js +3 -2
  810. package/dist/node_modules/d3-shape/src/constant.js +4 -2
  811. package/dist/node_modules/d3-shape/src/curve/basis.js +10 -8
  812. package/dist/node_modules/d3-shape/src/curve/basisClosed.js +18 -16
  813. package/dist/node_modules/d3-shape/src/curve/basisOpen.js +9 -7
  814. package/dist/node_modules/d3-shape/src/curve/bump.js +15 -13
  815. package/dist/node_modules/d3-shape/src/curve/bundle.js +9 -7
  816. package/dist/node_modules/d3-shape/src/curve/cardinal.js +10 -8
  817. package/dist/node_modules/d3-shape/src/curve/cardinalClosed.js +12 -10
  818. package/dist/node_modules/d3-shape/src/curve/cardinalOpen.js +9 -7
  819. package/dist/node_modules/d3-shape/src/curve/catmullRom.js +19 -17
  820. package/dist/node_modules/d3-shape/src/curve/catmullRomClosed.js +13 -11
  821. package/dist/node_modules/d3-shape/src/curve/catmullRomOpen.js +10 -8
  822. package/dist/node_modules/d3-shape/src/curve/linear.js +7 -5
  823. package/dist/node_modules/d3-shape/src/curve/linearClosed.js +12 -10
  824. package/dist/node_modules/d3-shape/src/curve/monotone.js +23 -21
  825. package/dist/node_modules/d3-shape/src/curve/natural.js +9 -7
  826. package/dist/node_modules/d3-shape/src/curve/step.js +19 -17
  827. package/dist/node_modules/d3-shape/src/descending.js +4 -2
  828. package/dist/node_modules/d3-shape/src/identity.js +4 -2
  829. package/dist/node_modules/d3-shape/src/line.js +19 -17
  830. package/dist/node_modules/d3-shape/src/math.js +8 -6
  831. package/dist/node_modules/d3-shape/src/noop.js +4 -2
  832. package/dist/node_modules/d3-shape/src/path.js +6 -4
  833. package/dist/node_modules/d3-shape/src/pie.js +15 -13
  834. package/dist/node_modules/d3-shape/src/point.js +5 -3
  835. package/dist/node_modules/d3-time/src/day.js +17 -15
  836. package/dist/node_modules/d3-time/src/duration.js +4 -2
  837. package/dist/node_modules/d3-time/src/hour.js +16 -14
  838. package/dist/node_modules/d3-time/src/interval.js +7 -5
  839. package/dist/node_modules/d3-time/src/millisecond.js +7 -5
  840. package/dist/node_modules/d3-time/src/minute.js +16 -14
  841. package/dist/node_modules/d3-time/src/month.js +14 -12
  842. package/dist/node_modules/d3-time/src/second.js +9 -7
  843. package/dist/node_modules/d3-time/src/ticks.js +66 -64
  844. package/dist/node_modules/d3-time/src/week.js +21 -19
  845. package/dist/node_modules/d3-time/src/year.js +10 -8
  846. package/dist/node_modules/d3-time-format/src/defaultLocale.js +8 -6
  847. package/dist/node_modules/d3-time-format/src/locale.js +346 -344
  848. package/dist/node_modules/d3-timer/src/timeout.js +6 -4
  849. package/dist/node_modules/d3-timer/src/timer.js +33 -31
  850. package/dist/node_modules/d3-transition/src/index.js +2 -2
  851. package/dist/node_modules/d3-transition/src/interrupt.js +4 -3
  852. package/dist/node_modules/d3-transition/src/selection/index.js +5 -4
  853. package/dist/node_modules/d3-transition/src/selection/interrupt.js +6 -4
  854. package/dist/node_modules/d3-transition/src/selection/transition.js +16 -14
  855. package/dist/node_modules/d3-transition/src/transition/attr.js +28 -26
  856. package/dist/node_modules/d3-transition/src/transition/attrTween.js +13 -11
  857. package/dist/node_modules/d3-transition/src/transition/delay.js +11 -9
  858. package/dist/node_modules/d3-transition/src/transition/duration.js +11 -9
  859. package/dist/node_modules/d3-transition/src/transition/ease.js +8 -6
  860. package/dist/node_modules/d3-transition/src/transition/easeVarying.js +8 -6
  861. package/dist/node_modules/d3-transition/src/transition/end.js +6 -4
  862. package/dist/node_modules/d3-transition/src/transition/filter.js +8 -6
  863. package/dist/node_modules/d3-transition/src/transition/index.js +63 -61
  864. package/dist/node_modules/d3-transition/src/transition/interpolate.js +9 -7
  865. package/dist/node_modules/d3-transition/src/transition/merge.js +6 -4
  866. package/dist/node_modules/d3-transition/src/transition/on.js +9 -7
  867. package/dist/node_modules/d3-transition/src/transition/remove.js +6 -4
  868. package/dist/node_modules/d3-transition/src/transition/schedule.js +20 -18
  869. package/dist/node_modules/d3-transition/src/transition/select.js +10 -8
  870. package/dist/node_modules/d3-transition/src/transition/selectAll.js +10 -8
  871. package/dist/node_modules/d3-transition/src/transition/selection.js +7 -5
  872. package/dist/node_modules/d3-transition/src/transition/style.js +21 -19
  873. package/dist/node_modules/d3-transition/src/transition/styleTween.js +8 -6
  874. package/dist/node_modules/d3-transition/src/transition/text.js +8 -6
  875. package/dist/node_modules/d3-transition/src/transition/textTween.js +8 -6
  876. package/dist/node_modules/d3-transition/src/transition/transition.js +10 -8
  877. package/dist/node_modules/d3-transition/src/transition/tween.js +14 -12
  878. package/dist/node_modules/d3-zoom/src/constant.js +4 -2
  879. package/dist/node_modules/d3-zoom/src/event.js +4 -2
  880. package/dist/node_modules/d3-zoom/src/index.js +2 -2
  881. package/dist/node_modules/d3-zoom/src/noevent.js +5 -3
  882. package/dist/node_modules/d3-zoom/src/transform.js +12 -10
  883. package/dist/node_modules/d3-zoom/src/zoom.js +116 -114
  884. package/dist/node_modules/dagre-d3-es/src/dagre/acyclic.js +14 -12
  885. package/dist/node_modules/dagre-d3-es/src/dagre/add-border-segments.js +11 -9
  886. package/dist/node_modules/dagre-d3-es/src/dagre/coordinate-system.js +36 -34
  887. package/dist/node_modules/dagre-d3-es/src/dagre/data/list.js +9 -7
  888. package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +51 -49
  889. package/dist/node_modules/dagre-d3-es/src/dagre/index.js +2 -2
  890. package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +165 -163
  891. package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +45 -43
  892. package/dist/node_modules/dagre-d3-es/src/dagre/normalize.js +12 -10
  893. package/dist/node_modules/dagre-d3-es/src/dagre/order/add-subgraph-constraints.js +6 -4
  894. package/dist/node_modules/dagre-d3-es/src/dagre/order/barycenter.js +8 -6
  895. package/dist/node_modules/dagre-d3-es/src/dagre/order/build-layer-graph.js +14 -12
  896. package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +22 -20
  897. package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +36 -34
  898. package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +16 -14
  899. package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +32 -30
  900. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +30 -28
  901. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +20 -18
  902. package/dist/node_modules/dagre-d3-es/src/dagre/parent-dummy-chains.js +12 -10
  903. package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +150 -148
  904. package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +20 -18
  905. package/dist/node_modules/dagre-d3-es/src/dagre/rank/feasible-tree.js +19 -17
  906. package/dist/node_modules/dagre-d3-es/src/dagre/rank/index.js +16 -14
  907. package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +64 -63
  908. package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +15 -13
  909. package/dist/node_modules/dagre-d3-es/src/dagre/util.js +84 -82
  910. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dfs.js +15 -13
  911. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra.js +3 -2
  912. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/floyd-warshall.js +3 -2
  913. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/index.js +3 -3
  914. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/postorder.js +6 -4
  915. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/preorder.js +6 -4
  916. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/topsort.js +13 -11
  917. package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +131 -129
  918. package/dist/node_modules/dagre-d3-es/src/graphlib/index.js +1 -1
  919. package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +23 -21
  920. package/dist/node_modules/dayjs/dayjs.min.js +6 -4
  921. package/dist/node_modules/dayjs/plugin/advancedFormat.js +6 -4
  922. package/dist/node_modules/dayjs/plugin/customParseFormat.js +6 -4
  923. package/dist/node_modules/dayjs/plugin/duration.js +6 -4
  924. package/dist/node_modules/dayjs/plugin/isoWeek.js +6 -4
  925. package/dist/node_modules/decode-named-character-reference/index.dom.js +7 -5
  926. package/dist/node_modules/devlop/lib/default.js +4 -2
  927. package/dist/node_modules/dompurify/dist/purify.es.js +203 -201
  928. package/dist/node_modules/entities/dist/esm/decode-codepoint.js +6 -4
  929. package/dist/node_modules/entities/dist/esm/decode.js +87 -85
  930. package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -2
  931. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +6 -4
  932. package/dist/node_modules/extend/index.js +9 -6
  933. package/dist/node_modules/hast-util-from-dom/lib/index.js +32 -30
  934. package/dist/node_modules/hast-util-from-html-isomorphic/lib/browser.js +10 -8
  935. package/dist/node_modules/hast-util-from-parse5/lib/index.js +82 -80
  936. package/dist/node_modules/hast-util-is-element/lib/index.js +17 -15
  937. package/dist/node_modules/hast-util-parse-selector/lib/index.js +7 -5
  938. package/dist/node_modules/hast-util-raw/lib/index.js +136 -134
  939. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +23 -21
  940. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -3
  941. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +89 -89
  942. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +250 -249
  943. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +6 -4
  944. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +14 -14
  945. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +4 -4
  946. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +17 -15
  947. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1497 -1495
  948. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +148 -146
  949. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +20 -19
  950. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +800 -798
  951. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +33 -31
  952. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +10 -8
  953. package/dist/node_modules/hast-util-sanitize/lib/index.js +106 -104
  954. package/dist/node_modules/hast-util-sanitize/lib/schema.js +12 -11
  955. package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -7
  956. package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -2
  957. package/dist/node_modules/hast-util-to-html/lib/handle/element.js +25 -23
  958. package/dist/node_modules/hast-util-to-html/lib/handle/index.js +22 -21
  959. package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +6 -4
  960. package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -2
  961. package/dist/node_modules/hast-util-to-html/lib/handle/text.js +7 -5
  962. package/dist/node_modules/hast-util-to-html/lib/index.js +38 -36
  963. package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +70 -68
  964. package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +6 -4
  965. package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +32 -30
  966. package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +10 -9
  967. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +192 -190
  968. package/dist/node_modules/hast-util-to-parse5/lib/index.js +71 -69
  969. package/dist/node_modules/hast-util-to-text/lib/index.js +61 -59
  970. package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -6
  971. package/dist/node_modules/hastscript/lib/create-h.js +26 -24
  972. package/dist/node_modules/hastscript/lib/index.js +7 -5
  973. package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +4 -2
  974. package/dist/node_modules/html-url-attributes/lib/index.js +4 -2
  975. package/dist/node_modules/html-void-elements/index.js +4 -2
  976. package/dist/node_modules/inline-style-parser/cjs/index.js +6 -4
  977. package/dist/node_modules/internmap/src/index.js +22 -20
  978. package/dist/node_modules/katex/dist/katex.js +2914 -2873
  979. package/dist/node_modules/khroma/dist/channels/index.js +23 -21
  980. package/dist/node_modules/khroma/dist/channels/reusable.js +5 -3
  981. package/dist/node_modules/khroma/dist/channels/type.js +7 -5
  982. package/dist/node_modules/khroma/dist/color/hex.js +10 -8
  983. package/dist/node_modules/khroma/dist/color/hsl.js +19 -17
  984. package/dist/node_modules/khroma/dist/color/index.js +17 -15
  985. package/dist/node_modules/khroma/dist/color/keyword.js +10 -8
  986. package/dist/node_modules/khroma/dist/color/rgb.js +14 -12
  987. package/dist/node_modules/khroma/dist/constants.js +7 -5
  988. package/dist/node_modules/khroma/dist/methods/adjust.js +8 -6
  989. package/dist/node_modules/khroma/dist/methods/adjust_channel.js +8 -6
  990. package/dist/node_modules/khroma/dist/methods/change.js +9 -7
  991. package/dist/node_modules/khroma/dist/methods/channel.js +6 -4
  992. package/dist/node_modules/khroma/dist/methods/darken.js +5 -3
  993. package/dist/node_modules/khroma/dist/methods/invert.js +8 -6
  994. package/dist/node_modules/khroma/dist/methods/is_dark.js +5 -3
  995. package/dist/node_modules/khroma/dist/methods/is_light.js +5 -3
  996. package/dist/node_modules/khroma/dist/methods/lighten.js +5 -3
  997. package/dist/node_modules/khroma/dist/methods/luminance.js +8 -6
  998. package/dist/node_modules/khroma/dist/methods/mix.js +8 -6
  999. package/dist/node_modules/khroma/dist/methods/rgba.js +15 -13
  1000. package/dist/node_modules/khroma/dist/methods/transparentize.js +5 -0
  1001. package/dist/node_modules/khroma/dist/utils/channel.js +8 -6
  1002. package/dist/node_modules/khroma/dist/utils/index.js +10 -8
  1003. package/dist/node_modules/khroma/dist/utils/lang.js +4 -2
  1004. package/dist/node_modules/khroma/dist/utils/unit.js +4 -2
  1005. package/dist/node_modules/langium/lib/default-module.js +66 -64
  1006. package/dist/node_modules/langium/lib/dependency-injection.js +37 -39
  1007. package/dist/node_modules/langium/lib/documentation/comment-provider.js +7 -5
  1008. package/dist/node_modules/langium/lib/documentation/documentation-provider.js +8 -6
  1009. package/dist/node_modules/langium/lib/documentation/jsdoc.js +204 -202
  1010. package/dist/node_modules/langium/lib/languages/generated/ast.js +343 -534
  1011. package/dist/node_modules/langium/lib/languages/grammar-config.js +10 -8
  1012. package/dist/node_modules/langium/lib/parser/async-parser.js +4 -76
  1013. package/dist/node_modules/langium/lib/parser/completion-parser-builder.js +8 -6
  1014. package/dist/node_modules/langium/lib/parser/cst-node-builder.js +56 -54
  1015. package/dist/node_modules/langium/lib/parser/langium-parser-builder.js +9 -7
  1016. package/dist/node_modules/langium/lib/parser/langium-parser.js +190 -188
  1017. package/dist/node_modules/langium/lib/parser/lexer.js +25 -25
  1018. package/dist/node_modules/langium/lib/parser/parser-builder-base.js +204 -203
  1019. package/dist/node_modules/langium/lib/parser/token-builder.js +32 -30
  1020. package/dist/node_modules/langium/lib/parser/value-converter.js +17 -15
  1021. package/dist/node_modules/langium/lib/references/linker.js +104 -103
  1022. package/dist/node_modules/langium/lib/references/name-provider.js +9 -7
  1023. package/dist/node_modules/langium/lib/references/references.js +53 -51
  1024. package/dist/node_modules/langium/lib/references/scope-computation.js +14 -12
  1025. package/dist/node_modules/langium/lib/references/scope-provider.js +13 -11
  1026. package/dist/node_modules/langium/lib/references/scope.js +27 -56
  1027. package/dist/node_modules/langium/lib/serializer/hydrator.js +71 -69
  1028. package/dist/node_modules/langium/lib/serializer/json-serializer.js +23 -21
  1029. package/dist/node_modules/langium/lib/service-registry.js +7 -5
  1030. package/dist/node_modules/langium/lib/syntax-tree.js +33 -31
  1031. package/dist/node_modules/langium/lib/utils/ast-utils.js +77 -112
  1032. package/dist/node_modules/langium/lib/utils/caching.js +33 -42
  1033. package/dist/node_modules/langium/lib/utils/cancellation.js +7 -5
  1034. package/dist/node_modules/langium/lib/utils/collections.js +35 -33
  1035. package/dist/node_modules/langium/lib/utils/cst-utils.js +46 -161
  1036. package/dist/node_modules/langium/lib/utils/disposable.js +5 -3
  1037. package/dist/node_modules/langium/lib/utils/errors.js +8 -9
  1038. package/dist/node_modules/langium/lib/utils/event.js +7 -5
  1039. package/dist/node_modules/langium/lib/utils/grammar-loader.js +16 -14
  1040. package/dist/node_modules/langium/lib/utils/grammar-utils.js +172 -249
  1041. package/dist/node_modules/langium/lib/utils/promise-utils.js +18 -19
  1042. package/dist/node_modules/langium/lib/utils/regexp-utils.js +53 -76
  1043. package/dist/node_modules/langium/lib/utils/stream.js +155 -153
  1044. package/dist/node_modules/langium/lib/utils/uri-utils.js +14 -12
  1045. package/dist/node_modules/langium/lib/validation/document-validator.js +104 -103
  1046. package/dist/node_modules/langium/lib/validation/validation-registry.js +15 -14
  1047. package/dist/node_modules/langium/lib/workspace/ast-descriptions.js +19 -17
  1048. package/dist/node_modules/langium/lib/workspace/ast-node-locator.js +4 -2
  1049. package/dist/node_modules/langium/lib/workspace/configuration.js +7 -5
  1050. package/dist/node_modules/langium/lib/workspace/document-builder.js +131 -134
  1051. package/dist/node_modules/langium/lib/workspace/documents.js +85 -83
  1052. package/dist/node_modules/langium/lib/workspace/file-system-provider.js +5 -4
  1053. package/dist/node_modules/langium/lib/workspace/index-manager.js +16 -14
  1054. package/dist/node_modules/langium/lib/workspace/workspace-lock.js +11 -9
  1055. package/dist/node_modules/langium/lib/workspace/workspace-manager.js +35 -33
  1056. package/dist/node_modules/layout-base/layout-base.js +6 -4
  1057. package/dist/node_modules/lodash-es/_DataView.js +6 -4
  1058. package/dist/node_modules/lodash-es/_Hash.js +14 -13
  1059. package/dist/node_modules/lodash-es/_ListCache.js +14 -13
  1060. package/dist/node_modules/lodash-es/_Map.js +6 -4
  1061. package/dist/node_modules/lodash-es/_MapCache.js +14 -13
  1062. package/dist/node_modules/lodash-es/_Promise.js +6 -4
  1063. package/dist/node_modules/lodash-es/_Set.js +6 -4
  1064. package/dist/node_modules/lodash-es/_SetCache.js +10 -9
  1065. package/dist/node_modules/lodash-es/_Stack.js +12 -11
  1066. package/dist/node_modules/lodash-es/_Symbol.js +5 -3
  1067. package/dist/node_modules/lodash-es/_Uint8Array.js +5 -3
  1068. package/dist/node_modules/lodash-es/_WeakMap.js +6 -4
  1069. package/dist/node_modules/lodash-es/_apply.js +4 -3
  1070. package/dist/node_modules/lodash-es/_arrayEach.js +4 -3
  1071. package/dist/node_modules/lodash-es/_arrayFilter.js +4 -3
  1072. package/dist/node_modules/lodash-es/_arrayIncludes.js +6 -5
  1073. package/dist/node_modules/lodash-es/_arrayIncludesWith.js +4 -3
  1074. package/dist/node_modules/lodash-es/_arrayLikeKeys.js +13 -12
  1075. package/dist/node_modules/lodash-es/_arrayMap.js +4 -3
  1076. package/dist/node_modules/lodash-es/_arrayPush.js +4 -3
  1077. package/dist/node_modules/lodash-es/_arrayReduce.js +4 -3
  1078. package/dist/node_modules/lodash-es/_arraySome.js +4 -3
  1079. package/dist/node_modules/lodash-es/_asciiSize.js +5 -3
  1080. package/dist/node_modules/lodash-es/_assignMergeValue.js +7 -6
  1081. package/dist/node_modules/lodash-es/_assignValue.js +8 -7
  1082. package/dist/node_modules/lodash-es/_assocIndexOf.js +6 -5
  1083. package/dist/node_modules/lodash-es/_baseAssign.js +7 -6
  1084. package/dist/node_modules/lodash-es/_baseAssignIn.js +7 -6
  1085. package/dist/node_modules/lodash-es/_baseAssignValue.js +6 -5
  1086. package/dist/node_modules/lodash-es/_baseClone.js +51 -50
  1087. package/dist/node_modules/lodash-es/_baseCreate.js +7 -5
  1088. package/dist/node_modules/lodash-es/_baseEach.js +6 -4
  1089. package/dist/node_modules/lodash-es/_baseExtremum.js +6 -5
  1090. package/dist/node_modules/lodash-es/_baseFilter.js +6 -5
  1091. package/dist/node_modules/lodash-es/_baseFindIndex.js +4 -3
  1092. package/dist/node_modules/lodash-es/_baseFlatten.js +8 -7
  1093. package/dist/node_modules/lodash-es/_baseFor.js +5 -3
  1094. package/dist/node_modules/lodash-es/_baseForOwn.js +7 -6
  1095. package/dist/node_modules/lodash-es/_baseGet.js +8 -7
  1096. package/dist/node_modules/lodash-es/_baseGetAllKeys.js +7 -6
  1097. package/dist/node_modules/lodash-es/_baseGetTag.js +9 -8
  1098. package/dist/node_modules/lodash-es/_baseGt.js +4 -3
  1099. package/dist/node_modules/lodash-es/_baseHas.js +6 -5
  1100. package/dist/node_modules/lodash-es/_baseHasIn.js +4 -3
  1101. package/dist/node_modules/lodash-es/_baseIndexOf.js +8 -7
  1102. package/dist/node_modules/lodash-es/_baseIsArguments.js +8 -7
  1103. package/dist/node_modules/lodash-es/_baseIsEqual.js +7 -6
  1104. package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +23 -22
  1105. package/dist/node_modules/lodash-es/_baseIsMap.js +8 -7
  1106. package/dist/node_modules/lodash-es/_baseIsMatch.js +9 -8
  1107. package/dist/node_modules/lodash-es/_baseIsNaN.js +4 -3
  1108. package/dist/node_modules/lodash-es/_baseIsNative.js +10 -9
  1109. package/dist/node_modules/lodash-es/_baseIsSet.js +8 -7
  1110. package/dist/node_modules/lodash-es/_baseIsTypedArray.js +10 -9
  1111. package/dist/node_modules/lodash-es/_baseIteratee.js +10 -9
  1112. package/dist/node_modules/lodash-es/_baseKeys.js +9 -8
  1113. package/dist/node_modules/lodash-es/_baseKeysIn.js +11 -10
  1114. package/dist/node_modules/lodash-es/_baseLt.js +4 -3
  1115. package/dist/node_modules/lodash-es/_baseMap.js +8 -7
  1116. package/dist/node_modules/lodash-es/_baseMatches.js +10 -9
  1117. package/dist/node_modules/lodash-es/_baseMatchesProperty.js +15 -14
  1118. package/dist/node_modules/lodash-es/_baseMerge.js +16 -15
  1119. package/dist/node_modules/lodash-es/_baseMergeDeep.js +24 -23
  1120. package/dist/node_modules/lodash-es/_baseOrderBy.js +23 -22
  1121. package/dist/node_modules/lodash-es/_basePick.js +8 -7
  1122. package/dist/node_modules/lodash-es/_basePickBy.js +9 -8
  1123. package/dist/node_modules/lodash-es/_baseProperty.js +4 -3
  1124. package/dist/node_modules/lodash-es/_basePropertyDeep.js +6 -5
  1125. package/dist/node_modules/lodash-es/_baseRange.js +6 -5
  1126. package/dist/node_modules/lodash-es/_baseReduce.js +4 -3
  1127. package/dist/node_modules/lodash-es/_baseRest.js +8 -7
  1128. package/dist/node_modules/lodash-es/_baseSet.js +14 -13
  1129. package/dist/node_modules/lodash-es/_baseSetToString.js +10 -8
  1130. package/dist/node_modules/lodash-es/_baseSortBy.js +4 -3
  1131. package/dist/node_modules/lodash-es/_baseTimes.js +4 -3
  1132. package/dist/node_modules/lodash-es/_baseToString.js +13 -12
  1133. package/dist/node_modules/lodash-es/_baseTrim.js +7 -6
  1134. package/dist/node_modules/lodash-es/_baseUnary.js +4 -3
  1135. package/dist/node_modules/lodash-es/_baseUniq.js +17 -16
  1136. package/dist/node_modules/lodash-es/_baseValues.js +6 -5
  1137. package/dist/node_modules/lodash-es/_baseZipObject.js +4 -3
  1138. package/dist/node_modules/lodash-es/_cacheHas.js +4 -3
  1139. package/dist/node_modules/lodash-es/_castFunction.js +6 -5
  1140. package/dist/node_modules/lodash-es/_castPath.js +9 -8
  1141. package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +6 -5
  1142. package/dist/node_modules/lodash-es/_cloneBuffer.js +9 -8
  1143. package/dist/node_modules/lodash-es/_cloneDataView.js +6 -5
  1144. package/dist/node_modules/lodash-es/_cloneRegExp.js +6 -5
  1145. package/dist/node_modules/lodash-es/_cloneSymbol.js +7 -6
  1146. package/dist/node_modules/lodash-es/_cloneTypedArray.js +6 -5
  1147. package/dist/node_modules/lodash-es/_compareAscending.js +6 -5
  1148. package/dist/node_modules/lodash-es/_compareMultiple.js +6 -5
  1149. package/dist/node_modules/lodash-es/_copyArray.js +4 -3
  1150. package/dist/node_modules/lodash-es/_copyObject.js +7 -6
  1151. package/dist/node_modules/lodash-es/_copySymbols.js +7 -6
  1152. package/dist/node_modules/lodash-es/_copySymbolsIn.js +7 -6
  1153. package/dist/node_modules/lodash-es/_coreJsData.js +5 -3
  1154. package/dist/node_modules/lodash-es/_createAssigner.js +8 -7
  1155. package/dist/node_modules/lodash-es/_createBaseEach.js +6 -5
  1156. package/dist/node_modules/lodash-es/_createBaseFor.js +4 -3
  1157. package/dist/node_modules/lodash-es/_createFind.js +10 -9
  1158. package/dist/node_modules/lodash-es/_createRange.js +8 -7
  1159. package/dist/node_modules/lodash-es/_createSet.js +9 -7
  1160. package/dist/node_modules/lodash-es/_defineProperty.js +6 -4
  1161. package/dist/node_modules/lodash-es/_equalArrays.js +12 -11
  1162. package/dist/node_modules/lodash-es/_equalByTag.js +29 -28
  1163. package/dist/node_modules/lodash-es/_equalObjects.js +9 -8
  1164. package/dist/node_modules/lodash-es/_flatRest.js +8 -7
  1165. package/dist/node_modules/lodash-es/_freeGlobal.js +4 -2
  1166. package/dist/node_modules/lodash-es/_getAllKeys.js +8 -7
  1167. package/dist/node_modules/lodash-es/_getAllKeysIn.js +8 -7
  1168. package/dist/node_modules/lodash-es/_getMapData.js +6 -5
  1169. package/dist/node_modules/lodash-es/_getMatchData.js +8 -7
  1170. package/dist/node_modules/lodash-es/_getNative.js +8 -7
  1171. package/dist/node_modules/lodash-es/_getPrototype.js +5 -3
  1172. package/dist/node_modules/lodash-es/_getRawTag.js +10 -9
  1173. package/dist/node_modules/lodash-es/_getSymbols.js +9 -7
  1174. package/dist/node_modules/lodash-es/_getSymbolsIn.js +10 -8
  1175. package/dist/node_modules/lodash-es/_getTag.js +21 -19
  1176. package/dist/node_modules/lodash-es/_getValue.js +4 -3
  1177. package/dist/node_modules/lodash-es/_hasPath.js +13 -12
  1178. package/dist/node_modules/lodash-es/_hasUnicode.js +6 -5
  1179. package/dist/node_modules/lodash-es/_hashClear.js +6 -5
  1180. package/dist/node_modules/lodash-es/_hashDelete.js +5 -4
  1181. package/dist/node_modules/lodash-es/_hashGet.js +9 -8
  1182. package/dist/node_modules/lodash-es/_hashHas.js +7 -6
  1183. package/dist/node_modules/lodash-es/_hashSet.js +7 -6
  1184. package/dist/node_modules/lodash-es/_initCloneArray.js +6 -5
  1185. package/dist/node_modules/lodash-es/_initCloneByTag.js +29 -28
  1186. package/dist/node_modules/lodash-es/_initCloneObject.js +8 -7
  1187. package/dist/node_modules/lodash-es/_isFlattenable.js +9 -8
  1188. package/dist/node_modules/lodash-es/_isIndex.js +6 -5
  1189. package/dist/node_modules/lodash-es/_isIterateeCall.js +10 -9
  1190. package/dist/node_modules/lodash-es/_isKey.js +9 -8
  1191. package/dist/node_modules/lodash-es/_isKeyable.js +4 -3
  1192. package/dist/node_modules/lodash-es/_isMasked.js +9 -8
  1193. package/dist/node_modules/lodash-es/_isPrototype.js +6 -5
  1194. package/dist/node_modules/lodash-es/_isStrictComparable.js +6 -5
  1195. package/dist/node_modules/lodash-es/_listCacheClear.js +4 -3
  1196. package/dist/node_modules/lodash-es/_listCacheDelete.js +8 -7
  1197. package/dist/node_modules/lodash-es/_listCacheGet.js +6 -5
  1198. package/dist/node_modules/lodash-es/_listCacheHas.js +6 -5
  1199. package/dist/node_modules/lodash-es/_listCacheSet.js +6 -5
  1200. package/dist/node_modules/lodash-es/_mapCacheClear.js +10 -9
  1201. package/dist/node_modules/lodash-es/_mapCacheDelete.js +7 -6
  1202. package/dist/node_modules/lodash-es/_mapCacheGet.js +6 -5
  1203. package/dist/node_modules/lodash-es/_mapCacheHas.js +6 -5
  1204. package/dist/node_modules/lodash-es/_mapCacheSet.js +6 -5
  1205. package/dist/node_modules/lodash-es/_mapToArray.js +4 -3
  1206. package/dist/node_modules/lodash-es/_matchesStrictComparable.js +4 -3
  1207. package/dist/node_modules/lodash-es/_memoizeCapped.js +8 -7
  1208. package/dist/node_modules/lodash-es/_nativeCreate.js +5 -3
  1209. package/dist/node_modules/lodash-es/_nativeKeys.js +5 -3
  1210. package/dist/node_modules/lodash-es/_nativeKeysIn.js +4 -3
  1211. package/dist/node_modules/lodash-es/_nodeUtil.js +6 -4
  1212. package/dist/node_modules/lodash-es/_objectToString.js +6 -5
  1213. package/dist/node_modules/lodash-es/_overArg.js +4 -3
  1214. package/dist/node_modules/lodash-es/_overRest.js +9 -8
  1215. package/dist/node_modules/lodash-es/_root.js +5 -3
  1216. package/dist/node_modules/lodash-es/_safeGet.js +4 -3
  1217. package/dist/node_modules/lodash-es/_setCacheAdd.js +6 -5
  1218. package/dist/node_modules/lodash-es/_setCacheHas.js +4 -3
  1219. package/dist/node_modules/lodash-es/_setToArray.js +4 -3
  1220. package/dist/node_modules/lodash-es/_setToString.js +6 -4
  1221. package/dist/node_modules/lodash-es/_shortOut.js +7 -6
  1222. package/dist/node_modules/lodash-es/_stackClear.js +6 -5
  1223. package/dist/node_modules/lodash-es/_stackDelete.js +4 -3
  1224. package/dist/node_modules/lodash-es/_stackGet.js +4 -3
  1225. package/dist/node_modules/lodash-es/_stackHas.js +4 -3
  1226. package/dist/node_modules/lodash-es/_stackSet.js +11 -10
  1227. package/dist/node_modules/lodash-es/_strictIndexOf.js +4 -3
  1228. package/dist/node_modules/lodash-es/_stringSize.js +8 -7
  1229. package/dist/node_modules/lodash-es/_stringToPath.js +7 -5
  1230. package/dist/node_modules/lodash-es/_toKey.js +8 -7
  1231. package/dist/node_modules/lodash-es/_toSource.js +8 -7
  1232. package/dist/node_modules/lodash-es/_trimmedEndIndex.js +6 -5
  1233. package/dist/node_modules/lodash-es/_unicodeSize.js +17 -16
  1234. package/dist/node_modules/lodash-es/clone.js +7 -6
  1235. package/dist/node_modules/lodash-es/cloneDeep.js +7 -6
  1236. package/dist/node_modules/lodash-es/constant.js +4 -3
  1237. package/dist/node_modules/lodash-es/defaults.js +13 -11
  1238. package/dist/node_modules/lodash-es/eq.js +4 -3
  1239. package/dist/node_modules/lodash-es/filter.js +9 -8
  1240. package/dist/node_modules/lodash-es/find.js +6 -4
  1241. package/dist/node_modules/lodash-es/findIndex.js +10 -9
  1242. package/dist/node_modules/lodash-es/flatMap.js +7 -6
  1243. package/dist/node_modules/lodash-es/flatten.js +6 -5
  1244. package/dist/node_modules/lodash-es/forEach.js +9 -8
  1245. package/dist/node_modules/lodash-es/forIn.js +8 -7
  1246. package/dist/node_modules/lodash-es/forOwn.js +7 -6
  1247. package/dist/node_modules/lodash-es/get.js +6 -5
  1248. package/dist/node_modules/lodash-es/has.js +7 -6
  1249. package/dist/node_modules/lodash-es/hasIn.js +7 -6
  1250. package/dist/node_modules/lodash-es/identity.js +4 -3
  1251. package/dist/node_modules/lodash-es/isArguments.js +8 -6
  1252. package/dist/node_modules/lodash-es/isArray.js +4 -2
  1253. package/dist/node_modules/lodash-es/isArrayLike.js +7 -6
  1254. package/dist/node_modules/lodash-es/isArrayLikeObject.js +7 -6
  1255. package/dist/node_modules/lodash-es/isBuffer.js +6 -4
  1256. package/dist/node_modules/lodash-es/isEmpty.js +18 -17
  1257. package/dist/node_modules/lodash-es/isFunction.js +10 -9
  1258. package/dist/node_modules/lodash-es/isLength.js +6 -5
  1259. package/dist/node_modules/lodash-es/isMap.js +7 -5
  1260. package/dist/node_modules/lodash-es/isObject.js +4 -3
  1261. package/dist/node_modules/lodash-es/isObjectLike.js +4 -3
  1262. package/dist/node_modules/lodash-es/isPlainObject.js +13 -12
  1263. package/dist/node_modules/lodash-es/isSet.js +7 -5
  1264. package/dist/node_modules/lodash-es/isString.js +9 -8
  1265. package/dist/node_modules/lodash-es/isSymbol.js +8 -7
  1266. package/dist/node_modules/lodash-es/isTypedArray.js +7 -5
  1267. package/dist/node_modules/lodash-es/isUndefined.js +4 -3
  1268. package/dist/node_modules/lodash-es/keys.js +8 -7
  1269. package/dist/node_modules/lodash-es/keysIn.js +8 -7
  1270. package/dist/node_modules/lodash-es/last.js +4 -3
  1271. package/dist/node_modules/lodash-es/map.js +9 -8
  1272. package/dist/node_modules/lodash-es/mapValues.js +9 -8
  1273. package/dist/node_modules/lodash-es/max.js +8 -7
  1274. package/dist/node_modules/lodash-es/memoize.js +9 -8
  1275. package/dist/node_modules/lodash-es/merge.js +7 -5
  1276. package/dist/node_modules/lodash-es/min.js +8 -7
  1277. package/dist/node_modules/lodash-es/minBy.js +8 -7
  1278. package/dist/node_modules/lodash-es/noop.js +4 -3
  1279. package/dist/node_modules/lodash-es/now.js +6 -4
  1280. package/dist/node_modules/lodash-es/pick.js +7 -5
  1281. package/dist/node_modules/lodash-es/property.js +9 -8
  1282. package/dist/node_modules/lodash-es/range.js +5 -3
  1283. package/dist/node_modules/lodash-es/reduce.js +11 -10
  1284. package/dist/node_modules/lodash-es/size.js +13 -12
  1285. package/dist/node_modules/lodash-es/sortBy.js +9 -7
  1286. package/dist/node_modules/lodash-es/stubArray.js +4 -3
  1287. package/dist/node_modules/lodash-es/stubFalse.js +4 -3
  1288. package/dist/node_modules/lodash-es/toFinite.js +7 -6
  1289. package/dist/node_modules/lodash-es/toInteger.js +6 -5
  1290. package/dist/node_modules/lodash-es/toNumber.js +14 -13
  1291. package/dist/node_modules/lodash-es/toPlainObject.js +7 -6
  1292. package/dist/node_modules/lodash-es/toString.js +6 -5
  1293. package/dist/node_modules/lodash-es/union.js +9 -7
  1294. package/dist/node_modules/lodash-es/uniqBy.js +7 -6
  1295. package/dist/node_modules/lodash-es/uniqueId.js +8 -7
  1296. package/dist/node_modules/lodash-es/values.js +7 -6
  1297. package/dist/node_modules/lodash-es/zipObject.js +7 -6
  1298. package/dist/node_modules/longest-streak/index.js +4 -2
  1299. package/dist/node_modules/markdown-table/index.js +11 -9
  1300. package/dist/node_modules/marked/lib/marked.esm.js +687 -685
  1301. package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +14 -12
  1302. package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +4 -2
  1303. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +182 -180
  1304. package/dist/node_modules/mdast-util-gfm/lib/index.js +20 -18
  1305. package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +69 -67
  1306. package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +47 -45
  1307. package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +15 -13
  1308. package/dist/node_modules/mdast-util-gfm-table/lib/index.js +30 -28
  1309. package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +16 -14
  1310. package/dist/node_modules/mdast-util-math/lib/index.js +15 -13
  1311. package/dist/node_modules/mdast-util-phrasing/lib/index.js +5 -3
  1312. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +11 -9
  1313. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +4 -2
  1314. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +4 -2
  1315. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +4 -2
  1316. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +4 -2
  1317. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +4 -2
  1318. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +6 -4
  1319. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +4 -2
  1320. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +4 -2
  1321. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +8 -6
  1322. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +6 -4
  1323. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +55 -53
  1324. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +4 -2
  1325. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +8 -6
  1326. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +6 -4
  1327. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +15 -13
  1328. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +4 -2
  1329. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +4 -2
  1330. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +4 -2
  1331. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +4 -2
  1332. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +4 -2
  1333. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +4 -2
  1334. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +6 -4
  1335. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +6 -4
  1336. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +4 -2
  1337. package/dist/node_modules/mdast-util-to-hast/lib/index.js +8 -6
  1338. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +4 -2
  1339. package/dist/node_modules/mdast-util-to-hast/lib/state.js +61 -59
  1340. package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +6 -4
  1341. package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +6 -4
  1342. package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +18 -16
  1343. package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +6 -4
  1344. package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +14 -12
  1345. package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +8 -6
  1346. package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +6 -4
  1347. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +6 -4
  1348. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +8 -6
  1349. package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +43 -41
  1350. package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +7 -5
  1351. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +6 -4
  1352. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +11 -9
  1353. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +7 -5
  1354. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +12 -10
  1355. package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +4 -2
  1356. package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +6 -4
  1357. package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +14 -12
  1358. package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +4 -2
  1359. package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +7 -5
  1360. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +4 -2
  1361. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +6 -4
  1362. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +4 -2
  1363. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +4 -2
  1364. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +4 -2
  1365. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +4 -2
  1366. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +4 -2
  1367. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +4 -2
  1368. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +4 -2
  1369. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +4 -2
  1370. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +4 -2
  1371. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +6 -4
  1372. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +4 -2
  1373. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +8 -7
  1374. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +6 -4
  1375. package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +6 -4
  1376. package/dist/node_modules/mdast-util-to-string/lib/index.js +14 -12
  1377. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-Q4EWVU46.js +695 -0
  1378. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-DXYQGD6D.js +3038 -0
  1379. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{c4Diagram-YG6GDRKO.js → c4Diagram-AHTNJAMY.js} +581 -573
  1380. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-336JU56O.js +49 -0
  1381. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-426QAEUC.js +11 -0
  1382. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4BX2VUAB.js +6 -4
  1383. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-B4BG7PRW.js → chunk-4TB4RGXK.js} +590 -444
  1384. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +7 -5
  1385. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5FUZZQ4R.js +3640 -0
  1386. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5PVQY5BW.js +342 -0
  1387. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-AGHRB4JF.js +22 -20
  1388. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-BSJP7CBP.js +82 -0
  1389. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EDXVE4YY.js +25 -0
  1390. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ENJZ2VHE.js +570 -0
  1391. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-FMBD7UC4.js +5 -3
  1392. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ICPOFSXX.js +2348 -0
  1393. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-OYMX7WX6.js +2014 -0
  1394. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QZHKN3VN.js +8 -4
  1395. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-U2HBQHQK.js +274 -0
  1396. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-X2U36JSP.js +67 -0
  1397. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-XPW4576I.js +1146 -0
  1398. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-YZCP3GAM.js +62 -0
  1399. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZZ45TVLE.js +32 -0
  1400. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-6PBFFD2Q.js +29 -0
  1401. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-HSJHXN6E.js +29 -0
  1402. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +116 -114
  1403. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-KV5264BT.js +265 -0
  1404. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-5BDNPKRD.js +101 -0
  1405. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-G4DWMVQ6.js +284 -0
  1406. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-MMDJMWI5.js +213 -0
  1407. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-TYMM5635.js +133 -0
  1408. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{erDiagram-Q2GNP2WA.js → erDiagram-SMLLAGMA.js} +549 -445
  1409. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{flowDiagram-NV44I4VS.js → flowDiagram-DWJPFMVM.js} +1366 -1345
  1410. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-T4ZO3ILL.js +1720 -0
  1411. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-UUTBAWPF.js +730 -0
  1412. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-42DDH7IO.js +19 -0
  1413. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-UXIWVN3A.js +718 -0
  1414. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-VCZTEJTY.js +885 -0
  1415. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{kanban-definition-3W4ZIXB7.js → kanban-definition-6JOO6SKY.js} +124 -118
  1416. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{mindmap-definition-VGOIOE7T.js → mindmap-definition-QFDTVHPH.js} +172 -122
  1417. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-DEJITSTG.js +119 -0
  1418. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{quadrantDiagram-AYHSOK5B.js → quadrantDiagram-34T5L4WZ.js} +279 -273
  1419. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{requirementDiagram-UZGBJVZJ.js → requirementDiagram-MS252O5E.js} +100 -66
  1420. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-XADWPNL6.js +529 -0
  1421. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-FGHM5R23.js +4159 -0
  1422. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FHFEXIEX.js +222 -0
  1423. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-QKLJ7IA2.js +27 -0
  1424. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-GMOUNBTQ.js +1073 -0
  1425. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-DHZGUBPP.js +961 -0
  1426. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-NUSXRM2D.js +578 -0
  1427. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-5P7HB3ND.js +2000 -0
  1428. package/dist/node_modules/mermaid/dist/mermaid.core.js +492 -445
  1429. package/dist/node_modules/micromark/lib/constructs.js +80 -79
  1430. package/dist/node_modules/micromark/lib/create-tokenizer.js +14 -12
  1431. package/dist/node_modules/micromark/lib/initialize/content.js +9 -7
  1432. package/dist/node_modules/micromark/lib/initialize/document.js +15 -14
  1433. package/dist/node_modules/micromark/lib/initialize/flow.js +9 -7
  1434. package/dist/node_modules/micromark/lib/initialize/text.js +8 -6
  1435. package/dist/node_modules/micromark/lib/parse.js +20 -18
  1436. package/dist/node_modules/micromark/lib/postprocess.js +6 -4
  1437. package/dist/node_modules/micromark/lib/preprocess.js +6 -4
  1438. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +20 -18
  1439. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +17 -15
  1440. package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +11 -9
  1441. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +15 -13
  1442. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +8 -6
  1443. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +16 -14
  1444. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +22 -21
  1445. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +16 -15
  1446. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +13 -11
  1447. package/dist/node_modules/micromark-core-commonmark/lib/content.js +18 -17
  1448. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +30 -29
  1449. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +8 -6
  1450. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +15 -13
  1451. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +68 -67
  1452. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +66 -64
  1453. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +112 -111
  1454. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +8 -6
  1455. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +8 -6
  1456. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +8 -6
  1457. package/dist/node_modules/micromark-core-commonmark/lib/list.js +32 -31
  1458. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +12 -10
  1459. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +11 -9
  1460. package/dist/node_modules/micromark-extension-gfm/index.js +16 -14
  1461. package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +122 -120
  1462. package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +33 -31
  1463. package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +11 -9
  1464. package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +6 -4
  1465. package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +4 -2
  1466. package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +36 -34
  1467. package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +20 -18
  1468. package/dist/node_modules/micromark-extension-math/lib/math-flow.js +21 -20
  1469. package/dist/node_modules/micromark-extension-math/lib/math-text.js +11 -9
  1470. package/dist/node_modules/micromark-extension-math/lib/syntax.js +8 -6
  1471. package/dist/node_modules/micromark-factory-destination/index.js +10 -8
  1472. package/dist/node_modules/micromark-factory-label/index.js +7 -5
  1473. package/dist/node_modules/micromark-factory-space/index.js +7 -5
  1474. package/dist/node_modules/micromark-factory-title/index.js +8 -6
  1475. package/dist/node_modules/micromark-factory-whitespace/index.js +7 -5
  1476. package/dist/node_modules/micromark-util-character/index.js +14 -12
  1477. package/dist/node_modules/micromark-util-chunked/index.js +6 -4
  1478. package/dist/node_modules/micromark-util-classify-character/index.js +7 -5
  1479. package/dist/node_modules/micromark-util-combine-extensions/index.js +13 -11
  1480. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +4 -2
  1481. package/dist/node_modules/micromark-util-decode-string/index.js +11 -9
  1482. package/dist/node_modules/micromark-util-html-tag-name/index.js +4 -2
  1483. package/dist/node_modules/micromark-util-normalize-identifier/index.js +4 -2
  1484. package/dist/node_modules/micromark-util-resolve-all/index.js +4 -2
  1485. package/dist/node_modules/micromark-util-sanitize-uri/index.js +6 -4
  1486. package/dist/node_modules/micromark-util-subtokenize/index.js +10 -8
  1487. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +10 -8
  1488. package/dist/node_modules/motion/dist/es/react.js +2 -2
  1489. package/dist/node_modules/nanoid/index.browser.js +6 -4
  1490. package/dist/node_modules/nanoid/url-alphabet/index.js +4 -2
  1491. package/dist/node_modules/property-information/index.js +25 -23
  1492. package/dist/node_modules/property-information/lib/aria.js +41 -39
  1493. package/dist/node_modules/property-information/lib/find.js +18 -16
  1494. package/dist/node_modules/property-information/lib/hast-to-react.js +4 -2
  1495. package/dist/node_modules/property-information/lib/html.js +96 -94
  1496. package/dist/node_modules/property-information/lib/normalize.js +4 -2
  1497. package/dist/node_modules/property-information/lib/svg.js +79 -77
  1498. package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +6 -4
  1499. package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +4 -2
  1500. package/dist/node_modules/property-information/lib/util/create.js +10 -8
  1501. package/dist/node_modules/property-information/lib/util/defined-info.js +13 -11
  1502. package/dist/node_modules/property-information/lib/util/info.js +5 -3
  1503. package/dist/node_modules/property-information/lib/util/merge.js +6 -4
  1504. package/dist/node_modules/property-information/lib/util/schema.js +5 -3
  1505. package/dist/node_modules/property-information/lib/util/types.js +15 -14
  1506. package/dist/node_modules/property-information/lib/xlink.js +5 -3
  1507. package/dist/node_modules/property-information/lib/xml.js +5 -3
  1508. package/dist/node_modules/property-information/lib/xmlns.js +7 -5
  1509. package/dist/node_modules/rehype-harden/dist/index.js +47 -45
  1510. package/dist/node_modules/rehype-katex/lib/index.js +25 -23
  1511. package/dist/node_modules/rehype-raw/lib/index.js +6 -4
  1512. package/dist/node_modules/rehype-sanitize/lib/index.js +6 -4
  1513. package/dist/node_modules/remark-gfm/lib/index.js +9 -7
  1514. package/dist/node_modules/remark-math/lib/index.js +9 -7
  1515. package/dist/node_modules/remark-parse/lib/index.js +6 -4
  1516. package/dist/node_modules/remark-rehype/lib/index.js +7 -5
  1517. package/dist/node_modules/remend/dist/index.js +368 -297
  1518. package/dist/node_modules/roughjs/bundled/rough.esm.js +877 -875
  1519. package/dist/node_modules/shiki/dist/bundle-full.js +13 -11
  1520. package/dist/node_modules/shiki/dist/chunk-CtajNgzt.js +17 -0
  1521. package/dist/node_modules/shiki/dist/engine-oniguruma.js +7 -0
  1522. package/dist/node_modules/shiki/dist/{langs.js → langs-bundle-full-DfKZStlK.js} +8 -6
  1523. package/dist/node_modules/shiki/dist/themes.js +6 -4
  1524. package/dist/node_modules/shiki/dist/wasm.js +2 -2
  1525. package/dist/node_modules/space-separated-tokens/index.js +5 -3
  1526. package/dist/node_modules/streamdown/dist/chunk-BO2N2NFS.js +2500 -0
  1527. package/dist/node_modules/streamdown/dist/highlighted-body-OFNGDK62.js +37 -0
  1528. package/dist/node_modules/streamdown/dist/index.js +1 -1
  1529. package/dist/node_modules/streamdown/dist/mermaid-GHXKKRXX.js +3 -0
  1530. package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +701 -699
  1531. package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +4 -2
  1532. package/dist/node_modules/stringify-entities/lib/core.js +18 -16
  1533. package/dist/node_modules/stringify-entities/lib/index.js +7 -5
  1534. package/dist/node_modules/stringify-entities/lib/util/format-smart.js +10 -8
  1535. package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -4
  1536. package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -4
  1537. package/dist/node_modules/stringify-entities/lib/util/to-named.js +14 -12
  1538. package/dist/node_modules/style-to-js/cjs/index.js +9 -7
  1539. package/dist/node_modules/style-to-js/cjs/utilities.js +6 -4
  1540. package/dist/node_modules/style-to-object/cjs/index.js +8 -6
  1541. package/dist/node_modules/stylis/src/Enum.js +4 -2
  1542. package/dist/node_modules/stylis/src/Parser.js +38 -36
  1543. package/dist/node_modules/stylis/src/Serializer.js +17 -15
  1544. package/dist/node_modules/stylis/src/Tokenizer.js +53 -51
  1545. package/dist/node_modules/stylis/src/Utility.js +17 -15
  1546. package/dist/node_modules/trim-lines/index.js +10 -8
  1547. package/dist/node_modules/trough/lib/index.js +6 -4
  1548. package/dist/node_modules/ts-dedent/esm/index.js +4 -2
  1549. package/dist/node_modules/unified/lib/callable-instance.js +4 -2
  1550. package/dist/node_modules/unified/lib/index.js +102 -101
  1551. package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +4 -2
  1552. package/dist/node_modules/unist-util-find-after/lib/index.js +6 -4
  1553. package/dist/node_modules/unist-util-is/lib/index.js +31 -29
  1554. package/dist/node_modules/unist-util-position/lib/index.js +7 -5
  1555. package/dist/node_modules/unist-util-stringify-position/lib/index.js +10 -8
  1556. package/dist/node_modules/unist-util-visit/lib/index.js +6 -4
  1557. package/dist/node_modules/unist-util-visit-parents/lib/color.js +4 -2
  1558. package/dist/node_modules/unist-util-visit-parents/lib/index.js +21 -20
  1559. package/dist/node_modules/uuid/dist/esm-browser/native.js +3 -2
  1560. package/dist/node_modules/uuid/dist/esm-browser/rng.js +8 -6
  1561. package/dist/node_modules/uuid/dist/esm-browser/stringify.js +7 -5
  1562. package/dist/node_modules/uuid/dist/esm-browser/v4.js +10 -9
  1563. package/dist/node_modules/vaul/dist/index.js +276 -274
  1564. package/dist/node_modules/vfile/lib/index.js +44 -42
  1565. package/dist/node_modules/vfile/lib/minpath.browser.js +22 -20
  1566. package/dist/node_modules/vfile/lib/minproc.browser.js +5 -3
  1567. package/dist/node_modules/vfile/lib/minurl.browser.js +8 -6
  1568. package/dist/node_modules/vfile/lib/minurl.shared.js +4 -2
  1569. package/dist/node_modules/vfile-location/lib/index.js +7 -5
  1570. package/dist/node_modules/vfile-message/lib/index.js +7 -5
  1571. package/dist/node_modules/vscode-jsonrpc/browser.js +8 -6
  1572. package/dist/node_modules/vscode-jsonrpc/lib/browser/main.js +11 -9
  1573. package/dist/node_modules/vscode-jsonrpc/lib/browser/ril.js +8 -6
  1574. package/dist/node_modules/vscode-jsonrpc/lib/common/api.js +28 -26
  1575. package/dist/node_modules/vscode-jsonrpc/lib/common/cancellation.js +17 -15
  1576. package/dist/node_modules/vscode-jsonrpc/lib/common/connection.js +13 -11
  1577. package/dist/node_modules/vscode-jsonrpc/lib/common/disposable.js +6 -4
  1578. package/dist/node_modules/vscode-jsonrpc/lib/common/events.js +8 -6
  1579. package/dist/node_modules/vscode-jsonrpc/lib/common/is.js +6 -4
  1580. package/dist/node_modules/vscode-jsonrpc/lib/common/linkedMap.js +6 -4
  1581. package/dist/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js +6 -4
  1582. package/dist/node_modules/vscode-jsonrpc/lib/common/messageReader.js +11 -9
  1583. package/dist/node_modules/vscode-jsonrpc/lib/common/messageWriter.js +31 -29
  1584. package/dist/node_modules/vscode-jsonrpc/lib/common/messages.js +8 -6
  1585. package/dist/node_modules/vscode-jsonrpc/lib/common/ral.js +6 -4
  1586. package/dist/node_modules/vscode-jsonrpc/lib/common/semaphore.js +8 -6
  1587. package/dist/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js +8 -6
  1588. package/dist/node_modules/vscode-languageserver-protocol/lib/browser/main.js +10 -8
  1589. package/dist/node_modules/vscode-languageserver-protocol/lib/common/api.js +23 -21
  1590. package/dist/node_modules/vscode-languageserver-protocol/lib/common/connection.js +8 -6
  1591. package/dist/node_modules/vscode-languageserver-protocol/lib/common/messages.js +8 -6
  1592. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js +8 -6
  1593. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js +8 -6
  1594. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js +8 -6
  1595. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js +8 -6
  1596. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js +14 -12
  1597. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js +8 -6
  1598. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js +8 -6
  1599. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js +8 -6
  1600. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js +8 -6
  1601. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineCompletion.js +8 -6
  1602. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js +8 -6
  1603. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.js +55 -53
  1604. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js +8 -6
  1605. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js +8 -6
  1606. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js +10 -8
  1607. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js +12 -10
  1608. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js +8 -6
  1609. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js +8 -6
  1610. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js +8 -6
  1611. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js +8 -6
  1612. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js +8 -6
  1613. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js +8 -6
  1614. package/dist/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js +6 -4
  1615. package/dist/node_modules/vscode-languageserver-textdocument/lib/esm/main.js +21 -19
  1616. package/dist/node_modules/vscode-languageserver-types/lib/esm/main.js +849 -847
  1617. package/dist/node_modules/vscode-uri/lib/esm/index.js +6 -4
  1618. package/dist/node_modules/web-namespaces/index.js +4 -2
  1619. package/dist/node_modules/zwitch/index.js +7 -5
  1620. package/dist/packages/contracts/dist/enums/index.js +14 -12
  1621. package/dist/packages/contracts/dist/enums/registry.enum.js +6 -4
  1622. package/dist/packages/contracts/dist/enums/sort-order.enum.js +6 -4
  1623. package/dist/packages/contracts/dist/enums/user-type.enum.js +6 -4
  1624. package/dist/packages/contracts/dist/enums/workflow-state.enum.js +6 -4
  1625. package/dist/pages/DashboardPage.js +55 -99
  1626. package/dist/pages/DebugPage.js +12 -17
  1627. package/dist/pages/DebugWorkflowDetailsPage.js +91 -119
  1628. package/dist/pages/DebugWorkflowsPage.js +39 -37
  1629. package/dist/pages/EmbedWorkbenchPage.js +48 -62
  1630. package/dist/pages/PreviewWorkbenchPage.js +243 -324
  1631. package/dist/pages/RunsListPage.js +44 -61
  1632. package/dist/pages/RunsPage.js +31 -48
  1633. package/dist/pages/StudioLandingPage.js +97 -132
  1634. package/dist/pages/WorkbenchPage.js +56 -86
  1635. package/dist/pages/WorkflowDebugPage.js +74 -110
  1636. package/dist/pages/WorkspacePage.js +72 -115
  1637. package/dist/pages/WorkspaceRunsPage.js +43 -70
  1638. package/dist/pages/WorkspacesPage.js +24 -35
  1639. package/dist/providers/ComponentOverridesProvider.js +9 -12
  1640. package/dist/providers/InvalidationEventsProvider.js +33 -35
  1641. package/dist/providers/QueryProvider.js +14 -18
  1642. package/dist/providers/SseProvider.js +28 -29
  1643. package/dist/providers/StudioProvider.js +14 -19
  1644. package/dist/routing/LocalRouter.js +6 -9
  1645. package/dist/services/createApiClient.js +7 -5
  1646. package/dist/services/eventEmitter.js +3 -2
  1647. package/dist/services/index.js +2 -2
  1648. package/dist/types/ai.types.js +7 -5
  1649. package/package.json +33 -33
  1650. package/dist/_virtual/rolldown_runtime.js +0 -20
  1651. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-7HQA4BMR.js +0 -3
  1652. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-4F5CHEZ2.js +0 -23
  1653. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-B2363JML.js +0 -60
  1654. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FRFDVMJY.js +0 -23
  1655. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-PL6DKKU2.js +0 -28
  1656. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-SJTYNZTY.js +0 -23
  1657. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TCCFYFTB.js +0 -787
  1658. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TQ3KTPDO.js +0 -23
  1659. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-UMXZTB3W.js +0 -30
  1660. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-G5XIXVHT.js +0 -3
  1661. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-VBDWY6EO.js +0 -3
  1662. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-DYOGHKS2.js +0 -3
  1663. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-VRWISCQL.js +0 -3
  1664. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-ZZBFDIW7.js +0 -3
  1665. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-GDKQZRPO.js +0 -3
  1666. package/dist/node_modules/@ungap/structured-clone/esm/types.js +0 -2
  1667. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/context_assist.js +0 -16
  1668. package/dist/node_modules/langium/lib/index.js +0 -182
  1669. package/dist/node_modules/langium/lib/parser/indentation-aware.js +0 -141
  1670. package/dist/node_modules/langium/lib/utils/index.js +0 -53
  1671. package/dist/node_modules/langium/lib/workspace/profiler.js +0 -89
  1672. package/dist/node_modules/lodash/_Symbol.js +0 -7
  1673. package/dist/node_modules/lodash/_baseGetTag.js +0 -13
  1674. package/dist/node_modules/lodash/_baseTrim.js +0 -11
  1675. package/dist/node_modules/lodash/_freeGlobal.js +0 -6
  1676. package/dist/node_modules/lodash/_getRawTag.js +0 -17
  1677. package/dist/node_modules/lodash/_objectToString.js +0 -10
  1678. package/dist/node_modules/lodash/_root.js +0 -8
  1679. package/dist/node_modules/lodash/_trimmedEndIndex.js +0 -11
  1680. package/dist/node_modules/lodash/isObject.js +0 -10
  1681. package/dist/node_modules/lodash/isObjectLike.js +0 -9
  1682. package/dist/node_modules/lodash/isSymbol.js +0 -12
  1683. package/dist/node_modules/lodash/now.js +0 -10
  1684. package/dist/node_modules/lodash/toNumber.js +0 -22
  1685. package/dist/node_modules/lodash-es/_arrayAggregator.js +0 -9
  1686. package/dist/node_modules/lodash-es/_arrayEvery.js +0 -6
  1687. package/dist/node_modules/lodash-es/_baseAggregator.js +0 -8
  1688. package/dist/node_modules/lodash-es/_baseDifference.js +0 -22
  1689. package/dist/node_modules/lodash-es/_baseEvery.js +0 -9
  1690. package/dist/node_modules/lodash-es/_baseIsRegExp.js +0 -8
  1691. package/dist/node_modules/lodash-es/_baseSlice.js +0 -8
  1692. package/dist/node_modules/lodash-es/_baseSome.js +0 -9
  1693. package/dist/node_modules/lodash-es/_createAggregator.js +0 -12
  1694. package/dist/node_modules/lodash-es/assign.js +0 -14
  1695. package/dist/node_modules/lodash-es/compact.js +0 -9
  1696. package/dist/node_modules/lodash-es/difference.js +0 -8
  1697. package/dist/node_modules/lodash-es/drop.js +0 -8
  1698. package/dist/node_modules/lodash-es/dropRight.js +0 -8
  1699. package/dist/node_modules/lodash-es/every.js +0 -11
  1700. package/dist/node_modules/lodash-es/groupBy.js +0 -6
  1701. package/dist/node_modules/lodash-es/head.js +0 -5
  1702. package/dist/node_modules/lodash-es/includes.js +0 -13
  1703. package/dist/node_modules/lodash-es/indexOf.js +0 -11
  1704. package/dist/node_modules/lodash-es/isRegExp.js +0 -5
  1705. package/dist/node_modules/lodash-es/negate.js +0 -16
  1706. package/dist/node_modules/lodash-es/pickBy.js +0 -15
  1707. package/dist/node_modules/lodash-es/reject.js +0 -10
  1708. package/dist/node_modules/lodash-es/some.js +0 -11
  1709. package/dist/node_modules/lodash-es/uniq.js +0 -6
  1710. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-VXUJARFQ.js +0 -673
  1711. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VD42YOAC.js +0 -3010
  1712. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ABZYJK2D.js +0 -1547
  1713. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ATLVNIR6.js +0 -65
  1714. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-CVBHYZKI.js +0 -10
  1715. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DI55MBZ5.js +0 -1994
  1716. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DR5Q36YT.js +0 -135
  1717. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EXTU4WIE.js +0 -9
  1718. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-HN2XXSSU.js +0 -74
  1719. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JA3XYJ7Z.js +0 -247
  1720. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JZLCHNYA.js +0 -3516
  1721. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-MI3HLSF2.js +0 -1140
  1722. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-N4CR4FBY.js +0 -39
  1723. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QN33PNHL.js +0 -23
  1724. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QXUST7PY.js +0 -497
  1725. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-S3R3BYOJ.js +0 -338
  1726. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-TZMSLE5B.js +0 -55
  1727. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-2ON5EDUG.js +0 -26
  1728. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-WZHVMYZB.js +0 -26
  1729. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-6UL2VRFP.js +0 -263
  1730. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-PSM6KHXK.js +0 -283
  1731. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-QEK2KX5R.js +0 -211
  1732. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-S2PKOQOG.js +0 -129
  1733. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-JELNMOA3.js +0 -1688
  1734. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-V2S2FVAM.js +0 -621
  1735. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-HS3SLOUP.js +0 -18
  1736. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-XKPGCS4Q.js +0 -883
  1737. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ADFJNKIX.js +0 -117
  1738. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-TZEHDZUN.js +0 -519
  1739. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-WL72ISMW.js +0 -3560
  1740. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FKZM4ZOC.js +0 -220
  1741. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-4FDKWEC3.js +0 -25
  1742. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-IT6M3QCI.js +0 -833
  1743. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-PRI3JC2R.js +0 -1975
  1744. package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +0 -2189
  1745. package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +0 -33
  1746. package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +0 -3
@@ -1,64 +1,80 @@
1
- import { __name, log } from "./chunk-AGHRB4JF.js";
2
- import rgba_default from "../../../../khroma/dist/methods/rgba.js";
3
- import channel_default from "../../../../khroma/dist/methods/channel.js";
4
- import { clear, common_default, defaultConfig2, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, setAccDescription, setAccTitle, setConfig2, setDiagramTitle } from "./chunk-ABZYJK2D.js";
5
- import select_default from "../../../../d3-selection/src/select.js";
1
+ import { __name as e, log as t } from "./chunk-AGHRB4JF.js";
2
+ import n from "../../../../khroma/dist/methods/rgba.js";
3
+ import r from "../../../../khroma/dist/methods/channel.js";
4
+ import { purify as i } from "../../../../dompurify/dist/purify.es.js";
5
+ import { clear as a, common_default as o, defaultConfig2 as s, getAccDescription as c, getAccTitle as l, getConfig2 as u, getDiagramTitle as d, setAccDescription as f, setAccTitle as p, setConfig2 as ee, setDiagramTitle as m } from "./chunk-ICPOFSXX.js";
6
+ import h from "../../../../d3-selection/src/select.js";
6
7
  import "../../../../d3/src/index.js";
7
- import { JSON_SCHEMA, load } from "./chunk-MI3HLSF2.js";
8
- import "./chunk-HN2XXSSU.js";
9
- import "./chunk-CVBHYZKI.js";
10
- import "./chunk-ATLVNIR6.js";
11
- import { getEdgeId, utils_default } from "./chunk-S3R3BYOJ.js";
12
- import "./chunk-JA3XYJ7Z.js";
13
- import { isValidShape } from "./chunk-JZLCHNYA.js";
14
- import "./chunk-QXUST7PY.js";
15
- import { getRegisteredLayoutAlgorithm, render } from "./chunk-N4CR4FBY.js";
16
- import { getIconStyles } from "./chunk-FMBD7UC4.js";
17
- import { getDiagramElement } from "./chunk-55IACEB6.js";
18
- import { setupViewPortForSVG } from "./chunk-QN33PNHL.js";
19
- var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
8
+ import { JSON_SCHEMA as g, load as _ } from "./chunk-XPW4576I.js";
9
+ import "./chunk-BSJP7CBP.js";
10
+ import { getEdgeId as v, utils_default as te } from "./chunk-5PVQY5BW.js";
11
+ import "./chunk-ZZ45TVLE.js";
12
+ import "./chunk-X2U36JSP.js";
13
+ import "./chunk-U2HBQHQK.js";
14
+ import { isValidShape as ne } from "./chunk-5FUZZQ4R.js";
15
+ import "./chunk-ENJZ2VHE.js";
16
+ import { getRegisteredLayoutAlgorithm as y, render as b } from "./chunk-336JU56O.js";
17
+ import { getIconStyles as x } from "./chunk-FMBD7UC4.js";
18
+ import { createTooltip as S } from "./chunk-YZCP3GAM.js";
19
+ import { getDiagramElement as C } from "./chunk-55IACEB6.js";
20
+ import { setupViewPortForSVG as w } from "./chunk-EDXVE4YY.js";
21
+ //#region ../../node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-DWJPFMVM.mjs
22
+ var T = "flowchart-", E = class {
20
23
  constructor() {
21
- this.vertexCounter = 0, this.config = getConfig2(), this.vertices = /* @__PURE__ */ new Map(), this.edges = [], this.classes = /* @__PURE__ */ new Map(), this.subGraphs = [], this.subGraphLookup = /* @__PURE__ */ new Map(), this.tooltips = /* @__PURE__ */ new Map(), this.subCount = 0, this.firstGraphFlag = !0, this.secCount = -1, this.posCrossRef = [], this.funs = [], this.setAccTitle = setAccTitle, this.setAccDescription = setAccDescription, this.setDiagramTitle = setDiagramTitle, this.getAccTitle = getAccTitle, this.getAccDescription = getAccDescription, this.getDiagramTitle = getDiagramTitle, this.funs.push(this.setupToolTips.bind(this)), this.addVertex = this.addVertex.bind(this), this.firstGraph = this.firstGraph.bind(this), this.setDirection = this.setDirection.bind(this), this.addSubGraph = this.addSubGraph.bind(this), this.addLink = this.addLink.bind(this), this.setLink = this.setLink.bind(this), this.updateLink = this.updateLink.bind(this), this.addClass = this.addClass.bind(this), this.setClass = this.setClass.bind(this), this.destructLink = this.destructLink.bind(this), this.setClickEvent = this.setClickEvent.bind(this), this.setTooltip = this.setTooltip.bind(this), this.updateLinkInterpolate = this.updateLinkInterpolate.bind(this), this.setClickFun = this.setClickFun.bind(this), this.bindFunctions = this.bindFunctions.bind(this), this.lex = { firstGraph: this.firstGraph.bind(this) }, this.clear(), this.setGen("gen-2");
24
+ this.vertexCounter = 0, this.config = u(), this.diagramId = "", this.vertices = /* @__PURE__ */ new Map(), this.edges = [], this.classes = /* @__PURE__ */ new Map(), this.subGraphs = [], this.subGraphLookup = /* @__PURE__ */ new Map(), this.tooltips = /* @__PURE__ */ new Map(), this.subCount = 0, this.firstGraphFlag = !0, this.secCount = -1, this.posCrossRef = [], this.funs = [], this.setAccTitle = p, this.setAccDescription = f, this.setDiagramTitle = m, this.getAccTitle = l, this.getAccDescription = c, this.getDiagramTitle = d, this.funs.push(this.setupToolTips.bind(this)), this.addVertex = this.addVertex.bind(this), this.firstGraph = this.firstGraph.bind(this), this.setDirection = this.setDirection.bind(this), this.addSubGraph = this.addSubGraph.bind(this), this.addLink = this.addLink.bind(this), this.setLink = this.setLink.bind(this), this.updateLink = this.updateLink.bind(this), this.addClass = this.addClass.bind(this), this.setClass = this.setClass.bind(this), this.destructLink = this.destructLink.bind(this), this.setClickEvent = this.setClickEvent.bind(this), this.setTooltip = this.setTooltip.bind(this), this.updateLinkInterpolate = this.updateLinkInterpolate.bind(this), this.setClickFun = this.setClickFun.bind(this), this.bindFunctions = this.bindFunctions.bind(this), this.lex = { firstGraph: this.firstGraph.bind(this) }, this.clear(), this.setGen("gen-2");
25
+ }
26
+ static {
27
+ e(this, "FlowDB");
22
28
  }
23
- static #e = __name(this, "FlowDB");
24
29
  sanitizeText(e) {
25
- return common_default.sanitizeText(e, this.config);
30
+ return o.sanitizeText(e, this.config);
31
+ }
32
+ sanitizeNodeLabelType(e) {
33
+ switch (e) {
34
+ case "markdown":
35
+ case "string":
36
+ case "text": return e;
37
+ default: return "markdown";
38
+ }
39
+ }
40
+ setDiagramId(e) {
41
+ this.diagramId = e;
26
42
  }
27
43
  lookUpDomId(e) {
28
- for (let t of this.vertices.values()) if (t.id === e) return t.domId;
29
- return e;
44
+ for (let t of this.vertices.values()) if (t.id === e) return this.diagramId ? `${this.diagramId}-${t.domId}` : t.domId;
45
+ return this.diagramId ? `${this.diagramId}-${e}` : e;
30
46
  }
31
- addVertex(e, t, n, r, i, a, o = {}, s) {
47
+ addVertex(e, n, r, i, a, o, s = {}, c) {
32
48
  if (!e || e.trim().length === 0) return;
33
- let c;
34
- if (s !== void 0) {
49
+ let l;
50
+ if (c !== void 0) {
35
51
  let e;
36
- e = s.includes("\n") ? s + "\n" : "{\n" + s + "\n}", c = load(e, { schema: JSON_SCHEMA });
52
+ e = c.includes("\n") ? c + "\n" : "{\n" + c + "\n}", l = _(e, { schema: g });
37
53
  }
38
- let u = this.edges.find((t) => t.id === e);
39
- if (u) {
40
- let e = c;
41
- e?.animate !== void 0 && (u.animate = e.animate), e?.animation !== void 0 && (u.animation = e.animation), e?.curve !== void 0 && (u.interpolate = e.curve);
54
+ let d = this.edges.find((t) => t.id === e);
55
+ if (d) {
56
+ let e = l;
57
+ e?.animate !== void 0 && (d.animate = e.animate), e?.animation !== void 0 && (d.animation = e.animation), e?.curve !== void 0 && (d.interpolate = e.curve);
42
58
  return;
43
59
  }
44
- let d, f = this.vertices.get(e);
45
- if (f === void 0 && (f = {
60
+ let f, p = this.vertices.get(e);
61
+ if (p === void 0 && (n === void 0 && r === void 0 && i != null && t.warn(`Style applied to unknown node "${e}". This may indicate a typo. The node will be created automatically.`), p = {
46
62
  id: e,
47
63
  labelType: "text",
48
- domId: MERMAID_DOM_ID_PREFIX + e + "-" + this.vertexCounter,
64
+ domId: T + e + "-" + this.vertexCounter,
49
65
  styles: [],
50
66
  classes: []
51
- }, this.vertices.set(e, f)), this.vertexCounter++, t === void 0 ? f.text === void 0 && (f.text = e) : (this.config = getConfig2(), d = this.sanitizeText(t.text.trim()), f.labelType = t.type, d.startsWith("\"") && d.endsWith("\"") && (d = d.substring(1, d.length - 1)), f.text = d), n !== void 0 && (f.type = n), r?.forEach((e) => {
52
- f.styles.push(e);
53
- }), i?.forEach((e) => {
54
- f.classes.push(e);
55
- }), a !== void 0 && (f.dir = a), f.props === void 0 ? f.props = o : o !== void 0 && Object.assign(f.props, o), c !== void 0) {
56
- if (c.shape) {
57
- if (c.shape !== c.shape.toLowerCase() || c.shape.includes("_")) throw Error(`No such shape: ${c.shape}. Shape names should be lowercase.`);
58
- if (!isValidShape(c.shape)) throw Error(`No such shape: ${c.shape}.`);
59
- f.type = c?.shape;
67
+ }, this.vertices.set(e, p)), this.vertexCounter++, n === void 0 ? p.text === void 0 && (p.text = e) : (this.config = u(), f = this.sanitizeText(n.text.trim()), p.labelType = n.type, f.startsWith("\"") && f.endsWith("\"") && (f = f.substring(1, f.length - 1)), p.text = f), r !== void 0 && (p.type = r), i?.forEach((e) => {
68
+ p.styles.push(e);
69
+ }), a?.forEach((e) => {
70
+ p.classes.push(e);
71
+ }), o !== void 0 && (p.dir = o), p.props === void 0 ? p.props = s : s !== void 0 && Object.assign(p.props, s), l !== void 0) {
72
+ if (l.shape) {
73
+ if (l.shape !== l.shape.toLowerCase() || l.shape.includes("_")) throw Error(`No such shape: ${l.shape}. Shape names should be lowercase.`);
74
+ if (!ne(l.shape)) throw Error(`No such shape: ${l.shape}.`);
75
+ p.type = l?.shape;
60
76
  }
61
- c?.label && (f.text = c?.label), c?.icon && (f.icon = c?.icon, !c.label?.trim() && f.text === e && (f.text = "")), c?.form && (f.form = c?.form), c?.pos && (f.pos = c?.pos), c?.img && (f.img = c?.img, !c.label?.trim() && f.text === e && (f.text = "")), c?.constraint && (f.constraint = c.constraint), c.w && (f.assetWidth = Number(c.w)), c.h && (f.assetHeight = Number(c.h));
77
+ l?.label && (p.text = l?.label, p.labelType = this.sanitizeNodeLabelType(l?.labelType)), l?.icon && (p.icon = l?.icon, !l.label?.trim() && p.text === e && (p.text = "")), l?.form && (p.form = l?.form), l?.pos && (p.pos = l?.pos), l?.img && (p.img = l?.img, !l.label?.trim() && p.text === e && (p.text = "")), l?.constraint && (p.constraint = l.constraint), l.w && (p.assetWidth = Number(l.w)), l.h && (p.assetHeight = Number(l.h));
62
78
  }
63
79
  }
64
80
  addSingleLink(e, n, r, i) {
@@ -72,20 +88,20 @@ var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
72
88
  isUserDefinedId: !1,
73
89
  interpolate: this.edges.defaultInterpolate
74
90
  };
75
- log.info("abc78 Got edge...", a);
91
+ t.info("abc78 Got edge...", a);
76
92
  let o = r.text;
77
- if (o !== void 0 && (a.text = this.sanitizeText(o.text.trim()), a.text.startsWith("\"") && a.text.endsWith("\"") && (a.text = a.text.substring(1, a.text.length - 1)), a.labelType = o.type), r !== void 0 && (a.type = r.type, a.stroke = r.stroke, a.length = r.length > 10 ? 10 : r.length), i && !this.edges.some((e) => e.id === i)) a.id = i, a.isUserDefinedId = !0;
93
+ if (o !== void 0 && (a.text = this.sanitizeText(o.text.trim()), a.text.startsWith("\"") && a.text.endsWith("\"") && (a.text = a.text.substring(1, a.text.length - 1)), a.labelType = this.sanitizeNodeLabelType(o.type)), r !== void 0 && (a.type = r.type, a.stroke = r.stroke, a.length = r.length > 10 ? 10 : r.length), i && !this.edges.some((e) => e.id === i)) a.id = i, a.isUserDefinedId = !0;
78
94
  else {
79
95
  let e = this.edges.filter((e) => e.start === a.start && e.end === a.end);
80
- e.length === 0 ? a.id = getEdgeId(a.start, a.end, {
96
+ e.length === 0 ? a.id = v(a.start, a.end, {
81
97
  counter: 0,
82
98
  prefix: "L"
83
- }) : a.id = getEdgeId(a.start, a.end, {
99
+ }) : a.id = v(a.start, a.end, {
84
100
  counter: e.length + 1,
85
101
  prefix: "L"
86
102
  });
87
103
  }
88
- if (this.edges.length < (this.config.maxEdges ?? 500)) log.info("Pushing edge..."), this.edges.push(a);
104
+ if (this.edges.length < (this.config.maxEdges ?? 500)) t.info("Pushing edge..."), this.edges.push(a);
89
105
  else throw Error(`Edge limit exceeded. ${this.edges.length} edges found, but the limit is ${this.config.maxEdges}.
90
106
 
91
107
  Initialize mermaid with maxEdges set to a higher number to allow more edges.
@@ -97,7 +113,7 @@ You have to call mermaid.initialize.`);
97
113
  }
98
114
  addLink(e, n, r) {
99
115
  let i = this.isLinkData(r) ? r.id.replace("@", "") : void 0;
100
- log.info("addLink", e, n, i);
116
+ t.info("addLink", e, n, i);
101
117
  for (let t of e) for (let a of n) {
102
118
  let o = t === e[e.length - 1], s = a === n[0];
103
119
  o && s ? this.addSingleLink(t, a, r, i) : this.addSingleLink(t, a, r, void 0);
@@ -151,29 +167,28 @@ You have to call mermaid.initialize.`);
151
167
  }
152
168
  }
153
169
  setClickFun(e, t, n) {
154
- let r = this.lookUpDomId(e);
155
- if (getConfig2().securityLevel !== "loose" || t === void 0) return;
156
- let i = [];
170
+ if (u().securityLevel !== "loose" || t === void 0) return;
171
+ let r = [];
157
172
  if (typeof n == "string") {
158
- i = n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);
159
- for (let e = 0; e < i.length; e++) {
160
- let t = i[e].trim();
161
- t.startsWith("\"") && t.endsWith("\"") && (t = t.substr(1, t.length - 2)), i[e] = t;
173
+ r = n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);
174
+ for (let e = 0; e < r.length; e++) {
175
+ let t = r[e].trim();
176
+ t.startsWith("\"") && t.endsWith("\"") && (t = t.substr(1, t.length - 2)), r[e] = t;
162
177
  }
163
178
  }
164
- i.length === 0 && i.push(e);
165
- let a = this.vertices.get(e);
166
- a && (a.haveCallback = !0, this.funs.push(() => {
167
- let e = document.querySelector(`[id="${r}"]`);
168
- e !== null && e.addEventListener("click", () => {
169
- utils_default.runFunc(t, ...i);
179
+ r.length === 0 && r.push(e);
180
+ let i = this.vertices.get(e);
181
+ i && (i.haveCallback = !0, this.funs.push(() => {
182
+ let n = this.lookUpDomId(e), i = document.querySelector(`[id="${n}"]`);
183
+ i !== null && i.addEventListener("click", () => {
184
+ te.runFunc(t, ...r);
170
185
  }, !1);
171
186
  }));
172
187
  }
173
188
  setLink(e, t, n) {
174
189
  e.split(",").forEach((e) => {
175
190
  let r = this.vertices.get(e);
176
- r !== void 0 && (r.link = utils_default.formatUrl(t, this.config), r.linkTarget = n);
191
+ r !== void 0 && (r.link = te.formatUrl(t, this.config), r.linkTarget = n);
177
192
  }), this.setClass(e, "clickable");
178
193
  }
179
194
  getTooltip(e) {
@@ -202,18 +217,18 @@ You have to call mermaid.initialize.`);
202
217
  return this.classes;
203
218
  }
204
219
  setupToolTips(e) {
205
- let t = select_default(".mermaidTooltip");
206
- (t._groups || t)[0][0] === null && (t = select_default("body").append("div").attr("class", "mermaidTooltip").style("opacity", 0)), select_default(e).select("svg").selectAll("g.node").on("mouseover", (e) => {
207
- let n = select_default(e.currentTarget);
208
- if (n.attr("title") === null) return;
209
- let r = e.currentTarget?.getBoundingClientRect();
210
- t.transition().duration(200).style("opacity", ".9"), t.text(n.attr("title")).style("left", window.scrollX + r.left + (r.right - r.left) / 2 + "px").style("top", window.scrollY + r.bottom + "px"), t.html(t.html().replace(/&lt;br\/&gt;/g, "<br/>")), n.classed("hover", !0);
220
+ let t = S();
221
+ h(e).select("svg").selectAll("g.node").on("mouseover", (e) => {
222
+ let n = h(e.currentTarget), r = n.attr("title");
223
+ if (r === null) return;
224
+ let a = e.currentTarget?.getBoundingClientRect();
225
+ t.transition().duration(200).style("opacity", ".9"), t.text(n.attr("title")).style("left", window.scrollX + a.left + (a.right - a.left) / 2 + "px").style("top", window.scrollY + a.bottom + "px"), t.html(i.sanitize(r)), n.classed("hover", !0);
211
226
  }).on("mouseout", (e) => {
212
- t.transition().duration(500).style("opacity", 0), select_default(e.currentTarget).classed("hover", !1);
227
+ t.transition().duration(500).style("opacity", 0), h(e.currentTarget).classed("hover", !1);
213
228
  });
214
229
  }
215
230
  clear(e = "gen-2") {
216
- this.vertices = /* @__PURE__ */ new Map(), this.classes = /* @__PURE__ */ new Map(), this.edges = [], this.funs = [this.setupToolTips.bind(this)], this.subGraphs = [], this.subGraphLookup = /* @__PURE__ */ new Map(), this.subCount = 0, this.tooltips = /* @__PURE__ */ new Map(), this.firstGraphFlag = !0, this.version = e, this.config = getConfig2(), clear();
231
+ this.vertices = /* @__PURE__ */ new Map(), this.classes = /* @__PURE__ */ new Map(), this.edges = [], this.funs = [this.setupToolTips.bind(this)], this.diagramId = "", this.subGraphs = [], this.subGraphLookup = /* @__PURE__ */ new Map(), this.subCount = 0, this.tooltips = /* @__PURE__ */ new Map(), this.firstGraphFlag = !0, this.version = e, this.config = u(), a();
217
232
  }
218
233
  setGen(e) {
219
234
  this.version = e || "gen-2";
@@ -224,7 +239,7 @@ You have to call mermaid.initialize.`);
224
239
  addSubGraph(n, r, i) {
225
240
  let a = n.text.trim(), o = i.text;
226
241
  n === i && /\s/.exec(i.text) && (a = void 0);
227
- let s = (/* @__PURE__ */ __name((e) => {
242
+ let s = (/* @__PURE__ */ e((e) => {
228
243
  let t = {
229
244
  boolean: {},
230
245
  number: {},
@@ -237,18 +252,18 @@ You have to call mermaid.initialize.`);
237
252
  }),
238
253
  dir: r
239
254
  };
240
- }, "uniq"))(r.flat()), c = s.nodeList, u = s.dir, d = getConfig2().flowchart ?? {};
241
- if (u ??= d.inheritDir ? this.getDirection() ?? getConfig2().direction ?? void 0 : void 0, this.version === "gen-1") for (let e = 0; e < c.length; e++) c[e] = this.lookUpDomId(c[e]);
255
+ }, "uniq"))(r.flat()), c = s.nodeList, l = s.dir, d = u().flowchart ?? {};
256
+ if (l ??= d.inheritDir ? this.getDirection() ?? u().direction ?? void 0 : void 0, this.version === "gen-1") for (let e = 0; e < c.length; e++) c[e] = this.lookUpDomId(c[e]);
242
257
  a ??= "subGraph" + this.subCount, o ||= "", o = this.sanitizeText(o), this.subCount += 1;
243
258
  let f = {
244
259
  id: a,
245
260
  nodes: c,
246
261
  title: o.trim(),
247
262
  classes: [],
248
- dir: u,
249
- labelType: i.type
263
+ dir: l,
264
+ labelType: this.sanitizeNodeLabelType(i?.type)
250
265
  };
251
- return log.info("Adding", f.id, f.nodes, f.dir), f.nodes = this.makeUniq(f, this.subGraphs).nodes, this.subGraphs.push(f), this.subGraphLookup.set(a, f), a;
266
+ return t.info("Adding", f.id, f.nodes, f.dir), f.nodes = this.makeUniq(f, this.subGraphs).nodes, this.subGraphs.push(f), this.subGraphLookup.set(a, f), a;
252
267
  }
253
268
  getPosForId(e) {
254
269
  for (let [t, n] of this.subGraphs.entries()) if (n.id === e) return t;
@@ -409,6 +424,7 @@ You have to call mermaid.initialize.`);
409
424
  let n = {
410
425
  id: e.id,
411
426
  label: e.text,
427
+ labelType: e.labelType,
412
428
  labelStyle: "",
413
429
  parentId: o,
414
430
  padding: i.flowchart?.padding || 8,
@@ -452,7 +468,7 @@ You have to call mermaid.initialize.`);
452
468
  return t;
453
469
  }
454
470
  getData() {
455
- let e = getConfig2(), t = [], n = [], r = this.getSubGraphs(), i = /* @__PURE__ */ new Map(), a = /* @__PURE__ */ new Map();
471
+ let e = u(), t = [], n = [], r = this.getSubGraphs(), i = /* @__PURE__ */ new Map(), a = /* @__PURE__ */ new Map();
456
472
  for (let e = r.length - 1; e >= 0; e--) {
457
473
  let t = r[e];
458
474
  t.nodes.length > 0 && a.set(t.id, !0);
@@ -464,6 +480,7 @@ You have to call mermaid.initialize.`);
464
480
  id: a.id,
465
481
  label: a.title,
466
482
  labelStyle: "",
483
+ labelType: a.labelType,
467
484
  parentId: i.get(a.id),
468
485
  padding: 8,
469
486
  cssCompiledStyles: this.getCompiledStyles(a.classes),
@@ -482,7 +499,7 @@ You have to call mermaid.initialize.`);
482
499
  let { arrowTypeStart: i, arrowTypeEnd: a } = this.destructEdgeType(t.type), s = [...o.defaultStyle ?? []];
483
500
  t.style && s.push(...t.style);
484
501
  let c = {
485
- id: getEdgeId(t.start, t.end, {
502
+ id: v(t.start, t.end, {
486
503
  counter: r,
487
504
  prefix: "L"
488
505
  }, t.id),
@@ -491,6 +508,7 @@ You have to call mermaid.initialize.`);
491
508
  end: t.end,
492
509
  type: t.type ?? "normal",
493
510
  label: t.text,
511
+ labelType: t.labelType,
494
512
  labelpos: "c",
495
513
  thickness: t.stroke,
496
514
  minlen: t.length,
@@ -516,47 +534,29 @@ You have to call mermaid.initialize.`);
516
534
  };
517
535
  }
518
536
  defaultConfig() {
519
- return defaultConfig2.flowchart;
537
+ return s.flowchart;
520
538
  }
521
- }, flowRenderer_v3_unified_default = {
522
- getClasses: /* @__PURE__ */ __name(function(e, t) {
539
+ }, D = {
540
+ getClasses: /* @__PURE__ */ e(function(e, t) {
523
541
  return t.db.getClasses();
524
542
  }, "getClasses"),
525
- draw: /* @__PURE__ */ __name(async function(e, n, r, i) {
526
- log.info("REF0:"), log.info("Drawing state diagram (v2)", n);
527
- let { securityLevel: a, flowchart: o, layout: s } = getConfig2(), c;
528
- a === "sandbox" && (c = select_default("#i" + n));
529
- let u = a === "sandbox" ? c.nodes()[0].contentDocument : document;
530
- log.debug("Before getData: ");
531
- let d = i.db.getData();
532
- log.debug("Data: ", d);
533
- let f = getDiagramElement(n, a), p = i.db.getDirection();
534
- d.type = i.type, d.layoutAlgorithm = getRegisteredLayoutAlgorithm(s), d.layoutAlgorithm === "dagre" && s === "elk" && log.warn("flowchart-elk was moved to an external package in Mermaid v11. Please refer [release notes](https://github.com/mermaid-js/mermaid/releases/tag/v11.0.0) for more details. This diagram will be rendered using `dagre` layout as a fallback."), d.direction = p, d.nodeSpacing = o?.nodeSpacing || 50, d.rankSpacing = o?.rankSpacing || 50, d.markers = [
543
+ draw: /* @__PURE__ */ e(async function(e, n, r, i) {
544
+ t.info("REF0:"), t.info("Drawing state diagram (v2)", n);
545
+ let { securityLevel: a, flowchart: o, layout: s } = u();
546
+ i.db.setDiagramId(n), t.debug("Before getData: ");
547
+ let c = i.db.getData();
548
+ t.debug("Data: ", c);
549
+ let l = C(n, a), d = i.db.getDirection();
550
+ c.type = i.type, c.layoutAlgorithm = y(s), c.layoutAlgorithm === "dagre" && s === "elk" && t.warn("flowchart-elk was moved to an external package in Mermaid v11. Please refer [release notes](https://github.com/mermaid-js/mermaid/releases/tag/v11.0.0) for more details. This diagram will be rendered using `dagre` layout as a fallback."), c.direction = d, c.nodeSpacing = o?.nodeSpacing || 50, c.rankSpacing = o?.rankSpacing || 50, c.markers = [
535
551
  "point",
536
552
  "circle",
537
553
  "cross"
538
- ], d.diagramId = n, log.debug("REF1:", d), await render(d, f);
539
- let ee = d.config.flowchart?.diagramPadding ?? 8;
540
- utils_default.insertTitle(f, "flowchartTitleText", o?.titleTopMargin || 0, i.db.getDiagramTitle()), setupViewPortForSVG(f, ee, "flowchart", o?.useMaxWidth || !1);
541
- for (let e of d.nodes) {
542
- let t = select_default(`#${n} [id="${e.id}"]`);
543
- if (!t || !e.link) continue;
544
- let r = u.createElementNS("http://www.w3.org/2000/svg", "a");
545
- r.setAttributeNS("http://www.w3.org/2000/svg", "class", e.cssClasses), r.setAttributeNS("http://www.w3.org/2000/svg", "rel", "noopener"), a === "sandbox" ? r.setAttributeNS("http://www.w3.org/2000/svg", "target", "_top") : e.linkTarget && r.setAttributeNS("http://www.w3.org/2000/svg", "target", e.linkTarget);
546
- let i = t.insert(function() {
547
- return r;
548
- }, ":first-child"), o = t.select(".label-container");
549
- o && i.append(function() {
550
- return o.node();
551
- });
552
- let s = t.select(".label");
553
- s && i.append(function() {
554
- return s.node();
555
- });
556
- }
554
+ ], c.diagramId = n, t.debug("REF1:", c), await b(c, l);
555
+ let f = c.config.flowchart?.diagramPadding ?? 8;
556
+ te.insertTitle(l, "flowchartTitleText", o?.titleTopMargin || 0, i.db.getDiagramTitle()), w(l, f, "flowchart", o?.useMaxWidth || !1);
557
557
  }, "draw")
558
- }, parser = (function() {
559
- var t = /* @__PURE__ */ __name(function(e, t, n, r) {
558
+ }, O = (function() {
559
+ var t = /* @__PURE__ */ e(function(e, t, n, r) {
560
560
  for (n ||= {}, r = e.length; r--; n[e[r]] = t);
561
561
  return n;
562
562
  }, "o"), n = [1, 4], r = [1, 3], i = [1, 5], a = [
@@ -588,8 +588,9 @@ You have to call mermaid.initialize.`);
588
588
  121,
589
589
  122,
590
590
  123,
591
- 124
592
- ], o = [2, 2], s = [1, 13], c = [1, 14], l = [1, 15], u = [1, 16], d = [1, 23], f = [1, 25], p = [1, 26], ee = [1, 27], m = [1, 49], h = [1, 48], g = [1, 29], te = [1, 30], ne = [1, 31], re = [1, 32], ie = [1, 33], _ = [1, 44], v = [1, 46], y = [1, 42], b = [1, 47], x = [1, 43], S = [1, 50], C = [1, 45], w = [1, 51], T = [1, 52], E = [1, 34], ae = [1, 35], oe = [1, 36], se = [1, 37], D = [1, 57], O = [
591
+ 124,
592
+ 125
593
+ ], o = [2, 2], s = [1, 13], c = [1, 14], l = [1, 15], u = [1, 16], d = [1, 23], f = [1, 25], p = [1, 26], ee = [1, 27], m = [1, 50], h = [1, 49], g = [1, 29], _ = [1, 30], v = [1, 31], te = [1, 32], ne = [1, 33], y = [1, 45], b = [1, 47], x = [1, 43], S = [1, 48], C = [1, 44], w = [1, 51], T = [1, 46], E = [1, 52], D = [1, 53], O = [1, 34], re = [1, 35], ie = [1, 36], ae = [1, 37], oe = [1, 38], k = [1, 58], A = [
593
594
  1,
594
595
  8,
595
596
  9,
@@ -619,15 +620,16 @@ You have to call mermaid.initialize.`);
619
620
  121,
620
621
  122,
621
622
  123,
622
- 124
623
- ], k = [1, 61], A = [1, 60], j = [1, 62], ce = [
623
+ 124,
624
+ 125
625
+ ], j = [1, 62], M = [1, 61], N = [1, 63], se = [
624
626
  8,
625
627
  9,
626
628
  11,
627
629
  75,
628
630
  77,
629
631
  78
630
- ], le = [1, 78], ue = [1, 91], de = [1, 96], fe = [1, 95], pe = [1, 92], me = [1, 88], he = [1, 94], ge = [1, 90], _e = [1, 97], ve = [1, 93], ye = [1, 98], be = [1, 89], M = [
632
+ ], ce = [1, 79], le = [1, 92], ue = [1, 97], de = [1, 96], fe = [1, 93], pe = [1, 89], me = [1, 95], he = [1, 91], ge = [1, 98], _e = [1, 94], ve = [1, 99], ye = [1, 90], be = [
631
633
  8,
632
634
  9,
633
635
  10,
@@ -636,7 +638,7 @@ You have to call mermaid.initialize.`);
636
638
  75,
637
639
  77,
638
640
  78
639
- ], N = [
641
+ ], P = [
640
642
  8,
641
643
  9,
642
644
  10,
@@ -646,7 +648,7 @@ You have to call mermaid.initialize.`);
646
648
  75,
647
649
  77,
648
650
  78
649
- ], P = [
651
+ ], F = [
650
652
  8,
651
653
  9,
652
654
  10,
@@ -709,7 +711,7 @@ You have to call mermaid.initialize.`);
709
711
  114,
710
712
  115,
711
713
  116
712
- ], Ce = [1, 121], we = [1, 122], Te = [1, 124], Ee = [1, 123], De = [
714
+ ], Ce = [1, 122], we = [1, 123], Te = [1, 125], Ee = [1, 124], De = [
713
715
  44,
714
716
  60,
715
717
  62,
@@ -723,7 +725,7 @@ You have to call mermaid.initialize.`);
723
725
  114,
724
726
  115,
725
727
  116
726
- ], Oe = [1, 133], ke = [1, 147], Ae = [1, 148], je = [1, 149], Me = [1, 150], Ne = [1, 135], Pe = [1, 137], Fe = [1, 141], Ie = [1, 142], Le = [1, 143], Re = [1, 144], ze = [1, 145], Be = [1, 146], Ve = [1, 151], He = [1, 152], Ue = [1, 131], We = [1, 132], Ge = [1, 139], Ke = [1, 134], qe = [1, 138], Je = [1, 136], Ye = [
728
+ ], Oe = [1, 134], ke = [1, 148], Ae = [1, 149], je = [1, 150], Me = [1, 151], Ne = [1, 136], Pe = [1, 138], Fe = [1, 142], Ie = [1, 143], Le = [1, 144], Re = [1, 145], ze = [1, 146], Be = [1, 147], Ve = [1, 152], He = [1, 153], Ue = [1, 132], We = [1, 133], Ge = [1, 140], Ke = [1, 135], qe = [1, 139], Je = [1, 137], Ye = [
727
729
  8,
728
730
  9,
729
731
  10,
@@ -752,12 +754,13 @@ You have to call mermaid.initialize.`);
752
754
  121,
753
755
  122,
754
756
  123,
755
- 124
756
- ], Xe = [1, 154], Ze = [1, 156], F = [
757
+ 124,
758
+ 125
759
+ ], Xe = [1, 155], Ze = [1, 157], I = [
757
760
  8,
758
761
  9,
759
762
  11
760
- ], I = [
763
+ ], L = [
761
764
  8,
762
765
  9,
763
766
  10,
@@ -773,11 +776,11 @@ You have to call mermaid.initialize.`);
773
776
  114,
774
777
  115,
775
778
  116
776
- ], L = [1, 176], R = [1, 172], z = [1, 173], B = [1, 177], V = [1, 174], H = [1, 175], Qe = [
779
+ ], R = [1, 177], z = [1, 173], B = [1, 174], V = [1, 178], H = [1, 175], U = [1, 176], Qe = [
777
780
  77,
778
781
  116,
779
782
  119
780
- ], U = [
783
+ ], W = [
781
784
  8,
782
785
  9,
783
786
  10,
@@ -803,7 +806,7 @@ You have to call mermaid.initialize.`);
803
806
  114,
804
807
  115,
805
808
  116
806
- ], $e = [10, 106], W = [
809
+ ], $e = [10, 106], et = [
807
810
  31,
808
811
  49,
809
812
  51,
@@ -819,7 +822,7 @@ You have to call mermaid.initialize.`);
819
822
  116,
820
823
  117,
821
824
  118
822
- ], G = [1, 247], K = [1, 245], q = [1, 249], J = [1, 243], Y = [1, 244], X = [1, 246], Z = [1, 248], Q = [1, 250], et = [1, 268], tt = [
825
+ ], G = [1, 248], K = [1, 246], q = [1, 250], J = [1, 244], Y = [1, 245], X = [1, 247], Z = [1, 249], Q = [1, 251], tt = [1, 269], nt = [
823
826
  8,
824
827
  9,
825
828
  11,
@@ -837,8 +840,8 @@ You have to call mermaid.initialize.`);
837
840
  110,
838
841
  111,
839
842
  112
840
- ], nt = {
841
- trace: /* @__PURE__ */ __name(function() {}, "trace"),
843
+ ], rt = {
844
+ trace: /* @__PURE__ */ e(function() {}, "trace"),
842
845
  yy: {},
843
846
  symbols_: {
844
847
  error: 2,
@@ -964,6 +967,7 @@ You have to call mermaid.initialize.`);
964
967
  direction_bt: 122,
965
968
  direction_rl: 123,
966
969
  direction_lr: 124,
970
+ direction_td: 125,
967
971
  $accept: 0,
968
972
  $end: 1
969
973
  },
@@ -1050,7 +1054,8 @@ You have to call mermaid.initialize.`);
1050
1054
  121: "direction_tb",
1051
1055
  122: "direction_bt",
1052
1056
  123: "direction_rl",
1053
- 124: "direction_lr"
1057
+ 124: "direction_lr",
1058
+ 125: "direction_td"
1054
1059
  },
1055
1060
  productions_: [
1056
1061
  0,
@@ -1241,9 +1246,10 @@ You have to call mermaid.initialize.`);
1241
1246
  [33, 1],
1242
1247
  [33, 1],
1243
1248
  [33, 1],
1249
+ [33, 1],
1244
1250
  [33, 1]
1245
1251
  ],
1246
- performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
1252
+ performAction: /* @__PURE__ */ e(function(e, t, n, r, i, a, o) {
1247
1253
  var s = a.length - 1;
1248
1254
  switch (i) {
1249
1255
  case 2:
@@ -1622,6 +1628,12 @@ You have to call mermaid.initialize.`);
1622
1628
  value: "LR"
1623
1629
  };
1624
1630
  break;
1631
+ case 189:
1632
+ this.$ = {
1633
+ stmt: "dir",
1634
+ value: "TD"
1635
+ };
1636
+ break;
1625
1637
  }
1626
1638
  }, "anonymous"),
1627
1639
  table: [
@@ -1670,237 +1682,239 @@ You have to call mermaid.initialize.`);
1670
1682
  36: p,
1671
1683
  38: ee,
1672
1684
  42: 28,
1673
- 43: 38,
1685
+ 43: 39,
1674
1686
  44: m,
1675
- 45: 39,
1676
- 47: 40,
1687
+ 45: 40,
1688
+ 47: 41,
1677
1689
  60: h,
1678
1690
  84: g,
1679
- 85: te,
1680
- 86: ne,
1681
- 87: re,
1682
- 88: ie,
1683
- 89: _,
1684
- 102: v,
1685
- 105: y,
1686
- 106: b,
1687
- 109: x,
1688
- 111: S,
1689
- 113: 41,
1690
- 114: C,
1691
- 115: w,
1692
- 116: T,
1693
- 121: E,
1694
- 122: ae,
1695
- 123: oe,
1696
- 124: se
1691
+ 85: _,
1692
+ 86: v,
1693
+ 87: te,
1694
+ 88: ne,
1695
+ 89: y,
1696
+ 102: b,
1697
+ 105: x,
1698
+ 106: S,
1699
+ 109: C,
1700
+ 111: w,
1701
+ 113: 42,
1702
+ 114: T,
1703
+ 115: E,
1704
+ 116: D,
1705
+ 121: O,
1706
+ 122: re,
1707
+ 123: ie,
1708
+ 124: ae,
1709
+ 125: oe
1697
1710
  },
1698
1711
  t(a, [2, 9]),
1699
1712
  t(a, [2, 10]),
1700
1713
  t(a, [2, 11]),
1701
1714
  {
1702
- 8: [1, 54],
1703
- 9: [1, 55],
1704
- 10: D,
1705
- 15: 53,
1706
- 18: 56
1715
+ 8: [1, 55],
1716
+ 9: [1, 56],
1717
+ 10: k,
1718
+ 15: 54,
1719
+ 18: 57
1707
1720
  },
1708
- t(O, [2, 3]),
1709
- t(O, [2, 4]),
1710
- t(O, [2, 5]),
1711
- t(O, [2, 6]),
1712
- t(O, [2, 7]),
1713
- t(O, [2, 8]),
1721
+ t(A, [2, 3]),
1722
+ t(A, [2, 4]),
1723
+ t(A, [2, 5]),
1724
+ t(A, [2, 6]),
1725
+ t(A, [2, 7]),
1726
+ t(A, [2, 8]),
1714
1727
  {
1715
- 8: k,
1716
- 9: A,
1717
- 11: j,
1718
- 21: 58,
1719
- 41: 59,
1720
- 72: 63,
1721
- 75: [1, 64],
1722
- 77: [1, 66],
1723
- 78: [1, 65]
1728
+ 8: j,
1729
+ 9: M,
1730
+ 11: N,
1731
+ 21: 59,
1732
+ 41: 60,
1733
+ 72: 64,
1734
+ 75: [1, 65],
1735
+ 77: [1, 67],
1736
+ 78: [1, 66]
1724
1737
  },
1725
1738
  {
1726
- 8: k,
1727
- 9: A,
1728
- 11: j,
1729
- 21: 67
1730
- },
1731
- {
1732
- 8: k,
1733
- 9: A,
1734
- 11: j,
1739
+ 8: j,
1740
+ 9: M,
1741
+ 11: N,
1735
1742
  21: 68
1736
1743
  },
1737
1744
  {
1738
- 8: k,
1739
- 9: A,
1740
- 11: j,
1745
+ 8: j,
1746
+ 9: M,
1747
+ 11: N,
1741
1748
  21: 69
1742
1749
  },
1743
1750
  {
1744
- 8: k,
1745
- 9: A,
1746
- 11: j,
1751
+ 8: j,
1752
+ 9: M,
1753
+ 11: N,
1747
1754
  21: 70
1748
1755
  },
1749
1756
  {
1750
- 8: k,
1751
- 9: A,
1752
- 11: j,
1757
+ 8: j,
1758
+ 9: M,
1759
+ 11: N,
1753
1760
  21: 71
1754
1761
  },
1755
1762
  {
1756
- 8: k,
1757
- 9: A,
1758
- 10: [1, 72],
1759
- 11: j,
1760
- 21: 73
1763
+ 8: j,
1764
+ 9: M,
1765
+ 11: N,
1766
+ 21: 72
1767
+ },
1768
+ {
1769
+ 8: j,
1770
+ 9: M,
1771
+ 10: [1, 73],
1772
+ 11: N,
1773
+ 21: 74
1761
1774
  },
1762
- t(O, [2, 36]),
1763
- { 35: [1, 74] },
1764
- { 37: [1, 75] },
1765
- t(O, [2, 39]),
1766
- t(ce, [2, 50], {
1767
- 18: 76,
1768
- 39: 77,
1769
- 10: D,
1770
- 40: le
1775
+ t(A, [2, 36]),
1776
+ { 35: [1, 75] },
1777
+ { 37: [1, 76] },
1778
+ t(A, [2, 39]),
1779
+ t(se, [2, 50], {
1780
+ 18: 77,
1781
+ 39: 78,
1782
+ 10: k,
1783
+ 40: ce
1771
1784
  }),
1772
- { 10: [1, 79] },
1773
1785
  { 10: [1, 80] },
1774
1786
  { 10: [1, 81] },
1775
1787
  { 10: [1, 82] },
1788
+ { 10: [1, 83] },
1776
1789
  {
1777
- 14: ue,
1778
- 44: de,
1779
- 60: fe,
1780
- 80: [1, 86],
1781
- 89: pe,
1782
- 95: [1, 83],
1783
- 97: [1, 84],
1784
- 101: 85,
1785
- 105: me,
1786
- 106: he,
1787
- 109: ge,
1788
- 111: _e,
1789
- 114: ve,
1790
- 115: ye,
1791
- 116: be,
1792
- 120: 87
1790
+ 14: le,
1791
+ 44: ue,
1792
+ 60: de,
1793
+ 80: [1, 87],
1794
+ 89: fe,
1795
+ 95: [1, 84],
1796
+ 97: [1, 85],
1797
+ 101: 86,
1798
+ 105: pe,
1799
+ 106: me,
1800
+ 109: he,
1801
+ 111: ge,
1802
+ 114: _e,
1803
+ 115: ve,
1804
+ 116: ye,
1805
+ 120: 88
1793
1806
  },
1794
- t(O, [2, 185]),
1795
- t(O, [2, 186]),
1796
- t(O, [2, 187]),
1797
- t(O, [2, 188]),
1798
- t(M, [2, 51]),
1799
- t(M, [2, 54], { 46: [1, 99] }),
1800
- t(N, [2, 72], {
1801
- 113: 112,
1802
- 29: [1, 100],
1807
+ t(A, [2, 185]),
1808
+ t(A, [2, 186]),
1809
+ t(A, [2, 187]),
1810
+ t(A, [2, 188]),
1811
+ t(A, [2, 189]),
1812
+ t(be, [2, 51]),
1813
+ t(be, [2, 54], { 46: [1, 100] }),
1814
+ t(P, [2, 72], {
1815
+ 113: 113,
1816
+ 29: [1, 101],
1803
1817
  44: m,
1804
- 48: [1, 101],
1805
- 50: [1, 102],
1806
- 52: [1, 103],
1807
- 54: [1, 104],
1808
- 56: [1, 105],
1809
- 58: [1, 106],
1818
+ 48: [1, 102],
1819
+ 50: [1, 103],
1820
+ 52: [1, 104],
1821
+ 54: [1, 105],
1822
+ 56: [1, 106],
1823
+ 58: [1, 107],
1810
1824
  60: h,
1811
- 63: [1, 107],
1812
- 65: [1, 108],
1813
- 67: [1, 109],
1814
- 68: [1, 110],
1815
- 70: [1, 111],
1816
- 89: _,
1817
- 102: v,
1818
- 105: y,
1819
- 106: b,
1820
- 109: x,
1821
- 111: S,
1822
- 114: C,
1823
- 115: w,
1824
- 116: T
1825
+ 63: [1, 108],
1826
+ 65: [1, 109],
1827
+ 67: [1, 110],
1828
+ 68: [1, 111],
1829
+ 70: [1, 112],
1830
+ 89: y,
1831
+ 102: b,
1832
+ 105: x,
1833
+ 106: S,
1834
+ 109: C,
1835
+ 111: w,
1836
+ 114: T,
1837
+ 115: E,
1838
+ 116: D
1825
1839
  }),
1826
- t(P, [2, 181]),
1827
- t(P, [2, 142]),
1828
- t(P, [2, 143]),
1829
- t(P, [2, 144]),
1830
- t(P, [2, 145]),
1831
- t(P, [2, 146]),
1832
- t(P, [2, 147]),
1833
- t(P, [2, 148]),
1834
- t(P, [2, 149]),
1835
- t(P, [2, 150]),
1836
- t(P, [2, 151]),
1837
- t(P, [2, 152]),
1840
+ t(F, [2, 181]),
1841
+ t(F, [2, 142]),
1842
+ t(F, [2, 143]),
1843
+ t(F, [2, 144]),
1844
+ t(F, [2, 145]),
1845
+ t(F, [2, 146]),
1846
+ t(F, [2, 147]),
1847
+ t(F, [2, 148]),
1848
+ t(F, [2, 149]),
1849
+ t(F, [2, 150]),
1850
+ t(F, [2, 151]),
1851
+ t(F, [2, 152]),
1838
1852
  t(a, [2, 12]),
1839
1853
  t(a, [2, 18]),
1840
1854
  t(a, [2, 19]),
1841
- { 9: [1, 113] },
1855
+ { 9: [1, 114] },
1842
1856
  t(xe, [2, 26], {
1843
- 18: 114,
1844
- 10: D
1857
+ 18: 115,
1858
+ 10: k
1845
1859
  }),
1846
- t(O, [2, 27]),
1860
+ t(A, [2, 27]),
1847
1861
  {
1848
- 42: 115,
1849
- 43: 38,
1862
+ 42: 116,
1863
+ 43: 39,
1850
1864
  44: m,
1851
- 45: 39,
1852
- 47: 40,
1865
+ 45: 40,
1866
+ 47: 41,
1853
1867
  60: h,
1854
- 89: _,
1855
- 102: v,
1856
- 105: y,
1857
- 106: b,
1858
- 109: x,
1859
- 111: S,
1860
- 113: 41,
1861
- 114: C,
1862
- 115: w,
1863
- 116: T
1868
+ 89: y,
1869
+ 102: b,
1870
+ 105: x,
1871
+ 106: S,
1872
+ 109: C,
1873
+ 111: w,
1874
+ 113: 42,
1875
+ 114: T,
1876
+ 115: E,
1877
+ 116: D
1864
1878
  },
1865
- t(O, [2, 40]),
1866
- t(O, [2, 41]),
1867
- t(O, [2, 42]),
1879
+ t(A, [2, 40]),
1880
+ t(A, [2, 41]),
1881
+ t(A, [2, 42]),
1868
1882
  t(Se, [2, 76], {
1869
- 73: 116,
1870
- 62: [1, 118],
1871
- 74: [1, 117]
1883
+ 73: 117,
1884
+ 62: [1, 119],
1885
+ 74: [1, 118]
1872
1886
  }),
1873
1887
  {
1874
- 76: 119,
1875
- 79: 120,
1888
+ 76: 120,
1889
+ 79: 121,
1876
1890
  80: Ce,
1877
1891
  81: we,
1878
1892
  116: Te,
1879
1893
  119: Ee
1880
1894
  },
1881
1895
  {
1882
- 75: [1, 125],
1883
- 77: [1, 126]
1896
+ 75: [1, 126],
1897
+ 77: [1, 127]
1884
1898
  },
1885
1899
  t(De, [2, 83]),
1886
- t(O, [2, 28]),
1887
- t(O, [2, 29]),
1888
- t(O, [2, 30]),
1889
- t(O, [2, 31]),
1890
- t(O, [2, 32]),
1900
+ t(A, [2, 28]),
1901
+ t(A, [2, 29]),
1902
+ t(A, [2, 30]),
1903
+ t(A, [2, 31]),
1904
+ t(A, [2, 32]),
1891
1905
  {
1892
1906
  10: Oe,
1893
1907
  12: ke,
1894
1908
  14: Ae,
1895
1909
  27: je,
1896
- 28: 127,
1910
+ 28: 128,
1897
1911
  32: Me,
1898
1912
  44: Ne,
1899
1913
  60: Pe,
1900
1914
  75: Fe,
1901
- 80: [1, 129],
1902
- 81: [1, 130],
1903
- 83: 140,
1915
+ 80: [1, 130],
1916
+ 81: [1, 131],
1917
+ 83: 141,
1904
1918
  84: Ie,
1905
1919
  85: Le,
1906
1920
  86: Re,
@@ -1908,7 +1922,7 @@ You have to call mermaid.initialize.`);
1908
1922
  88: Be,
1909
1923
  89: Ve,
1910
1924
  90: He,
1911
- 91: 128,
1925
+ 91: 129,
1912
1926
  105: Ue,
1913
1927
  109: We,
1914
1928
  111: Ge,
@@ -1916,251 +1930,251 @@ You have to call mermaid.initialize.`);
1916
1930
  115: qe,
1917
1931
  116: Je
1918
1932
  },
1919
- t(Ye, o, { 5: 153 }),
1920
- t(O, [2, 37]),
1921
- t(O, [2, 38]),
1922
- t(ce, [2, 48], { 44: Xe }),
1923
- t(ce, [2, 49], {
1924
- 18: 155,
1925
- 10: D,
1933
+ t(Ye, o, { 5: 154 }),
1934
+ t(A, [2, 37]),
1935
+ t(A, [2, 38]),
1936
+ t(se, [2, 48], { 44: Xe }),
1937
+ t(se, [2, 49], {
1938
+ 18: 156,
1939
+ 10: k,
1926
1940
  40: Ze
1927
1941
  }),
1928
- t(M, [2, 44]),
1942
+ t(be, [2, 44]),
1929
1943
  {
1930
1944
  44: m,
1931
- 47: 157,
1945
+ 47: 158,
1932
1946
  60: h,
1933
- 89: _,
1934
- 102: v,
1935
- 105: y,
1936
- 106: b,
1937
- 109: x,
1938
- 111: S,
1939
- 113: 41,
1940
- 114: C,
1941
- 115: w,
1942
- 116: T
1947
+ 89: y,
1948
+ 102: b,
1949
+ 105: x,
1950
+ 106: S,
1951
+ 109: C,
1952
+ 111: w,
1953
+ 113: 42,
1954
+ 114: T,
1955
+ 115: E,
1956
+ 116: D
1943
1957
  },
1944
1958
  {
1945
- 102: [1, 158],
1946
- 103: 159,
1947
- 105: [1, 160]
1959
+ 102: [1, 159],
1960
+ 103: 160,
1961
+ 105: [1, 161]
1948
1962
  },
1949
1963
  {
1950
1964
  44: m,
1951
- 47: 161,
1965
+ 47: 162,
1952
1966
  60: h,
1953
- 89: _,
1954
- 102: v,
1955
- 105: y,
1956
- 106: b,
1957
- 109: x,
1958
- 111: S,
1959
- 113: 41,
1960
- 114: C,
1961
- 115: w,
1962
- 116: T
1967
+ 89: y,
1968
+ 102: b,
1969
+ 105: x,
1970
+ 106: S,
1971
+ 109: C,
1972
+ 111: w,
1973
+ 113: 42,
1974
+ 114: T,
1975
+ 115: E,
1976
+ 116: D
1963
1977
  },
1964
1978
  {
1965
1979
  44: m,
1966
- 47: 162,
1980
+ 47: 163,
1967
1981
  60: h,
1968
- 89: _,
1969
- 102: v,
1970
- 105: y,
1971
- 106: b,
1972
- 109: x,
1973
- 111: S,
1974
- 113: 41,
1975
- 114: C,
1976
- 115: w,
1977
- 116: T
1982
+ 89: y,
1983
+ 102: b,
1984
+ 105: x,
1985
+ 106: S,
1986
+ 109: C,
1987
+ 111: w,
1988
+ 113: 42,
1989
+ 114: T,
1990
+ 115: E,
1991
+ 116: D
1978
1992
  },
1979
- t(F, [2, 107], {
1980
- 10: [1, 163],
1981
- 96: [1, 164]
1993
+ t(I, [2, 107], {
1994
+ 10: [1, 164],
1995
+ 96: [1, 165]
1982
1996
  }),
1983
- { 80: [1, 165] },
1984
- t(F, [2, 115], {
1985
- 120: 167,
1986
- 10: [1, 166],
1987
- 14: ue,
1988
- 44: de,
1989
- 60: fe,
1990
- 89: pe,
1991
- 105: me,
1992
- 106: he,
1993
- 109: ge,
1994
- 111: _e,
1995
- 114: ve,
1996
- 115: ye,
1997
- 116: be
1997
+ { 80: [1, 166] },
1998
+ t(I, [2, 115], {
1999
+ 120: 168,
2000
+ 10: [1, 167],
2001
+ 14: le,
2002
+ 44: ue,
2003
+ 60: de,
2004
+ 89: fe,
2005
+ 105: pe,
2006
+ 106: me,
2007
+ 109: he,
2008
+ 111: ge,
2009
+ 114: _e,
2010
+ 115: ve,
2011
+ 116: ye
1998
2012
  }),
1999
- t(F, [2, 117], { 10: [1, 168] }),
2000
- t(I, [2, 183]),
2001
- t(I, [2, 170]),
2002
- t(I, [2, 171]),
2003
- t(I, [2, 172]),
2004
- t(I, [2, 173]),
2005
- t(I, [2, 174]),
2006
- t(I, [2, 175]),
2007
- t(I, [2, 176]),
2008
- t(I, [2, 177]),
2009
- t(I, [2, 178]),
2010
- t(I, [2, 179]),
2011
- t(I, [2, 180]),
2013
+ t(I, [2, 117], { 10: [1, 169] }),
2014
+ t(L, [2, 183]),
2015
+ t(L, [2, 170]),
2016
+ t(L, [2, 171]),
2017
+ t(L, [2, 172]),
2018
+ t(L, [2, 173]),
2019
+ t(L, [2, 174]),
2020
+ t(L, [2, 175]),
2021
+ t(L, [2, 176]),
2022
+ t(L, [2, 177]),
2023
+ t(L, [2, 178]),
2024
+ t(L, [2, 179]),
2025
+ t(L, [2, 180]),
2012
2026
  {
2013
2027
  44: m,
2014
- 47: 169,
2028
+ 47: 170,
2015
2029
  60: h,
2016
- 89: _,
2017
- 102: v,
2018
- 105: y,
2019
- 106: b,
2020
- 109: x,
2021
- 111: S,
2022
- 113: 41,
2023
- 114: C,
2024
- 115: w,
2025
- 116: T
2026
- },
2027
- {
2028
- 30: 170,
2029
- 67: L,
2030
- 80: R,
2031
- 81: z,
2032
- 82: 171,
2033
- 116: B,
2034
- 117: V,
2035
- 118: H
2030
+ 89: y,
2031
+ 102: b,
2032
+ 105: x,
2033
+ 106: S,
2034
+ 109: C,
2035
+ 111: w,
2036
+ 113: 42,
2037
+ 114: T,
2038
+ 115: E,
2039
+ 116: D
2036
2040
  },
2037
2041
  {
2038
- 30: 178,
2039
- 67: L,
2040
- 80: R,
2041
- 81: z,
2042
- 82: 171,
2043
- 116: B,
2044
- 117: V,
2045
- 118: H
2042
+ 30: 171,
2043
+ 67: R,
2044
+ 80: z,
2045
+ 81: B,
2046
+ 82: 172,
2047
+ 116: V,
2048
+ 117: H,
2049
+ 118: U
2046
2050
  },
2047
2051
  {
2048
- 30: 180,
2049
- 50: [1, 179],
2050
- 67: L,
2051
- 80: R,
2052
- 81: z,
2053
- 82: 171,
2054
- 116: B,
2055
- 117: V,
2056
- 118: H
2052
+ 30: 179,
2053
+ 67: R,
2054
+ 80: z,
2055
+ 81: B,
2056
+ 82: 172,
2057
+ 116: V,
2058
+ 117: H,
2059
+ 118: U
2057
2060
  },
2058
2061
  {
2059
2062
  30: 181,
2060
- 67: L,
2061
- 80: R,
2062
- 81: z,
2063
- 82: 171,
2064
- 116: B,
2065
- 117: V,
2066
- 118: H
2063
+ 50: [1, 180],
2064
+ 67: R,
2065
+ 80: z,
2066
+ 81: B,
2067
+ 82: 172,
2068
+ 116: V,
2069
+ 117: H,
2070
+ 118: U
2067
2071
  },
2068
2072
  {
2069
2073
  30: 182,
2070
- 67: L,
2071
- 80: R,
2072
- 81: z,
2073
- 82: 171,
2074
- 116: B,
2075
- 117: V,
2076
- 118: H
2074
+ 67: R,
2075
+ 80: z,
2076
+ 81: B,
2077
+ 82: 172,
2078
+ 116: V,
2079
+ 117: H,
2080
+ 118: U
2077
2081
  },
2078
2082
  {
2079
2083
  30: 183,
2080
- 67: L,
2081
- 80: R,
2082
- 81: z,
2083
- 82: 171,
2084
- 116: B,
2085
- 117: V,
2086
- 118: H
2084
+ 67: R,
2085
+ 80: z,
2086
+ 81: B,
2087
+ 82: 172,
2088
+ 116: V,
2089
+ 117: H,
2090
+ 118: U
2087
2091
  },
2088
- { 109: [1, 184] },
2089
2092
  {
2090
- 30: 185,
2091
- 67: L,
2092
- 80: R,
2093
- 81: z,
2094
- 82: 171,
2095
- 116: B,
2096
- 117: V,
2097
- 118: H
2093
+ 30: 184,
2094
+ 67: R,
2095
+ 80: z,
2096
+ 81: B,
2097
+ 82: 172,
2098
+ 116: V,
2099
+ 117: H,
2100
+ 118: U
2098
2101
  },
2102
+ { 109: [1, 185] },
2099
2103
  {
2100
2104
  30: 186,
2101
- 65: [1, 187],
2102
- 67: L,
2103
- 80: R,
2104
- 81: z,
2105
- 82: 171,
2106
- 116: B,
2107
- 117: V,
2108
- 118: H
2105
+ 67: R,
2106
+ 80: z,
2107
+ 81: B,
2108
+ 82: 172,
2109
+ 116: V,
2110
+ 117: H,
2111
+ 118: U
2109
2112
  },
2110
2113
  {
2111
- 30: 188,
2112
- 67: L,
2113
- 80: R,
2114
- 81: z,
2115
- 82: 171,
2116
- 116: B,
2117
- 117: V,
2118
- 118: H
2114
+ 30: 187,
2115
+ 65: [1, 188],
2116
+ 67: R,
2117
+ 80: z,
2118
+ 81: B,
2119
+ 82: 172,
2120
+ 116: V,
2121
+ 117: H,
2122
+ 118: U
2119
2123
  },
2120
2124
  {
2121
2125
  30: 189,
2122
- 67: L,
2123
- 80: R,
2124
- 81: z,
2125
- 82: 171,
2126
- 116: B,
2127
- 117: V,
2128
- 118: H
2126
+ 67: R,
2127
+ 80: z,
2128
+ 81: B,
2129
+ 82: 172,
2130
+ 116: V,
2131
+ 117: H,
2132
+ 118: U
2129
2133
  },
2130
2134
  {
2131
2135
  30: 190,
2132
- 67: L,
2133
- 80: R,
2134
- 81: z,
2135
- 82: 171,
2136
- 116: B,
2137
- 117: V,
2138
- 118: H
2136
+ 67: R,
2137
+ 80: z,
2138
+ 81: B,
2139
+ 82: 172,
2140
+ 116: V,
2141
+ 117: H,
2142
+ 118: U
2139
2143
  },
2140
- t(P, [2, 182]),
2144
+ {
2145
+ 30: 191,
2146
+ 67: R,
2147
+ 80: z,
2148
+ 81: B,
2149
+ 82: 172,
2150
+ 116: V,
2151
+ 117: H,
2152
+ 118: U
2153
+ },
2154
+ t(F, [2, 182]),
2141
2155
  t(a, [2, 20]),
2142
2156
  t(xe, [2, 25]),
2143
- t(ce, [2, 46], {
2144
- 39: 191,
2145
- 18: 192,
2146
- 10: D,
2147
- 40: le
2157
+ t(se, [2, 46], {
2158
+ 39: 192,
2159
+ 18: 193,
2160
+ 10: k,
2161
+ 40: ce
2148
2162
  }),
2149
- t(Se, [2, 73], { 10: [1, 193] }),
2150
- { 10: [1, 194] },
2163
+ t(Se, [2, 73], { 10: [1, 194] }),
2164
+ { 10: [1, 195] },
2151
2165
  {
2152
- 30: 195,
2153
- 67: L,
2154
- 80: R,
2155
- 81: z,
2156
- 82: 171,
2157
- 116: B,
2158
- 117: V,
2159
- 118: H
2166
+ 30: 196,
2167
+ 67: R,
2168
+ 80: z,
2169
+ 81: B,
2170
+ 82: 172,
2171
+ 116: V,
2172
+ 117: H,
2173
+ 118: U
2160
2174
  },
2161
2175
  {
2162
- 77: [1, 196],
2163
- 79: 197,
2176
+ 77: [1, 197],
2177
+ 79: 198,
2164
2178
  116: Te,
2165
2179
  119: Ee
2166
2180
  },
@@ -2170,8 +2184,8 @@ You have to call mermaid.initialize.`);
2170
2184
  t(Qe, [2, 168]),
2171
2185
  t(Qe, [2, 169]),
2172
2186
  {
2173
- 76: 198,
2174
- 79: 120,
2187
+ 76: 199,
2188
+ 79: 121,
2175
2189
  80: Ce,
2176
2190
  81: we,
2177
2191
  116: Te,
@@ -2179,20 +2193,20 @@ You have to call mermaid.initialize.`);
2179
2193
  },
2180
2194
  t(De, [2, 84]),
2181
2195
  {
2182
- 8: k,
2183
- 9: A,
2196
+ 8: j,
2197
+ 9: M,
2184
2198
  10: Oe,
2185
- 11: j,
2199
+ 11: N,
2186
2200
  12: ke,
2187
2201
  14: Ae,
2188
- 21: 200,
2202
+ 21: 201,
2189
2203
  27: je,
2190
- 29: [1, 199],
2204
+ 29: [1, 200],
2191
2205
  32: Me,
2192
2206
  44: Ne,
2193
2207
  60: Pe,
2194
2208
  75: Fe,
2195
- 83: 140,
2209
+ 83: 141,
2196
2210
  84: Ie,
2197
2211
  85: Le,
2198
2212
  86: Re,
@@ -2200,7 +2214,7 @@ You have to call mermaid.initialize.`);
2200
2214
  88: Be,
2201
2215
  89: Ve,
2202
2216
  90: He,
2203
- 91: 201,
2217
+ 91: 202,
2204
2218
  105: Ue,
2205
2219
  109: We,
2206
2220
  111: Ge,
@@ -2208,31 +2222,31 @@ You have to call mermaid.initialize.`);
2208
2222
  115: qe,
2209
2223
  116: Je
2210
2224
  },
2211
- t(U, [2, 101]),
2212
- t(U, [2, 103]),
2213
- t(U, [2, 104]),
2214
- t(U, [2, 157]),
2215
- t(U, [2, 158]),
2216
- t(U, [2, 159]),
2217
- t(U, [2, 160]),
2218
- t(U, [2, 161]),
2219
- t(U, [2, 162]),
2220
- t(U, [2, 163]),
2221
- t(U, [2, 164]),
2222
- t(U, [2, 165]),
2223
- t(U, [2, 166]),
2224
- t(U, [2, 167]),
2225
- t(U, [2, 90]),
2226
- t(U, [2, 91]),
2227
- t(U, [2, 92]),
2228
- t(U, [2, 93]),
2229
- t(U, [2, 94]),
2230
- t(U, [2, 95]),
2231
- t(U, [2, 96]),
2232
- t(U, [2, 97]),
2233
- t(U, [2, 98]),
2234
- t(U, [2, 99]),
2235
- t(U, [2, 100]),
2225
+ t(W, [2, 101]),
2226
+ t(W, [2, 103]),
2227
+ t(W, [2, 104]),
2228
+ t(W, [2, 157]),
2229
+ t(W, [2, 158]),
2230
+ t(W, [2, 159]),
2231
+ t(W, [2, 160]),
2232
+ t(W, [2, 161]),
2233
+ t(W, [2, 162]),
2234
+ t(W, [2, 163]),
2235
+ t(W, [2, 164]),
2236
+ t(W, [2, 165]),
2237
+ t(W, [2, 166]),
2238
+ t(W, [2, 167]),
2239
+ t(W, [2, 90]),
2240
+ t(W, [2, 91]),
2241
+ t(W, [2, 92]),
2242
+ t(W, [2, 93]),
2243
+ t(W, [2, 94]),
2244
+ t(W, [2, 95]),
2245
+ t(W, [2, 96]),
2246
+ t(W, [2, 97]),
2247
+ t(W, [2, 98]),
2248
+ t(W, [2, 99]),
2249
+ t(W, [2, 100]),
2236
2250
  {
2237
2251
  6: 11,
2238
2252
  7: 12,
@@ -2247,301 +2261,302 @@ You have to call mermaid.initialize.`);
2247
2261
  25: 21,
2248
2262
  26: 22,
2249
2263
  27: d,
2250
- 32: [1, 202],
2264
+ 32: [1, 203],
2251
2265
  33: 24,
2252
2266
  34: f,
2253
2267
  36: p,
2254
2268
  38: ee,
2255
2269
  42: 28,
2256
- 43: 38,
2270
+ 43: 39,
2257
2271
  44: m,
2258
- 45: 39,
2259
- 47: 40,
2272
+ 45: 40,
2273
+ 47: 41,
2260
2274
  60: h,
2261
2275
  84: g,
2262
- 85: te,
2263
- 86: ne,
2264
- 87: re,
2265
- 88: ie,
2266
- 89: _,
2267
- 102: v,
2268
- 105: y,
2269
- 106: b,
2270
- 109: x,
2271
- 111: S,
2272
- 113: 41,
2273
- 114: C,
2274
- 115: w,
2275
- 116: T,
2276
- 121: E,
2277
- 122: ae,
2278
- 123: oe,
2279
- 124: se
2276
+ 85: _,
2277
+ 86: v,
2278
+ 87: te,
2279
+ 88: ne,
2280
+ 89: y,
2281
+ 102: b,
2282
+ 105: x,
2283
+ 106: S,
2284
+ 109: C,
2285
+ 111: w,
2286
+ 113: 42,
2287
+ 114: T,
2288
+ 115: E,
2289
+ 116: D,
2290
+ 121: O,
2291
+ 122: re,
2292
+ 123: ie,
2293
+ 124: ae,
2294
+ 125: oe
2280
2295
  },
2281
2296
  {
2282
- 10: D,
2283
- 18: 203
2297
+ 10: k,
2298
+ 18: 204
2284
2299
  },
2285
- { 44: [1, 204] },
2286
- t(M, [2, 43]),
2300
+ { 44: [1, 205] },
2301
+ t(be, [2, 43]),
2287
2302
  {
2288
- 10: [1, 205],
2303
+ 10: [1, 206],
2289
2304
  44: m,
2290
2305
  60: h,
2291
- 89: _,
2292
- 102: v,
2293
- 105: y,
2294
- 106: b,
2295
- 109: x,
2296
- 111: S,
2297
- 113: 112,
2298
- 114: C,
2299
- 115: w,
2300
- 116: T
2306
+ 89: y,
2307
+ 102: b,
2308
+ 105: x,
2309
+ 106: S,
2310
+ 109: C,
2311
+ 111: w,
2312
+ 113: 113,
2313
+ 114: T,
2314
+ 115: E,
2315
+ 116: D
2301
2316
  },
2302
- { 10: [1, 206] },
2317
+ { 10: [1, 207] },
2303
2318
  {
2304
- 10: [1, 207],
2305
- 106: [1, 208]
2319
+ 10: [1, 208],
2320
+ 106: [1, 209]
2306
2321
  },
2307
2322
  t($e, [2, 128]),
2308
2323
  {
2309
- 10: [1, 209],
2324
+ 10: [1, 210],
2310
2325
  44: m,
2311
2326
  60: h,
2312
- 89: _,
2313
- 102: v,
2314
- 105: y,
2315
- 106: b,
2316
- 109: x,
2317
- 111: S,
2318
- 113: 112,
2319
- 114: C,
2320
- 115: w,
2321
- 116: T
2327
+ 89: y,
2328
+ 102: b,
2329
+ 105: x,
2330
+ 106: S,
2331
+ 109: C,
2332
+ 111: w,
2333
+ 113: 113,
2334
+ 114: T,
2335
+ 115: E,
2336
+ 116: D
2322
2337
  },
2323
2338
  {
2324
- 10: [1, 210],
2339
+ 10: [1, 211],
2325
2340
  44: m,
2326
2341
  60: h,
2327
- 89: _,
2328
- 102: v,
2329
- 105: y,
2330
- 106: b,
2331
- 109: x,
2332
- 111: S,
2333
- 113: 112,
2334
- 114: C,
2335
- 115: w,
2336
- 116: T
2342
+ 89: y,
2343
+ 102: b,
2344
+ 105: x,
2345
+ 106: S,
2346
+ 109: C,
2347
+ 111: w,
2348
+ 113: 113,
2349
+ 114: T,
2350
+ 115: E,
2351
+ 116: D
2337
2352
  },
2338
- { 80: [1, 211] },
2339
- t(F, [2, 109], { 10: [1, 212] }),
2340
- t(F, [2, 111], { 10: [1, 213] }),
2341
- { 80: [1, 214] },
2342
- t(I, [2, 184]),
2353
+ { 80: [1, 212] },
2354
+ t(I, [2, 109], { 10: [1, 213] }),
2355
+ t(I, [2, 111], { 10: [1, 214] }),
2356
+ { 80: [1, 215] },
2357
+ t(L, [2, 184]),
2343
2358
  {
2344
- 80: [1, 215],
2345
- 98: [1, 216]
2359
+ 80: [1, 216],
2360
+ 98: [1, 217]
2346
2361
  },
2347
- t(M, [2, 55], {
2348
- 113: 112,
2362
+ t(be, [2, 55], {
2363
+ 113: 113,
2349
2364
  44: m,
2350
2365
  60: h,
2351
- 89: _,
2352
- 102: v,
2353
- 105: y,
2354
- 106: b,
2355
- 109: x,
2356
- 111: S,
2357
- 114: C,
2358
- 115: w,
2359
- 116: T
2366
+ 89: y,
2367
+ 102: b,
2368
+ 105: x,
2369
+ 106: S,
2370
+ 109: C,
2371
+ 111: w,
2372
+ 114: T,
2373
+ 115: E,
2374
+ 116: D
2360
2375
  }),
2361
2376
  {
2362
- 31: [1, 217],
2363
- 67: L,
2364
- 82: 218,
2365
- 116: B,
2366
- 117: V,
2367
- 118: H
2377
+ 31: [1, 218],
2378
+ 67: R,
2379
+ 82: 219,
2380
+ 116: V,
2381
+ 117: H,
2382
+ 118: U
2368
2383
  },
2369
- t(W, [2, 86]),
2370
- t(W, [2, 88]),
2371
- t(W, [2, 89]),
2372
- t(W, [2, 153]),
2373
- t(W, [2, 154]),
2374
- t(W, [2, 155]),
2375
- t(W, [2, 156]),
2384
+ t(et, [2, 86]),
2385
+ t(et, [2, 88]),
2386
+ t(et, [2, 89]),
2387
+ t(et, [2, 153]),
2388
+ t(et, [2, 154]),
2389
+ t(et, [2, 155]),
2390
+ t(et, [2, 156]),
2376
2391
  {
2377
- 49: [1, 219],
2378
- 67: L,
2379
- 82: 218,
2380
- 116: B,
2381
- 117: V,
2382
- 118: H
2392
+ 49: [1, 220],
2393
+ 67: R,
2394
+ 82: 219,
2395
+ 116: V,
2396
+ 117: H,
2397
+ 118: U
2383
2398
  },
2384
2399
  {
2385
- 30: 220,
2386
- 67: L,
2387
- 80: R,
2388
- 81: z,
2389
- 82: 171,
2390
- 116: B,
2391
- 117: V,
2392
- 118: H
2400
+ 30: 221,
2401
+ 67: R,
2402
+ 80: z,
2403
+ 81: B,
2404
+ 82: 172,
2405
+ 116: V,
2406
+ 117: H,
2407
+ 118: U
2393
2408
  },
2394
2409
  {
2395
- 51: [1, 221],
2396
- 67: L,
2397
- 82: 218,
2398
- 116: B,
2399
- 117: V,
2400
- 118: H
2410
+ 51: [1, 222],
2411
+ 67: R,
2412
+ 82: 219,
2413
+ 116: V,
2414
+ 117: H,
2415
+ 118: U
2401
2416
  },
2402
2417
  {
2403
- 53: [1, 222],
2404
- 67: L,
2405
- 82: 218,
2406
- 116: B,
2407
- 117: V,
2408
- 118: H
2418
+ 53: [1, 223],
2419
+ 67: R,
2420
+ 82: 219,
2421
+ 116: V,
2422
+ 117: H,
2423
+ 118: U
2409
2424
  },
2410
2425
  {
2411
- 55: [1, 223],
2412
- 67: L,
2413
- 82: 218,
2414
- 116: B,
2415
- 117: V,
2416
- 118: H
2426
+ 55: [1, 224],
2427
+ 67: R,
2428
+ 82: 219,
2429
+ 116: V,
2430
+ 117: H,
2431
+ 118: U
2417
2432
  },
2418
2433
  {
2419
- 57: [1, 224],
2420
- 67: L,
2421
- 82: 218,
2422
- 116: B,
2423
- 117: V,
2424
- 118: H
2434
+ 57: [1, 225],
2435
+ 67: R,
2436
+ 82: 219,
2437
+ 116: V,
2438
+ 117: H,
2439
+ 118: U
2425
2440
  },
2426
- { 60: [1, 225] },
2441
+ { 60: [1, 226] },
2427
2442
  {
2428
- 64: [1, 226],
2429
- 67: L,
2430
- 82: 218,
2431
- 116: B,
2432
- 117: V,
2433
- 118: H
2443
+ 64: [1, 227],
2444
+ 67: R,
2445
+ 82: 219,
2446
+ 116: V,
2447
+ 117: H,
2448
+ 118: U
2434
2449
  },
2435
2450
  {
2436
- 66: [1, 227],
2437
- 67: L,
2438
- 82: 218,
2439
- 116: B,
2440
- 117: V,
2441
- 118: H
2451
+ 66: [1, 228],
2452
+ 67: R,
2453
+ 82: 219,
2454
+ 116: V,
2455
+ 117: H,
2456
+ 118: U
2442
2457
  },
2443
2458
  {
2444
- 30: 228,
2445
- 67: L,
2446
- 80: R,
2447
- 81: z,
2448
- 82: 171,
2449
- 116: B,
2450
- 117: V,
2451
- 118: H
2459
+ 30: 229,
2460
+ 67: R,
2461
+ 80: z,
2462
+ 81: B,
2463
+ 82: 172,
2464
+ 116: V,
2465
+ 117: H,
2466
+ 118: U
2452
2467
  },
2453
2468
  {
2454
- 31: [1, 229],
2455
- 67: L,
2456
- 82: 218,
2457
- 116: B,
2458
- 117: V,
2459
- 118: H
2469
+ 31: [1, 230],
2470
+ 67: R,
2471
+ 82: 219,
2472
+ 116: V,
2473
+ 117: H,
2474
+ 118: U
2460
2475
  },
2461
2476
  {
2462
- 67: L,
2463
- 69: [1, 230],
2464
- 71: [1, 231],
2465
- 82: 218,
2466
- 116: B,
2467
- 117: V,
2468
- 118: H
2477
+ 67: R,
2478
+ 69: [1, 231],
2479
+ 71: [1, 232],
2480
+ 82: 219,
2481
+ 116: V,
2482
+ 117: H,
2483
+ 118: U
2469
2484
  },
2470
2485
  {
2471
- 67: L,
2472
- 69: [1, 233],
2473
- 71: [1, 232],
2474
- 82: 218,
2475
- 116: B,
2476
- 117: V,
2477
- 118: H
2486
+ 67: R,
2487
+ 69: [1, 234],
2488
+ 71: [1, 233],
2489
+ 82: 219,
2490
+ 116: V,
2491
+ 117: H,
2492
+ 118: U
2478
2493
  },
2479
- t(ce, [2, 45], {
2480
- 18: 155,
2481
- 10: D,
2494
+ t(se, [2, 45], {
2495
+ 18: 156,
2496
+ 10: k,
2482
2497
  40: Ze
2483
2498
  }),
2484
- t(ce, [2, 47], { 44: Xe }),
2499
+ t(se, [2, 47], { 44: Xe }),
2485
2500
  t(Se, [2, 75]),
2486
2501
  t(Se, [2, 74]),
2487
2502
  {
2488
- 62: [1, 234],
2489
- 67: L,
2490
- 82: 218,
2491
- 116: B,
2492
- 117: V,
2493
- 118: H
2503
+ 62: [1, 235],
2504
+ 67: R,
2505
+ 82: 219,
2506
+ 116: V,
2507
+ 117: H,
2508
+ 118: U
2494
2509
  },
2495
2510
  t(Se, [2, 77]),
2496
2511
  t(Qe, [2, 80]),
2497
2512
  {
2498
- 77: [1, 235],
2499
- 79: 197,
2513
+ 77: [1, 236],
2514
+ 79: 198,
2500
2515
  116: Te,
2501
2516
  119: Ee
2502
2517
  },
2503
2518
  {
2504
- 30: 236,
2505
- 67: L,
2506
- 80: R,
2507
- 81: z,
2508
- 82: 171,
2509
- 116: B,
2510
- 117: V,
2511
- 118: H
2519
+ 30: 237,
2520
+ 67: R,
2521
+ 80: z,
2522
+ 81: B,
2523
+ 82: 172,
2524
+ 116: V,
2525
+ 117: H,
2526
+ 118: U
2512
2527
  },
2513
- t(Ye, o, { 5: 237 }),
2514
- t(U, [2, 102]),
2515
- t(O, [2, 35]),
2528
+ t(Ye, o, { 5: 238 }),
2529
+ t(W, [2, 102]),
2530
+ t(A, [2, 35]),
2516
2531
  {
2517
- 43: 238,
2532
+ 43: 239,
2518
2533
  44: m,
2519
- 45: 39,
2520
- 47: 40,
2534
+ 45: 40,
2535
+ 47: 41,
2521
2536
  60: h,
2522
- 89: _,
2523
- 102: v,
2524
- 105: y,
2525
- 106: b,
2526
- 109: x,
2527
- 111: S,
2528
- 113: 41,
2529
- 114: C,
2530
- 115: w,
2531
- 116: T
2537
+ 89: y,
2538
+ 102: b,
2539
+ 105: x,
2540
+ 106: S,
2541
+ 109: C,
2542
+ 111: w,
2543
+ 113: 42,
2544
+ 114: T,
2545
+ 115: E,
2546
+ 116: D
2532
2547
  },
2533
2548
  {
2534
- 10: D,
2535
- 18: 239
2549
+ 10: k,
2550
+ 18: 240
2536
2551
  },
2537
2552
  {
2538
2553
  10: G,
2539
2554
  60: K,
2540
2555
  84: q,
2541
- 92: 240,
2556
+ 92: 241,
2542
2557
  105: J,
2543
- 107: 241,
2544
- 108: 242,
2558
+ 107: 242,
2559
+ 108: 243,
2545
2560
  109: Y,
2546
2561
  110: X,
2547
2562
  111: Z,
@@ -2551,11 +2566,11 @@ You have to call mermaid.initialize.`);
2551
2566
  10: G,
2552
2567
  60: K,
2553
2568
  84: q,
2554
- 92: 251,
2555
- 104: [1, 252],
2569
+ 92: 252,
2570
+ 104: [1, 253],
2556
2571
  105: J,
2557
- 107: 241,
2558
- 108: 242,
2572
+ 107: 242,
2573
+ 108: 243,
2559
2574
  109: Y,
2560
2575
  110: X,
2561
2576
  111: Z,
@@ -2565,25 +2580,25 @@ You have to call mermaid.initialize.`);
2565
2580
  10: G,
2566
2581
  60: K,
2567
2582
  84: q,
2568
- 92: 253,
2569
- 104: [1, 254],
2583
+ 92: 254,
2584
+ 104: [1, 255],
2570
2585
  105: J,
2571
- 107: 241,
2572
- 108: 242,
2586
+ 107: 242,
2587
+ 108: 243,
2573
2588
  109: Y,
2574
2589
  110: X,
2575
2590
  111: Z,
2576
2591
  112: Q
2577
2592
  },
2578
- { 105: [1, 255] },
2593
+ { 105: [1, 256] },
2579
2594
  {
2580
2595
  10: G,
2581
2596
  60: K,
2582
2597
  84: q,
2583
- 92: 256,
2598
+ 92: 257,
2584
2599
  105: J,
2585
- 107: 241,
2586
- 108: 242,
2600
+ 107: 242,
2601
+ 108: 243,
2587
2602
  109: Y,
2588
2603
  110: X,
2589
2604
  111: Z,
@@ -2591,59 +2606,59 @@ You have to call mermaid.initialize.`);
2591
2606
  },
2592
2607
  {
2593
2608
  44: m,
2594
- 47: 257,
2609
+ 47: 258,
2595
2610
  60: h,
2596
- 89: _,
2597
- 102: v,
2598
- 105: y,
2599
- 106: b,
2600
- 109: x,
2601
- 111: S,
2602
- 113: 41,
2603
- 114: C,
2604
- 115: w,
2605
- 116: T
2611
+ 89: y,
2612
+ 102: b,
2613
+ 105: x,
2614
+ 106: S,
2615
+ 109: C,
2616
+ 111: w,
2617
+ 113: 42,
2618
+ 114: T,
2619
+ 115: E,
2620
+ 116: D
2606
2621
  },
2607
- t(F, [2, 108]),
2608
- { 80: [1, 258] },
2622
+ t(I, [2, 108]),
2623
+ { 80: [1, 259] },
2609
2624
  {
2610
- 80: [1, 259],
2611
- 98: [1, 260]
2625
+ 80: [1, 260],
2626
+ 98: [1, 261]
2612
2627
  },
2613
- t(F, [2, 116]),
2614
- t(F, [2, 118], { 10: [1, 261] }),
2615
- t(F, [2, 119]),
2616
- t(N, [2, 56]),
2617
- t(W, [2, 87]),
2618
- t(N, [2, 57]),
2628
+ t(I, [2, 116]),
2629
+ t(I, [2, 118], { 10: [1, 262] }),
2630
+ t(I, [2, 119]),
2631
+ t(P, [2, 56]),
2632
+ t(et, [2, 87]),
2633
+ t(P, [2, 57]),
2619
2634
  {
2620
- 51: [1, 262],
2621
- 67: L,
2622
- 82: 218,
2623
- 116: B,
2624
- 117: V,
2625
- 118: H
2635
+ 51: [1, 263],
2636
+ 67: R,
2637
+ 82: 219,
2638
+ 116: V,
2639
+ 117: H,
2640
+ 118: U
2626
2641
  },
2627
- t(N, [2, 64]),
2628
- t(N, [2, 59]),
2629
- t(N, [2, 60]),
2630
- t(N, [2, 61]),
2631
- { 109: [1, 263] },
2632
- t(N, [2, 63]),
2633
- t(N, [2, 65]),
2642
+ t(P, [2, 64]),
2643
+ t(P, [2, 59]),
2644
+ t(P, [2, 60]),
2645
+ t(P, [2, 61]),
2646
+ { 109: [1, 264] },
2647
+ t(P, [2, 63]),
2648
+ t(P, [2, 65]),
2634
2649
  {
2635
- 66: [1, 264],
2636
- 67: L,
2637
- 82: 218,
2638
- 116: B,
2639
- 117: V,
2640
- 118: H
2650
+ 66: [1, 265],
2651
+ 67: R,
2652
+ 82: 219,
2653
+ 116: V,
2654
+ 117: H,
2655
+ 118: U
2641
2656
  },
2642
- t(N, [2, 67]),
2643
- t(N, [2, 68]),
2644
- t(N, [2, 70]),
2645
- t(N, [2, 69]),
2646
- t(N, [2, 71]),
2657
+ t(P, [2, 67]),
2658
+ t(P, [2, 68]),
2659
+ t(P, [2, 70]),
2660
+ t(P, [2, 69]),
2661
+ t(P, [2, 71]),
2647
2662
  t([
2648
2663
  10,
2649
2664
  44,
@@ -2660,12 +2675,12 @@ You have to call mermaid.initialize.`);
2660
2675
  ], [2, 85]),
2661
2676
  t(Se, [2, 78]),
2662
2677
  {
2663
- 31: [1, 265],
2664
- 67: L,
2665
- 82: 218,
2666
- 116: B,
2667
- 117: V,
2668
- 118: H
2678
+ 31: [1, 266],
2679
+ 67: R,
2680
+ 82: 219,
2681
+ 116: V,
2682
+ 117: H,
2683
+ 118: U
2669
2684
  },
2670
2685
  {
2671
2686
  6: 11,
@@ -2681,58 +2696,59 @@ You have to call mermaid.initialize.`);
2681
2696
  25: 21,
2682
2697
  26: 22,
2683
2698
  27: d,
2684
- 32: [1, 266],
2699
+ 32: [1, 267],
2685
2700
  33: 24,
2686
2701
  34: f,
2687
2702
  36: p,
2688
2703
  38: ee,
2689
2704
  42: 28,
2690
- 43: 38,
2705
+ 43: 39,
2691
2706
  44: m,
2692
- 45: 39,
2693
- 47: 40,
2707
+ 45: 40,
2708
+ 47: 41,
2694
2709
  60: h,
2695
2710
  84: g,
2696
- 85: te,
2697
- 86: ne,
2698
- 87: re,
2699
- 88: ie,
2700
- 89: _,
2701
- 102: v,
2702
- 105: y,
2703
- 106: b,
2704
- 109: x,
2705
- 111: S,
2706
- 113: 41,
2707
- 114: C,
2708
- 115: w,
2709
- 116: T,
2710
- 121: E,
2711
- 122: ae,
2712
- 123: oe,
2713
- 124: se
2711
+ 85: _,
2712
+ 86: v,
2713
+ 87: te,
2714
+ 88: ne,
2715
+ 89: y,
2716
+ 102: b,
2717
+ 105: x,
2718
+ 106: S,
2719
+ 109: C,
2720
+ 111: w,
2721
+ 113: 42,
2722
+ 114: T,
2723
+ 115: E,
2724
+ 116: D,
2725
+ 121: O,
2726
+ 122: re,
2727
+ 123: ie,
2728
+ 124: ae,
2729
+ 125: oe
2714
2730
  },
2715
- t(M, [2, 53]),
2731
+ t(be, [2, 53]),
2716
2732
  {
2717
- 43: 267,
2733
+ 43: 268,
2718
2734
  44: m,
2719
- 45: 39,
2720
- 47: 40,
2735
+ 45: 40,
2736
+ 47: 41,
2721
2737
  60: h,
2722
- 89: _,
2723
- 102: v,
2724
- 105: y,
2725
- 106: b,
2726
- 109: x,
2727
- 111: S,
2728
- 113: 41,
2729
- 114: C,
2730
- 115: w,
2731
- 116: T
2738
+ 89: y,
2739
+ 102: b,
2740
+ 105: x,
2741
+ 106: S,
2742
+ 109: C,
2743
+ 111: w,
2744
+ 113: 42,
2745
+ 114: T,
2746
+ 115: E,
2747
+ 116: D
2732
2748
  },
2733
- t(F, [2, 121], { 106: et }),
2734
- t(tt, [2, 130], {
2735
- 108: 269,
2749
+ t(I, [2, 121], { 106: tt }),
2750
+ t(nt, [2, 130], {
2751
+ 108: 270,
2736
2752
  10: G,
2737
2753
  60: K,
2738
2754
  84: q,
@@ -2751,48 +2767,48 @@ You have to call mermaid.initialize.`);
2751
2767
  t($, [2, 139]),
2752
2768
  t($, [2, 140]),
2753
2769
  t($, [2, 141]),
2754
- t(F, [2, 122], { 106: et }),
2755
- { 10: [1, 270] },
2756
- t(F, [2, 123], { 106: et }),
2770
+ t(I, [2, 122], { 106: tt }),
2757
2771
  { 10: [1, 271] },
2772
+ t(I, [2, 123], { 106: tt }),
2773
+ { 10: [1, 272] },
2758
2774
  t($e, [2, 129]),
2759
- t(F, [2, 105], { 106: et }),
2760
- t(F, [2, 106], {
2761
- 113: 112,
2775
+ t(I, [2, 105], { 106: tt }),
2776
+ t(I, [2, 106], {
2777
+ 113: 113,
2762
2778
  44: m,
2763
2779
  60: h,
2764
- 89: _,
2765
- 102: v,
2766
- 105: y,
2767
- 106: b,
2768
- 109: x,
2769
- 111: S,
2770
- 114: C,
2771
- 115: w,
2772
- 116: T
2780
+ 89: y,
2781
+ 102: b,
2782
+ 105: x,
2783
+ 106: S,
2784
+ 109: C,
2785
+ 111: w,
2786
+ 114: T,
2787
+ 115: E,
2788
+ 116: D
2773
2789
  }),
2774
- t(F, [2, 110]),
2775
- t(F, [2, 112], { 10: [1, 272] }),
2776
- t(F, [2, 113]),
2777
- { 98: [1, 273] },
2778
- { 51: [1, 274] },
2779
- { 62: [1, 275] },
2780
- { 66: [1, 276] },
2790
+ t(I, [2, 110]),
2791
+ t(I, [2, 112], { 10: [1, 273] }),
2792
+ t(I, [2, 113]),
2793
+ { 98: [1, 274] },
2794
+ { 51: [1, 275] },
2795
+ { 62: [1, 276] },
2796
+ { 66: [1, 277] },
2781
2797
  {
2782
- 8: k,
2783
- 9: A,
2784
- 11: j,
2785
- 21: 277
2798
+ 8: j,
2799
+ 9: M,
2800
+ 11: N,
2801
+ 21: 278
2786
2802
  },
2787
- t(O, [2, 34]),
2788
- t(M, [2, 52]),
2803
+ t(A, [2, 34]),
2804
+ t(be, [2, 52]),
2789
2805
  {
2790
2806
  10: G,
2791
2807
  60: K,
2792
2808
  84: q,
2793
2809
  105: J,
2794
- 107: 278,
2795
- 108: 242,
2810
+ 107: 279,
2811
+ 108: 243,
2796
2812
  109: Y,
2797
2813
  110: X,
2798
2814
  111: Z,
@@ -2800,52 +2816,52 @@ You have to call mermaid.initialize.`);
2800
2816
  },
2801
2817
  t($, [2, 133]),
2802
2818
  {
2803
- 14: ue,
2804
- 44: de,
2805
- 60: fe,
2806
- 89: pe,
2807
- 101: 279,
2808
- 105: me,
2809
- 106: he,
2810
- 109: ge,
2811
- 111: _e,
2812
- 114: ve,
2813
- 115: ye,
2814
- 116: be,
2815
- 120: 87
2819
+ 14: le,
2820
+ 44: ue,
2821
+ 60: de,
2822
+ 89: fe,
2823
+ 101: 280,
2824
+ 105: pe,
2825
+ 106: me,
2826
+ 109: he,
2827
+ 111: ge,
2828
+ 114: _e,
2829
+ 115: ve,
2830
+ 116: ye,
2831
+ 120: 88
2816
2832
  },
2817
2833
  {
2818
- 14: ue,
2819
- 44: de,
2820
- 60: fe,
2821
- 89: pe,
2822
- 101: 280,
2823
- 105: me,
2824
- 106: he,
2825
- 109: ge,
2826
- 111: _e,
2827
- 114: ve,
2828
- 115: ye,
2829
- 116: be,
2830
- 120: 87
2834
+ 14: le,
2835
+ 44: ue,
2836
+ 60: de,
2837
+ 89: fe,
2838
+ 101: 281,
2839
+ 105: pe,
2840
+ 106: me,
2841
+ 109: he,
2842
+ 111: ge,
2843
+ 114: _e,
2844
+ 115: ve,
2845
+ 116: ye,
2846
+ 120: 88
2831
2847
  },
2832
- { 98: [1, 281] },
2833
- t(F, [2, 120]),
2834
- t(N, [2, 58]),
2848
+ { 98: [1, 282] },
2849
+ t(I, [2, 120]),
2850
+ t(P, [2, 58]),
2835
2851
  {
2836
- 30: 282,
2837
- 67: L,
2838
- 80: R,
2839
- 81: z,
2840
- 82: 171,
2841
- 116: B,
2842
- 117: V,
2843
- 118: H
2852
+ 30: 283,
2853
+ 67: R,
2854
+ 80: z,
2855
+ 81: B,
2856
+ 82: 172,
2857
+ 116: V,
2858
+ 117: H,
2859
+ 118: U
2844
2860
  },
2845
- t(N, [2, 66]),
2846
- t(Ye, o, { 5: 283 }),
2847
- t(tt, [2, 131], {
2848
- 108: 269,
2861
+ t(P, [2, 66]),
2862
+ t(Ye, o, { 5: 284 }),
2863
+ t(nt, [2, 131], {
2864
+ 108: 270,
2849
2865
  10: G,
2850
2866
  60: K,
2851
2867
  84: q,
@@ -2855,44 +2871,44 @@ You have to call mermaid.initialize.`);
2855
2871
  111: Z,
2856
2872
  112: Q
2857
2873
  }),
2858
- t(F, [2, 126], {
2859
- 120: 167,
2860
- 10: [1, 284],
2861
- 14: ue,
2862
- 44: de,
2863
- 60: fe,
2864
- 89: pe,
2865
- 105: me,
2866
- 106: he,
2867
- 109: ge,
2868
- 111: _e,
2869
- 114: ve,
2870
- 115: ye,
2871
- 116: be
2872
- }),
2873
- t(F, [2, 127], {
2874
- 120: 167,
2874
+ t(I, [2, 126], {
2875
+ 120: 168,
2875
2876
  10: [1, 285],
2876
- 14: ue,
2877
- 44: de,
2878
- 60: fe,
2879
- 89: pe,
2880
- 105: me,
2881
- 106: he,
2882
- 109: ge,
2883
- 111: _e,
2884
- 114: ve,
2885
- 115: ye,
2886
- 116: be
2877
+ 14: le,
2878
+ 44: ue,
2879
+ 60: de,
2880
+ 89: fe,
2881
+ 105: pe,
2882
+ 106: me,
2883
+ 109: he,
2884
+ 111: ge,
2885
+ 114: _e,
2886
+ 115: ve,
2887
+ 116: ye
2887
2888
  }),
2888
- t(F, [2, 114]),
2889
+ t(I, [2, 127], {
2890
+ 120: 168,
2891
+ 10: [1, 286],
2892
+ 14: le,
2893
+ 44: ue,
2894
+ 60: de,
2895
+ 89: fe,
2896
+ 105: pe,
2897
+ 106: me,
2898
+ 109: he,
2899
+ 111: ge,
2900
+ 114: _e,
2901
+ 115: ve,
2902
+ 116: ye
2903
+ }),
2904
+ t(I, [2, 114]),
2889
2905
  {
2890
- 31: [1, 286],
2891
- 67: L,
2892
- 82: 218,
2893
- 116: B,
2894
- 117: V,
2895
- 118: H
2906
+ 31: [1, 287],
2907
+ 67: R,
2908
+ 82: 219,
2909
+ 116: V,
2910
+ 117: H,
2911
+ 118: U
2896
2912
  },
2897
2913
  {
2898
2914
  6: 11,
@@ -2908,45 +2924,46 @@ You have to call mermaid.initialize.`);
2908
2924
  25: 21,
2909
2925
  26: 22,
2910
2926
  27: d,
2911
- 32: [1, 287],
2927
+ 32: [1, 288],
2912
2928
  33: 24,
2913
2929
  34: f,
2914
2930
  36: p,
2915
2931
  38: ee,
2916
2932
  42: 28,
2917
- 43: 38,
2933
+ 43: 39,
2918
2934
  44: m,
2919
- 45: 39,
2920
- 47: 40,
2935
+ 45: 40,
2936
+ 47: 41,
2921
2937
  60: h,
2922
2938
  84: g,
2923
- 85: te,
2924
- 86: ne,
2925
- 87: re,
2926
- 88: ie,
2927
- 89: _,
2928
- 102: v,
2929
- 105: y,
2930
- 106: b,
2931
- 109: x,
2932
- 111: S,
2933
- 113: 41,
2934
- 114: C,
2935
- 115: w,
2936
- 116: T,
2937
- 121: E,
2938
- 122: ae,
2939
- 123: oe,
2940
- 124: se
2939
+ 85: _,
2940
+ 86: v,
2941
+ 87: te,
2942
+ 88: ne,
2943
+ 89: y,
2944
+ 102: b,
2945
+ 105: x,
2946
+ 106: S,
2947
+ 109: C,
2948
+ 111: w,
2949
+ 113: 42,
2950
+ 114: T,
2951
+ 115: E,
2952
+ 116: D,
2953
+ 121: O,
2954
+ 122: re,
2955
+ 123: ie,
2956
+ 124: ae,
2957
+ 125: oe
2941
2958
  },
2942
2959
  {
2943
2960
  10: G,
2944
2961
  60: K,
2945
2962
  84: q,
2946
- 92: 288,
2963
+ 92: 289,
2947
2964
  105: J,
2948
- 107: 241,
2949
- 108: 242,
2965
+ 107: 242,
2966
+ 108: 243,
2950
2967
  109: Y,
2951
2968
  110: X,
2952
2969
  111: Z,
@@ -2956,78 +2973,78 @@ You have to call mermaid.initialize.`);
2956
2973
  10: G,
2957
2974
  60: K,
2958
2975
  84: q,
2959
- 92: 289,
2976
+ 92: 290,
2960
2977
  105: J,
2961
- 107: 241,
2962
- 108: 242,
2978
+ 107: 242,
2979
+ 108: 243,
2963
2980
  109: Y,
2964
2981
  110: X,
2965
2982
  111: Z,
2966
2983
  112: Q
2967
2984
  },
2968
- t(N, [2, 62]),
2969
- t(O, [2, 33]),
2970
- t(F, [2, 124], { 106: et }),
2971
- t(F, [2, 125], { 106: et })
2985
+ t(P, [2, 62]),
2986
+ t(A, [2, 33]),
2987
+ t(I, [2, 124], { 106: tt }),
2988
+ t(I, [2, 125], { 106: tt })
2972
2989
  ],
2973
2990
  defaultActions: {},
2974
- parseError: /* @__PURE__ */ __name(function(e, t) {
2991
+ parseError: /* @__PURE__ */ e(function(e, t) {
2975
2992
  if (t.recoverable) this.trace(e);
2976
2993
  else {
2977
2994
  var n = Error(e);
2978
2995
  throw n.hash = t, n;
2979
2996
  }
2980
2997
  }, "parseError"),
2981
- parse: /* @__PURE__ */ __name(function(t) {
2998
+ parse: /* @__PURE__ */ e(function(t) {
2982
2999
  var n = this, r = [0], i = [], a = [null], o = [], s = this.table, c = "", l = 0, u = 0, d = 0, f = 2, p = 1, ee = o.slice.call(arguments, 1), m = Object.create(this.lexer), h = { yy: {} };
2983
3000
  for (var g in this.yy) Object.prototype.hasOwnProperty.call(this.yy, g) && (h.yy[g] = this.yy[g]);
2984
3001
  m.setInput(t, h.yy), h.yy.lexer = m, h.yy.parser = this, m.yylloc === void 0 && (m.yylloc = {});
2985
- var te = m.yylloc;
2986
- o.push(te);
2987
- var ne = m.options && m.options.ranges;
3002
+ var _ = m.yylloc;
3003
+ o.push(_);
3004
+ var v = m.options && m.options.ranges;
2988
3005
  typeof h.yy.parseError == "function" ? this.parseError = h.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
2989
- function re(e) {
3006
+ function te(e) {
2990
3007
  r.length -= 2 * e, a.length -= e, o.length -= e;
2991
3008
  }
2992
- __name(re, "popStack");
2993
- function ie() {
3009
+ e(te, "popStack");
3010
+ function ne() {
2994
3011
  var e = i.pop() || m.lex() || p;
2995
3012
  return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
2996
3013
  }
2997
- __name(ie, "lex");
2998
- for (var _, v, y, b, x, S = {}, C, w, T, E;;) {
2999
- if (y = r[r.length - 1], this.defaultActions[y] ? b = this.defaultActions[y] : (_ ??= ie(), b = s[y] && s[y][_]), b === void 0 || !b.length || !b[0]) {
3000
- var ae = "";
3001
- for (C in E = [], s[y]) this.terminals_[C] && C > f && E.push("'" + this.terminals_[C] + "'");
3002
- ae = m.showPosition ? "Parse error on line " + (l + 1) + ":\n" + m.showPosition() + "\nExpecting " + E.join(", ") + ", got '" + (this.terminals_[_] || _) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (_ == p ? "end of input" : "'" + (this.terminals_[_] || _) + "'"), this.parseError(ae, {
3014
+ e(ne, "lex");
3015
+ for (var y, b, x, S, C, w = {}, T, E, D, O;;) {
3016
+ if (x = r[r.length - 1], this.defaultActions[x] ? S = this.defaultActions[x] : (y ??= ne(), S = s[x] && s[x][y]), S === void 0 || !S.length || !S[0]) {
3017
+ var re = "";
3018
+ for (T in O = [], s[x]) this.terminals_[T] && T > f && O.push("'" + this.terminals_[T] + "'");
3019
+ re = m.showPosition ? "Parse error on line " + (l + 1) + ":\n" + m.showPosition() + "\nExpecting " + O.join(", ") + ", got '" + (this.terminals_[y] || y) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (y == p ? "end of input" : "'" + (this.terminals_[y] || y) + "'"), this.parseError(re, {
3003
3020
  text: m.match,
3004
- token: this.terminals_[_] || _,
3021
+ token: this.terminals_[y] || y,
3005
3022
  line: m.yylineno,
3006
- loc: te,
3007
- expected: E
3023
+ loc: _,
3024
+ expected: O
3008
3025
  });
3009
3026
  }
3010
- if (b[0] instanceof Array && b.length > 1) throw Error("Parse Error: multiple actions possible at state: " + y + ", token: " + _);
3011
- switch (b[0]) {
3027
+ if (S[0] instanceof Array && S.length > 1) throw Error("Parse Error: multiple actions possible at state: " + x + ", token: " + y);
3028
+ switch (S[0]) {
3012
3029
  case 1:
3013
- r.push(_), a.push(m.yytext), o.push(m.yylloc), r.push(b[1]), _ = null, v ? (_ = v, v = null) : (u = m.yyleng, c = m.yytext, l = m.yylineno, te = m.yylloc, d > 0 && d--);
3030
+ r.push(y), a.push(m.yytext), o.push(m.yylloc), r.push(S[1]), y = null, b ? (y = b, b = null) : (u = m.yyleng, c = m.yytext, l = m.yylineno, _ = m.yylloc, d > 0 && d--);
3014
3031
  break;
3015
3032
  case 2:
3016
- if (w = this.productions_[b[1]][1], S.$ = a[a.length - w], S._$ = {
3017
- first_line: o[o.length - (w || 1)].first_line,
3033
+ if (E = this.productions_[S[1]][1], w.$ = a[a.length - E], w._$ = {
3034
+ first_line: o[o.length - (E || 1)].first_line,
3018
3035
  last_line: o[o.length - 1].last_line,
3019
- first_column: o[o.length - (w || 1)].first_column,
3036
+ first_column: o[o.length - (E || 1)].first_column,
3020
3037
  last_column: o[o.length - 1].last_column
3021
- }, ne && (S._$.range = [o[o.length - (w || 1)].range[0], o[o.length - 1].range[1]]), x = this.performAction.apply(S, [
3038
+ }, v && (w._$.range = [o[o.length - (E || 1)].range[0], o[o.length - 1].range[1]]), C = this.performAction.apply(w, [
3022
3039
  c,
3023
3040
  u,
3024
3041
  l,
3025
3042
  h.yy,
3026
- b[1],
3043
+ S[1],
3027
3044
  a,
3028
3045
  o
3029
- ].concat(ee)), x !== void 0) return x;
3030
- w && (r = r.slice(0, -1 * w * 2), a = a.slice(0, -1 * w), o = o.slice(0, -1 * w)), r.push(this.productions_[b[1]][0]), a.push(S.$), o.push(S._$), T = s[r[r.length - 2]][r[r.length - 1]], r.push(T);
3046
+ ].concat(ee)), C !== void 0) return C;
3047
+ E && (r = r.slice(0, -1 * E * 2), a = a.slice(0, -1 * E), o = o.slice(0, -1 * E)), r.push(this.productions_[S[1]][0]), a.push(w.$), o.push(w._$), D = s[r[r.length - 2]][r[r.length - 1]], r.push(D);
3031
3048
  break;
3032
3049
  case 3: return !0;
3033
3050
  }
@@ -3035,14 +3052,14 @@ You have to call mermaid.initialize.`);
3035
3052
  return !0;
3036
3053
  }, "parse")
3037
3054
  };
3038
- nt.lexer = /* @__PURE__ */ (function() {
3055
+ rt.lexer = /* @__PURE__ */ (function() {
3039
3056
  return {
3040
3057
  EOF: 1,
3041
- parseError: /* @__PURE__ */ __name(function(e, t) {
3058
+ parseError: /* @__PURE__ */ e(function(e, t) {
3042
3059
  if (this.yy.parser) this.yy.parser.parseError(e, t);
3043
3060
  else throw Error(e);
3044
3061
  }, "parseError"),
3045
- setInput: /* @__PURE__ */ __name(function(e, t) {
3062
+ setInput: /* @__PURE__ */ e(function(e, t) {
3046
3063
  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 = {
3047
3064
  first_line: 1,
3048
3065
  first_column: 0,
@@ -3050,11 +3067,11 @@ You have to call mermaid.initialize.`);
3050
3067
  last_column: 0
3051
3068
  }, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
3052
3069
  }, "setInput"),
3053
- input: /* @__PURE__ */ __name(function() {
3070
+ input: /* @__PURE__ */ e(function() {
3054
3071
  var e = this._input[0];
3055
3072
  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;
3056
3073
  }, "input"),
3057
- unput: /* @__PURE__ */ __name(function(e) {
3074
+ unput: /* @__PURE__ */ e(function(e) {
3058
3075
  var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
3059
3076
  this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
3060
3077
  var r = this.match.split(/(?:\r\n?|\n)/g);
@@ -3067,10 +3084,10 @@ You have to call mermaid.initialize.`);
3067
3084
  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
3068
3085
  }, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
3069
3086
  }, "unput"),
3070
- more: /* @__PURE__ */ __name(function() {
3087
+ more: /* @__PURE__ */ e(function() {
3071
3088
  return this._more = !0, this;
3072
3089
  }, "more"),
3073
- reject: /* @__PURE__ */ __name(function() {
3090
+ reject: /* @__PURE__ */ e(function() {
3074
3091
  if (this.options.backtrack_lexer) this._backtrack = !0;
3075
3092
  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(), {
3076
3093
  text: "",
@@ -3079,22 +3096,22 @@ You have to call mermaid.initialize.`);
3079
3096
  });
3080
3097
  return this;
3081
3098
  }, "reject"),
3082
- less: /* @__PURE__ */ __name(function(e) {
3099
+ less: /* @__PURE__ */ e(function(e) {
3083
3100
  this.unput(this.match.slice(e));
3084
3101
  }, "less"),
3085
- pastInput: /* @__PURE__ */ __name(function() {
3102
+ pastInput: /* @__PURE__ */ e(function() {
3086
3103
  var e = this.matched.substr(0, this.matched.length - this.match.length);
3087
3104
  return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
3088
3105
  }, "pastInput"),
3089
- upcomingInput: /* @__PURE__ */ __name(function() {
3106
+ upcomingInput: /* @__PURE__ */ e(function() {
3090
3107
  var e = this.match;
3091
3108
  return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
3092
3109
  }, "upcomingInput"),
3093
- showPosition: /* @__PURE__ */ __name(function() {
3110
+ showPosition: /* @__PURE__ */ e(function() {
3094
3111
  var e = this.pastInput(), t = Array(e.length + 1).join("-");
3095
3112
  return e + this.upcomingInput() + "\n" + t + "^";
3096
3113
  }, "showPosition"),
3097
- test_match: /* @__PURE__ */ __name(function(e, t) {
3114
+ test_match: /* @__PURE__ */ e(function(e, t) {
3098
3115
  var n, r, i;
3099
3116
  if (this.options.backtrack_lexer && (i = {
3100
3117
  yylineno: this.yylineno,
@@ -3127,7 +3144,7 @@ You have to call mermaid.initialize.`);
3127
3144
  }
3128
3145
  return !1;
3129
3146
  }, "test_match"),
3130
- next: /* @__PURE__ */ __name(function() {
3147
+ next: /* @__PURE__ */ e(function() {
3131
3148
  if (this.done) return this.EOF;
3132
3149
  this._input || (this.done = !0);
3133
3150
  var e, t, n, r;
@@ -3147,29 +3164,29 @@ You have to call mermaid.initialize.`);
3147
3164
  line: this.yylineno
3148
3165
  });
3149
3166
  }, "next"),
3150
- lex: /* @__PURE__ */ __name(function() {
3167
+ lex: /* @__PURE__ */ e(function() {
3151
3168
  return this.next() || this.lex();
3152
3169
  }, "lex"),
3153
- begin: /* @__PURE__ */ __name(function(e) {
3170
+ begin: /* @__PURE__ */ e(function(e) {
3154
3171
  this.conditionStack.push(e);
3155
3172
  }, "begin"),
3156
- popState: /* @__PURE__ */ __name(function() {
3173
+ popState: /* @__PURE__ */ e(function() {
3157
3174
  return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
3158
3175
  }, "popState"),
3159
- _currentRules: /* @__PURE__ */ __name(function() {
3176
+ _currentRules: /* @__PURE__ */ e(function() {
3160
3177
  return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
3161
3178
  }, "_currentRules"),
3162
- topState: /* @__PURE__ */ __name(function(e) {
3179
+ topState: /* @__PURE__ */ e(function(e) {
3163
3180
  return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
3164
3181
  }, "topState"),
3165
- pushState: /* @__PURE__ */ __name(function(e) {
3182
+ pushState: /* @__PURE__ */ e(function(e) {
3166
3183
  this.begin(e);
3167
3184
  }, "pushState"),
3168
- stateStackSize: /* @__PURE__ */ __name(function() {
3185
+ stateStackSize: /* @__PURE__ */ e(function() {
3169
3186
  return this.conditionStack.length;
3170
3187
  }, "stateStackSize"),
3171
3188
  options: {},
3172
- performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
3189
+ performAction: /* @__PURE__ */ e(function(e, t, n, r) {
3173
3190
  switch (n) {
3174
3191
  case 0: return this.begin("acc_title"), 34;
3175
3192
  case 1: return this.popState(), "acc_title_value";
@@ -3256,67 +3273,68 @@ You have to call mermaid.initialize.`);
3256
3273
  case 56: return 122;
3257
3274
  case 57: return 123;
3258
3275
  case 58: return 124;
3259
- case 59: return 78;
3260
- case 60: return 105;
3261
- case 61: return 111;
3262
- case 62: return 46;
3263
- case 63: return 60;
3264
- case 64: return 44;
3265
- case 65: return 8;
3266
- case 66: return 106;
3267
- case 67: return 115;
3268
- case 68: return this.popState(), 77;
3269
- case 69: return this.pushState("edgeText"), 75;
3270
- case 70: return 119;
3271
- case 71: return this.popState(), 77;
3272
- case 72: return this.pushState("thickEdgeText"), 75;
3273
- case 73: return 119;
3274
- case 74: return this.popState(), 77;
3275
- case 75: return this.pushState("dottedEdgeText"), 75;
3276
- case 76: return 119;
3277
- case 77: return 77;
3278
- case 78: return this.popState(), 53;
3279
- case 79: return "TEXT";
3280
- case 80: return this.pushState("ellipseText"), 52;
3281
- case 81: return this.popState(), 55;
3282
- case 82: return this.pushState("text"), 54;
3283
- case 83: return this.popState(), 57;
3284
- case 84: return this.pushState("text"), 56;
3285
- case 85: return 58;
3286
- case 86: return this.pushState("text"), 67;
3287
- case 87: return this.popState(), 64;
3288
- case 88: return this.pushState("text"), 63;
3289
- case 89: return this.popState(), 49;
3290
- case 90: return this.pushState("text"), 48;
3291
- case 91: return this.popState(), 69;
3292
- case 92: return this.popState(), 71;
3293
- case 93: return 117;
3294
- case 94: return this.pushState("trapText"), 68;
3295
- case 95: return this.pushState("trapText"), 70;
3296
- case 96: return 118;
3297
- case 97: return 67;
3298
- case 98: return 90;
3299
- case 99: return "SEP";
3300
- case 100: return 89;
3301
- case 101: return 115;
3302
- case 102: return 111;
3303
- case 103: return 44;
3304
- case 104: return 109;
3305
- case 105: return 114;
3306
- case 106: return 116;
3307
- case 107: return this.popState(), 62;
3308
- case 108: return this.pushState("text"), 62;
3309
- case 109: return this.popState(), 51;
3310
- case 110: return this.pushState("text"), 50;
3311
- case 111: return this.popState(), 31;
3312
- case 112: return this.pushState("text"), 29;
3313
- case 113: return this.popState(), 66;
3314
- case 114: return this.pushState("text"), 65;
3315
- case 115: return "TEXT";
3316
- case 116: return "QUOTE";
3317
- case 117: return 9;
3318
- case 118: return 10;
3319
- case 119: return 11;
3276
+ case 59: return 125;
3277
+ case 60: return 78;
3278
+ case 61: return 105;
3279
+ case 62: return 111;
3280
+ case 63: return 46;
3281
+ case 64: return 60;
3282
+ case 65: return 44;
3283
+ case 66: return 8;
3284
+ case 67: return 106;
3285
+ case 68: return 115;
3286
+ case 69: return this.popState(), 77;
3287
+ case 70: return this.pushState("edgeText"), 75;
3288
+ case 71: return 119;
3289
+ case 72: return this.popState(), 77;
3290
+ case 73: return this.pushState("thickEdgeText"), 75;
3291
+ case 74: return 119;
3292
+ case 75: return this.popState(), 77;
3293
+ case 76: return this.pushState("dottedEdgeText"), 75;
3294
+ case 77: return 119;
3295
+ case 78: return 77;
3296
+ case 79: return this.popState(), 53;
3297
+ case 80: return "TEXT";
3298
+ case 81: return this.pushState("ellipseText"), 52;
3299
+ case 82: return this.popState(), 55;
3300
+ case 83: return this.pushState("text"), 54;
3301
+ case 84: return this.popState(), 57;
3302
+ case 85: return this.pushState("text"), 56;
3303
+ case 86: return 58;
3304
+ case 87: return this.pushState("text"), 67;
3305
+ case 88: return this.popState(), 64;
3306
+ case 89: return this.pushState("text"), 63;
3307
+ case 90: return this.popState(), 49;
3308
+ case 91: return this.pushState("text"), 48;
3309
+ case 92: return this.popState(), 69;
3310
+ case 93: return this.popState(), 71;
3311
+ case 94: return 117;
3312
+ case 95: return this.pushState("trapText"), 68;
3313
+ case 96: return this.pushState("trapText"), 70;
3314
+ case 97: return 118;
3315
+ case 98: return 67;
3316
+ case 99: return 90;
3317
+ case 100: return "SEP";
3318
+ case 101: return 89;
3319
+ case 102: return 115;
3320
+ case 103: return 111;
3321
+ case 104: return 44;
3322
+ case 105: return 109;
3323
+ case 106: return 114;
3324
+ case 107: return 116;
3325
+ case 108: return this.popState(), 62;
3326
+ case 109: return this.pushState("text"), 62;
3327
+ case 110: return this.popState(), 51;
3328
+ case 111: return this.pushState("text"), 50;
3329
+ case 112: return this.popState(), 31;
3330
+ case 113: return this.pushState("text"), 29;
3331
+ case 114: return this.popState(), 66;
3332
+ case 115: return this.pushState("text"), 65;
3333
+ case 116: return "TEXT";
3334
+ case 117: return "QUOTE";
3335
+ case 118: return 9;
3336
+ case 119: return 10;
3337
+ case 120: return 11;
3320
3338
  }
3321
3339
  }, "anonymous"),
3322
3340
  rules: [
@@ -3379,6 +3397,7 @@ You have to call mermaid.initialize.`);
3379
3397
  /^(?:.*direction\s+BT[^\n]*)/,
3380
3398
  /^(?:.*direction\s+RL[^\n]*)/,
3381
3399
  /^(?:.*direction\s+LR[^\n]*)/,
3400
+ /^(?:.*direction\s+TD[^\n]*)/,
3382
3401
  /^(?:[^\s\"]+@(?=[^\{\"]))/,
3383
3402
  /^(?:[0-9]+)/,
3384
3403
  /^(?:#)/,
@@ -3446,18 +3465,18 @@ You have to call mermaid.initialize.`);
3446
3465
  rules: [
3447
3466
  21,
3448
3467
  24,
3449
- 77,
3450
- 80,
3451
- 82,
3452
- 84,
3453
- 88,
3454
- 90,
3455
- 94,
3468
+ 78,
3469
+ 81,
3470
+ 83,
3471
+ 85,
3472
+ 89,
3473
+ 91,
3456
3474
  95,
3457
- 108,
3458
- 110,
3459
- 112,
3460
- 114
3475
+ 96,
3476
+ 109,
3477
+ 111,
3478
+ 113,
3479
+ 115
3461
3480
  ],
3462
3481
  inclusive: !1
3463
3482
  },
@@ -3467,18 +3486,18 @@ You have to call mermaid.initialize.`);
3467
3486
  10,
3468
3487
  21,
3469
3488
  24,
3470
- 77,
3471
- 80,
3472
- 82,
3473
- 84,
3474
- 88,
3475
- 90,
3476
- 94,
3489
+ 78,
3490
+ 81,
3491
+ 83,
3492
+ 85,
3493
+ 89,
3494
+ 91,
3477
3495
  95,
3478
- 108,
3479
- 110,
3480
- 112,
3481
- 114
3496
+ 96,
3497
+ 109,
3498
+ 111,
3499
+ 113,
3500
+ 115
3482
3501
  ],
3483
3502
  inclusive: !1
3484
3503
  },
@@ -3489,18 +3508,18 @@ You have to call mermaid.initialize.`);
3489
3508
  12,
3490
3509
  21,
3491
3510
  24,
3492
- 77,
3493
- 80,
3494
- 82,
3495
- 84,
3496
- 88,
3497
- 90,
3498
- 94,
3511
+ 78,
3512
+ 81,
3513
+ 83,
3514
+ 85,
3515
+ 89,
3516
+ 91,
3499
3517
  95,
3500
- 108,
3501
- 110,
3502
- 112,
3503
- 114
3518
+ 96,
3519
+ 109,
3520
+ 111,
3521
+ 113,
3522
+ 115
3504
3523
  ],
3505
3524
  inclusive: !1
3506
3525
  },
@@ -3510,18 +3529,18 @@ You have to call mermaid.initialize.`);
3510
3529
  18,
3511
3530
  21,
3512
3531
  24,
3513
- 77,
3514
- 80,
3515
- 82,
3516
- 84,
3517
- 88,
3518
- 90,
3519
- 94,
3532
+ 78,
3533
+ 81,
3534
+ 83,
3535
+ 85,
3536
+ 89,
3537
+ 91,
3520
3538
  95,
3521
- 108,
3522
- 110,
3523
- 112,
3524
- 114
3539
+ 96,
3540
+ 109,
3541
+ 111,
3542
+ 113,
3543
+ 115
3525
3544
  ],
3526
3545
  inclusive: !1
3527
3546
  },
@@ -3532,18 +3551,18 @@ You have to call mermaid.initialize.`);
3532
3551
  16,
3533
3552
  21,
3534
3553
  24,
3535
- 77,
3536
- 80,
3537
- 82,
3538
- 84,
3539
- 88,
3540
- 90,
3541
- 94,
3554
+ 78,
3555
+ 81,
3556
+ 83,
3557
+ 85,
3558
+ 89,
3559
+ 91,
3542
3560
  95,
3543
- 108,
3544
- 110,
3545
- 112,
3546
- 114
3561
+ 96,
3562
+ 109,
3563
+ 111,
3564
+ 113,
3565
+ 115
3547
3566
  ],
3548
3567
  inclusive: !1
3549
3568
  },
@@ -3551,18 +3570,18 @@ You have to call mermaid.initialize.`);
3551
3570
  rules: [
3552
3571
  21,
3553
3572
  24,
3554
- 77,
3555
- 80,
3556
- 82,
3557
- 84,
3558
- 88,
3559
- 90,
3560
- 94,
3573
+ 78,
3574
+ 81,
3575
+ 83,
3576
+ 85,
3577
+ 89,
3578
+ 91,
3561
3579
  95,
3562
- 108,
3563
- 110,
3564
- 112,
3565
- 114
3580
+ 96,
3581
+ 109,
3582
+ 111,
3583
+ 113,
3584
+ 115
3566
3585
  ],
3567
3586
  inclusive: !1
3568
3587
  },
@@ -3572,18 +3591,18 @@ You have to call mermaid.initialize.`);
3572
3591
  24,
3573
3592
  33,
3574
3593
  34,
3575
- 77,
3576
- 80,
3577
- 82,
3578
- 84,
3579
- 88,
3580
- 90,
3581
- 94,
3594
+ 78,
3595
+ 81,
3596
+ 83,
3597
+ 85,
3598
+ 89,
3599
+ 91,
3582
3600
  95,
3583
- 108,
3584
- 110,
3585
- 112,
3586
- 114
3601
+ 96,
3602
+ 109,
3603
+ 111,
3604
+ 113,
3605
+ 115
3587
3606
  ],
3588
3607
  inclusive: !1
3589
3608
  },
@@ -3591,20 +3610,20 @@ You have to call mermaid.initialize.`);
3591
3610
  rules: [
3592
3611
  21,
3593
3612
  24,
3594
- 74,
3595
- 76,
3613
+ 75,
3596
3614
  77,
3597
- 80,
3598
- 82,
3599
- 84,
3600
- 88,
3601
- 90,
3602
- 94,
3615
+ 78,
3616
+ 81,
3617
+ 83,
3618
+ 85,
3619
+ 89,
3620
+ 91,
3603
3621
  95,
3604
- 108,
3605
- 110,
3606
- 112,
3607
- 114
3622
+ 96,
3623
+ 109,
3624
+ 111,
3625
+ 113,
3626
+ 115
3608
3627
  ],
3609
3628
  inclusive: !1
3610
3629
  },
@@ -3612,20 +3631,20 @@ You have to call mermaid.initialize.`);
3612
3631
  rules: [
3613
3632
  21,
3614
3633
  24,
3615
- 71,
3616
- 73,
3617
- 77,
3618
- 80,
3619
- 82,
3620
- 84,
3621
- 88,
3622
- 90,
3623
- 94,
3634
+ 72,
3635
+ 74,
3636
+ 78,
3637
+ 81,
3638
+ 83,
3639
+ 85,
3640
+ 89,
3641
+ 91,
3624
3642
  95,
3625
- 108,
3626
- 110,
3627
- 112,
3628
- 114
3643
+ 96,
3644
+ 109,
3645
+ 111,
3646
+ 113,
3647
+ 115
3629
3648
  ],
3630
3649
  inclusive: !1
3631
3650
  },
@@ -3633,20 +3652,20 @@ You have to call mermaid.initialize.`);
3633
3652
  rules: [
3634
3653
  21,
3635
3654
  24,
3636
- 68,
3637
- 70,
3638
- 77,
3639
- 80,
3640
- 82,
3641
- 84,
3642
- 88,
3643
- 90,
3644
- 94,
3655
+ 69,
3656
+ 71,
3657
+ 78,
3658
+ 81,
3659
+ 83,
3660
+ 85,
3661
+ 89,
3662
+ 91,
3645
3663
  95,
3646
- 108,
3647
- 110,
3648
- 112,
3649
- 114
3664
+ 96,
3665
+ 109,
3666
+ 111,
3667
+ 113,
3668
+ 115
3650
3669
  ],
3651
3670
  inclusive: !1
3652
3671
  },
@@ -3654,21 +3673,21 @@ You have to call mermaid.initialize.`);
3654
3673
  rules: [
3655
3674
  21,
3656
3675
  24,
3657
- 77,
3658
- 80,
3659
- 82,
3660
- 84,
3661
- 88,
3662
- 90,
3676
+ 78,
3677
+ 81,
3678
+ 83,
3679
+ 85,
3680
+ 89,
3663
3681
  91,
3664
3682
  92,
3665
3683
  93,
3666
3684
  94,
3667
3685
  95,
3668
- 108,
3669
- 110,
3670
- 112,
3671
- 114
3686
+ 96,
3687
+ 109,
3688
+ 111,
3689
+ 113,
3690
+ 115
3672
3691
  ],
3673
3692
  inclusive: !1
3674
3693
  },
@@ -3676,20 +3695,20 @@ You have to call mermaid.initialize.`);
3676
3695
  rules: [
3677
3696
  21,
3678
3697
  24,
3679
- 77,
3680
3698
  78,
3681
3699
  79,
3682
3700
  80,
3683
- 82,
3684
- 84,
3685
- 88,
3686
- 90,
3687
- 94,
3701
+ 81,
3702
+ 83,
3703
+ 85,
3704
+ 89,
3705
+ 91,
3688
3706
  95,
3689
- 108,
3690
- 110,
3691
- 112,
3692
- 114
3707
+ 96,
3708
+ 109,
3709
+ 111,
3710
+ 113,
3711
+ 115
3693
3712
  ],
3694
3713
  inclusive: !1
3695
3714
  },
@@ -3697,19 +3716,18 @@ You have to call mermaid.initialize.`);
3697
3716
  rules: [
3698
3717
  21,
3699
3718
  24,
3700
- 77,
3701
- 80,
3719
+ 78,
3702
3720
  81,
3703
3721
  82,
3704
3722
  83,
3705
3723
  84,
3706
- 87,
3724
+ 85,
3707
3725
  88,
3708
3726
  89,
3709
3727
  90,
3710
- 94,
3728
+ 91,
3711
3729
  95,
3712
- 107,
3730
+ 96,
3713
3731
  108,
3714
3732
  109,
3715
3733
  110,
@@ -3717,7 +3735,8 @@ You have to call mermaid.initialize.`);
3717
3735
  112,
3718
3736
  113,
3719
3737
  114,
3720
- 115
3738
+ 115,
3739
+ 116
3721
3740
  ],
3722
3741
  inclusive: !1
3723
3742
  },
@@ -3725,18 +3744,18 @@ You have to call mermaid.initialize.`);
3725
3744
  rules: [
3726
3745
  21,
3727
3746
  24,
3728
- 77,
3729
- 80,
3730
- 82,
3731
- 84,
3732
- 88,
3733
- 90,
3734
- 94,
3747
+ 78,
3748
+ 81,
3749
+ 83,
3750
+ 85,
3751
+ 89,
3752
+ 91,
3735
3753
  95,
3736
- 108,
3737
- 110,
3738
- 112,
3739
- 114
3754
+ 96,
3755
+ 109,
3756
+ 111,
3757
+ 113,
3758
+ 115
3740
3759
  ],
3741
3760
  inclusive: !1
3742
3761
  },
@@ -3755,18 +3774,18 @@ You have to call mermaid.initialize.`);
3755
3774
  52,
3756
3775
  53,
3757
3776
  54,
3758
- 77,
3759
- 80,
3760
- 82,
3761
- 84,
3762
- 88,
3763
- 90,
3764
- 94,
3777
+ 78,
3778
+ 81,
3779
+ 83,
3780
+ 85,
3781
+ 89,
3782
+ 91,
3765
3783
  95,
3766
- 108,
3767
- 110,
3768
- 112,
3769
- 114
3784
+ 96,
3785
+ 109,
3786
+ 111,
3787
+ 113,
3788
+ 115
3770
3789
  ],
3771
3790
  inclusive: !1
3772
3791
  },
@@ -3776,18 +3795,18 @@ You have to call mermaid.initialize.`);
3776
3795
  6,
3777
3796
  21,
3778
3797
  24,
3779
- 77,
3780
- 80,
3781
- 82,
3782
- 84,
3783
- 88,
3784
- 90,
3785
- 94,
3798
+ 78,
3799
+ 81,
3800
+ 83,
3801
+ 85,
3802
+ 89,
3803
+ 91,
3786
3804
  95,
3787
- 108,
3788
- 110,
3789
- 112,
3790
- 114
3805
+ 96,
3806
+ 109,
3807
+ 111,
3808
+ 113,
3809
+ 115
3791
3810
  ],
3792
3811
  inclusive: !1
3793
3812
  },
@@ -3796,18 +3815,18 @@ You have to call mermaid.initialize.`);
3796
3815
  3,
3797
3816
  21,
3798
3817
  24,
3799
- 77,
3800
- 80,
3801
- 82,
3802
- 84,
3803
- 88,
3804
- 90,
3805
- 94,
3818
+ 78,
3819
+ 81,
3820
+ 83,
3821
+ 85,
3822
+ 89,
3823
+ 91,
3806
3824
  95,
3807
- 108,
3808
- 110,
3809
- 112,
3810
- 114
3825
+ 96,
3826
+ 109,
3827
+ 111,
3828
+ 113,
3829
+ 115
3811
3830
  ],
3812
3831
  inclusive: !1
3813
3832
  },
@@ -3816,18 +3835,18 @@ You have to call mermaid.initialize.`);
3816
3835
  1,
3817
3836
  21,
3818
3837
  24,
3819
- 77,
3820
- 80,
3821
- 82,
3822
- 84,
3823
- 88,
3824
- 90,
3825
- 94,
3838
+ 78,
3839
+ 81,
3840
+ 83,
3841
+ 85,
3842
+ 89,
3843
+ 91,
3826
3844
  95,
3827
- 108,
3828
- 110,
3829
- 112,
3830
- 114
3845
+ 96,
3846
+ 109,
3847
+ 111,
3848
+ 113,
3849
+ 115
3831
3850
  ],
3832
3851
  inclusive: !1
3833
3852
  },
@@ -3837,18 +3856,18 @@ You have to call mermaid.initialize.`);
3837
3856
  20,
3838
3857
  21,
3839
3858
  24,
3840
- 77,
3841
- 80,
3842
- 82,
3843
- 84,
3844
- 88,
3845
- 90,
3846
- 94,
3859
+ 78,
3860
+ 81,
3861
+ 83,
3862
+ 85,
3863
+ 89,
3864
+ 91,
3847
3865
  95,
3848
- 108,
3849
- 110,
3850
- 112,
3851
- 114
3866
+ 96,
3867
+ 109,
3868
+ 111,
3869
+ 113,
3870
+ 115
3852
3871
  ],
3853
3872
  inclusive: !1
3854
3873
  },
@@ -3858,18 +3877,18 @@ You have to call mermaid.initialize.`);
3858
3877
  22,
3859
3878
  23,
3860
3879
  24,
3861
- 77,
3862
- 80,
3863
- 82,
3864
- 84,
3865
- 88,
3866
- 90,
3867
- 94,
3880
+ 78,
3881
+ 81,
3882
+ 83,
3883
+ 85,
3884
+ 89,
3885
+ 91,
3868
3886
  95,
3869
- 108,
3870
- 110,
3871
- 112,
3872
- 114
3887
+ 96,
3888
+ 109,
3889
+ 111,
3890
+ 113,
3891
+ 115
3873
3892
  ],
3874
3893
  inclusive: !1
3875
3894
  },
@@ -3914,19 +3933,19 @@ You have to call mermaid.initialize.`);
3914
3933
  67,
3915
3934
  68,
3916
3935
  69,
3917
- 71,
3936
+ 70,
3918
3937
  72,
3919
- 74,
3938
+ 73,
3920
3939
  75,
3921
- 77,
3922
- 80,
3923
- 82,
3924
- 84,
3940
+ 76,
3941
+ 78,
3942
+ 81,
3943
+ 83,
3925
3944
  85,
3926
3945
  86,
3927
- 88,
3928
- 90,
3929
- 94,
3946
+ 87,
3947
+ 89,
3948
+ 91,
3930
3949
  95,
3931
3950
  96,
3932
3951
  97,
@@ -3939,41 +3958,42 @@ You have to call mermaid.initialize.`);
3939
3958
  104,
3940
3959
  105,
3941
3960
  106,
3942
- 108,
3943
- 110,
3944
- 112,
3945
- 114,
3946
- 116,
3961
+ 107,
3962
+ 109,
3963
+ 111,
3964
+ 113,
3965
+ 115,
3947
3966
  117,
3948
3967
  118,
3949
- 119
3968
+ 119,
3969
+ 120
3950
3970
  ],
3951
3971
  inclusive: !0
3952
3972
  }
3953
3973
  }
3954
3974
  };
3955
3975
  })();
3956
- function rt() {
3976
+ function it() {
3957
3977
  this.yy = {};
3958
3978
  }
3959
- return __name(rt, "Parser"), rt.prototype = nt, nt.Parser = rt, new rt();
3979
+ return e(it, "Parser"), it.prototype = rt, rt.Parser = it, new it();
3960
3980
  })();
3961
- parser.parser = parser;
3962
- var flow_default = parser, newParser = Object.assign({}, flow_default);
3963
- newParser.parse = (e) => {
3981
+ O.parser = O;
3982
+ var re = O, ie = Object.assign({}, re);
3983
+ ie.parse = (e) => {
3964
3984
  let t = e.replace(/}\s*\n/g, "}\n");
3965
- return flow_default.parse(t);
3985
+ return re.parse(t);
3966
3986
  };
3967
- var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
3968
- let i = channel_default;
3969
- return rgba_default(i(e, "r"), i(e, "g"), i(e, "b"), t);
3970
- }, "fade"), diagram = {
3971
- parser: flowParser_default,
3987
+ var ae = ie, oe = /* @__PURE__ */ e((e, t) => {
3988
+ let i = r;
3989
+ return n(i(e, "r"), i(e, "g"), i(e, "b"), t);
3990
+ }, "fade"), k = {
3991
+ parser: ae,
3972
3992
  get db() {
3973
- return new FlowDB();
3993
+ return new E();
3974
3994
  },
3975
- renderer: flowRenderer_v3_unified_default,
3976
- styles: /* @__PURE__ */ __name((e) => `.label {
3995
+ renderer: D,
3996
+ styles: /* @__PURE__ */ e((e) => `.label {
3977
3997
  font-family: ${e.fontFamily};
3978
3998
  color: ${e.nodeTextColor || e.textColor};
3979
3999
  }
@@ -3999,7 +4019,7 @@ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
3999
4019
  .node path {
4000
4020
  fill: ${e.mainBkg};
4001
4021
  stroke: ${e.nodeBorder};
4002
- stroke-width: 1px;
4022
+ stroke-width: ${e.strokeWidth ?? 1}px;
4003
4023
  }
4004
4024
  .rough-node .label text , .node .label text, .image-shape .label, .icon-shape .label {
4005
4025
  text-anchor: middle;
@@ -4037,7 +4057,7 @@ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
4037
4057
 
4038
4058
  .edgePath .path {
4039
4059
  stroke: ${e.lineColor};
4040
- stroke-width: 2.0px;
4060
+ stroke-width: ${e.strokeWidth ?? 2}px;
4041
4061
  }
4042
4062
 
4043
4063
  .flowchart-link {
@@ -4060,7 +4080,7 @@ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
4060
4080
 
4061
4081
  /* For html labels only */
4062
4082
  .labelBkg {
4063
- background-color: ${fade(e.edgeLabelBackground, .5)};
4083
+ background-color: ${oe(e.edgeLabelBackground, .5)};
4064
4084
  // background-color:
4065
4085
  }
4066
4086
 
@@ -4112,17 +4132,18 @@ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
4112
4132
  background-color: ${e.edgeLabelBackground};
4113
4133
  padding: 2px;
4114
4134
  }
4115
- rect {
4135
+ .label rect {
4116
4136
  opacity: 0.5;
4117
4137
  background-color: ${e.edgeLabelBackground};
4118
4138
  fill: ${e.edgeLabelBackground};
4119
4139
  }
4120
4140
  text-align: center;
4121
4141
  }
4122
- ${getIconStyles()}
4142
+ ${x()}
4123
4143
  `, "getStyles"),
4124
- init: /* @__PURE__ */ __name((e) => {
4125
- e.flowchart ||= {}, e.layout && setConfig2({ layout: e.layout }), e.flowchart.arrowMarkerAbsolute = e.arrowMarkerAbsolute, setConfig2({ flowchart: { arrowMarkerAbsolute: e.arrowMarkerAbsolute } });
4144
+ init: /* @__PURE__ */ e((e) => {
4145
+ e.flowchart ||= {}, e.layout && ee({ layout: e.layout }), e.flowchart.arrowMarkerAbsolute = e.arrowMarkerAbsolute, ee({ flowchart: { arrowMarkerAbsolute: e.arrowMarkerAbsolute } });
4126
4146
  }, "init")
4127
4147
  };
4128
- export { diagram };
4148
+ //#endregion
4149
+ export { k as diagram };