@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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"code-snippet.js","sources":["../../../../src/components/code-snippet/src/code-snippet.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ import { css } from 'lit';
9
+
10
+ var styles = css([".cds-custom--layout--size-xs{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-xs,1.5rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-xs{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-xs,1.5rem))}.cds-custom--layout-constraint--size__min-xs{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-xs,1.5rem)}.cds-custom--layout-constraint--size__max-xs{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-xs,1.5rem)}.cds-custom--layout--size-sm{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-sm,2rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-sm{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-sm,2rem))}.cds-custom--layout-constraint--size__min-sm{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-sm,2rem)}.cds-custom--layout-constraint--size__max-sm{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-sm,2rem)}.cds-custom--layout--size-md{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-md,2.5rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-md{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-md,2.5rem))}.cds-custom--layout-constraint--size__min-md{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-md,2.5rem)}.cds-custom--layout-constraint--size__max-md{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-md,2.5rem)}.cds-custom--layout--size-lg{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-lg,3rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-lg{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-lg,3rem))}.cds-custom--layout-constraint--size__min-lg{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-lg,3rem)}.cds-custom--layout-constraint--size__max-lg{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-lg,3rem)}.cds-custom--layout--size-xl{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-xl,4rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-xl{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-xl,4rem))}.cds-custom--layout-constraint--size__min-xl{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-xl,4rem)}.cds-custom--layout-constraint--size__max-xl{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-xl,4rem)}.cds-custom--layout--size-2xl{--cds-custom-layout-size-height-context:var(--cds-custom-layout-size-height-2xl,5rem);--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context)}.cds-custom--layout-constraint--size__default-2xl{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-context,var(--cds-custom-layout-size-height-2xl,5rem))}.cds-custom--layout-constraint--size__min-2xl{--cds-custom-layout-size-height-min:var(--cds-custom-layout-size-height-2xl,5rem)}.cds-custom--layout-constraint--size__max-2xl{--cds-custom-layout-size-height-max:var(--cds-custom-layout-size-height-2xl,5rem)}.cds-custom--layout--density-condensed{--cds-custom-layout-density-padding-inline-context:var(--cds-custom-layout-density-padding-inline-condensed,0.5rem);--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context)}.cds-custom--layout-constraint--density__default-condensed{--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context,var(--cds-custom-layout-density-padding-inline-condensed,0.5rem))}.cds-custom--layout-constraint--density__min-condensed{--cds-custom-layout-density-padding-inline-min:var(--cds-custom-layout-density-padding-inline-condensed,0.5rem)}.cds-custom--layout-constraint--density__max-condensed{--cds-custom-layout-density-padding-inline-max:var(--cds-custom-layout-density-padding-inline-condensed,0.5rem)}.cds-custom--layout--density-normal{--cds-custom-layout-density-padding-inline-context:var(--cds-custom-layout-density-padding-inline-normal,1rem);--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context)}.cds-custom--layout-constraint--density__default-normal{--cds-custom-layout-density-padding-inline:var(--cds-custom-layout-density-padding-inline-context,var(--cds-custom-layout-density-padding-inline-normal,1rem))}.cds-custom--layout-constraint--density__min-normal{--cds-custom-layout-density-padding-inline-min:var(--cds-custom-layout-density-padding-inline-normal,1rem)}.cds-custom--layout-constraint--density__max-normal{--cds-custom-layout-density-padding-inline-max:var(--cds-custom-layout-density-padding-inline-normal,1rem)}:root{--cds-custom-layout-size-height-xs:1.5rem;--cds-custom-layout-size-height-sm:2rem;--cds-custom-layout-size-height-md:2.5rem;--cds-custom-layout-size-height-lg:3rem;--cds-custom-layout-size-height-xl:4rem;--cds-custom-layout-size-height-2xl:5rem;--cds-custom-layout-size-height-min:0px;--cds-custom-layout-size-height-max:999999999px;--cds-custom-layout-density-padding-inline-condensed:0.5rem;--cds-custom-layout-density-padding-inline-normal:1rem;--cds-custom-layout-density-padding-inline-min:0px;--cds-custom-layout-density-padding-inline-max:999999999px}.cds-custom--layer-one,:root{--cds-custom-layer:var(--cds-custom-layer-01,#f4f4f4);--cds-custom-layer-active:var(--cds-custom-layer-active-01,#c6c6c6);--cds-custom-layer-background:var(--cds-custom-layer-background-01,#fff);--cds-custom-layer-hover:var(--cds-custom-layer-hover-01,#e8e8e8);--cds-custom-layer-selected:var(--cds-custom-layer-selected-01,#e0e0e0);--cds-custom-layer-selected-hover:var(--cds-custom-layer-selected-hover-01,#d1d1d1);--cds-custom-layer-accent:var(--cds-custom-layer-accent-01,#e0e0e0);--cds-custom-layer-accent-hover:var(--cds-custom-layer-accent-hover-01,#d1d1d1);--cds-custom-layer-accent-active:var(--cds-custom-layer-accent-active-01,#a8a8a8);--cds-custom-field:var(--cds-custom-field-01,#f4f4f4);--cds-custom-field-hover:var(--cds-custom-field-hover-01,#e8e8e8);--cds-custom-border-subtle:var(--cds-custom-border-subtle-00,#e0e0e0);--cds-custom-border-subtle-selected:var(--cds-custom-border-subtle-selected-01,#c6c6c6);--cds-custom-border-strong:var(--cds-custom-border-strong-01,#8d8d8d);--cds-custom-border-tile:var(--cds-custom-border-tile-01,#c6c6c6)}.cds-custom--layer-two{--cds-custom-layer:var(--cds-custom-layer-02,#fff);--cds-custom-layer-active:var(--cds-custom-layer-active-02,#c6c6c6);--cds-custom-layer-background:var(--cds-custom-layer-background-02,#f4f4f4);--cds-custom-layer-hover:var(--cds-custom-layer-hover-02,#e8e8e8);--cds-custom-layer-selected:var(--cds-custom-layer-selected-02,#e0e0e0);--cds-custom-layer-selected-hover:var(--cds-custom-layer-selected-hover-02,#d1d1d1);--cds-custom-layer-accent:var(--cds-custom-layer-accent-02,#e0e0e0);--cds-custom-layer-accent-hover:var(--cds-custom-layer-accent-hover-02,#d1d1d1);--cds-custom-layer-accent-active:var(--cds-custom-layer-accent-active-02,#a8a8a8);--cds-custom-field:var(--cds-custom-field-02,#fff);--cds-custom-field-hover:var(--cds-custom-field-hover-02,#e8e8e8);--cds-custom-border-subtle:var(--cds-custom-border-subtle-01,#c6c6c6);--cds-custom-border-subtle-selected:var(--cds-custom-border-subtle-selected-02,#c6c6c6);--cds-custom-border-strong:var(--cds-custom-border-strong-02,#8d8d8d);--cds-custom-border-tile:var(--cds-custom-border-tile-02,#a8a8a8)}.cds-custom--layer-three{--cds-custom-layer:var(--cds-custom-layer-03,#f4f4f4);--cds-custom-layer-active:var(--cds-custom-layer-active-03,#c6c6c6);--cds-custom-layer-background:var(--cds-custom-layer-background-03,#fff);--cds-custom-layer-hover:var(--cds-custom-layer-hover-03,#e8e8e8);--cds-custom-layer-selected:var(--cds-custom-layer-selected-03,#e0e0e0);--cds-custom-layer-selected-hover:var(--cds-custom-layer-selected-hover-03,#d1d1d1);--cds-custom-layer-accent:var(--cds-custom-layer-accent-03,#e0e0e0);--cds-custom-layer-accent-hover:var(--cds-custom-layer-accent-hover-03,#d1d1d1);--cds-custom-layer-accent-active:var(--cds-custom-layer-accent-active-03,#a8a8a8);--cds-custom-field:var(--cds-custom-field-03,#f4f4f4);--cds-custom-field-hover:var(--cds-custom-field-hover-03,#e8e8e8);--cds-custom-border-subtle:var(--cds-custom-border-subtle-02,#e0e0e0);--cds-custom-border-subtle-selected:var(--cds-custom-border-subtle-selected-03,#c6c6c6);--cds-custom-border-strong:var(--cds-custom-border-strong-03,#8d8d8d);--cds-custom-border-tile:var(--cds-custom-border-tile-03,#c6c6c6)}.cds-custom--layer-one.cds-custom--layer__with-background,.cds-custom--layer-three.cds-custom--layer__with-background,.cds-custom--layer-two.cds-custom--layer__with-background{background-color:var(--cds-custom-layer-background)}@keyframes cds-custom--hide-feedback{0%{opacity:1;visibility:inherit}to{opacity:0;visibility:hidden}}@keyframes cds-custom--show-feedback{0%{opacity:0;visibility:hidden}to{opacity:1;visibility:inherit}}@keyframes cds-custom--skeleton{0%{opacity:.3;transform:scaleX(0);transform-origin:left}20%{opacity:1;transform:scaleX(1);transform-origin:left}28%{transform:scaleX(1);transform-origin:right}51%{transform:scaleX(0);transform-origin:right}58%{transform:scaleX(0);transform-origin:right}82%{transform:scaleX(1);transform-origin:right}83%{transform:scaleX(1);transform-origin:left}96%{transform:scaleX(0);transform-origin:left}to{opacity:.3;transform:scaleX(0);transform-origin:left}}.cds-custom--assistive-text,.cds-custom--visually-hidden{clip:rect(0,0,0,0);block-size:1px;border:0;inline-size:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;visibility:inherit;white-space:nowrap}.cds-custom--popover-container{display:inline-block}.cds-custom--popover-container:not(.cds-custom--popover--auto-align){position:relative}.cds-custom--popover--high-contrast .cds-custom--popover{--cds-custom-popover-background-color:var(--cds-custom-background-inverse,#393939);--cds-custom-popover-text-color:var(--cds-custom-text-inverse,#fff)}.cds-custom--popover--drop-shadow .cds-custom--popover{filter:var(--cds-custom-popover-drop-shadow,drop-shadow(0 .125rem .125rem rgba(0,0,0,.2)))}.cds-custom--popover--border>.cds-custom--popover>.cds-custom--popover-content{outline:1px solid var(--cds-custom-popover-border-color,var(--cds-custom-border-subtle));outline-offset:-1px}.cds-custom--popover--caret{--cds-custom-popover-offset:0.625rem}.cds-custom--popover{inset:0;pointer-events:none;position:absolute;z-index:6000}.cds-custom--popover-content{--cds-custom-layout-size-height-sm:2rem}.cds-custom--layout--size-sm :where(.cds-custom--popover-content),.cds-custom--popover-content.cds-custom--layout--size-sm{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-sm)}.cds-custom--popover-content{--cds-custom-layout-size-height-md:2.5rem}.cds-custom--layout--size-md :where(.cds-custom--popover-content),.cds-custom--popover-content.cds-custom--layout--size-md{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-md)}.cds-custom--popover-content{--cds-custom-layout-size-height-lg:3rem}.cds-custom--layout--size-lg :where(.cds-custom--popover-content),.cds-custom--popover-content.cds-custom--layout--size-lg{--cds-custom-layout-size-height:var(--cds-custom-layout-size-height-lg)}.cds-custom--popover-content{border:0;box-sizing:border-box;font-family:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}.cds-custom--popover-content *,.cds-custom--popover-content :after,.cds-custom--popover-content :before{box-sizing:inherit}.cds-custom--popover-content{background-color:var(--cds-custom-popover-background-color,var(--cds-custom-layer));border-radius:var(--cds-custom-popover-border-radius,2px);color:var(--cds-custom-popover-text-color,var(--cds-custom-text-primary,#161616));display:none;inline-size:-moz-max-content;inline-size:max-content;max-inline-size:23rem;pointer-events:auto;position:absolute;z-index:6000}.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-content{display:block}.cds-custom--popover--background-token__background>.cds-custom--popover>.cds-custom--popover-content{background-color:var(--cds-custom-background,#fff)}.cds-custom--popover-content:before{content:\"\";display:none;position:absolute}.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-content:before{display:block}.cds-custom--popover--auto-align.cds-custom--popover-caret,.cds-custom--popover-caret{display:none;position:absolute;will-change:transform;z-index:6000}.cds-custom--popover--auto-align.cds-custom--popover-caret:after,.cds-custom--popover-caret:after{background-color:var(--cds-custom-popover-background-color,var(--cds-custom-layer));content:\"\";display:block;position:absolute}.cds-custom--popover--auto-align.cds-custom--popover-caret:before,.cds-custom--popover-caret:before{background-color:var(--cds-custom-popover-border-color,var(--cds-custom-border-subtle));content:\"\";display:none;position:absolute}.cds-custom--popover--background-token__background>.cds-custom--popover>.cds-custom--popover-caret:after{background-color:var(--cds-custom-background,#fff)}.cds-custom--popover--auto-align.cds-custom--popover--caret.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--border .cds-custom--popover--auto-align.cds-custom--popover-caret:before,.cds-custom--popover--border .cds-custom--popover-caret:before,.cds-custom--popover--caret.cds-custom--popover--open>.cds-custom--popover>.cds-custom--popover-caret{display:block}.cds-custom--popover--tab-tip>.cds-custom--popover>.cds-custom--popover-caret{display:none}.cds-custom--popover--bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:0;inset-inline-start:50%;transform:translate(-50%,calc(100% + var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{transform:translate(50%,calc(100% + var(--cds-custom-popover-offset, 0rem)))}.cds-custom--popover--bottom-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:0;inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(100% + var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--bottom-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));inset-inline-start:auto}.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--bottom-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:0;inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(var(--cds-custom-popover-offset,0),calc(100% + var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--bottom-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem))}.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-content:before{block-size:var(--cds-custom-popover-offset,0);inset-block-start:0;inset-inline:0;transform:translateY(-100%)}.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem);inset-block-end:0;inset-inline-start:50%;transform:translate(-50%,var(--cds-custom-popover-offset,0))}.cds-custom--popover--border.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 100%,50% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret:after{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:1px;inset-inline-start:.5px}[dir=rtl] .cds-custom--popover--bottom-end>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom-left>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom-right>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom-start>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--bottom>.cds-custom--popover>.cds-custom--popover-caret{transform:translate(50%,var(--cds-custom-popover-offset,0))}.cds-custom--popover--bottom-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--bottom-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--bottom-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 100%,50% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--bottom-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:1px;inset-inline-start:.5px}.cds-custom--popover--top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:0;inset-inline-start:50%;transform:translate(-50%,calc(-100% - var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{transform:translate(50%,calc(-100% - var(--cds-custom-popover-offset, 0rem)))}.cds-custom--popover--top-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:0;inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(-100% - var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));inset-inline-start:auto}.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--top-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:0;inset-inline-end:calc(50% - var(--cds-custom-popover-offset, 0rem));transform:translate(var(--cds-custom-popover-offset,0),calc(-100% - var(--cds-custom-popover-offset, 0rem)))}[dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-start:calc(50% - var(--cds-custom-popover-offset, 0rem))}.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-content:before{block-size:var(--cds-custom-popover-offset,0);inset-block-end:0;inset-inline:0;transform:translateY(100%)}.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem);inset-block-start:0;inset-inline-start:50%;transform:translate(-50%,calc(var(--cds-custom-popover-offset, 0rem)*-1))}.cds-custom--popover--border.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 0,50% 100%,100% 0);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--top-end>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-left>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-right>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-start>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top>.cds-custom--popover>.cds-custom--popover-caret:after{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:-1px;inset-inline-start:.5px}[dir=rtl] .cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top-left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top-right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{transform:translate(50%,calc(var(--cds-custom-popover-offset, 0rem)*-1))}.cds-custom--popover--top-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-height,.375rem);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--top-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--top-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-height,.375rem);clip-path:polygon(0 0,50% 100%,100% 0);inline-size:var(--cds-custom-popover-caret-width,.75rem)}.cds-custom--popover--border.cds-custom--popover--top-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{inline-size:calc(var(--cds-custom-popover-caret-width, .75rem) - 1px);inset-block-start:-1px;inset-inline-start:.5px}.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-start:100%;transform:translate(var(--cds-custom-popover-offset,0),-50%)}.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-start:100%;transform:translate(var(--cds-custom-popover-offset,0),calc(var(--cds-custom-popover-offset, 0rem)*.5*-1 - 16px))}.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:50%;inset-inline-start:100%;transform:translate(var(--cds-custom-popover-offset,0),calc(var(--cds-custom-popover-offset, 0rem)*.5 + 16px))}[dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:100%;inset-inline-start:auto}.cds-custom--popover--right-bottom>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right-top>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--right>.cds-custom--popover>.cds-custom--popover-content:before{inline-size:var(--cds-custom-popover-offset,0);inset-block:0;inset-inline-start:0;transform:translateX(-100%)}.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem);inset-block-start:50%;inset-inline-start:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem) - 100%),-50%)}.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 50%,100% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}[dir=rtl] .cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{inset-inline-end:100%;inset-inline-start:auto}.cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 50%,100% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:1px}[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:-1px}.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 50%,100% 0,100% 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{inset-inline-start:1px}[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before{margin-inline-start:1px}[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--right.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{inset-inline-start:0}.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1 + .1px),-50%)}.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-start:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(var(--cds-custom-popover-offset, 0rem)*-.5 - 16px))}.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-block-end:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1),calc(var(--cds-custom-popover-offset, 0rem)*.5 + 16px))}[dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:auto;inset-inline-start:100%}.cds-custom--popover--left-bottom>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left-end>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left-start>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left-top>.cds-custom--popover>.cds-custom--popover-content:before,.cds-custom--popover--left>.cds-custom--popover>.cds-custom--popover-content:before{inline-size:var(--cds-custom-popover-offset,0);inset-block:0;inset-inline-end:0;transform:translateX(100%)}.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem);inset-block-start:50%;inset-inline-end:100%;transform:translate(calc(var(--cds-custom-popover-offset, 0rem)*-1 + 100%),-50%)}.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 0,100% 50%,0 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}[dir=rtl] .cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret,[dir=rtl] .cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret{inset-inline-end:auto;inset-inline-start:100%}.cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:before{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 0,100% 50%,0 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:-1px}[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-caret:after{inset-inline-start:1px}.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret,.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret{block-size:var(--cds-custom-popover-caret-width,.75rem);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{block-size:var(--cds-custom-popover-caret-width,.75rem);clip-path:polygon(0 0,100% 50%,0 100%);inline-size:var(--cds-custom-popover-caret-height,.375rem)}.cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,.cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{inset-inline-start:-1px}[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:before{margin-inline-start:-1px}[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-bottom.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-end.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-start.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left-top.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after,[dir=rtl] .cds-custom--popover--border.cds-custom--popover--left.cds-custom--popover--auto-align>.cds-custom--popover>.cds-custom--popover-content>.cds-custom--popover-caret:after{inset-inline-start:0}.cds-custom--popover--tab-tip>.cds-custom--popover>.cds-custom--popover-content{border-radius:0}.cds-custom--popover--tab-tip.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--tab-tip.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-start:0}.cds-custom--popover--tab-tip.cds-custom--popover--bottom-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,.cds-custom--popover--tab-tip.cds-custom--popover--top-end:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--bottom-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content,[dir=rtl] .cds-custom--popover--tab-tip.cds-custom--popover--top-start:not(.cds-custom--popover--auto-align)>.cds-custom--popover>.cds-custom--popover-content{inset-inline-end:0;inset-inline-start:auto}.cds-custom--popover--tab-tip .cds-custom--popover{will-change:filter}.cds-custom--popover--tab-tip__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:inherit;font-size:100%;inline-size:100%;margin:0;padding:0;text-align:start;vertical-align:baseline}.cds-custom--popover--tab-tip__button *,.cds-custom--popover--tab-tip__button :after,.cds-custom--popover--tab-tip__button :before{box-sizing:inherit}.cds-custom--popover--tab-tip__button::-moz-focus-inner{border:0}.cds-custom--popover--tab-tip__button{align-items:center;block-size:2rem;display:inline-flex;inline-size:2rem;justify-content:center;position:relative}.cds-custom--popover--tab-tip__button:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--popover--tab-tip__button:focus{outline-style:dotted}}.cds-custom--popover--tab-tip__button:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--popover--tab-tip__button{background:var(--cds-custom-layer);box-shadow:0 2px 2px rgba(0,0,0,.2)}.cds-custom--popover--tab-tip.cds-custom--popover--open .cds-custom--popover--tab-tip__button:not(:focus):after{background:var(--cds-custom-layer);block-size:2px;content:\"\";inline-size:100%;inset-block-end:0;position:absolute;z-index:6001}.cds-custom--popover--tab-tip__button svg{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--tooltip{--cds-custom-popover-offset:12px}.cds-custom--tooltip-content{font-size:var(--cds-custom-body-01-font-size,.875rem);font-weight:var(--cds-custom-body-01-font-weight,400);letter-spacing:var(--cds-custom-body-01-letter-spacing,.16px);line-height:var(--cds-custom-body-01-line-height,1.42857);max-inline-size:18rem;overflow-wrap:break-word;padding:var(--cds-custom-tooltip-padding-block,1rem) var(--cds-custom-tooltip-padding-inline,1rem)}.cds-custom--icon-tooltip{--cds-custom-tooltip-padding-block:0.125rem;--cds-custom-popover-caret-width:0.5rem;--cds-custom-popover-caret-height:0.25rem;--cds-custom-popover-offset:0.5rem}.cds-custom--icon-tooltip .cds-custom--tooltip-content{font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572)}.cds-custom--definition-term{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:inherit;font-size:100%;inline-size:100%;margin:0;padding:0;text-align:start;vertical-align:baseline}.cds-custom--definition-term *,.cds-custom--definition-term :after,.cds-custom--definition-term :before{box-sizing:inherit}.cds-custom--definition-term::-moz-focus-inner{border:0}.cds-custom--definition-term{border-block-end:1px dotted var(--cds-custom-border-strong);border-radius:0;color:var(--cds-custom-text-primary,#161616)}.cds-custom--definition-term:focus{outline:1px solid var(--cds-custom-focus,#0f62fe)}@media screen and (prefers-contrast){.cds-custom--definition-term:focus{outline-style:dotted}}.cds-custom--definition-term:focus,.cds-custom--definition-term:hover{border-block-end-color:var(--cds-custom-border-interactive,#0f62fe)}.cds-custom--definition-tooltip{text-wrap:auto;font-size:var(--cds-custom-body-01-font-size,.875rem);font-weight:var(--cds-custom-body-01-font-weight,400);letter-spacing:var(--cds-custom-body-01-letter-spacing,.16px);line-height:var(--cds-custom-body-01-line-height,1.42857);max-inline-size:11rem;padding:.5rem 1rem;word-break:break-word}.cds-custom--btn{--cds-custom-layout-size-height-local:clamp(max(var(--cds-custom-layout-size-height-min),var(--cds-custom-layout-size-height-xs)),var(--cds-custom-layout-size-height,var(--cds-custom-layout-size-height-lg)),min(var(--cds-custom-layout-size-height-max),var(--cds-custom-layout-size-height-2xl)));--cds-custom-layout-density-padding-inline-local:clamp(var(--cds-custom-layout-density-padding-inline-min),var(--cds-custom-layout-density-padding-inline,var(--cds-custom-layout-density-padding-inline-normal)),var(--cds-custom-layout-density-padding-inline-max));--temp-1lh:(var(--cds-custom-body-compact-01-line-height,1.28572) * 1em);--temp-expressive-1lh:(var(--cds-custom-body-compact-02-line-height,1.375) * 1em);--temp-padding-block-max:calc((var(--cds-custom-layout-size-height-lg) - var(--temp-1lh))/2 - 0.0625rem);border:0;box-sizing:border-box;font-family:inherit;font-size:100%;padding:0;vertical-align:baseline}.cds-custom--btn *,.cds-custom--btn :after,.cds-custom--btn :before{box-sizing:inherit}.cds-custom--btn{border-radius:0;cursor:pointer;display:inline-flex;flex-shrink:0;font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);inline-size:-moz-max-content;inline-size:max-content;justify-content:space-between;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);margin:0;max-inline-size:20rem;min-block-size:var(--cds-custom-layout-size-height-local);outline:none;padding-block:min((var(--cds-custom-layout-size-height-local) - var(--temp-1lh))/2 - .0625rem,var(--temp-padding-block-max));padding-inline:calc(var(--cds-custom-layout-density-padding-inline-local) - .0625rem) calc(var(--cds-custom-layout-density-padding-inline-local)*3 + .9375rem);position:relative;text-align:start;text-decoration:none;transition:background 70ms cubic-bezier(0,0,.38,.9),box-shadow 70ms cubic-bezier(0,0,.38,.9),border-color 70ms cubic-bezier(0,0,.38,.9),outline 70ms cubic-bezier(0,0,.38,.9);vertical-align:top}.cds-custom--btn.cds-custom--btn--disabled,.cds-custom--btn.cds-custom--btn--disabled:focus,.cds-custom--btn.cds-custom--btn--disabled:hover,.cds-custom--btn:disabled,.cds-custom--btn:focus:disabled,.cds-custom--btn:hover:disabled{background:var(--cds-custom-button-disabled,#c6c6c6);border-color:var(--cds-custom-button-disabled,#c6c6c6);box-shadow:none;color:var(--cds-custom-text-on-color-disabled,#8d8d8d);cursor:not-allowed}.cds-custom--btn .cds-custom--btn__icon{block-size:1rem;flex-shrink:0;inline-size:1rem;inset-block-start:min((var(--cds-custom-layout-size-height-local) - 1rem)/2 - .0625rem,var(--temp-padding-block-max));inset-inline-end:var(--cds-custom-layout-density-padding-inline-local);margin-block-start:.0625rem;position:absolute}.cds-custom--btn::-moz-focus-inner{border:0;padding:0}.cds-custom--btn--primary{background-color:var(--cds-custom-button-primary,#0f62fe);border:1px solid transparent;color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--primary:hover{background-color:var(--cds-custom-button-primary-hover,#0050e6)}.cds-custom--btn--primary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--primary:active{background-color:var(--cds-custom-button-primary-active,#002d9c)}.cds-custom--btn--primary .cds-custom--btn__icon,.cds-custom--btn--primary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--primary:hover,.cds-custom--btn--secondary{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--secondary{background-color:var(--cds-custom-button-secondary,#393939);border:1px solid transparent}.cds-custom--btn--secondary:hover{background-color:var(--cds-custom-button-secondary-hover,#474747)}.cds-custom--btn--secondary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--secondary:active{background-color:var(--cds-custom-button-secondary-active,#6f6f6f)}.cds-custom--btn--secondary .cds-custom--btn__icon,.cds-custom--btn--secondary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--secondary:focus,.cds-custom--btn--secondary:hover{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--tertiary{background-color:transparent;border-color:var(--cds-custom-button-tertiary,#0f62fe);border-style:solid;border-width:1px;color:var(--cds-custom-button-tertiary,#0f62fe)}.cds-custom--btn--tertiary:hover{background-color:var(--cds-custom-button-tertiary-hover,#0050e6)}.cds-custom--btn--tertiary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--tertiary .cds-custom--btn__icon,.cds-custom--btn--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--tertiary:focus,.cds-custom--btn--tertiary:hover{color:var(--cds-custom-text-inverse,#fff)}.cds-custom--btn--tertiary:focus{background-color:var(--cds-custom-button-tertiary,#0f62fe)}.cds-custom--btn--tertiary:active{background-color:var(--cds-custom-button-tertiary-active,#002d9c);border-color:transparent;color:var(--cds-custom-text-inverse,#fff)}.cds-custom--btn--tertiary.cds-custom--btn--disabled,.cds-custom--btn--tertiary.cds-custom--btn--disabled:focus,.cds-custom--btn--tertiary.cds-custom--btn--disabled:hover,.cds-custom--btn--tertiary:disabled,.cds-custom--btn--tertiary:focus:disabled,.cds-custom--btn--tertiary:hover:disabled{background:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--ghost{background-color:transparent;border:1px solid transparent;color:var(--cds-custom-link-primary,#0f62fe)}.cds-custom--btn--ghost:hover{background-color:var(--cds-custom-background-hover,hsla(0,0%,55%,.12))}.cds-custom--btn--ghost:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--ghost .cds-custom--btn__icon,.cds-custom--btn--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--ghost{padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local) - .0625rem)}.cds-custom--btn--ghost .cds-custom--btn__icon{align-self:center;margin-inline-start:.5rem;position:static}.cds-custom--btn--ghost:active,.cds-custom--btn--ghost:hover{color:var(--cds-custom-link-primary-hover,#0043ce)}.cds-custom--btn--ghost:active{background-color:var(--cds-custom-background-active,hsla(0,0%,55%,.5))}.cds-custom--btn--ghost.cds-custom--btn--disabled,.cds-custom--btn--ghost.cds-custom--btn--disabled:focus,.cds-custom--btn--ghost.cds-custom--btn--disabled:hover,.cds-custom--btn--ghost:disabled,.cds-custom--btn--ghost:focus:disabled,.cds-custom--btn--ghost:hover:disabled{background:transparent;border-color:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--ghost:not([disabled]) svg{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--btn--icon-only{align-items:center;block-size:var(--cds-custom-layout-size-height-local);inline-size:var(--cds-custom-layout-size-height-local);justify-content:center;padding:0;padding-block-start:0}.cds-custom--btn--icon-only>:first-child{min-inline-size:1rem}.cds-custom--btn--icon-only .cds-custom--btn__icon{position:static}.cds-custom--btn--icon-only.cds-custom--btn--danger--ghost .cds-custom--btn__icon,.cds-custom--btn--icon-only.cds-custom--btn--ghost .cds-custom--btn__icon{margin:0}.cds-custom--btn--icon-only.cds-custom--btn--danger--ghost{padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local) - 1rem)}.cds-custom--btn--xs:not(.cds-custom--btn--icon-only){padding-block-start:1.5px}.cds-custom--btn--md:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,.cds-custom--btn--sm:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon,.cds-custom--btn--xs:not(.cds-custom--btn--icon-only) .cds-custom--btn__icon{margin-block-start:0}.cds-custom--btn--icon-only.cds-custom--btn--selected{background:var(--cds-custom-background-selected,hsla(0,0%,55%,.2))}.cds-custom--btn path[data-icon-path=inner-path]{fill:none}.cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon,.cds-custom--btn--ghost.cds-custom--btn--icon-only .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon,.cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled] .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]),.cds-custom--btn.cds-custom--btn--icon-only.cds-custom--btn--ghost[disabled]:hover .cds-custom--btn__icon{fill:var(--cds-custom-icon-on-color-disabled,#8d8d8d)}.cds-custom--btn--ghost.cds-custom--btn--icon-only[disabled],.cds-custom--icon-tooltip--disabled .cds-custom--tooltip-trigger__wrapper{cursor:not-allowed}.cds-custom--icon-tooltip--disabled .cds-custom--btn--icon-only[disabled]{pointer-events:none}.cds-custom--btn--danger{background-color:var(--cds-custom-button-danger-primary,#da1e28);border:1px solid transparent;color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger:hover{background-color:var(--cds-custom-button-danger-hover,#b81921)}.cds-custom--btn--danger:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--danger:active{background-color:var(--cds-custom-button-danger-active,#750e13)}.cds-custom--btn--danger .cds-custom--btn__icon,.cds-custom--btn--danger .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--danger:hover{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary{background-color:transparent;border-color:var(--cds-custom-button-danger-secondary,#da1e28);border-style:solid;border-width:1px;color:var(--cds-custom-button-danger-secondary,#da1e28)}.cds-custom--btn--danger--tertiary:hover{background-color:var(--cds-custom-button-danger-hover,#b81921)}.cds-custom--btn--danger--tertiary:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--danger--tertiary .cds-custom--btn__icon,.cds-custom--btn--danger--tertiary .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--danger--tertiary:hover{border-color:var(--cds-custom-button-danger-hover,#b81921);color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary:focus{background-color:var(--cds-custom-button-danger-primary,#da1e28);color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary:active{background-color:var(--cds-custom-button-danger-active,#750e13);border-color:var(--cds-custom-button-danger-active,#750e13);color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--tertiary.cds-custom--btn--disabled,.cds-custom--btn--danger--tertiary.cds-custom--btn--disabled:focus,.cds-custom--btn--danger--tertiary.cds-custom--btn--disabled:hover,.cds-custom--btn--danger--tertiary:disabled,.cds-custom--btn--danger--tertiary:focus:disabled,.cds-custom--btn--danger--tertiary:hover:disabled{background:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--danger--ghost{background-color:transparent;border:1px solid transparent;color:var(--cds-custom-button-danger-secondary,#da1e28)}.cds-custom--btn--danger--ghost:hover{background-color:var(--cds-custom-button-danger-hover,#b81921)}.cds-custom--btn--danger--ghost:focus{border-color:var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe));box-shadow:inset 0 0 0 1px var(--cds-custom-button-focus-color,var(--cds-custom-focus,#0f62fe)),inset 0 0 0 2px var(--cds-custom-background,#fff)}.cds-custom--btn--danger--ghost:active{background-color:var(--cds-custom-button-danger-active,#750e13)}.cds-custom--btn--danger--ghost .cds-custom--btn__icon,.cds-custom--btn--danger--ghost .cds-custom--btn__icon path:not([data-icon-path]):not([fill=none]){fill:currentColor}.cds-custom--btn--danger--ghost{padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local) - .0625rem)}.cds-custom--btn--danger--ghost .cds-custom--btn__icon{margin-inline-start:.5rem;position:static}.cds-custom--btn--danger--ghost:active,.cds-custom--btn--danger--ghost:hover{color:var(--cds-custom-text-on-color,#fff)}.cds-custom--btn--danger--ghost.cds-custom--btn--disabled,.cds-custom--btn--danger--ghost.cds-custom--btn--disabled:focus,.cds-custom--btn--danger--ghost.cds-custom--btn--disabled:hover,.cds-custom--btn--danger--ghost:disabled,.cds-custom--btn--danger--ghost:focus:disabled,.cds-custom--btn--danger--ghost:hover:disabled{background:transparent;border-color:transparent;color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));outline:none}.cds-custom--btn--expressive{font-size:var(--cds-custom-body-compact-02-font-size,1rem);font-weight:var(--cds-custom-body-compact-02-font-weight,400);letter-spacing:var(--cds-custom-body-compact-02-letter-spacing,0);line-height:var(--cds-custom-body-compact-02-line-height,1.375);padding-block:min((var(--cds-custom-layout-size-height-local) - var(--temp-expressive-1lh))/2 - .0625rem,var(--temp-padding-block-max))}.cds-custom--btn--icon-only.cds-custom--btn--expressive{padding:12px 13px}.cds-custom--btn.cds-custom--btn--expressive .cds-custom--btn__icon{block-size:1.25rem;inline-size:1.25rem}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--expressive{max-inline-size:20rem}.cds-custom--btn.cds-custom--skeleton{background:var(--cds-custom-skeleton-background,#e8e8e8);border:none;box-shadow:none;padding:0;pointer-events:none;position:relative}.cds-custom--btn.cds-custom--skeleton:active,.cds-custom--btn.cds-custom--skeleton:focus,.cds-custom--btn.cds-custom--skeleton:hover{border:none;cursor:default;outline:none}.cds-custom--btn.cds-custom--skeleton:before{animation:cds-custom--skeleton 3s ease-in-out infinite;background:var(--cds-custom-skeleton-element,#c6c6c6);block-size:100%;content:\"\";inline-size:100%;inset-inline-start:0;position:absolute;will-change:transform-origin,transform,opacity}@media (prefers-reduced-motion:reduce){.cds-custom--btn.cds-custom--skeleton:before{animation:none}}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--btn.cds-custom--skeleton{background:CanvasText}.cds-custom--btn.cds-custom--skeleton:before{background:Canvas;forced-color-adjust:none}}.cds-custom--btn.cds-custom--skeleton{inline-size:9.375rem}.cds-custom--btn-set{display:flex}.cds-custom--btn-set--stacked{flex-direction:column}.cds-custom--btn-set .cds-custom--btn{inline-size:100%;max-inline-size:12.25rem}.cds-custom--btn-set .cds-custom--btn:not(:focus){box-shadow:-.0625rem 0 0 0 var(--cds-custom-button-separator,#e0e0e0)}.cds-custom--btn-set .cds-custom--btn:first-of-type:not(:focus),.cds-custom--btn-set .cds-custom--btn:focus+.cds-custom--btn{box-shadow:inherit}.cds-custom--btn-set--stacked .cds-custom--btn:not(:focus){box-shadow:0 -.0625rem 0 0 var(--cds-custom-button-separator,#e0e0e0)}.cds-custom--btn-set--stacked .cds-custom--btn:first-of-type:not(:focus){box-shadow:inherit}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled{box-shadow:-.0625rem 0 0 0 var(--cds-custom-icon-on-color-disabled,#8d8d8d)}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--disabled:first-of-type{box-shadow:none}.cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled{box-shadow:0 -.0625rem 0 0 var(--cds-custom-layer-selected-disabled,#8d8d8d)}.cds-custom--btn-set--stacked .cds-custom--btn.cds-custom--btn--disabled:first-of-type{box-shadow:none}.cds-custom--btn-set .cds-custom--btn.cds-custom--btn--loading{background-color:transparent;border-color:transparent;box-shadow:none}.cds-custom--btn--sm .cds-custom--badge-indicator{margin-block-start:.25rem;margin-inline-end:.25rem}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--btn:focus{color:Highlight;outline:1px solid Highlight}}[dir=rtl] .cds-custom--btn-set .cds-custom--btn:not(:focus){box-shadow:.0625rem 0 0 0 var(--cds-custom-button-separator,#e0e0e0)}.cds-custom--btn-set--fluid{container-type:inline-size}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner{--flex-direction:row;align-items:stretch;display:flex;flex-direction:var(--flex-direction);inline-size:100%;justify-content:flex-end}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner .cds-custom--btn{flex:0 1 25%;max-inline-size:14.5rem}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack .cds-custom--btn{min-inline-size:11rem}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner .cds-custom--btn--danger--ghost,.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner .cds-custom--btn--ghost{flex:1 1 25%;max-inline-size:none;padding-inline-start:2rem}@container (width <= 11rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:first-child:last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:first-child:last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:first-child:last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 22rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(2):last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 33rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(3):last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 44rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child){--flex-direction:column}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds-custom--btn{flex:initial;inline-size:100%;max-inline-size:none}.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner--auto-stack:has(:nth-child(4):last-child) .cds-custom--btn--ghost{padding-inline-start:1rem}}@container (width <= 44rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner:has(:nth-child(2):last-child) .cds-custom--btn{flex-basis:50%;max-inline-size:none}}@container (width <= 33rem){.cds-custom--btn-set--fluid .cds-custom--btn-set__fluid-inner:has(:first-child:last-child) .cds-custom--btn{flex:1 1 100%;max-inline-size:none}}.cds-custom--copy-btn{position:relative}.cds-custom--copy-btn:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--copy-btn:active{background-color:var(--cds-custom-layer-active)}.cds-custom--copy-btn:before{block-size:0;border-style:solid;content:\"\";display:none;inline-size:0;position:absolute;z-index:6000}.cds-custom--copy-btn .cds-custom--copy-btn__feedback{background-color:var(--cds-custom-background-inverse,#393939);block-size:auto;border-radius:.125rem;box-shadow:0 2px 6px var(--cds-custom-shadow,rgba(0,0,0,.3));color:var(--cds-custom-text-inverse,#fff);font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:400;font-weight:var(--cds-custom-body-compact-01-font-weight,400);inline-size:-moz-max-content;inline-size:max-content;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);max-inline-size:13rem;min-inline-size:1.5rem;padding:.5rem 1rem;text-align:start;transform:translateX(-50%);z-index:6000}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-accelerator:true){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-ime-align:auto){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{inline-size:auto}}@media screen and (-ms-high-contrast:active),screen and (prefers-contrast){.cds-custom--copy-btn .cds-custom--copy-btn__feedback{border:1px solid transparent}}.cds-custom--copy-btn .cds-custom--copy-btn__feedback{clip:auto;box-sizing:content-box;display:none;margin:auto;overflow:visible}.cds-custom--copy-btn.cds-custom--copy-btn--animating .cds-custom--copy-btn__feedback,.cds-custom--copy-btn.cds-custom--copy-btn--animating:before{display:block}.cds-custom--copy-btn.cds-custom--copy-btn--animating:before{border:none}.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out .cds-custom--copy-btn__feedback,.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out:before{animation:cds-custom--hide-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in .cds-custom--copy-btn__feedback,.cds-custom--copy-btn.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in:before{animation:cds-custom--show-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--copy-btn svg{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--copy{font-size:0}.cds-custom--snippet html,.cds-aichat--snippet html{font-size:100%}.cds-custom--snippet body,.cds-aichat--snippet body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-weight:400;text-rendering:optimizeLegibility}.cds-custom--snippet code,.cds-aichat--snippet code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--snippet strong,.cds-aichat--snippet strong{font-weight:600}.cds-custom--snippet--disabled,.cds-custom--snippet--disabled .cds-custom--btn.cds-custom--snippet-btn--expand,:host([disabled]),:host([disabled]) .cds-custom--btn.cds-custom--snippet-btn--expand{background-color:var(--cds-custom-layer);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25))}.cds-custom--snippet--disabled .cds-custom--copy-btn,.cds-custom--snippet--disabled .cds-custom--copy-btn:hover,.cds-custom--snippet--disabled .cds-custom--snippet-btn--expand:hover,:host([disabled]) .cds-custom--copy-btn,:host([disabled]) .cds-custom--snippet-btn--expand:hover{background-color:var(--cds-custom-layer);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));cursor:not-allowed}.cds-custom--snippet--disabled .cds-custom--snippet-btn--expand .cds-custom--icon-chevron--down,.cds-custom--snippet--disabled .cds-custom--snippet__icon,:host([disabled]) .cds-custom--snippet-btn--expand .cds-custom--icon-chevron--down,:host([disabled]) .cds-custom--snippet__icon{fill:var(--cds-custom-icon-disabled,hsla(0,0%,9%,.25))}.cds-custom--snippet code,.cds-aichat--snippet code{font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333)}.cds-custom--snippet--inline html{font-size:100%}.cds-custom--snippet--inline body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-weight:400;text-rendering:optimizeLegibility}.cds-custom--snippet--inline code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--snippet--inline strong{font-weight:600}.cds-custom--snippet--inline{background-color:var(--cds-custom-layer);border:1px solid transparent;border-radius:4px;color:var(--cds-custom-text-primary,#161616);cursor:pointer;display:inline;padding:0;position:relative}.cds-custom--snippet--inline:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--snippet--inline:active{background-color:var(--cds-custom-layer-active)}.cds-custom--snippet--inline:focus{border:1px solid var(--cds-custom-focus,#0f62fe);outline:none}.cds-custom--snippet--inline:before{block-size:0;border:none;content:\"\";display:none;inline-size:0;position:absolute;z-index:6000}.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{background-color:var(--cds-custom-background-inverse,#393939);block-size:auto;border-radius:.125rem;box-shadow:0 2px 6px var(--cds-custom-shadow,rgba(0,0,0,.3));color:var(--cds-custom-text-inverse,#fff);font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:400;font-weight:var(--cds-custom-body-compact-01-font-weight,400);inline-size:-moz-max-content;inline-size:max-content;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);max-inline-size:13rem;min-inline-size:1.5rem;padding:.5rem 1rem;text-align:start;transform:translateX(-50%);z-index:6000}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-accelerator:true){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{inline-size:auto}}@supports (-ms-ime-align:auto){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{inline-size:auto}}@media screen and (-ms-high-contrast:active),screen and (prefers-contrast){.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{border:1px solid transparent}}.cds-custom--snippet--inline .cds-custom--copy-btn__feedback{clip:auto;box-sizing:content-box;display:none;margin:auto;overflow:visible}.cds-custom--snippet--inline.cds-custom--copy-btn--animating .cds-custom--copy-btn__feedback,.cds-custom--snippet--inline.cds-custom--copy-btn--animating:before{display:block}.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out .cds-custom--copy-btn__feedback,.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-out:before{animation:cds-custom--hide-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in .cds-custom--copy-btn__feedback,.cds-custom--snippet--inline.cds-custom--copy-btn--animating.cds-custom--copy-btn--fade-in:before{animation:cds-custom--show-feedback .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--inline code{padding:0 .5rem}.cds-custom--snippet--inline.cds-custom--snippet--no-copy{display:inline-block}.cds-custom--snippet--inline.cds-custom--snippet--no-copy:hover{background-color:var(--cds-custom-layer);cursor:auto}.cds-custom--snippet--light.cds-custom--snippet--inline.cds-custom--snippet--no-copy:hover{background-color:var(--cds-custom-layer-hover);cursor:auto}.cds-custom--snippet--single{align-items:center;background-color:var(--cds-custom-layer);block-size:2.5rem;display:flex;font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);inline-size:100%;letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333);max-inline-size:48rem;padding-inline-end:2.5rem;position:relative}.cds-custom--snippet--single.cds-custom--snippet--no-copy{padding:0}.cds-custom--snippet--single.cds-custom--snippet--no-copy:after{inset-inline-end:1rem}.cds-custom--snippet--single .cds-custom--snippet-container,.cds-custom--snippet--single .cds-aichat--snippet-container{align-items:center;block-size:100%;display:flex;overflow-x:auto;padding-inline-start:1rem;position:relative}.cds-custom--snippet--single .cds-custom--snippet-container:focus,.cds-custom--snippet--single .cds-aichat--snippet-container:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--snippet--single .cds-custom--snippet-container:focus,.cds-custom--snippet--single .cds-aichat--snippet-container:focus{outline-style:dotted}}.cds-custom--snippet--single pre{font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333);padding-inline-end:2rem}.cds-custom--snippet--inline code,.cds-custom--snippet--single pre{white-space:pre}.cds-custom--snippet--multi,.cds-aichat--snippet{background-color:var(--cds-custom-layer);display:flex;font-family:var(--cds-custom-code-01-font-family,\"IBM Plex Mono\",system-ui,-apple-system,BlinkMacSystemFont,\".SFNSText-Regular\",monospace);font-size:var(--cds-custom-code-01-font-size,.75rem);font-weight:var(--cds-custom-code-01-font-weight,400);inline-size:100%;letter-spacing:var(--cds-custom-code-01-letter-spacing,.32px);line-height:var(--cds-custom-code-01-line-height,1.33333);max-inline-size:48rem;padding:1rem}.cds-custom--snippet--multi .cds-custom--snippet-container,.cds-custom--snippet--multi .cds-aichat--snippet-container,.cds-aichat--snippet .cds-custom--snippet-container,.cds-aichat--snippet .cds-aichat--snippet-container{max-block-size:100%;min-block-size:100%;order:1;overflow-y:auto;position:relative;transition:max-height .15s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--multi .cds-custom--snippet-container:focus,.cds-custom--snippet--multi .cds-aichat--snippet-container:focus,.cds-aichat--snippet .cds-custom--snippet-container:focus,.cds-aichat--snippet .cds-aichat--snippet-container:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--snippet--multi .cds-custom--snippet-container:focus,.cds-custom--snippet--multi .cds-aichat--snippet-container:focus,.cds-aichat--snippet .cds-custom--snippet-container:focus,.cds-aichat--snippet .cds-aichat--snippet-container:focus{outline-style:dotted}}.cds-custom--snippet--multi .cds-custom--snippet-container:focus,.cds-custom--snippet--multi .cds-aichat--snippet-container:focus,.cds-aichat--snippet .cds-custom--snippet-container:focus,.cds-aichat--snippet .cds-aichat--snippet-container:focus{outline-offset:0}.cds-custom--snippet--expand.cds-aichat--snippet .cds-custom--snippet-container,.cds-custom--snippet--expand.cds-aichat--snippet .cds-aichat--snippet-container,.cds-custom--snippet--multi.cds-custom--snippet--expand .cds-custom--snippet-container,.cds-custom--snippet--multi.cds-custom--snippet--expand .cds-aichat--snippet-container{padding-block-end:1rem;transition:max-height .15s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet--multi.cds-custom--snippet--wraptext pre,.cds-custom--snippet--wraptext.cds-aichat--snippet pre{word-wrap:break-word;white-space:pre-wrap}.cds-custom--snippet--multi .cds-custom--snippet-container pre,.cds-custom--snippet--multi .cds-aichat--snippet-container pre,.cds-aichat--snippet .cds-custom--snippet-container pre,.cds-aichat--snippet .cds-aichat--snippet-container pre{overflow:auto;padding-block-end:1.5rem;padding-inline-end:1.5rem}.cds-custom--snippet--multi.cds-custom--snippet--no-copy .cds-custom--snippet-container pre,.cds-custom--snippet--multi.cds-custom--snippet--no-copy .cds-aichat--snippet-container pre,.cds-custom--snippet--no-copy.cds-aichat--snippet .cds-custom--snippet-container pre,.cds-custom--snippet--no-copy.cds-aichat--snippet .cds-aichat--snippet-container pre{padding-inline-end:0}[dir=rtl] .cds-custom--snippet--has-right-overflow.cds-aichat--snippet:after,[dir=rtl] .cds-custom--snippet--multi.cds-custom--snippet--has-right-overflow:after{background-image:linear-gradient(to left,transparent,var(--cds-custom-layer))}.cds-custom--snippet--multi .cds-custom--snippet-container pre code,.cds-custom--snippet--multi .cds-aichat--snippet-container pre code,.cds-aichat--snippet .cds-custom--snippet-container pre code,.cds-aichat--snippet .cds-aichat--snippet-container pre code{overflow:hidden}.cds-custom--snippet__icon{fill:var(--cds-custom-icon-primary,#161616);block-size:1rem;inline-size:1rem;transition:all 70ms cubic-bezier(.2,0,.38,.9)}.cds-custom--btn>.cds-custom--snippet__icon{margin-block-start:0}.cds-custom--copy-btn html{font-size:100%}.cds-custom--copy-btn body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-weight:400;text-rendering:optimizeLegibility}.cds-custom--copy-btn code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--copy-btn strong{font-weight:600}.cds-custom--copy-btn{align-items:center;background-color:var(--cds-custom-layer);border:none;cursor:pointer;display:flex;justify-content:center;outline:none;overflow:visible;padding:0}.cds-custom--copy-btn:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--copy-btn:focus{outline-style:dotted}}.cds-custom--copy-btn:focus{outline-color:var(--cds-custom-focus,#0f62fe)}.cds-custom--snippet .cds-custom--popover-container,.cds-aichat--snippet .cds-custom--popover-container{font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;inset-block-start:0;inset-inline-end:0;position:absolute}.cds-custom--snippet--inline.cds-custom--btn{block-size:1.25rem;inline-size:auto;max-inline-size:unset;min-block-size:1.25rem;padding-inline:0}.cds-custom--snippet--inline.cds-custom--btn.cds-custom--btn--primary:hover{color:var(--cds-custom-text-primary,#161616)}.cds-custom--snippet.cds-custom--snippet--multi .cds-custom--popover-container,.cds-aichat--snippet .cds-custom--popover-container{inset-block-start:.5rem;inset-inline-end:.5rem}.cds-custom--snippet--multi .cds-custom--copy-btn,.cds-aichat--snippet .cds-custom--copy-btn{z-index:10}.cds-custom--snippet-btn--expand{align-items:center;background-color:var(--cds-custom-layer);block-size:2rem;border:0;color:var(--cds-custom-text-primary,#161616);display:inline-flex;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif;font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);inset-block-end:0;inset-inline-end:0;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);padding:.5rem 1rem;position:absolute;z-index:10}.cds-custom--snippet-btn--expand .cds-custom--snippet-btn--text{inset-block-start:-.0625rem;position:relative}.cds-custom--snippet-btn--expand--hide.cds-custom--snippet-btn--expand{display:none}.cds-custom--snippet-btn--expand .cds-custom--icon-chevron--down{fill:var(--cds-custom-icon-primary,#161616);margin-inline-start:.5rem;transform:rotate(0deg);transition:.15s cubic-bezier(.2,0,.38,.9)}.cds-custom--snippet-btn--expand:hover{background:var(--cds-custom-layer-hover);color:var(--cds-custom-text-primary,#161616)}.cds-custom--snippet-btn--expand:active{background-color:var(--cds-custom-layer-active)}.cds-custom--snippet-btn--expand:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--snippet-btn--expand:focus{outline-style:dotted}}.cds-custom--snippet-btn--expand:focus{border-color:transparent}.cds-custom--snippet--expand .cds-custom--snippet-btn--expand .cds-custom--icon-chevron--down{transform:rotate(180deg);transition:transform .3s}.cds-custom--snippet--light,.cds-custom--snippet--light .cds-custom--btn.cds-custom--snippet-btn--expand,.cds-custom--snippet--light .cds-custom--copy-btn,.cds-custom--snippet--light .cds-custom--snippet-button{background-color:var(--cds-custom-layer)}.cds-custom--snippet--light .cds-custom--btn.cds-custom--snippet-btn--expand:hover,.cds-custom--snippet--light .cds-custom--copy-btn:hover,.cds-custom--snippet--light .cds-custom--snippet-button:hover,.cds-custom--snippet--light.cds-custom--snippet--inline:hover{background-color:var(--cds-custom-layer-hover)}.cds-custom--snippet--light .cds-custom--btn.cds-custom--snippet-btn--expand:active,.cds-custom--snippet--light .cds-custom--copy-btn:active,.cds-custom--snippet--light .cds-custom--snippet-button:active,.cds-custom--snippet--light.cds-custom--snippet--inline:active{background-color:var(--cds-custom-layer-active)}.cds-custom--skeleton.cds-aichat--snippet .cds-custom--snippet-container,.cds-custom--skeleton.cds-aichat--snippet .cds-aichat--snippet-container,.cds-custom--snippet.cds-custom--skeleton .cds-custom--snippet-container,.cds-custom--snippet.cds-custom--skeleton .cds-aichat--snippet-container{block-size:100%;inline-size:100%}.cds-custom--snippet-button .cds-custom--btn--copy__feedback{inset-block-start:3.175rem;inset-inline:50% auto}.cds-custom--snippet-button .cds-custom--btn--copy__feedback:before{inset-block-start:0}.cds-custom--snippet-button .cds-custom--btn--copy__feedback:after{inset-block-start:-.25rem}.cds-custom--snippet--multi .cds-custom--snippet-button .cds-custom--btn--copy__feedback,.cds-aichat--snippet .cds-custom--snippet-button .cds-custom--btn--copy__feedback{inset-block-start:2.675rem}.cds-custom--snippet--inline .cds-custom--btn--copy__feedback{inset-block-start:calc(100% - .25rem);inset-inline:50% auto}.cds-custom--snippet--single .cds-custom--snippet-container,.cds-custom--snippet--single .cds-aichat--snippet-container{-webkit-mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent);mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent);pointer-events:auto}.cds-custom--snippet--multi,.cds-aichat--snippet{position:relative}.cds-custom--snippet--multi .cds-custom--snippet-container,.cds-custom--snippet--multi .cds-aichat--snippet-container,.cds-aichat--snippet .cds-custom--snippet-container,.cds-aichat--snippet .cds-aichat--snippet-container{inline-size:100%;-webkit-mask-composite:source-in,xor;mask-composite:intersect;-webkit-mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(90deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent);pointer-events:auto}[dir=rtl] .cds-custom--snippet--single .cds-custom--snippet-container,[dir=rtl] .cds-custom--snippet--single .cds-aichat--snippet-container{-webkit-mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent);mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent)}[dir=rtl] .cds-custom--snippet--multi .cds-custom--snippet-container,[dir=rtl] .cds-custom--snippet--multi .cds-aichat--snippet-container,[dir=rtl] .cds-aichat--snippet .cds-custom--snippet-container,[dir=rtl] .cds-aichat--snippet .cds-aichat--snippet-container{-webkit-mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(270deg,#000 calc(100% - 2rem),transparent),linear-gradient(180deg,#000 calc(100% - 1rem),transparent)}.cds-custom--snippet--multi:focus-within .cds-custom--snippet-container,.cds-custom--snippet--multi:focus-within .cds-aichat--snippet-container,.cds-custom--snippet--single:focus-within .cds-custom--snippet-container,.cds-custom--snippet--single:focus-within .cds-aichat--snippet-container,.cds-aichat--snippet:focus-within .cds-custom--snippet-container,.cds-aichat--snippet:focus-within .cds-aichat--snippet-container{-webkit-mask-image:none;mask-image:none}.cds-custom--skeleton.cds-aichat--snippet,.cds-custom--snippet--multi.cds-custom--skeleton{block-size:6.125rem}.cds-custom--snippet--single.cds-custom--skeleton{block-size:3.5rem}.cds-custom--skeleton.cds-aichat--snippet span,.cds-custom--snippet.cds-custom--skeleton span{background:var(--cds-custom-skeleton-background,#e8e8e8);border:none;box-shadow:none;padding:0;pointer-events:none;position:relative}.cds-custom--skeleton.cds-aichat--snippet span:active,.cds-custom--skeleton.cds-aichat--snippet span:focus,.cds-custom--skeleton.cds-aichat--snippet span:hover,.cds-custom--snippet.cds-custom--skeleton span:active,.cds-custom--snippet.cds-custom--skeleton span:focus,.cds-custom--snippet.cds-custom--skeleton span:hover{border:none;cursor:default;outline:none}.cds-custom--skeleton.cds-aichat--snippet span:before,.cds-custom--snippet.cds-custom--skeleton span:before{animation:cds-custom--skeleton 3s ease-in-out infinite;background:var(--cds-custom-skeleton-element,#c6c6c6);block-size:100%;content:\"\";inline-size:100%;inset-inline-start:0;position:absolute;will-change:transform-origin,transform,opacity}@media (prefers-reduced-motion:reduce){.cds-custom--skeleton.cds-aichat--snippet span:before,.cds-custom--snippet.cds-custom--skeleton span:before{animation:none}}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--skeleton.cds-aichat--snippet span,.cds-custom--snippet.cds-custom--skeleton span{background:CanvasText}.cds-custom--skeleton.cds-aichat--snippet span:before,.cds-custom--snippet.cds-custom--skeleton span:before{background:Canvas;forced-color-adjust:none}}.cds-custom--skeleton.cds-aichat--snippet span,.cds-custom--snippet.cds-custom--skeleton span{block-size:1rem;display:block;inline-size:100%;margin-block-start:.5rem}.cds-custom--skeleton.cds-aichat--snippet span:first-child,.cds-custom--snippet.cds-custom--skeleton span:first-child{margin:0}.cds-custom--skeleton.cds-aichat--snippet span:nth-child(2),.cds-custom--snippet.cds-custom--skeleton span:nth-child(2){inline-size:85%}.cds-custom--skeleton.cds-aichat--snippet span:nth-child(3),.cds-custom--snippet.cds-custom--skeleton span:nth-child(3){inline-size:95%}.cds-custom--snippet--single.cds-custom--skeleton .cds-custom--snippet-container,.cds-custom--snippet--single.cds-custom--skeleton .cds-aichat--snippet-container{padding-block-end:0}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--snippet--inline:focus{color:Highlight;outline:1px solid Highlight}.cds-custom--snippet--multi,.cds-custom--snippet--single,.cds-aichat--snippet{outline:1px solid transparent}}:host :host([data-rounded=\"\"]),:host [data-rounded=\"\"]{border-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=\"\"])::part(button),:host :host([data-rounded=\"\"])::part(link),:host [data-rounded=\"\"]::part(button),:host [data-rounded=\"\"]::part(link){border-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);outline-offset:-.0625rem}:host :host([data-rounded=\"\"])>:only-child,:host [data-rounded=\"\"]>:only-child{border-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top]),:host [data-rounded=top]{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-left]),:host [data-rounded=top-left]{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-right]),:host [data-rounded=top-right]{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom]),:host [data-rounded=bottom]{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-left]),:host [data-rounded=bottom-left]{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-right]),:host [data-rounded=bottom-right]{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top]:not([data-stacked]))>:first-child,:host [data-rounded=top]:not([data-stacked])>:first-child{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top]:not([data-stacked]))>:first-child::part(button),:host [data-rounded=top]:not([data-stacked])>:first-child::part(button){border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top]:not([data-stacked]))>:last-child,:host [data-rounded=top]:not([data-stacked])>:last-child{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top]:not([data-stacked]))>:last-child::part(button),:host [data-rounded=top]:not([data-stacked])>:last-child::part(button){border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-left]:not([data-stacked]))>:first-child,:host [data-rounded=top-left]:not([data-stacked])>:first-child{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-left]:not([data-stacked]))>:first-child::part(button),:host [data-rounded=top-left]:not([data-stacked])>:first-child::part(button){border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-right]:not([data-stacked]))>:last-child,:host [data-rounded=top-right]:not([data-stacked])>:last-child{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-right]:not([data-stacked]))>:last-child::part(button),:host [data-rounded=top-right]:not([data-stacked])>:last-child::part(button){border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom]:not([data-stacked]))>:first-child,:host [data-rounded=bottom]:not([data-stacked])>:first-child{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom]:not([data-stacked]))>:first-child::part(button),:host [data-rounded=bottom]:not([data-stacked])>:first-child::part(button){border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom]:not([data-stacked]))>:last-child,:host [data-rounded=bottom]:not([data-stacked])>:last-child{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom]:not([data-stacked]))>:last-child::part(button),:host [data-rounded=bottom]:not([data-stacked])>:last-child::part(button){border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-left]:not([data-stacked]))>:first-child,:host [data-rounded=bottom-left]:not([data-stacked])>:first-child{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-left]:not([data-stacked]))>:first-child::part(button),:host [data-rounded=bottom-left]:not([data-stacked])>:first-child::part(button){border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-right]:not([data-stacked]))>:last-child,:host [data-rounded=bottom-right]:not([data-stacked])>:last-child{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-right]:not([data-stacked]))>:last-child::part(button),:host [data-rounded=bottom-right]:not([data-stacked])>:last-child::part(button){border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top][data-stacked])>:first-child,:host [data-rounded=top][data-stacked]>:first-child{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top][data-stacked])>:first-child::part(button),:host [data-rounded=top][data-stacked]>:first-child::part(button){border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-right][data-stacked])>:first-child,:host [data-rounded=top-right][data-stacked]>:first-child{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-right][data-stacked])>:first-child::part(button),:host [data-rounded=top-right][data-stacked]>:first-child::part(button){border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-left][data-stacked])>:first-child,:host [data-rounded=top-left][data-stacked]>:first-child{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=top-left][data-stacked])>:first-child::part(button),:host [data-rounded=top-left][data-stacked]>:first-child::part(button){border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom][data-stacked])>:last-child,:host [data-rounded=bottom][data-stacked]>:last-child{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom][data-stacked])>:last-child::part(button),:host [data-rounded=bottom][data-stacked]>:last-child::part(button){border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-right][data-stacked])>:last-child,:host [data-rounded=bottom-right][data-stacked]>:last-child{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-right][data-stacked])>:last-child::part(button),:host [data-rounded=bottom-right][data-stacked]>:last-child::part(button){border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-left][data-stacked])>:last-child,:host [data-rounded=bottom-left][data-stacked]>:last-child{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host :host([data-rounded=bottom-left][data-stacked])>:last-child::part(button),:host [data-rounded=bottom-left][data-stacked]>:last-child::part(button){border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host{--cds-custom-syntax-arithmetic-operator:#343a3f;--cds-custom-syntax-atom:#161616;--cds-custom-syntax-attribute:#00539a;--cds-custom-syntax-attribute-name:#00539a;--cds-custom-syntax-attribute-value:#161616;--cds-custom-syntax-bitwise-operator:#343a3f;--cds-custom-syntax-block-comment:#198038;--cds-custom-syntax-bool:#161616;--cds-custom-syntax-brace:#343a3f;--cds-custom-syntax-bracket:#343a3f;--cds-custom-syntax-character:#161616;--cds-custom-syntax-class-name:#007d79;--cds-custom-syntax-color:#161616;--cds-custom-syntax-comment:#198038;--cds-custom-syntax-compare-operator:#343a3f;--cds-custom-syntax-content:#161616;--cds-custom-syntax-content-separator:#343a3f;--cds-custom-syntax-control-keyword:#6929c4;--cds-custom-syntax-control-operator:#6929c4;--cds-custom-syntax-definition-keyword:#00539a;--cds-custom-syntax-definition-operator:#00539a;--cds-custom-syntax-deref-operator:#343a3f;--cds-custom-syntax-doc-comment:#198038;--cds-custom-syntax-doc-string:#161616;--cds-custom-syntax-document-meta:#198038;--cds-custom-syntax-emphasis:#161616;--cds-custom-syntax-escape:#343a3f;--cds-custom-syntax-float:#198038;--cds-custom-syntax-heading-1:#00539a;--cds-custom-syntax-heading-2:#00539a;--cds-custom-syntax-heading-3:#00539a;--cds-custom-syntax-heading-4:#00539a;--cds-custom-syntax-heading-5:#00539a;--cds-custom-syntax-heading-6:#00539a;--cds-custom-syntax-integer:#198038;--cds-custom-syntax-keyword:#0f62fe;--cds-custom-syntax-label-name:#0f62fe;--cds-custom-syntax-line-comment:#198038;--cds-custom-syntax-list:#161616;--cds-custom-syntax-literal:#161616;--cds-custom-syntax-logic-operator:#343a3f;--cds-custom-syntax-macro-name:#161616;--cds-custom-syntax-modifier:#0f62fe;--cds-custom-syntax-module-keyword:#6929c4;--cds-custom-syntax-monospace:#161616;--cds-custom-syntax-name:#0f62fe;--cds-custom-syntax-namespace:#007d79;--cds-custom-syntax-null:#161616;--cds-custom-syntax-number:#198038;--cds-custom-syntax-operator-keyword:#0f62fe;--cds-custom-syntax-paren:#343a3f;--cds-custom-syntax-processing-instruction:#161616;--cds-custom-syntax-property-name:#00539a;--cds-custom-syntax-quote:#198038;--cds-custom-syntax-regexp:#6929c4;--cds-custom-syntax-self:#007d79;--cds-custom-syntax-separator:#343a3f;--cds-custom-syntax-special-string:#8a3ffc;--cds-custom-syntax-square-bracket:#343a3f;--cds-custom-syntax-strikethrough:#161616;--cds-custom-syntax-string:#161616;--cds-custom-syntax-strong:#161616;--cds-custom-syntax-tag:#007d79;--cds-custom-syntax-tag-name:#007d79;--cds-custom-syntax-type:#007d79;--cds-custom-syntax-type-name:#007d79;--cds-custom-syntax-type-operator:#007d79;--cds-custom-syntax-unit:#198038;--cds-custom-syntax-update-operator:#343a3f;--cds-custom-syntax-url:#343a3f;--cds-custom-syntax-variable:#0f62fe;--cds-custom-syntax-variable-name:#0f62fe;--cds-custom-syntax-operator:#343a3f;--cds-custom-syntax-deref-operator:var(--cds-custom-syntax-operator);--cds-custom-syntax-arithmetic-operator:var(--cds-custom-syntax-operator);--cds-custom-syntax-logic-operator:var(--cds-custom-syntax-operator);--cds-custom-syntax-bitwise-operator:var(--cds-custom-syntax-operator);--cds-custom-syntax-compare-operator:var(--cds-custom-syntax-operator);--cds-custom-syntax-update-operator:var(--cds-custom-syntax-operator);--cds-custom-syntax-definition-operator:var(--cds-custom-syntax-definition-keyword,#00539a);--cds-custom-syntax-type-operator:var(--cds-custom-syntax-tag,#007d79);--cds-custom-syntax-control-operator:var(--cds-custom-syntax-module-keyword,#6929c4);--cds-custom-syntax-modifier:var(--cds-custom-syntax-keyword,#0f62fe);--cds-custom-syntax-punctuation:#343a3f;--cds-custom-syntax-separator:var(--cds-custom-syntax-punctuation);--cds-custom-syntax-bracket:var(--cds-custom-syntax-punctuation);--cds-custom-syntax-angle-bracket:#697077;--cds-custom-syntax-square-bracket:var(--cds-custom-syntax-bracket);--cds-custom-syntax-paren:var(--cds-custom-syntax-bracket);--cds-custom-syntax-brace:var(--cds-custom-syntax-bracket);--cds-custom-syntax-content:var(--cds-custom-text-primary);--cds-custom-syntax-heading:#00539a;--cds-custom-syntax-heading-1:var(--cds-custom-syntax-heading);--cds-custom-syntax-heading-2:var(--cds-custom-syntax-heading);--cds-custom-syntax-heading-3:var(--cds-custom-syntax-heading);--cds-custom-syntax-heading-4:var(--cds-custom-syntax-heading);--cds-custom-syntax-heading-5:var(--cds-custom-syntax-heading);--cds-custom-syntax-heading-6:var(--cds-custom-syntax-heading);--cds-custom-syntax-content-separator:var(--cds-custom-syntax-punctuation);--cds-custom-syntax-list:var(--cds-custom-syntax-content);--cds-custom-syntax-quote:var(--cds-custom-syntax-comment);--cds-custom-syntax-emphasis:var(--cds-custom-syntax-content);--cds-custom-syntax-strong:var(--cds-custom-syntax-content);--cds-custom-syntax-monospace:var(--cds-custom-syntax-content);--cds-custom-syntax-link:#0f62fe;--cds-custom-syntax-strikethrough:var(--cds-custom-syntax-content);--cds-custom-syntax-invalid:#da1e28;--cds-custom-syntax-meta:#198038;--cds-custom-syntax-document-meta:var(--cds-custom-syntax-meta);--cds-custom-syntax-annotation:#007d79;--cds-custom-syntax-processing-instruction:var(--cds-custom-syntax-string,#161616);--cds-custom-syntax-definition:#00539a;--cds-custom-syntax-constant:#0f62fe;--cds-custom-syntax-function:#8e6a00;--cds-custom-syntax-standard:#0f62fe;--cds-custom-syntax-local:#0f62fe;--cds-custom-syntax-special:#0f62fe}.cds-aichat--snippet{background:var(--cds-custom-background,#fff);border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);display:block;max-inline-size:100%;padding:0}:host-context([data-theme=g100]),:host-context([data-theme=g90]),:host-context([storybook-carbon-theme=g100]),:host-context([storybook-carbon-theme=g90]){--cds-custom-syntax-arithmetic-operator:#e0e0e0;--cds-custom-syntax-atom:#f4f4f4;--cds-custom-syntax-attribute:#33b1ff;--cds-custom-syntax-attribute-name:#33b1ff;--cds-custom-syntax-attribute-value:#f4f4f4;--cds-custom-syntax-bitwise-operator:#e0e0e0;--cds-custom-syntax-block-comment:#42be65;--cds-custom-syntax-bool:#f4f4f4;--cds-custom-syntax-brace:#e0e0e0;--cds-custom-syntax-bracket:#e0e0e0;--cds-custom-syntax-character:#f4f4f4;--cds-custom-syntax-class-name:#3ddbd9;--cds-custom-syntax-color:#f4f4f4;--cds-custom-syntax-comment:#42be65;--cds-custom-syntax-compare-operator:#e0e0e0;--cds-custom-syntax-content:#f4f4f4;--cds-custom-syntax-content-separator:#e0e0e0;--cds-custom-syntax-control-keyword:#be95ff;--cds-custom-syntax-control-operator:#be95ff;--cds-custom-syntax-definition-keyword:#33b1ff;--cds-custom-syntax-definition-operator:#33b1ff;--cds-custom-syntax-deref-operator:#e0e0e0;--cds-custom-syntax-doc-comment:#42be65;--cds-custom-syntax-doc-string:#f4f4f4;--cds-custom-syntax-document-meta:#42be65;--cds-custom-syntax-emphasis:#f4f4f4;--cds-custom-syntax-escape:#e0e0e0;--cds-custom-syntax-float:#6fdc8c;--cds-custom-syntax-heading-1:#33b1ff;--cds-custom-syntax-heading-2:#33b1ff;--cds-custom-syntax-heading-3:#33b1ff;--cds-custom-syntax-heading-4:#33b1ff;--cds-custom-syntax-heading-5:#33b1ff;--cds-custom-syntax-heading-6:#33b1ff;--cds-custom-syntax-integer:#6fdc8c;--cds-custom-syntax-keyword:#4589ff;--cds-custom-syntax-label-name:#a6c8ff;--cds-custom-syntax-line-comment:#42be65;--cds-custom-syntax-list:#f4f4f4;--cds-custom-syntax-literal:#f4f4f4;--cds-custom-syntax-logic-operator:#e0e0e0;--cds-custom-syntax-macro-name:#f4f4f4;--cds-custom-syntax-modifier:#4589ff;--cds-custom-syntax-module-keyword:#be95ff;--cds-custom-syntax-monospace:#f4f4f4;--cds-custom-syntax-name:#a6c8ff;--cds-custom-syntax-namespace:#3ddbd9;--cds-custom-syntax-null:#f4f4f4;--cds-custom-syntax-number:#6fdc8c;--cds-custom-syntax-operator-keyword:#4589ff;--cds-custom-syntax-paren:#e0e0e0;--cds-custom-syntax-processing-instruction:#f4f4f4;--cds-custom-syntax-property-name:#33b1ff;--cds-custom-syntax-quote:#42be65;--cds-custom-syntax-regexp:#be95ff;--cds-custom-syntax-self:#3ddbd9;--cds-custom-syntax-separator:#e0e0e0;--cds-custom-syntax-special-string:#be95ff;--cds-custom-syntax-square-bracket:#e0e0e0;--cds-custom-syntax-strikethrough:#f4f4f4;--cds-custom-syntax-string:#f4f4f4;--cds-custom-syntax-strong:#f4f4f4;--cds-custom-syntax-tag:#3ddbd9;--cds-custom-syntax-tag-name:#3ddbd9;--cds-custom-syntax-type:#3ddbd9;--cds-custom-syntax-type-name:#3ddbd9;--cds-custom-syntax-type-operator:#3ddbd9;--cds-custom-syntax-unit:#6fdc8c;--cds-custom-syntax-update-operator:#e0e0e0;--cds-custom-syntax-url:#e0e0e0;--cds-custom-syntax-variable:#a6c8ff;--cds-custom-syntax-variable-name:#a6c8ff;--cds-custom-syntax-operator:#e0e0e0;--cds-custom-syntax-punctuation:#e0e0e0;--cds-custom-syntax-angle-bracket:#8d8d8d;--cds-custom-syntax-heading:#33b1ff;--cds-custom-syntax-link:#4589ff;--cds-custom-syntax-invalid:#fa4d56;--cds-custom-syntax-meta:#42be65;--cds-custom-syntax-annotation:#08bdba;--cds-custom-syntax-definition:#33b1ff;--cds-custom-syntax-constant:#4589ff;--cds-custom-syntax-function:#f1c21b;--cds-custom-syntax-standard:#4589ff;--cds-custom-syntax-local:#a6c8ff;--cds-custom-syntax-special:#4589ff}:host([disabled]) .cds-aichat--snippet-container{cursor:not-allowed}:host([disabled]) .cm-editor{pointer-events:none}:host([wrap-text]) pre{word-wrap:break-word;white-space:pre-wrap}.cds-aichat--snippet-container{position:relative}:host([expanded-code]) .cds-aichat--snippet-container{padding-block-end:1rem;transition:max-height motion(standard,productive) .15s}.cds-aichat--snippet--codemirror ::slotted(*){display:none}.cds-aichat--snippet--codemirror .cds-aichat--code-editor{block-size:100%;inline-size:100%}.cds-aichat--snippet__editor-skeleton{align-items:center;background:var(--cds-custom-layer-01,#f4f4f4);display:flex;inset:0;padding:1rem;pointer-events:none;position:absolute;z-index:1}.cds-aichat--snippet__editor-skeleton cds-custom-skeleton-text{inline-size:100%}.cds-aichat--visually-hidden{display:none}.cds-aichat--snippet__header{align-items:center;background:var(--cds-custom-layer-01,#f4f4f4);border-block-end:1px solid var(--cds-custom-border-subtle-02,#e0e0e0);display:flex;justify-content:space-between;padding-inline-start:1rem}.cds-aichat--snippet__meta{display:flex}.cds-aichat--snippet__footer{border-block-start:1px solid var(--cds-custom-border-subtle-02,#e0e0e0);display:flex;justify-content:flex-end}.cds-aichat--snippet-btn--text{color:var(--cds-custom-text-primary,#161616)}.cds-aichat--snippet__header-separator,.cds-aichat--snippet__language,.cds-aichat--snippet__linecount{font-size:var(--cds-custom-label-01-font-size,.75rem);font-weight:var(--cds-custom-label-01-font-weight,400);letter-spacing:var(--cds-custom-label-01-letter-spacing,.32px);line-height:var(--cds-custom-label-01-line-height,1.33333)}.cds-aichat--snippet__header-separator{padding-inline-end:.25rem;padding-inline-start:.25rem}.cds-aichat--snippet-container--collapsed{overflow-x:auto;overflow-y:hidden;transition:max-height motion(standard,productive) .15s}.cds-aichat--icon-chevron--down{transform:rotate(0deg);transition:transform .3s}:host([expanded-code]) .cds-aichat--icon-chevron--down{transform:rotate(180deg);transition:transform .3s}"]);
11
+
12
+ export { styles as default };
13
+ //# sourceMappingURL=code-snippet.scss.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"code-snippet.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,12 @@
1
+ import { Extension } from "@codemirror/state";
2
+ export interface BaseCodeMirrorSetupOptions {
3
+ foldCollapseLabel?: string;
4
+ foldExpandLabel?: string;
5
+ }
6
+ /**
7
+ * Minimal editor affordances for snippets:
8
+ * - keep the layout oriented (gutters, folding)
9
+ * - preserve indentation and basic syntax cues
10
+ * - avoid heavier behaviors like search, autocomplete, multi-caret history
11
+ */
12
+ export declare function baseCodeMirrorSetup(options?: BaseCodeMirrorSetupOptions): Extension;
@@ -0,0 +1,65 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ import { lineNumbers, drawSelection, keymap } from '@codemirror/view';
9
+ import { foldGutter, indentOnInput, syntaxHighlighting, defaultHighlightStyle, foldKeymap } from '@codemirror/language';
10
+ import { defaultKeymap } from '@codemirror/commands';
11
+ import { closeBrackets, closeBracketsKeymap } from '@codemirror/autocomplete';
12
+ import { lintKeymap } from '@codemirror/lint';
13
+ import { carbonFoldMarkerKeyHandler, createCarbonFoldMarker } from './marker-utils.js';
14
+ import { createCarbonHighlightStyle } from './theme.js';
15
+
16
+ /*
17
+ * Copyright IBM Corp. 2025
18
+ *
19
+ * This source code is licensed under the Apache-2.0 license found in the
20
+ * LICENSE file in the root directory of this source tree.
21
+ *
22
+ * @license
23
+ */
24
+ /**
25
+ * Minimal editor affordances for snippets:
26
+ * - keep the layout oriented (gutters, folding)
27
+ * - preserve indentation and basic syntax cues
28
+ * - avoid heavier behaviors like search, autocomplete, multi-caret history
29
+ */
30
+ function baseCodeMirrorSetup(options = {}) {
31
+ const { foldCollapseLabel = "Collapse code block", foldExpandLabel = "Expand code block", } = options;
32
+ return [
33
+ // Line number column for navigation and copy context
34
+ lineNumbers(),
35
+ // Event handler for keyboard accessibility on fold markers
36
+ carbonFoldMarkerKeyHandler(),
37
+ // Folding gutter affordances with Carbon chevron icon
38
+ foldGutter({
39
+ markerDOM: createCarbonFoldMarker({
40
+ collapseLabel: foldCollapseLabel,
41
+ expandLabel: foldExpandLabel,
42
+ }),
43
+ }),
44
+ // Selection rendering that respects multiple carets
45
+ drawSelection(),
46
+ // Maintain indentation on new lines
47
+ indentOnInput(),
48
+ // Fallback syntax highlight style when no language-specific theme exists
49
+ syntaxHighlighting(defaultHighlightStyle, { fallback: true }),
50
+ // Add in Carbon theme
51
+ createCarbonHighlightStyle(),
52
+ // Auto-insert closing brackets and quotes
53
+ closeBrackets(),
54
+ // Bundle the keymaps we still rely on
55
+ keymap.of([
56
+ ...closeBracketsKeymap,
57
+ ...defaultKeymap,
58
+ ...foldKeymap,
59
+ ...lintKeymap,
60
+ ]),
61
+ ];
62
+ }
63
+
64
+ export { baseCodeMirrorSetup };
65
+ //# sourceMappingURL=base-setup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base-setup.js","sources":["../../../../../src/components/code-snippet/src/codemirror/base-setup.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA;;;;;;;AAOG;AAyBH;;;;;AAKG;AACG,SAAU,mBAAmB,CACjC,OAAA,GAAsC,EAAE,EAAA;IAExC,MAAM,EACJ,iBAAiB,GAAG,qBAAqB,EACzC,eAAe,GAAG,mBAAmB,GACtC,GAAG,OAAO;IAEX,OAAO;;AAEL,QAAA,WAAW,EAAE;;AAEb,QAAA,0BAA0B,EAAE;;AAE5B,QAAA,UAAU,CAAC;YACT,SAAS,EAAE,sBAAsB,CAAC;AAChC,gBAAA,aAAa,EAAE,iBAAiB;AAChC,gBAAA,WAAW,EAAE,eAAe;aAC7B,CAAC;SACH,CAAC;;AAEF,QAAA,aAAa,EAAE;;AAEf,QAAA,aAAa,EAAE;;QAEf,kBAAkB,CAAC,qBAAqB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;AAE7D,QAAA,0BAA0B,EAAE;;AAE5B,QAAA,aAAa,EAAE;;QAEf,MAAM,CAAC,EAAE,CAAC;AACR,YAAA,GAAG,mBAAmB;AACtB,YAAA,GAAG,aAAa;AAChB,YAAA,GAAG,UAAU;AACb,YAAA,GAAG,UAAU;SACd,CAAC;KACH;AACH;;;;"}
@@ -0,0 +1,12 @@
1
+ type CodeMirrorRuntimeModule = typeof import("./codemirror-runtime.js");
2
+ /**
3
+ * Lazily loads the CodeMirror runtime so that heavy editor dependencies are only
4
+ * pulled into the bundle when the code-snippet component is actually rendered.
5
+ */
6
+ export declare function loadCodeMirrorRuntime(): Promise<CodeMirrorRuntimeModule>;
7
+ /**
8
+ * Public helper so tests or higher-level packages can preload the heavy
9
+ * CodeMirror dependencies ahead of time (e.g., in Jest setup files).
10
+ */
11
+ export declare function loadCodeSnippetDeps(): Promise<CodeMirrorRuntimeModule>;
12
+ export type { CodeMirrorRuntimeModule };
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ /*
9
+ * Copyright IBM Corp. 2025
10
+ *
11
+ * This source code is licensed under the Apache-2.0 license found in the
12
+ * LICENSE file in the root directory of this source tree.
13
+ *
14
+ * @license
15
+ */
16
+ let runtimePromise = null;
17
+ /**
18
+ * Lazily loads the CodeMirror runtime so that heavy editor dependencies are only
19
+ * pulled into the bundle when the code-snippet component is actually rendered.
20
+ */
21
+ function loadCodeMirrorRuntime() {
22
+ if (!runtimePromise) {
23
+ runtimePromise = import('./codemirror-runtime.js');
24
+ }
25
+ return runtimePromise;
26
+ }
27
+ /**
28
+ * Public helper so tests or higher-level packages can preload the heavy
29
+ * CodeMirror dependencies ahead of time (e.g., in Jest setup files).
30
+ */
31
+ function loadCodeSnippetDeps() {
32
+ return loadCodeMirrorRuntime();
33
+ }
34
+
35
+ export { loadCodeMirrorRuntime, loadCodeSnippetDeps };
36
+ //# sourceMappingURL=codemirror-loader.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codemirror-loader.js","sources":["../../../../../src/components/code-snippet/src/codemirror/codemirror-loader.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;AAAA;;;;;;;AAOG;AAIH,IAAI,cAAc,GAA4C,IAAI;AAElE;;;AAGG;SACa,qBAAqB,GAAA;IACnC,IAAI,CAAC,cAAc,EAAE;AACnB,QAAA,cAAc,GAAG,OAAO,yBAAyB,CAAC;IACpD;AACA,IAAA,OAAO,cAAc;AACvB;AAEA;;;AAGG;SACa,mBAAmB,GAAA;IACjC,OAAO,qBAAqB,EAAE;AAChC;;;;"}
@@ -0,0 +1,7 @@
1
+ export { LanguageController } from "./language-controller.js";
2
+ export type { LanguageStateUpdate } from "./language-controller.js";
3
+ export { createContentSync } from "./content-sync.js";
4
+ export type { ContentSyncHandle } from "./content-sync.js";
5
+ export { createEditorView, applyLanguageSupport, updateReadOnlyConfiguration, } from "./editor-manager.js";
6
+ export { EditorView } from "@codemirror/view";
7
+ export { Compartment } from "@codemirror/state";
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ export { LanguageController } from './language-controller.js';
9
+ export { createContentSync } from './content-sync.js';
10
+ export { applyLanguageSupport, createEditorView, updateReadOnlyConfiguration } from './editor-manager.js';
11
+ export { EditorView } from '@codemirror/view';
12
+ export { Compartment } from '@codemirror/state';
13
+ //# sourceMappingURL=codemirror-runtime.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codemirror-runtime.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
@@ -0,0 +1,12 @@
1
+ import { EditorView } from "@codemirror/view";
2
+ interface ContentSyncHooks {
3
+ getEditorView(): EditorView | undefined;
4
+ onAfterApply?(): void;
5
+ throttleMs?: number;
6
+ }
7
+ export interface ContentSyncHandle {
8
+ update(content: string): void;
9
+ cancel(): void;
10
+ }
11
+ export declare function createContentSync({ getEditorView, onAfterApply, throttleMs, }: ContentSyncHooks): ContentSyncHandle;
12
+ export {};
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Copyright IBM Corp. 2025
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ import throttle from 'lodash-es/throttle.js';
9
+
10
+ /*
11
+ * Copyright IBM Corp. 2025
12
+ *
13
+ * This source code is licensed under the Apache-2.0 license found in the
14
+ * LICENSE file in the root directory of this source tree.
15
+ *
16
+ * @license
17
+ */
18
+ function createContentSync({ getEditorView, onAfterApply, throttleMs = 200, }) {
19
+ const throttled = throttle((content) => {
20
+ const view = getEditorView();
21
+ if (!view) {
22
+ return;
23
+ }
24
+ const current = view.state.doc.toString();
25
+ if (content === current) {
26
+ return;
27
+ }
28
+ if (content.startsWith(current)) {
29
+ const appended = content.slice(current.length);
30
+ if (!appended.length) {
31
+ return;
32
+ }
33
+ view.dispatch({
34
+ changes: {
35
+ from: current.length,
36
+ to: current.length,
37
+ insert: appended,
38
+ },
39
+ });
40
+ }
41
+ else if (current.startsWith(content)) {
42
+ view.dispatch({
43
+ changes: {
44
+ from: content.length,
45
+ to: current.length,
46
+ insert: "",
47
+ },
48
+ });
49
+ }
50
+ else {
51
+ view.dispatch({
52
+ changes: {
53
+ from: 0,
54
+ to: current.length,
55
+ insert: content,
56
+ },
57
+ });
58
+ }
59
+ if (onAfterApply) {
60
+ requestAnimationFrame(() => {
61
+ onAfterApply();
62
+ });
63
+ }
64
+ }, throttleMs, { leading: true, trailing: true });
65
+ return {
66
+ update: (content) => throttled(content),
67
+ cancel: () => throttled.cancel(),
68
+ };
69
+ }
70
+
71
+ export { createContentSync };
72
+ //# sourceMappingURL=content-sync.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"content-sync.js","sources":["../../../../../src/components/code-snippet/src/codemirror/content-sync.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;AAAA;;;;;;;AAOG;AAgBG,SAAU,iBAAiB,CAAC,EAChC,aAAa,EACb,YAAY,EACZ,UAAU,GAAG,GAAG,GACC,EAAA;AACjB,IAAA,MAAM,SAAS,GAAG,QAAQ,CACxB,CAAC,OAAe,KAAI;AAClB,QAAA,MAAM,IAAI,GAAG,aAAa,EAAE;QAC5B,IAAI,CAAC,IAAI,EAAE;YACT;QACF;QAEA,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,EAAE;AAEzC,QAAA,IAAI,OAAO,KAAK,OAAO,EAAE;YACvB;QACF;AAEA,QAAA,IAAI,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE;YAC/B,MAAM,QAAQ,GAAG,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;AAC9C,YAAA,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE;gBACpB;YACF;YACA,IAAI,CAAC,QAAQ,CAAC;AACZ,gBAAA,OAAO,EAAE;oBACP,IAAI,EAAE,OAAO,CAAC,MAAM;oBACpB,EAAE,EAAE,OAAO,CAAC,MAAM;AAClB,oBAAA,MAAM,EAAE,QAAQ;AACjB,iBAAA;AACF,aAAA,CAAC;QACJ;AAAO,aAAA,IAAI,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE;YACtC,IAAI,CAAC,QAAQ,CAAC;AACZ,gBAAA,OAAO,EAAE;oBACP,IAAI,EAAE,OAAO,CAAC,MAAM;oBACpB,EAAE,EAAE,OAAO,CAAC,MAAM;AAClB,oBAAA,MAAM,EAAE,EAAE;AACX,iBAAA;AACF,aAAA,CAAC;QACJ;aAAO;YACL,IAAI,CAAC,QAAQ,CAAC;AACZ,gBAAA,OAAO,EAAE;AACP,oBAAA,IAAI,EAAE,CAAC;oBACP,EAAE,EAAE,OAAO,CAAC,MAAM;AAClB,oBAAA,MAAM,EAAE,OAAO;AAChB,iBAAA;AACF,aAAA,CAAC;QACJ;QAEA,IAAI,YAAY,EAAE;YAChB,qBAAqB,CAAC,MAAK;AACzB,gBAAA,YAAY,EAAE;AAChB,YAAA,CAAC,CAAC;QACJ;AACF,IAAA,CAAC,EACD,UAAU,EACV,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAClC;IAED,OAAO;QACL,MAAM,EAAE,CAAC,OAAe,KAAK,SAAS,CAAC,OAAO,CAAC;AAC/C,QAAA,MAAM,EAAE,MAAM,SAAS,CAAC,MAAM,EAAE;KACjC;AACH;;;;"}