dap-design-system 0.48.0 → 0.50.0

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 (621) hide show
  1. package/dist/common/const.d.ts +1 -0
  2. package/dist/common/debounce.d.ts +16 -0
  3. package/dist/common/decorators.d.ts +27 -0
  4. package/dist/common/errors.d.ts +11 -0
  5. package/dist/common/slot.d.ts +2 -0
  6. package/dist/common/stories.consts.d.ts +28 -0
  7. package/dist/common/types.d.ts +81 -0
  8. package/dist/common/utils.d.ts +63 -0
  9. package/dist/components/accordion/accordion-base-element.d.ts +82 -0
  10. package/dist/components/accordion/accordion.component.d.ts +58 -0
  11. package/dist/components/accordion/accordion.d.ts +8 -0
  12. package/dist/components/accordion-group/accordion-group.component.d.ts +39 -0
  13. package/dist/components/accordion-group/accordion-group.d.ts +8 -0
  14. package/dist/components/anchor-heading/anchor-heading.component.d.ts +31 -0
  15. package/dist/components/anchor-heading/anchor-heading.d.ts +8 -0
  16. package/dist/components/avatar/avatar.component.d.ts +117 -0
  17. package/dist/components/avatar/avatar.d.ts +8 -0
  18. package/dist/components/avatar-group/avatar-group.component.d.ts +75 -0
  19. package/dist/components/badge/badge.component.d.ts +80 -0
  20. package/dist/components/badge/badge.d.ts +8 -0
  21. package/dist/components/banner/banner.component.d.ts +78 -0
  22. package/dist/components/banner/banner.d.ts +8 -0
  23. package/dist/components/breadcrumb/breadcrumb.component.d.ts +39 -0
  24. package/dist/components/breadcrumb/breadcrumb.d.ts +8 -0
  25. package/dist/components/breadcrumb-item/breadcrumb-item.component.d.ts +52 -0
  26. package/dist/components/breadcrumb-item/breadcrumb-item.d.ts +8 -0
  27. package/dist/components/button/button.component.d.ts +314 -0
  28. package/dist/components/button/button.d.ts +8 -0
  29. package/dist/components/button/button.variants.d.ts +5 -0
  30. package/dist/components/calendar/calendar-cell.component.d.ts +105 -0
  31. package/dist/components/calendar/calendar-cell.d.ts +8 -0
  32. package/dist/components/calendar/calendar.component.d.ts +140 -0
  33. package/dist/components/calendar/calendar.d.ts +11 -0
  34. package/dist/components/callout/callout.component.d.ts +109 -0
  35. package/dist/components/callout/callout.d.ts +8 -0
  36. package/dist/components/card/card-actions.component.d.ts +35 -0
  37. package/dist/components/card/card-content.component.d.ts +39 -0
  38. package/dist/components/card/card-image.component.d.ts +31 -0
  39. package/dist/components/card/card-subtitle.component.d.ts +54 -0
  40. package/dist/components/card/card-title.component.d.ts +53 -0
  41. package/dist/components/card/card.component.d.ts +59 -0
  42. package/dist/components/card/card.d.ts +17 -0
  43. package/dist/components/checkbox/checkbox.component.d.ts +150 -0
  44. package/dist/components/checkbox/checkbox.d.ts +8 -0
  45. package/dist/components/chip/chip.component.d.ts +60 -0
  46. package/dist/components/chip/chip.d.ts +8 -0
  47. package/dist/components/combobox/combobox.component.d.ts +86 -0
  48. package/dist/components/combobox/combobox.d.ts +8 -0
  49. package/dist/components/combobox/comboboxBase.d.ts +127 -0
  50. package/dist/components/command/command-group.component.d.ts +32 -0
  51. package/dist/components/command/command-item.component.d.ts +67 -0
  52. package/dist/components/command/command.component.d.ts +44 -0
  53. package/dist/components/command/command.d.ts +13 -0
  54. package/dist/components/content-switcher/content-switcher-item.component.d.ts +36 -0
  55. package/dist/components/content-switcher/content-switcher.component.d.ts +34 -0
  56. package/dist/components/content-switcher/content-switcher.d.ts +11 -0
  57. package/dist/components/copybox-input/copybox-input.component.d.ts +89 -0
  58. package/dist/components/copybox-input/copybox-input.d.ts +8 -0
  59. package/dist/components/dap-badge/dap-badge.component.d.ts +43 -0
  60. package/dist/components/dap-badge/dap-badge.d.ts +7 -0
  61. package/dist/components/datatable/datatable.component.d.ts +198 -0
  62. package/dist/components/datatable/datatable.d.ts +7 -0
  63. package/dist/components/datatable/helpers/index.d.ts +13 -0
  64. package/dist/components/datatable/helpers/react.d.ts +81 -0
  65. package/dist/components/datatable/helpers/vue.d.ts +81 -0
  66. package/dist/components/datatable/types/cell-content.d.ts +75 -0
  67. package/dist/components/datatable/types/index.d.ts +11 -0
  68. package/dist/components/datatable/utils/cell-renderer.d.ts +16 -0
  69. package/dist/components/datepicker/datepicker.component.d.ts +190 -0
  70. package/dist/components/datepicker/datepicker.d.ts +8 -0
  71. package/dist/components/divider/divider.component.d.ts +27 -0
  72. package/dist/components/divider/divider.d.ts +8 -0
  73. package/dist/components/feedback/feedback.component.d.ts +52 -0
  74. package/dist/components/feedback/feedback.d.ts +8 -0
  75. package/dist/components/file-input/file-input-list-item.component.d.ts +115 -0
  76. package/dist/components/file-input/file-input-list-item.d.ts +8 -0
  77. package/dist/components/file-input/file-input-list.component.d.ts +68 -0
  78. package/dist/components/file-input/file-input-list.d.ts +8 -0
  79. package/dist/components/file-input/file-input.component.d.ts +215 -0
  80. package/dist/components/file-input/file-input.d.ts +8 -0
  81. package/dist/components/form/form-label/form-label.component.d.ts +43 -0
  82. package/dist/components/form/form-label/form-label.d.ts +8 -0
  83. package/dist/components/form/input-group/input-group.component.d.ts +43 -0
  84. package/dist/components/form/input-group/input-group.d.ts +8 -0
  85. package/dist/components/form/radio-group/radio-group.component.d.ts +77 -0
  86. package/dist/components/form/radio-group/radio-group.d.ts +8 -0
  87. package/dist/components/icon/icon.component.d.ts +42 -0
  88. package/dist/components/icon/icon.d.ts +8 -0
  89. package/dist/components/icon-button/icon-button.component.d.ts +104 -0
  90. package/dist/components/icon-button/icon-button.d.ts +8 -0
  91. package/dist/components/icons/arrows/arrows-arrow-down-line/arrows-arrow-down-line.component.d.ts +30 -0
  92. package/dist/components/icons/arrows/arrows-arrow-down-line/arrows-arrow-down-line.d.ts +8 -0
  93. package/dist/components/icons/arrows/arrows-arrow-down-s-fill/arrows-arrow-down-s-fill.component.d.ts +30 -0
  94. package/dist/components/icons/arrows/arrows-arrow-down-s-fill/arrows-arrow-down-s-fill.d.ts +8 -0
  95. package/dist/components/icons/arrows/arrows-arrow-down-s-line/arrows-arrow-down-s-line.component.d.ts +30 -0
  96. package/dist/components/icons/arrows/arrows-arrow-down-s-line/arrows-arrow-down-s-line.d.ts +8 -0
  97. package/dist/components/icons/arrows/arrows-arrow-left-down-line/arrows-arrow-left-down-line.component.d.ts +30 -0
  98. package/dist/components/icons/arrows/arrows-arrow-left-down-line/arrows-arrow-left-down-line.d.ts +8 -0
  99. package/dist/components/icons/arrows/arrows-arrow-left-l-line/arrows-arrow-left-l-line.component.d.ts +30 -0
  100. package/dist/components/icons/arrows/arrows-arrow-left-l-line/arrows-arrow-left-l-line.d.ts +8 -0
  101. package/dist/components/icons/arrows/arrows-arrow-left-line/arrows-arrow-left-line.component.d.ts +30 -0
  102. package/dist/components/icons/arrows/arrows-arrow-left-line/arrows-arrow-left-line.d.ts +8 -0
  103. package/dist/components/icons/arrows/arrows-arrow-left-s-fill/arrows-arrow-left-s-fill.component.d.ts +30 -0
  104. package/dist/components/icons/arrows/arrows-arrow-left-s-fill/arrows-arrow-left-s-fill.d.ts +8 -0
  105. package/dist/components/icons/arrows/arrows-arrow-left-s-line/arrows-arrow-left-s-line.component.d.ts +30 -0
  106. package/dist/components/icons/arrows/arrows-arrow-left-s-line/arrows-arrow-left-s-line.d.ts +8 -0
  107. package/dist/components/icons/arrows/arrows-arrow-left-up-line/arrows-arrow-left-up-line.component.d.ts +30 -0
  108. package/dist/components/icons/arrows/arrows-arrow-left-up-line/arrows-arrow-left-up-line.d.ts +8 -0
  109. package/dist/components/icons/arrows/arrows-arrow-right-down-line/arrows-arrow-right-down-line.component.d.ts +30 -0
  110. package/dist/components/icons/arrows/arrows-arrow-right-down-line/arrows-arrow-right-down-line.d.ts +8 -0
  111. package/dist/components/icons/arrows/arrows-arrow-right-l-line/arrows-arrow-right-l-line.component.d.ts +30 -0
  112. package/dist/components/icons/arrows/arrows-arrow-right-l-line/arrows-arrow-right-l-line.d.ts +8 -0
  113. package/dist/components/icons/arrows/arrows-arrow-right-line/arrows-arrow-right-line.component.d.ts +30 -0
  114. package/dist/components/icons/arrows/arrows-arrow-right-line/arrows-arrow-right-line.d.ts +8 -0
  115. package/dist/components/icons/arrows/arrows-arrow-right-s-fill/arrows-arrow-right-s-fill.component.d.ts +30 -0
  116. package/dist/components/icons/arrows/arrows-arrow-right-s-fill/arrows-arrow-right-s-fill.d.ts +8 -0
  117. package/dist/components/icons/arrows/arrows-arrow-right-s-line/arrows-arrow-right-s-line.component.d.ts +30 -0
  118. package/dist/components/icons/arrows/arrows-arrow-right-s-line/arrows-arrow-right-s-line.d.ts +8 -0
  119. package/dist/components/icons/arrows/arrows-arrow-right-up-line/arrows-arrow-right-up-line.component.d.ts +30 -0
  120. package/dist/components/icons/arrows/arrows-arrow-right-up-line/arrows-arrow-right-up-line.d.ts +8 -0
  121. package/dist/components/icons/arrows/arrows-arrow-up-line/arrows-arrow-up-line.component.d.ts +30 -0
  122. package/dist/components/icons/arrows/arrows-arrow-up-line/arrows-arrow-up-line.d.ts +8 -0
  123. package/dist/components/icons/arrows/arrows-arrow-up-s-fill/arrows-arrow-up-s-fill.component.d.ts +30 -0
  124. package/dist/components/icons/arrows/arrows-arrow-up-s-fill/arrows-arrow-up-s-fill.d.ts +8 -0
  125. package/dist/components/icons/arrows/arrows-arrow-up-s-line/arrows-arrow-up-s-line.component.d.ts +30 -0
  126. package/dist/components/icons/arrows/arrows-arrow-up-s-line/arrows-arrow-up-s-line.d.ts +8 -0
  127. package/dist/components/icons/arrows/arrows-expand-up-down-fill/arrows-expand-up-down-fill.component.d.ts +30 -0
  128. package/dist/components/icons/arrows/arrows-expand-up-down-fill/arrows-expand-up-down-fill.d.ts +8 -0
  129. package/dist/components/icons/buildings/buildings-home-6-line/buildings-home-6-line.component.d.ts +30 -0
  130. package/dist/components/icons/buildings/buildings-home-6-line/buildings-home-6-line.d.ts +8 -0
  131. package/dist/components/icons/business/business-calendar-line/business-calendar-line.component.d.ts +30 -0
  132. package/dist/components/icons/business/business-calendar-line/business-calendar-line.d.ts +8 -0
  133. package/dist/components/icons/design/design-edit-line/design-edit-line.component.d.ts +30 -0
  134. package/dist/components/icons/design/design-edit-line/design-edit-line.d.ts +8 -0
  135. package/dist/components/icons/design/design-tools-line/design-tools-line.component.d.ts +30 -0
  136. package/dist/components/icons/design/design-tools-line/design-tools-line.d.ts +8 -0
  137. package/dist/components/icons/device/device-computer-line/device-computer-line.component.d.ts +30 -0
  138. package/dist/components/icons/device/device-computer-line/device-computer-line.d.ts +8 -0
  139. package/dist/components/icons/document/document-clipboard-line/document-clipboard-line.component.d.ts +30 -0
  140. package/dist/components/icons/document/document-clipboard-line/document-clipboard-line.d.ts +8 -0
  141. package/dist/components/icons/document/document-file-copy-line/document-file-copy-line.component.d.ts +30 -0
  142. package/dist/components/icons/document/document-file-copy-line/document-file-copy-line.d.ts +8 -0
  143. package/dist/components/icons/document/document-file-image-line/document-file-image-line.component.d.ts +30 -0
  144. package/dist/components/icons/document/document-file-image-line/document-file-image-line.d.ts +8 -0
  145. package/dist/components/icons/document/document-file-music-line/document-file-music-line.component.d.ts +30 -0
  146. package/dist/components/icons/document/document-file-music-line/document-file-music-line.d.ts +8 -0
  147. package/dist/components/icons/document/document-file-text-line/document-file-text-line.component.d.ts +30 -0
  148. package/dist/components/icons/document/document-file-text-line/document-file-text-line.d.ts +8 -0
  149. package/dist/components/icons/document/document-file-video-line/document-file-video-line.component.d.ts +30 -0
  150. package/dist/components/icons/document/document-file-video-line/document-file-video-line.d.ts +8 -0
  151. package/dist/components/icons/document/document-folder-line/document-folder-line.component.d.ts +30 -0
  152. package/dist/components/icons/document/document-folder-line/document-folder-line.d.ts +8 -0
  153. package/dist/components/icons/document/document-folder-open-line/document-folder-open-line.component.d.ts +30 -0
  154. package/dist/components/icons/document/document-folder-open-line/document-folder-open-line.d.ts +8 -0
  155. package/dist/components/icons/health/health-heart-fill/health-heart-fill.component.d.ts +30 -0
  156. package/dist/components/icons/health/health-heart-fill/health-heart-fill.d.ts +8 -0
  157. package/dist/components/icons/health/health-heart-line/health-heart-line.component.d.ts +30 -0
  158. package/dist/components/icons/health/health-heart-line/health-heart-line.d.ts +8 -0
  159. package/dist/components/icons/others/others-cookie-line/others-cookie-line.component.d.ts +30 -0
  160. package/dist/components/icons/others/others-cookie-line/others-cookie-line.d.ts +8 -0
  161. package/dist/components/icons/system/system-add-line/system-add-line.component.d.ts +30 -0
  162. package/dist/components/icons/system/system-add-line/system-add-line.d.ts +8 -0
  163. package/dist/components/icons/system/system-alert-fill/system-alert-fill.component.d.ts +30 -0
  164. package/dist/components/icons/system/system-alert-fill/system-alert-fill.d.ts +8 -0
  165. package/dist/components/icons/system/system-alert-line/system-alert-line.component.d.ts +30 -0
  166. package/dist/components/icons/system/system-alert-line/system-alert-line.d.ts +8 -0
  167. package/dist/components/icons/system/system-check-line/system-check-line.component.d.ts +30 -0
  168. package/dist/components/icons/system/system-check-line/system-check-line.d.ts +8 -0
  169. package/dist/components/icons/system/system-check-line2/system-check-line2.component.d.ts +30 -0
  170. package/dist/components/icons/system/system-check-line2/system-check-line2.d.ts +8 -0
  171. package/dist/components/icons/system/system-checkbox-blank-circle-fill/system-checkbox-blank-circle-fill.component.d.ts +30 -0
  172. package/dist/components/icons/system/system-checkbox-blank-circle-fill/system-checkbox-blank-circle-fill.d.ts +8 -0
  173. package/dist/components/icons/system/system-checkbox-blank-circle-fill-check/system-checkbox-blank-circle-fill-check.component.d.ts +30 -0
  174. package/dist/components/icons/system/system-checkbox-blank-circle-fill-check/system-checkbox-blank-circle-fill-check.d.ts +8 -0
  175. package/dist/components/icons/system/system-checkbox-blank-circle-line/system-checkbox-blank-circle-line.component.d.ts +30 -0
  176. package/dist/components/icons/system/system-checkbox-blank-circle-line/system-checkbox-blank-circle-line.d.ts +8 -0
  177. package/dist/components/icons/system/system-checkbox-circle-fill/system-checkbox-circle-fill.component.d.ts +30 -0
  178. package/dist/components/icons/system/system-checkbox-circle-fill/system-checkbox-circle-fill.d.ts +8 -0
  179. package/dist/components/icons/system/system-checkbox-circle-line/system-checkbox-circle-line.component.d.ts +30 -0
  180. package/dist/components/icons/system/system-checkbox-circle-line/system-checkbox-circle-line.d.ts +8 -0
  181. package/dist/components/icons/system/system-close-circle-fill/system-close-circle-fill.component.d.ts +30 -0
  182. package/dist/components/icons/system/system-close-circle-fill/system-close-circle-fill.d.ts +8 -0
  183. package/dist/components/icons/system/system-close-circle-line/system-close-circle-line.component.d.ts +30 -0
  184. package/dist/components/icons/system/system-close-circle-line/system-close-circle-line.d.ts +8 -0
  185. package/dist/components/icons/system/system-close-fill/system-close-fill.component.d.ts +30 -0
  186. package/dist/components/icons/system/system-close-fill/system-close-fill.d.ts +8 -0
  187. package/dist/components/icons/system/system-close-line/system-close-line.component.d.ts +30 -0
  188. package/dist/components/icons/system/system-close-line/system-close-line.d.ts +8 -0
  189. package/dist/components/icons/system/system-delete-bin-fill/system-delete-bin-fill.component.d.ts +30 -0
  190. package/dist/components/icons/system/system-delete-bin-fill/system-delete-bin-fill.d.ts +8 -0
  191. package/dist/components/icons/system/system-delete-bin-line/system-delete-bin-line.component.d.ts +30 -0
  192. package/dist/components/icons/system/system-delete-bin-line/system-delete-bin-line.d.ts +8 -0
  193. package/dist/components/icons/system/system-download-line/system-download-line.component.d.ts +30 -0
  194. package/dist/components/icons/system/system-download-line/system-download-line.d.ts +8 -0
  195. package/dist/components/icons/system/system-error-warning-fill/system-error-warning-fill.component.d.ts +30 -0
  196. package/dist/components/icons/system/system-error-warning-fill/system-error-warning-fill.d.ts +8 -0
  197. package/dist/components/icons/system/system-error-warning-line/system-error-warning-line.component.d.ts +30 -0
  198. package/dist/components/icons/system/system-error-warning-line/system-error-warning-line.d.ts +8 -0
  199. package/dist/components/icons/system/system-external-link-line/system-external-link-line.component.d.ts +30 -0
  200. package/dist/components/icons/system/system-external-link-line/system-external-link-line.d.ts +8 -0
  201. package/dist/components/icons/system/system-eye-line/system-eye-line.component.d.ts +30 -0
  202. package/dist/components/icons/system/system-eye-line/system-eye-line.d.ts +8 -0
  203. package/dist/components/icons/system/system-eye-off-line/system-eye-off-line.component.d.ts +30 -0
  204. package/dist/components/icons/system/system-eye-off-line/system-eye-off-line.d.ts +8 -0
  205. package/dist/components/icons/system/system-forbid-fill/system-forbid-fill.component.d.ts +30 -0
  206. package/dist/components/icons/system/system-forbid-fill/system-forbid-fill.d.ts +8 -0
  207. package/dist/components/icons/system/system-information-2-fill/system-information-2-fill.component.d.ts +30 -0
  208. package/dist/components/icons/system/system-information-2-fill/system-information-2-fill.d.ts +8 -0
  209. package/dist/components/icons/system/system-information-fill/system-information-fill.component.d.ts +30 -0
  210. package/dist/components/icons/system/system-information-fill/system-information-fill.d.ts +8 -0
  211. package/dist/components/icons/system/system-information-line/system-information-line.component.d.ts +30 -0
  212. package/dist/components/icons/system/system-information-line/system-information-line.d.ts +8 -0
  213. package/dist/components/icons/system/system-lightbulb-fill/system-lightbulb-fill.component.d.ts +30 -0
  214. package/dist/components/icons/system/system-lightbulb-fill/system-lightbulb-fill.d.ts +8 -0
  215. package/dist/components/icons/system/system-loading-spinner/system-loading-spinner.component.d.ts +30 -0
  216. package/dist/components/icons/system/system-loading-spinner/system-loading-spinner.d.ts +8 -0
  217. package/dist/components/icons/system/system-lock-fill/system-lock-fill.component.d.ts +30 -0
  218. package/dist/components/icons/system/system-lock-fill/system-lock-fill.d.ts +8 -0
  219. package/dist/components/icons/system/system-lock-line/system-lock-line.component.d.ts +30 -0
  220. package/dist/components/icons/system/system-lock-line/system-lock-line.d.ts +8 -0
  221. package/dist/components/icons/system/system-menu-line/system-menu-line.component.d.ts +30 -0
  222. package/dist/components/icons/system/system-menu-line/system-menu-line.d.ts +8 -0
  223. package/dist/components/icons/system/system-menu-line-s/system-menu-line-s.component.d.ts +30 -0
  224. package/dist/components/icons/system/system-menu-line-s/system-menu-line-s.d.ts +8 -0
  225. package/dist/components/icons/system/system-more-2-line/system-more-2-line.component.d.ts +30 -0
  226. package/dist/components/icons/system/system-more-2-line/system-more-2-line.d.ts +8 -0
  227. package/dist/components/icons/system/system-more-line/system-more-line.component.d.ts +30 -0
  228. package/dist/components/icons/system/system-more-line/system-more-line.d.ts +8 -0
  229. package/dist/components/icons/system/system-search-line/system-search-line.component.d.ts +30 -0
  230. package/dist/components/icons/system/system-search-line/system-search-line.d.ts +8 -0
  231. package/dist/components/icons/system/system-share-line/system-share-line.component.d.ts +30 -0
  232. package/dist/components/icons/system/system-share-line/system-share-line.d.ts +8 -0
  233. package/dist/components/icons/system/system-shield-check-fill/system-shield-check-fill.component.d.ts +30 -0
  234. package/dist/components/icons/system/system-shield-check-fill/system-shield-check-fill.d.ts +8 -0
  235. package/dist/components/icons/system/system-shield-check-line/system-shield-check-line.component.d.ts +30 -0
  236. package/dist/components/icons/system/system-shield-check-line/system-shield-check-line.d.ts +8 -0
  237. package/dist/components/icons/system/system-star-fill/system-star-fill.component.d.ts +30 -0
  238. package/dist/components/icons/system/system-star-fill/system-star-fill.d.ts +8 -0
  239. package/dist/components/icons/system/system-subtract-line/system-subtract-line.component.d.ts +30 -0
  240. package/dist/components/icons/system/system-subtract-line/system-subtract-line.d.ts +8 -0
  241. package/dist/components/icons/system/system-subtract-line2/system-subtract-line2.component.d.ts +30 -0
  242. package/dist/components/icons/system/system-subtract-line2/system-subtract-line2.d.ts +8 -0
  243. package/dist/components/icons/system/system-time-fill/system-time-fill.component.d.ts +30 -0
  244. package/dist/components/icons/system/system-time-fill/system-time-fill.d.ts +8 -0
  245. package/dist/components/icons/system/system-time-line/system-time-line.component.d.ts +30 -0
  246. package/dist/components/icons/system/system-time-line/system-time-line.d.ts +8 -0
  247. package/dist/components/icons/system/system-upload-2-fill/system-upload-2-fill.component.d.ts +30 -0
  248. package/dist/components/icons/system/system-upload-2-fill/system-upload-2-fill.d.ts +8 -0
  249. package/dist/components/icons/system/system-upload-2-line/system-upload-2-line.component.d.ts +30 -0
  250. package/dist/components/icons/system/system-upload-2-line/system-upload-2-line.d.ts +8 -0
  251. package/dist/components/icons/system/system-upload-line/system-upload-line.component.d.ts +30 -0
  252. package/dist/components/icons/system/system-upload-line/system-upload-line.d.ts +8 -0
  253. package/dist/components/icons/user/user-account-circle-fill/user-account-circle-fill.component.d.ts +30 -0
  254. package/dist/components/icons/user/user-account-circle-fill/user-account-circle-fill.d.ts +8 -0
  255. package/dist/components/icons/user/user-account-circle-line/user-account-circle-line.component.d.ts +30 -0
  256. package/dist/components/icons/user/user-account-circle-line/user-account-circle-line.d.ts +8 -0
  257. package/dist/components/icons/user/user-user-fill/user-user-fill.component.d.ts +30 -0
  258. package/dist/components/icons/user/user-user-fill/user-user-fill.d.ts +8 -0
  259. package/dist/components/icons/user/user-user-line/user-user-line.component.d.ts +30 -0
  260. package/dist/components/icons/user/user-user-line/user-user-line.d.ts +8 -0
  261. package/dist/components/input/input-base-element.d.ts +42 -0
  262. package/dist/components/input/input.component.d.ts +101 -0
  263. package/dist/components/input/input.d.ts +8 -0
  264. package/dist/components/label/label.component.d.ts +43 -0
  265. package/dist/components/label/label.d.ts +7 -0
  266. package/dist/components/link/link.component.d.ts +97 -0
  267. package/dist/components/link/link.d.ts +8 -0
  268. package/dist/components/link/link.variants.d.ts +6 -0
  269. package/dist/components/list-item/list-item.component.d.ts +117 -0
  270. package/dist/components/list-item/list-item.d.ts +8 -0
  271. package/dist/components/modal/modal-base-element.d.ts +61 -0
  272. package/dist/components/modal/modal.component.d.ts +77 -0
  273. package/dist/components/modal/modal.d.ts +8 -0
  274. package/dist/components/navigation-menu/navigation-menu-item.component.d.ts +162 -0
  275. package/dist/components/navigation-menu/navigation-menu.component.d.ts +77 -0
  276. package/dist/components/navigation-menu/navigation-menu.d.ts +10 -0
  277. package/dist/components/navigation-menu/submenu-controller.d.ts +27 -0
  278. package/dist/components/notification-badge/notification-badge.component.d.ts +73 -0
  279. package/dist/components/notification-badge/notification-badge.d.ts +7 -0
  280. package/dist/components/number-input/number-input.component.d.ts +127 -0
  281. package/dist/components/number-input/number-input.d.ts +8 -0
  282. package/dist/components/official-website-banner/official-website-banner.component.d.ts +47 -0
  283. package/dist/components/official-website-banner/official-website-banner.d.ts +8 -0
  284. package/dist/components/option-item/option-item.component.d.ts +62 -0
  285. package/dist/components/option-item/option-item.d.ts +8 -0
  286. package/dist/components/option-list/option-list.component.d.ts +98 -0
  287. package/dist/components/option-list/option-list.d.ts +8 -0
  288. package/dist/components/overlay/overlay.component.d.ts +36 -0
  289. package/dist/components/overlay/overlay.d.ts +8 -0
  290. package/dist/components/pager/pager.component.d.ts +87 -0
  291. package/dist/components/pager/pager.d.ts +7 -0
  292. package/dist/components/password-input/password-input.component.d.ts +93 -0
  293. package/dist/components/password-input/password-input.d.ts +8 -0
  294. package/dist/components/popup/popup-base-element.d.ts +54 -0
  295. package/dist/components/popup/popup.component.d.ts +44 -0
  296. package/dist/components/popup/popup.d.ts +8 -0
  297. package/dist/components/progress/progress.component.d.ts +102 -0
  298. package/dist/components/progress/progress.d.ts +8 -0
  299. package/dist/components/radio-button/radio-button.component.d.ts +140 -0
  300. package/dist/components/radio-button/radio-button.d.ts +8 -0
  301. package/dist/components/rating/rating.component.d.ts +50 -0
  302. package/dist/components/rating/rating.d.ts +8 -0
  303. package/dist/components/scroll-area/scroll-area.component.d.ts +42 -0
  304. package/dist/components/scroll-area/scroll-area.d.ts +8 -0
  305. package/dist/components/search/search.component.d.ts +87 -0
  306. package/dist/components/search/search.d.ts +8 -0
  307. package/dist/components/select/select.component.d.ts +157 -0
  308. package/dist/components/select/select.d.ts +8 -0
  309. package/dist/components/sidenav/sidenav-group.component.d.ts +54 -0
  310. package/dist/components/sidenav/sidenav-item.component.d.ts +46 -0
  311. package/dist/components/sidenav/sidenav.component.d.ts +29 -0
  312. package/dist/components/sidenav/sidenav.d.ts +11 -0
  313. package/dist/components/skeleton/skeleton.component.d.ts +63 -0
  314. package/dist/components/skeleton/skeleton.d.ts +8 -0
  315. package/dist/components/skip-link/skip-link.component.d.ts +39 -0
  316. package/dist/components/skip-link/skip-link.d.ts +8 -0
  317. package/dist/components/snackbar/index.d.ts +73 -0
  318. package/dist/components/snackbar/snackbar-message.component.d.ts +66 -0
  319. package/dist/components/snackbar/snackbar.component.d.ts +89 -0
  320. package/dist/components/snackbar/snackbar.d.ts +11 -0
  321. package/dist/components/spinner/spinner.component.d.ts +73 -0
  322. package/dist/components/spinner/spinner.d.ts +8 -0
  323. package/dist/components/stack/stack.component.d.ts +29 -0
  324. package/dist/components/stack/stack.d.ts +8 -0
  325. package/dist/components/switch/switch.component.d.ts +110 -0
  326. package/dist/components/switch/switch.d.ts +8 -0
  327. package/dist/components/tab/tab-group.component.d.ts +57 -0
  328. package/dist/components/tab/tab-group.d.ts +8 -0
  329. package/dist/components/tab/tab.component.d.ts +22 -0
  330. package/dist/components/tab/tab.d.ts +8 -0
  331. package/dist/components/table/table-cell.component.d.ts +28 -0
  332. package/dist/components/table/table-header.component.d.ts +28 -0
  333. package/dist/components/table/table-row.component.d.ts +22 -0
  334. package/dist/components/table/table.component.d.ts +26 -0
  335. package/dist/components/table/table.d.ts +17 -0
  336. package/dist/components/textarea/textarea.component.d.ts +100 -0
  337. package/dist/components/textarea/textarea.d.ts +8 -0
  338. package/dist/components/timeline/timeline-item.component.d.ts +25 -0
  339. package/dist/components/timeline/timeline.component.d.ts +17 -0
  340. package/dist/components/timeline/timeline.d.ts +11 -0
  341. package/dist/components/timepicker/time-grid.component.d.ts +68 -0
  342. package/dist/components/timepicker/timepicker.component.d.ts +220 -0
  343. package/dist/components/timepicker/timepicker.d.ts +11 -0
  344. package/dist/components/toc/toc.component.d.ts +80 -0
  345. package/dist/components/toc/toc.d.ts +8 -0
  346. package/dist/components/toggle-button/toggle-button.component.d.ts +65 -0
  347. package/dist/components/toggle-button/toggle-button.d.ts +8 -0
  348. package/dist/components/tooltip/tooltip.component.d.ts +65 -0
  349. package/dist/components/tooltip/tooltip.d.ts +8 -0
  350. package/dist/components/tray/tray.component.d.ts +70 -0
  351. package/dist/components/tray/tray.d.ts +8 -0
  352. package/dist/components/typography/typography.component.d.ts +83 -0
  353. package/dist/components/typography/typography.d.ts +8 -0
  354. package/dist/{components-CmjGTARf.js → components-C0YPUxrS.js} +567 -517
  355. package/dist/components-C0YPUxrS.js.map +1 -0
  356. package/dist/components.d.ts +97 -7639
  357. package/dist/components.js +1 -1
  358. package/dist/dap-design-system.d.ts +183 -0
  359. package/dist/datatable/types.js +2 -0
  360. package/dist/datatable/types.js.map +1 -0
  361. package/dist/dds.js +1 -1
  362. package/dist/events/dds-all-uploads-complete.d.ts +6 -0
  363. package/dist/events/dds-anchor-change.d.ts +9 -0
  364. package/dist/events/dds-beforeclose.d.ts +6 -0
  365. package/dist/events/dds-beforeopen.d.ts +6 -0
  366. package/dist/events/dds-blur.d.ts +6 -0
  367. package/dist/events/dds-cancel.d.ts +6 -0
  368. package/dist/events/dds-change.d.ts +6 -0
  369. package/dist/events/dds-clear.d.ts +6 -0
  370. package/dist/events/dds-click.d.ts +6 -0
  371. package/dist/events/dds-close.d.ts +8 -0
  372. package/dist/events/dds-closed.d.ts +6 -0
  373. package/dist/events/dds-command-item-click.d.ts +9 -0
  374. package/dist/events/dds-copy.d.ts +8 -0
  375. package/dist/events/dds-countchange.d.ts +8 -0
  376. package/dist/events/dds-error.d.ts +6 -0
  377. package/dist/events/dds-file-change.d.ts +11 -0
  378. package/dist/events/dds-file-click.d.ts +9 -0
  379. package/dist/events/dds-file-delete-error.d.ts +10 -0
  380. package/dist/events/dds-file-remove.d.ts +9 -0
  381. package/dist/events/dds-file-removed.d.ts +13 -0
  382. package/dist/events/dds-files-accepted.d.ts +8 -0
  383. package/dist/events/dds-focus.d.ts +6 -0
  384. package/dist/events/dds-input.d.ts +6 -0
  385. package/dist/events/dds-invalid-date.d.ts +10 -0
  386. package/dist/events/dds-invalid-time.d.ts +12 -0
  387. package/dist/events/dds-item-click.d.ts +6 -0
  388. package/dist/events/dds-keydown.d.ts +18 -0
  389. package/dist/events/dds-list-changed.d.ts +8 -0
  390. package/dist/events/dds-load.d.ts +6 -0
  391. package/dist/events/dds-loading-timeout.d.ts +8 -0
  392. package/dist/events/dds-navigation-dropdown-open.d.ts +9 -0
  393. package/dist/events/dds-navigation-item-click.d.ts +9 -0
  394. package/dist/events/dds-not-allowed.d.ts +6 -0
  395. package/dist/events/dds-ok.d.ts +6 -0
  396. package/dist/events/dds-opened.d.ts +6 -0
  397. package/dist/events/dds-option-change.d.ts +12 -0
  398. package/dist/events/dds-overflow-click.d.ts +9 -0
  399. package/dist/events/dds-pagination-change.d.ts +9 -0
  400. package/dist/events/dds-remove.d.ts +8 -0
  401. package/dist/events/dds-row-click.d.ts +7 -0
  402. package/dist/events/dds-search.d.ts +8 -0
  403. package/dist/events/dds-select.d.ts +8 -0
  404. package/dist/events/dds-selection-change.d.ts +7 -0
  405. package/dist/events/dds-sorting-change.d.ts +9 -0
  406. package/dist/events/dds-tab-select.d.ts +8 -0
  407. package/dist/events/dds-upload-complete.d.ts +11 -0
  408. package/dist/events/dds-upload-error.d.ts +12 -0
  409. package/dist/events/dds-upload-progress.d.ts +11 -0
  410. package/dist/events/dds-upload-start.d.ts +8 -0
  411. package/dist/events/dds-valid-date.d.ts +9 -0
  412. package/dist/events/dds-valid-time.d.ts +11 -0
  413. package/dist/events/events.d.ts +51 -0
  414. package/dist/helpers/react.js +73 -0
  415. package/dist/helpers/react.js.map +1 -0
  416. package/dist/helpers/vue.js +61 -0
  417. package/dist/helpers/vue.js.map +1 -0
  418. package/dist/icons.d.ts +86 -2496
  419. package/dist/internal/adopt-light-styles.d.ts +1 -0
  420. package/dist/internal/dds-hu-element.d.ts +18 -0
  421. package/dist/internal/event.d.ts +11 -0
  422. package/dist/internal/is-visible.d.ts +1 -0
  423. package/dist/internal/keyboard-navigation.d.ts +49 -0
  424. package/dist/internal/mixin/choiceElementMixin.d.ts +10 -0
  425. package/dist/internal/mixin/feedbackMixin.d.ts +18 -0
  426. package/dist/internal/mixin/focusableMixin.d.ts +18 -0
  427. package/dist/internal/mixin/formElementMixin.d.ts +35 -0
  428. package/dist/internal/mixin/genericElement.d.ts +14 -0
  429. package/dist/internal/mixin/genericFormElement.d.ts +17 -0
  430. package/dist/internal/mixin/labelPositionedFormElement.d.ts +20 -0
  431. package/dist/internal/mixin/labelPositionedMixin.d.ts +12 -0
  432. package/dist/internal/mixin/labelableMixin.d.ts +22 -0
  433. package/dist/internal/mixin/labeledChoiceElement.d.ts +23 -0
  434. package/dist/internal/mixin/sizedMixin.d.ts +13 -0
  435. package/dist/localization/index.d.ts +1 -0
  436. package/dist/localization/localization.d.ts +23 -0
  437. package/dist/manifest/types/vue/index.d.ts +52 -52
  438. package/dist/manifest/vscode.html-custom-data.json +40 -40
  439. package/dist/manifest/web-types.json +53 -53
  440. package/dist/react/dap-ds-accordion/index.d.ts +64 -0
  441. package/dist/react/dap-ds-accordion-group/index.d.ts +20 -0
  442. package/dist/react/dap-ds-anchor-heading/index.d.ts +22 -0
  443. package/dist/react/dap-ds-avatar/index.d.ts +57 -0
  444. package/dist/react/dap-ds-avatar-group/index.d.ts +36 -0
  445. package/dist/react/dap-ds-badge/index.d.ts +53 -0
  446. package/dist/react/dap-ds-banner/index.d.ts +60 -0
  447. package/dist/react/dap-ds-breadcrumb/index.d.ts +23 -0
  448. package/dist/react/dap-ds-breadcrumb-item/index.d.ts +34 -0
  449. package/dist/react/dap-ds-button/index.d.ts +146 -0
  450. package/dist/react/dap-ds-calendar/index.d.ts +50 -0
  451. package/dist/react/dap-ds-calendar-cell/index.d.ts +63 -0
  452. package/dist/react/dap-ds-callout/index.d.ts +79 -0
  453. package/dist/react/dap-ds-card/index.d.ts +27 -0
  454. package/dist/react/dap-ds-card-actions/index.d.ts +25 -0
  455. package/dist/react/dap-ds-card-content/index.d.ts +27 -0
  456. package/dist/react/dap-ds-card-image/index.d.ts +21 -0
  457. package/dist/react/dap-ds-card-subtitle/index.d.ts +42 -0
  458. package/dist/react/dap-ds-card-title/index.d.ts +39 -0
  459. package/dist/react/dap-ds-checkbox/index.d.ts +81 -0
  460. package/dist/react/dap-ds-chip/index.d.ts +44 -0
  461. package/dist/react/dap-ds-combobox/index.d.ts +100 -0
  462. package/dist/react/dap-ds-command/index.d.ts +25 -0
  463. package/dist/react/dap-ds-command-group/index.d.ts +18 -0
  464. package/dist/react/dap-ds-command-item/index.d.ts +30 -0
  465. package/dist/react/dap-ds-content-switcher/index.d.ts +28 -0
  466. package/dist/react/dap-ds-content-switcher-item/index.d.ts +26 -0
  467. package/dist/react/dap-ds-copybox-input/index.d.ts +101 -0
  468. package/dist/react/dap-ds-dap-badge/index.d.ts +33 -0
  469. package/dist/react/dap-ds-datatable/index.d.ts +67 -0
  470. package/dist/react/dap-ds-datepicker/index.d.ts +94 -0
  471. package/dist/react/dap-ds-divider/index.d.ts +14 -0
  472. package/dist/react/dap-ds-feedback/index.d.ts +36 -0
  473. package/dist/react/dap-ds-file-input/index.d.ts +105 -0
  474. package/dist/react/dap-ds-file-input-list/index.d.ts +27 -0
  475. package/dist/react/dap-ds-file-input-list-item/index.d.ts +48 -0
  476. package/dist/react/dap-ds-form-label/index.d.ts +28 -0
  477. package/dist/react/dap-ds-icon/index.d.ts +24 -0
  478. package/dist/react/dap-ds-icon-account-circle-fill/index.d.ts +18 -0
  479. package/dist/react/dap-ds-icon-account-circle-line/index.d.ts +18 -0
  480. package/dist/react/dap-ds-icon-add-line/index.d.ts +18 -0
  481. package/dist/react/dap-ds-icon-alert-fill/index.d.ts +18 -0
  482. package/dist/react/dap-ds-icon-alert-line/index.d.ts +18 -0
  483. package/dist/react/dap-ds-icon-arrow-down-line/index.d.ts +18 -0
  484. package/dist/react/dap-ds-icon-arrow-down-s-fill/index.d.ts +18 -0
  485. package/dist/react/dap-ds-icon-arrow-down-s-line/index.d.ts +18 -0
  486. package/dist/react/dap-ds-icon-arrow-left-down-line/index.d.ts +18 -0
  487. package/dist/react/dap-ds-icon-arrow-left-l-line/index.d.ts +18 -0
  488. package/dist/react/dap-ds-icon-arrow-left-line/index.d.ts +18 -0
  489. package/dist/react/dap-ds-icon-arrow-left-s-fill/index.d.ts +18 -0
  490. package/dist/react/dap-ds-icon-arrow-left-s-line/index.d.ts +18 -0
  491. package/dist/react/dap-ds-icon-arrow-left-up-line/index.d.ts +18 -0
  492. package/dist/react/dap-ds-icon-arrow-right-down-line/index.d.ts +18 -0
  493. package/dist/react/dap-ds-icon-arrow-right-l-line/index.d.ts +18 -0
  494. package/dist/react/dap-ds-icon-arrow-right-line/index.d.ts +18 -0
  495. package/dist/react/dap-ds-icon-arrow-right-s-fill/index.d.ts +18 -0
  496. package/dist/react/dap-ds-icon-arrow-right-s-line/index.d.ts +18 -0
  497. package/dist/react/dap-ds-icon-arrow-right-up-line/index.d.ts +18 -0
  498. package/dist/react/dap-ds-icon-arrow-up-line/index.d.ts +18 -0
  499. package/dist/react/dap-ds-icon-arrow-up-s-fill/index.d.ts +18 -0
  500. package/dist/react/dap-ds-icon-arrow-up-s-line/index.d.ts +18 -0
  501. package/dist/react/dap-ds-icon-button/index.d.ts +53 -0
  502. package/dist/react/dap-ds-icon-calendar-line/index.d.ts +18 -0
  503. package/dist/react/dap-ds-icon-check-line/index.d.ts +18 -0
  504. package/dist/react/dap-ds-icon-check-line2/index.d.ts +18 -0
  505. package/dist/react/dap-ds-icon-checkbox-blank-circle-fill/index.d.ts +18 -0
  506. package/dist/react/dap-ds-icon-checkbox-blank-circle-fill-check/index.d.ts +18 -0
  507. package/dist/react/dap-ds-icon-checkbox-blank-circle-line/index.d.ts +18 -0
  508. package/dist/react/dap-ds-icon-checkbox-circle-fill/index.d.ts +18 -0
  509. package/dist/react/dap-ds-icon-checkbox-circle-line/index.d.ts +18 -0
  510. package/dist/react/dap-ds-icon-clipboard-line/index.d.ts +18 -0
  511. package/dist/react/dap-ds-icon-close-circle-fill/index.d.ts +18 -0
  512. package/dist/react/dap-ds-icon-close-circle-line/index.d.ts +18 -0
  513. package/dist/react/dap-ds-icon-close-fill/index.d.ts +18 -0
  514. package/dist/react/dap-ds-icon-close-line/index.d.ts +18 -0
  515. package/dist/react/dap-ds-icon-computer-line/index.d.ts +18 -0
  516. package/dist/react/dap-ds-icon-cookie-line/index.d.ts +18 -0
  517. package/dist/react/dap-ds-icon-delete-bin-fill/index.d.ts +18 -0
  518. package/dist/react/dap-ds-icon-delete-bin-line/index.d.ts +18 -0
  519. package/dist/react/dap-ds-icon-download-line/index.d.ts +18 -0
  520. package/dist/react/dap-ds-icon-edit-line/index.d.ts +18 -0
  521. package/dist/react/dap-ds-icon-error-warning-fill/index.d.ts +18 -0
  522. package/dist/react/dap-ds-icon-error-warning-line/index.d.ts +18 -0
  523. package/dist/react/dap-ds-icon-expand-up-down-fill/index.d.ts +18 -0
  524. package/dist/react/dap-ds-icon-external-link-line/index.d.ts +18 -0
  525. package/dist/react/dap-ds-icon-eye-line/index.d.ts +18 -0
  526. package/dist/react/dap-ds-icon-eye-off-line/index.d.ts +18 -0
  527. package/dist/react/dap-ds-icon-file-copy-line/index.d.ts +18 -0
  528. package/dist/react/dap-ds-icon-file-image-line/index.d.ts +18 -0
  529. package/dist/react/dap-ds-icon-file-music-line/index.d.ts +18 -0
  530. package/dist/react/dap-ds-icon-file-text-line/index.d.ts +18 -0
  531. package/dist/react/dap-ds-icon-file-video-line/index.d.ts +18 -0
  532. package/dist/react/dap-ds-icon-folder-line/index.d.ts +18 -0
  533. package/dist/react/dap-ds-icon-folder-open-line/index.d.ts +18 -0
  534. package/dist/react/dap-ds-icon-forbid-fill/index.d.ts +18 -0
  535. package/dist/react/dap-ds-icon-heart-fill/index.d.ts +18 -0
  536. package/dist/react/dap-ds-icon-heart-line/index.d.ts +18 -0
  537. package/dist/react/dap-ds-icon-home-6-line/index.d.ts +18 -0
  538. package/dist/react/dap-ds-icon-information-2-fill/index.d.ts +18 -0
  539. package/dist/react/dap-ds-icon-information-fill/index.d.ts +18 -0
  540. package/dist/react/dap-ds-icon-information-line/index.d.ts +18 -0
  541. package/dist/react/dap-ds-icon-lightbulb-fill/index.d.ts +18 -0
  542. package/dist/react/dap-ds-icon-loading-spinner/index.d.ts +18 -0
  543. package/dist/react/dap-ds-icon-lock-fill/index.d.ts +18 -0
  544. package/dist/react/dap-ds-icon-lock-line/index.d.ts +18 -0
  545. package/dist/react/dap-ds-icon-menu-line/index.d.ts +18 -0
  546. package/dist/react/dap-ds-icon-menu-line-s/index.d.ts +18 -0
  547. package/dist/react/dap-ds-icon-more-2-line/index.d.ts +18 -0
  548. package/dist/react/dap-ds-icon-more-line/index.d.ts +18 -0
  549. package/dist/react/dap-ds-icon-search-line/index.d.ts +18 -0
  550. package/dist/react/dap-ds-icon-share-line/index.d.ts +18 -0
  551. package/dist/react/dap-ds-icon-shield-check-fill/index.d.ts +18 -0
  552. package/dist/react/dap-ds-icon-shield-check-line/index.d.ts +18 -0
  553. package/dist/react/dap-ds-icon-star-fill/index.d.ts +18 -0
  554. package/dist/react/dap-ds-icon-subtract-line/index.d.ts +18 -0
  555. package/dist/react/dap-ds-icon-subtract-line2/index.d.ts +18 -0
  556. package/dist/react/dap-ds-icon-time-fill/index.d.ts +18 -0
  557. package/dist/react/dap-ds-icon-time-line/index.d.ts +18 -0
  558. package/dist/react/dap-ds-icon-tools-line/index.d.ts +18 -0
  559. package/dist/react/dap-ds-icon-upload-2-fill/index.d.ts +18 -0
  560. package/dist/react/dap-ds-icon-upload-2-line/index.d.ts +18 -0
  561. package/dist/react/dap-ds-icon-upload-line/index.d.ts +18 -0
  562. package/dist/react/dap-ds-icon-user-fill/index.d.ts +18 -0
  563. package/dist/react/dap-ds-icon-user-line/index.d.ts +18 -0
  564. package/dist/react/dap-ds-input/index.d.ts +113 -0
  565. package/dist/react/dap-ds-input-group/index.d.ts +33 -0
  566. package/dist/react/dap-ds-label/index.d.ts +36 -0
  567. package/dist/react/dap-ds-link/index.d.ts +69 -0
  568. package/dist/react/dap-ds-list-item/index.d.ts +50 -0
  569. package/dist/react/dap-ds-modal/index.d.ts +92 -0
  570. package/dist/react/dap-ds-navigation-menu/index.d.ts +36 -0
  571. package/dist/react/dap-ds-navigation-menu-item/index.d.ts +65 -0
  572. package/dist/react/dap-ds-notification-badge/index.d.ts +31 -0
  573. package/dist/react/dap-ds-number-input/index.d.ts +115 -0
  574. package/dist/react/dap-ds-official-website-banner/index.d.ts +50 -0
  575. package/dist/react/dap-ds-option-item/index.d.ts +32 -0
  576. package/dist/react/dap-ds-option-list/index.d.ts +35 -0
  577. package/dist/react/dap-ds-overlay/index.d.ts +38 -0
  578. package/dist/react/dap-ds-pager/index.d.ts +43 -0
  579. package/dist/react/dap-ds-password-input/index.d.ts +100 -0
  580. package/dist/react/dap-ds-popup/index.d.ts +52 -0
  581. package/dist/react/dap-ds-progress/index.d.ts +40 -0
  582. package/dist/react/dap-ds-radio-button/index.d.ts +85 -0
  583. package/dist/react/dap-ds-radio-group/index.d.ts +47 -0
  584. package/dist/react/dap-ds-rating/index.d.ts +21 -0
  585. package/dist/react/dap-ds-scroll-area/index.d.ts +24 -0
  586. package/dist/react/dap-ds-search/index.d.ts +100 -0
  587. package/dist/react/dap-ds-select/index.d.ts +94 -0
  588. package/dist/react/dap-ds-sidenav/index.d.ts +21 -0
  589. package/dist/react/dap-ds-sidenav-group/index.d.ts +39 -0
  590. package/dist/react/dap-ds-sidenav-item/index.d.ts +33 -0
  591. package/dist/react/dap-ds-skeleton/index.d.ts +25 -0
  592. package/dist/react/dap-ds-skip-link/index.d.ts +24 -0
  593. package/dist/react/dap-ds-snackbar/index.d.ts +21 -0
  594. package/dist/react/dap-ds-snackbar-message/index.d.ts +51 -0
  595. package/dist/react/dap-ds-spinner/index.d.ts +27 -0
  596. package/dist/react/dap-ds-stack/index.d.ts +13 -0
  597. package/dist/react/dap-ds-switch/index.d.ts +65 -0
  598. package/dist/react/dap-ds-tab/index.d.ts +14 -0
  599. package/dist/react/dap-ds-tab-group/index.d.ts +39 -0
  600. package/dist/react/dap-ds-table/index.d.ts +15 -0
  601. package/dist/react/dap-ds-table-cell/index.d.ts +22 -0
  602. package/dist/react/dap-ds-table-header/index.d.ts +22 -0
  603. package/dist/react/dap-ds-table-row/index.d.ts +16 -0
  604. package/dist/react/dap-ds-textarea/index.d.ts +80 -0
  605. package/dist/react/dap-ds-time-grid/index.d.ts +44 -0
  606. package/dist/react/dap-ds-timeline/index.d.ts +13 -0
  607. package/dist/react/dap-ds-timeline-item/index.d.ts +23 -0
  608. package/dist/react/dap-ds-timepicker/index.d.ts +108 -0
  609. package/dist/react/dap-ds-toc/index.d.ts +32 -0
  610. package/dist/react/dap-ds-toggle-button/index.d.ts +47 -0
  611. package/dist/react/dap-ds-tooltip/index.d.ts +25 -0
  612. package/dist/react/dap-ds-tray/index.d.ts +76 -0
  613. package/dist/react/dap-ds-typography/index.d.ts +34 -0
  614. package/dist/react/index.d.ts +174 -0
  615. package/dist/react-types.ts +3 -3
  616. package/dist/react.js +23 -23
  617. package/dist/react.js.map +1 -1
  618. package/package.json +34 -2
  619. package/dist/components-CmjGTARf.js.map +0 -1
  620. package/dist/dds.d.ts +0 -10119
  621. package/dist/react.d.ts +0 -15375
@@ -0,0 +1 @@
1
+ export declare const anchorClass = "dds-anchor";
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Creates a debounced function that delays invoking func until after wait milliseconds
3
+ * have elapsed since the last time the debounced function was invoked.
4
+ *
5
+ * @param func - The function to debounce
6
+ * @param wait - The number of milliseconds to delay (default: 300)
7
+ * @returns A debounced version of the function
8
+ */
9
+ export declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number): (...args: Parameters<T>) => void;
10
+ /**
11
+ * Converts a string to kebab-case.
12
+ *
13
+ * @param str - The string to convert
14
+ * @returns The kebab-cased string
15
+ */
16
+ export declare function kebabCase(str: string): string;
@@ -0,0 +1,27 @@
1
+ import { LitElement } from 'lit';
2
+ export default function Debounce(wait?: number): (_proto: any, _methodName: any, descriptor: PropertyDescriptor) => void;
3
+ type UpdateHandler = (prev?: unknown, next?: unknown) => void;
4
+ type NonUndefined<A> = A extends undefined ? never : A;
5
+ type UpdateHandlerFunctionKeys<T extends object> = {
6
+ [K in keyof T]-?: NonUndefined<T[K]> extends UpdateHandler ? K : never;
7
+ }[keyof T];
8
+ interface WatchOptions {
9
+ /**
10
+ * If true, will only start watching after the initial update/render
11
+ */
12
+ waitUntilFirstUpdate?: boolean;
13
+ }
14
+ /**
15
+ * Runs when observed properties change, e.g. @property or @state, but before the component updates. To wait for an
16
+ * update to complete after a change occurs, use `await this.updateComplete` in the handler. To start watching after the
17
+ * initial update/render, use `{ waitUntilFirstUpdate: true }` or `this.hasUpdated` in the handler.
18
+ *
19
+ * Usage:
20
+ *
21
+ * @watch('propName')
22
+ * handlePropChange(oldValue, newValue) {
23
+ * ...
24
+ * }
25
+ */
26
+ export declare function watch(propertyName: string | string[], options?: WatchOptions): <ElemClass extends LitElement>(proto: ElemClass, decoratedFnName: UpdateHandlerFunctionKeys<ElemClass>) => void;
27
+ export {};
@@ -0,0 +1,11 @@
1
+ export declare class HttpError extends Error {
2
+ response: any;
3
+ status: number;
4
+ constructor(message: string, response: any, status: number);
5
+ }
6
+ export declare class FileError extends Error {
7
+ file: File;
8
+ type: string;
9
+ meta?: Record<string, any>;
10
+ constructor(message: string, file: File, type: string, meta?: Record<string, any>);
11
+ }
@@ -0,0 +1,2 @@
1
+ import { ReactiveControllerHost } from 'lit';
2
+ export declare const hasNamedSlot: (host: ReactiveControllerHost & Element, name: string) => boolean;
@@ -0,0 +1,28 @@
1
+ import { CommonSize, Size } from './types';
2
+ export type SbBaseFormType = {
3
+ size: {};
4
+ label: {};
5
+ description: {};
6
+ tooltip: {};
7
+ feedback?: {};
8
+ feedbackType: {};
9
+ useCustomFeedbackIcon: {};
10
+ disabled: {};
11
+ required: {};
12
+ };
13
+ export type SbCommonFormType = SbBaseFormType & {
14
+ placeholder: {};
15
+ value: {};
16
+ readonly: {};
17
+ status: {};
18
+ };
19
+ export declare const storybookSizes: Size[];
20
+ export declare const commonSizes: Size[];
21
+ export declare const storybookBaseFormArgs: SbBaseFormType;
22
+ export declare const storybookCommonFormArgs: SbCommonFormType;
23
+ export declare const storybookBaseArgTypes: SbBaseFormType;
24
+ export declare const storybookCommonArgTypes: SbCommonFormType;
25
+ export declare function storybookBaseProps(args: any): string;
26
+ export declare function storybookCommonProps(args: any): string;
27
+ export declare const getDefaultStorybookSize: () => Size;
28
+ export declare const customFeedbackIcon: (size?: CommonSize) => string;
@@ -0,0 +1,81 @@
1
+ import { ButtonVariant } from '../components/button/button.component';
2
+ import { default as DapDSFileInputListItem, FileListElement } from '../components/file-input/file-input-list-item.component';
3
+ export type Common<T> = Pick<T, keyof T>;
4
+ export type Size = 'lg' | 'md' | 'sm' | 'xs' | 'xxs';
5
+ export type CommonSize = Extract<Size, 'sm' | 'lg'>;
6
+ export type CommonFormElementSize = Extract<Size, 'sm' | 'md' | 'lg'>;
7
+ export type Layout = 'horizontal' | 'vertical';
8
+ export type ElementSpacing = 'top' | 'bottom' | 'both' | 'none';
9
+ export type InputStatus = 'success' | 'error';
10
+ export type InputTypes = 'text' | 'number' | 'button' | 'color' | 'email' | 'hidden' | 'reset' | 'submit' | 'url' | 'password' | 'file' | 'time';
11
+ export type Placement = 'top' | 'right' | 'bottom' | 'left' | 'center';
12
+ export type LabelPlacement = Extract<Placement, 'left' | 'right'>;
13
+ export type DescriptionPlacement = Extract<Placement, 'top' | 'bottom'>;
14
+ export type BackgroundShade = 'subtle' | 'base' | 'medium' | 'strong';
15
+ export type Alignment = 'vertical' | 'horizontal';
16
+ export type ButtonSize = Extract<Size, 'lg' | 'md' | 'sm' | 'xs'>;
17
+ export type ButtonShape = 'button' | 'circle';
18
+ export type CSSFlexDirection = 'column' | 'row' | 'column-reverse' | 'row-reverse';
19
+ export type Spacing = 0 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 1000 | 1200 | 1400 | 1600 | 1800 | 2000 | 2400 | 3000 | 4000 | 5000 | 6000;
20
+ export type PopupPlacement = 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end';
21
+ export type PopupTrigger = 'click' | 'hover' | 'focus' | 'manual' | 'hover focus';
22
+ export type TooltipMode = 'tooltip' | 'toggle';
23
+ export type LinkTarget = '_blank' | '_self' | '_parent' | '_top';
24
+ export type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
25
+ export type FloatingStrategy = 'absolute' | 'fixed';
26
+ export type SnackbarPosition = 'bottom-left' | 'bottom-right' | 'bottom-center' | 'top-right' | 'top-center';
27
+ export type AlertType = 'default' | 'information' | 'successful' | 'error';
28
+ export type ActionType = {
29
+ href?: string;
30
+ target?: LinkTarget;
31
+ rel?: string;
32
+ text?: string;
33
+ variant?: ButtonVariant;
34
+ func?: () => void;
35
+ };
36
+ export type MessageOptionsType = {
37
+ duration?: number;
38
+ alertType?: AlertType;
39
+ actions?: ActionType[];
40
+ closeButton?: string;
41
+ customStyle?: Record<string, string>;
42
+ };
43
+ export type SnackbarMessage = {
44
+ id: string;
45
+ message: string;
46
+ options?: MessageOptionsType;
47
+ };
48
+ export type BadgeType = 'neutral' | 'brand' | 'info' | 'positive' | 'warning' | 'negative';
49
+ export type FileType = 'image' | 'video' | 'audio' | 'document' | 'unknown' | 'pdf';
50
+ export type FileItemTemplate = {
51
+ component: DapDSFileInputListItem;
52
+ file: File;
53
+ fileObjectUrl: string;
54
+ href: string;
55
+ target: string;
56
+ rel: string;
57
+ download: string;
58
+ showFileLink: string;
59
+ showFileSize: string;
60
+ showDeleteButton: string;
61
+ formattedSize: string;
62
+ feedback: string;
63
+ feedbackType: string;
64
+ loading: boolean;
65
+ showThumbnail: string;
66
+ fileType: string;
67
+ fileLinkLabel?: string;
68
+ thumbnailUrl?: string | null;
69
+ thumbnailSize?: string;
70
+ handleFileClick: (event: Event) => void;
71
+ handleDelete: (file: FileListElement | File) => void;
72
+ };
73
+ export interface TimeSelection {
74
+ hour: number;
75
+ minute: number;
76
+ second?: number;
77
+ }
78
+ export interface TimePreset {
79
+ label: string;
80
+ value: string;
81
+ }
@@ -0,0 +1,63 @@
1
+ export declare const isReducedMotion: boolean;
2
+ export declare function isMobileView(): boolean;
3
+ export declare function setFromParentSize(element: HTMLElement): void;
4
+ export declare function numberRange(start: number, end: number): number[];
5
+ export declare const JSONAttributeParser: (value: string | null) => {};
6
+ /**
7
+ * Normalizes a string value that might be null, undefined, or the string "null"/"undefined".
8
+ * This is useful for handling values from React/Next.js object spreads where null props
9
+ * can be serialized as the string "null".
10
+ *
11
+ * @param value - The value to normalize
12
+ * @returns An empty string if the value is null, undefined, or the string "null"/"undefined", otherwise the value
13
+ *
14
+ * @example
15
+ * ```typescript
16
+ * protected updated(changedProperties: Map<PropertyKey, unknown>): void {
17
+ * super.updated(changedProperties)
18
+ * if (changedProperties.has('title')) {
19
+ * this.title = normalizeStringProperty(this.title)
20
+ * }
21
+ * }
22
+ * ```
23
+ */
24
+ export declare function normalizeStringProperty(value: string | null | undefined): string;
25
+ /**
26
+ * Lit property converter that handles null/undefined values from React/Next.js object spreads.
27
+ *
28
+ * When React serializes null props (e.g., from object spreads like {...props} where props.title = null),
29
+ * it can become the string "null" in HTML attributes. This converter normalizes these cases.
30
+ *
31
+ * @example
32
+ * ```typescript
33
+ * @property({
34
+ * converter: stringPropertyConverter
35
+ * })
36
+ * title: string
37
+ * ```
38
+ *
39
+ * This prevents the string "null" from appearing in the rendered output when:
40
+ * - Props come from object spreads with null values
41
+ * - React/Next.js serializes null as the string "null"
42
+ * - Properties are set directly (bypassing attribute conversion)
43
+ *
44
+ * Note: For direct property assignments (e.g., `element.title = null`), also use
45
+ * `normalizeStringProperty` in the `updated` lifecycle method.
46
+ */
47
+ export declare const stringPropertyConverter: {
48
+ fromAttribute: (value: string | null) => string;
49
+ toAttribute: (value: string | null | undefined) => string | null;
50
+ };
51
+ export declare function getValidityStateObject(state: Partial<ValidityState>): {
52
+ badInput: boolean;
53
+ customError: boolean;
54
+ patternMismatch: boolean;
55
+ rangeOverflow: boolean;
56
+ rangeUnderflow: boolean;
57
+ stepMismatch: boolean;
58
+ tooLong: boolean;
59
+ tooShort: boolean;
60
+ typeMismatch: boolean;
61
+ valid: boolean;
62
+ valueMissing: boolean;
63
+ };
@@ -0,0 +1,82 @@
1
+ import { PropertyValueMap, TemplateResult } from 'lit';
2
+ import { CommonSize, HeadingLevel, LabelPlacement } from '../../dap-design-system';
3
+ import { DdsElement } from '../../internal/dds-hu-element';
4
+ export type AccordionVariant = 'default' | 'collapsed' | 'clean' | 'clean-collapsed';
5
+ export interface AccordionEventDetail {
6
+ open: boolean;
7
+ item: AccordionBaseElement;
8
+ }
9
+ export type AccordionOpenedEvent = CustomEvent<AccordionEventDetail>;
10
+ export type AccordionClosedEvent = CustomEvent<AccordionEventDetail>;
11
+ export declare class AccordionBaseElement extends DdsElement {
12
+ static readonly styles: import('lit').CSSResult;
13
+ private static nextId;
14
+ private readonly accordionId;
15
+ private readonly buttonId;
16
+ private readonly contentId;
17
+ private _headingLevel;
18
+ private _variant;
19
+ /** Query for the accordion button element */
20
+ protected button?: HTMLButtonElement;
21
+ /** Query for the accordion content element */
22
+ protected content?: HTMLDivElement;
23
+ /** The size of the accordion
24
+ * @type { 'sm' | 'lg' }
25
+ */
26
+ size: CommonSize;
27
+ /** The heading level of the accordion
28
+ * @type { 1 | 2 | 3 | 4 | 5 | 6 }
29
+ */
30
+ get headingLevel(): HeadingLevel;
31
+ set headingLevel(value: HeadingLevel);
32
+ /** Whether the accordion is opened */
33
+ opened: boolean;
34
+ /** Whether the accordion is disabled */
35
+ disabled: boolean;
36
+ /** Whether the accordion is in loading state */
37
+ loading: boolean;
38
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
39
+ heading?: string;
40
+ /** The loading aria label of the accordion */
41
+ loadingAriaLabel?: string;
42
+ /** The location of the icon
43
+ * @type { 'left' | 'right' }
44
+ */
45
+ iconLocation: LabelPlacement;
46
+ /** The variant of the accordion
47
+ * @type { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' }
48
+ */
49
+ get variant(): AccordionVariant;
50
+ set variant(value: AccordionVariant);
51
+ /** Whether this is the last item in an accordion group */
52
+ lastItem: boolean;
53
+ /** ID of element that describes the accordion */
54
+ ariaDescribedBy?: string;
55
+ constructor();
56
+ /**
57
+ * Renders the heading content. Override in subclasses to customize heading rendering.
58
+ * @returns Template result for heading content
59
+ */
60
+ protected headingRender(): TemplateResult;
61
+ /**
62
+ * Renders additional content. Override in subclasses to add custom content.
63
+ * @returns Template result for additional content
64
+ */
65
+ protected contentRender(): TemplateResult;
66
+ validateProperties(): void;
67
+ protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
68
+ private onChange;
69
+ private toggle;
70
+ private handleKeyDown;
71
+ private handleClick;
72
+ private get accordionClasses();
73
+ private renderIconOrSpinner;
74
+ private renderButtons;
75
+ private renderContent;
76
+ private renderHeading;
77
+ /**
78
+ * Renders the complete accordion component. Override in subclasses to customize the entire accordion structure.
79
+ * @returns Template result for the complete accordion
80
+ */
81
+ renderAccordion(): TemplateResult;
82
+ }
@@ -0,0 +1,58 @@
1
+ import { AccordionBaseElement } from './accordion-base-element';
2
+ /**
3
+ * `dap-ds-accordion` is a custom accordion component.
4
+ * @element dap-ds-accordion
5
+ * @summary An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
6
+ * @title - Accordion
7
+ *
8
+ * @property { 'sm' | 'lg' } size - The size of the accordion. Default is `sm`.
9
+ * @property {string} heading - The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided
10
+ * @property { 1 | 2 | 3 | 4 | 5 | 6 } headingLevel - The heading level of the accordion. Default is `4`.
11
+ * @property {boolean} opened - Whether the accordion is opened. Default is `false`.
12
+ * @property { 'left' | 'right' } iconLocation - The location of the icon. Default is `right`.
13
+ * @property { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' } variant - The variant of the accordion.
14
+ * @property {boolean} lastItem - Whether the accordion is the last item.
15
+ * @property {boolean} disabled - Whether the accordion is disabled.
16
+ * @property {boolean} loading - Whether the accordion is in loading state.
17
+ *
18
+ * @event {{ open: boolean, item: AccordionBaseElement }} dds-opened - Event fired when the accordion is opened.
19
+ * @event {{ open: boolean, item: AccordionBaseElement }} dds-closed - Event fired when the accordion is closed.
20
+ *
21
+ * @slot default - The content of the accordion.
22
+ * @slot heading - The heading of the accordion.
23
+ * @slot icon-opened - The icon when the accordion is opened.
24
+ * @slot icon-closed - The icon when the accordion is closed.
25
+ *
26
+ * @csspart base - The main accordion container.
27
+ * @csspart heading - The heading of the accordion.
28
+ * @csspart button - The button of the accordion.
29
+ * @csspart content - The content of the accordion.
30
+ * @csspart content-container - The container of the accordion content.
31
+ * @csspart icon-wrapper - The icon wrapper of the accordion.
32
+ * @csspart open-icon - The icon when the accordion is opened.
33
+ * @csspart open-icon-base - The base of the icon when the accordion is opened.
34
+ * @csspart close-icon - The icon when the accordion is closed.
35
+ * @csspart close-icon-base - The base of the icon when the accordion is closed.
36
+ *
37
+ * @cssproperty --dds-accordion-border-width - The width of the accordion border (default: var(--dds-border-width-base))
38
+ * @cssproperty --dds-accordion-border-style - The style of the accordion border (default: solid)
39
+ * @cssproperty --dds-accordion-border-radius - The border radius of the accordion (default: var(--dds-radius-base))
40
+ * @cssproperty --dds-accordion-border-color - The color of the accordion border (default: var(--dds-border-neutral-divider))
41
+ * @cssproperty --dds-accordion-background-color - The background color of the accordion (default: var(--dds-background-neutral-subtle))
42
+ * @cssproperty --dds-accordion-text-color - The text color of the accordion (default: var(--dds-text-neutral-strong))
43
+ * @cssproperty --dds-accordion-hover-background - The background color when hovering over the accordion (default: var(--dds-background-neutral-base))
44
+ * @cssproperty --dds-accordion-active-background - The background color when the accordion is active (default: var(--dds-background-neutral-medium))
45
+ * @cssproperty --dds-accordion-icon-background - The background color of the accordion icon (default: var(--dds-transparent-black-subtle))
46
+ * @cssproperty --dds-accordion-icon-color - The color of the accordion icon (default: var(--dds-icon-neutral-base))
47
+ * @cssproperty --dds-accordion-icon-hover-background - The background color of the accordion icon when hovered (default: var(--dds-transparent-black-base))
48
+ * @cssproperty --dds-accordion-icon-active-background - The background color of the accordion icon when active (default: var(--dds-transparent-black-strong))
49
+ * @cssproperty --dds-accordion-icon-hover-color - The color of the accordion icon when hovered (default: var(--dds-icon-neutral-strong))
50
+ * @cssproperty --dds-accordion-icon-active-color - The color of the accordion icon when active (default: var(--dds-icon-neutral-strong))
51
+ * @cssproperty --dds-accordion-content-color - The color of the accordion content (default: var(--dds-text-text-neutral))
52
+ * @cssproperty --dds-accordion-transition-duration - The duration of the accordion transitions (default: var(--dds-transition-fast))
53
+ * @cssproperty --dds-accordion-transition-timing - The timing function of the accordion transitions (default: var(--dds-easing-ease-in-out))
54
+ * @cssproperty --dds-accordion-divider-color - The color of the divider between accordion items (default: var(--dds-border-neutral-divider))
55
+ */
56
+ export default class DapDSAccordion extends AccordionBaseElement {
57
+ render(): import('lit-html').TemplateResult;
58
+ }
@@ -0,0 +1,8 @@
1
+ import { default as DapDSAccordion } from './accordion.component';
2
+ export * from './accordion.component';
3
+ export default DapDSAccordion;
4
+ declare global {
5
+ interface HTMLElementTagNameMap {
6
+ 'dap-ds-accordion': DapDSAccordion;
7
+ }
8
+ }
@@ -0,0 +1,39 @@
1
+ import { PropertyValueMap } from 'lit';
2
+ import { DdsElement } from '../../internal/dds-hu-element';
3
+ import { AccordionVariant } from '../accordion/accordion-base-element';
4
+ /**
5
+ * `dap-ds-accordion-group` is a custom accordion group component.
6
+ * @element dap-ds-accordion-group
7
+ * @summary An accordion group is a collection of accordion components.
8
+ * @title - Accordion group
9
+ * @group accordion
10
+ *
11
+ * @slot - The content of the accordion group.
12
+ *
13
+ * @csspart base - The main accordion group container.
14
+ *
15
+ * @cssproperty --dds-accordion-group-spacing - Controls the gap between accordion items (default: var(--dds-spacing-300))
16
+ * @cssproperty --dds-accordion-group-border-color - Controls the border color (default: var(--dds-border-neutral-subtle))
17
+ * @cssproperty --dds-accordion-group-border-width - Controls the border width (default: var(--dds-border-width-base))
18
+ * @cssproperty --dds-accordion-group-border-radius - Controls the border radius (default: var(--dds-radius-base))
19
+ * @cssproperty --dds-accordion-group-background - Controls the background color (default: transparent)
20
+ */
21
+ export default class DapDSAccordionGroup extends DdsElement {
22
+ private readonly accordions;
23
+ /** Whether to close other accordions when one is opened. */
24
+ autoClose: string;
25
+ /** The variant of the accordion
26
+ * @type { 'default' | 'collapsed' | 'clean' | 'clean-collapsed' }
27
+ */
28
+ variant: AccordionVariant;
29
+ static readonly styles: import('lit').CSSResult;
30
+ private readonly boundOnAccordionChange;
31
+ private readonly boundOnSlotChange;
32
+ connectedCallback(): void;
33
+ disconnectedCallback(): void;
34
+ protected firstUpdated(_changedProperties: PropertyValueMap<DapDSAccordionGroup> | Map<PropertyKey, unknown>): void;
35
+ private onSlotChange;
36
+ private setupAccordions;
37
+ private onAccordionChange;
38
+ render(): import('lit-html').TemplateResult;
39
+ }
@@ -0,0 +1,8 @@
1
+ import { default as DapDSAccordionGroup } from './accordion-group.component.js';
2
+ export * from './accordion-group.component.js';
3
+ export default DapDSAccordionGroup;
4
+ declare global {
5
+ interface HTMLElementTagNameMap {
6
+ 'dap-ds-accordion-group': DapDSAccordionGroup;
7
+ }
8
+ }
@@ -0,0 +1,31 @@
1
+ import { DdsElement } from '../../internal/dds-hu-element';
2
+ import { TypographyVariant } from '../typography/typography.component';
3
+ export type HeadingVariant = Extract<TypographyVariant, 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'>;
4
+ /**
5
+ * `dap-ds-anchor-heading`
6
+ * @summary Anchor heading is a heading with an anchor link.
7
+ * @element dap-ds-anchor-heading
8
+ * @title - Anchor heading
9
+ *
10
+ * @attribute {'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'} variant - The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.
11
+ * @attribute {string} label - The label of the heading.
12
+ *
13
+ * @csspart base - The main anchor heading container.
14
+ * @csspart link - The link of the anchor heading. dap-ds-link element.
15
+ * @csspart link-base - The base of the link part.
16
+ * @csspart text - The text of the anchor heading.
17
+ *
18
+ * @cssproperty --dds-anchor-link-color - The color of the anchor link (default: var(--dds-color-primary))
19
+ * @cssproperty --dds-anchor-link-opacity - The opacity of the anchor link when not hovered (default: 0)
20
+ * @cssproperty --dds-anchor-link-hover-opacity - The opacity of the anchor link when hovered (default: 1)
21
+ * @cssproperty --dds-anchor-link-transition - The transition property for the anchor link opacity (default: opacity 0.2s ease-in-out)
22
+ */
23
+ export default class DapDSAnchorHeading extends DdsElement {
24
+ variant: HeadingVariant;
25
+ label: string;
26
+ static readonly styles: import('lit').CSSResult[];
27
+ createRenderRoot(): this;
28
+ get elementId(): string;
29
+ get anchorTitle(): string;
30
+ render(): import('lit-html').TemplateResult;
31
+ }
@@ -0,0 +1,8 @@
1
+ import { default as DapDSAnchorHeading } from './anchor-heading.component.js';
2
+ export * from './anchor-heading.component.js';
3
+ export default DapDSAnchorHeading;
4
+ declare global {
5
+ interface HTMLElementTagNameMap {
6
+ 'dap-ds-anchor-heading': DapDSAnchorHeading;
7
+ }
8
+ }
@@ -0,0 +1,117 @@
1
+ import { Size } from '../../dap-design-system';
2
+ import { DdsElement } from '../../internal/dds-hu-element';
3
+ export type AvatarShape = 'circle' | 'rounded' | 'square';
4
+ export type AvatarVariant = 'image' | 'initials' | 'icon';
5
+ /**
6
+ * `dap-ds-avatar`
7
+ * @summary Avatar component can be used to display user profile images, initials, or icons.
8
+ * @element dap-ds-avatar
9
+ * @title - Avatar
10
+ *
11
+ * @slot icon - The icon to display when variant is 'icon'.
12
+ * @slot fallback - Custom fallback content when image fails to load.
13
+ *
14
+ * @event dds-click - Fired when the avatar is clicked (only when interactive).
15
+ * @event dds-load - Fired when the image loads successfully.
16
+ * @event dds-error - Fired when the image fails to load.
17
+ *
18
+ * @csspart base - The main avatar container.
19
+ * @csspart img - The avatar image.
20
+ * @csspart initials - The initials container.
21
+ * @csspart icon - The icon container.
22
+ * @csspart fallback - The fallback content container.
23
+ * @csspart loading - The loading indicator.
24
+ *
25
+ * @cssproperty --dds-avatar-border-radius - The border radius of the avatar (default: 50%)
26
+ * @cssproperty --dds-avatar-background-color - The background color of the avatar (default: var(--dds-neutral-200))
27
+ * @cssproperty --dds-avatar-border-width - The border width of the avatar (default: 0)
28
+ * @cssproperty --dds-avatar-border-color - The color of the avatar's border (default: transparent)
29
+ * @cssproperty --dds-avatar-border-style - The style of the avatar's border (default: solid)
30
+ * @cssproperty --dds-avatar-transition - The transition property for the avatar (default: all 0.2s ease-in-out)
31
+ * @cssproperty --dds-avatar-text-color - The text color for initials (default: var(--dds-text-neutral-strong))
32
+ * @cssproperty --dds-avatar-font-weight - The font weight for initials (default: var(--dds-font-weight-bold))
33
+ * @cssproperty --dds-avatar-lg-size - Size for large avatars (default: var(--dds-avatar-size-lg))
34
+ * @cssproperty --dds-avatar-md-size - Size for medium avatars (default: var(--dds-avatar-size-md))
35
+ * @cssproperty --dds-avatar-sm-size - Size for small avatars (default: var(--dds-avatar-size-sm))
36
+ * @cssproperty --dds-avatar-xs-size - Size for extra small avatars (default: var(--dds-avatar-size-xs))
37
+ * @cssproperty --dds-avatar-xxs-size - Size for extra extra small avatars (default: var(--dds-avatar-size-xxs))
38
+ * @cssproperty --dds-avatar-font-size-lg - Font size for large avatars (default: var(--dds-font-2xl))
39
+ * @cssproperty --dds-avatar-font-size-md - Font size for medium avatars (default: var(--dds-font-lg))
40
+ * @cssproperty --dds-avatar-font-size-sm - Font size for small avatars (default: var(--dds-font-base))
41
+ * @cssproperty --dds-avatar-font-size-xs - Font size for extra small avatars (default: var(--dds-font-sm))
42
+ * @cssproperty --dds-avatar-font-size-xxs - Font size for extra extra small avatars (default: var(--dds-font-xs))
43
+ * @cssproperty --dds-avatar-hover-transform - Transform applied on hover for interactive avatars (default: scale(1.05))
44
+ * @cssproperty --dds-avatar-active-transform - Transform applied when active for interactive avatars (default: scale(0.95))
45
+ * @cssproperty --dds-avatar-focus-ring - Focus ring style for interactive avatars (default: 0 0 0 2px var(--dds-focus-outer-ring))
46
+ * @cssproperty --dds-avatar-loading-background - Background color when loading (default: var(--dds-neutral-100))
47
+ * @cssproperty --dds-avatar-error-background - Background color when image fails to load (default: var(--dds-negative-100))
48
+ * @cssproperty --dds-avatar-error-color - Text color when image fails to load (default: var(--dds-negative-600))
49
+ */
50
+ export default class DapDSAvatar extends DdsElement {
51
+ /** The size of the avatar
52
+ * @default md
53
+ * @type { 'xxs' | 'xs' | 'sm' | 'md' | 'lg' }
54
+ * @example
55
+ * ```html
56
+ * <dap-ds-avatar size="xxs">
57
+ * <dap-ds-avatar size="xs">
58
+ * <dap-ds-avatar size="sm">
59
+ * <dap-ds-avatar size="md">
60
+ * <dap-ds-avatar size="lg">
61
+ * ```
62
+ */
63
+ size: Size;
64
+ /** The shape of the avatar
65
+ * @default circle
66
+ * @type { 'circle' | 'rounded' | 'square' }
67
+ * @example
68
+ * ```html
69
+ * <dap-ds-avatar shape="circle">
70
+ * <dap-ds-avatar shape="rounded">
71
+ * <dap-ds-avatar shape="square">
72
+ * ```
73
+ */
74
+ shape: AvatarShape;
75
+ /** The variant type of the avatar
76
+ * @default image
77
+ * @type { 'image' | 'initials' | 'icon' }
78
+ * @example
79
+ * ```html
80
+ * <dap-ds-avatar variant="image">
81
+ * <dap-ds-avatar variant="initials">
82
+ * <dap-ds-avatar variant="icon">
83
+ * ```
84
+ */
85
+ variant: AvatarVariant;
86
+ /** The source of the avatar image */
87
+ src: string;
88
+ /** The alt text of the avatar */
89
+ alt: string;
90
+ /** The initials to display when variant is 'initials' */
91
+ initials: string;
92
+ /** Accessible label for the avatar */
93
+ label: string;
94
+ /** Loading state indicator */
95
+ loading: boolean;
96
+ /** Whether the avatar is interactive (clickable) */
97
+ interactive: boolean;
98
+ /** The width of the avatar. This will override the size */
99
+ width: number;
100
+ /** The height of the avatar. This will override the size */
101
+ height: number;
102
+ private hasImageError;
103
+ private isImageLoading;
104
+ static readonly styles: import('lit').CSSResult;
105
+ private handleImageLoad;
106
+ private handleImageError;
107
+ private handleClick;
108
+ private generateInitials;
109
+ private mapSizeToSpinnerSize;
110
+ private renderImage;
111
+ private renderInitials;
112
+ private renderIcon;
113
+ private renderFallback;
114
+ private renderLoading;
115
+ private renderContent;
116
+ render(): import('lit-html').TemplateResult;
117
+ }
@@ -0,0 +1,8 @@
1
+ import { default as DapDSAvatar } from './avatar.component.js';
2
+ export * from './avatar.component.js';
3
+ export default DapDSAvatar;
4
+ declare global {
5
+ interface HTMLElementTagNameMap {
6
+ 'dap-ds-avatar': DapDSAvatar;
7
+ }
8
+ }