@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
@@ -6777,7 +6777,7 @@
6777
6777
  "name": "EditorView",
6778
6778
  "declaration": {
6779
6779
  "name": "EditorView",
6780
- "module": "codemirror"
6780
+ "module": "@codemirror/view"
6781
6781
  }
6782
6782
  },
6783
6783
  {
@@ -7,9 +7,9 @@
7
7
 
8
8
  import { lineNumbers, drawSelection, keymap } from '@codemirror/view';
9
9
  import { foldGutter, indentOnInput, syntaxHighlighting, defaultHighlightStyle, foldKeymap } from '@codemirror/language';
10
- import { defaultKeymap } from '../../../../node_modules/@codemirror/commands/dist/index.js';
11
- import { closeBrackets, closeBracketsKeymap } from '../../../../node_modules/@codemirror/autocomplete/dist/index.js';
12
- import { lintKeymap } from '../../../../node_modules/@codemirror/lint/dist/index.js';
10
+ import { defaultKeymap } from '@codemirror/commands';
11
+ import { closeBrackets, closeBracketsKeymap } from '@codemirror/autocomplete';
12
+ import { lintKeymap } from '@codemirror/lint';
13
13
  import { carbonFoldMarkerKeyHandler, createCarbonFoldMarker } from './marker-utils.js';
14
14
  import { createCarbonHighlightStyle } from './theme.js';
15
15
 
@@ -3,5 +3,5 @@ export type { LanguageStateUpdate } from "./language-controller.js";
3
3
  export { createContentSync } from "./content-sync.js";
4
4
  export type { ContentSyncHandle } from "./content-sync.js";
5
5
  export { createEditorView, applyLanguageSupport, updateReadOnlyConfiguration, } from "./editor-manager.js";
6
- export { EditorView } from "codemirror";
6
+ export { EditorView } from "@codemirror/view";
7
7
  export { Compartment } from "@codemirror/state";
@@ -8,6 +8,6 @@
8
8
  export { LanguageController } from './language-controller.js';
9
9
  export { createContentSync } from './content-sync.js';
10
10
  export { applyLanguageSupport, createEditorView, updateReadOnlyConfiguration } from './editor-manager.js';
11
- export { EditorView } from 'codemirror';
11
+ export { EditorView } from '@codemirror/view';
12
12
  export { Compartment } from '@codemirror/state';
13
13
  //# sourceMappingURL=codemirror-runtime.js.map
@@ -1,4 +1,4 @@
1
- import { EditorView } from "codemirror";
1
+ import { EditorView } from "@codemirror/view";
2
2
  interface ContentSyncHooks {
3
3
  getEditorView(): EditorView | undefined;
4
4
  onAfterApply?(): void;
@@ -1,5 +1,5 @@
1
1
  import { Compartment } from "@codemirror/state";
2
- import { EditorView } from "codemirror";
2
+ import { EditorView } from "@codemirror/view";
3
3
  import { LanguageSupport } from "@codemirror/language";
4
4
  import { type BaseCodeMirrorSetupOptions } from "./base-setup.js";
5
5
  interface EditorDocChangePayload {
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import { EditorState } from '@codemirror/state';
9
- import { EditorView } from 'codemirror';
9
+ import { EditorView } from '@codemirror/view';
10
10
  import { createCarbonTheme } from './theme.js';
11
11
  import { baseCodeMirrorSetup } from './base-setup.js';
12
12
 
@@ -1,6 +1,6 @@
1
1
  import { Compartment } from "@codemirror/state";
2
2
  import { LanguageSupport } from "@codemirror/language";
3
- import { EditorView } from "codemirror";
3
+ import { EditorView } from "@codemirror/view";
4
4
  interface LanguageStateUpdate {
5
5
  detectedLanguage?: string | null;
6
6
  lockLabel?: boolean;
@@ -5,7 +5,7 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- import { EditorView } from 'codemirror';
8
+ import { EditorView } from '@codemirror/view';
9
9
  import { syntaxHighlighting, HighlightStyle } from '@codemirror/language';
10
10
  import { tags } from '@lezer/highlight';
11
11
 
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license
3
+ *
4
+ * Copyright IBM Corp. 2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ import "./src/card";
10
+ import "./src/card-footer";
11
+ import "./src/card-steps";
@@ -0,0 +1,11 @@
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 './src/card.js';
9
+ import './src/card-footer.js';
10
+ import './src/card-steps.js';
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
@@ -0,0 +1,43 @@
1
+ /**
2
+ * @license
3
+ *
4
+ * Copyright IBM Corp. 2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ import { LitElement, nothing, PropertyValues } from "lit";
10
+ import "@carbon/web-components/es-custom/components/button/button.js";
11
+ import "@carbon/web-components/es-custom/components/icon-button/icon-button.js";
12
+ import { BUTTON_KIND, BUTTON_SIZE } from "@carbon/web-components/es-custom/components/button/button.js";
13
+ import { CarbonIcon } from "@carbon/web-components/es-custom/globals/internal/icon-loader-utils.js";
14
+ export type Action = {
15
+ label: string;
16
+ id?: string;
17
+ kind?: BUTTON_KIND;
18
+ disabled?: boolean;
19
+ payload?: unknown;
20
+ icon?: CarbonIcon;
21
+ onClick?: () => void;
22
+ tooltipText?: string;
23
+ isViewing?: boolean;
24
+ };
25
+ /**
26
+ * Footer action bar that renders Carbon buttons and emits an `action` event.
27
+ * Consumers listen for events instead of passing callbacks.
28
+ */
29
+ declare class CardFooter extends LitElement {
30
+ static styles: any;
31
+ /**
32
+ * Sets default slot value to footer
33
+ */
34
+ slot: string;
35
+ /** Card actions to render */
36
+ actions: Action[];
37
+ size?: BUTTON_SIZE;
38
+ isIconButton: boolean;
39
+ private handleAction;
40
+ updated(changedProperties: PropertyValues): void;
41
+ render(): import("lit-html").TemplateResult<1> | typeof nothing;
42
+ }
43
+ export default CardFooter;
@@ -0,0 +1,141 @@
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 { __decorate } from 'tslib';
9
+ import { LitElement, nothing, html } from 'lit';
10
+ import { property } from 'lit/decorators.js';
11
+ import { classMap } from 'lit/directives/class-map.js';
12
+ import { ifDefined } from 'lit/directives/if-defined.js';
13
+ import { repeat } from 'lit/directives/repeat.js';
14
+ import { BUTTON_SIZE } from '@carbon/web-components/es-custom/components/button/button.js';
15
+ import '@carbon/web-components/es-custom/components/icon-button/icon-button.js';
16
+ import { iconLoader } from '@carbon/web-components/es-custom/globals/internal/icon-loader.js';
17
+ import prefix from '../../../globals/settings.js';
18
+ import styles from './card-footer.scss.js';
19
+ import { carbonElement } from '../../../globals/decorators/carbon-element.js';
20
+
21
+ /**
22
+ * @license
23
+ *
24
+ * Copyright IBM Corp. 2025
25
+ *
26
+ * This source code is licensed under the Apache-2.0 license found in the
27
+ * LICENSE file in the root directory of this source tree.
28
+ */
29
+ /**
30
+ * Footer action bar that renders Carbon buttons and emits an `action` event.
31
+ * Consumers listen for events instead of passing callbacks.
32
+ */
33
+ let CardFooter = class CardFooter extends LitElement {
34
+ constructor() {
35
+ super(...arguments);
36
+ /**
37
+ * Sets default slot value to footer
38
+ */
39
+ this.slot = "footer";
40
+ /** Card actions to render */
41
+ this.actions = [];
42
+ this.size = BUTTON_SIZE.LARGE;
43
+ this.isIconButton = false;
44
+ }
45
+ handleAction(action) {
46
+ if (action.onClick) {
47
+ action.onClick();
48
+ }
49
+ this.dispatchEvent(new CustomEvent("cds-aichat-card-footer-action", {
50
+ detail: action,
51
+ bubbles: true,
52
+ composed: true,
53
+ }));
54
+ }
55
+ updated(changedProperties) {
56
+ if (changedProperties.has("actions")) {
57
+ if (!this.actions || this.actions.length === 0) {
58
+ return;
59
+ }
60
+ const allActionsHaveNoLabels = this.actions.every((action) => !action.label);
61
+ this.isIconButton = allActionsHaveNoLabels;
62
+ }
63
+ }
64
+ render() {
65
+ if (!this.actions || this.actions.length === 0) {
66
+ return nothing;
67
+ }
68
+ return !this.isIconButton
69
+ ? html `
70
+ <div
71
+ class=${classMap({
72
+ [`${prefix}-card-footer__actions`]: true,
73
+ [`${prefix}-card-footer__actions--stacked`]: this.actions.length > 2,
74
+ })}
75
+ data-rounded="bottom"
76
+ ?data-stacked=${this.actions.length > 2}
77
+ >
78
+ ${repeat(this.actions, (action) => action.id, (action) => html `<cds-custom-button
79
+ kind=${action.kind ?? "secondary"}
80
+ size=${ifDefined(this.size)}
81
+ ?disabled=${action.disabled || action.isViewing}
82
+ class=${classMap({
83
+ [`${prefix}-card-footer__action-viewing`]: action.isViewing ?? false,
84
+ })}
85
+ @click=${() => this.handleAction(action)}
86
+ >
87
+ ${action.label}
88
+ ${action.icon
89
+ ? iconLoader(action.icon, !action.isViewing
90
+ ? {
91
+ slot: "icon",
92
+ class: `${prefix}-card-footer__action-icon`,
93
+ }
94
+ : undefined)
95
+ : nothing}
96
+ </cds-custom-button> `)}
97
+ </div>
98
+ `
99
+ : html `
100
+ <div
101
+ class=${classMap({
102
+ [`${prefix}-card-footer__icon-actions`]: true,
103
+ })}
104
+ data-rounded="bottom-right"
105
+ ?data-stacked=${this.actions.length > 2}
106
+ >
107
+ ${repeat(this.actions, (action) => action.id, (action) => html `<cds-custom-icon-button
108
+ kind=${action.kind ?? "ghost"}
109
+ size=${ifDefined(this.size)}
110
+ ?disabled=${action.disabled}
111
+ @click=${() => this.handleAction(action)}
112
+ >
113
+ ${action.icon
114
+ ? iconLoader(action.icon, { slot: "icon" })
115
+ : nothing}
116
+ <span slot="tooltip-content">${action.tooltipText}</span>
117
+ </cds-custom-icon-button> `)}
118
+ </div>
119
+ `;
120
+ }
121
+ };
122
+ CardFooter.styles = styles;
123
+ __decorate([
124
+ property({ type: String, reflect: true })
125
+ ], CardFooter.prototype, "slot", void 0);
126
+ __decorate([
127
+ property({ type: Array })
128
+ ], CardFooter.prototype, "actions", void 0);
129
+ __decorate([
130
+ property({ type: String })
131
+ ], CardFooter.prototype, "size", void 0);
132
+ __decorate([
133
+ property({ type: Boolean, attribute: "is-icon-button", reflect: true })
134
+ ], CardFooter.prototype, "isIconButton", void 0);
135
+ CardFooter = __decorate([
136
+ carbonElement("cds-aichat-card-footer")
137
+ ], CardFooter);
138
+ var CDSAIChatCardFooter = CardFooter;
139
+
140
+ export { CDSAIChatCardFooter as default };
141
+ //# sourceMappingURL=card-footer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card-footer.js","sources":["../../../../src/components/card/src/card-footer.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;AAOG;AAgCH;;;AAGG;AAEH,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,UAAU,CAAA;AAAnC,IAAA,WAAA,GAAA;;AAGE;;AAEG;QAEH,IAAA,CAAA,IAAI,GAAG,QAAQ;;QAIf,IAAA,CAAA,OAAO,GAAa,EAAE;AAGtB,QAAA,IAAA,CAAA,IAAI,GAAiB,WAAW,CAAC,KAAK;QAGtC,IAAA,CAAA,YAAY,GAAG,KAAK;IAmGtB;AAjGU,IAAA,YAAY,CAAC,MAAc,EAAA;AACjC,QAAA,IAAI,MAAM,CAAC,OAAO,EAAE;YAClB,MAAM,CAAC,OAAO,EAAE;QAClB;AACA,QAAA,IAAI,CAAC,aAAa,CAChB,IAAI,WAAW,CAAC,+BAA+B,EAAE;AAC/C,YAAA,MAAM,EAAE,MAAM;AACd,YAAA,OAAO,EAAE,IAAI;AACb,YAAA,QAAQ,EAAE,IAAI;AACf,SAAA,CAAC,CACH;IACH;AAEA,IAAA,OAAO,CAAC,iBAAiC,EAAA;AACvC,QAAA,IAAI,iBAAiB,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE;AACpC,YAAA,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;gBAC9C;YACF;AACA,YAAA,MAAM,sBAAsB,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAC/C,CAAC,MAAM,KAAK,CAAC,MAAM,CAAC,KAAK,CAC1B;AACD,YAAA,IAAI,CAAC,YAAY,GAAG,sBAAsB;QAC5C;IACF;IAEA,MAAM,GAAA;AACJ,QAAA,IAAI,CAAC,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;AAC9C,YAAA,OAAO,OAAO;QAChB;QACA,OAAO,CAAC,IAAI,CAAC;cACT,IAAI,CAAA;;AAEQ,kBAAA,EAAA,QAAQ,CAAC;AACf,gBAAA,CAAC,CAAA,EAAG,MAAM,CAAA,qBAAA,CAAuB,GAAG,IAAI;gBACxC,CAAC,CAAA,EAAG,MAAM,CAAA,8BAAA,CAAgC,GACxC,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;aAC1B,CAAC;;AAEc,0BAAA,EAAA,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;;cAErC,MAAM,CACN,IAAI,CAAC,OAAO,EACZ,CAAC,MAAM,KAAK,MAAM,CAAC,EAAE,EACrB,CAAC,MAAM,KACL,IAAI,CAAA,CAAA;yBACK,MAAM,CAAC,IAAI,IAAI,WAAW;AAC1B,uBAAA,EAAA,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC;AACf,4BAAA,EAAA,MAAM,CAAC,QAAQ,IAAI,MAAM,CAAC,SAAS;AACvC,wBAAA,EAAA,QAAQ,CAAC;gBACf,CAAC,CAAA,EAAG,MAAM,CAAA,4BAAA,CAA8B,GACtC,MAAM,CAAC,SAAS,IAAI,KAAK;aAC5B,CAAC;AACO,yBAAA,EAAA,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC;;AAEtC,kBAAA,EAAA,MAAM,CAAC,KAAK;AACZ,kBAAA,EAAA,MAAM,CAAC;kBACL,UAAU,CACR,MAAM,CAAC,IAAI,EACX,CAAC,MAAM,CAAC;AACN,sBAAE;AACE,wBAAA,IAAI,EAAE,MAAM;wBACZ,KAAK,EAAE,CAAA,EAAG,MAAM,CAAA,yBAAA,CAA2B;AAC5C;sBACD,SAAS;AAEjB,kBAAE,OAAO;+BACE,CAClB;;AAEJ,QAAA;cACD,IAAI,CAAA;;AAEQ,kBAAA,EAAA,QAAQ,CAAC;AACf,gBAAA,CAAC,CAAA,EAAG,MAAM,CAAA,0BAAA,CAA4B,GAAG,IAAI;aAC9C,CAAC;;AAEc,0BAAA,EAAA,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;;cAErC,MAAM,CACN,IAAI,CAAC,OAAO,EACZ,CAAC,MAAM,KAAK,MAAM,CAAC,EAAE,EACrB,CAAC,MAAM,KACL,IAAI,CAAA,CAAA;yBACK,MAAM,CAAC,IAAI,IAAI,OAAO;AACtB,uBAAA,EAAA,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC;AACf,4BAAA,EAAA,MAAM,CAAC,QAAQ;AAClB,yBAAA,EAAA,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC;;AAEtC,kBAAA,EAAA,MAAM,CAAC;AACP,kBAAE,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE;AAC1C,kBAAE,OAAO;AACoB,+CAAA,EAAA,MAAM,CAAC,WAAW,CAAA;oCAC/B,CACvB;;SAEJ;IACP;;AAlHO,UAAA,CAAA,MAAM,GAAG,MAAH;AAMb,UAAA,CAAA;IADC,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE;AACzB,CAAA,EAAA,UAAA,CAAA,SAAA,EAAA,MAAA,EAAA,MAAA,CAAA;AAIhB,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE;AACF,CAAA,EAAA,UAAA,CAAA,SAAA,EAAA,SAAA,EAAA,MAAA,CAAA;AAGvB,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE;AACa,CAAA,EAAA,UAAA,CAAA,SAAA,EAAA,MAAA,EAAA,MAAA,CAAA;AAGvC,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,OAAO,EAAE,IAAI,EAAE;AAClD,CAAA,EAAA,UAAA,CAAA,SAAA,EAAA,cAAA,EAAA,MAAA,CAAA;AAjBjB,UAAU,GAAA,UAAA,CAAA;IADf,aAAa,CAAC,wBAAwB;AACjC,CAAA,EAAA,UAAU,CAoHf;AAED,0BAAe,UAAU;;;;"}
@@ -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--link,:host(cds-custom-tile) ::slotted(.cds-custom--link){border:0;box-sizing:border-box;font-family:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}.cds-custom--link *,.cds-custom--link :after,.cds-custom--link :before,:host(cds-custom-tile) ::slotted(.cds-custom--link) *,:host(cds-custom-tile) ::slotted(.cds-custom--link) :after,:host(cds-custom-tile) ::slotted(.cds-custom--link) :before{box-sizing:inherit}.cds-custom--link,:host(cds-custom-tile) ::slotted(.cds-custom--link){color:var(--cds-custom-link-text-color,var(--cds-custom-link-primary,#0f62fe));display:inline-flex;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);outline:none;text-decoration:none;transition:color 70ms cubic-bezier(.2,0,.38,.9)}.cds-custom--link:hover,:host(cds-custom-tile) :hover::slotted(.cds-custom--link){color:var(--cds-custom-link-hover-text-color,var(--cds-custom-link-primary-hover,#0043ce));text-decoration:underline}.cds-custom--link:active:not(.cds-custom--link--disabled),.cds-custom--link:active:visited,.cds-custom--link:active:visited:hover,:host(cds-custom-tile) :active:not(.cds-custom--link--disabled)::slotted(.cds-custom--link),:host(cds-custom-tile) :active:visited::slotted(.cds-custom--link){outline:1px solid var(--cds-custom-focus,#0f62fe)}@media screen and (prefers-contrast){.cds-custom--link:active:not(.cds-custom--link--disabled),.cds-custom--link:active:visited,.cds-custom--link:active:visited:hover,:host(cds-custom-tile) :active:not(.cds-custom--link--disabled)::slotted(.cds-custom--link),:host(cds-custom-tile) :active:visited::slotted(.cds-custom--link){outline-style:dotted}}.cds-custom--link:active:not(.cds-custom--link--disabled),.cds-custom--link:active:visited,.cds-custom--link:active:visited:hover,:host(cds-custom-tile) :active:not(.cds-custom--link--disabled)::slotted(.cds-custom--link),:host(cds-custom-tile) :active:visited::slotted(.cds-custom--link){color:var(--cds-custom-link-text-color,var(--cds-custom-link-primary,#0f62fe));outline-color:var(--cds-custom-link-focus-text-color,var(--cds-custom-focus,#0f62fe));text-decoration:underline}.cds-custom--link:focus:not(.cds-custom--link--disabled),:host(cds-custom-tile) :focus:not(.cds-custom--link--disabled)::slotted(.cds-custom--link){outline:1px solid var(--cds-custom-focus,#0f62fe)}@media screen and (prefers-contrast){.cds-custom--link:focus:not(.cds-custom--link--disabled),:host(cds-custom-tile) :focus:not(.cds-custom--link--disabled)::slotted(.cds-custom--link){outline-style:dotted}}.cds-custom--link:focus:not(.cds-custom--link--disabled),:host(cds-custom-tile) :focus:not(.cds-custom--link--disabled)::slotted(.cds-custom--link){outline-color:var(--cds-custom-link-focus-text-color,var(--cds-custom-focus,#0f62fe));text-decoration:underline}.cds-custom--link:visited,:host(cds-custom-tile) :visited::slotted(.cds-custom--link){color:var(--cds-custom-link-text-color,var(--cds-custom-link-primary,#0f62fe))}.cds-custom--link:visited:hover,:host(cds-custom-tile) :visited:hover::slotted(.cds-custom--link){color:var(--cds-custom-link-hover-text-color,var(--cds-custom-link-primary-hover,#0043ce))}.cds-custom--link--disabled,.cds-custom--link--disabled:hover{border:0;box-sizing:border-box;font-family:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}.cds-custom--link--disabled *,.cds-custom--link--disabled :after,.cds-custom--link--disabled :before,.cds-custom--link--disabled:hover *,.cds-custom--link--disabled:hover :after,.cds-custom--link--disabled:hover :before{box-sizing:inherit}.cds-custom--link--disabled,.cds-custom--link--disabled:hover{color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));cursor:not-allowed;font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);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);text-decoration:none}.cds-custom--link.cds-custom--link--visited,.cds-custom--link.cds-custom--link--visited:visited,:host(cds-custom-tile) .cds-custom--link--visited::slotted(.cds-custom--link){color:var(--cds-custom-link-visited-text-color,var(--cds-custom-link-visited,#8a3ffc))}.cds-custom--link.cds-custom--link--visited:hover,.cds-custom--link.cds-custom--link--visited:visited:hover,:host(cds-custom-tile) .cds-custom--link--visited:hover::slotted(.cds-custom--link){color:var(--cds-custom-link-hover-text-color,var(--cds-custom-link-primary-hover,#0043ce))}.cds-custom--link.cds-custom--link--inline,:host(cds-custom-tile) .cds-custom--link--inline::slotted(.cds-custom--link){display:inline;text-decoration:underline}.cds-custom--link--disabled.cds-custom--link--inline{text-decoration:underline}.cds-custom--link--sm,.cds-custom--link--sm.cds-custom--link--disabled:hover{font-size:var(--cds-custom-helper-text-01-font-size,.75rem);letter-spacing:var(--cds-custom-helper-text-01-letter-spacing,.32px);line-height:var(--cds-custom-helper-text-01-line-height,1.33333)}.cds-custom--link--lg,.cds-custom--link--lg.cds-custom--link--disabled:hover{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)}.cds-custom--link__icon{align-self:center;display:inline-flex;margin-inline-start:.5rem}:host(cds-custom-link){outline:none}:host(cds-custom-link) .cds-custom--link--disabled{color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25))}:host(cds-custom-link) .cds-custom--link__icon[hidden]{display:none}.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)}.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--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--tile-group html,:host(cds-custom-tile-group) html{font-size:100%}.cds-custom--tile-group body,:host(cds-custom-tile-group) 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--tile-group code,:host(cds-custom-tile-group) code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--tile-group strong,:host(cds-custom-tile-group) strong{font-weight:600}.cds-custom--tile,:host(cds-custom-expandable-tile),:host(cds-custom-tile){--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));background-color:var(--cds-custom-layer);display:block;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);min-block-size:4rem;min-inline-size:8rem;outline:2px solid transparent;outline-offset:-2px;padding:var(--cds-custom-layout-density-padding-inline-local);position:relative}.cds-custom--tile:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--tile:focus{outline-style:dotted}}.cds-custom--tile--light,:host(cds-custom-expandable-tile[color-scheme=light]),:host(cds-custom-tile[color-scheme=light]){background-color:var(--cds-custom-layer-02,#fff)}.cds-custom--tile--clickable,.cds-custom--tile--selectable,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable{border:0;box-sizing:border-box;font-family:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}.cds-custom--tile--clickable *,.cds-custom--tile--clickable :after,.cds-custom--tile--clickable :before,.cds-custom--tile--selectable *,.cds-custom--tile--selectable :after,.cds-custom--tile--selectable :before,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable *,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable :after,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable :before{box-sizing:inherit}.cds-custom--tile--clickable,.cds-custom--tile--selectable,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable{cursor:pointer;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);padding:var(--cds-custom-layout-density-padding-inline-local);transition:.15s cubic-bezier(.2,0,.38,.9)}.cds-custom--tile--clickable:hover,.cds-custom--tile--selectable:hover{background:var(--cds-custom-layer-hover)}.cds-custom--tile--clickable,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable{color:var(--cds-custom-text-primary,#161616);text-decoration:none}.cds-custom--tile--clickable:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--tile--clickable:focus{outline-style:dotted}}.cds-custom--tile--clickable:focus{text-decoration:none}.cds-custom--tile--clickable:focus .cds-custom--tile__checkmark,.cds-custom--tile--clickable:hover .cds-custom--tile__checkmark{opacity:1}.cds-custom--tile--expandable::-moz-focus-inner{border:0}.cds-custom--tile--clickable:active,.cds-custom--tile--clickable:hover,.cds-custom--tile--clickable:visited,.cds-custom--tile--clickable:visited:hover{color:var(--cds-custom-text-primary,#161616);text-decoration:none}.cds-custom--tile--clickable.cds-custom--link--disabled,.cds-custom--tile--clickable:hover.cds-custom--link--disabled{background-color:var(--cds-custom-layer);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));cursor:not-allowed;display:block;padding:var(--cds-custom-layout-density-padding-inline-local)}.cds-custom--tile--clickable .cds-custom--tile--icon,.cds-custom--tile--clickable.cds-custom--link--disabled .cds-custom--tile--disabled-icon,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable ::slotted([slot=icon]){block-size:1.25rem;inline-size:1.25rem;inset-block-end:.75rem;inset-inline-end:.75rem;position:absolute}.cds-custom--tile--clickable .cds-custom--tile--icon,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable ::slotted([slot=icon]){fill:var(--cds-custom-icon-interactive,#0f62fe)}.cds-custom--tile--clickable.cds-custom--link--disabled .cds-custom--tile--disabled-icon{fill:var(--cds-custom-icon-disabled,hsla(0,0%,9%,.25))}.cds-custom--tile--clickable.cds-custom--link--disabled .cds-custom--tile--icon,:host(cds-custom-clickable-tile) .cds-custom--tile--clickable.cds-custom--link--disabled ::slotted([slot=icon]){display:none}.cds-custom--tile--selectable{border:1px solid transparent;padding-inline-end:calc(var(--cds-custom-layout-density-padding-inline-local)*2 + 1rem)}.cds-custom--tile__checkmark{background:transparent;block-size:1rem;border:none;inset-block-start:var(--cds-custom-layout-density-padding-inline-local);inset-inline-end:var(--cds-custom-layout-density-padding-inline-local);opacity:0;position:absolute;transition:.11s cubic-bezier(.2,0,.38,.9)}.cds-custom--tile__checkmark svg{fill:var(--cds-custom-icon-secondary,#525252);border-radius:50%}.cds-custom--tile__checkmark:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--tile__checkmark:focus{outline-style:dotted}}.cds-custom--tile__checkmark--persistent{opacity:1}.cds-custom--tile__chevron,:host(cds-custom-selectable-tile) .cds-custom--tile__chevron{align-items:center;block-size:calc(var(--cds-custom-layout-density-padding-inline-local)*2 + 1rem);display:flex;inline-size:calc(var(--cds-custom-layout-density-padding-inline-local)*2 + 1rem);inset-block-end:0;inset-inline-end:0;justify-content:center;position:absolute}.cds-custom--tile__chevron svg,:host(cds-custom-selectable-tile) .cds-custom--tile__chevron svg{fill:var(--cds-custom-icon-primary,#161616);transform-origin:center;transition:.11s cubic-bezier(.2,0,.38,.9)}@media screen and (prefers-reduced-motion:reduce){.cds-custom--tile__chevron svg,:host(cds-custom-selectable-tile) .cds-custom--tile__chevron svg{transition:none}}.cds-custom--tile__chevron--interactive{-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--tile__chevron--interactive *,.cds-custom--tile__chevron--interactive :after,.cds-custom--tile__chevron--interactive :before{box-sizing:inherit}.cds-custom--tile__chevron--interactive::-moz-focus-inner{border:0}.cds-custom--tile__chevron--interactive{align-items:center;block-size:calc(var(--cds-custom-layout-density-padding-inline-local)*2 + 1rem);display:flex;inline-size:calc(var(--cds-custom-layout-density-padding-inline-local)*2 + 1rem);inset-block-end:0;inset-inline-end:0;justify-content:center;position:absolute}.cds-custom--tile__chevron--interactive:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}.cds-custom--tile__chevron--interactive:hover{background-color:var(--cds-custom-layer-hover);cursor:pointer}.cds-custom--tile--expandable,:host(cds-custom-expandable-tile){border:0;color:inherit;cursor:pointer;font-family:inherit;font-size:inherit;font-size:var(--cds-custom-body-compact-01-font-size,.875rem);font-weight:var(--cds-custom-body-compact-01-font-weight,400);inline-size:100%;letter-spacing:var(--cds-custom-body-compact-01-letter-spacing,.16px);line-height:var(--cds-custom-body-compact-01-line-height,1.28572);overflow:hidden;position:relative;text-align:start;transition:max-height .15s cubic-bezier(.2,0,.38,.9)}.cds-custom--tile--expandable:hover{background:var(--cds-custom-layer-hover)}.cds-custom--tile--expandable.cds-custom--tile--expandable--interactive{border:none;cursor:default;transition:max-height .15s cubic-bezier(.2,0,.38,.9)}.cds-custom--tile--expandable.cds-custom--tile--expandable--interactive:hover{background-color:var(--cds-custom-layer)}.cds-custom--tile--expandable.cds-custom--tile--expandable--interactive:focus{outline:none}.cds-custom--tile--expandable--interactive:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--tile--expandable--interactive:focus{outline-style:dotted}}.cds-custom--tile-content__below-the-fold,:host(cds-custom-expandable-tile) ::slotted(cds-custom-tile-below-the-fold-content){display:block;opacity:0;transition:opacity .11s cubic-bezier(.2,0,.38,.9),visibility .11s cubic-bezier(.2,0,.38,.9);visibility:hidden}.cds-custom--tile--is-expanded,:host(cds-custom-expandable-tile[expanded]){overflow:visible;transition:max-height .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--tile--is-expanded .cds-custom--tile__chevron svg,:host(cds-custom-expandable-tile[expanded]) .cds-custom--tile__chevron svg{transform:rotate(180deg)}.cds-custom--tile--is-expanded .cds-custom--tile-content__below-the-fold,:host(cds-custom-expandable-tile) .cds-custom--tile--is-expanded ::slotted(cds-custom-tile-below-the-fold-content),:host(cds-custom-expandable-tile[expanded]) .cds-custom--tile-content__below-the-fold,:host(cds-custom-expandable-tile[expanded]):host(cds-custom-expandable-tile) ::slotted(cds-custom-tile-below-the-fold-content){opacity:1;transition:opacity .11s cubic-bezier(.2,0,.38,.9),visibility .11s cubic-bezier(.2,0,.38,.9);visibility:inherit}@supports (hanging-punctuation:first) and (font:-apple-system-body) and (-webkit-appearance:none){.cds-custom--tile--is-expanded .cds-custom--tile-content__below-the-fold,:host(cds-custom-expandable-tile) .cds-custom--tile--is-expanded ::slotted(cds-custom-tile-below-the-fold-content),:host(cds-custom-expandable-tile[expanded]) .cds-custom--tile-content__below-the-fold,:host(cds-custom-expandable-tile[expanded]):host(cds-custom-expandable-tile) ::slotted(cds-custom-tile-below-the-fold-content){overflow-y:auto}}.cds-custom--tile--is-selected{border:1px solid var(--cds-custom-layer-selected-inverse,#161616)}.cds-custom--tile--is-selected .cds-custom--tile__checkmark{opacity:1}.cds-custom--tile--is-selected .cds-custom--tile__checkmark svg{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--tile-content{block-size:100%;inline-size:100%}.cds-custom--tile-input{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--tile-input:focus+.cds-custom--tile,.cds-custom--tile-input:focus+:host(cds-custom-expandable-tile),.cds-custom--tile-input:focus+:host(cds-custom-tile){outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--tile-input:focus+.cds-custom--tile,.cds-custom--tile-input:focus+:host(cds-custom-expandable-tile),.cds-custom--tile-input:focus+:host(cds-custom-tile){outline-style:dotted}}.cds-custom--tile--disabled.cds-custom--tile--selectable{background-color:var(--cds-custom-layer);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));cursor:not-allowed}.cds-custom--tile--disabled.cds-custom--tile--selectable.cds-custom--tile--light{background-color:var(--cds-custom-layer-02,#fff)}.cds-custom--tile--disabled.cds-custom--tile--is-selected{border-color:var(--cds-custom-border-disabled,#c6c6c6)}.cds-custom--tile--disabled .cds-custom--tile__checkmark svg{fill:var(--cds-custom-icon-disabled,hsla(0,0%,9%,.25))}.cds-custom--tile--clickable .cds-custom--tile--ai-label-icon,.cds-custom--tile--expandable>div>.cds-custom--ai-label,.cds-custom--tile--expandable>div>.cds-custom--slug,.cds-custom--tile--expandable>div>.cds-custom--tile--inner-decorator>*,.cds-custom--tile>.cds-custom--ai-label,.cds-custom--tile>.cds-custom--slug,.cds-custom--tile>.cds-custom--tile--inner-decorator>*,:host(cds-custom-expandable-tile)>.cds-custom--ai-label,:host(cds-custom-expandable-tile)>.cds-custom--slug,:host(cds-custom-expandable-tile)>.cds-custom--tile--inner-decorator>*,:host(cds-custom-expandable-tile)>div>.cds-custom--ai-label,:host(cds-custom-expandable-tile)>div>.cds-custom--slug,:host(cds-custom-expandable-tile)>div>.cds-custom--tile--inner-decorator>*,:host(cds-custom-tile)>.cds-custom--ai-label,:host(cds-custom-tile)>.cds-custom--slug,:host(cds-custom-tile)>.cds-custom--tile--inner-decorator>*{inset-block-start:1rem;inset-inline-end:1rem;position:absolute}.cds-custom--tile.cds-custom--tile--selectable>.cds-custom--ai-label,.cds-custom--tile.cds-custom--tile--selectable>.cds-custom--slug,.cds-custom--tile.cds-custom--tile--selectable>.cds-custom--tile--inner-decorator>*{inset-inline-end:2.5rem}.cds-custom--tile.cds-custom--tile--selectable.cds-custom--tile--radio>.cds-custom--ai-label,.cds-custom--tile.cds-custom--tile--selectable.cds-custom--tile--radio>.cds-custom--slug,.cds-custom--tile.cds-custom--tile--selectable.cds-custom--tile--radio>.cds-custom--tile--inner-decorator>*{inset-inline-end:1rem;inset-inline-end:2.5rem;transition:inset-inline-end .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--tile.cds-custom--tile--selectable.cds-custom--tile--radio.cds-custom--tile--is-selected>.cds-custom--ai-label,.cds-custom--tile.cds-custom--tile--selectable.cds-custom--tile--radio.cds-custom--tile--is-selected>.cds-custom--slug,.cds-custom--tile.cds-custom--tile--selectable.cds-custom--tile--radio.cds-custom--tile--is-selected>.cds-custom--tile--inner-decorator>*{inset-inline-end:2.5rem}.cds-custom--tile.cds-custom--tile--clickable>.cds-custom--ai-label,.cds-custom--tile.cds-custom--tile--clickable>.cds-custom--slug,.cds-custom--tile.cds-custom--tile--clickable>.cds-custom--tile--inner-decorator>*{pointer-events:none}.cds-custom--tile--decorator:has(.cds-custom--ai-label).cds-custom--tile,.cds-custom--tile--decorator:has(.cds-custom--tile--ai-label-icon).cds-custom--tile,.cds-custom--tile--slug.cds-custom--tile{background:linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)) 0,var(--cds-custom-ai-aura-start,rgba(69,137,255,.1)) 0,15%,var(--cds-custom-ai-aura-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) padding-box,linear-gradient(to bottom,var(--cds-custom-ai-border-start,rgba(166,200,255,.64)),var(--cds-custom-ai-border-end,#78a9ff)) border-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) border-box;border:1px solid transparent;box-shadow:inset 0 -80px 70px -65px var(--cds-custom-ai-inner-shadow,rgba(69,137,255,.1)),0 4px 8px 0 var(--cds-custom-ai-drop-shadow,rgba(15,98,254,.1))}.cds-custom--tile--decorator:has(.cds-custom--ai-label).cds-custom--tile--expandable:hover,.cds-custom--tile--slug.cds-custom--tile--expandable:hover{background:linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)) 0,var(--cds-custom-ai-aura-start,rgba(69,137,255,.1)) 0,15%,var(--cds-custom-ai-aura-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) padding-box,linear-gradient(to bottom,var(--cds-custom-ai-border-start,rgba(166,200,255,.64)),var(--cds-custom-ai-border-end,#78a9ff)) border-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) border-box}.cds-custom--tile--decorator.cds-custom--tile--clickable:before,.cds-custom--tile--decorator.cds-custom--tile--selectable:after,.cds-custom--tile--decorator.cds-custom--tile--selectable:before,.cds-custom--tile--slug.cds-custom--tile--clickable:before,.cds-custom--tile--slug.cds-custom--tile--selectable:after,.cds-custom--tile--slug.cds-custom--tile--selectable:before{block-size:100%;content:\"\";display:block;inline-size:100%;inset-block-start:0;inset-inline-start:0;opacity:0;position:absolute;transition:opacity .11s cubic-bezier(.2,0,.38,.9)}.cds-custom--tile--decorator:has(.cds-custom--ai-label).cds-custom--tile--clickable:before,.cds-custom--tile--decorator:has(.cds-custom--ai-label).cds-custom--tile--selectable:before,.cds-custom--tile--decorator:has(.cds-custom--tile--ai-label-icon).cds-custom--tile--clickable:before,.cds-custom--tile--slug.cds-custom--tile--clickable:before,.cds-custom--tile--slug.cds-custom--tile--selectable:before{background:linear-gradient(to top,var(--cds-custom-ai-aura-hover-start,rgba(69,137,255,.32)) 0,15%,var(--cds-custom-ai-aura-hover-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-ai-aura-hover-background,#edf5ff),var(--cds-custom-ai-aura-hover-background,#edf5ff)) padding-box,linear-gradient(to bottom,var(--cds-custom-ai-border-start,rgba(166,200,255,.64)),var(--cds-custom-ai-border-end,#78a9ff)) border-box,linear-gradient(to top,var(--cds-custom-ai-aura-hover-background,#edf5ff),var(--cds-custom-ai-aura-hover-background,#edf5ff)) border-box;box-shadow:inset 0 -80px 70px -65px var(--cds-custom-ai-inner-shadow,rgba(69,137,255,.1)),0 4px 10px 2px var(--cds-custom-ai-drop-shadow,rgba(15,98,254,.1))}.cds-custom--tile--decorator.cds-custom--tile--clickable:hover:before,.cds-custom--tile--decorator.cds-custom--tile--selectable:hover:before,.cds-custom--tile--slug.cds-custom--tile--clickable:hover:before,.cds-custom--tile--slug.cds-custom--tile--selectable:hover:before{opacity:1}.cds-custom--tile--decorator.cds-custom--tile--clickable:focus,.cds-custom--tile--decorator.cds-custom--tile--selectable:focus,.cds-custom--tile--slug.cds-custom--tile--clickable:focus,.cds-custom--tile--slug.cds-custom--tile--selectable:focus,.cds-custom--tile-input:focus+.cds-custom--tile--decorator.cds-custom--tile,.cds-custom--tile-input:focus+.cds-custom--tile--slug.cds-custom--tile{outline-offset:-1px}.cds-custom--tile--decorator:has(.cds-custom--tile--inner-decorator .cds-custom--ai-label).cds-custom--tile--selectable:after,.cds-custom--tile--slug.cds-custom--tile--selectable:after{background:linear-gradient(to top,var(--cds-custom-ai-aura-start,rgba(69,137,255,.1)) 0,15%,var(--cds-custom-ai-aura-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-layer),var(--cds-custom-layer)) padding-box,linear-gradient(to bottom,var(--cds-custom-border-inverse,#161616),var(--cds-custom-border-inverse,#161616)) border-box,linear-gradient(to top,var(--cds-custom-layer),var(--cds-custom-layer)) border-box;box-shadow:inset 0 -80px 70px -65px var(--cds-custom-ai-inner-shadow,rgba(69,137,255,.1)),0 4px 8px 0 var(--cds-custom-ai-drop-shadow,rgba(15,98,254,.1))}.cds-custom--tile--decorator.cds-custom--tile--selectable:hover:after,.cds-custom--tile--slug.cds-custom--tile--selectable:hover:after{opacity:0}.cds-custom--tile--decorator.cds-custom--tile--is-selected:after,.cds-custom--tile--slug.cds-custom--tile--is-selected:after{opacity:1}.cds-custom--tile--decorator:has(.cds-custom--tile--inner-decorator).cds-custom--tile--is-selected,.cds-custom--tile--slug.cds-custom--tile--is-selected{border-color:var(--cds-custom-border-inverse,#161616)}.cds-custom--tile--decorator.cds-custom--tile--clickable .cds-custom--tile-content,.cds-custom--tile--decorator.cds-custom--tile--selectable .cds-custom--tile-content,.cds-custom--tile--slug.cds-custom--tile--clickable .cds-custom--tile-content,.cds-custom--tile--slug.cds-custom--tile--selectable .cds-custom--tile-content{cursor:pointer;position:relative}.cds-custom--tile--decorator.cds-custom--tile--clickable .cds-custom--tile-content,.cds-custom--tile--decorator.cds-custom--tile--is-selected .cds-custom--tile--inner-decorator>*,.cds-custom--tile--decorator.cds-custom--tile--selectable .cds-custom--tile-content,.cds-custom--tile--decorator.cds-custom--tile--selectable>.cds-custom--tile__checkmark,.cds-custom--tile--slug.cds-custom--tile--clickable .cds-custom--tile-content,.cds-custom--tile--slug.cds-custom--tile--is-selected .cds-custom--ai-label,.cds-custom--tile--slug.cds-custom--tile--is-selected .cds-custom--slug,.cds-custom--tile--slug.cds-custom--tile--selectable .cds-custom--tile-content,.cds-custom--tile--slug.cds-custom--tile--selectable>.cds-custom--tile__checkmark{z-index:1}.cds-custom--tile--decorator.cds-custom--tile--selectable .cds-custom--tile--inner-decorator>:has(>.cds-custom--popover--open),.cds-custom--tile--slug.cds-custom--tile--selectable .cds-custom--ai-label:has(>.cds-custom--popover--open),.cds-custom--tile--slug.cds-custom--tile--selectable .cds-custom--slug:has(>.cds-custom--popover--open){z-index:2}.cds-custom--tile--decorator.cds-custom--tile--selectable>.cds-custom--tile--inner-decorator>*,.cds-custom--tile--decorator.cds-custom--tile--selectable>.cds-custom--tile__checkmark,.cds-custom--tile--slug.cds-custom--tile--selectable>.cds-custom--ai-label,.cds-custom--tile--slug.cds-custom--tile--selectable>.cds-custom--slug,.cds-custom--tile--slug.cds-custom--tile--selectable>.cds-custom--tile__checkmark{z-index:1}.cds-custom--tile--expandable:has(.cds-custom--ai-label>.cds-custom--popover--open),.cds-custom--tile--expandable:has(.cds-custom--slug>.cds-custom--popover--open),.cds-custom--tile--expandable:has(.cds-custom--tile--inner-decorator>*>.cds-custom--popover--open),:has(.cds-custom--ai-label>.cds-custom--popover--open):host(cds-custom-expandable-tile),:has(.cds-custom--slug>.cds-custom--popover--open):host(cds-custom-expandable-tile),:has(.cds-custom--tile--inner-decorator>*>.cds-custom--popover--open):host(cds-custom-expandable-tile){overflow:visible}.cds-custom--tile--clickable .cds-custom--tile--ai-label-icon rect{stroke:var(--cds-custom-icon-primary,#161616)}.cds-custom--tile--clickable .cds-custom--tile--ai-label-icon path{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--tile--decorator-rounded,.cds-custom--tile--decorator-rounded.cds-custom--tile--clickable:before,.cds-custom--tile--decorator-rounded.cds-custom--tile--selectable:after,.cds-custom--tile--decorator-rounded.cds-custom--tile--selectable:before,.cds-custom--tile--slug-rounded,.cds-custom--tile--slug-rounded.cds-custom--tile--clickable:before,.cds-custom--tile--slug-rounded.cds-custom--tile--selectable:after,.cds-custom--tile--slug-rounded.cds-custom--tile--selectable:before,:host(cds-custom-clickable-tile[ai-label][has-rounded-corners]),:host(cds-custom-expandable-tile[ai-label][has-rounded-corners]),:host(cds-custom-radio-tile[ai-label][has-rounded-corners]),:host(cds-custom-selectable-tile[ai-label][has-rounded-corners]),:host(cds-custom-tile[ai-label][has-rounded-corners]){border-radius:.5rem}.cds-custom--tile--decorator-rounded .cds-custom--tile__chevron,.cds-custom--tile--slug-rounded .cds-custom--tile__chevron,:host(cds-custom-clickable-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-expandable-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-radio-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-selectable-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron{border-end-end-radius:.5rem}@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}}input:-webkit-autofill,input:-webkit-autofill:focus,input:-webkit-autofill:hover,textarea:-webkit-autofill,textarea:-webkit-autofill:focus,textarea:-webkit-autofill:hover{-webkit-text-fill-color:var(--cds-custom-text-primary,#161616);box-shadow:0 0 0 1000px var(--cds-custom-field) inset}.cds-custom--fieldset{border:0;box-sizing:border-box;font-family:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}.cds-custom--fieldset *,.cds-custom--fieldset :after,.cds-custom--fieldset :before{box-sizing:inherit}.cds-custom--form-item{align-items:flex-start;display:flex;flex:1 1 auto;flex-direction:column;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--label html{font-size:100%}.cds-custom--label 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--label code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--label strong{font-weight:600}.cds-custom--label{color:var(--cds-custom-text-secondary,#525252);display:inline-block;font-weight:var(--cds-custom-label-01-font-weight,400);font-weight:400;line-height:var(--cds-custom-label-01-line-height,1.33333);line-height:1rem;margin-block-end:.5rem;vertical-align:baseline}.cds-custom--label,.cds-custom--label .cds-custom--toggletip-label{font-size:var(--cds-custom-label-01-font-size,.75rem);letter-spacing:var(--cds-custom-label-01-letter-spacing,.32px)}.cds-custom--label .cds-custom--toggletip-label{font-weight:var(--cds-custom-label-01-font-weight,400);line-height:var(--cds-custom-label-01-line-height,1.33333)}.cds-custom--label--no-margin{margin-block-end:0}.cds-custom--label+.cds-custom--tooltip{inset-block-start:.2rem;inset-inline-start:.5rem;position:relative}.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger{-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--label+.cds-custom--tooltip .cds-custom--tooltip__trigger *,.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger :after,.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger :before{box-sizing:inherit}.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger::-moz-focus-inner{border:0}.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger{align-items:center;display:flex;font-size:var(--cds-custom-label-01-font-size,.75rem);font-weight:var(--cds-custom-label-01-font-weight,400);justify-content:center;letter-spacing:var(--cds-custom-label-01-letter-spacing,.32px);line-height:var(--cds-custom-label-01-line-height,1.33333)}.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger:focus{outline:1px solid var(--cds-custom-focus,#0f62fe)}.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger svg{fill:var(--cds-custom-icon-secondary,#525252)}.cds-custom--label+.cds-custom--tooltip .cds-custom--tooltip__trigger svg :hover{fill:var(--cds-custom-icon-primary,#161616)}.cds-custom--label+.cds-custom--toggletip{inset-block-start:.2rem;inset-inline-start:.5rem}.cds-custom--label.cds-custom--skeleton{background:var(--cds-custom-skeleton-background,#e8e8e8);border:none;box-shadow:none;padding:0;pointer-events:none;position:relative}.cds-custom--label.cds-custom--skeleton:active,.cds-custom--label.cds-custom--skeleton:focus,.cds-custom--label.cds-custom--skeleton:hover{border:none;cursor:default;outline:none}.cds-custom--label.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--label.cds-custom--skeleton:before{animation:none}}@media (forced-colors:active),screen and (-ms-high-contrast:active){.cds-custom--label.cds-custom--skeleton{background:CanvasText}.cds-custom--label.cds-custom--skeleton:before{background:Canvas;forced-color-adjust:none}}.cds-custom--label.cds-custom--skeleton{block-size:.875rem;inline-size:4.6875rem}input[type=number],input[type=text].cds-custom--number{font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,sans-serif}.cds-custom--combo-box[data-invalid]:not(.cds-custom--multi-select--selected) .cds-custom--text-input:not(:focus),.cds-custom--list-box[data-invalid]:not(.cds-custom--multi-select--invalid--focused,.cds-custom--combo-box--invalid--focused),.cds-custom--number[data-invalid] input[type=number]:not(:focus),.cds-custom--number[data-invalid] input[type=text]:not(:focus),.cds-custom--select-input__wrapper[data-invalid] .cds-custom--select-input:not(:focus),.cds-custom--text-area__wrapper[data-invalid]>.cds-custom--text-area--invalid:not(:focus),.cds-custom--text-input__field-wrapper[data-invalid]>.cds-custom--text-input--invalid:not(:focus),input[data-invalid]:not(:focus){outline:2px solid var(--cds-custom-support-error,#da1e28);outline-offset:-2px}@media screen and (prefers-contrast){.cds-custom--combo-box[data-invalid]:not(.cds-custom--multi-select--selected) .cds-custom--text-input:not(:focus),.cds-custom--list-box[data-invalid]:not(.cds-custom--multi-select--invalid--focused,.cds-custom--combo-box--invalid--focused),.cds-custom--number[data-invalid] input[type=number]:not(:focus),.cds-custom--number[data-invalid] input[type=text]:not(:focus),.cds-custom--select-input__wrapper[data-invalid] .cds-custom--select-input:not(:focus),.cds-custom--text-area__wrapper[data-invalid]>.cds-custom--text-area--invalid:not(:focus),.cds-custom--text-input__field-wrapper[data-invalid]>.cds-custom--text-input--invalid:not(:focus),input[data-invalid]:not(:focus){outline-style:dotted}}.cds-custom--date-picker-input__wrapper--invalid~.cds-custom--form-requirement,.cds-custom--date-picker-input__wrapper--warn~.cds-custom--form-requirement,.cds-custom--date-picker-input__wrapper~.cds-custom--form-requirement,.cds-custom--list-box--warning~.cds-custom--form-requirement,.cds-custom--list-box[data-invalid]~.cds-custom--form-requirement,.cds-custom--number[data-invalid] .cds-custom--number__input-wrapper~.cds-custom--form-requirement,.cds-custom--number__input-wrapper--warning~.cds-custom--form-requirement,.cds-custom--select--warning .cds-custom--select-input__wrapper~.cds-custom--form-requirement,.cds-custom--select-input__wrapper[data-invalid]~.cds-custom--form-requirement,.cds-custom--text-area__wrapper--warn~.cds-custom--form-requirement,.cds-custom--text-area__wrapper[data-invalid]~.cds-custom--form-requirement,.cds-custom--text-input__field-wrapper--warning>.cds-custom--text-input~.cds-custom--form-requirement,.cds-custom--text-input__field-wrapper--warning~.cds-custom--form-requirement,.cds-custom--text-input__field-wrapper[data-invalid]~.cds-custom--form-requirement,.cds-custom--time-picker--invalid~.cds-custom--form-requirement,.cds-custom--time-picker--warning~.cds-custom--form-requirement,.cds-custom--time-picker[data-invalid]~.cds-custom--form-requirement,input[data-invalid]~.cds-custom--form-requirement{display:block;font-weight:400;max-block-size:12.5rem;overflow:visible}.cds-custom--select--inline.cds-custom--select--warning .cds-custom--select-input--inline__wrapper~.cds-custom--form-requirement,.cds-custom--select-input--inline__wrapper[data-invalid]~.cds-custom--form-requirement{display:inline-flex;inline-size:100%;margin:0;margin-block-end:0;max-block-size:100%;overflow:visible;padding-inline-start:.5rem}.cds-custom--date-picker-input__wrapper--invalid~.cds-custom--form-requirement,.cds-custom--date-picker-input__wrapper~.cds-custom--form-requirement,.cds-custom--list-box[data-invalid]~.cds-custom--form-requirement,.cds-custom--number[data-invalid] .cds-custom--number__input-wrapper~.cds-custom--form-requirement,.cds-custom--select-input--inline__wrapper[data-invalid]~.cds-custom--form-requirement,.cds-custom--select-input__wrapper[data-invalid]~.cds-custom--form-requirement,.cds-custom--text-area__wrapper[data-invalid]~.cds-custom--form-requirement,.cds-custom--text-input__field-wrapper[data-invalid]~.cds-custom--form-requirement,.cds-custom--time-picker--invalid~.cds-custom--form-requirement,.cds-custom--time-picker[data-invalid]~.cds-custom--form-requirement,input[data-invalid]~.cds-custom--form-requirement{color:var(--cds-custom-text-error,#da1e28)}.cds-custom--form--fluid .cds-custom--text-input__field-wrapper--warning,.cds-custom--form--fluid .cds-custom--text-input__field-wrapper[data-invalid]{display:block}.cds-custom--form--fluid input[data-invalid]{outline:none}.cds-custom--form--fluid .cds-custom--form-requirement{margin:0;padding:.5rem 2.5rem .5rem 1rem}input:not(output,[data-invalid]):-moz-ui-invalid{box-shadow:none}.cds-custom--form-requirement html{font-size:100%}.cds-custom--form-requirement 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--form-requirement code{font-family:IBM Plex Mono,system-ui,-apple-system,BlinkMacSystemFont,\\.SFNSText-Regular,monospace}.cds-custom--form-requirement strong{font-weight:600}.cds-custom--form-requirement{display:none;font-size:var(--cds-custom-helper-text-01-font-size,.75rem);letter-spacing:var(--cds-custom-helper-text-01-letter-spacing,.32px);line-height:var(--cds-custom-helper-text-01-line-height,1.33333);margin:.25rem 0 0;max-block-size:0;overflow:hidden}.cds-custom--select--inline .cds-custom--form__helper-text{margin-block-start:0}.cds-custom--form__helper-text{color:var(--cds-custom-text-helper,#6f6f6f);font-size:var(--cds-custom-helper-text-01-font-size,.75rem);inline-size:100%;letter-spacing:var(--cds-custom-helper-text-01-letter-spacing,.32px);line-height:var(--cds-custom-helper-text-01-line-height,1.33333);margin-block-start:.25rem;opacity:1;z-index:0}.cds-custom--form__helper-text--disabled,.cds-custom--label--disabled,fieldset[disabled] .cds-custom--form__helper-text,fieldset[disabled] .cds-custom--label{color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25))}:host(cds-custom-tile){--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}:host(cds-custom-tile-group){background:transparent}:host(cds-custom-tile-group) fieldset{border:none}:host(cds-custom-clickable-tile){--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;display:grid;outline:none}:host(cds-custom-clickable-tile) .cds-custom--link--disabled{background-color:var(--cds-custom-layer);color:var(--cds-custom-text-disabled,hsla(0,0%,9%,.25));cursor:not-allowed;display:block;padding:density(\"padding-inline\")}:host(cds-custom-clickable-tile) .cds-custom--tile,:host(cds-custom-clickable-tile) :host(cds-custom-expandable-tile),:host(cds-custom-clickable-tile) :host(cds-custom-tile){outline:.125rem solid transparent;padding:1rem}:host(cds-custom-clickable-tile) .cds-custom--tile--clickable{display:block;transition:.15s cubic-bezier(.2,0,.38,.9)}:host(cds-custom-clickable-tile) .cds-custom--tile--clickable:focus{outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){:host(cds-custom-clickable-tile) .cds-custom--tile--clickable:focus{outline-style:dotted}}:host(cds-custom-clickable-tile) .cds-custom--link__icon{display:block}:host(cds-custom-clickable-tile) ::slotted([slot=ai-label]),:host(cds-custom-clickable-tile) ::slotted([slot=slug]){pointer-events:none}:host(cds-custom-radio-tile){--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;display:block;margin-block-end:.5rem;outline:none;position:relative}:host(cds-custom-radio-tile) .cds-custom--tile,:host(cds-custom-radio-tile) :host(cds-custom-expandable-tile),:host(cds-custom-radio-tile) :host(cds-custom-tile){block-size:100%}:host(cds-custom-selectable-tile){--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;display:block;outline:none;position:relative}:host(cds-custom-selectable-tile) .cds-custom--tile,:host(cds-custom-selectable-tile) :host(cds-custom-expandable-tile),:host(cds-custom-selectable-tile) :host(cds-custom-tile){block-size:100%}:host(cds-custom-radio-tile) .cds-custom--tile-input:checked~.cds-custom--tile--selectable .cds-custom--tile__checkmark,:host(cds-custom-selectable-tile) .cds-custom--tile-input:checked~.cds-custom--tile--selectable .cds-custom--tile__checkmark{opacity:1}:host(cds-custom-clickable-tile) ::slotted(*),:host(cds-custom-radio-tile) ::slotted(:not([slot])),:host(cds-custom-selectable-tile) ::slotted(:not([slot])){cursor:pointer;position:relative;z-index:1}:host(cds-custom-expandable-tile){--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}:host(cds-custom-expandable-tile) ::slotted(cds-custom-tile-above-the-fold-content){display:block}:host(cds-custom-expandable-tile) .cds-custom-ce--expandable-tile--below-the-fold-content{max-block-size:0;transition:max-height .11s cubic-bezier(.2,0,.38,.9)}:host(cds-custom-expandable-tile[expanded]) ::slotted(cds-custom-tile-below-the-fold-content){opacity:1;transition:.11s cubic-bezier(.2,0,.38,.9);visibility:visible}:host(cds-custom-expandable-tile[with-interactive]){cursor:default;transition:max-height .15s cubic-bezier(.2,0,.38,.9)}:host(cds-custom-expandable-tile[with-interactive]):hover{background-color:var(--cds-custom-layer)}:host(cds-custom-expandable-tile[with-interactive]):focus{outline:none}:host(cds-custom-expandable-tile:not([with-interactive]):focus-within){outline:2px solid var(--cds-custom-focus,#0f62fe);outline-offset:-2px}@media screen and (prefers-contrast){:host(cds-custom-expandable-tile:not([with-interactive]):focus-within){outline-style:dotted}}:host(cds-custom-expandable-tile:not([with-interactive])) .cds-custom--tile__chevron{background:none;border:none;cursor:pointer;outline:none}:host(cds-custom-clickable-tile[ai-label]) .cds-custom--tile,:host(cds-custom-clickable-tile[ai-label]) :host(cds-custom-expandable-tile),:host(cds-custom-clickable-tile[ai-label]) :host(cds-custom-tile),:host(cds-custom-expandable-tile[ai-label]),:host(cds-custom-radio-tile[ai-label]) .cds-custom--tile,:host(cds-custom-radio-tile[ai-label]) :host(cds-custom-expandable-tile),:host(cds-custom-radio-tile[ai-label]) :host(cds-custom-tile),:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile,:host(cds-custom-selectable-tile[ai-label]) :host(cds-custom-expandable-tile),:host(cds-custom-selectable-tile[ai-label]) :host(cds-custom-tile),:host(cds-custom-tile[ai-label]){background:linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)) 0,var(--cds-custom-ai-aura-start,rgba(69,137,255,.1)) 0,15%,var(--cds-custom-ai-aura-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) padding-box,linear-gradient(to bottom,var(--cds-custom-ai-border-start,rgba(166,200,255,.64)),var(--cds-custom-ai-border-end,#78a9ff)) border-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) border-box;border:1px solid transparent;box-shadow:inset 0 -80px 70px -65px var(--cds-custom-ai-inner-shadow,rgba(69,137,255,.1)),0 24px 40px -24px var(--cds-custom-ai-drop-shadow,rgba(15,98,254,.1))}:host(cds-custom-clickable-tile) ::slotted([slot=ai-label]),:host(cds-custom-clickable-tile) ::slotted([slot=decorator]),:host(cds-custom-clickable-tile) ::slotted([slot=slug]),:host(cds-custom-expandable-tile) ::slotted([slot=ai-label]),:host(cds-custom-expandable-tile) ::slotted([slot=decorator]),:host(cds-custom-expandable-tile) ::slotted([slot=slug]),:host(cds-custom-radio-tile) ::slotted([slot=ai-label]),:host(cds-custom-radio-tile) ::slotted([slot=decorator]),:host(cds-custom-radio-tile) ::slotted([slot=slug]),:host(cds-custom-selectable-tile) ::slotted([slot=ai-label]),:host(cds-custom-selectable-tile) ::slotted([slot=decorator]),:host(cds-custom-selectable-tile) ::slotted([slot=slug]),:host(cds-custom-tile) ::slotted([slot=ai-label]),:host(cds-custom-tile) ::slotted([slot=decorator]),:host(cds-custom-tile) ::slotted([slot=slug]){inset-block-start:1rem;inset-inline-end:1rem;position:absolute}:host(cds-custom-radio-tile[selected]) ::slotted([slot=ai-label]),:host(cds-custom-radio-tile[selected]) ::slotted([slot=decorator]),:host(cds-custom-selectable-tile) ::slotted([slot=ai-label]),:host(cds-custom-selectable-tile) ::slotted([slot=decorator]),:host(cds-custom-selectable-tile) ::slotted([slot=slug]){inset-inline-end:2.5rem;transition:inset-inline-end .11s cubic-bezier(.2,0,.38,.9)}:host(cds-custom-expandable-tile[ai-label]):hover{background:linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)) 0,var(--cds-custom-ai-aura-start,rgba(69,137,255,.1)) 0,15%,var(--cds-custom-ai-aura-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) padding-box,linear-gradient(to bottom,var(--cds-custom-ai-border-start,rgba(166,200,255,.64)),var(--cds-custom-ai-border-end,#78a9ff)) border-box,linear-gradient(to top,var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff)),var(--cds-custom-layer,var(--cds-custom-ai-popover-background,#fff))) border-box}:host(cds-custom-clickable-tile[ai-label]) .cds-custom--tile:before,:host(cds-custom-radio-tile[ai-label]) .cds-custom--tile:after,:host(cds-custom-radio-tile[ai-label]) .cds-custom--tile:before,:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile:after,:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile:before{block-size:100%;content:\"\";display:block;inline-size:100%;inset-block-start:0;inset-inline-start:0;opacity:0;position:absolute;transition:opacity .11s cubic-bezier(.2,0,.38,.9)}:host(cds-custom-clickable-tile[ai-label]) .cds-custom--tile:before,:host(cds-custom-radio-tile[ai-label]) .cds-custom--tile:before,:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile:before{background:linear-gradient(to top,var(--cds-custom-ai-aura-hover-start,rgba(69,137,255,.32)) 0,15%,var(--cds-custom-ai-aura-hover-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-ai-aura-hover-background,#edf5ff),var(--cds-custom-ai-aura-hover-background,#edf5ff)) padding-box,linear-gradient(to bottom,var(--cds-custom-ai-border-start,rgba(166,200,255,.64)),var(--cds-custom-ai-border-end,#78a9ff)) border-box,linear-gradient(to top,var(--cds-custom-ai-aura-hover-background,#edf5ff),var(--cds-custom-ai-aura-hover-background,#edf5ff)) border-box;box-shadow:inset 0 -80px 70px -65px var(--cds-custom-ai-inner-shadow,rgba(69,137,255,.1))}:host(cds-custom-clickable-tile[ai-label]) .cds-custom--tile:hover:before,:host(cds-custom-radio-tile[ai-label]) .cds-custom--tile:hover:before,:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile:hover:before{opacity:1}:host(cds-custom-radio-tile[ai-label]) .cds-custom--tile--is-selected,:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile--is-selected{border:1px solid var(--cds-custom-layer-selected-inverse,#161616)}:host(cds-custom-radio-tile[ai-label]) .cds-custom--tile--is-selected .cds-custom--tile__checkmark,:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile--is-selected .cds-custom--tile__checkmark{z-index:1}:host(cds-custom-radio-tile[ai-label]),:host(cds-custom-selectable-tile[ai-label]) .cds-custom--tile--is-selected:after{background:linear-gradient(to top,var(--cds-custom-ai-aura-start,rgba(69,137,255,.1)) 0,15%,var(--cds-custom-ai-aura-end,hsla(0,0%,100%,0)) 50%) padding-box,linear-gradient(to top,var(--cds-custom-layer),var(--cds-custom-layer)) padding-box,linear-gradient(to bottom,var(--cds-custom-border-inverse,#161616),var(--cds-custom-border-inverse,#161616)) border-box,linear-gradient(to top,var(--cds-custom-layer),var(--cds-custom-layer)) border-box;box-shadow:inset 0 -80px 70px -65px var(--cds-custom-ai-inner-shadow,rgba(69,137,255,.1))}:host(cds-custom-expandable-tile[ai-label]){overflow:visible}:host(cds-custom-clickable-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-expandable-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-radio-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-selectable-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron,:host(cds-custom-tile[ai-label][has-rounded-corners]) .cds-custom--tile__chevron{border-end-end-radius:.5rem}:host(cds-aichat-card-footer) :host([data-flush=\"\"]),:host(cds-aichat-card-footer) [data-flush=\"\"]{margin:-1rem}:host(cds-aichat-card-footer) :host([data-flush=top]),:host(cds-aichat-card-footer) [data-flush=top]{margin-block-start:-1rem;margin-inline:-1rem}:host(cds-aichat-card-footer) :host([data-flush=bottom]),:host(cds-aichat-card-footer) [data-flush=bottom]{margin-block-end:-1rem;margin-inline:-1rem}:host(cds-aichat-card-footer) :host([data-rounded=\"\"]),:host(cds-aichat-card-footer) [data-rounded=\"\"]{border-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=\"\"])::part(button),:host(cds-aichat-card-footer) :host([data-rounded=\"\"])::part(link),:host(cds-aichat-card-footer) [data-rounded=\"\"]::part(button),:host(cds-aichat-card-footer) [data-rounded=\"\"]::part(link){border-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem);outline-offset:-.0625rem}:host(cds-aichat-card-footer) :host([data-rounded=\"\"])>:only-child,:host(cds-aichat-card-footer) [data-rounded=\"\"]>:only-child{border-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top]),:host(cds-aichat-card-footer) [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(cds-aichat-card-footer) :host([data-rounded=top-left]),:host(cds-aichat-card-footer) [data-rounded=top-left]{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-right]),:host(cds-aichat-card-footer) [data-rounded=top-right]{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom]),:host(cds-aichat-card-footer) [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(cds-aichat-card-footer) :host([data-rounded=bottom-left]),:host(cds-aichat-card-footer) [data-rounded=bottom-left]{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-right]),:host(cds-aichat-card-footer) [data-rounded=bottom-right]{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top]:not([data-stacked]))>:first-child,:host(cds-aichat-card-footer) [data-rounded=top]:not([data-stacked])>:first-child{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top]:not([data-stacked]))>:first-child::part(button),:host(cds-aichat-card-footer) [data-rounded=top]:not([data-stacked])>:first-child::part(button){border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top]:not([data-stacked]))>:last-child,:host(cds-aichat-card-footer) [data-rounded=top]:not([data-stacked])>:last-child{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top]:not([data-stacked]))>:last-child::part(button),:host(cds-aichat-card-footer) [data-rounded=top]:not([data-stacked])>:last-child::part(button){border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-left]:not([data-stacked]))>:first-child,:host(cds-aichat-card-footer) [data-rounded=top-left]:not([data-stacked])>:first-child{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-left]:not([data-stacked]))>:first-child::part(button),:host(cds-aichat-card-footer) [data-rounded=top-left]:not([data-stacked])>:first-child::part(button){border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-right]:not([data-stacked]))>:last-child,:host(cds-aichat-card-footer) [data-rounded=top-right]:not([data-stacked])>:last-child{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-right]:not([data-stacked]))>:last-child::part(button),:host(cds-aichat-card-footer) [data-rounded=top-right]:not([data-stacked])>:last-child::part(button){border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom]:not([data-stacked]))>:first-child,:host(cds-aichat-card-footer) [data-rounded=bottom]:not([data-stacked])>:first-child{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom]:not([data-stacked]))>:first-child::part(button),:host(cds-aichat-card-footer) [data-rounded=bottom]:not([data-stacked])>:first-child::part(button){border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom]:not([data-stacked]))>:last-child,:host(cds-aichat-card-footer) [data-rounded=bottom]:not([data-stacked])>:last-child{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom]:not([data-stacked]))>:last-child::part(button),:host(cds-aichat-card-footer) [data-rounded=bottom]:not([data-stacked])>:last-child::part(button){border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-left]:not([data-stacked]))>:first-child,:host(cds-aichat-card-footer) [data-rounded=bottom-left]:not([data-stacked])>:first-child{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-left]:not([data-stacked]))>:first-child::part(button),:host(cds-aichat-card-footer) [data-rounded=bottom-left]:not([data-stacked])>:first-child::part(button){border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-right]:not([data-stacked]))>:last-child,:host(cds-aichat-card-footer) [data-rounded=bottom-right]:not([data-stacked])>:last-child{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-right]:not([data-stacked]))>:last-child::part(button),:host(cds-aichat-card-footer) [data-rounded=bottom-right]:not([data-stacked])>:last-child::part(button){border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top][data-stacked])>:first-child,:host(cds-aichat-card-footer) [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(cds-aichat-card-footer) :host([data-rounded=top][data-stacked])>:first-child::part(button),:host(cds-aichat-card-footer) [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(cds-aichat-card-footer) :host([data-rounded=top-right][data-stacked])>:first-child,:host(cds-aichat-card-footer) [data-rounded=top-right][data-stacked]>:first-child{border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-right][data-stacked])>:first-child::part(button),:host(cds-aichat-card-footer) [data-rounded=top-right][data-stacked]>:first-child::part(button){border-start-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-left][data-stacked])>:first-child,:host(cds-aichat-card-footer) [data-rounded=top-left][data-stacked]>:first-child{border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=top-left][data-stacked])>:first-child::part(button),:host(cds-aichat-card-footer) [data-rounded=top-left][data-stacked]>:first-child::part(button){border-start-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom][data-stacked])>:last-child,:host(cds-aichat-card-footer) [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(cds-aichat-card-footer) :host([data-rounded=bottom][data-stacked])>:last-child::part(button),:host(cds-aichat-card-footer) [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(cds-aichat-card-footer) :host([data-rounded=bottom-right][data-stacked])>:last-child,:host(cds-aichat-card-footer) [data-rounded=bottom-right][data-stacked]>:last-child{border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-right][data-stacked])>:last-child::part(button),:host(cds-aichat-card-footer) [data-rounded=bottom-right][data-stacked]>:last-child::part(button){border-end-end-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-left][data-stacked])>:last-child,:host(cds-aichat-card-footer) [data-rounded=bottom-left][data-stacked]>:last-child{border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-rounded=bottom-left][data-stacked])>:last-child::part(button),:host(cds-aichat-card-footer) [data-rounded=bottom-left][data-stacked]>:last-child::part(button){border-end-start-radius:calc(var(--cds-aichat-rounded-modifier-radius) - .0625rem)}:host(cds-aichat-card-footer) :host([data-stacked]),:host(cds-aichat-card-footer) [data-stacked]{display:flex;flex-direction:column}:host(cds-aichat-card-footer) .cds-aichat-card-footer__actions{display:flex}:host(cds-aichat-card-footer) .cds-aichat-card-footer__actions--stacked{flex-direction:column}:host(cds-aichat-card-footer) .cds-aichat-card-footer__actions:not(:has(cds-custom-button[kind=ghost])){background-color:var(--cds-custom-button-separator,#e0e0e0);gap:.0625rem}:host(cds-aichat-card-footer) .cds-aichat-card-footer__icon-actions{border-block-start:.0625rem solid var(--cds-custom-chat-bubble-border,#e0e0e0);display:flex;justify-content:end}:host(cds-aichat-card-footer) .cds-aichat-card-footer__action-viewing::part(button){align-items:center;flex-direction:row-reverse;flex-grow:0;gap:.5rem;inline-size:100%;justify-content:flex-end}:host(cds-aichat-card-footer) cds-custom-button{flex:1}:host(cds-aichat-card-footer) cds-custom-button[kind=ghost]{border-block-start:.0625rem solid var(--cds-custom-chat-bubble-border,#e0e0e0)}:host(cds-aichat-card-footer) cds-custom-button[kind=ghost]:not([disabled]) .cds-aichat-card-footer__action-icon{fill:var(--cds-custom-link-primary,#0f62fe)}"]);
11
+
12
+ export { styles as default };
13
+ //# sourceMappingURL=card-footer.scss.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card-footer.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,28 @@
1
+ /**
2
+ * @license
3
+ *
4
+ * Copyright IBM Corp. 2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+ import { LitElement } from "lit";
10
+ import "@carbon/web-components/es-custom/components/icon-indicator/icon-indicator.js";
11
+ import "@carbon/web-components/es-custom/components/loading/loading.js";
12
+ import { ICON_INDICATOR_KIND } from "@carbon/web-components/es-custom/components/icon-indicator/icon-indicator.js";
13
+ export type Step = {
14
+ title: string;
15
+ description?: string;
16
+ kind?: ICON_INDICATOR_KIND;
17
+ label?: string;
18
+ };
19
+ /**
20
+ * Step component
21
+ */
22
+ declare class CardSteps extends LitElement {
23
+ static styles: any;
24
+ /** Steps to render */
25
+ steps: Step[];
26
+ render(): import("lit-html").TemplateResult<1>;
27
+ }
28
+ export default CardSteps;
@@ -0,0 +1,91 @@
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 { __decorate } from 'tslib';
9
+ import { LitElement, nothing, html } from 'lit';
10
+ import { property } from 'lit/decorators.js';
11
+ import { ifDefined } from 'lit/directives/if-defined.js';
12
+ import { repeat } from 'lit/directives/repeat.js';
13
+ import { ICON_INDICATOR_KIND } from '@carbon/web-components/es-custom/components/icon-indicator/icon-indicator.js';
14
+ import '@carbon/web-components/es-custom/components/loading/loading.js';
15
+ import prefix from '../../../globals/settings.js';
16
+ import styles from './card-steps.scss.js';
17
+ import { carbonElement } from '../../../globals/decorators/carbon-element.js';
18
+
19
+ /**
20
+ * @license
21
+ *
22
+ * Copyright IBM Corp. 2025
23
+ *
24
+ * This source code is licensed under the Apache-2.0 license found in the
25
+ * LICENSE file in the root directory of this source tree.
26
+ */
27
+ /**
28
+ * Step component
29
+ */
30
+ let CardSteps = class CardSteps extends LitElement {
31
+ constructor() {
32
+ super(...arguments);
33
+ /** Steps to render */
34
+ this.steps = [];
35
+ }
36
+ render() {
37
+ return html `
38
+ <div class="${prefix}-card-steps">
39
+ ${this.steps.length > 0
40
+ ? repeat(this.steps, (step) => step.title, (step) => html `
41
+ <div class="${prefix}-card-step">
42
+ ${!step.kind
43
+ ? html `${step.label}`
44
+ : step.kind !== ICON_INDICATOR_KIND["IN-PROGRESS"]
45
+ ? html `
46
+ <div class="${prefix}-card-step-indicator">
47
+ <cds-custom-icon-indicator
48
+ kind="${ifDefined(step.kind)}"
49
+ size="16"
50
+ ></cds-custom-icon-indicator>
51
+ ${step.label}
52
+ </div>
53
+ `
54
+ : html `
55
+ <div class="${prefix}-card-step-indicator">
56
+ <cds-custom-loading
57
+ active
58
+ description="Loading"
59
+ assistive-text="Loading"
60
+ small
61
+ ></cds-custom-loading>
62
+ ${step.label}
63
+ </div>
64
+ `}
65
+
66
+ <div class="${prefix}-card-step-content">
67
+ <p class="${prefix}-card-step-title">${step.title}</p>
68
+ ${step.description
69
+ ? html `<div class="${prefix}-card-step-description">
70
+ ${step.description}
71
+ </div>`
72
+ : nothing}
73
+ </div>
74
+ </div>
75
+ `)
76
+ : nothing}
77
+ </div>
78
+ `;
79
+ }
80
+ };
81
+ CardSteps.styles = styles;
82
+ __decorate([
83
+ property({ type: Array })
84
+ ], CardSteps.prototype, "steps", void 0);
85
+ CardSteps = __decorate([
86
+ carbonElement("cds-aichat-card-steps")
87
+ ], CardSteps);
88
+ var CDSAIChatCardSteps = CardSteps;
89
+
90
+ export { CDSAIChatCardSteps as default };
91
+ //# sourceMappingURL=card-steps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card-steps.js","sources":["../../../../src/components/card/src/card-steps.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA;;;;;;;AAOG;AAoBH;;AAEG;AAEH,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,UAAU,CAAA;AAAlC,IAAA,WAAA,GAAA;;;QAKE,IAAA,CAAA,KAAK,GAAW,EAAE;IAkDpB;IAhDE,MAAM,GAAA;AACJ,QAAA,OAAO,IAAI,CAAA;oBACK,MAAM,CAAA;AAChB,QAAA,EAAA,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG;cAClB,MAAM,CACJ,IAAI,CAAC,KAAK,EACV,CAAC,IAAI,KAAK,IAAI,CAAC,KAAK,EACpB,CAAC,IAAI,KAAK,IAAI,CAAA;8BACE,MAAM,CAAA;oBAChB,CAAC,IAAI,CAAC;AACN,kBAAE,IAAI,CAAA,GAAG,IAAI,CAAC,KAAK,CAAA;kBACjB,IAAI,CAAC,IAAI,KAAK,mBAAmB,CAAC,aAAa;sBAC7C,IAAI,CAAA;wCACY,MAAM,CAAA;;AAER,oCAAA,EAAA,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;;;AAG5B,4BAAA,EAAA,IAAI,CAAC,KAAK;;AAEf,wBAAA;sBACD,IAAI,CAAA;wCACY,MAAM,CAAA;;;;;;;AAOhB,4BAAA,EAAA,IAAI,CAAC,KAAK;;AAEf,wBAAA,CAAA;;gCAEO,MAAM,CAAA;gCACN,MAAM,CAAA,kBAAA,EAAqB,IAAI,CAAC,KAAK,CAAA;AAC/C,oBAAA,EAAA,IAAI,CAAC;AACL,kBAAE,IAAI,CAAA,CAAA,YAAA,EAAe,MAAM,CAAA;AACrB,0BAAA,EAAA,IAAI,CAAC,WAAW;AACb,8BAAA;AACT,kBAAE,OAAO;;;eAGhB;AAEL,cAAE,OAAO;;KAEd;IACH;;AArDO,SAAA,CAAA,MAAM,GAAG,MAAH;AAIb,UAAA,CAAA;AADC,IAAA,QAAQ,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE;AACN,CAAA,EAAA,SAAA,CAAA,SAAA,EAAA,OAAA,EAAA,MAAA,CAAA;AALf,SAAS,GAAA,UAAA,CAAA;IADd,aAAa,CAAC,uBAAuB;AAChC,CAAA,EAAA,SAAS,CAuDd;AAED,yBAAe,SAAS;;;;"}