@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
package/dist/js/src.js ADDED
@@ -0,0 +1,1975 @@
1
+ import { i as __toESM, t as __commonJSMin } from "./chunk.js";
2
+ var require_dayjs_min = /* @__PURE__ */ __commonJSMin(((e, D) => {
3
+ (function(O, k) {
4
+ typeof e == "object" && D !== void 0 ? D.exports = k() : typeof define == "function" && define.amd ? define(k) : (O = typeof globalThis < "u" ? globalThis : O || self).dayjs = k();
5
+ })(e, (function() {
6
+ var e = 1e3, D = 6e4, O = 36e5, k = "millisecond", A = "second", j = "minute", M = "hour", N = "day", P = "week", F = "month", I = "quarter", L = "year", R = "date", z = "Invalid Date", B = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, V = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, H = {
7
+ name: "en",
8
+ weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
9
+ months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
10
+ ordinal: function(e) {
11
+ var D = [
12
+ "th",
13
+ "st",
14
+ "nd",
15
+ "rd"
16
+ ], O = e % 100;
17
+ return "[" + e + (D[(O - 20) % 10] || D[O] || D[0]) + "]";
18
+ }
19
+ }, U = function(e, D, O) {
20
+ var k = String(e);
21
+ return !k || k.length >= D ? e : "" + Array(D + 1 - k.length).join(O) + e;
22
+ }, W = {
23
+ s: U,
24
+ z: function(e) {
25
+ var D = -e.utcOffset(), O = Math.abs(D), k = Math.floor(O / 60), A = O % 60;
26
+ return (D <= 0 ? "+" : "-") + U(k, 2, "0") + ":" + U(A, 2, "0");
27
+ },
28
+ m: function e(D, O) {
29
+ if (D.date() < O.date()) return -e(O, D);
30
+ var k = 12 * (O.year() - D.year()) + (O.month() - D.month()), A = D.clone().add(k, F), j = O - A < 0, M = D.clone().add(k + (j ? -1 : 1), F);
31
+ return +(-(k + (O - A) / (j ? A - M : M - A)) || 0);
32
+ },
33
+ a: function(e) {
34
+ return e < 0 ? Math.ceil(e) || 0 : Math.floor(e);
35
+ },
36
+ p: function(e) {
37
+ return {
38
+ M: F,
39
+ y: L,
40
+ w: P,
41
+ d: N,
42
+ D: R,
43
+ h: M,
44
+ m: j,
45
+ s: A,
46
+ ms: k,
47
+ Q: I
48
+ }[e] || String(e || "").toLowerCase().replace(/s$/, "");
49
+ },
50
+ u: function(e) {
51
+ return e === void 0;
52
+ }
53
+ }, G = "en", K = {};
54
+ K[G] = H;
55
+ var q = "$isDayjsObject", J = function(e) {
56
+ return e instanceof Q || !(!e || !e[q]);
57
+ }, Y = function e(D, O, k) {
58
+ var A;
59
+ if (!D) return G;
60
+ if (typeof D == "string") {
61
+ var j = D.toLowerCase();
62
+ K[j] && (A = j), O && (K[j] = O, A = j);
63
+ var M = D.split("-");
64
+ if (!A && M.length > 1) return e(M[0]);
65
+ } else {
66
+ var N = D.name;
67
+ K[N] = D, A = N;
68
+ }
69
+ return !k && A && (G = A), A || !k && G;
70
+ }, X = function(e, D) {
71
+ if (J(e)) return e.clone();
72
+ var O = typeof D == "object" ? D : {};
73
+ return O.date = e, O.args = arguments, new Q(O);
74
+ }, Z = W;
75
+ Z.l = Y, Z.i = J, Z.w = function(e, D) {
76
+ return X(e, {
77
+ locale: D.$L,
78
+ utc: D.$u,
79
+ x: D.$x,
80
+ $offset: D.$offset
81
+ });
82
+ };
83
+ var Q = function() {
84
+ function H(e) {
85
+ this.$L = Y(e.locale, null, !0), this.parse(e), this.$x = this.$x || e.x || {}, this[q] = !0;
86
+ }
87
+ var U = H.prototype;
88
+ return U.parse = function(e) {
89
+ this.$d = function(e) {
90
+ var D = e.date, O = e.utc;
91
+ if (D === null) return /* @__PURE__ */ new Date(NaN);
92
+ if (Z.u(D)) return /* @__PURE__ */ new Date();
93
+ if (D instanceof Date) return new Date(D);
94
+ if (typeof D == "string" && !/Z$/i.test(D)) {
95
+ var k = D.match(B);
96
+ if (k) {
97
+ var A = k[2] - 1 || 0, j = (k[7] || "0").substring(0, 3);
98
+ return O ? new Date(Date.UTC(k[1], A, k[3] || 1, k[4] || 0, k[5] || 0, k[6] || 0, j)) : new Date(k[1], A, k[3] || 1, k[4] || 0, k[5] || 0, k[6] || 0, j);
99
+ }
100
+ }
101
+ return new Date(D);
102
+ }(e), this.init();
103
+ }, U.init = function() {
104
+ var e = this.$d;
105
+ this.$y = e.getFullYear(), this.$M = e.getMonth(), this.$D = e.getDate(), this.$W = e.getDay(), this.$H = e.getHours(), this.$m = e.getMinutes(), this.$s = e.getSeconds(), this.$ms = e.getMilliseconds();
106
+ }, U.$utils = function() {
107
+ return Z;
108
+ }, U.isValid = function() {
109
+ return this.$d.toString() !== z;
110
+ }, U.isSame = function(e, D) {
111
+ var O = X(e);
112
+ return this.startOf(D) <= O && O <= this.endOf(D);
113
+ }, U.isAfter = function(e, D) {
114
+ return X(e) < this.startOf(D);
115
+ }, U.isBefore = function(e, D) {
116
+ return this.endOf(D) < X(e);
117
+ }, U.$g = function(e, D, O) {
118
+ return Z.u(e) ? this[D] : this.set(O, e);
119
+ }, U.unix = function() {
120
+ return Math.floor(this.valueOf() / 1e3);
121
+ }, U.valueOf = function() {
122
+ return this.$d.getTime();
123
+ }, U.startOf = function(e, D) {
124
+ var O = this, k = !!Z.u(D) || D, I = Z.p(e), z = function(e, D) {
125
+ var A = Z.w(O.$u ? Date.UTC(O.$y, D, e) : new Date(O.$y, D, e), O);
126
+ return k ? A : A.endOf(N);
127
+ }, B = function(e, D) {
128
+ return Z.w(O.toDate()[e].apply(O.toDate("s"), (k ? [
129
+ 0,
130
+ 0,
131
+ 0,
132
+ 0
133
+ ] : [
134
+ 23,
135
+ 59,
136
+ 59,
137
+ 999
138
+ ]).slice(D)), O);
139
+ }, V = this.$W, H = this.$M, U = this.$D, W = "set" + (this.$u ? "UTC" : "");
140
+ switch (I) {
141
+ case L: return k ? z(1, 0) : z(31, 11);
142
+ case F: return k ? z(1, H) : z(0, H + 1);
143
+ case P:
144
+ var G = this.$locale().weekStart || 0, K = (V < G ? V + 7 : V) - G;
145
+ return z(k ? U - K : U + (6 - K), H);
146
+ case N:
147
+ case R: return B(W + "Hours", 0);
148
+ case M: return B(W + "Minutes", 1);
149
+ case j: return B(W + "Seconds", 2);
150
+ case A: return B(W + "Milliseconds", 3);
151
+ default: return this.clone();
152
+ }
153
+ }, U.endOf = function(e) {
154
+ return this.startOf(e, !1);
155
+ }, U.$set = function(e, D) {
156
+ var O, P = Z.p(e), I = "set" + (this.$u ? "UTC" : ""), z = (O = {}, O[N] = I + "Date", O[R] = I + "Date", O[F] = I + "Month", O[L] = I + "FullYear", O[M] = I + "Hours", O[j] = I + "Minutes", O[A] = I + "Seconds", O[k] = I + "Milliseconds", O)[P], B = P === N ? this.$D + (D - this.$W) : D;
157
+ if (P === F || P === L) {
158
+ var V = this.clone().set(R, 1);
159
+ V.$d[z](B), V.init(), this.$d = V.set(R, Math.min(this.$D, V.daysInMonth())).$d;
160
+ } else z && this.$d[z](B);
161
+ return this.init(), this;
162
+ }, U.set = function(e, D) {
163
+ return this.clone().$set(e, D);
164
+ }, U.get = function(e) {
165
+ return this[Z.p(e)]();
166
+ }, U.add = function(k, I) {
167
+ var R, z = this;
168
+ k = Number(k);
169
+ var B = Z.p(I), V = function(e) {
170
+ var D = X(z);
171
+ return Z.w(D.date(D.date() + Math.round(e * k)), z);
172
+ };
173
+ if (B === F) return this.set(F, this.$M + k);
174
+ if (B === L) return this.set(L, this.$y + k);
175
+ if (B === N) return V(1);
176
+ if (B === P) return V(7);
177
+ var H = (R = {}, R[j] = D, R[M] = O, R[A] = e, R)[B] || 1, U = this.$d.getTime() + k * H;
178
+ return Z.w(U, this);
179
+ }, U.subtract = function(e, D) {
180
+ return this.add(-1 * e, D);
181
+ }, U.format = function(e) {
182
+ var D = this, O = this.$locale();
183
+ if (!this.isValid()) return O.invalidDate || z;
184
+ var k = e || "YYYY-MM-DDTHH:mm:ssZ", A = Z.z(this), j = this.$H, M = this.$m, N = this.$M, P = O.weekdays, F = O.months, I = O.meridiem, L = function(e, O, A, j) {
185
+ return e && (e[O] || e(D, k)) || A[O].slice(0, j);
186
+ }, R = function(e) {
187
+ return Z.s(j % 12 || 12, e, "0");
188
+ }, B = I || function(e, D, O) {
189
+ var k = e < 12 ? "AM" : "PM";
190
+ return O ? k.toLowerCase() : k;
191
+ };
192
+ return k.replace(V, (function(e, k) {
193
+ return k || function(e) {
194
+ switch (e) {
195
+ case "YY": return String(D.$y).slice(-2);
196
+ case "YYYY": return Z.s(D.$y, 4, "0");
197
+ case "M": return N + 1;
198
+ case "MM": return Z.s(N + 1, 2, "0");
199
+ case "MMM": return L(O.monthsShort, N, F, 3);
200
+ case "MMMM": return L(F, N);
201
+ case "D": return D.$D;
202
+ case "DD": return Z.s(D.$D, 2, "0");
203
+ case "d": return String(D.$W);
204
+ case "dd": return L(O.weekdaysMin, D.$W, P, 2);
205
+ case "ddd": return L(O.weekdaysShort, D.$W, P, 3);
206
+ case "dddd": return P[D.$W];
207
+ case "H": return String(j);
208
+ case "HH": return Z.s(j, 2, "0");
209
+ case "h": return R(1);
210
+ case "hh": return R(2);
211
+ case "a": return B(j, M, !0);
212
+ case "A": return B(j, M, !1);
213
+ case "m": return String(M);
214
+ case "mm": return Z.s(M, 2, "0");
215
+ case "s": return String(D.$s);
216
+ case "ss": return Z.s(D.$s, 2, "0");
217
+ case "SSS": return Z.s(D.$ms, 3, "0");
218
+ case "Z": return A;
219
+ }
220
+ return null;
221
+ }(e) || A.replace(":", "");
222
+ }));
223
+ }, U.utcOffset = function() {
224
+ return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
225
+ }, U.diff = function(k, R, z) {
226
+ var B, V = this, H = Z.p(R), U = X(k), W = (U.utcOffset() - this.utcOffset()) * D, G = this - U, K = function() {
227
+ return Z.m(V, U);
228
+ };
229
+ switch (H) {
230
+ case L:
231
+ B = K() / 12;
232
+ break;
233
+ case F:
234
+ B = K();
235
+ break;
236
+ case I:
237
+ B = K() / 3;
238
+ break;
239
+ case P:
240
+ B = (G - W) / 6048e5;
241
+ break;
242
+ case N:
243
+ B = (G - W) / 864e5;
244
+ break;
245
+ case M:
246
+ B = G / O;
247
+ break;
248
+ case j:
249
+ B = G / D;
250
+ break;
251
+ case A:
252
+ B = G / e;
253
+ break;
254
+ default: B = G;
255
+ }
256
+ return z ? B : Z.a(B);
257
+ }, U.daysInMonth = function() {
258
+ return this.endOf(F).$D;
259
+ }, U.$locale = function() {
260
+ return K[this.$L];
261
+ }, U.locale = function(e, D) {
262
+ if (!e) return this.$L;
263
+ var O = this.clone(), k = Y(e, D, !0);
264
+ return k && (O.$L = k), O;
265
+ }, U.clone = function() {
266
+ return Z.w(this.$d, this);
267
+ }, U.toDate = function() {
268
+ return new Date(this.valueOf());
269
+ }, U.toJSON = function() {
270
+ return this.isValid() ? this.toISOString() : null;
271
+ }, U.toISOString = function() {
272
+ return this.$d.toISOString();
273
+ }, U.toString = function() {
274
+ return this.$d.toUTCString();
275
+ }, H;
276
+ }(), $ = Q.prototype;
277
+ return X.prototype = $, [
278
+ ["$ms", k],
279
+ ["$s", A],
280
+ ["$m", j],
281
+ ["$H", M],
282
+ ["$W", N],
283
+ ["$M", F],
284
+ ["$y", L],
285
+ ["$D", R]
286
+ ].forEach((function(e) {
287
+ $[e[1]] = function(D) {
288
+ return this.$g(D, e[0], e[1]);
289
+ };
290
+ })), X.extend = function(e, D) {
291
+ return e.$i ||= (e(D, Q, X), !0), X;
292
+ }, X.locale = Y, X.isDayjs = J, X.unix = function(e) {
293
+ return X(1e3 * e);
294
+ }, X.en = K[G], X.Ls = K, X.p = {}, X;
295
+ }));
296
+ })), import_dayjs_min = /* @__PURE__ */ __toESM(require_dayjs_min(), 1), __defProp = Object.defineProperty, __name = (e, D) => __defProp(e, "name", {
297
+ value: D,
298
+ configurable: !0
299
+ }), __export = (e, D) => {
300
+ for (var O in D) __defProp(e, O, {
301
+ get: D[O],
302
+ enumerable: !0
303
+ });
304
+ }, LEVELS = {
305
+ trace: 0,
306
+ debug: 1,
307
+ info: 2,
308
+ warn: 3,
309
+ error: 4,
310
+ fatal: 5
311
+ }, log = {
312
+ trace: /* @__PURE__ */ __name((...e) => {}, "trace"),
313
+ debug: /* @__PURE__ */ __name((...e) => {}, "debug"),
314
+ info: /* @__PURE__ */ __name((...e) => {}, "info"),
315
+ warn: /* @__PURE__ */ __name((...e) => {}, "warn"),
316
+ error: /* @__PURE__ */ __name((...e) => {}, "error"),
317
+ fatal: /* @__PURE__ */ __name((...e) => {}, "fatal")
318
+ }, setLogLevel = /* @__PURE__ */ __name(function(e = "fatal") {
319
+ let D = LEVELS.fatal;
320
+ typeof e == "string" ? e.toLowerCase() in LEVELS && (D = LEVELS[e]) : typeof e == "number" && (D = e), log.trace = () => {}, log.debug = () => {}, log.info = () => {}, log.warn = () => {}, log.error = () => {}, log.fatal = () => {}, D <= LEVELS.fatal && (log.fatal = console.error ? console.error.bind(console, format("FATAL"), "color: orange") : console.log.bind(console, "\x1B[35m", format("FATAL"))), D <= LEVELS.error && (log.error = console.error ? console.error.bind(console, format("ERROR"), "color: orange") : console.log.bind(console, "\x1B[31m", format("ERROR"))), D <= LEVELS.warn && (log.warn = console.warn ? console.warn.bind(console, format("WARN"), "color: orange") : console.log.bind(console, "\x1B[33m", format("WARN"))), D <= LEVELS.info && (log.info = console.info ? console.info.bind(console, format("INFO"), "color: lightblue") : console.log.bind(console, "\x1B[34m", format("INFO"))), D <= LEVELS.debug && (log.debug = console.debug ? console.debug.bind(console, format("DEBUG"), "color: lightgreen") : console.log.bind(console, "\x1B[32m", format("DEBUG"))), D <= LEVELS.trace && (log.trace = console.debug ? console.debug.bind(console, format("TRACE"), "color: lightgreen") : console.log.bind(console, "\x1B[32m", format("TRACE")));
321
+ }, "setLogLevel"), format = /* @__PURE__ */ __name((e) => `%c${(0, import_dayjs_min.default)().format("ss.SSS")} : ${e} : `, "format"), noop = { value: () => {} };
322
+ function dispatch() {
323
+ for (var e = 0, D = arguments.length, O = {}, k; e < D; ++e) {
324
+ if (!(k = arguments[e] + "") || k in O || /[\s.]/.test(k)) throw Error("illegal type: " + k);
325
+ O[k] = [];
326
+ }
327
+ return new Dispatch(O);
328
+ }
329
+ function Dispatch(e) {
330
+ this._ = e;
331
+ }
332
+ function parseTypenames$1(e, D) {
333
+ return e.trim().split(/^|\s+/).map(function(e) {
334
+ var O = "", k = e.indexOf(".");
335
+ if (k >= 0 && (O = e.slice(k + 1), e = e.slice(0, k)), e && !D.hasOwnProperty(e)) throw Error("unknown type: " + e);
336
+ return {
337
+ type: e,
338
+ name: O
339
+ };
340
+ });
341
+ }
342
+ Dispatch.prototype = dispatch.prototype = {
343
+ constructor: Dispatch,
344
+ on: function(e, D) {
345
+ var O = this._, k = parseTypenames$1(e + "", O), A, j = -1, M = k.length;
346
+ if (arguments.length < 2) {
347
+ for (; ++j < M;) if ((A = (e = k[j]).type) && (A = get$1(O[A], e.name))) return A;
348
+ return;
349
+ }
350
+ if (D != null && typeof D != "function") throw Error("invalid callback: " + D);
351
+ for (; ++j < M;) if (A = (e = k[j]).type) O[A] = set$1(O[A], e.name, D);
352
+ else if (D == null) for (A in O) O[A] = set$1(O[A], e.name, null);
353
+ return this;
354
+ },
355
+ copy: function() {
356
+ var e = {}, D = this._;
357
+ for (var O in D) e[O] = D[O].slice();
358
+ return new Dispatch(e);
359
+ },
360
+ call: function(e, D) {
361
+ if ((A = arguments.length - 2) > 0) for (var O = Array(A), k = 0, A, j; k < A; ++k) O[k] = arguments[k + 2];
362
+ if (!this._.hasOwnProperty(e)) throw Error("unknown type: " + e);
363
+ for (j = this._[e], k = 0, A = j.length; k < A; ++k) j[k].value.apply(D, O);
364
+ },
365
+ apply: function(e, D, O) {
366
+ if (!this._.hasOwnProperty(e)) throw Error("unknown type: " + e);
367
+ for (var k = this._[e], A = 0, j = k.length; A < j; ++A) k[A].value.apply(D, O);
368
+ }
369
+ };
370
+ function get$1(e, D) {
371
+ for (var O = 0, k = e.length, A; O < k; ++O) if ((A = e[O]).name === D) return A.value;
372
+ }
373
+ function set$1(e, D, O) {
374
+ for (var k = 0, A = e.length; k < A; ++k) if (e[k].name === D) {
375
+ e[k] = noop, e = e.slice(0, k).concat(e.slice(k + 1));
376
+ break;
377
+ }
378
+ return O != null && e.push({
379
+ name: D,
380
+ value: O
381
+ }), e;
382
+ }
383
+ var dispatch_default = dispatch, namespaces_default = {
384
+ svg: "http://www.w3.org/2000/svg",
385
+ xhtml: "http://www.w3.org/1999/xhtml",
386
+ xlink: "http://www.w3.org/1999/xlink",
387
+ xml: "http://www.w3.org/XML/1998/namespace",
388
+ xmlns: "http://www.w3.org/2000/xmlns/"
389
+ };
390
+ function namespace_default(e) {
391
+ var D = e += "", O = D.indexOf(":");
392
+ return O >= 0 && (D = e.slice(0, O)) !== "xmlns" && (e = e.slice(O + 1)), namespaces_default.hasOwnProperty(D) ? {
393
+ space: namespaces_default[D],
394
+ local: e
395
+ } : e;
396
+ }
397
+ function creatorInherit(e) {
398
+ return function() {
399
+ var D = this.ownerDocument, O = this.namespaceURI;
400
+ return O === "http://www.w3.org/1999/xhtml" && D.documentElement.namespaceURI === "http://www.w3.org/1999/xhtml" ? D.createElement(e) : D.createElementNS(O, e);
401
+ };
402
+ }
403
+ function creatorFixed(e) {
404
+ return function() {
405
+ return this.ownerDocument.createElementNS(e.space, e.local);
406
+ };
407
+ }
408
+ function creator_default(e) {
409
+ var D = namespace_default(e);
410
+ return (D.local ? creatorFixed : creatorInherit)(D);
411
+ }
412
+ function none() {}
413
+ function selector_default(e) {
414
+ return e == null ? none : function() {
415
+ return this.querySelector(e);
416
+ };
417
+ }
418
+ function select_default$2(e) {
419
+ typeof e != "function" && (e = selector_default(e));
420
+ for (var D = this._groups, O = D.length, k = Array(O), A = 0; A < O; ++A) for (var j = D[A], M = j.length, N = k[A] = Array(M), P, F, I = 0; I < M; ++I) (P = j[I]) && (F = e.call(P, P.__data__, I, j)) && ("__data__" in P && (F.__data__ = P.__data__), N[I] = F);
421
+ return new Selection$1(k, this._parents);
422
+ }
423
+ function array(e) {
424
+ return e == null ? [] : Array.isArray(e) ? e : Array.from(e);
425
+ }
426
+ function empty() {
427
+ return [];
428
+ }
429
+ function selectorAll_default(e) {
430
+ return e == null ? empty : function() {
431
+ return this.querySelectorAll(e);
432
+ };
433
+ }
434
+ function arrayAll(e) {
435
+ return function() {
436
+ return array(e.apply(this, arguments));
437
+ };
438
+ }
439
+ function selectAll_default$1(e) {
440
+ e = typeof e == "function" ? arrayAll(e) : selectorAll_default(e);
441
+ for (var D = this._groups, O = D.length, k = [], A = [], j = 0; j < O; ++j) for (var M = D[j], N = M.length, P, F = 0; F < N; ++F) (P = M[F]) && (k.push(e.call(P, P.__data__, F, M)), A.push(P));
442
+ return new Selection$1(k, A);
443
+ }
444
+ function matcher_default(e) {
445
+ return function() {
446
+ return this.matches(e);
447
+ };
448
+ }
449
+ function childMatcher(e) {
450
+ return function(D) {
451
+ return D.matches(e);
452
+ };
453
+ }
454
+ var find = Array.prototype.find;
455
+ function childFind(e) {
456
+ return function() {
457
+ return find.call(this.children, e);
458
+ };
459
+ }
460
+ function childFirst() {
461
+ return this.firstElementChild;
462
+ }
463
+ function selectChild_default(e) {
464
+ return this.select(e == null ? childFirst : childFind(typeof e == "function" ? e : childMatcher(e)));
465
+ }
466
+ var filter = Array.prototype.filter;
467
+ function children() {
468
+ return Array.from(this.children);
469
+ }
470
+ function childrenFilter(e) {
471
+ return function() {
472
+ return filter.call(this.children, e);
473
+ };
474
+ }
475
+ function selectChildren_default(e) {
476
+ return this.selectAll(e == null ? children : childrenFilter(typeof e == "function" ? e : childMatcher(e)));
477
+ }
478
+ function filter_default$1(e) {
479
+ typeof e != "function" && (e = matcher_default(e));
480
+ for (var D = this._groups, O = D.length, k = Array(O), A = 0; A < O; ++A) for (var j = D[A], M = j.length, N = k[A] = [], P, F = 0; F < M; ++F) (P = j[F]) && e.call(P, P.__data__, F, j) && N.push(P);
481
+ return new Selection$1(k, this._parents);
482
+ }
483
+ function sparse_default(e) {
484
+ return Array(e.length);
485
+ }
486
+ function enter_default() {
487
+ return new Selection$1(this._enter || this._groups.map(sparse_default), this._parents);
488
+ }
489
+ function EnterNode(e, D) {
490
+ this.ownerDocument = e.ownerDocument, this.namespaceURI = e.namespaceURI, this._next = null, this._parent = e, this.__data__ = D;
491
+ }
492
+ EnterNode.prototype = {
493
+ constructor: EnterNode,
494
+ appendChild: function(e) {
495
+ return this._parent.insertBefore(e, this._next);
496
+ },
497
+ insertBefore: function(e, D) {
498
+ return this._parent.insertBefore(e, D);
499
+ },
500
+ querySelector: function(e) {
501
+ return this._parent.querySelector(e);
502
+ },
503
+ querySelectorAll: function(e) {
504
+ return this._parent.querySelectorAll(e);
505
+ }
506
+ };
507
+ function constant_default$1(e) {
508
+ return function() {
509
+ return e;
510
+ };
511
+ }
512
+ function bindIndex(e, D, O, k, A, j) {
513
+ for (var M = 0, N, P = D.length, F = j.length; M < F; ++M) (N = D[M]) ? (N.__data__ = j[M], k[M] = N) : O[M] = new EnterNode(e, j[M]);
514
+ for (; M < P; ++M) (N = D[M]) && (A[M] = N);
515
+ }
516
+ function bindKey(e, D, O, k, A, j, M) {
517
+ var N, P, F = /* @__PURE__ */ new Map(), I = D.length, L = j.length, R = Array(I), z;
518
+ for (N = 0; N < I; ++N) (P = D[N]) && (R[N] = z = M.call(P, P.__data__, N, D) + "", F.has(z) ? A[N] = P : F.set(z, P));
519
+ for (N = 0; N < L; ++N) z = M.call(e, j[N], N, j) + "", (P = F.get(z)) ? (k[N] = P, P.__data__ = j[N], F.delete(z)) : O[N] = new EnterNode(e, j[N]);
520
+ for (N = 0; N < I; ++N) (P = D[N]) && F.get(R[N]) === P && (A[N] = P);
521
+ }
522
+ function datum(e) {
523
+ return e.__data__;
524
+ }
525
+ function data_default(e, D) {
526
+ if (!arguments.length) return Array.from(this, datum);
527
+ var O = D ? bindKey : bindIndex, k = this._parents, A = this._groups;
528
+ typeof e != "function" && (e = constant_default$1(e));
529
+ for (var j = A.length, M = Array(j), N = Array(j), P = Array(j), F = 0; F < j; ++F) {
530
+ var I = k[F], L = A[F], R = L.length, z = arraylike(e.call(I, I && I.__data__, F, k)), B = z.length, V = N[F] = Array(B), H = M[F] = Array(B);
531
+ O(I, L, V, H, P[F] = Array(R), z, D);
532
+ for (var U = 0, W = 0, G, K; U < B; ++U) if (G = V[U]) {
533
+ for (U >= W && (W = U + 1); !(K = H[W]) && ++W < B;);
534
+ G._next = K || null;
535
+ }
536
+ }
537
+ return M = new Selection$1(M, k), M._enter = N, M._exit = P, M;
538
+ }
539
+ function arraylike(e) {
540
+ return typeof e == "object" && "length" in e ? e : Array.from(e);
541
+ }
542
+ function exit_default() {
543
+ return new Selection$1(this._exit || this._groups.map(sparse_default), this._parents);
544
+ }
545
+ function join_default(e, D, O) {
546
+ var k = this.enter(), A = this, j = this.exit();
547
+ return typeof e == "function" ? (k = e(k), k &&= k.selection()) : k = k.append(e + ""), D != null && (A = D(A), A &&= A.selection()), O == null ? j.remove() : O(j), k && A ? k.merge(A).order() : A;
548
+ }
549
+ function merge_default$1(e) {
550
+ for (var D = e.selection ? e.selection() : e, O = this._groups, k = D._groups, A = O.length, j = k.length, M = Math.min(A, j), N = Array(A), P = 0; P < M; ++P) for (var F = O[P], I = k[P], L = F.length, R = N[P] = Array(L), z, B = 0; B < L; ++B) (z = F[B] || I[B]) && (R[B] = z);
551
+ for (; P < A; ++P) N[P] = O[P];
552
+ return new Selection$1(N, this._parents);
553
+ }
554
+ function order_default() {
555
+ for (var e = this._groups, D = -1, O = e.length; ++D < O;) for (var k = e[D], A = k.length - 1, j = k[A], M; --A >= 0;) (M = k[A]) && (j && M.compareDocumentPosition(j) ^ 4 && j.parentNode.insertBefore(M, j), j = M);
556
+ return this;
557
+ }
558
+ function sort_default(e) {
559
+ e ||= ascending;
560
+ function D(D, O) {
561
+ return D && O ? e(D.__data__, O.__data__) : !D - !O;
562
+ }
563
+ for (var O = this._groups, k = O.length, A = Array(k), j = 0; j < k; ++j) {
564
+ for (var M = O[j], N = M.length, P = A[j] = Array(N), F, I = 0; I < N; ++I) (F = M[I]) && (P[I] = F);
565
+ P.sort(D);
566
+ }
567
+ return new Selection$1(A, this._parents).order();
568
+ }
569
+ function ascending(e, D) {
570
+ return e < D ? -1 : e > D ? 1 : e >= D ? 0 : NaN;
571
+ }
572
+ function call_default() {
573
+ var e = arguments[0];
574
+ return arguments[0] = this, e.apply(null, arguments), this;
575
+ }
576
+ function nodes_default() {
577
+ return Array.from(this);
578
+ }
579
+ function node_default() {
580
+ for (var e = this._groups, D = 0, O = e.length; D < O; ++D) for (var k = e[D], A = 0, j = k.length; A < j; ++A) {
581
+ var M = k[A];
582
+ if (M) return M;
583
+ }
584
+ return null;
585
+ }
586
+ function size_default() {
587
+ let e = 0;
588
+ for (let D of this) ++e;
589
+ return e;
590
+ }
591
+ function empty_default() {
592
+ return !this.node();
593
+ }
594
+ function each_default(e) {
595
+ for (var D = this._groups, O = 0, k = D.length; O < k; ++O) for (var A = D[O], j = 0, M = A.length, N; j < M; ++j) (N = A[j]) && e.call(N, N.__data__, j, A);
596
+ return this;
597
+ }
598
+ function attrRemove$1(e) {
599
+ return function() {
600
+ this.removeAttribute(e);
601
+ };
602
+ }
603
+ function attrRemoveNS$1(e) {
604
+ return function() {
605
+ this.removeAttributeNS(e.space, e.local);
606
+ };
607
+ }
608
+ function attrConstant$1(e, D) {
609
+ return function() {
610
+ this.setAttribute(e, D);
611
+ };
612
+ }
613
+ function attrConstantNS$1(e, D) {
614
+ return function() {
615
+ this.setAttributeNS(e.space, e.local, D);
616
+ };
617
+ }
618
+ function attrFunction$1(e, D) {
619
+ return function() {
620
+ var O = D.apply(this, arguments);
621
+ O == null ? this.removeAttribute(e) : this.setAttribute(e, O);
622
+ };
623
+ }
624
+ function attrFunctionNS$1(e, D) {
625
+ return function() {
626
+ var O = D.apply(this, arguments);
627
+ O == null ? this.removeAttributeNS(e.space, e.local) : this.setAttributeNS(e.space, e.local, O);
628
+ };
629
+ }
630
+ function attr_default$1(e, D) {
631
+ var O = namespace_default(e);
632
+ if (arguments.length < 2) {
633
+ var k = this.node();
634
+ return O.local ? k.getAttributeNS(O.space, O.local) : k.getAttribute(O);
635
+ }
636
+ return this.each((D == null ? O.local ? attrRemoveNS$1 : attrRemove$1 : typeof D == "function" ? O.local ? attrFunctionNS$1 : attrFunction$1 : O.local ? attrConstantNS$1 : attrConstant$1)(O, D));
637
+ }
638
+ function window_default(e) {
639
+ return e.ownerDocument && e.ownerDocument.defaultView || e.document && e || e.defaultView;
640
+ }
641
+ function styleRemove$1(e) {
642
+ return function() {
643
+ this.style.removeProperty(e);
644
+ };
645
+ }
646
+ function styleConstant$1(e, D, O) {
647
+ return function() {
648
+ this.style.setProperty(e, D, O);
649
+ };
650
+ }
651
+ function styleFunction$1(e, D, O) {
652
+ return function() {
653
+ var k = D.apply(this, arguments);
654
+ k == null ? this.style.removeProperty(e) : this.style.setProperty(e, k, O);
655
+ };
656
+ }
657
+ function style_default$1(e, D, O) {
658
+ return arguments.length > 1 ? this.each((D == null ? styleRemove$1 : typeof D == "function" ? styleFunction$1 : styleConstant$1)(e, D, O ?? "")) : styleValue(this.node(), e);
659
+ }
660
+ function styleValue(e, D) {
661
+ return e.style.getPropertyValue(D) || window_default(e).getComputedStyle(e, null).getPropertyValue(D);
662
+ }
663
+ function propertyRemove(e) {
664
+ return function() {
665
+ delete this[e];
666
+ };
667
+ }
668
+ function propertyConstant(e, D) {
669
+ return function() {
670
+ this[e] = D;
671
+ };
672
+ }
673
+ function propertyFunction(e, D) {
674
+ return function() {
675
+ var O = D.apply(this, arguments);
676
+ O == null ? delete this[e] : this[e] = O;
677
+ };
678
+ }
679
+ function property_default(e, D) {
680
+ return arguments.length > 1 ? this.each((D == null ? propertyRemove : typeof D == "function" ? propertyFunction : propertyConstant)(e, D)) : this.node()[e];
681
+ }
682
+ function classArray(e) {
683
+ return e.trim().split(/^|\s+/);
684
+ }
685
+ function classList(e) {
686
+ return e.classList || new ClassList(e);
687
+ }
688
+ function ClassList(e) {
689
+ this._node = e, this._names = classArray(e.getAttribute("class") || "");
690
+ }
691
+ ClassList.prototype = {
692
+ add: function(e) {
693
+ this._names.indexOf(e) < 0 && (this._names.push(e), this._node.setAttribute("class", this._names.join(" ")));
694
+ },
695
+ remove: function(e) {
696
+ var D = this._names.indexOf(e);
697
+ D >= 0 && (this._names.splice(D, 1), this._node.setAttribute("class", this._names.join(" ")));
698
+ },
699
+ contains: function(e) {
700
+ return this._names.indexOf(e) >= 0;
701
+ }
702
+ };
703
+ function classedAdd(e, D) {
704
+ for (var O = classList(e), k = -1, A = D.length; ++k < A;) O.add(D[k]);
705
+ }
706
+ function classedRemove(e, D) {
707
+ for (var O = classList(e), k = -1, A = D.length; ++k < A;) O.remove(D[k]);
708
+ }
709
+ function classedTrue(e) {
710
+ return function() {
711
+ classedAdd(this, e);
712
+ };
713
+ }
714
+ function classedFalse(e) {
715
+ return function() {
716
+ classedRemove(this, e);
717
+ };
718
+ }
719
+ function classedFunction(e, D) {
720
+ return function() {
721
+ (D.apply(this, arguments) ? classedAdd : classedRemove)(this, e);
722
+ };
723
+ }
724
+ function classed_default(e, D) {
725
+ var O = classArray(e + "");
726
+ if (arguments.length < 2) {
727
+ for (var k = classList(this.node()), A = -1, j = O.length; ++A < j;) if (!k.contains(O[A])) return !1;
728
+ return !0;
729
+ }
730
+ return this.each((typeof D == "function" ? classedFunction : D ? classedTrue : classedFalse)(O, D));
731
+ }
732
+ function textRemove() {
733
+ this.textContent = "";
734
+ }
735
+ function textConstant$1(e) {
736
+ return function() {
737
+ this.textContent = e;
738
+ };
739
+ }
740
+ function textFunction$1(e) {
741
+ return function() {
742
+ this.textContent = e.apply(this, arguments) ?? "";
743
+ };
744
+ }
745
+ function text_default$1(e) {
746
+ return arguments.length ? this.each(e == null ? textRemove : (typeof e == "function" ? textFunction$1 : textConstant$1)(e)) : this.node().textContent;
747
+ }
748
+ function htmlRemove() {
749
+ this.innerHTML = "";
750
+ }
751
+ function htmlConstant(e) {
752
+ return function() {
753
+ this.innerHTML = e;
754
+ };
755
+ }
756
+ function htmlFunction(e) {
757
+ return function() {
758
+ this.innerHTML = e.apply(this, arguments) ?? "";
759
+ };
760
+ }
761
+ function html_default(e) {
762
+ return arguments.length ? this.each(e == null ? htmlRemove : (typeof e == "function" ? htmlFunction : htmlConstant)(e)) : this.node().innerHTML;
763
+ }
764
+ function raise() {
765
+ this.nextSibling && this.parentNode.appendChild(this);
766
+ }
767
+ function raise_default() {
768
+ return this.each(raise);
769
+ }
770
+ function lower() {
771
+ this.previousSibling && this.parentNode.insertBefore(this, this.parentNode.firstChild);
772
+ }
773
+ function lower_default() {
774
+ return this.each(lower);
775
+ }
776
+ function append_default(e) {
777
+ var D = typeof e == "function" ? e : creator_default(e);
778
+ return this.select(function() {
779
+ return this.appendChild(D.apply(this, arguments));
780
+ });
781
+ }
782
+ function constantNull() {
783
+ return null;
784
+ }
785
+ function insert_default(e, D) {
786
+ var O = typeof e == "function" ? e : creator_default(e), k = D == null ? constantNull : typeof D == "function" ? D : selector_default(D);
787
+ return this.select(function() {
788
+ return this.insertBefore(O.apply(this, arguments), k.apply(this, arguments) || null);
789
+ });
790
+ }
791
+ function remove() {
792
+ var e = this.parentNode;
793
+ e && e.removeChild(this);
794
+ }
795
+ function remove_default$1() {
796
+ return this.each(remove);
797
+ }
798
+ function selection_cloneShallow() {
799
+ var e = this.cloneNode(!1), D = this.parentNode;
800
+ return D ? D.insertBefore(e, this.nextSibling) : e;
801
+ }
802
+ function selection_cloneDeep() {
803
+ var e = this.cloneNode(!0), D = this.parentNode;
804
+ return D ? D.insertBefore(e, this.nextSibling) : e;
805
+ }
806
+ function clone_default(e) {
807
+ return this.select(e ? selection_cloneDeep : selection_cloneShallow);
808
+ }
809
+ function datum_default(e) {
810
+ return arguments.length ? this.property("__data__", e) : this.node().__data__;
811
+ }
812
+ function contextListener(e) {
813
+ return function(D) {
814
+ e.call(this, D, this.__data__);
815
+ };
816
+ }
817
+ function parseTypenames(e) {
818
+ return e.trim().split(/^|\s+/).map(function(e) {
819
+ var D = "", O = e.indexOf(".");
820
+ return O >= 0 && (D = e.slice(O + 1), e = e.slice(0, O)), {
821
+ type: e,
822
+ name: D
823
+ };
824
+ });
825
+ }
826
+ function onRemove(e) {
827
+ return function() {
828
+ var D = this.__on;
829
+ if (D) {
830
+ for (var O = 0, k = -1, A = D.length, j; O < A; ++O) j = D[O], (!e.type || j.type === e.type) && j.name === e.name ? this.removeEventListener(j.type, j.listener, j.options) : D[++k] = j;
831
+ ++k ? D.length = k : delete this.__on;
832
+ }
833
+ };
834
+ }
835
+ function onAdd(e, D, O) {
836
+ return function() {
837
+ var k = this.__on, A, j = contextListener(D);
838
+ if (k) {
839
+ for (var M = 0, N = k.length; M < N; ++M) if ((A = k[M]).type === e.type && A.name === e.name) {
840
+ this.removeEventListener(A.type, A.listener, A.options), this.addEventListener(A.type, A.listener = j, A.options = O), A.value = D;
841
+ return;
842
+ }
843
+ }
844
+ this.addEventListener(e.type, j, O), A = {
845
+ type: e.type,
846
+ name: e.name,
847
+ value: D,
848
+ listener: j,
849
+ options: O
850
+ }, k ? k.push(A) : this.__on = [A];
851
+ };
852
+ }
853
+ function on_default$1(e, D, O) {
854
+ var k = parseTypenames(e + ""), A, j = k.length, M;
855
+ if (arguments.length < 2) {
856
+ var N = this.node().__on;
857
+ if (N) {
858
+ for (var P = 0, F = N.length, I; P < F; ++P) for (A = 0, I = N[P]; A < j; ++A) if ((M = k[A]).type === I.type && M.name === I.name) return I.value;
859
+ }
860
+ return;
861
+ }
862
+ for (N = D ? onAdd : onRemove, A = 0; A < j; ++A) this.each(N(k[A], D, O));
863
+ return this;
864
+ }
865
+ function dispatchEvent(e, D, O) {
866
+ var k = window_default(e), A = k.CustomEvent;
867
+ typeof A == "function" ? A = new A(D, O) : (A = k.document.createEvent("Event"), O ? (A.initEvent(D, O.bubbles, O.cancelable), A.detail = O.detail) : A.initEvent(D, !1, !1)), e.dispatchEvent(A);
868
+ }
869
+ function dispatchConstant(e, D) {
870
+ return function() {
871
+ return dispatchEvent(this, e, D);
872
+ };
873
+ }
874
+ function dispatchFunction(e, D) {
875
+ return function() {
876
+ return dispatchEvent(this, e, D.apply(this, arguments));
877
+ };
878
+ }
879
+ function dispatch_default$1(e, D) {
880
+ return this.each((typeof D == "function" ? dispatchFunction : dispatchConstant)(e, D));
881
+ }
882
+ function* iterator_default() {
883
+ for (var e = this._groups, D = 0, O = e.length; D < O; ++D) for (var k = e[D], A = 0, j = k.length, M; A < j; ++A) (M = k[A]) && (yield M);
884
+ }
885
+ var root = [null];
886
+ function Selection$1(e, D) {
887
+ this._groups = e, this._parents = D;
888
+ }
889
+ function selection() {
890
+ return new Selection$1([[document.documentElement]], root);
891
+ }
892
+ function selection_selection() {
893
+ return this;
894
+ }
895
+ Selection$1.prototype = selection.prototype = {
896
+ constructor: Selection$1,
897
+ select: select_default$2,
898
+ selectAll: selectAll_default$1,
899
+ selectChild: selectChild_default,
900
+ selectChildren: selectChildren_default,
901
+ filter: filter_default$1,
902
+ data: data_default,
903
+ enter: enter_default,
904
+ exit: exit_default,
905
+ join: join_default,
906
+ merge: merge_default$1,
907
+ selection: selection_selection,
908
+ order: order_default,
909
+ sort: sort_default,
910
+ call: call_default,
911
+ nodes: nodes_default,
912
+ node: node_default,
913
+ size: size_default,
914
+ empty: empty_default,
915
+ each: each_default,
916
+ attr: attr_default$1,
917
+ style: style_default$1,
918
+ property: property_default,
919
+ classed: classed_default,
920
+ text: text_default$1,
921
+ html: html_default,
922
+ raise: raise_default,
923
+ lower: lower_default,
924
+ append: append_default,
925
+ insert: insert_default,
926
+ remove: remove_default$1,
927
+ clone: clone_default,
928
+ datum: datum_default,
929
+ on: on_default$1,
930
+ dispatch: dispatch_default$1,
931
+ [Symbol.iterator]: iterator_default
932
+ };
933
+ var selection_default = selection;
934
+ function select_default$1(e) {
935
+ return typeof e == "string" ? new Selection$1([[document.querySelector(e)]], [document.documentElement]) : new Selection$1([[e]], root);
936
+ }
937
+ function define_default(e, D, O) {
938
+ e.prototype = D.prototype = O, O.constructor = e;
939
+ }
940
+ function extend(e, D) {
941
+ var O = Object.create(e.prototype);
942
+ for (var k in D) O[k] = D[k];
943
+ return O;
944
+ }
945
+ function Color() {}
946
+ var darker = .7, brighter = 1 / darker, reI = "\\s*([+-]?\\d+)\\s*", reN = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*", reP = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*", reHex = /^#([0-9a-f]{3,8})$/, reRgbInteger = /* @__PURE__ */ RegExp(`^rgb\\(${reI},${reI},${reI}\\)$`), reRgbPercent = /* @__PURE__ */ RegExp(`^rgb\\(${reP},${reP},${reP}\\)$`), reRgbaInteger = /* @__PURE__ */ RegExp(`^rgba\\(${reI},${reI},${reI},${reN}\\)$`), reRgbaPercent = /* @__PURE__ */ RegExp(`^rgba\\(${reP},${reP},${reP},${reN}\\)$`), reHslPercent = /* @__PURE__ */ RegExp(`^hsl\\(${reN},${reP},${reP}\\)$`), reHslaPercent = /* @__PURE__ */ RegExp(`^hsla\\(${reN},${reP},${reP},${reN}\\)$`), named = {
947
+ aliceblue: 15792383,
948
+ antiquewhite: 16444375,
949
+ aqua: 65535,
950
+ aquamarine: 8388564,
951
+ azure: 15794175,
952
+ beige: 16119260,
953
+ bisque: 16770244,
954
+ black: 0,
955
+ blanchedalmond: 16772045,
956
+ blue: 255,
957
+ blueviolet: 9055202,
958
+ brown: 10824234,
959
+ burlywood: 14596231,
960
+ cadetblue: 6266528,
961
+ chartreuse: 8388352,
962
+ chocolate: 13789470,
963
+ coral: 16744272,
964
+ cornflowerblue: 6591981,
965
+ cornsilk: 16775388,
966
+ crimson: 14423100,
967
+ cyan: 65535,
968
+ darkblue: 139,
969
+ darkcyan: 35723,
970
+ darkgoldenrod: 12092939,
971
+ darkgray: 11119017,
972
+ darkgreen: 25600,
973
+ darkgrey: 11119017,
974
+ darkkhaki: 12433259,
975
+ darkmagenta: 9109643,
976
+ darkolivegreen: 5597999,
977
+ darkorange: 16747520,
978
+ darkorchid: 10040012,
979
+ darkred: 9109504,
980
+ darksalmon: 15308410,
981
+ darkseagreen: 9419919,
982
+ darkslateblue: 4734347,
983
+ darkslategray: 3100495,
984
+ darkslategrey: 3100495,
985
+ darkturquoise: 52945,
986
+ darkviolet: 9699539,
987
+ deeppink: 16716947,
988
+ deepskyblue: 49151,
989
+ dimgray: 6908265,
990
+ dimgrey: 6908265,
991
+ dodgerblue: 2003199,
992
+ firebrick: 11674146,
993
+ floralwhite: 16775920,
994
+ forestgreen: 2263842,
995
+ fuchsia: 16711935,
996
+ gainsboro: 14474460,
997
+ ghostwhite: 16316671,
998
+ gold: 16766720,
999
+ goldenrod: 14329120,
1000
+ gray: 8421504,
1001
+ green: 32768,
1002
+ greenyellow: 11403055,
1003
+ grey: 8421504,
1004
+ honeydew: 15794160,
1005
+ hotpink: 16738740,
1006
+ indianred: 13458524,
1007
+ indigo: 4915330,
1008
+ ivory: 16777200,
1009
+ khaki: 15787660,
1010
+ lavender: 15132410,
1011
+ lavenderblush: 16773365,
1012
+ lawngreen: 8190976,
1013
+ lemonchiffon: 16775885,
1014
+ lightblue: 11393254,
1015
+ lightcoral: 15761536,
1016
+ lightcyan: 14745599,
1017
+ lightgoldenrodyellow: 16448210,
1018
+ lightgray: 13882323,
1019
+ lightgreen: 9498256,
1020
+ lightgrey: 13882323,
1021
+ lightpink: 16758465,
1022
+ lightsalmon: 16752762,
1023
+ lightseagreen: 2142890,
1024
+ lightskyblue: 8900346,
1025
+ lightslategray: 7833753,
1026
+ lightslategrey: 7833753,
1027
+ lightsteelblue: 11584734,
1028
+ lightyellow: 16777184,
1029
+ lime: 65280,
1030
+ limegreen: 3329330,
1031
+ linen: 16445670,
1032
+ magenta: 16711935,
1033
+ maroon: 8388608,
1034
+ mediumaquamarine: 6737322,
1035
+ mediumblue: 205,
1036
+ mediumorchid: 12211667,
1037
+ mediumpurple: 9662683,
1038
+ mediumseagreen: 3978097,
1039
+ mediumslateblue: 8087790,
1040
+ mediumspringgreen: 64154,
1041
+ mediumturquoise: 4772300,
1042
+ mediumvioletred: 13047173,
1043
+ midnightblue: 1644912,
1044
+ mintcream: 16121850,
1045
+ mistyrose: 16770273,
1046
+ moccasin: 16770229,
1047
+ navajowhite: 16768685,
1048
+ navy: 128,
1049
+ oldlace: 16643558,
1050
+ olive: 8421376,
1051
+ olivedrab: 7048739,
1052
+ orange: 16753920,
1053
+ orangered: 16729344,
1054
+ orchid: 14315734,
1055
+ palegoldenrod: 15657130,
1056
+ palegreen: 10025880,
1057
+ paleturquoise: 11529966,
1058
+ palevioletred: 14381203,
1059
+ papayawhip: 16773077,
1060
+ peachpuff: 16767673,
1061
+ peru: 13468991,
1062
+ pink: 16761035,
1063
+ plum: 14524637,
1064
+ powderblue: 11591910,
1065
+ purple: 8388736,
1066
+ rebeccapurple: 6697881,
1067
+ red: 16711680,
1068
+ rosybrown: 12357519,
1069
+ royalblue: 4286945,
1070
+ saddlebrown: 9127187,
1071
+ salmon: 16416882,
1072
+ sandybrown: 16032864,
1073
+ seagreen: 3050327,
1074
+ seashell: 16774638,
1075
+ sienna: 10506797,
1076
+ silver: 12632256,
1077
+ skyblue: 8900331,
1078
+ slateblue: 6970061,
1079
+ slategray: 7372944,
1080
+ slategrey: 7372944,
1081
+ snow: 16775930,
1082
+ springgreen: 65407,
1083
+ steelblue: 4620980,
1084
+ tan: 13808780,
1085
+ teal: 32896,
1086
+ thistle: 14204888,
1087
+ tomato: 16737095,
1088
+ turquoise: 4251856,
1089
+ violet: 15631086,
1090
+ wheat: 16113331,
1091
+ white: 16777215,
1092
+ whitesmoke: 16119285,
1093
+ yellow: 16776960,
1094
+ yellowgreen: 10145074
1095
+ };
1096
+ define_default(Color, color, {
1097
+ copy(e) {
1098
+ return Object.assign(new this.constructor(), this, e);
1099
+ },
1100
+ displayable() {
1101
+ return this.rgb().displayable();
1102
+ },
1103
+ hex: color_formatHex,
1104
+ formatHex: color_formatHex,
1105
+ formatHex8: color_formatHex8,
1106
+ formatHsl: color_formatHsl,
1107
+ formatRgb: color_formatRgb,
1108
+ toString: color_formatRgb
1109
+ });
1110
+ function color_formatHex() {
1111
+ return this.rgb().formatHex();
1112
+ }
1113
+ function color_formatHex8() {
1114
+ return this.rgb().formatHex8();
1115
+ }
1116
+ function color_formatHsl() {
1117
+ return hslConvert(this).formatHsl();
1118
+ }
1119
+ function color_formatRgb() {
1120
+ return this.rgb().formatRgb();
1121
+ }
1122
+ function color(e) {
1123
+ var D, O;
1124
+ return e = (e + "").trim().toLowerCase(), (D = reHex.exec(e)) ? (O = D[1].length, D = parseInt(D[1], 16), O === 6 ? rgbn(D) : O === 3 ? new Rgb(D >> 8 & 15 | D >> 4 & 240, D >> 4 & 15 | D & 240, (D & 15) << 4 | D & 15, 1) : O === 8 ? rgba(D >> 24 & 255, D >> 16 & 255, D >> 8 & 255, (D & 255) / 255) : O === 4 ? rgba(D >> 12 & 15 | D >> 8 & 240, D >> 8 & 15 | D >> 4 & 240, D >> 4 & 15 | D & 240, ((D & 15) << 4 | D & 15) / 255) : null) : (D = reRgbInteger.exec(e)) ? new Rgb(D[1], D[2], D[3], 1) : (D = reRgbPercent.exec(e)) ? new Rgb(D[1] * 255 / 100, D[2] * 255 / 100, D[3] * 255 / 100, 1) : (D = reRgbaInteger.exec(e)) ? rgba(D[1], D[2], D[3], D[4]) : (D = reRgbaPercent.exec(e)) ? rgba(D[1] * 255 / 100, D[2] * 255 / 100, D[3] * 255 / 100, D[4]) : (D = reHslPercent.exec(e)) ? hsla(D[1], D[2] / 100, D[3] / 100, 1) : (D = reHslaPercent.exec(e)) ? hsla(D[1], D[2] / 100, D[3] / 100, D[4]) : named.hasOwnProperty(e) ? rgbn(named[e]) : e === "transparent" ? new Rgb(NaN, NaN, NaN, 0) : null;
1125
+ }
1126
+ function rgbn(e) {
1127
+ return new Rgb(e >> 16 & 255, e >> 8 & 255, e & 255, 1);
1128
+ }
1129
+ function rgba(e, D, O, k) {
1130
+ return k <= 0 && (e = D = O = NaN), new Rgb(e, D, O, k);
1131
+ }
1132
+ function rgbConvert(e) {
1133
+ return e instanceof Color || (e = color(e)), e ? (e = e.rgb(), new Rgb(e.r, e.g, e.b, e.opacity)) : new Rgb();
1134
+ }
1135
+ function rgb(e, D, O, k) {
1136
+ return arguments.length === 1 ? rgbConvert(e) : new Rgb(e, D, O, k ?? 1);
1137
+ }
1138
+ function Rgb(e, D, O, k) {
1139
+ this.r = +e, this.g = +D, this.b = +O, this.opacity = +k;
1140
+ }
1141
+ define_default(Rgb, rgb, extend(Color, {
1142
+ brighter(e) {
1143
+ return e = e == null ? brighter : brighter ** +e, new Rgb(this.r * e, this.g * e, this.b * e, this.opacity);
1144
+ },
1145
+ darker(e) {
1146
+ return e = e == null ? darker : darker ** +e, new Rgb(this.r * e, this.g * e, this.b * e, this.opacity);
1147
+ },
1148
+ rgb() {
1149
+ return this;
1150
+ },
1151
+ clamp() {
1152
+ return new Rgb(clampi(this.r), clampi(this.g), clampi(this.b), clampa(this.opacity));
1153
+ },
1154
+ displayable() {
1155
+ return -.5 <= this.r && this.r < 255.5 && -.5 <= this.g && this.g < 255.5 && -.5 <= this.b && this.b < 255.5 && 0 <= this.opacity && this.opacity <= 1;
1156
+ },
1157
+ hex: rgb_formatHex,
1158
+ formatHex: rgb_formatHex,
1159
+ formatHex8: rgb_formatHex8,
1160
+ formatRgb: rgb_formatRgb,
1161
+ toString: rgb_formatRgb
1162
+ }));
1163
+ function rgb_formatHex() {
1164
+ return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}`;
1165
+ }
1166
+ function rgb_formatHex8() {
1167
+ return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}${hex((isNaN(this.opacity) ? 1 : this.opacity) * 255)}`;
1168
+ }
1169
+ function rgb_formatRgb() {
1170
+ let e = clampa(this.opacity);
1171
+ return `${e === 1 ? "rgb(" : "rgba("}${clampi(this.r)}, ${clampi(this.g)}, ${clampi(this.b)}${e === 1 ? ")" : `, ${e})`}`;
1172
+ }
1173
+ function clampa(e) {
1174
+ return isNaN(e) ? 1 : Math.max(0, Math.min(1, e));
1175
+ }
1176
+ function clampi(e) {
1177
+ return Math.max(0, Math.min(255, Math.round(e) || 0));
1178
+ }
1179
+ function hex(e) {
1180
+ return e = clampi(e), (e < 16 ? "0" : "") + e.toString(16);
1181
+ }
1182
+ function hsla(e, D, O, k) {
1183
+ return k <= 0 ? e = D = O = NaN : O <= 0 || O >= 1 ? e = D = NaN : D <= 0 && (e = NaN), new Hsl(e, D, O, k);
1184
+ }
1185
+ function hslConvert(e) {
1186
+ if (e instanceof Hsl) return new Hsl(e.h, e.s, e.l, e.opacity);
1187
+ if (e instanceof Color || (e = color(e)), !e) return new Hsl();
1188
+ if (e instanceof Hsl) return e;
1189
+ e = e.rgb();
1190
+ var D = e.r / 255, O = e.g / 255, k = e.b / 255, A = Math.min(D, O, k), j = Math.max(D, O, k), M = NaN, N = j - A, P = (j + A) / 2;
1191
+ return N ? (M = D === j ? (O - k) / N + (O < k) * 6 : O === j ? (k - D) / N + 2 : (D - O) / N + 4, N /= P < .5 ? j + A : 2 - j - A, M *= 60) : N = P > 0 && P < 1 ? 0 : M, new Hsl(M, N, P, e.opacity);
1192
+ }
1193
+ function hsl(e, D, O, k) {
1194
+ return arguments.length === 1 ? hslConvert(e) : new Hsl(e, D, O, k ?? 1);
1195
+ }
1196
+ function Hsl(e, D, O, k) {
1197
+ this.h = +e, this.s = +D, this.l = +O, this.opacity = +k;
1198
+ }
1199
+ define_default(Hsl, hsl, extend(Color, {
1200
+ brighter(e) {
1201
+ return e = e == null ? brighter : brighter ** +e, new Hsl(this.h, this.s, this.l * e, this.opacity);
1202
+ },
1203
+ darker(e) {
1204
+ return e = e == null ? darker : darker ** +e, new Hsl(this.h, this.s, this.l * e, this.opacity);
1205
+ },
1206
+ rgb() {
1207
+ var e = this.h % 360 + (this.h < 0) * 360, D = isNaN(e) || isNaN(this.s) ? 0 : this.s, O = this.l, k = O + (O < .5 ? O : 1 - O) * D, A = 2 * O - k;
1208
+ return new Rgb(hsl2rgb(e >= 240 ? e - 240 : e + 120, A, k), hsl2rgb(e, A, k), hsl2rgb(e < 120 ? e + 240 : e - 120, A, k), this.opacity);
1209
+ },
1210
+ clamp() {
1211
+ return new Hsl(clamph(this.h), clampt(this.s), clampt(this.l), clampa(this.opacity));
1212
+ },
1213
+ displayable() {
1214
+ return (0 <= this.s && this.s <= 1 || isNaN(this.s)) && 0 <= this.l && this.l <= 1 && 0 <= this.opacity && this.opacity <= 1;
1215
+ },
1216
+ formatHsl() {
1217
+ let e = clampa(this.opacity);
1218
+ return `${e === 1 ? "hsl(" : "hsla("}${clamph(this.h)}, ${clampt(this.s) * 100}%, ${clampt(this.l) * 100}%${e === 1 ? ")" : `, ${e})`}`;
1219
+ }
1220
+ }));
1221
+ function clamph(e) {
1222
+ return e = (e || 0) % 360, e < 0 ? e + 360 : e;
1223
+ }
1224
+ function clampt(e) {
1225
+ return Math.max(0, Math.min(1, e || 0));
1226
+ }
1227
+ function hsl2rgb(e, D, O) {
1228
+ return (e < 60 ? D + (O - D) * e / 60 : e < 180 ? O : e < 240 ? D + (O - D) * (240 - e) / 60 : D) * 255;
1229
+ }
1230
+ var constant_default = (e) => () => e;
1231
+ function linear(e, D) {
1232
+ return function(O) {
1233
+ return e + O * D;
1234
+ };
1235
+ }
1236
+ function exponential(e, D, O) {
1237
+ return e **= +O, D = D ** +O - e, O = 1 / O, function(k) {
1238
+ return (e + k * D) ** +O;
1239
+ };
1240
+ }
1241
+ function hue(e, D) {
1242
+ var O = D - e;
1243
+ return O ? linear(e, O > 180 || O < -180 ? O - 360 * Math.round(O / 360) : O) : constant_default(isNaN(e) ? D : e);
1244
+ }
1245
+ function gamma(e) {
1246
+ return (e = +e) == 1 ? nogamma : function(D, O) {
1247
+ return O - D ? exponential(D, O, e) : constant_default(isNaN(D) ? O : D);
1248
+ };
1249
+ }
1250
+ function nogamma(e, D) {
1251
+ var O = D - e;
1252
+ return O ? linear(e, O) : constant_default(isNaN(e) ? D : e);
1253
+ }
1254
+ var rgb_default = (function e(D) {
1255
+ var O = gamma(D);
1256
+ function k(e, D) {
1257
+ var k = O((e = rgb(e)).r, (D = rgb(D)).r), A = O(e.g, D.g), j = O(e.b, D.b), M = nogamma(e.opacity, D.opacity);
1258
+ return function(D) {
1259
+ return e.r = k(D), e.g = A(D), e.b = j(D), e.opacity = M(D), e + "";
1260
+ };
1261
+ }
1262
+ return k.gamma = e, k;
1263
+ })(1);
1264
+ function number_default(e, D) {
1265
+ return e = +e, D = +D, function(O) {
1266
+ return e * (1 - O) + D * O;
1267
+ };
1268
+ }
1269
+ var reA = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, reB = new RegExp(reA.source, "g");
1270
+ function zero(e) {
1271
+ return function() {
1272
+ return e;
1273
+ };
1274
+ }
1275
+ function one(e) {
1276
+ return function(D) {
1277
+ return e(D) + "";
1278
+ };
1279
+ }
1280
+ function string_default(e, D) {
1281
+ var O = reA.lastIndex = reB.lastIndex = 0, k, A, j, M = -1, N = [], P = [];
1282
+ for (e += "", D += ""; (k = reA.exec(e)) && (A = reB.exec(D));) (j = A.index) > O && (j = D.slice(O, j), N[M] ? N[M] += j : N[++M] = j), (k = k[0]) === (A = A[0]) ? N[M] ? N[M] += A : N[++M] = A : (N[++M] = null, P.push({
1283
+ i: M,
1284
+ x: number_default(k, A)
1285
+ })), O = reB.lastIndex;
1286
+ return O < D.length && (j = D.slice(O), N[M] ? N[M] += j : N[++M] = j), N.length < 2 ? P[0] ? one(P[0].x) : zero(D) : (D = P.length, function(e) {
1287
+ for (var O = 0, k; O < D; ++O) N[(k = P[O]).i] = k.x(e);
1288
+ return N.join("");
1289
+ });
1290
+ }
1291
+ var degrees = 180 / Math.PI, identity$1 = {
1292
+ translateX: 0,
1293
+ translateY: 0,
1294
+ rotate: 0,
1295
+ skewX: 0,
1296
+ scaleX: 1,
1297
+ scaleY: 1
1298
+ };
1299
+ function decompose_default(e, D, O, k, A, j) {
1300
+ var M, N, P;
1301
+ return (M = Math.sqrt(e * e + D * D)) && (e /= M, D /= M), (P = e * O + D * k) && (O -= e * P, k -= D * P), (N = Math.sqrt(O * O + k * k)) && (O /= N, k /= N, P /= N), e * k < D * O && (e = -e, D = -D, P = -P, M = -M), {
1302
+ translateX: A,
1303
+ translateY: j,
1304
+ rotate: Math.atan2(D, e) * degrees,
1305
+ skewX: Math.atan(P) * degrees,
1306
+ scaleX: M,
1307
+ scaleY: N
1308
+ };
1309
+ }
1310
+ var svgNode;
1311
+ function parseCss(e) {
1312
+ let D = new (typeof DOMMatrix == "function" ? DOMMatrix : WebKitCSSMatrix)(e + "");
1313
+ return D.isIdentity ? identity$1 : decompose_default(D.a, D.b, D.c, D.d, D.e, D.f);
1314
+ }
1315
+ function parseSvg(e) {
1316
+ return e == null || (svgNode ||= document.createElementNS("http://www.w3.org/2000/svg", "g"), svgNode.setAttribute("transform", e), !(e = svgNode.transform.baseVal.consolidate())) ? identity$1 : (e = e.matrix, decompose_default(e.a, e.b, e.c, e.d, e.e, e.f));
1317
+ }
1318
+ function interpolateTransform(e, D, O, k) {
1319
+ function A(e) {
1320
+ return e.length ? e.pop() + " " : "";
1321
+ }
1322
+ function j(e, k, A, j, M, N) {
1323
+ if (e !== A || k !== j) {
1324
+ var P = M.push("translate(", null, D, null, O);
1325
+ N.push({
1326
+ i: P - 4,
1327
+ x: number_default(e, A)
1328
+ }, {
1329
+ i: P - 2,
1330
+ x: number_default(k, j)
1331
+ });
1332
+ } else (A || j) && M.push("translate(" + A + D + j + O);
1333
+ }
1334
+ function M(e, D, O, j) {
1335
+ e === D ? D && O.push(A(O) + "rotate(" + D + k) : (e - D > 180 ? D += 360 : D - e > 180 && (e += 360), j.push({
1336
+ i: O.push(A(O) + "rotate(", null, k) - 2,
1337
+ x: number_default(e, D)
1338
+ }));
1339
+ }
1340
+ function N(e, D, O, j) {
1341
+ e === D ? D && O.push(A(O) + "skewX(" + D + k) : j.push({
1342
+ i: O.push(A(O) + "skewX(", null, k) - 2,
1343
+ x: number_default(e, D)
1344
+ });
1345
+ }
1346
+ function P(e, D, O, k, j, M) {
1347
+ if (e !== O || D !== k) {
1348
+ var N = j.push(A(j) + "scale(", null, ",", null, ")");
1349
+ M.push({
1350
+ i: N - 4,
1351
+ x: number_default(e, O)
1352
+ }, {
1353
+ i: N - 2,
1354
+ x: number_default(D, k)
1355
+ });
1356
+ } else (O !== 1 || k !== 1) && j.push(A(j) + "scale(" + O + "," + k + ")");
1357
+ }
1358
+ return function(D, O) {
1359
+ var k = [], A = [];
1360
+ return D = e(D), O = e(O), j(D.translateX, D.translateY, O.translateX, O.translateY, k, A), M(D.rotate, O.rotate, k, A), N(D.skewX, O.skewX, k, A), P(D.scaleX, D.scaleY, O.scaleX, O.scaleY, k, A), D = O = null, function(e) {
1361
+ for (var D = -1, O = A.length, j; ++D < O;) k[(j = A[D]).i] = j.x(e);
1362
+ return k.join("");
1363
+ };
1364
+ };
1365
+ }
1366
+ var interpolateTransformCss = interpolateTransform(parseCss, "px, ", "px)", "deg)"), interpolateTransformSvg = interpolateTransform(parseSvg, ", ", ")", ")"), frame = 0, timeout = 0, interval = 0, pokeDelay = 1e3, taskHead, taskTail, clockLast = 0, clockNow = 0, clockSkew = 0, clock = typeof performance == "object" && performance.now ? performance : Date, setFrame = typeof window == "object" && window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : function(e) {
1367
+ setTimeout(e, 17);
1368
+ };
1369
+ function now() {
1370
+ return clockNow ||= (setFrame(clearNow), clock.now() + clockSkew);
1371
+ }
1372
+ function clearNow() {
1373
+ clockNow = 0;
1374
+ }
1375
+ function Timer() {
1376
+ this._call = this._time = this._next = null;
1377
+ }
1378
+ Timer.prototype = timer.prototype = {
1379
+ constructor: Timer,
1380
+ restart: function(e, D, O) {
1381
+ if (typeof e != "function") throw TypeError("callback is not a function");
1382
+ O = (O == null ? now() : +O) + (D == null ? 0 : +D), !this._next && taskTail !== this && (taskTail ? taskTail._next = this : taskHead = this, taskTail = this), this._call = e, this._time = O, sleep();
1383
+ },
1384
+ stop: function() {
1385
+ this._call && (this._call = null, this._time = Infinity, sleep());
1386
+ }
1387
+ };
1388
+ function timer(e, D, O) {
1389
+ var k = new Timer();
1390
+ return k.restart(e, D, O), k;
1391
+ }
1392
+ function timerFlush() {
1393
+ now(), ++frame;
1394
+ for (var e = taskHead, D; e;) (D = clockNow - e._time) >= 0 && e._call.call(void 0, D), e = e._next;
1395
+ --frame;
1396
+ }
1397
+ function wake() {
1398
+ clockNow = (clockLast = clock.now()) + clockSkew, frame = timeout = 0;
1399
+ try {
1400
+ timerFlush();
1401
+ } finally {
1402
+ frame = 0, nap(), clockNow = 0;
1403
+ }
1404
+ }
1405
+ function poke() {
1406
+ var e = clock.now(), D = e - clockLast;
1407
+ D > pokeDelay && (clockSkew -= D, clockLast = e);
1408
+ }
1409
+ function nap() {
1410
+ for (var e, D = taskHead, O, k = Infinity; D;) D._call ? (k > D._time && (k = D._time), e = D, D = D._next) : (O = D._next, D._next = null, D = e ? e._next = O : taskHead = O);
1411
+ taskTail = e, sleep(k);
1412
+ }
1413
+ function sleep(e) {
1414
+ frame || (timeout &&= clearTimeout(timeout), e - clockNow > 24 ? (e < Infinity && (timeout = setTimeout(wake, e - clock.now() - clockSkew)), interval &&= clearInterval(interval)) : (interval ||= (clockLast = clock.now(), setInterval(poke, pokeDelay)), frame = 1, setFrame(wake)));
1415
+ }
1416
+ function timeout_default(e, D, O) {
1417
+ var k = new Timer();
1418
+ return D = D == null ? 0 : +D, k.restart((O) => {
1419
+ k.stop(), e(O + D);
1420
+ }, D, O), k;
1421
+ }
1422
+ var emptyOn = dispatch_default("start", "end", "cancel", "interrupt"), emptyTween = [];
1423
+ function schedule_default(e, D, O, k, A, j) {
1424
+ var M = e.__transition;
1425
+ if (!M) e.__transition = {};
1426
+ else if (O in M) return;
1427
+ create(e, O, {
1428
+ name: D,
1429
+ index: k,
1430
+ group: A,
1431
+ on: emptyOn,
1432
+ tween: emptyTween,
1433
+ time: j.time,
1434
+ delay: j.delay,
1435
+ duration: j.duration,
1436
+ ease: j.ease,
1437
+ timer: null,
1438
+ state: 0
1439
+ });
1440
+ }
1441
+ function init(e, D) {
1442
+ var O = get(e, D);
1443
+ if (O.state > 0) throw Error("too late; already scheduled");
1444
+ return O;
1445
+ }
1446
+ function set(e, D) {
1447
+ var O = get(e, D);
1448
+ if (O.state > 3) throw Error("too late; already running");
1449
+ return O;
1450
+ }
1451
+ function get(e, D) {
1452
+ var O = e.__transition;
1453
+ if (!O || !(O = O[D])) throw Error("transition not found");
1454
+ return O;
1455
+ }
1456
+ function create(e, D, O) {
1457
+ var k = e.__transition, A;
1458
+ k[D] = O, O.timer = timer(j, 0, O.time);
1459
+ function j(e) {
1460
+ O.state = 1, O.timer.restart(M, O.delay, O.time), O.delay <= e && M(e - O.delay);
1461
+ }
1462
+ function M(j) {
1463
+ var F, I, L, R;
1464
+ if (O.state !== 1) return P();
1465
+ for (F in k) if (R = k[F], R.name === O.name) {
1466
+ if (R.state === 3) return timeout_default(M);
1467
+ R.state === 4 ? (R.state = 6, R.timer.stop(), R.on.call("interrupt", e, e.__data__, R.index, R.group), delete k[F]) : +F < D && (R.state = 6, R.timer.stop(), R.on.call("cancel", e, e.__data__, R.index, R.group), delete k[F]);
1468
+ }
1469
+ if (timeout_default(function() {
1470
+ O.state === 3 && (O.state = 4, O.timer.restart(N, O.delay, O.time), N(j));
1471
+ }), O.state = 2, O.on.call("start", e, e.__data__, O.index, O.group), O.state === 2) {
1472
+ for (O.state = 3, A = Array(L = O.tween.length), F = 0, I = -1; F < L; ++F) (R = O.tween[F].value.call(e, e.__data__, O.index, O.group)) && (A[++I] = R);
1473
+ A.length = I + 1;
1474
+ }
1475
+ }
1476
+ function N(D) {
1477
+ for (var k = D < O.duration ? O.ease.call(null, D / O.duration) : (O.timer.restart(P), O.state = 5, 1), j = -1, M = A.length; ++j < M;) A[j].call(e, k);
1478
+ O.state === 5 && (O.on.call("end", e, e.__data__, O.index, O.group), P());
1479
+ }
1480
+ function P() {
1481
+ for (var A in O.state = 6, O.timer.stop(), delete k[D], k) return;
1482
+ delete e.__transition;
1483
+ }
1484
+ }
1485
+ function interrupt_default$1(e, D) {
1486
+ var O = e.__transition, k, A, j = !0, M;
1487
+ if (O) {
1488
+ for (M in D = D == null ? null : D + "", O) {
1489
+ if ((k = O[M]).name !== D) {
1490
+ j = !1;
1491
+ continue;
1492
+ }
1493
+ A = k.state > 2 && k.state < 5, k.state = 6, k.timer.stop(), k.on.call(A ? "interrupt" : "cancel", e, e.__data__, k.index, k.group), delete O[M];
1494
+ }
1495
+ j && delete e.__transition;
1496
+ }
1497
+ }
1498
+ function interrupt_default(e) {
1499
+ return this.each(function() {
1500
+ interrupt_default$1(this, e);
1501
+ });
1502
+ }
1503
+ function tweenRemove(e, D) {
1504
+ var O, k;
1505
+ return function() {
1506
+ var A = set(this, e), j = A.tween;
1507
+ if (j !== O) {
1508
+ k = O = j;
1509
+ for (var M = 0, N = k.length; M < N; ++M) if (k[M].name === D) {
1510
+ k = k.slice(), k.splice(M, 1);
1511
+ break;
1512
+ }
1513
+ }
1514
+ A.tween = k;
1515
+ };
1516
+ }
1517
+ function tweenFunction(e, D, O) {
1518
+ var k, A;
1519
+ if (typeof O != "function") throw Error();
1520
+ return function() {
1521
+ var j = set(this, e), M = j.tween;
1522
+ if (M !== k) {
1523
+ A = (k = M).slice();
1524
+ for (var N = {
1525
+ name: D,
1526
+ value: O
1527
+ }, P = 0, F = A.length; P < F; ++P) if (A[P].name === D) {
1528
+ A[P] = N;
1529
+ break;
1530
+ }
1531
+ P === F && A.push(N);
1532
+ }
1533
+ j.tween = A;
1534
+ };
1535
+ }
1536
+ function tween_default(e, D) {
1537
+ var O = this._id;
1538
+ if (e += "", arguments.length < 2) {
1539
+ for (var k = get(this.node(), O).tween, A = 0, j = k.length, M; A < j; ++A) if ((M = k[A]).name === e) return M.value;
1540
+ return null;
1541
+ }
1542
+ return this.each((D == null ? tweenRemove : tweenFunction)(O, e, D));
1543
+ }
1544
+ function tweenValue(e, D, O) {
1545
+ var k = e._id;
1546
+ return e.each(function() {
1547
+ var e = set(this, k);
1548
+ (e.value ||= {})[D] = O.apply(this, arguments);
1549
+ }), function(e) {
1550
+ return get(e, k).value[D];
1551
+ };
1552
+ }
1553
+ function interpolate_default(e, D) {
1554
+ var O;
1555
+ return (typeof D == "number" ? number_default : D instanceof color ? rgb_default : (O = color(D)) ? (D = O, rgb_default) : string_default)(e, D);
1556
+ }
1557
+ function attrRemove(e) {
1558
+ return function() {
1559
+ this.removeAttribute(e);
1560
+ };
1561
+ }
1562
+ function attrRemoveNS(e) {
1563
+ return function() {
1564
+ this.removeAttributeNS(e.space, e.local);
1565
+ };
1566
+ }
1567
+ function attrConstant(e, D, O) {
1568
+ var k, A = O + "", j;
1569
+ return function() {
1570
+ var M = this.getAttribute(e);
1571
+ return M === A ? null : M === k ? j : j = D(k = M, O);
1572
+ };
1573
+ }
1574
+ function attrConstantNS(e, D, O) {
1575
+ var k, A = O + "", j;
1576
+ return function() {
1577
+ var M = this.getAttributeNS(e.space, e.local);
1578
+ return M === A ? null : M === k ? j : j = D(k = M, O);
1579
+ };
1580
+ }
1581
+ function attrFunction(e, D, O) {
1582
+ var k, A, j;
1583
+ return function() {
1584
+ var M, N = O(this), P;
1585
+ return N == null ? void this.removeAttribute(e) : (M = this.getAttribute(e), P = N + "", M === P ? null : M === k && P === A ? j : (A = P, j = D(k = M, N)));
1586
+ };
1587
+ }
1588
+ function attrFunctionNS(e, D, O) {
1589
+ var k, A, j;
1590
+ return function() {
1591
+ var M, N = O(this), P;
1592
+ return N == null ? void this.removeAttributeNS(e.space, e.local) : (M = this.getAttributeNS(e.space, e.local), P = N + "", M === P ? null : M === k && P === A ? j : (A = P, j = D(k = M, N)));
1593
+ };
1594
+ }
1595
+ function attr_default(e, D) {
1596
+ var O = namespace_default(e), k = O === "transform" ? interpolateTransformSvg : interpolate_default;
1597
+ return this.attrTween(e, typeof D == "function" ? (O.local ? attrFunctionNS : attrFunction)(O, k, tweenValue(this, "attr." + e, D)) : D == null ? (O.local ? attrRemoveNS : attrRemove)(O) : (O.local ? attrConstantNS : attrConstant)(O, k, D));
1598
+ }
1599
+ function attrInterpolate(e, D) {
1600
+ return function(O) {
1601
+ this.setAttribute(e, D.call(this, O));
1602
+ };
1603
+ }
1604
+ function attrInterpolateNS(e, D) {
1605
+ return function(O) {
1606
+ this.setAttributeNS(e.space, e.local, D.call(this, O));
1607
+ };
1608
+ }
1609
+ function attrTweenNS(e, D) {
1610
+ var O, k;
1611
+ function A() {
1612
+ var A = D.apply(this, arguments);
1613
+ return A !== k && (O = (k = A) && attrInterpolateNS(e, A)), O;
1614
+ }
1615
+ return A._value = D, A;
1616
+ }
1617
+ function attrTween(e, D) {
1618
+ var O, k;
1619
+ function A() {
1620
+ var A = D.apply(this, arguments);
1621
+ return A !== k && (O = (k = A) && attrInterpolate(e, A)), O;
1622
+ }
1623
+ return A._value = D, A;
1624
+ }
1625
+ function attrTween_default(e, D) {
1626
+ var O = "attr." + e;
1627
+ if (arguments.length < 2) return (O = this.tween(O)) && O._value;
1628
+ if (D == null) return this.tween(O, null);
1629
+ if (typeof D != "function") throw Error();
1630
+ var k = namespace_default(e);
1631
+ return this.tween(O, (k.local ? attrTweenNS : attrTween)(k, D));
1632
+ }
1633
+ function delayFunction(e, D) {
1634
+ return function() {
1635
+ init(this, e).delay = +D.apply(this, arguments);
1636
+ };
1637
+ }
1638
+ function delayConstant(e, D) {
1639
+ return D = +D, function() {
1640
+ init(this, e).delay = D;
1641
+ };
1642
+ }
1643
+ function delay_default(e) {
1644
+ var D = this._id;
1645
+ return arguments.length ? this.each((typeof e == "function" ? delayFunction : delayConstant)(D, e)) : get(this.node(), D).delay;
1646
+ }
1647
+ function durationFunction(e, D) {
1648
+ return function() {
1649
+ set(this, e).duration = +D.apply(this, arguments);
1650
+ };
1651
+ }
1652
+ function durationConstant(e, D) {
1653
+ return D = +D, function() {
1654
+ set(this, e).duration = D;
1655
+ };
1656
+ }
1657
+ function duration_default(e) {
1658
+ var D = this._id;
1659
+ return arguments.length ? this.each((typeof e == "function" ? durationFunction : durationConstant)(D, e)) : get(this.node(), D).duration;
1660
+ }
1661
+ function easeConstant(e, D) {
1662
+ if (typeof D != "function") throw Error();
1663
+ return function() {
1664
+ set(this, e).ease = D;
1665
+ };
1666
+ }
1667
+ function ease_default(e) {
1668
+ var D = this._id;
1669
+ return arguments.length ? this.each(easeConstant(D, e)) : get(this.node(), D).ease;
1670
+ }
1671
+ function easeVarying(e, D) {
1672
+ return function() {
1673
+ var O = D.apply(this, arguments);
1674
+ if (typeof O != "function") throw Error();
1675
+ set(this, e).ease = O;
1676
+ };
1677
+ }
1678
+ function easeVarying_default(e) {
1679
+ if (typeof e != "function") throw Error();
1680
+ return this.each(easeVarying(this._id, e));
1681
+ }
1682
+ function filter_default(e) {
1683
+ typeof e != "function" && (e = matcher_default(e));
1684
+ for (var D = this._groups, O = D.length, k = Array(O), A = 0; A < O; ++A) for (var j = D[A], M = j.length, N = k[A] = [], P, F = 0; F < M; ++F) (P = j[F]) && e.call(P, P.__data__, F, j) && N.push(P);
1685
+ return new Transition(k, this._parents, this._name, this._id);
1686
+ }
1687
+ function merge_default(e) {
1688
+ if (e._id !== this._id) throw Error();
1689
+ for (var D = this._groups, O = e._groups, k = D.length, A = O.length, j = Math.min(k, A), M = Array(k), N = 0; N < j; ++N) for (var P = D[N], F = O[N], I = P.length, L = M[N] = Array(I), R, z = 0; z < I; ++z) (R = P[z] || F[z]) && (L[z] = R);
1690
+ for (; N < k; ++N) M[N] = D[N];
1691
+ return new Transition(M, this._parents, this._name, this._id);
1692
+ }
1693
+ function start(e) {
1694
+ return (e + "").trim().split(/^|\s+/).every(function(e) {
1695
+ var D = e.indexOf(".");
1696
+ return D >= 0 && (e = e.slice(0, D)), !e || e === "start";
1697
+ });
1698
+ }
1699
+ function onFunction(e, D, O) {
1700
+ var k, A, j = start(D) ? init : set;
1701
+ return function() {
1702
+ var M = j(this, e), N = M.on;
1703
+ N !== k && (A = (k = N).copy()).on(D, O), M.on = A;
1704
+ };
1705
+ }
1706
+ function on_default(e, D) {
1707
+ var O = this._id;
1708
+ return arguments.length < 2 ? get(this.node(), O).on.on(e) : this.each(onFunction(O, e, D));
1709
+ }
1710
+ function removeFunction(e) {
1711
+ return function() {
1712
+ var D = this.parentNode;
1713
+ for (var O in this.__transition) if (+O !== e) return;
1714
+ D && D.removeChild(this);
1715
+ };
1716
+ }
1717
+ function remove_default() {
1718
+ return this.on("end.remove", removeFunction(this._id));
1719
+ }
1720
+ function select_default(e) {
1721
+ var D = this._name, O = this._id;
1722
+ typeof e != "function" && (e = selector_default(e));
1723
+ for (var k = this._groups, A = k.length, j = Array(A), M = 0; M < A; ++M) for (var N = k[M], P = N.length, F = j[M] = Array(P), I, L, R = 0; R < P; ++R) (I = N[R]) && (L = e.call(I, I.__data__, R, N)) && ("__data__" in I && (L.__data__ = I.__data__), F[R] = L, schedule_default(F[R], D, O, R, F, get(I, O)));
1724
+ return new Transition(j, this._parents, D, O);
1725
+ }
1726
+ function selectAll_default(e) {
1727
+ var D = this._name, O = this._id;
1728
+ typeof e != "function" && (e = selectorAll_default(e));
1729
+ for (var k = this._groups, A = k.length, j = [], M = [], N = 0; N < A; ++N) for (var P = k[N], F = P.length, I, L = 0; L < F; ++L) if (I = P[L]) {
1730
+ for (var R = e.call(I, I.__data__, L, P), z, B = get(I, O), V = 0, H = R.length; V < H; ++V) (z = R[V]) && schedule_default(z, D, O, V, R, B);
1731
+ j.push(R), M.push(I);
1732
+ }
1733
+ return new Transition(j, M, D, O);
1734
+ }
1735
+ var Selection = selection_default.prototype.constructor;
1736
+ function selection_default$1() {
1737
+ return new Selection(this._groups, this._parents);
1738
+ }
1739
+ function styleNull(e, D) {
1740
+ var O, k, A;
1741
+ return function() {
1742
+ var j = styleValue(this, e), M = (this.style.removeProperty(e), styleValue(this, e));
1743
+ return j === M ? null : j === O && M === k ? A : A = D(O = j, k = M);
1744
+ };
1745
+ }
1746
+ function styleRemove(e) {
1747
+ return function() {
1748
+ this.style.removeProperty(e);
1749
+ };
1750
+ }
1751
+ function styleConstant(e, D, O) {
1752
+ var k, A = O + "", j;
1753
+ return function() {
1754
+ var M = styleValue(this, e);
1755
+ return M === A ? null : M === k ? j : j = D(k = M, O);
1756
+ };
1757
+ }
1758
+ function styleFunction(e, D, O) {
1759
+ var k, A, j;
1760
+ return function() {
1761
+ var M = styleValue(this, e), N = O(this), P = N + "";
1762
+ return N ?? (P = N = (this.style.removeProperty(e), styleValue(this, e))), M === P ? null : M === k && P === A ? j : (A = P, j = D(k = M, N));
1763
+ };
1764
+ }
1765
+ function styleMaybeRemove(e, D) {
1766
+ var O, k, A, j = "style." + D, M = "end." + j, N;
1767
+ return function() {
1768
+ var P = set(this, e), F = P.on, I = P.value[j] == null ? N ||= styleRemove(D) : void 0;
1769
+ (F !== O || A !== I) && (k = (O = F).copy()).on(M, A = I), P.on = k;
1770
+ };
1771
+ }
1772
+ function style_default(e, D, O) {
1773
+ var k = (e += "") == "transform" ? interpolateTransformCss : interpolate_default;
1774
+ return D == null ? this.styleTween(e, styleNull(e, k)).on("end.style." + e, styleRemove(e)) : typeof D == "function" ? this.styleTween(e, styleFunction(e, k, tweenValue(this, "style." + e, D))).each(styleMaybeRemove(this._id, e)) : this.styleTween(e, styleConstant(e, k, D), O).on("end.style." + e, null);
1775
+ }
1776
+ function styleInterpolate(e, D, O) {
1777
+ return function(k) {
1778
+ this.style.setProperty(e, D.call(this, k), O);
1779
+ };
1780
+ }
1781
+ function styleTween(e, D, O) {
1782
+ var k, A;
1783
+ function j() {
1784
+ var j = D.apply(this, arguments);
1785
+ return j !== A && (k = (A = j) && styleInterpolate(e, j, O)), k;
1786
+ }
1787
+ return j._value = D, j;
1788
+ }
1789
+ function styleTween_default(e, D, O) {
1790
+ var k = "style." + (e += "");
1791
+ if (arguments.length < 2) return (k = this.tween(k)) && k._value;
1792
+ if (D == null) return this.tween(k, null);
1793
+ if (typeof D != "function") throw Error();
1794
+ return this.tween(k, styleTween(e, D, O ?? ""));
1795
+ }
1796
+ function textConstant(e) {
1797
+ return function() {
1798
+ this.textContent = e;
1799
+ };
1800
+ }
1801
+ function textFunction(e) {
1802
+ return function() {
1803
+ this.textContent = e(this) ?? "";
1804
+ };
1805
+ }
1806
+ function text_default(e) {
1807
+ return this.tween("text", typeof e == "function" ? textFunction(tweenValue(this, "text", e)) : textConstant(e == null ? "" : e + ""));
1808
+ }
1809
+ function textInterpolate(e) {
1810
+ return function(D) {
1811
+ this.textContent = e.call(this, D);
1812
+ };
1813
+ }
1814
+ function textTween(e) {
1815
+ var D, O;
1816
+ function k() {
1817
+ var k = e.apply(this, arguments);
1818
+ return k !== O && (D = (O = k) && textInterpolate(k)), D;
1819
+ }
1820
+ return k._value = e, k;
1821
+ }
1822
+ function textTween_default(e) {
1823
+ var D = "text";
1824
+ if (arguments.length < 1) return (D = this.tween(D)) && D._value;
1825
+ if (e == null) return this.tween(D, null);
1826
+ if (typeof e != "function") throw Error();
1827
+ return this.tween(D, textTween(e));
1828
+ }
1829
+ function transition_default$1() {
1830
+ for (var e = this._name, D = this._id, O = newId(), k = this._groups, A = k.length, j = 0; j < A; ++j) for (var M = k[j], N = M.length, P, F = 0; F < N; ++F) if (P = M[F]) {
1831
+ var I = get(P, D);
1832
+ schedule_default(P, e, O, F, M, {
1833
+ time: I.time + I.delay + I.duration,
1834
+ delay: 0,
1835
+ duration: I.duration,
1836
+ ease: I.ease
1837
+ });
1838
+ }
1839
+ return new Transition(k, this._parents, e, O);
1840
+ }
1841
+ function end_default() {
1842
+ var e, D, O = this, k = O._id, A = O.size();
1843
+ return new Promise(function(j, M) {
1844
+ var N = { value: M }, P = { value: function() {
1845
+ --A === 0 && j();
1846
+ } };
1847
+ O.each(function() {
1848
+ var O = set(this, k), A = O.on;
1849
+ A !== e && (D = (e = A).copy(), D._.cancel.push(N), D._.interrupt.push(N), D._.end.push(P)), O.on = D;
1850
+ }), A === 0 && j();
1851
+ });
1852
+ }
1853
+ var id = 0;
1854
+ function Transition(e, D, O, k) {
1855
+ this._groups = e, this._parents = D, this._name = O, this._id = k;
1856
+ }
1857
+ function transition(e) {
1858
+ return selection_default().transition(e);
1859
+ }
1860
+ function newId() {
1861
+ return ++id;
1862
+ }
1863
+ var selection_prototype = selection_default.prototype;
1864
+ Transition.prototype = transition.prototype = {
1865
+ constructor: Transition,
1866
+ select: select_default,
1867
+ selectAll: selectAll_default,
1868
+ selectChild: selection_prototype.selectChild,
1869
+ selectChildren: selection_prototype.selectChildren,
1870
+ filter: filter_default,
1871
+ merge: merge_default,
1872
+ selection: selection_default$1,
1873
+ transition: transition_default$1,
1874
+ call: selection_prototype.call,
1875
+ nodes: selection_prototype.nodes,
1876
+ node: selection_prototype.node,
1877
+ size: selection_prototype.size,
1878
+ empty: selection_prototype.empty,
1879
+ each: selection_prototype.each,
1880
+ on: on_default,
1881
+ attr: attr_default,
1882
+ attrTween: attrTween_default,
1883
+ style: style_default,
1884
+ styleTween: styleTween_default,
1885
+ text: text_default,
1886
+ textTween: textTween_default,
1887
+ remove: remove_default,
1888
+ tween: tween_default,
1889
+ delay: delay_default,
1890
+ duration: duration_default,
1891
+ ease: ease_default,
1892
+ easeVarying: easeVarying_default,
1893
+ end: end_default,
1894
+ [Symbol.iterator]: selection_prototype[Symbol.iterator]
1895
+ };
1896
+ function cubicInOut(e) {
1897
+ return ((e *= 2) <= 1 ? e * e * e : (e -= 2) * e * e + 2) / 2;
1898
+ }
1899
+ var defaultTiming = {
1900
+ time: null,
1901
+ delay: 0,
1902
+ duration: 250,
1903
+ ease: cubicInOut
1904
+ };
1905
+ function inherit(e, D) {
1906
+ for (var O; !(O = e.__transition) || !(O = O[D]);) if (!(e = e.parentNode)) throw Error(`transition ${D} not found`);
1907
+ return O;
1908
+ }
1909
+ function transition_default(e) {
1910
+ var D, O;
1911
+ e instanceof Transition ? (D = e._id, e = e._name) : (D = newId(), (O = defaultTiming).time = now(), e = e == null ? null : e + "");
1912
+ for (var k = this._groups, A = k.length, j = 0; j < A; ++j) for (var M = k[j], N = M.length, P, F = 0; F < N; ++F) (P = M[F]) && schedule_default(P, e, D, F, M, O || inherit(P, D));
1913
+ return new Transition(k, this._parents, e, D);
1914
+ }
1915
+ selection_default.prototype.interrupt = interrupt_default, selection_default.prototype.transition = transition_default;
1916
+ var { abs, max, min } = Math;
1917
+ ["w", "e"].map(type), ["n", "s"].map(type), [
1918
+ "n",
1919
+ "w",
1920
+ "e",
1921
+ "s",
1922
+ "nw",
1923
+ "ne",
1924
+ "sw",
1925
+ "se"
1926
+ ].map(type);
1927
+ function type(e) {
1928
+ return { type: e };
1929
+ }
1930
+ function Transform(e, D, O) {
1931
+ this.k = e, this.x = D, this.y = O;
1932
+ }
1933
+ Transform.prototype = {
1934
+ constructor: Transform,
1935
+ scale: function(e) {
1936
+ return e === 1 ? this : new Transform(this.k * e, this.x, this.y);
1937
+ },
1938
+ translate: function(e, D) {
1939
+ return e === 0 & D === 0 ? this : new Transform(this.k, this.x + this.k * e, this.y + this.k * D);
1940
+ },
1941
+ apply: function(e) {
1942
+ return [e[0] * this.k + this.x, e[1] * this.k + this.y];
1943
+ },
1944
+ applyX: function(e) {
1945
+ return e * this.k + this.x;
1946
+ },
1947
+ applyY: function(e) {
1948
+ return e * this.k + this.y;
1949
+ },
1950
+ invert: function(e) {
1951
+ return [(e[0] - this.x) / this.k, (e[1] - this.y) / this.k];
1952
+ },
1953
+ invertX: function(e) {
1954
+ return (e - this.x) / this.k;
1955
+ },
1956
+ invertY: function(e) {
1957
+ return (e - this.y) / this.k;
1958
+ },
1959
+ rescaleX: function(e) {
1960
+ return e.copy().domain(e.range().map(this.invertX, this).map(e.invert, e));
1961
+ },
1962
+ rescaleY: function(e) {
1963
+ return e.copy().domain(e.range().map(this.invertY, this).map(e.invert, e));
1964
+ },
1965
+ toString: function() {
1966
+ return "translate(" + this.x + "," + this.y + ") scale(" + this.k + ")";
1967
+ }
1968
+ };
1969
+ var identity = new Transform(1, 0, 0);
1970
+ transform.prototype = Transform.prototype;
1971
+ function transform(e) {
1972
+ for (; !e.__zoom;) if (!(e = e.parentNode)) return identity;
1973
+ return e.__zoom;
1974
+ }
1975
+ export { setLogLevel as _, nogamma as a, Rgb as c, define_default as d, extend as f, log as g, __name as h, hue as i, color as l, __export as m, number_default as n, constant_default as o, select_default$1 as p, rgb_default as r, Color as s, string_default as t, rgbConvert as u, require_dayjs_min as v };