@loopstack/loopstack-studio 0.20.3 → 0.21.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (991) hide show
  1. package/dist/_virtual/rolldown_runtime.js +20 -0
  2. package/dist/components/data-table/ConfirmDialog.js +30 -0
  3. package/dist/components/data-table/DataList.js +216 -0
  4. package/dist/components/data-table/DataTable.js +264 -0
  5. package/dist/components/data-table/DataTableBatchAction.js +32 -0
  6. package/dist/components/data-table/DataTableFilters.js +83 -0
  7. package/dist/components/data-table/DataTablePagination.js +108 -0
  8. package/dist/components/data-table/DataTableToolbar.js +70 -0
  9. package/dist/components/dynamic-form/ArrayController.js +100 -0
  10. package/dist/components/dynamic-form/CodeContent.js +174 -0
  11. package/dist/components/dynamic-form/Form.js +35 -0
  12. package/dist/components/dynamic-form/FormBody.js +26 -0
  13. package/dist/components/dynamic-form/FormElement.js +42 -0
  14. package/dist/components/dynamic-form/FormElementHeader.js +20 -0
  15. package/dist/components/dynamic-form/InputController.js +38 -0
  16. package/dist/components/dynamic-form/MarkdownContent.js +76 -0
  17. package/dist/components/dynamic-form/MermaidDiagram.js +41 -0
  18. package/dist/components/dynamic-form/ObjectController.js +32 -0
  19. package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +47 -0
  20. package/dist/components/dynamic-form/fields/CheckboxField.js +53 -0
  21. package/dist/components/dynamic-form/fields/CodeViewField.js +63 -0
  22. package/dist/components/dynamic-form/fields/InputField.js +105 -0
  23. package/dist/components/dynamic-form/fields/RadioField.js +67 -0
  24. package/dist/components/dynamic-form/fields/SelectField.js +60 -0
  25. package/dist/components/dynamic-form/fields/SliderField.js +112 -0
  26. package/dist/components/dynamic-form/fields/SwitchField.js +66 -0
  27. package/dist/components/dynamic-form/fields/TextareaField.js +77 -0
  28. package/dist/components/dynamic-form/fields/utils/text-validation-utils.js +33 -0
  29. package/dist/components/dynamic-form/hooks/useArrayDefaultValue.js +42 -0
  30. package/dist/components/dynamic-form/hooks/useFieldConfig.js +21 -0
  31. package/dist/components/dynamic-form/hooks/useMergeParentKey.js +5 -0
  32. package/dist/components/dynamic-form/hooks/useSortPropertyNames.js +5 -0
  33. package/dist/components/layout/MainLayout.js +24 -0
  34. package/dist/components/lists/CustomListView.js +87 -0
  35. package/dist/components/lists/ListView.js +118 -0
  36. package/dist/components/page/PageBreadcrumbs.js +41 -0
  37. package/dist/components/snackbars/ErrorSnackbar.js +30 -0
  38. package/dist/components/snackbars/Snackbar.js +44 -0
  39. package/dist/components/ui/alert-dialog.js +121 -0
  40. package/dist/components/ui/badge.js +28 -0
  41. package/dist/components/ui/breadcrumb.js +85 -0
  42. package/dist/components/ui/button.js +47 -0
  43. package/dist/components/ui/card.js +29 -0
  44. package/dist/components/ui/checkbox.js +26 -0
  45. package/dist/components/ui/collapsible.js +32 -0
  46. package/dist/components/ui/dialog.js +88 -0
  47. package/dist/components/ui/input.js +18 -0
  48. package/dist/components/ui/label.js +19 -0
  49. package/dist/components/ui/radio-group.js +38 -0
  50. package/dist/components/ui/select.js +125 -0
  51. package/dist/components/ui/sheet.js +97 -0
  52. package/dist/components/ui/slider.js +35 -0
  53. package/dist/components/ui/switch.js +24 -0
  54. package/dist/components/ui/table.js +81 -0
  55. package/dist/components/ui/textarea.js +17 -0
  56. package/dist/components/ui/tooltip.js +50 -0
  57. package/dist/features/health/LocalHealthCheck.js +95 -0
  58. package/dist/features/workspaces/Workspaces.js +162 -0
  59. package/dist/features/workspaces/components/CreateWorkspace.js +128 -0
  60. package/dist/features/workspaces/components/ExecutionTimeline.js +204 -0
  61. package/dist/features/workspaces/components/NewPipelineRunDialog.js +31 -0
  62. package/dist/features/workspaces/components/PipelineForm.js +152 -0
  63. package/dist/features/workspaces/components/pipeline-form/ArgumentsView.js +75 -0
  64. package/dist/features/workspaces/components/pipeline-form/HeaderSection.js +43 -0
  65. package/dist/features/workspaces/components/pipeline-form/SelectionView.js +105 -0
  66. package/dist/hooks/use-mobile.js +3 -3
  67. package/dist/hooks/useAuth.js +56 -0
  68. package/dist/hooks/useConfig.js +46 -0
  69. package/dist/hooks/useDebounce.js +27 -0
  70. package/dist/hooks/usePipelines.js +117 -0
  71. package/dist/hooks/useProcessor.js +24 -0
  72. package/dist/hooks/useWorkspaces.js +142 -0
  73. package/dist/index.d.ts +7 -0
  74. package/dist/index.js +4 -1
  75. package/dist/lib/utils.js +6 -0
  76. package/dist/loopstack-studio.css +2 -0
  77. package/dist/node_modules/@braintree/sanitize-url/dist/constants.js +6 -0
  78. package/dist/node_modules/@braintree/sanitize-url/dist/index.js +48 -0
  79. package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +26 -0
  80. package/dist/node_modules/@chevrotain/gast/lib/src/model.js +154 -0
  81. package/dist/node_modules/@chevrotain/gast/lib/src/visitor.js +40 -0
  82. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/api.js +2 -0
  83. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/base-regexp-visitor.js +85 -0
  84. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/character-classes.js +35 -0
  85. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/regexp-parser.js +570 -0
  86. package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/utils.js +25 -0
  87. package/dist/node_modules/@chevrotain/utils/lib/src/print.js +9 -0
  88. package/dist/node_modules/@chevrotain/utils/lib/src/timer.js +8 -0
  89. package/dist/node_modules/@chevrotain/utils/lib/src/to-fast-properties.js +10 -0
  90. package/dist/node_modules/@iconify/utils/lib/customisations/defaults.js +9 -0
  91. package/dist/node_modules/@iconify/utils/lib/icon/defaults.js +18 -0
  92. package/dist/node_modules/@iconify/utils/lib/icon/merge.js +8 -0
  93. package/dist/node_modules/@iconify/utils/lib/icon/name.js +35 -0
  94. package/dist/node_modules/@iconify/utils/lib/icon/transformations.js +7 -0
  95. package/dist/node_modules/@iconify/utils/lib/icon-set/get-icon.js +15 -0
  96. package/dist/node_modules/@iconify/utils/lib/icon-set/tree.js +14 -0
  97. package/dist/node_modules/@iconify/utils/lib/svg/build.js +54 -0
  98. package/dist/node_modules/@iconify/utils/lib/svg/defs.js +22 -0
  99. package/dist/node_modules/@iconify/utils/lib/svg/html.js +6 -0
  100. package/dist/node_modules/@iconify/utils/lib/svg/id.js +17 -0
  101. package/dist/node_modules/@iconify/utils/lib/svg/size.js +18 -0
  102. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-7HQA4BMR.js +3 -0
  103. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-4F5CHEZ2.js +23 -0
  104. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-B2363JML.js +60 -0
  105. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FRFDVMJY.js +23 -0
  106. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-PL6DKKU2.js +28 -0
  107. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-SJTYNZTY.js +23 -0
  108. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TCCFYFTB.js +787 -0
  109. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TQ3KTPDO.js +23 -0
  110. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-UMXZTB3W.js +30 -0
  111. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-G5XIXVHT.js +3 -0
  112. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-VBDWY6EO.js +3 -0
  113. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-DYOGHKS2.js +3 -0
  114. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-VRWISCQL.js +3 -0
  115. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-ZZBFDIW7.js +3 -0
  116. package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-GDKQZRPO.js +3 -0
  117. package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +55 -0
  118. package/dist/node_modules/ccount/index.js +8 -0
  119. package/dist/node_modules/chevrotain/lib/src/api.js +10 -0
  120. package/dist/node_modules/chevrotain/lib/src/lang/lang_extensions.js +10 -0
  121. package/dist/node_modules/chevrotain/lib/src/parse/constants.js +2 -0
  122. package/dist/node_modules/chevrotain/lib/src/parse/cst/cst.js +13 -0
  123. package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +58 -0
  124. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +75 -0
  125. package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +34 -0
  126. package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +299 -0
  127. package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +25 -0
  128. package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +29 -0
  129. package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +15 -0
  130. package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +269 -0
  131. package/dist/node_modules/chevrotain/lib/src/parse/grammar/keys.js +5 -0
  132. package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +43 -0
  133. package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +248 -0
  134. package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +32 -0
  135. package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +58 -0
  136. package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +122 -0
  137. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/context_assist.js +16 -0
  138. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +48 -0
  139. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +172 -0
  140. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +39 -0
  141. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +109 -0
  142. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +22 -0
  143. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +313 -0
  144. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +275 -0
  145. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +144 -0
  146. package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +102 -0
  147. package/dist/node_modules/chevrotain/lib/src/parse/parser/utils/apply_mixins.js +11 -0
  148. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +465 -0
  149. package/dist/node_modules/chevrotain/lib/src/scan/lexer_errors_public.js +9 -0
  150. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +275 -0
  151. package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +152 -0
  152. package/dist/node_modules/chevrotain/lib/src/scan/reg_exp_parser.js +15 -0
  153. package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +75 -0
  154. package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +42 -0
  155. package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +346 -0
  156. package/dist/node_modules/chevrotain-allstar/lib/atn.js +194 -0
  157. package/dist/node_modules/chevrotain-allstar/lib/dfa.js +32 -0
  158. package/dist/node_modules/chevrotain-allstar/lib/index.js +1 -0
  159. package/dist/node_modules/comma-separated-tokens/index.js +10 -0
  160. package/dist/node_modules/cose-base/cose-base.js +469 -0
  161. package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +18100 -0
  162. package/dist/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js +172 -0
  163. package/dist/node_modules/cytoscape-fcose/cytoscape-fcose.js +604 -0
  164. package/dist/node_modules/cytoscape-fcose/node_modules/cose-base/cose-base.js +1142 -0
  165. package/dist/node_modules/cytoscape-fcose/node_modules/layout-base/layout-base.js +1635 -0
  166. package/dist/node_modules/d3/src/index.js +93 -0
  167. package/dist/node_modules/d3-array/src/ascending.js +4 -0
  168. package/dist/node_modules/d3-array/src/bisect.js +8 -0
  169. package/dist/node_modules/d3-array/src/bisector.js +39 -0
  170. package/dist/node_modules/d3-array/src/descending.js +4 -0
  171. package/dist/node_modules/d3-array/src/max.js +10 -0
  172. package/dist/node_modules/d3-array/src/min.js +10 -0
  173. package/dist/node_modules/d3-array/src/number.js +4 -0
  174. package/dist/node_modules/d3-array/src/range.js +6 -0
  175. package/dist/node_modules/d3-array/src/ticks.js +30 -0
  176. package/dist/node_modules/d3-axis/src/axis.js +61 -0
  177. package/dist/node_modules/d3-axis/src/identity.js +4 -0
  178. package/dist/node_modules/d3-brush/src/brush.js +15 -0
  179. package/dist/node_modules/d3-brush/src/index.js +1 -0
  180. package/dist/node_modules/d3-color/src/color.js +287 -0
  181. package/dist/node_modules/d3-color/src/define.js +9 -0
  182. package/dist/node_modules/d3-color/src/lab.js +70 -0
  183. package/dist/node_modules/d3-color/src/math.js +2 -0
  184. package/dist/node_modules/d3-dispatch/src/dispatch.js +64 -0
  185. package/dist/node_modules/d3-ease/src/cubic.js +4 -0
  186. package/dist/node_modules/d3-format/src/defaultLocale.js +11 -0
  187. package/dist/node_modules/d3-format/src/exponent.js +5 -0
  188. package/dist/node_modules/d3-format/src/formatDecimal.js +9 -0
  189. package/dist/node_modules/d3-format/src/formatGroup.js +7 -0
  190. package/dist/node_modules/d3-format/src/formatNumerals.js +8 -0
  191. package/dist/node_modules/d3-format/src/formatPrefixAuto.js +9 -0
  192. package/dist/node_modules/d3-format/src/formatRounded.js +8 -0
  193. package/dist/node_modules/d3-format/src/formatSpecifier.js +25 -0
  194. package/dist/node_modules/d3-format/src/formatTrim.js +16 -0
  195. package/dist/node_modules/d3-format/src/formatTypes.js +19 -0
  196. package/dist/node_modules/d3-format/src/identity.js +4 -0
  197. package/dist/node_modules/d3-format/src/locale.js +82 -0
  198. package/dist/node_modules/d3-format/src/precisionFixed.js +5 -0
  199. package/dist/node_modules/d3-format/src/precisionPrefix.js +5 -0
  200. package/dist/node_modules/d3-format/src/precisionRound.js +5 -0
  201. package/dist/node_modules/d3-hierarchy/src/accessors.js +5 -0
  202. package/dist/node_modules/d3-hierarchy/src/constant.js +9 -0
  203. package/dist/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +5 -0
  204. package/dist/node_modules/d3-hierarchy/src/hierarchy/count.js +10 -0
  205. package/dist/node_modules/d3-hierarchy/src/hierarchy/descendants.js +4 -0
  206. package/dist/node_modules/d3-hierarchy/src/hierarchy/each.js +6 -0
  207. package/dist/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +6 -0
  208. package/dist/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +5 -0
  209. package/dist/node_modules/d3-hierarchy/src/hierarchy/find.js +5 -0
  210. package/dist/node_modules/d3-hierarchy/src/hierarchy/index.js +57 -0
  211. package/dist/node_modules/d3-hierarchy/src/hierarchy/iterator.js +7 -0
  212. package/dist/node_modules/d3-hierarchy/src/hierarchy/leaves.js +7 -0
  213. package/dist/node_modules/d3-hierarchy/src/hierarchy/links.js +10 -0
  214. package/dist/node_modules/d3-hierarchy/src/hierarchy/path.js +12 -0
  215. package/dist/node_modules/d3-hierarchy/src/hierarchy/sort.js +6 -0
  216. package/dist/node_modules/d3-hierarchy/src/hierarchy/sum.js +7 -0
  217. package/dist/node_modules/d3-hierarchy/src/treemap/dice.js +4 -0
  218. package/dist/node_modules/d3-hierarchy/src/treemap/index.js +36 -0
  219. package/dist/node_modules/d3-hierarchy/src/treemap/round.js +4 -0
  220. package/dist/node_modules/d3-hierarchy/src/treemap/slice.js +4 -0
  221. package/dist/node_modules/d3-hierarchy/src/treemap/squarify.js +33 -0
  222. package/dist/node_modules/d3-interpolate/src/array.js +11 -0
  223. package/dist/node_modules/d3-interpolate/src/basis.js +12 -0
  224. package/dist/node_modules/d3-interpolate/src/basisClosed.js +9 -0
  225. package/dist/node_modules/d3-interpolate/src/color.js +25 -0
  226. package/dist/node_modules/d3-interpolate/src/constant.js +2 -0
  227. package/dist/node_modules/d3-interpolate/src/date.js +7 -0
  228. package/dist/node_modules/d3-interpolate/src/hcl.js +12 -0
  229. package/dist/node_modules/d3-interpolate/src/number.js +6 -0
  230. package/dist/node_modules/d3-interpolate/src/numberArray.js +12 -0
  231. package/dist/node_modules/d3-interpolate/src/object.js +10 -0
  232. package/dist/node_modules/d3-interpolate/src/rgb.js +15 -0
  233. package/dist/node_modules/d3-interpolate/src/round.js +6 -0
  234. package/dist/node_modules/d3-interpolate/src/string.js +24 -0
  235. package/dist/node_modules/d3-interpolate/src/transform/decompose.js +20 -0
  236. package/dist/node_modules/d3-interpolate/src/transform/index.js +52 -0
  237. package/dist/node_modules/d3-interpolate/src/transform/parse.js +10 -0
  238. package/dist/node_modules/d3-interpolate/src/value.js +14 -0
  239. package/dist/node_modules/d3-path/src/path.js +61 -0
  240. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/max.js +10 -0
  241. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/min.js +10 -0
  242. package/dist/node_modules/d3-sankey/node_modules/d3-array/src/sum.js +10 -0
  243. package/dist/node_modules/d3-sankey/node_modules/d3-path/src/path.js +50 -0
  244. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/array.js +2 -0
  245. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/constant.js +6 -0
  246. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/link/index.js +35 -0
  247. package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/point.js +7 -0
  248. package/dist/node_modules/d3-sankey/src/align.js +17 -0
  249. package/dist/node_modules/d3-sankey/src/constant.js +6 -0
  250. package/dist/node_modules/d3-sankey/src/sankey.js +224 -0
  251. package/dist/node_modules/d3-sankey/src/sankeyLinkHorizontal.js +11 -0
  252. package/dist/node_modules/d3-scale/src/band.js +39 -0
  253. package/dist/node_modules/d3-scale/src/constant.js +6 -0
  254. package/dist/node_modules/d3-scale/src/continuous.js +69 -0
  255. package/dist/node_modules/d3-scale/src/init.js +13 -0
  256. package/dist/node_modules/d3-scale/src/linear.js +32 -0
  257. package/dist/node_modules/d3-scale/src/nice.js +6 -0
  258. package/dist/node_modules/d3-scale/src/number.js +4 -0
  259. package/dist/node_modules/d3-scale/src/ordinal.js +27 -0
  260. package/dist/node_modules/d3-scale/src/tickFormat.js +27 -0
  261. package/dist/node_modules/d3-scale/src/time.js +43 -0
  262. package/dist/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +3 -0
  263. package/dist/node_modules/d3-scale-chromatic/src/colors.js +5 -0
  264. package/dist/node_modules/d3-selection/src/array.js +4 -0
  265. package/dist/node_modules/d3-selection/src/constant.js +6 -0
  266. package/dist/node_modules/d3-selection/src/creator.js +18 -0
  267. package/dist/node_modules/d3-selection/src/matcher.js +11 -0
  268. package/dist/node_modules/d3-selection/src/namespace.js +9 -0
  269. package/dist/node_modules/d3-selection/src/namespaces.js +8 -0
  270. package/dist/node_modules/d3-selection/src/select.js +5 -0
  271. package/dist/node_modules/d3-selection/src/selection/append.js +8 -0
  272. package/dist/node_modules/d3-selection/src/selection/attr.js +42 -0
  273. package/dist/node_modules/d3-selection/src/selection/call.js +5 -0
  274. package/dist/node_modules/d3-selection/src/selection/classed.js +51 -0
  275. package/dist/node_modules/d3-selection/src/selection/clone.js +12 -0
  276. package/dist/node_modules/d3-selection/src/selection/data.js +34 -0
  277. package/dist/node_modules/d3-selection/src/selection/datum.js +4 -0
  278. package/dist/node_modules/d3-selection/src/selection/dispatch.js +19 -0
  279. package/dist/node_modules/d3-selection/src/selection/each.js +5 -0
  280. package/dist/node_modules/d3-selection/src/selection/empty.js +4 -0
  281. package/dist/node_modules/d3-selection/src/selection/enter.js +24 -0
  282. package/dist/node_modules/d3-selection/src/selection/exit.js +6 -0
  283. package/dist/node_modules/d3-selection/src/selection/filter.js +8 -0
  284. package/dist/node_modules/d3-selection/src/selection/html.js +17 -0
  285. package/dist/node_modules/d3-selection/src/selection/index.js +84 -0
  286. package/dist/node_modules/d3-selection/src/selection/insert.js +12 -0
  287. package/dist/node_modules/d3-selection/src/selection/iterator.js +4 -0
  288. package/dist/node_modules/d3-selection/src/selection/join.js +5 -0
  289. package/dist/node_modules/d3-selection/src/selection/lower.js +7 -0
  290. package/dist/node_modules/d3-selection/src/selection/merge.js +7 -0
  291. package/dist/node_modules/d3-selection/src/selection/node.js +8 -0
  292. package/dist/node_modules/d3-selection/src/selection/nodes.js +4 -0
  293. package/dist/node_modules/d3-selection/src/selection/on.js +54 -0
  294. package/dist/node_modules/d3-selection/src/selection/order.js +5 -0
  295. package/dist/node_modules/d3-selection/src/selection/property.js +20 -0
  296. package/dist/node_modules/d3-selection/src/selection/raise.js +7 -0
  297. package/dist/node_modules/d3-selection/src/selection/remove.js +8 -0
  298. package/dist/node_modules/d3-selection/src/selection/select.js +8 -0
  299. package/dist/node_modules/d3-selection/src/selection/selectAll.js +14 -0
  300. package/dist/node_modules/d3-selection/src/selection/selectChild.js +14 -0
  301. package/dist/node_modules/d3-selection/src/selection/selectChildren.js +14 -0
  302. package/dist/node_modules/d3-selection/src/selection/size.js +6 -0
  303. package/dist/node_modules/d3-selection/src/selection/sort.js +16 -0
  304. package/dist/node_modules/d3-selection/src/selection/sparse.js +4 -0
  305. package/dist/node_modules/d3-selection/src/selection/style.js +24 -0
  306. package/dist/node_modules/d3-selection/src/selection/text.js +17 -0
  307. package/dist/node_modules/d3-selection/src/selector.js +7 -0
  308. package/dist/node_modules/d3-selection/src/selectorAll.js +9 -0
  309. package/dist/node_modules/d3-selection/src/window.js +4 -0
  310. package/dist/node_modules/d3-shape/src/arc.js +79 -0
  311. package/dist/node_modules/d3-shape/src/array.js +5 -0
  312. package/dist/node_modules/d3-shape/src/constant.js +6 -0
  313. package/dist/node_modules/d3-shape/src/curve/basis.js +45 -0
  314. package/dist/node_modules/d3-shape/src/curve/basisClosed.js +46 -0
  315. package/dist/node_modules/d3-shape/src/curve/basisOpen.js +42 -0
  316. package/dist/node_modules/d3-shape/src/curve/bump.js +36 -0
  317. package/dist/node_modules/d3-shape/src/curve/bundle.js +26 -0
  318. package/dist/node_modules/d3-shape/src/curve/cardinal.js +52 -0
  319. package/dist/node_modules/d3-shape/src/curve/cardinalClosed.js +51 -0
  320. package/dist/node_modules/d3-shape/src/curve/cardinalOpen.js +45 -0
  321. package/dist/node_modules/d3-shape/src/curve/catmullRom.js +67 -0
  322. package/dist/node_modules/d3-shape/src/curve/catmullRomClosed.js +56 -0
  323. package/dist/node_modules/d3-shape/src/curve/catmullRomOpen.js +50 -0
  324. package/dist/node_modules/d3-shape/src/curve/linear.js +32 -0
  325. package/dist/node_modules/d3-shape/src/curve/linearClosed.js +21 -0
  326. package/dist/node_modules/d3-shape/src/curve/monotone.js +90 -0
  327. package/dist/node_modules/d3-shape/src/curve/natural.js +35 -0
  328. package/dist/node_modules/d3-shape/src/curve/step.js +43 -0
  329. package/dist/node_modules/d3-shape/src/descending.js +4 -0
  330. package/dist/node_modules/d3-shape/src/identity.js +4 -0
  331. package/dist/node_modules/d3-shape/src/line.js +26 -0
  332. package/dist/node_modules/d3-shape/src/math.js +8 -0
  333. package/dist/node_modules/d3-shape/src/noop.js +2 -0
  334. package/dist/node_modules/d3-shape/src/path.js +15 -0
  335. package/dist/node_modules/d3-shape/src/pie.js +39 -0
  336. package/dist/node_modules/d3-shape/src/point.js +7 -0
  337. package/dist/node_modules/d3-time/src/day.js +17 -0
  338. package/dist/node_modules/d3-time/src/duration.js +2 -0
  339. package/dist/node_modules/d3-time/src/hour.js +15 -0
  340. package/dist/node_modules/d3-time/src/interval.js +24 -0
  341. package/dist/node_modules/d3-time/src/millisecond.js +10 -0
  342. package/dist/node_modules/d3-time/src/minute.js +15 -0
  343. package/dist/node_modules/d3-time/src/month.js +14 -0
  344. package/dist/node_modules/d3-time/src/second.js +9 -0
  345. package/dist/node_modules/d3-time/src/ticks.js +121 -0
  346. package/dist/node_modules/d3-time/src/week.js +21 -0
  347. package/dist/node_modules/d3-time/src/year.js +22 -0
  348. package/dist/node_modules/d3-time-format/src/defaultLocale.js +58 -0
  349. package/dist/node_modules/d3-time-format/src/locale.js +486 -0
  350. package/dist/node_modules/d3-timer/src/timeout.js +8 -0
  351. package/dist/node_modules/d3-timer/src/timer.js +51 -0
  352. package/dist/node_modules/d3-transition/src/index.js +3 -0
  353. package/dist/node_modules/d3-transition/src/interrupt.js +15 -0
  354. package/dist/node_modules/d3-transition/src/selection/index.js +4 -0
  355. package/dist/node_modules/d3-transition/src/selection/interrupt.js +7 -0
  356. package/dist/node_modules/d3-transition/src/selection/transition.js +21 -0
  357. package/dist/node_modules/d3-transition/src/transition/attr.js +47 -0
  358. package/dist/node_modules/d3-transition/src/transition/attrTween.js +36 -0
  359. package/dist/node_modules/d3-transition/src/transition/delay.js +16 -0
  360. package/dist/node_modules/d3-transition/src/transition/duration.js +16 -0
  361. package/dist/node_modules/d3-transition/src/transition/ease.js +12 -0
  362. package/dist/node_modules/d3-transition/src/transition/easeVarying.js +13 -0
  363. package/dist/node_modules/d3-transition/src/transition/end.js +14 -0
  364. package/dist/node_modules/d3-transition/src/transition/filter.js +8 -0
  365. package/dist/node_modules/d3-transition/src/transition/index.js +65 -0
  366. package/dist/node_modules/d3-transition/src/transition/interpolate.js +9 -0
  367. package/dist/node_modules/d3-transition/src/transition/merge.js +8 -0
  368. package/dist/node_modules/d3-transition/src/transition/on.js +19 -0
  369. package/dist/node_modules/d3-transition/src/transition/remove.js +11 -0
  370. package/dist/node_modules/d3-transition/src/transition/schedule.js +67 -0
  371. package/dist/node_modules/d3-transition/src/transition/select.js +10 -0
  372. package/dist/node_modules/d3-transition/src/transition/selectAll.js +13 -0
  373. package/dist/node_modules/d3-transition/src/transition/selection.js +6 -0
  374. package/dist/node_modules/d3-transition/src/transition/style.js +43 -0
  375. package/dist/node_modules/d3-transition/src/transition/styleTween.js +21 -0
  376. package/dist/node_modules/d3-transition/src/transition/text.js +15 -0
  377. package/dist/node_modules/d3-transition/src/transition/textTween.js +21 -0
  378. package/dist/node_modules/d3-transition/src/transition/transition.js +15 -0
  379. package/dist/node_modules/d3-transition/src/transition/tween.js +52 -0
  380. package/dist/node_modules/d3-zoom/src/index.js +2 -0
  381. package/dist/node_modules/d3-zoom/src/transform.js +46 -0
  382. package/dist/node_modules/d3-zoom/src/zoom.js +2 -0
  383. package/dist/node_modules/dagre-d3-es/src/dagre/acyclic.js +34 -0
  384. package/dist/node_modules/dagre-d3-es/src/dagre/add-border-segments.js +22 -0
  385. package/dist/node_modules/dagre-d3-es/src/dagre/coordinate-system.js +44 -0
  386. package/dist/node_modules/dagre-d3-es/src/dagre/data/list.js +25 -0
  387. package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +69 -0
  388. package/dist/node_modules/dagre-d3-es/src/dagre/index.js +4 -0
  389. package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +241 -0
  390. package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +66 -0
  391. package/dist/node_modules/dagre-d3-es/src/dagre/normalize.js +32 -0
  392. package/dist/node_modules/dagre-d3-es/src/dagre/order/add-subgraph-constraints.js +14 -0
  393. package/dist/node_modules/dagre-d3-es/src/dagre/order/barycenter.js +25 -0
  394. package/dist/node_modules/dagre-d3-es/src/dagre/order/build-layer-graph.js +25 -0
  395. package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +33 -0
  396. package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +44 -0
  397. package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +23 -0
  398. package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +55 -0
  399. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +43 -0
  400. package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +27 -0
  401. package/dist/node_modules/dagre-d3-es/src/dagre/parent-dummy-chains.js +40 -0
  402. package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +216 -0
  403. package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +23 -0
  404. package/dist/node_modules/dagre-d3-es/src/dagre/rank/feasible-tree.js +31 -0
  405. package/dist/node_modules/dagre-d3-es/src/dagre/rank/index.js +25 -0
  406. package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +84 -0
  407. package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +20 -0
  408. package/dist/node_modules/dagre-d3-es/src/dagre/util.js +117 -0
  409. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dfs.js +16 -0
  410. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra-all.js +1 -0
  411. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra.js +2 -0
  412. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/floyd-warshall.js +2 -0
  413. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/index.js +8 -0
  414. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/is-acyclic.js +1 -0
  415. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/postorder.js +5 -0
  416. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/preorder.js +5 -0
  417. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/prim.js +1 -0
  418. package/dist/node_modules/dagre-d3-es/src/graphlib/alg/topsort.js +15 -0
  419. package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +228 -0
  420. package/dist/node_modules/dagre-d3-es/src/graphlib/index.js +1 -0
  421. package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +32 -0
  422. package/dist/node_modules/dayjs/dayjs.min.js +298 -0
  423. package/dist/node_modules/dayjs/plugin/advancedFormat.js +37 -0
  424. package/dist/node_modules/dayjs/plugin/customParseFormat.js +160 -0
  425. package/dist/node_modules/dayjs/plugin/duration.js +164 -0
  426. package/dist/node_modules/dayjs/plugin/isoWeek.js +29 -0
  427. package/dist/node_modules/devlop/lib/default.js +2 -0
  428. package/dist/node_modules/dompurify/dist/purify.es.js +547 -0
  429. package/dist/node_modules/hast-util-from-dom/lib/index.js +58 -0
  430. package/dist/node_modules/hast-util-from-html-isomorphic/lib/browser.js +10 -0
  431. package/dist/node_modules/hast-util-is-element/lib/index.js +36 -0
  432. package/dist/node_modules/hast-util-parse-selector/lib/index.js +16 -0
  433. package/dist/node_modules/hast-util-to-text/lib/index.js +104 -0
  434. package/dist/node_modules/hastscript/lib/create-h.js +86 -0
  435. package/dist/node_modules/hastscript/lib/index.js +5 -0
  436. package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +2 -0
  437. package/dist/node_modules/internmap/src/index.js +36 -0
  438. package/dist/node_modules/katex/dist/katex.js +22103 -0
  439. package/dist/node_modules/khroma/dist/channels/index.js +68 -0
  440. package/dist/node_modules/khroma/dist/channels/reusable.js +8 -0
  441. package/dist/node_modules/khroma/dist/channels/type.js +20 -0
  442. package/dist/node_modules/khroma/dist/color/hex.js +22 -0
  443. package/dist/node_modules/khroma/dist/color/hsl.js +36 -0
  444. package/dist/node_modules/khroma/dist/color/index.js +23 -0
  445. package/dist/node_modules/khroma/dist/color/keyword.js +162 -0
  446. package/dist/node_modules/khroma/dist/color/rgb.js +23 -0
  447. package/dist/node_modules/khroma/dist/constants.js +9 -0
  448. package/dist/node_modules/khroma/dist/methods/adjust.js +8 -0
  449. package/dist/node_modules/khroma/dist/methods/adjust_channel.js +7 -0
  450. package/dist/node_modules/khroma/dist/methods/change.js +8 -0
  451. package/dist/node_modules/khroma/dist/methods/channel.js +4 -0
  452. package/dist/node_modules/khroma/dist/methods/darken.js +3 -0
  453. package/dist/node_modules/khroma/dist/methods/invert.js +7 -0
  454. package/dist/node_modules/khroma/dist/methods/is_dark.js +3 -0
  455. package/dist/node_modules/khroma/dist/methods/is_light.js +3 -0
  456. package/dist/node_modules/khroma/dist/methods/lighten.js +3 -0
  457. package/dist/node_modules/khroma/dist/methods/luminance.js +7 -0
  458. package/dist/node_modules/khroma/dist/methods/mix.js +7 -0
  459. package/dist/node_modules/khroma/dist/methods/rgba.js +15 -0
  460. package/dist/node_modules/khroma/dist/utils/channel.js +58 -0
  461. package/dist/node_modules/khroma/dist/utils/index.js +9 -0
  462. package/dist/node_modules/khroma/dist/utils/lang.js +5 -0
  463. package/dist/node_modules/khroma/dist/utils/unit.js +5 -0
  464. package/dist/node_modules/langium/lib/default-module.js +85 -0
  465. package/dist/node_modules/langium/lib/dependency-injection.js +62 -0
  466. package/dist/node_modules/langium/lib/documentation/comment-provider.js +11 -0
  467. package/dist/node_modules/langium/lib/documentation/documentation-provider.js +36 -0
  468. package/dist/node_modules/langium/lib/documentation/jsdoc.js +303 -0
  469. package/dist/node_modules/langium/lib/index.js +182 -0
  470. package/dist/node_modules/langium/lib/languages/generated/ast.js +1089 -0
  471. package/dist/node_modules/langium/lib/languages/grammar-config.js +13 -0
  472. package/dist/node_modules/langium/lib/parser/async-parser.js +83 -0
  473. package/dist/node_modules/langium/lib/parser/completion-parser-builder.js +7 -0
  474. package/dist/node_modules/langium/lib/parser/cst-node-builder.js +160 -0
  475. package/dist/node_modules/langium/lib/parser/indentation-aware.js +141 -0
  476. package/dist/node_modules/langium/lib/parser/langium-parser-builder.js +11 -0
  477. package/dist/node_modules/langium/lib/parser/langium-parser.js +388 -0
  478. package/dist/node_modules/langium/lib/parser/lexer.js +50 -0
  479. package/dist/node_modules/langium/lib/parser/parser-builder-base.js +275 -0
  480. package/dist/node_modules/langium/lib/parser/token-builder.js +61 -0
  481. package/dist/node_modules/langium/lib/parser/value-converter.js +78 -0
  482. package/dist/node_modules/langium/lib/references/linker.js +190 -0
  483. package/dist/node_modules/langium/lib/references/name-provider.js +13 -0
  484. package/dist/node_modules/langium/lib/references/references.js +76 -0
  485. package/dist/node_modules/langium/lib/references/scope-computation.js +35 -0
  486. package/dist/node_modules/langium/lib/references/scope-provider.js +34 -0
  487. package/dist/node_modules/langium/lib/references/scope.js +73 -0
  488. package/dist/node_modules/langium/lib/serializer/hydrator.js +125 -0
  489. package/dist/node_modules/langium/lib/serializer/json-serializer.js +145 -0
  490. package/dist/node_modules/langium/lib/service-registry.js +37 -0
  491. package/dist/node_modules/langium/lib/syntax-tree.js +70 -0
  492. package/dist/node_modules/langium/lib/utils/ast-utils.js +157 -0
  493. package/dist/node_modules/langium/lib/utils/caching.js +91 -0
  494. package/dist/node_modules/langium/lib/utils/cancellation.js +5 -0
  495. package/dist/node_modules/langium/lib/utils/collections.js +85 -0
  496. package/dist/node_modules/langium/lib/utils/cst-utils.js +190 -0
  497. package/dist/node_modules/langium/lib/utils/disposable.js +8 -0
  498. package/dist/node_modules/langium/lib/utils/errors.js +12 -0
  499. package/dist/node_modules/langium/lib/utils/event.js +5 -0
  500. package/dist/node_modules/langium/lib/utils/grammar-loader.js +22 -0
  501. package/dist/node_modules/langium/lib/utils/grammar-utils.js +296 -0
  502. package/dist/node_modules/langium/lib/utils/index.js +53 -0
  503. package/dist/node_modules/langium/lib/utils/promise-utils.js +30 -0
  504. package/dist/node_modules/langium/lib/utils/regexp-utils.js +167 -0
  505. package/dist/node_modules/langium/lib/utils/stream.js +327 -0
  506. package/dist/node_modules/langium/lib/utils/uri-utils.js +107 -0
  507. package/dist/node_modules/langium/lib/validation/document-validator.js +210 -0
  508. package/dist/node_modules/langium/lib/validation/validation-registry.js +87 -0
  509. package/dist/node_modules/langium/lib/workspace/ast-descriptions.js +57 -0
  510. package/dist/node_modules/langium/lib/workspace/ast-node-locator.js +28 -0
  511. package/dist/node_modules/langium/lib/workspace/configuration.js +51 -0
  512. package/dist/node_modules/langium/lib/workspace/document-builder.js +201 -0
  513. package/dist/node_modules/langium/lib/workspace/documents.js +142 -0
  514. package/dist/node_modules/langium/lib/workspace/file-system-provider.js +34 -0
  515. package/dist/node_modules/langium/lib/workspace/index-manager.js +49 -0
  516. package/dist/node_modules/langium/lib/workspace/profiler.js +89 -0
  517. package/dist/node_modules/langium/lib/workspace/workspace-lock.js +42 -0
  518. package/dist/node_modules/langium/lib/workspace/workspace-manager.js +66 -0
  519. package/dist/node_modules/layout-base/layout-base.js +1407 -0
  520. package/dist/node_modules/lodash-es/_DataView.js +4 -0
  521. package/dist/node_modules/lodash-es/_Hash.js +15 -0
  522. package/dist/node_modules/lodash-es/_ListCache.js +15 -0
  523. package/dist/node_modules/lodash-es/_Map.js +4 -0
  524. package/dist/node_modules/lodash-es/_MapCache.js +15 -0
  525. package/dist/node_modules/lodash-es/_Promise.js +4 -0
  526. package/dist/node_modules/lodash-es/_Set.js +4 -0
  527. package/dist/node_modules/lodash-es/_SetCache.js +10 -0
  528. package/dist/node_modules/lodash-es/_Stack.js +12 -0
  529. package/dist/node_modules/lodash-es/_Symbol.js +3 -0
  530. package/dist/node_modules/lodash-es/_Uint8Array.js +3 -0
  531. package/dist/node_modules/lodash-es/_WeakMap.js +4 -0
  532. package/dist/node_modules/lodash-es/_apply.js +11 -0
  533. package/dist/node_modules/lodash-es/_arrayAggregator.js +9 -0
  534. package/dist/node_modules/lodash-es/_arrayEach.js +6 -0
  535. package/dist/node_modules/lodash-es/_arrayEvery.js +6 -0
  536. package/dist/node_modules/lodash-es/_arrayFilter.js +9 -0
  537. package/dist/node_modules/lodash-es/_arrayIncludes.js +6 -0
  538. package/dist/node_modules/lodash-es/_arrayIncludesWith.js +6 -0
  539. package/dist/node_modules/lodash-es/_arrayLikeKeys.js +14 -0
  540. package/dist/node_modules/lodash-es/_arrayMap.js +6 -0
  541. package/dist/node_modules/lodash-es/_arrayPush.js +6 -0
  542. package/dist/node_modules/lodash-es/_arrayReduce.js +7 -0
  543. package/dist/node_modules/lodash-es/_arraySome.js +6 -0
  544. package/dist/node_modules/lodash-es/_asciiSize.js +3 -0
  545. package/dist/node_modules/lodash-es/_assignMergeValue.js +7 -0
  546. package/dist/node_modules/lodash-es/_assignValue.js +9 -0
  547. package/dist/node_modules/lodash-es/_assocIndexOf.js +7 -0
  548. package/dist/node_modules/lodash-es/_baseAggregator.js +8 -0
  549. package/dist/node_modules/lodash-es/_baseAssign.js +7 -0
  550. package/dist/node_modules/lodash-es/_baseAssignIn.js +7 -0
  551. package/dist/node_modules/lodash-es/_baseAssignValue.js +11 -0
  552. package/dist/node_modules/lodash-es/_baseClone.js +56 -0
  553. package/dist/node_modules/lodash-es/_baseCreate.js +12 -0
  554. package/dist/node_modules/lodash-es/_baseDifference.js +22 -0
  555. package/dist/node_modules/lodash-es/_baseEach.js +4 -0
  556. package/dist/node_modules/lodash-es/_baseEvery.js +9 -0
  557. package/dist/node_modules/lodash-es/_baseExtremum.js +10 -0
  558. package/dist/node_modules/lodash-es/_baseFilter.js +9 -0
  559. package/dist/node_modules/lodash-es/_baseFindIndex.js +6 -0
  560. package/dist/node_modules/lodash-es/_baseFlatten.js +12 -0
  561. package/dist/node_modules/lodash-es/_baseFor.js +3 -0
  562. package/dist/node_modules/lodash-es/_baseForOwn.js +7 -0
  563. package/dist/node_modules/lodash-es/_baseGet.js +9 -0
  564. package/dist/node_modules/lodash-es/_baseGetAllKeys.js +8 -0
  565. package/dist/node_modules/lodash-es/_baseGetTag.js +9 -0
  566. package/dist/node_modules/lodash-es/_baseGt.js +5 -0
  567. package/dist/node_modules/lodash-es/_baseHas.js +6 -0
  568. package/dist/node_modules/lodash-es/_baseHasIn.js +5 -0
  569. package/dist/node_modules/lodash-es/_baseIndexOf.js +8 -0
  570. package/dist/node_modules/lodash-es/_baseIsArguments.js +8 -0
  571. package/dist/node_modules/lodash-es/_baseIsEqual.js +7 -0
  572. package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +29 -0
  573. package/dist/node_modules/lodash-es/_baseIsMap.js +8 -0
  574. package/dist/node_modules/lodash-es/_baseIsMatch.js +25 -0
  575. package/dist/node_modules/lodash-es/_baseIsNaN.js +5 -0
  576. package/dist/node_modules/lodash-es/_baseIsNative.js +10 -0
  577. package/dist/node_modules/lodash-es/_baseIsRegExp.js +8 -0
  578. package/dist/node_modules/lodash-es/_baseIsSet.js +8 -0
  579. package/dist/node_modules/lodash-es/_baseIsTypedArray.js +10 -0
  580. package/dist/node_modules/lodash-es/_baseIteratee.js +10 -0
  581. package/dist/node_modules/lodash-es/_baseKeys.js +11 -0
  582. package/dist/node_modules/lodash-es/_baseKeysIn.js +12 -0
  583. package/dist/node_modules/lodash-es/_baseLt.js +5 -0
  584. package/dist/node_modules/lodash-es/_baseMap.js +10 -0
  585. package/dist/node_modules/lodash-es/_baseMatches.js +11 -0
  586. package/dist/node_modules/lodash-es/_baseMatchesProperty.js +16 -0
  587. package/dist/node_modules/lodash-es/_baseMerge.js +18 -0
  588. package/dist/node_modules/lodash-es/_baseMergeDeep.js +30 -0
  589. package/dist/node_modules/lodash-es/_baseOrderBy.js +30 -0
  590. package/dist/node_modules/lodash-es/_basePick.js +9 -0
  591. package/dist/node_modules/lodash-es/_basePickBy.js +12 -0
  592. package/dist/node_modules/lodash-es/_baseProperty.js +7 -0
  593. package/dist/node_modules/lodash-es/_basePropertyDeep.js +8 -0
  594. package/dist/node_modules/lodash-es/_baseRange.js +7 -0
  595. package/dist/node_modules/lodash-es/_baseReduce.js +7 -0
  596. package/dist/node_modules/lodash-es/_baseRest.js +8 -0
  597. package/dist/node_modules/lodash-es/_baseSet.js +21 -0
  598. package/dist/node_modules/lodash-es/_baseSetToString.js +12 -0
  599. package/dist/node_modules/lodash-es/_baseSlice.js +8 -0
  600. package/dist/node_modules/lodash-es/_baseSome.js +9 -0
  601. package/dist/node_modules/lodash-es/_baseSortBy.js +7 -0
  602. package/dist/node_modules/lodash-es/_baseTimes.js +6 -0
  603. package/dist/node_modules/lodash-es/_baseToString.js +14 -0
  604. package/dist/node_modules/lodash-es/_baseTrim.js +7 -0
  605. package/dist/node_modules/lodash-es/_baseUnary.js +7 -0
  606. package/dist/node_modules/lodash-es/_baseUniq.js +26 -0
  607. package/dist/node_modules/lodash-es/_baseValues.js +8 -0
  608. package/dist/node_modules/lodash-es/_baseZipObject.js +9 -0
  609. package/dist/node_modules/lodash-es/_cacheHas.js +5 -0
  610. package/dist/node_modules/lodash-es/_castFunction.js +6 -0
  611. package/dist/node_modules/lodash-es/_castPath.js +9 -0
  612. package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +7 -0
  613. package/dist/node_modules/lodash-es/_cloneBuffer.js +9 -0
  614. package/dist/node_modules/lodash-es/_cloneDataView.js +7 -0
  615. package/dist/node_modules/lodash-es/_cloneRegExp.js +7 -0
  616. package/dist/node_modules/lodash-es/_cloneSymbol.js +7 -0
  617. package/dist/node_modules/lodash-es/_cloneTypedArray.js +7 -0
  618. package/dist/node_modules/lodash-es/_compareAscending.js +11 -0
  619. package/dist/node_modules/lodash-es/_compareMultiple.js +10 -0
  620. package/dist/node_modules/lodash-es/_copyArray.js +7 -0
  621. package/dist/node_modules/lodash-es/_copyObject.js +13 -0
  622. package/dist/node_modules/lodash-es/_copySymbols.js +7 -0
  623. package/dist/node_modules/lodash-es/_copySymbolsIn.js +7 -0
  624. package/dist/node_modules/lodash-es/_coreJsData.js +3 -0
  625. package/dist/node_modules/lodash-es/_createAggregator.js +12 -0
  626. package/dist/node_modules/lodash-es/_createAssigner.js +14 -0
  627. package/dist/node_modules/lodash-es/_createBaseEach.js +11 -0
  628. package/dist/node_modules/lodash-es/_createBaseFor.js +11 -0
  629. package/dist/node_modules/lodash-es/_createFind.js +18 -0
  630. package/dist/node_modules/lodash-es/_createRange.js +10 -0
  631. package/dist/node_modules/lodash-es/_createSet.js +7 -0
  632. package/dist/node_modules/lodash-es/_defineProperty.js +8 -0
  633. package/dist/node_modules/lodash-es/_equalArrays.js +34 -0
  634. package/dist/node_modules/lodash-es/_equalByTag.js +34 -0
  635. package/dist/node_modules/lodash-es/_equalObjects.js +31 -0
  636. package/dist/node_modules/lodash-es/_flatRest.js +8 -0
  637. package/dist/node_modules/lodash-es/_freeGlobal.js +2 -0
  638. package/dist/node_modules/lodash-es/_getAllKeys.js +8 -0
  639. package/dist/node_modules/lodash-es/_getAllKeysIn.js +8 -0
  640. package/dist/node_modules/lodash-es/_getMapData.js +7 -0
  641. package/dist/node_modules/lodash-es/_getMatchData.js +15 -0
  642. package/dist/node_modules/lodash-es/_getNative.js +8 -0
  643. package/dist/node_modules/lodash-es/_getPrototype.js +3 -0
  644. package/dist/node_modules/lodash-es/_getRawTag.js +13 -0
  645. package/dist/node_modules/lodash-es/_getSymbols.js +8 -0
  646. package/dist/node_modules/lodash-es/_getSymbolsIn.js +9 -0
  647. package/dist/node_modules/lodash-es/_getTag.js +21 -0
  648. package/dist/node_modules/lodash-es/_getValue.js +5 -0
  649. package/dist/node_modules/lodash-es/_hasPath.js +17 -0
  650. package/dist/node_modules/lodash-es/_hasUnicode.js +6 -0
  651. package/dist/node_modules/lodash-es/_hashClear.js +6 -0
  652. package/dist/node_modules/lodash-es/_hashDelete.js +6 -0
  653. package/dist/node_modules/lodash-es/_hashGet.js +12 -0
  654. package/dist/node_modules/lodash-es/_hashHas.js +8 -0
  655. package/dist/node_modules/lodash-es/_hashSet.js +8 -0
  656. package/dist/node_modules/lodash-es/_initCloneArray.js +7 -0
  657. package/dist/node_modules/lodash-es/_initCloneByTag.js +32 -0
  658. package/dist/node_modules/lodash-es/_initCloneObject.js +8 -0
  659. package/dist/node_modules/lodash-es/_isFlattenable.js +9 -0
  660. package/dist/node_modules/lodash-es/_isIndex.js +7 -0
  661. package/dist/node_modules/lodash-es/_isIterateeCall.js +11 -0
  662. package/dist/node_modules/lodash-es/_isKey.js +10 -0
  663. package/dist/node_modules/lodash-es/_isKeyable.js +6 -0
  664. package/dist/node_modules/lodash-es/_isMasked.js +10 -0
  665. package/dist/node_modules/lodash-es/_isPrototype.js +7 -0
  666. package/dist/node_modules/lodash-es/_isStrictComparable.js +6 -0
  667. package/dist/node_modules/lodash-es/_listCacheClear.js +5 -0
  668. package/dist/node_modules/lodash-es/_listCacheDelete.js +8 -0
  669. package/dist/node_modules/lodash-es/_listCacheGet.js +7 -0
  670. package/dist/node_modules/lodash-es/_listCacheHas.js +6 -0
  671. package/dist/node_modules/lodash-es/_listCacheSet.js +7 -0
  672. package/dist/node_modules/lodash-es/_mapCacheClear.js +12 -0
  673. package/dist/node_modules/lodash-es/_mapCacheDelete.js +7 -0
  674. package/dist/node_modules/lodash-es/_mapCacheGet.js +6 -0
  675. package/dist/node_modules/lodash-es/_mapCacheHas.js +6 -0
  676. package/dist/node_modules/lodash-es/_mapCacheSet.js +7 -0
  677. package/dist/node_modules/lodash-es/_mapToArray.js +8 -0
  678. package/dist/node_modules/lodash-es/_matchesStrictComparable.js +7 -0
  679. package/dist/node_modules/lodash-es/_memoizeCapped.js +10 -0
  680. package/dist/node_modules/lodash-es/_nativeCreate.js +3 -0
  681. package/dist/node_modules/lodash-es/_nativeKeys.js +3 -0
  682. package/dist/node_modules/lodash-es/_nativeKeysIn.js +7 -0
  683. package/dist/node_modules/lodash-es/_nodeUtil.js +7 -0
  684. package/dist/node_modules/lodash-es/_objectToString.js +6 -0
  685. package/dist/node_modules/lodash-es/_overArg.js +7 -0
  686. package/dist/node_modules/lodash-es/_overRest.js +12 -0
  687. package/dist/node_modules/lodash-es/_root.js +3 -0
  688. package/dist/node_modules/lodash-es/_safeGet.js +5 -0
  689. package/dist/node_modules/lodash-es/_setCacheAdd.js +6 -0
  690. package/dist/node_modules/lodash-es/_setCacheHas.js +5 -0
  691. package/dist/node_modules/lodash-es/_setToArray.js +8 -0
  692. package/dist/node_modules/lodash-es/_setToString.js +4 -0
  693. package/dist/node_modules/lodash-es/_shortOut.js +13 -0
  694. package/dist/node_modules/lodash-es/_stackClear.js +6 -0
  695. package/dist/node_modules/lodash-es/_stackDelete.js +6 -0
  696. package/dist/node_modules/lodash-es/_stackGet.js +5 -0
  697. package/dist/node_modules/lodash-es/_stackHas.js +5 -0
  698. package/dist/node_modules/lodash-es/_stackSet.js +15 -0
  699. package/dist/node_modules/lodash-es/_strictIndexOf.js +6 -0
  700. package/dist/node_modules/lodash-es/_stringSize.js +8 -0
  701. package/dist/node_modules/lodash-es/_stringToPath.js +8 -0
  702. package/dist/node_modules/lodash-es/_toKey.js +9 -0
  703. package/dist/node_modules/lodash-es/_toSource.js +14 -0
  704. package/dist/node_modules/lodash-es/_trimmedEndIndex.js +7 -0
  705. package/dist/node_modules/lodash-es/_unicodeSize.js +17 -0
  706. package/dist/node_modules/lodash-es/assign.js +14 -0
  707. package/dist/node_modules/lodash-es/clone.js +7 -0
  708. package/dist/node_modules/lodash-es/cloneDeep.js +7 -0
  709. package/dist/node_modules/lodash-es/compact.js +9 -0
  710. package/dist/node_modules/lodash-es/constant.js +7 -0
  711. package/dist/node_modules/lodash-es/defaults.js +14 -0
  712. package/dist/node_modules/lodash-es/difference.js +8 -0
  713. package/dist/node_modules/lodash-es/drop.js +8 -0
  714. package/dist/node_modules/lodash-es/dropRight.js +8 -0
  715. package/dist/node_modules/lodash-es/eq.js +5 -0
  716. package/dist/node_modules/lodash-es/every.js +11 -0
  717. package/dist/node_modules/lodash-es/filter.js +9 -0
  718. package/dist/node_modules/lodash-es/find.js +4 -0
  719. package/dist/node_modules/lodash-es/findIndex.js +12 -0
  720. package/dist/node_modules/lodash-es/flatMap.js +7 -0
  721. package/dist/node_modules/lodash-es/flatten.js +6 -0
  722. package/dist/node_modules/lodash-es/forEach.js +9 -0
  723. package/dist/node_modules/lodash-es/forIn.js +8 -0
  724. package/dist/node_modules/lodash-es/forOwn.js +7 -0
  725. package/dist/node_modules/lodash-es/get.js +7 -0
  726. package/dist/node_modules/lodash-es/groupBy.js +6 -0
  727. package/dist/node_modules/lodash-es/has.js +7 -0
  728. package/dist/node_modules/lodash-es/hasIn.js +7 -0
  729. package/dist/node_modules/lodash-es/head.js +5 -0
  730. package/dist/node_modules/lodash-es/identity.js +5 -0
  731. package/dist/node_modules/lodash-es/includes.js +13 -0
  732. package/dist/node_modules/lodash-es/indexOf.js +11 -0
  733. package/dist/node_modules/lodash-es/isArguments.js +8 -0
  734. package/dist/node_modules/lodash-es/isArray.js +2 -0
  735. package/dist/node_modules/lodash-es/isArrayLike.js +7 -0
  736. package/dist/node_modules/lodash-es/isArrayLikeObject.js +7 -0
  737. package/dist/node_modules/lodash-es/isBuffer.js +4 -0
  738. package/dist/node_modules/lodash-es/isEmpty.js +20 -0
  739. package/dist/node_modules/lodash-es/isFunction.js +10 -0
  740. package/dist/node_modules/lodash-es/isLength.js +6 -0
  741. package/dist/node_modules/lodash-es/isMap.js +5 -0
  742. package/dist/node_modules/lodash-es/isObject.js +6 -0
  743. package/dist/node_modules/lodash-es/isObjectLike.js +5 -0
  744. package/dist/node_modules/lodash-es/isPlainObject.js +13 -0
  745. package/dist/node_modules/lodash-es/isRegExp.js +5 -0
  746. package/dist/node_modules/lodash-es/isSet.js +5 -0
  747. package/dist/node_modules/lodash-es/isString.js +9 -0
  748. package/dist/node_modules/lodash-es/isSymbol.js +8 -0
  749. package/dist/node_modules/lodash-es/isTypedArray.js +5 -0
  750. package/dist/node_modules/lodash-es/isUndefined.js +5 -0
  751. package/dist/node_modules/lodash-es/keys.js +8 -0
  752. package/dist/node_modules/lodash-es/keysIn.js +8 -0
  753. package/dist/node_modules/lodash-es/last.js +6 -0
  754. package/dist/node_modules/lodash-es/map.js +9 -0
  755. package/dist/node_modules/lodash-es/mapValues.js +11 -0
  756. package/dist/node_modules/lodash-es/max.js +8 -0
  757. package/dist/node_modules/lodash-es/memoize.js +15 -0
  758. package/dist/node_modules/lodash-es/merge.js +6 -0
  759. package/dist/node_modules/lodash-es/min.js +8 -0
  760. package/dist/node_modules/lodash-es/minBy.js +8 -0
  761. package/dist/node_modules/lodash-es/negate.js +16 -0
  762. package/dist/node_modules/lodash-es/noop.js +3 -0
  763. package/dist/node_modules/lodash-es/now.js +5 -0
  764. package/dist/node_modules/lodash-es/pick.js +6 -0
  765. package/dist/node_modules/lodash-es/pickBy.js +15 -0
  766. package/dist/node_modules/lodash-es/property.js +9 -0
  767. package/dist/node_modules/lodash-es/range.js +3 -0
  768. package/dist/node_modules/lodash-es/reduce.js +11 -0
  769. package/dist/node_modules/lodash-es/reject.js +10 -0
  770. package/dist/node_modules/lodash-es/size.js +14 -0
  771. package/dist/node_modules/lodash-es/some.js +11 -0
  772. package/dist/node_modules/lodash-es/sortBy.js +10 -0
  773. package/dist/node_modules/lodash-es/stubArray.js +5 -0
  774. package/dist/node_modules/lodash-es/stubFalse.js +5 -0
  775. package/dist/node_modules/lodash-es/toFinite.js +7 -0
  776. package/dist/node_modules/lodash-es/toInteger.js +7 -0
  777. package/dist/node_modules/lodash-es/toNumber.js +18 -0
  778. package/dist/node_modules/lodash-es/toPlainObject.js +7 -0
  779. package/dist/node_modules/lodash-es/toString.js +6 -0
  780. package/dist/node_modules/lodash-es/union.js +8 -0
  781. package/dist/node_modules/lodash-es/uniq.js +6 -0
  782. package/dist/node_modules/lodash-es/uniqBy.js +7 -0
  783. package/dist/node_modules/lodash-es/uniqueId.js +8 -0
  784. package/dist/node_modules/lodash-es/values.js +7 -0
  785. package/dist/node_modules/lodash-es/zipObject.js +7 -0
  786. package/dist/node_modules/longest-streak/index.js +7 -0
  787. package/dist/node_modules/markdown-table/index.js +57 -0
  788. package/dist/node_modules/marked/lib/marked.esm.js +1384 -0
  789. package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +59 -0
  790. package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +5 -0
  791. package/dist/node_modules/mdast-util-gfm/lib/index.js +24 -0
  792. package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +127 -0
  793. package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +95 -0
  794. package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +47 -0
  795. package/dist/node_modules/mdast-util-gfm-table/lib/index.js +135 -0
  796. package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +56 -0
  797. package/dist/node_modules/mdast-util-math/lib/index.js +142 -0
  798. package/dist/node_modules/mdast-util-phrasing/lib/index.js +20 -0
  799. package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +10 -0
  800. package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +7 -0
  801. package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +34 -0
  802. package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +22 -0
  803. package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +23 -0
  804. package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +22 -0
  805. package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +8 -0
  806. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +21 -0
  807. package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +26 -0
  808. package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +42 -0
  809. package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +17 -0
  810. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +21 -0
  811. package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +39 -0
  812. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +16 -0
  813. package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +24 -0
  814. package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +5 -0
  815. package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +7 -0
  816. package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +23 -0
  817. package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +4 -0
  818. package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +7 -0
  819. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +6 -0
  820. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +9 -0
  821. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +6 -0
  822. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +6 -0
  823. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +6 -0
  824. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +6 -0
  825. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +6 -0
  826. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +6 -0
  827. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +6 -0
  828. package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +6 -0
  829. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +4 -0
  830. package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +36 -0
  831. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +4 -0
  832. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +10 -0
  833. package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +6 -0
  834. package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +10 -0
  835. package/dist/node_modules/mdast-util-to-string/lib/index.js +22 -0
  836. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-VXUJARFQ.js +673 -0
  837. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VD42YOAC.js +3010 -0
  838. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-YG6GDRKO.js +2955 -0
  839. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4BX2VUAB.js +6 -0
  840. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +8 -0
  841. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ABZYJK2D.js +1547 -0
  842. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-AGHRB4JF.js +29 -0
  843. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ATLVNIR6.js +65 -0
  844. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-B4BG7PRW.js +3110 -0
  845. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-CVBHYZKI.js +10 -0
  846. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DI55MBZ5.js +1994 -0
  847. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DR5Q36YT.js +135 -0
  848. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EXTU4WIE.js +9 -0
  849. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-FMBD7UC4.js +3 -0
  850. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-HN2XXSSU.js +74 -0
  851. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JA3XYJ7Z.js +247 -0
  852. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JZLCHNYA.js +3516 -0
  853. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-MI3HLSF2.js +1140 -0
  854. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-N4CR4FBY.js +39 -0
  855. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QN33PNHL.js +23 -0
  856. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QXUST7PY.js +497 -0
  857. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QZHKN3VN.js +11 -0
  858. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-S3R3BYOJ.js +338 -0
  859. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-TZMSLE5B.js +55 -0
  860. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-2ON5EDUG.js +26 -0
  861. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-WZHVMYZB.js +26 -0
  862. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +219 -0
  863. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-6UL2VRFP.js +263 -0
  864. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-PSM6KHXK.js +283 -0
  865. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-QEK2KX5R.js +211 -0
  866. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-S2PKOQOG.js +129 -0
  867. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-Q2GNP2WA.js +1599 -0
  868. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-NV44I4VS.js +4128 -0
  869. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-JELNMOA3.js +1688 -0
  870. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-V2S2FVAM.js +621 -0
  871. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-HS3SLOUP.js +18 -0
  872. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-XKPGCS4Q.js +883 -0
  873. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-3W4ZIXB7.js +970 -0
  874. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-VGOIOE7T.js +931 -0
  875. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ADFJNKIX.js +117 -0
  876. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-AYHSOK5B.js +1970 -0
  877. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-UZGBJVZJ.js +2187 -0
  878. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-TZEHDZUN.js +519 -0
  879. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-WL72ISMW.js +3560 -0
  880. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FKZM4ZOC.js +220 -0
  881. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-4FDKWEC3.js +25 -0
  882. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-IT6M3QCI.js +833 -0
  883. package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-PRI3JC2R.js +1975 -0
  884. package/dist/node_modules/mermaid/dist/mermaid.core.js +662 -0
  885. package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +16 -0
  886. package/dist/node_modules/micromark-extension-gfm/index.js +16 -0
  887. package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +172 -0
  888. package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +191 -0
  889. package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +94 -0
  890. package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +41 -0
  891. package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +18 -0
  892. package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +199 -0
  893. package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +32 -0
  894. package/dist/node_modules/micromark-extension-math/lib/math-flow.js +72 -0
  895. package/dist/node_modules/micromark-extension-math/lib/math-text.js +44 -0
  896. package/dist/node_modules/micromark-extension-math/lib/syntax.js +9 -0
  897. package/dist/node_modules/micromark-factory-space/index.js +12 -0
  898. package/dist/node_modules/micromark-util-character/index.js +21 -0
  899. package/dist/node_modules/micromark-util-chunked/index.js +6 -0
  900. package/dist/node_modules/micromark-util-classify-character/index.js +6 -0
  901. package/dist/node_modules/micromark-util-combine-extensions/index.js +24 -0
  902. package/dist/node_modules/micromark-util-normalize-identifier/index.js +4 -0
  903. package/dist/node_modules/micromark-util-resolve-all/index.js +9 -0
  904. package/dist/node_modules/property-information/index.js +23 -0
  905. package/dist/node_modules/property-information/lib/aria.js +59 -0
  906. package/dist/node_modules/property-information/lib/find.js +29 -0
  907. package/dist/node_modules/property-information/lib/html.js +314 -0
  908. package/dist/node_modules/property-information/lib/normalize.js +4 -0
  909. package/dist/node_modules/property-information/lib/svg.js +560 -0
  910. package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +5 -0
  911. package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +4 -0
  912. package/dist/node_modules/property-information/lib/util/create.js +12 -0
  913. package/dist/node_modules/property-information/lib/util/defined-info.js +16 -0
  914. package/dist/node_modules/property-information/lib/util/info.js +7 -0
  915. package/dist/node_modules/property-information/lib/util/merge.js +7 -0
  916. package/dist/node_modules/property-information/lib/util/schema.js +7 -0
  917. package/dist/node_modules/property-information/lib/util/types.js +15 -0
  918. package/dist/node_modules/property-information/lib/xlink.js +17 -0
  919. package/dist/node_modules/property-information/lib/xml.js +13 -0
  920. package/dist/node_modules/property-information/lib/xmlns.js +12 -0
  921. package/dist/node_modules/rehype-katex/lib/index.js +60 -0
  922. package/dist/node_modules/remark-gfm/lib/index.js +8 -0
  923. package/dist/node_modules/remark-math/lib/index.js +8 -0
  924. package/dist/node_modules/roughjs/bundled/rough.esm.js +1350 -0
  925. package/dist/node_modules/space-separated-tokens/index.js +5 -0
  926. package/dist/node_modules/stylis/src/Enum.js +2 -0
  927. package/dist/node_modules/stylis/src/Parser.js +93 -0
  928. package/dist/node_modules/stylis/src/Serializer.js +19 -0
  929. package/dist/node_modules/stylis/src/Tokenizer.js +104 -0
  930. package/dist/node_modules/stylis/src/Utility.js +26 -0
  931. package/dist/node_modules/ts-dedent/esm/index.js +25 -0
  932. package/dist/node_modules/unist-util-find-after/lib/index.js +10 -0
  933. package/dist/node_modules/unist-util-is/lib/index.js +45 -0
  934. package/dist/node_modules/unist-util-visit/lib/index.js +10 -0
  935. package/dist/node_modules/unist-util-visit-parents/lib/color.js +4 -0
  936. package/dist/node_modules/unist-util-visit-parents/lib/index.js +35 -0
  937. package/dist/node_modules/uuid/dist/esm-browser/native.js +2 -0
  938. package/dist/node_modules/uuid/dist/esm-browser/rng.js +9 -0
  939. package/dist/node_modules/uuid/dist/esm-browser/stringify.js +6 -0
  940. package/dist/node_modules/uuid/dist/esm-browser/v4.js +17 -0
  941. package/dist/node_modules/vscode-jsonrpc/browser.js +7 -0
  942. package/dist/node_modules/vscode-jsonrpc/lib/browser/main.js +52 -0
  943. package/dist/node_modules/vscode-jsonrpc/lib/browser/ril.js +120 -0
  944. package/dist/node_modules/vscode-jsonrpc/lib/common/api.js +337 -0
  945. package/dist/node_modules/vscode-jsonrpc/lib/common/cancellation.js +57 -0
  946. package/dist/node_modules/vscode-jsonrpc/lib/common/connection.js +647 -0
  947. package/dist/node_modules/vscode-jsonrpc/lib/common/disposable.js +13 -0
  948. package/dist/node_modules/vscode-jsonrpc/lib/common/events.js +64 -0
  949. package/dist/node_modules/vscode-jsonrpc/lib/common/is.js +34 -0
  950. package/dist/node_modules/vscode-jsonrpc/lib/common/linkedMap.js +235 -0
  951. package/dist/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js +93 -0
  952. package/dist/node_modules/vscode-jsonrpc/lib/common/messageReader.js +129 -0
  953. package/dist/node_modules/vscode-jsonrpc/lib/common/messageWriter.js +85 -0
  954. package/dist/node_modules/vscode-jsonrpc/lib/common/messages.js +161 -0
  955. package/dist/node_modules/vscode-jsonrpc/lib/common/ral.js +18 -0
  956. package/dist/node_modules/vscode-jsonrpc/lib/common/semaphore.js +44 -0
  957. package/dist/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js +58 -0
  958. package/dist/node_modules/vscode-languageserver-protocol/lib/browser/main.js +28 -0
  959. package/dist/node_modules/vscode-languageserver-protocol/lib/common/api.js +36 -0
  960. package/dist/node_modules/vscode-languageserver-protocol/lib/common/connection.js +12 -0
  961. package/dist/node_modules/vscode-languageserver-protocol/lib/common/messages.js +31 -0
  962. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js +19 -0
  963. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js +15 -0
  964. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js +11 -0
  965. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js +11 -0
  966. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js +33 -0
  967. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js +35 -0
  968. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js +15 -0
  969. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js +11 -0
  970. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js +19 -0
  971. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineCompletion.js +11 -0
  972. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js +15 -0
  973. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.js +674 -0
  974. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js +11 -0
  975. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js +19 -0
  976. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js +126 -0
  977. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js +24 -0
  978. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js +11 -0
  979. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js +31 -0
  980. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js +11 -0
  981. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js +11 -0
  982. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js +19 -0
  983. package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js +15 -0
  984. package/dist/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js +42 -0
  985. package/dist/node_modules/vscode-languageserver-textdocument/lib/esm/main.js +138 -0
  986. package/dist/node_modules/vscode-languageserver-types/lib/esm/main.js +1084 -0
  987. package/dist/node_modules/vscode-uri/lib/esm/index.js +373 -0
  988. package/dist/node_modules/web-namespaces/index.js +9 -0
  989. package/dist/pages/WorkspacePage.js +63 -0
  990. package/dist/pages/WorkspacesPage.js +36 -0
  991. package/package.json +32 -32
@@ -0,0 +1,3110 @@
1
+ import { __name, log } from "./chunk-AGHRB4JF.js";
2
+ import { clear, common_default, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, parseGenericTypes, sanitizeText, setAccDescription, setAccTitle, setDiagramTitle } from "./chunk-ABZYJK2D.js";
3
+ import select_default from "../../../../d3-selection/src/select.js";
4
+ import "../../../../d3/src/index.js";
5
+ import { getEdgeId, utils_default } from "./chunk-S3R3BYOJ.js";
6
+ import { getRegisteredLayoutAlgorithm, render } from "./chunk-N4CR4FBY.js";
7
+ import { getIconStyles } from "./chunk-FMBD7UC4.js";
8
+ import { getDiagramElement } from "./chunk-55IACEB6.js";
9
+ import { setupViewPortForSVG } from "./chunk-QN33PNHL.js";
10
+ var parser = (function() {
11
+ var t = /* @__PURE__ */ __name(function(e, t, n, r) {
12
+ for (n ||= {}, r = e.length; r--; n[e[r]] = t);
13
+ return n;
14
+ }, "o"), n = [1, 18], r = [1, 19], i = [1, 20], a = [1, 41], o = [1, 42], s = [1, 26], c = [1, 24], l = [1, 25], u = [1, 32], d = [1, 33], f = [1, 34], p = [1, 45], m = [1, 35], h = [1, 36], g = [1, 37], _ = [1, 38], v = [1, 27], y = [1, 28], b = [1, 29], x = [1, 30], S = [1, 31], C = [1, 44], w = [1, 46], T = [1, 43], E = [1, 47], D = [1, 9], O = [
15
+ 1,
16
+ 8,
17
+ 9
18
+ ], k = [1, 58], A = [1, 59], j = [1, 60], M = [1, 61], N = [1, 62], P = [1, 63], F = [1, 64], I = [
19
+ 1,
20
+ 8,
21
+ 9,
22
+ 41
23
+ ], ee = [1, 76], L = [
24
+ 1,
25
+ 8,
26
+ 9,
27
+ 12,
28
+ 13,
29
+ 22,
30
+ 39,
31
+ 41,
32
+ 44,
33
+ 68,
34
+ 69,
35
+ 70,
36
+ 71,
37
+ 72,
38
+ 73,
39
+ 74,
40
+ 79,
41
+ 81
42
+ ], R = [
43
+ 1,
44
+ 8,
45
+ 9,
46
+ 12,
47
+ 13,
48
+ 18,
49
+ 20,
50
+ 22,
51
+ 39,
52
+ 41,
53
+ 44,
54
+ 50,
55
+ 60,
56
+ 68,
57
+ 69,
58
+ 70,
59
+ 71,
60
+ 72,
61
+ 73,
62
+ 74,
63
+ 79,
64
+ 81,
65
+ 86,
66
+ 100,
67
+ 102,
68
+ 103
69
+ ], z = [
70
+ 13,
71
+ 60,
72
+ 86,
73
+ 100,
74
+ 102,
75
+ 103
76
+ ], B = [
77
+ 13,
78
+ 60,
79
+ 73,
80
+ 74,
81
+ 86,
82
+ 100,
83
+ 102,
84
+ 103
85
+ ], te = [
86
+ 13,
87
+ 60,
88
+ 68,
89
+ 69,
90
+ 70,
91
+ 71,
92
+ 72,
93
+ 86,
94
+ 100,
95
+ 102,
96
+ 103
97
+ ], ne = [1, 100], V = [1, 117], H = [1, 113], U = [1, 109], W = [1, 115], G = [1, 110], K = [1, 111], q = [1, 112], J = [1, 114], Y = [1, 116], re = [
98
+ 22,
99
+ 48,
100
+ 60,
101
+ 61,
102
+ 82,
103
+ 86,
104
+ 87,
105
+ 88,
106
+ 89,
107
+ 90
108
+ ], X = [
109
+ 1,
110
+ 8,
111
+ 9,
112
+ 39,
113
+ 41,
114
+ 44
115
+ ], Z = [
116
+ 1,
117
+ 8,
118
+ 9,
119
+ 22
120
+ ], ie = [1, 145], ae = [
121
+ 1,
122
+ 8,
123
+ 9,
124
+ 61
125
+ ], Q = [
126
+ 1,
127
+ 8,
128
+ 9,
129
+ 22,
130
+ 48,
131
+ 60,
132
+ 61,
133
+ 82,
134
+ 86,
135
+ 87,
136
+ 88,
137
+ 89,
138
+ 90
139
+ ], oe = {
140
+ trace: /* @__PURE__ */ __name(function() {}, "trace"),
141
+ yy: {},
142
+ symbols_: {
143
+ error: 2,
144
+ start: 3,
145
+ mermaidDoc: 4,
146
+ statements: 5,
147
+ graphConfig: 6,
148
+ CLASS_DIAGRAM: 7,
149
+ NEWLINE: 8,
150
+ EOF: 9,
151
+ statement: 10,
152
+ classLabel: 11,
153
+ SQS: 12,
154
+ STR: 13,
155
+ SQE: 14,
156
+ namespaceName: 15,
157
+ alphaNumToken: 16,
158
+ classLiteralName: 17,
159
+ DOT: 18,
160
+ className: 19,
161
+ GENERICTYPE: 20,
162
+ relationStatement: 21,
163
+ LABEL: 22,
164
+ namespaceStatement: 23,
165
+ classStatement: 24,
166
+ memberStatement: 25,
167
+ annotationStatement: 26,
168
+ clickStatement: 27,
169
+ styleStatement: 28,
170
+ cssClassStatement: 29,
171
+ noteStatement: 30,
172
+ classDefStatement: 31,
173
+ direction: 32,
174
+ acc_title: 33,
175
+ acc_title_value: 34,
176
+ acc_descr: 35,
177
+ acc_descr_value: 36,
178
+ acc_descr_multiline_value: 37,
179
+ namespaceIdentifier: 38,
180
+ STRUCT_START: 39,
181
+ classStatements: 40,
182
+ STRUCT_STOP: 41,
183
+ NAMESPACE: 42,
184
+ classIdentifier: 43,
185
+ STYLE_SEPARATOR: 44,
186
+ members: 45,
187
+ CLASS: 46,
188
+ emptyBody: 47,
189
+ SPACE: 48,
190
+ ANNOTATION_START: 49,
191
+ ANNOTATION_END: 50,
192
+ MEMBER: 51,
193
+ SEPARATOR: 52,
194
+ relation: 53,
195
+ NOTE_FOR: 54,
196
+ noteText: 55,
197
+ NOTE: 56,
198
+ CLASSDEF: 57,
199
+ classList: 58,
200
+ stylesOpt: 59,
201
+ ALPHA: 60,
202
+ COMMA: 61,
203
+ direction_tb: 62,
204
+ direction_bt: 63,
205
+ direction_rl: 64,
206
+ direction_lr: 65,
207
+ relationType: 66,
208
+ lineType: 67,
209
+ AGGREGATION: 68,
210
+ EXTENSION: 69,
211
+ COMPOSITION: 70,
212
+ DEPENDENCY: 71,
213
+ LOLLIPOP: 72,
214
+ LINE: 73,
215
+ DOTTED_LINE: 74,
216
+ CALLBACK: 75,
217
+ LINK: 76,
218
+ LINK_TARGET: 77,
219
+ CLICK: 78,
220
+ CALLBACK_NAME: 79,
221
+ CALLBACK_ARGS: 80,
222
+ HREF: 81,
223
+ STYLE: 82,
224
+ CSSCLASS: 83,
225
+ style: 84,
226
+ styleComponent: 85,
227
+ NUM: 86,
228
+ COLON: 87,
229
+ UNIT: 88,
230
+ BRKT: 89,
231
+ PCT: 90,
232
+ commentToken: 91,
233
+ textToken: 92,
234
+ graphCodeTokens: 93,
235
+ textNoTagsToken: 94,
236
+ TAGSTART: 95,
237
+ TAGEND: 96,
238
+ "==": 97,
239
+ "--": 98,
240
+ DEFAULT: 99,
241
+ MINUS: 100,
242
+ keywords: 101,
243
+ UNICODE_TEXT: 102,
244
+ BQUOTE_STR: 103,
245
+ $accept: 0,
246
+ $end: 1
247
+ },
248
+ terminals_: {
249
+ 2: "error",
250
+ 7: "CLASS_DIAGRAM",
251
+ 8: "NEWLINE",
252
+ 9: "EOF",
253
+ 12: "SQS",
254
+ 13: "STR",
255
+ 14: "SQE",
256
+ 18: "DOT",
257
+ 20: "GENERICTYPE",
258
+ 22: "LABEL",
259
+ 33: "acc_title",
260
+ 34: "acc_title_value",
261
+ 35: "acc_descr",
262
+ 36: "acc_descr_value",
263
+ 37: "acc_descr_multiline_value",
264
+ 39: "STRUCT_START",
265
+ 41: "STRUCT_STOP",
266
+ 42: "NAMESPACE",
267
+ 44: "STYLE_SEPARATOR",
268
+ 46: "CLASS",
269
+ 48: "SPACE",
270
+ 49: "ANNOTATION_START",
271
+ 50: "ANNOTATION_END",
272
+ 51: "MEMBER",
273
+ 52: "SEPARATOR",
274
+ 54: "NOTE_FOR",
275
+ 56: "NOTE",
276
+ 57: "CLASSDEF",
277
+ 60: "ALPHA",
278
+ 61: "COMMA",
279
+ 62: "direction_tb",
280
+ 63: "direction_bt",
281
+ 64: "direction_rl",
282
+ 65: "direction_lr",
283
+ 68: "AGGREGATION",
284
+ 69: "EXTENSION",
285
+ 70: "COMPOSITION",
286
+ 71: "DEPENDENCY",
287
+ 72: "LOLLIPOP",
288
+ 73: "LINE",
289
+ 74: "DOTTED_LINE",
290
+ 75: "CALLBACK",
291
+ 76: "LINK",
292
+ 77: "LINK_TARGET",
293
+ 78: "CLICK",
294
+ 79: "CALLBACK_NAME",
295
+ 80: "CALLBACK_ARGS",
296
+ 81: "HREF",
297
+ 82: "STYLE",
298
+ 83: "CSSCLASS",
299
+ 86: "NUM",
300
+ 87: "COLON",
301
+ 88: "UNIT",
302
+ 89: "BRKT",
303
+ 90: "PCT",
304
+ 93: "graphCodeTokens",
305
+ 95: "TAGSTART",
306
+ 96: "TAGEND",
307
+ 97: "==",
308
+ 98: "--",
309
+ 99: "DEFAULT",
310
+ 100: "MINUS",
311
+ 101: "keywords",
312
+ 102: "UNICODE_TEXT",
313
+ 103: "BQUOTE_STR"
314
+ },
315
+ productions_: [
316
+ 0,
317
+ [3, 1],
318
+ [3, 1],
319
+ [4, 1],
320
+ [6, 4],
321
+ [5, 1],
322
+ [5, 2],
323
+ [5, 3],
324
+ [11, 3],
325
+ [15, 1],
326
+ [15, 1],
327
+ [15, 3],
328
+ [15, 2],
329
+ [19, 1],
330
+ [19, 3],
331
+ [19, 1],
332
+ [19, 2],
333
+ [19, 2],
334
+ [19, 2],
335
+ [10, 1],
336
+ [10, 2],
337
+ [10, 1],
338
+ [10, 1],
339
+ [10, 1],
340
+ [10, 1],
341
+ [10, 1],
342
+ [10, 1],
343
+ [10, 1],
344
+ [10, 1],
345
+ [10, 1],
346
+ [10, 1],
347
+ [10, 2],
348
+ [10, 2],
349
+ [10, 1],
350
+ [23, 4],
351
+ [23, 5],
352
+ [38, 2],
353
+ [40, 1],
354
+ [40, 2],
355
+ [40, 3],
356
+ [24, 1],
357
+ [24, 3],
358
+ [24, 4],
359
+ [24, 3],
360
+ [24, 6],
361
+ [43, 2],
362
+ [43, 3],
363
+ [47, 0],
364
+ [47, 2],
365
+ [47, 2],
366
+ [26, 4],
367
+ [45, 1],
368
+ [45, 2],
369
+ [25, 1],
370
+ [25, 2],
371
+ [25, 1],
372
+ [25, 1],
373
+ [21, 3],
374
+ [21, 4],
375
+ [21, 4],
376
+ [21, 5],
377
+ [30, 3],
378
+ [30, 2],
379
+ [31, 3],
380
+ [58, 1],
381
+ [58, 3],
382
+ [32, 1],
383
+ [32, 1],
384
+ [32, 1],
385
+ [32, 1],
386
+ [53, 3],
387
+ [53, 2],
388
+ [53, 2],
389
+ [53, 1],
390
+ [66, 1],
391
+ [66, 1],
392
+ [66, 1],
393
+ [66, 1],
394
+ [66, 1],
395
+ [67, 1],
396
+ [67, 1],
397
+ [27, 3],
398
+ [27, 4],
399
+ [27, 3],
400
+ [27, 4],
401
+ [27, 4],
402
+ [27, 5],
403
+ [27, 3],
404
+ [27, 4],
405
+ [27, 4],
406
+ [27, 5],
407
+ [27, 4],
408
+ [27, 5],
409
+ [27, 5],
410
+ [27, 6],
411
+ [28, 3],
412
+ [29, 3],
413
+ [59, 1],
414
+ [59, 3],
415
+ [84, 1],
416
+ [84, 2],
417
+ [85, 1],
418
+ [85, 1],
419
+ [85, 1],
420
+ [85, 1],
421
+ [85, 1],
422
+ [85, 1],
423
+ [85, 1],
424
+ [85, 1],
425
+ [85, 1],
426
+ [91, 1],
427
+ [91, 1],
428
+ [92, 1],
429
+ [92, 1],
430
+ [92, 1],
431
+ [92, 1],
432
+ [92, 1],
433
+ [92, 1],
434
+ [92, 1],
435
+ [94, 1],
436
+ [94, 1],
437
+ [94, 1],
438
+ [94, 1],
439
+ [16, 1],
440
+ [16, 1],
441
+ [16, 1],
442
+ [16, 1],
443
+ [17, 1],
444
+ [55, 1]
445
+ ],
446
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
447
+ var s = a.length - 1;
448
+ switch (i) {
449
+ case 8:
450
+ this.$ = a[s - 1];
451
+ break;
452
+ case 9:
453
+ case 10:
454
+ case 13:
455
+ case 15:
456
+ this.$ = a[s];
457
+ break;
458
+ case 11:
459
+ case 14:
460
+ this.$ = a[s - 2] + "." + a[s];
461
+ break;
462
+ case 12:
463
+ case 16:
464
+ this.$ = a[s - 1] + a[s];
465
+ break;
466
+ case 17:
467
+ case 18:
468
+ this.$ = a[s - 1] + "~" + a[s] + "~";
469
+ break;
470
+ case 19:
471
+ r.addRelation(a[s]);
472
+ break;
473
+ case 20:
474
+ a[s - 1].title = r.cleanupLabel(a[s]), r.addRelation(a[s - 1]);
475
+ break;
476
+ case 31:
477
+ this.$ = a[s].trim(), r.setAccTitle(this.$);
478
+ break;
479
+ case 32:
480
+ case 33:
481
+ this.$ = a[s].trim(), r.setAccDescription(this.$);
482
+ break;
483
+ case 34:
484
+ r.addClassesToNamespace(a[s - 3], a[s - 1]);
485
+ break;
486
+ case 35:
487
+ r.addClassesToNamespace(a[s - 4], a[s - 1]);
488
+ break;
489
+ case 36:
490
+ this.$ = a[s], r.addNamespace(a[s]);
491
+ break;
492
+ case 37:
493
+ this.$ = [a[s]];
494
+ break;
495
+ case 38:
496
+ this.$ = [a[s - 1]];
497
+ break;
498
+ case 39:
499
+ a[s].unshift(a[s - 2]), this.$ = a[s];
500
+ break;
501
+ case 41:
502
+ r.setCssClass(a[s - 2], a[s]);
503
+ break;
504
+ case 42:
505
+ r.addMembers(a[s - 3], a[s - 1]);
506
+ break;
507
+ case 44:
508
+ r.setCssClass(a[s - 5], a[s - 3]), r.addMembers(a[s - 5], a[s - 1]);
509
+ break;
510
+ case 45:
511
+ this.$ = a[s], r.addClass(a[s]);
512
+ break;
513
+ case 46:
514
+ this.$ = a[s - 1], r.addClass(a[s - 1]), r.setClassLabel(a[s - 1], a[s]);
515
+ break;
516
+ case 50:
517
+ r.addAnnotation(a[s], a[s - 2]);
518
+ break;
519
+ case 51:
520
+ case 64:
521
+ this.$ = [a[s]];
522
+ break;
523
+ case 52:
524
+ a[s].push(a[s - 1]), this.$ = a[s];
525
+ break;
526
+ case 53: break;
527
+ case 54:
528
+ r.addMember(a[s - 1], r.cleanupLabel(a[s]));
529
+ break;
530
+ case 55: break;
531
+ case 56: break;
532
+ case 57:
533
+ this.$ = {
534
+ id1: a[s - 2],
535
+ id2: a[s],
536
+ relation: a[s - 1],
537
+ relationTitle1: "none",
538
+ relationTitle2: "none"
539
+ };
540
+ break;
541
+ case 58:
542
+ this.$ = {
543
+ id1: a[s - 3],
544
+ id2: a[s],
545
+ relation: a[s - 1],
546
+ relationTitle1: a[s - 2],
547
+ relationTitle2: "none"
548
+ };
549
+ break;
550
+ case 59:
551
+ this.$ = {
552
+ id1: a[s - 3],
553
+ id2: a[s],
554
+ relation: a[s - 2],
555
+ relationTitle1: "none",
556
+ relationTitle2: a[s - 1]
557
+ };
558
+ break;
559
+ case 60:
560
+ this.$ = {
561
+ id1: a[s - 4],
562
+ id2: a[s],
563
+ relation: a[s - 2],
564
+ relationTitle1: a[s - 3],
565
+ relationTitle2: a[s - 1]
566
+ };
567
+ break;
568
+ case 61:
569
+ r.addNote(a[s], a[s - 1]);
570
+ break;
571
+ case 62:
572
+ r.addNote(a[s]);
573
+ break;
574
+ case 63:
575
+ this.$ = a[s - 2], r.defineClass(a[s - 1], a[s]);
576
+ break;
577
+ case 65:
578
+ this.$ = a[s - 2].concat([a[s]]);
579
+ break;
580
+ case 66:
581
+ r.setDirection("TB");
582
+ break;
583
+ case 67:
584
+ r.setDirection("BT");
585
+ break;
586
+ case 68:
587
+ r.setDirection("RL");
588
+ break;
589
+ case 69:
590
+ r.setDirection("LR");
591
+ break;
592
+ case 70:
593
+ this.$ = {
594
+ type1: a[s - 2],
595
+ type2: a[s],
596
+ lineType: a[s - 1]
597
+ };
598
+ break;
599
+ case 71:
600
+ this.$ = {
601
+ type1: "none",
602
+ type2: a[s],
603
+ lineType: a[s - 1]
604
+ };
605
+ break;
606
+ case 72:
607
+ this.$ = {
608
+ type1: a[s - 1],
609
+ type2: "none",
610
+ lineType: a[s]
611
+ };
612
+ break;
613
+ case 73:
614
+ this.$ = {
615
+ type1: "none",
616
+ type2: "none",
617
+ lineType: a[s]
618
+ };
619
+ break;
620
+ case 74:
621
+ this.$ = r.relationType.AGGREGATION;
622
+ break;
623
+ case 75:
624
+ this.$ = r.relationType.EXTENSION;
625
+ break;
626
+ case 76:
627
+ this.$ = r.relationType.COMPOSITION;
628
+ break;
629
+ case 77:
630
+ this.$ = r.relationType.DEPENDENCY;
631
+ break;
632
+ case 78:
633
+ this.$ = r.relationType.LOLLIPOP;
634
+ break;
635
+ case 79:
636
+ this.$ = r.lineType.LINE;
637
+ break;
638
+ case 80:
639
+ this.$ = r.lineType.DOTTED_LINE;
640
+ break;
641
+ case 81:
642
+ case 87:
643
+ this.$ = a[s - 2], r.setClickEvent(a[s - 1], a[s]);
644
+ break;
645
+ case 82:
646
+ case 88:
647
+ this.$ = a[s - 3], r.setClickEvent(a[s - 2], a[s - 1]), r.setTooltip(a[s - 2], a[s]);
648
+ break;
649
+ case 83:
650
+ this.$ = a[s - 2], r.setLink(a[s - 1], a[s]);
651
+ break;
652
+ case 84:
653
+ this.$ = a[s - 3], r.setLink(a[s - 2], a[s - 1], a[s]);
654
+ break;
655
+ case 85:
656
+ this.$ = a[s - 3], r.setLink(a[s - 2], a[s - 1]), r.setTooltip(a[s - 2], a[s]);
657
+ break;
658
+ case 86:
659
+ this.$ = a[s - 4], r.setLink(a[s - 3], a[s - 2], a[s]), r.setTooltip(a[s - 3], a[s - 1]);
660
+ break;
661
+ case 89:
662
+ this.$ = a[s - 3], r.setClickEvent(a[s - 2], a[s - 1], a[s]);
663
+ break;
664
+ case 90:
665
+ this.$ = a[s - 4], r.setClickEvent(a[s - 3], a[s - 2], a[s - 1]), r.setTooltip(a[s - 3], a[s]);
666
+ break;
667
+ case 91:
668
+ this.$ = a[s - 3], r.setLink(a[s - 2], a[s]);
669
+ break;
670
+ case 92:
671
+ this.$ = a[s - 4], r.setLink(a[s - 3], a[s - 1], a[s]);
672
+ break;
673
+ case 93:
674
+ this.$ = a[s - 4], r.setLink(a[s - 3], a[s - 1]), r.setTooltip(a[s - 3], a[s]);
675
+ break;
676
+ case 94:
677
+ this.$ = a[s - 5], r.setLink(a[s - 4], a[s - 2], a[s]), r.setTooltip(a[s - 4], a[s - 1]);
678
+ break;
679
+ case 95:
680
+ this.$ = a[s - 2], r.setCssStyle(a[s - 1], a[s]);
681
+ break;
682
+ case 96:
683
+ r.setCssClass(a[s - 1], a[s]);
684
+ break;
685
+ case 97:
686
+ this.$ = [a[s]];
687
+ break;
688
+ case 98:
689
+ a[s - 2].push(a[s]), this.$ = a[s - 2];
690
+ break;
691
+ case 100:
692
+ this.$ = a[s - 1] + a[s];
693
+ break;
694
+ }
695
+ }, "anonymous"),
696
+ table: [
697
+ {
698
+ 3: 1,
699
+ 4: 2,
700
+ 5: 3,
701
+ 6: 4,
702
+ 7: [1, 6],
703
+ 10: 5,
704
+ 16: 39,
705
+ 17: 40,
706
+ 19: 21,
707
+ 21: 7,
708
+ 23: 8,
709
+ 24: 9,
710
+ 25: 10,
711
+ 26: 11,
712
+ 27: 12,
713
+ 28: 13,
714
+ 29: 14,
715
+ 30: 15,
716
+ 31: 16,
717
+ 32: 17,
718
+ 33: n,
719
+ 35: r,
720
+ 37: i,
721
+ 38: 22,
722
+ 42: a,
723
+ 43: 23,
724
+ 46: o,
725
+ 49: s,
726
+ 51: c,
727
+ 52: l,
728
+ 54: u,
729
+ 56: d,
730
+ 57: f,
731
+ 60: p,
732
+ 62: m,
733
+ 63: h,
734
+ 64: g,
735
+ 65: _,
736
+ 75: v,
737
+ 76: y,
738
+ 78: b,
739
+ 82: x,
740
+ 83: S,
741
+ 86: C,
742
+ 100: w,
743
+ 102: T,
744
+ 103: E
745
+ },
746
+ { 1: [3] },
747
+ { 1: [2, 1] },
748
+ { 1: [2, 2] },
749
+ { 1: [2, 3] },
750
+ t(D, [2, 5], { 8: [1, 48] }),
751
+ { 8: [1, 49] },
752
+ t(O, [2, 19], { 22: [1, 50] }),
753
+ t(O, [2, 21]),
754
+ t(O, [2, 22]),
755
+ t(O, [2, 23]),
756
+ t(O, [2, 24]),
757
+ t(O, [2, 25]),
758
+ t(O, [2, 26]),
759
+ t(O, [2, 27]),
760
+ t(O, [2, 28]),
761
+ t(O, [2, 29]),
762
+ t(O, [2, 30]),
763
+ { 34: [1, 51] },
764
+ { 36: [1, 52] },
765
+ t(O, [2, 33]),
766
+ t(O, [2, 53], {
767
+ 53: 53,
768
+ 66: 56,
769
+ 67: 57,
770
+ 13: [1, 54],
771
+ 22: [1, 55],
772
+ 68: k,
773
+ 69: A,
774
+ 70: j,
775
+ 71: M,
776
+ 72: N,
777
+ 73: P,
778
+ 74: F
779
+ }),
780
+ { 39: [1, 65] },
781
+ t(I, [2, 40], {
782
+ 39: [1, 67],
783
+ 44: [1, 66]
784
+ }),
785
+ t(O, [2, 55]),
786
+ t(O, [2, 56]),
787
+ {
788
+ 16: 68,
789
+ 60: p,
790
+ 86: C,
791
+ 100: w,
792
+ 102: T
793
+ },
794
+ {
795
+ 16: 39,
796
+ 17: 40,
797
+ 19: 69,
798
+ 60: p,
799
+ 86: C,
800
+ 100: w,
801
+ 102: T,
802
+ 103: E
803
+ },
804
+ {
805
+ 16: 39,
806
+ 17: 40,
807
+ 19: 70,
808
+ 60: p,
809
+ 86: C,
810
+ 100: w,
811
+ 102: T,
812
+ 103: E
813
+ },
814
+ {
815
+ 16: 39,
816
+ 17: 40,
817
+ 19: 71,
818
+ 60: p,
819
+ 86: C,
820
+ 100: w,
821
+ 102: T,
822
+ 103: E
823
+ },
824
+ { 60: [1, 72] },
825
+ { 13: [1, 73] },
826
+ {
827
+ 16: 39,
828
+ 17: 40,
829
+ 19: 74,
830
+ 60: p,
831
+ 86: C,
832
+ 100: w,
833
+ 102: T,
834
+ 103: E
835
+ },
836
+ {
837
+ 13: ee,
838
+ 55: 75
839
+ },
840
+ {
841
+ 58: 77,
842
+ 60: [1, 78]
843
+ },
844
+ t(O, [2, 66]),
845
+ t(O, [2, 67]),
846
+ t(O, [2, 68]),
847
+ t(O, [2, 69]),
848
+ t(L, [2, 13], {
849
+ 16: 39,
850
+ 17: 40,
851
+ 19: 80,
852
+ 18: [1, 79],
853
+ 20: [1, 81],
854
+ 60: p,
855
+ 86: C,
856
+ 100: w,
857
+ 102: T,
858
+ 103: E
859
+ }),
860
+ t(L, [2, 15], { 20: [1, 82] }),
861
+ {
862
+ 15: 83,
863
+ 16: 84,
864
+ 17: 85,
865
+ 60: p,
866
+ 86: C,
867
+ 100: w,
868
+ 102: T,
869
+ 103: E
870
+ },
871
+ {
872
+ 16: 39,
873
+ 17: 40,
874
+ 19: 86,
875
+ 60: p,
876
+ 86: C,
877
+ 100: w,
878
+ 102: T,
879
+ 103: E
880
+ },
881
+ t(R, [2, 123]),
882
+ t(R, [2, 124]),
883
+ t(R, [2, 125]),
884
+ t(R, [2, 126]),
885
+ t([
886
+ 1,
887
+ 8,
888
+ 9,
889
+ 12,
890
+ 13,
891
+ 20,
892
+ 22,
893
+ 39,
894
+ 41,
895
+ 44,
896
+ 68,
897
+ 69,
898
+ 70,
899
+ 71,
900
+ 72,
901
+ 73,
902
+ 74,
903
+ 79,
904
+ 81
905
+ ], [2, 127]),
906
+ t(D, [2, 6], {
907
+ 10: 5,
908
+ 21: 7,
909
+ 23: 8,
910
+ 24: 9,
911
+ 25: 10,
912
+ 26: 11,
913
+ 27: 12,
914
+ 28: 13,
915
+ 29: 14,
916
+ 30: 15,
917
+ 31: 16,
918
+ 32: 17,
919
+ 19: 21,
920
+ 38: 22,
921
+ 43: 23,
922
+ 16: 39,
923
+ 17: 40,
924
+ 5: 87,
925
+ 33: n,
926
+ 35: r,
927
+ 37: i,
928
+ 42: a,
929
+ 46: o,
930
+ 49: s,
931
+ 51: c,
932
+ 52: l,
933
+ 54: u,
934
+ 56: d,
935
+ 57: f,
936
+ 60: p,
937
+ 62: m,
938
+ 63: h,
939
+ 64: g,
940
+ 65: _,
941
+ 75: v,
942
+ 76: y,
943
+ 78: b,
944
+ 82: x,
945
+ 83: S,
946
+ 86: C,
947
+ 100: w,
948
+ 102: T,
949
+ 103: E
950
+ }),
951
+ {
952
+ 5: 88,
953
+ 10: 5,
954
+ 16: 39,
955
+ 17: 40,
956
+ 19: 21,
957
+ 21: 7,
958
+ 23: 8,
959
+ 24: 9,
960
+ 25: 10,
961
+ 26: 11,
962
+ 27: 12,
963
+ 28: 13,
964
+ 29: 14,
965
+ 30: 15,
966
+ 31: 16,
967
+ 32: 17,
968
+ 33: n,
969
+ 35: r,
970
+ 37: i,
971
+ 38: 22,
972
+ 42: a,
973
+ 43: 23,
974
+ 46: o,
975
+ 49: s,
976
+ 51: c,
977
+ 52: l,
978
+ 54: u,
979
+ 56: d,
980
+ 57: f,
981
+ 60: p,
982
+ 62: m,
983
+ 63: h,
984
+ 64: g,
985
+ 65: _,
986
+ 75: v,
987
+ 76: y,
988
+ 78: b,
989
+ 82: x,
990
+ 83: S,
991
+ 86: C,
992
+ 100: w,
993
+ 102: T,
994
+ 103: E
995
+ },
996
+ t(O, [2, 20]),
997
+ t(O, [2, 31]),
998
+ t(O, [2, 32]),
999
+ {
1000
+ 13: [1, 90],
1001
+ 16: 39,
1002
+ 17: 40,
1003
+ 19: 89,
1004
+ 60: p,
1005
+ 86: C,
1006
+ 100: w,
1007
+ 102: T,
1008
+ 103: E
1009
+ },
1010
+ {
1011
+ 53: 91,
1012
+ 66: 56,
1013
+ 67: 57,
1014
+ 68: k,
1015
+ 69: A,
1016
+ 70: j,
1017
+ 71: M,
1018
+ 72: N,
1019
+ 73: P,
1020
+ 74: F
1021
+ },
1022
+ t(O, [2, 54]),
1023
+ {
1024
+ 67: 92,
1025
+ 73: P,
1026
+ 74: F
1027
+ },
1028
+ t(z, [2, 73], {
1029
+ 66: 93,
1030
+ 68: k,
1031
+ 69: A,
1032
+ 70: j,
1033
+ 71: M,
1034
+ 72: N
1035
+ }),
1036
+ t(B, [2, 74]),
1037
+ t(B, [2, 75]),
1038
+ t(B, [2, 76]),
1039
+ t(B, [2, 77]),
1040
+ t(B, [2, 78]),
1041
+ t(te, [2, 79]),
1042
+ t(te, [2, 80]),
1043
+ {
1044
+ 8: [1, 95],
1045
+ 24: 96,
1046
+ 40: 94,
1047
+ 43: 23,
1048
+ 46: o
1049
+ },
1050
+ {
1051
+ 16: 97,
1052
+ 60: p,
1053
+ 86: C,
1054
+ 100: w,
1055
+ 102: T
1056
+ },
1057
+ {
1058
+ 41: [1, 99],
1059
+ 45: 98,
1060
+ 51: ne
1061
+ },
1062
+ { 50: [1, 101] },
1063
+ { 13: [1, 102] },
1064
+ { 13: [1, 103] },
1065
+ {
1066
+ 79: [1, 104],
1067
+ 81: [1, 105]
1068
+ },
1069
+ {
1070
+ 22: V,
1071
+ 48: H,
1072
+ 59: 106,
1073
+ 60: U,
1074
+ 82: W,
1075
+ 84: 107,
1076
+ 85: 108,
1077
+ 86: G,
1078
+ 87: K,
1079
+ 88: q,
1080
+ 89: J,
1081
+ 90: Y
1082
+ },
1083
+ { 60: [1, 118] },
1084
+ {
1085
+ 13: ee,
1086
+ 55: 119
1087
+ },
1088
+ t(O, [2, 62]),
1089
+ t(O, [2, 128]),
1090
+ {
1091
+ 22: V,
1092
+ 48: H,
1093
+ 59: 120,
1094
+ 60: U,
1095
+ 61: [1, 121],
1096
+ 82: W,
1097
+ 84: 107,
1098
+ 85: 108,
1099
+ 86: G,
1100
+ 87: K,
1101
+ 88: q,
1102
+ 89: J,
1103
+ 90: Y
1104
+ },
1105
+ t(re, [2, 64]),
1106
+ {
1107
+ 16: 39,
1108
+ 17: 40,
1109
+ 19: 122,
1110
+ 60: p,
1111
+ 86: C,
1112
+ 100: w,
1113
+ 102: T,
1114
+ 103: E
1115
+ },
1116
+ t(L, [2, 16]),
1117
+ t(L, [2, 17]),
1118
+ t(L, [2, 18]),
1119
+ { 39: [2, 36] },
1120
+ {
1121
+ 15: 124,
1122
+ 16: 84,
1123
+ 17: 85,
1124
+ 18: [1, 123],
1125
+ 39: [2, 9],
1126
+ 60: p,
1127
+ 86: C,
1128
+ 100: w,
1129
+ 102: T,
1130
+ 103: E
1131
+ },
1132
+ { 39: [2, 10] },
1133
+ t(X, [2, 45], {
1134
+ 11: 125,
1135
+ 12: [1, 126]
1136
+ }),
1137
+ t(D, [2, 7]),
1138
+ { 9: [1, 127] },
1139
+ t(Z, [2, 57]),
1140
+ {
1141
+ 16: 39,
1142
+ 17: 40,
1143
+ 19: 128,
1144
+ 60: p,
1145
+ 86: C,
1146
+ 100: w,
1147
+ 102: T,
1148
+ 103: E
1149
+ },
1150
+ {
1151
+ 13: [1, 130],
1152
+ 16: 39,
1153
+ 17: 40,
1154
+ 19: 129,
1155
+ 60: p,
1156
+ 86: C,
1157
+ 100: w,
1158
+ 102: T,
1159
+ 103: E
1160
+ },
1161
+ t(z, [2, 72], {
1162
+ 66: 131,
1163
+ 68: k,
1164
+ 69: A,
1165
+ 70: j,
1166
+ 71: M,
1167
+ 72: N
1168
+ }),
1169
+ t(z, [2, 71]),
1170
+ { 41: [1, 132] },
1171
+ {
1172
+ 24: 96,
1173
+ 40: 133,
1174
+ 43: 23,
1175
+ 46: o
1176
+ },
1177
+ {
1178
+ 8: [1, 134],
1179
+ 41: [2, 37]
1180
+ },
1181
+ t(I, [2, 41], { 39: [1, 135] }),
1182
+ { 41: [1, 136] },
1183
+ t(I, [2, 43]),
1184
+ {
1185
+ 41: [2, 51],
1186
+ 45: 137,
1187
+ 51: ne
1188
+ },
1189
+ {
1190
+ 16: 39,
1191
+ 17: 40,
1192
+ 19: 138,
1193
+ 60: p,
1194
+ 86: C,
1195
+ 100: w,
1196
+ 102: T,
1197
+ 103: E
1198
+ },
1199
+ t(O, [2, 81], { 13: [1, 139] }),
1200
+ t(O, [2, 83], {
1201
+ 13: [1, 141],
1202
+ 77: [1, 140]
1203
+ }),
1204
+ t(O, [2, 87], {
1205
+ 13: [1, 142],
1206
+ 80: [1, 143]
1207
+ }),
1208
+ { 13: [1, 144] },
1209
+ t(O, [2, 95], { 61: ie }),
1210
+ t(ae, [2, 97], {
1211
+ 85: 146,
1212
+ 22: V,
1213
+ 48: H,
1214
+ 60: U,
1215
+ 82: W,
1216
+ 86: G,
1217
+ 87: K,
1218
+ 88: q,
1219
+ 89: J,
1220
+ 90: Y
1221
+ }),
1222
+ t(Q, [2, 99]),
1223
+ t(Q, [2, 101]),
1224
+ t(Q, [2, 102]),
1225
+ t(Q, [2, 103]),
1226
+ t(Q, [2, 104]),
1227
+ t(Q, [2, 105]),
1228
+ t(Q, [2, 106]),
1229
+ t(Q, [2, 107]),
1230
+ t(Q, [2, 108]),
1231
+ t(Q, [2, 109]),
1232
+ t(O, [2, 96]),
1233
+ t(O, [2, 61]),
1234
+ t(O, [2, 63], { 61: ie }),
1235
+ { 60: [1, 147] },
1236
+ t(L, [2, 14]),
1237
+ {
1238
+ 15: 148,
1239
+ 16: 84,
1240
+ 17: 85,
1241
+ 60: p,
1242
+ 86: C,
1243
+ 100: w,
1244
+ 102: T,
1245
+ 103: E
1246
+ },
1247
+ { 39: [2, 12] },
1248
+ t(X, [2, 46]),
1249
+ { 13: [1, 149] },
1250
+ { 1: [2, 4] },
1251
+ t(Z, [2, 59]),
1252
+ t(Z, [2, 58]),
1253
+ {
1254
+ 16: 39,
1255
+ 17: 40,
1256
+ 19: 150,
1257
+ 60: p,
1258
+ 86: C,
1259
+ 100: w,
1260
+ 102: T,
1261
+ 103: E
1262
+ },
1263
+ t(z, [2, 70]),
1264
+ t(O, [2, 34]),
1265
+ { 41: [1, 151] },
1266
+ {
1267
+ 24: 96,
1268
+ 40: 152,
1269
+ 41: [2, 38],
1270
+ 43: 23,
1271
+ 46: o
1272
+ },
1273
+ {
1274
+ 45: 153,
1275
+ 51: ne
1276
+ },
1277
+ t(I, [2, 42]),
1278
+ { 41: [2, 52] },
1279
+ t(O, [2, 50]),
1280
+ t(O, [2, 82]),
1281
+ t(O, [2, 84]),
1282
+ t(O, [2, 85], { 77: [1, 154] }),
1283
+ t(O, [2, 88]),
1284
+ t(O, [2, 89], { 13: [1, 155] }),
1285
+ t(O, [2, 91], {
1286
+ 13: [1, 157],
1287
+ 77: [1, 156]
1288
+ }),
1289
+ {
1290
+ 22: V,
1291
+ 48: H,
1292
+ 60: U,
1293
+ 82: W,
1294
+ 84: 158,
1295
+ 85: 108,
1296
+ 86: G,
1297
+ 87: K,
1298
+ 88: q,
1299
+ 89: J,
1300
+ 90: Y
1301
+ },
1302
+ t(Q, [2, 100]),
1303
+ t(re, [2, 65]),
1304
+ { 39: [2, 11] },
1305
+ { 14: [1, 159] },
1306
+ t(Z, [2, 60]),
1307
+ t(O, [2, 35]),
1308
+ { 41: [2, 39] },
1309
+ { 41: [1, 160] },
1310
+ t(O, [2, 86]),
1311
+ t(O, [2, 90]),
1312
+ t(O, [2, 92]),
1313
+ t(O, [2, 93], { 77: [1, 161] }),
1314
+ t(ae, [2, 98], {
1315
+ 85: 146,
1316
+ 22: V,
1317
+ 48: H,
1318
+ 60: U,
1319
+ 82: W,
1320
+ 86: G,
1321
+ 87: K,
1322
+ 88: q,
1323
+ 89: J,
1324
+ 90: Y
1325
+ }),
1326
+ t(X, [2, 8]),
1327
+ t(I, [2, 44]),
1328
+ t(O, [2, 94])
1329
+ ],
1330
+ defaultActions: {
1331
+ 2: [2, 1],
1332
+ 3: [2, 2],
1333
+ 4: [2, 3],
1334
+ 83: [2, 36],
1335
+ 85: [2, 10],
1336
+ 124: [2, 12],
1337
+ 127: [2, 4],
1338
+ 137: [2, 52],
1339
+ 148: [2, 11],
1340
+ 152: [2, 39]
1341
+ },
1342
+ parseError: /* @__PURE__ */ __name(function(e, t) {
1343
+ if (t.recoverable) this.trace(e);
1344
+ else {
1345
+ var n = Error(e);
1346
+ throw n.hash = t, n;
1347
+ }
1348
+ }, "parseError"),
1349
+ parse: /* @__PURE__ */ __name(function(t) {
1350
+ var n = this, r = [0], i = [], a = [null], o = [], s = this.table, c = "", l = 0, u = 0, d = 0, f = 2, p = 1, m = o.slice.call(arguments, 1), h = Object.create(this.lexer), g = { yy: {} };
1351
+ for (var _ in this.yy) Object.prototype.hasOwnProperty.call(this.yy, _) && (g.yy[_] = this.yy[_]);
1352
+ h.setInput(t, g.yy), g.yy.lexer = h, g.yy.parser = this, h.yylloc === void 0 && (h.yylloc = {});
1353
+ var v = h.yylloc;
1354
+ o.push(v);
1355
+ var y = h.options && h.options.ranges;
1356
+ typeof g.yy.parseError == "function" ? this.parseError = g.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
1357
+ function b(e) {
1358
+ r.length -= 2 * e, a.length -= e, o.length -= e;
1359
+ }
1360
+ __name(b, "popStack");
1361
+ function x() {
1362
+ var e = i.pop() || h.lex() || p;
1363
+ return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
1364
+ }
1365
+ __name(x, "lex");
1366
+ for (var S, C, w, T, E, D = {}, O, k, A, j;;) {
1367
+ if (w = r[r.length - 1], this.defaultActions[w] ? T = this.defaultActions[w] : (S ??= x(), T = s[w] && s[w][S]), T === void 0 || !T.length || !T[0]) {
1368
+ var M = "";
1369
+ for (O in j = [], s[w]) this.terminals_[O] && O > f && j.push("'" + this.terminals_[O] + "'");
1370
+ M = h.showPosition ? "Parse error on line " + (l + 1) + ":\n" + h.showPosition() + "\nExpecting " + j.join(", ") + ", got '" + (this.terminals_[S] || S) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (S == p ? "end of input" : "'" + (this.terminals_[S] || S) + "'"), this.parseError(M, {
1371
+ text: h.match,
1372
+ token: this.terminals_[S] || S,
1373
+ line: h.yylineno,
1374
+ loc: v,
1375
+ expected: j
1376
+ });
1377
+ }
1378
+ if (T[0] instanceof Array && T.length > 1) throw Error("Parse Error: multiple actions possible at state: " + w + ", token: " + S);
1379
+ switch (T[0]) {
1380
+ case 1:
1381
+ r.push(S), a.push(h.yytext), o.push(h.yylloc), r.push(T[1]), S = null, C ? (S = C, C = null) : (u = h.yyleng, c = h.yytext, l = h.yylineno, v = h.yylloc, d > 0 && d--);
1382
+ break;
1383
+ case 2:
1384
+ if (k = this.productions_[T[1]][1], D.$ = a[a.length - k], D._$ = {
1385
+ first_line: o[o.length - (k || 1)].first_line,
1386
+ last_line: o[o.length - 1].last_line,
1387
+ first_column: o[o.length - (k || 1)].first_column,
1388
+ last_column: o[o.length - 1].last_column
1389
+ }, y && (D._$.range = [o[o.length - (k || 1)].range[0], o[o.length - 1].range[1]]), E = this.performAction.apply(D, [
1390
+ c,
1391
+ u,
1392
+ l,
1393
+ g.yy,
1394
+ T[1],
1395
+ a,
1396
+ o
1397
+ ].concat(m)), E !== void 0) return E;
1398
+ k && (r = r.slice(0, -1 * k * 2), a = a.slice(0, -1 * k), o = o.slice(0, -1 * k)), r.push(this.productions_[T[1]][0]), a.push(D.$), o.push(D._$), A = s[r[r.length - 2]][r[r.length - 1]], r.push(A);
1399
+ break;
1400
+ case 3: return !0;
1401
+ }
1402
+ }
1403
+ return !0;
1404
+ }, "parse")
1405
+ };
1406
+ oe.lexer = /* @__PURE__ */ (function() {
1407
+ return {
1408
+ EOF: 1,
1409
+ parseError: /* @__PURE__ */ __name(function(e, t) {
1410
+ if (this.yy.parser) this.yy.parser.parseError(e, t);
1411
+ else throw Error(e);
1412
+ }, "parseError"),
1413
+ setInput: /* @__PURE__ */ __name(function(e, t) {
1414
+ return this.yy = t || this.yy || {}, this._input = e, this._more = this._backtrack = this.done = !1, this.yylineno = this.yyleng = 0, this.yytext = this.matched = this.match = "", this.conditionStack = ["INITIAL"], this.yylloc = {
1415
+ first_line: 1,
1416
+ first_column: 0,
1417
+ last_line: 1,
1418
+ last_column: 0
1419
+ }, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
1420
+ }, "setInput"),
1421
+ input: /* @__PURE__ */ __name(function() {
1422
+ var e = this._input[0];
1423
+ return this.yytext += e, this.yyleng++, this.offset++, this.match += e, this.matched += e, e.match(/(?:\r\n?|\n).*/g) ? (this.yylineno++, this.yylloc.last_line++) : this.yylloc.last_column++, this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1), e;
1424
+ }, "input"),
1425
+ unput: /* @__PURE__ */ __name(function(e) {
1426
+ var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
1427
+ this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
1428
+ var r = this.match.split(/(?:\r\n?|\n)/g);
1429
+ this.match = this.match.substr(0, this.match.length - 1), this.matched = this.matched.substr(0, this.matched.length - 1), n.length - 1 && (this.yylineno -= n.length - 1);
1430
+ var i = this.yylloc.range;
1431
+ return this.yylloc = {
1432
+ first_line: this.yylloc.first_line,
1433
+ last_line: this.yylineno + 1,
1434
+ first_column: this.yylloc.first_column,
1435
+ last_column: n ? (n.length === r.length ? this.yylloc.first_column : 0) + r[r.length - n.length].length - n[0].length : this.yylloc.first_column - t
1436
+ }, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
1437
+ }, "unput"),
1438
+ more: /* @__PURE__ */ __name(function() {
1439
+ return this._more = !0, this;
1440
+ }, "more"),
1441
+ reject: /* @__PURE__ */ __name(function() {
1442
+ if (this.options.backtrack_lexer) this._backtrack = !0;
1443
+ else return this.parseError("Lexical error on line " + (this.yylineno + 1) + ". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n" + this.showPosition(), {
1444
+ text: "",
1445
+ token: null,
1446
+ line: this.yylineno
1447
+ });
1448
+ return this;
1449
+ }, "reject"),
1450
+ less: /* @__PURE__ */ __name(function(e) {
1451
+ this.unput(this.match.slice(e));
1452
+ }, "less"),
1453
+ pastInput: /* @__PURE__ */ __name(function() {
1454
+ var e = this.matched.substr(0, this.matched.length - this.match.length);
1455
+ return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
1456
+ }, "pastInput"),
1457
+ upcomingInput: /* @__PURE__ */ __name(function() {
1458
+ var e = this.match;
1459
+ return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
1460
+ }, "upcomingInput"),
1461
+ showPosition: /* @__PURE__ */ __name(function() {
1462
+ var e = this.pastInput(), t = Array(e.length + 1).join("-");
1463
+ return e + this.upcomingInput() + "\n" + t + "^";
1464
+ }, "showPosition"),
1465
+ test_match: /* @__PURE__ */ __name(function(e, t) {
1466
+ var n, r, i;
1467
+ if (this.options.backtrack_lexer && (i = {
1468
+ yylineno: this.yylineno,
1469
+ yylloc: {
1470
+ first_line: this.yylloc.first_line,
1471
+ last_line: this.last_line,
1472
+ first_column: this.yylloc.first_column,
1473
+ last_column: this.yylloc.last_column
1474
+ },
1475
+ yytext: this.yytext,
1476
+ match: this.match,
1477
+ matches: this.matches,
1478
+ matched: this.matched,
1479
+ yyleng: this.yyleng,
1480
+ offset: this.offset,
1481
+ _more: this._more,
1482
+ _input: this._input,
1483
+ yy: this.yy,
1484
+ conditionStack: this.conditionStack.slice(0),
1485
+ done: this.done
1486
+ }, this.options.ranges && (i.yylloc.range = this.yylloc.range.slice(0))), r = e[0].match(/(?:\r\n?|\n).*/g), r && (this.yylineno += r.length), this.yylloc = {
1487
+ first_line: this.yylloc.last_line,
1488
+ last_line: this.yylineno + 1,
1489
+ first_column: this.yylloc.last_column,
1490
+ last_column: r ? r[r.length - 1].length - r[r.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + e[0].length
1491
+ }, this.yytext += e[0], this.match += e[0], this.matches = e, this.yyleng = this.yytext.length, this.options.ranges && (this.yylloc.range = [this.offset, this.offset += this.yyleng]), this._more = !1, this._backtrack = !1, this._input = this._input.slice(e[0].length), this.matched += e[0], n = this.performAction.call(this, this.yy, this, t, this.conditionStack[this.conditionStack.length - 1]), this.done && this._input && (this.done = !1), n) return n;
1492
+ if (this._backtrack) {
1493
+ for (var a in i) this[a] = i[a];
1494
+ return !1;
1495
+ }
1496
+ return !1;
1497
+ }, "test_match"),
1498
+ next: /* @__PURE__ */ __name(function() {
1499
+ if (this.done) return this.EOF;
1500
+ this._input || (this.done = !0);
1501
+ var e, t, n, r;
1502
+ this._more || (this.yytext = "", this.match = "");
1503
+ for (var i = this._currentRules(), a = 0; a < i.length; a++) if (n = this._input.match(this.rules[i[a]]), n && (!t || n[0].length > t[0].length)) {
1504
+ if (t = n, r = a, this.options.backtrack_lexer) {
1505
+ if (e = this.test_match(n, i[a]), e !== !1) return e;
1506
+ if (this._backtrack) {
1507
+ t = !1;
1508
+ continue;
1509
+ } else return !1;
1510
+ } else if (!this.options.flex) break;
1511
+ }
1512
+ return t ? (e = this.test_match(t, i[r]), e === !1 ? !1 : e) : this._input === "" ? this.EOF : this.parseError("Lexical error on line " + (this.yylineno + 1) + ". Unrecognized text.\n" + this.showPosition(), {
1513
+ text: "",
1514
+ token: null,
1515
+ line: this.yylineno
1516
+ });
1517
+ }, "next"),
1518
+ lex: /* @__PURE__ */ __name(function() {
1519
+ return this.next() || this.lex();
1520
+ }, "lex"),
1521
+ begin: /* @__PURE__ */ __name(function(e) {
1522
+ this.conditionStack.push(e);
1523
+ }, "begin"),
1524
+ popState: /* @__PURE__ */ __name(function() {
1525
+ return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
1526
+ }, "popState"),
1527
+ _currentRules: /* @__PURE__ */ __name(function() {
1528
+ return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
1529
+ }, "_currentRules"),
1530
+ topState: /* @__PURE__ */ __name(function(e) {
1531
+ return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
1532
+ }, "topState"),
1533
+ pushState: /* @__PURE__ */ __name(function(e) {
1534
+ this.begin(e);
1535
+ }, "pushState"),
1536
+ stateStackSize: /* @__PURE__ */ __name(function() {
1537
+ return this.conditionStack.length;
1538
+ }, "stateStackSize"),
1539
+ options: {},
1540
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
1541
+ switch (n) {
1542
+ case 0: return 62;
1543
+ case 1: return 63;
1544
+ case 2: return 64;
1545
+ case 3: return 65;
1546
+ case 4: break;
1547
+ case 5: break;
1548
+ case 6: return this.begin("acc_title"), 33;
1549
+ case 7: return this.popState(), "acc_title_value";
1550
+ case 8: return this.begin("acc_descr"), 35;
1551
+ case 9: return this.popState(), "acc_descr_value";
1552
+ case 10:
1553
+ this.begin("acc_descr_multiline");
1554
+ break;
1555
+ case 11:
1556
+ this.popState();
1557
+ break;
1558
+ case 12: return "acc_descr_multiline_value";
1559
+ case 13: return 8;
1560
+ case 14: break;
1561
+ case 15: return 7;
1562
+ case 16: return 7;
1563
+ case 17: return "EDGE_STATE";
1564
+ case 18:
1565
+ this.begin("callback_name");
1566
+ break;
1567
+ case 19:
1568
+ this.popState();
1569
+ break;
1570
+ case 20:
1571
+ this.popState(), this.begin("callback_args");
1572
+ break;
1573
+ case 21: return 79;
1574
+ case 22:
1575
+ this.popState();
1576
+ break;
1577
+ case 23: return 80;
1578
+ case 24:
1579
+ this.popState();
1580
+ break;
1581
+ case 25: return "STR";
1582
+ case 26:
1583
+ this.begin("string");
1584
+ break;
1585
+ case 27: return 82;
1586
+ case 28: return 57;
1587
+ case 29: return this.begin("namespace"), 42;
1588
+ case 30: return this.popState(), 8;
1589
+ case 31: break;
1590
+ case 32: return this.begin("namespace-body"), 39;
1591
+ case 33: return this.popState(), 41;
1592
+ case 34: return "EOF_IN_STRUCT";
1593
+ case 35: return 8;
1594
+ case 36: break;
1595
+ case 37: return "EDGE_STATE";
1596
+ case 38: return this.begin("class"), 46;
1597
+ case 39: return this.popState(), 8;
1598
+ case 40: break;
1599
+ case 41: return this.popState(), this.popState(), 41;
1600
+ case 42: return this.begin("class-body"), 39;
1601
+ case 43: return this.popState(), 41;
1602
+ case 44: return "EOF_IN_STRUCT";
1603
+ case 45: return "EDGE_STATE";
1604
+ case 46: return "OPEN_IN_STRUCT";
1605
+ case 47: break;
1606
+ case 48: return "MEMBER";
1607
+ case 49: return 83;
1608
+ case 50: return 75;
1609
+ case 51: return 76;
1610
+ case 52: return 78;
1611
+ case 53: return 54;
1612
+ case 54: return 56;
1613
+ case 55: return 49;
1614
+ case 56: return 50;
1615
+ case 57: return 81;
1616
+ case 58:
1617
+ this.popState();
1618
+ break;
1619
+ case 59: return "GENERICTYPE";
1620
+ case 60:
1621
+ this.begin("generic");
1622
+ break;
1623
+ case 61:
1624
+ this.popState();
1625
+ break;
1626
+ case 62: return "BQUOTE_STR";
1627
+ case 63:
1628
+ this.begin("bqstring");
1629
+ break;
1630
+ case 64: return 77;
1631
+ case 65: return 77;
1632
+ case 66: return 77;
1633
+ case 67: return 77;
1634
+ case 68: return 69;
1635
+ case 69: return 69;
1636
+ case 70: return 71;
1637
+ case 71: return 71;
1638
+ case 72: return 70;
1639
+ case 73: return 68;
1640
+ case 74: return 72;
1641
+ case 75: return 73;
1642
+ case 76: return 74;
1643
+ case 77: return 22;
1644
+ case 78: return 44;
1645
+ case 79: return 100;
1646
+ case 80: return 18;
1647
+ case 81: return "PLUS";
1648
+ case 82: return 87;
1649
+ case 83: return 61;
1650
+ case 84: return 89;
1651
+ case 85: return 89;
1652
+ case 86: return 90;
1653
+ case 87: return "EQUALS";
1654
+ case 88: return "EQUALS";
1655
+ case 89: return 60;
1656
+ case 90: return 12;
1657
+ case 91: return 14;
1658
+ case 92: return "PUNCTUATION";
1659
+ case 93: return 86;
1660
+ case 94: return 102;
1661
+ case 95: return 48;
1662
+ case 96: return 48;
1663
+ case 97: return 9;
1664
+ }
1665
+ }, "anonymous"),
1666
+ rules: [
1667
+ /^(?:.*direction\s+TB[^\n]*)/,
1668
+ /^(?:.*direction\s+BT[^\n]*)/,
1669
+ /^(?:.*direction\s+RL[^\n]*)/,
1670
+ /^(?:.*direction\s+LR[^\n]*)/,
1671
+ /^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,
1672
+ /^(?:%%[^\n]*(\r?\n)*)/,
1673
+ /^(?:accTitle\s*:\s*)/,
1674
+ /^(?:(?!\n||)*[^\n]*)/,
1675
+ /^(?:accDescr\s*:\s*)/,
1676
+ /^(?:(?!\n||)*[^\n]*)/,
1677
+ /^(?:accDescr\s*\{\s*)/,
1678
+ /^(?:[\}])/,
1679
+ /^(?:[^\}]*)/,
1680
+ /^(?:\s*(\r?\n)+)/,
1681
+ /^(?:\s+)/,
1682
+ /^(?:classDiagram-v2\b)/,
1683
+ /^(?:classDiagram\b)/,
1684
+ /^(?:\[\*\])/,
1685
+ /^(?:call[\s]+)/,
1686
+ /^(?:\([\s]*\))/,
1687
+ /^(?:\()/,
1688
+ /^(?:[^(]*)/,
1689
+ /^(?:\))/,
1690
+ /^(?:[^)]*)/,
1691
+ /^(?:["])/,
1692
+ /^(?:[^"]*)/,
1693
+ /^(?:["])/,
1694
+ /^(?:style\b)/,
1695
+ /^(?:classDef\b)/,
1696
+ /^(?:namespace\b)/,
1697
+ /^(?:\s*(\r?\n)+)/,
1698
+ /^(?:\s+)/,
1699
+ /^(?:[{])/,
1700
+ /^(?:[}])/,
1701
+ /^(?:$)/,
1702
+ /^(?:\s*(\r?\n)+)/,
1703
+ /^(?:\s+)/,
1704
+ /^(?:\[\*\])/,
1705
+ /^(?:class\b)/,
1706
+ /^(?:\s*(\r?\n)+)/,
1707
+ /^(?:\s+)/,
1708
+ /^(?:[}])/,
1709
+ /^(?:[{])/,
1710
+ /^(?:[}])/,
1711
+ /^(?:$)/,
1712
+ /^(?:\[\*\])/,
1713
+ /^(?:[{])/,
1714
+ /^(?:[\n])/,
1715
+ /^(?:[^{}\n]*)/,
1716
+ /^(?:cssClass\b)/,
1717
+ /^(?:callback\b)/,
1718
+ /^(?:link\b)/,
1719
+ /^(?:click\b)/,
1720
+ /^(?:note for\b)/,
1721
+ /^(?:note\b)/,
1722
+ /^(?:<<)/,
1723
+ /^(?:>>)/,
1724
+ /^(?:href\b)/,
1725
+ /^(?:[~])/,
1726
+ /^(?:[^~]*)/,
1727
+ /^(?:~)/,
1728
+ /^(?:[`])/,
1729
+ /^(?:[^`]+)/,
1730
+ /^(?:[`])/,
1731
+ /^(?:_self\b)/,
1732
+ /^(?:_blank\b)/,
1733
+ /^(?:_parent\b)/,
1734
+ /^(?:_top\b)/,
1735
+ /^(?:\s*<\|)/,
1736
+ /^(?:\s*\|>)/,
1737
+ /^(?:\s*>)/,
1738
+ /^(?:\s*<)/,
1739
+ /^(?:\s*\*)/,
1740
+ /^(?:\s*o\b)/,
1741
+ /^(?:\s*\(\))/,
1742
+ /^(?:--)/,
1743
+ /^(?:\.\.)/,
1744
+ /^(?::{1}[^:\n;]+)/,
1745
+ /^(?::{3})/,
1746
+ /^(?:-)/,
1747
+ /^(?:\.)/,
1748
+ /^(?:\+)/,
1749
+ /^(?::)/,
1750
+ /^(?:,)/,
1751
+ /^(?:#)/,
1752
+ /^(?:#)/,
1753
+ /^(?:%)/,
1754
+ /^(?:=)/,
1755
+ /^(?:=)/,
1756
+ /^(?:\w+)/,
1757
+ /^(?:\[)/,
1758
+ /^(?:\])/,
1759
+ /^(?:[!"#$%&'*+,-.`?\\/])/,
1760
+ /^(?:[0-9]+)/,
1761
+ /^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,
1762
+ /^(?:\s)/,
1763
+ /^(?:\s)/,
1764
+ /^(?:$)/
1765
+ ],
1766
+ conditions: {
1767
+ "namespace-body": {
1768
+ rules: [
1769
+ 26,
1770
+ 33,
1771
+ 34,
1772
+ 35,
1773
+ 36,
1774
+ 37,
1775
+ 38,
1776
+ 49,
1777
+ 50,
1778
+ 51,
1779
+ 52,
1780
+ 53,
1781
+ 54,
1782
+ 55,
1783
+ 56,
1784
+ 57,
1785
+ 60,
1786
+ 63,
1787
+ 64,
1788
+ 65,
1789
+ 66,
1790
+ 67,
1791
+ 68,
1792
+ 69,
1793
+ 70,
1794
+ 71,
1795
+ 72,
1796
+ 73,
1797
+ 74,
1798
+ 75,
1799
+ 76,
1800
+ 77,
1801
+ 78,
1802
+ 79,
1803
+ 80,
1804
+ 81,
1805
+ 86,
1806
+ 87,
1807
+ 88,
1808
+ 89,
1809
+ 90,
1810
+ 91,
1811
+ 92,
1812
+ 93,
1813
+ 94,
1814
+ 95,
1815
+ 97
1816
+ ],
1817
+ inclusive: !1
1818
+ },
1819
+ namespace: {
1820
+ rules: [
1821
+ 26,
1822
+ 29,
1823
+ 30,
1824
+ 31,
1825
+ 32,
1826
+ 49,
1827
+ 50,
1828
+ 51,
1829
+ 52,
1830
+ 53,
1831
+ 54,
1832
+ 55,
1833
+ 56,
1834
+ 57,
1835
+ 60,
1836
+ 63,
1837
+ 64,
1838
+ 65,
1839
+ 66,
1840
+ 67,
1841
+ 68,
1842
+ 69,
1843
+ 70,
1844
+ 71,
1845
+ 72,
1846
+ 73,
1847
+ 74,
1848
+ 75,
1849
+ 76,
1850
+ 77,
1851
+ 78,
1852
+ 79,
1853
+ 80,
1854
+ 81,
1855
+ 86,
1856
+ 87,
1857
+ 88,
1858
+ 89,
1859
+ 90,
1860
+ 91,
1861
+ 92,
1862
+ 93,
1863
+ 94,
1864
+ 95,
1865
+ 97
1866
+ ],
1867
+ inclusive: !1
1868
+ },
1869
+ "class-body": {
1870
+ rules: [
1871
+ 26,
1872
+ 43,
1873
+ 44,
1874
+ 45,
1875
+ 46,
1876
+ 47,
1877
+ 48,
1878
+ 49,
1879
+ 50,
1880
+ 51,
1881
+ 52,
1882
+ 53,
1883
+ 54,
1884
+ 55,
1885
+ 56,
1886
+ 57,
1887
+ 60,
1888
+ 63,
1889
+ 64,
1890
+ 65,
1891
+ 66,
1892
+ 67,
1893
+ 68,
1894
+ 69,
1895
+ 70,
1896
+ 71,
1897
+ 72,
1898
+ 73,
1899
+ 74,
1900
+ 75,
1901
+ 76,
1902
+ 77,
1903
+ 78,
1904
+ 79,
1905
+ 80,
1906
+ 81,
1907
+ 86,
1908
+ 87,
1909
+ 88,
1910
+ 89,
1911
+ 90,
1912
+ 91,
1913
+ 92,
1914
+ 93,
1915
+ 94,
1916
+ 95,
1917
+ 97
1918
+ ],
1919
+ inclusive: !1
1920
+ },
1921
+ class: {
1922
+ rules: [
1923
+ 26,
1924
+ 39,
1925
+ 40,
1926
+ 41,
1927
+ 42,
1928
+ 49,
1929
+ 50,
1930
+ 51,
1931
+ 52,
1932
+ 53,
1933
+ 54,
1934
+ 55,
1935
+ 56,
1936
+ 57,
1937
+ 60,
1938
+ 63,
1939
+ 64,
1940
+ 65,
1941
+ 66,
1942
+ 67,
1943
+ 68,
1944
+ 69,
1945
+ 70,
1946
+ 71,
1947
+ 72,
1948
+ 73,
1949
+ 74,
1950
+ 75,
1951
+ 76,
1952
+ 77,
1953
+ 78,
1954
+ 79,
1955
+ 80,
1956
+ 81,
1957
+ 86,
1958
+ 87,
1959
+ 88,
1960
+ 89,
1961
+ 90,
1962
+ 91,
1963
+ 92,
1964
+ 93,
1965
+ 94,
1966
+ 95,
1967
+ 97
1968
+ ],
1969
+ inclusive: !1
1970
+ },
1971
+ acc_descr_multiline: {
1972
+ rules: [
1973
+ 11,
1974
+ 12,
1975
+ 26,
1976
+ 49,
1977
+ 50,
1978
+ 51,
1979
+ 52,
1980
+ 53,
1981
+ 54,
1982
+ 55,
1983
+ 56,
1984
+ 57,
1985
+ 60,
1986
+ 63,
1987
+ 64,
1988
+ 65,
1989
+ 66,
1990
+ 67,
1991
+ 68,
1992
+ 69,
1993
+ 70,
1994
+ 71,
1995
+ 72,
1996
+ 73,
1997
+ 74,
1998
+ 75,
1999
+ 76,
2000
+ 77,
2001
+ 78,
2002
+ 79,
2003
+ 80,
2004
+ 81,
2005
+ 86,
2006
+ 87,
2007
+ 88,
2008
+ 89,
2009
+ 90,
2010
+ 91,
2011
+ 92,
2012
+ 93,
2013
+ 94,
2014
+ 95,
2015
+ 97
2016
+ ],
2017
+ inclusive: !1
2018
+ },
2019
+ acc_descr: {
2020
+ rules: [
2021
+ 9,
2022
+ 26,
2023
+ 49,
2024
+ 50,
2025
+ 51,
2026
+ 52,
2027
+ 53,
2028
+ 54,
2029
+ 55,
2030
+ 56,
2031
+ 57,
2032
+ 60,
2033
+ 63,
2034
+ 64,
2035
+ 65,
2036
+ 66,
2037
+ 67,
2038
+ 68,
2039
+ 69,
2040
+ 70,
2041
+ 71,
2042
+ 72,
2043
+ 73,
2044
+ 74,
2045
+ 75,
2046
+ 76,
2047
+ 77,
2048
+ 78,
2049
+ 79,
2050
+ 80,
2051
+ 81,
2052
+ 86,
2053
+ 87,
2054
+ 88,
2055
+ 89,
2056
+ 90,
2057
+ 91,
2058
+ 92,
2059
+ 93,
2060
+ 94,
2061
+ 95,
2062
+ 97
2063
+ ],
2064
+ inclusive: !1
2065
+ },
2066
+ acc_title: {
2067
+ rules: [
2068
+ 7,
2069
+ 26,
2070
+ 49,
2071
+ 50,
2072
+ 51,
2073
+ 52,
2074
+ 53,
2075
+ 54,
2076
+ 55,
2077
+ 56,
2078
+ 57,
2079
+ 60,
2080
+ 63,
2081
+ 64,
2082
+ 65,
2083
+ 66,
2084
+ 67,
2085
+ 68,
2086
+ 69,
2087
+ 70,
2088
+ 71,
2089
+ 72,
2090
+ 73,
2091
+ 74,
2092
+ 75,
2093
+ 76,
2094
+ 77,
2095
+ 78,
2096
+ 79,
2097
+ 80,
2098
+ 81,
2099
+ 86,
2100
+ 87,
2101
+ 88,
2102
+ 89,
2103
+ 90,
2104
+ 91,
2105
+ 92,
2106
+ 93,
2107
+ 94,
2108
+ 95,
2109
+ 97
2110
+ ],
2111
+ inclusive: !1
2112
+ },
2113
+ callback_args: {
2114
+ rules: [
2115
+ 22,
2116
+ 23,
2117
+ 26,
2118
+ 49,
2119
+ 50,
2120
+ 51,
2121
+ 52,
2122
+ 53,
2123
+ 54,
2124
+ 55,
2125
+ 56,
2126
+ 57,
2127
+ 60,
2128
+ 63,
2129
+ 64,
2130
+ 65,
2131
+ 66,
2132
+ 67,
2133
+ 68,
2134
+ 69,
2135
+ 70,
2136
+ 71,
2137
+ 72,
2138
+ 73,
2139
+ 74,
2140
+ 75,
2141
+ 76,
2142
+ 77,
2143
+ 78,
2144
+ 79,
2145
+ 80,
2146
+ 81,
2147
+ 86,
2148
+ 87,
2149
+ 88,
2150
+ 89,
2151
+ 90,
2152
+ 91,
2153
+ 92,
2154
+ 93,
2155
+ 94,
2156
+ 95,
2157
+ 97
2158
+ ],
2159
+ inclusive: !1
2160
+ },
2161
+ callback_name: {
2162
+ rules: [
2163
+ 19,
2164
+ 20,
2165
+ 21,
2166
+ 26,
2167
+ 49,
2168
+ 50,
2169
+ 51,
2170
+ 52,
2171
+ 53,
2172
+ 54,
2173
+ 55,
2174
+ 56,
2175
+ 57,
2176
+ 60,
2177
+ 63,
2178
+ 64,
2179
+ 65,
2180
+ 66,
2181
+ 67,
2182
+ 68,
2183
+ 69,
2184
+ 70,
2185
+ 71,
2186
+ 72,
2187
+ 73,
2188
+ 74,
2189
+ 75,
2190
+ 76,
2191
+ 77,
2192
+ 78,
2193
+ 79,
2194
+ 80,
2195
+ 81,
2196
+ 86,
2197
+ 87,
2198
+ 88,
2199
+ 89,
2200
+ 90,
2201
+ 91,
2202
+ 92,
2203
+ 93,
2204
+ 94,
2205
+ 95,
2206
+ 97
2207
+ ],
2208
+ inclusive: !1
2209
+ },
2210
+ href: {
2211
+ rules: [
2212
+ 26,
2213
+ 49,
2214
+ 50,
2215
+ 51,
2216
+ 52,
2217
+ 53,
2218
+ 54,
2219
+ 55,
2220
+ 56,
2221
+ 57,
2222
+ 60,
2223
+ 63,
2224
+ 64,
2225
+ 65,
2226
+ 66,
2227
+ 67,
2228
+ 68,
2229
+ 69,
2230
+ 70,
2231
+ 71,
2232
+ 72,
2233
+ 73,
2234
+ 74,
2235
+ 75,
2236
+ 76,
2237
+ 77,
2238
+ 78,
2239
+ 79,
2240
+ 80,
2241
+ 81,
2242
+ 86,
2243
+ 87,
2244
+ 88,
2245
+ 89,
2246
+ 90,
2247
+ 91,
2248
+ 92,
2249
+ 93,
2250
+ 94,
2251
+ 95,
2252
+ 97
2253
+ ],
2254
+ inclusive: !1
2255
+ },
2256
+ struct: {
2257
+ rules: [
2258
+ 26,
2259
+ 49,
2260
+ 50,
2261
+ 51,
2262
+ 52,
2263
+ 53,
2264
+ 54,
2265
+ 55,
2266
+ 56,
2267
+ 57,
2268
+ 60,
2269
+ 63,
2270
+ 64,
2271
+ 65,
2272
+ 66,
2273
+ 67,
2274
+ 68,
2275
+ 69,
2276
+ 70,
2277
+ 71,
2278
+ 72,
2279
+ 73,
2280
+ 74,
2281
+ 75,
2282
+ 76,
2283
+ 77,
2284
+ 78,
2285
+ 79,
2286
+ 80,
2287
+ 81,
2288
+ 86,
2289
+ 87,
2290
+ 88,
2291
+ 89,
2292
+ 90,
2293
+ 91,
2294
+ 92,
2295
+ 93,
2296
+ 94,
2297
+ 95,
2298
+ 97
2299
+ ],
2300
+ inclusive: !1
2301
+ },
2302
+ generic: {
2303
+ rules: [
2304
+ 26,
2305
+ 49,
2306
+ 50,
2307
+ 51,
2308
+ 52,
2309
+ 53,
2310
+ 54,
2311
+ 55,
2312
+ 56,
2313
+ 57,
2314
+ 58,
2315
+ 59,
2316
+ 60,
2317
+ 63,
2318
+ 64,
2319
+ 65,
2320
+ 66,
2321
+ 67,
2322
+ 68,
2323
+ 69,
2324
+ 70,
2325
+ 71,
2326
+ 72,
2327
+ 73,
2328
+ 74,
2329
+ 75,
2330
+ 76,
2331
+ 77,
2332
+ 78,
2333
+ 79,
2334
+ 80,
2335
+ 81,
2336
+ 86,
2337
+ 87,
2338
+ 88,
2339
+ 89,
2340
+ 90,
2341
+ 91,
2342
+ 92,
2343
+ 93,
2344
+ 94,
2345
+ 95,
2346
+ 97
2347
+ ],
2348
+ inclusive: !1
2349
+ },
2350
+ bqstring: {
2351
+ rules: [
2352
+ 26,
2353
+ 49,
2354
+ 50,
2355
+ 51,
2356
+ 52,
2357
+ 53,
2358
+ 54,
2359
+ 55,
2360
+ 56,
2361
+ 57,
2362
+ 60,
2363
+ 61,
2364
+ 62,
2365
+ 63,
2366
+ 64,
2367
+ 65,
2368
+ 66,
2369
+ 67,
2370
+ 68,
2371
+ 69,
2372
+ 70,
2373
+ 71,
2374
+ 72,
2375
+ 73,
2376
+ 74,
2377
+ 75,
2378
+ 76,
2379
+ 77,
2380
+ 78,
2381
+ 79,
2382
+ 80,
2383
+ 81,
2384
+ 86,
2385
+ 87,
2386
+ 88,
2387
+ 89,
2388
+ 90,
2389
+ 91,
2390
+ 92,
2391
+ 93,
2392
+ 94,
2393
+ 95,
2394
+ 97
2395
+ ],
2396
+ inclusive: !1
2397
+ },
2398
+ string: {
2399
+ rules: [
2400
+ 24,
2401
+ 25,
2402
+ 26,
2403
+ 49,
2404
+ 50,
2405
+ 51,
2406
+ 52,
2407
+ 53,
2408
+ 54,
2409
+ 55,
2410
+ 56,
2411
+ 57,
2412
+ 60,
2413
+ 63,
2414
+ 64,
2415
+ 65,
2416
+ 66,
2417
+ 67,
2418
+ 68,
2419
+ 69,
2420
+ 70,
2421
+ 71,
2422
+ 72,
2423
+ 73,
2424
+ 74,
2425
+ 75,
2426
+ 76,
2427
+ 77,
2428
+ 78,
2429
+ 79,
2430
+ 80,
2431
+ 81,
2432
+ 86,
2433
+ 87,
2434
+ 88,
2435
+ 89,
2436
+ 90,
2437
+ 91,
2438
+ 92,
2439
+ 93,
2440
+ 94,
2441
+ 95,
2442
+ 97
2443
+ ],
2444
+ inclusive: !1
2445
+ },
2446
+ INITIAL: {
2447
+ rules: [
2448
+ 0,
2449
+ 1,
2450
+ 2,
2451
+ 3,
2452
+ 4,
2453
+ 5,
2454
+ 6,
2455
+ 8,
2456
+ 10,
2457
+ 13,
2458
+ 14,
2459
+ 15,
2460
+ 16,
2461
+ 17,
2462
+ 18,
2463
+ 26,
2464
+ 27,
2465
+ 28,
2466
+ 29,
2467
+ 38,
2468
+ 49,
2469
+ 50,
2470
+ 51,
2471
+ 52,
2472
+ 53,
2473
+ 54,
2474
+ 55,
2475
+ 56,
2476
+ 57,
2477
+ 60,
2478
+ 63,
2479
+ 64,
2480
+ 65,
2481
+ 66,
2482
+ 67,
2483
+ 68,
2484
+ 69,
2485
+ 70,
2486
+ 71,
2487
+ 72,
2488
+ 73,
2489
+ 74,
2490
+ 75,
2491
+ 76,
2492
+ 77,
2493
+ 78,
2494
+ 79,
2495
+ 80,
2496
+ 81,
2497
+ 82,
2498
+ 83,
2499
+ 84,
2500
+ 85,
2501
+ 86,
2502
+ 87,
2503
+ 88,
2504
+ 89,
2505
+ 90,
2506
+ 91,
2507
+ 92,
2508
+ 93,
2509
+ 94,
2510
+ 95,
2511
+ 96,
2512
+ 97
2513
+ ],
2514
+ inclusive: !0
2515
+ }
2516
+ }
2517
+ };
2518
+ })();
2519
+ function $() {
2520
+ this.yy = {};
2521
+ }
2522
+ return __name($, "Parser"), $.prototype = oe, oe.Parser = $, new $();
2523
+ })();
2524
+ parser.parser = parser;
2525
+ var classDiagram_default = parser, visibilityValues = [
2526
+ "#",
2527
+ "+",
2528
+ "~",
2529
+ "-",
2530
+ ""
2531
+ ], ClassMember = class {
2532
+ static #e = __name(this, "ClassMember");
2533
+ constructor(e, t) {
2534
+ this.memberType = t, this.visibility = "", this.classifier = "", this.text = "";
2535
+ let n = sanitizeText(e, getConfig2());
2536
+ this.parseMember(n);
2537
+ }
2538
+ getDisplayDetails() {
2539
+ let e = this.visibility + parseGenericTypes(this.id);
2540
+ this.memberType === "method" && (e += `(${parseGenericTypes(this.parameters.trim())})`, this.returnType && (e += " : " + parseGenericTypes(this.returnType))), e = e.trim();
2541
+ let t = this.parseClassifier();
2542
+ return {
2543
+ displayText: e,
2544
+ cssStyle: t
2545
+ };
2546
+ }
2547
+ parseMember(e) {
2548
+ let t = "";
2549
+ if (this.memberType === "method") {
2550
+ let n = /([#+~-])?(.+)\((.*)\)([\s$*])?(.*)([$*])?/.exec(e);
2551
+ if (n) {
2552
+ let e = n[1] ? n[1].trim() : "";
2553
+ if (visibilityValues.includes(e) && (this.visibility = e), this.id = n[2], this.parameters = n[3] ? n[3].trim() : "", t = n[4] ? n[4].trim() : "", this.returnType = n[5] ? n[5].trim() : "", t === "") {
2554
+ let e = this.returnType.substring(this.returnType.length - 1);
2555
+ /[$*]/.exec(e) && (t = e, this.returnType = this.returnType.substring(0, this.returnType.length - 1));
2556
+ }
2557
+ }
2558
+ } else {
2559
+ let n = e.length, r = e.substring(0, 1), i = e.substring(n - 1);
2560
+ visibilityValues.includes(r) && (this.visibility = r), /[$*]/.exec(i) && (t = i), this.id = e.substring(this.visibility === "" ? 0 : 1, t === "" ? n : n - 1);
2561
+ }
2562
+ this.classifier = t, this.id = this.id.startsWith(" ") ? " " + this.id.trim() : this.id.trim(), this.text = `${this.visibility ? "\\" + this.visibility : ""}${parseGenericTypes(this.id)}${this.memberType === "method" ? `(${parseGenericTypes(this.parameters)})${this.returnType ? " : " + parseGenericTypes(this.returnType) : ""}` : ""}`.replaceAll("<", "&lt;").replaceAll(">", "&gt;"), this.text.startsWith("\\&lt;") && (this.text = this.text.replace("\\&lt;", "~"));
2563
+ }
2564
+ parseClassifier() {
2565
+ switch (this.classifier) {
2566
+ case "*": return "font-style:italic;";
2567
+ case "$": return "text-decoration:underline;";
2568
+ default: return "";
2569
+ }
2570
+ }
2571
+ }, MERMAID_DOM_ID_PREFIX = "classId-", classCounter = 0, sanitizeText2 = /* @__PURE__ */ __name((e) => common_default.sanitizeText(e, getConfig2()), "sanitizeText"), ClassDB = class {
2572
+ constructor() {
2573
+ this.relations = [], this.classes = /* @__PURE__ */ new Map(), this.styleClasses = /* @__PURE__ */ new Map(), this.notes = [], this.interfaces = [], this.namespaces = /* @__PURE__ */ new Map(), this.namespaceCounter = 0, this.functions = [], this.lineType = {
2574
+ LINE: 0,
2575
+ DOTTED_LINE: 1
2576
+ }, this.relationType = {
2577
+ AGGREGATION: 0,
2578
+ EXTENSION: 1,
2579
+ COMPOSITION: 2,
2580
+ DEPENDENCY: 3,
2581
+ LOLLIPOP: 4
2582
+ }, this.setupToolTips = /* @__PURE__ */ __name((e) => {
2583
+ let t = select_default(".mermaidTooltip");
2584
+ (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) => {
2585
+ let n = select_default(e.currentTarget);
2586
+ if (n.attr("title") === null) return;
2587
+ let r = this.getBoundingClientRect();
2588
+ 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.top - 14 + document.body.scrollTop + "px"), t.html(t.html().replace(/&lt;br\/&gt;/g, "<br/>")), n.classed("hover", !0);
2589
+ }).on("mouseout", (e) => {
2590
+ t.transition().duration(500).style("opacity", 0), select_default(e.currentTarget).classed("hover", !1);
2591
+ });
2592
+ }, "setupToolTips"), this.direction = "TB", this.setAccTitle = setAccTitle, this.getAccTitle = getAccTitle, this.setAccDescription = setAccDescription, this.getAccDescription = getAccDescription, this.setDiagramTitle = setDiagramTitle, this.getDiagramTitle = getDiagramTitle, this.getConfig = /* @__PURE__ */ __name(() => getConfig2().class, "getConfig"), this.functions.push(this.setupToolTips.bind(this)), this.clear(), this.addRelation = this.addRelation.bind(this), this.addClassesToNamespace = this.addClassesToNamespace.bind(this), this.addNamespace = this.addNamespace.bind(this), this.setCssClass = this.setCssClass.bind(this), this.addMembers = this.addMembers.bind(this), this.addClass = this.addClass.bind(this), this.setClassLabel = this.setClassLabel.bind(this), this.addAnnotation = this.addAnnotation.bind(this), this.addMember = this.addMember.bind(this), this.cleanupLabel = this.cleanupLabel.bind(this), this.addNote = this.addNote.bind(this), this.defineClass = this.defineClass.bind(this), this.setDirection = this.setDirection.bind(this), this.setLink = this.setLink.bind(this), this.bindFunctions = this.bindFunctions.bind(this), this.clear = this.clear.bind(this), this.setTooltip = this.setTooltip.bind(this), this.setClickEvent = this.setClickEvent.bind(this), this.setCssStyle = this.setCssStyle.bind(this);
2593
+ }
2594
+ static #e = __name(this, "ClassDB");
2595
+ splitClassNameAndType(e) {
2596
+ let t = common_default.sanitizeText(e, getConfig2()), n = "", i = t;
2597
+ if (t.indexOf("~") > 0) {
2598
+ let e = t.split("~");
2599
+ i = sanitizeText2(e[0]), n = sanitizeText2(e[1]);
2600
+ }
2601
+ return {
2602
+ className: i,
2603
+ type: n
2604
+ };
2605
+ }
2606
+ setClassLabel(e, t) {
2607
+ let n = common_default.sanitizeText(e, getConfig2());
2608
+ t &&= sanitizeText2(t);
2609
+ let { className: i } = this.splitClassNameAndType(n);
2610
+ this.classes.get(i).label = t, this.classes.get(i).text = `${t}${this.classes.get(i).type ? `<${this.classes.get(i).type}>` : ""}`;
2611
+ }
2612
+ addClass(e) {
2613
+ let t = common_default.sanitizeText(e, getConfig2()), { className: n, type: i } = this.splitClassNameAndType(t);
2614
+ if (this.classes.has(n)) return;
2615
+ let a = common_default.sanitizeText(n, getConfig2());
2616
+ this.classes.set(a, {
2617
+ id: a,
2618
+ type: i,
2619
+ label: a,
2620
+ text: `${a}${i ? `&lt;${i}&gt;` : ""}`,
2621
+ shape: "classBox",
2622
+ cssClasses: "default",
2623
+ methods: [],
2624
+ members: [],
2625
+ annotations: [],
2626
+ styles: [],
2627
+ domId: MERMAID_DOM_ID_PREFIX + a + "-" + classCounter
2628
+ }), classCounter++;
2629
+ }
2630
+ addInterface(e, t) {
2631
+ let n = {
2632
+ id: `interface${this.interfaces.length}`,
2633
+ label: e,
2634
+ classId: t
2635
+ };
2636
+ this.interfaces.push(n);
2637
+ }
2638
+ lookUpDomId(e) {
2639
+ let t = common_default.sanitizeText(e, getConfig2());
2640
+ if (this.classes.has(t)) return this.classes.get(t).domId;
2641
+ throw Error("Class not found: " + t);
2642
+ }
2643
+ clear() {
2644
+ this.relations = [], this.classes = /* @__PURE__ */ new Map(), this.notes = [], this.interfaces = [], this.functions = [], this.functions.push(this.setupToolTips.bind(this)), this.namespaces = /* @__PURE__ */ new Map(), this.namespaceCounter = 0, this.direction = "TB", clear();
2645
+ }
2646
+ getClass(e) {
2647
+ return this.classes.get(e);
2648
+ }
2649
+ getClasses() {
2650
+ return this.classes;
2651
+ }
2652
+ getRelations() {
2653
+ return this.relations;
2654
+ }
2655
+ getNotes() {
2656
+ return this.notes;
2657
+ }
2658
+ addRelation(e) {
2659
+ log.debug("Adding relation: " + JSON.stringify(e));
2660
+ let n = [
2661
+ this.relationType.LOLLIPOP,
2662
+ this.relationType.AGGREGATION,
2663
+ this.relationType.COMPOSITION,
2664
+ this.relationType.DEPENDENCY,
2665
+ this.relationType.EXTENSION
2666
+ ];
2667
+ e.relation.type1 === this.relationType.LOLLIPOP && !n.includes(e.relation.type2) ? (this.addClass(e.id2), this.addInterface(e.id1, e.id2), e.id1 = `interface${this.interfaces.length - 1}`) : e.relation.type2 === this.relationType.LOLLIPOP && !n.includes(e.relation.type1) ? (this.addClass(e.id1), this.addInterface(e.id2, e.id1), e.id2 = `interface${this.interfaces.length - 1}`) : (this.addClass(e.id1), this.addClass(e.id2)), e.id1 = this.splitClassNameAndType(e.id1).className, e.id2 = this.splitClassNameAndType(e.id2).className, e.relationTitle1 = common_default.sanitizeText(e.relationTitle1.trim(), getConfig2()), e.relationTitle2 = common_default.sanitizeText(e.relationTitle2.trim(), getConfig2()), this.relations.push(e);
2668
+ }
2669
+ addAnnotation(e, t) {
2670
+ let n = this.splitClassNameAndType(e).className;
2671
+ this.classes.get(n).annotations.push(t);
2672
+ }
2673
+ addMember(e, t) {
2674
+ this.addClass(e);
2675
+ let n = this.splitClassNameAndType(e).className, r = this.classes.get(n);
2676
+ if (typeof t == "string") {
2677
+ let e = t.trim();
2678
+ e.startsWith("<<") && e.endsWith(">>") ? r.annotations.push(sanitizeText2(e.substring(2, e.length - 2))) : e.indexOf(")") > 0 ? r.methods.push(new ClassMember(e, "method")) : e && r.members.push(new ClassMember(e, "attribute"));
2679
+ }
2680
+ }
2681
+ addMembers(e, t) {
2682
+ Array.isArray(t) && (t.reverse(), t.forEach((t) => this.addMember(e, t)));
2683
+ }
2684
+ addNote(e, t) {
2685
+ let n = {
2686
+ id: `note${this.notes.length}`,
2687
+ class: t,
2688
+ text: e
2689
+ };
2690
+ this.notes.push(n);
2691
+ }
2692
+ cleanupLabel(e) {
2693
+ return e.startsWith(":") && (e = e.substring(1)), sanitizeText2(e.trim());
2694
+ }
2695
+ setCssClass(e, t) {
2696
+ e.split(",").forEach((e) => {
2697
+ let n = e;
2698
+ /\d/.exec(e[0]) && (n = MERMAID_DOM_ID_PREFIX + n);
2699
+ let r = this.classes.get(n);
2700
+ r && (r.cssClasses += " " + t);
2701
+ });
2702
+ }
2703
+ defineClass(e, t) {
2704
+ for (let n of e) {
2705
+ let e = this.styleClasses.get(n);
2706
+ e === void 0 && (e = {
2707
+ id: n,
2708
+ styles: [],
2709
+ textStyles: []
2710
+ }, this.styleClasses.set(n, e)), t && t.forEach((t) => {
2711
+ if (/color/.exec(t)) {
2712
+ let n = t.replace("fill", "bgFill");
2713
+ e.textStyles.push(n);
2714
+ }
2715
+ e.styles.push(t);
2716
+ }), this.classes.forEach((e) => {
2717
+ e.cssClasses.includes(n) && e.styles.push(...t.flatMap((e) => e.split(",")));
2718
+ });
2719
+ }
2720
+ }
2721
+ setTooltip(e, t) {
2722
+ e.split(",").forEach((e) => {
2723
+ t !== void 0 && (this.classes.get(e).tooltip = sanitizeText2(t));
2724
+ });
2725
+ }
2726
+ getTooltip(e, t) {
2727
+ return t && this.namespaces.has(t) ? this.namespaces.get(t).classes.get(e).tooltip : this.classes.get(e).tooltip;
2728
+ }
2729
+ setLink(e, t, n) {
2730
+ let r = getConfig2();
2731
+ e.split(",").forEach((e) => {
2732
+ let i = e;
2733
+ /\d/.exec(e[0]) && (i = MERMAID_DOM_ID_PREFIX + i);
2734
+ let a = this.classes.get(i);
2735
+ a && (a.link = utils_default.formatUrl(t, r), r.securityLevel === "sandbox" ? a.linkTarget = "_top" : typeof n == "string" ? a.linkTarget = sanitizeText2(n) : a.linkTarget = "_blank");
2736
+ }), this.setCssClass(e, "clickable");
2737
+ }
2738
+ setClickEvent(e, t, n) {
2739
+ e.split(",").forEach((e) => {
2740
+ this.setClickFunc(e, t, n), this.classes.get(e).haveCallback = !0;
2741
+ }), this.setCssClass(e, "clickable");
2742
+ }
2743
+ setClickFunc(e, t, n) {
2744
+ let i = common_default.sanitizeText(e, getConfig2());
2745
+ if (getConfig2().securityLevel !== "loose" || t === void 0) return;
2746
+ let a = i;
2747
+ if (this.classes.has(a)) {
2748
+ let e = this.lookUpDomId(a), r = [];
2749
+ if (typeof n == "string") {
2750
+ r = n.split(/,(?=(?:(?:[^"]*"){2})*[^"]*$)/);
2751
+ for (let e = 0; e < r.length; e++) {
2752
+ let t = r[e].trim();
2753
+ t.startsWith("\"") && t.endsWith("\"") && (t = t.substr(1, t.length - 2)), r[e] = t;
2754
+ }
2755
+ }
2756
+ r.length === 0 && r.push(e), this.functions.push(() => {
2757
+ let n = document.querySelector(`[id="${e}"]`);
2758
+ n !== null && n.addEventListener("click", () => {
2759
+ utils_default.runFunc(t, ...r);
2760
+ }, !1);
2761
+ });
2762
+ }
2763
+ }
2764
+ bindFunctions(e) {
2765
+ this.functions.forEach((t) => {
2766
+ t(e);
2767
+ });
2768
+ }
2769
+ getDirection() {
2770
+ return this.direction;
2771
+ }
2772
+ setDirection(e) {
2773
+ this.direction = e;
2774
+ }
2775
+ addNamespace(e) {
2776
+ this.namespaces.has(e) || (this.namespaces.set(e, {
2777
+ id: e,
2778
+ classes: /* @__PURE__ */ new Map(),
2779
+ children: {},
2780
+ domId: MERMAID_DOM_ID_PREFIX + e + "-" + this.namespaceCounter
2781
+ }), this.namespaceCounter++);
2782
+ }
2783
+ getNamespace(e) {
2784
+ return this.namespaces.get(e);
2785
+ }
2786
+ getNamespaces() {
2787
+ return this.namespaces;
2788
+ }
2789
+ addClassesToNamespace(e, t) {
2790
+ if (this.namespaces.has(e)) for (let n of t) {
2791
+ let { className: t } = this.splitClassNameAndType(n);
2792
+ this.classes.get(t).parent = e, this.namespaces.get(e).classes.set(t, this.classes.get(t));
2793
+ }
2794
+ }
2795
+ setCssStyle(e, t) {
2796
+ let n = this.classes.get(e);
2797
+ if (!(!t || !n)) for (let e of t) e.includes(",") ? n.styles.push(...e.split(",")) : n.styles.push(e);
2798
+ }
2799
+ getArrowMarker(e) {
2800
+ let t;
2801
+ switch (e) {
2802
+ case 0:
2803
+ t = "aggregation";
2804
+ break;
2805
+ case 1:
2806
+ t = "extension";
2807
+ break;
2808
+ case 2:
2809
+ t = "composition";
2810
+ break;
2811
+ case 3:
2812
+ t = "dependency";
2813
+ break;
2814
+ case 4:
2815
+ t = "lollipop";
2816
+ break;
2817
+ default: t = "none";
2818
+ }
2819
+ return t;
2820
+ }
2821
+ getData() {
2822
+ let e = [], t = [], n = getConfig2();
2823
+ for (let t of this.namespaces.keys()) {
2824
+ let r = this.namespaces.get(t);
2825
+ if (r) {
2826
+ let t = {
2827
+ id: r.id,
2828
+ label: r.id,
2829
+ isGroup: !0,
2830
+ padding: n.class.padding ?? 16,
2831
+ shape: "rect",
2832
+ cssStyles: ["fill: none", "stroke: black"],
2833
+ look: n.look
2834
+ };
2835
+ e.push(t);
2836
+ }
2837
+ }
2838
+ for (let t of this.classes.keys()) {
2839
+ let r = this.classes.get(t);
2840
+ if (r) {
2841
+ let t = r;
2842
+ t.parentId = r.parent, t.look = n.look, e.push(t);
2843
+ }
2844
+ }
2845
+ let r = 0;
2846
+ for (let i of this.notes) {
2847
+ r++;
2848
+ let a = {
2849
+ id: i.id,
2850
+ label: i.text,
2851
+ isGroup: !1,
2852
+ shape: "note",
2853
+ padding: n.class.padding ?? 6,
2854
+ cssStyles: [
2855
+ "text-align: left",
2856
+ "white-space: nowrap",
2857
+ `fill: ${n.themeVariables.noteBkgColor}`,
2858
+ `stroke: ${n.themeVariables.noteBorderColor}`
2859
+ ],
2860
+ look: n.look
2861
+ };
2862
+ e.push(a);
2863
+ let o = this.classes.get(i.class)?.id ?? "";
2864
+ if (o) {
2865
+ let e = {
2866
+ id: `edgeNote${r}`,
2867
+ start: i.id,
2868
+ end: o,
2869
+ type: "normal",
2870
+ thickness: "normal",
2871
+ classes: "relation",
2872
+ arrowTypeStart: "none",
2873
+ arrowTypeEnd: "none",
2874
+ arrowheadStyle: "",
2875
+ labelStyle: [""],
2876
+ style: ["fill: none"],
2877
+ pattern: "dotted",
2878
+ look: n.look
2879
+ };
2880
+ t.push(e);
2881
+ }
2882
+ }
2883
+ for (let t of this.interfaces) {
2884
+ let r = {
2885
+ id: t.id,
2886
+ label: t.label,
2887
+ isGroup: !1,
2888
+ shape: "rect",
2889
+ cssStyles: ["opacity: 0;"],
2890
+ look: n.look
2891
+ };
2892
+ e.push(r);
2893
+ }
2894
+ r = 0;
2895
+ for (let e of this.relations) {
2896
+ r++;
2897
+ let i = {
2898
+ id: getEdgeId(e.id1, e.id2, {
2899
+ prefix: "id",
2900
+ counter: r
2901
+ }),
2902
+ start: e.id1,
2903
+ end: e.id2,
2904
+ type: "normal",
2905
+ label: e.title,
2906
+ labelpos: "c",
2907
+ thickness: "normal",
2908
+ classes: "relation",
2909
+ arrowTypeStart: this.getArrowMarker(e.relation.type1),
2910
+ arrowTypeEnd: this.getArrowMarker(e.relation.type2),
2911
+ startLabelRight: e.relationTitle1 === "none" ? "" : e.relationTitle1,
2912
+ endLabelLeft: e.relationTitle2 === "none" ? "" : e.relationTitle2,
2913
+ arrowheadStyle: "",
2914
+ labelStyle: ["display: inline-block"],
2915
+ style: e.style || "",
2916
+ pattern: e.relation.lineType == 1 ? "dashed" : "solid",
2917
+ look: n.look
2918
+ };
2919
+ t.push(i);
2920
+ }
2921
+ return {
2922
+ nodes: e,
2923
+ edges: t,
2924
+ other: {},
2925
+ config: n,
2926
+ direction: this.getDirection()
2927
+ };
2928
+ }
2929
+ }, styles_default = /* @__PURE__ */ __name((e) => `g.classGroup text {
2930
+ fill: ${e.nodeBorder || e.classText};
2931
+ stroke: none;
2932
+ font-family: ${e.fontFamily};
2933
+ font-size: 10px;
2934
+
2935
+ .title {
2936
+ font-weight: bolder;
2937
+ }
2938
+
2939
+ }
2940
+
2941
+ .nodeLabel, .edgeLabel {
2942
+ color: ${e.classText};
2943
+ }
2944
+ .edgeLabel .label rect {
2945
+ fill: ${e.mainBkg};
2946
+ }
2947
+ .label text {
2948
+ fill: ${e.classText};
2949
+ }
2950
+
2951
+ .labelBkg {
2952
+ background: ${e.mainBkg};
2953
+ }
2954
+ .edgeLabel .label span {
2955
+ background: ${e.mainBkg};
2956
+ }
2957
+
2958
+ .classTitle {
2959
+ font-weight: bolder;
2960
+ }
2961
+ .node rect,
2962
+ .node circle,
2963
+ .node ellipse,
2964
+ .node polygon,
2965
+ .node path {
2966
+ fill: ${e.mainBkg};
2967
+ stroke: ${e.nodeBorder};
2968
+ stroke-width: 1px;
2969
+ }
2970
+
2971
+
2972
+ .divider {
2973
+ stroke: ${e.nodeBorder};
2974
+ stroke-width: 1;
2975
+ }
2976
+
2977
+ g.clickable {
2978
+ cursor: pointer;
2979
+ }
2980
+
2981
+ g.classGroup rect {
2982
+ fill: ${e.mainBkg};
2983
+ stroke: ${e.nodeBorder};
2984
+ }
2985
+
2986
+ g.classGroup line {
2987
+ stroke: ${e.nodeBorder};
2988
+ stroke-width: 1;
2989
+ }
2990
+
2991
+ .classLabel .box {
2992
+ stroke: none;
2993
+ stroke-width: 0;
2994
+ fill: ${e.mainBkg};
2995
+ opacity: 0.5;
2996
+ }
2997
+
2998
+ .classLabel .label {
2999
+ fill: ${e.nodeBorder};
3000
+ font-size: 10px;
3001
+ }
3002
+
3003
+ .relation {
3004
+ stroke: ${e.lineColor};
3005
+ stroke-width: 1;
3006
+ fill: none;
3007
+ }
3008
+
3009
+ .dashed-line{
3010
+ stroke-dasharray: 3;
3011
+ }
3012
+
3013
+ .dotted-line{
3014
+ stroke-dasharray: 1 2;
3015
+ }
3016
+
3017
+ #compositionStart, .composition {
3018
+ fill: ${e.lineColor} !important;
3019
+ stroke: ${e.lineColor} !important;
3020
+ stroke-width: 1;
3021
+ }
3022
+
3023
+ #compositionEnd, .composition {
3024
+ fill: ${e.lineColor} !important;
3025
+ stroke: ${e.lineColor} !important;
3026
+ stroke-width: 1;
3027
+ }
3028
+
3029
+ #dependencyStart, .dependency {
3030
+ fill: ${e.lineColor} !important;
3031
+ stroke: ${e.lineColor} !important;
3032
+ stroke-width: 1;
3033
+ }
3034
+
3035
+ #dependencyStart, .dependency {
3036
+ fill: ${e.lineColor} !important;
3037
+ stroke: ${e.lineColor} !important;
3038
+ stroke-width: 1;
3039
+ }
3040
+
3041
+ #extensionStart, .extension {
3042
+ fill: transparent !important;
3043
+ stroke: ${e.lineColor} !important;
3044
+ stroke-width: 1;
3045
+ }
3046
+
3047
+ #extensionEnd, .extension {
3048
+ fill: transparent !important;
3049
+ stroke: ${e.lineColor} !important;
3050
+ stroke-width: 1;
3051
+ }
3052
+
3053
+ #aggregationStart, .aggregation {
3054
+ fill: transparent !important;
3055
+ stroke: ${e.lineColor} !important;
3056
+ stroke-width: 1;
3057
+ }
3058
+
3059
+ #aggregationEnd, .aggregation {
3060
+ fill: transparent !important;
3061
+ stroke: ${e.lineColor} !important;
3062
+ stroke-width: 1;
3063
+ }
3064
+
3065
+ #lollipopStart, .lollipop {
3066
+ fill: ${e.mainBkg} !important;
3067
+ stroke: ${e.lineColor} !important;
3068
+ stroke-width: 1;
3069
+ }
3070
+
3071
+ #lollipopEnd, .lollipop {
3072
+ fill: ${e.mainBkg} !important;
3073
+ stroke: ${e.lineColor} !important;
3074
+ stroke-width: 1;
3075
+ }
3076
+
3077
+ .edgeTerminals {
3078
+ font-size: 11px;
3079
+ line-height: initial;
3080
+ }
3081
+
3082
+ .classTitleText {
3083
+ text-anchor: middle;
3084
+ font-size: 18px;
3085
+ fill: ${e.textColor};
3086
+ }
3087
+ ${getIconStyles()}
3088
+ `, "getStyles"), classRenderer_v3_unified_default = {
3089
+ getClasses: /* @__PURE__ */ __name(function(e, t) {
3090
+ return t.db.getClasses();
3091
+ }, "getClasses"),
3092
+ draw: /* @__PURE__ */ __name(async function(e, n, r, i) {
3093
+ log.info("REF0:"), log.info("Drawing class diagram (v3)", n);
3094
+ let { securityLevel: a, state: s, layout: c } = getConfig2(), l = i.db.getData(), u = getDiagramElement(n, a);
3095
+ l.type = i.type, l.layoutAlgorithm = getRegisteredLayoutAlgorithm(c), l.nodeSpacing = s?.nodeSpacing || 50, l.rankSpacing = s?.rankSpacing || 50, l.markers = [
3096
+ "aggregation",
3097
+ "extension",
3098
+ "composition",
3099
+ "dependency",
3100
+ "lollipop"
3101
+ ], l.diagramId = n, await render(l, u), utils_default.insertTitle(u, "classDiagramTitleText", s?.titleTopMargin ?? 25, i.db.getDiagramTitle()), setupViewPortForSVG(u, 8, "classDiagram", s?.useMaxWidth ?? !0);
3102
+ }, "draw"),
3103
+ getDir: /* @__PURE__ */ __name((e, t = "TB") => {
3104
+ if (!e.doc) return t;
3105
+ let n = t;
3106
+ for (let t of e.doc) t.stmt === "dir" && (n = t.value);
3107
+ return n;
3108
+ }, "getDir")
3109
+ };
3110
+ export { ClassDB, classDiagram_default, classRenderer_v3_unified_default, styles_default };