@loopstack/loopstack-studio 0.20.2 → 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,1599 @@
1
+ import { __export, __name, log } from "./chunk-AGHRB4JF.js";
2
+ import rgba_default from "../../../../khroma/dist/methods/rgba.js";
3
+ import channel_default from "../../../../khroma/dist/methods/channel.js";
4
+ import { clear, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, setAccDescription, setAccTitle, setDiagramTitle } from "./chunk-ABZYJK2D.js";
5
+ import select_default from "../../../../d3-selection/src/select.js";
6
+ import "../../../../d3/src/index.js";
7
+ import "./chunk-HN2XXSSU.js";
8
+ import "./chunk-CVBHYZKI.js";
9
+ import "./chunk-ATLVNIR6.js";
10
+ import { getEdgeId, utils_default } from "./chunk-S3R3BYOJ.js";
11
+ import "./chunk-JA3XYJ7Z.js";
12
+ import "./chunk-JZLCHNYA.js";
13
+ import "./chunk-QXUST7PY.js";
14
+ import { getRegisteredLayoutAlgorithm, render } from "./chunk-N4CR4FBY.js";
15
+ import { getDiagramElement } from "./chunk-55IACEB6.js";
16
+ import { setupViewPortForSVG } from "./chunk-QN33PNHL.js";
17
+ var parser = (function() {
18
+ var e = /* @__PURE__ */ __name(function(e, t, n, r) {
19
+ for (n ||= {}, r = e.length; r--; n[e[r]] = t);
20
+ return n;
21
+ }, "o"), n = [
22
+ 6,
23
+ 8,
24
+ 10,
25
+ 22,
26
+ 24,
27
+ 26,
28
+ 28,
29
+ 33,
30
+ 34,
31
+ 35,
32
+ 36,
33
+ 37,
34
+ 40,
35
+ 43,
36
+ 44,
37
+ 50
38
+ ], r = [1, 10], i = [1, 11], a = [1, 12], o = [1, 13], s = [1, 20], c = [1, 21], l = [1, 22], u = [1, 23], d = [1, 24], f = [1, 19], p = [1, 25], m = [1, 26], h = [1, 18], g = [1, 33], _ = [1, 34], v = [1, 35], y = [1, 36], b = [1, 37], x = [
39
+ 6,
40
+ 8,
41
+ 10,
42
+ 13,
43
+ 15,
44
+ 17,
45
+ 20,
46
+ 21,
47
+ 22,
48
+ 24,
49
+ 26,
50
+ 28,
51
+ 33,
52
+ 34,
53
+ 35,
54
+ 36,
55
+ 37,
56
+ 40,
57
+ 43,
58
+ 44,
59
+ 50,
60
+ 63,
61
+ 64,
62
+ 65,
63
+ 66,
64
+ 67
65
+ ], S = [1, 42], C = [1, 43], w = [1, 52], T = [
66
+ 40,
67
+ 50,
68
+ 68,
69
+ 69
70
+ ], E = [1, 63], D = [1, 61], O = [1, 58], k = [1, 62], A = [1, 64], j = [
71
+ 6,
72
+ 8,
73
+ 10,
74
+ 13,
75
+ 17,
76
+ 22,
77
+ 24,
78
+ 26,
79
+ 28,
80
+ 33,
81
+ 34,
82
+ 35,
83
+ 36,
84
+ 37,
85
+ 40,
86
+ 41,
87
+ 42,
88
+ 43,
89
+ 44,
90
+ 48,
91
+ 49,
92
+ 50,
93
+ 63,
94
+ 64,
95
+ 65,
96
+ 66,
97
+ 67
98
+ ], M = [
99
+ 63,
100
+ 64,
101
+ 65,
102
+ 66,
103
+ 67
104
+ ], N = [1, 81], P = [1, 80], F = [1, 78], I = [1, 79], L = [
105
+ 6,
106
+ 10,
107
+ 42,
108
+ 47
109
+ ], R = [
110
+ 6,
111
+ 10,
112
+ 13,
113
+ 41,
114
+ 42,
115
+ 47,
116
+ 48,
117
+ 49
118
+ ], z = [1, 89], B = [1, 88], V = [1, 87], H = [19, 56], U = [1, 98], W = [1, 97], G = [
119
+ 19,
120
+ 56,
121
+ 58,
122
+ 60
123
+ ], K = {
124
+ trace: /* @__PURE__ */ __name(function() {}, "trace"),
125
+ yy: {},
126
+ symbols_: {
127
+ error: 2,
128
+ start: 3,
129
+ ER_DIAGRAM: 4,
130
+ document: 5,
131
+ EOF: 6,
132
+ line: 7,
133
+ SPACE: 8,
134
+ statement: 9,
135
+ NEWLINE: 10,
136
+ entityName: 11,
137
+ relSpec: 12,
138
+ COLON: 13,
139
+ role: 14,
140
+ STYLE_SEPARATOR: 15,
141
+ idList: 16,
142
+ BLOCK_START: 17,
143
+ attributes: 18,
144
+ BLOCK_STOP: 19,
145
+ SQS: 20,
146
+ SQE: 21,
147
+ title: 22,
148
+ title_value: 23,
149
+ acc_title: 24,
150
+ acc_title_value: 25,
151
+ acc_descr: 26,
152
+ acc_descr_value: 27,
153
+ acc_descr_multiline_value: 28,
154
+ direction: 29,
155
+ classDefStatement: 30,
156
+ classStatement: 31,
157
+ styleStatement: 32,
158
+ direction_tb: 33,
159
+ direction_bt: 34,
160
+ direction_rl: 35,
161
+ direction_lr: 36,
162
+ CLASSDEF: 37,
163
+ stylesOpt: 38,
164
+ separator: 39,
165
+ UNICODE_TEXT: 40,
166
+ STYLE_TEXT: 41,
167
+ COMMA: 42,
168
+ CLASS: 43,
169
+ STYLE: 44,
170
+ style: 45,
171
+ styleComponent: 46,
172
+ SEMI: 47,
173
+ NUM: 48,
174
+ BRKT: 49,
175
+ ENTITY_NAME: 50,
176
+ attribute: 51,
177
+ attributeType: 52,
178
+ attributeName: 53,
179
+ attributeKeyTypeList: 54,
180
+ attributeComment: 55,
181
+ ATTRIBUTE_WORD: 56,
182
+ attributeKeyType: 57,
183
+ ",": 58,
184
+ ATTRIBUTE_KEY: 59,
185
+ COMMENT: 60,
186
+ cardinality: 61,
187
+ relType: 62,
188
+ ZERO_OR_ONE: 63,
189
+ ZERO_OR_MORE: 64,
190
+ ONE_OR_MORE: 65,
191
+ ONLY_ONE: 66,
192
+ MD_PARENT: 67,
193
+ NON_IDENTIFYING: 68,
194
+ IDENTIFYING: 69,
195
+ WORD: 70,
196
+ $accept: 0,
197
+ $end: 1
198
+ },
199
+ terminals_: {
200
+ 2: "error",
201
+ 4: "ER_DIAGRAM",
202
+ 6: "EOF",
203
+ 8: "SPACE",
204
+ 10: "NEWLINE",
205
+ 13: "COLON",
206
+ 15: "STYLE_SEPARATOR",
207
+ 17: "BLOCK_START",
208
+ 19: "BLOCK_STOP",
209
+ 20: "SQS",
210
+ 21: "SQE",
211
+ 22: "title",
212
+ 23: "title_value",
213
+ 24: "acc_title",
214
+ 25: "acc_title_value",
215
+ 26: "acc_descr",
216
+ 27: "acc_descr_value",
217
+ 28: "acc_descr_multiline_value",
218
+ 33: "direction_tb",
219
+ 34: "direction_bt",
220
+ 35: "direction_rl",
221
+ 36: "direction_lr",
222
+ 37: "CLASSDEF",
223
+ 40: "UNICODE_TEXT",
224
+ 41: "STYLE_TEXT",
225
+ 42: "COMMA",
226
+ 43: "CLASS",
227
+ 44: "STYLE",
228
+ 47: "SEMI",
229
+ 48: "NUM",
230
+ 49: "BRKT",
231
+ 50: "ENTITY_NAME",
232
+ 56: "ATTRIBUTE_WORD",
233
+ 58: ",",
234
+ 59: "ATTRIBUTE_KEY",
235
+ 60: "COMMENT",
236
+ 63: "ZERO_OR_ONE",
237
+ 64: "ZERO_OR_MORE",
238
+ 65: "ONE_OR_MORE",
239
+ 66: "ONLY_ONE",
240
+ 67: "MD_PARENT",
241
+ 68: "NON_IDENTIFYING",
242
+ 69: "IDENTIFYING",
243
+ 70: "WORD"
244
+ },
245
+ productions_: [
246
+ 0,
247
+ [3, 3],
248
+ [5, 0],
249
+ [5, 2],
250
+ [7, 2],
251
+ [7, 1],
252
+ [7, 1],
253
+ [7, 1],
254
+ [9, 5],
255
+ [9, 9],
256
+ [9, 7],
257
+ [9, 7],
258
+ [9, 4],
259
+ [9, 6],
260
+ [9, 3],
261
+ [9, 5],
262
+ [9, 1],
263
+ [9, 3],
264
+ [9, 7],
265
+ [9, 9],
266
+ [9, 6],
267
+ [9, 8],
268
+ [9, 4],
269
+ [9, 6],
270
+ [9, 2],
271
+ [9, 2],
272
+ [9, 2],
273
+ [9, 1],
274
+ [9, 1],
275
+ [9, 1],
276
+ [9, 1],
277
+ [9, 1],
278
+ [29, 1],
279
+ [29, 1],
280
+ [29, 1],
281
+ [29, 1],
282
+ [30, 4],
283
+ [16, 1],
284
+ [16, 1],
285
+ [16, 3],
286
+ [16, 3],
287
+ [31, 3],
288
+ [32, 4],
289
+ [38, 1],
290
+ [38, 3],
291
+ [45, 1],
292
+ [45, 2],
293
+ [39, 1],
294
+ [39, 1],
295
+ [39, 1],
296
+ [46, 1],
297
+ [46, 1],
298
+ [46, 1],
299
+ [46, 1],
300
+ [11, 1],
301
+ [11, 1],
302
+ [18, 1],
303
+ [18, 2],
304
+ [51, 2],
305
+ [51, 3],
306
+ [51, 3],
307
+ [51, 4],
308
+ [52, 1],
309
+ [53, 1],
310
+ [54, 1],
311
+ [54, 3],
312
+ [57, 1],
313
+ [55, 1],
314
+ [12, 3],
315
+ [61, 1],
316
+ [61, 1],
317
+ [61, 1],
318
+ [61, 1],
319
+ [61, 1],
320
+ [62, 1],
321
+ [62, 1],
322
+ [14, 1],
323
+ [14, 1],
324
+ [14, 1]
325
+ ],
326
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
327
+ var s = a.length - 1;
328
+ switch (i) {
329
+ case 1: break;
330
+ case 2:
331
+ this.$ = [];
332
+ break;
333
+ case 3:
334
+ a[s - 1].push(a[s]), this.$ = a[s - 1];
335
+ break;
336
+ case 4:
337
+ case 5:
338
+ this.$ = a[s];
339
+ break;
340
+ case 6:
341
+ case 7:
342
+ this.$ = [];
343
+ break;
344
+ case 8:
345
+ r.addEntity(a[s - 4]), r.addEntity(a[s - 2]), r.addRelationship(a[s - 4], a[s], a[s - 2], a[s - 3]);
346
+ break;
347
+ case 9:
348
+ r.addEntity(a[s - 8]), r.addEntity(a[s - 4]), r.addRelationship(a[s - 8], a[s], a[s - 4], a[s - 5]), r.setClass([a[s - 8]], a[s - 6]), r.setClass([a[s - 4]], a[s - 2]);
349
+ break;
350
+ case 10:
351
+ r.addEntity(a[s - 6]), r.addEntity(a[s - 2]), r.addRelationship(a[s - 6], a[s], a[s - 2], a[s - 3]), r.setClass([a[s - 6]], a[s - 4]);
352
+ break;
353
+ case 11:
354
+ r.addEntity(a[s - 6]), r.addEntity(a[s - 4]), r.addRelationship(a[s - 6], a[s], a[s - 4], a[s - 5]), r.setClass([a[s - 4]], a[s - 2]);
355
+ break;
356
+ case 12:
357
+ r.addEntity(a[s - 3]), r.addAttributes(a[s - 3], a[s - 1]);
358
+ break;
359
+ case 13:
360
+ r.addEntity(a[s - 5]), r.addAttributes(a[s - 5], a[s - 1]), r.setClass([a[s - 5]], a[s - 3]);
361
+ break;
362
+ case 14:
363
+ r.addEntity(a[s - 2]);
364
+ break;
365
+ case 15:
366
+ r.addEntity(a[s - 4]), r.setClass([a[s - 4]], a[s - 2]);
367
+ break;
368
+ case 16:
369
+ r.addEntity(a[s]);
370
+ break;
371
+ case 17:
372
+ r.addEntity(a[s - 2]), r.setClass([a[s - 2]], a[s]);
373
+ break;
374
+ case 18:
375
+ r.addEntity(a[s - 6], a[s - 4]), r.addAttributes(a[s - 6], a[s - 1]);
376
+ break;
377
+ case 19:
378
+ r.addEntity(a[s - 8], a[s - 6]), r.addAttributes(a[s - 8], a[s - 1]), r.setClass([a[s - 8]], a[s - 3]);
379
+ break;
380
+ case 20:
381
+ r.addEntity(a[s - 5], a[s - 3]);
382
+ break;
383
+ case 21:
384
+ r.addEntity(a[s - 7], a[s - 5]), r.setClass([a[s - 7]], a[s - 2]);
385
+ break;
386
+ case 22:
387
+ r.addEntity(a[s - 3], a[s - 1]);
388
+ break;
389
+ case 23:
390
+ r.addEntity(a[s - 5], a[s - 3]), r.setClass([a[s - 5]], a[s]);
391
+ break;
392
+ case 24:
393
+ case 25:
394
+ this.$ = a[s].trim(), r.setAccTitle(this.$);
395
+ break;
396
+ case 26:
397
+ case 27:
398
+ this.$ = a[s].trim(), r.setAccDescription(this.$);
399
+ break;
400
+ case 32:
401
+ r.setDirection("TB");
402
+ break;
403
+ case 33:
404
+ r.setDirection("BT");
405
+ break;
406
+ case 34:
407
+ r.setDirection("RL");
408
+ break;
409
+ case 35:
410
+ r.setDirection("LR");
411
+ break;
412
+ case 36:
413
+ this.$ = a[s - 3], r.addClass(a[s - 2], a[s - 1]);
414
+ break;
415
+ case 37:
416
+ case 38:
417
+ case 56:
418
+ case 64:
419
+ this.$ = [a[s]];
420
+ break;
421
+ case 39:
422
+ case 40:
423
+ this.$ = a[s - 2].concat([a[s]]);
424
+ break;
425
+ case 41:
426
+ this.$ = a[s - 2], r.setClass(a[s - 1], a[s]);
427
+ break;
428
+ case 42:
429
+ this.$ = a[s - 3], r.addCssStyles(a[s - 2], a[s - 1]);
430
+ break;
431
+ case 43:
432
+ this.$ = [a[s]];
433
+ break;
434
+ case 44:
435
+ a[s - 2].push(a[s]), this.$ = a[s - 2];
436
+ break;
437
+ case 46:
438
+ this.$ = a[s - 1] + a[s];
439
+ break;
440
+ case 54:
441
+ case 76:
442
+ case 77:
443
+ this.$ = a[s].replace(/"/g, "");
444
+ break;
445
+ case 55:
446
+ case 78:
447
+ this.$ = a[s];
448
+ break;
449
+ case 57:
450
+ a[s].push(a[s - 1]), this.$ = a[s];
451
+ break;
452
+ case 58:
453
+ this.$ = {
454
+ type: a[s - 1],
455
+ name: a[s]
456
+ };
457
+ break;
458
+ case 59:
459
+ this.$ = {
460
+ type: a[s - 2],
461
+ name: a[s - 1],
462
+ keys: a[s]
463
+ };
464
+ break;
465
+ case 60:
466
+ this.$ = {
467
+ type: a[s - 2],
468
+ name: a[s - 1],
469
+ comment: a[s]
470
+ };
471
+ break;
472
+ case 61:
473
+ this.$ = {
474
+ type: a[s - 3],
475
+ name: a[s - 2],
476
+ keys: a[s - 1],
477
+ comment: a[s]
478
+ };
479
+ break;
480
+ case 62:
481
+ case 63:
482
+ case 66:
483
+ this.$ = a[s];
484
+ break;
485
+ case 65:
486
+ a[s - 2].push(a[s]), this.$ = a[s - 2];
487
+ break;
488
+ case 67:
489
+ this.$ = a[s].replace(/"/g, "");
490
+ break;
491
+ case 68:
492
+ this.$ = {
493
+ cardA: a[s],
494
+ relType: a[s - 1],
495
+ cardB: a[s - 2]
496
+ };
497
+ break;
498
+ case 69:
499
+ this.$ = r.Cardinality.ZERO_OR_ONE;
500
+ break;
501
+ case 70:
502
+ this.$ = r.Cardinality.ZERO_OR_MORE;
503
+ break;
504
+ case 71:
505
+ this.$ = r.Cardinality.ONE_OR_MORE;
506
+ break;
507
+ case 72:
508
+ this.$ = r.Cardinality.ONLY_ONE;
509
+ break;
510
+ case 73:
511
+ this.$ = r.Cardinality.MD_PARENT;
512
+ break;
513
+ case 74:
514
+ this.$ = r.Identification.NON_IDENTIFYING;
515
+ break;
516
+ case 75:
517
+ this.$ = r.Identification.IDENTIFYING;
518
+ break;
519
+ }
520
+ }, "anonymous"),
521
+ table: [
522
+ {
523
+ 3: 1,
524
+ 4: [1, 2]
525
+ },
526
+ { 1: [3] },
527
+ e(n, [2, 2], { 5: 3 }),
528
+ {
529
+ 6: [1, 4],
530
+ 7: 5,
531
+ 8: [1, 6],
532
+ 9: 7,
533
+ 10: [1, 8],
534
+ 11: 9,
535
+ 22: r,
536
+ 24: i,
537
+ 26: a,
538
+ 28: o,
539
+ 29: 14,
540
+ 30: 15,
541
+ 31: 16,
542
+ 32: 17,
543
+ 33: s,
544
+ 34: c,
545
+ 35: l,
546
+ 36: u,
547
+ 37: d,
548
+ 40: f,
549
+ 43: p,
550
+ 44: m,
551
+ 50: h
552
+ },
553
+ e(n, [2, 7], { 1: [2, 1] }),
554
+ e(n, [2, 3]),
555
+ {
556
+ 9: 27,
557
+ 11: 9,
558
+ 22: r,
559
+ 24: i,
560
+ 26: a,
561
+ 28: o,
562
+ 29: 14,
563
+ 30: 15,
564
+ 31: 16,
565
+ 32: 17,
566
+ 33: s,
567
+ 34: c,
568
+ 35: l,
569
+ 36: u,
570
+ 37: d,
571
+ 40: f,
572
+ 43: p,
573
+ 44: m,
574
+ 50: h
575
+ },
576
+ e(n, [2, 5]),
577
+ e(n, [2, 6]),
578
+ e(n, [2, 16], {
579
+ 12: 28,
580
+ 61: 32,
581
+ 15: [1, 29],
582
+ 17: [1, 30],
583
+ 20: [1, 31],
584
+ 63: g,
585
+ 64: _,
586
+ 65: v,
587
+ 66: y,
588
+ 67: b
589
+ }),
590
+ { 23: [1, 38] },
591
+ { 25: [1, 39] },
592
+ { 27: [1, 40] },
593
+ e(n, [2, 27]),
594
+ e(n, [2, 28]),
595
+ e(n, [2, 29]),
596
+ e(n, [2, 30]),
597
+ e(n, [2, 31]),
598
+ e(x, [2, 54]),
599
+ e(x, [2, 55]),
600
+ e(n, [2, 32]),
601
+ e(n, [2, 33]),
602
+ e(n, [2, 34]),
603
+ e(n, [2, 35]),
604
+ {
605
+ 16: 41,
606
+ 40: S,
607
+ 41: C
608
+ },
609
+ {
610
+ 16: 44,
611
+ 40: S,
612
+ 41: C
613
+ },
614
+ {
615
+ 16: 45,
616
+ 40: S,
617
+ 41: C
618
+ },
619
+ e(n, [2, 4]),
620
+ {
621
+ 11: 46,
622
+ 40: f,
623
+ 50: h
624
+ },
625
+ {
626
+ 16: 47,
627
+ 40: S,
628
+ 41: C
629
+ },
630
+ {
631
+ 18: 48,
632
+ 19: [1, 49],
633
+ 51: 50,
634
+ 52: 51,
635
+ 56: w
636
+ },
637
+ {
638
+ 11: 53,
639
+ 40: f,
640
+ 50: h
641
+ },
642
+ {
643
+ 62: 54,
644
+ 68: [1, 55],
645
+ 69: [1, 56]
646
+ },
647
+ e(T, [2, 69]),
648
+ e(T, [2, 70]),
649
+ e(T, [2, 71]),
650
+ e(T, [2, 72]),
651
+ e(T, [2, 73]),
652
+ e(n, [2, 24]),
653
+ e(n, [2, 25]),
654
+ e(n, [2, 26]),
655
+ {
656
+ 13: E,
657
+ 38: 57,
658
+ 41: D,
659
+ 42: O,
660
+ 45: 59,
661
+ 46: 60,
662
+ 48: k,
663
+ 49: A
664
+ },
665
+ e(j, [2, 37]),
666
+ e(j, [2, 38]),
667
+ {
668
+ 16: 65,
669
+ 40: S,
670
+ 41: C,
671
+ 42: O
672
+ },
673
+ {
674
+ 13: E,
675
+ 38: 66,
676
+ 41: D,
677
+ 42: O,
678
+ 45: 59,
679
+ 46: 60,
680
+ 48: k,
681
+ 49: A
682
+ },
683
+ {
684
+ 13: [1, 67],
685
+ 15: [1, 68]
686
+ },
687
+ e(n, [2, 17], {
688
+ 61: 32,
689
+ 12: 69,
690
+ 17: [1, 70],
691
+ 42: O,
692
+ 63: g,
693
+ 64: _,
694
+ 65: v,
695
+ 66: y,
696
+ 67: b
697
+ }),
698
+ { 19: [1, 71] },
699
+ e(n, [2, 14]),
700
+ {
701
+ 18: 72,
702
+ 19: [2, 56],
703
+ 51: 50,
704
+ 52: 51,
705
+ 56: w
706
+ },
707
+ {
708
+ 53: 73,
709
+ 56: [1, 74]
710
+ },
711
+ { 56: [2, 62] },
712
+ { 21: [1, 75] },
713
+ {
714
+ 61: 76,
715
+ 63: g,
716
+ 64: _,
717
+ 65: v,
718
+ 66: y,
719
+ 67: b
720
+ },
721
+ e(M, [2, 74]),
722
+ e(M, [2, 75]),
723
+ {
724
+ 6: N,
725
+ 10: P,
726
+ 39: 77,
727
+ 42: F,
728
+ 47: I
729
+ },
730
+ {
731
+ 40: [1, 82],
732
+ 41: [1, 83]
733
+ },
734
+ e(L, [2, 43], {
735
+ 46: 84,
736
+ 13: E,
737
+ 41: D,
738
+ 48: k,
739
+ 49: A
740
+ }),
741
+ e(R, [2, 45]),
742
+ e(R, [2, 50]),
743
+ e(R, [2, 51]),
744
+ e(R, [2, 52]),
745
+ e(R, [2, 53]),
746
+ e(n, [2, 41], { 42: O }),
747
+ {
748
+ 6: N,
749
+ 10: P,
750
+ 39: 85,
751
+ 42: F,
752
+ 47: I
753
+ },
754
+ {
755
+ 14: 86,
756
+ 40: z,
757
+ 50: B,
758
+ 70: V
759
+ },
760
+ {
761
+ 16: 90,
762
+ 40: S,
763
+ 41: C
764
+ },
765
+ {
766
+ 11: 91,
767
+ 40: f,
768
+ 50: h
769
+ },
770
+ {
771
+ 18: 92,
772
+ 19: [1, 93],
773
+ 51: 50,
774
+ 52: 51,
775
+ 56: w
776
+ },
777
+ e(n, [2, 12]),
778
+ { 19: [2, 57] },
779
+ e(H, [2, 58], {
780
+ 54: 94,
781
+ 55: 95,
782
+ 57: 96,
783
+ 59: U,
784
+ 60: W
785
+ }),
786
+ e([
787
+ 19,
788
+ 56,
789
+ 59,
790
+ 60
791
+ ], [2, 63]),
792
+ e(n, [2, 22], {
793
+ 15: [1, 100],
794
+ 17: [1, 99]
795
+ }),
796
+ e([40, 50], [2, 68]),
797
+ e(n, [2, 36]),
798
+ {
799
+ 13: E,
800
+ 41: D,
801
+ 45: 101,
802
+ 46: 60,
803
+ 48: k,
804
+ 49: A
805
+ },
806
+ e(n, [2, 47]),
807
+ e(n, [2, 48]),
808
+ e(n, [2, 49]),
809
+ e(j, [2, 39]),
810
+ e(j, [2, 40]),
811
+ e(R, [2, 46]),
812
+ e(n, [2, 42]),
813
+ e(n, [2, 8]),
814
+ e(n, [2, 76]),
815
+ e(n, [2, 77]),
816
+ e(n, [2, 78]),
817
+ {
818
+ 13: [1, 102],
819
+ 42: O
820
+ },
821
+ {
822
+ 13: [1, 104],
823
+ 15: [1, 103]
824
+ },
825
+ { 19: [1, 105] },
826
+ e(n, [2, 15]),
827
+ e(H, [2, 59], {
828
+ 55: 106,
829
+ 58: [1, 107],
830
+ 60: W
831
+ }),
832
+ e(H, [2, 60]),
833
+ e(G, [2, 64]),
834
+ e(H, [2, 67]),
835
+ e(G, [2, 66]),
836
+ {
837
+ 18: 108,
838
+ 19: [1, 109],
839
+ 51: 50,
840
+ 52: 51,
841
+ 56: w
842
+ },
843
+ {
844
+ 16: 110,
845
+ 40: S,
846
+ 41: C
847
+ },
848
+ e(L, [2, 44], {
849
+ 46: 84,
850
+ 13: E,
851
+ 41: D,
852
+ 48: k,
853
+ 49: A
854
+ }),
855
+ {
856
+ 14: 111,
857
+ 40: z,
858
+ 50: B,
859
+ 70: V
860
+ },
861
+ {
862
+ 16: 112,
863
+ 40: S,
864
+ 41: C
865
+ },
866
+ {
867
+ 14: 113,
868
+ 40: z,
869
+ 50: B,
870
+ 70: V
871
+ },
872
+ e(n, [2, 13]),
873
+ e(H, [2, 61]),
874
+ {
875
+ 57: 114,
876
+ 59: U
877
+ },
878
+ { 19: [1, 115] },
879
+ e(n, [2, 20]),
880
+ e(n, [2, 23], {
881
+ 17: [1, 116],
882
+ 42: O
883
+ }),
884
+ e(n, [2, 11]),
885
+ {
886
+ 13: [1, 117],
887
+ 42: O
888
+ },
889
+ e(n, [2, 10]),
890
+ e(G, [2, 65]),
891
+ e(n, [2, 18]),
892
+ {
893
+ 18: 118,
894
+ 19: [1, 119],
895
+ 51: 50,
896
+ 52: 51,
897
+ 56: w
898
+ },
899
+ {
900
+ 14: 120,
901
+ 40: z,
902
+ 50: B,
903
+ 70: V
904
+ },
905
+ { 19: [1, 121] },
906
+ e(n, [2, 21]),
907
+ e(n, [2, 9]),
908
+ e(n, [2, 19])
909
+ ],
910
+ defaultActions: {
911
+ 52: [2, 62],
912
+ 72: [2, 57]
913
+ },
914
+ parseError: /* @__PURE__ */ __name(function(e, t) {
915
+ if (t.recoverable) this.trace(e);
916
+ else {
917
+ var n = Error(e);
918
+ throw n.hash = t, n;
919
+ }
920
+ }, "parseError"),
921
+ parse: /* @__PURE__ */ __name(function(e) {
922
+ 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: {} };
923
+ for (var _ in this.yy) Object.prototype.hasOwnProperty.call(this.yy, _) && (g.yy[_] = this.yy[_]);
924
+ h.setInput(e, g.yy), g.yy.lexer = h, g.yy.parser = this, h.yylloc === void 0 && (h.yylloc = {});
925
+ var v = h.yylloc;
926
+ o.push(v);
927
+ var y = h.options && h.options.ranges;
928
+ typeof g.yy.parseError == "function" ? this.parseError = g.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
929
+ function b(e) {
930
+ r.length -= 2 * e, a.length -= e, o.length -= e;
931
+ }
932
+ __name(b, "popStack");
933
+ function x() {
934
+ var e = i.pop() || h.lex() || p;
935
+ return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
936
+ }
937
+ __name(x, "lex");
938
+ for (var S, C, w, T, E, D = {}, O, k, A, j;;) {
939
+ 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]) {
940
+ var M = "";
941
+ for (O in j = [], s[w]) this.terminals_[O] && O > f && j.push("'" + this.terminals_[O] + "'");
942
+ 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, {
943
+ text: h.match,
944
+ token: this.terminals_[S] || S,
945
+ line: h.yylineno,
946
+ loc: v,
947
+ expected: j
948
+ });
949
+ }
950
+ if (T[0] instanceof Array && T.length > 1) throw Error("Parse Error: multiple actions possible at state: " + w + ", token: " + S);
951
+ switch (T[0]) {
952
+ case 1:
953
+ 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--);
954
+ break;
955
+ case 2:
956
+ if (k = this.productions_[T[1]][1], D.$ = a[a.length - k], D._$ = {
957
+ first_line: o[o.length - (k || 1)].first_line,
958
+ last_line: o[o.length - 1].last_line,
959
+ first_column: o[o.length - (k || 1)].first_column,
960
+ last_column: o[o.length - 1].last_column
961
+ }, y && (D._$.range = [o[o.length - (k || 1)].range[0], o[o.length - 1].range[1]]), E = this.performAction.apply(D, [
962
+ c,
963
+ u,
964
+ l,
965
+ g.yy,
966
+ T[1],
967
+ a,
968
+ o
969
+ ].concat(m)), E !== void 0) return E;
970
+ 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);
971
+ break;
972
+ case 3: return !0;
973
+ }
974
+ }
975
+ return !0;
976
+ }, "parse")
977
+ };
978
+ K.lexer = /* @__PURE__ */ (function() {
979
+ return {
980
+ EOF: 1,
981
+ parseError: /* @__PURE__ */ __name(function(e, t) {
982
+ if (this.yy.parser) this.yy.parser.parseError(e, t);
983
+ else throw Error(e);
984
+ }, "parseError"),
985
+ setInput: /* @__PURE__ */ __name(function(e, t) {
986
+ 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 = {
987
+ first_line: 1,
988
+ first_column: 0,
989
+ last_line: 1,
990
+ last_column: 0
991
+ }, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
992
+ }, "setInput"),
993
+ input: /* @__PURE__ */ __name(function() {
994
+ var e = this._input[0];
995
+ 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;
996
+ }, "input"),
997
+ unput: /* @__PURE__ */ __name(function(e) {
998
+ var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
999
+ this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
1000
+ var r = this.match.split(/(?:\r\n?|\n)/g);
1001
+ 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);
1002
+ var i = this.yylloc.range;
1003
+ return this.yylloc = {
1004
+ first_line: this.yylloc.first_line,
1005
+ last_line: this.yylineno + 1,
1006
+ first_column: this.yylloc.first_column,
1007
+ 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
1008
+ }, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
1009
+ }, "unput"),
1010
+ more: /* @__PURE__ */ __name(function() {
1011
+ return this._more = !0, this;
1012
+ }, "more"),
1013
+ reject: /* @__PURE__ */ __name(function() {
1014
+ if (this.options.backtrack_lexer) this._backtrack = !0;
1015
+ 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(), {
1016
+ text: "",
1017
+ token: null,
1018
+ line: this.yylineno
1019
+ });
1020
+ return this;
1021
+ }, "reject"),
1022
+ less: /* @__PURE__ */ __name(function(e) {
1023
+ this.unput(this.match.slice(e));
1024
+ }, "less"),
1025
+ pastInput: /* @__PURE__ */ __name(function() {
1026
+ var e = this.matched.substr(0, this.matched.length - this.match.length);
1027
+ return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
1028
+ }, "pastInput"),
1029
+ upcomingInput: /* @__PURE__ */ __name(function() {
1030
+ var e = this.match;
1031
+ return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
1032
+ }, "upcomingInput"),
1033
+ showPosition: /* @__PURE__ */ __name(function() {
1034
+ var e = this.pastInput(), t = Array(e.length + 1).join("-");
1035
+ return e + this.upcomingInput() + "\n" + t + "^";
1036
+ }, "showPosition"),
1037
+ test_match: /* @__PURE__ */ __name(function(e, t) {
1038
+ var n, r, i;
1039
+ if (this.options.backtrack_lexer && (i = {
1040
+ yylineno: this.yylineno,
1041
+ yylloc: {
1042
+ first_line: this.yylloc.first_line,
1043
+ last_line: this.last_line,
1044
+ first_column: this.yylloc.first_column,
1045
+ last_column: this.yylloc.last_column
1046
+ },
1047
+ yytext: this.yytext,
1048
+ match: this.match,
1049
+ matches: this.matches,
1050
+ matched: this.matched,
1051
+ yyleng: this.yyleng,
1052
+ offset: this.offset,
1053
+ _more: this._more,
1054
+ _input: this._input,
1055
+ yy: this.yy,
1056
+ conditionStack: this.conditionStack.slice(0),
1057
+ done: this.done
1058
+ }, 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 = {
1059
+ first_line: this.yylloc.last_line,
1060
+ last_line: this.yylineno + 1,
1061
+ first_column: this.yylloc.last_column,
1062
+ last_column: r ? r[r.length - 1].length - r[r.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + e[0].length
1063
+ }, 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;
1064
+ if (this._backtrack) {
1065
+ for (var a in i) this[a] = i[a];
1066
+ return !1;
1067
+ }
1068
+ return !1;
1069
+ }, "test_match"),
1070
+ next: /* @__PURE__ */ __name(function() {
1071
+ if (this.done) return this.EOF;
1072
+ this._input || (this.done = !0);
1073
+ var e, t, n, r;
1074
+ this._more || (this.yytext = "", this.match = "");
1075
+ 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)) {
1076
+ if (t = n, r = a, this.options.backtrack_lexer) {
1077
+ if (e = this.test_match(n, i[a]), e !== !1) return e;
1078
+ if (this._backtrack) {
1079
+ t = !1;
1080
+ continue;
1081
+ } else return !1;
1082
+ } else if (!this.options.flex) break;
1083
+ }
1084
+ 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(), {
1085
+ text: "",
1086
+ token: null,
1087
+ line: this.yylineno
1088
+ });
1089
+ }, "next"),
1090
+ lex: /* @__PURE__ */ __name(function() {
1091
+ return this.next() || this.lex();
1092
+ }, "lex"),
1093
+ begin: /* @__PURE__ */ __name(function(e) {
1094
+ this.conditionStack.push(e);
1095
+ }, "begin"),
1096
+ popState: /* @__PURE__ */ __name(function() {
1097
+ return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
1098
+ }, "popState"),
1099
+ _currentRules: /* @__PURE__ */ __name(function() {
1100
+ return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
1101
+ }, "_currentRules"),
1102
+ topState: /* @__PURE__ */ __name(function(e) {
1103
+ return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
1104
+ }, "topState"),
1105
+ pushState: /* @__PURE__ */ __name(function(e) {
1106
+ this.begin(e);
1107
+ }, "pushState"),
1108
+ stateStackSize: /* @__PURE__ */ __name(function() {
1109
+ return this.conditionStack.length;
1110
+ }, "stateStackSize"),
1111
+ options: { "case-insensitive": !0 },
1112
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
1113
+ switch (n) {
1114
+ case 0: return this.begin("acc_title"), 24;
1115
+ case 1: return this.popState(), "acc_title_value";
1116
+ case 2: return this.begin("acc_descr"), 26;
1117
+ case 3: return this.popState(), "acc_descr_value";
1118
+ case 4:
1119
+ this.begin("acc_descr_multiline");
1120
+ break;
1121
+ case 5:
1122
+ this.popState();
1123
+ break;
1124
+ case 6: return "acc_descr_multiline_value";
1125
+ case 7: return 33;
1126
+ case 8: return 34;
1127
+ case 9: return 35;
1128
+ case 10: return 36;
1129
+ case 11: return 10;
1130
+ case 12: break;
1131
+ case 13: return 8;
1132
+ case 14: return 50;
1133
+ case 15: return 70;
1134
+ case 16: return 4;
1135
+ case 17: return this.begin("block"), 17;
1136
+ case 18: return 49;
1137
+ case 19: return 49;
1138
+ case 20: return 42;
1139
+ case 21: return 15;
1140
+ case 22: return 13;
1141
+ case 23: break;
1142
+ case 24: return 59;
1143
+ case 25: return 56;
1144
+ case 26: return 56;
1145
+ case 27: return 60;
1146
+ case 28: break;
1147
+ case 29: return this.popState(), 19;
1148
+ case 30: return t.yytext[0];
1149
+ case 31: return 20;
1150
+ case 32: return 21;
1151
+ case 33: return this.begin("style"), 44;
1152
+ case 34: return this.popState(), 10;
1153
+ case 35: break;
1154
+ case 36: return 13;
1155
+ case 37: return 42;
1156
+ case 38: return 49;
1157
+ case 39: return this.begin("style"), 37;
1158
+ case 40: return 43;
1159
+ case 41: return 63;
1160
+ case 42: return 65;
1161
+ case 43: return 65;
1162
+ case 44: return 65;
1163
+ case 45: return 63;
1164
+ case 46: return 63;
1165
+ case 47: return 64;
1166
+ case 48: return 64;
1167
+ case 49: return 64;
1168
+ case 50: return 64;
1169
+ case 51: return 64;
1170
+ case 52: return 65;
1171
+ case 53: return 64;
1172
+ case 54: return 65;
1173
+ case 55: return 66;
1174
+ case 56: return 66;
1175
+ case 57: return 66;
1176
+ case 58: return 66;
1177
+ case 59: return 63;
1178
+ case 60: return 64;
1179
+ case 61: return 65;
1180
+ case 62: return 67;
1181
+ case 63: return 68;
1182
+ case 64: return 69;
1183
+ case 65: return 69;
1184
+ case 66: return 68;
1185
+ case 67: return 68;
1186
+ case 68: return 68;
1187
+ case 69: return 41;
1188
+ case 70: return 47;
1189
+ case 71: return 40;
1190
+ case 72: return 48;
1191
+ case 73: return t.yytext[0];
1192
+ case 74: return 6;
1193
+ }
1194
+ }, "anonymous"),
1195
+ rules: [
1196
+ /^(?:accTitle\s*:\s*)/i,
1197
+ /^(?:(?!\n||)*[^\n]*)/i,
1198
+ /^(?:accDescr\s*:\s*)/i,
1199
+ /^(?:(?!\n||)*[^\n]*)/i,
1200
+ /^(?:accDescr\s*\{\s*)/i,
1201
+ /^(?:[\}])/i,
1202
+ /^(?:[^\}]*)/i,
1203
+ /^(?:.*direction\s+TB[^\n]*)/i,
1204
+ /^(?:.*direction\s+BT[^\n]*)/i,
1205
+ /^(?:.*direction\s+RL[^\n]*)/i,
1206
+ /^(?:.*direction\s+LR[^\n]*)/i,
1207
+ /^(?:[\n]+)/i,
1208
+ /^(?:\s+)/i,
1209
+ /^(?:[\s]+)/i,
1210
+ /^(?:"[^"%\r\n\v\b\\]+")/i,
1211
+ /^(?:"[^"]*")/i,
1212
+ /^(?:erDiagram\b)/i,
1213
+ /^(?:\{)/i,
1214
+ /^(?:#)/i,
1215
+ /^(?:#)/i,
1216
+ /^(?:,)/i,
1217
+ /^(?::::)/i,
1218
+ /^(?::)/i,
1219
+ /^(?:\s+)/i,
1220
+ /^(?:\b((?:PK)|(?:FK)|(?:UK))\b)/i,
1221
+ /^(?:([^\s]*)[~].*[~]([^\s]*))/i,
1222
+ /^(?:([\*A-Za-z_\u00C0-\uFFFF][A-Za-z0-9\-\_\[\]\(\)\u00C0-\uFFFF\*]*))/i,
1223
+ /^(?:"[^"]*")/i,
1224
+ /^(?:[\n]+)/i,
1225
+ /^(?:\})/i,
1226
+ /^(?:.)/i,
1227
+ /^(?:\[)/i,
1228
+ /^(?:\])/i,
1229
+ /^(?:style\b)/i,
1230
+ /^(?:[\n]+)/i,
1231
+ /^(?:\s+)/i,
1232
+ /^(?::)/i,
1233
+ /^(?:,)/i,
1234
+ /^(?:#)/i,
1235
+ /^(?:classDef\b)/i,
1236
+ /^(?:class\b)/i,
1237
+ /^(?:one or zero\b)/i,
1238
+ /^(?:one or more\b)/i,
1239
+ /^(?:one or many\b)/i,
1240
+ /^(?:1\+)/i,
1241
+ /^(?:\|o\b)/i,
1242
+ /^(?:zero or one\b)/i,
1243
+ /^(?:zero or more\b)/i,
1244
+ /^(?:zero or many\b)/i,
1245
+ /^(?:0\+)/i,
1246
+ /^(?:\}o\b)/i,
1247
+ /^(?:many\(0\))/i,
1248
+ /^(?:many\(1\))/i,
1249
+ /^(?:many\b)/i,
1250
+ /^(?:\}\|)/i,
1251
+ /^(?:one\b)/i,
1252
+ /^(?:only one\b)/i,
1253
+ /^(?:1\b)/i,
1254
+ /^(?:\|\|)/i,
1255
+ /^(?:o\|)/i,
1256
+ /^(?:o\{)/i,
1257
+ /^(?:\|\{)/i,
1258
+ /^(?:\s*u\b)/i,
1259
+ /^(?:\.\.)/i,
1260
+ /^(?:--)/i,
1261
+ /^(?:to\b)/i,
1262
+ /^(?:optionally to\b)/i,
1263
+ /^(?:\.-)/i,
1264
+ /^(?:-\.)/i,
1265
+ /^(?:([^\x00-\x7F]|\w|-|\*)+)/i,
1266
+ /^(?:;)/i,
1267
+ /^(?:([^\x00-\x7F]|\w|-|\*)+)/i,
1268
+ /^(?:[0-9])/i,
1269
+ /^(?:.)/i,
1270
+ /^(?:$)/i
1271
+ ],
1272
+ conditions: {
1273
+ style: {
1274
+ rules: [
1275
+ 34,
1276
+ 35,
1277
+ 36,
1278
+ 37,
1279
+ 38,
1280
+ 69,
1281
+ 70
1282
+ ],
1283
+ inclusive: !1
1284
+ },
1285
+ acc_descr_multiline: {
1286
+ rules: [5, 6],
1287
+ inclusive: !1
1288
+ },
1289
+ acc_descr: {
1290
+ rules: [3],
1291
+ inclusive: !1
1292
+ },
1293
+ acc_title: {
1294
+ rules: [1],
1295
+ inclusive: !1
1296
+ },
1297
+ block: {
1298
+ rules: [
1299
+ 23,
1300
+ 24,
1301
+ 25,
1302
+ 26,
1303
+ 27,
1304
+ 28,
1305
+ 29,
1306
+ 30
1307
+ ],
1308
+ inclusive: !1
1309
+ },
1310
+ INITIAL: {
1311
+ rules: [
1312
+ 0,
1313
+ 2,
1314
+ 4,
1315
+ 7,
1316
+ 8,
1317
+ 9,
1318
+ 10,
1319
+ 11,
1320
+ 12,
1321
+ 13,
1322
+ 14,
1323
+ 15,
1324
+ 16,
1325
+ 17,
1326
+ 18,
1327
+ 19,
1328
+ 20,
1329
+ 21,
1330
+ 22,
1331
+ 31,
1332
+ 32,
1333
+ 33,
1334
+ 39,
1335
+ 40,
1336
+ 41,
1337
+ 42,
1338
+ 43,
1339
+ 44,
1340
+ 45,
1341
+ 46,
1342
+ 47,
1343
+ 48,
1344
+ 49,
1345
+ 50,
1346
+ 51,
1347
+ 52,
1348
+ 53,
1349
+ 54,
1350
+ 55,
1351
+ 56,
1352
+ 57,
1353
+ 58,
1354
+ 59,
1355
+ 60,
1356
+ 61,
1357
+ 62,
1358
+ 63,
1359
+ 64,
1360
+ 65,
1361
+ 66,
1362
+ 67,
1363
+ 68,
1364
+ 71,
1365
+ 72,
1366
+ 73,
1367
+ 74
1368
+ ],
1369
+ inclusive: !0
1370
+ }
1371
+ }
1372
+ };
1373
+ })();
1374
+ function q() {
1375
+ this.yy = {};
1376
+ }
1377
+ return __name(q, "Parser"), q.prototype = K, K.Parser = q, new q();
1378
+ })();
1379
+ parser.parser = parser;
1380
+ var erDiagram_default = parser, ErDB = class {
1381
+ constructor() {
1382
+ this.entities = /* @__PURE__ */ new Map(), this.relationships = [], this.classes = /* @__PURE__ */ new Map(), this.direction = "TB", this.Cardinality = {
1383
+ ZERO_OR_ONE: "ZERO_OR_ONE",
1384
+ ZERO_OR_MORE: "ZERO_OR_MORE",
1385
+ ONE_OR_MORE: "ONE_OR_MORE",
1386
+ ONLY_ONE: "ONLY_ONE",
1387
+ MD_PARENT: "MD_PARENT"
1388
+ }, this.Identification = {
1389
+ NON_IDENTIFYING: "NON_IDENTIFYING",
1390
+ IDENTIFYING: "IDENTIFYING"
1391
+ }, this.setAccTitle = setAccTitle, this.getAccTitle = getAccTitle, this.setAccDescription = setAccDescription, this.getAccDescription = getAccDescription, this.setDiagramTitle = setDiagramTitle, this.getDiagramTitle = getDiagramTitle, this.getConfig = /* @__PURE__ */ __name(() => getConfig2().er, "getConfig"), this.clear(), this.addEntity = this.addEntity.bind(this), this.addAttributes = this.addAttributes.bind(this), this.addRelationship = this.addRelationship.bind(this), this.setDirection = this.setDirection.bind(this), this.addCssStyles = this.addCssStyles.bind(this), this.addClass = this.addClass.bind(this), this.setClass = this.setClass.bind(this), this.setAccTitle = this.setAccTitle.bind(this), this.setAccDescription = this.setAccDescription.bind(this);
1392
+ }
1393
+ static #e = __name(this, "ErDB");
1394
+ addEntity(e, t = "") {
1395
+ return this.entities.has(e) ? !this.entities.get(e)?.alias && t && (this.entities.get(e).alias = t, log.info(`Add alias '${t}' to entity '${e}'`)) : (this.entities.set(e, {
1396
+ id: `entity-${e}-${this.entities.size}`,
1397
+ label: e,
1398
+ attributes: [],
1399
+ alias: t,
1400
+ shape: "erBox",
1401
+ look: getConfig2().look ?? "default",
1402
+ cssClasses: "default",
1403
+ cssStyles: []
1404
+ }), log.info("Added new entity :", e)), this.entities.get(e);
1405
+ }
1406
+ getEntity(e) {
1407
+ return this.entities.get(e);
1408
+ }
1409
+ getEntities() {
1410
+ return this.entities;
1411
+ }
1412
+ getClasses() {
1413
+ return this.classes;
1414
+ }
1415
+ addAttributes(e, t) {
1416
+ let r = this.addEntity(e), i;
1417
+ for (i = t.length - 1; i >= 0; i--) t[i].keys || (t[i].keys = []), t[i].comment || (t[i].comment = ""), r.attributes.push(t[i]), log.debug("Added attribute ", t[i].name);
1418
+ }
1419
+ addRelationship(e, t, r, i) {
1420
+ let a = this.entities.get(e), o = this.entities.get(r);
1421
+ if (!a || !o) return;
1422
+ let s = {
1423
+ entityA: a.id,
1424
+ roleA: t,
1425
+ entityB: o.id,
1426
+ relSpec: i
1427
+ };
1428
+ this.relationships.push(s), log.debug("Added new relationship :", s);
1429
+ }
1430
+ getRelationships() {
1431
+ return this.relationships;
1432
+ }
1433
+ getDirection() {
1434
+ return this.direction;
1435
+ }
1436
+ setDirection(e) {
1437
+ this.direction = e;
1438
+ }
1439
+ getCompiledStyles(e) {
1440
+ let t = [];
1441
+ for (let n of e) {
1442
+ let e = this.classes.get(n);
1443
+ e?.styles && (t = [...t, ...e.styles ?? []].map((e) => e.trim())), e?.textStyles && (t = [...t, ...e.textStyles ?? []].map((e) => e.trim()));
1444
+ }
1445
+ return t;
1446
+ }
1447
+ addCssStyles(e, t) {
1448
+ for (let n of e) {
1449
+ let e = this.entities.get(n);
1450
+ if (!t || !e) return;
1451
+ for (let n of t) e.cssStyles.push(n);
1452
+ }
1453
+ }
1454
+ addClass(e, t) {
1455
+ e.forEach((e) => {
1456
+ let n = this.classes.get(e);
1457
+ n === void 0 && (n = {
1458
+ id: e,
1459
+ styles: [],
1460
+ textStyles: []
1461
+ }, this.classes.set(e, n)), t && t.forEach(function(e) {
1462
+ if (/color/.exec(e)) {
1463
+ let t = e.replace("fill", "bgFill");
1464
+ n.textStyles.push(t);
1465
+ }
1466
+ n.styles.push(e);
1467
+ });
1468
+ });
1469
+ }
1470
+ setClass(e, t) {
1471
+ for (let n of e) {
1472
+ let e = this.entities.get(n);
1473
+ if (e) for (let n of t) e.cssClasses += " " + n;
1474
+ }
1475
+ }
1476
+ clear() {
1477
+ this.entities = /* @__PURE__ */ new Map(), this.classes = /* @__PURE__ */ new Map(), this.relationships = [], clear();
1478
+ }
1479
+ getData() {
1480
+ let e = [], t = [], n = getConfig2();
1481
+ for (let t of this.entities.keys()) {
1482
+ let n = this.entities.get(t);
1483
+ n && (n.cssCompiledStyles = this.getCompiledStyles(n.cssClasses.split(" ")), e.push(n));
1484
+ }
1485
+ let r = 0;
1486
+ for (let e of this.relationships) {
1487
+ let i = {
1488
+ id: getEdgeId(e.entityA, e.entityB, {
1489
+ prefix: "id",
1490
+ counter: r++
1491
+ }),
1492
+ type: "normal",
1493
+ curve: "basis",
1494
+ start: e.entityA,
1495
+ end: e.entityB,
1496
+ label: e.roleA,
1497
+ labelpos: "c",
1498
+ thickness: "normal",
1499
+ classes: "relationshipLine",
1500
+ arrowTypeStart: e.relSpec.cardB.toLowerCase(),
1501
+ arrowTypeEnd: e.relSpec.cardA.toLowerCase(),
1502
+ pattern: e.relSpec.relType == "IDENTIFYING" ? "solid" : "dashed",
1503
+ look: n.look
1504
+ };
1505
+ t.push(i);
1506
+ }
1507
+ return {
1508
+ nodes: e,
1509
+ edges: t,
1510
+ other: {},
1511
+ config: n,
1512
+ direction: "TB"
1513
+ };
1514
+ }
1515
+ }, erRenderer_unified_exports = {};
1516
+ __export(erRenderer_unified_exports, { draw: () => draw });
1517
+ var draw = /* @__PURE__ */ __name(async function(e, t, r, i) {
1518
+ log.info("REF0:"), log.info("Drawing er diagram (unified)", t);
1519
+ let { securityLevel: a, er: o, layout: s } = getConfig2(), l = i.db.getData(), u = getDiagramElement(t, a);
1520
+ l.type = i.type, l.layoutAlgorithm = getRegisteredLayoutAlgorithm(s), l.config.flowchart.nodeSpacing = o?.nodeSpacing || 140, l.config.flowchart.rankSpacing = o?.rankSpacing || 80, l.direction = i.db.getDirection(), l.markers = [
1521
+ "only_one",
1522
+ "zero_or_one",
1523
+ "one_or_more",
1524
+ "zero_or_more"
1525
+ ], l.diagramId = t, await render(l, u), l.layoutAlgorithm === "elk" && u.select(".edges").lower();
1526
+ let d = u.selectAll("[id*=\"-background\"]");
1527
+ Array.from(d).length > 0 && d.each(function() {
1528
+ let e = select_default(this), t = e.attr("id").replace("-background", ""), n = u.select(`#${CSS.escape(t)}`);
1529
+ if (!n.empty()) {
1530
+ let t = n.attr("transform");
1531
+ e.attr("transform", t);
1532
+ }
1533
+ }), utils_default.insertTitle(u, "erDiagramTitleText", o?.titleTopMargin ?? 25, i.db.getDiagramTitle()), setupViewPortForSVG(u, 8, "erDiagram", o?.useMaxWidth ?? !0);
1534
+ }, "draw"), fade = /* @__PURE__ */ __name((e, t) => {
1535
+ let n = channel_default;
1536
+ return rgba_default(n(e, "r"), n(e, "g"), n(e, "b"), t);
1537
+ }, "fade"), diagram = {
1538
+ parser: erDiagram_default,
1539
+ get db() {
1540
+ return new ErDB();
1541
+ },
1542
+ renderer: erRenderer_unified_exports,
1543
+ styles: /* @__PURE__ */ __name((e) => `
1544
+ .entityBox {
1545
+ fill: ${e.mainBkg};
1546
+ stroke: ${e.nodeBorder};
1547
+ }
1548
+
1549
+ .relationshipLabelBox {
1550
+ fill: ${e.tertiaryColor};
1551
+ opacity: 0.7;
1552
+ background-color: ${e.tertiaryColor};
1553
+ rect {
1554
+ opacity: 0.5;
1555
+ }
1556
+ }
1557
+
1558
+ .labelBkg {
1559
+ background-color: ${fade(e.tertiaryColor, .5)};
1560
+ }
1561
+
1562
+ .edgeLabel .label {
1563
+ fill: ${e.nodeBorder};
1564
+ font-size: 14px;
1565
+ }
1566
+
1567
+ .label {
1568
+ font-family: ${e.fontFamily};
1569
+ color: ${e.nodeTextColor || e.textColor};
1570
+ }
1571
+
1572
+ .edge-pattern-dashed {
1573
+ stroke-dasharray: 8,8;
1574
+ }
1575
+
1576
+ .node rect,
1577
+ .node circle,
1578
+ .node ellipse,
1579
+ .node polygon
1580
+ {
1581
+ fill: ${e.mainBkg};
1582
+ stroke: ${e.nodeBorder};
1583
+ stroke-width: 1px;
1584
+ }
1585
+
1586
+ .relationshipLine {
1587
+ stroke: ${e.lineColor};
1588
+ stroke-width: 1;
1589
+ fill: none;
1590
+ }
1591
+
1592
+ .marker {
1593
+ fill: none !important;
1594
+ stroke: ${e.lineColor} !important;
1595
+ stroke-width: 1;
1596
+ }
1597
+ `, "getStyles")
1598
+ };
1599
+ export { diagram };