@loopstack/loopstack-studio 0.25.0 → 0.25.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (196) hide show
  1. package/dist/components/ai-elements/message.js +2 -2
  2. package/dist/components/ai-elements/reasoning.js +9 -9
  3. package/dist/loopstack-studio.css +1 -1
  4. package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +2 -5
  5. package/dist/node_modules/@chevrotain/gast/lib/src/model.js +69 -72
  6. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{architecture-7HQA4BMR.js → architecture-YZFGNWBL.js} +2 -2
  7. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{chunk-TQ3KTPDO.js → chunk-2KRD3SAO.js} +1 -1
  8. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{chunk-4F5CHEZ2.js → chunk-67CJDMHE.js} +1 -1
  9. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{chunk-UMXZTB3W.js → chunk-7N4EOEYR.js} +5 -2
  10. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{chunk-PL6DKKU2.js → chunk-AA7GKIK3.js} +1 -1
  11. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-CIAEETIT.js +23 -0
  12. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{chunk-SJTYNZTY.js → chunk-FOC6F5B3.js} +1 -1
  13. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-K5T4RW27.js +1197 -0
  14. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{chunk-FRFDVMJY.js → chunk-KGLVRYIC.js} +1 -1
  15. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{chunk-B2363JML.js → chunk-LIHQZDEY.js} +1 -1
  16. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-ORNJ4GCN.js +29 -0
  17. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/{gitGraph-G5XIXVHT.js → gitGraph-7Q5UKJZL.js} +2 -2
  18. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-OMHHGYJF.js +3 -0
  19. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-4T2RLAQJ.js +3 -0
  20. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-ZZUOXDRM.js +3 -0
  21. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-PYXPWWZC.js +3 -0
  22. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treeView-SZITEDCU.js +3 -0
  23. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-W4RFUUIX.js +3 -0
  24. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/wardley-RL74JXVD.js +3 -0
  25. package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +27 -17
  26. package/dist/node_modules/@upsetjs/venn.js/build/venn.esm.js +903 -0
  27. package/dist/node_modules/@xyflow/react/dist/esm/index.js +76 -75
  28. package/dist/node_modules/@xyflow/system/dist/esm/index.js +30 -28
  29. package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +31 -40
  30. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +23 -26
  31. package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +12 -13
  32. package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +181 -205
  33. package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +11 -13
  34. package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +12 -13
  35. package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +8 -9
  36. package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +176 -183
  37. package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +17 -19
  38. package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +153 -160
  39. package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +10 -12
  40. package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +36 -38
  41. package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +37 -45
  42. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +12 -14
  43. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +80 -86
  44. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +6 -2
  45. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +39 -41
  46. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +7 -8
  47. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +69 -70
  48. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +215 -205
  49. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +76 -76
  50. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +29 -39
  51. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +252 -274
  52. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +93 -106
  53. package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +61 -61
  54. package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +31 -41
  55. package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +15 -18
  56. package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +226 -226
  57. package/dist/node_modules/chevrotain-allstar/lib/atn.js +17 -17
  58. package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +17 -14
  59. package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +19 -19
  60. package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +48 -48
  61. package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +9 -9
  62. package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +3 -3
  63. package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +11 -11
  64. package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +4 -4
  65. package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +4 -4
  66. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +8 -8
  67. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +5 -5
  68. package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +61 -61
  69. package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +1 -1
  70. package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +25 -25
  71. package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +8 -8
  72. package/dist/node_modules/dagre-d3-es/src/dagre/util.js +48 -48
  73. package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +109 -109
  74. package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +17 -17
  75. package/dist/node_modules/dompurify/dist/purify.es.js +67 -67
  76. package/dist/node_modules/katex/dist/katex.js +1256 -1209
  77. package/dist/node_modules/khroma/dist/methods/transparentize.js +3 -0
  78. package/dist/node_modules/lodash-es/_baseClone.js +2 -2
  79. package/dist/node_modules/lodash-es/_baseMatchesProperty.js +6 -6
  80. package/dist/node_modules/lodash-es/_baseToString.js +1 -1
  81. package/dist/node_modules/lodash-es/_baseUniq.js +1 -1
  82. package/dist/node_modules/lodash-es/_createSet.js +1 -1
  83. package/dist/node_modules/lodash-es/_getAllKeys.js +2 -2
  84. package/dist/node_modules/lodash-es/_getAllKeysIn.js +1 -1
  85. package/dist/node_modules/lodash-es/findIndex.js +2 -2
  86. package/dist/node_modules/lodash-es/flatMap.js +1 -1
  87. package/dist/node_modules/lodash-es/forEach.js +1 -1
  88. package/dist/node_modules/lodash-es/max.js +1 -1
  89. package/dist/node_modules/lodash-es/min.js +1 -1
  90. package/dist/node_modules/lodash-es/minBy.js +1 -1
  91. package/dist/node_modules/lodash-es/reduce.js +1 -1
  92. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-Q4EWVU46.js +691 -0
  93. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{blockDiagram-VD42YOAC.js → blockDiagram-DXYQGD6D.js} +183 -157
  94. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{c4Diagram-YG6GDRKO.js → c4Diagram-AHTNJAMY.js} +65 -63
  95. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-336JU56O.js +47 -0
  96. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-EXTU4WIE.js → chunk-426QAEUC.js} +1 -1
  97. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-B4BG7PRW.js → chunk-4TB4RGXK.js} +533 -393
  98. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-5FUZZQ4R.js +3638 -0
  99. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-S3R3BYOJ.js → chunk-5PVQY5BW.js} +1 -1
  100. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-HN2XXSSU.js → chunk-BSJP7CBP.js} +20 -14
  101. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-QN33PNHL.js → chunk-EDXVE4YY.js} +1 -1
  102. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ENJZ2VHE.js +568 -0
  103. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ICPOFSXX.js +2320 -0
  104. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-DI55MBZ5.js → chunk-OYMX7WX6.js} +35 -21
  105. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-U2HBQHQK.js +272 -0
  106. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-ATLVNIR6.js → chunk-X2U36JSP.js} +1 -1
  107. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{chunk-MI3HLSF2.js → chunk-XPW4576I.js} +11 -7
  108. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-YZCP3GAM.js +60 -0
  109. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ZZ45TVLE.js +30 -0
  110. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{classDiagram-2ON5EDUG.js → classDiagram-6PBFFD2Q.js} +12 -11
  111. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{classDiagram-v2-WZHVMYZB.js → classDiagram-v2-HSJHXN6E.js} +12 -11
  112. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{dagre-6UL2VRFP.js → dagre-KV5264BT.js} +8 -8
  113. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-5BDNPKRD.js +99 -0
  114. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{diagram-PSM6KHXK.js → diagram-G4DWMVQ6.js} +20 -23
  115. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-MMDJMWI5.js +211 -0
  116. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{diagram-S2PKOQOG.js → diagram-TYMM5635.js} +4 -4
  117. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{erDiagram-Q2GNP2WA.js → erDiagram-SMLLAGMA.js} +486 -386
  118. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{flowDiagram-NV44I4VS.js → flowDiagram-DWJPFMVM.js} +915 -898
  119. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{ganttDiagram-JELNMOA3.js → ganttDiagram-T4ZO3ILL.js} +59 -29
  120. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-UUTBAWPF.js +728 -0
  121. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-42DDH7IO.js +17 -0
  122. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ishikawaDiagram-UXIWVN3A.js +714 -0
  123. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{journeyDiagram-XKPGCS4Q.js → journeyDiagram-VCZTEJTY.js} +32 -32
  124. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{kanban-definition-3W4ZIXB7.js → kanban-definition-6JOO6SKY.js} +13 -9
  125. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{mindmap-definition-VGOIOE7T.js → mindmap-definition-QFDTVHPH.js} +105 -59
  126. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-DEJITSTG.js +117 -0
  127. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{quadrantDiagram-AYHSOK5B.js → quadrantDiagram-34T5L4WZ.js} +1 -1
  128. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{requirementDiagram-UZGBJVZJ.js → requirementDiagram-MS252O5E.js} +49 -19
  129. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{sankeyDiagram-TZEHDZUN.js → sankeyDiagram-XADWPNL6.js} +1 -1
  130. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-FGHM5R23.js +4155 -0
  131. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{stateDiagram-FKZM4ZOC.js → stateDiagram-FHFEXIEX.js} +12 -12
  132. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{stateDiagram-v2-4FDKWEC3.js → stateDiagram-v2-QKLJ7IA2.js} +11 -11
  133. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-GMOUNBTQ.js +1071 -0
  134. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/vennDiagram-DHZGUBPP.js +959 -0
  135. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/wardleyDiagram-NUSXRM2D.js +574 -0
  136. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/{xychartDiagram-PRI3JC2R.js → xychartDiagram-5P7HB3ND.js} +38 -35
  137. package/dist/node_modules/mermaid/dist/mermaid.core.js +235 -192
  138. package/dist/node_modules/nanoid/url-alphabet/index.js +1 -1
  139. package/dist/node_modules/remend/dist/index.js +333 -264
  140. package/dist/node_modules/streamdown/dist/chunk-BO2N2NFS.js +2498 -0
  141. package/dist/node_modules/streamdown/dist/highlighted-body-OFNGDK62.js +35 -0
  142. package/dist/node_modules/streamdown/dist/index.js +1 -1
  143. package/dist/node_modules/streamdown/dist/mermaid-GHXKKRXX.js +3 -0
  144. package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +672 -667
  145. package/dist/pages/DashboardPage.js +3 -3
  146. package/package.json +2 -2
  147. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TCCFYFTB.js +0 -787
  148. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-VBDWY6EO.js +0 -3
  149. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-DYOGHKS2.js +0 -3
  150. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-VRWISCQL.js +0 -3
  151. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-ZZBFDIW7.js +0 -3
  152. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-GDKQZRPO.js +0 -3
  153. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/context_assist.js +0 -16
  154. package/dist/node_modules/lodash-es/_arrayAggregator.js +0 -9
  155. package/dist/node_modules/lodash-es/_arrayEvery.js +0 -6
  156. package/dist/node_modules/lodash-es/_baseAggregator.js +0 -8
  157. package/dist/node_modules/lodash-es/_baseDifference.js +0 -22
  158. package/dist/node_modules/lodash-es/_baseEvery.js +0 -9
  159. package/dist/node_modules/lodash-es/_baseIsRegExp.js +0 -8
  160. package/dist/node_modules/lodash-es/_baseSlice.js +0 -8
  161. package/dist/node_modules/lodash-es/_baseSome.js +0 -9
  162. package/dist/node_modules/lodash-es/_createAggregator.js +0 -12
  163. package/dist/node_modules/lodash-es/assign.js +0 -14
  164. package/dist/node_modules/lodash-es/compact.js +0 -9
  165. package/dist/node_modules/lodash-es/difference.js +0 -8
  166. package/dist/node_modules/lodash-es/drop.js +0 -8
  167. package/dist/node_modules/lodash-es/dropRight.js +0 -8
  168. package/dist/node_modules/lodash-es/every.js +0 -11
  169. package/dist/node_modules/lodash-es/groupBy.js +0 -6
  170. package/dist/node_modules/lodash-es/head.js +0 -5
  171. package/dist/node_modules/lodash-es/includes.js +0 -13
  172. package/dist/node_modules/lodash-es/indexOf.js +0 -11
  173. package/dist/node_modules/lodash-es/isRegExp.js +0 -5
  174. package/dist/node_modules/lodash-es/negate.js +0 -16
  175. package/dist/node_modules/lodash-es/pickBy.js +0 -15
  176. package/dist/node_modules/lodash-es/reject.js +0 -10
  177. package/dist/node_modules/lodash-es/some.js +0 -11
  178. package/dist/node_modules/lodash-es/uniq.js +0 -6
  179. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-VXUJARFQ.js +0 -673
  180. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ABZYJK2D.js +0 -1547
  181. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-CVBHYZKI.js +0 -10
  182. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DR5Q36YT.js +0 -135
  183. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JA3XYJ7Z.js +0 -247
  184. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JZLCHNYA.js +0 -3516
  185. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-N4CR4FBY.js +0 -39
  186. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QXUST7PY.js +0 -497
  187. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-TZMSLE5B.js +0 -55
  188. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-QEK2KX5R.js +0 -211
  189. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-V2S2FVAM.js +0 -621
  190. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-HS3SLOUP.js +0 -18
  191. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ADFJNKIX.js +0 -117
  192. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-WL72ISMW.js +0 -3560
  193. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-IT6M3QCI.js +0 -833
  194. package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +0 -2189
  195. package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +0 -33
  196. package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +0 -3
@@ -1,64 +1,77 @@
1
1
  import { __name, log } from "./chunk-AGHRB4JF.js";
2
2
  import rgba_default from "../../../../khroma/dist/methods/rgba.js";
3
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";
4
+ import { purify } from "../../../../dompurify/dist/purify.es.js";
5
+ import { clear, common_default, defaultConfig2, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, setAccDescription, setAccTitle, setConfig2, setDiagramTitle } from "./chunk-ICPOFSXX.js";
5
6
  import select_default 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";
8
+ import { JSON_SCHEMA, load } from "./chunk-XPW4576I.js";
9
+ import "./chunk-BSJP7CBP.js";
10
+ import { getEdgeId, utils_default } from "./chunk-5PVQY5BW.js";
11
+ import "./chunk-ZZ45TVLE.js";
12
+ import "./chunk-X2U36JSP.js";
13
+ import "./chunk-U2HBQHQK.js";
14
+ import { isValidShape } from "./chunk-5FUZZQ4R.js";
15
+ import "./chunk-ENJZ2VHE.js";
16
+ import { getRegisteredLayoutAlgorithm, render } from "./chunk-336JU56O.js";
16
17
  import { getIconStyles } from "./chunk-FMBD7UC4.js";
18
+ import { createTooltip } from "./chunk-YZCP3GAM.js";
17
19
  import { getDiagramElement } from "./chunk-55IACEB6.js";
18
- import { setupViewPortForSVG } from "./chunk-QN33PNHL.js";
20
+ import { setupViewPortForSVG } from "./chunk-EDXVE4YY.js";
19
21
  var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
20
22
  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");
23
+ this.vertexCounter = 0, this.config = getConfig2(), 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 = 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");
22
24
  }
23
25
  static #e = __name(this, "FlowDB");
24
26
  sanitizeText(e) {
25
27
  return common_default.sanitizeText(e, this.config);
26
28
  }
29
+ sanitizeNodeLabelType(e) {
30
+ switch (e) {
31
+ case "markdown":
32
+ case "string":
33
+ case "text": return e;
34
+ default: return "markdown";
35
+ }
36
+ }
37
+ setDiagramId(e) {
38
+ this.diagramId = e;
39
+ }
27
40
  lookUpDomId(e) {
28
- for (let t of this.vertices.values()) if (t.id === e) return t.domId;
29
- return e;
41
+ for (let t of this.vertices.values()) if (t.id === e) return this.diagramId ? `${this.diagramId}-${t.domId}` : t.domId;
42
+ return this.diagramId ? `${this.diagramId}-${e}` : e;
30
43
  }
31
- addVertex(e, t, n, r, i, a, o = {}, s) {
44
+ addVertex(e, n, r, i, a, o, s = {}, c) {
32
45
  if (!e || e.trim().length === 0) return;
33
- let c;
34
- if (s !== void 0) {
46
+ let l;
47
+ if (c !== void 0) {
35
48
  let e;
36
- e = s.includes("\n") ? s + "\n" : "{\n" + s + "\n}", c = load(e, { schema: JSON_SCHEMA });
49
+ e = c.includes("\n") ? c + "\n" : "{\n" + c + "\n}", l = load(e, { schema: JSON_SCHEMA });
37
50
  }
38
51
  let u = this.edges.find((t) => t.id === e);
39
52
  if (u) {
40
- let e = c;
53
+ let e = l;
41
54
  e?.animate !== void 0 && (u.animate = e.animate), e?.animation !== void 0 && (u.animation = e.animation), e?.curve !== void 0 && (u.interpolate = e.curve);
42
55
  return;
43
56
  }
44
57
  let d, f = this.vertices.get(e);
45
- if (f === void 0 && (f = {
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 = {
46
59
  id: e,
47
60
  labelType: "text",
48
61
  domId: MERMAID_DOM_ID_PREFIX + e + "-" + this.vertexCounter,
49
62
  styles: [],
50
63
  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) => {
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) => {
52
65
  f.styles.push(e);
53
- }), i?.forEach((e) => {
66
+ }), a?.forEach((e) => {
54
67
  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;
68
+ }), o !== void 0 && (f.dir = o), f.props === void 0 ? f.props = s : s !== void 0 && Object.assign(f.props, s), l !== void 0) {
69
+ if (l.shape) {
70
+ if (l.shape !== l.shape.toLowerCase() || l.shape.includes("_")) throw Error(`No such shape: ${l.shape}. Shape names should be lowercase.`);
71
+ if (!isValidShape(l.shape)) throw Error(`No such shape: ${l.shape}.`);
72
+ f.type = l?.shape;
60
73
  }
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));
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));
62
75
  }
63
76
  }
64
77
  addSingleLink(e, n, r, i) {
@@ -74,7 +87,7 @@ var MERMAID_DOM_ID_PREFIX = "flowchart-", FlowDB = class {
74
87
  };
75
88
  log.info("abc78 Got edge...", a);
76
89
  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;
90
+ 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
91
  else {
79
92
  let e = this.edges.filter((e) => e.start === a.start && e.end === a.end);
80
93
  e.length === 0 ? a.id = getEdgeId(a.start, a.end, {
@@ -151,22 +164,21 @@ You have to call mermaid.initialize.`);
151
164
  }
152
165
  }
153
166
  setClickFun(e, t, n) {
154
- let r = this.lookUpDomId(e);
155
167
  if (getConfig2().securityLevel !== "loose" || t === void 0) return;
156
- let i = [];
168
+ let r = [];
157
169
  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;
170
+ r = n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);
171
+ for (let e = 0; e < r.length; e++) {
172
+ let t = r[e].trim();
173
+ t.startsWith("\"") && t.endsWith("\"") && (t = t.substr(1, t.length - 2)), r[e] = t;
162
174
  }
163
175
  }
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);
176
+ r.length === 0 && r.push(e);
177
+ let i = this.vertices.get(e);
178
+ i && (i.haveCallback = !0, this.funs.push(() => {
179
+ let n = this.lookUpDomId(e), i = document.querySelector(`[id="${n}"]`);
180
+ i !== null && i.addEventListener("click", () => {
181
+ utils_default.runFunc(t, ...r);
170
182
  }, !1);
171
183
  }));
172
184
  }
@@ -202,18 +214,18 @@ You have to call mermaid.initialize.`);
202
214
  return this.classes;
203
215
  }
204
216
  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);
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);
211
223
  }).on("mouseout", (e) => {
212
224
  t.transition().duration(500).style("opacity", 0), select_default(e.currentTarget).classed("hover", !1);
213
225
  });
214
226
  }
215
227
  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();
228
+ 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 = getConfig2(), clear();
217
229
  }
218
230
  setGen(e) {
219
231
  this.version = e || "gen-2";
@@ -237,18 +249,18 @@ You have to call mermaid.initialize.`);
237
249
  }),
238
250
  dir: r
239
251
  };
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]);
252
+ }, "uniq"))(r.flat()), c = s.nodeList, l = s.dir, u = getConfig2().flowchart ?? {};
253
+ if (l ??= u.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]);
242
254
  a ??= "subGraph" + this.subCount, o ||= "", o = this.sanitizeText(o), this.subCount += 1;
243
- let f = {
255
+ let d = {
244
256
  id: a,
245
257
  nodes: c,
246
258
  title: o.trim(),
247
259
  classes: [],
248
- dir: u,
249
- labelType: i.type
260
+ dir: l,
261
+ labelType: this.sanitizeNodeLabelType(i?.type)
250
262
  };
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;
263
+ return log.info("Adding", d.id, d.nodes, d.dir), d.nodes = this.makeUniq(d, this.subGraphs).nodes, this.subGraphs.push(d), this.subGraphLookup.set(a, d), a;
252
264
  }
253
265
  getPosForId(e) {
254
266
  for (let [t, n] of this.subGraphs.entries()) if (n.id === e) return t;
@@ -409,6 +421,7 @@ You have to call mermaid.initialize.`);
409
421
  let n = {
410
422
  id: e.id,
411
423
  label: e.text,
424
+ labelType: e.labelType,
412
425
  labelStyle: "",
413
426
  parentId: o,
414
427
  padding: i.flowchart?.padding || 8,
@@ -464,6 +477,7 @@ You have to call mermaid.initialize.`);
464
477
  id: a.id,
465
478
  label: a.title,
466
479
  labelStyle: "",
480
+ labelType: a.labelType,
467
481
  parentId: i.get(a.id),
468
482
  padding: 8,
469
483
  cssCompiledStyles: this.getCompiledStyles(a.classes),
@@ -491,6 +505,7 @@ You have to call mermaid.initialize.`);
491
505
  end: t.end,
492
506
  type: t.type ?? "normal",
493
507
  label: t.text,
508
+ labelType: t.labelType,
494
509
  labelpos: "c",
495
510
  thickness: t.stroke,
496
511
  minlen: t.length,
@@ -524,36 +539,18 @@ You have to call mermaid.initialize.`);
524
539
  }, "getClasses"),
525
540
  draw: /* @__PURE__ */ __name(async function(e, n, r, i) {
526
541
  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 = [
542
+ let { securityLevel: a, flowchart: o, layout: s } = getConfig2();
543
+ i.db.setDiagramId(n), log.debug("Before getData: ");
544
+ let c = i.db.getData();
545
+ log.debug("Data: ", c);
546
+ let l = getDiagramElement(n, a), u = i.db.getDirection();
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 = [
535
548
  "point",
536
549
  "circle",
537
550
  "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
- }
551
+ ], c.diagramId = n, log.debug("REF1:", c), await render(c, l);
552
+ let d = c.config.flowchart?.diagramPadding ?? 8;
553
+ utils_default.insertTitle(l, "flowchartTitleText", o?.titleTopMargin || 0, i.db.getDiagramTitle()), setupViewPortForSVG(l, d, "flowchart", o?.useMaxWidth || !1);
557
554
  }, "draw")
558
555
  }, parser = (function() {
559
556
  var t = /* @__PURE__ */ __name(function(e, t, n, r) {
@@ -588,8 +585,9 @@ You have to call mermaid.initialize.`);
588
585
  121,
589
586
  122,
590
587
  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 = [
588
+ 124,
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 = [
593
591
  1,
594
592
  8,
595
593
  9,
@@ -619,15 +617,16 @@ You have to call mermaid.initialize.`);
619
617
  121,
620
618
  122,
621
619
  123,
622
- 124
623
- ], k = [1, 61], A = [1, 60], j = [1, 62], ce = [
620
+ 124,
621
+ 125
622
+ ], k = [1, 62], A = [1, 61], j = [1, 63], le = [
624
623
  8,
625
624
  9,
626
625
  11,
627
626
  75,
628
627
  77,
629
628
  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 = [
629
+ ], ue = [1, 79], de = [1, 92], fe = [1, 97], pe = [1, 96], me = [1, 93], he = [1, 89], ge = [1, 95], _e = [1, 91], ve = [1, 98], ye = [1, 94], be = [1, 99], xe = [1, 90], M = [
631
630
  8,
632
631
  9,
633
632
  10,
@@ -679,7 +678,7 @@ You have to call mermaid.initialize.`);
679
678
  114,
680
679
  115,
681
680
  116
682
- ], xe = [
681
+ ], Se = [
683
682
  8,
684
683
  9,
685
684
  11,
@@ -697,7 +696,7 @@ You have to call mermaid.initialize.`);
697
696
  114,
698
697
  115,
699
698
  116
700
- ], Se = [
699
+ ], Ce = [
701
700
  44,
702
701
  60,
703
702
  89,
@@ -709,7 +708,7 @@ You have to call mermaid.initialize.`);
709
708
  114,
710
709
  115,
711
710
  116
712
- ], Ce = [1, 121], we = [1, 122], Te = [1, 124], Ee = [1, 123], De = [
711
+ ], we = [1, 122], Te = [1, 123], Ee = [1, 125], De = [1, 124], Oe = [
713
712
  44,
714
713
  60,
715
714
  62,
@@ -723,7 +722,7 @@ You have to call mermaid.initialize.`);
723
722
  114,
724
723
  115,
725
724
  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 = [
725
+ ], ke = [1, 134], Ae = [1, 148], je = [1, 149], Me = [1, 150], Ne = [1, 151], Pe = [1, 136], Fe = [1, 138], Ie = [1, 142], Le = [1, 143], Re = [1, 144], ze = [1, 145], Be = [1, 146], Ve = [1, 147], He = [1, 152], Ue = [1, 153], We = [1, 132], Ge = [1, 133], Ke = [1, 140], qe = [1, 135], Je = [1, 139], Ye = [1, 137], Xe = [
727
726
  8,
728
727
  9,
729
728
  10,
@@ -752,8 +751,9 @@ You have to call mermaid.initialize.`);
752
751
  121,
753
752
  122,
754
753
  123,
755
- 124
756
- ], Xe = [1, 154], Ze = [1, 156], F = [
754
+ 124,
755
+ 125
756
+ ], Ze = [1, 155], Qe = [1, 157], F = [
757
757
  8,
758
758
  9,
759
759
  11
@@ -773,7 +773,7 @@ You have to call mermaid.initialize.`);
773
773
  114,
774
774
  115,
775
775
  116
776
- ], L = [1, 176], R = [1, 172], z = [1, 173], B = [1, 177], V = [1, 174], H = [1, 175], Qe = [
776
+ ], L = [1, 177], R = [1, 173], z = [1, 174], B = [1, 178], V = [1, 175], H = [1, 176], $e = [
777
777
  77,
778
778
  116,
779
779
  119
@@ -803,7 +803,7 @@ You have to call mermaid.initialize.`);
803
803
  114,
804
804
  115,
805
805
  116
806
- ], $e = [10, 106], W = [
806
+ ], et = [10, 106], W = [
807
807
  31,
808
808
  49,
809
809
  51,
@@ -819,7 +819,7 @@ You have to call mermaid.initialize.`);
819
819
  116,
820
820
  117,
821
821
  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 = [
822
+ ], 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
823
  8,
824
824
  9,
825
825
  11,
@@ -837,7 +837,7 @@ You have to call mermaid.initialize.`);
837
837
  110,
838
838
  111,
839
839
  112
840
- ], nt = {
840
+ ], rt = {
841
841
  trace: /* @__PURE__ */ __name(function() {}, "trace"),
842
842
  yy: {},
843
843
  symbols_: {
@@ -964,6 +964,7 @@ You have to call mermaid.initialize.`);
964
964
  direction_bt: 122,
965
965
  direction_rl: 123,
966
966
  direction_lr: 124,
967
+ direction_td: 125,
967
968
  $accept: 0,
968
969
  $end: 1
969
970
  },
@@ -1050,7 +1051,8 @@ You have to call mermaid.initialize.`);
1050
1051
  121: "direction_tb",
1051
1052
  122: "direction_bt",
1052
1053
  123: "direction_rl",
1053
- 124: "direction_lr"
1054
+ 124: "direction_lr",
1055
+ 125: "direction_td"
1054
1056
  },
1055
1057
  productions_: [
1056
1058
  0,
@@ -1241,6 +1243,7 @@ You have to call mermaid.initialize.`);
1241
1243
  [33, 1],
1242
1244
  [33, 1],
1243
1245
  [33, 1],
1246
+ [33, 1],
1244
1247
  [33, 1]
1245
1248
  ],
1246
1249
  performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
@@ -1622,6 +1625,12 @@ You have to call mermaid.initialize.`);
1622
1625
  value: "LR"
1623
1626
  };
1624
1627
  break;
1628
+ case 189:
1629
+ this.$ = {
1630
+ stmt: "dir",
1631
+ value: "TD"
1632
+ };
1633
+ break;
1625
1634
  }
1626
1635
  }, "anonymous"),
1627
1636
  table: [
@@ -1657,26 +1666,26 @@ You have to call mermaid.initialize.`);
1657
1666
  8: s,
1658
1667
  9: c,
1659
1668
  10: l,
1660
- 11: u,
1669
+ 11: ee,
1661
1670
  20: 17,
1662
1671
  22: 18,
1663
1672
  23: 19,
1664
1673
  24: 20,
1665
1674
  25: 21,
1666
1675
  26: 22,
1667
- 27: d,
1676
+ 27: u,
1668
1677
  33: 24,
1669
- 34: f,
1670
- 36: p,
1671
- 38: ee,
1678
+ 34: d,
1679
+ 36: f,
1680
+ 38: te,
1672
1681
  42: 28,
1673
- 43: 38,
1674
- 44: m,
1675
- 45: 39,
1676
- 47: 40,
1677
- 60: h,
1678
- 84: g,
1679
- 85: te,
1682
+ 43: 39,
1683
+ 44: p,
1684
+ 45: 40,
1685
+ 47: 41,
1686
+ 60: m,
1687
+ 84: h,
1688
+ 85: g,
1680
1689
  86: ne,
1681
1690
  87: re,
1682
1691
  88: ie,
@@ -1686,24 +1695,25 @@ You have to call mermaid.initialize.`);
1686
1695
  106: b,
1687
1696
  109: x,
1688
1697
  111: S,
1689
- 113: 41,
1698
+ 113: 42,
1690
1699
  114: C,
1691
1700
  115: w,
1692
1701
  116: T,
1693
1702
  121: E,
1694
1703
  122: ae,
1695
1704
  123: oe,
1696
- 124: se
1705
+ 124: se,
1706
+ 125: ce
1697
1707
  },
1698
1708
  t(a, [2, 9]),
1699
1709
  t(a, [2, 10]),
1700
1710
  t(a, [2, 11]),
1701
1711
  {
1702
- 8: [1, 54],
1703
- 9: [1, 55],
1712
+ 8: [1, 55],
1713
+ 9: [1, 56],
1704
1714
  10: D,
1705
- 15: 53,
1706
- 18: 56
1715
+ 15: 54,
1716
+ 18: 57
1707
1717
  },
1708
1718
  t(O, [2, 3]),
1709
1719
  t(O, [2, 4]),
@@ -1715,104 +1725,105 @@ You have to call mermaid.initialize.`);
1715
1725
  8: k,
1716
1726
  9: A,
1717
1727
  11: j,
1718
- 21: 58,
1719
- 41: 59,
1720
- 72: 63,
1721
- 75: [1, 64],
1722
- 77: [1, 66],
1723
- 78: [1, 65]
1728
+ 21: 59,
1729
+ 41: 60,
1730
+ 72: 64,
1731
+ 75: [1, 65],
1732
+ 77: [1, 67],
1733
+ 78: [1, 66]
1724
1734
  },
1725
1735
  {
1726
1736
  8: k,
1727
1737
  9: A,
1728
1738
  11: j,
1729
- 21: 67
1739
+ 21: 68
1730
1740
  },
1731
1741
  {
1732
1742
  8: k,
1733
1743
  9: A,
1734
1744
  11: j,
1735
- 21: 68
1745
+ 21: 69
1736
1746
  },
1737
1747
  {
1738
1748
  8: k,
1739
1749
  9: A,
1740
1750
  11: j,
1741
- 21: 69
1751
+ 21: 70
1742
1752
  },
1743
1753
  {
1744
1754
  8: k,
1745
1755
  9: A,
1746
1756
  11: j,
1747
- 21: 70
1757
+ 21: 71
1748
1758
  },
1749
1759
  {
1750
1760
  8: k,
1751
1761
  9: A,
1752
1762
  11: j,
1753
- 21: 71
1763
+ 21: 72
1754
1764
  },
1755
1765
  {
1756
1766
  8: k,
1757
1767
  9: A,
1758
- 10: [1, 72],
1768
+ 10: [1, 73],
1759
1769
  11: j,
1760
- 21: 73
1770
+ 21: 74
1761
1771
  },
1762
1772
  t(O, [2, 36]),
1763
- { 35: [1, 74] },
1764
- { 37: [1, 75] },
1773
+ { 35: [1, 75] },
1774
+ { 37: [1, 76] },
1765
1775
  t(O, [2, 39]),
1766
- t(ce, [2, 50], {
1767
- 18: 76,
1768
- 39: 77,
1776
+ t(le, [2, 50], {
1777
+ 18: 77,
1778
+ 39: 78,
1769
1779
  10: D,
1770
- 40: le
1780
+ 40: ue
1771
1781
  }),
1772
- { 10: [1, 79] },
1773
1782
  { 10: [1, 80] },
1774
1783
  { 10: [1, 81] },
1775
1784
  { 10: [1, 82] },
1785
+ { 10: [1, 83] },
1776
1786
  {
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
1787
+ 14: de,
1788
+ 44: fe,
1789
+ 60: pe,
1790
+ 80: [1, 87],
1791
+ 89: me,
1792
+ 95: [1, 84],
1793
+ 97: [1, 85],
1794
+ 101: 86,
1795
+ 105: he,
1796
+ 106: ge,
1797
+ 109: _e,
1798
+ 111: ve,
1799
+ 114: ye,
1800
+ 115: be,
1801
+ 116: xe,
1802
+ 120: 88
1793
1803
  },
1794
1804
  t(O, [2, 185]),
1795
1805
  t(O, [2, 186]),
1796
1806
  t(O, [2, 187]),
1797
1807
  t(O, [2, 188]),
1808
+ t(O, [2, 189]),
1798
1809
  t(M, [2, 51]),
1799
- t(M, [2, 54], { 46: [1, 99] }),
1810
+ t(M, [2, 54], { 46: [1, 100] }),
1800
1811
  t(N, [2, 72], {
1801
- 113: 112,
1802
- 29: [1, 100],
1803
- 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],
1810
- 60: h,
1811
- 63: [1, 107],
1812
- 65: [1, 108],
1813
- 67: [1, 109],
1814
- 68: [1, 110],
1815
- 70: [1, 111],
1812
+ 113: 113,
1813
+ 29: [1, 101],
1814
+ 44: p,
1815
+ 48: [1, 102],
1816
+ 50: [1, 103],
1817
+ 52: [1, 104],
1818
+ 54: [1, 105],
1819
+ 56: [1, 106],
1820
+ 58: [1, 107],
1821
+ 60: m,
1822
+ 63: [1, 108],
1823
+ 65: [1, 109],
1824
+ 67: [1, 110],
1825
+ 68: [1, 111],
1826
+ 70: [1, 112],
1816
1827
  89: _,
1817
1828
  102: v,
1818
1829
  105: y,
@@ -1838,26 +1849,26 @@ You have to call mermaid.initialize.`);
1838
1849
  t(a, [2, 12]),
1839
1850
  t(a, [2, 18]),
1840
1851
  t(a, [2, 19]),
1841
- { 9: [1, 113] },
1842
- t(xe, [2, 26], {
1843
- 18: 114,
1852
+ { 9: [1, 114] },
1853
+ t(Se, [2, 26], {
1854
+ 18: 115,
1844
1855
  10: D
1845
1856
  }),
1846
1857
  t(O, [2, 27]),
1847
1858
  {
1848
- 42: 115,
1849
- 43: 38,
1850
- 44: m,
1851
- 45: 39,
1852
- 47: 40,
1853
- 60: h,
1859
+ 42: 116,
1860
+ 43: 39,
1861
+ 44: p,
1862
+ 45: 40,
1863
+ 47: 41,
1864
+ 60: m,
1854
1865
  89: _,
1855
1866
  102: v,
1856
1867
  105: y,
1857
1868
  106: b,
1858
1869
  109: x,
1859
1870
  111: S,
1860
- 113: 41,
1871
+ 113: 42,
1861
1872
  114: C,
1862
1873
  115: w,
1863
1874
  116: T
@@ -1865,138 +1876,138 @@ You have to call mermaid.initialize.`);
1865
1876
  t(O, [2, 40]),
1866
1877
  t(O, [2, 41]),
1867
1878
  t(O, [2, 42]),
1868
- t(Se, [2, 76], {
1869
- 73: 116,
1870
- 62: [1, 118],
1871
- 74: [1, 117]
1879
+ t(Ce, [2, 76], {
1880
+ 73: 117,
1881
+ 62: [1, 119],
1882
+ 74: [1, 118]
1872
1883
  }),
1873
1884
  {
1874
- 76: 119,
1875
- 79: 120,
1876
- 80: Ce,
1877
- 81: we,
1878
- 116: Te,
1879
- 119: Ee
1885
+ 76: 120,
1886
+ 79: 121,
1887
+ 80: we,
1888
+ 81: Te,
1889
+ 116: Ee,
1890
+ 119: De
1880
1891
  },
1881
1892
  {
1882
- 75: [1, 125],
1883
- 77: [1, 126]
1893
+ 75: [1, 126],
1894
+ 77: [1, 127]
1884
1895
  },
1885
- t(De, [2, 83]),
1896
+ t(Oe, [2, 83]),
1886
1897
  t(O, [2, 28]),
1887
1898
  t(O, [2, 29]),
1888
1899
  t(O, [2, 30]),
1889
1900
  t(O, [2, 31]),
1890
1901
  t(O, [2, 32]),
1891
1902
  {
1892
- 10: Oe,
1893
- 12: ke,
1894
- 14: Ae,
1895
- 27: je,
1896
- 28: 127,
1897
- 32: Me,
1898
- 44: Ne,
1899
- 60: Pe,
1900
- 75: Fe,
1901
- 80: [1, 129],
1902
- 81: [1, 130],
1903
- 83: 140,
1904
- 84: Ie,
1905
- 85: Le,
1906
- 86: Re,
1907
- 87: ze,
1908
- 88: Be,
1909
- 89: Ve,
1910
- 90: He,
1911
- 91: 128,
1912
- 105: Ue,
1913
- 109: We,
1914
- 111: Ge,
1915
- 114: Ke,
1916
- 115: qe,
1917
- 116: Je
1903
+ 10: ke,
1904
+ 12: Ae,
1905
+ 14: je,
1906
+ 27: Me,
1907
+ 28: 128,
1908
+ 32: Ne,
1909
+ 44: Pe,
1910
+ 60: Fe,
1911
+ 75: Ie,
1912
+ 80: [1, 130],
1913
+ 81: [1, 131],
1914
+ 83: 141,
1915
+ 84: Le,
1916
+ 85: Re,
1917
+ 86: ze,
1918
+ 87: Be,
1919
+ 88: Ve,
1920
+ 89: He,
1921
+ 90: Ue,
1922
+ 91: 129,
1923
+ 105: We,
1924
+ 109: Ge,
1925
+ 111: Ke,
1926
+ 114: qe,
1927
+ 115: Je,
1928
+ 116: Ye
1918
1929
  },
1919
- t(Ye, o, { 5: 153 }),
1930
+ t(Xe, o, { 5: 154 }),
1920
1931
  t(O, [2, 37]),
1921
1932
  t(O, [2, 38]),
1922
- t(ce, [2, 48], { 44: Xe }),
1923
- t(ce, [2, 49], {
1924
- 18: 155,
1933
+ t(le, [2, 48], { 44: Ze }),
1934
+ t(le, [2, 49], {
1935
+ 18: 156,
1925
1936
  10: D,
1926
- 40: Ze
1937
+ 40: Qe
1927
1938
  }),
1928
1939
  t(M, [2, 44]),
1929
1940
  {
1930
- 44: m,
1931
- 47: 157,
1932
- 60: h,
1941
+ 44: p,
1942
+ 47: 158,
1943
+ 60: m,
1933
1944
  89: _,
1934
1945
  102: v,
1935
1946
  105: y,
1936
1947
  106: b,
1937
1948
  109: x,
1938
1949
  111: S,
1939
- 113: 41,
1950
+ 113: 42,
1940
1951
  114: C,
1941
1952
  115: w,
1942
1953
  116: T
1943
1954
  },
1944
1955
  {
1945
- 102: [1, 158],
1946
- 103: 159,
1947
- 105: [1, 160]
1956
+ 102: [1, 159],
1957
+ 103: 160,
1958
+ 105: [1, 161]
1948
1959
  },
1949
1960
  {
1950
- 44: m,
1951
- 47: 161,
1952
- 60: h,
1961
+ 44: p,
1962
+ 47: 162,
1963
+ 60: m,
1953
1964
  89: _,
1954
1965
  102: v,
1955
1966
  105: y,
1956
1967
  106: b,
1957
1968
  109: x,
1958
1969
  111: S,
1959
- 113: 41,
1970
+ 113: 42,
1960
1971
  114: C,
1961
1972
  115: w,
1962
1973
  116: T
1963
1974
  },
1964
1975
  {
1965
- 44: m,
1966
- 47: 162,
1967
- 60: h,
1976
+ 44: p,
1977
+ 47: 163,
1978
+ 60: m,
1968
1979
  89: _,
1969
1980
  102: v,
1970
1981
  105: y,
1971
1982
  106: b,
1972
1983
  109: x,
1973
1984
  111: S,
1974
- 113: 41,
1985
+ 113: 42,
1975
1986
  114: C,
1976
1987
  115: w,
1977
1988
  116: T
1978
1989
  },
1979
1990
  t(F, [2, 107], {
1980
- 10: [1, 163],
1981
- 96: [1, 164]
1991
+ 10: [1, 164],
1992
+ 96: [1, 165]
1982
1993
  }),
1983
- { 80: [1, 165] },
1994
+ { 80: [1, 166] },
1984
1995
  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
1996
+ 120: 168,
1997
+ 10: [1, 167],
1998
+ 14: de,
1999
+ 44: fe,
2000
+ 60: pe,
2001
+ 89: me,
2002
+ 105: he,
2003
+ 106: ge,
2004
+ 109: _e,
2005
+ 111: ve,
2006
+ 114: ye,
2007
+ 115: be,
2008
+ 116: xe
1998
2009
  }),
1999
- t(F, [2, 117], { 10: [1, 168] }),
2010
+ t(F, [2, 117], { 10: [1, 169] }),
2000
2011
  t(I, [2, 183]),
2001
2012
  t(I, [2, 170]),
2002
2013
  t(I, [2, 171]),
@@ -2010,203 +2021,203 @@ You have to call mermaid.initialize.`);
2010
2021
  t(I, [2, 179]),
2011
2022
  t(I, [2, 180]),
2012
2023
  {
2013
- 44: m,
2014
- 47: 169,
2015
- 60: h,
2024
+ 44: p,
2025
+ 47: 170,
2026
+ 60: m,
2016
2027
  89: _,
2017
2028
  102: v,
2018
2029
  105: y,
2019
2030
  106: b,
2020
2031
  109: x,
2021
2032
  111: S,
2022
- 113: 41,
2033
+ 113: 42,
2023
2034
  114: C,
2024
2035
  115: w,
2025
2036
  116: T
2026
2037
  },
2027
2038
  {
2028
- 30: 170,
2039
+ 30: 171,
2029
2040
  67: L,
2030
2041
  80: R,
2031
2042
  81: z,
2032
- 82: 171,
2043
+ 82: 172,
2033
2044
  116: B,
2034
2045
  117: V,
2035
2046
  118: H
2036
2047
  },
2037
2048
  {
2038
- 30: 178,
2049
+ 30: 179,
2039
2050
  67: L,
2040
2051
  80: R,
2041
2052
  81: z,
2042
- 82: 171,
2053
+ 82: 172,
2043
2054
  116: B,
2044
2055
  117: V,
2045
2056
  118: H
2046
2057
  },
2047
2058
  {
2048
- 30: 180,
2049
- 50: [1, 179],
2059
+ 30: 181,
2060
+ 50: [1, 180],
2050
2061
  67: L,
2051
2062
  80: R,
2052
2063
  81: z,
2053
- 82: 171,
2064
+ 82: 172,
2054
2065
  116: B,
2055
2066
  117: V,
2056
2067
  118: H
2057
2068
  },
2058
2069
  {
2059
- 30: 181,
2070
+ 30: 182,
2060
2071
  67: L,
2061
2072
  80: R,
2062
2073
  81: z,
2063
- 82: 171,
2074
+ 82: 172,
2064
2075
  116: B,
2065
2076
  117: V,
2066
2077
  118: H
2067
2078
  },
2068
2079
  {
2069
- 30: 182,
2080
+ 30: 183,
2070
2081
  67: L,
2071
2082
  80: R,
2072
2083
  81: z,
2073
- 82: 171,
2084
+ 82: 172,
2074
2085
  116: B,
2075
2086
  117: V,
2076
2087
  118: H
2077
2088
  },
2078
2089
  {
2079
- 30: 183,
2090
+ 30: 184,
2080
2091
  67: L,
2081
2092
  80: R,
2082
2093
  81: z,
2083
- 82: 171,
2094
+ 82: 172,
2084
2095
  116: B,
2085
2096
  117: V,
2086
2097
  118: H
2087
2098
  },
2088
- { 109: [1, 184] },
2099
+ { 109: [1, 185] },
2089
2100
  {
2090
- 30: 185,
2101
+ 30: 186,
2091
2102
  67: L,
2092
2103
  80: R,
2093
2104
  81: z,
2094
- 82: 171,
2105
+ 82: 172,
2095
2106
  116: B,
2096
2107
  117: V,
2097
2108
  118: H
2098
2109
  },
2099
2110
  {
2100
- 30: 186,
2101
- 65: [1, 187],
2111
+ 30: 187,
2112
+ 65: [1, 188],
2102
2113
  67: L,
2103
2114
  80: R,
2104
2115
  81: z,
2105
- 82: 171,
2116
+ 82: 172,
2106
2117
  116: B,
2107
2118
  117: V,
2108
2119
  118: H
2109
2120
  },
2110
2121
  {
2111
- 30: 188,
2122
+ 30: 189,
2112
2123
  67: L,
2113
2124
  80: R,
2114
2125
  81: z,
2115
- 82: 171,
2126
+ 82: 172,
2116
2127
  116: B,
2117
2128
  117: V,
2118
2129
  118: H
2119
2130
  },
2120
2131
  {
2121
- 30: 189,
2132
+ 30: 190,
2122
2133
  67: L,
2123
2134
  80: R,
2124
2135
  81: z,
2125
- 82: 171,
2136
+ 82: 172,
2126
2137
  116: B,
2127
2138
  117: V,
2128
2139
  118: H
2129
2140
  },
2130
2141
  {
2131
- 30: 190,
2142
+ 30: 191,
2132
2143
  67: L,
2133
2144
  80: R,
2134
2145
  81: z,
2135
- 82: 171,
2146
+ 82: 172,
2136
2147
  116: B,
2137
2148
  117: V,
2138
2149
  118: H
2139
2150
  },
2140
2151
  t(P, [2, 182]),
2141
2152
  t(a, [2, 20]),
2142
- t(xe, [2, 25]),
2143
- t(ce, [2, 46], {
2144
- 39: 191,
2145
- 18: 192,
2153
+ t(Se, [2, 25]),
2154
+ t(le, [2, 46], {
2155
+ 39: 192,
2156
+ 18: 193,
2146
2157
  10: D,
2147
- 40: le
2158
+ 40: ue
2148
2159
  }),
2149
- t(Se, [2, 73], { 10: [1, 193] }),
2150
- { 10: [1, 194] },
2160
+ t(Ce, [2, 73], { 10: [1, 194] }),
2161
+ { 10: [1, 195] },
2151
2162
  {
2152
- 30: 195,
2163
+ 30: 196,
2153
2164
  67: L,
2154
2165
  80: R,
2155
2166
  81: z,
2156
- 82: 171,
2167
+ 82: 172,
2157
2168
  116: B,
2158
2169
  117: V,
2159
2170
  118: H
2160
2171
  },
2161
2172
  {
2162
- 77: [1, 196],
2163
- 79: 197,
2164
- 116: Te,
2165
- 119: Ee
2173
+ 77: [1, 197],
2174
+ 79: 198,
2175
+ 116: Ee,
2176
+ 119: De
2166
2177
  },
2167
- t(Qe, [2, 79]),
2168
- t(Qe, [2, 81]),
2169
- t(Qe, [2, 82]),
2170
- t(Qe, [2, 168]),
2171
- t(Qe, [2, 169]),
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]),
2172
2183
  {
2173
- 76: 198,
2174
- 79: 120,
2175
- 80: Ce,
2176
- 81: we,
2177
- 116: Te,
2178
- 119: Ee
2184
+ 76: 199,
2185
+ 79: 121,
2186
+ 80: we,
2187
+ 81: Te,
2188
+ 116: Ee,
2189
+ 119: De
2179
2190
  },
2180
- t(De, [2, 84]),
2191
+ t(Oe, [2, 84]),
2181
2192
  {
2182
2193
  8: k,
2183
2194
  9: A,
2184
- 10: Oe,
2195
+ 10: ke,
2185
2196
  11: j,
2186
- 12: ke,
2187
- 14: Ae,
2188
- 21: 200,
2189
- 27: je,
2190
- 29: [1, 199],
2191
- 32: Me,
2192
- 44: Ne,
2193
- 60: Pe,
2194
- 75: Fe,
2195
- 83: 140,
2196
- 84: Ie,
2197
- 85: Le,
2198
- 86: Re,
2199
- 87: ze,
2200
- 88: Be,
2201
- 89: Ve,
2202
- 90: He,
2203
- 91: 201,
2204
- 105: Ue,
2205
- 109: We,
2206
- 111: Ge,
2207
- 114: Ke,
2208
- 115: qe,
2209
- 116: Je
2197
+ 12: Ae,
2198
+ 14: je,
2199
+ 21: 201,
2200
+ 27: Me,
2201
+ 29: [1, 200],
2202
+ 32: Ne,
2203
+ 44: Pe,
2204
+ 60: Fe,
2205
+ 75: Ie,
2206
+ 83: 141,
2207
+ 84: Le,
2208
+ 85: Re,
2209
+ 86: ze,
2210
+ 87: Be,
2211
+ 88: Ve,
2212
+ 89: He,
2213
+ 90: Ue,
2214
+ 91: 202,
2215
+ 105: We,
2216
+ 109: Ge,
2217
+ 111: Ke,
2218
+ 114: qe,
2219
+ 115: Je,
2220
+ 116: Ye
2210
2221
  },
2211
2222
  t(U, [2, 101]),
2212
2223
  t(U, [2, 103]),
@@ -2239,27 +2250,27 @@ You have to call mermaid.initialize.`);
2239
2250
  8: s,
2240
2251
  9: c,
2241
2252
  10: l,
2242
- 11: u,
2253
+ 11: ee,
2243
2254
  20: 17,
2244
2255
  22: 18,
2245
2256
  23: 19,
2246
2257
  24: 20,
2247
2258
  25: 21,
2248
2259
  26: 22,
2249
- 27: d,
2250
- 32: [1, 202],
2260
+ 27: u,
2261
+ 32: [1, 203],
2251
2262
  33: 24,
2252
- 34: f,
2253
- 36: p,
2254
- 38: ee,
2263
+ 34: d,
2264
+ 36: f,
2265
+ 38: te,
2255
2266
  42: 28,
2256
- 43: 38,
2257
- 44: m,
2258
- 45: 39,
2259
- 47: 40,
2260
- 60: h,
2261
- 84: g,
2262
- 85: te,
2267
+ 43: 39,
2268
+ 44: p,
2269
+ 45: 40,
2270
+ 47: 41,
2271
+ 60: m,
2272
+ 84: h,
2273
+ 85: g,
2263
2274
  86: ne,
2264
2275
  87: re,
2265
2276
  88: ie,
@@ -2269,85 +2280,86 @@ You have to call mermaid.initialize.`);
2269
2280
  106: b,
2270
2281
  109: x,
2271
2282
  111: S,
2272
- 113: 41,
2283
+ 113: 42,
2273
2284
  114: C,
2274
2285
  115: w,
2275
2286
  116: T,
2276
2287
  121: E,
2277
2288
  122: ae,
2278
2289
  123: oe,
2279
- 124: se
2290
+ 124: se,
2291
+ 125: ce
2280
2292
  },
2281
2293
  {
2282
2294
  10: D,
2283
- 18: 203
2295
+ 18: 204
2284
2296
  },
2285
- { 44: [1, 204] },
2297
+ { 44: [1, 205] },
2286
2298
  t(M, [2, 43]),
2287
2299
  {
2288
- 10: [1, 205],
2289
- 44: m,
2290
- 60: h,
2300
+ 10: [1, 206],
2301
+ 44: p,
2302
+ 60: m,
2291
2303
  89: _,
2292
2304
  102: v,
2293
2305
  105: y,
2294
2306
  106: b,
2295
2307
  109: x,
2296
2308
  111: S,
2297
- 113: 112,
2309
+ 113: 113,
2298
2310
  114: C,
2299
2311
  115: w,
2300
2312
  116: T
2301
2313
  },
2302
- { 10: [1, 206] },
2314
+ { 10: [1, 207] },
2303
2315
  {
2304
- 10: [1, 207],
2305
- 106: [1, 208]
2316
+ 10: [1, 208],
2317
+ 106: [1, 209]
2306
2318
  },
2307
- t($e, [2, 128]),
2319
+ t(et, [2, 128]),
2308
2320
  {
2309
- 10: [1, 209],
2310
- 44: m,
2311
- 60: h,
2321
+ 10: [1, 210],
2322
+ 44: p,
2323
+ 60: m,
2312
2324
  89: _,
2313
2325
  102: v,
2314
2326
  105: y,
2315
2327
  106: b,
2316
2328
  109: x,
2317
2329
  111: S,
2318
- 113: 112,
2330
+ 113: 113,
2319
2331
  114: C,
2320
2332
  115: w,
2321
2333
  116: T
2322
2334
  },
2323
2335
  {
2324
- 10: [1, 210],
2325
- 44: m,
2326
- 60: h,
2336
+ 10: [1, 211],
2337
+ 44: p,
2338
+ 60: m,
2327
2339
  89: _,
2328
2340
  102: v,
2329
2341
  105: y,
2330
2342
  106: b,
2331
2343
  109: x,
2332
2344
  111: S,
2333
- 113: 112,
2345
+ 113: 113,
2334
2346
  114: C,
2335
2347
  115: w,
2336
2348
  116: T
2337
2349
  },
2338
- { 80: [1, 211] },
2339
- t(F, [2, 109], { 10: [1, 212] }),
2340
- t(F, [2, 111], { 10: [1, 213] }),
2341
- { 80: [1, 214] },
2350
+ { 80: [1, 212] },
2351
+ t(F, [2, 109], { 10: [1, 213] }),
2352
+ t(F, [2, 111], { 10: [1, 214] }),
2353
+ { 80: [1, 215] },
2342
2354
  t(I, [2, 184]),
2343
2355
  {
2344
- 80: [1, 215],
2345
- 98: [1, 216]
2356
+ 80: [1, 216],
2357
+ 98: [1, 217]
2346
2358
  },
2347
2359
  t(M, [2, 55], {
2348
- 113: 112,
2349
- 44: m,
2350
- 60: h,
2360
+ 113: 113,
2361
+ 44: p,
2362
+ 60: m,
2351
2363
  89: _,
2352
2364
  102: v,
2353
2365
  105: y,
@@ -2359,9 +2371,9 @@ You have to call mermaid.initialize.`);
2359
2371
  116: T
2360
2372
  }),
2361
2373
  {
2362
- 31: [1, 217],
2374
+ 31: [1, 218],
2363
2375
  67: L,
2364
- 82: 218,
2376
+ 82: 219,
2365
2377
  116: B,
2366
2378
  117: V,
2367
2379
  118: H
@@ -2374,174 +2386,174 @@ You have to call mermaid.initialize.`);
2374
2386
  t(W, [2, 155]),
2375
2387
  t(W, [2, 156]),
2376
2388
  {
2377
- 49: [1, 219],
2389
+ 49: [1, 220],
2378
2390
  67: L,
2379
- 82: 218,
2391
+ 82: 219,
2380
2392
  116: B,
2381
2393
  117: V,
2382
2394
  118: H
2383
2395
  },
2384
2396
  {
2385
- 30: 220,
2397
+ 30: 221,
2386
2398
  67: L,
2387
2399
  80: R,
2388
2400
  81: z,
2389
- 82: 171,
2401
+ 82: 172,
2390
2402
  116: B,
2391
2403
  117: V,
2392
2404
  118: H
2393
2405
  },
2394
2406
  {
2395
- 51: [1, 221],
2407
+ 51: [1, 222],
2396
2408
  67: L,
2397
- 82: 218,
2409
+ 82: 219,
2398
2410
  116: B,
2399
2411
  117: V,
2400
2412
  118: H
2401
2413
  },
2402
2414
  {
2403
- 53: [1, 222],
2415
+ 53: [1, 223],
2404
2416
  67: L,
2405
- 82: 218,
2417
+ 82: 219,
2406
2418
  116: B,
2407
2419
  117: V,
2408
2420
  118: H
2409
2421
  },
2410
2422
  {
2411
- 55: [1, 223],
2423
+ 55: [1, 224],
2412
2424
  67: L,
2413
- 82: 218,
2425
+ 82: 219,
2414
2426
  116: B,
2415
2427
  117: V,
2416
2428
  118: H
2417
2429
  },
2418
2430
  {
2419
- 57: [1, 224],
2431
+ 57: [1, 225],
2420
2432
  67: L,
2421
- 82: 218,
2433
+ 82: 219,
2422
2434
  116: B,
2423
2435
  117: V,
2424
2436
  118: H
2425
2437
  },
2426
- { 60: [1, 225] },
2438
+ { 60: [1, 226] },
2427
2439
  {
2428
- 64: [1, 226],
2440
+ 64: [1, 227],
2429
2441
  67: L,
2430
- 82: 218,
2442
+ 82: 219,
2431
2443
  116: B,
2432
2444
  117: V,
2433
2445
  118: H
2434
2446
  },
2435
2447
  {
2436
- 66: [1, 227],
2448
+ 66: [1, 228],
2437
2449
  67: L,
2438
- 82: 218,
2450
+ 82: 219,
2439
2451
  116: B,
2440
2452
  117: V,
2441
2453
  118: H
2442
2454
  },
2443
2455
  {
2444
- 30: 228,
2456
+ 30: 229,
2445
2457
  67: L,
2446
2458
  80: R,
2447
2459
  81: z,
2448
- 82: 171,
2460
+ 82: 172,
2449
2461
  116: B,
2450
2462
  117: V,
2451
2463
  118: H
2452
2464
  },
2453
2465
  {
2454
- 31: [1, 229],
2466
+ 31: [1, 230],
2455
2467
  67: L,
2456
- 82: 218,
2468
+ 82: 219,
2457
2469
  116: B,
2458
2470
  117: V,
2459
2471
  118: H
2460
2472
  },
2461
2473
  {
2462
2474
  67: L,
2463
- 69: [1, 230],
2464
- 71: [1, 231],
2465
- 82: 218,
2475
+ 69: [1, 231],
2476
+ 71: [1, 232],
2477
+ 82: 219,
2466
2478
  116: B,
2467
2479
  117: V,
2468
2480
  118: H
2469
2481
  },
2470
2482
  {
2471
2483
  67: L,
2472
- 69: [1, 233],
2473
- 71: [1, 232],
2474
- 82: 218,
2484
+ 69: [1, 234],
2485
+ 71: [1, 233],
2486
+ 82: 219,
2475
2487
  116: B,
2476
2488
  117: V,
2477
2489
  118: H
2478
2490
  },
2479
- t(ce, [2, 45], {
2480
- 18: 155,
2491
+ t(le, [2, 45], {
2492
+ 18: 156,
2481
2493
  10: D,
2482
- 40: Ze
2494
+ 40: Qe
2483
2495
  }),
2484
- t(ce, [2, 47], { 44: Xe }),
2485
- t(Se, [2, 75]),
2486
- t(Se, [2, 74]),
2496
+ t(le, [2, 47], { 44: Ze }),
2497
+ t(Ce, [2, 75]),
2498
+ t(Ce, [2, 74]),
2487
2499
  {
2488
- 62: [1, 234],
2500
+ 62: [1, 235],
2489
2501
  67: L,
2490
- 82: 218,
2502
+ 82: 219,
2491
2503
  116: B,
2492
2504
  117: V,
2493
2505
  118: H
2494
2506
  },
2495
- t(Se, [2, 77]),
2496
- t(Qe, [2, 80]),
2507
+ t(Ce, [2, 77]),
2508
+ t($e, [2, 80]),
2497
2509
  {
2498
- 77: [1, 235],
2499
- 79: 197,
2500
- 116: Te,
2501
- 119: Ee
2510
+ 77: [1, 236],
2511
+ 79: 198,
2512
+ 116: Ee,
2513
+ 119: De
2502
2514
  },
2503
2515
  {
2504
- 30: 236,
2516
+ 30: 237,
2505
2517
  67: L,
2506
2518
  80: R,
2507
2519
  81: z,
2508
- 82: 171,
2520
+ 82: 172,
2509
2521
  116: B,
2510
2522
  117: V,
2511
2523
  118: H
2512
2524
  },
2513
- t(Ye, o, { 5: 237 }),
2525
+ t(Xe, o, { 5: 238 }),
2514
2526
  t(U, [2, 102]),
2515
2527
  t(O, [2, 35]),
2516
2528
  {
2517
- 43: 238,
2518
- 44: m,
2519
- 45: 39,
2520
- 47: 40,
2521
- 60: h,
2529
+ 43: 239,
2530
+ 44: p,
2531
+ 45: 40,
2532
+ 47: 41,
2533
+ 60: m,
2522
2534
  89: _,
2523
2535
  102: v,
2524
2536
  105: y,
2525
2537
  106: b,
2526
2538
  109: x,
2527
2539
  111: S,
2528
- 113: 41,
2540
+ 113: 42,
2529
2541
  114: C,
2530
2542
  115: w,
2531
2543
  116: T
2532
2544
  },
2533
2545
  {
2534
2546
  10: D,
2535
- 18: 239
2547
+ 18: 240
2536
2548
  },
2537
2549
  {
2538
2550
  10: G,
2539
2551
  60: K,
2540
2552
  84: q,
2541
- 92: 240,
2553
+ 92: 241,
2542
2554
  105: J,
2543
- 107: 241,
2544
- 108: 242,
2555
+ 107: 242,
2556
+ 108: 243,
2545
2557
  109: Y,
2546
2558
  110: X,
2547
2559
  111: Z,
@@ -2551,11 +2563,11 @@ You have to call mermaid.initialize.`);
2551
2563
  10: G,
2552
2564
  60: K,
2553
2565
  84: q,
2554
- 92: 251,
2555
- 104: [1, 252],
2566
+ 92: 252,
2567
+ 104: [1, 253],
2556
2568
  105: J,
2557
- 107: 241,
2558
- 108: 242,
2569
+ 107: 242,
2570
+ 108: 243,
2559
2571
  109: Y,
2560
2572
  110: X,
2561
2573
  111: Z,
@@ -2565,61 +2577,61 @@ You have to call mermaid.initialize.`);
2565
2577
  10: G,
2566
2578
  60: K,
2567
2579
  84: q,
2568
- 92: 253,
2569
- 104: [1, 254],
2580
+ 92: 254,
2581
+ 104: [1, 255],
2570
2582
  105: J,
2571
- 107: 241,
2572
- 108: 242,
2583
+ 107: 242,
2584
+ 108: 243,
2573
2585
  109: Y,
2574
2586
  110: X,
2575
2587
  111: Z,
2576
2588
  112: Q
2577
2589
  },
2578
- { 105: [1, 255] },
2590
+ { 105: [1, 256] },
2579
2591
  {
2580
2592
  10: G,
2581
2593
  60: K,
2582
2594
  84: q,
2583
- 92: 256,
2595
+ 92: 257,
2584
2596
  105: J,
2585
- 107: 241,
2586
- 108: 242,
2597
+ 107: 242,
2598
+ 108: 243,
2587
2599
  109: Y,
2588
2600
  110: X,
2589
2601
  111: Z,
2590
2602
  112: Q
2591
2603
  },
2592
2604
  {
2593
- 44: m,
2594
- 47: 257,
2595
- 60: h,
2605
+ 44: p,
2606
+ 47: 258,
2607
+ 60: m,
2596
2608
  89: _,
2597
2609
  102: v,
2598
2610
  105: y,
2599
2611
  106: b,
2600
2612
  109: x,
2601
2613
  111: S,
2602
- 113: 41,
2614
+ 113: 42,
2603
2615
  114: C,
2604
2616
  115: w,
2605
2617
  116: T
2606
2618
  },
2607
2619
  t(F, [2, 108]),
2608
- { 80: [1, 258] },
2620
+ { 80: [1, 259] },
2609
2621
  {
2610
- 80: [1, 259],
2611
- 98: [1, 260]
2622
+ 80: [1, 260],
2623
+ 98: [1, 261]
2612
2624
  },
2613
2625
  t(F, [2, 116]),
2614
- t(F, [2, 118], { 10: [1, 261] }),
2626
+ t(F, [2, 118], { 10: [1, 262] }),
2615
2627
  t(F, [2, 119]),
2616
2628
  t(N, [2, 56]),
2617
2629
  t(W, [2, 87]),
2618
2630
  t(N, [2, 57]),
2619
2631
  {
2620
- 51: [1, 262],
2632
+ 51: [1, 263],
2621
2633
  67: L,
2622
- 82: 218,
2634
+ 82: 219,
2623
2635
  116: B,
2624
2636
  117: V,
2625
2637
  118: H
@@ -2628,13 +2640,13 @@ You have to call mermaid.initialize.`);
2628
2640
  t(N, [2, 59]),
2629
2641
  t(N, [2, 60]),
2630
2642
  t(N, [2, 61]),
2631
- { 109: [1, 263] },
2643
+ { 109: [1, 264] },
2632
2644
  t(N, [2, 63]),
2633
2645
  t(N, [2, 65]),
2634
2646
  {
2635
- 66: [1, 264],
2647
+ 66: [1, 265],
2636
2648
  67: L,
2637
- 82: 218,
2649
+ 82: 219,
2638
2650
  116: B,
2639
2651
  117: V,
2640
2652
  118: H
@@ -2658,11 +2670,11 @@ You have to call mermaid.initialize.`);
2658
2670
  115,
2659
2671
  116
2660
2672
  ], [2, 85]),
2661
- t(Se, [2, 78]),
2673
+ t(Ce, [2, 78]),
2662
2674
  {
2663
- 31: [1, 265],
2675
+ 31: [1, 266],
2664
2676
  67: L,
2665
- 82: 218,
2677
+ 82: 219,
2666
2678
  116: B,
2667
2679
  117: V,
2668
2680
  118: H
@@ -2673,27 +2685,27 @@ You have to call mermaid.initialize.`);
2673
2685
  8: s,
2674
2686
  9: c,
2675
2687
  10: l,
2676
- 11: u,
2688
+ 11: ee,
2677
2689
  20: 17,
2678
2690
  22: 18,
2679
2691
  23: 19,
2680
2692
  24: 20,
2681
2693
  25: 21,
2682
2694
  26: 22,
2683
- 27: d,
2684
- 32: [1, 266],
2695
+ 27: u,
2696
+ 32: [1, 267],
2685
2697
  33: 24,
2686
- 34: f,
2687
- 36: p,
2688
- 38: ee,
2698
+ 34: d,
2699
+ 36: f,
2700
+ 38: te,
2689
2701
  42: 28,
2690
- 43: 38,
2691
- 44: m,
2692
- 45: 39,
2693
- 47: 40,
2694
- 60: h,
2695
- 84: g,
2696
- 85: te,
2702
+ 43: 39,
2703
+ 44: p,
2704
+ 45: 40,
2705
+ 47: 41,
2706
+ 60: m,
2707
+ 84: h,
2708
+ 85: g,
2697
2709
  86: ne,
2698
2710
  87: re,
2699
2711
  88: ie,
@@ -2703,36 +2715,37 @@ You have to call mermaid.initialize.`);
2703
2715
  106: b,
2704
2716
  109: x,
2705
2717
  111: S,
2706
- 113: 41,
2718
+ 113: 42,
2707
2719
  114: C,
2708
2720
  115: w,
2709
2721
  116: T,
2710
2722
  121: E,
2711
2723
  122: ae,
2712
2724
  123: oe,
2713
- 124: se
2725
+ 124: se,
2726
+ 125: ce
2714
2727
  },
2715
2728
  t(M, [2, 53]),
2716
2729
  {
2717
- 43: 267,
2718
- 44: m,
2719
- 45: 39,
2720
- 47: 40,
2721
- 60: h,
2730
+ 43: 268,
2731
+ 44: p,
2732
+ 45: 40,
2733
+ 47: 41,
2734
+ 60: m,
2722
2735
  89: _,
2723
2736
  102: v,
2724
2737
  105: y,
2725
2738
  106: b,
2726
2739
  109: x,
2727
2740
  111: S,
2728
- 113: 41,
2741
+ 113: 42,
2729
2742
  114: C,
2730
2743
  115: w,
2731
2744
  116: T
2732
2745
  },
2733
- t(F, [2, 121], { 106: et }),
2734
- t(tt, [2, 130], {
2735
- 108: 269,
2746
+ t(F, [2, 121], { 106: tt }),
2747
+ t(nt, [2, 130], {
2748
+ 108: 270,
2736
2749
  10: G,
2737
2750
  60: K,
2738
2751
  84: q,
@@ -2751,16 +2764,16 @@ You have to call mermaid.initialize.`);
2751
2764
  t($, [2, 139]),
2752
2765
  t($, [2, 140]),
2753
2766
  t($, [2, 141]),
2754
- t(F, [2, 122], { 106: et }),
2755
- { 10: [1, 270] },
2756
- t(F, [2, 123], { 106: et }),
2767
+ t(F, [2, 122], { 106: tt }),
2757
2768
  { 10: [1, 271] },
2758
- t($e, [2, 129]),
2759
- t(F, [2, 105], { 106: et }),
2769
+ t(F, [2, 123], { 106: tt }),
2770
+ { 10: [1, 272] },
2771
+ t(et, [2, 129]),
2772
+ t(F, [2, 105], { 106: tt }),
2760
2773
  t(F, [2, 106], {
2761
- 113: 112,
2762
- 44: m,
2763
- 60: h,
2774
+ 113: 113,
2775
+ 44: p,
2776
+ 60: m,
2764
2777
  89: _,
2765
2778
  102: v,
2766
2779
  105: y,
@@ -2772,17 +2785,17 @@ You have to call mermaid.initialize.`);
2772
2785
  116: T
2773
2786
  }),
2774
2787
  t(F, [2, 110]),
2775
- t(F, [2, 112], { 10: [1, 272] }),
2788
+ t(F, [2, 112], { 10: [1, 273] }),
2776
2789
  t(F, [2, 113]),
2777
- { 98: [1, 273] },
2778
- { 51: [1, 274] },
2779
- { 62: [1, 275] },
2780
- { 66: [1, 276] },
2790
+ { 98: [1, 274] },
2791
+ { 51: [1, 275] },
2792
+ { 62: [1, 276] },
2793
+ { 66: [1, 277] },
2781
2794
  {
2782
2795
  8: k,
2783
2796
  9: A,
2784
2797
  11: j,
2785
- 21: 277
2798
+ 21: 278
2786
2799
  },
2787
2800
  t(O, [2, 34]),
2788
2801
  t(M, [2, 52]),
@@ -2791,8 +2804,8 @@ You have to call mermaid.initialize.`);
2791
2804
  60: K,
2792
2805
  84: q,
2793
2806
  105: J,
2794
- 107: 278,
2795
- 108: 242,
2807
+ 107: 279,
2808
+ 108: 243,
2796
2809
  109: Y,
2797
2810
  110: X,
2798
2811
  111: Z,
@@ -2800,52 +2813,52 @@ You have to call mermaid.initialize.`);
2800
2813
  },
2801
2814
  t($, [2, 133]),
2802
2815
  {
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
2816
+ 14: de,
2817
+ 44: fe,
2818
+ 60: pe,
2819
+ 89: me,
2820
+ 101: 280,
2821
+ 105: he,
2822
+ 106: ge,
2823
+ 109: _e,
2824
+ 111: ve,
2825
+ 114: ye,
2826
+ 115: be,
2827
+ 116: xe,
2828
+ 120: 88
2816
2829
  },
2817
2830
  {
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
2831
+ 14: de,
2832
+ 44: fe,
2833
+ 60: pe,
2834
+ 89: me,
2835
+ 101: 281,
2836
+ 105: he,
2837
+ 106: ge,
2838
+ 109: _e,
2839
+ 111: ve,
2840
+ 114: ye,
2841
+ 115: be,
2842
+ 116: xe,
2843
+ 120: 88
2831
2844
  },
2832
- { 98: [1, 281] },
2845
+ { 98: [1, 282] },
2833
2846
  t(F, [2, 120]),
2834
2847
  t(N, [2, 58]),
2835
2848
  {
2836
- 30: 282,
2849
+ 30: 283,
2837
2850
  67: L,
2838
2851
  80: R,
2839
2852
  81: z,
2840
- 82: 171,
2853
+ 82: 172,
2841
2854
  116: B,
2842
2855
  117: V,
2843
2856
  118: H
2844
2857
  },
2845
2858
  t(N, [2, 66]),
2846
- t(Ye, o, { 5: 283 }),
2847
- t(tt, [2, 131], {
2848
- 108: 269,
2859
+ t(Xe, o, { 5: 284 }),
2860
+ t(nt, [2, 131], {
2861
+ 108: 270,
2849
2862
  10: G,
2850
2863
  60: K,
2851
2864
  84: q,
@@ -2856,40 +2869,40 @@ You have to call mermaid.initialize.`);
2856
2869
  112: Q
2857
2870
  }),
2858
2871
  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
+ 120: 168,
2873
+ 10: [1, 285],
2874
+ 14: de,
2875
+ 44: fe,
2876
+ 60: pe,
2877
+ 89: me,
2878
+ 105: he,
2879
+ 106: ge,
2880
+ 109: _e,
2881
+ 111: ve,
2882
+ 114: ye,
2883
+ 115: be,
2884
+ 116: xe
2872
2885
  }),
2873
2886
  t(F, [2, 127], {
2874
- 120: 167,
2875
- 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
2887
+ 120: 168,
2888
+ 10: [1, 286],
2889
+ 14: de,
2890
+ 44: fe,
2891
+ 60: pe,
2892
+ 89: me,
2893
+ 105: he,
2894
+ 106: ge,
2895
+ 109: _e,
2896
+ 111: ve,
2897
+ 114: ye,
2898
+ 115: be,
2899
+ 116: xe
2887
2900
  }),
2888
2901
  t(F, [2, 114]),
2889
2902
  {
2890
- 31: [1, 286],
2903
+ 31: [1, 287],
2891
2904
  67: L,
2892
- 82: 218,
2905
+ 82: 219,
2893
2906
  116: B,
2894
2907
  117: V,
2895
2908
  118: H
@@ -2900,27 +2913,27 @@ You have to call mermaid.initialize.`);
2900
2913
  8: s,
2901
2914
  9: c,
2902
2915
  10: l,
2903
- 11: u,
2916
+ 11: ee,
2904
2917
  20: 17,
2905
2918
  22: 18,
2906
2919
  23: 19,
2907
2920
  24: 20,
2908
2921
  25: 21,
2909
2922
  26: 22,
2910
- 27: d,
2911
- 32: [1, 287],
2923
+ 27: u,
2924
+ 32: [1, 288],
2912
2925
  33: 24,
2913
- 34: f,
2914
- 36: p,
2915
- 38: ee,
2926
+ 34: d,
2927
+ 36: f,
2928
+ 38: te,
2916
2929
  42: 28,
2917
- 43: 38,
2918
- 44: m,
2919
- 45: 39,
2920
- 47: 40,
2921
- 60: h,
2922
- 84: g,
2923
- 85: te,
2930
+ 43: 39,
2931
+ 44: p,
2932
+ 45: 40,
2933
+ 47: 41,
2934
+ 60: m,
2935
+ 84: h,
2936
+ 85: g,
2924
2937
  86: ne,
2925
2938
  87: re,
2926
2939
  88: ie,
@@ -2930,23 +2943,24 @@ You have to call mermaid.initialize.`);
2930
2943
  106: b,
2931
2944
  109: x,
2932
2945
  111: S,
2933
- 113: 41,
2946
+ 113: 42,
2934
2947
  114: C,
2935
2948
  115: w,
2936
2949
  116: T,
2937
2950
  121: E,
2938
2951
  122: ae,
2939
2952
  123: oe,
2940
- 124: se
2953
+ 124: se,
2954
+ 125: ce
2941
2955
  },
2942
2956
  {
2943
2957
  10: G,
2944
2958
  60: K,
2945
2959
  84: q,
2946
- 92: 288,
2960
+ 92: 289,
2947
2961
  105: J,
2948
- 107: 241,
2949
- 108: 242,
2962
+ 107: 242,
2963
+ 108: 243,
2950
2964
  109: Y,
2951
2965
  110: X,
2952
2966
  111: Z,
@@ -2956,10 +2970,10 @@ You have to call mermaid.initialize.`);
2956
2970
  10: G,
2957
2971
  60: K,
2958
2972
  84: q,
2959
- 92: 289,
2973
+ 92: 290,
2960
2974
  105: J,
2961
- 107: 241,
2962
- 108: 242,
2975
+ 107: 242,
2976
+ 108: 243,
2963
2977
  109: Y,
2964
2978
  110: X,
2965
2979
  111: Z,
@@ -2967,8 +2981,8 @@ You have to call mermaid.initialize.`);
2967
2981
  },
2968
2982
  t(N, [2, 62]),
2969
2983
  t(O, [2, 33]),
2970
- t(F, [2, 124], { 106: et }),
2971
- t(F, [2, 125], { 106: et })
2984
+ t(F, [2, 124], { 106: tt }),
2985
+ t(F, [2, 125], { 106: tt })
2972
2986
  ],
2973
2987
  defaultActions: {},
2974
2988
  parseError: /* @__PURE__ */ __name(function(e, t) {
@@ -2979,38 +2993,38 @@ You have to call mermaid.initialize.`);
2979
2993
  }
2980
2994
  }, "parseError"),
2981
2995
  parse: /* @__PURE__ */ __name(function(t) {
2982
- 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
- for (var g in this.yy) Object.prototype.hasOwnProperty.call(this.yy, g) && (h.yy[g] = this.yy[g]);
2984
- 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;
2988
- typeof h.yy.parseError == "function" ? this.parseError = h.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
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: {} };
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 = {});
2999
+ var g = p.yylloc;
3000
+ o.push(g);
3001
+ var ne = p.options && p.options.ranges;
3002
+ typeof m.yy.parseError == "function" ? this.parseError = m.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
2989
3003
  function re(e) {
2990
3004
  r.length -= 2 * e, a.length -= e, o.length -= e;
2991
3005
  }
2992
3006
  __name(re, "popStack");
2993
3007
  function ie() {
2994
- var e = i.pop() || m.lex() || p;
3008
+ var e = i.pop() || p.lex() || f;
2995
3009
  return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
2996
3010
  }
2997
3011
  __name(ie, "lex");
2998
3012
  for (var _, v, y, b, x, S = {}, C, w, T, E;;) {
2999
3013
  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
3014
  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, {
3003
- text: m.match,
3015
+ for (C in E = [], s[y]) this.terminals_[C] && C > d && E.push("'" + this.terminals_[C] + "'");
3016
+ ae = p.showPosition ? "Parse error on line " + (l + 1) + ":\n" + p.showPosition() + "\nExpecting " + E.join(", ") + ", got '" + (this.terminals_[_] || _) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (_ == f ? "end of input" : "'" + (this.terminals_[_] || _) + "'"), this.parseError(ae, {
3017
+ text: p.match,
3004
3018
  token: this.terminals_[_] || _,
3005
- line: m.yylineno,
3006
- loc: te,
3019
+ line: p.yylineno,
3020
+ loc: g,
3007
3021
  expected: E
3008
3022
  });
3009
3023
  }
3010
3024
  if (b[0] instanceof Array && b.length > 1) throw Error("Parse Error: multiple actions possible at state: " + y + ", token: " + _);
3011
3025
  switch (b[0]) {
3012
3026
  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--);
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--);
3014
3028
  break;
3015
3029
  case 2:
3016
3030
  if (w = this.productions_[b[1]][1], S.$ = a[a.length - w], S._$ = {
@@ -3020,13 +3034,13 @@ You have to call mermaid.initialize.`);
3020
3034
  last_column: o[o.length - 1].last_column
3021
3035
  }, ne && (S._$.range = [o[o.length - (w || 1)].range[0], o[o.length - 1].range[1]]), x = this.performAction.apply(S, [
3022
3036
  c,
3023
- u,
3037
+ ee,
3024
3038
  l,
3025
- h.yy,
3039
+ m.yy,
3026
3040
  b[1],
3027
3041
  a,
3028
3042
  o
3029
- ].concat(ee)), x !== void 0) return x;
3043
+ ].concat(te)), x !== void 0) return x;
3030
3044
  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);
3031
3045
  break;
3032
3046
  case 3: return !0;
@@ -3035,7 +3049,7 @@ You have to call mermaid.initialize.`);
3035
3049
  return !0;
3036
3050
  }, "parse")
3037
3051
  };
3038
- nt.lexer = /* @__PURE__ */ (function() {
3052
+ rt.lexer = /* @__PURE__ */ (function() {
3039
3053
  return {
3040
3054
  EOF: 1,
3041
3055
  parseError: /* @__PURE__ */ __name(function(e, t) {
@@ -3256,67 +3270,68 @@ You have to call mermaid.initialize.`);
3256
3270
  case 56: return 122;
3257
3271
  case 57: return 123;
3258
3272
  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;
3273
+ case 59: return 125;
3274
+ case 60: return 78;
3275
+ case 61: return 105;
3276
+ case 62: return 111;
3277
+ case 63: return 46;
3278
+ case 64: return 60;
3279
+ case 65: return 44;
3280
+ case 66: return 8;
3281
+ case 67: return 106;
3282
+ case 68: return 115;
3283
+ case 69: return this.popState(), 77;
3284
+ case 70: return this.pushState("edgeText"), 75;
3285
+ case 71: return 119;
3286
+ case 72: return this.popState(), 77;
3287
+ case 73: return this.pushState("thickEdgeText"), 75;
3288
+ case 74: return 119;
3289
+ case 75: return this.popState(), 77;
3290
+ case 76: return this.pushState("dottedEdgeText"), 75;
3291
+ case 77: return 119;
3292
+ case 78: return 77;
3293
+ case 79: return this.popState(), 53;
3294
+ case 80: return "TEXT";
3295
+ case 81: return this.pushState("ellipseText"), 52;
3296
+ case 82: return this.popState(), 55;
3297
+ case 83: return this.pushState("text"), 54;
3298
+ case 84: return this.popState(), 57;
3299
+ case 85: return this.pushState("text"), 56;
3300
+ case 86: return 58;
3301
+ case 87: return this.pushState("text"), 67;
3302
+ case 88: return this.popState(), 64;
3303
+ case 89: return this.pushState("text"), 63;
3304
+ case 90: return this.popState(), 49;
3305
+ case 91: return this.pushState("text"), 48;
3306
+ case 92: return this.popState(), 69;
3307
+ case 93: return this.popState(), 71;
3308
+ case 94: return 117;
3309
+ case 95: return this.pushState("trapText"), 68;
3310
+ case 96: return this.pushState("trapText"), 70;
3311
+ case 97: return 118;
3312
+ case 98: return 67;
3313
+ case 99: return 90;
3314
+ case 100: return "SEP";
3315
+ case 101: return 89;
3316
+ case 102: return 115;
3317
+ case 103: return 111;
3318
+ case 104: return 44;
3319
+ case 105: return 109;
3320
+ case 106: return 114;
3321
+ case 107: return 116;
3322
+ case 108: return this.popState(), 62;
3323
+ case 109: return this.pushState("text"), 62;
3324
+ case 110: return this.popState(), 51;
3325
+ case 111: return this.pushState("text"), 50;
3326
+ case 112: return this.popState(), 31;
3327
+ case 113: return this.pushState("text"), 29;
3328
+ case 114: return this.popState(), 66;
3329
+ case 115: return this.pushState("text"), 65;
3330
+ case 116: return "TEXT";
3331
+ case 117: return "QUOTE";
3332
+ case 118: return 9;
3333
+ case 119: return 10;
3334
+ case 120: return 11;
3320
3335
  }
3321
3336
  }, "anonymous"),
3322
3337
  rules: [
@@ -3379,6 +3394,7 @@ You have to call mermaid.initialize.`);
3379
3394
  /^(?:.*direction\s+BT[^\n]*)/,
3380
3395
  /^(?:.*direction\s+RL[^\n]*)/,
3381
3396
  /^(?:.*direction\s+LR[^\n]*)/,
3397
+ /^(?:.*direction\s+TD[^\n]*)/,
3382
3398
  /^(?:[^\s\"]+@(?=[^\{\"]))/,
3383
3399
  /^(?:[0-9]+)/,
3384
3400
  /^(?:#)/,
@@ -3446,18 +3462,18 @@ You have to call mermaid.initialize.`);
3446
3462
  rules: [
3447
3463
  21,
3448
3464
  24,
3449
- 77,
3450
- 80,
3451
- 82,
3452
- 84,
3453
- 88,
3454
- 90,
3455
- 94,
3465
+ 78,
3466
+ 81,
3467
+ 83,
3468
+ 85,
3469
+ 89,
3470
+ 91,
3456
3471
  95,
3457
- 108,
3458
- 110,
3459
- 112,
3460
- 114
3472
+ 96,
3473
+ 109,
3474
+ 111,
3475
+ 113,
3476
+ 115
3461
3477
  ],
3462
3478
  inclusive: !1
3463
3479
  },
@@ -3467,18 +3483,18 @@ You have to call mermaid.initialize.`);
3467
3483
  10,
3468
3484
  21,
3469
3485
  24,
3470
- 77,
3471
- 80,
3472
- 82,
3473
- 84,
3474
- 88,
3475
- 90,
3476
- 94,
3486
+ 78,
3487
+ 81,
3488
+ 83,
3489
+ 85,
3490
+ 89,
3491
+ 91,
3477
3492
  95,
3478
- 108,
3479
- 110,
3480
- 112,
3481
- 114
3493
+ 96,
3494
+ 109,
3495
+ 111,
3496
+ 113,
3497
+ 115
3482
3498
  ],
3483
3499
  inclusive: !1
3484
3500
  },
@@ -3489,18 +3505,18 @@ You have to call mermaid.initialize.`);
3489
3505
  12,
3490
3506
  21,
3491
3507
  24,
3492
- 77,
3493
- 80,
3494
- 82,
3495
- 84,
3496
- 88,
3497
- 90,
3498
- 94,
3508
+ 78,
3509
+ 81,
3510
+ 83,
3511
+ 85,
3512
+ 89,
3513
+ 91,
3499
3514
  95,
3500
- 108,
3501
- 110,
3502
- 112,
3503
- 114
3515
+ 96,
3516
+ 109,
3517
+ 111,
3518
+ 113,
3519
+ 115
3504
3520
  ],
3505
3521
  inclusive: !1
3506
3522
  },
@@ -3510,18 +3526,18 @@ You have to call mermaid.initialize.`);
3510
3526
  18,
3511
3527
  21,
3512
3528
  24,
3513
- 77,
3514
- 80,
3515
- 82,
3516
- 84,
3517
- 88,
3518
- 90,
3519
- 94,
3529
+ 78,
3530
+ 81,
3531
+ 83,
3532
+ 85,
3533
+ 89,
3534
+ 91,
3520
3535
  95,
3521
- 108,
3522
- 110,
3523
- 112,
3524
- 114
3536
+ 96,
3537
+ 109,
3538
+ 111,
3539
+ 113,
3540
+ 115
3525
3541
  ],
3526
3542
  inclusive: !1
3527
3543
  },
@@ -3532,18 +3548,18 @@ You have to call mermaid.initialize.`);
3532
3548
  16,
3533
3549
  21,
3534
3550
  24,
3535
- 77,
3536
- 80,
3537
- 82,
3538
- 84,
3539
- 88,
3540
- 90,
3541
- 94,
3551
+ 78,
3552
+ 81,
3553
+ 83,
3554
+ 85,
3555
+ 89,
3556
+ 91,
3542
3557
  95,
3543
- 108,
3544
- 110,
3545
- 112,
3546
- 114
3558
+ 96,
3559
+ 109,
3560
+ 111,
3561
+ 113,
3562
+ 115
3547
3563
  ],
3548
3564
  inclusive: !1
3549
3565
  },
@@ -3551,18 +3567,18 @@ You have to call mermaid.initialize.`);
3551
3567
  rules: [
3552
3568
  21,
3553
3569
  24,
3554
- 77,
3555
- 80,
3556
- 82,
3557
- 84,
3558
- 88,
3559
- 90,
3560
- 94,
3570
+ 78,
3571
+ 81,
3572
+ 83,
3573
+ 85,
3574
+ 89,
3575
+ 91,
3561
3576
  95,
3562
- 108,
3563
- 110,
3564
- 112,
3565
- 114
3577
+ 96,
3578
+ 109,
3579
+ 111,
3580
+ 113,
3581
+ 115
3566
3582
  ],
3567
3583
  inclusive: !1
3568
3584
  },
@@ -3572,18 +3588,18 @@ You have to call mermaid.initialize.`);
3572
3588
  24,
3573
3589
  33,
3574
3590
  34,
3575
- 77,
3576
- 80,
3577
- 82,
3578
- 84,
3579
- 88,
3580
- 90,
3581
- 94,
3591
+ 78,
3592
+ 81,
3593
+ 83,
3594
+ 85,
3595
+ 89,
3596
+ 91,
3582
3597
  95,
3583
- 108,
3584
- 110,
3585
- 112,
3586
- 114
3598
+ 96,
3599
+ 109,
3600
+ 111,
3601
+ 113,
3602
+ 115
3587
3603
  ],
3588
3604
  inclusive: !1
3589
3605
  },
@@ -3591,20 +3607,20 @@ You have to call mermaid.initialize.`);
3591
3607
  rules: [
3592
3608
  21,
3593
3609
  24,
3594
- 74,
3595
- 76,
3610
+ 75,
3596
3611
  77,
3597
- 80,
3598
- 82,
3599
- 84,
3600
- 88,
3601
- 90,
3602
- 94,
3612
+ 78,
3613
+ 81,
3614
+ 83,
3615
+ 85,
3616
+ 89,
3617
+ 91,
3603
3618
  95,
3604
- 108,
3605
- 110,
3606
- 112,
3607
- 114
3619
+ 96,
3620
+ 109,
3621
+ 111,
3622
+ 113,
3623
+ 115
3608
3624
  ],
3609
3625
  inclusive: !1
3610
3626
  },
@@ -3612,20 +3628,20 @@ You have to call mermaid.initialize.`);
3612
3628
  rules: [
3613
3629
  21,
3614
3630
  24,
3615
- 71,
3616
- 73,
3617
- 77,
3618
- 80,
3619
- 82,
3620
- 84,
3621
- 88,
3622
- 90,
3623
- 94,
3631
+ 72,
3632
+ 74,
3633
+ 78,
3634
+ 81,
3635
+ 83,
3636
+ 85,
3637
+ 89,
3638
+ 91,
3624
3639
  95,
3625
- 108,
3626
- 110,
3627
- 112,
3628
- 114
3640
+ 96,
3641
+ 109,
3642
+ 111,
3643
+ 113,
3644
+ 115
3629
3645
  ],
3630
3646
  inclusive: !1
3631
3647
  },
@@ -3633,20 +3649,20 @@ You have to call mermaid.initialize.`);
3633
3649
  rules: [
3634
3650
  21,
3635
3651
  24,
3636
- 68,
3637
- 70,
3638
- 77,
3639
- 80,
3640
- 82,
3641
- 84,
3642
- 88,
3643
- 90,
3644
- 94,
3652
+ 69,
3653
+ 71,
3654
+ 78,
3655
+ 81,
3656
+ 83,
3657
+ 85,
3658
+ 89,
3659
+ 91,
3645
3660
  95,
3646
- 108,
3647
- 110,
3648
- 112,
3649
- 114
3661
+ 96,
3662
+ 109,
3663
+ 111,
3664
+ 113,
3665
+ 115
3650
3666
  ],
3651
3667
  inclusive: !1
3652
3668
  },
@@ -3654,21 +3670,21 @@ You have to call mermaid.initialize.`);
3654
3670
  rules: [
3655
3671
  21,
3656
3672
  24,
3657
- 77,
3658
- 80,
3659
- 82,
3660
- 84,
3661
- 88,
3662
- 90,
3673
+ 78,
3674
+ 81,
3675
+ 83,
3676
+ 85,
3677
+ 89,
3663
3678
  91,
3664
3679
  92,
3665
3680
  93,
3666
3681
  94,
3667
3682
  95,
3668
- 108,
3669
- 110,
3670
- 112,
3671
- 114
3683
+ 96,
3684
+ 109,
3685
+ 111,
3686
+ 113,
3687
+ 115
3672
3688
  ],
3673
3689
  inclusive: !1
3674
3690
  },
@@ -3676,20 +3692,20 @@ You have to call mermaid.initialize.`);
3676
3692
  rules: [
3677
3693
  21,
3678
3694
  24,
3679
- 77,
3680
3695
  78,
3681
3696
  79,
3682
3697
  80,
3683
- 82,
3684
- 84,
3685
- 88,
3686
- 90,
3687
- 94,
3698
+ 81,
3699
+ 83,
3700
+ 85,
3701
+ 89,
3702
+ 91,
3688
3703
  95,
3689
- 108,
3690
- 110,
3691
- 112,
3692
- 114
3704
+ 96,
3705
+ 109,
3706
+ 111,
3707
+ 113,
3708
+ 115
3693
3709
  ],
3694
3710
  inclusive: !1
3695
3711
  },
@@ -3697,19 +3713,18 @@ You have to call mermaid.initialize.`);
3697
3713
  rules: [
3698
3714
  21,
3699
3715
  24,
3700
- 77,
3701
- 80,
3716
+ 78,
3702
3717
  81,
3703
3718
  82,
3704
3719
  83,
3705
3720
  84,
3706
- 87,
3721
+ 85,
3707
3722
  88,
3708
3723
  89,
3709
3724
  90,
3710
- 94,
3725
+ 91,
3711
3726
  95,
3712
- 107,
3727
+ 96,
3713
3728
  108,
3714
3729
  109,
3715
3730
  110,
@@ -3717,7 +3732,8 @@ You have to call mermaid.initialize.`);
3717
3732
  112,
3718
3733
  113,
3719
3734
  114,
3720
- 115
3735
+ 115,
3736
+ 116
3721
3737
  ],
3722
3738
  inclusive: !1
3723
3739
  },
@@ -3725,18 +3741,18 @@ You have to call mermaid.initialize.`);
3725
3741
  rules: [
3726
3742
  21,
3727
3743
  24,
3728
- 77,
3729
- 80,
3730
- 82,
3731
- 84,
3732
- 88,
3733
- 90,
3734
- 94,
3744
+ 78,
3745
+ 81,
3746
+ 83,
3747
+ 85,
3748
+ 89,
3749
+ 91,
3735
3750
  95,
3736
- 108,
3737
- 110,
3738
- 112,
3739
- 114
3751
+ 96,
3752
+ 109,
3753
+ 111,
3754
+ 113,
3755
+ 115
3740
3756
  ],
3741
3757
  inclusive: !1
3742
3758
  },
@@ -3755,18 +3771,18 @@ You have to call mermaid.initialize.`);
3755
3771
  52,
3756
3772
  53,
3757
3773
  54,
3758
- 77,
3759
- 80,
3760
- 82,
3761
- 84,
3762
- 88,
3763
- 90,
3764
- 94,
3774
+ 78,
3775
+ 81,
3776
+ 83,
3777
+ 85,
3778
+ 89,
3779
+ 91,
3765
3780
  95,
3766
- 108,
3767
- 110,
3768
- 112,
3769
- 114
3781
+ 96,
3782
+ 109,
3783
+ 111,
3784
+ 113,
3785
+ 115
3770
3786
  ],
3771
3787
  inclusive: !1
3772
3788
  },
@@ -3776,18 +3792,18 @@ You have to call mermaid.initialize.`);
3776
3792
  6,
3777
3793
  21,
3778
3794
  24,
3779
- 77,
3780
- 80,
3781
- 82,
3782
- 84,
3783
- 88,
3784
- 90,
3785
- 94,
3795
+ 78,
3796
+ 81,
3797
+ 83,
3798
+ 85,
3799
+ 89,
3800
+ 91,
3786
3801
  95,
3787
- 108,
3788
- 110,
3789
- 112,
3790
- 114
3802
+ 96,
3803
+ 109,
3804
+ 111,
3805
+ 113,
3806
+ 115
3791
3807
  ],
3792
3808
  inclusive: !1
3793
3809
  },
@@ -3796,18 +3812,18 @@ You have to call mermaid.initialize.`);
3796
3812
  3,
3797
3813
  21,
3798
3814
  24,
3799
- 77,
3800
- 80,
3801
- 82,
3802
- 84,
3803
- 88,
3804
- 90,
3805
- 94,
3815
+ 78,
3816
+ 81,
3817
+ 83,
3818
+ 85,
3819
+ 89,
3820
+ 91,
3806
3821
  95,
3807
- 108,
3808
- 110,
3809
- 112,
3810
- 114
3822
+ 96,
3823
+ 109,
3824
+ 111,
3825
+ 113,
3826
+ 115
3811
3827
  ],
3812
3828
  inclusive: !1
3813
3829
  },
@@ -3816,18 +3832,18 @@ You have to call mermaid.initialize.`);
3816
3832
  1,
3817
3833
  21,
3818
3834
  24,
3819
- 77,
3820
- 80,
3821
- 82,
3822
- 84,
3823
- 88,
3824
- 90,
3825
- 94,
3835
+ 78,
3836
+ 81,
3837
+ 83,
3838
+ 85,
3839
+ 89,
3840
+ 91,
3826
3841
  95,
3827
- 108,
3828
- 110,
3829
- 112,
3830
- 114
3842
+ 96,
3843
+ 109,
3844
+ 111,
3845
+ 113,
3846
+ 115
3831
3847
  ],
3832
3848
  inclusive: !1
3833
3849
  },
@@ -3837,18 +3853,18 @@ You have to call mermaid.initialize.`);
3837
3853
  20,
3838
3854
  21,
3839
3855
  24,
3840
- 77,
3841
- 80,
3842
- 82,
3843
- 84,
3844
- 88,
3845
- 90,
3846
- 94,
3856
+ 78,
3857
+ 81,
3858
+ 83,
3859
+ 85,
3860
+ 89,
3861
+ 91,
3847
3862
  95,
3848
- 108,
3849
- 110,
3850
- 112,
3851
- 114
3863
+ 96,
3864
+ 109,
3865
+ 111,
3866
+ 113,
3867
+ 115
3852
3868
  ],
3853
3869
  inclusive: !1
3854
3870
  },
@@ -3858,18 +3874,18 @@ You have to call mermaid.initialize.`);
3858
3874
  22,
3859
3875
  23,
3860
3876
  24,
3861
- 77,
3862
- 80,
3863
- 82,
3864
- 84,
3865
- 88,
3866
- 90,
3867
- 94,
3877
+ 78,
3878
+ 81,
3879
+ 83,
3880
+ 85,
3881
+ 89,
3882
+ 91,
3868
3883
  95,
3869
- 108,
3870
- 110,
3871
- 112,
3872
- 114
3884
+ 96,
3885
+ 109,
3886
+ 111,
3887
+ 113,
3888
+ 115
3873
3889
  ],
3874
3890
  inclusive: !1
3875
3891
  },
@@ -3914,19 +3930,19 @@ You have to call mermaid.initialize.`);
3914
3930
  67,
3915
3931
  68,
3916
3932
  69,
3917
- 71,
3933
+ 70,
3918
3934
  72,
3919
- 74,
3935
+ 73,
3920
3936
  75,
3921
- 77,
3922
- 80,
3923
- 82,
3924
- 84,
3937
+ 76,
3938
+ 78,
3939
+ 81,
3940
+ 83,
3925
3941
  85,
3926
3942
  86,
3927
- 88,
3928
- 90,
3929
- 94,
3943
+ 87,
3944
+ 89,
3945
+ 91,
3930
3946
  95,
3931
3947
  96,
3932
3948
  97,
@@ -3939,24 +3955,25 @@ You have to call mermaid.initialize.`);
3939
3955
  104,
3940
3956
  105,
3941
3957
  106,
3942
- 108,
3943
- 110,
3944
- 112,
3945
- 114,
3946
- 116,
3958
+ 107,
3959
+ 109,
3960
+ 111,
3961
+ 113,
3962
+ 115,
3947
3963
  117,
3948
3964
  118,
3949
- 119
3965
+ 119,
3966
+ 120
3950
3967
  ],
3951
3968
  inclusive: !0
3952
3969
  }
3953
3970
  }
3954
3971
  };
3955
3972
  })();
3956
- function rt() {
3973
+ function it() {
3957
3974
  this.yy = {};
3958
3975
  }
3959
- return __name(rt, "Parser"), rt.prototype = nt, nt.Parser = rt, new rt();
3976
+ return __name(it, "Parser"), it.prototype = rt, rt.Parser = it, new it();
3960
3977
  })();
3961
3978
  parser.parser = parser;
3962
3979
  var flow_default = parser, newParser = Object.assign({}, flow_default);
@@ -3999,7 +4016,7 @@ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
3999
4016
  .node path {
4000
4017
  fill: ${e.mainBkg};
4001
4018
  stroke: ${e.nodeBorder};
4002
- stroke-width: 1px;
4019
+ stroke-width: ${e.strokeWidth ?? 1}px;
4003
4020
  }
4004
4021
  .rough-node .label text , .node .label text, .image-shape .label, .icon-shape .label {
4005
4022
  text-anchor: middle;
@@ -4037,7 +4054,7 @@ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
4037
4054
 
4038
4055
  .edgePath .path {
4039
4056
  stroke: ${e.lineColor};
4040
- stroke-width: 2.0px;
4057
+ stroke-width: ${e.strokeWidth ?? 2}px;
4041
4058
  }
4042
4059
 
4043
4060
  .flowchart-link {
@@ -4112,7 +4129,7 @@ var flowParser_default = newParser, fade = /* @__PURE__ */ __name((e, t) => {
4112
4129
  background-color: ${e.edgeLabelBackground};
4113
4130
  padding: 2px;
4114
4131
  }
4115
- rect {
4132
+ .label rect {
4116
4133
  opacity: 0.5;
4117
4134
  background-color: ${e.edgeLabelBackground};
4118
4135
  fill: ${e.edgeLabelBackground};