@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,2187 @@
1
+ import { __export, __name, log } from "./chunk-AGHRB4JF.js";
2
+ import { clear, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, setAccDescription, setAccTitle, setDiagramTitle } from "./chunk-ABZYJK2D.js";
3
+ import "./chunk-HN2XXSSU.js";
4
+ import "./chunk-CVBHYZKI.js";
5
+ import "./chunk-ATLVNIR6.js";
6
+ import { utils_default } from "./chunk-S3R3BYOJ.js";
7
+ import "./chunk-JA3XYJ7Z.js";
8
+ import "./chunk-JZLCHNYA.js";
9
+ import "./chunk-QXUST7PY.js";
10
+ import { getRegisteredLayoutAlgorithm, render } from "./chunk-N4CR4FBY.js";
11
+ import { getDiagramElement } from "./chunk-55IACEB6.js";
12
+ import { setupViewPortForSVG } from "./chunk-QN33PNHL.js";
13
+ var parser = (function() {
14
+ var e = /* @__PURE__ */ __name(function(e, t, n, r) {
15
+ for (n ||= {}, r = e.length; r--; n[e[r]] = t);
16
+ return n;
17
+ }, "o"), n = [1, 3], r = [1, 4], i = [1, 5], a = [1, 6], o = [
18
+ 5,
19
+ 6,
20
+ 8,
21
+ 9,
22
+ 11,
23
+ 13,
24
+ 21,
25
+ 22,
26
+ 23,
27
+ 24,
28
+ 41,
29
+ 42,
30
+ 43,
31
+ 44,
32
+ 45,
33
+ 46,
34
+ 54,
35
+ 72,
36
+ 74,
37
+ 77,
38
+ 89,
39
+ 90
40
+ ], s = [1, 22], c = [2, 7], l = [1, 26], u = [1, 27], d = [1, 28], f = [1, 29], p = [1, 33], m = [1, 34], h = [1, 35], g = [1, 36], _ = [1, 37], v = [1, 38], y = [1, 24], b = [1, 31], x = [1, 32], S = [1, 30], C = [1, 39], w = [1, 40], T = [
41
+ 5,
42
+ 8,
43
+ 9,
44
+ 11,
45
+ 13,
46
+ 21,
47
+ 22,
48
+ 23,
49
+ 24,
50
+ 41,
51
+ 42,
52
+ 43,
53
+ 44,
54
+ 45,
55
+ 46,
56
+ 54,
57
+ 72,
58
+ 74,
59
+ 77,
60
+ 89,
61
+ 90
62
+ ], E = [1, 61], D = [89, 90], O = [
63
+ 5,
64
+ 8,
65
+ 9,
66
+ 11,
67
+ 13,
68
+ 21,
69
+ 22,
70
+ 23,
71
+ 24,
72
+ 27,
73
+ 29,
74
+ 41,
75
+ 42,
76
+ 43,
77
+ 44,
78
+ 45,
79
+ 46,
80
+ 54,
81
+ 61,
82
+ 63,
83
+ 72,
84
+ 74,
85
+ 75,
86
+ 76,
87
+ 77,
88
+ 80,
89
+ 81,
90
+ 82,
91
+ 83,
92
+ 84,
93
+ 85,
94
+ 86,
95
+ 87,
96
+ 88,
97
+ 89,
98
+ 90
99
+ ], k = [27, 29], ee = [1, 70], A = [1, 71], te = [1, 72], ne = [1, 73], re = [1, 74], ie = [1, 75], ae = [1, 76], j = [1, 83], M = [1, 80], N = [1, 84], P = [1, 85], F = [1, 86], I = [1, 87], L = [1, 88], R = [1, 89], z = [1, 90], B = [1, 91], V = [1, 92], oe = [
100
+ 5,
101
+ 8,
102
+ 9,
103
+ 11,
104
+ 13,
105
+ 21,
106
+ 22,
107
+ 23,
108
+ 24,
109
+ 27,
110
+ 41,
111
+ 42,
112
+ 43,
113
+ 44,
114
+ 45,
115
+ 46,
116
+ 54,
117
+ 72,
118
+ 74,
119
+ 75,
120
+ 76,
121
+ 77,
122
+ 80,
123
+ 81,
124
+ 82,
125
+ 83,
126
+ 84,
127
+ 85,
128
+ 86,
129
+ 87,
130
+ 88,
131
+ 89,
132
+ 90
133
+ ], H = [63, 64], se = [1, 101], ce = [
134
+ 5,
135
+ 8,
136
+ 9,
137
+ 11,
138
+ 13,
139
+ 21,
140
+ 22,
141
+ 23,
142
+ 24,
143
+ 41,
144
+ 42,
145
+ 43,
146
+ 44,
147
+ 45,
148
+ 46,
149
+ 54,
150
+ 72,
151
+ 74,
152
+ 76,
153
+ 77,
154
+ 89,
155
+ 90
156
+ ], U = [
157
+ 5,
158
+ 8,
159
+ 9,
160
+ 11,
161
+ 13,
162
+ 21,
163
+ 22,
164
+ 23,
165
+ 24,
166
+ 41,
167
+ 42,
168
+ 43,
169
+ 44,
170
+ 45,
171
+ 46,
172
+ 54,
173
+ 72,
174
+ 74,
175
+ 75,
176
+ 76,
177
+ 77,
178
+ 80,
179
+ 81,
180
+ 82,
181
+ 83,
182
+ 84,
183
+ 85,
184
+ 86,
185
+ 87,
186
+ 88,
187
+ 89,
188
+ 90
189
+ ], W = [1, 110], G = [1, 106], K = [1, 107], q = [1, 108], J = [1, 109], Y = [1, 111], X = [1, 116], Z = [1, 117], Q = [1, 114], $ = [1, 115], le = {
190
+ trace: /* @__PURE__ */ __name(function() {}, "trace"),
191
+ yy: {},
192
+ symbols_: {
193
+ error: 2,
194
+ start: 3,
195
+ directive: 4,
196
+ NEWLINE: 5,
197
+ RD: 6,
198
+ diagram: 7,
199
+ EOF: 8,
200
+ acc_title: 9,
201
+ acc_title_value: 10,
202
+ acc_descr: 11,
203
+ acc_descr_value: 12,
204
+ acc_descr_multiline_value: 13,
205
+ requirementDef: 14,
206
+ elementDef: 15,
207
+ relationshipDef: 16,
208
+ direction: 17,
209
+ styleStatement: 18,
210
+ classDefStatement: 19,
211
+ classStatement: 20,
212
+ direction_tb: 21,
213
+ direction_bt: 22,
214
+ direction_rl: 23,
215
+ direction_lr: 24,
216
+ requirementType: 25,
217
+ requirementName: 26,
218
+ STRUCT_START: 27,
219
+ requirementBody: 28,
220
+ STYLE_SEPARATOR: 29,
221
+ idList: 30,
222
+ ID: 31,
223
+ COLONSEP: 32,
224
+ id: 33,
225
+ TEXT: 34,
226
+ text: 35,
227
+ RISK: 36,
228
+ riskLevel: 37,
229
+ VERIFYMTHD: 38,
230
+ verifyType: 39,
231
+ STRUCT_STOP: 40,
232
+ REQUIREMENT: 41,
233
+ FUNCTIONAL_REQUIREMENT: 42,
234
+ INTERFACE_REQUIREMENT: 43,
235
+ PERFORMANCE_REQUIREMENT: 44,
236
+ PHYSICAL_REQUIREMENT: 45,
237
+ DESIGN_CONSTRAINT: 46,
238
+ LOW_RISK: 47,
239
+ MED_RISK: 48,
240
+ HIGH_RISK: 49,
241
+ VERIFY_ANALYSIS: 50,
242
+ VERIFY_DEMONSTRATION: 51,
243
+ VERIFY_INSPECTION: 52,
244
+ VERIFY_TEST: 53,
245
+ ELEMENT: 54,
246
+ elementName: 55,
247
+ elementBody: 56,
248
+ TYPE: 57,
249
+ type: 58,
250
+ DOCREF: 59,
251
+ ref: 60,
252
+ END_ARROW_L: 61,
253
+ relationship: 62,
254
+ LINE: 63,
255
+ END_ARROW_R: 64,
256
+ CONTAINS: 65,
257
+ COPIES: 66,
258
+ DERIVES: 67,
259
+ SATISFIES: 68,
260
+ VERIFIES: 69,
261
+ REFINES: 70,
262
+ TRACES: 71,
263
+ CLASSDEF: 72,
264
+ stylesOpt: 73,
265
+ CLASS: 74,
266
+ ALPHA: 75,
267
+ COMMA: 76,
268
+ STYLE: 77,
269
+ style: 78,
270
+ styleComponent: 79,
271
+ NUM: 80,
272
+ COLON: 81,
273
+ UNIT: 82,
274
+ SPACE: 83,
275
+ BRKT: 84,
276
+ PCT: 85,
277
+ MINUS: 86,
278
+ LABEL: 87,
279
+ SEMICOLON: 88,
280
+ unqString: 89,
281
+ qString: 90,
282
+ $accept: 0,
283
+ $end: 1
284
+ },
285
+ terminals_: {
286
+ 2: "error",
287
+ 5: "NEWLINE",
288
+ 6: "RD",
289
+ 8: "EOF",
290
+ 9: "acc_title",
291
+ 10: "acc_title_value",
292
+ 11: "acc_descr",
293
+ 12: "acc_descr_value",
294
+ 13: "acc_descr_multiline_value",
295
+ 21: "direction_tb",
296
+ 22: "direction_bt",
297
+ 23: "direction_rl",
298
+ 24: "direction_lr",
299
+ 27: "STRUCT_START",
300
+ 29: "STYLE_SEPARATOR",
301
+ 31: "ID",
302
+ 32: "COLONSEP",
303
+ 34: "TEXT",
304
+ 36: "RISK",
305
+ 38: "VERIFYMTHD",
306
+ 40: "STRUCT_STOP",
307
+ 41: "REQUIREMENT",
308
+ 42: "FUNCTIONAL_REQUIREMENT",
309
+ 43: "INTERFACE_REQUIREMENT",
310
+ 44: "PERFORMANCE_REQUIREMENT",
311
+ 45: "PHYSICAL_REQUIREMENT",
312
+ 46: "DESIGN_CONSTRAINT",
313
+ 47: "LOW_RISK",
314
+ 48: "MED_RISK",
315
+ 49: "HIGH_RISK",
316
+ 50: "VERIFY_ANALYSIS",
317
+ 51: "VERIFY_DEMONSTRATION",
318
+ 52: "VERIFY_INSPECTION",
319
+ 53: "VERIFY_TEST",
320
+ 54: "ELEMENT",
321
+ 57: "TYPE",
322
+ 59: "DOCREF",
323
+ 61: "END_ARROW_L",
324
+ 63: "LINE",
325
+ 64: "END_ARROW_R",
326
+ 65: "CONTAINS",
327
+ 66: "COPIES",
328
+ 67: "DERIVES",
329
+ 68: "SATISFIES",
330
+ 69: "VERIFIES",
331
+ 70: "REFINES",
332
+ 71: "TRACES",
333
+ 72: "CLASSDEF",
334
+ 74: "CLASS",
335
+ 75: "ALPHA",
336
+ 76: "COMMA",
337
+ 77: "STYLE",
338
+ 80: "NUM",
339
+ 81: "COLON",
340
+ 82: "UNIT",
341
+ 83: "SPACE",
342
+ 84: "BRKT",
343
+ 85: "PCT",
344
+ 86: "MINUS",
345
+ 87: "LABEL",
346
+ 88: "SEMICOLON",
347
+ 89: "unqString",
348
+ 90: "qString"
349
+ },
350
+ productions_: [
351
+ 0,
352
+ [3, 3],
353
+ [3, 2],
354
+ [3, 4],
355
+ [4, 2],
356
+ [4, 2],
357
+ [4, 1],
358
+ [7, 0],
359
+ [7, 2],
360
+ [7, 2],
361
+ [7, 2],
362
+ [7, 2],
363
+ [7, 2],
364
+ [7, 2],
365
+ [7, 2],
366
+ [7, 2],
367
+ [7, 2],
368
+ [17, 1],
369
+ [17, 1],
370
+ [17, 1],
371
+ [17, 1],
372
+ [14, 5],
373
+ [14, 7],
374
+ [28, 5],
375
+ [28, 5],
376
+ [28, 5],
377
+ [28, 5],
378
+ [28, 2],
379
+ [28, 1],
380
+ [25, 1],
381
+ [25, 1],
382
+ [25, 1],
383
+ [25, 1],
384
+ [25, 1],
385
+ [25, 1],
386
+ [37, 1],
387
+ [37, 1],
388
+ [37, 1],
389
+ [39, 1],
390
+ [39, 1],
391
+ [39, 1],
392
+ [39, 1],
393
+ [15, 5],
394
+ [15, 7],
395
+ [56, 5],
396
+ [56, 5],
397
+ [56, 2],
398
+ [56, 1],
399
+ [16, 5],
400
+ [16, 5],
401
+ [62, 1],
402
+ [62, 1],
403
+ [62, 1],
404
+ [62, 1],
405
+ [62, 1],
406
+ [62, 1],
407
+ [62, 1],
408
+ [19, 3],
409
+ [20, 3],
410
+ [20, 3],
411
+ [30, 1],
412
+ [30, 3],
413
+ [30, 1],
414
+ [30, 3],
415
+ [18, 3],
416
+ [73, 1],
417
+ [73, 3],
418
+ [78, 1],
419
+ [78, 2],
420
+ [79, 1],
421
+ [79, 1],
422
+ [79, 1],
423
+ [79, 1],
424
+ [79, 1],
425
+ [79, 1],
426
+ [79, 1],
427
+ [79, 1],
428
+ [79, 1],
429
+ [79, 1],
430
+ [26, 1],
431
+ [26, 1],
432
+ [33, 1],
433
+ [33, 1],
434
+ [35, 1],
435
+ [35, 1],
436
+ [55, 1],
437
+ [55, 1],
438
+ [58, 1],
439
+ [58, 1],
440
+ [60, 1],
441
+ [60, 1]
442
+ ],
443
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
444
+ var s = a.length - 1;
445
+ switch (i) {
446
+ case 4:
447
+ this.$ = a[s].trim(), r.setAccTitle(this.$);
448
+ break;
449
+ case 5:
450
+ case 6:
451
+ this.$ = a[s].trim(), r.setAccDescription(this.$);
452
+ break;
453
+ case 7:
454
+ this.$ = [];
455
+ break;
456
+ case 17:
457
+ r.setDirection("TB");
458
+ break;
459
+ case 18:
460
+ r.setDirection("BT");
461
+ break;
462
+ case 19:
463
+ r.setDirection("RL");
464
+ break;
465
+ case 20:
466
+ r.setDirection("LR");
467
+ break;
468
+ case 21:
469
+ r.addRequirement(a[s - 3], a[s - 4]);
470
+ break;
471
+ case 22:
472
+ r.addRequirement(a[s - 5], a[s - 6]), r.setClass([a[s - 5]], a[s - 3]);
473
+ break;
474
+ case 23:
475
+ r.setNewReqId(a[s - 2]);
476
+ break;
477
+ case 24:
478
+ r.setNewReqText(a[s - 2]);
479
+ break;
480
+ case 25:
481
+ r.setNewReqRisk(a[s - 2]);
482
+ break;
483
+ case 26:
484
+ r.setNewReqVerifyMethod(a[s - 2]);
485
+ break;
486
+ case 29:
487
+ this.$ = r.RequirementType.REQUIREMENT;
488
+ break;
489
+ case 30:
490
+ this.$ = r.RequirementType.FUNCTIONAL_REQUIREMENT;
491
+ break;
492
+ case 31:
493
+ this.$ = r.RequirementType.INTERFACE_REQUIREMENT;
494
+ break;
495
+ case 32:
496
+ this.$ = r.RequirementType.PERFORMANCE_REQUIREMENT;
497
+ break;
498
+ case 33:
499
+ this.$ = r.RequirementType.PHYSICAL_REQUIREMENT;
500
+ break;
501
+ case 34:
502
+ this.$ = r.RequirementType.DESIGN_CONSTRAINT;
503
+ break;
504
+ case 35:
505
+ this.$ = r.RiskLevel.LOW_RISK;
506
+ break;
507
+ case 36:
508
+ this.$ = r.RiskLevel.MED_RISK;
509
+ break;
510
+ case 37:
511
+ this.$ = r.RiskLevel.HIGH_RISK;
512
+ break;
513
+ case 38:
514
+ this.$ = r.VerifyType.VERIFY_ANALYSIS;
515
+ break;
516
+ case 39:
517
+ this.$ = r.VerifyType.VERIFY_DEMONSTRATION;
518
+ break;
519
+ case 40:
520
+ this.$ = r.VerifyType.VERIFY_INSPECTION;
521
+ break;
522
+ case 41:
523
+ this.$ = r.VerifyType.VERIFY_TEST;
524
+ break;
525
+ case 42:
526
+ r.addElement(a[s - 3]);
527
+ break;
528
+ case 43:
529
+ r.addElement(a[s - 5]), r.setClass([a[s - 5]], a[s - 3]);
530
+ break;
531
+ case 44:
532
+ r.setNewElementType(a[s - 2]);
533
+ break;
534
+ case 45:
535
+ r.setNewElementDocRef(a[s - 2]);
536
+ break;
537
+ case 48:
538
+ r.addRelationship(a[s - 2], a[s], a[s - 4]);
539
+ break;
540
+ case 49:
541
+ r.addRelationship(a[s - 2], a[s - 4], a[s]);
542
+ break;
543
+ case 50:
544
+ this.$ = r.Relationships.CONTAINS;
545
+ break;
546
+ case 51:
547
+ this.$ = r.Relationships.COPIES;
548
+ break;
549
+ case 52:
550
+ this.$ = r.Relationships.DERIVES;
551
+ break;
552
+ case 53:
553
+ this.$ = r.Relationships.SATISFIES;
554
+ break;
555
+ case 54:
556
+ this.$ = r.Relationships.VERIFIES;
557
+ break;
558
+ case 55:
559
+ this.$ = r.Relationships.REFINES;
560
+ break;
561
+ case 56:
562
+ this.$ = r.Relationships.TRACES;
563
+ break;
564
+ case 57:
565
+ this.$ = a[s - 2], r.defineClass(a[s - 1], a[s]);
566
+ break;
567
+ case 58:
568
+ r.setClass(a[s - 1], a[s]);
569
+ break;
570
+ case 59:
571
+ r.setClass([a[s - 2]], a[s]);
572
+ break;
573
+ case 60:
574
+ case 62:
575
+ this.$ = [a[s]];
576
+ break;
577
+ case 61:
578
+ case 63:
579
+ this.$ = a[s - 2].concat([a[s]]);
580
+ break;
581
+ case 64:
582
+ this.$ = a[s - 2], r.setCssStyle(a[s - 1], a[s]);
583
+ break;
584
+ case 65:
585
+ this.$ = [a[s]];
586
+ break;
587
+ case 66:
588
+ a[s - 2].push(a[s]), this.$ = a[s - 2];
589
+ break;
590
+ case 68:
591
+ this.$ = a[s - 1] + a[s];
592
+ break;
593
+ }
594
+ }, "anonymous"),
595
+ table: [
596
+ {
597
+ 3: 1,
598
+ 4: 2,
599
+ 6: n,
600
+ 9: r,
601
+ 11: i,
602
+ 13: a
603
+ },
604
+ { 1: [3] },
605
+ {
606
+ 3: 8,
607
+ 4: 2,
608
+ 5: [1, 7],
609
+ 6: n,
610
+ 9: r,
611
+ 11: i,
612
+ 13: a
613
+ },
614
+ { 5: [1, 9] },
615
+ { 10: [1, 10] },
616
+ { 12: [1, 11] },
617
+ e(o, [2, 6]),
618
+ {
619
+ 3: 12,
620
+ 4: 2,
621
+ 6: n,
622
+ 9: r,
623
+ 11: i,
624
+ 13: a
625
+ },
626
+ { 1: [2, 2] },
627
+ {
628
+ 4: 17,
629
+ 5: s,
630
+ 7: 13,
631
+ 8: c,
632
+ 9: r,
633
+ 11: i,
634
+ 13: a,
635
+ 14: 14,
636
+ 15: 15,
637
+ 16: 16,
638
+ 17: 18,
639
+ 18: 19,
640
+ 19: 20,
641
+ 20: 21,
642
+ 21: l,
643
+ 22: u,
644
+ 23: d,
645
+ 24: f,
646
+ 25: 23,
647
+ 33: 25,
648
+ 41: p,
649
+ 42: m,
650
+ 43: h,
651
+ 44: g,
652
+ 45: _,
653
+ 46: v,
654
+ 54: y,
655
+ 72: b,
656
+ 74: x,
657
+ 77: S,
658
+ 89: C,
659
+ 90: w
660
+ },
661
+ e(o, [2, 4]),
662
+ e(o, [2, 5]),
663
+ { 1: [2, 1] },
664
+ { 8: [1, 41] },
665
+ {
666
+ 4: 17,
667
+ 5: s,
668
+ 7: 42,
669
+ 8: c,
670
+ 9: r,
671
+ 11: i,
672
+ 13: a,
673
+ 14: 14,
674
+ 15: 15,
675
+ 16: 16,
676
+ 17: 18,
677
+ 18: 19,
678
+ 19: 20,
679
+ 20: 21,
680
+ 21: l,
681
+ 22: u,
682
+ 23: d,
683
+ 24: f,
684
+ 25: 23,
685
+ 33: 25,
686
+ 41: p,
687
+ 42: m,
688
+ 43: h,
689
+ 44: g,
690
+ 45: _,
691
+ 46: v,
692
+ 54: y,
693
+ 72: b,
694
+ 74: x,
695
+ 77: S,
696
+ 89: C,
697
+ 90: w
698
+ },
699
+ {
700
+ 4: 17,
701
+ 5: s,
702
+ 7: 43,
703
+ 8: c,
704
+ 9: r,
705
+ 11: i,
706
+ 13: a,
707
+ 14: 14,
708
+ 15: 15,
709
+ 16: 16,
710
+ 17: 18,
711
+ 18: 19,
712
+ 19: 20,
713
+ 20: 21,
714
+ 21: l,
715
+ 22: u,
716
+ 23: d,
717
+ 24: f,
718
+ 25: 23,
719
+ 33: 25,
720
+ 41: p,
721
+ 42: m,
722
+ 43: h,
723
+ 44: g,
724
+ 45: _,
725
+ 46: v,
726
+ 54: y,
727
+ 72: b,
728
+ 74: x,
729
+ 77: S,
730
+ 89: C,
731
+ 90: w
732
+ },
733
+ {
734
+ 4: 17,
735
+ 5: s,
736
+ 7: 44,
737
+ 8: c,
738
+ 9: r,
739
+ 11: i,
740
+ 13: a,
741
+ 14: 14,
742
+ 15: 15,
743
+ 16: 16,
744
+ 17: 18,
745
+ 18: 19,
746
+ 19: 20,
747
+ 20: 21,
748
+ 21: l,
749
+ 22: u,
750
+ 23: d,
751
+ 24: f,
752
+ 25: 23,
753
+ 33: 25,
754
+ 41: p,
755
+ 42: m,
756
+ 43: h,
757
+ 44: g,
758
+ 45: _,
759
+ 46: v,
760
+ 54: y,
761
+ 72: b,
762
+ 74: x,
763
+ 77: S,
764
+ 89: C,
765
+ 90: w
766
+ },
767
+ {
768
+ 4: 17,
769
+ 5: s,
770
+ 7: 45,
771
+ 8: c,
772
+ 9: r,
773
+ 11: i,
774
+ 13: a,
775
+ 14: 14,
776
+ 15: 15,
777
+ 16: 16,
778
+ 17: 18,
779
+ 18: 19,
780
+ 19: 20,
781
+ 20: 21,
782
+ 21: l,
783
+ 22: u,
784
+ 23: d,
785
+ 24: f,
786
+ 25: 23,
787
+ 33: 25,
788
+ 41: p,
789
+ 42: m,
790
+ 43: h,
791
+ 44: g,
792
+ 45: _,
793
+ 46: v,
794
+ 54: y,
795
+ 72: b,
796
+ 74: x,
797
+ 77: S,
798
+ 89: C,
799
+ 90: w
800
+ },
801
+ {
802
+ 4: 17,
803
+ 5: s,
804
+ 7: 46,
805
+ 8: c,
806
+ 9: r,
807
+ 11: i,
808
+ 13: a,
809
+ 14: 14,
810
+ 15: 15,
811
+ 16: 16,
812
+ 17: 18,
813
+ 18: 19,
814
+ 19: 20,
815
+ 20: 21,
816
+ 21: l,
817
+ 22: u,
818
+ 23: d,
819
+ 24: f,
820
+ 25: 23,
821
+ 33: 25,
822
+ 41: p,
823
+ 42: m,
824
+ 43: h,
825
+ 44: g,
826
+ 45: _,
827
+ 46: v,
828
+ 54: y,
829
+ 72: b,
830
+ 74: x,
831
+ 77: S,
832
+ 89: C,
833
+ 90: w
834
+ },
835
+ {
836
+ 4: 17,
837
+ 5: s,
838
+ 7: 47,
839
+ 8: c,
840
+ 9: r,
841
+ 11: i,
842
+ 13: a,
843
+ 14: 14,
844
+ 15: 15,
845
+ 16: 16,
846
+ 17: 18,
847
+ 18: 19,
848
+ 19: 20,
849
+ 20: 21,
850
+ 21: l,
851
+ 22: u,
852
+ 23: d,
853
+ 24: f,
854
+ 25: 23,
855
+ 33: 25,
856
+ 41: p,
857
+ 42: m,
858
+ 43: h,
859
+ 44: g,
860
+ 45: _,
861
+ 46: v,
862
+ 54: y,
863
+ 72: b,
864
+ 74: x,
865
+ 77: S,
866
+ 89: C,
867
+ 90: w
868
+ },
869
+ {
870
+ 4: 17,
871
+ 5: s,
872
+ 7: 48,
873
+ 8: c,
874
+ 9: r,
875
+ 11: i,
876
+ 13: a,
877
+ 14: 14,
878
+ 15: 15,
879
+ 16: 16,
880
+ 17: 18,
881
+ 18: 19,
882
+ 19: 20,
883
+ 20: 21,
884
+ 21: l,
885
+ 22: u,
886
+ 23: d,
887
+ 24: f,
888
+ 25: 23,
889
+ 33: 25,
890
+ 41: p,
891
+ 42: m,
892
+ 43: h,
893
+ 44: g,
894
+ 45: _,
895
+ 46: v,
896
+ 54: y,
897
+ 72: b,
898
+ 74: x,
899
+ 77: S,
900
+ 89: C,
901
+ 90: w
902
+ },
903
+ {
904
+ 4: 17,
905
+ 5: s,
906
+ 7: 49,
907
+ 8: c,
908
+ 9: r,
909
+ 11: i,
910
+ 13: a,
911
+ 14: 14,
912
+ 15: 15,
913
+ 16: 16,
914
+ 17: 18,
915
+ 18: 19,
916
+ 19: 20,
917
+ 20: 21,
918
+ 21: l,
919
+ 22: u,
920
+ 23: d,
921
+ 24: f,
922
+ 25: 23,
923
+ 33: 25,
924
+ 41: p,
925
+ 42: m,
926
+ 43: h,
927
+ 44: g,
928
+ 45: _,
929
+ 46: v,
930
+ 54: y,
931
+ 72: b,
932
+ 74: x,
933
+ 77: S,
934
+ 89: C,
935
+ 90: w
936
+ },
937
+ {
938
+ 4: 17,
939
+ 5: s,
940
+ 7: 50,
941
+ 8: c,
942
+ 9: r,
943
+ 11: i,
944
+ 13: a,
945
+ 14: 14,
946
+ 15: 15,
947
+ 16: 16,
948
+ 17: 18,
949
+ 18: 19,
950
+ 19: 20,
951
+ 20: 21,
952
+ 21: l,
953
+ 22: u,
954
+ 23: d,
955
+ 24: f,
956
+ 25: 23,
957
+ 33: 25,
958
+ 41: p,
959
+ 42: m,
960
+ 43: h,
961
+ 44: g,
962
+ 45: _,
963
+ 46: v,
964
+ 54: y,
965
+ 72: b,
966
+ 74: x,
967
+ 77: S,
968
+ 89: C,
969
+ 90: w
970
+ },
971
+ {
972
+ 26: 51,
973
+ 89: [1, 52],
974
+ 90: [1, 53]
975
+ },
976
+ {
977
+ 55: 54,
978
+ 89: [1, 55],
979
+ 90: [1, 56]
980
+ },
981
+ {
982
+ 29: [1, 59],
983
+ 61: [1, 57],
984
+ 63: [1, 58]
985
+ },
986
+ e(T, [2, 17]),
987
+ e(T, [2, 18]),
988
+ e(T, [2, 19]),
989
+ e(T, [2, 20]),
990
+ {
991
+ 30: 60,
992
+ 33: 62,
993
+ 75: E,
994
+ 89: C,
995
+ 90: w
996
+ },
997
+ {
998
+ 30: 63,
999
+ 33: 62,
1000
+ 75: E,
1001
+ 89: C,
1002
+ 90: w
1003
+ },
1004
+ {
1005
+ 30: 64,
1006
+ 33: 62,
1007
+ 75: E,
1008
+ 89: C,
1009
+ 90: w
1010
+ },
1011
+ e(D, [2, 29]),
1012
+ e(D, [2, 30]),
1013
+ e(D, [2, 31]),
1014
+ e(D, [2, 32]),
1015
+ e(D, [2, 33]),
1016
+ e(D, [2, 34]),
1017
+ e(O, [2, 81]),
1018
+ e(O, [2, 82]),
1019
+ { 1: [2, 3] },
1020
+ { 8: [2, 8] },
1021
+ { 8: [2, 9] },
1022
+ { 8: [2, 10] },
1023
+ { 8: [2, 11] },
1024
+ { 8: [2, 12] },
1025
+ { 8: [2, 13] },
1026
+ { 8: [2, 14] },
1027
+ { 8: [2, 15] },
1028
+ { 8: [2, 16] },
1029
+ {
1030
+ 27: [1, 65],
1031
+ 29: [1, 66]
1032
+ },
1033
+ e(k, [2, 79]),
1034
+ e(k, [2, 80]),
1035
+ {
1036
+ 27: [1, 67],
1037
+ 29: [1, 68]
1038
+ },
1039
+ e(k, [2, 85]),
1040
+ e(k, [2, 86]),
1041
+ {
1042
+ 62: 69,
1043
+ 65: ee,
1044
+ 66: A,
1045
+ 67: te,
1046
+ 68: ne,
1047
+ 69: re,
1048
+ 70: ie,
1049
+ 71: ae
1050
+ },
1051
+ {
1052
+ 62: 77,
1053
+ 65: ee,
1054
+ 66: A,
1055
+ 67: te,
1056
+ 68: ne,
1057
+ 69: re,
1058
+ 70: ie,
1059
+ 71: ae
1060
+ },
1061
+ {
1062
+ 30: 78,
1063
+ 33: 62,
1064
+ 75: E,
1065
+ 89: C,
1066
+ 90: w
1067
+ },
1068
+ {
1069
+ 73: 79,
1070
+ 75: j,
1071
+ 76: M,
1072
+ 78: 81,
1073
+ 79: 82,
1074
+ 80: N,
1075
+ 81: P,
1076
+ 82: F,
1077
+ 83: I,
1078
+ 84: L,
1079
+ 85: R,
1080
+ 86: z,
1081
+ 87: B,
1082
+ 88: V
1083
+ },
1084
+ e(oe, [2, 60]),
1085
+ e(oe, [2, 62]),
1086
+ {
1087
+ 73: 93,
1088
+ 75: j,
1089
+ 76: M,
1090
+ 78: 81,
1091
+ 79: 82,
1092
+ 80: N,
1093
+ 81: P,
1094
+ 82: F,
1095
+ 83: I,
1096
+ 84: L,
1097
+ 85: R,
1098
+ 86: z,
1099
+ 87: B,
1100
+ 88: V
1101
+ },
1102
+ {
1103
+ 30: 94,
1104
+ 33: 62,
1105
+ 75: E,
1106
+ 76: M,
1107
+ 89: C,
1108
+ 90: w
1109
+ },
1110
+ { 5: [1, 95] },
1111
+ {
1112
+ 30: 96,
1113
+ 33: 62,
1114
+ 75: E,
1115
+ 89: C,
1116
+ 90: w
1117
+ },
1118
+ { 5: [1, 97] },
1119
+ {
1120
+ 30: 98,
1121
+ 33: 62,
1122
+ 75: E,
1123
+ 89: C,
1124
+ 90: w
1125
+ },
1126
+ { 63: [1, 99] },
1127
+ e(H, [2, 50]),
1128
+ e(H, [2, 51]),
1129
+ e(H, [2, 52]),
1130
+ e(H, [2, 53]),
1131
+ e(H, [2, 54]),
1132
+ e(H, [2, 55]),
1133
+ e(H, [2, 56]),
1134
+ { 64: [1, 100] },
1135
+ e(T, [2, 59], { 76: M }),
1136
+ e(T, [2, 64], { 76: se }),
1137
+ {
1138
+ 33: 103,
1139
+ 75: [1, 102],
1140
+ 89: C,
1141
+ 90: w
1142
+ },
1143
+ e(ce, [2, 65], {
1144
+ 79: 104,
1145
+ 75: j,
1146
+ 80: N,
1147
+ 81: P,
1148
+ 82: F,
1149
+ 83: I,
1150
+ 84: L,
1151
+ 85: R,
1152
+ 86: z,
1153
+ 87: B,
1154
+ 88: V
1155
+ }),
1156
+ e(U, [2, 67]),
1157
+ e(U, [2, 69]),
1158
+ e(U, [2, 70]),
1159
+ e(U, [2, 71]),
1160
+ e(U, [2, 72]),
1161
+ e(U, [2, 73]),
1162
+ e(U, [2, 74]),
1163
+ e(U, [2, 75]),
1164
+ e(U, [2, 76]),
1165
+ e(U, [2, 77]),
1166
+ e(U, [2, 78]),
1167
+ e(T, [2, 57], { 76: se }),
1168
+ e(T, [2, 58], { 76: M }),
1169
+ {
1170
+ 5: W,
1171
+ 28: 105,
1172
+ 31: G,
1173
+ 34: K,
1174
+ 36: q,
1175
+ 38: J,
1176
+ 40: Y
1177
+ },
1178
+ {
1179
+ 27: [1, 112],
1180
+ 76: M
1181
+ },
1182
+ {
1183
+ 5: X,
1184
+ 40: Z,
1185
+ 56: 113,
1186
+ 57: Q,
1187
+ 59: $
1188
+ },
1189
+ {
1190
+ 27: [1, 118],
1191
+ 76: M
1192
+ },
1193
+ {
1194
+ 33: 119,
1195
+ 89: C,
1196
+ 90: w
1197
+ },
1198
+ {
1199
+ 33: 120,
1200
+ 89: C,
1201
+ 90: w
1202
+ },
1203
+ {
1204
+ 75: j,
1205
+ 78: 121,
1206
+ 79: 82,
1207
+ 80: N,
1208
+ 81: P,
1209
+ 82: F,
1210
+ 83: I,
1211
+ 84: L,
1212
+ 85: R,
1213
+ 86: z,
1214
+ 87: B,
1215
+ 88: V
1216
+ },
1217
+ e(oe, [2, 61]),
1218
+ e(oe, [2, 63]),
1219
+ e(U, [2, 68]),
1220
+ e(T, [2, 21]),
1221
+ { 32: [1, 122] },
1222
+ { 32: [1, 123] },
1223
+ { 32: [1, 124] },
1224
+ { 32: [1, 125] },
1225
+ {
1226
+ 5: W,
1227
+ 28: 126,
1228
+ 31: G,
1229
+ 34: K,
1230
+ 36: q,
1231
+ 38: J,
1232
+ 40: Y
1233
+ },
1234
+ e(T, [2, 28]),
1235
+ { 5: [1, 127] },
1236
+ e(T, [2, 42]),
1237
+ { 32: [1, 128] },
1238
+ { 32: [1, 129] },
1239
+ {
1240
+ 5: X,
1241
+ 40: Z,
1242
+ 56: 130,
1243
+ 57: Q,
1244
+ 59: $
1245
+ },
1246
+ e(T, [2, 47]),
1247
+ { 5: [1, 131] },
1248
+ e(T, [2, 48]),
1249
+ e(T, [2, 49]),
1250
+ e(ce, [2, 66], {
1251
+ 79: 104,
1252
+ 75: j,
1253
+ 80: N,
1254
+ 81: P,
1255
+ 82: F,
1256
+ 83: I,
1257
+ 84: L,
1258
+ 85: R,
1259
+ 86: z,
1260
+ 87: B,
1261
+ 88: V
1262
+ }),
1263
+ {
1264
+ 33: 132,
1265
+ 89: C,
1266
+ 90: w
1267
+ },
1268
+ {
1269
+ 35: 133,
1270
+ 89: [1, 134],
1271
+ 90: [1, 135]
1272
+ },
1273
+ {
1274
+ 37: 136,
1275
+ 47: [1, 137],
1276
+ 48: [1, 138],
1277
+ 49: [1, 139]
1278
+ },
1279
+ {
1280
+ 39: 140,
1281
+ 50: [1, 141],
1282
+ 51: [1, 142],
1283
+ 52: [1, 143],
1284
+ 53: [1, 144]
1285
+ },
1286
+ e(T, [2, 27]),
1287
+ {
1288
+ 5: W,
1289
+ 28: 145,
1290
+ 31: G,
1291
+ 34: K,
1292
+ 36: q,
1293
+ 38: J,
1294
+ 40: Y
1295
+ },
1296
+ {
1297
+ 58: 146,
1298
+ 89: [1, 147],
1299
+ 90: [1, 148]
1300
+ },
1301
+ {
1302
+ 60: 149,
1303
+ 89: [1, 150],
1304
+ 90: [1, 151]
1305
+ },
1306
+ e(T, [2, 46]),
1307
+ {
1308
+ 5: X,
1309
+ 40: Z,
1310
+ 56: 152,
1311
+ 57: Q,
1312
+ 59: $
1313
+ },
1314
+ { 5: [1, 153] },
1315
+ { 5: [1, 154] },
1316
+ { 5: [2, 83] },
1317
+ { 5: [2, 84] },
1318
+ { 5: [1, 155] },
1319
+ { 5: [2, 35] },
1320
+ { 5: [2, 36] },
1321
+ { 5: [2, 37] },
1322
+ { 5: [1, 156] },
1323
+ { 5: [2, 38] },
1324
+ { 5: [2, 39] },
1325
+ { 5: [2, 40] },
1326
+ { 5: [2, 41] },
1327
+ e(T, [2, 22]),
1328
+ { 5: [1, 157] },
1329
+ { 5: [2, 87] },
1330
+ { 5: [2, 88] },
1331
+ { 5: [1, 158] },
1332
+ { 5: [2, 89] },
1333
+ { 5: [2, 90] },
1334
+ e(T, [2, 43]),
1335
+ {
1336
+ 5: W,
1337
+ 28: 159,
1338
+ 31: G,
1339
+ 34: K,
1340
+ 36: q,
1341
+ 38: J,
1342
+ 40: Y
1343
+ },
1344
+ {
1345
+ 5: W,
1346
+ 28: 160,
1347
+ 31: G,
1348
+ 34: K,
1349
+ 36: q,
1350
+ 38: J,
1351
+ 40: Y
1352
+ },
1353
+ {
1354
+ 5: W,
1355
+ 28: 161,
1356
+ 31: G,
1357
+ 34: K,
1358
+ 36: q,
1359
+ 38: J,
1360
+ 40: Y
1361
+ },
1362
+ {
1363
+ 5: W,
1364
+ 28: 162,
1365
+ 31: G,
1366
+ 34: K,
1367
+ 36: q,
1368
+ 38: J,
1369
+ 40: Y
1370
+ },
1371
+ {
1372
+ 5: X,
1373
+ 40: Z,
1374
+ 56: 163,
1375
+ 57: Q,
1376
+ 59: $
1377
+ },
1378
+ {
1379
+ 5: X,
1380
+ 40: Z,
1381
+ 56: 164,
1382
+ 57: Q,
1383
+ 59: $
1384
+ },
1385
+ e(T, [2, 23]),
1386
+ e(T, [2, 24]),
1387
+ e(T, [2, 25]),
1388
+ e(T, [2, 26]),
1389
+ e(T, [2, 44]),
1390
+ e(T, [2, 45])
1391
+ ],
1392
+ defaultActions: {
1393
+ 8: [2, 2],
1394
+ 12: [2, 1],
1395
+ 41: [2, 3],
1396
+ 42: [2, 8],
1397
+ 43: [2, 9],
1398
+ 44: [2, 10],
1399
+ 45: [2, 11],
1400
+ 46: [2, 12],
1401
+ 47: [2, 13],
1402
+ 48: [2, 14],
1403
+ 49: [2, 15],
1404
+ 50: [2, 16],
1405
+ 134: [2, 83],
1406
+ 135: [2, 84],
1407
+ 137: [2, 35],
1408
+ 138: [2, 36],
1409
+ 139: [2, 37],
1410
+ 141: [2, 38],
1411
+ 142: [2, 39],
1412
+ 143: [2, 40],
1413
+ 144: [2, 41],
1414
+ 147: [2, 87],
1415
+ 148: [2, 88],
1416
+ 150: [2, 89],
1417
+ 151: [2, 90]
1418
+ },
1419
+ parseError: /* @__PURE__ */ __name(function(e, t) {
1420
+ if (t.recoverable) this.trace(e);
1421
+ else {
1422
+ var n = Error(e);
1423
+ throw n.hash = t, n;
1424
+ }
1425
+ }, "parseError"),
1426
+ parse: /* @__PURE__ */ __name(function(e) {
1427
+ 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: {} };
1428
+ for (var _ in this.yy) Object.prototype.hasOwnProperty.call(this.yy, _) && (g.yy[_] = this.yy[_]);
1429
+ h.setInput(e, g.yy), g.yy.lexer = h, g.yy.parser = this, h.yylloc === void 0 && (h.yylloc = {});
1430
+ var v = h.yylloc;
1431
+ o.push(v);
1432
+ var y = h.options && h.options.ranges;
1433
+ typeof g.yy.parseError == "function" ? this.parseError = g.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
1434
+ function b(e) {
1435
+ r.length -= 2 * e, a.length -= e, o.length -= e;
1436
+ }
1437
+ __name(b, "popStack");
1438
+ function x() {
1439
+ var e = i.pop() || h.lex() || p;
1440
+ return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
1441
+ }
1442
+ __name(x, "lex");
1443
+ for (var S, C, w, T, E, D = {}, O, k, ee, A;;) {
1444
+ 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]) {
1445
+ var te = "";
1446
+ for (O in A = [], s[w]) this.terminals_[O] && O > f && A.push("'" + this.terminals_[O] + "'");
1447
+ te = h.showPosition ? "Parse error on line " + (l + 1) + ":\n" + h.showPosition() + "\nExpecting " + A.join(", ") + ", got '" + (this.terminals_[S] || S) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (S == p ? "end of input" : "'" + (this.terminals_[S] || S) + "'"), this.parseError(te, {
1448
+ text: h.match,
1449
+ token: this.terminals_[S] || S,
1450
+ line: h.yylineno,
1451
+ loc: v,
1452
+ expected: A
1453
+ });
1454
+ }
1455
+ if (T[0] instanceof Array && T.length > 1) throw Error("Parse Error: multiple actions possible at state: " + w + ", token: " + S);
1456
+ switch (T[0]) {
1457
+ case 1:
1458
+ 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--);
1459
+ break;
1460
+ case 2:
1461
+ if (k = this.productions_[T[1]][1], D.$ = a[a.length - k], D._$ = {
1462
+ first_line: o[o.length - (k || 1)].first_line,
1463
+ last_line: o[o.length - 1].last_line,
1464
+ first_column: o[o.length - (k || 1)].first_column,
1465
+ last_column: o[o.length - 1].last_column
1466
+ }, y && (D._$.range = [o[o.length - (k || 1)].range[0], o[o.length - 1].range[1]]), E = this.performAction.apply(D, [
1467
+ c,
1468
+ u,
1469
+ l,
1470
+ g.yy,
1471
+ T[1],
1472
+ a,
1473
+ o
1474
+ ].concat(m)), E !== void 0) return E;
1475
+ 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._$), ee = s[r[r.length - 2]][r[r.length - 1]], r.push(ee);
1476
+ break;
1477
+ case 3: return !0;
1478
+ }
1479
+ }
1480
+ return !0;
1481
+ }, "parse")
1482
+ };
1483
+ le.lexer = /* @__PURE__ */ (function() {
1484
+ return {
1485
+ EOF: 1,
1486
+ parseError: /* @__PURE__ */ __name(function(e, t) {
1487
+ if (this.yy.parser) this.yy.parser.parseError(e, t);
1488
+ else throw Error(e);
1489
+ }, "parseError"),
1490
+ setInput: /* @__PURE__ */ __name(function(e, t) {
1491
+ 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 = {
1492
+ first_line: 1,
1493
+ first_column: 0,
1494
+ last_line: 1,
1495
+ last_column: 0
1496
+ }, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
1497
+ }, "setInput"),
1498
+ input: /* @__PURE__ */ __name(function() {
1499
+ var e = this._input[0];
1500
+ 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;
1501
+ }, "input"),
1502
+ unput: /* @__PURE__ */ __name(function(e) {
1503
+ var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
1504
+ this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
1505
+ var r = this.match.split(/(?:\r\n?|\n)/g);
1506
+ 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);
1507
+ var i = this.yylloc.range;
1508
+ return this.yylloc = {
1509
+ first_line: this.yylloc.first_line,
1510
+ last_line: this.yylineno + 1,
1511
+ first_column: this.yylloc.first_column,
1512
+ 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
1513
+ }, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
1514
+ }, "unput"),
1515
+ more: /* @__PURE__ */ __name(function() {
1516
+ return this._more = !0, this;
1517
+ }, "more"),
1518
+ reject: /* @__PURE__ */ __name(function() {
1519
+ if (this.options.backtrack_lexer) this._backtrack = !0;
1520
+ 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(), {
1521
+ text: "",
1522
+ token: null,
1523
+ line: this.yylineno
1524
+ });
1525
+ return this;
1526
+ }, "reject"),
1527
+ less: /* @__PURE__ */ __name(function(e) {
1528
+ this.unput(this.match.slice(e));
1529
+ }, "less"),
1530
+ pastInput: /* @__PURE__ */ __name(function() {
1531
+ var e = this.matched.substr(0, this.matched.length - this.match.length);
1532
+ return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
1533
+ }, "pastInput"),
1534
+ upcomingInput: /* @__PURE__ */ __name(function() {
1535
+ var e = this.match;
1536
+ return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
1537
+ }, "upcomingInput"),
1538
+ showPosition: /* @__PURE__ */ __name(function() {
1539
+ var e = this.pastInput(), t = Array(e.length + 1).join("-");
1540
+ return e + this.upcomingInput() + "\n" + t + "^";
1541
+ }, "showPosition"),
1542
+ test_match: /* @__PURE__ */ __name(function(e, t) {
1543
+ var n, r, i;
1544
+ if (this.options.backtrack_lexer && (i = {
1545
+ yylineno: this.yylineno,
1546
+ yylloc: {
1547
+ first_line: this.yylloc.first_line,
1548
+ last_line: this.last_line,
1549
+ first_column: this.yylloc.first_column,
1550
+ last_column: this.yylloc.last_column
1551
+ },
1552
+ yytext: this.yytext,
1553
+ match: this.match,
1554
+ matches: this.matches,
1555
+ matched: this.matched,
1556
+ yyleng: this.yyleng,
1557
+ offset: this.offset,
1558
+ _more: this._more,
1559
+ _input: this._input,
1560
+ yy: this.yy,
1561
+ conditionStack: this.conditionStack.slice(0),
1562
+ done: this.done
1563
+ }, 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 = {
1564
+ first_line: this.yylloc.last_line,
1565
+ last_line: this.yylineno + 1,
1566
+ first_column: this.yylloc.last_column,
1567
+ last_column: r ? r[r.length - 1].length - r[r.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + e[0].length
1568
+ }, 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;
1569
+ if (this._backtrack) {
1570
+ for (var a in i) this[a] = i[a];
1571
+ return !1;
1572
+ }
1573
+ return !1;
1574
+ }, "test_match"),
1575
+ next: /* @__PURE__ */ __name(function() {
1576
+ if (this.done) return this.EOF;
1577
+ this._input || (this.done = !0);
1578
+ var e, t, n, r;
1579
+ this._more || (this.yytext = "", this.match = "");
1580
+ 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)) {
1581
+ if (t = n, r = a, this.options.backtrack_lexer) {
1582
+ if (e = this.test_match(n, i[a]), e !== !1) return e;
1583
+ if (this._backtrack) {
1584
+ t = !1;
1585
+ continue;
1586
+ } else return !1;
1587
+ } else if (!this.options.flex) break;
1588
+ }
1589
+ 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(), {
1590
+ text: "",
1591
+ token: null,
1592
+ line: this.yylineno
1593
+ });
1594
+ }, "next"),
1595
+ lex: /* @__PURE__ */ __name(function() {
1596
+ return this.next() || this.lex();
1597
+ }, "lex"),
1598
+ begin: /* @__PURE__ */ __name(function(e) {
1599
+ this.conditionStack.push(e);
1600
+ }, "begin"),
1601
+ popState: /* @__PURE__ */ __name(function() {
1602
+ return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
1603
+ }, "popState"),
1604
+ _currentRules: /* @__PURE__ */ __name(function() {
1605
+ return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
1606
+ }, "_currentRules"),
1607
+ topState: /* @__PURE__ */ __name(function(e) {
1608
+ return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
1609
+ }, "topState"),
1610
+ pushState: /* @__PURE__ */ __name(function(e) {
1611
+ this.begin(e);
1612
+ }, "pushState"),
1613
+ stateStackSize: /* @__PURE__ */ __name(function() {
1614
+ return this.conditionStack.length;
1615
+ }, "stateStackSize"),
1616
+ options: { "case-insensitive": !0 },
1617
+ performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
1618
+ switch (n) {
1619
+ case 0: return "title";
1620
+ case 1: return this.begin("acc_title"), 9;
1621
+ case 2: return this.popState(), "acc_title_value";
1622
+ case 3: return this.begin("acc_descr"), 11;
1623
+ case 4: return this.popState(), "acc_descr_value";
1624
+ case 5:
1625
+ this.begin("acc_descr_multiline");
1626
+ break;
1627
+ case 6:
1628
+ this.popState();
1629
+ break;
1630
+ case 7: return "acc_descr_multiline_value";
1631
+ case 8: return 21;
1632
+ case 9: return 22;
1633
+ case 10: return 23;
1634
+ case 11: return 24;
1635
+ case 12: return 5;
1636
+ case 13: break;
1637
+ case 14: break;
1638
+ case 15: break;
1639
+ case 16: return 8;
1640
+ case 17: return 6;
1641
+ case 18: return 27;
1642
+ case 19: return 40;
1643
+ case 20: return 29;
1644
+ case 21: return 32;
1645
+ case 22: return 31;
1646
+ case 23: return 34;
1647
+ case 24: return 36;
1648
+ case 25: return 38;
1649
+ case 26: return 41;
1650
+ case 27: return 42;
1651
+ case 28: return 43;
1652
+ case 29: return 44;
1653
+ case 30: return 45;
1654
+ case 31: return 46;
1655
+ case 32: return 47;
1656
+ case 33: return 48;
1657
+ case 34: return 49;
1658
+ case 35: return 50;
1659
+ case 36: return 51;
1660
+ case 37: return 52;
1661
+ case 38: return 53;
1662
+ case 39: return 54;
1663
+ case 40: return 65;
1664
+ case 41: return 66;
1665
+ case 42: return 67;
1666
+ case 43: return 68;
1667
+ case 44: return 69;
1668
+ case 45: return 70;
1669
+ case 46: return 71;
1670
+ case 47: return 57;
1671
+ case 48: return 59;
1672
+ case 49: return this.begin("style"), 77;
1673
+ case 50: return 75;
1674
+ case 51: return 81;
1675
+ case 52: return 88;
1676
+ case 53: return "PERCENT";
1677
+ case 54: return 86;
1678
+ case 55: return 84;
1679
+ case 56: break;
1680
+ case 57:
1681
+ this.begin("string");
1682
+ break;
1683
+ case 58:
1684
+ this.popState();
1685
+ break;
1686
+ case 59: return this.begin("style"), 72;
1687
+ case 60: return this.begin("style"), 74;
1688
+ case 61: return 61;
1689
+ case 62: return 64;
1690
+ case 63: return 63;
1691
+ case 64:
1692
+ this.begin("string");
1693
+ break;
1694
+ case 65:
1695
+ this.popState();
1696
+ break;
1697
+ case 66: return "qString";
1698
+ case 67: return t.yytext = t.yytext.trim(), 89;
1699
+ case 68: return 75;
1700
+ case 69: return 80;
1701
+ case 70: return 76;
1702
+ }
1703
+ }, "anonymous"),
1704
+ rules: [
1705
+ /^(?:title\s[^#\n;]+)/i,
1706
+ /^(?:accTitle\s*:\s*)/i,
1707
+ /^(?:(?!\n||)*[^\n]*)/i,
1708
+ /^(?:accDescr\s*:\s*)/i,
1709
+ /^(?:(?!\n||)*[^\n]*)/i,
1710
+ /^(?:accDescr\s*\{\s*)/i,
1711
+ /^(?:[\}])/i,
1712
+ /^(?:[^\}]*)/i,
1713
+ /^(?:.*direction\s+TB[^\n]*)/i,
1714
+ /^(?:.*direction\s+BT[^\n]*)/i,
1715
+ /^(?:.*direction\s+RL[^\n]*)/i,
1716
+ /^(?:.*direction\s+LR[^\n]*)/i,
1717
+ /^(?:(\r?\n)+)/i,
1718
+ /^(?:\s+)/i,
1719
+ /^(?:#[^\n]*)/i,
1720
+ /^(?:%[^\n]*)/i,
1721
+ /^(?:$)/i,
1722
+ /^(?:requirementDiagram\b)/i,
1723
+ /^(?:\{)/i,
1724
+ /^(?:\})/i,
1725
+ /^(?::{3})/i,
1726
+ /^(?::)/i,
1727
+ /^(?:id\b)/i,
1728
+ /^(?:text\b)/i,
1729
+ /^(?:risk\b)/i,
1730
+ /^(?:verifyMethod\b)/i,
1731
+ /^(?:requirement\b)/i,
1732
+ /^(?:functionalRequirement\b)/i,
1733
+ /^(?:interfaceRequirement\b)/i,
1734
+ /^(?:performanceRequirement\b)/i,
1735
+ /^(?:physicalRequirement\b)/i,
1736
+ /^(?:designConstraint\b)/i,
1737
+ /^(?:low\b)/i,
1738
+ /^(?:medium\b)/i,
1739
+ /^(?:high\b)/i,
1740
+ /^(?:analysis\b)/i,
1741
+ /^(?:demonstration\b)/i,
1742
+ /^(?:inspection\b)/i,
1743
+ /^(?:test\b)/i,
1744
+ /^(?:element\b)/i,
1745
+ /^(?:contains\b)/i,
1746
+ /^(?:copies\b)/i,
1747
+ /^(?:derives\b)/i,
1748
+ /^(?:satisfies\b)/i,
1749
+ /^(?:verifies\b)/i,
1750
+ /^(?:refines\b)/i,
1751
+ /^(?:traces\b)/i,
1752
+ /^(?:type\b)/i,
1753
+ /^(?:docref\b)/i,
1754
+ /^(?:style\b)/i,
1755
+ /^(?:\w+)/i,
1756
+ /^(?::)/i,
1757
+ /^(?:;)/i,
1758
+ /^(?:%)/i,
1759
+ /^(?:-)/i,
1760
+ /^(?:#)/i,
1761
+ /^(?: )/i,
1762
+ /^(?:["])/i,
1763
+ /^(?:\n)/i,
1764
+ /^(?:classDef\b)/i,
1765
+ /^(?:class\b)/i,
1766
+ /^(?:<-)/i,
1767
+ /^(?:->)/i,
1768
+ /^(?:-)/i,
1769
+ /^(?:["])/i,
1770
+ /^(?:["])/i,
1771
+ /^(?:[^"]*)/i,
1772
+ /^(?:[\w][^:,\r\n\{\<\>\-\=]*)/i,
1773
+ /^(?:\w+)/i,
1774
+ /^(?:[0-9]+)/i,
1775
+ /^(?:,)/i
1776
+ ],
1777
+ conditions: {
1778
+ acc_descr_multiline: {
1779
+ rules: [
1780
+ 6,
1781
+ 7,
1782
+ 68,
1783
+ 69,
1784
+ 70
1785
+ ],
1786
+ inclusive: !1
1787
+ },
1788
+ acc_descr: {
1789
+ rules: [
1790
+ 4,
1791
+ 68,
1792
+ 69,
1793
+ 70
1794
+ ],
1795
+ inclusive: !1
1796
+ },
1797
+ acc_title: {
1798
+ rules: [
1799
+ 2,
1800
+ 68,
1801
+ 69,
1802
+ 70
1803
+ ],
1804
+ inclusive: !1
1805
+ },
1806
+ style: {
1807
+ rules: [
1808
+ 50,
1809
+ 51,
1810
+ 52,
1811
+ 53,
1812
+ 54,
1813
+ 55,
1814
+ 56,
1815
+ 57,
1816
+ 58,
1817
+ 68,
1818
+ 69,
1819
+ 70
1820
+ ],
1821
+ inclusive: !1
1822
+ },
1823
+ unqString: {
1824
+ rules: [
1825
+ 68,
1826
+ 69,
1827
+ 70
1828
+ ],
1829
+ inclusive: !1
1830
+ },
1831
+ token: {
1832
+ rules: [
1833
+ 68,
1834
+ 69,
1835
+ 70
1836
+ ],
1837
+ inclusive: !1
1838
+ },
1839
+ string: {
1840
+ rules: [
1841
+ 65,
1842
+ 66,
1843
+ 68,
1844
+ 69,
1845
+ 70
1846
+ ],
1847
+ inclusive: !1
1848
+ },
1849
+ INITIAL: {
1850
+ rules: [
1851
+ 0,
1852
+ 1,
1853
+ 3,
1854
+ 5,
1855
+ 8,
1856
+ 9,
1857
+ 10,
1858
+ 11,
1859
+ 12,
1860
+ 13,
1861
+ 14,
1862
+ 15,
1863
+ 16,
1864
+ 17,
1865
+ 18,
1866
+ 19,
1867
+ 20,
1868
+ 21,
1869
+ 22,
1870
+ 23,
1871
+ 24,
1872
+ 25,
1873
+ 26,
1874
+ 27,
1875
+ 28,
1876
+ 29,
1877
+ 30,
1878
+ 31,
1879
+ 32,
1880
+ 33,
1881
+ 34,
1882
+ 35,
1883
+ 36,
1884
+ 37,
1885
+ 38,
1886
+ 39,
1887
+ 40,
1888
+ 41,
1889
+ 42,
1890
+ 43,
1891
+ 44,
1892
+ 45,
1893
+ 46,
1894
+ 47,
1895
+ 48,
1896
+ 49,
1897
+ 59,
1898
+ 60,
1899
+ 61,
1900
+ 62,
1901
+ 63,
1902
+ 64,
1903
+ 67,
1904
+ 68,
1905
+ 69,
1906
+ 70
1907
+ ],
1908
+ inclusive: !0
1909
+ }
1910
+ }
1911
+ };
1912
+ })();
1913
+ function ue() {
1914
+ this.yy = {};
1915
+ }
1916
+ return __name(ue, "Parser"), ue.prototype = le, le.Parser = ue, new ue();
1917
+ })();
1918
+ parser.parser = parser;
1919
+ var requirementDiagram_default = parser, RequirementDB = class {
1920
+ constructor() {
1921
+ this.relations = [], this.latestRequirement = this.getInitialRequirement(), this.requirements = /* @__PURE__ */ new Map(), this.latestElement = this.getInitialElement(), this.elements = /* @__PURE__ */ new Map(), this.classes = /* @__PURE__ */ new Map(), this.direction = "TB", this.RequirementType = {
1922
+ REQUIREMENT: "Requirement",
1923
+ FUNCTIONAL_REQUIREMENT: "Functional Requirement",
1924
+ INTERFACE_REQUIREMENT: "Interface Requirement",
1925
+ PERFORMANCE_REQUIREMENT: "Performance Requirement",
1926
+ PHYSICAL_REQUIREMENT: "Physical Requirement",
1927
+ DESIGN_CONSTRAINT: "Design Constraint"
1928
+ }, this.RiskLevel = {
1929
+ LOW_RISK: "Low",
1930
+ MED_RISK: "Medium",
1931
+ HIGH_RISK: "High"
1932
+ }, this.VerifyType = {
1933
+ VERIFY_ANALYSIS: "Analysis",
1934
+ VERIFY_DEMONSTRATION: "Demonstration",
1935
+ VERIFY_INSPECTION: "Inspection",
1936
+ VERIFY_TEST: "Test"
1937
+ }, this.Relationships = {
1938
+ CONTAINS: "contains",
1939
+ COPIES: "copies",
1940
+ DERIVES: "derives",
1941
+ SATISFIES: "satisfies",
1942
+ VERIFIES: "verifies",
1943
+ REFINES: "refines",
1944
+ TRACES: "traces"
1945
+ }, this.setAccTitle = setAccTitle, this.getAccTitle = getAccTitle, this.setAccDescription = setAccDescription, this.getAccDescription = getAccDescription, this.setDiagramTitle = setDiagramTitle, this.getDiagramTitle = getDiagramTitle, this.getConfig = /* @__PURE__ */ __name(() => getConfig2().requirement, "getConfig"), this.clear(), this.setDirection = this.setDirection.bind(this), this.addRequirement = this.addRequirement.bind(this), this.setNewReqId = this.setNewReqId.bind(this), this.setNewReqRisk = this.setNewReqRisk.bind(this), this.setNewReqText = this.setNewReqText.bind(this), this.setNewReqVerifyMethod = this.setNewReqVerifyMethod.bind(this), this.addElement = this.addElement.bind(this), this.setNewElementType = this.setNewElementType.bind(this), this.setNewElementDocRef = this.setNewElementDocRef.bind(this), this.addRelationship = this.addRelationship.bind(this), this.setCssStyle = this.setCssStyle.bind(this), this.setClass = this.setClass.bind(this), this.defineClass = this.defineClass.bind(this), this.setAccTitle = this.setAccTitle.bind(this), this.setAccDescription = this.setAccDescription.bind(this);
1946
+ }
1947
+ static #e = __name(this, "RequirementDB");
1948
+ getDirection() {
1949
+ return this.direction;
1950
+ }
1951
+ setDirection(e) {
1952
+ this.direction = e;
1953
+ }
1954
+ resetLatestRequirement() {
1955
+ this.latestRequirement = this.getInitialRequirement();
1956
+ }
1957
+ resetLatestElement() {
1958
+ this.latestElement = this.getInitialElement();
1959
+ }
1960
+ getInitialRequirement() {
1961
+ return {
1962
+ requirementId: "",
1963
+ text: "",
1964
+ risk: "",
1965
+ verifyMethod: "",
1966
+ name: "",
1967
+ type: "",
1968
+ cssStyles: [],
1969
+ classes: ["default"]
1970
+ };
1971
+ }
1972
+ getInitialElement() {
1973
+ return {
1974
+ name: "",
1975
+ type: "",
1976
+ docRef: "",
1977
+ cssStyles: [],
1978
+ classes: ["default"]
1979
+ };
1980
+ }
1981
+ addRequirement(e, t) {
1982
+ return this.requirements.has(e) || this.requirements.set(e, {
1983
+ name: e,
1984
+ type: t,
1985
+ requirementId: this.latestRequirement.requirementId,
1986
+ text: this.latestRequirement.text,
1987
+ risk: this.latestRequirement.risk,
1988
+ verifyMethod: this.latestRequirement.verifyMethod,
1989
+ cssStyles: [],
1990
+ classes: ["default"]
1991
+ }), this.resetLatestRequirement(), this.requirements.get(e);
1992
+ }
1993
+ getRequirements() {
1994
+ return this.requirements;
1995
+ }
1996
+ setNewReqId(e) {
1997
+ this.latestRequirement !== void 0 && (this.latestRequirement.requirementId = e);
1998
+ }
1999
+ setNewReqText(e) {
2000
+ this.latestRequirement !== void 0 && (this.latestRequirement.text = e);
2001
+ }
2002
+ setNewReqRisk(e) {
2003
+ this.latestRequirement !== void 0 && (this.latestRequirement.risk = e);
2004
+ }
2005
+ setNewReqVerifyMethod(e) {
2006
+ this.latestRequirement !== void 0 && (this.latestRequirement.verifyMethod = e);
2007
+ }
2008
+ addElement(e) {
2009
+ return this.elements.has(e) || (this.elements.set(e, {
2010
+ name: e,
2011
+ type: this.latestElement.type,
2012
+ docRef: this.latestElement.docRef,
2013
+ cssStyles: [],
2014
+ classes: ["default"]
2015
+ }), log.info("Added new element: ", e)), this.resetLatestElement(), this.elements.get(e);
2016
+ }
2017
+ getElements() {
2018
+ return this.elements;
2019
+ }
2020
+ setNewElementType(e) {
2021
+ this.latestElement !== void 0 && (this.latestElement.type = e);
2022
+ }
2023
+ setNewElementDocRef(e) {
2024
+ this.latestElement !== void 0 && (this.latestElement.docRef = e);
2025
+ }
2026
+ addRelationship(e, t, n) {
2027
+ this.relations.push({
2028
+ type: e,
2029
+ src: t,
2030
+ dst: n
2031
+ });
2032
+ }
2033
+ getRelationships() {
2034
+ return this.relations;
2035
+ }
2036
+ clear() {
2037
+ this.relations = [], this.resetLatestRequirement(), this.requirements = /* @__PURE__ */ new Map(), this.resetLatestElement(), this.elements = /* @__PURE__ */ new Map(), this.classes = /* @__PURE__ */ new Map(), clear();
2038
+ }
2039
+ setCssStyle(e, t) {
2040
+ for (let n of e) {
2041
+ let e = this.requirements.get(n) ?? this.elements.get(n);
2042
+ if (!t || !e) return;
2043
+ for (let n of t) n.includes(",") ? e.cssStyles.push(...n.split(",")) : e.cssStyles.push(n);
2044
+ }
2045
+ }
2046
+ setClass(e, t) {
2047
+ for (let n of e) {
2048
+ let e = this.requirements.get(n) ?? this.elements.get(n);
2049
+ if (e) for (let n of t) {
2050
+ e.classes.push(n);
2051
+ let t = this.classes.get(n)?.styles;
2052
+ t && e.cssStyles.push(...t);
2053
+ }
2054
+ }
2055
+ }
2056
+ defineClass(e, t) {
2057
+ for (let n of e) {
2058
+ let e = this.classes.get(n);
2059
+ e === void 0 && (e = {
2060
+ id: n,
2061
+ styles: [],
2062
+ textStyles: []
2063
+ }, this.classes.set(n, e)), t && t.forEach(function(t) {
2064
+ if (/color/.exec(t)) {
2065
+ let n = t.replace("fill", "bgFill");
2066
+ e.textStyles.push(n);
2067
+ }
2068
+ e.styles.push(t);
2069
+ }), this.requirements.forEach((e) => {
2070
+ e.classes.includes(n) && e.cssStyles.push(...t.flatMap((e) => e.split(",")));
2071
+ }), this.elements.forEach((e) => {
2072
+ e.classes.includes(n) && e.cssStyles.push(...t.flatMap((e) => e.split(",")));
2073
+ });
2074
+ }
2075
+ }
2076
+ getClasses() {
2077
+ return this.classes;
2078
+ }
2079
+ getData() {
2080
+ let e = getConfig2(), t = [], n = [];
2081
+ for (let n of this.requirements.values()) {
2082
+ let r = n;
2083
+ r.id = n.name, r.cssStyles = n.cssStyles, r.cssClasses = n.classes.join(" "), r.shape = "requirementBox", r.look = e.look, t.push(r);
2084
+ }
2085
+ for (let n of this.elements.values()) {
2086
+ let r = n;
2087
+ r.shape = "requirementBox", r.look = e.look, r.id = n.name, r.cssStyles = n.cssStyles, r.cssClasses = n.classes.join(" "), t.push(r);
2088
+ }
2089
+ for (let t of this.relations) {
2090
+ let r = 0, i = t.type === this.Relationships.CONTAINS, a = {
2091
+ id: `${t.src}-${t.dst}-${r}`,
2092
+ start: this.requirements.get(t.src)?.name ?? this.elements.get(t.src)?.name,
2093
+ end: this.requirements.get(t.dst)?.name ?? this.elements.get(t.dst)?.name,
2094
+ label: `&lt;&lt;${t.type}&gt;&gt;`,
2095
+ classes: "relationshipLine",
2096
+ style: ["fill:none", i ? "" : "stroke-dasharray: 10,7"],
2097
+ labelpos: "c",
2098
+ thickness: "normal",
2099
+ type: "normal",
2100
+ pattern: i ? "normal" : "dashed",
2101
+ arrowTypeStart: i ? "requirement_contains" : "",
2102
+ arrowTypeEnd: i ? "" : "requirement_arrow",
2103
+ look: e.look
2104
+ };
2105
+ n.push(a), r++;
2106
+ }
2107
+ return {
2108
+ nodes: t,
2109
+ edges: n,
2110
+ other: {},
2111
+ config: e,
2112
+ direction: this.getDirection()
2113
+ };
2114
+ }
2115
+ }, styles_default = /* @__PURE__ */ __name((e) => `
2116
+
2117
+ marker {
2118
+ fill: ${e.relationColor};
2119
+ stroke: ${e.relationColor};
2120
+ }
2121
+
2122
+ marker.cross {
2123
+ stroke: ${e.lineColor};
2124
+ }
2125
+
2126
+ svg {
2127
+ font-family: ${e.fontFamily};
2128
+ font-size: ${e.fontSize};
2129
+ }
2130
+
2131
+ .reqBox {
2132
+ fill: ${e.requirementBackground};
2133
+ fill-opacity: 1.0;
2134
+ stroke: ${e.requirementBorderColor};
2135
+ stroke-width: ${e.requirementBorderSize};
2136
+ }
2137
+
2138
+ .reqTitle, .reqLabel{
2139
+ fill: ${e.requirementTextColor};
2140
+ }
2141
+ .reqLabelBox {
2142
+ fill: ${e.relationLabelBackground};
2143
+ fill-opacity: 1.0;
2144
+ }
2145
+
2146
+ .req-title-line {
2147
+ stroke: ${e.requirementBorderColor};
2148
+ stroke-width: ${e.requirementBorderSize};
2149
+ }
2150
+ .relationshipLine {
2151
+ stroke: ${e.relationColor};
2152
+ stroke-width: 1;
2153
+ }
2154
+ .relationshipLabel {
2155
+ fill: ${e.relationLabelColor};
2156
+ }
2157
+ .divider {
2158
+ stroke: ${e.nodeBorder};
2159
+ stroke-width: 1;
2160
+ }
2161
+ .label {
2162
+ font-family: ${e.fontFamily};
2163
+ color: ${e.nodeTextColor || e.textColor};
2164
+ }
2165
+ .label text,span {
2166
+ fill: ${e.nodeTextColor || e.textColor};
2167
+ color: ${e.nodeTextColor || e.textColor};
2168
+ }
2169
+ .labelBkg {
2170
+ background-color: ${e.edgeLabelBackground};
2171
+ }
2172
+
2173
+ `, "getStyles"), requirementRenderer_exports = {};
2174
+ __export(requirementRenderer_exports, { draw: () => draw });
2175
+ var draw = /* @__PURE__ */ __name(async function(e, t, r, i) {
2176
+ log.info("REF0:"), log.info("Drawing requirement diagram (unified)", t);
2177
+ let { securityLevel: a, state: s, layout: c } = getConfig2(), l = i.db.getData(), u = getDiagramElement(t, a);
2178
+ l.type = i.type, l.layoutAlgorithm = getRegisteredLayoutAlgorithm(c), l.nodeSpacing = s?.nodeSpacing ?? 50, l.rankSpacing = s?.rankSpacing ?? 50, l.markers = ["requirement_contains", "requirement_arrow"], l.diagramId = t, await render(l, u), utils_default.insertTitle(u, "requirementDiagramTitleText", s?.titleTopMargin ?? 25, i.db.getDiagramTitle()), setupViewPortForSVG(u, 8, "requirementDiagram", s?.useMaxWidth ?? !0);
2179
+ }, "draw"), diagram = {
2180
+ parser: requirementDiagram_default,
2181
+ get db() {
2182
+ return new RequirementDB();
2183
+ },
2184
+ renderer: requirementRenderer_exports,
2185
+ styles: styles_default
2186
+ };
2187
+ export { diagram };