@carbon/ai-chat-components 0.7.0 → 0.7.1

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 (542) hide show
  1. package/custom-elements.json +1 -1
  2. package/es/components/code-snippet/src/codemirror/base-setup.js +3 -3
  3. package/es/components/code-snippet/src/codemirror/codemirror-runtime.d.ts +1 -1
  4. package/es/components/code-snippet/src/codemirror/codemirror-runtime.js +1 -1
  5. package/es/components/code-snippet/src/codemirror/content-sync.d.ts +1 -1
  6. package/es/components/code-snippet/src/codemirror/editor-manager.d.ts +1 -1
  7. package/es/components/code-snippet/src/codemirror/editor-manager.js +1 -1
  8. package/es/components/code-snippet/src/codemirror/language-controller.d.ts +1 -1
  9. package/es/components/code-snippet/src/codemirror/theme.js +1 -1
  10. package/es-custom/components/card/index.d.ts +11 -0
  11. package/es-custom/components/card/index.js +11 -0
  12. package/es-custom/components/card/index.js.map +1 -0
  13. package/es-custom/components/card/src/card-footer.d.ts +43 -0
  14. package/es-custom/components/card/src/card-footer.js +141 -0
  15. package/es-custom/components/card/src/card-footer.js.map +1 -0
  16. package/es-custom/components/card/src/card-footer.scss.js +13 -0
  17. package/es-custom/components/card/src/card-footer.scss.js.map +1 -0
  18. package/es-custom/components/card/src/card-steps.d.ts +28 -0
  19. package/es-custom/components/card/src/card-steps.js +91 -0
  20. package/es-custom/components/card/src/card-steps.js.map +1 -0
  21. package/es-custom/components/card/src/card-steps.scss.js +13 -0
  22. package/es-custom/components/card/src/card-steps.scss.js.map +1 -0
  23. package/es-custom/components/card/src/card.d.ts +27 -0
  24. package/es-custom/components/card/src/card.js +65 -0
  25. package/es-custom/components/card/src/card.js.map +1 -0
  26. package/es-custom/components/card/src/card.scss.js +13 -0
  27. package/es-custom/components/card/src/card.scss.js.map +1 -0
  28. package/es-custom/components/chain-of-thought/defs.d.ts +54 -0
  29. package/es-custom/components/chain-of-thought/defs.js +38 -0
  30. package/es-custom/components/chain-of-thought/defs.js.map +1 -0
  31. package/es-custom/components/chain-of-thought/index.d.ts +10 -0
  32. package/es-custom/components/chain-of-thought/index.js +13 -0
  33. package/es-custom/components/chain-of-thought/index.js.map +1 -0
  34. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.d.ts +43 -0
  35. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.js +351 -0
  36. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.js.map +1 -0
  37. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.scss.js +13 -0
  38. package/es-custom/components/chain-of-thought/src/chain-of-thought-step.scss.js.map +1 -0
  39. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.d.ts +33 -0
  40. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.js +107 -0
  41. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.js.map +1 -0
  42. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.scss.js +13 -0
  43. package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.scss.js.map +1 -0
  44. package/es-custom/components/chain-of-thought/src/chain-of-thought.d.ts +41 -0
  45. package/es-custom/components/chain-of-thought/src/chain-of-thought.js +132 -0
  46. package/es-custom/components/chain-of-thought/src/chain-of-thought.js.map +1 -0
  47. package/es-custom/components/chain-of-thought/src/chain-of-thought.scss.js +13 -0
  48. package/es-custom/components/chain-of-thought/src/chain-of-thought.scss.js.map +1 -0
  49. package/es-custom/components/chain-of-thought/src/tool-call-data.d.ts +33 -0
  50. package/es-custom/components/chain-of-thought/src/tool-call-data.js +179 -0
  51. package/es-custom/components/chain-of-thought/src/tool-call-data.js.map +1 -0
  52. package/es-custom/components/chain-of-thought/src/tool-call-data.scss.js +13 -0
  53. package/es-custom/components/chain-of-thought/src/tool-call-data.scss.js.map +1 -0
  54. package/es-custom/components/chat-button/defs.d.ts +25 -0
  55. package/es-custom/components/chat-button/defs.js +36 -0
  56. package/es-custom/components/chat-button/defs.js.map +1 -0
  57. package/es-custom/components/chat-button/index.d.ts +9 -0
  58. package/es-custom/components/chat-button/index.js +9 -0
  59. package/es-custom/components/chat-button/index.js.map +1 -0
  60. package/es-custom/components/chat-button/src/chat-button.d.ts +40 -0
  61. package/es-custom/components/chat-button/src/chat-button.js +78 -0
  62. package/es-custom/components/chat-button/src/chat-button.js.map +1 -0
  63. package/es-custom/components/chat-button/src/chat-button.scss.js +13 -0
  64. package/es-custom/components/chat-button/src/chat-button.scss.js.map +1 -0
  65. package/es-custom/components/code-snippet/index.d.ts +3 -0
  66. package/es-custom/components/code-snippet/index.js +10 -0
  67. package/es-custom/components/code-snippet/index.js.map +1 -0
  68. package/es-custom/components/code-snippet/src/code-snippet-card.d.ts +63 -0
  69. package/es-custom/components/code-snippet/src/code-snippet-card.js +186 -0
  70. package/es-custom/components/code-snippet/src/code-snippet-card.js.map +1 -0
  71. package/es-custom/components/code-snippet/src/code-snippet.d.ts +461 -0
  72. package/es-custom/components/code-snippet/src/code-snippet.js +678 -0
  73. package/es-custom/components/code-snippet/src/code-snippet.js.map +1 -0
  74. package/es-custom/components/code-snippet/src/code-snippet.scss.js +13 -0
  75. package/es-custom/components/code-snippet/src/code-snippet.scss.js.map +1 -0
  76. package/es-custom/components/code-snippet/src/codemirror/base-setup.d.ts +12 -0
  77. package/es-custom/components/code-snippet/src/codemirror/base-setup.js +65 -0
  78. package/es-custom/components/code-snippet/src/codemirror/base-setup.js.map +1 -0
  79. package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.d.ts +12 -0
  80. package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.js +36 -0
  81. package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.js.map +1 -0
  82. package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.d.ts +7 -0
  83. package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.js +13 -0
  84. package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.js.map +1 -0
  85. package/es-custom/components/code-snippet/src/codemirror/content-sync.d.ts +12 -0
  86. package/es-custom/components/code-snippet/src/codemirror/content-sync.js +72 -0
  87. package/es-custom/components/code-snippet/src/codemirror/content-sync.js.map +1 -0
  88. package/es-custom/components/code-snippet/src/codemirror/editor-manager.d.ts +28 -0
  89. package/es-custom/components/code-snippet/src/codemirror/editor-manager.js +75 -0
  90. package/es-custom/components/code-snippet/src/codemirror/editor-manager.js.map +1 -0
  91. package/es-custom/components/code-snippet/src/codemirror/language-controller.d.ts +38 -0
  92. package/es-custom/components/code-snippet/src/codemirror/language-controller.js +220 -0
  93. package/es-custom/components/code-snippet/src/codemirror/language-controller.js.map +1 -0
  94. package/es-custom/components/code-snippet/src/codemirror/language-data.d.ts +6 -0
  95. package/es-custom/components/code-snippet/src/codemirror/language-data.js +1043 -0
  96. package/es-custom/components/code-snippet/src/codemirror/language-data.js.map +1 -0
  97. package/es-custom/components/code-snippet/src/codemirror/language-utils.d.ts +79 -0
  98. package/es-custom/components/code-snippet/src/codemirror/language-utils.js +219 -0
  99. package/es-custom/components/code-snippet/src/codemirror/language-utils.js.map +1 -0
  100. package/es-custom/components/code-snippet/src/codemirror/marker-utils.d.ts +123 -0
  101. package/es-custom/components/code-snippet/src/codemirror/marker-utils.js +183 -0
  102. package/es-custom/components/code-snippet/src/codemirror/marker-utils.js.map +1 -0
  103. package/es-custom/components/code-snippet/src/codemirror/theme.d.ts +54 -0
  104. package/es-custom/components/code-snippet/src/codemirror/theme.js +320 -0
  105. package/es-custom/components/code-snippet/src/codemirror/theme.js.map +1 -0
  106. package/es-custom/components/code-snippet/src/dom-utils.d.ts +24 -0
  107. package/es-custom/components/code-snippet/src/dom-utils.js +63 -0
  108. package/es-custom/components/code-snippet/src/dom-utils.js.map +1 -0
  109. package/es-custom/components/code-snippet/src/formatters.d.ts +4 -0
  110. package/es-custom/components/code-snippet/src/formatters.js +19 -0
  111. package/es-custom/components/code-snippet/src/formatters.js.map +1 -0
  112. package/es-custom/components/code-snippet/src/layout-utils.d.ts +22 -0
  113. package/es-custom/components/code-snippet/src/layout-utils.js +63 -0
  114. package/es-custom/components/code-snippet/src/layout-utils.js.map +1 -0
  115. package/es-custom/components/code-snippet/src/streaming-manager.d.ts +24 -0
  116. package/es-custom/components/code-snippet/src/streaming-manager.js +120 -0
  117. package/es-custom/components/code-snippet/src/streaming-manager.js.map +1 -0
  118. package/es-custom/components/feedback/index.d.ts +4 -0
  119. package/es-custom/components/feedback/index.js +10 -0
  120. package/es-custom/components/feedback/index.js.map +1 -0
  121. package/es-custom/components/feedback/src/feedback-buttons.d.ts +63 -0
  122. package/es-custom/components/feedback/src/feedback-buttons.js +113 -0
  123. package/es-custom/components/feedback/src/feedback-buttons.js.map +1 -0
  124. package/es-custom/components/feedback/src/feedback-buttons.scss.js +13 -0
  125. package/es-custom/components/feedback/src/feedback-buttons.scss.js.map +1 -0
  126. package/es-custom/components/feedback/src/feedback-buttons.template.d.ts +4 -0
  127. package/es-custom/components/feedback/src/feedback-buttons.template.js +79 -0
  128. package/es-custom/components/feedback/src/feedback-buttons.template.js.map +1 -0
  129. package/es-custom/components/feedback/src/feedback.d.ts +113 -0
  130. package/es-custom/components/feedback/src/feedback.js +195 -0
  131. package/es-custom/components/feedback/src/feedback.js.map +1 -0
  132. package/es-custom/components/feedback/src/feedback.scss.js +13 -0
  133. package/es-custom/components/feedback/src/feedback.scss.js.map +1 -0
  134. package/es-custom/components/feedback/src/feedback.template.d.ts +12 -0
  135. package/es-custom/components/feedback/src/feedback.template.js +115 -0
  136. package/es-custom/components/feedback/src/feedback.template.js.map +1 -0
  137. package/es-custom/components/markdown/index.d.ts +2 -0
  138. package/es-custom/components/markdown/index.js +9 -0
  139. package/es-custom/components/markdown/index.js.map +1 -0
  140. package/es-custom/components/markdown/src/markdown-renderer.d.ts +66 -0
  141. package/es-custom/components/markdown/src/markdown-renderer.js +359 -0
  142. package/es-custom/components/markdown/src/markdown-renderer.js.map +1 -0
  143. package/es-custom/components/markdown/src/markdown-token-tree.d.ts +32 -0
  144. package/es-custom/components/markdown/src/markdown-token-tree.js +180 -0
  145. package/es-custom/components/markdown/src/markdown-token-tree.js.map +1 -0
  146. package/es-custom/components/markdown/src/markdown.d.ts +72 -0
  147. package/es-custom/components/markdown/src/markdown.js +342 -0
  148. package/es-custom/components/markdown/src/markdown.js.map +1 -0
  149. package/es-custom/components/markdown/src/markdown.scss.js +13 -0
  150. package/es-custom/components/markdown/src/markdown.scss.js.map +1 -0
  151. package/es-custom/components/markdown/src/markdown.template.d.ts +6 -0
  152. package/es-custom/components/markdown/src/markdown.template.js +29 -0
  153. package/es-custom/components/markdown/src/markdown.template.js.map +1 -0
  154. package/es-custom/components/markdown/src/plugins/markdown-it-attrs.d.ts +7 -0
  155. package/es-custom/components/markdown/src/plugins/markdown-it-attrs.js +84 -0
  156. package/es-custom/components/markdown/src/plugins/markdown-it-attrs.js.map +1 -0
  157. package/es-custom/components/markdown/src/plugins/markdown-it-highlight.d.ts +7 -0
  158. package/es-custom/components/markdown/src/plugins/markdown-it-highlight.js +59 -0
  159. package/es-custom/components/markdown/src/plugins/markdown-it-highlight.js.map +1 -0
  160. package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.d.ts +12 -0
  161. package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js +73 -0
  162. package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js.map +1 -0
  163. package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.d.ts +26 -0
  164. package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.js +330 -0
  165. package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.js.map +1 -0
  166. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.d.ts +6 -0
  167. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.js +63 -0
  168. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.js.map +1 -0
  169. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.d.ts +6 -0
  170. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.js +43 -0
  171. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.js.map +1 -0
  172. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.d.ts +5 -0
  173. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.js +55 -0
  174. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.js.map +1 -0
  175. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.d.ts +19 -0
  176. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.js +210 -0
  177. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.js.map +1 -0
  178. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.d.ts +13 -0
  179. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.js +156 -0
  180. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.js.map +1 -0
  181. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.d.ts +13 -0
  182. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.js +216 -0
  183. package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.js.map +1 -0
  184. package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.d.ts +34 -0
  185. package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.js +8 -0
  186. package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.js.map +1 -0
  187. package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.d.ts +25 -0
  188. package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.js +62 -0
  189. package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.js.map +1 -0
  190. package/es-custom/components/markdown/src/utils/html-helpers.d.ts +2 -0
  191. package/es-custom/components/markdown/src/utils/html-helpers.js +204 -0
  192. package/es-custom/components/markdown/src/utils/html-helpers.js.map +1 -0
  193. package/es-custom/components/markdown/src/utils/table-helpers.d.ts +31 -0
  194. package/es-custom/components/markdown/src/utils/table-helpers.js +106 -0
  195. package/es-custom/components/markdown/src/utils/table-helpers.js.map +1 -0
  196. package/es-custom/components/markdown/src/utils.d.ts +8 -0
  197. package/es-custom/components/markdown/src/utils.js +31 -0
  198. package/es-custom/components/markdown/src/utils.js.map +1 -0
  199. package/es-custom/components/processing/index.d.ts +1 -0
  200. package/es-custom/components/processing/index.js +9 -0
  201. package/es-custom/components/processing/index.js.map +1 -0
  202. package/es-custom/components/processing/src/processing.d.ts +16 -0
  203. package/es-custom/components/processing/src/processing.js +59 -0
  204. package/es-custom/components/processing/src/processing.js.map +1 -0
  205. package/es-custom/components/processing/src/processing.scss.js +13 -0
  206. package/es-custom/components/processing/src/processing.scss.js.map +1 -0
  207. package/es-custom/components/reasoning-steps/index.d.ts +4 -0
  208. package/es-custom/components/reasoning-steps/index.js +11 -0
  209. package/es-custom/components/reasoning-steps/index.js.map +1 -0
  210. package/es-custom/components/reasoning-steps/src/reasoning-step.d.ts +33 -0
  211. package/es-custom/components/reasoning-steps/src/reasoning-step.js +251 -0
  212. package/es-custom/components/reasoning-steps/src/reasoning-step.js.map +1 -0
  213. package/es-custom/components/reasoning-steps/src/reasoning-step.scss.js +13 -0
  214. package/es-custom/components/reasoning-steps/src/reasoning-step.scss.js.map +1 -0
  215. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.d.ts +36 -0
  216. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.js +81 -0
  217. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.js.map +1 -0
  218. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.scss.js +13 -0
  219. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.scss.js.map +1 -0
  220. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.d.ts +3 -0
  221. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.js +43 -0
  222. package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.js.map +1 -0
  223. package/es-custom/components/reasoning-steps/src/reasoning-steps.d.ts +19 -0
  224. package/es-custom/components/reasoning-steps/src/reasoning-steps.js +112 -0
  225. package/es-custom/components/reasoning-steps/src/reasoning-steps.js.map +1 -0
  226. package/es-custom/components/reasoning-steps/src/reasoning-steps.scss.js +13 -0
  227. package/es-custom/components/reasoning-steps/src/reasoning-steps.scss.js.map +1 -0
  228. package/es-custom/components/table/index.d.ts +3 -0
  229. package/es-custom/components/table/index.js +9 -0
  230. package/es-custom/components/table/index.js.map +1 -0
  231. package/es-custom/components/table/src/table-loader.d.ts +4 -0
  232. package/es-custom/components/table/src/table-loader.js +28 -0
  233. package/es-custom/components/table/src/table-loader.js.map +1 -0
  234. package/es-custom/components/table/src/table-pagination.template.d.ts +27 -0
  235. package/es-custom/components/table/src/table-pagination.template.js +55 -0
  236. package/es-custom/components/table/src/table-pagination.template.js.map +1 -0
  237. package/es-custom/components/table/src/table-runtime.d.ts +2 -0
  238. package/es-custom/components/table/src/table-runtime.js +10 -0
  239. package/es-custom/components/table/src/table-runtime.js.map +1 -0
  240. package/es-custom/components/table/src/table-skeleton.template.d.ts +6 -0
  241. package/es-custom/components/table/src/table-skeleton.template.js +34 -0
  242. package/es-custom/components/table/src/table-skeleton.template.js.map +1 -0
  243. package/es-custom/components/table/src/table.d.ts +184 -0
  244. package/es-custom/components/table/src/table.js +543 -0
  245. package/es-custom/components/table/src/table.js.map +1 -0
  246. package/es-custom/components/table/src/table.scss.js +13 -0
  247. package/es-custom/components/table/src/table.scss.js.map +1 -0
  248. package/es-custom/components/table/src/table.template.d.ts +10 -0
  249. package/es-custom/components/table/src/table.template.js +89 -0
  250. package/es-custom/components/table/src/table.template.js.map +1 -0
  251. package/es-custom/components/table/src/types.d.ts +13 -0
  252. package/es-custom/components/table/src/types.js +8 -0
  253. package/es-custom/components/table/src/types.js.map +1 -0
  254. package/es-custom/components/toolbar/index.d.ts +1 -0
  255. package/es-custom/components/toolbar/index.js +9 -0
  256. package/es-custom/components/toolbar/index.js.map +1 -0
  257. package/es-custom/components/toolbar/src/toolbar.d.ts +38 -0
  258. package/es-custom/components/toolbar/src/toolbar.js +191 -0
  259. package/es-custom/components/toolbar/src/toolbar.js.map +1 -0
  260. package/es-custom/components/toolbar/src/toolbar.scss.js +13 -0
  261. package/es-custom/components/toolbar/src/toolbar.scss.js.map +1 -0
  262. package/es-custom/components/workspace-shell/index.d.ts +4 -0
  263. package/es-custom/components/workspace-shell/index.js +12 -0
  264. package/es-custom/components/workspace-shell/index.js.map +1 -0
  265. package/es-custom/components/workspace-shell/src/workspace-shell-body.d.ts +17 -0
  266. package/es-custom/components/workspace-shell/src/workspace-shell-body.js +50 -0
  267. package/es-custom/components/workspace-shell/src/workspace-shell-body.js.map +1 -0
  268. package/es-custom/components/workspace-shell/src/workspace-shell-footer.d.ts +40 -0
  269. package/es-custom/components/workspace-shell/src/workspace-shell-footer.js +144 -0
  270. package/es-custom/components/workspace-shell/src/workspace-shell-footer.js.map +1 -0
  271. package/es-custom/components/workspace-shell/src/workspace-shell-footer.scss.js +13 -0
  272. package/es-custom/components/workspace-shell/src/workspace-shell-footer.scss.js.map +1 -0
  273. package/es-custom/components/workspace-shell/src/workspace-shell-header.d.ts +28 -0
  274. package/es-custom/components/workspace-shell/src/workspace-shell-header.js +78 -0
  275. package/es-custom/components/workspace-shell/src/workspace-shell-header.js.map +1 -0
  276. package/es-custom/components/workspace-shell/src/workspace-shell-header.scss.js +13 -0
  277. package/es-custom/components/workspace-shell/src/workspace-shell-header.scss.js.map +1 -0
  278. package/es-custom/components/workspace-shell/src/workspace-shell.d.ts +19 -0
  279. package/es-custom/components/workspace-shell/src/workspace-shell.js +56 -0
  280. package/es-custom/components/workspace-shell/src/workspace-shell.js.map +1 -0
  281. package/es-custom/components/workspace-shell/src/workspace-shell.scss.js +13 -0
  282. package/es-custom/components/workspace-shell/src/workspace-shell.scss.js.map +1 -0
  283. package/es-custom/globals/decorators/carbon-element.d.ts +37 -0
  284. package/es-custom/globals/decorators/carbon-element.js +68 -0
  285. package/es-custom/globals/decorators/carbon-element.js.map +1 -0
  286. package/es-custom/globals/decorators/index.d.ts +1 -0
  287. package/es-custom/globals/decorators/index.js +9 -0
  288. package/es-custom/globals/decorators/index.js.map +1 -0
  289. package/es-custom/globals/settings.d.ts +2 -0
  290. package/es-custom/globals/settings.js +20 -0
  291. package/es-custom/globals/settings.js.map +1 -0
  292. package/es-custom/globals/utils/uuid.d.ts +5 -0
  293. package/es-custom/globals/utils/uuid.js +32 -0
  294. package/es-custom/globals/utils/uuid.js.map +1 -0
  295. package/es-custom/node_modules/@carbon/utilities/es/documentLang/documentLang.js +9 -0
  296. package/es-custom/node_modules/@carbon/utilities/es/documentLang/documentLang.js.map +1 -0
  297. package/es-custom/node_modules/@carbon/utilities/es/overflowHandler/overflowHandler.js +11 -0
  298. package/es-custom/node_modules/@carbon/utilities/es/overflowHandler/overflowHandler.js.map +1 -0
  299. package/es-custom/react/ai-label.d.ts +4 -0
  300. package/es-custom/react/ai-label.js +28 -0
  301. package/es-custom/react/ai-label.js.map +1 -0
  302. package/es-custom/react/button.d.ts +6 -0
  303. package/es-custom/react/button.js +29 -0
  304. package/es-custom/react/button.js.map +1 -0
  305. package/es-custom/react/card.d.ts +9 -0
  306. package/es-custom/react/card.js +43 -0
  307. package/es-custom/react/card.js.map +1 -0
  308. package/es-custom/react/chain-of-thought-step.d.ts +4 -0
  309. package/es-custom/react/chain-of-thought-step.js +32 -0
  310. package/es-custom/react/chain-of-thought-step.js.map +1 -0
  311. package/es-custom/react/chain-of-thought-toggle.d.ts +6 -0
  312. package/es-custom/react/chain-of-thought-toggle.js +31 -0
  313. package/es-custom/react/chain-of-thought-toggle.js.map +1 -0
  314. package/es-custom/react/chain-of-thought.d.ts +7 -0
  315. package/es-custom/react/chain-of-thought.js +33 -0
  316. package/es-custom/react/chain-of-thought.js.map +1 -0
  317. package/es-custom/react/chat-button.d.ts +13 -0
  318. package/es-custom/react/chat-button.js +30 -0
  319. package/es-custom/react/chat-button.js.map +1 -0
  320. package/es-custom/react/code-snippet-card.d.ts +4 -0
  321. package/es-custom/react/code-snippet-card.js +31 -0
  322. package/es-custom/react/code-snippet-card.js.map +1 -0
  323. package/es-custom/react/code-snippet.d.ts +4 -0
  324. package/es-custom/react/code-snippet.js +31 -0
  325. package/es-custom/react/code-snippet.js.map +1 -0
  326. package/es-custom/react/content-switcher.d.ts +7 -0
  327. package/es-custom/react/content-switcher.js +37 -0
  328. package/es-custom/react/content-switcher.js.map +1 -0
  329. package/es-custom/react/feedback-buttons.d.ts +4 -0
  330. package/es-custom/react/feedback-buttons.js +31 -0
  331. package/es-custom/react/feedback-buttons.js.map +1 -0
  332. package/es-custom/react/feedback.d.ts +6 -0
  333. package/es-custom/react/feedback.js +32 -0
  334. package/es-custom/react/feedback.js.map +1 -0
  335. package/es-custom/react/icon-button.d.ts +4 -0
  336. package/es-custom/react/icon-button.js +28 -0
  337. package/es-custom/react/icon-button.js.map +1 -0
  338. package/es-custom/react/icon.d.ts +4 -0
  339. package/es-custom/react/icon.js +28 -0
  340. package/es-custom/react/icon.js.map +1 -0
  341. package/es-custom/react/inline-notification.d.ts +4 -0
  342. package/es-custom/react/inline-notification.js +28 -0
  343. package/es-custom/react/inline-notification.js.map +1 -0
  344. package/es-custom/react/markdown.d.ts +4 -0
  345. package/es-custom/react/markdown.js +28 -0
  346. package/es-custom/react/markdown.js.map +1 -0
  347. package/es-custom/react/overflow-menu.d.ts +9 -0
  348. package/es-custom/react/overflow-menu.js +40 -0
  349. package/es-custom/react/overflow-menu.js.map +1 -0
  350. package/es-custom/react/processing.d.ts +4 -0
  351. package/es-custom/react/processing.js +28 -0
  352. package/es-custom/react/processing.js.map +1 -0
  353. package/es-custom/react/reasoning-step.d.ts +4 -0
  354. package/es-custom/react/reasoning-step.js +32 -0
  355. package/es-custom/react/reasoning-step.js.map +1 -0
  356. package/es-custom/react/reasoning-steps-toggle.d.ts +6 -0
  357. package/es-custom/react/reasoning-steps-toggle.js +31 -0
  358. package/es-custom/react/reasoning-steps-toggle.js.map +1 -0
  359. package/es-custom/react/reasoning-steps.d.ts +4 -0
  360. package/es-custom/react/reasoning-steps.js +28 -0
  361. package/es-custom/react/reasoning-steps.js.map +1 -0
  362. package/es-custom/react/tag.d.ts +4 -0
  363. package/es-custom/react/tag.js +28 -0
  364. package/es-custom/react/tag.js.map +1 -0
  365. package/es-custom/react/tile.d.ts +7 -0
  366. package/es-custom/react/tile.js +34 -0
  367. package/es-custom/react/tile.js.map +1 -0
  368. package/es-custom/react/tool-call-data.d.ts +4 -0
  369. package/es-custom/react/tool-call-data.js +28 -0
  370. package/es-custom/react/tool-call-data.js.map +1 -0
  371. package/es-custom/react/toolbar.d.ts +4 -0
  372. package/es-custom/react/toolbar.js +28 -0
  373. package/es-custom/react/toolbar.js.map +1 -0
  374. package/es-custom/react/utils/withWebComponentBridge.d.ts +15 -0
  375. package/es-custom/react/utils/withWebComponentBridge.js +95 -0
  376. package/es-custom/react/utils/withWebComponentBridge.js.map +1 -0
  377. package/es-custom/react/workspace-shell.d.ts +11 -0
  378. package/es-custom/react/workspace-shell.js +49 -0
  379. package/es-custom/react/workspace-shell.js.map +1 -0
  380. package/es-custom/testing/load-all-lazy-deps.d.ts +10 -0
  381. package/es-custom/testing/load-all-lazy-deps.js +30 -0
  382. package/es-custom/testing/load-all-lazy-deps.js.map +1 -0
  383. package/package.json +8 -6
  384. package/dist/16-C9Ph5740.js +0 -91
  385. package/dist/16-Dw0Ci4Fd.js +0 -91
  386. package/dist/16-FH37w-8T.js +0 -91
  387. package/dist/apl-ugs9-gp6.js +0 -91
  388. package/dist/asciiarmor-BsIYfA6P.js +0 -91
  389. package/dist/asn1-HkF5z2_O.js +0 -91
  390. package/dist/asterisk-CAIjKZq6.js +0 -91
  391. package/dist/button-Bc3tNCYN.js +0 -157
  392. package/dist/button-skeleton-DH50p4bH.js +0 -131
  393. package/dist/carbon-element-C38isbCs.js +0 -91
  394. package/dist/card.min.js +0 -193
  395. package/dist/chain-of-thought.min.js +0 -294
  396. package/dist/chat-button.min.js +0 -107
  397. package/dist/checkbox-skeleton-CS3inOnf.js +0 -166
  398. package/dist/class-map-BE4cOc2X.js +0 -128
  399. package/dist/clike-BIFB3b_k.js +0 -91
  400. package/dist/clojure-CXNiCqqB.js +0 -91
  401. package/dist/cmake-CR9NkLsk.js +0 -91
  402. package/dist/cobol-Ck90O_9v.js +0 -91
  403. package/dist/code-snippet.min.js +0 -91
  404. package/dist/codemirror-runtime-D8qZsrKE.js +0 -173
  405. package/dist/coffeescript-C0nvD2I-.js +0 -91
  406. package/dist/collection-helpers-BqatNkHh.js +0 -91
  407. package/dist/commonlisp-BROP4IME.js +0 -91
  408. package/dist/crystal-D6K96_U-.js +0 -91
  409. package/dist/css-CdH_tvvW.js +0 -91
  410. package/dist/cypher-CtHiEXsa.js +0 -91
  411. package/dist/d-Dcs18F9P.js +0 -91
  412. package/dist/diff-Bp64yuxL.js +0 -91
  413. package/dist/dockerfile-1DOwDLks.js +0 -91
  414. package/dist/dtd-DBKuh-AW.js +0 -91
  415. package/dist/dylan-ZUYgifRI.js +0 -91
  416. package/dist/ebnf-CEelJcGq.js +0 -91
  417. package/dist/ecl-CphVX9Cq.js +0 -91
  418. package/dist/eiffel-BQPneqZH.js +0 -91
  419. package/dist/elm-DSPAgqOt.js +0 -91
  420. package/dist/erlang-D_rMo9WA.js +0 -91
  421. package/dist/factor-CMTQjKbR.js +0 -91
  422. package/dist/fcl-BX3Rw6-t.js +0 -91
  423. package/dist/feedback.min.js +0 -281
  424. package/dist/forth-BGhjMNd3.js +0 -91
  425. package/dist/fortran-AEBjaYMh.js +0 -91
  426. package/dist/gas-DZXAjJGb.js +0 -91
  427. package/dist/gherkin-DxJx7fVg.js +0 -91
  428. package/dist/groovy-dfLbXlDy.js +0 -91
  429. package/dist/haskell-DyZ9y283.js +0 -91
  430. package/dist/haxe-D47ScCJn.js +0 -91
  431. package/dist/http-CQ5YdFwi.js +0 -91
  432. package/dist/icon-button-jLtiwRb4.js +0 -143
  433. package/dist/icon-loader-BKTEuybf.js +0 -101
  434. package/dist/idl-DMLd56tu.js +0 -91
  435. package/dist/if-defined-Dk7gHH6I.js +0 -96
  436. package/dist/index--CctdwCC.js +0 -91
  437. package/dist/index--ktPsmev.js +0 -168
  438. package/dist/index-BHiWR-3B.js +0 -91
  439. package/dist/index-BI8bnAEd.js +0 -91
  440. package/dist/index-BbGF94cg.js +0 -91
  441. package/dist/index-BnQBLEPx.js +0 -91
  442. package/dist/index-BsUuLdXD.js +0 -91
  443. package/dist/index-C2xfmTPp.js +0 -91
  444. package/dist/index-C3BN0MYy.js +0 -91
  445. package/dist/index-CD4di8Cf.js +0 -91
  446. package/dist/index-CVyUt3LQ.js +0 -91
  447. package/dist/index-Cg7m4sg1.js +0 -91
  448. package/dist/index-ClimwzxW.js +0 -91
  449. package/dist/index-CrevYuI-.js +0 -91
  450. package/dist/index-D5kcnwm2.js +0 -91
  451. package/dist/index-DCbIO0Hl.js +0 -91
  452. package/dist/index-Db-BDibx.js +0 -91
  453. package/dist/index-DmpHBiKi.js +0 -91
  454. package/dist/index-DzPjFlOn.js +0 -91
  455. package/dist/index-MgVf_8OP.js +0 -91
  456. package/dist/index-WHfhssUV.js +0 -91
  457. package/dist/index-rdaURAlB.js +0 -91
  458. package/dist/index-tFrMu4B_.js +0 -278
  459. package/dist/index-yLnmvqXN.js +0 -91
  460. package/dist/javascript-CB_5CYW7.js +0 -91
  461. package/dist/julia-DmOIk9mc.js +0 -91
  462. package/dist/livescript-BkgLC0lL.js +0 -91
  463. package/dist/loading-icon-CmnM4I_H.js +0 -106
  464. package/dist/lua-CWM_r9JC.js +0 -91
  465. package/dist/markdown.min.js +0 -298
  466. package/dist/mathematica-BSatVfC1.js +0 -91
  467. package/dist/mbox-4am1R8hd.js +0 -91
  468. package/dist/mirc-pdtTGW9l.js +0 -91
  469. package/dist/mllike-C0YFsE1U.js +0 -91
  470. package/dist/modelica-DVTWSHR-.js +0 -91
  471. package/dist/mscgen-ByAgrjGx.js +0 -91
  472. package/dist/mumps-X97p0_h_.js +0 -91
  473. package/dist/nginx-CqUadVPT.js +0 -91
  474. package/dist/nsis-Urp7BrWk.js +0 -91
  475. package/dist/ntriples-CToxeTsT.js +0 -91
  476. package/dist/octave-Dc4mpp8A.js +0 -91
  477. package/dist/oz-DX2Pk_mI.js +0 -91
  478. package/dist/pascal-B9GL_nqz.js +0 -91
  479. package/dist/perl-BvZFpXKD.js +0 -91
  480. package/dist/pig-BxFxDHBk.js +0 -91
  481. package/dist/powershell-CwCLRM7O.js +0 -91
  482. package/dist/processing.min.js +0 -105
  483. package/dist/properties-3nFD-Vnh.js +0 -91
  484. package/dist/protobuf-RqEyuWlw.js +0 -91
  485. package/dist/pug-1L6dEUb3.js +0 -91
  486. package/dist/puppet-C-gxR1ON.js +0 -91
  487. package/dist/python-BSbm1-vO.js +0 -91
  488. package/dist/q-4yAbTbi2.js +0 -91
  489. package/dist/r-BxfoMXlJ.js +0 -91
  490. package/dist/reasoning-steps.min.js +0 -202
  491. package/dist/rpm-DOp6MTEb.js +0 -91
  492. package/dist/ruby-DD6QCAKT.js +0 -91
  493. package/dist/sas-Cb-4sFOe.js +0 -91
  494. package/dist/scheme-CZsCl8E_.js +0 -91
  495. package/dist/settings-e2aItLYn.js +0 -99
  496. package/dist/shell-Bba6ETw_.js +0 -91
  497. package/dist/sieve-DZz1QovM.js +0 -91
  498. package/dist/simple-mode-DAyX7kcU.js +0 -91
  499. package/dist/smalltalk-BVigbKw-.js +0 -91
  500. package/dist/solr-BRh8QRgo.js +0 -91
  501. package/dist/sparql-DPq9GGqu.js +0 -91
  502. package/dist/spreadsheet-DWXWohNi.js +0 -91
  503. package/dist/sql-HgNux1Fi.js +0 -91
  504. package/dist/state-Bv4FM_9B.js +0 -96
  505. package/dist/stex-DB306cTl.js +0 -91
  506. package/dist/stylus-BVbE3BhF.js +0 -91
  507. package/dist/swift-k2z0otOi.js +0 -91
  508. package/dist/sync-D3qEZKNY.js +0 -91
  509. package/dist/table-runtime-Q-ak_IZE.js +0 -510
  510. package/dist/table.min.js +0 -91
  511. package/dist/tcl-BJwoeXra.js +0 -91
  512. package/dist/text-input-BlCqTf_p.js +0 -158
  513. package/dist/textile-9DAvWy-Y.js +0 -91
  514. package/dist/throttle-Bst9TagJ.js +0 -91
  515. package/dist/tiddlywiki-CDJdAycW.js +0 -91
  516. package/dist/tiki-Dlg5DFIR.js +0 -91
  517. package/dist/toml-DGqt7oU6.js +0 -91
  518. package/dist/toolbar.min.js +0 -178
  519. package/dist/troff-xJv1Y_X_.js +0 -91
  520. package/dist/ttcn-cfg-CrKiCUlI.js +0 -91
  521. package/dist/ttcn-dBogkyiy.js +0 -91
  522. package/dist/turtle-qtDt5E0f.js +0 -91
  523. package/dist/vb-h5NatM2n.js +0 -91
  524. package/dist/vbscript-BnXXn72l.js +0 -91
  525. package/dist/velocity-C_ZqzMiT.js +0 -91
  526. package/dist/verilog-s8oM517K.js +0 -91
  527. package/dist/vhdl-BgZd0MBH.js +0 -91
  528. package/dist/webidl-CDRn4bGa.js +0 -91
  529. package/dist/workspace-shell.min.js +0 -157
  530. package/dist/xquery-DTfjYCD7.js +0 -91
  531. package/dist/yacas-DxV9-gAO.js +0 -91
  532. package/dist/z80-PFwavMao.js +0 -91
  533. package/es/node_modules/@codemirror/autocomplete/dist/index.js +0 -258
  534. package/es/node_modules/@codemirror/autocomplete/dist/index.js.map +0 -1
  535. package/es/node_modules/@codemirror/commands/dist/index.js +0 -1140
  536. package/es/node_modules/@codemirror/commands/dist/index.js.map +0 -1
  537. package/es/node_modules/@codemirror/lint/dist/index.js +0 -636
  538. package/es/node_modules/@codemirror/lint/dist/index.js.map +0 -1
  539. package/es/node_modules/@lezer/common/dist/index.js +0 -253
  540. package/es/node_modules/@lezer/common/dist/index.js.map +0 -1
  541. package/es/node_modules/crelt/index.js +0 -37
  542. package/es/node_modules/crelt/index.js.map +0 -1
@@ -1,128 +0,0 @@
1
- /**
2
- * @license
3
- *
4
- * Copyright IBM Corp. 2025
5
- *
6
- * This source code is licensed under the Apache-2.0 license found in the
7
- * LICENSE file in the root directory of this source tree.
8
- */
9
- /**
10
- * @license
11
- *
12
- * This bundle contains the following third-party dependencies:
13
- *
14
- * Also refer to the following links for the license of other third-party dependencies:
15
- *
16
- * https://www.npmjs.com/package/tslib
17
- * https://www.npmjs.com/package/lit
18
- * https://www.npmjs.com/package/markdown-it
19
- * https://www.npmjs.com/package/lodash-es
20
- * https://www.npmjs.com/package/dompurify
21
- * https://www.npmjs.com/package/@codemirror/state
22
- * https://www.npmjs.com/package/csv-stringify
23
- * https://www.npmjs.com/package/lit-html
24
- * https://www.npmjs.com/package/@carbon/web-components
25
- * https://www.npmjs.com/package/codemirror
26
- * https://www.npmjs.com/package/@codemirror/language
27
- * https://www.npmjs.com/package/@codemirror/lang-cpp
28
- * https://www.npmjs.com/package/@codemirror/lang-go
29
- * https://www.npmjs.com/package/@codemirror/lang-html
30
- * https://www.npmjs.com/package/@codemirror/lang-javascript
31
- * https://www.npmjs.com/package/@codemirror/lang-sql
32
- * https://www.npmjs.com/package/@codemirror/lang-css
33
- * https://www.npmjs.com/package/@codemirror/lang-java
34
- * https://www.npmjs.com/package/@codemirror/lang-jinja
35
- * https://www.npmjs.com/package/@codemirror/lang-json
36
- * https://www.npmjs.com/package/@codemirror/lang-less
37
- * https://www.npmjs.com/package/@codemirror/lang-php
38
- * https://www.npmjs.com/package/@codemirror/lang-sass
39
- * https://www.npmjs.com/package/@codemirror/lang-markdown
40
- * https://www.npmjs.com/package/@codemirror/lang-rust
41
- * https://www.npmjs.com/package/@codemirror/lang-wast
42
- * https://www.npmjs.com/package/@codemirror/lang-liquid
43
- * https://www.npmjs.com/package/@codemirror/legacy-modes
44
- * https://www.npmjs.com/package/@codemirror/lang-yaml
45
- * https://www.npmjs.com/package/@codemirror/lang-xml
46
- * https://www.npmjs.com/package/@codemirror/lang-python
47
- * https://www.npmjs.com/package/@codemirror/lang-angular
48
- * https://www.npmjs.com/package/@codemirror/lang-vue
49
- * https://www.npmjs.com/package/@codemirror/autocomplete
50
- * https://www.npmjs.com/package/@codemirror/view
51
- * https://www.npmjs.com/package/@codemirror/lint
52
- * https://www.npmjs.com/package/@codemirror/commands
53
- * https://www.npmjs.com/package/@lezer/highlight
54
- * https://www.npmjs.com/package/@carbon/icons
55
- * https://www.npmjs.com/package/@carbon/utilities
56
- * https://www.npmjs.com/package/@carbon/icon-helpers
57
- * https://www.npmjs.com/package/program-language-detector
58
- * https://www.npmjs.com/package/lit-element
59
- * https://www.npmjs.com/package/@lit/reactive-element
60
- * https://www.npmjs.com/package/@marijn/find-cluster-break
61
- * https://www.npmjs.com/package/@codemirror/search
62
- * https://www.npmjs.com/package/crelt
63
- * https://www.npmjs.com/package/w3c-keyname
64
- * https://www.npmjs.com/package/style-mod
65
- * https://www.npmjs.com/package/@lezer/common
66
- * https://www.npmjs.com/package/@lezer/cpp
67
- * https://www.npmjs.com/package/@lezer/html
68
- * https://www.npmjs.com/package/@lezer/go
69
- * https://www.npmjs.com/package/@lezer/javascript
70
- * https://www.npmjs.com/package/@lezer/java
71
- * https://www.npmjs.com/package/@lezer/lr
72
- * https://www.npmjs.com/package/@lezer/json
73
- * https://www.npmjs.com/package/@lezer/php
74
- * https://www.npmjs.com/package/@lezer/markdown
75
- * https://www.npmjs.com/package/@lezer/sass
76
- * https://www.npmjs.com/package/@lezer/rust
77
- * https://www.npmjs.com/package/@lezer/xml
78
- * https://www.npmjs.com/package/@lezer/yaml
79
- * https://www.npmjs.com/package/@lezer/python
80
- * https://www.npmjs.com/package/@lezer/css
81
- * https://www.npmjs.com/package/@internationalized/number
82
- * https://www.npmjs.com/package/linkify-it
83
- * https://www.npmjs.com/package/mdurl
84
- * https://www.npmjs.com/package/punycode.js
85
- * https://www.npmjs.com/package/uc.micro
86
- * https://www.npmjs.com/package/@floating-ui/dom
87
- * https://www.npmjs.com/package/@floating-ui/core
88
- * https://www.npmjs.com/package/@floating-ui/utils
89
- */
90
-
91
- function t(t,e,s,i){var r,n=arguments.length,o=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,s):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,s,i);else for(var h=t.length-1;h>=0;h--)(r=t[h])&&(o=(n<3?r(o):n>3?r(e,s,o):r(e,s))||o);return n>3&&o&&Object.defineProperty(e,s,o),o}"function"==typeof SuppressedError&&SuppressedError;
92
- /**
93
- * @license
94
- * Copyright 2019 Google LLC
95
- * SPDX-License-Identifier: BSD-3-Clause
96
- */
97
- const e=globalThis,s=e.ShadowRoot&&(void 0===e.ShadyCSS||e.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,i=Symbol(),r=new WeakMap;let n=class{constructor(t,e,s){if(this._$cssResult$=!0,s!==i)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(s&&void 0===t){const s=void 0!==e&&1===e.length;s&&(t=r.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),s&&r.set(e,t))}return t}toString(){return this.cssText}};const o=(t,...e)=>{const s=1===t.length?t[0]:e.reduce((e,s,i)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(s)+t[i+1],t[0]);return new n(s,t,i)},h=s?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return(t=>new n("string"==typeof t?t:t+"",void 0,i))(e)})(t):t,{is:a,defineProperty:c,getOwnPropertyDescriptor:l,getOwnPropertyNames:d,getOwnPropertySymbols:p,getPrototypeOf:u}=Object,$=globalThis,_=$.trustedTypes,f=_?_.emptyScript:"",A=$.reactiveElementPolyfillSupport,y=(t,e)=>t,m={toAttribute(t,e){switch(e){case Boolean:t=t?f:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let s=t;switch(e){case Boolean:s=null!==t;break;case Number:s=null===t?null:Number(t);break;case Object:case Array:try{s=JSON.parse(t)}catch(t){s=null}}return s}},g=(t,e)=>!a(t,e),v={attribute:!0,type:String,converter:m,reflect:!1,useDefault:!1,hasChanged:g};
98
- /**
99
- * @license
100
- * Copyright 2017 Google LLC
101
- * SPDX-License-Identifier: BSD-3-Clause
102
- */Symbol.metadata??=Symbol("metadata"),$.litPropertyMetadata??=new WeakMap;let E=class extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=v){if(e.state&&(e.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((e=Object.create(e)).wrapped=!0),this.elementProperties.set(t,e),!e.noAccessor){const s=Symbol(),i=this.getPropertyDescriptor(t,s,e);void 0!==i&&c(this.prototype,t,i)}}static getPropertyDescriptor(t,e,s){const{get:i,set:r}=l(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:i,set(e){const n=i?.call(this);r?.call(this,e),this.requestUpdate(t,n,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??v}static _$Ei(){if(this.hasOwnProperty(y("elementProperties")))return;const t=u(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(y("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(y("properties"))){const t=this.properties,e=[...d(t),...p(t)];for(const s of e)this.createProperty(s,t[s])}const t=this[Symbol.metadata];if(null!==t){const e=litPropertyMetadata.get(t);if(void 0!==e)for(const[t,s]of e)this.elementProperties.set(t,s)}this._$Eh=new Map;for(const[t,e]of this.elementProperties){const s=this._$Eu(t,e);void 0!==s&&this._$Eh.set(s,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const s=new Set(t.flat(1/0).reverse());for(const t of s)e.unshift(h(t))}else void 0!==t&&e.push(h(t));return e}static _$Eu(t,e){const s=e.attribute;return!1===s?void 0:"string"==typeof s?s:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise(t=>this.enableUpdating=t),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach(t=>t(this))}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){const t=new Map,e=this.constructor.elementProperties;for(const s of e.keys())this.hasOwnProperty(s)&&(t.set(s,this[s]),delete this[s]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return((t,i)=>{if(s)t.adoptedStyleSheets=i.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet);else for(const s of i){const i=document.createElement("style"),r=e.litNonce;void 0!==r&&i.setAttribute("nonce",r),i.textContent=s.cssText,t.appendChild(i)}})(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach(t=>t.hostConnected?.())}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach(t=>t.hostDisconnected?.())}attributeChangedCallback(t,e,s){this._$AK(t,s)}_$ET(t,e){const s=this.constructor.elementProperties.get(t),i=this.constructor._$Eu(t,s);if(void 0!==i&&!0===s.reflect){const r=(void 0!==s.converter?.toAttribute?s.converter:m).toAttribute(e,s.type);this._$Em=t,null==r?this.removeAttribute(i):this.setAttribute(i,r),this._$Em=null}}_$AK(t,e){const s=this.constructor,i=s._$Eh.get(t);if(void 0!==i&&this._$Em!==i){const t=s.getPropertyOptions(i),r="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:m;this._$Em=i;const n=r.fromAttribute(e,t.type);this[i]=n??this._$Ej?.get(i)??n,this._$Em=null}}requestUpdate(t,e,s){if(void 0!==t){const i=this.constructor,r=this[t];if(s??=i.getPropertyOptions(t),!((s.hasChanged??g)(r,e)||s.useDefault&&s.reflect&&r===this._$Ej?.get(t)&&!this.hasAttribute(i._$Eu(t,s))))return;this.C(t,e,s)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:s,reflect:i,wrapped:r},n){s&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,n??e??this[t]),!0!==r||void 0!==n)||(this._$AL.has(t)||(this.hasUpdated||s||(e=void 0),this._$AL.set(t,e)),!0===i&&this._$Em!==t&&(this._$Eq??=new Set).add(t))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,e]of this._$Ep)this[t]=e;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[e,s]of t){const{wrapped:t}=s,i=this[e];!0!==t||this._$AL.has(e)||void 0===i||this.C(e,void 0,s,i)}}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$EO?.forEach(t=>t.hostUpdate?.()),this.update(e)):this._$EM()}catch(e){throw t=!1,this._$EM(),e}t&&this._$AE(e)}willUpdate(t){}_$AE(t){this._$EO?.forEach(t=>t.hostUpdated?.()),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&=this._$Eq.forEach(t=>this._$ET(t,this[t])),this._$EM()}updated(t){}firstUpdated(t){}};E.elementStyles=[],E.shadowRootOptions={mode:"open"},E[y("elementProperties")]=new Map,E[y("finalized")]=new Map,A?.({ReactiveElement:E}),($.reactiveElementVersions??=[]).push("2.1.1");
103
- /**
104
- * @license
105
- * Copyright 2017 Google LLC
106
- * SPDX-License-Identifier: BSD-3-Clause
107
- */
108
- const b={attribute:!0,type:String,converter:m,reflect:!1,hasChanged:g},S=(t=b,e,s)=>{const{kind:i,metadata:r}=s;let n=globalThis.litPropertyMetadata.get(r);if(void 0===n&&globalThis.litPropertyMetadata.set(r,n=new Map),"setter"===i&&((t=Object.create(t)).wrapped=!0),n.set(s.name,t),"accessor"===i){const{name:i}=s;return{set(s){const r=e.get.call(this);e.set.call(this,s),this.requestUpdate(i,r,t)},init(e){return void 0!==e&&this.C(i,void 0,t,e),e}}}if("setter"===i){const{name:i}=s;return function(s){const r=this[i];e.call(this,s),this.requestUpdate(i,r,t)}}throw Error("Unsupported decorator location: "+i)};function w(t){return(e,s)=>"object"==typeof s?S(t,e,s):((t,e,s)=>{const i=e.hasOwnProperty(s);return e.constructor.createProperty(s,t),i?Object.getOwnPropertyDescriptor(e,s):void 0})(t,e,s)}
109
- /**
110
- * @license
111
- * Copyright 2017 Google LLC
112
- * SPDX-License-Identifier: BSD-3-Clause
113
- */const C=globalThis,P=C.trustedTypes,U=P?P.createPolicy("lit-html",{createHTML:t=>t}):void 0,O="$lit$",x=`lit$${Math.random().toFixed(9).slice(2)}$`,T="?"+x,M=`<${T}>`,H=document,R=()=>H.createComment(""),N=t=>null===t||"object"!=typeof t&&"function"!=typeof t,j=Array.isArray,k="[ \t\n\f\r]",D=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,L=/-->/g,I=/>/g,z=RegExp(`>|${k}(?:([^\\s"'>=/]+)(${k}*=${k}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),B=/'/g,q=/"/g,W=/^(?:script|style|textarea|title)$/i,V=(t=>(e,...s)=>({_$litType$:t,strings:e,values:s}))(1),J=Symbol.for("lit-noChange"),K=Symbol.for("lit-nothing"),Z=new WeakMap,F=H.createTreeWalker(H,129);function G(t,e){if(!j(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==U?U.createHTML(e):e}const Q=(t,e)=>{const s=t.length-1,i=[];let r,n=2===e?"<svg>":3===e?"<math>":"",o=D;for(let e=0;e<s;e++){const s=t[e];let h,a,c=-1,l=0;for(;l<s.length&&(o.lastIndex=l,a=o.exec(s),null!==a);)l=o.lastIndex,o===D?"!--"===a[1]?o=L:void 0!==a[1]?o=I:void 0!==a[2]?(W.test(a[2])&&(r=RegExp("</"+a[2],"g")),o=z):void 0!==a[3]&&(o=z):o===z?">"===a[0]?(o=r??D,c=-1):void 0===a[1]?c=-2:(c=o.lastIndex-a[2].length,h=a[1],o=void 0===a[3]?z:'"'===a[3]?q:B):o===q||o===B?o=z:o===L||o===I?o=D:(o=z,r=void 0);const d=o===z&&t[e+1].startsWith("/>")?" ":"";n+=o===D?s+M:c>=0?(i.push(h),s.slice(0,c)+O+s.slice(c)+x+d):s+x+(-2===c?e:d)}return[G(t,n+(t[s]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),i]};class X{constructor({strings:t,_$litType$:e},s){let i;this.parts=[];let r=0,n=0;const o=t.length-1,h=this.parts,[a,c]=Q(t,e);if(this.el=X.createElement(a,s),F.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(i=F.nextNode())&&h.length<o;){if(1===i.nodeType){if(i.hasAttributes())for(const t of i.getAttributeNames())if(t.endsWith(O)){const e=c[n++],s=i.getAttribute(t).split(x),o=/([.?@])?(.*)/.exec(e);h.push({type:1,index:r,name:o[2],strings:s,ctor:"."===o[1]?it:"?"===o[1]?rt:"@"===o[1]?nt:st}),i.removeAttribute(t)}else t.startsWith(x)&&(h.push({type:6,index:r}),i.removeAttribute(t));if(W.test(i.tagName)){const t=i.textContent.split(x),e=t.length-1;if(e>0){i.textContent=P?P.emptyScript:"";for(let s=0;s<e;s++)i.append(t[s],R()),F.nextNode(),h.push({type:2,index:++r});i.append(t[e],R())}}}else if(8===i.nodeType)if(i.data===T)h.push({type:2,index:r});else{let t=-1;for(;-1!==(t=i.data.indexOf(x,t+1));)h.push({type:7,index:r}),t+=x.length-1}r++}}static createElement(t,e){const s=H.createElement("template");return s.innerHTML=t,s}}function Y(t,e,s=t,i){if(e===J)return e;let r=void 0!==i?s._$Co?.[i]:s._$Cl;const n=N(e)?void 0:e._$litDirective$;return r?.constructor!==n&&(r?._$AO?.(!1),void 0===n?r=void 0:(r=new n(t),r._$AT(t,s,i)),void 0!==i?(s._$Co??=[])[i]=r:s._$Cl=r),void 0!==r&&(e=Y(t,r._$AS(t,e.values),r,i)),e}class tt{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:s}=this._$AD,i=(t?.creationScope??H).importNode(e,!0);F.currentNode=i;let r=F.nextNode(),n=0,o=0,h=s[0];for(;void 0!==h;){if(n===h.index){let e;2===h.type?e=new et(r,r.nextSibling,this,t):1===h.type?e=new h.ctor(r,h.name,h.strings,this,t):6===h.type&&(e=new ot(r,this,t)),this._$AV.push(e),h=s[++o]}n!==h?.index&&(r=F.nextNode(),n++)}return F.currentNode=H,i}p(t){let e=0;for(const s of this._$AV)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,e),e+=s.strings.length-2):s._$AI(t[e])),e++}}class et{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,s,i){this.type=2,this._$AH=K,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=s,this.options=i,this._$Cv=i?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t?.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=Y(this,t,e),N(t)?t===K||null==t||""===t?(this._$AH!==K&&this._$AR(),this._$AH=K):t!==this._$AH&&t!==J&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>j(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==K&&N(this._$AH)?this._$AA.nextSibling.data=t:this.T(H.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:s}=t,i="number"==typeof s?this._$AC(t):(void 0===s.el&&(s.el=X.createElement(G(s.h,s.h[0]),this.options)),s);if(this._$AH?._$AD===i)this._$AH.p(e);else{const t=new tt(i,this),s=t.u(this.options);t.p(e),this.T(s),this._$AH=t}}_$AC(t){let e=Z.get(t.strings);return void 0===e&&Z.set(t.strings,e=new X(t)),e}k(t){j(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let s,i=0;for(const r of t)i===e.length?e.push(s=new et(this.O(R()),this.O(R()),this,this.options)):s=e[i],s._$AI(r),i++;i<e.length&&(this._$AR(s&&s._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class st{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,s,i,r){this.type=1,this._$AH=K,this._$AN=void 0,this.element=t,this.name=e,this._$AM=i,this.options=r,s.length>2||""!==s[0]||""!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=K}_$AI(t,e=this,s,i){const r=this.strings;let n=!1;if(void 0===r)t=Y(this,t,e,0),n=!N(t)||t!==this._$AH&&t!==J,n&&(this._$AH=t);else{const i=t;let o,h;for(t=r[0],o=0;o<r.length-1;o++)h=Y(this,i[s+o],e,o),h===J&&(h=this._$AH[o]),n||=!N(h)||h!==this._$AH[o],h===K?t=K:t!==K&&(t+=(h??"")+r[o+1]),this._$AH[o]=h}n&&!i&&this.j(t)}j(t){t===K?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class it extends st{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===K?void 0:t}}class rt extends st{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==K)}}class nt extends st{constructor(t,e,s,i,r){super(t,e,s,i,r),this.type=5}_$AI(t,e=this){if((t=Y(this,t,e,0)??K)===J)return;const s=this._$AH,i=t===K&&s!==K||t.capture!==s.capture||t.once!==s.once||t.passive!==s.passive,r=t!==K&&(s===K||i);i&&this.element.removeEventListener(this.name,this,s),r&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class ot{constructor(t,e,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){Y(this,t)}}const ht={I:et},at=C.litHtmlPolyfillSupport;at?.(X,et),(C.litHtmlVersions??=[]).push("3.3.1");const ct=globalThis;
114
- /**
115
- * @license
116
- * Copyright 2017 Google LLC
117
- * SPDX-License-Identifier: BSD-3-Clause
118
- */let lt=class extends E{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=((t,e,s)=>{const i=s?.renderBefore??e;let r=i._$litPart$;if(void 0===r){const t=s?.renderBefore??null;i._$litPart$=r=new et(e.insertBefore(R(),t),t,void 0,s??{})}return r._$AI(t),r})(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return J}};lt._$litElement$=!0,lt.finalized=!0,ct.litElementHydrateSupport?.({LitElement:lt});const dt=ct.litElementPolyfillSupport;dt?.({LitElement:lt}),(ct.litElementVersions??=[]).push("4.2.1");function pt(t){return e=>"function"==typeof e?((t,e)=>{try{customElements.define(t,e)}catch(t){}return e})(t,e):((t,e)=>{const{kind:s,elements:i}=e;return{kind:s,elements:i,finisher(e){try{customElements.define(t,e)}catch(t){}}}})(t,e)}
119
- /**
120
- * @license
121
- * Copyright 2017 Google LLC
122
- * SPDX-License-Identifier: BSD-3-Clause
123
- */const ut={ATTRIBUTE:1,CHILD:2},$t=t=>(...e)=>({_$litDirective$:t,values:e});class _t{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,s){this._$Ct=t,this._$AM=e,this._$Ci=s}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}
124
- /**
125
- * @license
126
- * Copyright 2018 Google LLC
127
- * SPDX-License-Identifier: BSD-3-Clause
128
- */const ft=$t(class extends _t{constructor(t){if(super(t),t.type!==ut.ATTRIBUTE||"class"!==t.name||t.strings?.length>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return" "+Object.keys(t).filter(e=>t[e]).join(" ")+" "}update(t,[e]){if(void 0===this.st){this.st=new Set,void 0!==t.strings&&(this.nt=new Set(t.strings.join(" ").split(/\s/).filter(t=>""!==t)));for(const t in e)e[t]&&!this.nt?.has(t)&&this.st.add(t);return this.render(e)}const s=t.element.classList;for(const t of this.st)t in e||(s.remove(t),this.st.delete(t));for(const t in e){const i=!!e[t];i===this.st.has(t)||this.nt?.has(t)||(i?(s.add(t),this.st.add(t)):(s.remove(t),this.st.delete(t)))}return J}});export{K as E,J as T,ht as Z,t as _,lt as a,_t as b,pt as c,$t as d,ft as e,o as i,w as n,ut as t,V as x};
@@ -1,91 +0,0 @@
1
- /**
2
- * @license
3
- *
4
- * Copyright IBM Corp. 2025
5
- *
6
- * This source code is licensed under the Apache-2.0 license found in the
7
- * LICENSE file in the root directory of this source tree.
8
- */
9
- /**
10
- * @license
11
- *
12
- * This bundle contains the following third-party dependencies:
13
- *
14
- * Also refer to the following links for the license of other third-party dependencies:
15
- *
16
- * https://www.npmjs.com/package/tslib
17
- * https://www.npmjs.com/package/lit
18
- * https://www.npmjs.com/package/markdown-it
19
- * https://www.npmjs.com/package/lodash-es
20
- * https://www.npmjs.com/package/dompurify
21
- * https://www.npmjs.com/package/@codemirror/state
22
- * https://www.npmjs.com/package/csv-stringify
23
- * https://www.npmjs.com/package/lit-html
24
- * https://www.npmjs.com/package/@carbon/web-components
25
- * https://www.npmjs.com/package/codemirror
26
- * https://www.npmjs.com/package/@codemirror/language
27
- * https://www.npmjs.com/package/@codemirror/lang-cpp
28
- * https://www.npmjs.com/package/@codemirror/lang-go
29
- * https://www.npmjs.com/package/@codemirror/lang-html
30
- * https://www.npmjs.com/package/@codemirror/lang-javascript
31
- * https://www.npmjs.com/package/@codemirror/lang-sql
32
- * https://www.npmjs.com/package/@codemirror/lang-css
33
- * https://www.npmjs.com/package/@codemirror/lang-java
34
- * https://www.npmjs.com/package/@codemirror/lang-jinja
35
- * https://www.npmjs.com/package/@codemirror/lang-json
36
- * https://www.npmjs.com/package/@codemirror/lang-less
37
- * https://www.npmjs.com/package/@codemirror/lang-php
38
- * https://www.npmjs.com/package/@codemirror/lang-sass
39
- * https://www.npmjs.com/package/@codemirror/lang-markdown
40
- * https://www.npmjs.com/package/@codemirror/lang-rust
41
- * https://www.npmjs.com/package/@codemirror/lang-wast
42
- * https://www.npmjs.com/package/@codemirror/lang-liquid
43
- * https://www.npmjs.com/package/@codemirror/legacy-modes
44
- * https://www.npmjs.com/package/@codemirror/lang-yaml
45
- * https://www.npmjs.com/package/@codemirror/lang-xml
46
- * https://www.npmjs.com/package/@codemirror/lang-python
47
- * https://www.npmjs.com/package/@codemirror/lang-angular
48
- * https://www.npmjs.com/package/@codemirror/lang-vue
49
- * https://www.npmjs.com/package/@codemirror/autocomplete
50
- * https://www.npmjs.com/package/@codemirror/view
51
- * https://www.npmjs.com/package/@codemirror/lint
52
- * https://www.npmjs.com/package/@codemirror/commands
53
- * https://www.npmjs.com/package/@lezer/highlight
54
- * https://www.npmjs.com/package/@carbon/icons
55
- * https://www.npmjs.com/package/@carbon/utilities
56
- * https://www.npmjs.com/package/@carbon/icon-helpers
57
- * https://www.npmjs.com/package/program-language-detector
58
- * https://www.npmjs.com/package/lit-element
59
- * https://www.npmjs.com/package/@lit/reactive-element
60
- * https://www.npmjs.com/package/@marijn/find-cluster-break
61
- * https://www.npmjs.com/package/@codemirror/search
62
- * https://www.npmjs.com/package/crelt
63
- * https://www.npmjs.com/package/w3c-keyname
64
- * https://www.npmjs.com/package/style-mod
65
- * https://www.npmjs.com/package/@lezer/common
66
- * https://www.npmjs.com/package/@lezer/cpp
67
- * https://www.npmjs.com/package/@lezer/html
68
- * https://www.npmjs.com/package/@lezer/go
69
- * https://www.npmjs.com/package/@lezer/javascript
70
- * https://www.npmjs.com/package/@lezer/java
71
- * https://www.npmjs.com/package/@lezer/lr
72
- * https://www.npmjs.com/package/@lezer/json
73
- * https://www.npmjs.com/package/@lezer/php
74
- * https://www.npmjs.com/package/@lezer/markdown
75
- * https://www.npmjs.com/package/@lezer/sass
76
- * https://www.npmjs.com/package/@lezer/rust
77
- * https://www.npmjs.com/package/@lezer/xml
78
- * https://www.npmjs.com/package/@lezer/yaml
79
- * https://www.npmjs.com/package/@lezer/python
80
- * https://www.npmjs.com/package/@lezer/css
81
- * https://www.npmjs.com/package/@internationalized/number
82
- * https://www.npmjs.com/package/linkify-it
83
- * https://www.npmjs.com/package/mdurl
84
- * https://www.npmjs.com/package/punycode.js
85
- * https://www.npmjs.com/package/uc.micro
86
- * https://www.npmjs.com/package/@floating-ui/dom
87
- * https://www.npmjs.com/package/@floating-ui/core
88
- * https://www.npmjs.com/package/@floating-ui/utils
89
- */
90
-
91
- function e(e,t,n,r,a,o){this.indented=e,this.column=t,this.type=n,this.info=r,this.align=a,this.prev=o}function t(t,n,r,a){var o=t.indented;return t.context&&"statement"==t.context.type&&"statement"!=r&&(o=t.context.indented),t.context=new e(o,n,r,a,null,t.context)}function n(e){var t=e.context.type;return")"!=t&&"]"!=t&&"}"!=t||(e.indented=e.context.indented),e.context=e.context.prev}function r(e,t,n){return"variable"==t.prevToken||"type"==t.prevToken||(!!/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(e.string.slice(0,n))||(!(!t.typeAtEndOfLine||e.column()!=e.indentation())||void 0))}function a(e){for(;;){if(!e||"top"==e.type)return!0;if("}"==e.type&&"namespace"!=e.prev.info)return!1;e=e.prev}}function o(o){var i,s,c=o.statementIndentUnit,u=o.dontAlignCalls,d=o.keywords||{},f=o.types||{},p=o.builtin||{},m=o.blockKeywords||{},h=o.defKeywords||{},y=o.atoms||{},g=o.hooks||{},k=o.multiLineStrings,b=!1!==o.indentStatements,v=!1!==o.indentSwitch,w=o.namespaceSeparator,_=o.isPunctuationChar||/[\[\]{}\(\),;\:\.]/,x=o.numberStart||/[\d\.]/,S=o.number||/^(?:0x[a-f\d]+|0b[01]+|(?:\d+\.?\d*|\.\d+)(?:e[-+]?\d+)?)(u|ll?|l|f)?/i,T=o.isOperatorChar||/[+\-*&%=<>!?|\/]/,N=o.isIdentifierChar||/[\w\$_\xa1-\uffff]/,I=o.isReservedIdentifier||!1;function D(e,t){var n,r=e.next();if(g[r]){var a=g[r](e,t);if(!1!==a)return a}if('"'==r||"'"==r)return t.tokenize=(n=r,function(e,t){for(var r,a=!1,o=!1;null!=(r=e.next());){if(r==n&&!a){o=!0;break}a=!a&&"\\"==r}return(o||!a&&!k)&&(t.tokenize=null),"string"}),t.tokenize(e,t);if(x.test(r)){if(e.backUp(1),e.match(S))return"number";e.next()}if(_.test(r))return i=r,null;if("/"==r){if(e.eat("*"))return t.tokenize=C,C(e,t);if(e.eat("/"))return e.skipToEnd(),"comment"}if(T.test(r)){for(;!e.match(/^\/[\/*]/,!1)&&e.eat(T););return"operator"}if(e.eatWhile(N),w)for(;e.match(w);)e.eatWhile(N);var o=e.current();return l(d,o)?(l(m,o)&&(i="newstatement"),l(h,o)&&(s=!0),"keyword"):l(f,o)?"type":l(p,o)||I&&I(o)?(l(m,o)&&(i="newstatement"),"builtin"):l(y,o)?"atom":"variable"}function C(e,t){for(var n,r=!1;n=e.next();){if("/"==n&&r){t.tokenize=null;break}r="*"==n}return"comment"}function z(e,t){o.typeFirstDefinitions&&e.eol()&&a(t.context)&&(t.typeAtEndOfLine=r(e,t,e.pos))}return{name:o.name,startState:function(t){return{tokenize:null,context:new e(-t,0,"top",null,!1),indented:0,startOfLine:!0,prevToken:null}},token:function(e,l){var c=l.context;if(e.sol()&&(null==c.align&&(c.align=!1),l.indented=e.indentation(),l.startOfLine=!0),e.eatSpace())return z(e,l),null;i=s=null;var u=(l.tokenize||D)(e,l);if("comment"==u||"meta"==u)return u;if(null==c.align&&(c.align=!0),";"==i||":"==i||","==i&&e.match(/^\s*(?:\/\/.*)?$/,!1))for(;"statement"==l.context.type;)n(l);else if("{"==i)t(l,e.column(),"}");else if("["==i)t(l,e.column(),"]");else if("("==i)t(l,e.column(),")");else if("}"==i){for(;"statement"==c.type;)c=n(l);for("}"==c.type&&(c=n(l));"statement"==c.type;)c=n(l)}else i==c.type?n(l):b&&(("}"==c.type||"top"==c.type)&&";"!=i||"statement"==c.type&&"newstatement"==i)&&t(l,e.column(),"statement",e.current());if("variable"==u&&("def"==l.prevToken||o.typeFirstDefinitions&&r(e,l,e.start)&&a(l.context)&&e.match(/^\s*\(/,!1))&&(u="def"),g.token){var d=g.token(e,l,u);void 0!==d&&(u=d)}return"def"==u&&!1===o.styleDefs&&(u="variable"),l.startOfLine=!1,l.prevToken=s?"def":u||i,z(e,l),u},indent:function(e,t,n){if(e.tokenize!=D&&null!=e.tokenize||e.typeAtEndOfLine&&a(e.context))return null;var r=e.context,i=t&&t.charAt(0),l=i==r.type;if("statement"==r.type&&"}"==i&&(r=r.prev),o.dontIndentStatements)for(;"statement"==r.type&&o.dontIndentStatements.test(r.info);)r=r.prev;if(g.indent){var s=g.indent(e,r,t,n.unit);if("number"==typeof s)return s}var d=r.prev&&"switch"==r.prev.info;if(o.allmanIndentation&&/[{(]/.test(i)){for(;"top"!=r.type&&"}"!=r.type;)r=r.prev;return r.indented}return"statement"==r.type?r.indented+("{"==i?0:c||n.unit):!r.align||u&&")"==r.type?")"!=r.type||l?r.indented+(l?0:n.unit)+(l||!d||/^(?:case|default)\b/.test(t)?0:n.unit):r.indented+(c||n.unit):r.column+(l?0:1)},languageData:{indentOnInput:v?/^\s*(?:case .*?:|default:|\{\}?|\})$/:/^\s*[{}]$/,commentTokens:{line:"//",block:{open:"/*",close:"*/"}},autocomplete:Object.keys(d).concat(Object.keys(f)).concat(Object.keys(p)).concat(Object.keys(y)),...o.languageData}}}function i(e){for(var t={},n=e.split(" "),r=0;r<n.length;++r)t[n[r]]=!0;return t}function l(e,t){return"function"==typeof e?e(t):e.propertyIsEnumerable(t)}var s="auto if break case register continue return default do sizeof static else struct switch extern typedef union for goto while enum const volatile inline restrict asm fortran",c="alignas alignof and and_eq audit axiom bitand bitor catch class compl concept constexpr const_cast decltype delete dynamic_cast explicit export final friend import module mutable namespace new noexcept not not_eq operator or or_eq override private protected public reinterpret_cast requires static_assert static_cast template this thread_local throw try typeid typename using virtual xor xor_eq",u="bycopy byref in inout oneway out self super atomic nonatomic retain copy readwrite readonly strong weak assign typeof nullable nonnull null_resettable _cmd @interface @implementation @end @protocol @encode @property @synthesize @dynamic @class @public @package @private @protected @required @optional @try @catch @finally @import @selector @encode @defs @synchronized @autoreleasepool @compatibility_alias @available",d="FOUNDATION_EXPORT FOUNDATION_EXTERN NS_INLINE NS_FORMAT_FUNCTION NS_RETURNS_RETAINEDNS_ERROR_ENUM NS_RETURNS_NOT_RETAINED NS_RETURNS_INNER_POINTER NS_DESIGNATED_INITIALIZER NS_ENUM NS_OPTIONS NS_REQUIRES_NIL_TERMINATION NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_SWIFT_NAME NS_REFINED_FOR_SWIFT",f=i("int long char short double float unsigned signed void bool"),p=i("SEL instancetype id Class Protocol BOOL");function m(e){return l(f,e)||/.+_t$/.test(e)}function h(e){return m(e)||l(p,e)}var y="case do else for if switch while struct enum union",g="struct enum union";function k(e,t){if(!t.startOfLine)return!1;for(var n,r=null;n=e.peek();){if("\\"==n&&e.match(/^.$/)){r=k;break}if("/"==n&&e.match(/^\/[\/\*]/,!1))break;e.next()}return t.tokenize=r,"meta"}function b(e,t){return"type"==t.prevToken&&"type"}function v(e){return!(!e||e.length<2)&&("_"==e[0]&&("_"==e[1]||e[1]!==e[1].toLowerCase()))}function w(e){return e.eatWhile(/[\w\.']/),"number"}function _(e,t){if(e.backUp(1),e.match(/^(?:R|u8R|uR|UR|LR)/)){var n=e.match(/^"([^\s\\()]{0,16})\(/);return!!n&&(t.cpp11RawStringDelim=n[1],t.tokenize=T,T(e,t))}return e.match(/^(?:u8|u|U|L)/)?!!e.match(/^["']/,!1)&&"string":(e.next(),!1)}function x(e){var t=/(\w+)::~?(\w+)$/.exec(e);return t&&t[1]==t[2]}function S(e,t){for(var n;null!=(n=e.next());)if('"'==n&&!e.eat('"')){t.tokenize=null;break}return"string"}function T(e,t){var n=t.cpp11RawStringDelim.replace(/[^\w\s]/g,"\\$&");return e.match(new RegExp(".*?\\)"+n+'"'))?t.tokenize=null:e.skipToEnd(),"string"}o({name:"c",keywords:i(s),types:m,blockKeywords:i(y),defKeywords:i(g),typeFirstDefinitions:!0,atoms:i("NULL true false"),isReservedIdentifier:v,hooks:{"#":k,"*":b}}),o({name:"cpp",keywords:i(s+" "+c),types:m,blockKeywords:i(y+" class try catch"),defKeywords:i(g+" class namespace"),typeFirstDefinitions:!0,atoms:i("true false NULL nullptr"),dontIndentStatements:/^template$/,isIdentifierChar:/[\w\$_~\xa1-\uffff]/,isReservedIdentifier:v,hooks:{"#":k,"*":b,u:_,U:_,L:_,R:_,0:w,1:w,2:w,3:w,4:w,5:w,6:w,7:w,8:w,9:w,token:function(e,t,n){if("variable"==n&&"("==e.peek()&&(";"==t.prevToken||null==t.prevToken||"}"==t.prevToken)&&x(e.current()))return"def"}},namespaceSeparator:"::"}),o({name:"java",keywords:i("abstract assert break case catch class const continue default do else enum extends final finally for goto if implements import instanceof interface native new package private protected public return static strictfp super switch synchronized this throw throws transient try volatile while @interface"),types:i("var byte short int long float double boolean char void Boolean Byte Character Double Float Integer Long Number Object Short String StringBuffer StringBuilder Void"),blockKeywords:i("catch class do else finally for if switch try while"),defKeywords:i("class interface enum @interface"),typeFirstDefinitions:!0,atoms:i("true false null"),number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,hooks:{"@":function(e){return!e.match("interface",!1)&&(e.eatWhile(/[\w\$_]/),"meta")},'"':function(e,t){return!!e.match(/""$/)&&(t.tokenize=I,t.tokenize(e,t))}}});const N=o({name:"csharp",keywords:i("abstract as async await base break case catch checked class const continue default delegate do else enum event explicit extern finally fixed for foreach goto if implicit in init interface internal is lock namespace new operator out override params private protected public readonly record ref required return sealed sizeof stackalloc static struct switch this throw try typeof unchecked unsafe using virtual void volatile while add alias ascending descending dynamic from get global group into join let orderby partial remove select set value var yield"),types:i("Action Boolean Byte Char DateTime DateTimeOffset Decimal Double Func Guid Int16 Int32 Int64 Object SByte Single String Task TimeSpan UInt16 UInt32 UInt64 bool byte char decimal double short int long object sbyte float string ushort uint ulong"),blockKeywords:i("catch class do else finally for foreach if struct switch try while"),defKeywords:i("class interface namespace record struct var"),typeFirstDefinitions:!0,atoms:i("true false null"),hooks:{"@":function(e,t){return e.eat('"')?(t.tokenize=S,S(e,t)):(e.eatWhile(/[\w\$_]/),"meta")}}});function I(e,t){for(var n=!1;!e.eol();){if(!n&&e.match('"""')){t.tokenize=null;break}n="\\"==e.next()&&!n}return"string"}function D(e){return function(t,n){for(var r;r=t.next();){if("*"==r&&t.eat("/")){if(1==e){n.tokenize=null;break}return n.tokenize=D(e-1),n.tokenize(t,n)}if("/"==r&&t.eat("*"))return n.tokenize=D(e+1),n.tokenize(t,n)}return"comment"}}const C=o({name:"scala",keywords:i("abstract case catch class def do else extends final finally for forSome if implicit import lazy match new null object override package private protected return sealed super this throw trait try type val var while with yield _ assert assume require print println printf readLine readBoolean readByte readShort readChar readInt readLong readFloat readDouble"),types:i("AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either Enumeration Equiv Error Exception Fractional Function IndexedSeq Int Integral Iterable Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void"),multiLineStrings:!0,blockKeywords:i("catch class enum do else finally for forSome if match switch try while"),defKeywords:i("class enum def object package trait type val var"),atoms:i("true false null"),indentStatements:!1,indentSwitch:!1,isOperatorChar:/[+\-*&%=<>!?|\/#:@]/,hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},'"':function(e,t){return!!e.match('""')&&(t.tokenize=I,t.tokenize(e,t))},"'":function(e){return e.match(/^(\\[^'\s]+|[^\\'])'/)?"character":(e.eatWhile(/[\w\$_\xa1-\uffff]/),"atom")},"=":function(t,n){var r=n.context;return!("}"!=r.type||!r.align||!t.eat(">"))&&(n.context=new e(r.indented,r.column,r.type,r.info,null,r.prev),"operator")},"/":function(e,t){return!!e.eat("*")&&(t.tokenize=D(1),t.tokenize(e,t))}},languageData:{closeBrackets:{brackets:["(","[","{","'",'"','"""']}}});const z=o({name:"kotlin",keywords:i("package as typealias class interface this super val operator var fun for is in This throw return annotation break continue object if else while do try when !in !is as? file import where by get set abstract enum open inner override private public internal protected catch finally out final vararg reified dynamic companion constructor init sealed field property receiver param sparam lateinit data inline noinline tailrec external annotation crossinline const operator infix suspend actual expect setparam"),types:i("Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void Annotation Any BooleanArray ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy LazyThreadSafetyMode LongArray Nothing ShortArray Unit"),indentStatements:!1,multiLineStrings:!0,number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(ul?|l|f)?/i,blockKeywords:i("catch class do else finally for if where try while enum"),defKeywords:i("class val var object interface fun"),atoms:i("true false null this"),hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},"*":function(e,t){return"."==t.prevToken?"variable":"operator"},'"':function(e,t){var n;return t.tokenize=(n=e.match('""'),function(e,t){for(var r,a=!1,o=!1;!e.eol();){if(!n&&!a&&e.match('"')){o=!0;break}if(n&&e.match('"""')){o=!0;break}r=e.next(),!a&&"$"==r&&e.match("{")&&e.skipTo("}"),a=!a&&"\\"==r&&!n}return!o&&n||(t.tokenize=null),"string"}),t.tokenize(e,t)},"/":function(e,t){return!!e.eat("*")&&(t.tokenize=D(1),t.tokenize(e,t))},indent:function(e,t,n,r){var a=n&&n.charAt(0);return"}"!=e.prevToken&&")"!=e.prevToken||""!=n?"operator"==e.prevToken&&"}"!=n&&"}"!=e.context.type||"variable"==e.prevToken&&"."==a||("}"==e.prevToken||")"==e.prevToken)&&"."==a?2*r+t.indented:t.align&&"}"==t.type?t.indented+(e.context.type==(n||"").charAt(0)?0:r):void 0:e.indented}},languageData:{closeBrackets:{brackets:["(","[","{","'",'"','"""']}}});o({name:"shader",keywords:i("sampler1D sampler2D sampler3D samplerCube sampler1DShadow sampler2DShadow const attribute uniform varying break continue discard return for while do if else struct in out inout"),types:i("float int bool void vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 mat2 mat3 mat4"),blockKeywords:i("for while do if else struct"),builtin:i("radians degrees sin cos tan asin acos atan pow exp log exp2 sqrt inversesqrt abs sign floor ceil fract mod min max clamp mix step smoothstep length distance dot cross normalize ftransform faceforward reflect refract matrixCompMult lessThan lessThanEqual greaterThan greaterThanEqual equal notEqual any all not texture1D texture1DProj texture1DLod texture1DProjLod texture2D texture2DProj texture2DLod texture2DProjLod texture3D texture3DProj texture3DLod texture3DProjLod textureCube textureCubeLod shadow1D shadow2D shadow1DProj shadow2DProj shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod dFdx dFdy fwidth noise1 noise2 noise3 noise4"),atoms:i("true false gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_FogCoord gl_PointCoord gl_Position gl_PointSize gl_ClipVertex gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor gl_TexCoord gl_FogFragCoord gl_FragCoord gl_FrontFacing gl_FragData gl_FragDepth gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse gl_TextureMatrixTranspose gl_ModelViewMatrixInverseTranspose gl_ProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixInverseTranspose gl_TextureMatrixInverseTranspose gl_NormalScale gl_DepthRange gl_ClipPlane gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel gl_FrontLightModelProduct gl_BackLightModelProduct gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ gl_FogParameters gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits gl_MaxDrawBuffers"),indentSwitch:!1,hooks:{"#":k}}),o({name:"nesc",keywords:i(s+" as atomic async call command component components configuration event generic implementation includes interface module new norace nx_struct nx_union post provides signal task uses abstract extends"),types:m,blockKeywords:i(y),atoms:i("null true false"),hooks:{"#":k}});const L=o({name:"objectivec",keywords:i(s+" "+u),types:h,builtin:i(d),blockKeywords:i(y+" @synthesize @try @catch @finally @autoreleasepool @synchronized"),defKeywords:i(g+" @interface @implementation @protocol @class"),dontIndentStatements:/^@.*$/,typeFirstDefinitions:!0,atoms:i("YES NO NULL Nil nil true false nullptr"),isReservedIdentifier:v,hooks:{"#":k,"*":b}}),M=o({name:"objectivecpp",keywords:i(s+" "+u+" "+c),types:h,builtin:i(d),blockKeywords:i(y+" @synthesize @try @catch @finally @autoreleasepool @synchronized class try catch"),defKeywords:i(g+" @interface @implementation @protocol @class class namespace"),dontIndentStatements:/^@.*$|^template$/,typeFirstDefinitions:!0,atoms:i("YES NO NULL Nil nil true false nullptr"),isReservedIdentifier:v,hooks:{"#":k,"*":b,u:_,U:_,L:_,R:_,0:w,1:w,2:w,3:w,4:w,5:w,6:w,7:w,8:w,9:w,token:function(e,t,n){if("variable"==n&&"("==e.peek()&&(";"==t.prevToken||null==t.prevToken||"}"==t.prevToken)&&x(e.current()))return"def"}},namespaceSeparator:"::"}),E=o({name:"squirrel",keywords:i("base break clone continue const default delete enum extends function in class foreach local resume return this throw typeof yield constructor instanceof static"),types:m,blockKeywords:i("case catch class else for foreach if switch try while"),defKeywords:i("function local class"),typeFirstDefinitions:!0,atoms:i("true false null"),hooks:{"#":k}});var F=null;function P(e){return function(t,n){for(var r,a=!1,o=!1;!t.eol();){if(!a&&t.match('"')&&("single"==e||t.match('""'))){o=!0;break}if(!a&&t.match("``")){F=P(e),o=!0;break}r=t.next(),a="single"==e&&!a&&"\\"==r}return o&&(n.tokenize=null),"string"}}function R(e){(e.interpolationStack||(e.interpolationStack=[])).push(e.tokenize)}function O(e){return(e.interpolationStack||(e.interpolationStack=[])).pop()}function A(e,t,n,r){var a=!1;if(t.eat(e)){if(!t.eat(e))return"string";a=!0}function o(t,n){for(var o=!1;!t.eol();){if(!r&&!o&&"$"==t.peek())return R(n),n.tokenize=j,"string";var i=t.next();if(i==e&&!o&&(!a||t.match(e+e))){n.tokenize=null;break}o=!r&&!o&&"\\"==i}return"string"}return n.tokenize=o,o(t,n)}function j(e,t){return e.eat("$"),e.eat("{")?t.tokenize=null:t.tokenize=U,null}function U(e,t){return e.eatWhile(/[\w_]/),t.tokenize=O(t),"variable"}o({name:"ceylon",keywords:i("abstracts alias assembly assert assign break case catch class continue dynamic else exists extends finally for function given if import in interface is let module new nonempty object of out outer package return satisfies super switch then this throw try value void while"),types:function(e){var t=e.charAt(0);return t===t.toUpperCase()&&t!==t.toLowerCase()},blockKeywords:i("case catch class dynamic else finally for function if interface module new object switch try while"),defKeywords:i("class dynamic function interface module object package value"),builtin:i("abstract actual aliased annotation by default deprecated doc final formal late license native optional sealed see serializable shared suppressWarnings tagged throws variable"),isPunctuationChar:/[\[\]{}\(\),;\:\.`]/,isOperatorChar:/[+\-*&%=<>!?|^~:\/]/,numberStart:/[\d#$]/,number:/^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i,multiLineStrings:!0,typeFirstDefinitions:!0,atoms:i("true false null larger smaller equal empty finished"),indentSwitch:!1,styleDefs:!1,hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"},'"':function(e,t){return t.tokenize=P(e.match('""')?"triple":"single"),t.tokenize(e,t)},"`":function(e,t){return!(!F||!e.match("`"))&&(t.tokenize=F,F=null,t.tokenize(e,t))},"'":function(e){return e.match(/^(\\[^'\s]+|[^\\'])'/)?"string.special":(e.eatWhile(/[\w\$_\xa1-\uffff]/),"atom")},token:function(e,t,n){if(("variable"==n||"type"==n)&&"."==t.prevToken)return"variableName.special"}},languageData:{closeBrackets:{brackets:["(","[","{","'",'"','"""']}}});const $=o({name:"dart",keywords:i("this super static final const abstract class extends external factory implements mixin get native set typedef with enum throw rethrow assert break case continue default in return new deferred async await covariant try catch finally do else for if switch while import library export part of show hide is as extension on yield late required sealed base interface when inline"),blockKeywords:i("try catch finally do else for if switch while"),builtin:i("void bool num int double dynamic var String Null Never"),atoms:i("true false null"),number:/^(?:0x[a-f\d_]+|(?:[\d_]+\.?[\d_]*|\.[\d_]+)(?:e[-+]?[\d_]+)?)/i,hooks:{"@":function(e){return e.eatWhile(/[\w\$_\.]/),"meta"},"'":function(e,t){return A("'",e,t,!1)},'"':function(e,t){return A('"',e,t,!1)},r:function(e,t){var n=e.peek();return("'"==n||'"'==n)&&A(e.next(),e,t,!0)},"}":function(e,t){return function(e){return e.interpolationStack?e.interpolationStack.length:0}(t)>0&&(t.tokenize=O(t),null)},"/":function(e,t){return!!e.eat("*")&&(t.tokenize=D(1),t.tokenize(e,t))},token:function(e,t,n){if("variable"==n&&RegExp("^[_$]*[A-Z][a-zA-Z0-9_$]*$","g").test(e.current()))return"type"}}});export{o as clike,N as csharp,$ as dart,z as kotlin,L as objectiveC,M as objectiveCpp,C as scala,E as squirrel};
@@ -1,91 +0,0 @@
1
- /**
2
- * @license
3
- *
4
- * Copyright IBM Corp. 2025
5
- *
6
- * This source code is licensed under the Apache-2.0 license found in the
7
- * LICENSE file in the root directory of this source tree.
8
- */
9
- /**
10
- * @license
11
- *
12
- * This bundle contains the following third-party dependencies:
13
- *
14
- * Also refer to the following links for the license of other third-party dependencies:
15
- *
16
- * https://www.npmjs.com/package/tslib
17
- * https://www.npmjs.com/package/lit
18
- * https://www.npmjs.com/package/markdown-it
19
- * https://www.npmjs.com/package/lodash-es
20
- * https://www.npmjs.com/package/dompurify
21
- * https://www.npmjs.com/package/@codemirror/state
22
- * https://www.npmjs.com/package/csv-stringify
23
- * https://www.npmjs.com/package/lit-html
24
- * https://www.npmjs.com/package/@carbon/web-components
25
- * https://www.npmjs.com/package/codemirror
26
- * https://www.npmjs.com/package/@codemirror/language
27
- * https://www.npmjs.com/package/@codemirror/lang-cpp
28
- * https://www.npmjs.com/package/@codemirror/lang-go
29
- * https://www.npmjs.com/package/@codemirror/lang-html
30
- * https://www.npmjs.com/package/@codemirror/lang-javascript
31
- * https://www.npmjs.com/package/@codemirror/lang-sql
32
- * https://www.npmjs.com/package/@codemirror/lang-css
33
- * https://www.npmjs.com/package/@codemirror/lang-java
34
- * https://www.npmjs.com/package/@codemirror/lang-jinja
35
- * https://www.npmjs.com/package/@codemirror/lang-json
36
- * https://www.npmjs.com/package/@codemirror/lang-less
37
- * https://www.npmjs.com/package/@codemirror/lang-php
38
- * https://www.npmjs.com/package/@codemirror/lang-sass
39
- * https://www.npmjs.com/package/@codemirror/lang-markdown
40
- * https://www.npmjs.com/package/@codemirror/lang-rust
41
- * https://www.npmjs.com/package/@codemirror/lang-wast
42
- * https://www.npmjs.com/package/@codemirror/lang-liquid
43
- * https://www.npmjs.com/package/@codemirror/legacy-modes
44
- * https://www.npmjs.com/package/@codemirror/lang-yaml
45
- * https://www.npmjs.com/package/@codemirror/lang-xml
46
- * https://www.npmjs.com/package/@codemirror/lang-python
47
- * https://www.npmjs.com/package/@codemirror/lang-angular
48
- * https://www.npmjs.com/package/@codemirror/lang-vue
49
- * https://www.npmjs.com/package/@codemirror/autocomplete
50
- * https://www.npmjs.com/package/@codemirror/view
51
- * https://www.npmjs.com/package/@codemirror/lint
52
- * https://www.npmjs.com/package/@codemirror/commands
53
- * https://www.npmjs.com/package/@lezer/highlight
54
- * https://www.npmjs.com/package/@carbon/icons
55
- * https://www.npmjs.com/package/@carbon/utilities
56
- * https://www.npmjs.com/package/@carbon/icon-helpers
57
- * https://www.npmjs.com/package/program-language-detector
58
- * https://www.npmjs.com/package/lit-element
59
- * https://www.npmjs.com/package/@lit/reactive-element
60
- * https://www.npmjs.com/package/@marijn/find-cluster-break
61
- * https://www.npmjs.com/package/@codemirror/search
62
- * https://www.npmjs.com/package/crelt
63
- * https://www.npmjs.com/package/w3c-keyname
64
- * https://www.npmjs.com/package/style-mod
65
- * https://www.npmjs.com/package/@lezer/common
66
- * https://www.npmjs.com/package/@lezer/cpp
67
- * https://www.npmjs.com/package/@lezer/html
68
- * https://www.npmjs.com/package/@lezer/go
69
- * https://www.npmjs.com/package/@lezer/javascript
70
- * https://www.npmjs.com/package/@lezer/java
71
- * https://www.npmjs.com/package/@lezer/lr
72
- * https://www.npmjs.com/package/@lezer/json
73
- * https://www.npmjs.com/package/@lezer/php
74
- * https://www.npmjs.com/package/@lezer/markdown
75
- * https://www.npmjs.com/package/@lezer/sass
76
- * https://www.npmjs.com/package/@lezer/rust
77
- * https://www.npmjs.com/package/@lezer/xml
78
- * https://www.npmjs.com/package/@lezer/yaml
79
- * https://www.npmjs.com/package/@lezer/python
80
- * https://www.npmjs.com/package/@lezer/css
81
- * https://www.npmjs.com/package/@internationalized/number
82
- * https://www.npmjs.com/package/linkify-it
83
- * https://www.npmjs.com/package/mdurl
84
- * https://www.npmjs.com/package/punycode.js
85
- * https://www.npmjs.com/package/uc.micro
86
- * https://www.npmjs.com/package/@floating-ui/dom
87
- * https://www.npmjs.com/package/@floating-ui/core
88
- * https://www.npmjs.com/package/@floating-ui/utils
89
- */
90
-
91
- var e=["false","nil","true"],t=[".","catch","def","do","if","monitor-enter","monitor-exit","new","quote","recur","set!","throw","try","var"],n=["*","*'","*1","*2","*3","*agent*","*allow-unresolved-vars*","*assert*","*clojure-version*","*command-line-args*","*compile-files*","*compile-path*","*compiler-options*","*data-readers*","*default-data-reader-fn*","*e","*err*","*file*","*flush-on-newline*","*fn-loader*","*in*","*math-context*","*ns*","*out*","*print-dup*","*print-length*","*print-level*","*print-meta*","*print-namespace-maps*","*print-readably*","*read-eval*","*reader-resolver*","*source-path*","*suppress-read*","*unchecked-math*","*use-context-classloader*","*verbose-defrecords*","*warn-on-reflection*","+","+'","-","-'","->","->>","->ArrayChunk","->Eduction","->Vec","->VecNode","->VecSeq","-cache-protocol-fn","-reset-methods","..","/","<","<=","=","==",">",">=","EMPTY-NODE","Inst","StackTraceElement->vec","Throwable->map","accessor","aclone","add-classpath","add-watch","agent","agent-error","agent-errors","aget","alength","alias","all-ns","alter","alter-meta!","alter-var-root","amap","ancestors","and","any?","apply","areduce","array-map","as->","aset","aset-boolean","aset-byte","aset-char","aset-double","aset-float","aset-int","aset-long","aset-short","assert","assoc","assoc!","assoc-in","associative?","atom","await","await-for","await1","bases","bean","bigdec","bigint","biginteger","binding","bit-and","bit-and-not","bit-clear","bit-flip","bit-not","bit-or","bit-set","bit-shift-left","bit-shift-right","bit-test","bit-xor","boolean","boolean-array","boolean?","booleans","bound-fn","bound-fn*","bound?","bounded-count","butlast","byte","byte-array","bytes","bytes?","case","cast","cat","char","char-array","char-escape-string","char-name-string","char?","chars","chunk","chunk-append","chunk-buffer","chunk-cons","chunk-first","chunk-next","chunk-rest","chunked-seq?","class","class?","clear-agent-errors","clojure-version","coll?","comment","commute","comp","comparator","compare","compare-and-set!","compile","complement","completing","concat","cond","cond->","cond->>","condp","conj","conj!","cons","constantly","construct-proxy","contains?","count","counted?","create-ns","create-struct","cycle","dec","dec'","decimal?","declare","dedupe","default-data-readers","definline","definterface","defmacro","defmethod","defmulti","defn","defn-","defonce","defprotocol","defrecord","defstruct","deftype","delay","delay?","deliver","denominator","deref","derive","descendants","destructure","disj","disj!","dissoc","dissoc!","distinct","distinct?","doall","dorun","doseq","dosync","dotimes","doto","double","double-array","double?","doubles","drop","drop-last","drop-while","eduction","empty","empty?","ensure","ensure-reduced","enumeration-seq","error-handler","error-mode","eval","even?","every-pred","every?","ex-data","ex-info","extend","extend-protocol","extend-type","extenders","extends?","false?","ffirst","file-seq","filter","filterv","find","find-keyword","find-ns","find-protocol-impl","find-protocol-method","find-var","first","flatten","float","float-array","float?","floats","flush","fn","fn?","fnext","fnil","for","force","format","frequencies","future","future-call","future-cancel","future-cancelled?","future-done?","future?","gen-class","gen-interface","gensym","get","get-in","get-method","get-proxy-class","get-thread-bindings","get-validator","group-by","halt-when","hash","hash-combine","hash-map","hash-ordered-coll","hash-set","hash-unordered-coll","ident?","identical?","identity","if-let","if-not","if-some","ifn?","import","in-ns","inc","inc'","indexed?","init-proxy","inst-ms","inst-ms*","inst?","instance?","int","int-array","int?","integer?","interleave","intern","interpose","into","into-array","ints","io!","isa?","iterate","iterator-seq","juxt","keep","keep-indexed","key","keys","keyword","keyword?","last","lazy-cat","lazy-seq","let","letfn","line-seq","list","list*","list?","load","load-file","load-reader","load-string","loaded-libs","locking","long","long-array","longs","loop","macroexpand","macroexpand-1","make-array","make-hierarchy","map","map-entry?","map-indexed","map?","mapcat","mapv","max","max-key","memfn","memoize","merge","merge-with","meta","method-sig","methods","min","min-key","mix-collection-hash","mod","munge","name","namespace","namespace-munge","nat-int?","neg-int?","neg?","newline","next","nfirst","nil?","nnext","not","not-any?","not-empty","not-every?","not=","ns","ns-aliases","ns-imports","ns-interns","ns-map","ns-name","ns-publics","ns-refers","ns-resolve","ns-unalias","ns-unmap","nth","nthnext","nthrest","num","number?","numerator","object-array","odd?","or","parents","partial","partition","partition-all","partition-by","pcalls","peek","persistent!","pmap","pop","pop!","pop-thread-bindings","pos-int?","pos?","pr","pr-str","prefer-method","prefers","primitives-classnames","print","print-ctor","print-dup","print-method","print-simple","print-str","printf","println","println-str","prn","prn-str","promise","proxy","proxy-call-with-super","proxy-mappings","proxy-name","proxy-super","push-thread-bindings","pvalues","qualified-ident?","qualified-keyword?","qualified-symbol?","quot","rand","rand-int","rand-nth","random-sample","range","ratio?","rational?","rationalize","re-find","re-groups","re-matcher","re-matches","re-pattern","re-seq","read","read-line","read-string","reader-conditional","reader-conditional?","realized?","record?","reduce","reduce-kv","reduced","reduced?","reductions","ref","ref-history-count","ref-max-history","ref-min-history","ref-set","refer","refer-clojure","reify","release-pending-sends","rem","remove","remove-all-methods","remove-method","remove-ns","remove-watch","repeat","repeatedly","replace","replicate","require","reset!","reset-meta!","reset-vals!","resolve","rest","restart-agent","resultset-seq","reverse","reversible?","rseq","rsubseq","run!","satisfies?","second","select-keys","send","send-off","send-via","seq","seq?","seqable?","seque","sequence","sequential?","set","set-agent-send-executor!","set-agent-send-off-executor!","set-error-handler!","set-error-mode!","set-validator!","set?","short","short-array","shorts","shuffle","shutdown-agents","simple-ident?","simple-keyword?","simple-symbol?","slurp","some","some->","some->>","some-fn","some?","sort","sort-by","sorted-map","sorted-map-by","sorted-set","sorted-set-by","sorted?","special-symbol?","spit","split-at","split-with","str","string?","struct","struct-map","subs","subseq","subvec","supers","swap!","swap-vals!","symbol","symbol?","sync","tagged-literal","tagged-literal?","take","take-last","take-nth","take-while","test","the-ns","thread-bound?","time","to-array","to-array-2d","trampoline","transduce","transient","tree-seq","true?","type","unchecked-add","unchecked-add-int","unchecked-byte","unchecked-char","unchecked-dec","unchecked-dec-int","unchecked-divide-int","unchecked-double","unchecked-float","unchecked-inc","unchecked-inc-int","unchecked-int","unchecked-long","unchecked-multiply","unchecked-multiply-int","unchecked-negate","unchecked-negate-int","unchecked-remainder-int","unchecked-short","unchecked-subtract","unchecked-subtract-int","underive","unquote","unquote-splicing","unreduced","unsigned-bit-shift-right","update","update-in","update-proxy","uri?","use","uuid?","val","vals","var-get","var-set","var?","vary-meta","vec","vector","vector-of","vector?","volatile!","volatile?","vreset!","vswap!","when","when-first","when-let","when-not","when-some","while","with-bindings","with-bindings*","with-in-str","with-loading-context","with-local-vars","with-meta","with-open","with-out-str","with-precision","with-redefs","with-redefs-fn","xml-seq","zero?","zipmap"],r=f(e),a=f(t),o=f(n),s=f(["->","->>","as->","binding","bound-fn","case","catch","comment","cond","cond->","cond->>","condp","def","definterface","defmethod","defn","defmacro","defprotocol","defrecord","defstruct","deftype","do","doseq","dotimes","doto","extend","extend-protocol","extend-type","fn","for","future","if","if-let","if-not","if-some","let","letfn","locking","loop","ns","proxy","reify","struct-map","some->","some->>","try","when","when-first","when-let","when-not","when-some","while","with-bindings","with-bindings*","with-in-str","with-loading-context","with-local-vars","with-meta","with-open","with-out-str","with-precision","with-redefs","with-redefs-fn"]),i=/^(?:[\\\[\]\s"(),;@^`{}~]|$)/,c=/^(?:[+\-]?\d+(?:(?:N|(?:[eE][+\-]?\d+))|(?:\.?\d*(?:M|(?:[eE][+\-]?\d+))?)|\/\d+|[xX][0-9a-fA-F]+|r[0-9a-zA-Z]+)?(?=[\\\[\]\s"#'(),;@^`{}~]|$))/,d=/^(?:\\(?:backspace|formfeed|newline|return|space|tab|o[0-7]{3}|u[0-9A-Fa-f]{4}|x[0-9A-Fa-f]{4}|.)?(?=[\\\[\]\s"(),;@^`{}~]|$))/,l=/^(?:(?:[^\\\/\[\]\d\s"#'(),;@^`{}~.][^\\\[\]\s"(),;@^`{}~.\/]*(?:\.[^\\\/\[\]\d\s"#'(),;@^`{}~.][^\\\[\]\s"(),;@^`{}~.\/]*)*\/)?(?:\/|[^\\\/\[\]\d\s"#'(),;@^`{}~][^\\\[\]\s"(),;@^`{}~]*)*(?=[\\\[\]\s"(),;@^`{}~]|$))/;function u(e,t){if(e.eatSpace()||e.eat(","))return["space",null];if(e.match(c))return[null,"number"];if(e.match(d))return[null,"string.special"];if(e.eat(/^"/))return(t.tokenize=p)(e,t);if(e.eat(/^[(\[{]/))return["open","bracket"];if(e.eat(/^[)\]}]/))return["close","bracket"];if(e.eat(/^;/))return e.skipToEnd(),["space","comment"];if(e.eat(/^[#'@^`~]/))return[null,"meta"];var n=e.match(l),s=n&&n[0];return s?"comment"===s&&"("===t.lastToken?(t.tokenize=m)(e,t):h(s,r)||":"===s.charAt(0)?["symbol","atom"]:h(s,a)||h(s,o)?["symbol","keyword"]:"("===t.lastToken?["symbol","builtin"]:["symbol","variable"]:(e.next(),e.eatWhile(function(e){return!h(e,i)}),[null,"error"])}function p(e,t){for(var n,r=!1;n=e.next();){if('"'===n&&!r){t.tokenize=u;break}r=!r&&"\\"===n}return[null,"string"]}function m(e,t){for(var n,r=1;n=e.next();)if(")"===n&&r--,"("===n&&r++,0===r){e.backUp(1),t.tokenize=u;break}return["space","comment"]}function f(e){for(var t={},n=0;n<e.length;++n)t[e[n]]=!0;return t}function h(e,t){return t instanceof RegExp?t.test(e):t instanceof Object?t.propertyIsEnumerable(e):void 0}const y={name:"clojure",startState:function(){return{ctx:{prev:null,start:0,indentTo:0},lastToken:null,tokenize:u}},token:function(e,t){e.sol()&&"number"!=typeof t.ctx.indentTo&&(t.ctx.indentTo=t.ctx.start+1);var n=t.tokenize(e,t),r=n[0],a=n[1],o=e.current();return"space"!==r&&("("===t.lastToken&&null===t.ctx.indentTo?"symbol"===r&&h(o,s)?t.ctx.indentTo=t.ctx.start+e.indentUnit:t.ctx.indentTo="next":"next"===t.ctx.indentTo&&(t.ctx.indentTo=e.column()),t.lastToken=o),"open"===r?t.ctx={prev:t.ctx,start:e.column(),indentTo:null}:"close"===r&&(t.ctx=t.ctx.prev||t.ctx),a},indent:function(e){var t=e.ctx.indentTo;return"number"==typeof t?t:e.ctx.start+1},languageData:{closeBrackets:{brackets:["(","[","{",'"']},commentTokens:{line:";;"},autocomplete:[].concat(e,t,n)}};export{y as clojure};
@@ -1,91 +0,0 @@
1
- /**
2
- * @license
3
- *
4
- * Copyright IBM Corp. 2025
5
- *
6
- * This source code is licensed under the Apache-2.0 license found in the
7
- * LICENSE file in the root directory of this source tree.
8
- */
9
- /**
10
- * @license
11
- *
12
- * This bundle contains the following third-party dependencies:
13
- *
14
- * Also refer to the following links for the license of other third-party dependencies:
15
- *
16
- * https://www.npmjs.com/package/tslib
17
- * https://www.npmjs.com/package/lit
18
- * https://www.npmjs.com/package/markdown-it
19
- * https://www.npmjs.com/package/lodash-es
20
- * https://www.npmjs.com/package/dompurify
21
- * https://www.npmjs.com/package/@codemirror/state
22
- * https://www.npmjs.com/package/csv-stringify
23
- * https://www.npmjs.com/package/lit-html
24
- * https://www.npmjs.com/package/@carbon/web-components
25
- * https://www.npmjs.com/package/codemirror
26
- * https://www.npmjs.com/package/@codemirror/language
27
- * https://www.npmjs.com/package/@codemirror/lang-cpp
28
- * https://www.npmjs.com/package/@codemirror/lang-go
29
- * https://www.npmjs.com/package/@codemirror/lang-html
30
- * https://www.npmjs.com/package/@codemirror/lang-javascript
31
- * https://www.npmjs.com/package/@codemirror/lang-sql
32
- * https://www.npmjs.com/package/@codemirror/lang-css
33
- * https://www.npmjs.com/package/@codemirror/lang-java
34
- * https://www.npmjs.com/package/@codemirror/lang-jinja
35
- * https://www.npmjs.com/package/@codemirror/lang-json
36
- * https://www.npmjs.com/package/@codemirror/lang-less
37
- * https://www.npmjs.com/package/@codemirror/lang-php
38
- * https://www.npmjs.com/package/@codemirror/lang-sass
39
- * https://www.npmjs.com/package/@codemirror/lang-markdown
40
- * https://www.npmjs.com/package/@codemirror/lang-rust
41
- * https://www.npmjs.com/package/@codemirror/lang-wast
42
- * https://www.npmjs.com/package/@codemirror/lang-liquid
43
- * https://www.npmjs.com/package/@codemirror/legacy-modes
44
- * https://www.npmjs.com/package/@codemirror/lang-yaml
45
- * https://www.npmjs.com/package/@codemirror/lang-xml
46
- * https://www.npmjs.com/package/@codemirror/lang-python
47
- * https://www.npmjs.com/package/@codemirror/lang-angular
48
- * https://www.npmjs.com/package/@codemirror/lang-vue
49
- * https://www.npmjs.com/package/@codemirror/autocomplete
50
- * https://www.npmjs.com/package/@codemirror/view
51
- * https://www.npmjs.com/package/@codemirror/lint
52
- * https://www.npmjs.com/package/@codemirror/commands
53
- * https://www.npmjs.com/package/@lezer/highlight
54
- * https://www.npmjs.com/package/@carbon/icons
55
- * https://www.npmjs.com/package/@carbon/utilities
56
- * https://www.npmjs.com/package/@carbon/icon-helpers
57
- * https://www.npmjs.com/package/program-language-detector
58
- * https://www.npmjs.com/package/lit-element
59
- * https://www.npmjs.com/package/@lit/reactive-element
60
- * https://www.npmjs.com/package/@marijn/find-cluster-break
61
- * https://www.npmjs.com/package/@codemirror/search
62
- * https://www.npmjs.com/package/crelt
63
- * https://www.npmjs.com/package/w3c-keyname
64
- * https://www.npmjs.com/package/style-mod
65
- * https://www.npmjs.com/package/@lezer/common
66
- * https://www.npmjs.com/package/@lezer/cpp
67
- * https://www.npmjs.com/package/@lezer/html
68
- * https://www.npmjs.com/package/@lezer/go
69
- * https://www.npmjs.com/package/@lezer/javascript
70
- * https://www.npmjs.com/package/@lezer/java
71
- * https://www.npmjs.com/package/@lezer/lr
72
- * https://www.npmjs.com/package/@lezer/json
73
- * https://www.npmjs.com/package/@lezer/php
74
- * https://www.npmjs.com/package/@lezer/markdown
75
- * https://www.npmjs.com/package/@lezer/sass
76
- * https://www.npmjs.com/package/@lezer/rust
77
- * https://www.npmjs.com/package/@lezer/xml
78
- * https://www.npmjs.com/package/@lezer/yaml
79
- * https://www.npmjs.com/package/@lezer/python
80
- * https://www.npmjs.com/package/@lezer/css
81
- * https://www.npmjs.com/package/@internationalized/number
82
- * https://www.npmjs.com/package/linkify-it
83
- * https://www.npmjs.com/package/mdurl
84
- * https://www.npmjs.com/package/punycode.js
85
- * https://www.npmjs.com/package/uc.micro
86
- * https://www.npmjs.com/package/@floating-ui/dom
87
- * https://www.npmjs.com/package/@floating-ui/core
88
- * https://www.npmjs.com/package/@floating-ui/utils
89
- */
90
-
91
- var n=/({)?[a-zA-Z0-9_]+(})?/;function e(n,e){for(var t,i,a=!1;!n.eol()&&(t=n.next())!=e.pending;){if("$"===t&&"\\"!=i&&'"'==e.pending){a=!0;break}i=t}return a&&n.backUp(1),t==e.pending?e.continueString=!1:e.continueString=!0,"string"}const t={name:"cmake",startState:function(){var n={inDefinition:!1,inInclude:!1,continueString:!1,pending:!1};return n},token:function(t,i){return t.eatSpace()?null:function(t,i){var a=t.next();return"$"===a?t.match(n)?"variableName.special":"variable":i.continueString?(t.backUp(1),e(t,i)):t.match(/(\s+)?\w+\(/)||t.match(/(\s+)?\w+\ \(/)?(t.backUp(1),"def"):"#"==a?(t.skipToEnd(),"comment"):"'"==a||'"'==a?(i.pending=a,e(t,i)):"("==a||")"==a?"bracket":a.match(/[0-9]/)?"number":(t.eatWhile(/[\w-]/),null)}(t,i)}};export{t as cmake};