@daikin-oss/design-system-web-components 1.2.0 → 1.3.0-next.2

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 (249) hide show
  1. package/CHANGELOG.md +85 -49
  2. package/dist/cjs/base/dds-element.cjs +1 -1
  3. package/dist/cjs/components/accordion-item/daikin-accordion-item.cjs +1 -0
  4. package/dist/cjs/components/avatar/daikin-avatar.cjs +1 -0
  5. package/dist/cjs/components/calendar/daikin-calendar.cjs +2 -0
  6. package/dist/cjs/components/card-header/daikin-card-header.cjs +1 -1
  7. package/dist/cjs/components/carousel/daikin-carousel.cjs +7 -3
  8. package/dist/cjs/components/carousel-item/daikin-carousel-item.cjs +2 -2
  9. package/dist/cjs/components/chip/daikin-chip.cjs +106 -0
  10. package/dist/cjs/components/chip/daikin-chip.d.cts +36 -0
  11. package/dist/cjs/components/chip/index.cjs +7 -0
  12. package/dist/cjs/components/chip/index.d.cts +1 -0
  13. package/dist/cjs/components/combobox/daikin-combobox.cjs +604 -0
  14. package/dist/cjs/components/combobox/daikin-combobox.d.cts +134 -0
  15. package/dist/cjs/components/combobox/index.cjs +8 -0
  16. package/dist/cjs/components/combobox/index.d.cts +1 -0
  17. package/dist/cjs/components/date-picker/daikin-date-picker.cjs +31 -16
  18. package/dist/cjs/components/date-picker/daikin-date-picker.d.cts +2 -1
  19. package/dist/cjs/components/dropdown/daikin-dropdown.cjs +52 -37
  20. package/dist/cjs/components/dropdown/daikin-dropdown.d.cts +4 -3
  21. package/dist/cjs/components/icon/daikin-icon.cjs +117 -12
  22. package/dist/cjs/components/icon/daikin-icon.d.cts +129 -9
  23. package/dist/cjs/components/icon/icons.json.cjs +6 -2
  24. package/dist/cjs/components/icon/icons.json.d.cts +0 -12
  25. package/dist/cjs/components/icon-button/daikin-icon-button.cjs +12 -2
  26. package/dist/cjs/components/icon-button/daikin-icon-button.d.cts +8 -0
  27. package/dist/cjs/components/index.cjs +36 -0
  28. package/dist/cjs/components/index.d.cts +5 -0
  29. package/dist/cjs/components/input-group/daikin-input-group.cjs +1 -1
  30. package/dist/cjs/components/input-group/daikin-input-group.d.cts +40 -13
  31. package/dist/cjs/components/list-item/daikin-list-item.cjs +2 -2
  32. package/dist/cjs/components/modal-header/daikin-modal-header.cjs +1 -1
  33. package/dist/cjs/components/progress-bar/daikin-progress-bar.cjs +3 -3
  34. package/dist/cjs/components/select/daikin-select.cjs +6 -1
  35. package/dist/cjs/components/tab/daikin-tab.cjs +1 -0
  36. package/dist/cjs/components/table/daikin-table.cjs +33 -12
  37. package/dist/cjs/components/table/daikin-table.d.cts +67 -34
  38. package/dist/cjs/components/table-header-cell/daikin-table-header-cell.cjs +31 -6
  39. package/dist/cjs/components/table-header-cell/daikin-table-header-cell.d.cts +7 -0
  40. package/dist/cjs/components/text-field/daikin-text-field.cjs +191 -56
  41. package/dist/cjs/components/text-field/daikin-text-field.d.cts +32 -3
  42. package/dist/cjs/components/text-field/number-utils.cjs +61 -0
  43. package/dist/cjs/components/text-field/number-utils.d.cts +26 -0
  44. package/dist/cjs/components/text-masked-field/daikin-text-masked-field.cjs +312 -0
  45. package/dist/cjs/components/text-masked-field/daikin-text-masked-field.d.cts +136 -0
  46. package/dist/cjs/components/text-masked-field/index.cjs +7 -0
  47. package/dist/cjs/components/text-masked-field/index.d.cts +1 -0
  48. package/dist/cjs/components/time-picker/daikin-time-picker.cjs +577 -0
  49. package/dist/cjs/components/time-picker/daikin-time-picker.d.cts +165 -0
  50. package/dist/cjs/components/time-picker/index.cjs +17 -0
  51. package/dist/cjs/components/time-picker/index.d.cts +1 -0
  52. package/dist/cjs/components/toast-notification-manager/daikin-toast-notification-manager.d.cts +1 -1
  53. package/dist/cjs/components/tooltip/daikin-tooltip.cjs +12 -2
  54. package/dist/cjs/components/tooltip/daikin-tooltip.d.cts +8 -1
  55. package/dist/cjs/controllers/floating-ui-auto-update.cjs +22 -4
  56. package/dist/cjs/controllers/floating-ui-auto-update.d.cts +12 -0
  57. package/dist/cjs/icon-registry.cjs +170 -0
  58. package/dist/cjs/icon-registry.d.cts +120 -0
  59. package/dist/cjs/index.cjs +39 -0
  60. package/dist/cjs/index.d.cts +1 -0
  61. package/dist/cjs/tailwind.css.cjs +1 -1
  62. package/dist/cjs/utils/notification-common.d.cts +2 -2
  63. package/dist/cjs-dev/base/dds-element.cjs +1 -1
  64. package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.cjs +1 -0
  65. package/dist/cjs-dev/components/avatar/daikin-avatar.cjs +1 -0
  66. package/dist/cjs-dev/components/calendar/daikin-calendar.cjs +2 -0
  67. package/dist/cjs-dev/components/card-header/daikin-card-header.cjs +1 -1
  68. package/dist/cjs-dev/components/carousel/daikin-carousel.cjs +7 -3
  69. package/dist/cjs-dev/components/carousel-item/daikin-carousel-item.cjs +2 -2
  70. package/dist/cjs-dev/components/chip/daikin-chip.cjs +106 -0
  71. package/dist/cjs-dev/components/chip/daikin-chip.d.cts +36 -0
  72. package/dist/cjs-dev/components/chip/index.cjs +7 -0
  73. package/dist/cjs-dev/components/chip/index.d.cts +1 -0
  74. package/dist/cjs-dev/components/combobox/daikin-combobox.cjs +604 -0
  75. package/dist/cjs-dev/components/combobox/daikin-combobox.d.cts +134 -0
  76. package/dist/cjs-dev/components/combobox/index.cjs +8 -0
  77. package/dist/cjs-dev/components/combobox/index.d.cts +1 -0
  78. package/dist/cjs-dev/components/date-picker/daikin-date-picker.cjs +31 -16
  79. package/dist/cjs-dev/components/date-picker/daikin-date-picker.d.cts +2 -1
  80. package/dist/cjs-dev/components/dropdown/daikin-dropdown.cjs +52 -37
  81. package/dist/cjs-dev/components/dropdown/daikin-dropdown.d.cts +4 -3
  82. package/dist/cjs-dev/components/icon/daikin-icon.cjs +141 -16
  83. package/dist/cjs-dev/components/icon/daikin-icon.d.cts +129 -9
  84. package/dist/cjs-dev/components/icon/icons.json.cjs +6 -2
  85. package/dist/cjs-dev/components/icon/icons.json.d.cts +0 -12
  86. package/dist/cjs-dev/components/icon-button/daikin-icon-button.cjs +12 -2
  87. package/dist/cjs-dev/components/icon-button/daikin-icon-button.d.cts +8 -0
  88. package/dist/cjs-dev/components/index.cjs +36 -0
  89. package/dist/cjs-dev/components/index.d.cts +5 -0
  90. package/dist/cjs-dev/components/input-group/daikin-input-group.cjs +1 -1
  91. package/dist/cjs-dev/components/input-group/daikin-input-group.d.cts +40 -13
  92. package/dist/cjs-dev/components/list-item/daikin-list-item.cjs +2 -2
  93. package/dist/cjs-dev/components/modal-header/daikin-modal-header.cjs +1 -1
  94. package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.cjs +3 -3
  95. package/dist/cjs-dev/components/select/daikin-select.cjs +6 -1
  96. package/dist/cjs-dev/components/tab/daikin-tab.cjs +1 -0
  97. package/dist/cjs-dev/components/table/daikin-table.cjs +36 -15
  98. package/dist/cjs-dev/components/table/daikin-table.d.cts +67 -34
  99. package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.cjs +31 -6
  100. package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.d.cts +7 -0
  101. package/dist/cjs-dev/components/text-field/daikin-text-field.cjs +191 -56
  102. package/dist/cjs-dev/components/text-field/daikin-text-field.d.cts +32 -3
  103. package/dist/cjs-dev/components/text-field/number-utils.cjs +64 -0
  104. package/dist/cjs-dev/components/text-field/number-utils.d.cts +26 -0
  105. package/dist/cjs-dev/components/text-masked-field/daikin-text-masked-field.cjs +312 -0
  106. package/dist/cjs-dev/components/text-masked-field/daikin-text-masked-field.d.cts +136 -0
  107. package/dist/cjs-dev/components/text-masked-field/index.cjs +7 -0
  108. package/dist/cjs-dev/components/text-masked-field/index.d.cts +1 -0
  109. package/dist/cjs-dev/components/time-picker/daikin-time-picker.cjs +589 -0
  110. package/dist/cjs-dev/components/time-picker/daikin-time-picker.d.cts +165 -0
  111. package/dist/cjs-dev/components/time-picker/index.cjs +17 -0
  112. package/dist/cjs-dev/components/time-picker/index.d.cts +1 -0
  113. package/dist/cjs-dev/components/toast-notification-manager/daikin-toast-notification-manager.d.cts +1 -1
  114. package/dist/cjs-dev/components/tooltip/daikin-tooltip.cjs +12 -2
  115. package/dist/cjs-dev/components/tooltip/daikin-tooltip.d.cts +8 -1
  116. package/dist/cjs-dev/controllers/floating-ui-auto-update.cjs +22 -4
  117. package/dist/cjs-dev/controllers/floating-ui-auto-update.d.cts +12 -0
  118. package/dist/cjs-dev/icon-registry.cjs +170 -0
  119. package/dist/cjs-dev/icon-registry.d.cts +120 -0
  120. package/dist/cjs-dev/index.cjs +39 -0
  121. package/dist/cjs-dev/index.d.cts +1 -0
  122. package/dist/cjs-dev/tailwind.css.cjs +1 -1
  123. package/dist/cjs-dev/utils/notification-common.d.cts +2 -2
  124. package/dist/es/base/dds-element.js +1 -1
  125. package/dist/es/components/accordion-item/daikin-accordion-item.js +1 -0
  126. package/dist/es/components/avatar/daikin-avatar.js +1 -0
  127. package/dist/es/components/calendar/daikin-calendar.js +2 -0
  128. package/dist/es/components/card-header/daikin-card-header.js +1 -1
  129. package/dist/es/components/carousel/daikin-carousel.js +7 -3
  130. package/dist/es/components/carousel-item/daikin-carousel-item.js +2 -2
  131. package/dist/es/components/chip/daikin-chip.d.ts +36 -0
  132. package/dist/es/components/chip/daikin-chip.js +107 -0
  133. package/dist/es/components/chip/index.d.ts +1 -0
  134. package/dist/es/components/chip/index.js +4 -0
  135. package/dist/es/components/combobox/daikin-combobox.d.ts +134 -0
  136. package/dist/es/components/combobox/daikin-combobox.js +605 -0
  137. package/dist/es/components/combobox/index.d.ts +1 -0
  138. package/dist/es/components/combobox/index.js +5 -0
  139. package/dist/es/components/date-picker/daikin-date-picker.d.ts +2 -1
  140. package/dist/es/components/date-picker/daikin-date-picker.js +32 -17
  141. package/dist/es/components/dropdown/daikin-dropdown.d.ts +4 -3
  142. package/dist/es/components/dropdown/daikin-dropdown.js +52 -37
  143. package/dist/es/components/icon/daikin-icon.d.ts +129 -9
  144. package/dist/es/components/icon/daikin-icon.js +118 -13
  145. package/dist/es/components/icon/icons.json.d.ts +0 -12
  146. package/dist/es/components/icon/icons.json.js +5 -1
  147. package/dist/es/components/icon-button/daikin-icon-button.d.ts +8 -0
  148. package/dist/es/components/icon-button/daikin-icon-button.js +12 -2
  149. package/dist/es/components/index.d.ts +5 -0
  150. package/dist/es/components/index.js +22 -1
  151. package/dist/es/components/input-group/daikin-input-group.d.ts +40 -13
  152. package/dist/es/components/input-group/daikin-input-group.js +1 -1
  153. package/dist/es/components/list-item/daikin-list-item.js +2 -2
  154. package/dist/es/components/modal-header/daikin-modal-header.js +1 -1
  155. package/dist/es/components/progress-bar/daikin-progress-bar.js +3 -3
  156. package/dist/es/components/select/daikin-select.js +6 -1
  157. package/dist/es/components/tab/daikin-tab.js +1 -0
  158. package/dist/es/components/table/daikin-table.d.ts +67 -34
  159. package/dist/es/components/table/daikin-table.js +33 -12
  160. package/dist/es/components/table-header-cell/daikin-table-header-cell.d.ts +7 -0
  161. package/dist/es/components/table-header-cell/daikin-table-header-cell.js +31 -6
  162. package/dist/es/components/text-field/daikin-text-field.d.ts +32 -3
  163. package/dist/es/components/text-field/daikin-text-field.js +191 -56
  164. package/dist/es/components/text-field/number-utils.d.ts +26 -0
  165. package/dist/es/components/text-field/number-utils.js +61 -0
  166. package/dist/es/components/text-masked-field/daikin-text-masked-field.d.ts +136 -0
  167. package/dist/es/components/text-masked-field/daikin-text-masked-field.js +313 -0
  168. package/dist/es/components/text-masked-field/index.d.ts +1 -0
  169. package/dist/es/components/text-masked-field/index.js +4 -0
  170. package/dist/es/components/time-picker/daikin-time-picker.d.ts +165 -0
  171. package/dist/es/components/time-picker/daikin-time-picker.js +578 -0
  172. package/dist/es/components/time-picker/index.d.ts +1 -0
  173. package/dist/es/components/time-picker/index.js +14 -0
  174. package/dist/es/components/toast-notification-manager/daikin-toast-notification-manager.d.ts +1 -1
  175. package/dist/es/components/tooltip/daikin-tooltip.d.ts +8 -1
  176. package/dist/es/components/tooltip/daikin-tooltip.js +12 -2
  177. package/dist/es/controllers/floating-ui-auto-update.d.ts +12 -0
  178. package/dist/es/controllers/floating-ui-auto-update.js +22 -4
  179. package/dist/es/icon-registry.d.ts +120 -0
  180. package/dist/es/icon-registry.js +170 -0
  181. package/dist/es/index.d.ts +1 -0
  182. package/dist/es/index.js +25 -1
  183. package/dist/es/tailwind.css.js +1 -1
  184. package/dist/es/utils/notification-common.d.ts +2 -2
  185. package/dist/es-dev/base/dds-element.js +1 -1
  186. package/dist/es-dev/components/accordion-item/daikin-accordion-item.js +1 -0
  187. package/dist/es-dev/components/avatar/daikin-avatar.js +1 -0
  188. package/dist/es-dev/components/calendar/daikin-calendar.js +2 -0
  189. package/dist/es-dev/components/card-header/daikin-card-header.js +1 -1
  190. package/dist/es-dev/components/carousel/daikin-carousel.js +7 -3
  191. package/dist/es-dev/components/carousel-item/daikin-carousel-item.js +2 -2
  192. package/dist/es-dev/components/chip/daikin-chip.d.ts +36 -0
  193. package/dist/es-dev/components/chip/daikin-chip.js +107 -0
  194. package/dist/es-dev/components/chip/index.d.ts +1 -0
  195. package/dist/es-dev/components/chip/index.js +4 -0
  196. package/dist/es-dev/components/combobox/daikin-combobox.d.ts +134 -0
  197. package/dist/es-dev/components/combobox/daikin-combobox.js +605 -0
  198. package/dist/es-dev/components/combobox/index.d.ts +1 -0
  199. package/dist/es-dev/components/combobox/index.js +5 -0
  200. package/dist/es-dev/components/date-picker/daikin-date-picker.d.ts +2 -1
  201. package/dist/es-dev/components/date-picker/daikin-date-picker.js +32 -17
  202. package/dist/es-dev/components/dropdown/daikin-dropdown.d.ts +4 -3
  203. package/dist/es-dev/components/dropdown/daikin-dropdown.js +52 -37
  204. package/dist/es-dev/components/icon/daikin-icon.d.ts +129 -9
  205. package/dist/es-dev/components/icon/daikin-icon.js +142 -17
  206. package/dist/es-dev/components/icon/icons.json.d.ts +0 -12
  207. package/dist/es-dev/components/icon/icons.json.js +5 -1
  208. package/dist/es-dev/components/icon-button/daikin-icon-button.d.ts +8 -0
  209. package/dist/es-dev/components/icon-button/daikin-icon-button.js +12 -2
  210. package/dist/es-dev/components/index.d.ts +5 -0
  211. package/dist/es-dev/components/index.js +22 -1
  212. package/dist/es-dev/components/input-group/daikin-input-group.d.ts +40 -13
  213. package/dist/es-dev/components/input-group/daikin-input-group.js +1 -1
  214. package/dist/es-dev/components/list-item/daikin-list-item.js +2 -2
  215. package/dist/es-dev/components/modal-header/daikin-modal-header.js +1 -1
  216. package/dist/es-dev/components/progress-bar/daikin-progress-bar.js +3 -3
  217. package/dist/es-dev/components/select/daikin-select.js +6 -1
  218. package/dist/es-dev/components/tab/daikin-tab.js +1 -0
  219. package/dist/es-dev/components/table/daikin-table.d.ts +67 -34
  220. package/dist/es-dev/components/table/daikin-table.js +36 -15
  221. package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.d.ts +7 -0
  222. package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.js +31 -6
  223. package/dist/es-dev/components/text-field/daikin-text-field.d.ts +32 -3
  224. package/dist/es-dev/components/text-field/daikin-text-field.js +191 -56
  225. package/dist/es-dev/components/text-field/number-utils.d.ts +26 -0
  226. package/dist/es-dev/components/text-field/number-utils.js +64 -0
  227. package/dist/es-dev/components/text-masked-field/daikin-text-masked-field.d.ts +136 -0
  228. package/dist/es-dev/components/text-masked-field/daikin-text-masked-field.js +313 -0
  229. package/dist/es-dev/components/text-masked-field/index.d.ts +1 -0
  230. package/dist/es-dev/components/text-masked-field/index.js +4 -0
  231. package/dist/es-dev/components/time-picker/daikin-time-picker.d.ts +165 -0
  232. package/dist/es-dev/components/time-picker/daikin-time-picker.js +590 -0
  233. package/dist/es-dev/components/time-picker/index.d.ts +1 -0
  234. package/dist/es-dev/components/time-picker/index.js +14 -0
  235. package/dist/es-dev/components/toast-notification-manager/daikin-toast-notification-manager.d.ts +1 -1
  236. package/dist/es-dev/components/tooltip/daikin-tooltip.d.ts +8 -1
  237. package/dist/es-dev/components/tooltip/daikin-tooltip.js +12 -2
  238. package/dist/es-dev/controllers/floating-ui-auto-update.d.ts +12 -0
  239. package/dist/es-dev/controllers/floating-ui-auto-update.js +22 -4
  240. package/dist/es-dev/icon-registry.d.ts +120 -0
  241. package/dist/es-dev/icon-registry.js +170 -0
  242. package/dist/es-dev/index.d.ts +1 -0
  243. package/dist/es-dev/index.js +25 -1
  244. package/dist/es-dev/tailwind.css.js +1 -1
  245. package/dist/es-dev/utils/notification-common.d.ts +2 -2
  246. package/icons/number-minus.svg +5 -0
  247. package/icons/number-plus.svg +5 -0
  248. package/package.json +14 -4
  249. package/icons/dropdown-chevron-down.svg +0 -3
@@ -3,11 +3,13 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const classVarianceAuthority = require("class-variance-authority");
4
4
  const lit = require("lit");
5
5
  const decorators_js = require("lit/decorators.js");
6
+ const unsafeHtml_js = require("lit/directives/unsafe-html.js");
6
7
  const ddsElement = require("../../base/dds-element.cjs");
7
8
  const decorators = require("../../base/decorators.cjs");
8
9
  require("../../base/define.cjs");
10
+ const iconRegistry = require("../../icon-registry.cjs");
9
11
  const tailwind = require("../../tailwind.css.cjs");
10
- const icons = require("./icons.json.cjs");
12
+ const icons$1 = require("./icons.json.cjs");
11
13
  var __defProp = Object.defineProperty;
12
14
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
13
15
  var __decorateClass = (decorators2, target, key, kind) => {
@@ -18,47 +20,164 @@ var __decorateClass = (decorators2, target, key, kind) => {
18
20
  if (kind && result) __defProp(target, key, result);
19
21
  return result;
20
22
  };
21
- const iconList = Object.keys(icons.icons);
22
- const iconClassMap = Object.fromEntries(
23
- Object.entries(icons.icons).map(([name, object]) => [name, object.class])
23
+ const { icons } = icons$1.default;
24
+ const iconList = Object.keys(icons).filter(
25
+ (key) => key !== "logo-positive" && key !== "logo-negative"
24
26
  );
25
- const cvaIcon = classVarianceAuthority.cva(["block"], {
27
+ function svgToDataUrl(svg) {
28
+ const encoded = encodeURIComponent(svg).replaceAll("'", "%27");
29
+ return `url("data:image/svg+xml,${encoded}")`;
30
+ }
31
+ const cvaIcon = classVarianceAuthority.cva(["inline-flex size-full"], {
26
32
  variants: {
27
- icon: iconClassMap,
28
33
  color: {
29
34
  black: ["text-ddt-color-common-background-overlay"],
30
35
  white: ["text-ddt-color-common-text-inverse"],
31
36
  default: ["text-[--default-color]"],
32
37
  current: []
33
38
  // uses `currentColor`
39
+ },
40
+ mode: {
41
+ inline: [],
42
+ mask: [
43
+ "bg-current",
44
+ "[mask-size:100%_100%]",
45
+ "[-webkit-mask-size:100%_100%]",
46
+ "[mask-repeat:no-repeat]",
47
+ "[-webkit-mask-repeat:no-repeat]",
48
+ "[mask-image:var(--svg)]",
49
+ "[-webkit-mask-image:var(--svg)]"
50
+ ],
51
+ background: [
52
+ "bg-no-repeat",
53
+ "bg-[length:100%_100%]",
54
+ "bg-[image:var(--svg)]"
55
+ ],
56
+ static: []
57
+ // for static icons from icons.json
34
58
  }
35
59
  }
36
60
  });
37
61
  exports.DaikinIcon = class DaikinIcon extends ddsElement.DDSElement {
38
62
  constructor() {
39
63
  super(...arguments);
64
+ this.registry = iconRegistry.iconRegistry;
40
65
  this.icon = null;
41
66
  this.color = "default";
42
67
  this.size = "current";
68
+ this._iconData = null;
69
+ }
70
+ connectedCallback() {
71
+ super.connectedCallback();
72
+ this.loadIcon().catch((error) => {
73
+ {
74
+ console.warn(
75
+ `Error loading icon${this.icon ? ` "${this.icon}"` : ""} in <${this.tagName.toLowerCase()}>:`,
76
+ error
77
+ );
78
+ }
79
+ });
80
+ }
81
+ updated(changedProperties) {
82
+ if (changedProperties.has("icon")) {
83
+ this.loadIcon().catch((error) => {
84
+ {
85
+ console.warn(
86
+ `Error loading icon${this.icon ? ` "${this.icon}"` : ""} in <${this.tagName.toLowerCase()}>:`,
87
+ error
88
+ );
89
+ }
90
+ });
91
+ }
92
+ }
93
+ async loadIcon() {
94
+ if (!this.icon) {
95
+ this._iconData = null;
96
+ return;
97
+ }
98
+ const staticIcon = icons[this.icon];
99
+ if (staticIcon) {
100
+ this._iconData = {
101
+ mode: "static",
102
+ defaultColor: staticIcon.color,
103
+ class: staticIcon.class
104
+ };
105
+ return;
106
+ }
107
+ try {
108
+ const iconData = await this.registry.getIcon(this.icon);
109
+ if (true) {
110
+ if (!iconData) {
111
+ console.warn(`Icon "${this.icon}" not found in registry`);
112
+ }
113
+ }
114
+ this._iconData = iconData;
115
+ } catch (error) {
116
+ {
117
+ console.warn(`Failed to load custom icon "${this.icon}":`, error);
118
+ }
119
+ this._iconData = null;
120
+ }
43
121
  }
44
122
  render() {
45
- var _a;
46
- const defaultColor = (_a = icons.icons[this.icon ?? ""]) == null ? void 0 : _a.color;
47
123
  {
48
124
  if (!this.icon) {
49
- console.warn("icon property is not specified");
50
- } else if (!(this.icon in icons.icons)) {
51
- console.warn(`There is no icon named "${this.icon}".`);
52
- } else if (this.color === "default" && !defaultColor) {
125
+ console.warn("icon property is not specified for daikin-icon");
126
+ }
127
+ }
128
+ if (!this.icon) {
129
+ return lit.html`<span
130
+ class=${cvaIcon({
131
+ color: this.color,
132
+ mode: "static"
133
+ })}
134
+ title="Unknown icon"
135
+ ></span>`;
136
+ }
137
+ if (!this._iconData) {
138
+ return lit.html`<span
139
+ class=${cvaIcon({
140
+ color: this.color,
141
+ mode: "inline"
142
+ })}
143
+ title=${this.icon || "Unknown icon"}
144
+ ></span>`;
145
+ }
146
+ const defaultColor = this._iconData.defaultColor;
147
+ {
148
+ if (this.color === "default" && !defaultColor) {
53
149
  console.warn(`The icon "${this.icon}" does not have a default color.`);
54
150
  }
55
151
  }
152
+ if (this._iconData.mode === "static") {
153
+ return lit.html`<span
154
+ class="${cvaIcon({
155
+ color: this.color,
156
+ mode: "static"
157
+ })} ${this._iconData.class}"
158
+ style=${`--default-color:${defaultColor ?? "#000000"}`}
159
+ role="presentation"
160
+ ></span>`;
161
+ }
162
+ const mode = this._iconData.mode ?? "mask";
163
+ if (mode === "inline") {
164
+ return lit.html`<span
165
+ class=${cvaIcon({
166
+ color: this.color,
167
+ mode
168
+ })}
169
+ style=${`--default-color:${defaultColor ?? "#000000"}`}
170
+ role="presentation"
171
+ >${unsafeHtml_js.unsafeHTML(this._iconData.svg)}</span
172
+ >`;
173
+ }
174
+ const svgDataUrl = svgToDataUrl(this._iconData.svg);
56
175
  return lit.html`<span
57
176
  class=${cvaIcon({
58
- icon: this.icon,
59
- color: this.color
177
+ color: this.color,
178
+ mode
60
179
  })}
61
- style=${`--default-color:${defaultColor ?? "#000000"}`}
180
+ style=${`--default-color:${defaultColor ?? "#000000"};--svg:${svgDataUrl}`}
62
181
  role="presentation"
63
182
  ></span>`;
64
183
  }
@@ -67,7 +186,7 @@ exports.DaikinIcon.styles = lit.css`
67
186
  ${lit.unsafeCSS(tailwind.default)}
68
187
 
69
188
  :host {
70
- display: inline-block;
189
+ display: inline-flex;
71
190
  width: var(--ddc-icon-size, 100%);
72
191
  height: var(--ddc-icon-size, 100%);
73
192
  }
@@ -88,6 +207,9 @@ exports.DaikinIcon.styles = lit.css`
88
207
  --ddc-icon-size: 24px;
89
208
  }
90
209
  `;
210
+ __decorateClass([
211
+ decorators_js.property({ attribute: false })
212
+ ], exports.DaikinIcon.prototype, "registry", 2);
91
213
  __decorateClass([
92
214
  decorators_js.property({ type: String, reflect: true })
93
215
  ], exports.DaikinIcon.prototype, "icon", 2);
@@ -97,6 +219,9 @@ __decorateClass([
97
219
  __decorateClass([
98
220
  decorators_js.property({ type: String, reflect: true })
99
221
  ], exports.DaikinIcon.prototype, "size", 2);
222
+ __decorateClass([
223
+ decorators_js.state()
224
+ ], exports.DaikinIcon.prototype, "_iconData", 2);
100
225
  exports.DaikinIcon = __decorateClass([
101
226
  decorators.ddsElement("daikin-icon")
102
227
  ], exports.DaikinIcon);
@@ -1,23 +1,103 @@
1
1
  import { DDSElement } from "../../base/index.cjs";
2
+ import { IconRegistry } from "../../icon-registry.cjs";
2
3
  import { MergeVariantProps } from "../../type-utils.cjs";
3
- import { icons } from "./icons.json.cjs";
4
+ declare const icons: {
5
+ "logo-positive": {
6
+ class: string;
7
+ color: null;
8
+ };
9
+ "logo-negative": {
10
+ class: string;
11
+ color: null;
12
+ };
13
+ alarm: {
14
+ class: string;
15
+ color: null;
16
+ };
17
+ close: {
18
+ class: string;
19
+ color: string;
20
+ };
21
+ information: {
22
+ class: string;
23
+ color: null;
24
+ };
25
+ error: {
26
+ class: string;
27
+ color: null;
28
+ };
29
+ success: {
30
+ class: string;
31
+ color: null;
32
+ };
33
+ warning: {
34
+ class: string;
35
+ color: null;
36
+ };
37
+ "pagination-chevron-left": {
38
+ class: string;
39
+ color: string;
40
+ };
41
+ "pagination-chevron-right": {
42
+ class: string;
43
+ color: string;
44
+ };
45
+ profile: {
46
+ class: string;
47
+ color: null;
48
+ };
49
+ "chevron-up": {
50
+ class: string;
51
+ color: null;
52
+ };
53
+ "chevron-down": {
54
+ class: string;
55
+ color: null;
56
+ };
57
+ "chevron-left": {
58
+ class: string;
59
+ color: null;
60
+ };
61
+ "chevron-right": {
62
+ class: string;
63
+ color: null;
64
+ };
65
+ sort: {
66
+ class: string;
67
+ color: null;
68
+ };
69
+ };
4
70
  export declare const iconList: string[];
5
71
  export type IconType = keyof typeof icons;
6
72
  declare const cvaIcon: (props?: ({
7
- icon?: string | number | null | undefined;
8
73
  color?: "current" | "default" | "black" | "white" | null | undefined;
74
+ mode?: "mask" | "background" | "inline" | "static" | null | undefined;
9
75
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
10
76
  export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
11
77
  /**
12
78
  * The icon component is a versatile UI element used to display small graphical symbols or images that represent actions, objects, or concepts within an application.
13
- * The icon set is provided by DDS.
79
+ * The icon set is provided by DDS, and it also supports custom icons via the icon registry.
14
80
  *
15
- * To use an arbitrary color, specify `"current"` for the `color` property and set the `color` CSS property to the color you want to use.
81
+ * For static DDS icons, the component uses the predefined icon set.
82
+ * For custom icons, it can dynamically load icons from various sources using the icon registry.
16
83
  *
17
- * If you try to use an icon that does not exist, a blank space will be displayed.
18
- * In the development build, warnings will be displayed in the console, so please check there if you encounter any unexpected behavior.
84
+ * This component supports multiple rendering modes for enhanced security when using custom icons:
19
85
  *
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`.
86
+ * - **mask** (default for custom icons): Uses CSS mask-image for secure rendering with color customization
87
+ * - **background**: Uses CSS background-image for secure rendering without color customization
88
+ * - **inline**: Traditional SVG rendering using innerHTML (use with caution)
89
+ * - **static** (for DDS icons): Uses predefined CSS classes from the DDS icon set
90
+ *
91
+ * **Security Note**: When using custom icons, especially with `inline` mode, ensure that the SVG content comes from trusted sources only.
92
+ * Untrusted input may lead to XSS vulnerabilities. Consider using `mask` or `background` modes for better security.
93
+ *
94
+ * To use a custom color, set the `color` property to `"current"` and apply the desired color using the CSS `color` property.
95
+ * This works out-of-the-box for mask and static modes, and can be achieved for inline mode with additional effort. The background mode does not support custom colors.
96
+ *
97
+ * If an icon cannot be loaded, a blank space will be displayed.
98
+ * In development builds, warnings will be shown in the console for debugging.
99
+ *
100
+ * @cssprop [--ddc-icon-size] - Icon size. If a value other than "current" is set for the `size` property, it will be automatically overwritten. This may also be set by a parent component such as `daikin-icon-button`.
21
101
  *
22
102
  * @example
23
103
  *
@@ -26,15 +106,51 @@ export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
26
106
  * ```
27
107
  *
28
108
  * ```html
109
+ * <!-- Using a DDS static icon -->
29
110
  * <daikin-icon icon="information" color="black" size="m"></daikin-icon>
111
+ *
112
+ * <!-- Using a custom icon -->
113
+ * <daikin-icon icon="my-custom-icon" color="black" size="m"></daikin-icon>
114
+ *
115
+ * <script>
116
+ * import { iconRegistry } from "@daikin-oss/design-system-web-components/icon-registry.js";
117
+ *
118
+ * // Register with mask mode for secure rendering
119
+ * iconRegistry.register({
120
+ * name: "my-custom-icon",
121
+ * svg: {
122
+ * svg: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">...</svg>',
123
+ * mode: "mask",
124
+ * defaultColor: "#0066cc"
125
+ * },
126
+ * });
127
+ *
128
+ * // Register dynamic custom icons
129
+ * iconRegistry.register({
130
+ * match: /^custom-/,
131
+ * async fetch: (name) => {
132
+ * const response = await fetch(`/path/to/custom/icons/${name}.svg`);
133
+ * if (!response.ok) {
134
+ * throw new Error(`Failed to load custom icon "${name}"`);
135
+ * }
136
+ * return response.text();
137
+ * },
138
+ * });
139
+ * </script>
30
140
  * ```
31
141
  */
32
142
  export declare class DaikinIcon extends DDSElement {
33
143
  static readonly styles: import('lit').CSSResult;
34
144
  /**
35
- * Specify the name of the icon
145
+ * Specify icon registry instance.
146
+ * Default is the global icon registry.
147
+ */
148
+ registry: IconRegistry;
149
+ /**
150
+ * Specify the name of the icon.
151
+ * Can be a static DDS icon name or a custom icon name registered in the icon registry.
36
152
  */
37
- icon: IconType | null;
153
+ icon: string | null;
38
154
  /**
39
155
  * Specify icon color
40
156
  */
@@ -44,6 +160,10 @@ export declare class DaikinIcon extends DDSElement {
44
160
  * 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
161
  */
46
162
  size: "s" | "m" | "l" | "xl" | "current";
163
+ private _iconData;
164
+ connectedCallback(): void;
165
+ updated(changedProperties: Map<string, unknown>): void;
166
+ private loadIcon;
47
167
  render(): import('lit-html').TemplateResult<1>;
48
168
  }
49
169
  declare global {
@@ -1,4 +1,8 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const icons = { "logo-positive": { "class": "i-daikin-logo-positive", "color": null }, "logo-negative": { "class": "i-daikin-logo-negative", "color": null }, "alarm": { "class": "i-daikin-alarm", "color": null }, "close": { "class": "i-daikin-close", "color": "#a0a0a0" }, "information": { "class": "i-daikin-information", "color": null }, "error": { "class": "i-daikin-error", "color": null }, "success": { "class": "i-daikin-success", "color": null }, "warning": { "class": "i-daikin-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" }, "profile": { "class": "i-daikin-profile", "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 }, "negative": { "class": "i-daikin-error", "color": null }, "positive": { "class": "i-daikin-success", "color": null }, "cross": { "class": "i-daikin-close", "color": null } };
2
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
+ const icons = { "logo-positive": { "class": "i-daikin-logo-positive", "color": null }, "logo-negative": { "class": "i-daikin-logo-negative", "color": null }, "alarm": { "class": "i-daikin-alarm", "color": null }, "close": { "class": "i-daikin-close", "color": "#a0a0a0" }, "information": { "class": "i-daikin-information", "color": null }, "error": { "class": "i-daikin-error", "color": null }, "success": { "class": "i-daikin-success", "color": null }, "warning": { "class": "i-daikin-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" }, "profile": { "class": "i-daikin-profile", "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 } };
4
+ const iconsJson = {
5
+ icons
6
+ };
7
+ exports.default = iconsJson;
4
8
  exports.icons = icons;
@@ -63,18 +63,6 @@ declare const _default: {
63
63
  "sort": {
64
64
  "class": "i-daikin-sort",
65
65
  "color": null
66
- },
67
- "negative": {
68
- "class": "i-daikin-error",
69
- "color": null
70
- },
71
- "positive": {
72
- "class": "i-daikin-success",
73
- "color": null
74
- },
75
- "cross": {
76
- "class": "i-daikin-close",
77
- "color": null
78
66
  }
79
67
  }
80
68
  }
@@ -89,6 +89,7 @@ exports.DaikinIconButton = class DaikinIconButton extends ddsFormElement.DDSForm
89
89
  this.buttonRole = null;
90
90
  this.buttonAriaHaspopup = null;
91
91
  this.buttonAriaExpanded = null;
92
+ this.size = "s";
92
93
  this.addEventListener("click", (event) => {
93
94
  if (this.disabled) {
94
95
  event.stopImmediatePropagation();
@@ -146,8 +147,14 @@ exports.DaikinIconButton.styles = lit.css`
146
147
 
147
148
  :host {
148
149
  display: inline-block;
149
- width: 2rem;
150
- height: 2rem;
150
+ width: var(--ddc-icon-button-size, 2rem);
151
+ height: var(--ddc-icon-button-size, 2rem);
152
+ }
153
+ :host([size="s"]) {
154
+ --ddc-icon-button-size: 2rem; /* 32px */
155
+ }
156
+ :host([size="m"]) {
157
+ --ddc-icon-button-size: 3rem; /* 48px */
151
158
  }
152
159
  `;
153
160
  __decorateClass([
@@ -177,6 +184,9 @@ __decorateClass([
177
184
  __decorateClass([
178
185
  decorators_js.property({ type: Boolean, reflect: true, attribute: "button-aria-expanded" })
179
186
  ], exports.DaikinIconButton.prototype, "buttonAriaExpanded", 2);
187
+ __decorateClass([
188
+ decorators_js.property({ type: String, reflect: true })
189
+ ], exports.DaikinIconButton.prototype, "size", 2);
180
190
  __decorateClass([
181
191
  decorators_js.query("button")
182
192
  ], exports.DaikinIconButton.prototype, "_button", 2);
@@ -75,6 +75,14 @@ export declare class DaikinIconButton extends DDSFormSubmitElement {
75
75
  * When used within a daikin-menu component, this property will be controlled by daikin-menu, so you don't need to specify it explicitly.
76
76
  */
77
77
  buttonAriaExpanded: boolean | null;
78
+ /**
79
+ * Size of the button.
80
+ * - `s`: 32px * 32px
81
+ * - `m`: 48px * 48px
82
+ *
83
+ * Default is `s`.
84
+ */
85
+ size: "s" | "m";
78
86
  private _button;
79
87
  constructor();
80
88
  render(): import('lit-html').TemplateResult<1>;
@@ -14,6 +14,8 @@ const daikinCarousel = require("./carousel/daikin-carousel.cjs");
14
14
  const daikinCarouselItem = require("./carousel-item/daikin-carousel-item.cjs");
15
15
  const daikinCheckbox = require("./checkbox/daikin-checkbox.cjs");
16
16
  const daikinCheckboxGroup = require("./checkbox-group/daikin-checkbox-group.cjs");
17
+ const daikinChip = require("./chip/daikin-chip.cjs");
18
+ const daikinCombobox = require("./combobox/daikin-combobox.cjs");
17
19
  const daikinDatePicker = require("./date-picker/daikin-date-picker.cjs");
18
20
  const daikinDropdown = require("./dropdown/daikin-dropdown.cjs");
19
21
  const daikinDropdownItem = require("./dropdown-item/daikin-dropdown-item.cjs");
@@ -35,6 +37,7 @@ const daikinProgressBar = require("./progress-bar/daikin-progress-bar.cjs");
35
37
  const daikinProgressIndicator = require("./progress-indicator/daikin-progress-indicator.cjs");
36
38
  const daikinProgressIndicatorItem = require("./progress-indicator-item/daikin-progress-indicator-item.cjs");
37
39
  const daikinRadio = require("./radio/daikin-radio.cjs");
40
+ const daikinRadioGroup = require("./radio-group/daikin-radio-group.cjs");
38
41
  const daikinSelect = require("./select/daikin-select.cjs");
39
42
  const daikinSlider = require("./slider/daikin-slider.cjs");
40
43
  const daikinTab = require("./tab/daikin-tab.cjs");
@@ -45,6 +48,8 @@ const daikinTableHeaderCell = require("./table-header-cell/daikin-table-header-c
45
48
  const daikinTabs = require("./tabs/daikin-tabs.cjs");
46
49
  const daikinTextArea = require("./text-area/daikin-text-area.cjs");
47
50
  const daikinTextField = require("./text-field/daikin-text-field.cjs");
51
+ const daikinTextMaskedField = require("./text-masked-field/daikin-text-masked-field.cjs");
52
+ const daikinTimePicker = require("./time-picker/daikin-time-picker.cjs");
48
53
  const daikinToastNotification = require("./toast-notification/daikin-toast-notification.cjs");
49
54
  const daikinToastNotificationManager = require("./toast-notification-manager/daikin-toast-notification-manager.cjs");
50
55
  const daikinToggle = require("./toggle/daikin-toggle.cjs");
@@ -108,6 +113,15 @@ Object.defineProperty(exports, "DaikinCheckboxGroup", {
108
113
  enumerable: true,
109
114
  get: () => daikinCheckboxGroup.DaikinCheckboxGroup
110
115
  });
116
+ Object.defineProperty(exports, "DaikinChip", {
117
+ enumerable: true,
118
+ get: () => daikinChip.DaikinChip
119
+ });
120
+ Object.defineProperty(exports, "DaikinCombobox", {
121
+ enumerable: true,
122
+ get: () => daikinCombobox.DaikinCombobox
123
+ });
124
+ exports.defaultFilterFn = daikinCombobox.defaultFilterFn;
111
125
  Object.defineProperty(exports, "DaikinDatePicker", {
112
126
  enumerable: true,
113
127
  get: () => daikinDatePicker.DaikinDatePicker
@@ -193,6 +207,10 @@ Object.defineProperty(exports, "DaikinRadio", {
193
207
  enumerable: true,
194
208
  get: () => daikinRadio.DaikinRadio
195
209
  });
210
+ Object.defineProperty(exports, "DaikinRadioGroup", {
211
+ enumerable: true,
212
+ get: () => daikinRadioGroup.DaikinRadioGroup
213
+ });
196
214
  Object.defineProperty(exports, "DaikinSelect", {
197
215
  enumerable: true,
198
216
  get: () => daikinSelect.DaikinSelect
@@ -233,6 +251,24 @@ Object.defineProperty(exports, "DaikinTextField", {
233
251
  enumerable: true,
234
252
  get: () => daikinTextField.DaikinTextField
235
253
  });
254
+ Object.defineProperty(exports, "DaikinTextMaskedField", {
255
+ enumerable: true,
256
+ get: () => daikinTextMaskedField.DaikinTextMaskedField
257
+ });
258
+ Object.defineProperty(exports, "DaikinTimePicker", {
259
+ enumerable: true,
260
+ get: () => daikinTimePicker.DaikinTimePicker
261
+ });
262
+ exports.calcDigitInput = daikinTimePicker.calcDigitInput;
263
+ exports.formatPartsForUI = daikinTimePicker.formatPartsForUI;
264
+ exports.formatTimeForUI = daikinTimePicker.formatTimeForUI;
265
+ exports.from24HourFormat = daikinTimePicker.from24HourFormat;
266
+ exports.getTimeItemInSelection = daikinTimePicker.getTimeItemInSelection;
267
+ exports.isTimeOutOfRange = daikinTimePicker.isTimeOutOfRange;
268
+ exports.isValidValueTime = daikinTimePicker.isValidValueTime;
269
+ exports.parsePartsFromUIValue = daikinTimePicker.parsePartsFromUIValue;
270
+ exports.to24HourFormat = daikinTimePicker.to24HourFormat;
271
+ exports.tryParseTimeFromUIValue = daikinTimePicker.tryParseTimeFromUIValue;
236
272
  Object.defineProperty(exports, "DaikinToastNotification", {
237
273
  enumerable: true,
238
274
  get: () => daikinToastNotification.DaikinToastNotification
@@ -12,6 +12,8 @@ export * from "./carousel/index.cjs";
12
12
  export * from "./carousel-item/index.cjs";
13
13
  export * from "./checkbox/index.cjs";
14
14
  export * from "./checkbox-group/index.cjs";
15
+ export * from "./chip/index.cjs";
16
+ export * from "./combobox/index.cjs";
15
17
  export * from "./date-picker/index.cjs";
16
18
  export * from "./dropdown/index.cjs";
17
19
  export * from "./dropdown-item/index.cjs";
@@ -33,6 +35,7 @@ export * from "./progress-bar/index.cjs";
33
35
  export * from "./progress-indicator/index.cjs";
34
36
  export * from "./progress-indicator-item/index.cjs";
35
37
  export * from "./radio/index.cjs";
38
+ export * from "./radio-group/index.cjs";
36
39
  export * from "./select/index.cjs";
37
40
  export * from "./slider/index.cjs";
38
41
  export * from "./tab/index.cjs";
@@ -43,6 +46,8 @@ export * from "./table-header-cell/index.cjs";
43
46
  export * from "./tabs/index.cjs";
44
47
  export * from "./text-area/index.cjs";
45
48
  export * from "./text-field/index.cjs";
49
+ export * from "./text-masked-field/index.cjs";
50
+ export * from "./time-picker/index.cjs";
46
51
  export * from "./toast-notification/index.cjs";
47
52
  export * from "./toast-notification-manager/index.cjs";
48
53
  export * from "./toggle/index.cjs";
@@ -184,7 +184,7 @@ __decorateClass([
184
184
  ], exports.DaikinInputGroup.prototype, "_textareas", 2);
185
185
  __decorateClass([
186
186
  decorators_js.queryAssignedElements({
187
- selector: "daikin-date-picker,daikin-dropdown,daikin-radio-group,daikin-checkbox-group,daikin-select,daikin-text-field,daikin-text-area"
187
+ selector: "daikin-checkbox-group,daikin-combobox,daikin-date-picker,daikin-dropdown,daikin-radio-group,daikin-select,daikin-text-area,daikin-text-field,daikin-time-picker"
188
188
  })
189
189
  ], exports.DaikinInputGroup.prototype, "_controls", 2);
190
190
  __decorateClass([