@loopstack/loopstack-studio 0.29.5 → 0.31.0

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 (122) hide show
  1. package/dist/_virtual/rolldown_runtime.js +3 -1
  2. package/dist/api/config.js +5 -4
  3. package/dist/api/environments.js +5 -1
  4. package/dist/api/processor.js +4 -1
  5. package/dist/app/EnvironmentEmbedRoot.js +22 -30
  6. package/dist/components/ai-elements/code-block.js +4 -4
  7. package/dist/components/dynamic-form/CodeContent.js +1 -1
  8. package/dist/components/dynamic-form/FormBody.js +1 -1
  9. package/dist/components/layout/StudioSidebar.js +116 -131
  10. package/dist/components/lists/ListView.js +46 -46
  11. package/dist/components/motion/FadeIn.js +72 -0
  12. package/dist/components/motion/StreamingText.js +49 -0
  13. package/dist/components/ui/accordion.js +2 -2
  14. package/dist/components/ui-widgets/UiWidget.js +11 -10
  15. package/dist/components/ui-widgets/widgets/AiPromptInput.js +31 -28
  16. package/dist/events/sse-client-events.js +7 -1
  17. package/dist/features/code-explorer/components/FileContentViewer.js +2 -2
  18. package/dist/features/dashboard/AppLauncher.js +84 -0
  19. package/dist/features/debug/components/WorkflowFlowViewer.js +49 -51
  20. package/dist/features/documents/DocumentRenderer.js +18 -17
  21. package/dist/features/documents/components/DocumentItem.js +42 -20
  22. package/dist/features/documents/components/DocumentList.js +34 -36
  23. package/dist/features/documents/components/DocumentMetadataPills.js +102 -49
  24. package/dist/features/documents/document-details/DocumentDetails.js +577 -377
  25. package/dist/features/documents/document-details/PromptDetails.js +118 -130
  26. package/dist/features/documents/document-details/document-debug-utils.js +100 -0
  27. package/dist/features/documents/renderers/ChoicesRenderer.js +41 -38
  28. package/dist/features/documents/renderers/ConfirmPromptRenderer.js +31 -28
  29. package/dist/features/documents/renderers/DocumentFormRenderer.js +62 -70
  30. package/dist/features/documents/renderers/LlmMessage.js +52 -47
  31. package/dist/features/documents/renderers/TextPromptRenderer.js +32 -29
  32. package/dist/features/documents/renderers/useDocumentTransition.js +4 -4
  33. package/dist/features/feature-registry/FeatureRegistryProvider.js +32 -10
  34. package/dist/features/feature-registry/available-features.js +12 -0
  35. package/dist/features/feature-registry/index.js +2 -1
  36. package/dist/features/file-explorer/components/FileExplorerPanel.js +55 -51
  37. package/dist/features/git/components/GitBranchBadge.js +31 -0
  38. package/dist/features/git/components/GitCommitList.js +46 -0
  39. package/dist/features/git/components/GitRemoteStatus.js +84 -0
  40. package/dist/features/git/components/WorkbenchGitPanel.js +81 -0
  41. package/dist/features/git/git-feature.js +12 -0
  42. package/dist/features/git/hooks/useGit.js +78 -0
  43. package/dist/features/git/index.js +1 -0
  44. package/dist/features/oauth/OAuthPromptRenderer.js +137 -142
  45. package/dist/features/runs/Runs.js +73 -73
  46. package/dist/features/secrets/components/WorkbenchSecretsPanel.js +1 -1
  47. package/dist/features/secrets/renderers/SecretInputRenderer.js +30 -29
  48. package/dist/features/workbench/Workbench.js +25 -33
  49. package/dist/features/workbench/WorkflowItem.js +9 -9
  50. package/dist/features/workbench/WorkflowList.js +61 -62
  51. package/dist/features/workbench/components/NewRunDialog.js +237 -209
  52. package/dist/features/workbench/components/RecentRunItem.js +3 -3
  53. package/dist/features/workbench/components/WorkbenchEnvironmentPanel.js +8 -8
  54. package/dist/features/workbench/components/WorkbenchIconSidebar.js +74 -109
  55. package/dist/features/workbench/components/WorkbenchSidebarShell.js +3 -3
  56. package/dist/features/workbench/components/WorkflowForms.js +11 -10
  57. package/dist/features/workbench/components/WorkflowHistoryItem.js +16 -36
  58. package/dist/features/workbench/components/WorkflowHistoryList.js +19 -17
  59. package/dist/features/workbench/components/buttons/WorkflowButtons.js +3 -3
  60. package/dist/features/workbench/hooks/useLlmStreamingDocuments.js +159 -0
  61. package/dist/features/workbench/hooks/useWorkflowData.js +58 -31
  62. package/dist/features/workbench/index.js +2 -2
  63. package/dist/features/workbench/providers/WorkbenchLayoutProvider.js +53 -53
  64. package/dist/features/workspaces/Workspaces.js +166 -136
  65. package/dist/features/workspaces/components/CreateWorkspace.js +115 -107
  66. package/dist/features/workspaces/components/ExecutionTimeline.js +2 -2
  67. package/dist/features/workspaces/components/WorkflowRunForm.js +127 -104
  68. package/dist/features/workspaces/components/WorkspaceHomePage.js +6 -89
  69. package/dist/features/workspaces/components/workflow-form/ArgumentsView.js +1 -1
  70. package/dist/features/workspaces/components/workflow-form/SelectionView.js +15 -15
  71. package/dist/hooks/index.js +3 -2
  72. package/dist/hooks/query-keys.js +43 -30
  73. package/dist/hooks/useConfig.js +28 -22
  74. package/dist/hooks/useEnvironments.js +27 -2
  75. package/dist/hooks/useProcessor.js +14 -1
  76. package/dist/hooks/useWorkflows.js +4 -4
  77. package/dist/index.d.ts +119 -18
  78. package/dist/index.js +10 -9
  79. package/dist/node_modules/d3/src/index.js +13 -13
  80. package/dist/node_modules/d3-scale/src/continuous.js +16 -16
  81. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-3BPJPVTR.js +43 -43
  82. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-GPEHLZMM.js +270 -270
  83. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-AAUBKEIU.js +90 -90
  84. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-3OPIFGDE.js +458 -458
  85. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +3 -3
  86. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5ZQYHXKU.js +37 -37
  87. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-727SXJPM.js +208 -208
  88. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-KSCS5N6A.js +145 -145
  89. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ND2GUHAM.js +7 -7
  90. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-O5CBEL6O.js +41 -41
  91. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-WU5MYG2G.js +3 -3
  92. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +6 -6
  93. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-KO2AKTUF.js +30 -30
  94. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-OG6HWLK6.js +82 -82
  95. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-TEJ5UH35.js +65 -65
  96. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-I6XJVG4X.js +227 -227
  97. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-6RSMTGT7.js +104 -104
  98. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-PVQCEYII.js +104 -104
  99. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-JHISSGLW.js +49 -49
  100. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-W4KKPZXB.js +101 -101
  101. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-5OEKKPKP.js +20 -20
  102. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-3UESZ5HK.js +354 -354
  103. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-AJRCARHV.js +53 -53
  104. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-PNZ67QCA.js +113 -113
  105. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-CIIHVFJN.js +90 -90
  106. package/dist/node_modules/mermaid/dist/mermaid.core.js +156 -156
  107. package/dist/node_modules/motion/dist/es/react.js +9 -2
  108. package/dist/pages/DashboardPage.js +20 -74
  109. package/dist/pages/DebugWorkflowDetailsPage.js +2 -2
  110. package/dist/pages/DebugWorkflowsPage.js +76 -106
  111. package/dist/pages/EmbedWorkbenchPage.js +1 -1
  112. package/dist/pages/PreviewWorkbenchPage.js +6 -6
  113. package/dist/pages/WorkbenchPage.js +43 -47
  114. package/dist/pages/WorkflowDebugPage.js +6 -12
  115. package/dist/pages/WorkspacePage.js +40 -66
  116. package/dist/pages/WorkspaceRunsPage.js +24 -31
  117. package/dist/routing/LocalRouter.js +1 -1
  118. package/package.json +2 -2
  119. package/dist/features/dashboard/Dashboard.js +0 -125
  120. package/dist/features/dashboard/RunItem.js +0 -78
  121. package/dist/features/dashboard/RunList.js +0 -32
  122. package/dist/hooks/useDashboard.js +0 -16
@@ -1,9 +1,9 @@
1
+ import select_default from "../../../../d3-selection/src/select.js";
1
2
  import { __name, log } from "./chunk-AGHRB4JF.js";
2
3
  import rgba_default from "../../../../khroma/dist/methods/rgba.js";
3
4
  import channel_default from "../../../../khroma/dist/methods/channel.js";
4
5
  import { purify } from "../../../../dompurify/dist/purify.es.js";
5
6
  import { clear, common_default, defaultConfig2, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, setAccDescription, setAccTitle, setConfig2, setDiagramTitle } from "./chunk-CSCIHK7Q.js";
6
- import select_default from "../../../../d3-selection/src/select.js";
7
7
  import "../../../../d3/src/index.js";
8
8
  import { JSON_SCHEMA, load } from "./chunk-XPW4576I.js";
9
9
  import "./chunk-BSJP7CBP.js";
@@ -41,7 +41,7 @@ var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
41
41
  for (let t of this.vertices.values()) if (t.id === e) return this.diagramId ? `${this.diagramId}-${t.domId}` : t.domId;
42
42
  return this.diagramId ? `${this.diagramId}-${e}` : e;
43
43
  }
44
- addVertex(e, n, r, i, a, o, s = {}, c) {
44
+ addVertex(e, t, r, i, a, o, s = {}, c) {
45
45
  if (!e || e.trim().length === 0) return;
46
46
  let l;
47
47
  if (c !== void 0) {
@@ -55,13 +55,13 @@ var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
55
55
  return;
56
56
  }
57
57
  let d, f = this.vertices.get(e);
58
- if (f === void 0 && (n === void 0 && r === void 0 && i != null && log.warn(`Style applied to unknown node "${e}". This may indicate a typo. The node will be created automatically.`), f = {
58
+ if (f === void 0 && (t === void 0 && r === void 0 && i != null && log.warn(`Style applied to unknown node "${e}". This may indicate a typo. The node will be created automatically.`), f = {
59
59
  id: e,
60
60
  labelType: "text",
61
61
  domId: MERMAID_DOM_ID_PREFIX + e + "-" + this.vertexCounter,
62
62
  styles: [],
63
63
  classes: []
64
- }, this.vertices.set(e, f)), this.vertexCounter++, n === void 0 ? f.text === void 0 && (f.text = e) : (this.config = getConfig2(), d = this.sanitizeText(n.text.trim()), f.labelType = n.type, d.startsWith("\"") && d.endsWith("\"") && (d = d.substring(1, d.length - 1)), f.text = d), r !== void 0 && (f.type = r), i?.forEach((e) => {
64
+ }, 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), r !== void 0 && (f.type = r), i?.forEach((e) => {
65
65
  f.styles.push(e);
66
66
  }), a?.forEach((e) => {
67
67
  f.classes.push(e);
@@ -74,10 +74,10 @@ var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
74
74
  l?.label && (f.text = l?.label, f.labelType = this.sanitizeNodeLabelType(l?.labelType)), l?.icon && (f.icon = l?.icon, !l.label?.trim() && f.text === e && (f.text = "")), l?.form && (f.form = l?.form), l?.pos && (f.pos = l?.pos), l?.img && (f.img = l?.img, !l.label?.trim() && f.text === e && (f.text = "")), l?.constraint && (f.constraint = l.constraint), l.w && (f.assetWidth = Number(l.w)), l.h && (f.assetHeight = Number(l.h));
75
75
  }
76
76
  }
77
- addSingleLink(e, n, r, i) {
77
+ addSingleLink(e, t, r, i) {
78
78
  let a = {
79
79
  start: e,
80
- end: n,
80
+ end: t,
81
81
  type: void 0,
82
82
  text: "",
83
83
  labelType: "text",
@@ -108,12 +108,12 @@ You have to call mermaid.initialize.`);
108
108
  isLinkData(e) {
109
109
  return typeof e == "object" && !!e && "id" in e && typeof e.id == "string";
110
110
  }
111
- addLink(e, n, r) {
111
+ addLink(e, t, r) {
112
112
  let i = this.isLinkData(r) ? r.id.replace("@", "") : void 0;
113
- log.info("addLink", e, n, i);
114
- for (let t of e) for (let a of n) {
115
- let o = t === e[e.length - 1], s = a === n[0];
116
- o && s ? this.addSingleLink(t, a, r, i) : this.addSingleLink(t, a, r, void 0);
113
+ log.info("addLink", e, t, i);
114
+ for (let n of e) for (let a of t) {
115
+ let o = n === e[e.length - 1], s = a === t[0];
116
+ o && s ? this.addSingleLink(n, a, r, i) : this.addSingleLink(n, a, r, void 0);
117
117
  }
118
118
  }
119
119
  updateLinkInterpolate(e, t) {
@@ -213,15 +213,15 @@ You have to call mermaid.initialize.`);
213
213
  getClasses() {
214
214
  return this.classes;
215
215
  }
216
- setupToolTips(e) {
217
- let t = createTooltip();
218
- select_default(e).select("svg").selectAll("g.node").on("mouseover", (e) => {
219
- let n = select_default(e.currentTarget), r = n.attr("title");
220
- if (r === null) return;
221
- let a = e.currentTarget?.getBoundingClientRect();
222
- 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(purify.sanitize(r)), n.classed("hover", !0);
223
- }).on("mouseout", (e) => {
224
- t.transition().duration(500).style("opacity", 0), select_default(e.currentTarget).classed("hover", !1);
216
+ setupToolTips(t) {
217
+ let n = createTooltip();
218
+ select_default(t).select("svg").selectAll("g.node").on("mouseover", (t) => {
219
+ let r = select_default(t.currentTarget), i = r.attr("title");
220
+ if (i === null) return;
221
+ let o = t.currentTarget?.getBoundingClientRect();
222
+ n.transition().duration(200).style("opacity", ".9"), n.text(r.attr("title")).style("left", window.scrollX + o.left + (o.right - o.left) / 2 + "px").style("top", window.scrollY + o.bottom + "px"), n.html(purify.sanitize(i)), r.classed("hover", !0);
223
+ }).on("mouseout", (t) => {
224
+ n.transition().duration(500).style("opacity", 0), select_default(t.currentTarget).classed("hover", !1);
225
225
  });
226
226
  }
227
227
  clear(e = "gen-2") {
@@ -233,9 +233,9 @@ You have to call mermaid.initialize.`);
233
233
  defaultStyle() {
234
234
  return "fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;";
235
235
  }
236
- addSubGraph(n, r, i) {
237
- let a = n.text.trim(), o = i.text;
238
- n === i && /\s/.exec(i.text) && (a = void 0);
236
+ addSubGraph(e, r, i) {
237
+ let a = e.text.trim(), o = i.text;
238
+ e === i && /\s/.exec(i.text) && (a = void 0);
239
239
  let s = (/* @__PURE__ */ __name((e) => {
240
240
  let t = {
241
241
  boolean: {},
@@ -537,23 +537,23 @@ You have to call mermaid.initialize.`);
537
537
  getClasses: /* @__PURE__ */ __name(function(e, t) {
538
538
  return t.db.getClasses();
539
539
  }, "getClasses"),
540
- draw: /* @__PURE__ */ __name(async function(e, n, r, i) {
541
- log.info("REF0:"), log.info("Drawing state diagram (v2)", n);
540
+ draw: /* @__PURE__ */ __name(async function(e, t, r, i) {
541
+ log.info("REF0:"), log.info("Drawing state diagram (v2)", t);
542
542
  let { securityLevel: a, flowchart: o, layout: s } = getConfig2();
543
- i.db.setDiagramId(n), log.debug("Before getData: ");
543
+ i.db.setDiagramId(t), log.debug("Before getData: ");
544
544
  let c = i.db.getData();
545
545
  log.debug("Data: ", c);
546
- let l = getDiagramElement(n, a), u = i.db.getDirection();
546
+ let l = getDiagramElement(t, a), u = i.db.getDirection();
547
547
  c.type = i.type, c.layoutAlgorithm = getRegisteredLayoutAlgorithm(s), c.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."), c.direction = u, c.nodeSpacing = o?.nodeSpacing || 50, c.rankSpacing = o?.rankSpacing || 50, c.markers = [
548
548
  "point",
549
549
  "circle",
550
550
  "cross"
551
- ], c.diagramId = n, log.debug("REF1:", c), await render(c, l);
551
+ ], c.diagramId = t, log.debug("REF1:", c), await render(c, l);
552
552
  let d = c.config.flowchart?.diagramPadding ?? 8;
553
553
  utils_default.insertTitle(l, "flowchartTitleText", o?.titleTopMargin || 0, i.db.getDiagramTitle()), setupViewPortForSVG(l, d, "flowchart", o?.useMaxWidth || !1);
554
554
  }, "draw")
555
555
  }, parser = (function() {
556
- var t = /* @__PURE__ */ __name(function(e, t, n, r) {
556
+ var e = /* @__PURE__ */ __name(function(e, t, n, r) {
557
557
  for (n ||= {}, r = e.length; r--; n[e[r]] = t);
558
558
  return n;
559
559
  }, "o"), n = [1, 4], r = [1, 3], i = [1, 5], a = [
@@ -587,7 +587,7 @@ You have to call mermaid.initialize.`);
587
587
  123,
588
588
  124,
589
589
  125
590
- ], o = [2, 2], s = [1, 13], c = [1, 14], l = [1, 15], ee = [1, 16], u = [1, 23], d = [1, 25], f = [1, 26], te = [1, 27], p = [1, 50], m = [1, 49], h = [1, 29], g = [1, 30], ne = [1, 31], re = [1, 32], ie = [1, 33], _ = [1, 45], v = [1, 47], y = [1, 43], b = [1, 48], x = [1, 44], S = [1, 51], C = [1, 46], w = [1, 52], T = [1, 53], E = [1, 34], ae = [1, 35], oe = [1, 36], se = [1, 37], ce = [1, 38], D = [1, 58], O = [
590
+ ], o = [2, 2], s = [1, 13], c = [1, 14], l = [1, 15], u = [1, 16], ee = [1, 23], d = [1, 25], f = [1, 26], te = [1, 27], p = [1, 50], m = [1, 49], h = [1, 29], g = [1, 30], ne = [1, 31], re = [1, 32], ie = [1, 33], _ = [1, 45], v = [1, 47], y = [1, 43], b = [1, 48], x = [1, 44], S = [1, 51], C = [1, 46], w = [1, 52], T = [1, 53], E = [1, 34], ae = [1, 35], oe = [1, 36], se = [1, 37], ce = [1, 38], D = [1, 58], O = [
591
591
  1,
592
592
  8,
593
593
  9,
@@ -1642,7 +1642,7 @@ You have to call mermaid.initialize.`);
1642
1642
  12: i
1643
1643
  },
1644
1644
  { 1: [3] },
1645
- t(a, o, { 5: 6 }),
1645
+ e(a, o, { 5: 6 }),
1646
1646
  {
1647
1647
  4: 7,
1648
1648
  9: n,
@@ -1666,14 +1666,14 @@ You have to call mermaid.initialize.`);
1666
1666
  8: s,
1667
1667
  9: c,
1668
1668
  10: l,
1669
- 11: ee,
1669
+ 11: u,
1670
1670
  20: 17,
1671
1671
  22: 18,
1672
1672
  23: 19,
1673
1673
  24: 20,
1674
1674
  25: 21,
1675
1675
  26: 22,
1676
- 27: u,
1676
+ 27: ee,
1677
1677
  33: 24,
1678
1678
  34: d,
1679
1679
  36: f,
@@ -1705,9 +1705,9 @@ You have to call mermaid.initialize.`);
1705
1705
  124: se,
1706
1706
  125: ce
1707
1707
  },
1708
- t(a, [2, 9]),
1709
- t(a, [2, 10]),
1710
- t(a, [2, 11]),
1708
+ e(a, [2, 9]),
1709
+ e(a, [2, 10]),
1710
+ e(a, [2, 11]),
1711
1711
  {
1712
1712
  8: [1, 55],
1713
1713
  9: [1, 56],
@@ -1715,12 +1715,12 @@ You have to call mermaid.initialize.`);
1715
1715
  15: 54,
1716
1716
  18: 57
1717
1717
  },
1718
- t(O, [2, 3]),
1719
- t(O, [2, 4]),
1720
- t(O, [2, 5]),
1721
- t(O, [2, 6]),
1722
- t(O, [2, 7]),
1723
- t(O, [2, 8]),
1718
+ e(O, [2, 3]),
1719
+ e(O, [2, 4]),
1720
+ e(O, [2, 5]),
1721
+ e(O, [2, 6]),
1722
+ e(O, [2, 7]),
1723
+ e(O, [2, 8]),
1724
1724
  {
1725
1725
  8: k,
1726
1726
  9: A,
@@ -1769,11 +1769,11 @@ You have to call mermaid.initialize.`);
1769
1769
  11: j,
1770
1770
  21: 74
1771
1771
  },
1772
- t(O, [2, 36]),
1772
+ e(O, [2, 36]),
1773
1773
  { 35: [1, 75] },
1774
1774
  { 37: [1, 76] },
1775
- t(O, [2, 39]),
1776
- t(le, [2, 50], {
1775
+ e(O, [2, 39]),
1776
+ e(le, [2, 50], {
1777
1777
  18: 77,
1778
1778
  39: 78,
1779
1779
  10: D,
@@ -1801,14 +1801,14 @@ You have to call mermaid.initialize.`);
1801
1801
  116: xe,
1802
1802
  120: 88
1803
1803
  },
1804
- t(O, [2, 185]),
1805
- t(O, [2, 186]),
1806
- t(O, [2, 187]),
1807
- t(O, [2, 188]),
1808
- t(O, [2, 189]),
1809
- t(M, [2, 51]),
1810
- t(M, [2, 54], { 46: [1, 100] }),
1811
- t(N, [2, 72], {
1804
+ e(O, [2, 185]),
1805
+ e(O, [2, 186]),
1806
+ e(O, [2, 187]),
1807
+ e(O, [2, 188]),
1808
+ e(O, [2, 189]),
1809
+ e(M, [2, 51]),
1810
+ e(M, [2, 54], { 46: [1, 100] }),
1811
+ e(N, [2, 72], {
1812
1812
  113: 113,
1813
1813
  29: [1, 101],
1814
1814
  44: p,
@@ -1834,27 +1834,27 @@ You have to call mermaid.initialize.`);
1834
1834
  115: w,
1835
1835
  116: T
1836
1836
  }),
1837
- t(P, [2, 181]),
1838
- t(P, [2, 142]),
1839
- t(P, [2, 143]),
1840
- t(P, [2, 144]),
1841
- t(P, [2, 145]),
1842
- t(P, [2, 146]),
1843
- t(P, [2, 147]),
1844
- t(P, [2, 148]),
1845
- t(P, [2, 149]),
1846
- t(P, [2, 150]),
1847
- t(P, [2, 151]),
1848
- t(P, [2, 152]),
1849
- t(a, [2, 12]),
1850
- t(a, [2, 18]),
1851
- t(a, [2, 19]),
1837
+ e(P, [2, 181]),
1838
+ e(P, [2, 142]),
1839
+ e(P, [2, 143]),
1840
+ e(P, [2, 144]),
1841
+ e(P, [2, 145]),
1842
+ e(P, [2, 146]),
1843
+ e(P, [2, 147]),
1844
+ e(P, [2, 148]),
1845
+ e(P, [2, 149]),
1846
+ e(P, [2, 150]),
1847
+ e(P, [2, 151]),
1848
+ e(P, [2, 152]),
1849
+ e(a, [2, 12]),
1850
+ e(a, [2, 18]),
1851
+ e(a, [2, 19]),
1852
1852
  { 9: [1, 114] },
1853
- t(Se, [2, 26], {
1853
+ e(Se, [2, 26], {
1854
1854
  18: 115,
1855
1855
  10: D
1856
1856
  }),
1857
- t(O, [2, 27]),
1857
+ e(O, [2, 27]),
1858
1858
  {
1859
1859
  42: 116,
1860
1860
  43: 39,
@@ -1873,10 +1873,10 @@ You have to call mermaid.initialize.`);
1873
1873
  115: w,
1874
1874
  116: T
1875
1875
  },
1876
- t(O, [2, 40]),
1877
- t(O, [2, 41]),
1878
- t(O, [2, 42]),
1879
- t(Ce, [2, 76], {
1876
+ e(O, [2, 40]),
1877
+ e(O, [2, 41]),
1878
+ e(O, [2, 42]),
1879
+ e(Ce, [2, 76], {
1880
1880
  73: 117,
1881
1881
  62: [1, 119],
1882
1882
  74: [1, 118]
@@ -1893,12 +1893,12 @@ You have to call mermaid.initialize.`);
1893
1893
  75: [1, 126],
1894
1894
  77: [1, 127]
1895
1895
  },
1896
- t(Oe, [2, 83]),
1897
- t(O, [2, 28]),
1898
- t(O, [2, 29]),
1899
- t(O, [2, 30]),
1900
- t(O, [2, 31]),
1901
- t(O, [2, 32]),
1896
+ e(Oe, [2, 83]),
1897
+ e(O, [2, 28]),
1898
+ e(O, [2, 29]),
1899
+ e(O, [2, 30]),
1900
+ e(O, [2, 31]),
1901
+ e(O, [2, 32]),
1902
1902
  {
1903
1903
  10: ke,
1904
1904
  12: Ae,
@@ -1927,16 +1927,16 @@ You have to call mermaid.initialize.`);
1927
1927
  115: Je,
1928
1928
  116: Ye
1929
1929
  },
1930
- t(Xe, o, { 5: 154 }),
1931
- t(O, [2, 37]),
1932
- t(O, [2, 38]),
1933
- t(le, [2, 48], { 44: Ze }),
1934
- t(le, [2, 49], {
1930
+ e(Xe, o, { 5: 154 }),
1931
+ e(O, [2, 37]),
1932
+ e(O, [2, 38]),
1933
+ e(le, [2, 48], { 44: Ze }),
1934
+ e(le, [2, 49], {
1935
1935
  18: 156,
1936
1936
  10: D,
1937
1937
  40: Qe
1938
1938
  }),
1939
- t(M, [2, 44]),
1939
+ e(M, [2, 44]),
1940
1940
  {
1941
1941
  44: p,
1942
1942
  47: 158,
@@ -1987,12 +1987,12 @@ You have to call mermaid.initialize.`);
1987
1987
  115: w,
1988
1988
  116: T
1989
1989
  },
1990
- t(F, [2, 107], {
1990
+ e(F, [2, 107], {
1991
1991
  10: [1, 164],
1992
1992
  96: [1, 165]
1993
1993
  }),
1994
1994
  { 80: [1, 166] },
1995
- t(F, [2, 115], {
1995
+ e(F, [2, 115], {
1996
1996
  120: 168,
1997
1997
  10: [1, 167],
1998
1998
  14: de,
@@ -2007,19 +2007,19 @@ You have to call mermaid.initialize.`);
2007
2007
  115: be,
2008
2008
  116: xe
2009
2009
  }),
2010
- t(F, [2, 117], { 10: [1, 169] }),
2011
- t(I, [2, 183]),
2012
- t(I, [2, 170]),
2013
- t(I, [2, 171]),
2014
- t(I, [2, 172]),
2015
- t(I, [2, 173]),
2016
- t(I, [2, 174]),
2017
- t(I, [2, 175]),
2018
- t(I, [2, 176]),
2019
- t(I, [2, 177]),
2020
- t(I, [2, 178]),
2021
- t(I, [2, 179]),
2022
- t(I, [2, 180]),
2010
+ e(F, [2, 117], { 10: [1, 169] }),
2011
+ e(I, [2, 183]),
2012
+ e(I, [2, 170]),
2013
+ e(I, [2, 171]),
2014
+ e(I, [2, 172]),
2015
+ e(I, [2, 173]),
2016
+ e(I, [2, 174]),
2017
+ e(I, [2, 175]),
2018
+ e(I, [2, 176]),
2019
+ e(I, [2, 177]),
2020
+ e(I, [2, 178]),
2021
+ e(I, [2, 179]),
2022
+ e(I, [2, 180]),
2023
2023
  {
2024
2024
  44: p,
2025
2025
  47: 170,
@@ -2148,16 +2148,16 @@ You have to call mermaid.initialize.`);
2148
2148
  117: V,
2149
2149
  118: H
2150
2150
  },
2151
- t(P, [2, 182]),
2152
- t(a, [2, 20]),
2153
- t(Se, [2, 25]),
2154
- t(le, [2, 46], {
2151
+ e(P, [2, 182]),
2152
+ e(a, [2, 20]),
2153
+ e(Se, [2, 25]),
2154
+ e(le, [2, 46], {
2155
2155
  39: 192,
2156
2156
  18: 193,
2157
2157
  10: D,
2158
2158
  40: ue
2159
2159
  }),
2160
- t(Ce, [2, 73], { 10: [1, 194] }),
2160
+ e(Ce, [2, 73], { 10: [1, 194] }),
2161
2161
  { 10: [1, 195] },
2162
2162
  {
2163
2163
  30: 196,
@@ -2175,11 +2175,11 @@ You have to call mermaid.initialize.`);
2175
2175
  116: Ee,
2176
2176
  119: De
2177
2177
  },
2178
- t($e, [2, 79]),
2179
- t($e, [2, 81]),
2180
- t($e, [2, 82]),
2181
- t($e, [2, 168]),
2182
- t($e, [2, 169]),
2178
+ e($e, [2, 79]),
2179
+ e($e, [2, 81]),
2180
+ e($e, [2, 82]),
2181
+ e($e, [2, 168]),
2182
+ e($e, [2, 169]),
2183
2183
  {
2184
2184
  76: 199,
2185
2185
  79: 121,
@@ -2188,7 +2188,7 @@ You have to call mermaid.initialize.`);
2188
2188
  116: Ee,
2189
2189
  119: De
2190
2190
  },
2191
- t(Oe, [2, 84]),
2191
+ e(Oe, [2, 84]),
2192
2192
  {
2193
2193
  8: k,
2194
2194
  9: A,
@@ -2219,45 +2219,45 @@ You have to call mermaid.initialize.`);
2219
2219
  115: Je,
2220
2220
  116: Ye
2221
2221
  },
2222
- t(U, [2, 101]),
2223
- t(U, [2, 103]),
2224
- t(U, [2, 104]),
2225
- t(U, [2, 157]),
2226
- t(U, [2, 158]),
2227
- t(U, [2, 159]),
2228
- t(U, [2, 160]),
2229
- t(U, [2, 161]),
2230
- t(U, [2, 162]),
2231
- t(U, [2, 163]),
2232
- t(U, [2, 164]),
2233
- t(U, [2, 165]),
2234
- t(U, [2, 166]),
2235
- t(U, [2, 167]),
2236
- t(U, [2, 90]),
2237
- t(U, [2, 91]),
2238
- t(U, [2, 92]),
2239
- t(U, [2, 93]),
2240
- t(U, [2, 94]),
2241
- t(U, [2, 95]),
2242
- t(U, [2, 96]),
2243
- t(U, [2, 97]),
2244
- t(U, [2, 98]),
2245
- t(U, [2, 99]),
2246
- t(U, [2, 100]),
2222
+ e(U, [2, 101]),
2223
+ e(U, [2, 103]),
2224
+ e(U, [2, 104]),
2225
+ e(U, [2, 157]),
2226
+ e(U, [2, 158]),
2227
+ e(U, [2, 159]),
2228
+ e(U, [2, 160]),
2229
+ e(U, [2, 161]),
2230
+ e(U, [2, 162]),
2231
+ e(U, [2, 163]),
2232
+ e(U, [2, 164]),
2233
+ e(U, [2, 165]),
2234
+ e(U, [2, 166]),
2235
+ e(U, [2, 167]),
2236
+ e(U, [2, 90]),
2237
+ e(U, [2, 91]),
2238
+ e(U, [2, 92]),
2239
+ e(U, [2, 93]),
2240
+ e(U, [2, 94]),
2241
+ e(U, [2, 95]),
2242
+ e(U, [2, 96]),
2243
+ e(U, [2, 97]),
2244
+ e(U, [2, 98]),
2245
+ e(U, [2, 99]),
2246
+ e(U, [2, 100]),
2247
2247
  {
2248
2248
  6: 11,
2249
2249
  7: 12,
2250
2250
  8: s,
2251
2251
  9: c,
2252
2252
  10: l,
2253
- 11: ee,
2253
+ 11: u,
2254
2254
  20: 17,
2255
2255
  22: 18,
2256
2256
  23: 19,
2257
2257
  24: 20,
2258
2258
  25: 21,
2259
2259
  26: 22,
2260
- 27: u,
2260
+ 27: ee,
2261
2261
  32: [1, 203],
2262
2262
  33: 24,
2263
2263
  34: d,
@@ -2295,7 +2295,7 @@ You have to call mermaid.initialize.`);
2295
2295
  18: 204
2296
2296
  },
2297
2297
  { 44: [1, 205] },
2298
- t(M, [2, 43]),
2298
+ e(M, [2, 43]),
2299
2299
  {
2300
2300
  10: [1, 206],
2301
2301
  44: p,
@@ -2316,7 +2316,7 @@ You have to call mermaid.initialize.`);
2316
2316
  10: [1, 208],
2317
2317
  106: [1, 209]
2318
2318
  },
2319
- t(et, [2, 128]),
2319
+ e(et, [2, 128]),
2320
2320
  {
2321
2321
  10: [1, 210],
2322
2322
  44: p,
@@ -2348,15 +2348,15 @@ You have to call mermaid.initialize.`);
2348
2348
  116: T
2349
2349
  },
2350
2350
  { 80: [1, 212] },
2351
- t(F, [2, 109], { 10: [1, 213] }),
2352
- t(F, [2, 111], { 10: [1, 214] }),
2351
+ e(F, [2, 109], { 10: [1, 213] }),
2352
+ e(F, [2, 111], { 10: [1, 214] }),
2353
2353
  { 80: [1, 215] },
2354
- t(I, [2, 184]),
2354
+ e(I, [2, 184]),
2355
2355
  {
2356
2356
  80: [1, 216],
2357
2357
  98: [1, 217]
2358
2358
  },
2359
- t(M, [2, 55], {
2359
+ e(M, [2, 55], {
2360
2360
  113: 113,
2361
2361
  44: p,
2362
2362
  60: m,
@@ -2378,13 +2378,13 @@ You have to call mermaid.initialize.`);
2378
2378
  117: V,
2379
2379
  118: H
2380
2380
  },
2381
- t(W, [2, 86]),
2382
- t(W, [2, 88]),
2383
- t(W, [2, 89]),
2384
- t(W, [2, 153]),
2385
- t(W, [2, 154]),
2386
- t(W, [2, 155]),
2387
- t(W, [2, 156]),
2381
+ e(W, [2, 86]),
2382
+ e(W, [2, 88]),
2383
+ e(W, [2, 89]),
2384
+ e(W, [2, 153]),
2385
+ e(W, [2, 154]),
2386
+ e(W, [2, 155]),
2387
+ e(W, [2, 156]),
2388
2388
  {
2389
2389
  49: [1, 220],
2390
2390
  67: L,
@@ -2488,14 +2488,14 @@ You have to call mermaid.initialize.`);
2488
2488
  117: V,
2489
2489
  118: H
2490
2490
  },
2491
- t(le, [2, 45], {
2491
+ e(le, [2, 45], {
2492
2492
  18: 156,
2493
2493
  10: D,
2494
2494
  40: Qe
2495
2495
  }),
2496
- t(le, [2, 47], { 44: Ze }),
2497
- t(Ce, [2, 75]),
2498
- t(Ce, [2, 74]),
2496
+ e(le, [2, 47], { 44: Ze }),
2497
+ e(Ce, [2, 75]),
2498
+ e(Ce, [2, 74]),
2499
2499
  {
2500
2500
  62: [1, 235],
2501
2501
  67: L,
@@ -2504,8 +2504,8 @@ You have to call mermaid.initialize.`);
2504
2504
  117: V,
2505
2505
  118: H
2506
2506
  },
2507
- t(Ce, [2, 77]),
2508
- t($e, [2, 80]),
2507
+ e(Ce, [2, 77]),
2508
+ e($e, [2, 80]),
2509
2509
  {
2510
2510
  77: [1, 236],
2511
2511
  79: 198,
@@ -2522,9 +2522,9 @@ You have to call mermaid.initialize.`);
2522
2522
  117: V,
2523
2523
  118: H
2524
2524
  },
2525
- t(Xe, o, { 5: 238 }),
2526
- t(U, [2, 102]),
2527
- t(O, [2, 35]),
2525
+ e(Xe, o, { 5: 238 }),
2526
+ e(U, [2, 102]),
2527
+ e(O, [2, 35]),
2528
2528
  {
2529
2529
  43: 239,
2530
2530
  44: p,
@@ -2616,18 +2616,18 @@ You have to call mermaid.initialize.`);
2616
2616
  115: w,
2617
2617
  116: T
2618
2618
  },
2619
- t(F, [2, 108]),
2619
+ e(F, [2, 108]),
2620
2620
  { 80: [1, 259] },
2621
2621
  {
2622
2622
  80: [1, 260],
2623
2623
  98: [1, 261]
2624
2624
  },
2625
- t(F, [2, 116]),
2626
- t(F, [2, 118], { 10: [1, 262] }),
2627
- t(F, [2, 119]),
2628
- t(N, [2, 56]),
2629
- t(W, [2, 87]),
2630
- t(N, [2, 57]),
2625
+ e(F, [2, 116]),
2626
+ e(F, [2, 118], { 10: [1, 262] }),
2627
+ e(F, [2, 119]),
2628
+ e(N, [2, 56]),
2629
+ e(W, [2, 87]),
2630
+ e(N, [2, 57]),
2631
2631
  {
2632
2632
  51: [1, 263],
2633
2633
  67: L,
@@ -2636,13 +2636,13 @@ You have to call mermaid.initialize.`);
2636
2636
  117: V,
2637
2637
  118: H
2638
2638
  },
2639
- t(N, [2, 64]),
2640
- t(N, [2, 59]),
2641
- t(N, [2, 60]),
2642
- t(N, [2, 61]),
2639
+ e(N, [2, 64]),
2640
+ e(N, [2, 59]),
2641
+ e(N, [2, 60]),
2642
+ e(N, [2, 61]),
2643
2643
  { 109: [1, 264] },
2644
- t(N, [2, 63]),
2645
- t(N, [2, 65]),
2644
+ e(N, [2, 63]),
2645
+ e(N, [2, 65]),
2646
2646
  {
2647
2647
  66: [1, 265],
2648
2648
  67: L,
@@ -2651,12 +2651,12 @@ You have to call mermaid.initialize.`);
2651
2651
  117: V,
2652
2652
  118: H
2653
2653
  },
2654
- t(N, [2, 67]),
2655
- t(N, [2, 68]),
2656
- t(N, [2, 70]),
2657
- t(N, [2, 69]),
2658
- t(N, [2, 71]),
2659
- t([
2654
+ e(N, [2, 67]),
2655
+ e(N, [2, 68]),
2656
+ e(N, [2, 70]),
2657
+ e(N, [2, 69]),
2658
+ e(N, [2, 71]),
2659
+ e([
2660
2660
  10,
2661
2661
  44,
2662
2662
  60,
@@ -2670,7 +2670,7 @@ You have to call mermaid.initialize.`);
2670
2670
  115,
2671
2671
  116
2672
2672
  ], [2, 85]),
2673
- t(Ce, [2, 78]),
2673
+ e(Ce, [2, 78]),
2674
2674
  {
2675
2675
  31: [1, 266],
2676
2676
  67: L,
@@ -2685,14 +2685,14 @@ You have to call mermaid.initialize.`);
2685
2685
  8: s,
2686
2686
  9: c,
2687
2687
  10: l,
2688
- 11: ee,
2688
+ 11: u,
2689
2689
  20: 17,
2690
2690
  22: 18,
2691
2691
  23: 19,
2692
2692
  24: 20,
2693
2693
  25: 21,
2694
2694
  26: 22,
2695
- 27: u,
2695
+ 27: ee,
2696
2696
  32: [1, 267],
2697
2697
  33: 24,
2698
2698
  34: d,
@@ -2725,7 +2725,7 @@ You have to call mermaid.initialize.`);
2725
2725
  124: se,
2726
2726
  125: ce
2727
2727
  },
2728
- t(M, [2, 53]),
2728
+ e(M, [2, 53]),
2729
2729
  {
2730
2730
  43: 268,
2731
2731
  44: p,
@@ -2743,8 +2743,8 @@ You have to call mermaid.initialize.`);
2743
2743
  115: w,
2744
2744
  116: T
2745
2745
  },
2746
- t(F, [2, 121], { 106: tt }),
2747
- t(nt, [2, 130], {
2746
+ e(F, [2, 121], { 106: tt }),
2747
+ e(nt, [2, 130], {
2748
2748
  108: 270,
2749
2749
  10: G,
2750
2750
  60: K,
@@ -2755,22 +2755,22 @@ You have to call mermaid.initialize.`);
2755
2755
  111: Z,
2756
2756
  112: Q
2757
2757
  }),
2758
- t($, [2, 132]),
2759
- t($, [2, 134]),
2760
- t($, [2, 135]),
2761
- t($, [2, 136]),
2762
- t($, [2, 137]),
2763
- t($, [2, 138]),
2764
- t($, [2, 139]),
2765
- t($, [2, 140]),
2766
- t($, [2, 141]),
2767
- t(F, [2, 122], { 106: tt }),
2758
+ e($, [2, 132]),
2759
+ e($, [2, 134]),
2760
+ e($, [2, 135]),
2761
+ e($, [2, 136]),
2762
+ e($, [2, 137]),
2763
+ e($, [2, 138]),
2764
+ e($, [2, 139]),
2765
+ e($, [2, 140]),
2766
+ e($, [2, 141]),
2767
+ e(F, [2, 122], { 106: tt }),
2768
2768
  { 10: [1, 271] },
2769
- t(F, [2, 123], { 106: tt }),
2769
+ e(F, [2, 123], { 106: tt }),
2770
2770
  { 10: [1, 272] },
2771
- t(et, [2, 129]),
2772
- t(F, [2, 105], { 106: tt }),
2773
- t(F, [2, 106], {
2771
+ e(et, [2, 129]),
2772
+ e(F, [2, 105], { 106: tt }),
2773
+ e(F, [2, 106], {
2774
2774
  113: 113,
2775
2775
  44: p,
2776
2776
  60: m,
@@ -2784,9 +2784,9 @@ You have to call mermaid.initialize.`);
2784
2784
  115: w,
2785
2785
  116: T
2786
2786
  }),
2787
- t(F, [2, 110]),
2788
- t(F, [2, 112], { 10: [1, 273] }),
2789
- t(F, [2, 113]),
2787
+ e(F, [2, 110]),
2788
+ e(F, [2, 112], { 10: [1, 273] }),
2789
+ e(F, [2, 113]),
2790
2790
  { 98: [1, 274] },
2791
2791
  { 51: [1, 275] },
2792
2792
  { 62: [1, 276] },
@@ -2797,8 +2797,8 @@ You have to call mermaid.initialize.`);
2797
2797
  11: j,
2798
2798
  21: 278
2799
2799
  },
2800
- t(O, [2, 34]),
2801
- t(M, [2, 52]),
2800
+ e(O, [2, 34]),
2801
+ e(M, [2, 52]),
2802
2802
  {
2803
2803
  10: G,
2804
2804
  60: K,
@@ -2811,7 +2811,7 @@ You have to call mermaid.initialize.`);
2811
2811
  111: Z,
2812
2812
  112: Q
2813
2813
  },
2814
- t($, [2, 133]),
2814
+ e($, [2, 133]),
2815
2815
  {
2816
2816
  14: de,
2817
2817
  44: fe,
@@ -2843,8 +2843,8 @@ You have to call mermaid.initialize.`);
2843
2843
  120: 88
2844
2844
  },
2845
2845
  { 98: [1, 282] },
2846
- t(F, [2, 120]),
2847
- t(N, [2, 58]),
2846
+ e(F, [2, 120]),
2847
+ e(N, [2, 58]),
2848
2848
  {
2849
2849
  30: 283,
2850
2850
  67: L,
@@ -2855,9 +2855,9 @@ You have to call mermaid.initialize.`);
2855
2855
  117: V,
2856
2856
  118: H
2857
2857
  },
2858
- t(N, [2, 66]),
2859
- t(Xe, o, { 5: 284 }),
2860
- t(nt, [2, 131], {
2858
+ e(N, [2, 66]),
2859
+ e(Xe, o, { 5: 284 }),
2860
+ e(nt, [2, 131], {
2861
2861
  108: 270,
2862
2862
  10: G,
2863
2863
  60: K,
@@ -2868,7 +2868,7 @@ You have to call mermaid.initialize.`);
2868
2868
  111: Z,
2869
2869
  112: Q
2870
2870
  }),
2871
- t(F, [2, 126], {
2871
+ e(F, [2, 126], {
2872
2872
  120: 168,
2873
2873
  10: [1, 285],
2874
2874
  14: de,
@@ -2883,7 +2883,7 @@ You have to call mermaid.initialize.`);
2883
2883
  115: be,
2884
2884
  116: xe
2885
2885
  }),
2886
- t(F, [2, 127], {
2886
+ e(F, [2, 127], {
2887
2887
  120: 168,
2888
2888
  10: [1, 286],
2889
2889
  14: de,
@@ -2898,7 +2898,7 @@ You have to call mermaid.initialize.`);
2898
2898
  115: be,
2899
2899
  116: xe
2900
2900
  }),
2901
- t(F, [2, 114]),
2901
+ e(F, [2, 114]),
2902
2902
  {
2903
2903
  31: [1, 287],
2904
2904
  67: L,
@@ -2913,14 +2913,14 @@ You have to call mermaid.initialize.`);
2913
2913
  8: s,
2914
2914
  9: c,
2915
2915
  10: l,
2916
- 11: ee,
2916
+ 11: u,
2917
2917
  20: 17,
2918
2918
  22: 18,
2919
2919
  23: 19,
2920
2920
  24: 20,
2921
2921
  25: 21,
2922
2922
  26: 22,
2923
- 27: u,
2923
+ 27: ee,
2924
2924
  32: [1, 288],
2925
2925
  33: 24,
2926
2926
  34: d,
@@ -2979,10 +2979,10 @@ You have to call mermaid.initialize.`);
2979
2979
  111: Z,
2980
2980
  112: Q
2981
2981
  },
2982
- t(N, [2, 62]),
2983
- t(O, [2, 33]),
2984
- t(F, [2, 124], { 106: tt }),
2985
- t(F, [2, 125], { 106: tt })
2982
+ e(N, [2, 62]),
2983
+ e(O, [2, 33]),
2984
+ e(F, [2, 124], { 106: tt }),
2985
+ e(F, [2, 125], { 106: tt })
2986
2986
  ],
2987
2987
  defaultActions: {},
2988
2988
  parseError: /* @__PURE__ */ __name(function(e, t) {
@@ -2992,10 +2992,10 @@ You have to call mermaid.initialize.`);
2992
2992
  throw n.hash = t, n;
2993
2993
  }
2994
2994
  }, "parseError"),
2995
- parse: /* @__PURE__ */ __name(function(t) {
2996
- var n = this, r = [0], i = [], a = [null], o = [], s = this.table, c = "", l = 0, ee = 0, u = 0, d = 2, f = 1, te = o.slice.call(arguments, 1), p = Object.create(this.lexer), m = { yy: {} };
2995
+ parse: /* @__PURE__ */ __name(function(e) {
2996
+ var n = this, r = [0], i = [], a = [null], o = [], s = this.table, c = "", l = 0, u = 0, ee = 0, d = 2, f = 1, te = o.slice.call(arguments, 1), p = Object.create(this.lexer), m = { yy: {} };
2997
2997
  for (var h in this.yy) Object.prototype.hasOwnProperty.call(this.yy, h) && (m.yy[h] = this.yy[h]);
2998
- p.setInput(t, m.yy), m.yy.lexer = p, m.yy.parser = this, p.yylloc === void 0 && (p.yylloc = {});
2998
+ p.setInput(e, m.yy), m.yy.lexer = p, m.yy.parser = this, p.yylloc === void 0 && (p.yylloc = {});
2999
2999
  var g = p.yylloc;
3000
3000
  o.push(g);
3001
3001
  var ne = p.options && p.options.ranges;
@@ -3024,7 +3024,7 @@ You have to call mermaid.initialize.`);
3024
3024
  if (b[0] instanceof Array && b.length > 1) throw Error("Parse Error: multiple actions possible at state: " + y + ", token: " + _);
3025
3025
  switch (b[0]) {
3026
3026
  case 1:
3027
- r.push(_), a.push(p.yytext), o.push(p.yylloc), r.push(b[1]), _ = null, v ? (_ = v, v = null) : (ee = p.yyleng, c = p.yytext, l = p.yylineno, g = p.yylloc, u > 0 && u--);
3027
+ r.push(_), a.push(p.yytext), o.push(p.yylloc), r.push(b[1]), _ = null, v ? (_ = v, v = null) : (u = p.yyleng, c = p.yytext, l = p.yylineno, g = p.yylloc, ee > 0 && ee--);
3028
3028
  break;
3029
3029
  case 2:
3030
3030
  if (w = this.productions_[b[1]][1], S.$ = a[a.length - w], S._$ = {
@@ -3034,7 +3034,7 @@ You have to call mermaid.initialize.`);
3034
3034
  last_column: o[o.length - 1].last_column
3035
3035
  }, ne && (S._$.range = [o[o.length - (w || 1)].range[0], o[o.length - 1].range[1]]), x = this.performAction.apply(S, [
3036
3036
  c,
3037
- ee,
3037
+ u,
3038
3038
  l,
3039
3039
  m.yy,
3040
3040
  b[1],
@@ -3982,8 +3982,8 @@ newParser.parse = (e) => {
3982
3982
  return flow_default.parse(t);
3983
3983
  };
3984
3984
  var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
3985
- let i = channel_default;
3986
- return rgba_default(i(e, "r"), i(e, "g"), i(e, "b"), t);
3985
+ let n = channel_default;
3986
+ return rgba_default(n(e, "r"), n(e, "g"), n(e, "b"), t);
3987
3987
  }, "fade"), diagram = {
3988
3988
  parser: flowParser_default,
3989
3989
  get db() {