@wzh-/ai-chat-example 1.0.1 → 1.0.3

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 (987) hide show
  1. package/dist/App.vue.d.ts +2 -0
  2. package/dist/components/ChatConversation/ChatConversation.vue.d.ts +7 -0
  3. package/dist/components/ChatConversation/index.d.ts +1 -0
  4. package/dist/components/ChatPromptInputProvider/ChatPromptInputProvider.vue.d.ts +17 -0
  5. package/dist/components/ChatPromptInputProvider/index.d.ts +1 -0
  6. package/dist/components/ai-elements/artifact/Artifact.vue.d.ts +21 -0
  7. package/dist/components/ai-elements/artifact/ArtifactAction.vue.d.ts +32 -0
  8. package/dist/components/ai-elements/artifact/ArtifactActions.vue.d.ts +21 -0
  9. package/dist/components/ai-elements/artifact/ArtifactClose.vue.d.ts +27 -0
  10. package/dist/components/ai-elements/artifact/ArtifactContent.vue.d.ts +21 -0
  11. package/dist/components/ai-elements/artifact/ArtifactDescription.vue.d.ts +21 -0
  12. package/dist/components/ai-elements/artifact/ArtifactHeader.vue.d.ts +21 -0
  13. package/dist/components/ai-elements/artifact/ArtifactTitle.vue.d.ts +21 -0
  14. package/dist/components/ai-elements/artifact/index.d.ts +8 -0
  15. package/dist/components/ai-elements/canvas/index.d.ts +1 -0
  16. package/dist/components/ai-elements/chain-of-thought/ChainOfThought.vue.d.ts +30 -0
  17. package/dist/components/ai-elements/chain-of-thought/ChainOfThoughtContent.vue.d.ts +21 -0
  18. package/dist/components/ai-elements/chain-of-thought/ChainOfThoughtHeader.vue.d.ts +21 -0
  19. package/dist/components/ai-elements/chain-of-thought/ChainOfThoughtImage.vue.d.ts +22 -0
  20. package/dist/components/ai-elements/chain-of-thought/ChainOfThoughtSearchResult.vue.d.ts +21 -0
  21. package/dist/components/ai-elements/chain-of-thought/ChainOfThoughtSearchResults.vue.d.ts +21 -0
  22. package/dist/components/ai-elements/chain-of-thought/ChainOfThoughtStep.vue.d.ts +28 -0
  23. package/dist/components/ai-elements/chain-of-thought/context.d.ts +6 -0
  24. package/dist/components/ai-elements/chain-of-thought/index.d.ts +7 -0
  25. package/dist/components/ai-elements/checkpoint/Checkpoint.vue.d.ts +21 -0
  26. package/dist/components/ai-elements/checkpoint/CheckpointIcon.vue.d.ts +21 -0
  27. package/dist/components/ai-elements/checkpoint/CheckpointTrigger.vue.d.ts +27 -0
  28. package/dist/components/ai-elements/checkpoint/index.d.ts +3 -0
  29. package/dist/components/ai-elements/code-block/CodeBlock.vue.d.ts +27 -0
  30. package/dist/components/ai-elements/code-block/CodeBlockCopyButton.vue.d.ts +30 -0
  31. package/dist/components/ai-elements/code-block/context.d.ts +5 -0
  32. package/dist/components/ai-elements/code-block/index.d.ts +2 -0
  33. package/dist/components/ai-elements/code-block/utils.d.ts +2 -0
  34. package/dist/components/ai-elements/confirmation/Confirmation.vue.d.ts +25 -0
  35. package/dist/components/ai-elements/confirmation/ConfirmationAccepted.vue.d.ts +17 -0
  36. package/dist/components/ai-elements/confirmation/ConfirmationAction.vue.d.ts +17 -0
  37. package/dist/components/ai-elements/confirmation/ConfirmationActions.vue.d.ts +21 -0
  38. package/dist/components/ai-elements/confirmation/ConfirmationRejected.vue.d.ts +17 -0
  39. package/dist/components/ai-elements/confirmation/ConfirmationRequest.vue.d.ts +17 -0
  40. package/dist/components/ai-elements/confirmation/ConfirmationTitle.vue.d.ts +21 -0
  41. package/dist/components/ai-elements/confirmation/context.d.ts +29 -0
  42. package/dist/components/ai-elements/confirmation/index.d.ts +7 -0
  43. package/dist/components/ai-elements/connection/Connection.vue.d.ts +3 -0
  44. package/dist/components/ai-elements/connection/index.d.ts +1 -0
  45. package/dist/components/ai-elements/context/Context.vue.d.ts +25 -0
  46. package/dist/components/ai-elements/context/ContextCacheUsage.vue.d.ts +21 -0
  47. package/dist/components/ai-elements/context/ContextContent.vue.d.ts +21 -0
  48. package/dist/components/ai-elements/context/ContextContentBody.vue.d.ts +21 -0
  49. package/dist/components/ai-elements/context/ContextContentFooter.vue.d.ts +21 -0
  50. package/dist/components/ai-elements/context/ContextContentHeader.vue.d.ts +21 -0
  51. package/dist/components/ai-elements/context/ContextIcon.vue.d.ts +2 -0
  52. package/dist/components/ai-elements/context/ContextInputUsage.vue.d.ts +21 -0
  53. package/dist/components/ai-elements/context/ContextOutputUsage.vue.d.ts +21 -0
  54. package/dist/components/ai-elements/context/ContextReasoningUsage.vue.d.ts +21 -0
  55. package/dist/components/ai-elements/context/ContextTrigger.vue.d.ts +17 -0
  56. package/dist/components/ai-elements/context/TokensWithCost.vue.d.ts +6 -0
  57. package/dist/components/ai-elements/context/context.d.ts +11 -0
  58. package/dist/components/ai-elements/context/index.d.ts +12 -0
  59. package/dist/components/ai-elements/controls/Controls.vue.d.ts +6 -0
  60. package/dist/components/ai-elements/controls/index.d.ts +1 -0
  61. package/dist/components/ai-elements/conversation/Conversation.vue.d.ts +47 -0
  62. package/dist/components/ai-elements/conversation/ConversationContent.vue.d.ts +21 -0
  63. package/dist/components/ai-elements/conversation/ConversationEmptyState.vue.d.ts +27 -0
  64. package/dist/components/ai-elements/conversation/ConversationScrollButton.vue.d.ts +6 -0
  65. package/dist/components/ai-elements/conversation/index.d.ts +4 -0
  66. package/dist/components/ai-elements/edge/Animated.vue.d.ts +4 -0
  67. package/dist/components/ai-elements/edge/Temporary.vue.d.ts +4 -0
  68. package/dist/components/ai-elements/edge/index.d.ts +2 -0
  69. package/dist/components/ai-elements/image/Image.vue.d.ts +8 -0
  70. package/dist/components/ai-elements/image/index.d.ts +1 -0
  71. package/dist/components/ai-elements/inline-citation/InlineCitation.vue.d.ts +21 -0
  72. package/dist/components/ai-elements/inline-citation/InlineCitationCard.vue.d.ts +24 -0
  73. package/dist/components/ai-elements/inline-citation/InlineCitationCardBody.vue.d.ts +21 -0
  74. package/dist/components/ai-elements/inline-citation/InlineCitationCardTrigger.vue.d.ts +7 -0
  75. package/dist/components/ai-elements/inline-citation/InlineCitationCarousel.vue.d.ts +21 -0
  76. package/dist/components/ai-elements/inline-citation/InlineCitationCarouselContent.vue.d.ts +17 -0
  77. package/dist/components/ai-elements/inline-citation/InlineCitationCarouselHeader.vue.d.ts +21 -0
  78. package/dist/components/ai-elements/inline-citation/InlineCitationCarouselIndex.vue.d.ts +21 -0
  79. package/dist/components/ai-elements/inline-citation/InlineCitationCarouselItem.vue.d.ts +21 -0
  80. package/dist/components/ai-elements/inline-citation/InlineCitationCarouselNext.vue.d.ts +6 -0
  81. package/dist/components/ai-elements/inline-citation/InlineCitationCarouselPrev.vue.d.ts +6 -0
  82. package/dist/components/ai-elements/inline-citation/InlineCitationQuote.vue.d.ts +21 -0
  83. package/dist/components/ai-elements/inline-citation/InlineCitationSource.vue.d.ts +24 -0
  84. package/dist/components/ai-elements/inline-citation/InlineCitationText.vue.d.ts +21 -0
  85. package/dist/components/ai-elements/inline-citation/index.d.ts +14 -0
  86. package/dist/components/ai-elements/loader/Loader.vue.d.ts +9 -0
  87. package/dist/components/ai-elements/loader/LoaderIcon.vue.d.ts +7 -0
  88. package/dist/components/ai-elements/loader/index.d.ts +2 -0
  89. package/dist/components/ai-elements/message/Message.vue.d.ts +23 -0
  90. package/dist/components/ai-elements/message/MessageAction.vue.d.ts +28 -0
  91. package/dist/components/ai-elements/message/MessageActions.vue.d.ts +21 -0
  92. package/dist/components/ai-elements/message/MessageAttachment.vue.d.ts +12 -0
  93. package/dist/components/ai-elements/message/MessageAttachments.vue.d.ts +21 -0
  94. package/dist/components/ai-elements/message/MessageAvatar.vue.d.ts +8 -0
  95. package/dist/components/ai-elements/message/MessageBranch.vue.d.ts +28 -0
  96. package/dist/components/ai-elements/message/MessageBranchContent.vue.d.ts +6 -0
  97. package/dist/components/ai-elements/message/MessageBranchNext.vue.d.ts +17 -0
  98. package/dist/components/ai-elements/message/MessageBranchPage.vue.d.ts +6 -0
  99. package/dist/components/ai-elements/message/MessageBranchPrevious.vue.d.ts +17 -0
  100. package/dist/components/ai-elements/message/MessageBranchSelector.vue.d.ts +21 -0
  101. package/dist/components/ai-elements/message/MessageContent.vue.d.ts +21 -0
  102. package/dist/components/ai-elements/message/MessageResponse.vue.d.ts +7 -0
  103. package/dist/components/ai-elements/message/MessageToolbar.vue.d.ts +21 -0
  104. package/dist/components/ai-elements/message/context.d.ts +11 -0
  105. package/dist/components/ai-elements/message/index.d.ts +15 -0
  106. package/dist/components/ai-elements/model-selector/ModelSelector.vue.d.ts +17 -0
  107. package/dist/components/ai-elements/model-selector/ModelSelectorContent.vue.d.ts +24 -0
  108. package/dist/components/ai-elements/model-selector/ModelSelectorDialog.vue.d.ts +17 -0
  109. package/dist/components/ai-elements/model-selector/ModelSelectorEmpty.vue.d.ts +17 -0
  110. package/dist/components/ai-elements/model-selector/ModelSelectorGroup.vue.d.ts +17 -0
  111. package/dist/components/ai-elements/model-selector/ModelSelectorInput.vue.d.ts +6 -0
  112. package/dist/components/ai-elements/model-selector/ModelSelectorItem.vue.d.ts +17 -0
  113. package/dist/components/ai-elements/model-selector/ModelSelectorList.vue.d.ts +17 -0
  114. package/dist/components/ai-elements/model-selector/ModelSelectorLogo.vue.d.ts +7 -0
  115. package/dist/components/ai-elements/model-selector/ModelSelectorLogoGroup.vue.d.ts +21 -0
  116. package/dist/components/ai-elements/model-selector/ModelSelectorName.vue.d.ts +21 -0
  117. package/dist/components/ai-elements/model-selector/ModelSelectorSeparator.vue.d.ts +2 -0
  118. package/dist/components/ai-elements/model-selector/ModelSelectorShortcut.vue.d.ts +17 -0
  119. package/dist/components/ai-elements/model-selector/ModelSelectorTrigger.vue.d.ts +17 -0
  120. package/dist/components/ai-elements/model-selector/index.d.ts +14 -0
  121. package/dist/components/ai-elements/node/Node.vue.d.ts +26 -0
  122. package/dist/components/ai-elements/node/NodeAction.vue.d.ts +17 -0
  123. package/dist/components/ai-elements/node/NodeContent.vue.d.ts +21 -0
  124. package/dist/components/ai-elements/node/NodeDescription.vue.d.ts +17 -0
  125. package/dist/components/ai-elements/node/NodeFooter.vue.d.ts +21 -0
  126. package/dist/components/ai-elements/node/NodeHeader.vue.d.ts +21 -0
  127. package/dist/components/ai-elements/node/NodeTitle.vue.d.ts +17 -0
  128. package/dist/components/ai-elements/node/index.d.ts +7 -0
  129. package/dist/components/ai-elements/open-in-chat/OpenIn.vue.d.ts +20 -0
  130. package/dist/components/ai-elements/open-in-chat/OpenInContent.vue.d.ts +21 -0
  131. package/dist/components/ai-elements/open-in-chat/OpenInItemLink.vue.d.ts +8 -0
  132. package/dist/components/ai-elements/open-in-chat/OpenInTrigger.vue.d.ts +17 -0
  133. package/dist/components/ai-elements/open-in-chat/context.d.ts +7 -0
  134. package/dist/components/ai-elements/open-in-chat/index.d.ts +9 -0
  135. package/dist/components/ai-elements/open-in-chat/providers/icons/ChatGPT.vue.d.ts +2 -0
  136. package/dist/components/ai-elements/open-in-chat/providers/icons/Claude.vue.d.ts +2 -0
  137. package/dist/components/ai-elements/open-in-chat/providers/icons/Cursor.vue.d.ts +2 -0
  138. package/dist/components/ai-elements/open-in-chat/providers/icons/Github.vue.d.ts +2 -0
  139. package/dist/components/ai-elements/open-in-chat/providers/icons/Scira.vue.d.ts +2 -0
  140. package/dist/components/ai-elements/open-in-chat/providers/icons/V0.vue.d.ts +2 -0
  141. package/dist/components/ai-elements/open-in-chat/providers/icons/index.d.ts +6 -0
  142. package/dist/components/ai-elements/open-in-chat/providers/index.d.ts +38 -0
  143. package/dist/components/ai-elements/open-in-chat/providers/items/OpenInChatGPT.vue.d.ts +2 -0
  144. package/dist/components/ai-elements/open-in-chat/providers/items/OpenInClaude.vue.d.ts +2 -0
  145. package/dist/components/ai-elements/open-in-chat/providers/items/OpenInCursor.vue.d.ts +2 -0
  146. package/dist/components/ai-elements/open-in-chat/providers/items/OpenInScira.vue.d.ts +2 -0
  147. package/dist/components/ai-elements/open-in-chat/providers/items/OpenInT3.vue.d.ts +2 -0
  148. package/dist/components/ai-elements/open-in-chat/providers/items/OpenInv0.vue.d.ts +2 -0
  149. package/dist/components/ai-elements/panel/Panel.vue.d.ts +25 -0
  150. package/dist/components/ai-elements/panel/index.d.ts +1 -0
  151. package/dist/components/ai-elements/plan/Plan.vue.d.ts +24 -0
  152. package/dist/components/ai-elements/plan/PlanAction.vue.d.ts +17 -0
  153. package/dist/components/ai-elements/plan/PlanContent.vue.d.ts +17 -0
  154. package/dist/components/ai-elements/plan/PlanDescription.vue.d.ts +22 -0
  155. package/dist/components/ai-elements/plan/PlanFooter.vue.d.ts +17 -0
  156. package/dist/components/ai-elements/plan/PlanHeader.vue.d.ts +21 -0
  157. package/dist/components/ai-elements/plan/PlanTitle.vue.d.ts +18 -0
  158. package/dist/components/ai-elements/plan/PlanTrigger.vue.d.ts +6 -0
  159. package/dist/components/ai-elements/plan/context.d.ts +7 -0
  160. package/dist/components/ai-elements/plan/index.d.ts +8 -0
  161. package/dist/components/ai-elements/prompt-input/PromptInput.vue.d.ts +46 -0
  162. package/dist/components/ai-elements/prompt-input/PromptInputActionAddAttachments.vue.d.ts +7 -0
  163. package/dist/components/ai-elements/prompt-input/PromptInputActionMenu.vue.d.ts +21 -0
  164. package/dist/components/ai-elements/prompt-input/PromptInputActionMenuContent.vue.d.ts +23 -0
  165. package/dist/components/ai-elements/prompt-input/PromptInputActionMenuItem.vue.d.ts +23 -0
  166. package/dist/components/ai-elements/prompt-input/PromptInputActionMenuTrigger.vue.d.ts +23 -0
  167. package/dist/components/ai-elements/prompt-input/PromptInputAttachment.vue.d.ts +8 -0
  168. package/dist/components/ai-elements/prompt-input/PromptInputAttachments.vue.d.ts +23 -0
  169. package/dist/components/ai-elements/prompt-input/PromptInputBody.vue.d.ts +21 -0
  170. package/dist/components/ai-elements/prompt-input/PromptInputButton.vue.d.ts +20 -0
  171. package/dist/components/ai-elements/prompt-input/PromptInputCommand.vue.d.ts +23 -0
  172. package/dist/components/ai-elements/prompt-input/PromptInputCommandEmpty.vue.d.ts +23 -0
  173. package/dist/components/ai-elements/prompt-input/PromptInputCommandGroup.vue.d.ts +23 -0
  174. package/dist/components/ai-elements/prompt-input/PromptInputCommandInput.vue.d.ts +8 -0
  175. package/dist/components/ai-elements/prompt-input/PromptInputCommandItem.vue.d.ts +23 -0
  176. package/dist/components/ai-elements/prompt-input/PromptInputCommandList.vue.d.ts +8 -0
  177. package/dist/components/ai-elements/prompt-input/PromptInputCommandSeparator.vue.d.ts +8 -0
  178. package/dist/components/ai-elements/prompt-input/PromptInputFooter.vue.d.ts +23 -0
  179. package/dist/components/ai-elements/prompt-input/PromptInputHeader.vue.d.ts +23 -0
  180. package/dist/components/ai-elements/prompt-input/PromptInputHoverCard.vue.d.ts +26 -0
  181. package/dist/components/ai-elements/prompt-input/PromptInputHoverCardContent.vue.d.ts +23 -0
  182. package/dist/components/ai-elements/prompt-input/PromptInputHoverCardTrigger.vue.d.ts +21 -0
  183. package/dist/components/ai-elements/prompt-input/PromptInputProvider.vue.d.ts +43 -0
  184. package/dist/components/ai-elements/prompt-input/PromptInputSelect.vue.d.ts +21 -0
  185. package/dist/components/ai-elements/prompt-input/PromptInputSelectContent.vue.d.ts +23 -0
  186. package/dist/components/ai-elements/prompt-input/PromptInputSelectItem.vue.d.ts +23 -0
  187. package/dist/components/ai-elements/prompt-input/PromptInputSelectTrigger.vue.d.ts +23 -0
  188. package/dist/components/ai-elements/prompt-input/PromptInputSelectValue.vue.d.ts +23 -0
  189. package/dist/components/ai-elements/prompt-input/PromptInputSpeechButton.vue.d.ts +51 -0
  190. package/dist/components/ai-elements/prompt-input/PromptInputSubmit.vue.d.ts +30 -0
  191. package/dist/components/ai-elements/prompt-input/PromptInputTab.vue.d.ts +21 -0
  192. package/dist/components/ai-elements/prompt-input/PromptInputTabBody.vue.d.ts +21 -0
  193. package/dist/components/ai-elements/prompt-input/PromptInputTabItem.vue.d.ts +21 -0
  194. package/dist/components/ai-elements/prompt-input/PromptInputTabLabel.vue.d.ts +21 -0
  195. package/dist/components/ai-elements/prompt-input/PromptInputTabsList.vue.d.ts +21 -0
  196. package/dist/components/ai-elements/prompt-input/PromptInputTextarea.vue.d.ts +8 -0
  197. package/dist/components/ai-elements/prompt-input/PromptInputTools.vue.d.ts +21 -0
  198. package/dist/components/ai-elements/prompt-input/context.d.ts +22 -0
  199. package/dist/components/ai-elements/prompt-input/index.d.ts +39 -0
  200. package/dist/components/ai-elements/prompt-input/types.d.ts +24 -0
  201. package/dist/components/ai-elements/queue/Queue.vue.d.ts +21 -0
  202. package/dist/components/ai-elements/queue/QueueItem.vue.d.ts +21 -0
  203. package/dist/components/ai-elements/queue/QueueItemAction.vue.d.ts +21 -0
  204. package/dist/components/ai-elements/queue/QueueItemActions.vue.d.ts +21 -0
  205. package/dist/components/ai-elements/queue/QueueItemAttachment.vue.d.ts +21 -0
  206. package/dist/components/ai-elements/queue/QueueItemContent.vue.d.ts +24 -0
  207. package/dist/components/ai-elements/queue/QueueItemDescription.vue.d.ts +24 -0
  208. package/dist/components/ai-elements/queue/QueueItemFile.vue.d.ts +21 -0
  209. package/dist/components/ai-elements/queue/QueueItemImage.vue.d.ts +6 -0
  210. package/dist/components/ai-elements/queue/QueueItemIndicator.vue.d.ts +9 -0
  211. package/dist/components/ai-elements/queue/QueueList.vue.d.ts +21 -0
  212. package/dist/components/ai-elements/queue/QueueSection.vue.d.ts +24 -0
  213. package/dist/components/ai-elements/queue/QueueSectionContent.vue.d.ts +21 -0
  214. package/dist/components/ai-elements/queue/QueueSectionLabel.vue.d.ts +23 -0
  215. package/dist/components/ai-elements/queue/QueueSectionTrigger.vue.d.ts +21 -0
  216. package/dist/components/ai-elements/queue/index.d.ts +15 -0
  217. package/dist/components/ai-elements/reasoning/Reasoning.vue.d.ts +35 -0
  218. package/dist/components/ai-elements/reasoning/ReasoningContent.vue.d.ts +7 -0
  219. package/dist/components/ai-elements/reasoning/ReasoningTrigger.vue.d.ts +21 -0
  220. package/dist/components/ai-elements/reasoning/context.d.ts +9 -0
  221. package/dist/components/ai-elements/reasoning/index.d.ts +3 -0
  222. package/dist/components/ai-elements/shimmer/Shimmer.vue.d.ts +28 -0
  223. package/dist/components/ai-elements/shimmer/index.d.ts +1 -0
  224. package/dist/components/ai-elements/sources/Source.vue.d.ts +23 -0
  225. package/dist/components/ai-elements/sources/Sources.vue.d.ts +21 -0
  226. package/dist/components/ai-elements/sources/SourcesContent.vue.d.ts +21 -0
  227. package/dist/components/ai-elements/sources/SourcesTrigger.vue.d.ts +22 -0
  228. package/dist/components/ai-elements/sources/index.d.ts +4 -0
  229. package/dist/components/ai-elements/suggestion/Suggestion.vue.d.ts +31 -0
  230. package/dist/components/ai-elements/suggestion/Suggestions.vue.d.ts +21 -0
  231. package/dist/components/ai-elements/suggestion/index.d.ts +2 -0
  232. package/dist/components/ai-elements/task/Task.vue.d.ts +28 -0
  233. package/dist/components/ai-elements/task/TaskContent.vue.d.ts +21 -0
  234. package/dist/components/ai-elements/task/TaskItem.vue.d.ts +21 -0
  235. package/dist/components/ai-elements/task/TaskItemFile.vue.d.ts +21 -0
  236. package/dist/components/ai-elements/task/TaskTrigger.vue.d.ts +22 -0
  237. package/dist/components/ai-elements/task/index.d.ts +5 -0
  238. package/dist/components/ai-elements/tool/Tool.vue.d.ts +21 -0
  239. package/dist/components/ai-elements/tool/ToolContent.vue.d.ts +21 -0
  240. package/dist/components/ai-elements/tool/ToolHeader.vue.d.ts +10 -0
  241. package/dist/components/ai-elements/tool/ToolInput.vue.d.ts +8 -0
  242. package/dist/components/ai-elements/tool/ToolOutput.vue.d.ts +9 -0
  243. package/dist/components/ai-elements/tool/ToolStatusBadge.vue.d.ts +6 -0
  244. package/dist/components/ai-elements/tool/index.d.ts +5 -0
  245. package/dist/components/ai-elements/toolbar/Toolbar.vue.d.ts +25 -0
  246. package/dist/components/ai-elements/toolbar/index.d.ts +1 -0
  247. package/dist/components/ai-elements/web-preview/WebPreview.vue.d.ts +34 -0
  248. package/dist/components/ai-elements/web-preview/WebPreviewBody.vue.d.ts +24 -0
  249. package/dist/components/ai-elements/web-preview/WebPreviewConsole.vue.d.ts +30 -0
  250. package/dist/components/ai-elements/web-preview/WebPreviewNavigation.vue.d.ts +21 -0
  251. package/dist/components/ai-elements/web-preview/WebPreviewNavigationButton.vue.d.ts +30 -0
  252. package/dist/components/ai-elements/web-preview/WebPreviewUrl.vue.d.ts +9 -0
  253. package/dist/components/ai-elements/web-preview/context.d.ts +9 -0
  254. package/dist/components/ai-elements/web-preview/index.d.ts +7 -0
  255. package/dist/components/ui/alert/Alert.vue.d.ts +23 -0
  256. package/dist/components/ui/alert/AlertDescription.vue.d.ts +21 -0
  257. package/dist/components/ui/alert/AlertTitle.vue.d.ts +21 -0
  258. package/dist/components/ui/alert/index.d.ts +8 -0
  259. package/dist/components/ui/avatar/Avatar.vue.d.ts +21 -0
  260. package/dist/components/ui/avatar/AvatarFallback.vue.d.ts +22 -0
  261. package/dist/components/ui/avatar/AvatarImage.vue.d.ts +18 -0
  262. package/dist/components/ui/avatar/index.d.ts +3 -0
  263. package/dist/components/ui/badge/Badge.vue.d.ts +24 -0
  264. package/dist/components/ui/badge/index.d.ts +6 -0
  265. package/dist/components/ui/button/Button.vue.d.ts +27 -0
  266. package/dist/components/ui/button/index.d.ts +7 -0
  267. package/dist/components/ui/button-group/ButtonGroup.vue.d.ts +23 -0
  268. package/dist/components/ui/button-group/ButtonGroupSeparator.vue.d.ts +9 -0
  269. package/dist/components/ui/button-group/ButtonGroupText.vue.d.ts +26 -0
  270. package/dist/components/ui/button-group/index.d.ts +8 -0
  271. package/dist/components/ui/card/Card.vue.d.ts +21 -0
  272. package/dist/components/ui/card/CardAction.vue.d.ts +21 -0
  273. package/dist/components/ui/card/CardContent.vue.d.ts +21 -0
  274. package/dist/components/ui/card/CardDescription.vue.d.ts +21 -0
  275. package/dist/components/ui/card/CardFooter.vue.d.ts +21 -0
  276. package/dist/components/ui/card/CardHeader.vue.d.ts +21 -0
  277. package/dist/components/ui/card/CardTitle.vue.d.ts +21 -0
  278. package/dist/components/ui/card/index.d.ts +7 -0
  279. package/dist/components/ui/carousel/CarouselContent.vue.d.ts +22 -0
  280. package/dist/components/ui/carousel/CarouselItem.vue.d.ts +18 -0
  281. package/dist/components/ui/carousel/CarouselNext.vue.d.ts +26 -0
  282. package/dist/components/ui/carousel/CarouselPrevious.vue.d.ts +26 -0
  283. package/dist/components/ui/carousel/index.d.ts +7 -0
  284. package/dist/components/ui/carousel/interface.d.ts +19 -0
  285. package/dist/components/ui/collapsible/Collapsible.vue.d.ts +24 -0
  286. package/dist/components/ui/collapsible/CollapsibleContent.vue.d.ts +18 -0
  287. package/dist/components/ui/collapsible/CollapsibleTrigger.vue.d.ts +18 -0
  288. package/dist/components/ui/collapsible/index.d.ts +3 -0
  289. package/dist/components/ui/command/Command.vue.d.ts +40 -0
  290. package/dist/components/ui/command/CommandDialog.vue.d.ts +32 -0
  291. package/dist/components/ui/command/CommandEmpty.vue.d.ts +22 -0
  292. package/dist/components/ui/command/CommandGroup.vue.d.ts +23 -0
  293. package/dist/components/ui/command/CommandInput.vue.d.ts +7 -0
  294. package/dist/components/ui/command/CommandItem.vue.d.ts +30 -0
  295. package/dist/components/ui/command/CommandList.vue.d.ts +22 -0
  296. package/dist/components/ui/command/CommandSeparator.vue.d.ts +22 -0
  297. package/dist/components/ui/command/CommandShortcut.vue.d.ts +21 -0
  298. package/dist/components/ui/command/index.d.ts +90 -0
  299. package/dist/components/ui/dialog/Dialog.vue.d.ts +25 -0
  300. package/dist/components/ui/dialog/DialogClose.vue.d.ts +18 -0
  301. package/dist/components/ui/dialog/DialogContent.vue.d.ts +39 -0
  302. package/dist/components/ui/dialog/DialogDescription.vue.d.ts +22 -0
  303. package/dist/components/ui/dialog/DialogFooter.vue.d.ts +21 -0
  304. package/dist/components/ui/dialog/DialogHeader.vue.d.ts +21 -0
  305. package/dist/components/ui/dialog/DialogOverlay.vue.d.ts +22 -0
  306. package/dist/components/ui/dialog/DialogScrollContent.vue.d.ts +36 -0
  307. package/dist/components/ui/dialog/DialogTitle.vue.d.ts +22 -0
  308. package/dist/components/ui/dialog/DialogTrigger.vue.d.ts +18 -0
  309. package/dist/components/ui/dialog/index.d.ts +10 -0
  310. package/dist/components/ui/dropdown-menu/DropdownMenu.vue.d.ts +24 -0
  311. package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +29 -0
  312. package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +36 -0
  313. package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue.d.ts +18 -0
  314. package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +26 -0
  315. package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue.d.ts +23 -0
  316. package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +22 -0
  317. package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +27 -0
  318. package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue.d.ts +7 -0
  319. package/dist/components/ui/dropdown-menu/DropdownMenuShortcut.vue.d.ts +21 -0
  320. package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue.d.ts +22 -0
  321. package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +38 -0
  322. package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +23 -0
  323. package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue.d.ts +18 -0
  324. package/dist/components/ui/dropdown-menu/index.d.ts +15 -0
  325. package/dist/components/ui/hover-card/HoverCard.vue.d.ts +24 -0
  326. package/dist/components/ui/hover-card/HoverCardContent.vue.d.ts +24 -0
  327. package/dist/components/ui/hover-card/HoverCardTrigger.vue.d.ts +18 -0
  328. package/dist/components/ui/hover-card/index.d.ts +3 -0
  329. package/dist/components/ui/input/Input.vue.d.ts +12 -0
  330. package/dist/components/ui/input/index.d.ts +1 -0
  331. package/dist/components/ui/input-group/InputGroup.vue.d.ts +21 -0
  332. package/dist/components/ui/input-group/InputGroupAddon.vue.d.ts +25 -0
  333. package/dist/components/ui/input-group/InputGroupButton.vue.d.ts +21 -0
  334. package/dist/components/ui/input-group/InputGroupInput.vue.d.ts +6 -0
  335. package/dist/components/ui/input-group/InputGroupText.vue.d.ts +21 -0
  336. package/dist/components/ui/input-group/InputGroupTextarea.vue.d.ts +6 -0
  337. package/dist/components/ui/input-group/index.d.ts +22 -0
  338. package/dist/components/ui/progress/Progress.vue.d.ts +9 -0
  339. package/dist/components/ui/progress/index.d.ts +1 -0
  340. package/dist/components/ui/scroll-area/ScrollArea.vue.d.ts +22 -0
  341. package/dist/components/ui/scroll-area/ScrollBar.vue.d.ts +9 -0
  342. package/dist/components/ui/scroll-area/index.d.ts +2 -0
  343. package/dist/components/ui/select/Select.vue.d.ts +28 -0
  344. package/dist/components/ui/select/SelectContent.vue.d.ts +32 -0
  345. package/dist/components/ui/select/SelectGroup.vue.d.ts +18 -0
  346. package/dist/components/ui/select/SelectItem.vue.d.ts +23 -0
  347. package/dist/components/ui/select/SelectItemText.vue.d.ts +18 -0
  348. package/dist/components/ui/select/SelectLabel.vue.d.ts +22 -0
  349. package/dist/components/ui/select/SelectScrollDownButton.vue.d.ts +22 -0
  350. package/dist/components/ui/select/SelectScrollUpButton.vue.d.ts +22 -0
  351. package/dist/components/ui/select/SelectSeparator.vue.d.ts +7 -0
  352. package/dist/components/ui/select/SelectTrigger.vue.d.ts +25 -0
  353. package/dist/components/ui/select/SelectValue.vue.d.ts +18 -0
  354. package/dist/components/ui/select/index.d.ts +11 -0
  355. package/dist/components/ui/separator/Separator.vue.d.ts +10 -0
  356. package/dist/components/ui/separator/index.d.ts +1 -0
  357. package/dist/components/ui/textarea/Textarea.vue.d.ts +12 -0
  358. package/dist/components/ui/textarea/index.d.ts +1 -0
  359. package/dist/components/ui/tooltip/Tooltip.vue.d.ts +24 -0
  360. package/dist/components/ui/tooltip/TooltipContent.vue.d.ts +30 -0
  361. package/dist/components/ui/tooltip/TooltipProvider.vue.d.ts +20 -0
  362. package/dist/components/ui/tooltip/TooltipTrigger.vue.d.ts +18 -0
  363. package/dist/components/ui/tooltip/index.d.ts +4 -0
  364. package/dist/composables/useChat.d.ts +8 -0
  365. package/dist/css/style.css +2 -0
  366. package/dist/index.d.ts +3 -0
  367. package/dist/js/_basePickBy.js +135 -0
  368. package/dist/js/_baseUniq.js +573 -0
  369. package/dist/js/angular-html.js +14 -0
  370. package/dist/js/angular-html2.js +5 -0
  371. package/dist/js/angular-ts.js +19 -0
  372. package/dist/js/apl.js +15 -0
  373. package/dist/js/arc.js +78 -0
  374. package/dist/js/architecture-U656AL7Q.js +8 -0
  375. package/dist/js/architectureDiagram-VXUJARFQ.js +4053 -0
  376. package/dist/js/astro.js +16 -0
  377. package/dist/js/bash.js +2 -0
  378. package/dist/js/blade.js +19 -0
  379. package/dist/js/blockDiagram-VD42YOAC.js +3013 -0
  380. package/dist/js/bsl.js +3 -0
  381. package/dist/js/c.js +2 -0
  382. package/dist/js/c4Diagram-YG6GDRKO.js +2955 -0
  383. package/dist/js/cairo.js +3 -0
  384. package/dist/js/channel.js +3 -0
  385. package/dist/js/chunk-4BX2VUAB.js +6 -0
  386. package/dist/js/chunk-55IACEB6.js +6 -0
  387. package/dist/js/chunk-76Q3JFCE.js +19 -0
  388. package/dist/js/chunk-ABZYJK2D.js +2515 -0
  389. package/dist/js/chunk-ATLVNIR6.js +65 -0
  390. package/dist/js/chunk-B4BG7PRW.js +3108 -0
  391. package/dist/js/chunk-CVBHYZKI.js +10 -0
  392. package/dist/js/chunk-DI55MBZ5.js +1994 -0
  393. package/dist/js/chunk-EXTU4WIE.js +7 -0
  394. package/dist/js/chunk-FMBD7UC4.js +3 -0
  395. package/dist/js/chunk-FPAJGGOC.js +12252 -0
  396. package/dist/js/chunk-FWNWRKHM.js +56 -0
  397. package/dist/js/chunk-HN2XXSSU.js +74 -0
  398. package/dist/js/chunk-JA3XYJ7Z.js +463 -0
  399. package/dist/js/chunk-JZLCHNYA.js +4861 -0
  400. package/dist/js/chunk-LBM3YZW2.js +19 -0
  401. package/dist/js/chunk-LHMN2FUI.js +19 -0
  402. package/dist/js/chunk-MI3HLSF2.js +1140 -0
  403. package/dist/js/chunk-N4CR4FBY.js +39 -0
  404. package/dist/js/chunk-O7ZBX7Z2.js +26 -0
  405. package/dist/js/chunk-QN33PNHL.js +23 -0
  406. package/dist/js/chunk-QXUST7PY.js +486 -0
  407. package/dist/js/chunk-QZHKN3VN.js +11 -0
  408. package/dist/js/chunk-S3R3BYOJ.js +1074 -0
  409. package/dist/js/chunk-S6J4BHB3.js +19 -0
  410. package/dist/js/chunk-T53DSG4Q.js +24 -0
  411. package/dist/js/chunk-TZMSLE5B.js +55 -0
  412. package/dist/js/classDiagram-2ON5EDUG.js +33 -0
  413. package/dist/js/classDiagram-v2-WZHVMYZB.js +33 -0
  414. package/dist/js/clone.js +7 -0
  415. package/dist/js/cmake.js +2 -0
  416. package/dist/js/cobol.js +10 -0
  417. package/dist/js/coffee.js +3 -0
  418. package/dist/js/cose-bilkent-S5V4N54A.js +2250 -0
  419. package/dist/js/cpp.js +16 -0
  420. package/dist/js/cpp2.js +6 -0
  421. package/dist/js/crystal.js +16 -0
  422. package/dist/js/csharp.js +2 -0
  423. package/dist/js/css.js +2 -0
  424. package/dist/js/csv.js +2 -0
  425. package/dist/js/dagre-6UL2VRFP.js +298 -0
  426. package/dist/js/dagre.js +1395 -0
  427. package/dist/js/diagram-PSM6KHXK.js +497 -0
  428. package/dist/js/diagram-QEK2KX5R.js +226 -0
  429. package/dist/js/diagram-S2PKOQOG.js +144 -0
  430. package/dist/js/diff.js +2 -0
  431. package/dist/js/dist.js +49 -0
  432. package/dist/js/edge.js +12 -0
  433. package/dist/js/elixir.js +5 -0
  434. package/dist/js/elm.js +4 -0
  435. package/dist/js/erDiagram-Q2GNP2WA.js +1603 -0
  436. package/dist/js/erb.js +25 -0
  437. package/dist/js/erlang.js +3 -0
  438. package/dist/js/flowDiagram-NV44I4VS.js +4132 -0
  439. package/dist/js/fortran-fixed-form.js +3 -0
  440. package/dist/js/fortran-free-form.js +2 -0
  441. package/dist/js/fsharp.js +3 -0
  442. package/dist/js/ganttDiagram-JELNMOA3.js +3009 -0
  443. package/dist/js/gdresource.js +8 -0
  444. package/dist/js/gdscript.js +2 -0
  445. package/dist/js/gdshader.js +2 -0
  446. package/dist/js/git-commit.js +3 -0
  447. package/dist/js/git-rebase.js +3 -0
  448. package/dist/js/gitGraph-F6HP7TQM.js +8 -0
  449. package/dist/js/gitGraphDiagram-NY62KEGX.js +634 -0
  450. package/dist/js/github-dark.js +2 -0
  451. package/dist/js/github-light.js +2 -0
  452. package/dist/js/glimmer-js.js +12 -0
  453. package/dist/js/glimmer-ts.js +12 -0
  454. package/dist/js/glsl.js +3 -0
  455. package/dist/js/glsl2.js +3 -0
  456. package/dist/js/go.js +2 -0
  457. package/dist/js/graphlib.js +223 -0
  458. package/dist/js/graphql.js +6 -0
  459. package/dist/js/graphql2.js +12 -0
  460. package/dist/js/hack.js +10 -0
  461. package/dist/js/haml.js +4 -0
  462. package/dist/js/haml2.js +8 -0
  463. package/dist/js/handlebars.js +12 -0
  464. package/dist/js/haxe.js +2 -0
  465. package/dist/js/hlsl.js +2 -0
  466. package/dist/js/html-derivative.js +5 -0
  467. package/dist/js/html-derivative2.js +3 -0
  468. package/dist/js/html.js +4 -0
  469. package/dist/js/html2.js +8 -0
  470. package/dist/js/http.js +17 -0
  471. package/dist/js/hurl.js +15 -0
  472. package/dist/js/hxml.js +3 -0
  473. package/dist/js/index.js +37693 -0
  474. package/dist/js/info-NVLQJR56.js +8 -0
  475. package/dist/js/infoDiagram-WHAUD3N6.js +31 -0
  476. package/dist/js/isEmpty.js +32 -0
  477. package/dist/js/java.js +2 -0
  478. package/dist/js/javascript.js +2 -0
  479. package/dist/js/jinja.js +5 -0
  480. package/dist/js/jison.js +3 -0
  481. package/dist/js/journeyDiagram-XKPGCS4Q.js +884 -0
  482. package/dist/js/json.js +2 -0
  483. package/dist/js/jsx.js +2 -0
  484. package/dist/js/julia.js +17 -0
  485. package/dist/js/kanban-definition-3W4ZIXB7.js +971 -0
  486. package/dist/js/katex.js +2 -0
  487. package/dist/js/latex.js +4 -0
  488. package/dist/js/less.js +2 -0
  489. package/dist/js/line.js +30 -0
  490. package/dist/js/linear.js +250 -0
  491. package/dist/js/liquid.js +12 -0
  492. package/dist/js/lua.js +3 -0
  493. package/dist/js/lua2.js +3 -0
  494. package/dist/js/markdown.js +2 -0
  495. package/dist/js/marko.js +12 -0
  496. package/dist/js/mdc.js +13 -0
  497. package/dist/js/mermaid-parser.core.js +48 -0
  498. package/dist/js/mermaid.core.js +895 -0
  499. package/dist/js/mindmap-definition-VGOIOE7T.js +960 -0
  500. package/dist/js/nginx.js +4 -0
  501. package/dist/js/nim.js +19 -0
  502. package/dist/js/ordinal.js +61 -0
  503. package/dist/js/packet-BFZMPI3H.js +8 -0
  504. package/dist/js/perl.js +15 -0
  505. package/dist/js/php.js +9 -0
  506. package/dist/js/php2.js +16 -0
  507. package/dist/js/pie-7BOR55EZ.js +8 -0
  508. package/dist/js/pieDiagram-ADFJNKIX.js +172 -0
  509. package/dist/js/postcss.js +2 -0
  510. package/dist/js/pug.js +10 -0
  511. package/dist/js/python.js +2 -0
  512. package/dist/js/qml.js +3 -0
  513. package/dist/js/quadrantDiagram-AYHSOK5B.js +1970 -0
  514. package/dist/js/r.js +2 -0
  515. package/dist/js/radar-NHE76QYJ.js +8 -0
  516. package/dist/js/razor.js +10 -0
  517. package/dist/js/regexp.js +2 -0
  518. package/dist/js/requirementDiagram-UZGBJVZJ.js +2194 -0
  519. package/dist/js/rst.js +34 -0
  520. package/dist/js/ruby.js +20 -0
  521. package/dist/js/ruby2.js +28 -0
  522. package/dist/js/sankeyDiagram-TZEHDZUN.js +884 -0
  523. package/dist/js/sas.js +3 -0
  524. package/dist/js/scss.js +3 -0
  525. package/dist/js/scss2.js +3 -0
  526. package/dist/js/sdbl.js +2 -0
  527. package/dist/js/sequenceDiagram-WL72ISMW.js +3560 -0
  528. package/dist/js/shaderlab.js +3 -0
  529. package/dist/js/shellscript.js +2 -0
  530. package/dist/js/shellsession.js +3 -0
  531. package/dist/js/soy.js +5 -0
  532. package/dist/js/sparql.js +3 -0
  533. package/dist/js/sql.js +2 -0
  534. package/dist/js/src.js +1975 -0
  535. package/dist/js/stata.js +3 -0
  536. package/dist/js/stateDiagram-FKZM4ZOC.js +224 -0
  537. package/dist/js/stateDiagram-v2-4FDKWEC3.js +32 -0
  538. package/dist/js/stylus.js +2 -0
  539. package/dist/js/svelte.js +12 -0
  540. package/dist/js/templ.js +10 -0
  541. package/dist/js/tex.js +3 -0
  542. package/dist/js/tex2.js +3 -0
  543. package/dist/js/timeline-definition-IT6M3QCI.js +830 -0
  544. package/dist/js/treemap-KMMF4GRG.js +8 -0
  545. package/dist/js/ts-tags.js +38 -0
  546. package/dist/js/tsx.js +2 -0
  547. package/dist/js/turtle.js +2 -0
  548. package/dist/js/twig.js +33 -0
  549. package/dist/js/typescript.js +2 -0
  550. package/dist/js/vue-html.js +13 -0
  551. package/dist/js/vue-vine.js +22 -0
  552. package/dist/js/vue.js +20 -0
  553. package/dist/js/vue2.js +8 -0
  554. package/dist/js/xml.js +3 -0
  555. package/dist/js/xml2.js +3 -0
  556. package/dist/js/xsl.js +4 -0
  557. package/dist/js/xychartDiagram-PRI3JC2R.js +2022 -0
  558. package/dist/js/yaml.js +2 -0
  559. package/dist/lib/utils.d.ts +2 -0
  560. package/dist/main.d.ts +0 -0
  561. package/dist/request/index.d.ts +6 -0
  562. package/package.json +66 -64
  563. package/dist/_basePickBy-CkZky1V-.js +0 -135
  564. package/dist/_baseUniq-f11MNaXe.js +0 -573
  565. package/dist/ai-chat-example.css +0 -3
  566. package/dist/angular-html-C5vmpet2.js +0 -14
  567. package/dist/angular-html-CLTv4jM9.js +0 -5
  568. package/dist/angular-ts-BKqJWrwt.js +0 -19
  569. package/dist/apl-BcJs32yU.js +0 -15
  570. package/dist/arc-Dh_0vvHo.js +0 -78
  571. package/dist/architecture-U656AL7Q-BqUSHYp0.js +0 -8
  572. package/dist/architectureDiagram-VXUJARFQ-BQvEdgpc.js +0 -4053
  573. package/dist/astro-q-huTQEP.js +0 -16
  574. package/dist/bash-DI_p7w58.js +0 -2
  575. package/dist/blade-Ckff5WJQ.js +0 -19
  576. package/dist/blockDiagram-VD42YOAC-DKkDshq3.js +0 -3013
  577. package/dist/bsl-BTNab0FD.js +0 -3
  578. package/dist/c-BYDGkYzS.js +0 -2
  579. package/dist/c4Diagram-YG6GDRKO-KsGqOrVB.js +0 -2955
  580. package/dist/cairo-DUZgbTPW.js +0 -3
  581. package/dist/channel-BrxVk5HC.js +0 -3
  582. package/dist/chunk-4BX2VUAB-BGxl5VGr.js +0 -6
  583. package/dist/chunk-55IACEB6-CDMD5yu1.js +0 -6
  584. package/dist/chunk-76Q3JFCE-Db4Lkmow.js +0 -19
  585. package/dist/chunk-ABZYJK2D-BZvlc6Ej.js +0 -2515
  586. package/dist/chunk-ATLVNIR6-C3g7rsIT.js +0 -65
  587. package/dist/chunk-B4BG7PRW-Dx-bGI1r.js +0 -3108
  588. package/dist/chunk-CVBHYZKI-DxEBlSK7.js +0 -10
  589. package/dist/chunk-DI55MBZ5-CCWuZnfW.js +0 -1994
  590. package/dist/chunk-EXTU4WIE-BjMX7pAs.js +0 -7
  591. package/dist/chunk-FMBD7UC4-Dj3Ok4Bk.js +0 -3
  592. package/dist/chunk-FPAJGGOC-nWbO3e1v.js +0 -12252
  593. package/dist/chunk-FWNWRKHM-CjcwRw2u.js +0 -56
  594. package/dist/chunk-HN2XXSSU-Lv4Ef0co.js +0 -74
  595. package/dist/chunk-JA3XYJ7Z-Dhh1_u_p.js +0 -463
  596. package/dist/chunk-JZLCHNYA-vrb_Ucuc.js +0 -4861
  597. package/dist/chunk-LBM3YZW2-D8lrIfGo.js +0 -19
  598. package/dist/chunk-LHMN2FUI-DLQ0i8hl.js +0 -19
  599. package/dist/chunk-MI3HLSF2-Dy6F9XgR.js +0 -1140
  600. package/dist/chunk-N4CR4FBY-BdaGxHlZ.js +0 -39
  601. package/dist/chunk-O7ZBX7Z2-D8Yaukr5.js +0 -26
  602. package/dist/chunk-QN33PNHL-DnPw7tni.js +0 -23
  603. package/dist/chunk-QXUST7PY-D9mGQ-UP.js +0 -486
  604. package/dist/chunk-QZHKN3VN-ClanGuXA.js +0 -11
  605. package/dist/chunk-S3R3BYOJ-DHTsHczu.js +0 -1074
  606. package/dist/chunk-S6J4BHB3-8RrHs9bD.js +0 -19
  607. package/dist/chunk-T53DSG4Q-C2BDA_QX.js +0 -24
  608. package/dist/chunk-TZMSLE5B-F4nHm7N1.js +0 -55
  609. package/dist/classDiagram-2ON5EDUG-C_ZEMlKu.js +0 -33
  610. package/dist/classDiagram-v2-WZHVMYZB-BHb5nZOM.js +0 -33
  611. package/dist/clone-BRioDvRr.js +0 -7
  612. package/dist/cmake-CA3Lfsq7.js +0 -2
  613. package/dist/cobol-DhzLzJib.js +0 -10
  614. package/dist/coffee-P21KTKMu.js +0 -3
  615. package/dist/cose-bilkent-S5V4N54A-Dy-do3hl.js +0 -2250
  616. package/dist/cpp-C6JyDxZu.js +0 -16
  617. package/dist/cpp-GAIEvywS.js +0 -6
  618. package/dist/crystal-BJfcoGS4.js +0 -16
  619. package/dist/csharp-JE-9ns6W.js +0 -2
  620. package/dist/css-Cy-fypCV.js +0 -2
  621. package/dist/csv-DJ7xG4PY.js +0 -2
  622. package/dist/dagre-6UL2VRFP-B38_sZWh.js +0 -298
  623. package/dist/dagre-DtvXp3zQ.js +0 -1395
  624. package/dist/diagram-PSM6KHXK-D6swsG-y.js +0 -497
  625. package/dist/diagram-QEK2KX5R-B7Hi0LAL.js +0 -226
  626. package/dist/diagram-S2PKOQOG-DLx7PlpM.js +0 -144
  627. package/dist/diff-COB48_rb.js +0 -2
  628. package/dist/dist-CrnZo_23.js +0 -49
  629. package/dist/edge-Dm7HQa9N.js +0 -12
  630. package/dist/elixir-BkvHyCNd.js +0 -5
  631. package/dist/elm-rz9wTSrn.js +0 -4
  632. package/dist/erDiagram-Q2GNP2WA-B67FD8rh.js +0 -1603
  633. package/dist/erb-DyrwQYVz.js +0 -25
  634. package/dist/erlang-DLFKZs5N.js +0 -3
  635. package/dist/flowDiagram-NV44I4VS-DHXgrdJY.js +0 -4132
  636. package/dist/fortran-fixed-form-SzB0QY3n.js +0 -3
  637. package/dist/fortran-free-form-Js8JrQQE.js +0 -2
  638. package/dist/fsharp-CtWO0jvL.js +0 -3
  639. package/dist/ganttDiagram-JELNMOA3-CGIqBt1P.js +0 -3009
  640. package/dist/gdresource-CgyXKpe4.js +0 -8
  641. package/dist/gdscript-STdmRKv-.js +0 -2
  642. package/dist/gdshader-Bs2s6cSB.js +0 -2
  643. package/dist/git-commit--0GGwZNa.js +0 -3
  644. package/dist/git-rebase-orw-bSIZ.js +0 -3
  645. package/dist/gitGraph-F6HP7TQM-CH5XLm5Z.js +0 -8
  646. package/dist/gitGraphDiagram-NY62KEGX-Cq8AbOhM.js +0 -634
  647. package/dist/github-dark-CMN1tZPn.js +0 -2
  648. package/dist/github-light-Y8g-VxKq.js +0 -2
  649. package/dist/glimmer-js-C6E6wJv0.js +0 -12
  650. package/dist/glimmer-ts-C6GgTGNO.js +0 -12
  651. package/dist/glsl-D8_YBRKT.js +0 -3
  652. package/dist/glsl-rwn_QCp2.js +0 -3
  653. package/dist/go-BhDDN9y4.js +0 -2
  654. package/dist/graphlib-BZdVmxO6.js +0 -223
  655. package/dist/graphql-DQHhbQm2.js +0 -6
  656. package/dist/graphql-DoBLseH6.js +0 -12
  657. package/dist/hack-DEAxoi73.js +0 -10
  658. package/dist/haml-BG2d3iX4.js +0 -4
  659. package/dist/haml-mA656Lm7.js +0 -8
  660. package/dist/handlebars-CO5xAxJ3.js +0 -12
  661. package/dist/haxe-BJVSeYxy.js +0 -2
  662. package/dist/hlsl-Dt9-unql.js +0 -2
  663. package/dist/html-DFCxtjnd.js +0 -4
  664. package/dist/html-DKSj3FeM.js +0 -8
  665. package/dist/html-derivative-BCRkrTcD.js +0 -5
  666. package/dist/html-derivative-C-vidKoA.js +0 -3
  667. package/dist/http-CYP1tEDW.js +0 -17
  668. package/dist/hurl-BJexUSKz.js +0 -15
  669. package/dist/hxml-XfuSEjM-.js +0 -3
  670. package/dist/info-NVLQJR56-hEN1y0nS.js +0 -8
  671. package/dist/infoDiagram-WHAUD3N6-btPwHXxp.js +0 -31
  672. package/dist/isEmpty-CCym_WUL.js +0 -32
  673. package/dist/java-DIOGgqAD.js +0 -2
  674. package/dist/javascript-9-JPeKdm.js +0 -2
  675. package/dist/jinja-CVFxFRh6.js +0 -5
  676. package/dist/jison-0X6LppGq.js +0 -3
  677. package/dist/journeyDiagram-XKPGCS4Q-3OxtBx3I.js +0 -884
  678. package/dist/js/chat-example.es.js +0 -39220
  679. package/dist/js/chat-example.umd.js +0 -2989
  680. package/dist/json-DJtYdWQK.js +0 -2
  681. package/dist/jsx-qo0JNHpZ.js +0 -2
  682. package/dist/julia-ChGs-n_c.js +0 -17
  683. package/dist/kanban-definition-3W4ZIXB7-zdtnJaXz.js +0 -971
  684. package/dist/katex-K1dsczyg.js +0 -2
  685. package/dist/latex-BnWZlY4q.js +0 -4
  686. package/dist/less-B4ybD-7s.js +0 -2
  687. package/dist/line-EpckC7pZ.js +0 -30
  688. package/dist/linear-DjVN4o4U.js +0 -250
  689. package/dist/liquid-pc5Mduds.js +0 -12
  690. package/dist/lua-0TqNbT8C.js +0 -3
  691. package/dist/lua-6pXga3HV.js +0 -3
  692. package/dist/markdown-LaaQ4Eua.js +0 -2
  693. package/dist/marko-D8uDUUEs.js +0 -12
  694. package/dist/mdc-Ki3KnB5U.js +0 -13
  695. package/dist/mermaid-parser.core-DVXSGppp.js +0 -48
  696. package/dist/mermaid.core-Ra1JFCui.js +0 -895
  697. package/dist/mindmap-definition-VGOIOE7T-CRPO52xV.js +0 -960
  698. package/dist/nginx-B46vdQ9n.js +0 -4
  699. package/dist/nim-BxQNx10D.js +0 -19
  700. package/dist/ordinal-CYQpsShT.js +0 -61
  701. package/dist/packet-BFZMPI3H-Bnlch4JI.js +0 -8
  702. package/dist/perl-D1bDaADZ.js +0 -15
  703. package/dist/php-BX51InqL.js +0 -9
  704. package/dist/php-D5tmU8Cr.js +0 -16
  705. package/dist/pie-7BOR55EZ-B9egLHl5.js +0 -8
  706. package/dist/pieDiagram-ADFJNKIX-CKSgB7fx.js +0 -172
  707. package/dist/postcss-ainQkoyY.js +0 -2
  708. package/dist/pug-BcLlS7Yb.js +0 -10
  709. package/dist/python-CuBu5pyY.js +0 -2
  710. package/dist/qml-MD0NqqIl.js +0 -3
  711. package/dist/quadrantDiagram-AYHSOK5B-BHzqivzD.js +0 -1970
  712. package/dist/r-CQeHOO4c.js +0 -2
  713. package/dist/radar-NHE76QYJ-DdALhlvV.js +0 -8
  714. package/dist/razor-eRwFWsjJ.js +0 -10
  715. package/dist/regexp-Ca0eDBa2.js +0 -2
  716. package/dist/requirementDiagram-UZGBJVZJ-Darhwvir.js +0 -2194
  717. package/dist/rst-DFmSdXGd.js +0 -34
  718. package/dist/ruby-BAEFomR0.js +0 -20
  719. package/dist/ruby-DDMUvAvC.js +0 -28
  720. package/dist/sankeyDiagram-TZEHDZUN-KiSvBN_C.js +0 -884
  721. package/dist/sas-TjtLSnOp.js +0 -3
  722. package/dist/scss-C-bthdG1.js +0 -3
  723. package/dist/scss-D-6-mg-f.js +0 -3
  724. package/dist/sdbl-gc7zIVWR.js +0 -2
  725. package/dist/sequenceDiagram-WL72ISMW-D2Mo7Vtj.js +0 -3560
  726. package/dist/shaderlab-BRlB5fpk.js +0 -3
  727. package/dist/shellscript-DZa_4vvb.js +0 -2
  728. package/dist/shellsession-CIlmlgbR.js +0 -3
  729. package/dist/soy-DwSCrzEF.js +0 -5
  730. package/dist/sparql-D9kVSpEx.js +0 -3
  731. package/dist/sql-Bi3LyNPb.js +0 -2
  732. package/dist/src-B-SBGd0A.js +0 -1975
  733. package/dist/stata-DkEObyNb.js +0 -3
  734. package/dist/stateDiagram-FKZM4ZOC-BRQN2Npg.js +0 -224
  735. package/dist/stateDiagram-v2-4FDKWEC3-CeeIKiFG.js +0 -32
  736. package/dist/stylus-DEHALDNh.js +0 -2
  737. package/dist/svelte-KFuclcR6.js +0 -12
  738. package/dist/templ-C5mtYbb_.js +0 -10
  739. package/dist/tex-B4uYy1vC.js +0 -3
  740. package/dist/tex-BoVFa1ir.js +0 -3
  741. package/dist/timeline-definition-IT6M3QCI-CSwH0Pnx.js +0 -830
  742. package/dist/treemap-KMMF4GRG-COjpj6-C.js +0 -8
  743. package/dist/ts-tags-DRdTXGhb.js +0 -38
  744. package/dist/tsx-BaaPsUbd.js +0 -2
  745. package/dist/turtle-BRmolh-6.js +0 -2
  746. package/dist/twig-cEhAbahS.js +0 -33
  747. package/dist/typescript-CmJ8D0yY.js +0 -2
  748. package/dist/vue-B3C4YeUK.js +0 -8
  749. package/dist/vue-DMpjAWNv.js +0 -20
  750. package/dist/vue-html-BIZN50ug.js +0 -13
  751. package/dist/vue-vine-DxezWcjL.js +0 -22
  752. package/dist/xml-BglBgo29.js +0 -3
  753. package/dist/xml-BxRdgEAX.js +0 -3
  754. package/dist/xsl-Cni90e0k.js +0 -4
  755. package/dist/xychartDiagram-PRI3JC2R-CGXFYn39.js +0 -2022
  756. package/dist/yaml-DQRfaSRo.js +0 -2
  757. /package/dist/{abap--jVlqvLx.js → js/abap.js} +0 -0
  758. /package/dist/{actionscript-3-N1AoJtTA.js → js/actionscript-3.js} +0 -0
  759. /package/dist/{ada-CYGINLea.js → js/ada.js} +0 -0
  760. /package/dist/{andromeeda-CvsZnG9k.js → js/andromeeda.js} +0 -0
  761. /package/dist/{apache-D6X-_dyJ.js → js/apache.js} +0 -0
  762. /package/dist/{apex-C7VgAgAE.js → js/apex.js} +0 -0
  763. /package/dist/{applescript-DN64Su6U.js → js/applescript.js} +0 -0
  764. /package/dist/{ara-Dm1jHrgg.js → js/ara.js} +0 -0
  765. /package/dist/{array-CkdOJbdT.js → js/array.js} +0 -0
  766. /package/dist/{asciidoc-BpqtqRF5.js → js/asciidoc.js} +0 -0
  767. /package/dist/{asm-DUGlKYIq.js → js/asm.js} +0 -0
  768. /package/dist/{aurora-x-DwOih-un.js → js/aurora-x.js} +0 -0
  769. /package/dist/{awk-DcnVbJrN.js → js/awk.js} +0 -0
  770. /package/dist/{ayu-dark-Bd-89MKE.js → js/ayu-dark.js} +0 -0
  771. /package/dist/{ballerina-BQVdQd9X.js → js/ballerina.js} +0 -0
  772. /package/dist/{bat-juB1J52r.js → js/bat.js} +0 -0
  773. /package/dist/{beancount-ThxIlRc3.js → js/beancount.js} +0 -0
  774. /package/dist/{berry-qC18BfC_.js → js/berry.js} +0 -0
  775. /package/dist/{bibtex-CahMDY_0.js → js/bibtex.js} +0 -0
  776. /package/dist/{bicep-CHLBKS47.js → js/bicep.js} +0 -0
  777. /package/dist/{c-CX6yudYR.js → js/c2.js} +0 -0
  778. /package/dist/{cadence-DA5J9-Di.js → js/cadence.js} +0 -0
  779. /package/dist/{catppuccin-frappe-CE3kxG1f.js → js/catppuccin-frappe.js} +0 -0
  780. /package/dist/{catppuccin-latte-DW2FXeIv.js → js/catppuccin-latte.js} +0 -0
  781. /package/dist/{catppuccin-macchiato-CD5qjRSF.js → js/catppuccin-macchiato.js} +0 -0
  782. /package/dist/{catppuccin-mocha-BYwVJvjI.js → js/catppuccin-mocha.js} +0 -0
  783. /package/dist/{chunk-XAJISQIX-Bz7ki7DY.js → js/chunk-XAJISQIX.js} +0 -0
  784. /package/dist/{chunk-DNh5sLlG.js → js/chunk.js} +0 -0
  785. /package/dist/{clarity-CsFOkG3c.js → js/clarity.js} +0 -0
  786. /package/dist/{clojure-u1TZmmdQ.js → js/clojure.js} +0 -0
  787. /package/dist/{cmake-K1k8HMYR.js → js/cmake2.js} +0 -0
  788. /package/dist/{codeowners-l4eSxhtA.js → js/codeowners.js} +0 -0
  789. /package/dist/{codeql-5CeQaktT.js → js/codeql.js} +0 -0
  790. /package/dist/{common-lisp-BVttGbYJ.js → js/common-lisp.js} +0 -0
  791. /package/dist/{coq-CZjzQDnb.js → js/coq.js} +0 -0
  792. /package/dist/{csharp-BbUwciq4.js → js/csharp2.js} +0 -0
  793. /package/dist/{css-Crp0iO_o.js → js/css2.js} +0 -0
  794. /package/dist/{csv-DtT8LmMi.js → js/csv2.js} +0 -0
  795. /package/dist/{cue-BwjaQTCz.js → js/cue.js} +0 -0
  796. /package/dist/{cypher-B7e06enY.js → js/cypher.js} +0 -0
  797. /package/dist/{cytoscape.esm-CWqS6puh.js → js/cytoscape.esm.js} +0 -0
  798. /package/dist/{d-q60wkid4.js → js/d.js} +0 -0
  799. /package/dist/{dark-plus-D_fA88xf.js → js/dark-plus.js} +0 -0
  800. /package/dist/{dart-DjkWvBgr.js → js/dart.js} +0 -0
  801. /package/dist/{dax-lueLIZQI.js → js/dax.js} +0 -0
  802. /package/dist/{defaultLocale-CoJOMwPq.js → js/defaultLocale.js} +0 -0
  803. /package/dist/{desktop-DaphHKD5.js → js/desktop.js} +0 -0
  804. /package/dist/{diff-DlXnqUMK.js → js/diff2.js} +0 -0
  805. /package/dist/{docker-DZKmuwpA.js → js/docker.js} +0 -0
  806. /package/dist/{dotenv-hmNahw-8.js → js/dotenv.js} +0 -0
  807. /package/dist/{dracula-soft-vfA-TA_S.js → js/dracula-soft.js} +0 -0
  808. /package/dist/{dracula-ddM3a7au.js → js/dracula.js} +0 -0
  809. /package/dist/{dream-maker-Cxa2a8FY.js → js/dream-maker.js} +0 -0
  810. /package/dist/{emacs-lisp-w5URnZPZ.js → js/emacs-lisp.js} +0 -0
  811. /package/dist/{everforest-dark-DAPtv4yI.js → js/everforest-dark.js} +0 -0
  812. /package/dist/{everforest-light-nQzYm8GO.js → js/everforest-light.js} +0 -0
  813. /package/dist/{fennel-CJDNJZTU.js → js/fennel.js} +0 -0
  814. /package/dist/{fish-BkYaLI4-.js → js/fish.js} +0 -0
  815. /package/dist/{fluent-DShra35H.js → js/fluent.js} +0 -0
  816. /package/dist/{fortran-free-form-CgbOAJnm.js → js/fortran-free-form2.js} +0 -0
  817. /package/dist/{gdscript-DnurdQnh.js → js/gdscript2.js} +0 -0
  818. /package/dist/{gdshader-YiVaPq6D.js → js/gdshader2.js} +0 -0
  819. /package/dist/{genie-BppkvzZC.js → js/genie.js} +0 -0
  820. /package/dist/{gherkin-Bp4zdWMb.js → js/gherkin.js} +0 -0
  821. /package/dist/{github-dark-default-DVCJut02.js → js/github-dark-default.js} +0 -0
  822. /package/dist/{github-dark-dimmed-DXu9oDqW.js → js/github-dark-dimmed.js} +0 -0
  823. /package/dist/{github-dark-high-contrast-BBZdE-mX.js → js/github-dark-high-contrast.js} +0 -0
  824. /package/dist/{github-dark-DxCf_Qaz.js → js/github-dark2.js} +0 -0
  825. /package/dist/{github-light-default-BNGkGE--.js → js/github-light-default.js} +0 -0
  826. /package/dist/{github-light-high-contrast-DiSIc-nG.js → js/github-light-high-contrast.js} +0 -0
  827. /package/dist/{github-light-CfdX7txK.js → js/github-light2.js} +0 -0
  828. /package/dist/{gleam-Lw0tKp8T.js → js/gleam.js} +0 -0
  829. /package/dist/{gnuplot-BeA3etmO.js → js/gnuplot.js} +0 -0
  830. /package/dist/{go-xfE7BrfS.js → js/go2.js} +0 -0
  831. /package/dist/{groovy-C5-mv4io.js → js/groovy.js} +0 -0
  832. /package/dist/{gruvbox-dark-hard-CULu6kVy.js → js/gruvbox-dark-hard.js} +0 -0
  833. /package/dist/{gruvbox-dark-medium-BJM4uQXO.js → js/gruvbox-dark-medium.js} +0 -0
  834. /package/dist/{gruvbox-dark-soft-CVaORUwa.js → js/gruvbox-dark-soft.js} +0 -0
  835. /package/dist/{gruvbox-light-hard-B-WJAGLa.js → js/gruvbox-light-hard.js} +0 -0
  836. /package/dist/{gruvbox-light-medium-jc8FWnuC.js → js/gruvbox-light-medium.js} +0 -0
  837. /package/dist/{gruvbox-light-soft-CmvYQK92.js → js/gruvbox-light-soft.js} +0 -0
  838. /package/dist/{haskell-Hsexh2aP.js → js/haskell.js} +0 -0
  839. /package/dist/{haxe-CD_Rs3P5.js → js/haxe2.js} +0 -0
  840. /package/dist/{hcl-D098sJ_J.js → js/hcl.js} +0 -0
  841. /package/dist/{hjson-BwXHX5r6.js → js/hjson.js} +0 -0
  842. /package/dist/{hlsl-B0pnUVYG.js → js/hlsl2.js} +0 -0
  843. /package/dist/{houston-C7hMWO_I.js → js/houston.js} +0 -0
  844. /package/dist/{hy-DPQ04rHt.js → js/hy.js} +0 -0
  845. /package/dist/{imba-Bgu2n5Mo.js → js/imba.js} +0 -0
  846. /package/dist/{ini-g9mZnyrk.js → js/ini.js} +0 -0
  847. /package/dist/{init-CBay3kgM.js → js/init.js} +0 -0
  848. /package/dist/{isArrayLikeObject-Dz_TDfw0.js → js/isArrayLikeObject.js} +0 -0
  849. /package/dist/{java-CUbPyze1.js → js/java2.js} +0 -0
  850. /package/dist/{javascript-De1qhUaI.js → js/javascript2.js} +0 -0
  851. /package/dist/{json-fcFpRaf3.js → js/json2.js} +0 -0
  852. /package/dist/{json5-CPTZJOmf.js → js/json5.js} +0 -0
  853. /package/dist/{jsonc-CYrayg0k.js → js/jsonc.js} +0 -0
  854. /package/dist/{jsonl-Bsv7LjJ3.js → js/jsonl.js} +0 -0
  855. /package/dist/{jsonnet-B7LkHJxg.js → js/jsonnet.js} +0 -0
  856. /package/dist/{jssm-BopKGZKg.js → js/jssm.js} +0 -0
  857. /package/dist/{jsx-Bf3Nk9Di.js → js/jsx2.js} +0 -0
  858. /package/dist/{kanagawa-dragon-CSqqi78I.js → js/kanagawa-dragon.js} +0 -0
  859. /package/dist/{kanagawa-lotus-l2vgoxpH.js → js/kanagawa-lotus.js} +0 -0
  860. /package/dist/{kanagawa-wave-BWhFcnLj.js → js/kanagawa-wave.js} +0 -0
  861. /package/dist/{katex-BcWXJDMd.js → js/katex2.js} +0 -0
  862. /package/dist/{kdl-BbokxoZ9.js → js/kdl.js} +0 -0
  863. /package/dist/{kotlin-3dXKmwyJ.js → js/kotlin.js} +0 -0
  864. /package/dist/{kusto-Os6_yHEz.js → js/kusto.js} +0 -0
  865. /package/dist/{laserwave-8RcN1zf8.js → js/laserwave.js} +0 -0
  866. /package/dist/{lean--0Wr4Cy4.js → js/lean.js} +0 -0
  867. /package/dist/{less-Cb54jO7u.js → js/less2.js} +0 -0
  868. /package/dist/{light-plus-CP_iZQDF.js → js/light-plus.js} +0 -0
  869. /package/dist/{llvm-ILH_SX7E.js → js/llvm.js} +0 -0
  870. /package/dist/{log-DwO_GzA0.js → js/log.js} +0 -0
  871. /package/dist/{logo-B4FeRowR.js → js/logo.js} +0 -0
  872. /package/dist/{luau-DsUEyLJN.js → js/luau.js} +0 -0
  873. /package/dist/{make-p6NYc19I.js → js/make.js} +0 -0
  874. /package/dist/{markdown-CCRtgC0b.js → js/markdown2.js} +0 -0
  875. /package/dist/{marked.esm-D9xINNve.js → js/marked.esm.js} +0 -0
  876. /package/dist/{material-theme-darker-CWC5BoMv.js → js/material-theme-darker.js} +0 -0
  877. /package/dist/{material-theme-lighter-BJrV5b2o.js → js/material-theme-lighter.js} +0 -0
  878. /package/dist/{material-theme-ocean-DYpMfDiX.js → js/material-theme-ocean.js} +0 -0
  879. /package/dist/{material-theme-palenight-3Ix3iI7Q.js → js/material-theme-palenight.js} +0 -0
  880. /package/dist/{material-theme-D__z84-n.js → js/material-theme.js} +0 -0
  881. /package/dist/{math-CJAnbPum.js → js/math.js} +0 -0
  882. /package/dist/{matlab-CL0oMGfq.js → js/matlab.js} +0 -0
  883. /package/dist/{mdx-BTufVkNP.js → js/mdx.js} +0 -0
  884. /package/dist/{mermaid-FCjIh1A7.js → js/mermaid.js} +0 -0
  885. /package/dist/{min-dark-B4KRMcN3.js → js/min-dark.js} +0 -0
  886. /package/dist/{min-light-BQVJODr0.js → js/min-light.js} +0 -0
  887. /package/dist/{mipsasm-Cn6AQ4lM.js → js/mipsasm.js} +0 -0
  888. /package/dist/{mojo-C9IiQhp4.js → js/mojo.js} +0 -0
  889. /package/dist/{monokai-vDwMMRi4.js → js/monokai.js} +0 -0
  890. /package/dist/{move-BdizQ4_I.js → js/move.js} +0 -0
  891. /package/dist/{narrat-BP2kx-u2.js → js/narrat.js} +0 -0
  892. /package/dist/{nextflow-CyRmCGOe.js → js/nextflow.js} +0 -0
  893. /package/dist/{night-owl-DmjkOa5g.js → js/night-owl.js} +0 -0
  894. /package/dist/{nix-qPhlsqZI.js → js/nix.js} +0 -0
  895. /package/dist/{nord-sjxbvIbg.js → js/nord.js} +0 -0
  896. /package/dist/{nushell-puA-1bCW.js → js/nushell.js} +0 -0
  897. /package/dist/{objective-c-D-qDLNy5.js → js/objective-c.js} +0 -0
  898. /package/dist/{objective-cpp-CFxSAM6p.js → js/objective-cpp.js} +0 -0
  899. /package/dist/{ocaml-CsLB7SWJ.js → js/ocaml.js} +0 -0
  900. /package/dist/{one-dark-pro-BHH-VjFD.js → js/one-dark-pro.js} +0 -0
  901. /package/dist/{one-light-BqE6erWk.js → js/one-light.js} +0 -0
  902. /package/dist/{openscad-DJCIQfnJ.js → js/openscad.js} +0 -0
  903. /package/dist/{pascal-CPg9_ZFN.js → js/pascal.js} +0 -0
  904. /package/dist/{path-esxOUfAH.js → js/path.js} +0 -0
  905. /package/dist/{pkl-BQQ96hvn.js → js/pkl.js} +0 -0
  906. /package/dist/{plastic-BrNUBdSC.js → js/plastic.js} +0 -0
  907. /package/dist/{plsql-Co7Bxe7U.js → js/plsql.js} +0 -0
  908. /package/dist/{po-BqzJCro7.js → js/po.js} +0 -0
  909. /package/dist/{poimandres-C_AK8TlO.js → js/poimandres.js} +0 -0
  910. /package/dist/{polar-CtdYIPEe.js → js/polar.js} +0 -0
  911. /package/dist/{postcss-ChqFKb46.js → js/postcss2.js} +0 -0
  912. /package/dist/{powerquery-CDugc1w-.js → js/powerquery.js} +0 -0
  913. /package/dist/{powershell-j5X-IA59.js → js/powershell.js} +0 -0
  914. /package/dist/{prisma-Cyl7YhUw.js → js/prisma.js} +0 -0
  915. /package/dist/{prolog-DELKnUYf.js → js/prolog.js} +0 -0
  916. /package/dist/{proto-C4A_gDBY.js → js/proto.js} +0 -0
  917. /package/dist/{puppet-DFC9LyFj.js → js/puppet.js} +0 -0
  918. /package/dist/{purescript-eECq7_n2.js → js/purescript.js} +0 -0
  919. /package/dist/{python-BhdCuCld.js → js/python2.js} +0 -0
  920. /package/dist/{qmldir-BpJII-Ze.js → js/qmldir.js} +0 -0
  921. /package/dist/{qss-CpMcemMc.js → js/qss.js} +0 -0
  922. /package/dist/{r-D90zdkbN.js → js/r2.js} +0 -0
  923. /package/dist/{racket-COTs6Zfi.js → js/racket.js} +0 -0
  924. /package/dist/{raku-DfOtwMUC.js → js/raku.js} +0 -0
  925. /package/dist/{red-CWGFZsim.js → js/red.js} +0 -0
  926. /package/dist/{reg-BX5DwoEA.js → js/reg.js} +0 -0
  927. /package/dist/{regexp-Cap8fK_2.js → js/regexp2.js} +0 -0
  928. /package/dist/{rel-CzXuLSk3.js → js/rel.js} +0 -0
  929. /package/dist/{riscv-DnFIiqh3.js → js/riscv.js} +0 -0
  930. /package/dist/{rose-pine-dawn-D5sdDB-J.js → js/rose-pine-dawn.js} +0 -0
  931. /package/dist/{rose-pine-moon-2Vb7bLLO.js → js/rose-pine-moon.js} +0 -0
  932. /package/dist/{rose-pine-C4v2iQVe.js → js/rose-pine.js} +0 -0
  933. /package/dist/{rosmsg-D02ul3fM.js → js/rosmsg.js} +0 -0
  934. /package/dist/{rust-s3hBbfQg.js → js/rust.js} +0 -0
  935. /package/dist/{sass-v3HeJ9Fl.js → js/sass.js} +0 -0
  936. /package/dist/{scala-BTIBM_Vn.js → js/scala.js} +0 -0
  937. /package/dist/{scheme-C4NQMf7a.js → js/scheme.js} +0 -0
  938. /package/dist/{sdbl-BA3l-JrH.js → js/sdbl2.js} +0 -0
  939. /package/dist/{shellscript-BQ8mKDAF.js → js/shellscript2.js} +0 -0
  940. /package/dist/{slack-dark-DhXO5DWr.js → js/slack-dark.js} +0 -0
  941. /package/dist/{slack-ochin-aAGl4PPH.js → js/slack-ochin.js} +0 -0
  942. /package/dist/{smalltalk-DbwVUw_i.js → js/smalltalk.js} +0 -0
  943. /package/dist/{snazzy-light-B4S5mk83.js → js/snazzy-light.js} +0 -0
  944. /package/dist/{solarized-dark-Dexkq3Fm.js → js/solarized-dark.js} +0 -0
  945. /package/dist/{solarized-light-I-Bzy8UC.js → js/solarized-light.js} +0 -0
  946. /package/dist/{solidity-SMk0TJDc.js → js/solidity.js} +0 -0
  947. /package/dist/{splunk-DXXu2r7r.js → js/splunk.js} +0 -0
  948. /package/dist/{sql-D0eLHBiZ.js → js/sql2.js} +0 -0
  949. /package/dist/{ssh-config-DyVcFTfI.js → js/ssh-config.js} +0 -0
  950. /package/dist/{stylus-BKTuFHcX.js → js/stylus2.js} +0 -0
  951. /package/dist/{swift-Cenptrnf.js → js/swift.js} +0 -0
  952. /package/dist/{synthwave-84-BRkDuVE-.js → js/synthwave-84.js} +0 -0
  953. /package/dist/{system-verilog-Cvgukx4v.js → js/system-verilog.js} +0 -0
  954. /package/dist/{systemd-BepdslJQ.js → js/systemd.js} +0 -0
  955. /package/dist/{talonscript-Q98m-VXh.js → js/talonscript.js} +0 -0
  956. /package/dist/{tasl-uebrX98X.js → js/tasl.js} +0 -0
  957. /package/dist/{tcl-B1Ny4XFf.js → js/tcl.js} +0 -0
  958. /package/dist/{terraform-0mA5ERTe.js → js/terraform.js} +0 -0
  959. /package/dist/{tokyo-night-D0mU3-u8.js → js/tokyo-night.js} +0 -0
  960. /package/dist/{toml-vMAjra5M.js → js/toml.js} +0 -0
  961. /package/dist/{tsv-BnmbkntZ.js → js/tsv.js} +0 -0
  962. /package/dist/{tsx-C0w0w5St.js → js/tsx2.js} +0 -0
  963. /package/dist/{turtle-4UWi_qX6.js → js/turtle2.js} +0 -0
  964. /package/dist/{typescript-4YtK2JL4.js → js/typescript2.js} +0 -0
  965. /package/dist/{typespec-CILw3zvZ.js → js/typespec.js} +0 -0
  966. /package/dist/{typst-CLajFw6q.js → js/typst.js} +0 -0
  967. /package/dist/{v-MJV2RQvK.js → js/v.js} +0 -0
  968. /package/dist/{vala-Dc1TiHw1.js → js/vala.js} +0 -0
  969. /package/dist/{vb-CoJdNmGs.js → js/vb.js} +0 -0
  970. /package/dist/{verilog-C7aVmiO0.js → js/verilog.js} +0 -0
  971. /package/dist/{vesper-Cvcqyrim.js → js/vesper.js} +0 -0
  972. /package/dist/{vhdl-CYQvzAG1.js → js/vhdl.js} +0 -0
  973. /package/dist/{viml-DOyjiDI8.js → js/viml.js} +0 -0
  974. /package/dist/{vitesse-black-CUYJaB5b.js → js/vitesse-black.js} +0 -0
  975. /package/dist/{vitesse-dark-BNlzDJ1Z.js → js/vitesse-dark.js} +0 -0
  976. /package/dist/{vitesse-light-JU98KqVa.js → js/vitesse-light.js} +0 -0
  977. /package/dist/{vyper-JU_r7Ch6.js → js/vyper.js} +0 -0
  978. /package/dist/{wasm-DJ1S--fN.js → js/wasm.js} +0 -0
  979. /package/dist/{wasm-eLFiAU8u.js → js/wasm2.js} +0 -0
  980. /package/dist/{wenyan-CqkzmyWz.js → js/wenyan.js} +0 -0
  981. /package/dist/{wgsl-gV62iTnF.js → js/wgsl.js} +0 -0
  982. /package/dist/{wikitext-BfUl8La4.js → js/wikitext.js} +0 -0
  983. /package/dist/{wit-kp_bCf2U.js → js/wit.js} +0 -0
  984. /package/dist/{wolfram-aPsN9AKt.js → js/wolfram.js} +0 -0
  985. /package/dist/{yaml-P2kjOPvW.js → js/yaml2.js} +0 -0
  986. /package/dist/{zenscript-BuY4FX-t.js → js/zenscript.js} +0 -0
  987. /package/dist/{zig-CGDGjytz.js → js/zig.js} +0 -0
@@ -1,2194 +0,0 @@
1
- import "./marked.esm-D9xINNve.js";
2
- import "./isArrayLikeObject-Dz_TDfw0.js";
3
- import { g as utils_default } from "./chunk-S3R3BYOJ-DHTsHczu.js";
4
- import { g as log, h as __name, m as __export } from "./src-B-SBGd0A.js";
5
- import { B as setAccTitle, C as getDiagramTitle, U as setDiagramTitle, _ as getAccDescription, a as clear, b as getConfig2, v as getAccTitle, z as setAccDescription } from "./chunk-ABZYJK2D-BZvlc6Ej.js";
6
- import "./path-esxOUfAH.js";
7
- import "./math-CJAnbPum.js";
8
- import "./array-CkdOJbdT.js";
9
- import "./line-EpckC7pZ.js";
10
- import "./dist-CrnZo_23.js";
11
- import "./chunk-JA3XYJ7Z-Dhh1_u_p.js";
12
- import "./chunk-HN2XXSSU-Lv4Ef0co.js";
13
- import "./chunk-CVBHYZKI-DxEBlSK7.js";
14
- import { t as getDiagramElement } from "./chunk-55IACEB6-CDMD5yu1.js";
15
- import { t as setupViewPortForSVG } from "./chunk-QN33PNHL-DnPw7tni.js";
16
- import "./chunk-ATLVNIR6-C3g7rsIT.js";
17
- import "./chunk-JZLCHNYA-vrb_Ucuc.js";
18
- import "./chunk-QXUST7PY-D9mGQ-UP.js";
19
- import { r as render, t as getRegisteredLayoutAlgorithm } from "./chunk-N4CR4FBY-BdaGxHlZ.js";
20
- var parser = (function() {
21
- var e = /* @__PURE__ */ __name(function(e, t, n, r) {
22
- for (n ||= {}, r = e.length; r--; n[e[r]] = t);
23
- return n;
24
- }, "o"), t = [1, 3], r = [1, 4], i = [1, 5], a = [1, 6], o = [
25
- 5,
26
- 6,
27
- 8,
28
- 9,
29
- 11,
30
- 13,
31
- 21,
32
- 22,
33
- 23,
34
- 24,
35
- 41,
36
- 42,
37
- 43,
38
- 44,
39
- 45,
40
- 46,
41
- 54,
42
- 72,
43
- 74,
44
- 77,
45
- 89,
46
- 90
47
- ], 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 = [
48
- 5,
49
- 8,
50
- 9,
51
- 11,
52
- 13,
53
- 21,
54
- 22,
55
- 23,
56
- 24,
57
- 41,
58
- 42,
59
- 43,
60
- 44,
61
- 45,
62
- 46,
63
- 54,
64
- 72,
65
- 74,
66
- 77,
67
- 89,
68
- 90
69
- ], E = [1, 61], D = [89, 90], O = [
70
- 5,
71
- 8,
72
- 9,
73
- 11,
74
- 13,
75
- 21,
76
- 22,
77
- 23,
78
- 24,
79
- 27,
80
- 29,
81
- 41,
82
- 42,
83
- 43,
84
- 44,
85
- 45,
86
- 46,
87
- 54,
88
- 61,
89
- 63,
90
- 72,
91
- 74,
92
- 75,
93
- 76,
94
- 77,
95
- 80,
96
- 81,
97
- 82,
98
- 83,
99
- 84,
100
- 85,
101
- 86,
102
- 87,
103
- 88,
104
- 89,
105
- 90
106
- ], 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 = [
107
- 5,
108
- 8,
109
- 9,
110
- 11,
111
- 13,
112
- 21,
113
- 22,
114
- 23,
115
- 24,
116
- 27,
117
- 41,
118
- 42,
119
- 43,
120
- 44,
121
- 45,
122
- 46,
123
- 54,
124
- 72,
125
- 74,
126
- 75,
127
- 76,
128
- 77,
129
- 80,
130
- 81,
131
- 82,
132
- 83,
133
- 84,
134
- 85,
135
- 86,
136
- 87,
137
- 88,
138
- 89,
139
- 90
140
- ], H = [63, 64], se = [1, 101], ce = [
141
- 5,
142
- 8,
143
- 9,
144
- 11,
145
- 13,
146
- 21,
147
- 22,
148
- 23,
149
- 24,
150
- 41,
151
- 42,
152
- 43,
153
- 44,
154
- 45,
155
- 46,
156
- 54,
157
- 72,
158
- 74,
159
- 76,
160
- 77,
161
- 89,
162
- 90
163
- ], U = [
164
- 5,
165
- 8,
166
- 9,
167
- 11,
168
- 13,
169
- 21,
170
- 22,
171
- 23,
172
- 24,
173
- 41,
174
- 42,
175
- 43,
176
- 44,
177
- 45,
178
- 46,
179
- 54,
180
- 72,
181
- 74,
182
- 75,
183
- 76,
184
- 77,
185
- 80,
186
- 81,
187
- 82,
188
- 83,
189
- 84,
190
- 85,
191
- 86,
192
- 87,
193
- 88,
194
- 89,
195
- 90
196
- ], 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 = {
197
- trace: /* @__PURE__ */ __name(function() {}, "trace"),
198
- yy: {},
199
- symbols_: {
200
- error: 2,
201
- start: 3,
202
- directive: 4,
203
- NEWLINE: 5,
204
- RD: 6,
205
- diagram: 7,
206
- EOF: 8,
207
- acc_title: 9,
208
- acc_title_value: 10,
209
- acc_descr: 11,
210
- acc_descr_value: 12,
211
- acc_descr_multiline_value: 13,
212
- requirementDef: 14,
213
- elementDef: 15,
214
- relationshipDef: 16,
215
- direction: 17,
216
- styleStatement: 18,
217
- classDefStatement: 19,
218
- classStatement: 20,
219
- direction_tb: 21,
220
- direction_bt: 22,
221
- direction_rl: 23,
222
- direction_lr: 24,
223
- requirementType: 25,
224
- requirementName: 26,
225
- STRUCT_START: 27,
226
- requirementBody: 28,
227
- STYLE_SEPARATOR: 29,
228
- idList: 30,
229
- ID: 31,
230
- COLONSEP: 32,
231
- id: 33,
232
- TEXT: 34,
233
- text: 35,
234
- RISK: 36,
235
- riskLevel: 37,
236
- VERIFYMTHD: 38,
237
- verifyType: 39,
238
- STRUCT_STOP: 40,
239
- REQUIREMENT: 41,
240
- FUNCTIONAL_REQUIREMENT: 42,
241
- INTERFACE_REQUIREMENT: 43,
242
- PERFORMANCE_REQUIREMENT: 44,
243
- PHYSICAL_REQUIREMENT: 45,
244
- DESIGN_CONSTRAINT: 46,
245
- LOW_RISK: 47,
246
- MED_RISK: 48,
247
- HIGH_RISK: 49,
248
- VERIFY_ANALYSIS: 50,
249
- VERIFY_DEMONSTRATION: 51,
250
- VERIFY_INSPECTION: 52,
251
- VERIFY_TEST: 53,
252
- ELEMENT: 54,
253
- elementName: 55,
254
- elementBody: 56,
255
- TYPE: 57,
256
- type: 58,
257
- DOCREF: 59,
258
- ref: 60,
259
- END_ARROW_L: 61,
260
- relationship: 62,
261
- LINE: 63,
262
- END_ARROW_R: 64,
263
- CONTAINS: 65,
264
- COPIES: 66,
265
- DERIVES: 67,
266
- SATISFIES: 68,
267
- VERIFIES: 69,
268
- REFINES: 70,
269
- TRACES: 71,
270
- CLASSDEF: 72,
271
- stylesOpt: 73,
272
- CLASS: 74,
273
- ALPHA: 75,
274
- COMMA: 76,
275
- STYLE: 77,
276
- style: 78,
277
- styleComponent: 79,
278
- NUM: 80,
279
- COLON: 81,
280
- UNIT: 82,
281
- SPACE: 83,
282
- BRKT: 84,
283
- PCT: 85,
284
- MINUS: 86,
285
- LABEL: 87,
286
- SEMICOLON: 88,
287
- unqString: 89,
288
- qString: 90,
289
- $accept: 0,
290
- $end: 1
291
- },
292
- terminals_: {
293
- 2: "error",
294
- 5: "NEWLINE",
295
- 6: "RD",
296
- 8: "EOF",
297
- 9: "acc_title",
298
- 10: "acc_title_value",
299
- 11: "acc_descr",
300
- 12: "acc_descr_value",
301
- 13: "acc_descr_multiline_value",
302
- 21: "direction_tb",
303
- 22: "direction_bt",
304
- 23: "direction_rl",
305
- 24: "direction_lr",
306
- 27: "STRUCT_START",
307
- 29: "STYLE_SEPARATOR",
308
- 31: "ID",
309
- 32: "COLONSEP",
310
- 34: "TEXT",
311
- 36: "RISK",
312
- 38: "VERIFYMTHD",
313
- 40: "STRUCT_STOP",
314
- 41: "REQUIREMENT",
315
- 42: "FUNCTIONAL_REQUIREMENT",
316
- 43: "INTERFACE_REQUIREMENT",
317
- 44: "PERFORMANCE_REQUIREMENT",
318
- 45: "PHYSICAL_REQUIREMENT",
319
- 46: "DESIGN_CONSTRAINT",
320
- 47: "LOW_RISK",
321
- 48: "MED_RISK",
322
- 49: "HIGH_RISK",
323
- 50: "VERIFY_ANALYSIS",
324
- 51: "VERIFY_DEMONSTRATION",
325
- 52: "VERIFY_INSPECTION",
326
- 53: "VERIFY_TEST",
327
- 54: "ELEMENT",
328
- 57: "TYPE",
329
- 59: "DOCREF",
330
- 61: "END_ARROW_L",
331
- 63: "LINE",
332
- 64: "END_ARROW_R",
333
- 65: "CONTAINS",
334
- 66: "COPIES",
335
- 67: "DERIVES",
336
- 68: "SATISFIES",
337
- 69: "VERIFIES",
338
- 70: "REFINES",
339
- 71: "TRACES",
340
- 72: "CLASSDEF",
341
- 74: "CLASS",
342
- 75: "ALPHA",
343
- 76: "COMMA",
344
- 77: "STYLE",
345
- 80: "NUM",
346
- 81: "COLON",
347
- 82: "UNIT",
348
- 83: "SPACE",
349
- 84: "BRKT",
350
- 85: "PCT",
351
- 86: "MINUS",
352
- 87: "LABEL",
353
- 88: "SEMICOLON",
354
- 89: "unqString",
355
- 90: "qString"
356
- },
357
- productions_: [
358
- 0,
359
- [3, 3],
360
- [3, 2],
361
- [3, 4],
362
- [4, 2],
363
- [4, 2],
364
- [4, 1],
365
- [7, 0],
366
- [7, 2],
367
- [7, 2],
368
- [7, 2],
369
- [7, 2],
370
- [7, 2],
371
- [7, 2],
372
- [7, 2],
373
- [7, 2],
374
- [7, 2],
375
- [17, 1],
376
- [17, 1],
377
- [17, 1],
378
- [17, 1],
379
- [14, 5],
380
- [14, 7],
381
- [28, 5],
382
- [28, 5],
383
- [28, 5],
384
- [28, 5],
385
- [28, 2],
386
- [28, 1],
387
- [25, 1],
388
- [25, 1],
389
- [25, 1],
390
- [25, 1],
391
- [25, 1],
392
- [25, 1],
393
- [37, 1],
394
- [37, 1],
395
- [37, 1],
396
- [39, 1],
397
- [39, 1],
398
- [39, 1],
399
- [39, 1],
400
- [15, 5],
401
- [15, 7],
402
- [56, 5],
403
- [56, 5],
404
- [56, 2],
405
- [56, 1],
406
- [16, 5],
407
- [16, 5],
408
- [62, 1],
409
- [62, 1],
410
- [62, 1],
411
- [62, 1],
412
- [62, 1],
413
- [62, 1],
414
- [62, 1],
415
- [19, 3],
416
- [20, 3],
417
- [20, 3],
418
- [30, 1],
419
- [30, 3],
420
- [30, 1],
421
- [30, 3],
422
- [18, 3],
423
- [73, 1],
424
- [73, 3],
425
- [78, 1],
426
- [78, 2],
427
- [79, 1],
428
- [79, 1],
429
- [79, 1],
430
- [79, 1],
431
- [79, 1],
432
- [79, 1],
433
- [79, 1],
434
- [79, 1],
435
- [79, 1],
436
- [79, 1],
437
- [26, 1],
438
- [26, 1],
439
- [33, 1],
440
- [33, 1],
441
- [35, 1],
442
- [35, 1],
443
- [55, 1],
444
- [55, 1],
445
- [58, 1],
446
- [58, 1],
447
- [60, 1],
448
- [60, 1]
449
- ],
450
- performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
451
- var s = a.length - 1;
452
- switch (i) {
453
- case 4:
454
- this.$ = a[s].trim(), r.setAccTitle(this.$);
455
- break;
456
- case 5:
457
- case 6:
458
- this.$ = a[s].trim(), r.setAccDescription(this.$);
459
- break;
460
- case 7:
461
- this.$ = [];
462
- break;
463
- case 17:
464
- r.setDirection("TB");
465
- break;
466
- case 18:
467
- r.setDirection("BT");
468
- break;
469
- case 19:
470
- r.setDirection("RL");
471
- break;
472
- case 20:
473
- r.setDirection("LR");
474
- break;
475
- case 21:
476
- r.addRequirement(a[s - 3], a[s - 4]);
477
- break;
478
- case 22:
479
- r.addRequirement(a[s - 5], a[s - 6]), r.setClass([a[s - 5]], a[s - 3]);
480
- break;
481
- case 23:
482
- r.setNewReqId(a[s - 2]);
483
- break;
484
- case 24:
485
- r.setNewReqText(a[s - 2]);
486
- break;
487
- case 25:
488
- r.setNewReqRisk(a[s - 2]);
489
- break;
490
- case 26:
491
- r.setNewReqVerifyMethod(a[s - 2]);
492
- break;
493
- case 29:
494
- this.$ = r.RequirementType.REQUIREMENT;
495
- break;
496
- case 30:
497
- this.$ = r.RequirementType.FUNCTIONAL_REQUIREMENT;
498
- break;
499
- case 31:
500
- this.$ = r.RequirementType.INTERFACE_REQUIREMENT;
501
- break;
502
- case 32:
503
- this.$ = r.RequirementType.PERFORMANCE_REQUIREMENT;
504
- break;
505
- case 33:
506
- this.$ = r.RequirementType.PHYSICAL_REQUIREMENT;
507
- break;
508
- case 34:
509
- this.$ = r.RequirementType.DESIGN_CONSTRAINT;
510
- break;
511
- case 35:
512
- this.$ = r.RiskLevel.LOW_RISK;
513
- break;
514
- case 36:
515
- this.$ = r.RiskLevel.MED_RISK;
516
- break;
517
- case 37:
518
- this.$ = r.RiskLevel.HIGH_RISK;
519
- break;
520
- case 38:
521
- this.$ = r.VerifyType.VERIFY_ANALYSIS;
522
- break;
523
- case 39:
524
- this.$ = r.VerifyType.VERIFY_DEMONSTRATION;
525
- break;
526
- case 40:
527
- this.$ = r.VerifyType.VERIFY_INSPECTION;
528
- break;
529
- case 41:
530
- this.$ = r.VerifyType.VERIFY_TEST;
531
- break;
532
- case 42:
533
- r.addElement(a[s - 3]);
534
- break;
535
- case 43:
536
- r.addElement(a[s - 5]), r.setClass([a[s - 5]], a[s - 3]);
537
- break;
538
- case 44:
539
- r.setNewElementType(a[s - 2]);
540
- break;
541
- case 45:
542
- r.setNewElementDocRef(a[s - 2]);
543
- break;
544
- case 48:
545
- r.addRelationship(a[s - 2], a[s], a[s - 4]);
546
- break;
547
- case 49:
548
- r.addRelationship(a[s - 2], a[s - 4], a[s]);
549
- break;
550
- case 50:
551
- this.$ = r.Relationships.CONTAINS;
552
- break;
553
- case 51:
554
- this.$ = r.Relationships.COPIES;
555
- break;
556
- case 52:
557
- this.$ = r.Relationships.DERIVES;
558
- break;
559
- case 53:
560
- this.$ = r.Relationships.SATISFIES;
561
- break;
562
- case 54:
563
- this.$ = r.Relationships.VERIFIES;
564
- break;
565
- case 55:
566
- this.$ = r.Relationships.REFINES;
567
- break;
568
- case 56:
569
- this.$ = r.Relationships.TRACES;
570
- break;
571
- case 57:
572
- this.$ = a[s - 2], r.defineClass(a[s - 1], a[s]);
573
- break;
574
- case 58:
575
- r.setClass(a[s - 1], a[s]);
576
- break;
577
- case 59:
578
- r.setClass([a[s - 2]], a[s]);
579
- break;
580
- case 60:
581
- case 62:
582
- this.$ = [a[s]];
583
- break;
584
- case 61:
585
- case 63:
586
- this.$ = a[s - 2].concat([a[s]]);
587
- break;
588
- case 64:
589
- this.$ = a[s - 2], r.setCssStyle(a[s - 1], a[s]);
590
- break;
591
- case 65:
592
- this.$ = [a[s]];
593
- break;
594
- case 66:
595
- a[s - 2].push(a[s]), this.$ = a[s - 2];
596
- break;
597
- case 68:
598
- this.$ = a[s - 1] + a[s];
599
- break;
600
- }
601
- }, "anonymous"),
602
- table: [
603
- {
604
- 3: 1,
605
- 4: 2,
606
- 6: t,
607
- 9: r,
608
- 11: i,
609
- 13: a
610
- },
611
- { 1: [3] },
612
- {
613
- 3: 8,
614
- 4: 2,
615
- 5: [1, 7],
616
- 6: t,
617
- 9: r,
618
- 11: i,
619
- 13: a
620
- },
621
- { 5: [1, 9] },
622
- { 10: [1, 10] },
623
- { 12: [1, 11] },
624
- e(o, [2, 6]),
625
- {
626
- 3: 12,
627
- 4: 2,
628
- 6: t,
629
- 9: r,
630
- 11: i,
631
- 13: a
632
- },
633
- { 1: [2, 2] },
634
- {
635
- 4: 17,
636
- 5: s,
637
- 7: 13,
638
- 8: c,
639
- 9: r,
640
- 11: i,
641
- 13: a,
642
- 14: 14,
643
- 15: 15,
644
- 16: 16,
645
- 17: 18,
646
- 18: 19,
647
- 19: 20,
648
- 20: 21,
649
- 21: l,
650
- 22: u,
651
- 23: d,
652
- 24: f,
653
- 25: 23,
654
- 33: 25,
655
- 41: p,
656
- 42: m,
657
- 43: h,
658
- 44: g,
659
- 45: _,
660
- 46: v,
661
- 54: y,
662
- 72: b,
663
- 74: x,
664
- 77: S,
665
- 89: C,
666
- 90: w
667
- },
668
- e(o, [2, 4]),
669
- e(o, [2, 5]),
670
- { 1: [2, 1] },
671
- { 8: [1, 41] },
672
- {
673
- 4: 17,
674
- 5: s,
675
- 7: 42,
676
- 8: c,
677
- 9: r,
678
- 11: i,
679
- 13: a,
680
- 14: 14,
681
- 15: 15,
682
- 16: 16,
683
- 17: 18,
684
- 18: 19,
685
- 19: 20,
686
- 20: 21,
687
- 21: l,
688
- 22: u,
689
- 23: d,
690
- 24: f,
691
- 25: 23,
692
- 33: 25,
693
- 41: p,
694
- 42: m,
695
- 43: h,
696
- 44: g,
697
- 45: _,
698
- 46: v,
699
- 54: y,
700
- 72: b,
701
- 74: x,
702
- 77: S,
703
- 89: C,
704
- 90: w
705
- },
706
- {
707
- 4: 17,
708
- 5: s,
709
- 7: 43,
710
- 8: c,
711
- 9: r,
712
- 11: i,
713
- 13: a,
714
- 14: 14,
715
- 15: 15,
716
- 16: 16,
717
- 17: 18,
718
- 18: 19,
719
- 19: 20,
720
- 20: 21,
721
- 21: l,
722
- 22: u,
723
- 23: d,
724
- 24: f,
725
- 25: 23,
726
- 33: 25,
727
- 41: p,
728
- 42: m,
729
- 43: h,
730
- 44: g,
731
- 45: _,
732
- 46: v,
733
- 54: y,
734
- 72: b,
735
- 74: x,
736
- 77: S,
737
- 89: C,
738
- 90: w
739
- },
740
- {
741
- 4: 17,
742
- 5: s,
743
- 7: 44,
744
- 8: c,
745
- 9: r,
746
- 11: i,
747
- 13: a,
748
- 14: 14,
749
- 15: 15,
750
- 16: 16,
751
- 17: 18,
752
- 18: 19,
753
- 19: 20,
754
- 20: 21,
755
- 21: l,
756
- 22: u,
757
- 23: d,
758
- 24: f,
759
- 25: 23,
760
- 33: 25,
761
- 41: p,
762
- 42: m,
763
- 43: h,
764
- 44: g,
765
- 45: _,
766
- 46: v,
767
- 54: y,
768
- 72: b,
769
- 74: x,
770
- 77: S,
771
- 89: C,
772
- 90: w
773
- },
774
- {
775
- 4: 17,
776
- 5: s,
777
- 7: 45,
778
- 8: c,
779
- 9: r,
780
- 11: i,
781
- 13: a,
782
- 14: 14,
783
- 15: 15,
784
- 16: 16,
785
- 17: 18,
786
- 18: 19,
787
- 19: 20,
788
- 20: 21,
789
- 21: l,
790
- 22: u,
791
- 23: d,
792
- 24: f,
793
- 25: 23,
794
- 33: 25,
795
- 41: p,
796
- 42: m,
797
- 43: h,
798
- 44: g,
799
- 45: _,
800
- 46: v,
801
- 54: y,
802
- 72: b,
803
- 74: x,
804
- 77: S,
805
- 89: C,
806
- 90: w
807
- },
808
- {
809
- 4: 17,
810
- 5: s,
811
- 7: 46,
812
- 8: c,
813
- 9: r,
814
- 11: i,
815
- 13: a,
816
- 14: 14,
817
- 15: 15,
818
- 16: 16,
819
- 17: 18,
820
- 18: 19,
821
- 19: 20,
822
- 20: 21,
823
- 21: l,
824
- 22: u,
825
- 23: d,
826
- 24: f,
827
- 25: 23,
828
- 33: 25,
829
- 41: p,
830
- 42: m,
831
- 43: h,
832
- 44: g,
833
- 45: _,
834
- 46: v,
835
- 54: y,
836
- 72: b,
837
- 74: x,
838
- 77: S,
839
- 89: C,
840
- 90: w
841
- },
842
- {
843
- 4: 17,
844
- 5: s,
845
- 7: 47,
846
- 8: c,
847
- 9: r,
848
- 11: i,
849
- 13: a,
850
- 14: 14,
851
- 15: 15,
852
- 16: 16,
853
- 17: 18,
854
- 18: 19,
855
- 19: 20,
856
- 20: 21,
857
- 21: l,
858
- 22: u,
859
- 23: d,
860
- 24: f,
861
- 25: 23,
862
- 33: 25,
863
- 41: p,
864
- 42: m,
865
- 43: h,
866
- 44: g,
867
- 45: _,
868
- 46: v,
869
- 54: y,
870
- 72: b,
871
- 74: x,
872
- 77: S,
873
- 89: C,
874
- 90: w
875
- },
876
- {
877
- 4: 17,
878
- 5: s,
879
- 7: 48,
880
- 8: c,
881
- 9: r,
882
- 11: i,
883
- 13: a,
884
- 14: 14,
885
- 15: 15,
886
- 16: 16,
887
- 17: 18,
888
- 18: 19,
889
- 19: 20,
890
- 20: 21,
891
- 21: l,
892
- 22: u,
893
- 23: d,
894
- 24: f,
895
- 25: 23,
896
- 33: 25,
897
- 41: p,
898
- 42: m,
899
- 43: h,
900
- 44: g,
901
- 45: _,
902
- 46: v,
903
- 54: y,
904
- 72: b,
905
- 74: x,
906
- 77: S,
907
- 89: C,
908
- 90: w
909
- },
910
- {
911
- 4: 17,
912
- 5: s,
913
- 7: 49,
914
- 8: c,
915
- 9: r,
916
- 11: i,
917
- 13: a,
918
- 14: 14,
919
- 15: 15,
920
- 16: 16,
921
- 17: 18,
922
- 18: 19,
923
- 19: 20,
924
- 20: 21,
925
- 21: l,
926
- 22: u,
927
- 23: d,
928
- 24: f,
929
- 25: 23,
930
- 33: 25,
931
- 41: p,
932
- 42: m,
933
- 43: h,
934
- 44: g,
935
- 45: _,
936
- 46: v,
937
- 54: y,
938
- 72: b,
939
- 74: x,
940
- 77: S,
941
- 89: C,
942
- 90: w
943
- },
944
- {
945
- 4: 17,
946
- 5: s,
947
- 7: 50,
948
- 8: c,
949
- 9: r,
950
- 11: i,
951
- 13: a,
952
- 14: 14,
953
- 15: 15,
954
- 16: 16,
955
- 17: 18,
956
- 18: 19,
957
- 19: 20,
958
- 20: 21,
959
- 21: l,
960
- 22: u,
961
- 23: d,
962
- 24: f,
963
- 25: 23,
964
- 33: 25,
965
- 41: p,
966
- 42: m,
967
- 43: h,
968
- 44: g,
969
- 45: _,
970
- 46: v,
971
- 54: y,
972
- 72: b,
973
- 74: x,
974
- 77: S,
975
- 89: C,
976
- 90: w
977
- },
978
- {
979
- 26: 51,
980
- 89: [1, 52],
981
- 90: [1, 53]
982
- },
983
- {
984
- 55: 54,
985
- 89: [1, 55],
986
- 90: [1, 56]
987
- },
988
- {
989
- 29: [1, 59],
990
- 61: [1, 57],
991
- 63: [1, 58]
992
- },
993
- e(T, [2, 17]),
994
- e(T, [2, 18]),
995
- e(T, [2, 19]),
996
- e(T, [2, 20]),
997
- {
998
- 30: 60,
999
- 33: 62,
1000
- 75: E,
1001
- 89: C,
1002
- 90: w
1003
- },
1004
- {
1005
- 30: 63,
1006
- 33: 62,
1007
- 75: E,
1008
- 89: C,
1009
- 90: w
1010
- },
1011
- {
1012
- 30: 64,
1013
- 33: 62,
1014
- 75: E,
1015
- 89: C,
1016
- 90: w
1017
- },
1018
- e(D, [2, 29]),
1019
- e(D, [2, 30]),
1020
- e(D, [2, 31]),
1021
- e(D, [2, 32]),
1022
- e(D, [2, 33]),
1023
- e(D, [2, 34]),
1024
- e(O, [2, 81]),
1025
- e(O, [2, 82]),
1026
- { 1: [2, 3] },
1027
- { 8: [2, 8] },
1028
- { 8: [2, 9] },
1029
- { 8: [2, 10] },
1030
- { 8: [2, 11] },
1031
- { 8: [2, 12] },
1032
- { 8: [2, 13] },
1033
- { 8: [2, 14] },
1034
- { 8: [2, 15] },
1035
- { 8: [2, 16] },
1036
- {
1037
- 27: [1, 65],
1038
- 29: [1, 66]
1039
- },
1040
- e(k, [2, 79]),
1041
- e(k, [2, 80]),
1042
- {
1043
- 27: [1, 67],
1044
- 29: [1, 68]
1045
- },
1046
- e(k, [2, 85]),
1047
- e(k, [2, 86]),
1048
- {
1049
- 62: 69,
1050
- 65: ee,
1051
- 66: A,
1052
- 67: te,
1053
- 68: ne,
1054
- 69: re,
1055
- 70: ie,
1056
- 71: ae
1057
- },
1058
- {
1059
- 62: 77,
1060
- 65: ee,
1061
- 66: A,
1062
- 67: te,
1063
- 68: ne,
1064
- 69: re,
1065
- 70: ie,
1066
- 71: ae
1067
- },
1068
- {
1069
- 30: 78,
1070
- 33: 62,
1071
- 75: E,
1072
- 89: C,
1073
- 90: w
1074
- },
1075
- {
1076
- 73: 79,
1077
- 75: j,
1078
- 76: M,
1079
- 78: 81,
1080
- 79: 82,
1081
- 80: N,
1082
- 81: P,
1083
- 82: F,
1084
- 83: I,
1085
- 84: L,
1086
- 85: R,
1087
- 86: z,
1088
- 87: B,
1089
- 88: V
1090
- },
1091
- e(oe, [2, 60]),
1092
- e(oe, [2, 62]),
1093
- {
1094
- 73: 93,
1095
- 75: j,
1096
- 76: M,
1097
- 78: 81,
1098
- 79: 82,
1099
- 80: N,
1100
- 81: P,
1101
- 82: F,
1102
- 83: I,
1103
- 84: L,
1104
- 85: R,
1105
- 86: z,
1106
- 87: B,
1107
- 88: V
1108
- },
1109
- {
1110
- 30: 94,
1111
- 33: 62,
1112
- 75: E,
1113
- 76: M,
1114
- 89: C,
1115
- 90: w
1116
- },
1117
- { 5: [1, 95] },
1118
- {
1119
- 30: 96,
1120
- 33: 62,
1121
- 75: E,
1122
- 89: C,
1123
- 90: w
1124
- },
1125
- { 5: [1, 97] },
1126
- {
1127
- 30: 98,
1128
- 33: 62,
1129
- 75: E,
1130
- 89: C,
1131
- 90: w
1132
- },
1133
- { 63: [1, 99] },
1134
- e(H, [2, 50]),
1135
- e(H, [2, 51]),
1136
- e(H, [2, 52]),
1137
- e(H, [2, 53]),
1138
- e(H, [2, 54]),
1139
- e(H, [2, 55]),
1140
- e(H, [2, 56]),
1141
- { 64: [1, 100] },
1142
- e(T, [2, 59], { 76: M }),
1143
- e(T, [2, 64], { 76: se }),
1144
- {
1145
- 33: 103,
1146
- 75: [1, 102],
1147
- 89: C,
1148
- 90: w
1149
- },
1150
- e(ce, [2, 65], {
1151
- 79: 104,
1152
- 75: j,
1153
- 80: N,
1154
- 81: P,
1155
- 82: F,
1156
- 83: I,
1157
- 84: L,
1158
- 85: R,
1159
- 86: z,
1160
- 87: B,
1161
- 88: V
1162
- }),
1163
- e(U, [2, 67]),
1164
- e(U, [2, 69]),
1165
- e(U, [2, 70]),
1166
- e(U, [2, 71]),
1167
- e(U, [2, 72]),
1168
- e(U, [2, 73]),
1169
- e(U, [2, 74]),
1170
- e(U, [2, 75]),
1171
- e(U, [2, 76]),
1172
- e(U, [2, 77]),
1173
- e(U, [2, 78]),
1174
- e(T, [2, 57], { 76: se }),
1175
- e(T, [2, 58], { 76: M }),
1176
- {
1177
- 5: W,
1178
- 28: 105,
1179
- 31: G,
1180
- 34: K,
1181
- 36: q,
1182
- 38: J,
1183
- 40: Y
1184
- },
1185
- {
1186
- 27: [1, 112],
1187
- 76: M
1188
- },
1189
- {
1190
- 5: X,
1191
- 40: Z,
1192
- 56: 113,
1193
- 57: Q,
1194
- 59: $
1195
- },
1196
- {
1197
- 27: [1, 118],
1198
- 76: M
1199
- },
1200
- {
1201
- 33: 119,
1202
- 89: C,
1203
- 90: w
1204
- },
1205
- {
1206
- 33: 120,
1207
- 89: C,
1208
- 90: w
1209
- },
1210
- {
1211
- 75: j,
1212
- 78: 121,
1213
- 79: 82,
1214
- 80: N,
1215
- 81: P,
1216
- 82: F,
1217
- 83: I,
1218
- 84: L,
1219
- 85: R,
1220
- 86: z,
1221
- 87: B,
1222
- 88: V
1223
- },
1224
- e(oe, [2, 61]),
1225
- e(oe, [2, 63]),
1226
- e(U, [2, 68]),
1227
- e(T, [2, 21]),
1228
- { 32: [1, 122] },
1229
- { 32: [1, 123] },
1230
- { 32: [1, 124] },
1231
- { 32: [1, 125] },
1232
- {
1233
- 5: W,
1234
- 28: 126,
1235
- 31: G,
1236
- 34: K,
1237
- 36: q,
1238
- 38: J,
1239
- 40: Y
1240
- },
1241
- e(T, [2, 28]),
1242
- { 5: [1, 127] },
1243
- e(T, [2, 42]),
1244
- { 32: [1, 128] },
1245
- { 32: [1, 129] },
1246
- {
1247
- 5: X,
1248
- 40: Z,
1249
- 56: 130,
1250
- 57: Q,
1251
- 59: $
1252
- },
1253
- e(T, [2, 47]),
1254
- { 5: [1, 131] },
1255
- e(T, [2, 48]),
1256
- e(T, [2, 49]),
1257
- e(ce, [2, 66], {
1258
- 79: 104,
1259
- 75: j,
1260
- 80: N,
1261
- 81: P,
1262
- 82: F,
1263
- 83: I,
1264
- 84: L,
1265
- 85: R,
1266
- 86: z,
1267
- 87: B,
1268
- 88: V
1269
- }),
1270
- {
1271
- 33: 132,
1272
- 89: C,
1273
- 90: w
1274
- },
1275
- {
1276
- 35: 133,
1277
- 89: [1, 134],
1278
- 90: [1, 135]
1279
- },
1280
- {
1281
- 37: 136,
1282
- 47: [1, 137],
1283
- 48: [1, 138],
1284
- 49: [1, 139]
1285
- },
1286
- {
1287
- 39: 140,
1288
- 50: [1, 141],
1289
- 51: [1, 142],
1290
- 52: [1, 143],
1291
- 53: [1, 144]
1292
- },
1293
- e(T, [2, 27]),
1294
- {
1295
- 5: W,
1296
- 28: 145,
1297
- 31: G,
1298
- 34: K,
1299
- 36: q,
1300
- 38: J,
1301
- 40: Y
1302
- },
1303
- {
1304
- 58: 146,
1305
- 89: [1, 147],
1306
- 90: [1, 148]
1307
- },
1308
- {
1309
- 60: 149,
1310
- 89: [1, 150],
1311
- 90: [1, 151]
1312
- },
1313
- e(T, [2, 46]),
1314
- {
1315
- 5: X,
1316
- 40: Z,
1317
- 56: 152,
1318
- 57: Q,
1319
- 59: $
1320
- },
1321
- { 5: [1, 153] },
1322
- { 5: [1, 154] },
1323
- { 5: [2, 83] },
1324
- { 5: [2, 84] },
1325
- { 5: [1, 155] },
1326
- { 5: [2, 35] },
1327
- { 5: [2, 36] },
1328
- { 5: [2, 37] },
1329
- { 5: [1, 156] },
1330
- { 5: [2, 38] },
1331
- { 5: [2, 39] },
1332
- { 5: [2, 40] },
1333
- { 5: [2, 41] },
1334
- e(T, [2, 22]),
1335
- { 5: [1, 157] },
1336
- { 5: [2, 87] },
1337
- { 5: [2, 88] },
1338
- { 5: [1, 158] },
1339
- { 5: [2, 89] },
1340
- { 5: [2, 90] },
1341
- e(T, [2, 43]),
1342
- {
1343
- 5: W,
1344
- 28: 159,
1345
- 31: G,
1346
- 34: K,
1347
- 36: q,
1348
- 38: J,
1349
- 40: Y
1350
- },
1351
- {
1352
- 5: W,
1353
- 28: 160,
1354
- 31: G,
1355
- 34: K,
1356
- 36: q,
1357
- 38: J,
1358
- 40: Y
1359
- },
1360
- {
1361
- 5: W,
1362
- 28: 161,
1363
- 31: G,
1364
- 34: K,
1365
- 36: q,
1366
- 38: J,
1367
- 40: Y
1368
- },
1369
- {
1370
- 5: W,
1371
- 28: 162,
1372
- 31: G,
1373
- 34: K,
1374
- 36: q,
1375
- 38: J,
1376
- 40: Y
1377
- },
1378
- {
1379
- 5: X,
1380
- 40: Z,
1381
- 56: 163,
1382
- 57: Q,
1383
- 59: $
1384
- },
1385
- {
1386
- 5: X,
1387
- 40: Z,
1388
- 56: 164,
1389
- 57: Q,
1390
- 59: $
1391
- },
1392
- e(T, [2, 23]),
1393
- e(T, [2, 24]),
1394
- e(T, [2, 25]),
1395
- e(T, [2, 26]),
1396
- e(T, [2, 44]),
1397
- e(T, [2, 45])
1398
- ],
1399
- defaultActions: {
1400
- 8: [2, 2],
1401
- 12: [2, 1],
1402
- 41: [2, 3],
1403
- 42: [2, 8],
1404
- 43: [2, 9],
1405
- 44: [2, 10],
1406
- 45: [2, 11],
1407
- 46: [2, 12],
1408
- 47: [2, 13],
1409
- 48: [2, 14],
1410
- 49: [2, 15],
1411
- 50: [2, 16],
1412
- 134: [2, 83],
1413
- 135: [2, 84],
1414
- 137: [2, 35],
1415
- 138: [2, 36],
1416
- 139: [2, 37],
1417
- 141: [2, 38],
1418
- 142: [2, 39],
1419
- 143: [2, 40],
1420
- 144: [2, 41],
1421
- 147: [2, 87],
1422
- 148: [2, 88],
1423
- 150: [2, 89],
1424
- 151: [2, 90]
1425
- },
1426
- parseError: /* @__PURE__ */ __name(function(e, t) {
1427
- if (t.recoverable) this.trace(e);
1428
- else {
1429
- var n = Error(e);
1430
- throw n.hash = t, n;
1431
- }
1432
- }, "parseError"),
1433
- parse: /* @__PURE__ */ __name(function(e) {
1434
- var t = 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: {} };
1435
- for (var _ in this.yy) Object.prototype.hasOwnProperty.call(this.yy, _) && (g.yy[_] = this.yy[_]);
1436
- h.setInput(e, g.yy), g.yy.lexer = h, g.yy.parser = this, h.yylloc === void 0 && (h.yylloc = {});
1437
- var v = h.yylloc;
1438
- o.push(v);
1439
- var y = h.options && h.options.ranges;
1440
- typeof g.yy.parseError == "function" ? this.parseError = g.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
1441
- function b(e) {
1442
- r.length -= 2 * e, a.length -= e, o.length -= e;
1443
- }
1444
- __name(b, "popStack");
1445
- function x() {
1446
- var e = i.pop() || h.lex() || p;
1447
- return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = t.symbols_[e] || e), e;
1448
- }
1449
- __name(x, "lex");
1450
- for (var S, C, w, T, E, D = {}, O, k, ee, A;;) {
1451
- 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]) {
1452
- var te = "";
1453
- for (O in A = [], s[w]) this.terminals_[O] && O > f && A.push("'" + this.terminals_[O] + "'");
1454
- 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, {
1455
- text: h.match,
1456
- token: this.terminals_[S] || S,
1457
- line: h.yylineno,
1458
- loc: v,
1459
- expected: A
1460
- });
1461
- }
1462
- if (T[0] instanceof Array && T.length > 1) throw Error("Parse Error: multiple actions possible at state: " + w + ", token: " + S);
1463
- switch (T[0]) {
1464
- case 1:
1465
- 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--);
1466
- break;
1467
- case 2:
1468
- if (k = this.productions_[T[1]][1], D.$ = a[a.length - k], D._$ = {
1469
- first_line: o[o.length - (k || 1)].first_line,
1470
- last_line: o[o.length - 1].last_line,
1471
- first_column: o[o.length - (k || 1)].first_column,
1472
- last_column: o[o.length - 1].last_column
1473
- }, y && (D._$.range = [o[o.length - (k || 1)].range[0], o[o.length - 1].range[1]]), E = this.performAction.apply(D, [
1474
- c,
1475
- u,
1476
- l,
1477
- g.yy,
1478
- T[1],
1479
- a,
1480
- o
1481
- ].concat(m)), E !== void 0) return E;
1482
- 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);
1483
- break;
1484
- case 3: return !0;
1485
- }
1486
- }
1487
- return !0;
1488
- }, "parse")
1489
- };
1490
- le.lexer = /* @__PURE__ */ (function() {
1491
- return {
1492
- EOF: 1,
1493
- parseError: /* @__PURE__ */ __name(function(e, t) {
1494
- if (this.yy.parser) this.yy.parser.parseError(e, t);
1495
- else throw Error(e);
1496
- }, "parseError"),
1497
- setInput: /* @__PURE__ */ __name(function(e, t) {
1498
- 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 = {
1499
- first_line: 1,
1500
- first_column: 0,
1501
- last_line: 1,
1502
- last_column: 0
1503
- }, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
1504
- }, "setInput"),
1505
- input: /* @__PURE__ */ __name(function() {
1506
- var e = this._input[0];
1507
- 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;
1508
- }, "input"),
1509
- unput: /* @__PURE__ */ __name(function(e) {
1510
- var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
1511
- this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
1512
- var r = this.match.split(/(?:\r\n?|\n)/g);
1513
- 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);
1514
- var i = this.yylloc.range;
1515
- return this.yylloc = {
1516
- first_line: this.yylloc.first_line,
1517
- last_line: this.yylineno + 1,
1518
- first_column: this.yylloc.first_column,
1519
- 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
1520
- }, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
1521
- }, "unput"),
1522
- more: /* @__PURE__ */ __name(function() {
1523
- return this._more = !0, this;
1524
- }, "more"),
1525
- reject: /* @__PURE__ */ __name(function() {
1526
- if (this.options.backtrack_lexer) this._backtrack = !0;
1527
- 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(), {
1528
- text: "",
1529
- token: null,
1530
- line: this.yylineno
1531
- });
1532
- return this;
1533
- }, "reject"),
1534
- less: /* @__PURE__ */ __name(function(e) {
1535
- this.unput(this.match.slice(e));
1536
- }, "less"),
1537
- pastInput: /* @__PURE__ */ __name(function() {
1538
- var e = this.matched.substr(0, this.matched.length - this.match.length);
1539
- return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
1540
- }, "pastInput"),
1541
- upcomingInput: /* @__PURE__ */ __name(function() {
1542
- var e = this.match;
1543
- return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
1544
- }, "upcomingInput"),
1545
- showPosition: /* @__PURE__ */ __name(function() {
1546
- var e = this.pastInput(), t = Array(e.length + 1).join("-");
1547
- return e + this.upcomingInput() + "\n" + t + "^";
1548
- }, "showPosition"),
1549
- test_match: /* @__PURE__ */ __name(function(e, t) {
1550
- var n, r, i;
1551
- if (this.options.backtrack_lexer && (i = {
1552
- yylineno: this.yylineno,
1553
- yylloc: {
1554
- first_line: this.yylloc.first_line,
1555
- last_line: this.last_line,
1556
- first_column: this.yylloc.first_column,
1557
- last_column: this.yylloc.last_column
1558
- },
1559
- yytext: this.yytext,
1560
- match: this.match,
1561
- matches: this.matches,
1562
- matched: this.matched,
1563
- yyleng: this.yyleng,
1564
- offset: this.offset,
1565
- _more: this._more,
1566
- _input: this._input,
1567
- yy: this.yy,
1568
- conditionStack: this.conditionStack.slice(0),
1569
- done: this.done
1570
- }, 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 = {
1571
- first_line: this.yylloc.last_line,
1572
- last_line: this.yylineno + 1,
1573
- first_column: this.yylloc.last_column,
1574
- last_column: r ? r[r.length - 1].length - r[r.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + e[0].length
1575
- }, 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;
1576
- if (this._backtrack) {
1577
- for (var a in i) this[a] = i[a];
1578
- return !1;
1579
- }
1580
- return !1;
1581
- }, "test_match"),
1582
- next: /* @__PURE__ */ __name(function() {
1583
- if (this.done) return this.EOF;
1584
- this._input || (this.done = !0);
1585
- var e, t, n, r;
1586
- this._more || (this.yytext = "", this.match = "");
1587
- 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)) {
1588
- if (t = n, r = a, this.options.backtrack_lexer) {
1589
- if (e = this.test_match(n, i[a]), e !== !1) return e;
1590
- if (this._backtrack) {
1591
- t = !1;
1592
- continue;
1593
- } else return !1;
1594
- } else if (!this.options.flex) break;
1595
- }
1596
- 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(), {
1597
- text: "",
1598
- token: null,
1599
- line: this.yylineno
1600
- });
1601
- }, "next"),
1602
- lex: /* @__PURE__ */ __name(function() {
1603
- return this.next() || this.lex();
1604
- }, "lex"),
1605
- begin: /* @__PURE__ */ __name(function(e) {
1606
- this.conditionStack.push(e);
1607
- }, "begin"),
1608
- popState: /* @__PURE__ */ __name(function() {
1609
- return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
1610
- }, "popState"),
1611
- _currentRules: /* @__PURE__ */ __name(function() {
1612
- return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
1613
- }, "_currentRules"),
1614
- topState: /* @__PURE__ */ __name(function(e) {
1615
- return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
1616
- }, "topState"),
1617
- pushState: /* @__PURE__ */ __name(function(e) {
1618
- this.begin(e);
1619
- }, "pushState"),
1620
- stateStackSize: /* @__PURE__ */ __name(function() {
1621
- return this.conditionStack.length;
1622
- }, "stateStackSize"),
1623
- options: { "case-insensitive": !0 },
1624
- performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
1625
- switch (n) {
1626
- case 0: return "title";
1627
- case 1: return this.begin("acc_title"), 9;
1628
- case 2: return this.popState(), "acc_title_value";
1629
- case 3: return this.begin("acc_descr"), 11;
1630
- case 4: return this.popState(), "acc_descr_value";
1631
- case 5:
1632
- this.begin("acc_descr_multiline");
1633
- break;
1634
- case 6:
1635
- this.popState();
1636
- break;
1637
- case 7: return "acc_descr_multiline_value";
1638
- case 8: return 21;
1639
- case 9: return 22;
1640
- case 10: return 23;
1641
- case 11: return 24;
1642
- case 12: return 5;
1643
- case 13: break;
1644
- case 14: break;
1645
- case 15: break;
1646
- case 16: return 8;
1647
- case 17: return 6;
1648
- case 18: return 27;
1649
- case 19: return 40;
1650
- case 20: return 29;
1651
- case 21: return 32;
1652
- case 22: return 31;
1653
- case 23: return 34;
1654
- case 24: return 36;
1655
- case 25: return 38;
1656
- case 26: return 41;
1657
- case 27: return 42;
1658
- case 28: return 43;
1659
- case 29: return 44;
1660
- case 30: return 45;
1661
- case 31: return 46;
1662
- case 32: return 47;
1663
- case 33: return 48;
1664
- case 34: return 49;
1665
- case 35: return 50;
1666
- case 36: return 51;
1667
- case 37: return 52;
1668
- case 38: return 53;
1669
- case 39: return 54;
1670
- case 40: return 65;
1671
- case 41: return 66;
1672
- case 42: return 67;
1673
- case 43: return 68;
1674
- case 44: return 69;
1675
- case 45: return 70;
1676
- case 46: return 71;
1677
- case 47: return 57;
1678
- case 48: return 59;
1679
- case 49: return this.begin("style"), 77;
1680
- case 50: return 75;
1681
- case 51: return 81;
1682
- case 52: return 88;
1683
- case 53: return "PERCENT";
1684
- case 54: return 86;
1685
- case 55: return 84;
1686
- case 56: break;
1687
- case 57:
1688
- this.begin("string");
1689
- break;
1690
- case 58:
1691
- this.popState();
1692
- break;
1693
- case 59: return this.begin("style"), 72;
1694
- case 60: return this.begin("style"), 74;
1695
- case 61: return 61;
1696
- case 62: return 64;
1697
- case 63: return 63;
1698
- case 64:
1699
- this.begin("string");
1700
- break;
1701
- case 65:
1702
- this.popState();
1703
- break;
1704
- case 66: return "qString";
1705
- case 67: return t.yytext = t.yytext.trim(), 89;
1706
- case 68: return 75;
1707
- case 69: return 80;
1708
- case 70: return 76;
1709
- }
1710
- }, "anonymous"),
1711
- rules: [
1712
- /^(?:title\s[^#\n;]+)/i,
1713
- /^(?:accTitle\s*:\s*)/i,
1714
- /^(?:(?!\n||)*[^\n]*)/i,
1715
- /^(?:accDescr\s*:\s*)/i,
1716
- /^(?:(?!\n||)*[^\n]*)/i,
1717
- /^(?:accDescr\s*\{\s*)/i,
1718
- /^(?:[\}])/i,
1719
- /^(?:[^\}]*)/i,
1720
- /^(?:.*direction\s+TB[^\n]*)/i,
1721
- /^(?:.*direction\s+BT[^\n]*)/i,
1722
- /^(?:.*direction\s+RL[^\n]*)/i,
1723
- /^(?:.*direction\s+LR[^\n]*)/i,
1724
- /^(?:(\r?\n)+)/i,
1725
- /^(?:\s+)/i,
1726
- /^(?:#[^\n]*)/i,
1727
- /^(?:%[^\n]*)/i,
1728
- /^(?:$)/i,
1729
- /^(?:requirementDiagram\b)/i,
1730
- /^(?:\{)/i,
1731
- /^(?:\})/i,
1732
- /^(?::{3})/i,
1733
- /^(?::)/i,
1734
- /^(?:id\b)/i,
1735
- /^(?:text\b)/i,
1736
- /^(?:risk\b)/i,
1737
- /^(?:verifyMethod\b)/i,
1738
- /^(?:requirement\b)/i,
1739
- /^(?:functionalRequirement\b)/i,
1740
- /^(?:interfaceRequirement\b)/i,
1741
- /^(?:performanceRequirement\b)/i,
1742
- /^(?:physicalRequirement\b)/i,
1743
- /^(?:designConstraint\b)/i,
1744
- /^(?:low\b)/i,
1745
- /^(?:medium\b)/i,
1746
- /^(?:high\b)/i,
1747
- /^(?:analysis\b)/i,
1748
- /^(?:demonstration\b)/i,
1749
- /^(?:inspection\b)/i,
1750
- /^(?:test\b)/i,
1751
- /^(?:element\b)/i,
1752
- /^(?:contains\b)/i,
1753
- /^(?:copies\b)/i,
1754
- /^(?:derives\b)/i,
1755
- /^(?:satisfies\b)/i,
1756
- /^(?:verifies\b)/i,
1757
- /^(?:refines\b)/i,
1758
- /^(?:traces\b)/i,
1759
- /^(?:type\b)/i,
1760
- /^(?:docref\b)/i,
1761
- /^(?:style\b)/i,
1762
- /^(?:\w+)/i,
1763
- /^(?::)/i,
1764
- /^(?:;)/i,
1765
- /^(?:%)/i,
1766
- /^(?:-)/i,
1767
- /^(?:#)/i,
1768
- /^(?: )/i,
1769
- /^(?:["])/i,
1770
- /^(?:\n)/i,
1771
- /^(?:classDef\b)/i,
1772
- /^(?:class\b)/i,
1773
- /^(?:<-)/i,
1774
- /^(?:->)/i,
1775
- /^(?:-)/i,
1776
- /^(?:["])/i,
1777
- /^(?:["])/i,
1778
- /^(?:[^"]*)/i,
1779
- /^(?:[\w][^:,\r\n\{\<\>\-\=]*)/i,
1780
- /^(?:\w+)/i,
1781
- /^(?:[0-9]+)/i,
1782
- /^(?:,)/i
1783
- ],
1784
- conditions: {
1785
- acc_descr_multiline: {
1786
- rules: [
1787
- 6,
1788
- 7,
1789
- 68,
1790
- 69,
1791
- 70
1792
- ],
1793
- inclusive: !1
1794
- },
1795
- acc_descr: {
1796
- rules: [
1797
- 4,
1798
- 68,
1799
- 69,
1800
- 70
1801
- ],
1802
- inclusive: !1
1803
- },
1804
- acc_title: {
1805
- rules: [
1806
- 2,
1807
- 68,
1808
- 69,
1809
- 70
1810
- ],
1811
- inclusive: !1
1812
- },
1813
- style: {
1814
- rules: [
1815
- 50,
1816
- 51,
1817
- 52,
1818
- 53,
1819
- 54,
1820
- 55,
1821
- 56,
1822
- 57,
1823
- 58,
1824
- 68,
1825
- 69,
1826
- 70
1827
- ],
1828
- inclusive: !1
1829
- },
1830
- unqString: {
1831
- rules: [
1832
- 68,
1833
- 69,
1834
- 70
1835
- ],
1836
- inclusive: !1
1837
- },
1838
- token: {
1839
- rules: [
1840
- 68,
1841
- 69,
1842
- 70
1843
- ],
1844
- inclusive: !1
1845
- },
1846
- string: {
1847
- rules: [
1848
- 65,
1849
- 66,
1850
- 68,
1851
- 69,
1852
- 70
1853
- ],
1854
- inclusive: !1
1855
- },
1856
- INITIAL: {
1857
- rules: [
1858
- 0,
1859
- 1,
1860
- 3,
1861
- 5,
1862
- 8,
1863
- 9,
1864
- 10,
1865
- 11,
1866
- 12,
1867
- 13,
1868
- 14,
1869
- 15,
1870
- 16,
1871
- 17,
1872
- 18,
1873
- 19,
1874
- 20,
1875
- 21,
1876
- 22,
1877
- 23,
1878
- 24,
1879
- 25,
1880
- 26,
1881
- 27,
1882
- 28,
1883
- 29,
1884
- 30,
1885
- 31,
1886
- 32,
1887
- 33,
1888
- 34,
1889
- 35,
1890
- 36,
1891
- 37,
1892
- 38,
1893
- 39,
1894
- 40,
1895
- 41,
1896
- 42,
1897
- 43,
1898
- 44,
1899
- 45,
1900
- 46,
1901
- 47,
1902
- 48,
1903
- 49,
1904
- 59,
1905
- 60,
1906
- 61,
1907
- 62,
1908
- 63,
1909
- 64,
1910
- 67,
1911
- 68,
1912
- 69,
1913
- 70
1914
- ],
1915
- inclusive: !0
1916
- }
1917
- }
1918
- };
1919
- })();
1920
- function ue() {
1921
- this.yy = {};
1922
- }
1923
- return __name(ue, "Parser"), ue.prototype = le, le.Parser = ue, new ue();
1924
- })();
1925
- parser.parser = parser;
1926
- var requirementDiagram_default = parser, RequirementDB = class {
1927
- constructor() {
1928
- 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 = {
1929
- REQUIREMENT: "Requirement",
1930
- FUNCTIONAL_REQUIREMENT: "Functional Requirement",
1931
- INTERFACE_REQUIREMENT: "Interface Requirement",
1932
- PERFORMANCE_REQUIREMENT: "Performance Requirement",
1933
- PHYSICAL_REQUIREMENT: "Physical Requirement",
1934
- DESIGN_CONSTRAINT: "Design Constraint"
1935
- }, this.RiskLevel = {
1936
- LOW_RISK: "Low",
1937
- MED_RISK: "Medium",
1938
- HIGH_RISK: "High"
1939
- }, this.VerifyType = {
1940
- VERIFY_ANALYSIS: "Analysis",
1941
- VERIFY_DEMONSTRATION: "Demonstration",
1942
- VERIFY_INSPECTION: "Inspection",
1943
- VERIFY_TEST: "Test"
1944
- }, this.Relationships = {
1945
- CONTAINS: "contains",
1946
- COPIES: "copies",
1947
- DERIVES: "derives",
1948
- SATISFIES: "satisfies",
1949
- VERIFIES: "verifies",
1950
- REFINES: "refines",
1951
- TRACES: "traces"
1952
- }, 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);
1953
- }
1954
- static #e = __name(this, "RequirementDB");
1955
- getDirection() {
1956
- return this.direction;
1957
- }
1958
- setDirection(e) {
1959
- this.direction = e;
1960
- }
1961
- resetLatestRequirement() {
1962
- this.latestRequirement = this.getInitialRequirement();
1963
- }
1964
- resetLatestElement() {
1965
- this.latestElement = this.getInitialElement();
1966
- }
1967
- getInitialRequirement() {
1968
- return {
1969
- requirementId: "",
1970
- text: "",
1971
- risk: "",
1972
- verifyMethod: "",
1973
- name: "",
1974
- type: "",
1975
- cssStyles: [],
1976
- classes: ["default"]
1977
- };
1978
- }
1979
- getInitialElement() {
1980
- return {
1981
- name: "",
1982
- type: "",
1983
- docRef: "",
1984
- cssStyles: [],
1985
- classes: ["default"]
1986
- };
1987
- }
1988
- addRequirement(e, t) {
1989
- return this.requirements.has(e) || this.requirements.set(e, {
1990
- name: e,
1991
- type: t,
1992
- requirementId: this.latestRequirement.requirementId,
1993
- text: this.latestRequirement.text,
1994
- risk: this.latestRequirement.risk,
1995
- verifyMethod: this.latestRequirement.verifyMethod,
1996
- cssStyles: [],
1997
- classes: ["default"]
1998
- }), this.resetLatestRequirement(), this.requirements.get(e);
1999
- }
2000
- getRequirements() {
2001
- return this.requirements;
2002
- }
2003
- setNewReqId(e) {
2004
- this.latestRequirement !== void 0 && (this.latestRequirement.requirementId = e);
2005
- }
2006
- setNewReqText(e) {
2007
- this.latestRequirement !== void 0 && (this.latestRequirement.text = e);
2008
- }
2009
- setNewReqRisk(e) {
2010
- this.latestRequirement !== void 0 && (this.latestRequirement.risk = e);
2011
- }
2012
- setNewReqVerifyMethod(e) {
2013
- this.latestRequirement !== void 0 && (this.latestRequirement.verifyMethod = e);
2014
- }
2015
- addElement(e) {
2016
- return this.elements.has(e) || (this.elements.set(e, {
2017
- name: e,
2018
- type: this.latestElement.type,
2019
- docRef: this.latestElement.docRef,
2020
- cssStyles: [],
2021
- classes: ["default"]
2022
- }), log.info("Added new element: ", e)), this.resetLatestElement(), this.elements.get(e);
2023
- }
2024
- getElements() {
2025
- return this.elements;
2026
- }
2027
- setNewElementType(e) {
2028
- this.latestElement !== void 0 && (this.latestElement.type = e);
2029
- }
2030
- setNewElementDocRef(e) {
2031
- this.latestElement !== void 0 && (this.latestElement.docRef = e);
2032
- }
2033
- addRelationship(e, t, n) {
2034
- this.relations.push({
2035
- type: e,
2036
- src: t,
2037
- dst: n
2038
- });
2039
- }
2040
- getRelationships() {
2041
- return this.relations;
2042
- }
2043
- clear() {
2044
- this.relations = [], this.resetLatestRequirement(), this.requirements = /* @__PURE__ */ new Map(), this.resetLatestElement(), this.elements = /* @__PURE__ */ new Map(), this.classes = /* @__PURE__ */ new Map(), clear();
2045
- }
2046
- setCssStyle(e, t) {
2047
- for (let n of e) {
2048
- let e = this.requirements.get(n) ?? this.elements.get(n);
2049
- if (!t || !e) return;
2050
- for (let n of t) n.includes(",") ? e.cssStyles.push(...n.split(",")) : e.cssStyles.push(n);
2051
- }
2052
- }
2053
- setClass(e, t) {
2054
- for (let n of e) {
2055
- let e = this.requirements.get(n) ?? this.elements.get(n);
2056
- if (e) for (let n of t) {
2057
- e.classes.push(n);
2058
- let t = this.classes.get(n)?.styles;
2059
- t && e.cssStyles.push(...t);
2060
- }
2061
- }
2062
- }
2063
- defineClass(e, t) {
2064
- for (let n of e) {
2065
- let e = this.classes.get(n);
2066
- e === void 0 && (e = {
2067
- id: n,
2068
- styles: [],
2069
- textStyles: []
2070
- }, this.classes.set(n, e)), t && t.forEach(function(t) {
2071
- if (/color/.exec(t)) {
2072
- let n = t.replace("fill", "bgFill");
2073
- e.textStyles.push(n);
2074
- }
2075
- e.styles.push(t);
2076
- }), this.requirements.forEach((e) => {
2077
- e.classes.includes(n) && e.cssStyles.push(...t.flatMap((e) => e.split(",")));
2078
- }), this.elements.forEach((e) => {
2079
- e.classes.includes(n) && e.cssStyles.push(...t.flatMap((e) => e.split(",")));
2080
- });
2081
- }
2082
- }
2083
- getClasses() {
2084
- return this.classes;
2085
- }
2086
- getData() {
2087
- let e = getConfig2(), t = [], n = [];
2088
- for (let n of this.requirements.values()) {
2089
- let r = n;
2090
- r.id = n.name, r.cssStyles = n.cssStyles, r.cssClasses = n.classes.join(" "), r.shape = "requirementBox", r.look = e.look, t.push(r);
2091
- }
2092
- for (let n of this.elements.values()) {
2093
- let r = n;
2094
- r.shape = "requirementBox", r.look = e.look, r.id = n.name, r.cssStyles = n.cssStyles, r.cssClasses = n.classes.join(" "), t.push(r);
2095
- }
2096
- for (let t of this.relations) {
2097
- let r = 0, i = t.type === this.Relationships.CONTAINS, a = {
2098
- id: `${t.src}-${t.dst}-${r}`,
2099
- start: this.requirements.get(t.src)?.name ?? this.elements.get(t.src)?.name,
2100
- end: this.requirements.get(t.dst)?.name ?? this.elements.get(t.dst)?.name,
2101
- label: `&lt;&lt;${t.type}&gt;&gt;`,
2102
- classes: "relationshipLine",
2103
- style: ["fill:none", i ? "" : "stroke-dasharray: 10,7"],
2104
- labelpos: "c",
2105
- thickness: "normal",
2106
- type: "normal",
2107
- pattern: i ? "normal" : "dashed",
2108
- arrowTypeStart: i ? "requirement_contains" : "",
2109
- arrowTypeEnd: i ? "" : "requirement_arrow",
2110
- look: e.look
2111
- };
2112
- n.push(a), r++;
2113
- }
2114
- return {
2115
- nodes: t,
2116
- edges: n,
2117
- other: {},
2118
- config: e,
2119
- direction: this.getDirection()
2120
- };
2121
- }
2122
- }, styles_default = /* @__PURE__ */ __name((e) => `
2123
-
2124
- marker {
2125
- fill: ${e.relationColor};
2126
- stroke: ${e.relationColor};
2127
- }
2128
-
2129
- marker.cross {
2130
- stroke: ${e.lineColor};
2131
- }
2132
-
2133
- svg {
2134
- font-family: ${e.fontFamily};
2135
- font-size: ${e.fontSize};
2136
- }
2137
-
2138
- .reqBox {
2139
- fill: ${e.requirementBackground};
2140
- fill-opacity: 1.0;
2141
- stroke: ${e.requirementBorderColor};
2142
- stroke-width: ${e.requirementBorderSize};
2143
- }
2144
-
2145
- .reqTitle, .reqLabel{
2146
- fill: ${e.requirementTextColor};
2147
- }
2148
- .reqLabelBox {
2149
- fill: ${e.relationLabelBackground};
2150
- fill-opacity: 1.0;
2151
- }
2152
-
2153
- .req-title-line {
2154
- stroke: ${e.requirementBorderColor};
2155
- stroke-width: ${e.requirementBorderSize};
2156
- }
2157
- .relationshipLine {
2158
- stroke: ${e.relationColor};
2159
- stroke-width: 1;
2160
- }
2161
- .relationshipLabel {
2162
- fill: ${e.relationLabelColor};
2163
- }
2164
- .divider {
2165
- stroke: ${e.nodeBorder};
2166
- stroke-width: 1;
2167
- }
2168
- .label {
2169
- font-family: ${e.fontFamily};
2170
- color: ${e.nodeTextColor || e.textColor};
2171
- }
2172
- .label text,span {
2173
- fill: ${e.nodeTextColor || e.textColor};
2174
- color: ${e.nodeTextColor || e.textColor};
2175
- }
2176
- .labelBkg {
2177
- background-color: ${e.edgeLabelBackground};
2178
- }
2179
-
2180
- `, "getStyles"), requirementRenderer_exports = {};
2181
- __export(requirementRenderer_exports, { draw: () => draw });
2182
- var draw = /* @__PURE__ */ __name(async function(n, r, i, a) {
2183
- log.info("REF0:"), log.info("Drawing requirement diagram (unified)", r);
2184
- let { securityLevel: o, state: s, layout: c } = getConfig2(), u = a.db.getData(), d = getDiagramElement(r, o);
2185
- u.type = a.type, u.layoutAlgorithm = getRegisteredLayoutAlgorithm(c), u.nodeSpacing = s?.nodeSpacing ?? 50, u.rankSpacing = s?.rankSpacing ?? 50, u.markers = ["requirement_contains", "requirement_arrow"], u.diagramId = r, await render(u, d), utils_default.insertTitle(d, "requirementDiagramTitleText", s?.titleTopMargin ?? 25, a.db.getDiagramTitle()), setupViewPortForSVG(d, 8, "requirementDiagram", s?.useMaxWidth ?? !0);
2186
- }, "draw"), diagram = {
2187
- parser: requirementDiagram_default,
2188
- get db() {
2189
- return new RequirementDB();
2190
- },
2191
- renderer: requirementRenderer_exports,
2192
- styles: styles_default
2193
- };
2194
- export { diagram };