@daikin-oss/design-system-web-components 0.6.0 → 1.0.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 (550) hide show
  1. package/CHANGELOG.md +167 -12
  2. package/README.md +40 -23
  3. package/dist/cjs/base/dds-element.cjs +8 -0
  4. package/dist/cjs/base/dds-element.d.cts +4 -0
  5. package/dist/cjs/base/decorators.cjs +13 -0
  6. package/dist/cjs/base/decorators.d.cts +2 -0
  7. package/dist/cjs/base/define.cjs +18 -0
  8. package/dist/cjs/base/define.d.cts +1 -0
  9. package/dist/cjs/base/index.cjs +8 -0
  10. package/dist/cjs/base/index.d.cts +3 -0
  11. package/dist/cjs/components/accordion/daikin-accordion.cjs +39 -6
  12. package/dist/cjs/components/accordion/daikin-accordion.d.cts +15 -2
  13. package/dist/cjs/components/accordion-item/daikin-accordion-item.cjs +45 -85
  14. package/dist/cjs/components/accordion-item/daikin-accordion-item.d.cts +10 -16
  15. package/dist/cjs/components/breadcrumb/daikin-breadcrumb.cjs +27 -85
  16. package/dist/cjs/components/breadcrumb/daikin-breadcrumb.d.cts +12 -24
  17. package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.cjs +33 -82
  18. package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.d.cts +16 -25
  19. package/dist/cjs/components/button/daikin-button.cjs +36 -23
  20. package/dist/cjs/components/button/daikin-button.d.cts +8 -5
  21. package/dist/cjs/components/card/daikin-card.cjs +67 -0
  22. package/dist/cjs/components/card/daikin-card.d.cts +48 -0
  23. package/dist/cjs/components/card/index.cjs +7 -0
  24. package/dist/cjs/components/card/index.d.cts +1 -0
  25. package/dist/cjs/components/card-footer/daikin-card-footer.cjs +33 -0
  26. package/dist/cjs/components/card-footer/daikin-card-footer.d.cts +33 -0
  27. package/dist/cjs/components/card-footer/index.cjs +7 -0
  28. package/dist/cjs/components/card-footer/index.d.cts +1 -0
  29. package/dist/cjs/components/card-header/daikin-card-header.cjs +59 -0
  30. package/dist/cjs/components/card-header/daikin-card-header.d.cts +35 -0
  31. package/dist/cjs/components/card-header/index.cjs +7 -0
  32. package/dist/cjs/components/card-header/index.d.cts +1 -0
  33. package/dist/cjs/components/carousel/daikin-carousel.cjs +217 -0
  34. package/dist/cjs/components/carousel/daikin-carousel.d.cts +56 -0
  35. package/dist/cjs/components/carousel/index.cjs +7 -0
  36. package/dist/cjs/components/carousel/index.d.cts +1 -0
  37. package/dist/cjs/components/carousel-item/daikin-carousel-item.cjs +80 -0
  38. package/dist/cjs/components/carousel-item/daikin-carousel-item.d.cts +50 -0
  39. package/dist/cjs/components/carousel-item/index.cjs +7 -0
  40. package/dist/cjs/components/carousel-item/index.d.cts +1 -0
  41. package/dist/cjs/components/checkbox/daikin-checkbox.cjs +63 -45
  42. package/dist/cjs/components/checkbox/daikin-checkbox.d.cts +4 -2
  43. package/dist/cjs/components/dropdown/daikin-dropdown.cjs +30 -19
  44. package/dist/cjs/components/dropdown/daikin-dropdown.d.cts +16 -2
  45. package/dist/cjs/components/dropdown-item/daikin-dropdown-item.cjs +21 -14
  46. package/dist/cjs/components/dropdown-item/daikin-dropdown-item.d.cts +10 -2
  47. package/dist/cjs/components/icon/daikin-icon.cjs +16 -13
  48. package/dist/cjs/components/icon/daikin-icon.d.cts +5 -5
  49. package/dist/cjs/components/icon/icons.json.cjs +1 -70
  50. package/dist/cjs/components/icon/icons.json.d.cts +0 -8
  51. package/dist/cjs/components/icon-button/daikin-icon-button.cjs +29 -25
  52. package/dist/cjs/components/icon-button/daikin-icon-button.d.cts +2 -2
  53. package/dist/cjs/components/index.cjs +56 -5
  54. package/dist/cjs/components/index.d.cts +11 -1
  55. package/dist/cjs/components/inline-notification/daikin-inline-notification.cjs +92 -0
  56. package/dist/cjs/components/inline-notification/daikin-inline-notification.d.cts +55 -0
  57. package/dist/cjs/components/inline-notification/index.cjs +7 -0
  58. package/dist/cjs/components/inline-notification/index.d.cts +1 -0
  59. package/dist/cjs/components/input-group/daikin-input-group.cjs +71 -52
  60. package/dist/cjs/components/input-group/daikin-input-group.d.cts +25 -8
  61. package/dist/cjs/components/link/daikin-link.cjs +40 -55
  62. package/dist/cjs/components/link/daikin-link.d.cts +2 -2
  63. package/dist/cjs/components/list/daikin-list.cjs +9 -9
  64. package/dist/cjs/components/list/daikin-list.d.cts +7 -2
  65. package/dist/cjs/components/list-item/daikin-list-item.cjs +16 -13
  66. package/dist/cjs/components/list-item/daikin-list-item.d.cts +6 -2
  67. package/dist/cjs/components/pagination/daikin-pagination.cjs +40 -33
  68. package/dist/cjs/components/pagination/daikin-pagination.d.cts +6 -2
  69. package/dist/cjs/components/progress-bar/daikin-progress-bar.cjs +33 -18
  70. package/dist/cjs/components/progress-bar/daikin-progress-bar.d.cts +3 -2
  71. package/dist/cjs/components/progress-indicator/daikin-progress-indicator.cjs +17 -26
  72. package/dist/cjs/components/progress-indicator/daikin-progress-indicator.d.cts +12 -5
  73. package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.cjs +28 -29
  74. package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.d.cts +8 -4
  75. package/dist/cjs/components/radio/daikin-radio.cjs +57 -33
  76. package/dist/cjs/components/radio/daikin-radio.d.cts +18 -8
  77. package/dist/cjs/components/radio-group/daikin-radio-group.cjs +31 -11
  78. package/dist/cjs/components/radio-group/daikin-radio-group.d.cts +20 -14
  79. package/dist/cjs/components/select/daikin-select.cjs +25 -16
  80. package/dist/cjs/components/select/daikin-select.d.cts +11 -2
  81. package/dist/cjs/components/tab/daikin-tab.cjs +38 -23
  82. package/dist/cjs/components/tab/daikin-tab.d.cts +7 -2
  83. package/dist/cjs/components/tab-panels/daikin-tab-panels.cjs +9 -7
  84. package/dist/cjs/components/tab-panels/daikin-tab-panels.d.cts +2 -2
  85. package/dist/cjs/components/table/daikin-table.cjs +15 -12
  86. package/dist/cjs/components/table/daikin-table.d.cts +9 -2
  87. package/dist/cjs/components/table-cell/daikin-table-cell.cjs +10 -7
  88. package/dist/cjs/components/table-cell/daikin-table-cell.d.cts +6 -2
  89. package/dist/cjs/components/table-header-cell/daikin-table-header-cell.cjs +12 -10
  90. package/dist/cjs/components/table-header-cell/daikin-table-header-cell.d.cts +6 -2
  91. package/dist/cjs/components/tabs/daikin-tabs.cjs +25 -10
  92. package/dist/cjs/components/tabs/daikin-tabs.d.cts +8 -2
  93. package/dist/cjs/components/text-area/daikin-text-area.cjs +31 -20
  94. package/dist/cjs/components/text-area/daikin-text-area.d.cts +7 -2
  95. package/dist/cjs/components/text-field/daikin-text-field.cjs +29 -19
  96. package/dist/cjs/components/text-field/daikin-text-field.d.cts +7 -2
  97. package/dist/cjs/components/toast-notification/daikin-toast-notification.cjs +94 -0
  98. package/dist/cjs/components/toast-notification/daikin-toast-notification.d.cts +69 -0
  99. package/dist/cjs/components/toast-notification/index.cjs +7 -0
  100. package/dist/cjs/components/toast-notification/index.d.cts +1 -0
  101. package/dist/cjs/components/toast-notification-manager/daikin-toast-notification-manager.cjs +192 -0
  102. package/dist/cjs/components/toast-notification-manager/daikin-toast-notification-manager.d.cts +67 -0
  103. package/dist/cjs/components/toast-notification-manager/index.cjs +7 -0
  104. package/dist/cjs/components/toast-notification-manager/index.d.cts +1 -0
  105. package/dist/cjs/components/toggle/daikin-toggle.cjs +18 -15
  106. package/dist/cjs/components/toggle/daikin-toggle.d.cts +3 -2
  107. package/dist/cjs/components/tooltip/daikin-tooltip.cjs +45 -33
  108. package/dist/cjs/components/tooltip/daikin-tooltip.d.cts +16 -6
  109. package/dist/cjs/components/tree/common.cjs +90 -0
  110. package/dist/cjs/components/tree/common.d.cts +32 -0
  111. package/dist/cjs/components/tree/daikin-tree.cjs +108 -0
  112. package/dist/cjs/components/tree/daikin-tree.d.cts +73 -0
  113. package/dist/cjs/components/tree/index.cjs +7 -0
  114. package/dist/cjs/components/tree/index.d.cts +1 -0
  115. package/dist/cjs/components/tree-item/daikin-tree-item.cjs +201 -0
  116. package/dist/cjs/components/tree-item/daikin-tree-item.d.cts +95 -0
  117. package/dist/cjs/components/tree-item/index.cjs +8 -0
  118. package/dist/cjs/components/tree-item/index.d.cts +1 -0
  119. package/dist/cjs/components/tree-section/daikin-tree-section.cjs +230 -0
  120. package/dist/cjs/components/tree-section/daikin-tree-section.d.cts +109 -0
  121. package/dist/cjs/components/tree-section/index.cjs +7 -0
  122. package/dist/cjs/components/tree-section/index.d.cts +1 -0
  123. package/dist/cjs/controllers/click-outside.d.cts +1 -1
  124. package/dist/cjs/index.cjs +56 -7
  125. package/dist/cjs/index.d.cts +0 -1
  126. package/dist/cjs/tailwind.css.cjs +1 -1
  127. package/dist/cjs/utils/is-simple-key.cjs +6 -0
  128. package/dist/cjs/utils/is-simple-key.d.cts +7 -0
  129. package/dist/cjs/utils/notification-common.cjs +121 -0
  130. package/dist/cjs/utils/notification-common.d.cts +19 -0
  131. package/dist/cjs-dev/base/dds-element.cjs +8 -0
  132. package/dist/cjs-dev/base/dds-element.d.cts +4 -0
  133. package/dist/cjs-dev/base/decorators.cjs +13 -0
  134. package/dist/cjs-dev/base/decorators.d.cts +2 -0
  135. package/dist/cjs-dev/base/define.cjs +18 -0
  136. package/dist/cjs-dev/base/define.d.cts +1 -0
  137. package/dist/cjs-dev/base/index.cjs +8 -0
  138. package/dist/cjs-dev/base/index.d.cts +3 -0
  139. package/dist/cjs-dev/components/accordion/daikin-accordion.cjs +46 -6
  140. package/dist/cjs-dev/components/accordion/daikin-accordion.d.cts +15 -2
  141. package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.cjs +45 -85
  142. package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.d.cts +10 -16
  143. package/dist/cjs-dev/components/breadcrumb/daikin-breadcrumb.cjs +27 -85
  144. package/dist/cjs-dev/components/breadcrumb/daikin-breadcrumb.d.cts +12 -24
  145. package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.cjs +33 -82
  146. package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.d.cts +16 -25
  147. package/dist/cjs-dev/components/button/daikin-button.cjs +36 -23
  148. package/dist/cjs-dev/components/button/daikin-button.d.cts +8 -5
  149. package/dist/cjs-dev/components/card/daikin-card.cjs +67 -0
  150. package/dist/cjs-dev/components/card/daikin-card.d.cts +48 -0
  151. package/dist/cjs-dev/components/card/index.cjs +7 -0
  152. package/dist/cjs-dev/components/card/index.d.cts +1 -0
  153. package/dist/cjs-dev/components/card-footer/daikin-card-footer.cjs +33 -0
  154. package/dist/cjs-dev/components/card-footer/daikin-card-footer.d.cts +33 -0
  155. package/dist/cjs-dev/components/card-footer/index.cjs +7 -0
  156. package/dist/cjs-dev/components/card-footer/index.d.cts +1 -0
  157. package/dist/cjs-dev/components/card-header/daikin-card-header.cjs +59 -0
  158. package/dist/cjs-dev/components/card-header/daikin-card-header.d.cts +35 -0
  159. package/dist/cjs-dev/components/card-header/index.cjs +7 -0
  160. package/dist/cjs-dev/components/card-header/index.d.cts +1 -0
  161. package/dist/cjs-dev/components/carousel/daikin-carousel.cjs +227 -0
  162. package/dist/cjs-dev/components/carousel/daikin-carousel.d.cts +56 -0
  163. package/dist/cjs-dev/components/carousel/index.cjs +7 -0
  164. package/dist/cjs-dev/components/carousel/index.d.cts +1 -0
  165. package/dist/cjs-dev/components/carousel-item/daikin-carousel-item.cjs +80 -0
  166. package/dist/cjs-dev/components/carousel-item/daikin-carousel-item.d.cts +50 -0
  167. package/dist/cjs-dev/components/carousel-item/index.cjs +7 -0
  168. package/dist/cjs-dev/components/carousel-item/index.d.cts +1 -0
  169. package/dist/cjs-dev/components/checkbox/daikin-checkbox.cjs +63 -45
  170. package/dist/cjs-dev/components/checkbox/daikin-checkbox.d.cts +4 -2
  171. package/dist/cjs-dev/components/dropdown/daikin-dropdown.cjs +30 -19
  172. package/dist/cjs-dev/components/dropdown/daikin-dropdown.d.cts +16 -2
  173. package/dist/cjs-dev/components/dropdown-item/daikin-dropdown-item.cjs +21 -14
  174. package/dist/cjs-dev/components/dropdown-item/daikin-dropdown-item.d.cts +10 -2
  175. package/dist/cjs-dev/components/icon/daikin-icon.cjs +16 -13
  176. package/dist/cjs-dev/components/icon/daikin-icon.d.cts +5 -5
  177. package/dist/cjs-dev/components/icon/icons.json.cjs +1 -70
  178. package/dist/cjs-dev/components/icon/icons.json.d.cts +0 -8
  179. package/dist/cjs-dev/components/icon-button/daikin-icon-button.cjs +29 -25
  180. package/dist/cjs-dev/components/icon-button/daikin-icon-button.d.cts +2 -2
  181. package/dist/cjs-dev/components/index.cjs +56 -5
  182. package/dist/cjs-dev/components/index.d.cts +11 -1
  183. package/dist/cjs-dev/components/inline-notification/daikin-inline-notification.cjs +92 -0
  184. package/dist/cjs-dev/components/inline-notification/daikin-inline-notification.d.cts +55 -0
  185. package/dist/cjs-dev/components/inline-notification/index.cjs +7 -0
  186. package/dist/cjs-dev/components/inline-notification/index.d.cts +1 -0
  187. package/dist/cjs-dev/components/input-group/daikin-input-group.cjs +71 -52
  188. package/dist/cjs-dev/components/input-group/daikin-input-group.d.cts +25 -8
  189. package/dist/cjs-dev/components/link/daikin-link.cjs +40 -55
  190. package/dist/cjs-dev/components/link/daikin-link.d.cts +2 -2
  191. package/dist/cjs-dev/components/list/daikin-list.cjs +9 -9
  192. package/dist/cjs-dev/components/list/daikin-list.d.cts +7 -2
  193. package/dist/cjs-dev/components/list-item/daikin-list-item.cjs +16 -13
  194. package/dist/cjs-dev/components/list-item/daikin-list-item.d.cts +6 -2
  195. package/dist/cjs-dev/components/pagination/daikin-pagination.cjs +40 -33
  196. package/dist/cjs-dev/components/pagination/daikin-pagination.d.cts +6 -2
  197. package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.cjs +33 -18
  198. package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.d.cts +3 -2
  199. package/dist/cjs-dev/components/progress-indicator/daikin-progress-indicator.cjs +17 -36
  200. package/dist/cjs-dev/components/progress-indicator/daikin-progress-indicator.d.cts +12 -5
  201. package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.cjs +28 -29
  202. package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.cts +8 -4
  203. package/dist/cjs-dev/components/radio/daikin-radio.cjs +57 -33
  204. package/dist/cjs-dev/components/radio/daikin-radio.d.cts +18 -8
  205. package/dist/cjs-dev/components/radio-group/daikin-radio-group.cjs +31 -11
  206. package/dist/cjs-dev/components/radio-group/daikin-radio-group.d.cts +20 -14
  207. package/dist/cjs-dev/components/select/daikin-select.cjs +25 -16
  208. package/dist/cjs-dev/components/select/daikin-select.d.cts +11 -2
  209. package/dist/cjs-dev/components/tab/daikin-tab.cjs +38 -23
  210. package/dist/cjs-dev/components/tab/daikin-tab.d.cts +7 -2
  211. package/dist/cjs-dev/components/tab-panels/daikin-tab-panels.cjs +9 -7
  212. package/dist/cjs-dev/components/tab-panels/daikin-tab-panels.d.cts +2 -2
  213. package/dist/cjs-dev/components/table/daikin-table.cjs +15 -12
  214. package/dist/cjs-dev/components/table/daikin-table.d.cts +9 -2
  215. package/dist/cjs-dev/components/table-cell/daikin-table-cell.cjs +10 -7
  216. package/dist/cjs-dev/components/table-cell/daikin-table-cell.d.cts +6 -2
  217. package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.cjs +12 -10
  218. package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.d.cts +6 -2
  219. package/dist/cjs-dev/components/tabs/daikin-tabs.cjs +25 -10
  220. package/dist/cjs-dev/components/tabs/daikin-tabs.d.cts +8 -2
  221. package/dist/cjs-dev/components/text-area/daikin-text-area.cjs +31 -20
  222. package/dist/cjs-dev/components/text-area/daikin-text-area.d.cts +7 -2
  223. package/dist/cjs-dev/components/text-field/daikin-text-field.cjs +29 -19
  224. package/dist/cjs-dev/components/text-field/daikin-text-field.d.cts +7 -2
  225. package/dist/cjs-dev/components/toast-notification/daikin-toast-notification.cjs +94 -0
  226. package/dist/cjs-dev/components/toast-notification/daikin-toast-notification.d.cts +69 -0
  227. package/dist/cjs-dev/components/toast-notification/index.cjs +7 -0
  228. package/dist/cjs-dev/components/toast-notification/index.d.cts +1 -0
  229. package/dist/cjs-dev/components/toast-notification-manager/daikin-toast-notification-manager.cjs +192 -0
  230. package/dist/cjs-dev/components/toast-notification-manager/daikin-toast-notification-manager.d.cts +67 -0
  231. package/dist/cjs-dev/components/toast-notification-manager/index.cjs +7 -0
  232. package/dist/cjs-dev/components/toast-notification-manager/index.d.cts +1 -0
  233. package/dist/cjs-dev/components/toggle/daikin-toggle.cjs +18 -15
  234. package/dist/cjs-dev/components/toggle/daikin-toggle.d.cts +3 -2
  235. package/dist/cjs-dev/components/tooltip/daikin-tooltip.cjs +45 -33
  236. package/dist/cjs-dev/components/tooltip/daikin-tooltip.d.cts +16 -6
  237. package/dist/cjs-dev/components/tree/common.cjs +90 -0
  238. package/dist/cjs-dev/components/tree/common.d.cts +32 -0
  239. package/dist/cjs-dev/components/tree/daikin-tree.cjs +108 -0
  240. package/dist/cjs-dev/components/tree/daikin-tree.d.cts +73 -0
  241. package/dist/cjs-dev/components/tree/index.cjs +7 -0
  242. package/dist/cjs-dev/components/tree/index.d.cts +1 -0
  243. package/dist/cjs-dev/components/tree-item/daikin-tree-item.cjs +201 -0
  244. package/dist/cjs-dev/components/tree-item/daikin-tree-item.d.cts +95 -0
  245. package/dist/cjs-dev/components/tree-item/index.cjs +8 -0
  246. package/dist/cjs-dev/components/tree-item/index.d.cts +1 -0
  247. package/dist/cjs-dev/components/tree-section/daikin-tree-section.cjs +230 -0
  248. package/dist/cjs-dev/components/tree-section/daikin-tree-section.d.cts +109 -0
  249. package/dist/cjs-dev/components/tree-section/index.cjs +7 -0
  250. package/dist/cjs-dev/components/tree-section/index.d.cts +1 -0
  251. package/dist/cjs-dev/controllers/click-outside.d.cts +1 -1
  252. package/dist/cjs-dev/index.cjs +56 -7
  253. package/dist/cjs-dev/index.d.cts +0 -1
  254. package/dist/cjs-dev/tailwind.css.cjs +1 -1
  255. package/dist/cjs-dev/utils/is-simple-key.cjs +6 -0
  256. package/dist/cjs-dev/utils/is-simple-key.d.cts +7 -0
  257. package/dist/cjs-dev/utils/notification-common.cjs +124 -0
  258. package/dist/cjs-dev/utils/notification-common.d.cts +19 -0
  259. package/dist/es/base/dds-element.d.ts +4 -0
  260. package/dist/es/base/dds-element.js +8 -0
  261. package/dist/es/base/decorators.d.ts +2 -0
  262. package/dist/es/base/decorators.js +13 -0
  263. package/dist/es/base/define.d.ts +1 -0
  264. package/dist/es/base/define.js +18 -0
  265. package/dist/es/base/index.d.ts +3 -0
  266. package/dist/es/base/index.js +8 -0
  267. package/dist/es/components/accordion/daikin-accordion.d.ts +15 -2
  268. package/dist/es/components/accordion/daikin-accordion.js +38 -5
  269. package/dist/es/components/accordion-item/daikin-accordion-item.d.ts +10 -16
  270. package/dist/es/components/accordion-item/daikin-accordion-item.js +44 -84
  271. package/dist/es/components/breadcrumb/daikin-breadcrumb.d.ts +12 -24
  272. package/dist/es/components/breadcrumb/daikin-breadcrumb.js +26 -84
  273. package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +16 -25
  274. package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.js +32 -81
  275. package/dist/es/components/button/daikin-button.d.ts +8 -5
  276. package/dist/es/components/button/daikin-button.js +35 -22
  277. package/dist/es/components/card/daikin-card.d.ts +48 -0
  278. package/dist/es/components/card/daikin-card.js +68 -0
  279. package/dist/es/components/card/index.d.ts +1 -0
  280. package/dist/es/components/card/index.js +4 -0
  281. package/dist/es/components/card-footer/daikin-card-footer.d.ts +33 -0
  282. package/dist/es/components/card-footer/daikin-card-footer.js +34 -0
  283. package/dist/es/components/card-footer/index.d.ts +1 -0
  284. package/dist/es/components/card-footer/index.js +4 -0
  285. package/dist/es/components/card-header/daikin-card-header.d.ts +35 -0
  286. package/dist/es/components/card-header/daikin-card-header.js +60 -0
  287. package/dist/es/components/card-header/index.d.ts +1 -0
  288. package/dist/es/components/card-header/index.js +4 -0
  289. package/dist/es/components/carousel/daikin-carousel.d.ts +56 -0
  290. package/dist/es/components/carousel/daikin-carousel.js +218 -0
  291. package/dist/es/components/carousel/index.d.ts +1 -0
  292. package/dist/es/components/carousel/index.js +4 -0
  293. package/dist/es/components/carousel-item/daikin-carousel-item.d.ts +50 -0
  294. package/dist/es/components/carousel-item/daikin-carousel-item.js +81 -0
  295. package/dist/es/components/carousel-item/index.d.ts +1 -0
  296. package/dist/es/components/carousel-item/index.js +4 -0
  297. package/dist/es/components/checkbox/daikin-checkbox.d.ts +4 -2
  298. package/dist/es/components/checkbox/daikin-checkbox.js +62 -44
  299. package/dist/es/components/dropdown/daikin-dropdown.d.ts +16 -2
  300. package/dist/es/components/dropdown/daikin-dropdown.js +29 -18
  301. package/dist/es/components/dropdown-item/daikin-dropdown-item.d.ts +10 -2
  302. package/dist/es/components/dropdown-item/daikin-dropdown-item.js +20 -13
  303. package/dist/es/components/icon/daikin-icon.d.ts +5 -5
  304. package/dist/es/components/icon/daikin-icon.js +15 -12
  305. package/dist/es/components/icon/icons.json.d.ts +0 -8
  306. package/dist/es/components/icon/icons.json.js +1 -70
  307. package/dist/es/components/icon-button/daikin-icon-button.d.ts +2 -2
  308. package/dist/es/components/icon-button/daikin-icon-button.js +28 -24
  309. package/dist/es/components/index.d.ts +11 -1
  310. package/dist/es/components/index.js +23 -2
  311. package/dist/es/components/inline-notification/daikin-inline-notification.d.ts +55 -0
  312. package/dist/es/components/inline-notification/daikin-inline-notification.js +93 -0
  313. package/dist/es/components/inline-notification/index.d.ts +1 -0
  314. package/dist/es/components/inline-notification/index.js +4 -0
  315. package/dist/es/components/input-group/daikin-input-group.d.ts +25 -8
  316. package/dist/es/components/input-group/daikin-input-group.js +70 -51
  317. package/dist/es/components/link/daikin-link.d.ts +2 -2
  318. package/dist/es/components/link/daikin-link.js +39 -54
  319. package/dist/es/components/list/daikin-list.d.ts +7 -2
  320. package/dist/es/components/list/daikin-list.js +7 -7
  321. package/dist/es/components/list-item/daikin-list-item.d.ts +6 -2
  322. package/dist/es/components/list-item/daikin-list-item.js +15 -12
  323. package/dist/es/components/pagination/daikin-pagination.d.ts +6 -2
  324. package/dist/es/components/pagination/daikin-pagination.js +39 -32
  325. package/dist/es/components/progress-bar/daikin-progress-bar.d.ts +3 -2
  326. package/dist/es/components/progress-bar/daikin-progress-bar.js +32 -17
  327. package/dist/es/components/progress-indicator/daikin-progress-indicator.d.ts +12 -5
  328. package/dist/es/components/progress-indicator/daikin-progress-indicator.js +16 -25
  329. package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.d.ts +8 -4
  330. package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.js +27 -28
  331. package/dist/es/components/radio/daikin-radio.d.ts +18 -8
  332. package/dist/es/components/radio/daikin-radio.js +56 -32
  333. package/dist/es/components/radio-group/daikin-radio-group.d.ts +20 -14
  334. package/dist/es/components/radio-group/daikin-radio-group.js +30 -10
  335. package/dist/es/components/select/daikin-select.d.ts +11 -2
  336. package/dist/es/components/select/daikin-select.js +24 -15
  337. package/dist/es/components/tab/daikin-tab.d.ts +7 -2
  338. package/dist/es/components/tab/daikin-tab.js +37 -22
  339. package/dist/es/components/tab-panels/daikin-tab-panels.d.ts +2 -2
  340. package/dist/es/components/tab-panels/daikin-tab-panels.js +8 -6
  341. package/dist/es/components/table/daikin-table.d.ts +9 -2
  342. package/dist/es/components/table/daikin-table.js +14 -11
  343. package/dist/es/components/table-cell/daikin-table-cell.d.ts +6 -2
  344. package/dist/es/components/table-cell/daikin-table-cell.js +9 -6
  345. package/dist/es/components/table-header-cell/daikin-table-header-cell.d.ts +6 -2
  346. package/dist/es/components/table-header-cell/daikin-table-header-cell.js +11 -9
  347. package/dist/es/components/tabs/daikin-tabs.d.ts +8 -2
  348. package/dist/es/components/tabs/daikin-tabs.js +24 -9
  349. package/dist/es/components/text-area/daikin-text-area.d.ts +7 -2
  350. package/dist/es/components/text-area/daikin-text-area.js +30 -19
  351. package/dist/es/components/text-field/daikin-text-field.d.ts +7 -2
  352. package/dist/es/components/text-field/daikin-text-field.js +28 -18
  353. package/dist/es/components/toast-notification/daikin-toast-notification.d.ts +69 -0
  354. package/dist/es/components/toast-notification/daikin-toast-notification.js +95 -0
  355. package/dist/es/components/toast-notification/index.d.ts +1 -0
  356. package/dist/es/components/toast-notification/index.js +4 -0
  357. package/dist/es/components/toast-notification-manager/daikin-toast-notification-manager.d.ts +67 -0
  358. package/dist/es/components/toast-notification-manager/daikin-toast-notification-manager.js +193 -0
  359. package/dist/es/components/toast-notification-manager/index.d.ts +1 -0
  360. package/dist/es/components/toast-notification-manager/index.js +4 -0
  361. package/dist/es/components/toggle/daikin-toggle.d.ts +3 -2
  362. package/dist/es/components/toggle/daikin-toggle.js +17 -14
  363. package/dist/es/components/tooltip/daikin-tooltip.d.ts +16 -6
  364. package/dist/es/components/tooltip/daikin-tooltip.js +44 -32
  365. package/dist/es/components/tree/common.d.ts +32 -0
  366. package/dist/es/components/tree/common.js +90 -0
  367. package/dist/es/components/tree/daikin-tree.d.ts +73 -0
  368. package/dist/es/components/tree/daikin-tree.js +109 -0
  369. package/dist/es/components/tree/index.d.ts +1 -0
  370. package/dist/es/components/tree/index.js +4 -0
  371. package/dist/es/components/tree-item/daikin-tree-item.d.ts +95 -0
  372. package/dist/es/components/tree-item/daikin-tree-item.js +202 -0
  373. package/dist/es/components/tree-item/index.d.ts +1 -0
  374. package/dist/es/components/tree-item/index.js +5 -0
  375. package/dist/es/components/tree-section/daikin-tree-section.d.ts +109 -0
  376. package/dist/es/components/tree-section/daikin-tree-section.js +231 -0
  377. package/dist/es/components/tree-section/index.d.ts +1 -0
  378. package/dist/es/components/tree-section/index.js +4 -0
  379. package/dist/es/controllers/click-outside.d.ts +1 -1
  380. package/dist/es/index.d.ts +0 -1
  381. package/dist/es/index.js +23 -4
  382. package/dist/es/tailwind.css.js +1 -1
  383. package/dist/es/utils/is-simple-key.d.ts +7 -0
  384. package/dist/es/utils/is-simple-key.js +6 -0
  385. package/dist/es/utils/notification-common.d.ts +19 -0
  386. package/dist/es/utils/notification-common.js +121 -0
  387. package/dist/es-dev/base/dds-element.d.ts +4 -0
  388. package/dist/es-dev/base/dds-element.js +8 -0
  389. package/dist/es-dev/base/decorators.d.ts +2 -0
  390. package/dist/es-dev/base/decorators.js +13 -0
  391. package/dist/es-dev/base/define.d.ts +1 -0
  392. package/dist/es-dev/base/define.js +18 -0
  393. package/dist/es-dev/base/index.d.ts +3 -0
  394. package/dist/es-dev/base/index.js +8 -0
  395. package/dist/es-dev/components/accordion/daikin-accordion.d.ts +15 -2
  396. package/dist/es-dev/components/accordion/daikin-accordion.js +45 -5
  397. package/dist/es-dev/components/accordion-item/daikin-accordion-item.d.ts +10 -16
  398. package/dist/es-dev/components/accordion-item/daikin-accordion-item.js +44 -84
  399. package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.d.ts +12 -24
  400. package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.js +26 -84
  401. package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +16 -25
  402. package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.js +32 -81
  403. package/dist/es-dev/components/button/daikin-button.d.ts +8 -5
  404. package/dist/es-dev/components/button/daikin-button.js +35 -22
  405. package/dist/es-dev/components/card/daikin-card.d.ts +48 -0
  406. package/dist/es-dev/components/card/daikin-card.js +68 -0
  407. package/dist/es-dev/components/card/index.d.ts +1 -0
  408. package/dist/es-dev/components/card/index.js +4 -0
  409. package/dist/es-dev/components/card-footer/daikin-card-footer.d.ts +33 -0
  410. package/dist/es-dev/components/card-footer/daikin-card-footer.js +34 -0
  411. package/dist/es-dev/components/card-footer/index.d.ts +1 -0
  412. package/dist/es-dev/components/card-footer/index.js +4 -0
  413. package/dist/es-dev/components/card-header/daikin-card-header.d.ts +35 -0
  414. package/dist/es-dev/components/card-header/daikin-card-header.js +60 -0
  415. package/dist/es-dev/components/card-header/index.d.ts +1 -0
  416. package/dist/es-dev/components/card-header/index.js +4 -0
  417. package/dist/es-dev/components/carousel/daikin-carousel.d.ts +56 -0
  418. package/dist/es-dev/components/carousel/daikin-carousel.js +228 -0
  419. package/dist/es-dev/components/carousel/index.d.ts +1 -0
  420. package/dist/es-dev/components/carousel/index.js +4 -0
  421. package/dist/es-dev/components/carousel-item/daikin-carousel-item.d.ts +50 -0
  422. package/dist/es-dev/components/carousel-item/daikin-carousel-item.js +81 -0
  423. package/dist/es-dev/components/carousel-item/index.d.ts +1 -0
  424. package/dist/es-dev/components/carousel-item/index.js +4 -0
  425. package/dist/es-dev/components/checkbox/daikin-checkbox.d.ts +4 -2
  426. package/dist/es-dev/components/checkbox/daikin-checkbox.js +62 -44
  427. package/dist/es-dev/components/dropdown/daikin-dropdown.d.ts +16 -2
  428. package/dist/es-dev/components/dropdown/daikin-dropdown.js +29 -18
  429. package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.d.ts +10 -2
  430. package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.js +20 -13
  431. package/dist/es-dev/components/icon/daikin-icon.d.ts +5 -5
  432. package/dist/es-dev/components/icon/daikin-icon.js +15 -12
  433. package/dist/es-dev/components/icon/icons.json.d.ts +0 -8
  434. package/dist/es-dev/components/icon/icons.json.js +1 -70
  435. package/dist/es-dev/components/icon-button/daikin-icon-button.d.ts +2 -2
  436. package/dist/es-dev/components/icon-button/daikin-icon-button.js +28 -24
  437. package/dist/es-dev/components/index.d.ts +11 -1
  438. package/dist/es-dev/components/index.js +23 -2
  439. package/dist/es-dev/components/inline-notification/daikin-inline-notification.d.ts +55 -0
  440. package/dist/es-dev/components/inline-notification/daikin-inline-notification.js +93 -0
  441. package/dist/es-dev/components/inline-notification/index.d.ts +1 -0
  442. package/dist/es-dev/components/inline-notification/index.js +4 -0
  443. package/dist/es-dev/components/input-group/daikin-input-group.d.ts +25 -8
  444. package/dist/es-dev/components/input-group/daikin-input-group.js +70 -51
  445. package/dist/es-dev/components/link/daikin-link.d.ts +2 -2
  446. package/dist/es-dev/components/link/daikin-link.js +39 -54
  447. package/dist/es-dev/components/list/daikin-list.d.ts +7 -2
  448. package/dist/es-dev/components/list/daikin-list.js +7 -7
  449. package/dist/es-dev/components/list-item/daikin-list-item.d.ts +6 -2
  450. package/dist/es-dev/components/list-item/daikin-list-item.js +15 -12
  451. package/dist/es-dev/components/pagination/daikin-pagination.d.ts +6 -2
  452. package/dist/es-dev/components/pagination/daikin-pagination.js +39 -32
  453. package/dist/es-dev/components/progress-bar/daikin-progress-bar.d.ts +3 -2
  454. package/dist/es-dev/components/progress-bar/daikin-progress-bar.js +32 -17
  455. package/dist/es-dev/components/progress-indicator/daikin-progress-indicator.d.ts +12 -5
  456. package/dist/es-dev/components/progress-indicator/daikin-progress-indicator.js +16 -35
  457. package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.ts +8 -4
  458. package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.js +27 -28
  459. package/dist/es-dev/components/radio/daikin-radio.d.ts +18 -8
  460. package/dist/es-dev/components/radio/daikin-radio.js +56 -32
  461. package/dist/es-dev/components/radio-group/daikin-radio-group.d.ts +20 -14
  462. package/dist/es-dev/components/radio-group/daikin-radio-group.js +30 -10
  463. package/dist/es-dev/components/select/daikin-select.d.ts +11 -2
  464. package/dist/es-dev/components/select/daikin-select.js +24 -15
  465. package/dist/es-dev/components/tab/daikin-tab.d.ts +7 -2
  466. package/dist/es-dev/components/tab/daikin-tab.js +37 -22
  467. package/dist/es-dev/components/tab-panels/daikin-tab-panels.d.ts +2 -2
  468. package/dist/es-dev/components/tab-panels/daikin-tab-panels.js +8 -6
  469. package/dist/es-dev/components/table/daikin-table.d.ts +9 -2
  470. package/dist/es-dev/components/table/daikin-table.js +14 -11
  471. package/dist/es-dev/components/table-cell/daikin-table-cell.d.ts +6 -2
  472. package/dist/es-dev/components/table-cell/daikin-table-cell.js +9 -6
  473. package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.d.ts +6 -2
  474. package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.js +11 -9
  475. package/dist/es-dev/components/tabs/daikin-tabs.d.ts +8 -2
  476. package/dist/es-dev/components/tabs/daikin-tabs.js +24 -9
  477. package/dist/es-dev/components/text-area/daikin-text-area.d.ts +7 -2
  478. package/dist/es-dev/components/text-area/daikin-text-area.js +30 -19
  479. package/dist/es-dev/components/text-field/daikin-text-field.d.ts +7 -2
  480. package/dist/es-dev/components/text-field/daikin-text-field.js +28 -18
  481. package/dist/es-dev/components/toast-notification/daikin-toast-notification.d.ts +69 -0
  482. package/dist/es-dev/components/toast-notification/daikin-toast-notification.js +95 -0
  483. package/dist/es-dev/components/toast-notification/index.d.ts +1 -0
  484. package/dist/es-dev/components/toast-notification/index.js +4 -0
  485. package/dist/es-dev/components/toast-notification-manager/daikin-toast-notification-manager.d.ts +67 -0
  486. package/dist/es-dev/components/toast-notification-manager/daikin-toast-notification-manager.js +193 -0
  487. package/dist/es-dev/components/toast-notification-manager/index.d.ts +1 -0
  488. package/dist/es-dev/components/toast-notification-manager/index.js +4 -0
  489. package/dist/es-dev/components/toggle/daikin-toggle.d.ts +3 -2
  490. package/dist/es-dev/components/toggle/daikin-toggle.js +17 -14
  491. package/dist/es-dev/components/tooltip/daikin-tooltip.d.ts +16 -6
  492. package/dist/es-dev/components/tooltip/daikin-tooltip.js +44 -32
  493. package/dist/es-dev/components/tree/common.d.ts +32 -0
  494. package/dist/es-dev/components/tree/common.js +90 -0
  495. package/dist/es-dev/components/tree/daikin-tree.d.ts +73 -0
  496. package/dist/es-dev/components/tree/daikin-tree.js +109 -0
  497. package/dist/es-dev/components/tree/index.d.ts +1 -0
  498. package/dist/es-dev/components/tree/index.js +4 -0
  499. package/dist/es-dev/components/tree-item/daikin-tree-item.d.ts +95 -0
  500. package/dist/es-dev/components/tree-item/daikin-tree-item.js +202 -0
  501. package/dist/es-dev/components/tree-item/index.d.ts +1 -0
  502. package/dist/es-dev/components/tree-item/index.js +5 -0
  503. package/dist/es-dev/components/tree-section/daikin-tree-section.d.ts +109 -0
  504. package/dist/es-dev/components/tree-section/daikin-tree-section.js +231 -0
  505. package/dist/es-dev/components/tree-section/index.d.ts +1 -0
  506. package/dist/es-dev/components/tree-section/index.js +4 -0
  507. package/dist/es-dev/controllers/click-outside.d.ts +1 -1
  508. package/dist/es-dev/index.d.ts +0 -1
  509. package/dist/es-dev/index.js +23 -4
  510. package/dist/es-dev/tailwind.css.js +1 -1
  511. package/dist/es-dev/utils/is-simple-key.d.ts +7 -0
  512. package/dist/es-dev/utils/is-simple-key.js +6 -0
  513. package/dist/es-dev/utils/notification-common.d.ts +19 -0
  514. package/dist/es-dev/utils/notification-common.js +124 -0
  515. package/icons/checkbox-checked.svg +2 -3
  516. package/icons/sort.svg +1 -1
  517. package/icons/status-error.svg +1 -1
  518. package/icons/status-negative.svg +4 -2
  519. package/icons/status-warning.svg +2 -4
  520. package/package.json +58 -49
  521. package/dist/cjs/colors.cjs +0 -80
  522. package/dist/cjs/colors.d.cts +0 -69
  523. package/dist/cjs/components/notification/daikin-notification.cjs +0 -197
  524. package/dist/cjs/components/notification/daikin-notification.d.cts +0 -77
  525. package/dist/cjs/components/notification/index.cjs +0 -7
  526. package/dist/cjs/components/notification/index.d.cts +0 -1
  527. package/dist/cjs/constants/events.cjs +0 -4
  528. package/dist/cjs-dev/colors.cjs +0 -80
  529. package/dist/cjs-dev/colors.d.cts +0 -69
  530. package/dist/cjs-dev/components/notification/daikin-notification.cjs +0 -197
  531. package/dist/cjs-dev/components/notification/daikin-notification.d.cts +0 -77
  532. package/dist/cjs-dev/components/notification/index.cjs +0 -7
  533. package/dist/cjs-dev/components/notification/index.d.cts +0 -1
  534. package/dist/cjs-dev/constants/events.cjs +0 -4
  535. package/dist/es/colors.d.ts +0 -69
  536. package/dist/es/colors.js +0 -80
  537. package/dist/es/components/notification/daikin-notification.d.ts +0 -77
  538. package/dist/es/components/notification/daikin-notification.js +0 -198
  539. package/dist/es/components/notification/index.d.ts +0 -1
  540. package/dist/es/components/notification/index.js +0 -4
  541. package/dist/es/constants/events.js +0 -4
  542. package/dist/es-dev/colors.d.ts +0 -69
  543. package/dist/es-dev/colors.js +0 -80
  544. package/dist/es-dev/components/notification/daikin-notification.d.ts +0 -77
  545. package/dist/es-dev/components/notification/daikin-notification.js +0 -198
  546. package/dist/es-dev/components/notification/index.d.ts +0 -1
  547. package/dist/es-dev/components/notification/index.js +0 -4
  548. package/dist/es-dev/constants/events.js +0 -4
  549. package/icons/arrow-up.svg +0 -3
  550. package/icons/status-success.svg +0 -6
@@ -1,8 +1,11 @@
1
1
  import { flip, offset, size } from "@floating-ui/dom";
2
2
  import { cva } from "class-variance-authority";
3
- import { css, unsafeCSS, LitElement, html } from "lit";
4
- import { property, queryAssignedElements, query, state, customElement } from "lit/decorators.js";
3
+ import { css, unsafeCSS, html } from "lit";
4
+ import { property, queryAssignedElements, query, state } from "lit/decorators.js";
5
5
  import { ifDefined } from "lit/directives/if-defined.js";
6
+ import { DDSElement } from "../../base/dds-element.js";
7
+ import { ddsElement } from "../../base/decorators.js";
8
+ import "../../base/define.js";
6
9
  import { ClickOutsideController } from "../../controllers/click-outside.js";
7
10
  import { FloatingUIAutoUpdateController } from "../../controllers/floating-ui-auto-update.js";
8
11
  import tailwindStyles from "../../tailwind.css.js";
@@ -24,7 +27,7 @@ const cvaButton = cva(
24
27
  "w-full",
25
28
  "h-full",
26
29
  "min-h-12",
27
- "bg-white",
30
+ "bg-ddt-color-common-background-default",
28
31
  "p-3",
29
32
  "border",
30
33
  "border-[--color-base]",
@@ -39,8 +42,8 @@ const cvaButton = cva(
39
42
  "-outline-offset-2",
40
43
  "focus-visible:outline-2",
41
44
  "focus-visible:outline-[--color-focus]",
42
- "disabled:text-system-state-disabled",
43
- "disabled:border-system-state-disabled",
45
+ "disabled:text-ddt-color-common-disabled",
46
+ "disabled:border-ddt-color-common-disabled",
44
47
  "after:i-daikin-dropdown-chevron-down",
45
48
  "after:w-6",
46
49
  "after:h-6",
@@ -49,31 +52,31 @@ const cvaButton = cva(
49
52
  "after:top-0",
50
53
  "after:bottom-0",
51
54
  "after:right-3",
52
- "enabled:after:text-system-element-text-primary",
53
- "disabled:after:text-system-state-disabled"
55
+ "enabled:after:text-ddt-color-common-text-primary",
56
+ "disabled:after:text-ddt-color-common-disabled"
54
57
  ],
55
58
  {
56
59
  variants: {
57
60
  open: {
58
61
  false: [
59
- "enabled:hover:bg-system-background-surface-hover",
60
- "enabled:active:bg-system-background-surface-press"
62
+ "enabled:hover:bg-ddt-color-common-surface-hover",
63
+ "enabled:active:bg-ddt-color-common-surface-press"
61
64
  ],
62
- true: ["enabled:bg-system-background-surface-press"]
65
+ true: ["enabled:bg-ddt-color-common-surface-press"]
63
66
  },
64
67
  error: {
65
68
  false: [
66
- "var-color-system-state-neutral-active/color-base",
67
- "var-color-system-state-focus/color-focus"
69
+ "var-color-ddt-color-common-neutral-default/color-base",
70
+ "var-color-ddt-color-common-border-focus/color-focus"
68
71
  ],
69
72
  true: [
70
- "var-color-system-state-error-active/color-base",
71
- "var-color-system-state-error-active/color-focus"
73
+ "var-color-ddt-color-common-danger-default/color-base",
74
+ "var-color-ddt-color-common-danger-default/color-focus"
72
75
  ]
73
76
  },
74
77
  placeholder: {
75
- false: ["text-system-element-text-primary"],
76
- true: ["text-system-element-text-secondary"]
78
+ false: ["text-ddt-color-common-text-primary"],
79
+ true: ["text-ddt-color-common-text-secondary"]
77
80
  }
78
81
  }
79
82
  }
@@ -93,7 +96,7 @@ const floatingPositionOptions = {
93
96
  })
94
97
  ]
95
98
  };
96
- let DaikinDropdown = class extends LitElement {
99
+ let DaikinDropdown = class extends DDSElement {
97
100
  constructor() {
98
101
  super(...arguments);
99
102
  this._internals = this.attachInternals();
@@ -287,6 +290,10 @@ let DaikinDropdown = class extends LitElement {
287
290
  this._clickOutsideController.directive(this.open && !this.disabled)}
288
291
  </div>`;
289
292
  }
293
+ /**
294
+ * Focuses on the inner button.
295
+ * @param options focus options
296
+ */
290
297
  focus(options) {
291
298
  var _a;
292
299
  (_a = this._button) == null ? void 0 : _a.focus(options);
@@ -306,6 +313,10 @@ let DaikinDropdown = class extends LitElement {
306
313
  }
307
314
  }
308
315
  }
316
+ /**
317
+ * This method is used by `daikin-input-group` to reflect it's attributes to this component.
318
+ * @private
319
+ */
309
320
  reflectInputGroup(inputGroup) {
310
321
  const isError = !inputGroup.disabled && !!inputGroup.error;
311
322
  this.disabled = !!inputGroup.disabled;
@@ -361,7 +372,7 @@ __decorateClass([
361
372
  state()
362
373
  ], DaikinDropdown.prototype, "_selectedItemLabel", 2);
363
374
  DaikinDropdown = __decorateClass([
364
- customElement("daikin-dropdown")
375
+ ddsElement("daikin-dropdown")
365
376
  ], DaikinDropdown);
366
377
  export {
367
378
  DaikinDropdown
@@ -1,4 +1,4 @@
1
- import { LitElement } from 'lit';
1
+ import { DDSElement } from "../../base/index.js";
2
2
  /**
3
3
  * The dropdown item (option) component that can be used within `daikin-dropdown` component.
4
4
  *
@@ -11,11 +11,15 @@ import { LitElement } from 'lit';
11
11
  *
12
12
  * @example
13
13
  *
14
+ * ```js
15
+ * import "@daikin-oss/design-system-web-components/components/dropdown-item/index.js";
16
+ * ```
17
+ *
14
18
  * ```html
15
19
  * <daikin-dropdown-item value="value">Dropdown item</daikin-dropdown-item>
16
20
  * ```
17
21
  */
18
- export declare class DaikinDropdownItem extends LitElement {
22
+ export declare class DaikinDropdownItem extends DDSElement {
19
23
  static readonly styles: import('lit').CSSResult;
20
24
  /**
21
25
  * Form value of the dropdown item.
@@ -33,6 +37,10 @@ export declare class DaikinDropdownItem extends LitElement {
33
37
  private _button;
34
38
  private _handleClick;
35
39
  render(): import('lit-html').TemplateResult<1>;
40
+ /**
41
+ * Focuses on the inner button.
42
+ * @param options focus options
43
+ */
36
44
  focus(options?: FocusOptions): void;
37
45
  }
38
46
  declare global {
@@ -1,6 +1,9 @@
1
1
  import { cva } from "class-variance-authority";
2
- import { css, unsafeCSS, LitElement, html } from "lit";
3
- import { property, query, customElement } from "lit/decorators.js";
2
+ import { css, unsafeCSS, html } from "lit";
3
+ import { property, query } from "lit/decorators.js";
4
+ import { DDSElement } from "../../base/dds-element.js";
5
+ import { ddsElement } from "../../base/decorators.js";
6
+ import "../../base/define.js";
4
7
  import tailwindStyles from "../../tailwind.css.js";
5
8
  var __defProp = Object.defineProperty;
6
9
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -19,8 +22,8 @@ const cvaOption = cva(
19
22
  "justify-between",
20
23
  "w-full",
21
24
  "min-h-12",
22
- "text-system-element-text-primary",
23
- "bg-system-element-text-inverse",
25
+ "text-ddt-color-common-text-primary",
26
+ "bg-ddt-color-common-background-default",
24
27
  "p-3",
25
28
  "font-daikinSerif",
26
29
  "leading-5",
@@ -28,20 +31,20 @@ const cvaOption = cva(
28
31
  "focus-visible:outline",
29
32
  "focus-visible:outline-2",
30
33
  "focus-visible:-outline-offset-2",
31
- "focus-visible:outline-system-state-focus",
32
- "disabled:text-system-state-disabled"
34
+ "focus-visible:outline-ddt-color-common-border-focus",
35
+ "disabled:text-ddt-color-common-disabled"
33
36
  ],
34
37
  {
35
38
  variants: {
36
39
  selected: {
37
40
  false: [
38
- "enabled:hover:bg-system-background-surface-hover",
39
- "enabled:active:bg-system-background-surface-press"
41
+ "enabled:hover:bg-ddt-color-common-surface-hover",
42
+ "enabled:active:bg-ddt-color-common-surface-press"
40
43
  ],
41
44
  true: [
42
- "enabled:bg-system-background-surface-selected",
43
- "enabled:hover:bg-system-background-surface-selectedHover",
44
- "enabled:active:bg-system-background-surface-selectedActive",
45
+ "enabled:bg-ddt-color-common-surface-selected-default",
46
+ "enabled:hover:bg-ddt-color-common-surface-selected-hover",
47
+ "enabled:active:bg-ddt-color-common-surface-selected-press",
45
48
  "after:i-daikin-dropdown-check",
46
49
  "after:size-6"
47
50
  ]
@@ -49,7 +52,7 @@ const cvaOption = cva(
49
52
  }
50
53
  }
51
54
  );
52
- let DaikinDropdownItem = class extends LitElement {
55
+ let DaikinDropdownItem = class extends DDSElement {
53
56
  constructor() {
54
57
  super(...arguments);
55
58
  this.value = "";
@@ -80,6 +83,10 @@ let DaikinDropdownItem = class extends LitElement {
80
83
  <slot></slot>
81
84
  </button>`;
82
85
  }
86
+ /**
87
+ * Focuses on the inner button.
88
+ * @param options focus options
89
+ */
83
90
  focus(options) {
84
91
  var _a;
85
92
  (_a = this._button) == null ? void 0 : _a.focus(options);
@@ -106,7 +113,7 @@ __decorateClass([
106
113
  query("button")
107
114
  ], DaikinDropdownItem.prototype, "_button", 2);
108
115
  DaikinDropdownItem = __decorateClass([
109
- customElement("daikin-dropdown-item")
116
+ ddsElement("daikin-dropdown-item")
110
117
  ], DaikinDropdownItem);
111
118
  export {
112
119
  DaikinDropdownItem
@@ -1,11 +1,11 @@
1
- import { LitElement } from 'lit';
1
+ import { DDSElement } from "../../base/index.js";
2
2
  import { MergeVariantProps } from "../../type-utils.js";
3
3
  import { icons } from "./icons.json.js";
4
4
  export declare const iconList: string[];
5
5
  export type IconType = keyof typeof icons;
6
6
  declare const cvaIcon: (props?: ({
7
7
  icon?: string | number | null | undefined;
8
- color?: "default" | "black" | "white" | "current" | null | undefined;
8
+ color?: "current" | "default" | "black" | "white" | null | undefined;
9
9
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
10
10
  export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
11
11
  /**
@@ -17,7 +17,7 @@ export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
17
17
  * If you try to use an icon that does not exist, a blank space will be displayed.
18
18
  * In the development build, warnings will be displayed in the console, so please check there if you encounter any unexpected behavior.
19
19
  *
20
- * @cssprop [--dds-icon-size] - Icon size. If a value other than "current" is set for the `size` property, it will be overwritten automatically. This may be set by the parent component such as `daikin-icon-button`.
20
+ * @cssprop [--ddc-icon-size] - Icon size. If a value other than "current" is set for the `size` property, it will be overwritten automatically. This may be set by the parent component such as `daikin-icon-button`.
21
21
  *
22
22
  * @example
23
23
  *
@@ -29,7 +29,7 @@ export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
29
29
  * <daikin-icon icon="information" color="black" size="m"></daikin-icon>
30
30
  * ```
31
31
  */
32
- export declare class DaikinIcon extends LitElement {
32
+ export declare class DaikinIcon extends DDSElement {
33
33
  static readonly styles: import('lit').CSSResult;
34
34
  /**
35
35
  * Specify the name of the icon
@@ -41,7 +41,7 @@ export declare class DaikinIcon extends LitElement {
41
41
  color: IconVariantProps["color"];
42
42
  /**
43
43
  * Specify the size of the icon.
44
- * If "current" is set, `--dds-icon-size` CSS variable will be used. `--dds-icon-size` may be set by the parent component such as `daikin-icon-button`.
44
+ * If "current" is set, `--ddc-icon-size` CSS variable will be used. `--ddc-icon-size` may be set by the parent component such as `daikin-icon-button`.
45
45
  */
46
46
  size: "s" | "m" | "l" | "xl" | "current";
47
47
  render(): import('lit-html').TemplateResult<1>;
@@ -1,6 +1,9 @@
1
1
  import { cva } from "class-variance-authority";
2
- import { css, unsafeCSS, LitElement, html } from "lit";
3
- import { property, customElement } from "lit/decorators.js";
2
+ import { css, unsafeCSS, html } from "lit";
3
+ import { property } from "lit/decorators.js";
4
+ import { DDSElement } from "../../base/dds-element.js";
5
+ import { ddsElement } from "../../base/decorators.js";
6
+ import "../../base/define.js";
4
7
  import tailwindStyles from "../../tailwind.css.js";
5
8
  import { icons } from "./icons.json.js";
6
9
  var __defProp = Object.defineProperty;
@@ -21,15 +24,15 @@ const cvaIcon = cva(["block"], {
21
24
  variants: {
22
25
  icon: iconClassMap,
23
26
  color: {
24
- black: ["text-black"],
25
- white: ["text-white"],
27
+ black: ["text-ddt-color-common-background-overlay"],
28
+ white: ["text-ddt-color-common-text-inverse"],
26
29
  default: ["text-[--default-color]"],
27
30
  current: []
28
31
  // uses `currentColor`
29
32
  }
30
33
  }
31
34
  });
32
- let DaikinIcon = class extends LitElement {
35
+ let DaikinIcon = class extends DDSElement {
33
36
  constructor() {
34
37
  super(...arguments);
35
38
  this.icon = null;
@@ -54,24 +57,24 @@ DaikinIcon.styles = css`
54
57
 
55
58
  :host {
56
59
  display: inline-block;
57
- width: var(--dds-icon-size, 100%);
58
- height: var(--dds-icon-size, 100%);
60
+ width: var(--ddc-icon-size, 100%);
61
+ height: var(--ddc-icon-size, 100%);
59
62
  }
60
63
 
61
64
  :host([size="s"]) {
62
- --dds-icon-size: 12px;
65
+ --ddc-icon-size: 12px;
63
66
  }
64
67
 
65
68
  :host([size="m"]) {
66
- --dds-icon-size: 16px;
69
+ --ddc-icon-size: 16px;
67
70
  }
68
71
 
69
72
  :host([size="l"]) {
70
- --dds-icon-size: 20px;
73
+ --ddc-icon-size: 20px;
71
74
  }
72
75
 
73
76
  :host([size="xl"]) {
74
- --dds-icon-size: 24px;
77
+ --ddc-icon-size: 24px;
75
78
  }
76
79
  `;
77
80
  __decorateClass([
@@ -84,7 +87,7 @@ __decorateClass([
84
87
  property({ type: String, reflect: true })
85
88
  ], DaikinIcon.prototype, "size", 2);
86
89
  DaikinIcon = __decorateClass([
87
- customElement("daikin-icon")
90
+ ddsElement("daikin-icon")
88
91
  ], DaikinIcon);
89
92
  export {
90
93
  DaikinIcon,
@@ -32,14 +32,6 @@ declare const _default: {
32
32
  "class": "i-daikin-pagination-chevron-right",
33
33
  "color": "#414141"
34
34
  },
35
- "arrowUp": {
36
- "class": "i-daikin-arrow-up",
37
- "color": "#414141"
38
- },
39
- "success": {
40
- "class": "i-daikin-status-success",
41
- "color": "#0097E0"
42
- },
43
35
  "error": {
44
36
  "class": "i-daikin-status-error",
45
37
  "color": "#FF4949"
@@ -1,73 +1,4 @@
1
- const icons = {
2
- alarm: {
3
- "class": "i-daikin-status-alarm",
4
- color: null
5
- },
6
- close: {
7
- "class": "i-daikin-notification-close",
8
- color: "#a0a0a0"
9
- },
10
- information: {
11
- "class": "i-daikin-status-information",
12
- color: null
13
- },
14
- negative: {
15
- "class": "i-daikin-status-negative",
16
- color: null
17
- },
18
- positive: {
19
- "class": "i-daikin-status-positive",
20
- color: null
21
- },
22
- warning: {
23
- "class": "i-daikin-status-warning",
24
- color: null
25
- },
26
- "pagination-chevron-left": {
27
- "class": "i-daikin-pagination-chevron-left",
28
- color: "#414141"
29
- },
30
- "pagination-chevron-right": {
31
- "class": "i-daikin-pagination-chevron-right",
32
- color: "#414141"
33
- },
34
- arrowUp: {
35
- "class": "i-daikin-arrow-up",
36
- color: "#414141"
37
- },
38
- success: {
39
- "class": "i-daikin-status-success",
40
- color: "#0097E0"
41
- },
42
- error: {
43
- "class": "i-daikin-status-error",
44
- color: "#FF4949"
45
- },
46
- cross: {
47
- "class": "i-daikin-cross",
48
- color: null
49
- },
50
- "chevron-up": {
51
- "class": "i-daikin-chevron-up",
52
- color: null
53
- },
54
- "chevron-down": {
55
- "class": "i-daikin-chevron-down",
56
- color: null
57
- },
58
- "chevron-left": {
59
- "class": "i-daikin-chevron-left",
60
- color: null
61
- },
62
- "chevron-right": {
63
- "class": "i-daikin-chevron-right",
64
- color: null
65
- },
66
- sort: {
67
- "class": "i-daikin-sort",
68
- color: null
69
- }
70
- };
1
+ const icons = { "alarm": { "class": "i-daikin-status-alarm", "color": null }, "close": { "class": "i-daikin-notification-close", "color": "#a0a0a0" }, "information": { "class": "i-daikin-status-information", "color": null }, "negative": { "class": "i-daikin-status-negative", "color": null }, "positive": { "class": "i-daikin-status-positive", "color": null }, "warning": { "class": "i-daikin-status-warning", "color": null }, "pagination-chevron-left": { "class": "i-daikin-pagination-chevron-left", "color": "#414141" }, "pagination-chevron-right": { "class": "i-daikin-pagination-chevron-right", "color": "#414141" }, "error": { "class": "i-daikin-status-error", "color": "#FF4949" }, "cross": { "class": "i-daikin-cross", "color": null }, "chevron-up": { "class": "i-daikin-chevron-up", "color": null }, "chevron-down": { "class": "i-daikin-chevron-down", "color": null }, "chevron-left": { "class": "i-daikin-chevron-left", "color": null }, "chevron-right": { "class": "i-daikin-chevron-right", "color": null }, "sort": { "class": "i-daikin-sort", "color": null } };
71
2
  export {
72
3
  icons
73
4
  };
@@ -1,4 +1,4 @@
1
- import { LitElement } from 'lit';
1
+ import { DDSElement } from "../../base/index.js";
2
2
  import { ARIARole } from "../../lit-analyzer-types.js";
3
3
  import { MergeVariantProps } from "../../type-utils.js";
4
4
  declare const cvaIconButton: (props?: ({
@@ -32,7 +32,7 @@ type IconButtonVariantProps = MergeVariantProps<typeof cvaIconButton>;
32
32
  * </daikin-icon-button>
33
33
  * ```
34
34
  */
35
- export declare class DaikinIconButton extends LitElement {
35
+ export declare class DaikinIconButton extends DDSElement {
36
36
  static readonly styles: import('lit').CSSResult;
37
37
  /**
38
38
  * Variant of the button.
@@ -1,7 +1,10 @@
1
1
  import { cva } from "class-variance-authority";
2
- import { css, unsafeCSS, LitElement, html } from "lit";
3
- import { property, query, customElement } from "lit/decorators.js";
2
+ import { css, unsafeCSS, html } from "lit";
3
+ import { property, query } from "lit/decorators.js";
4
4
  import { ifDefined } from "lit/directives/if-defined.js";
5
+ import { DDSElement } from "../../base/dds-element.js";
6
+ import { ddsElement } from "../../base/decorators.js";
7
+ import "../../base/define.js";
5
8
  import tailwindStyles from "../../tailwind.css.js";
6
9
  import "../icon/daikin-icon.js";
7
10
  var __defProp = Object.defineProperty;
@@ -19,8 +22,7 @@ const cvaIconButton = cva(
19
22
  "inline-flex",
20
23
  "justify-center",
21
24
  "items-center",
22
- "w-8",
23
- "h-8",
25
+ "size-full",
24
26
  "font-daikinSerif",
25
27
  "font-bold",
26
28
  "rounded",
@@ -30,37 +32,37 @@ const cvaIconButton = cva(
30
32
  "focus-visible:outline",
31
33
  "focus-visible:outline-2",
32
34
  "focus-visible:outline-offset-2",
33
- "focus-visible:outline-system-state-focus",
35
+ "focus-visible:outline-ddt-color-common-border-focus",
34
36
  "var-color-transparent/color-secondary",
35
- "link-disabled:var-color-system-state-disabled/color-primary"
37
+ "link-disabled:var-color-ddt-color-common-disabled/color-primary"
36
38
  ],
37
39
  {
38
40
  variants: {
39
41
  color: {
40
42
  default: [
41
- "link-enabled:var-color-system-state-primary-active/color-primary",
42
- "link-enabled:hover:var-color-system-state-primary-hover/color-primary",
43
- "link-enabled:hover:var-color-system-state-primary-surface-hover/color-secondary",
44
- "link-enabled:active:var-color-system-state-primary-press/color-primary",
45
- "link-enabled:active:var-color-system-state-primary-surface-press/color-secondary"
43
+ "link-enabled:var-color-ddt-color-common-brand-default/color-primary",
44
+ "link-enabled:hover:var-color-ddt-color-common-brand-hover/color-primary",
45
+ "link-enabled:hover:var-color-ddt-color-common-surface-brand-hover/color-secondary",
46
+ "link-enabled:active:var-color-ddt-color-common-brand-press/color-primary",
47
+ "link-enabled:active:var-color-ddt-color-common-surface-brand-press/color-secondary"
46
48
  ],
47
49
  neutral: [
48
- "link-enabled:var-color-system-state-neutral-active/color-primary",
49
- "link-enabled:hover:var-color-system-state-neutral-hover/color-primary",
50
- "link-enabled:hover:var-color-system-background-surface-hover/color-secondary",
51
- "link-enabled:active:var-color-system-state-neutral-press/color-primary",
52
- "link-enabled:active:var-color-system-background-surface-press/color-secondary"
50
+ "link-enabled:var-color-ddt-color-common-neutral-default/color-primary",
51
+ "link-enabled:hover:var-color-ddt-color-common-neutral-hover/color-primary",
52
+ "link-enabled:hover:var-color-ddt-color-common-surface-neutral-hover/color-secondary",
53
+ "link-enabled:active:var-color-ddt-color-common-neutral-press/color-primary",
54
+ "link-enabled:active:var-color-ddt-color-common-surface-neutral-press/color-secondary"
53
55
  ],
54
56
  danger: [
55
- "link-enabled:var-color-system-state-error-active/color-primary",
56
- "link-enabled:hover:var-color-system-state-error-hover/color-primary",
57
- "link-enabled:hover:var-color-system-state-error-surface-hover/color-secondary",
58
- "link-enabled:active:var-color-system-state-error-press/color-primary",
59
- "link-enabled:active:var-color-system-state-error-surface-press/color-secondary"
57
+ "link-enabled:var-color-ddt-color-common-danger-default/color-primary",
58
+ "link-enabled:hover:var-color-ddt-color-common-danger-hover/color-primary",
59
+ "link-enabled:hover:var-color-ddt-color-common-surface-danger-hover/color-secondary",
60
+ "link-enabled:active:var-color-ddt-color-common-danger-press/color-primary",
61
+ "link-enabled:active:var-color-ddt-color-common-surface-danger-press/color-secondary"
60
62
  ]
61
63
  },
62
64
  variant: {
63
- fill: ["text-white", "bg-[--color-primary]"],
65
+ fill: ["text-ddt-color-common-text-inverse", "bg-[--color-primary]"],
64
66
  outline: [
65
67
  "border",
66
68
  "text-[--color-primary]",
@@ -72,7 +74,7 @@ const cvaIconButton = cva(
72
74
  }
73
75
  }
74
76
  );
75
- let DaikinIconButton = class extends LitElement {
77
+ let DaikinIconButton = class extends DDSElement {
76
78
  constructor() {
77
79
  super();
78
80
  this.variant = "fill";
@@ -132,6 +134,8 @@ DaikinIconButton.styles = css`
132
134
 
133
135
  :host {
134
136
  display: inline-block;
137
+ width: 2rem;
138
+ height: 2rem;
135
139
  }
136
140
  `;
137
141
  __decorateClass([
@@ -159,7 +163,7 @@ __decorateClass([
159
163
  query("button")
160
164
  ], DaikinIconButton.prototype, "_button", 2);
161
165
  DaikinIconButton = __decorateClass([
162
- customElement("daikin-icon-button")
166
+ ddsElement("daikin-icon-button")
163
167
  ], DaikinIconButton);
164
168
  export {
165
169
  DaikinIconButton
@@ -3,16 +3,21 @@ export * from "./accordion-item/index.js";
3
3
  export * from "./breadcrumb/index.js";
4
4
  export * from "./breadcrumb-item/index.js";
5
5
  export * from "./button/index.js";
6
+ export * from "./card/index.js";
7
+ export * from "./card-footer/index.js";
8
+ export * from "./card-header/index.js";
9
+ export * from "./carousel/index.js";
10
+ export * from "./carousel-item/index.js";
6
11
  export * from "./checkbox/index.js";
7
12
  export * from "./dropdown/index.js";
8
13
  export * from "./dropdown-item/index.js";
9
14
  export * from "./icon/index.js";
10
15
  export * from "./icon-button/index.js";
16
+ export * from "./inline-notification/index.js";
11
17
  export * from "./input-group/index.js";
12
18
  export * from "./link/index.js";
13
19
  export * from "./list/index.js";
14
20
  export * from "./list-item/index.js";
15
- export * from "./notification/index.js";
16
21
  export * from "./pagination/index.js";
17
22
  export * from "./progress-bar/index.js";
18
23
  export * from "./progress-indicator/index.js";
@@ -27,5 +32,10 @@ export * from "./table-header-cell/index.js";
27
32
  export * from "./tabs/index.js";
28
33
  export * from "./text-area/index.js";
29
34
  export * from "./text-field/index.js";
35
+ export * from "./toast-notification/index.js";
36
+ export * from "./toast-notification-manager/index.js";
30
37
  export * from "./toggle/index.js";
31
38
  export * from "./tooltip/index.js";
39
+ export * from "./tree/index.js";
40
+ export * from "./tree-item/index.js";
41
+ export * from "./tree-section/index.js";
@@ -3,16 +3,21 @@ import { DaikinAccordionItem } from "./accordion-item/daikin-accordion-item.js";
3
3
  import { DaikinBreadcrumb } from "./breadcrumb/daikin-breadcrumb.js";
4
4
  import { DaikinBreadcrumbItem } from "./breadcrumb-item/daikin-breadcrumb-item.js";
5
5
  import { DaikinButton } from "./button/daikin-button.js";
6
+ import { DaikinCard } from "./card/daikin-card.js";
7
+ import { DaikinCardFooter } from "./card-footer/daikin-card-footer.js";
8
+ import { DaikinCardHeader } from "./card-header/daikin-card-header.js";
9
+ import { DaikinCarousel } from "./carousel/daikin-carousel.js";
10
+ import { DaikinCarouselItem } from "./carousel-item/daikin-carousel-item.js";
6
11
  import { DaikinCheckbox } from "./checkbox/daikin-checkbox.js";
7
12
  import { DaikinDropdown } from "./dropdown/daikin-dropdown.js";
8
13
  import { DaikinDropdownItem } from "./dropdown-item/daikin-dropdown-item.js";
9
14
  import { DaikinIcon, iconList } from "./icon/daikin-icon.js";
10
15
  import { DaikinIconButton } from "./icon-button/daikin-icon-button.js";
16
+ import { DaikinInlineNotification } from "./inline-notification/daikin-inline-notification.js";
11
17
  import { DaikinInputGroup } from "./input-group/daikin-input-group.js";
12
18
  import { DaikinLink } from "./link/daikin-link.js";
13
19
  import { DaikinList } from "./list/daikin-list.js";
14
20
  import { DaikinListItem } from "./list-item/daikin-list-item.js";
15
- import { DaikinNotification } from "./notification/daikin-notification.js";
16
21
  import { DaikinPagination } from "./pagination/daikin-pagination.js";
17
22
  import { DaikinProgressBar } from "./progress-bar/daikin-progress-bar.js";
18
23
  import { DaikinProgressIndicator } from "./progress-indicator/daikin-progress-indicator.js";
@@ -27,24 +32,34 @@ import { DaikinTableHeaderCell } from "./table-header-cell/daikin-table-header-c
27
32
  import { DaikinTabs } from "./tabs/daikin-tabs.js";
28
33
  import { DaikinTextArea } from "./text-area/daikin-text-area.js";
29
34
  import { DaikinTextField } from "./text-field/daikin-text-field.js";
35
+ import { DaikinToastNotification } from "./toast-notification/daikin-toast-notification.js";
36
+ import { DaikinToastNotificationManager } from "./toast-notification-manager/daikin-toast-notification-manager.js";
30
37
  import { DaikinToggle } from "./toggle/daikin-toggle.js";
31
38
  import { DaikinTooltip } from "./tooltip/daikin-tooltip.js";
39
+ import { DaikinTree } from "./tree/daikin-tree.js";
40
+ import { DaikinTreeItem, cvaTreeChildren } from "./tree-item/daikin-tree-item.js";
41
+ import { DaikinTreeSection } from "./tree-section/daikin-tree-section.js";
32
42
  export {
33
43
  DaikinAccordion,
34
44
  DaikinAccordionItem,
35
45
  DaikinBreadcrumb,
36
46
  DaikinBreadcrumbItem,
37
47
  DaikinButton,
48
+ DaikinCard,
49
+ DaikinCardFooter,
50
+ DaikinCardHeader,
51
+ DaikinCarousel,
52
+ DaikinCarouselItem,
38
53
  DaikinCheckbox,
39
54
  DaikinDropdown,
40
55
  DaikinDropdownItem,
41
56
  DaikinIcon,
42
57
  DaikinIconButton,
58
+ DaikinInlineNotification,
43
59
  DaikinInputGroup,
44
60
  DaikinLink,
45
61
  DaikinList,
46
62
  DaikinListItem,
47
- DaikinNotification,
48
63
  DaikinPagination,
49
64
  DaikinProgressBar,
50
65
  DaikinProgressIndicator,
@@ -59,7 +74,13 @@ export {
59
74
  DaikinTabs,
60
75
  DaikinTextArea,
61
76
  DaikinTextField,
77
+ DaikinToastNotification,
78
+ DaikinToastNotificationManager,
62
79
  DaikinToggle,
63
80
  DaikinTooltip,
81
+ DaikinTree,
82
+ DaikinTreeItem,
83
+ DaikinTreeSection,
84
+ cvaTreeChildren,
64
85
  iconList
65
86
  };