mis-crystal-design-system 4.0.50 → 14.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 (902) hide show
  1. package/action-list/action-list.component.d.ts +3 -0
  2. package/action-list/action-list.module.d.ts +9 -0
  3. package/analytics/analytics.module.d.ts +4 -0
  4. package/analytics/analytics.service.d.ts +3 -0
  5. package/async-search-dropdown/async-dropdown.component.d.ts +5 -2
  6. package/async-search-dropdown/async-dropdown.module.d.ts +9 -0
  7. package/button/button.component.d.ts +3 -0
  8. package/button/button.directive.d.ts +3 -0
  9. package/button/button.module.d.ts +7 -0
  10. package/checkbox/checkbox.component.d.ts +3 -0
  11. package/checkbox/checkbox.module.d.ts +7 -0
  12. package/chip/chip.component.d.ts +3 -0
  13. package/chip/chip.module.d.ts +6 -0
  14. package/datepicker_v2/datepicker.module.d.ts +10 -0
  15. package/datepicker_v2/public_api.d.ts +1 -0
  16. package/datepicker_v2/tz-datepicker.directive.d.ts +3 -0
  17. package/datepicker_v2/tz-dp-container/tz-dp-container.component.d.ts +3 -0
  18. package/daterangepicker_v2/daterangepicker.module.d.ts +10 -0
  19. package/daterangepicker_v2/public_api.d.ts +1 -0
  20. package/daterangepicker_v2/tz-daterangepicker.directive.d.ts +3 -0
  21. package/daterangepicker_v2/tz-drp-container/tz-drp-container.component.d.ts +3 -0
  22. package/drawer/drawer-body/drawer-body.component.d.ts +3 -1
  23. package/drawer/drawer.module.d.ts +8 -0
  24. package/drawer/drawer.service.d.ts +3 -0
  25. package/dropdown/calculate-container-height.directive.d.ts +3 -0
  26. package/dropdown/dropdown.component.d.ts +3 -0
  27. package/dropdown/dropdown.module.d.ts +11 -0
  28. package/dynamic-form/dynamic-form.component.d.ts +11 -8
  29. package/dynamic-form/dynamic-form.module.d.ts +13 -0
  30. package/esm2020/action-list/action-list.component.mjs +175 -0
  31. package/esm2020/action-list/action-list.module.mjs +24 -0
  32. package/esm2020/analytics/analytics.module.mjs +18 -0
  33. package/esm2020/analytics/analytics.service.mjs +63 -0
  34. package/esm2020/async-search-dropdown/async-dropdown.component.mjs +263 -0
  35. package/esm2020/async-search-dropdown/async-dropdown.module.mjs +21 -0
  36. package/esm2020/button/button.component.mjs +52 -0
  37. package/esm2020/button/button.directive.mjs +59 -0
  38. package/esm2020/button/button.module.mjs +22 -0
  39. package/esm2020/checkbox/checkbox.component.mjs +87 -0
  40. package/esm2020/checkbox/checkbox.module.mjs +22 -0
  41. package/esm2020/chip/chip.component.mjs +36 -0
  42. package/esm2020/chip/chip.module.mjs +21 -0
  43. package/esm2020/datepicker_v2/datepicker.module.mjs +23 -0
  44. package/esm2020/datepicker_v2/mis-crystal-design-system-datepicker_v2.mjs +5 -0
  45. package/esm2020/datepicker_v2/public_api.mjs +4 -0
  46. package/esm2020/datepicker_v2/tz-datepicker.directive.mjs +162 -0
  47. package/esm2020/datepicker_v2/tz-dp-container/tz-dp-container.component.mjs +151 -0
  48. package/esm2020/daterangepicker_v2/daterangepicker.module.mjs +24 -0
  49. package/esm2020/daterangepicker_v2/mis-crystal-design-system-daterangepicker_v2.mjs +5 -0
  50. package/esm2020/daterangepicker_v2/public_api.mjs +4 -0
  51. package/esm2020/daterangepicker_v2/tz-daterangepicker.directive.mjs +133 -0
  52. package/esm2020/daterangepicker_v2/tz-drp-container/tz-drp-container.component.mjs +230 -0
  53. package/esm2020/drawer/drawer-body/drawer-body.component.mjs +43 -0
  54. package/esm2020/drawer/drawer.module.mjs +32 -0
  55. package/{esm2015/drawer/drawer.service.js → esm2020/drawer/drawer.service.mjs} +12 -15
  56. package/esm2020/drawer/mis-crystal-design-system-drawer.mjs +5 -0
  57. package/esm2020/dropdown/calculate-container-height.directive.mjs +41 -0
  58. package/esm2020/dropdown/dropdown.component.mjs +194 -0
  59. package/esm2020/dropdown/dropdown.module.mjs +26 -0
  60. package/esm2020/dropdown/mis-crystal-design-system-dropdown.mjs +5 -0
  61. package/esm2020/dynamic-form/dynamic-form.component.mjs +311 -0
  62. package/esm2020/dynamic-form/dynamic-form.module.mjs +55 -0
  63. package/esm2020/fab/fab.component.mjs +82 -0
  64. package/esm2020/fab/fab.module.mjs +21 -0
  65. package/esm2020/input/directives/input/input.directive.mjs +40 -0
  66. package/esm2020/input/mis-input.component.mjs +49 -0
  67. package/esm2020/input/mis-input.module.mjs +20 -0
  68. package/esm2020/input-stepper/input-stepper/input-stepper.component.mjs +52 -0
  69. package/esm2020/input-stepper/input-stepper.module.mjs +24 -0
  70. package/esm2020/loader/loader.component.mjs +19 -0
  71. package/esm2020/loader/loader.module.mjs +21 -0
  72. package/esm2020/menu/menu-close.directive.mjs +23 -0
  73. package/esm2020/menu/menu.directive.mjs +75 -0
  74. package/esm2020/menu/menu.module.mjs +22 -0
  75. package/esm2020/mobile-filter/mobile-filter.component.mjs +66 -0
  76. package/esm2020/mobile-filter/mobile-filter.module.mjs +20 -0
  77. package/esm2020/modal/mis-crystal-design-system-modal.mjs +5 -0
  78. package/esm2020/modal/modal.module.mjs +32 -0
  79. package/esm2020/modal/modal.service.mjs +70 -0
  80. package/esm2020/modal/module-wrapper/module-wrapper.component.mjs +40 -0
  81. package/esm2020/multi-select-dropdown/multi-select-dropdown.component.mjs +299 -0
  82. package/esm2020/multi-select-dropdown/multi-select-dropdown.module.mjs +25 -0
  83. package/esm2020/nested-multi-select-dropdown/nested-multi-select-dropdown.component.mjs +313 -0
  84. package/esm2020/nested-multi-select-dropdown/nested-multi-select-dropdown.module.mjs +25 -0
  85. package/esm2020/phone-input/phone-input.component.mjs +102 -0
  86. package/esm2020/phone-input/phone-input.module.mjs +26 -0
  87. package/esm2020/radio-button/radio-button.component.mjs +49 -0
  88. package/esm2020/radio-button/radio-button.module.mjs +22 -0
  89. package/esm2020/ske-loader/ske-loader.component.mjs +34 -0
  90. package/esm2020/ske-loader/ske-loader.module.mjs +18 -0
  91. package/esm2020/slider/slider.component.mjs +37 -0
  92. package/esm2020/slider/slider.module.mjs +29 -0
  93. package/esm2020/snackbar/snackbar/snackbar.component.mjs +22 -0
  94. package/esm2020/snackbar/snackbar.module.mjs +35 -0
  95. package/esm2020/snackbar/snackbar.service.mjs +47 -0
  96. package/esm2020/specificdatepicker/mis-crystal-design-system-specificdatepicker.mjs +5 -0
  97. package/esm2020/specificdatepicker/public_api.mjs +4 -0
  98. package/esm2020/specificdatepicker/specificdatepicker.module.mjs +26 -0
  99. package/esm2020/specificdatepicker/tz-sdp-container/tz-sdp-container.component.mjs +359 -0
  100. package/esm2020/specificdatepicker/tz-specificdatepicker.directive.mjs +194 -0
  101. package/esm2020/star-rating/star-rating.component.mjs +86 -0
  102. package/esm2020/star-rating/star-rating.module.mjs +18 -0
  103. package/esm2020/switch/switch.component.mjs +43 -0
  104. package/esm2020/switch/switch.module.mjs +22 -0
  105. package/esm2020/table/custom-table-cell.directive.mjs +42 -0
  106. package/esm2020/table/filter/filter.component.mjs +79 -0
  107. package/esm2020/table/mis-crystal-design-system-table.mjs +5 -0
  108. package/esm2020/table/public_api.mjs +6 -0
  109. package/esm2020/table/sub-table/sub-table.component.mjs +69 -0
  110. package/esm2020/table/table.component.mjs +210 -0
  111. package/esm2020/table/table.module.mjs +26 -0
  112. package/esm2020/timepicker/mis-crystal-design-system-timepicker.mjs +5 -0
  113. package/esm2020/timepicker/timepicker.component.mjs +272 -0
  114. package/esm2020/timepicker/timepicker.directive.mjs +65 -0
  115. package/esm2020/timepicker/timepicker.module.mjs +25 -0
  116. package/esm2020/timerangepicker/timerangepicker.component.mjs +205 -0
  117. package/esm2020/timerangepicker/timerangepicker.module.mjs +23 -0
  118. package/esm2020/toast/toast.component.mjs +33 -0
  119. package/esm2020/toast/toast.data.service.mjs +30 -0
  120. package/esm2020/toast/toast.module.mjs +32 -0
  121. package/esm2020/toast/toast.service.mjs +91 -0
  122. package/esm2020/tooltip/tooltip-container/tooltip.component.mjs +34 -0
  123. package/esm2020/tooltip/tooltip.directive.mjs +135 -0
  124. package/esm2020/tooltip/tooltip.module.mjs +23 -0
  125. package/esm2020/virtual-scroll/virtual-scroll.component.mjs +116 -0
  126. package/esm2020/virtual-scroll/virtual-scroll.module.mjs +33 -0
  127. package/{esm2015/widgets/classes/base-widget.js → esm2020/widgets/classes/base-widget.mjs} +2 -2
  128. package/esm2020/widgets/classes/widget-group.mjs +32 -0
  129. package/esm2020/widgets/services/widget.service.mjs +18 -0
  130. package/esm2020/widgets/widgets.module.mjs +17 -0
  131. package/fab/fab.component.d.ts +3 -0
  132. package/fab/fab.module.d.ts +6 -0
  133. package/fesm2015/mis-crystal-design-system-action-list.mjs +200 -0
  134. package/fesm2015/mis-crystal-design-system-action-list.mjs.map +1 -0
  135. package/fesm2015/{mis-crystal-design-system-analytics.js → mis-crystal-design-system-analytics.mjs} +22 -14
  136. package/fesm2015/mis-crystal-design-system-analytics.mjs.map +1 -0
  137. package/fesm2015/mis-crystal-design-system-async-search-dropdown.mjs +294 -0
  138. package/fesm2015/mis-crystal-design-system-async-search-dropdown.mjs.map +1 -0
  139. package/fesm2015/mis-crystal-design-system-button.mjs +134 -0
  140. package/fesm2015/mis-crystal-design-system-button.mjs.map +1 -0
  141. package/fesm2015/mis-crystal-design-system-checkbox.mjs +112 -0
  142. package/fesm2015/mis-crystal-design-system-checkbox.mjs.map +1 -0
  143. package/fesm2015/mis-crystal-design-system-chip.mjs +61 -0
  144. package/fesm2015/mis-crystal-design-system-chip.mjs.map +1 -0
  145. package/fesm2015/mis-crystal-design-system-datepicker_v2.mjs +381 -0
  146. package/fesm2015/mis-crystal-design-system-datepicker_v2.mjs.map +1 -0
  147. package/fesm2015/mis-crystal-design-system-daterangepicker_v2.mjs +433 -0
  148. package/fesm2015/mis-crystal-design-system-daterangepicker_v2.mjs.map +1 -0
  149. package/fesm2015/mis-crystal-design-system-drawer.mjs +157 -0
  150. package/fesm2015/mis-crystal-design-system-drawer.mjs.map +1 -0
  151. package/fesm2015/mis-crystal-design-system-dropdown.mjs +261 -0
  152. package/fesm2015/mis-crystal-design-system-dropdown.mjs.map +1 -0
  153. package/fesm2015/mis-crystal-design-system-dynamic-form.mjs +375 -0
  154. package/fesm2015/mis-crystal-design-system-dynamic-form.mjs.map +1 -0
  155. package/fesm2015/mis-crystal-design-system-fab.mjs +102 -0
  156. package/fesm2015/mis-crystal-design-system-fab.mjs.map +1 -0
  157. package/fesm2015/mis-crystal-design-system-input-stepper.mjs +80 -0
  158. package/fesm2015/mis-crystal-design-system-input-stepper.mjs.map +1 -0
  159. package/fesm2015/mis-crystal-design-system-input.mjs +115 -0
  160. package/fesm2015/mis-crystal-design-system-input.mjs.map +1 -0
  161. package/fesm2015/mis-crystal-design-system-loader.mjs +44 -0
  162. package/fesm2015/mis-crystal-design-system-loader.mjs.map +1 -0
  163. package/fesm2015/mis-crystal-design-system-menu.mjs +120 -0
  164. package/fesm2015/mis-crystal-design-system-menu.mjs.map +1 -0
  165. package/fesm2015/mis-crystal-design-system-mobile-filter.mjs +87 -0
  166. package/fesm2015/mis-crystal-design-system-mobile-filter.mjs.map +1 -0
  167. package/fesm2015/mis-crystal-design-system-modal.mjs +156 -0
  168. package/fesm2015/mis-crystal-design-system-modal.mjs.map +1 -0
  169. package/fesm2015/mis-crystal-design-system-multi-select-dropdown.mjs +314 -0
  170. package/fesm2015/mis-crystal-design-system-multi-select-dropdown.mjs.map +1 -0
  171. package/fesm2015/mis-crystal-design-system-nested-multi-select-dropdown.mjs +310 -0
  172. package/fesm2015/mis-crystal-design-system-nested-multi-select-dropdown.mjs.map +1 -0
  173. package/fesm2015/mis-crystal-design-system-phone-input.mjs +130 -0
  174. package/fesm2015/mis-crystal-design-system-phone-input.mjs.map +1 -0
  175. package/fesm2015/mis-crystal-design-system-radio-button.mjs +74 -0
  176. package/fesm2015/mis-crystal-design-system-radio-button.mjs.map +1 -0
  177. package/fesm2015/mis-crystal-design-system-ske-loader.mjs +56 -0
  178. package/fesm2015/mis-crystal-design-system-ske-loader.mjs.map +1 -0
  179. package/fesm2015/mis-crystal-design-system-slider.mjs +70 -0
  180. package/fesm2015/mis-crystal-design-system-slider.mjs.map +1 -0
  181. package/fesm2015/mis-crystal-design-system-snackbar.mjs +104 -0
  182. package/fesm2015/mis-crystal-design-system-snackbar.mjs.map +1 -0
  183. package/fesm2015/mis-crystal-design-system-specificdatepicker.mjs +627 -0
  184. package/fesm2015/mis-crystal-design-system-specificdatepicker.mjs.map +1 -0
  185. package/fesm2015/mis-crystal-design-system-star-rating.mjs +108 -0
  186. package/fesm2015/mis-crystal-design-system-star-rating.mjs.map +1 -0
  187. package/fesm2015/mis-crystal-design-system-styles.mjs +4 -0
  188. package/fesm2015/mis-crystal-design-system-styles.mjs.map +1 -0
  189. package/fesm2015/mis-crystal-design-system-switch.mjs +68 -0
  190. package/fesm2015/mis-crystal-design-system-switch.mjs.map +1 -0
  191. package/fesm2015/mis-crystal-design-system-table.mjs +422 -0
  192. package/fesm2015/mis-crystal-design-system-table.mjs.map +1 -0
  193. package/fesm2015/mis-crystal-design-system-timepicker.mjs +357 -0
  194. package/fesm2015/mis-crystal-design-system-timepicker.mjs.map +1 -0
  195. package/fesm2015/{mis-crystal-design-system-timerangepicker.js → mis-crystal-design-system-timerangepicker.mjs} +52 -38
  196. package/fesm2015/mis-crystal-design-system-timerangepicker.mjs.map +1 -0
  197. package/fesm2015/mis-crystal-design-system-toast.mjs +182 -0
  198. package/fesm2015/mis-crystal-design-system-toast.mjs.map +1 -0
  199. package/fesm2015/mis-crystal-design-system-tooltip.mjs +193 -0
  200. package/fesm2015/mis-crystal-design-system-tooltip.mjs.map +1 -0
  201. package/fesm2015/{mis-crystal-design-system-utils.js → mis-crystal-design-system-utils.mjs} +1 -1
  202. package/fesm2015/mis-crystal-design-system-utils.mjs.map +1 -0
  203. package/fesm2015/mis-crystal-design-system-virtual-scroll.mjs +154 -0
  204. package/fesm2015/mis-crystal-design-system-virtual-scroll.mjs.map +1 -0
  205. package/fesm2015/{mis-crystal-design-system-widgets.js → mis-crystal-design-system-widgets.mjs} +13 -8
  206. package/fesm2015/mis-crystal-design-system-widgets.mjs.map +1 -0
  207. package/fesm2015/{mis-crystal-design-system.js → mis-crystal-design-system.mjs} +1 -1
  208. package/fesm2015/mis-crystal-design-system.mjs.map +1 -0
  209. package/fesm2020/mis-crystal-design-system-action-list.mjs +202 -0
  210. package/fesm2020/mis-crystal-design-system-action-list.mjs.map +1 -0
  211. package/fesm2020/mis-crystal-design-system-analytics.mjs +85 -0
  212. package/fesm2020/mis-crystal-design-system-analytics.mjs.map +1 -0
  213. package/fesm2020/mis-crystal-design-system-async-search-dropdown.mjs +286 -0
  214. package/fesm2020/mis-crystal-design-system-async-search-dropdown.mjs.map +1 -0
  215. package/fesm2020/mis-crystal-design-system-button.mjs +134 -0
  216. package/fesm2020/mis-crystal-design-system-button.mjs.map +1 -0
  217. package/fesm2020/mis-crystal-design-system-checkbox.mjs +112 -0
  218. package/fesm2020/mis-crystal-design-system-checkbox.mjs.map +1 -0
  219. package/fesm2020/mis-crystal-design-system-chip.mjs +61 -0
  220. package/fesm2020/mis-crystal-design-system-chip.mjs.map +1 -0
  221. package/fesm2020/mis-crystal-design-system-datepicker_v2.mjs +380 -0
  222. package/fesm2020/mis-crystal-design-system-datepicker_v2.mjs.map +1 -0
  223. package/fesm2020/mis-crystal-design-system-daterangepicker_v2.mjs +430 -0
  224. package/fesm2020/mis-crystal-design-system-daterangepicker_v2.mjs.map +1 -0
  225. package/fesm2020/mis-crystal-design-system-drawer.mjs +156 -0
  226. package/fesm2020/mis-crystal-design-system-drawer.mjs.map +1 -0
  227. package/fesm2020/mis-crystal-design-system-dropdown.mjs +260 -0
  228. package/fesm2020/mis-crystal-design-system-dropdown.mjs.map +1 -0
  229. package/fesm2020/mis-crystal-design-system-dynamic-form.mjs +368 -0
  230. package/fesm2020/mis-crystal-design-system-dynamic-form.mjs.map +1 -0
  231. package/fesm2020/mis-crystal-design-system-fab.mjs +107 -0
  232. package/fesm2020/mis-crystal-design-system-fab.mjs.map +1 -0
  233. package/fesm2020/mis-crystal-design-system-input-stepper.mjs +80 -0
  234. package/fesm2020/mis-crystal-design-system-input-stepper.mjs.map +1 -0
  235. package/fesm2020/mis-crystal-design-system-input.mjs +109 -0
  236. package/fesm2020/mis-crystal-design-system-input.mjs.map +1 -0
  237. package/fesm2020/mis-crystal-design-system-loader.mjs +44 -0
  238. package/fesm2020/mis-crystal-design-system-loader.mjs.map +1 -0
  239. package/fesm2020/mis-crystal-design-system-menu.mjs +119 -0
  240. package/fesm2020/mis-crystal-design-system-menu.mjs.map +1 -0
  241. package/fesm2020/mis-crystal-design-system-mobile-filter.mjs +90 -0
  242. package/fesm2020/mis-crystal-design-system-mobile-filter.mjs.map +1 -0
  243. package/fesm2020/mis-crystal-design-system-modal.mjs +156 -0
  244. package/fesm2020/mis-crystal-design-system-modal.mjs.map +1 -0
  245. package/fesm2020/mis-crystal-design-system-multi-select-dropdown.mjs +327 -0
  246. package/fesm2020/mis-crystal-design-system-multi-select-dropdown.mjs.map +1 -0
  247. package/fesm2020/mis-crystal-design-system-nested-multi-select-dropdown.mjs +341 -0
  248. package/fesm2020/mis-crystal-design-system-nested-multi-select-dropdown.mjs.map +1 -0
  249. package/fesm2020/mis-crystal-design-system-phone-input.mjs +130 -0
  250. package/fesm2020/mis-crystal-design-system-phone-input.mjs.map +1 -0
  251. package/fesm2020/mis-crystal-design-system-radio-button.mjs +74 -0
  252. package/fesm2020/mis-crystal-design-system-radio-button.mjs.map +1 -0
  253. package/fesm2020/mis-crystal-design-system-ske-loader.mjs +56 -0
  254. package/fesm2020/mis-crystal-design-system-ske-loader.mjs.map +1 -0
  255. package/fesm2020/mis-crystal-design-system-slider.mjs +70 -0
  256. package/fesm2020/mis-crystal-design-system-slider.mjs.map +1 -0
  257. package/fesm2020/mis-crystal-design-system-snackbar.mjs +104 -0
  258. package/fesm2020/mis-crystal-design-system-snackbar.mjs.map +1 -0
  259. package/fesm2020/mis-crystal-design-system-specificdatepicker.mjs +621 -0
  260. package/fesm2020/mis-crystal-design-system-specificdatepicker.mjs.map +1 -0
  261. package/fesm2020/mis-crystal-design-system-star-rating.mjs +108 -0
  262. package/fesm2020/mis-crystal-design-system-star-rating.mjs.map +1 -0
  263. package/fesm2020/mis-crystal-design-system-styles.mjs +4 -0
  264. package/fesm2020/mis-crystal-design-system-styles.mjs.map +1 -0
  265. package/fesm2020/mis-crystal-design-system-switch.mjs +68 -0
  266. package/fesm2020/mis-crystal-design-system-switch.mjs.map +1 -0
  267. package/fesm2020/mis-crystal-design-system-table.mjs +415 -0
  268. package/fesm2020/mis-crystal-design-system-table.mjs.map +1 -0
  269. package/fesm2020/mis-crystal-design-system-timepicker.mjs +357 -0
  270. package/fesm2020/mis-crystal-design-system-timepicker.mjs.map +1 -0
  271. package/fesm2020/mis-crystal-design-system-timerangepicker.mjs +232 -0
  272. package/fesm2020/mis-crystal-design-system-timerangepicker.mjs.map +1 -0
  273. package/fesm2020/mis-crystal-design-system-toast.mjs +180 -0
  274. package/fesm2020/mis-crystal-design-system-toast.mjs.map +1 -0
  275. package/fesm2020/mis-crystal-design-system-tooltip.mjs +191 -0
  276. package/fesm2020/mis-crystal-design-system-tooltip.mjs.map +1 -0
  277. package/fesm2020/mis-crystal-design-system-utils.mjs +24 -0
  278. package/fesm2020/mis-crystal-design-system-utils.mjs.map +1 -0
  279. package/fesm2020/mis-crystal-design-system-virtual-scroll.mjs +154 -0
  280. package/fesm2020/mis-crystal-design-system-virtual-scroll.mjs.map +1 -0
  281. package/fesm2020/mis-crystal-design-system-widgets.mjs +128 -0
  282. package/fesm2020/mis-crystal-design-system-widgets.mjs.map +1 -0
  283. package/fesm2020/mis-crystal-design-system.mjs +24 -0
  284. package/fesm2020/mis-crystal-design-system.mjs.map +1 -0
  285. package/input/directives/input/input.directive.d.ts +3 -0
  286. package/input/mis-input.component.d.ts +3 -0
  287. package/input/mis-input.module.d.ts +8 -0
  288. package/input-stepper/input-stepper/input-stepper.component.d.ts +3 -0
  289. package/input-stepper/input-stepper.module.d.ts +6 -0
  290. package/loader/loader.component.d.ts +3 -0
  291. package/loader/loader.module.d.ts +6 -0
  292. package/menu/menu-close.directive.d.ts +3 -0
  293. package/menu/menu.directive.d.ts +3 -0
  294. package/menu/menu.module.d.ts +9 -1
  295. package/mobile-filter/mobile-filter.component.d.ts +3 -0
  296. package/mobile-filter/mobile-filter.module.d.ts +8 -0
  297. package/modal/modal.module.d.ts +8 -0
  298. package/modal/modal.service.d.ts +3 -0
  299. package/modal/module-wrapper/module-wrapper.component.d.ts +3 -0
  300. package/multi-select-dropdown/multi-select-dropdown.component.d.ts +4 -0
  301. package/multi-select-dropdown/multi-select-dropdown.module.d.ts +10 -0
  302. package/nested-multi-select-dropdown/nested-multi-select-dropdown.component.d.ts +3 -0
  303. package/nested-multi-select-dropdown/nested-multi-select-dropdown.module.d.ts +10 -0
  304. package/package.json +316 -8
  305. package/phone-input/phone-input.component.d.ts +5 -2
  306. package/phone-input/phone-input.module.d.ts +10 -0
  307. package/radio-button/radio-button.component.d.ts +3 -0
  308. package/radio-button/radio-button.module.d.ts +7 -0
  309. package/ske-loader/ske-loader.component.d.ts +3 -0
  310. package/ske-loader/ske-loader.module.d.ts +6 -0
  311. package/slider/slider.component.d.ts +6 -3
  312. package/slider/slider.module.d.ts +7 -0
  313. package/snackbar/snackbar/snackbar.component.d.ts +3 -0
  314. package/snackbar/snackbar.module.d.ts +6 -0
  315. package/snackbar/snackbar.service.d.ts +5 -2
  316. package/specificdatepicker/public_api.d.ts +1 -0
  317. package/specificdatepicker/specificdatepicker.module.d.ts +12 -0
  318. package/specificdatepicker/tz-sdp-container/tz-sdp-container.component.d.ts +5 -2
  319. package/specificdatepicker/tz-specificdatepicker.directive.d.ts +3 -0
  320. package/star-rating/star-rating.component.d.ts +3 -0
  321. package/star-rating/star-rating.module.d.ts +6 -0
  322. package/switch/switch.component.d.ts +3 -0
  323. package/switch/switch.module.d.ts +7 -0
  324. package/table/custom-table-cell.directive.d.ts +3 -0
  325. package/table/filter/filter.component.d.ts +3 -0
  326. package/table/public_api.d.ts +1 -0
  327. package/table/sub-table/sub-table.component.d.ts +3 -0
  328. package/table/table.component.d.ts +3 -0
  329. package/table/table.module.d.ts +11 -0
  330. package/timepicker/timepicker.component.d.ts +3 -0
  331. package/timepicker/timepicker.directive.d.ts +3 -0
  332. package/timepicker/timepicker.module.d.ts +10 -0
  333. package/timerangepicker/timerangepicker.component.d.ts +3 -0
  334. package/timerangepicker/timerangepicker.module.d.ts +8 -0
  335. package/toast/toast.component.d.ts +3 -0
  336. package/toast/toast.data.service.d.ts +3 -0
  337. package/toast/toast.module.d.ts +7 -0
  338. package/toast/toast.service.d.ts +3 -0
  339. package/tooltip/tooltip-container/tooltip.component.d.ts +3 -0
  340. package/tooltip/tooltip.directive.d.ts +3 -0
  341. package/tooltip/tooltip.module.d.ts +8 -0
  342. package/virtual-scroll/virtual-scroll.component.d.ts +3 -0
  343. package/virtual-scroll/virtual-scroll.module.d.ts +8 -0
  344. package/widgets/services/widget.service.d.ts +3 -0
  345. package/widgets/widgets.module.d.ts +5 -0
  346. package/action-list/mis-crystal-design-system-action-list.d.ts +0 -4
  347. package/action-list/mis-crystal-design-system-action-list.metadata.json +0 -1
  348. package/action-list/package.json +0 -11
  349. package/analytics/mis-crystal-design-system-analytics.d.ts +0 -4
  350. package/analytics/mis-crystal-design-system-analytics.metadata.json +0 -1
  351. package/analytics/package.json +0 -11
  352. package/async-search-dropdown/mis-crystal-design-system-async-search-dropdown.d.ts +0 -4
  353. package/async-search-dropdown/mis-crystal-design-system-async-search-dropdown.metadata.json +0 -1
  354. package/async-search-dropdown/package.json +0 -11
  355. package/bundles/mis-crystal-design-system-action-list.umd.js +0 -668
  356. package/bundles/mis-crystal-design-system-action-list.umd.js.map +0 -1
  357. package/bundles/mis-crystal-design-system-action-list.umd.min.js +0 -2
  358. package/bundles/mis-crystal-design-system-action-list.umd.min.js.map +0 -1
  359. package/bundles/mis-crystal-design-system-analytics.umd.js +0 -581
  360. package/bundles/mis-crystal-design-system-analytics.umd.js.map +0 -1
  361. package/bundles/mis-crystal-design-system-analytics.umd.min.js +0 -2
  362. package/bundles/mis-crystal-design-system-analytics.umd.min.js.map +0 -1
  363. package/bundles/mis-crystal-design-system-async-search-dropdown.umd.js +0 -279
  364. package/bundles/mis-crystal-design-system-async-search-dropdown.umd.js.map +0 -1
  365. package/bundles/mis-crystal-design-system-async-search-dropdown.umd.min.js +0 -2
  366. package/bundles/mis-crystal-design-system-async-search-dropdown.umd.min.js.map +0 -1
  367. package/bundles/mis-crystal-design-system-button.umd.js +0 -134
  368. package/bundles/mis-crystal-design-system-button.umd.js.map +0 -1
  369. package/bundles/mis-crystal-design-system-button.umd.min.js +0 -2
  370. package/bundles/mis-crystal-design-system-button.umd.min.js.map +0 -1
  371. package/bundles/mis-crystal-design-system-checkbox.umd.js +0 -127
  372. package/bundles/mis-crystal-design-system-checkbox.umd.js.map +0 -1
  373. package/bundles/mis-crystal-design-system-checkbox.umd.min.js +0 -2
  374. package/bundles/mis-crystal-design-system-checkbox.umd.min.js.map +0 -1
  375. package/bundles/mis-crystal-design-system-chip.umd.js +0 -64
  376. package/bundles/mis-crystal-design-system-chip.umd.js.map +0 -1
  377. package/bundles/mis-crystal-design-system-chip.umd.min.js +0 -2
  378. package/bundles/mis-crystal-design-system-chip.umd.min.js.map +0 -1
  379. package/bundles/mis-crystal-design-system-datepicker_v2.umd.js +0 -865
  380. package/bundles/mis-crystal-design-system-datepicker_v2.umd.js.map +0 -1
  381. package/bundles/mis-crystal-design-system-datepicker_v2.umd.min.js +0 -2
  382. package/bundles/mis-crystal-design-system-datepicker_v2.umd.min.js.map +0 -1
  383. package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.js +0 -464
  384. package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.js.map +0 -1
  385. package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.min.js +0 -2
  386. package/bundles/mis-crystal-design-system-daterangepicker_v2.umd.min.js.map +0 -1
  387. package/bundles/mis-crystal-design-system-drawer.umd.js +0 -169
  388. package/bundles/mis-crystal-design-system-drawer.umd.js.map +0 -1
  389. package/bundles/mis-crystal-design-system-drawer.umd.min.js +0 -2
  390. package/bundles/mis-crystal-design-system-drawer.umd.min.js.map +0 -1
  391. package/bundles/mis-crystal-design-system-dropdown.umd.js +0 -717
  392. package/bundles/mis-crystal-design-system-dropdown.umd.js.map +0 -1
  393. package/bundles/mis-crystal-design-system-dropdown.umd.min.js +0 -2
  394. package/bundles/mis-crystal-design-system-dropdown.umd.min.js.map +0 -1
  395. package/bundles/mis-crystal-design-system-dynamic-form.umd.js +0 -899
  396. package/bundles/mis-crystal-design-system-dynamic-form.umd.js.map +0 -1
  397. package/bundles/mis-crystal-design-system-dynamic-form.umd.min.js +0 -2
  398. package/bundles/mis-crystal-design-system-dynamic-form.umd.min.js.map +0 -1
  399. package/bundles/mis-crystal-design-system-fab.umd.js +0 -95
  400. package/bundles/mis-crystal-design-system-fab.umd.js.map +0 -1
  401. package/bundles/mis-crystal-design-system-fab.umd.min.js +0 -2
  402. package/bundles/mis-crystal-design-system-fab.umd.min.js.map +0 -1
  403. package/bundles/mis-crystal-design-system-input-stepper.umd.js +0 -85
  404. package/bundles/mis-crystal-design-system-input-stepper.umd.js.map +0 -1
  405. package/bundles/mis-crystal-design-system-input-stepper.umd.min.js +0 -2
  406. package/bundles/mis-crystal-design-system-input-stepper.umd.min.js.map +0 -1
  407. package/bundles/mis-crystal-design-system-input.umd.js +0 -116
  408. package/bundles/mis-crystal-design-system-input.umd.js.map +0 -1
  409. package/bundles/mis-crystal-design-system-input.umd.min.js +0 -2
  410. package/bundles/mis-crystal-design-system-input.umd.min.js.map +0 -1
  411. package/bundles/mis-crystal-design-system-loader.umd.js +0 -53
  412. package/bundles/mis-crystal-design-system-loader.umd.js.map +0 -1
  413. package/bundles/mis-crystal-design-system-loader.umd.min.js +0 -2
  414. package/bundles/mis-crystal-design-system-loader.umd.min.js.map +0 -1
  415. package/bundles/mis-crystal-design-system-menu.umd.js +0 -119
  416. package/bundles/mis-crystal-design-system-menu.umd.js.map +0 -1
  417. package/bundles/mis-crystal-design-system-menu.umd.min.js +0 -2
  418. package/bundles/mis-crystal-design-system-menu.umd.min.js.map +0 -1
  419. package/bundles/mis-crystal-design-system-mobile-filter.umd.js +0 -89
  420. package/bundles/mis-crystal-design-system-mobile-filter.umd.js.map +0 -1
  421. package/bundles/mis-crystal-design-system-mobile-filter.umd.min.js +0 -2
  422. package/bundles/mis-crystal-design-system-mobile-filter.umd.min.js.map +0 -1
  423. package/bundles/mis-crystal-design-system-modal.umd.js +0 -161
  424. package/bundles/mis-crystal-design-system-modal.umd.js.map +0 -1
  425. package/bundles/mis-crystal-design-system-modal.umd.min.js +0 -2
  426. package/bundles/mis-crystal-design-system-modal.umd.min.js.map +0 -1
  427. package/bundles/mis-crystal-design-system-multi-select-dropdown.umd.js +0 -782
  428. package/bundles/mis-crystal-design-system-multi-select-dropdown.umd.js.map +0 -1
  429. package/bundles/mis-crystal-design-system-multi-select-dropdown.umd.min.js +0 -2
  430. package/bundles/mis-crystal-design-system-multi-select-dropdown.umd.min.js.map +0 -1
  431. package/bundles/mis-crystal-design-system-nested-multi-select-dropdown.umd.js +0 -795
  432. package/bundles/mis-crystal-design-system-nested-multi-select-dropdown.umd.js.map +0 -1
  433. package/bundles/mis-crystal-design-system-nested-multi-select-dropdown.umd.min.js +0 -2
  434. package/bundles/mis-crystal-design-system-nested-multi-select-dropdown.umd.min.js.map +0 -1
  435. package/bundles/mis-crystal-design-system-phone-input.umd.js +0 -117
  436. package/bundles/mis-crystal-design-system-phone-input.umd.js.map +0 -1
  437. package/bundles/mis-crystal-design-system-phone-input.umd.min.js +0 -2
  438. package/bundles/mis-crystal-design-system-phone-input.umd.min.js.map +0 -1
  439. package/bundles/mis-crystal-design-system-radio-button.umd.js +0 -77
  440. package/bundles/mis-crystal-design-system-radio-button.umd.js.map +0 -1
  441. package/bundles/mis-crystal-design-system-radio-button.umd.min.js +0 -2
  442. package/bundles/mis-crystal-design-system-radio-button.umd.min.js.map +0 -1
  443. package/bundles/mis-crystal-design-system-ske-loader.umd.js +0 -65
  444. package/bundles/mis-crystal-design-system-ske-loader.umd.js.map +0 -1
  445. package/bundles/mis-crystal-design-system-ske-loader.umd.min.js +0 -2
  446. package/bundles/mis-crystal-design-system-ske-loader.umd.min.js.map +0 -1
  447. package/bundles/mis-crystal-design-system-slider.umd.js +0 -73
  448. package/bundles/mis-crystal-design-system-slider.umd.js.map +0 -1
  449. package/bundles/mis-crystal-design-system-slider.umd.min.js +0 -2
  450. package/bundles/mis-crystal-design-system-slider.umd.min.js.map +0 -1
  451. package/bundles/mis-crystal-design-system-snackbar.umd.js +0 -114
  452. package/bundles/mis-crystal-design-system-snackbar.umd.js.map +0 -1
  453. package/bundles/mis-crystal-design-system-snackbar.umd.min.js +0 -2
  454. package/bundles/mis-crystal-design-system-snackbar.umd.min.js.map +0 -1
  455. package/bundles/mis-crystal-design-system-specificdatepicker.umd.js +0 -1136
  456. package/bundles/mis-crystal-design-system-specificdatepicker.umd.js.map +0 -1
  457. package/bundles/mis-crystal-design-system-specificdatepicker.umd.min.js +0 -2
  458. package/bundles/mis-crystal-design-system-specificdatepicker.umd.min.js.map +0 -1
  459. package/bundles/mis-crystal-design-system-star-rating.umd.js +0 -112
  460. package/bundles/mis-crystal-design-system-star-rating.umd.js.map +0 -1
  461. package/bundles/mis-crystal-design-system-star-rating.umd.min.js +0 -2
  462. package/bundles/mis-crystal-design-system-star-rating.umd.min.js.map +0 -1
  463. package/bundles/mis-crystal-design-system-styles.umd.js +0 -11
  464. package/bundles/mis-crystal-design-system-styles.umd.js.map +0 -1
  465. package/bundles/mis-crystal-design-system-styles.umd.min.js +0 -2
  466. package/bundles/mis-crystal-design-system-styles.umd.min.js.map +0 -1
  467. package/bundles/mis-crystal-design-system-switch.umd.js +0 -79
  468. package/bundles/mis-crystal-design-system-switch.umd.js.map +0 -1
  469. package/bundles/mis-crystal-design-system-switch.umd.min.js +0 -2
  470. package/bundles/mis-crystal-design-system-switch.umd.min.js.map +0 -1
  471. package/bundles/mis-crystal-design-system-table.umd.js +0 -943
  472. package/bundles/mis-crystal-design-system-table.umd.js.map +0 -1
  473. package/bundles/mis-crystal-design-system-table.umd.min.js +0 -2
  474. package/bundles/mis-crystal-design-system-table.umd.min.js.map +0 -1
  475. package/bundles/mis-crystal-design-system-timepicker.umd.js +0 -847
  476. package/bundles/mis-crystal-design-system-timepicker.umd.js.map +0 -1
  477. package/bundles/mis-crystal-design-system-timepicker.umd.min.js +0 -2
  478. package/bundles/mis-crystal-design-system-timepicker.umd.min.js.map +0 -1
  479. package/bundles/mis-crystal-design-system-timerangepicker.umd.js +0 -248
  480. package/bundles/mis-crystal-design-system-timerangepicker.umd.js.map +0 -1
  481. package/bundles/mis-crystal-design-system-timerangepicker.umd.min.js +0 -2
  482. package/bundles/mis-crystal-design-system-timerangepicker.umd.min.js.map +0 -1
  483. package/bundles/mis-crystal-design-system-toast.umd.js +0 -202
  484. package/bundles/mis-crystal-design-system-toast.umd.js.map +0 -1
  485. package/bundles/mis-crystal-design-system-toast.umd.min.js +0 -2
  486. package/bundles/mis-crystal-design-system-toast.umd.min.js.map +0 -1
  487. package/bundles/mis-crystal-design-system-tooltip.umd.js +0 -214
  488. package/bundles/mis-crystal-design-system-tooltip.umd.js.map +0 -1
  489. package/bundles/mis-crystal-design-system-tooltip.umd.min.js +0 -2
  490. package/bundles/mis-crystal-design-system-tooltip.umd.min.js.map +0 -1
  491. package/bundles/mis-crystal-design-system-utils.umd.js +0 -33
  492. package/bundles/mis-crystal-design-system-utils.umd.js.map +0 -1
  493. package/bundles/mis-crystal-design-system-utils.umd.min.js +0 -2
  494. package/bundles/mis-crystal-design-system-utils.umd.min.js.map +0 -1
  495. package/bundles/mis-crystal-design-system-virtual-scroll.umd.js +0 -630
  496. package/bundles/mis-crystal-design-system-virtual-scroll.umd.js.map +0 -1
  497. package/bundles/mis-crystal-design-system-virtual-scroll.umd.min.js +0 -2
  498. package/bundles/mis-crystal-design-system-virtual-scroll.umd.min.js.map +0 -1
  499. package/bundles/mis-crystal-design-system-widgets.umd.js +0 -637
  500. package/bundles/mis-crystal-design-system-widgets.umd.js.map +0 -1
  501. package/bundles/mis-crystal-design-system-widgets.umd.min.js +0 -2
  502. package/bundles/mis-crystal-design-system-widgets.umd.min.js.map +0 -1
  503. package/bundles/mis-crystal-design-system.umd.js +0 -31
  504. package/bundles/mis-crystal-design-system.umd.js.map +0 -1
  505. package/bundles/mis-crystal-design-system.umd.min.js +0 -2
  506. package/bundles/mis-crystal-design-system.umd.min.js.map +0 -1
  507. package/button/mis-crystal-design-system-button.d.ts +0 -4
  508. package/button/mis-crystal-design-system-button.metadata.json +0 -1
  509. package/button/package.json +0 -11
  510. package/checkbox/mis-crystal-design-system-checkbox.d.ts +0 -4
  511. package/checkbox/mis-crystal-design-system-checkbox.metadata.json +0 -1
  512. package/checkbox/package.json +0 -11
  513. package/chip/mis-crystal-design-system-chip.d.ts +0 -4
  514. package/chip/mis-crystal-design-system-chip.metadata.json +0 -1
  515. package/chip/package.json +0 -11
  516. package/datepicker_v2/mis-crystal-design-system-datepicker_v2.d.ts +0 -7
  517. package/datepicker_v2/mis-crystal-design-system-datepicker_v2.metadata.json +0 -1
  518. package/datepicker_v2/package.json +0 -11
  519. package/daterangepicker_v2/mis-crystal-design-system-daterangepicker_v2.d.ts +0 -7
  520. package/daterangepicker_v2/mis-crystal-design-system-daterangepicker_v2.metadata.json +0 -1
  521. package/daterangepicker_v2/package.json +0 -11
  522. package/drawer/mis-crystal-design-system-drawer.d.ts +0 -5
  523. package/drawer/mis-crystal-design-system-drawer.metadata.json +0 -1
  524. package/drawer/package.json +0 -11
  525. package/dropdown/mis-crystal-design-system-dropdown.d.ts +0 -5
  526. package/dropdown/mis-crystal-design-system-dropdown.metadata.json +0 -1
  527. package/dropdown/package.json +0 -11
  528. package/dynamic-form/mis-crystal-design-system-dynamic-form.d.ts +0 -4
  529. package/dynamic-form/mis-crystal-design-system-dynamic-form.metadata.json +0 -1
  530. package/dynamic-form/package.json +0 -11
  531. package/esm2015/action-list/action-list.component.js +0 -161
  532. package/esm2015/action-list/action-list.module.js +0 -19
  533. package/esm2015/analytics/analytics.module.js +0 -14
  534. package/esm2015/analytics/analytics.service.js +0 -62
  535. package/esm2015/async-search-dropdown/async-dropdown.component.js +0 -243
  536. package/esm2015/async-search-dropdown/async-dropdown.module.js +0 -16
  537. package/esm2015/button/button.component.js +0 -43
  538. package/esm2015/button/button.directive.js +0 -57
  539. package/esm2015/button/button.module.js +0 -17
  540. package/esm2015/checkbox/checkbox.component.js +0 -79
  541. package/esm2015/checkbox/checkbox.module.js +0 -17
  542. package/esm2015/chip/chip.component.js +0 -31
  543. package/esm2015/chip/chip.module.js +0 -16
  544. package/esm2015/datepicker_v2/datepicker.module.js +0 -18
  545. package/esm2015/datepicker_v2/mis-crystal-design-system-datepicker_v2.js +0 -7
  546. package/esm2015/datepicker_v2/public_api.js +0 -3
  547. package/esm2015/datepicker_v2/tz-datepicker.directive.js +0 -144
  548. package/esm2015/datepicker_v2/tz-dp-container/tz-dp-container.component.js +0 -149
  549. package/esm2015/daterangepicker_v2/daterangepicker.module.js +0 -18
  550. package/esm2015/daterangepicker_v2/mis-crystal-design-system-daterangepicker_v2.js +0 -7
  551. package/esm2015/daterangepicker_v2/public_api.js +0 -3
  552. package/esm2015/daterangepicker_v2/tz-daterangepicker.directive.js +0 -123
  553. package/esm2015/daterangepicker_v2/tz-drp-container/tz-drp-container.component.js +0 -226
  554. package/esm2015/drawer/drawer-body/drawer-body.component.js +0 -41
  555. package/esm2015/drawer/drawer.module.js +0 -28
  556. package/esm2015/drawer/mis-crystal-design-system-drawer.js +0 -6
  557. package/esm2015/dropdown/calculate-container-height.directive.js +0 -40
  558. package/esm2015/dropdown/dropdown.component.js +0 -169
  559. package/esm2015/dropdown/dropdown.module.js +0 -21
  560. package/esm2015/dropdown/mis-crystal-design-system-dropdown.js +0 -6
  561. package/esm2015/dynamic-form/dynamic-form.component.js +0 -308
  562. package/esm2015/dynamic-form/dynamic-form.module.js +0 -34
  563. package/esm2015/fab/fab.component.js +0 -63
  564. package/esm2015/fab/fab.module.js +0 -16
  565. package/esm2015/input/directives/input/input.directive.js +0 -38
  566. package/esm2015/input/mis-input.component.js +0 -45
  567. package/esm2015/input/mis-input.module.js +0 -15
  568. package/esm2015/input-stepper/input-stepper/input-stepper.component.js +0 -49
  569. package/esm2015/input-stepper/input-stepper.module.js +0 -19
  570. package/esm2015/loader/loader.component.js +0 -20
  571. package/esm2015/loader/loader.module.js +0 -16
  572. package/esm2015/menu/menu-close.directive.js +0 -18
  573. package/esm2015/menu/menu.directive.js +0 -70
  574. package/esm2015/menu/menu.module.js +0 -17
  575. package/esm2015/mobile-filter/mobile-filter.component.js +0 -54
  576. package/esm2015/mobile-filter/mobile-filter.module.js +0 -15
  577. package/esm2015/modal/mis-crystal-design-system-modal.js +0 -6
  578. package/esm2015/modal/modal.module.js +0 -28
  579. package/esm2015/modal/modal.service.js +0 -72
  580. package/esm2015/modal/module-wrapper/module-wrapper.component.js +0 -33
  581. package/esm2015/multi-select-dropdown/multi-select-dropdown.component.js +0 -269
  582. package/esm2015/multi-select-dropdown/multi-select-dropdown.module.js +0 -20
  583. package/esm2015/nested-multi-select-dropdown/nested-multi-select-dropdown.component.js +0 -265
  584. package/esm2015/nested-multi-select-dropdown/nested-multi-select-dropdown.module.js +0 -20
  585. package/esm2015/phone-input/phone-input.component.js +0 -85
  586. package/esm2015/phone-input/phone-input.module.js +0 -21
  587. package/esm2015/radio-button/radio-button.component.js +0 -45
  588. package/esm2015/radio-button/radio-button.module.js +0 -17
  589. package/esm2015/ske-loader/ske-loader.component.js +0 -31
  590. package/esm2015/ske-loader/ske-loader.module.js +0 -13
  591. package/esm2015/slider/slider.component.js +0 -38
  592. package/esm2015/slider/slider.module.js +0 -20
  593. package/esm2015/snackbar/snackbar/snackbar.component.js +0 -22
  594. package/esm2015/snackbar/snackbar.module.js +0 -31
  595. package/esm2015/snackbar/snackbar.service.js +0 -48
  596. package/esm2015/specificdatepicker/mis-crystal-design-system-specificdatepicker.js +0 -7
  597. package/esm2015/specificdatepicker/public_api.js +0 -3
  598. package/esm2015/specificdatepicker/specificdatepicker.module.js +0 -20
  599. package/esm2015/specificdatepicker/tz-sdp-container/tz-sdp-container.component.js +0 -356
  600. package/esm2015/specificdatepicker/tz-specificdatepicker.directive.js +0 -179
  601. package/esm2015/star-rating/star-rating.component.js +0 -78
  602. package/esm2015/star-rating/star-rating.module.js +0 -13
  603. package/esm2015/switch/switch.component.js +0 -39
  604. package/esm2015/switch/switch.module.js +0 -17
  605. package/esm2015/table/custom-table-cell.directive.js +0 -42
  606. package/esm2015/table/filter/filter.component.js +0 -75
  607. package/esm2015/table/mis-crystal-design-system-table.js +0 -6
  608. package/esm2015/table/public_api.js +0 -5
  609. package/esm2015/table/sub-table/sub-table.component.js +0 -69
  610. package/esm2015/table/table.component.js +0 -200
  611. package/esm2015/table/table.module.js +0 -21
  612. package/esm2015/timepicker/mis-crystal-design-system-timepicker.js +0 -6
  613. package/esm2015/timepicker/timepicker.component.js +0 -248
  614. package/esm2015/timepicker/timepicker.directive.js +0 -62
  615. package/esm2015/timepicker/timepicker.module.js +0 -20
  616. package/esm2015/timerangepicker/timerangepicker.component.js +0 -194
  617. package/esm2015/timerangepicker/timerangepicker.module.js +0 -18
  618. package/esm2015/toast/toast.component.js +0 -28
  619. package/esm2015/toast/toast.data.service.js +0 -29
  620. package/esm2015/toast/toast.module.js +0 -28
  621. package/esm2015/toast/toast.service.js +0 -96
  622. package/esm2015/tooltip/tooltip-container/tooltip.component.js +0 -35
  623. package/esm2015/tooltip/tooltip.directive.js +0 -128
  624. package/esm2015/tooltip/tooltip.module.js +0 -19
  625. package/esm2015/virtual-scroll/virtual-scroll.component.js +0 -111
  626. package/esm2015/virtual-scroll/virtual-scroll.module.js +0 -24
  627. package/esm2015/widgets/classes/widget-group.js +0 -32
  628. package/esm2015/widgets/services/widget.service.js +0 -16
  629. package/esm2015/widgets/widgets.module.js +0 -12
  630. package/fab/mis-crystal-design-system-fab.d.ts +0 -4
  631. package/fab/mis-crystal-design-system-fab.metadata.json +0 -1
  632. package/fab/package.json +0 -11
  633. package/fesm2015/mis-crystal-design-system-action-list.js +0 -184
  634. package/fesm2015/mis-crystal-design-system-action-list.js.map +0 -1
  635. package/fesm2015/mis-crystal-design-system-analytics.js.map +0 -1
  636. package/fesm2015/mis-crystal-design-system-async-search-dropdown.js +0 -262
  637. package/fesm2015/mis-crystal-design-system-async-search-dropdown.js.map +0 -1
  638. package/fesm2015/mis-crystal-design-system-button.js +0 -120
  639. package/fesm2015/mis-crystal-design-system-button.js.map +0 -1
  640. package/fesm2015/mis-crystal-design-system-checkbox.js +0 -100
  641. package/fesm2015/mis-crystal-design-system-checkbox.js.map +0 -1
  642. package/fesm2015/mis-crystal-design-system-chip.js +0 -52
  643. package/fesm2015/mis-crystal-design-system-chip.js.map +0 -1
  644. package/fesm2015/mis-crystal-design-system-datepicker_v2.js +0 -357
  645. package/fesm2015/mis-crystal-design-system-datepicker_v2.js.map +0 -1
  646. package/fesm2015/mis-crystal-design-system-daterangepicker_v2.js +0 -413
  647. package/fesm2015/mis-crystal-design-system-daterangepicker_v2.js.map +0 -1
  648. package/fesm2015/mis-crystal-design-system-drawer.js +0 -153
  649. package/fesm2015/mis-crystal-design-system-drawer.js.map +0 -1
  650. package/fesm2015/mis-crystal-design-system-dropdown.js +0 -232
  651. package/fesm2015/mis-crystal-design-system-dropdown.js.map +0 -1
  652. package/fesm2015/mis-crystal-design-system-dynamic-form.js +0 -346
  653. package/fesm2015/mis-crystal-design-system-dynamic-form.js.map +0 -1
  654. package/fesm2015/mis-crystal-design-system-fab.js +0 -84
  655. package/fesm2015/mis-crystal-design-system-fab.js.map +0 -1
  656. package/fesm2015/mis-crystal-design-system-input-stepper.js +0 -73
  657. package/fesm2015/mis-crystal-design-system-input-stepper.js.map +0 -1
  658. package/fesm2015/mis-crystal-design-system-input.js +0 -99
  659. package/fesm2015/mis-crystal-design-system-input.js.map +0 -1
  660. package/fesm2015/mis-crystal-design-system-loader.js +0 -41
  661. package/fesm2015/mis-crystal-design-system-loader.js.map +0 -1
  662. package/fesm2015/mis-crystal-design-system-menu.js +0 -106
  663. package/fesm2015/mis-crystal-design-system-menu.js.map +0 -1
  664. package/fesm2015/mis-crystal-design-system-mobile-filter.js +0 -74
  665. package/fesm2015/mis-crystal-design-system-mobile-filter.js.map +0 -1
  666. package/fesm2015/mis-crystal-design-system-modal.js +0 -147
  667. package/fesm2015/mis-crystal-design-system-modal.js.map +0 -1
  668. package/fesm2015/mis-crystal-design-system-multi-select-dropdown.js +0 -293
  669. package/fesm2015/mis-crystal-design-system-multi-select-dropdown.js.map +0 -1
  670. package/fesm2015/mis-crystal-design-system-nested-multi-select-dropdown.js +0 -289
  671. package/fesm2015/mis-crystal-design-system-nested-multi-select-dropdown.js.map +0 -1
  672. package/fesm2015/mis-crystal-design-system-phone-input.js +0 -109
  673. package/fesm2015/mis-crystal-design-system-phone-input.js.map +0 -1
  674. package/fesm2015/mis-crystal-design-system-radio-button.js +0 -66
  675. package/fesm2015/mis-crystal-design-system-radio-button.js.map +0 -1
  676. package/fesm2015/mis-crystal-design-system-ske-loader.js +0 -49
  677. package/fesm2015/mis-crystal-design-system-ske-loader.js.map +0 -1
  678. package/fesm2015/mis-crystal-design-system-slider.js +0 -62
  679. package/fesm2015/mis-crystal-design-system-slider.js.map +0 -1
  680. package/fesm2015/mis-crystal-design-system-snackbar.js +0 -101
  681. package/fesm2015/mis-crystal-design-system-snackbar.js.map +0 -1
  682. package/fesm2015/mis-crystal-design-system-specificdatepicker.js +0 -599
  683. package/fesm2015/mis-crystal-design-system-specificdatepicker.js.map +0 -1
  684. package/fesm2015/mis-crystal-design-system-star-rating.js +0 -96
  685. package/fesm2015/mis-crystal-design-system-star-rating.js.map +0 -1
  686. package/fesm2015/mis-crystal-design-system-styles.js +0 -4
  687. package/fesm2015/mis-crystal-design-system-styles.js.map +0 -1
  688. package/fesm2015/mis-crystal-design-system-switch.js +0 -60
  689. package/fesm2015/mis-crystal-design-system-switch.js.map +0 -1
  690. package/fesm2015/mis-crystal-design-system-table.js +0 -406
  691. package/fesm2015/mis-crystal-design-system-table.js.map +0 -1
  692. package/fesm2015/mis-crystal-design-system-timepicker.js +0 -330
  693. package/fesm2015/mis-crystal-design-system-timepicker.js.map +0 -1
  694. package/fesm2015/mis-crystal-design-system-timerangepicker.js.map +0 -1
  695. package/fesm2015/mis-crystal-design-system-toast.js +0 -174
  696. package/fesm2015/mis-crystal-design-system-toast.js.map +0 -1
  697. package/fesm2015/mis-crystal-design-system-tooltip.js +0 -183
  698. package/fesm2015/mis-crystal-design-system-tooltip.js.map +0 -1
  699. package/fesm2015/mis-crystal-design-system-utils.js.map +0 -1
  700. package/fesm2015/mis-crystal-design-system-virtual-scroll.js +0 -141
  701. package/fesm2015/mis-crystal-design-system-virtual-scroll.js.map +0 -1
  702. package/fesm2015/mis-crystal-design-system-widgets.js.map +0 -1
  703. package/fesm2015/mis-crystal-design-system.js.map +0 -1
  704. package/input/mis-crystal-design-system-input.d.ts +0 -4
  705. package/input/mis-crystal-design-system-input.metadata.json +0 -1
  706. package/input/package.json +0 -11
  707. package/input-stepper/mis-crystal-design-system-input-stepper.d.ts +0 -4
  708. package/input-stepper/mis-crystal-design-system-input-stepper.metadata.json +0 -1
  709. package/input-stepper/package.json +0 -11
  710. package/loader/mis-crystal-design-system-loader.d.ts +0 -4
  711. package/loader/mis-crystal-design-system-loader.metadata.json +0 -1
  712. package/loader/package.json +0 -11
  713. package/menu/mis-crystal-design-system-menu.d.ts +0 -4
  714. package/menu/mis-crystal-design-system-menu.metadata.json +0 -1
  715. package/menu/package.json +0 -11
  716. package/mis-crystal-design-system.d.ts +0 -4
  717. package/mis-crystal-design-system.metadata.json +0 -1
  718. package/mobile-filter/mis-crystal-design-system-mobile-filter.d.ts +0 -4
  719. package/mobile-filter/mis-crystal-design-system-mobile-filter.metadata.json +0 -1
  720. package/mobile-filter/package.json +0 -11
  721. package/modal/mis-crystal-design-system-modal.d.ts +0 -5
  722. package/modal/mis-crystal-design-system-modal.metadata.json +0 -1
  723. package/modal/package.json +0 -11
  724. package/multi-select-dropdown/mis-crystal-design-system-multi-select-dropdown.d.ts +0 -4
  725. package/multi-select-dropdown/mis-crystal-design-system-multi-select-dropdown.metadata.json +0 -1
  726. package/multi-select-dropdown/package.json +0 -11
  727. package/nested-multi-select-dropdown/mis-crystal-design-system-nested-multi-select-dropdown.d.ts +0 -4
  728. package/nested-multi-select-dropdown/mis-crystal-design-system-nested-multi-select-dropdown.metadata.json +0 -1
  729. package/nested-multi-select-dropdown/package.json +0 -11
  730. package/phone-input/mis-crystal-design-system-phone-input.d.ts +0 -4
  731. package/phone-input/mis-crystal-design-system-phone-input.metadata.json +0 -1
  732. package/phone-input/package.json +0 -11
  733. package/radio-button/mis-crystal-design-system-radio-button.d.ts +0 -4
  734. package/radio-button/mis-crystal-design-system-radio-button.metadata.json +0 -1
  735. package/radio-button/package.json +0 -11
  736. package/ske-loader/mis-crystal-design-system-ske-loader.d.ts +0 -4
  737. package/ske-loader/mis-crystal-design-system-ske-loader.metadata.json +0 -1
  738. package/ske-loader/package.json +0 -11
  739. package/slider/mis-crystal-design-system-slider.d.ts +0 -4
  740. package/slider/mis-crystal-design-system-slider.metadata.json +0 -1
  741. package/slider/package.json +0 -11
  742. package/snackbar/mis-crystal-design-system-snackbar.d.ts +0 -4
  743. package/snackbar/mis-crystal-design-system-snackbar.metadata.json +0 -1
  744. package/snackbar/package.json +0 -11
  745. package/specificdatepicker/mis-crystal-design-system-specificdatepicker.d.ts +0 -7
  746. package/specificdatepicker/mis-crystal-design-system-specificdatepicker.metadata.json +0 -1
  747. package/specificdatepicker/package.json +0 -11
  748. package/star-rating/mis-crystal-design-system-star-rating.d.ts +0 -4
  749. package/star-rating/mis-crystal-design-system-star-rating.metadata.json +0 -1
  750. package/star-rating/package.json +0 -11
  751. package/styles/mis-crystal-design-system-styles.d.ts +0 -4
  752. package/styles/mis-crystal-design-system-styles.metadata.json +0 -1
  753. package/styles/package.json +0 -11
  754. package/switch/mis-crystal-design-system-switch.d.ts +0 -4
  755. package/switch/mis-crystal-design-system-switch.metadata.json +0 -1
  756. package/switch/package.json +0 -11
  757. package/table/mis-crystal-design-system-table.d.ts +0 -5
  758. package/table/mis-crystal-design-system-table.metadata.json +0 -1
  759. package/table/package.json +0 -11
  760. package/timepicker/mis-crystal-design-system-timepicker.d.ts +0 -5
  761. package/timepicker/mis-crystal-design-system-timepicker.metadata.json +0 -1
  762. package/timepicker/package.json +0 -11
  763. package/timerangepicker/mis-crystal-design-system-timerangepicker.d.ts +0 -4
  764. package/timerangepicker/mis-crystal-design-system-timerangepicker.metadata.json +0 -1
  765. package/timerangepicker/package.json +0 -11
  766. package/toast/mis-crystal-design-system-toast.d.ts +0 -4
  767. package/toast/mis-crystal-design-system-toast.metadata.json +0 -1
  768. package/toast/package.json +0 -11
  769. package/tooltip/mis-crystal-design-system-tooltip.d.ts +0 -4
  770. package/tooltip/mis-crystal-design-system-tooltip.metadata.json +0 -1
  771. package/tooltip/package.json +0 -11
  772. package/utils/mis-crystal-design-system-utils.d.ts +0 -4
  773. package/utils/mis-crystal-design-system-utils.metadata.json +0 -1
  774. package/utils/package.json +0 -11
  775. package/virtual-scroll/mis-crystal-design-system-virtual-scroll.d.ts +0 -4
  776. package/virtual-scroll/mis-crystal-design-system-virtual-scroll.metadata.json +0 -1
  777. package/virtual-scroll/package.json +0 -11
  778. package/widgets/mis-crystal-design-system-widgets.d.ts +0 -4
  779. package/widgets/mis-crystal-design-system-widgets.metadata.json +0 -1
  780. package/widgets/package.json +0 -11
  781. /package/{esm2015/action-list/index.js → esm2020/action-list/index.mjs} +0 -0
  782. /package/{esm2015/action-list/mis-crystal-design-system-action-list.js → esm2020/action-list/mis-crystal-design-system-action-list.mjs} +0 -0
  783. /package/{esm2015/action-list/public_api.js → esm2020/action-list/public_api.mjs} +0 -0
  784. /package/{esm2015/analytics/index.js → esm2020/analytics/index.mjs} +0 -0
  785. /package/{esm2015/analytics/mis-crystal-design-system-analytics.js → esm2020/analytics/mis-crystal-design-system-analytics.mjs} +0 -0
  786. /package/{esm2015/analytics/public_api.js → esm2020/analytics/public_api.mjs} +0 -0
  787. /package/{esm2015/async-search-dropdown/index.js → esm2020/async-search-dropdown/index.mjs} +0 -0
  788. /package/{esm2015/async-search-dropdown/mis-crystal-design-system-async-search-dropdown.js → esm2020/async-search-dropdown/mis-crystal-design-system-async-search-dropdown.mjs} +0 -0
  789. /package/{esm2015/async-search-dropdown/public_api.js → esm2020/async-search-dropdown/public_api.mjs} +0 -0
  790. /package/{esm2015/button/index.js → esm2020/button/index.mjs} +0 -0
  791. /package/{esm2015/button/mis-crystal-design-system-button.js → esm2020/button/mis-crystal-design-system-button.mjs} +0 -0
  792. /package/{esm2015/button/public_api.js → esm2020/button/public_api.mjs} +0 -0
  793. /package/{esm2015/checkbox/index.js → esm2020/checkbox/index.mjs} +0 -0
  794. /package/{esm2015/checkbox/mis-crystal-design-system-checkbox.js → esm2020/checkbox/mis-crystal-design-system-checkbox.mjs} +0 -0
  795. /package/{esm2015/checkbox/public_api.js → esm2020/checkbox/public_api.mjs} +0 -0
  796. /package/{esm2015/chip/index.js → esm2020/chip/index.mjs} +0 -0
  797. /package/{esm2015/chip/mis-crystal-design-system-chip.js → esm2020/chip/mis-crystal-design-system-chip.mjs} +0 -0
  798. /package/{esm2015/chip/public_api.js → esm2020/chip/public_api.mjs} +0 -0
  799. /package/{esm2015/datepicker_v2/datepicker-constants.js → esm2020/datepicker_v2/datepicker-constants.mjs} +0 -0
  800. /package/{esm2015/datepicker_v2/index.js → esm2020/datepicker_v2/index.mjs} +0 -0
  801. /package/{esm2015/datepicker_v2/models/dp-config.model.js → esm2020/datepicker_v2/models/dp-config.model.mjs} +0 -0
  802. /package/{esm2015/datepicker_v2/utils/index.js → esm2020/datepicker_v2/utils/index.mjs} +0 -0
  803. /package/{esm2015/daterangepicker_v2/daterangepicker-constants.js → esm2020/daterangepicker_v2/daterangepicker-constants.mjs} +0 -0
  804. /package/{esm2015/daterangepicker_v2/index.js → esm2020/daterangepicker_v2/index.mjs} +0 -0
  805. /package/{esm2015/daterangepicker_v2/models/drp-config.model.js → esm2020/daterangepicker_v2/models/drp-config.model.mjs} +0 -0
  806. /package/{esm2015/daterangepicker_v2/utils/index.js → esm2020/daterangepicker_v2/utils/index.mjs} +0 -0
  807. /package/{esm2015/drawer/drawer-constants.js → esm2020/drawer/drawer-constants.mjs} +0 -0
  808. /package/{esm2015/drawer/drawer-ref.js → esm2020/drawer/drawer-ref.mjs} +0 -0
  809. /package/{esm2015/drawer/index.js → esm2020/drawer/index.mjs} +0 -0
  810. /package/{esm2015/drawer/public_api.js → esm2020/drawer/public_api.mjs} +0 -0
  811. /package/{esm2015/dropdown/index.js → esm2020/dropdown/index.mjs} +0 -0
  812. /package/{esm2015/dropdown/public_api.js → esm2020/dropdown/public_api.mjs} +0 -0
  813. /package/{esm2015/dynamic-form/dynamic-form.namespace.js → esm2020/dynamic-form/dynamic-form.namespace.mjs} +0 -0
  814. /package/{esm2015/dynamic-form/index.js → esm2020/dynamic-form/index.mjs} +0 -0
  815. /package/{esm2015/dynamic-form/mis-crystal-design-system-dynamic-form.js → esm2020/dynamic-form/mis-crystal-design-system-dynamic-form.mjs} +0 -0
  816. /package/{esm2015/dynamic-form/public_api.js → esm2020/dynamic-form/public_api.mjs} +0 -0
  817. /package/{esm2015/fab/index.js → esm2020/fab/index.mjs} +0 -0
  818. /package/{esm2015/fab/mis-crystal-design-system-fab.js → esm2020/fab/mis-crystal-design-system-fab.mjs} +0 -0
  819. /package/{esm2015/fab/public_api.js → esm2020/fab/public_api.mjs} +0 -0
  820. /package/{esm2015/index.js → esm2020/index.mjs} +0 -0
  821. /package/{esm2015/input/index.js → esm2020/input/index.mjs} +0 -0
  822. /package/{esm2015/input/mis-crystal-design-system-input.js → esm2020/input/mis-crystal-design-system-input.mjs} +0 -0
  823. /package/{esm2015/input/public_api.js → esm2020/input/public_api.mjs} +0 -0
  824. /package/{esm2015/input-stepper/index.js → esm2020/input-stepper/index.mjs} +0 -0
  825. /package/{esm2015/input-stepper/mis-crystal-design-system-input-stepper.js → esm2020/input-stepper/mis-crystal-design-system-input-stepper.mjs} +0 -0
  826. /package/{esm2015/input-stepper/public_api.js → esm2020/input-stepper/public_api.mjs} +0 -0
  827. /package/{esm2015/loader/index.js → esm2020/loader/index.mjs} +0 -0
  828. /package/{esm2015/loader/mis-crystal-design-system-loader.js → esm2020/loader/mis-crystal-design-system-loader.mjs} +0 -0
  829. /package/{esm2015/loader/public_api.js → esm2020/loader/public_api.mjs} +0 -0
  830. /package/{esm2015/menu/index.js → esm2020/menu/index.mjs} +0 -0
  831. /package/{esm2015/menu/mis-crystal-design-system-menu.js → esm2020/menu/mis-crystal-design-system-menu.mjs} +0 -0
  832. /package/{esm2015/menu/public_api.js → esm2020/menu/public_api.mjs} +0 -0
  833. /package/{esm2015/mis-crystal-design-system.js → esm2020/mis-crystal-design-system.mjs} +0 -0
  834. /package/{esm2015/mobile-filter/index.js → esm2020/mobile-filter/index.mjs} +0 -0
  835. /package/{esm2015/mobile-filter/mis-crystal-design-system-mobile-filter.js → esm2020/mobile-filter/mis-crystal-design-system-mobile-filter.mjs} +0 -0
  836. /package/{esm2015/mobile-filter/public_api.js → esm2020/mobile-filter/public_api.mjs} +0 -0
  837. /package/{esm2015/modal/index.js → esm2020/modal/index.mjs} +0 -0
  838. /package/{esm2015/modal/modal-constants.js → esm2020/modal/modal-constants.mjs} +0 -0
  839. /package/{esm2015/modal/modal-ref.js → esm2020/modal/modal-ref.mjs} +0 -0
  840. /package/{esm2015/modal/public_api.js → esm2020/modal/public_api.mjs} +0 -0
  841. /package/{esm2015/multi-select-dropdown/index.js → esm2020/multi-select-dropdown/index.mjs} +0 -0
  842. /package/{esm2015/multi-select-dropdown/mis-crystal-design-system-multi-select-dropdown.js → esm2020/multi-select-dropdown/mis-crystal-design-system-multi-select-dropdown.mjs} +0 -0
  843. /package/{esm2015/multi-select-dropdown/public_api.js → esm2020/multi-select-dropdown/public_api.mjs} +0 -0
  844. /package/{esm2015/nested-multi-select-dropdown/index.js → esm2020/nested-multi-select-dropdown/index.mjs} +0 -0
  845. /package/{esm2015/nested-multi-select-dropdown/mis-crystal-design-system-nested-multi-select-dropdown.js → esm2020/nested-multi-select-dropdown/mis-crystal-design-system-nested-multi-select-dropdown.mjs} +0 -0
  846. /package/{esm2015/nested-multi-select-dropdown/public_api.js → esm2020/nested-multi-select-dropdown/public_api.mjs} +0 -0
  847. /package/{esm2015/phone-input/index.js → esm2020/phone-input/index.mjs} +0 -0
  848. /package/{esm2015/phone-input/mis-crystal-design-system-phone-input.js → esm2020/phone-input/mis-crystal-design-system-phone-input.mjs} +0 -0
  849. /package/{esm2015/phone-input/public_api.js → esm2020/phone-input/public_api.mjs} +0 -0
  850. /package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  851. /package/{esm2015/radio-button/index.js → esm2020/radio-button/index.mjs} +0 -0
  852. /package/{esm2015/radio-button/mis-crystal-design-system-radio-button.js → esm2020/radio-button/mis-crystal-design-system-radio-button.mjs} +0 -0
  853. /package/{esm2015/radio-button/public_api.js → esm2020/radio-button/public_api.mjs} +0 -0
  854. /package/{esm2015/ske-loader/index.js → esm2020/ske-loader/index.mjs} +0 -0
  855. /package/{esm2015/ske-loader/mis-crystal-design-system-ske-loader.js → esm2020/ske-loader/mis-crystal-design-system-ske-loader.mjs} +0 -0
  856. /package/{esm2015/ske-loader/public_api.js → esm2020/ske-loader/public_api.mjs} +0 -0
  857. /package/{esm2015/slider/index.js → esm2020/slider/index.mjs} +0 -0
  858. /package/{esm2015/slider/mis-crystal-design-system-slider.js → esm2020/slider/mis-crystal-design-system-slider.mjs} +0 -0
  859. /package/{esm2015/slider/public_api.js → esm2020/slider/public_api.mjs} +0 -0
  860. /package/{esm2015/snackbar/index.js → esm2020/snackbar/index.mjs} +0 -0
  861. /package/{esm2015/snackbar/mis-crystal-design-system-snackbar.js → esm2020/snackbar/mis-crystal-design-system-snackbar.mjs} +0 -0
  862. /package/{esm2015/snackbar/public_api.js → esm2020/snackbar/public_api.mjs} +0 -0
  863. /package/{esm2015/specificdatepicker/daterangepicker-constants.js → esm2020/specificdatepicker/daterangepicker-constants.mjs} +0 -0
  864. /package/{esm2015/specificdatepicker/index.js → esm2020/specificdatepicker/index.mjs} +0 -0
  865. /package/{esm2015/specificdatepicker/models/sdp-config.model.js → esm2020/specificdatepicker/models/sdp-config.model.mjs} +0 -0
  866. /package/{esm2015/specificdatepicker/utils/index.js → esm2020/specificdatepicker/utils/index.mjs} +0 -0
  867. /package/{esm2015/star-rating/index.js → esm2020/star-rating/index.mjs} +0 -0
  868. /package/{esm2015/star-rating/mis-crystal-design-system-star-rating.js → esm2020/star-rating/mis-crystal-design-system-star-rating.mjs} +0 -0
  869. /package/{esm2015/star-rating/public_api.js → esm2020/star-rating/public_api.mjs} +0 -0
  870. /package/{esm2015/styles/index.js → esm2020/styles/index.mjs} +0 -0
  871. /package/{esm2015/styles/mis-crystal-design-system-styles.js → esm2020/styles/mis-crystal-design-system-styles.mjs} +0 -0
  872. /package/{esm2015/styles/public_api.js → esm2020/styles/public_api.mjs} +0 -0
  873. /package/{esm2015/switch/index.js → esm2020/switch/index.mjs} +0 -0
  874. /package/{esm2015/switch/mis-crystal-design-system-switch.js → esm2020/switch/mis-crystal-design-system-switch.mjs} +0 -0
  875. /package/{esm2015/switch/public_api.js → esm2020/switch/public_api.mjs} +0 -0
  876. /package/{esm2015/table/index.js → esm2020/table/index.mjs} +0 -0
  877. /package/{esm2015/timepicker/index.js → esm2020/timepicker/index.mjs} +0 -0
  878. /package/{esm2015/timepicker/public_api.js → esm2020/timepicker/public_api.mjs} +0 -0
  879. /package/{esm2015/timepicker/time.namespace.js → esm2020/timepicker/time.namespace.mjs} +0 -0
  880. /package/{esm2015/timerangepicker/index.js → esm2020/timerangepicker/index.mjs} +0 -0
  881. /package/{esm2015/timerangepicker/mis-crystal-design-system-timerangepicker.js → esm2020/timerangepicker/mis-crystal-design-system-timerangepicker.mjs} +0 -0
  882. /package/{esm2015/timerangepicker/public_api.js → esm2020/timerangepicker/public_api.mjs} +0 -0
  883. /package/{esm2015/timerangepicker/timerange.namespace.js → esm2020/timerangepicker/timerange.namespace.mjs} +0 -0
  884. /package/{esm2015/toast/index.js → esm2020/toast/index.mjs} +0 -0
  885. /package/{esm2015/toast/mis-crystal-design-system-toast.js → esm2020/toast/mis-crystal-design-system-toast.mjs} +0 -0
  886. /package/{esm2015/toast/public_api.js → esm2020/toast/public_api.mjs} +0 -0
  887. /package/{esm2015/tooltip/index.js → esm2020/tooltip/index.mjs} +0 -0
  888. /package/{esm2015/tooltip/mis-crystal-design-system-tooltip.js → esm2020/tooltip/mis-crystal-design-system-tooltip.mjs} +0 -0
  889. /package/{esm2015/tooltip/models/tooltip.model.js → esm2020/tooltip/models/tooltip.model.mjs} +0 -0
  890. /package/{esm2015/tooltip/public_api.js → esm2020/tooltip/public_api.mjs} +0 -0
  891. /package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
  892. /package/{esm2015/utils/mis-crystal-design-system-utils.js → esm2020/utils/mis-crystal-design-system-utils.mjs} +0 -0
  893. /package/{esm2015/virtual-scroll/index.js → esm2020/virtual-scroll/index.mjs} +0 -0
  894. /package/{esm2015/virtual-scroll/mis-crystal-design-system-virtual-scroll.js → esm2020/virtual-scroll/mis-crystal-design-system-virtual-scroll.mjs} +0 -0
  895. /package/{esm2015/virtual-scroll/public_api.js → esm2020/virtual-scroll/public_api.mjs} +0 -0
  896. /package/{esm2015/virtual-scroll/virtual-scroll.constants.js → esm2020/virtual-scroll/virtual-scroll.constants.mjs} +0 -0
  897. /package/{esm2015/widgets/classes/async-widget.js → esm2020/widgets/classes/async-widget.mjs} +0 -0
  898. /package/{esm2015/widgets/classes/sync-widget.js → esm2020/widgets/classes/sync-widget.mjs} +0 -0
  899. /package/{esm2015/widgets/index.js → esm2020/widgets/index.mjs} +0 -0
  900. /package/{esm2015/widgets/interfaces/widgets.model.js → esm2020/widgets/interfaces/widgets.model.mjs} +0 -0
  901. /package/{esm2015/widgets/mis-crystal-design-system-widgets.js → esm2020/widgets/mis-crystal-design-system-widgets.mjs} +0 -0
  902. /package/{esm2015/widgets/public_api.js → esm2020/widgets/public_api.mjs} +0 -0
@@ -0,0 +1,102 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, HostListener, NgModule } from '@angular/core';
3
+ import { trigger, transition, style, animate, state } from '@angular/animations';
4
+ import * as i1 from '@angular/common';
5
+ import { CommonModule } from '@angular/common';
6
+
7
+ /** @format */
8
+ class FabComponent {
9
+ constructor(eRef) {
10
+ this.eRef = eRef;
11
+ this.show = false;
12
+ this.options = {};
13
+ this.items = [];
14
+ this.isOpen = false;
15
+ }
16
+ clickout(event) {
17
+ if (!this.eRef.nativeElement.contains(event.target)) {
18
+ this.closeFab();
19
+ }
20
+ }
21
+ ngOnInit() {
22
+ this.options = Object.assign({ size: 56, backgroundColorClosed: "#0937B2", backgroundColorOpened: "#3a5fc1" }, this.options);
23
+ }
24
+ ngOnDestroy() { }
25
+ clickItem(item) {
26
+ this.closeFab();
27
+ item.click();
28
+ }
29
+ closeFab() {
30
+ this.isOpen = false;
31
+ }
32
+ toogleFab() {
33
+ this.isOpen = !this.isOpen;
34
+ }
35
+ }
36
+ FabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FabComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
37
+ FabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FabComponent, selector: "mis-fab", inputs: { show: "show", options: "options", items: "items" }, host: { listeners: { "document:click": "clickout($event)" } }, ngImport: i0, template: "<div class=\"fab-wrapper\" *ngIf=\"show\">\n <div class=\"fab-items\" *ngIf=\"isOpen\" @slideUpFab>\n <div class=\"fab-item\" *ngFor=\"let item of items.reverse(); let i = index\" (click)=\"clickItem(item)\">\n <div *ngIf=\"item.label\" class=\"fab-tooltip\">\n {{ item.label }}\n </div>\n <div\n class=\"fab-button\"\n [ngStyle]=\"{\n backgroundColor: item.backgroundColor || '#0937B2'\n }\"\n >\n <img [src]=\"item.icon\" class=\"add-img\" />\n </div>\n </div>\n </div>\n <div\n class=\"fab-container\"\n [ngStyle]=\"{\n backgroundColor: isOpen ? options.backgroundColorOpened : options.backgroundColorClosed\n }\"\n (click)=\"toogleFab()\"\n >\n <svg\n [@rotateButton]=\"isOpen ? 'rotated' : 'default'\"\n class=\"add-img\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M13.1424 5.15607C13.1424 4.51759 12.6313 4 12.0009 4C11.3704 4 10.8594 4.51759 10.8594 5.15607V10.8421H5.14149C4.51106 10.8421 4 11.3597 4 11.9982C4 12.6367 4.51106 13.1543 5.14149 13.1543H10.8594V18.8439C10.8594 19.4824 11.3704 20 12.0009 20C12.6313 20 13.1424 19.4824 13.1424 18.8439V13.1543H18.8585C19.4889 13.1543 20 12.6367 20 11.9982C20 11.3597 19.4889 10.8421 18.8585 10.8421H13.1424V5.15607Z\"\n fill=\"white\"\n />\n </svg>\n </div>\n</div>\n", styles: [".fab-wrapper{position:fixed;right:24px;bottom:24px;z-index:1000}.fab-wrapper .fab-item{position:relative;padding:0 0 16px 8px}.fab-wrapper .fab-item .fab-tooltip{position:absolute;background-color:#181f33;border-radius:4px;color:#fff;padding:8px;display:flex;justify-content:center;align-items:center;white-space:nowrap;right:100%;top:calc(50% - 8px);transform:translateY(-50%)}.fab-wrapper .fab-item .fab-button{width:40px;height:40px;cursor:pointer;border-radius:50%;display:flex;justify-content:center;align-items:center}.fab-wrapper .fab-container{border-radius:50%;cursor:pointer;display:flex;justify-content:center;align-items:center;width:56px;height:56px}.add-img{height:24px;width:24px}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], animations: [
38
+ trigger("slideUpFab", [
39
+ transition(":enter", [
40
+ style({ transform: "translateY(50px)", opacity: 0 }),
41
+ animate("300ms ease-out", style({ transform: "translateY(0px)", opacity: 1 }))
42
+ ]),
43
+ transition(":leave", [animate("200ms ease-out", style({ transform: "translateY(70px)", opacity: 0 }))])
44
+ ]),
45
+ trigger("rotateButton", [
46
+ state("default", style({ transform: "rotate(0)" })),
47
+ state("rotated", style({ transform: "rotate(45deg)" })),
48
+ transition("rotated => default", animate("300ms ease-out")),
49
+ transition("default => rotated", animate("200ms ease-in"))
50
+ ])
51
+ ] });
52
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FabComponent, decorators: [{
53
+ type: Component,
54
+ args: [{ selector: "mis-fab", animations: [
55
+ trigger("slideUpFab", [
56
+ transition(":enter", [
57
+ style({ transform: "translateY(50px)", opacity: 0 }),
58
+ animate("300ms ease-out", style({ transform: "translateY(0px)", opacity: 1 }))
59
+ ]),
60
+ transition(":leave", [animate("200ms ease-out", style({ transform: "translateY(70px)", opacity: 0 }))])
61
+ ]),
62
+ trigger("rotateButton", [
63
+ state("default", style({ transform: "rotate(0)" })),
64
+ state("rotated", style({ transform: "rotate(45deg)" })),
65
+ transition("rotated => default", animate("300ms ease-out")),
66
+ transition("default => rotated", animate("200ms ease-in"))
67
+ ])
68
+ ], template: "<div class=\"fab-wrapper\" *ngIf=\"show\">\n <div class=\"fab-items\" *ngIf=\"isOpen\" @slideUpFab>\n <div class=\"fab-item\" *ngFor=\"let item of items.reverse(); let i = index\" (click)=\"clickItem(item)\">\n <div *ngIf=\"item.label\" class=\"fab-tooltip\">\n {{ item.label }}\n </div>\n <div\n class=\"fab-button\"\n [ngStyle]=\"{\n backgroundColor: item.backgroundColor || '#0937B2'\n }\"\n >\n <img [src]=\"item.icon\" class=\"add-img\" />\n </div>\n </div>\n </div>\n <div\n class=\"fab-container\"\n [ngStyle]=\"{\n backgroundColor: isOpen ? options.backgroundColorOpened : options.backgroundColorClosed\n }\"\n (click)=\"toogleFab()\"\n >\n <svg\n [@rotateButton]=\"isOpen ? 'rotated' : 'default'\"\n class=\"add-img\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M13.1424 5.15607C13.1424 4.51759 12.6313 4 12.0009 4C11.3704 4 10.8594 4.51759 10.8594 5.15607V10.8421H5.14149C4.51106 10.8421 4 11.3597 4 11.9982C4 12.6367 4.51106 13.1543 5.14149 13.1543H10.8594V18.8439C10.8594 19.4824 11.3704 20 12.0009 20C12.6313 20 13.1424 19.4824 13.1424 18.8439V13.1543H18.8585C19.4889 13.1543 20 12.6367 20 11.9982C20 11.3597 19.4889 10.8421 18.8585 10.8421H13.1424V5.15607Z\"\n fill=\"white\"\n />\n </svg>\n </div>\n</div>\n", styles: [".fab-wrapper{position:fixed;right:24px;bottom:24px;z-index:1000}.fab-wrapper .fab-item{position:relative;padding:0 0 16px 8px}.fab-wrapper .fab-item .fab-tooltip{position:absolute;background-color:#181f33;border-radius:4px;color:#fff;padding:8px;display:flex;justify-content:center;align-items:center;white-space:nowrap;right:100%;top:calc(50% - 8px);transform:translateY(-50%)}.fab-wrapper .fab-item .fab-button{width:40px;height:40px;cursor:pointer;border-radius:50%;display:flex;justify-content:center;align-items:center}.fab-wrapper .fab-container{border-radius:50%;cursor:pointer;display:flex;justify-content:center;align-items:center;width:56px;height:56px}.add-img{height:24px;width:24px}\n"] }]
69
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { show: [{
70
+ type: Input
71
+ }], options: [{
72
+ type: Input
73
+ }], items: [{
74
+ type: Input
75
+ }], clickout: [{
76
+ type: HostListener,
77
+ args: ["document:click", ["$event"]]
78
+ }] } });
79
+
80
+ class FabModule {
81
+ static forRoot() {
82
+ return { ngModule: FabModule, providers: [] };
83
+ }
84
+ }
85
+ FabModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FabModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
86
+ FabModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: FabModule, declarations: [FabComponent], imports: [CommonModule], exports: [FabComponent] });
87
+ FabModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FabModule, imports: [CommonModule] });
88
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FabModule, decorators: [{
89
+ type: NgModule,
90
+ args: [{
91
+ declarations: [FabComponent],
92
+ imports: [CommonModule],
93
+ exports: [FabComponent]
94
+ }]
95
+ }] });
96
+
97
+ /**
98
+ * Generated bundle index. Do not edit.
99
+ */
100
+
101
+ export { FabComponent, FabModule };
102
+ //# sourceMappingURL=mis-crystal-design-system-fab.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mis-crystal-design-system-fab.mjs","sources":["../../../projects/mis-components/fab/fab.component.ts","../../../projects/mis-components/fab/fab.component.html","../../../projects/mis-components/fab/fab.module.ts","../../../projects/mis-components/fab/mis-crystal-design-system-fab.ts"],"sourcesContent":["/** @format */\n\nimport { Component, ElementRef, HostListener, Input, OnDestroy, OnInit } from \"@angular/core\";\nimport { trigger, transition, style, animate, state } from \"@angular/animations\";\n\nexport type FabOptions = {\n backgroundColorClosed?: string;\n backgroundColorOpened?: string;\n size?: number;\n};\n\nexport type FabItem = {\n label?: string;\n icon: string;\n backgroundColor?: string;\n id?: string;\n click?: () => any;\n};\n\nexport type FabItems = FabItem[];\n\n@Component({\n selector: \"mis-fab\",\n templateUrl: \"./fab.component.html\",\n styleUrls: [\"./fab.component.scss\"],\n animations: [\n trigger(\"slideUpFab\", [\n transition(\":enter\", [\n style({ transform: \"translateY(50px)\", opacity: 0 }),\n animate(\"300ms ease-out\", style({ transform: \"translateY(0px)\", opacity: 1 }))\n ]),\n transition(\":leave\", [animate(\"200ms ease-out\", style({ transform: \"translateY(70px)\", opacity: 0 }))])\n ]),\n trigger(\"rotateButton\", [\n state(\"default\", style({ transform: \"rotate(0)\" })),\n state(\"rotated\", style({ transform: \"rotate(45deg)\" })),\n transition(\"rotated => default\", animate(\"300ms ease-out\")),\n transition(\"default => rotated\", animate(\"200ms ease-in\"))\n ])\n ]\n})\nexport class FabComponent implements OnInit, OnDestroy {\n @Input() show: boolean = false;\n @Input() options: FabOptions = {};\n @Input() items: FabItems = [];\n\n isOpen: boolean = false;\n\n constructor(private eRef: ElementRef) {}\n\n @HostListener(\"document:click\", [\"$event\"])\n clickout(event) {\n if (!this.eRef.nativeElement.contains(event.target)) {\n this.closeFab();\n }\n }\n\n ngOnInit(): void {\n this.options = {\n size: 56,\n backgroundColorClosed: \"#0937B2\",\n backgroundColorOpened: \"#3a5fc1\",\n ...this.options\n };\n }\n\n ngOnDestroy(): void {}\n\n clickItem(item: FabItem) {\n this.closeFab();\n item.click();\n }\n\n closeFab() {\n this.isOpen = false;\n }\n\n toogleFab() {\n this.isOpen = !this.isOpen;\n }\n}\n","<div class=\"fab-wrapper\" *ngIf=\"show\">\n <div class=\"fab-items\" *ngIf=\"isOpen\" @slideUpFab>\n <div class=\"fab-item\" *ngFor=\"let item of items.reverse(); let i = index\" (click)=\"clickItem(item)\">\n <div *ngIf=\"item.label\" class=\"fab-tooltip\">\n {{ item.label }}\n </div>\n <div\n class=\"fab-button\"\n [ngStyle]=\"{\n backgroundColor: item.backgroundColor || '#0937B2'\n }\"\n >\n <img [src]=\"item.icon\" class=\"add-img\" />\n </div>\n </div>\n </div>\n <div\n class=\"fab-container\"\n [ngStyle]=\"{\n backgroundColor: isOpen ? options.backgroundColorOpened : options.backgroundColorClosed\n }\"\n (click)=\"toogleFab()\"\n >\n <svg\n [@rotateButton]=\"isOpen ? 'rotated' : 'default'\"\n class=\"add-img\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n fill-rule=\"evenodd\"\n clip-rule=\"evenodd\"\n d=\"M13.1424 5.15607C13.1424 4.51759 12.6313 4 12.0009 4C11.3704 4 10.8594 4.51759 10.8594 5.15607V10.8421H5.14149C4.51106 10.8421 4 11.3597 4 11.9982C4 12.6367 4.51106 13.1543 5.14149 13.1543H10.8594V18.8439C10.8594 19.4824 11.3704 20 12.0009 20C12.6313 20 13.1424 19.4824 13.1424 18.8439V13.1543H18.8585C19.4889 13.1543 20 12.6367 20 11.9982C20 11.3597 19.4889 10.8421 18.8585 10.8421H13.1424V5.15607Z\"\n fill=\"white\"\n />\n </svg>\n </div>\n</div>\n","import { NgModule, ModuleWithProviders } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { FabComponent } from \"./fab.component\";\n\n@NgModule({\n declarations: [FabComponent],\n imports: [CommonModule],\n exports: [FabComponent]\n})\nexport class FabModule {\n static forRoot(): ModuleWithProviders<FabModule> {\n return { ngModule: FabModule, providers: [] };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAAA;MAyCa,YAAY,CAAA;AAOvB,IAAA,WAAA,CAAoB,IAAgB,EAAA;AAAhB,QAAA,IAAI,CAAA,IAAA,GAAJ,IAAI,CAAY;AAN3B,QAAA,IAAI,CAAA,IAAA,GAAY,KAAK,CAAC;AACtB,QAAA,IAAO,CAAA,OAAA,GAAe,EAAE,CAAC;AACzB,QAAA,IAAK,CAAA,KAAA,GAAa,EAAE,CAAC;AAE9B,QAAA,IAAM,CAAA,MAAA,GAAY,KAAK,CAAC;KAEgB;AAGxC,IAAA,QAAQ,CAAC,KAAK,EAAA;AACZ,QAAA,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE;YACnD,IAAI,CAAC,QAAQ,EAAE,CAAC;AACjB,SAAA;KACF;IAED,QAAQ,GAAA;AACN,QAAA,IAAI,CAAC,OAAO,GAAA,MAAA,CAAA,MAAA,CAAA,EACV,IAAI,EAAE,EAAE,EACR,qBAAqB,EAAE,SAAS,EAChC,qBAAqB,EAAE,SAAS,EAAA,EAC7B,IAAI,CAAC,OAAO,CAChB,CAAC;KACH;AAED,IAAA,WAAW,MAAW;AAEtB,IAAA,SAAS,CAAC,IAAa,EAAA;QACrB,IAAI,CAAC,QAAQ,EAAE,CAAC;QAChB,IAAI,CAAC,KAAK,EAAE,CAAC;KACd;IAED,QAAQ,GAAA;AACN,QAAA,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;KACrB;IAED,SAAS,GAAA;AACP,QAAA,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC;KAC5B;;yGAtCU,YAAY,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;6FAAZ,YAAY,EAAA,QAAA,EAAA,SAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,OAAA,EAAA,SAAA,EAAA,KAAA,EAAA,OAAA,EAAA,EAAA,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,gBAAA,EAAA,kBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECzCzB,+/CAyCA,EDhBc,MAAA,EAAA,CAAA,2rBAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,CAAA,SAAA,EAAA,cAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,IAAA,EAAA,QAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,UAAA,EAAA;QACV,OAAO,CAAC,YAAY,EAAE;YACpB,UAAU,CAAC,QAAQ,EAAE;gBACnB,KAAK,CAAC,EAAE,SAAS,EAAE,kBAAkB,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;AACpD,gBAAA,OAAO,CAAC,gBAAgB,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,iBAAiB,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC;aAC/E,CAAC;YACF,UAAU,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,gBAAgB,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,kBAAkB,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;SACxG,CAAC;QACF,OAAO,CAAC,cAAc,EAAE;YACtB,KAAK,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,CAAC,CAAC;YACnD,KAAK,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,eAAe,EAAE,CAAC,CAAC;AACvD,YAAA,UAAU,CAAC,oBAAoB,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAC3D,YAAA,UAAU,CAAC,oBAAoB,EAAE,OAAO,CAAC,eAAe,CAAC,CAAC;SAC3D,CAAC;AACH,KAAA,EAAA,CAAA,CAAA;2FAEU,YAAY,EAAA,UAAA,EAAA,CAAA;kBApBxB,SAAS;YACE,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,SAAS,EAGP,UAAA,EAAA;wBACV,OAAO,CAAC,YAAY,EAAE;4BACpB,UAAU,CAAC,QAAQ,EAAE;gCACnB,KAAK,CAAC,EAAE,SAAS,EAAE,kBAAkB,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;AACpD,gCAAA,OAAO,CAAC,gBAAgB,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,iBAAiB,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC;6BAC/E,CAAC;4BACF,UAAU,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,gBAAgB,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,kBAAkB,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;yBACxG,CAAC;wBACF,OAAO,CAAC,cAAc,EAAE;4BACtB,KAAK,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,CAAC,CAAC;4BACnD,KAAK,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE,SAAS,EAAE,eAAe,EAAE,CAAC,CAAC;AACvD,4BAAA,UAAU,CAAC,oBAAoB,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;AAC3D,4BAAA,UAAU,CAAC,oBAAoB,EAAE,OAAO,CAAC,eAAe,CAAC,CAAC;yBAC3D,CAAC;qBACH,EAAA,QAAA,EAAA,+/CAAA,EAAA,MAAA,EAAA,CAAA,2rBAAA,CAAA,EAAA,CAAA;iGAGQ,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBAON,QAAQ,EAAA,CAAA;sBADP,YAAY;uBAAC,gBAAgB,EAAE,CAAC,QAAQ,CAAC,CAAA;;;MEzC/B,SAAS,CAAA;AACpB,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC;KAC/C;;sGAHU,SAAS,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAT,SAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,SAAS,EAJL,YAAA,EAAA,CAAA,YAAY,CACjB,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,YAAY,CAAA,EAAA,CAAA,CAAA;AAEX,SAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,SAAS,YAHV,YAAY,CAAA,EAAA,CAAA,CAAA;2FAGX,SAAS,EAAA,UAAA,EAAA,CAAA;kBALrB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,YAAY,CAAC;oBAC5B,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,YAAY,CAAC;iBACxB,CAAA;;;ACRD;;AAEG;;;;"}
@@ -0,0 +1,80 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Component, Input, Output, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ class InputStepperComponent {
7
+ constructor() {
8
+ this.value = 1;
9
+ this.width = '200px';
10
+ this.minLimit = 0;
11
+ this.maxLimit = 2;
12
+ this.valueChange = new EventEmitter();
13
+ }
14
+ increment() {
15
+ if (this.value === this.maxLimit)
16
+ return;
17
+ this.value++;
18
+ this.emitValueChange();
19
+ }
20
+ decrement() {
21
+ if (this.value > 0) {
22
+ this.value--;
23
+ this.emitValueChange();
24
+ }
25
+ }
26
+ onInputChange(newValue) {
27
+ const parsedValue = parseInt(newValue, 10);
28
+ if (!isNaN(parsedValue)) {
29
+ this.value = parsedValue;
30
+ this.emitValueChange();
31
+ }
32
+ }
33
+ emitValueChange() {
34
+ console.log("value change", this.value);
35
+ this.valueChange.emit(this.value);
36
+ }
37
+ }
38
+ InputStepperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputStepperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
39
+ InputStepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: InputStepperComponent, selector: "mis-input-stepper", inputs: { value: "value", width: "width", minLimit: "minLimit", maxLimit: "maxLimit" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: "<div class=\"nudger\" [ngStyle]=\"{'max-width': width }\">\n <button (click)=\"decrement()\" [ngClass]=\"{'disabled': value === minLimit}\">-</button>\n <input type=\"text\" [value]=\"value\" (input)=\"onInputChange($event.target.value)\">\n <button (click)=\"increment()\" [ngClass]=\"{'disabled': value === maxLimit}\">+</button>\n</div>\n ", styles: [".nudger{display:flex;align-items:center;justify-content:center;width:100%;border:1px solid #0937B2;border-radius:4px}button{padding:.5em 1em;cursor:pointer;border:none;background-color:#fff;transition:background-color .3s;color:#0937b2}button:hover{background-color:#fff}input{width:40%;text-align:center;padding:.5em 1em;color:#0937b2;border:none}@media screen and (max-width: 600px){.nudger{max-width:150px}}.disabled{opacity:.6;cursor:not-allowed}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputStepperComponent, decorators: [{
41
+ type: Component,
42
+ args: [{ selector: 'mis-input-stepper', template: "<div class=\"nudger\" [ngStyle]=\"{'max-width': width }\">\n <button (click)=\"decrement()\" [ngClass]=\"{'disabled': value === minLimit}\">-</button>\n <input type=\"text\" [value]=\"value\" (input)=\"onInputChange($event.target.value)\">\n <button (click)=\"increment()\" [ngClass]=\"{'disabled': value === maxLimit}\">+</button>\n</div>\n ", styles: [".nudger{display:flex;align-items:center;justify-content:center;width:100%;border:1px solid #0937B2;border-radius:4px}button{padding:.5em 1em;cursor:pointer;border:none;background-color:#fff;transition:background-color .3s;color:#0937b2}button:hover{background-color:#fff}input{width:40%;text-align:center;padding:.5em 1em;color:#0937b2;border:none}@media screen and (max-width: 600px){.nudger{max-width:150px}}.disabled{opacity:.6;cursor:not-allowed}\n"] }]
43
+ }], ctorParameters: function () { return []; }, propDecorators: { value: [{
44
+ type: Input
45
+ }], width: [{
46
+ type: Input
47
+ }], minLimit: [{
48
+ type: Input
49
+ }], maxLimit: [{
50
+ type: Input
51
+ }], valueChange: [{
52
+ type: Output
53
+ }] } });
54
+
55
+ class InputStepperModule {
56
+ }
57
+ InputStepperModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputStepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
58
+ InputStepperModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: InputStepperModule, declarations: [InputStepperComponent], imports: [CommonModule], exports: [InputStepperComponent] });
59
+ InputStepperModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputStepperModule, imports: [CommonModule] });
60
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputStepperModule, decorators: [{
61
+ type: NgModule,
62
+ args: [{
63
+ declarations: [
64
+ InputStepperComponent
65
+ ],
66
+ imports: [
67
+ CommonModule
68
+ ],
69
+ exports: [
70
+ InputStepperComponent
71
+ ]
72
+ }]
73
+ }] });
74
+
75
+ /**
76
+ * Generated bundle index. Do not edit.
77
+ */
78
+
79
+ export { InputStepperComponent, InputStepperModule };
80
+ //# sourceMappingURL=mis-crystal-design-system-input-stepper.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mis-crystal-design-system-input-stepper.mjs","sources":["../../../projects/mis-components/input-stepper/input-stepper/input-stepper.component.ts","../../../projects/mis-components/input-stepper/input-stepper/input-stepper.component.html","../../../projects/mis-components/input-stepper/input-stepper.module.ts","../../../projects/mis-components/input-stepper/mis-crystal-design-system-input-stepper.ts"],"sourcesContent":["import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\n\n@Component({\n selector: 'mis-input-stepper',\n templateUrl: './input-stepper.component.html',\n styleUrls: ['./input-stepper.component.css']\n})\nexport class InputStepperComponent {\n @Input() value: number = 1;\n @Input() width?: string = '200px';\n @Input() minLimit : number = 0;\n @Input() maxLimit: number = 2;\n @Output() valueChange: EventEmitter<number> = new EventEmitter<number>();\n\n constructor() { }\n\n increment() {\n if(this.value === this.maxLimit) return;\n this.value++;\n this.emitValueChange();\n }\n\n decrement() {\n if (this.value > 0) {\n this.value--;\n this.emitValueChange();\n }\n }\n\n onInputChange(newValue: string) {\n const parsedValue = parseInt(newValue, 10);\n if (!isNaN(parsedValue)) {\n this.value = parsedValue;\n this.emitValueChange();\n }\n }\n\n private emitValueChange() {\n console.log(\"value change\", this.value);\n this.valueChange.emit(this.value);\n }\n\n}\n","<div class=\"nudger\" [ngStyle]=\"{'max-width': width }\">\n <button (click)=\"decrement()\" [ngClass]=\"{'disabled': value === minLimit}\">-</button>\n <input type=\"text\" [value]=\"value\" (input)=\"onInputChange($event.target.value)\">\n <button (click)=\"increment()\" [ngClass]=\"{'disabled': value === maxLimit}\">+</button>\n</div>\n ","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { InputStepperComponent } from './input-stepper/input-stepper.component';\n\n\n\n@NgModule({\n declarations: [\n InputStepperComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n InputStepperComponent\n ]\n})\nexport class InputStepperModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,115 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, Self, Optional, Component, Input, ContentChild, NgModule } from '@angular/core';
3
+ import { ReplaySubject, Subject } from 'rxjs';
4
+ import { takeUntil } from 'rxjs/operators';
5
+ import * as i1 from '@angular/forms';
6
+ import { FormsModule } from '@angular/forms';
7
+ import * as i1$1 from '@angular/common';
8
+ import { CommonModule } from '@angular/common';
9
+
10
+ class MisInputDirective {
11
+ constructor(el, control) {
12
+ this.el = el;
13
+ this.control = control;
14
+ this.validityChange = new ReplaySubject(1);
15
+ this.validity = this.validityChange.asObservable();
16
+ this.endObs = new Subject();
17
+ this.focus = false;
18
+ this.hasValue = false;
19
+ }
20
+ ngOnInit() {
21
+ var _a, _b;
22
+ (_b = (_a = this.control) === null || _a === void 0 ? void 0 : _a.control) === null || _b === void 0 ? void 0 : _b.valueChanges.pipe(takeUntil(this.endObs)).subscribe(() => {
23
+ var _a;
24
+ this.validityChange.next(!((_a = this.control.control) === null || _a === void 0 ? void 0 : _a.invalid));
25
+ });
26
+ this.el.nativeElement.placeholder += " ";
27
+ }
28
+ ngOnDestroy() {
29
+ this.endObs.next();
30
+ this.endObs.complete();
31
+ }
32
+ }
33
+ MisInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisInputDirective, deps: [{ token: i0.ElementRef }, { token: i1.NgControl, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Directive });
34
+ MisInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: MisInputDirective, selector: "input[misInput]", ngImport: i0 });
35
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisInputDirective, decorators: [{
36
+ type: Directive,
37
+ args: [{
38
+ // tslint:disable-next-line
39
+ selector: "input[misInput]"
40
+ }]
41
+ }], ctorParameters: function () {
42
+ return [{ type: i0.ElementRef }, { type: i1.NgControl, decorators: [{
43
+ type: Self
44
+ }, {
45
+ type: Optional
46
+ }] }];
47
+ } });
48
+
49
+ class MisInputComponent {
50
+ constructor() {
51
+ this.type = "floating";
52
+ this.size = "sm";
53
+ this.noHints = false;
54
+ this.hasError = false; // show input in error state
55
+ this.isMandatory = false; // show input as mandatory
56
+ this.inputValidity = true;
57
+ }
58
+ set formInput(input) {
59
+ var _a, _b;
60
+ if (!this.placeholder) {
61
+ this.placeholder = (input === null || input === void 0 ? void 0 : input.el.nativeElement.placeholder) || "";
62
+ }
63
+ this.inputCtrl = (_a = input.control) === null || _a === void 0 ? void 0 : _a.control;
64
+ (_b = this.inputSubscription) === null || _b === void 0 ? void 0 : _b.unsubscribe();
65
+ this.inputSubscription = input === null || input === void 0 ? void 0 : input.validity.subscribe(res => (this.inputValidity = res));
66
+ this.placeholder += " ";
67
+ }
68
+ ngOnInit() { }
69
+ ngOnDestroy() {
70
+ var _a;
71
+ (_a = this.inputSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
72
+ }
73
+ }
74
+ MisInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75
+ MisInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: MisInputComponent, selector: "mis-input", inputs: { type: "type", size: "size", placeholder: "placeholder", noHints: "noHints", hasError: "hasError", isMandatory: "isMandatory" }, queries: [{ propertyName: "formInput", first: true, predicate: MisInputDirective, descendants: true }], ngImport: i0, template: "<div\n [class]=\"'input-container ' + size\"\n [ngClass]=\"{\n rounded: type === 'rounded',\n floating: type === 'floating',\n 'has-error': !inputValidity || hasError,\n 'no-hint': noHints,\n 'mis-disabled': inputCtrl?.disabled\n }\"\n>\n <div class=\"input-wrapper\">\n <ng-content select=\"[mis-input-icon]\"></ng-content>\n <div class=\"mis-input\">\n <ng-content select=\"input\"></ng-content>\n <span class=\"mis-placeholder\">{{ placeholder }}<span *ngIf=\"isMandatory\" style=\"color: red;\">*</span></span>\n </div>\n <ng-content select=\"[mis-input-act]\"></ng-content>\n </div>\n <ng-content select=\"[mis-input-hint]\"></ng-content>\n <ng-content select=\"[mis-input-error]\"></ng-content>\n</div>\n", styles: [":root{--pmry-200: #99BAF7;--pmry-100: #CBDDFB;--pmry-500: #0937B2;--pmry-400: #3C68D0;--pmry-600: #062A99;--pmry-700: #041F80;--pmry-300: #638FE7;--pmry-800: #021567;--pmry-900: #010F55;--sec-d-purple: #40447F;--sec-maroon: #6B034E;--sec-mud-red: #B23600;--sec-orange: #ED711C;--sec-purple: #815FD5;--sec-teal: #10ADAE;--sec-yellow: #D4900C;--sec-green: #547F40;--sec-bright-green: #27D22E;--sec-dark-teal: #035F6B;--sec-chocolate: #7C2F33;--sec-rube-pink: #C13D6D;--sec-cerulean: #0087B2;--sem-error: #B00020;--sem-info: #0091FF;--sem-warning: #FF9D00;--sem-success: #38AF49;--grey-bg-1: #FAFAFA;--grey-bg: #F5F5F5;--grey-seperators: #E0E0E0;--grey-disabled: #C8CDD3;--grey-hover: #F5F7FC;--grey-pressed: #E6EBF7;--grey-row: #F5F7FC;--dec-light-yellow: #F4E7C3;--dec-light-purple: #DACFF9;--dec-light-green: #E4F5E9;--dec-light-green2: #F1FFF3;--dec-light-pink: #FAE1EA;--dec-: #F4CBC1;--dec-lt-orange: #FAEFED;--dec-light-blue: #CFECF9;--dec-row-selection: #F1FDF8;--dec-row-selection2: #F2FBFF;--dec-row-lines: #D3E1E9;--text-white: #FFFFFF;--text-disabled: #929DAB;--text-muted: #6A737D;--text-black: #181F33;--MR-solid-blue2:#C8D5F6;--MR-solid-purple:#C9C3FB;--MR-solid-orange:#EEAC9F;--MR-solid-green:#ACDADA;--MR-solid-brown:#E8C8AF;--MR-solid-yellow:#FFEFC7;--MR-solid-blue:#BBE6FF;--MR-solid-pink:#FFC6F2;--tr-hover:#F0F3FA;--tr-pressed:#DAE1F3}.input-container{position:relative;padding-bottom:24px}.input-container.mis-disabled .input-wrapper{pointer-events:none!important}.input-container .input-wrapper{box-sizing:border-box;display:flex;align-items:center;flex-direction:row;flex-wrap:nowrap;transition:all ease-in 60ms;background-color:#fff;padding:3px 16px;gap:16px}.input-container .input-wrapper .mis-input{flex:1 1 auto;z-index:0;position:relative;display:flex;align-items:center}.input-container .input-wrapper input{flex:1 1 auto;border:none;outline:none;height:100%;padding:0;font-family:Lato;font-style:normal;font-weight:400;font-size:16px;height:24px;color:#181f33;background-color:transparent;width:100%;vertical-align:middle}.input-container .input-wrapper input::placeholder{transition:all ease-in .1s;opacity:0;transform-origin:left center;color:transparent}.input-container .input-wrapper .mis-placeholder{position:absolute;font-family:Lato;font-style:normal;font-weight:400;font-size:16px;line-height:24px;color:#6a737d;z-index:-1;transition:all ease-in .15s}.input-container .input-wrapper:focus-within{background-color:#f5f5f5}.input-container .input-wrapper:focus-within{border:1px solid #0937B2}.input-container .input-wrapper [mis-input-act],.input-container .input-wrapper [mis-input-icon]{width:18px;height:18px;color:#6a737d;font-size:24px;line-height:18px}.input-container .input-wrapper [mis-input-act]{cursor:pointer}.input-container.no-hint{padding-bottom:0}.input-container.rounded input{box-sizing:initial}.input-container.rounded.sm input{padding:3px 16px}.input-container.rounded.md input{padding:9px 16px}.input-container.rounded.lg input{padding:15px 16px}.input-container.rounded .input-wrapper{border-radius:4px;border:1px solid #e0e0e0;padding:0}.input-container.rounded .input-wrapper:hover{background-color:#f5f5f5}.input-container.rounded .input-wrapper:focus-within{border:1px solid #0937b2}.input-container.rounded .input-wrapper input:not(:placeholder-shown)+.mis-placeholder{color:transparent!important}.input-container.rounded .input-wrapper .mis-placeholder{margin-left:16px;transition-duration:50ms}.input-container.rounded.has-error .input-wrapper{border:1px solid #b00020!important}.input-container.floating .input-wrapper{padding-top:24px;padding-bottom:7px;border-bottom:1px solid #e0e0e0}.input-container.floating .input-wrapper input:focus+.mis-placeholder{color:#0937b2!important}.input-container.floating .input-wrapper input:not(:placeholder-shown)+.mis-placeholder,.input-container.floating .input-wrapper input:focus+.mis-placeholder{transform:translateY(calc(-100% + 6px))!important;font-size:12px!important;letter-spacing:.2px!important}.input-container.floating .input-wrapper:focus-within{border:none;border-bottom:1px solid #0937b2}.input-container.floating .input-wrapper:focus-within input::placeholder{color:#6a737d;opacity:1;font-size:16px}.input-container.floating.has-error .input-wrapper{border-bottom:1px solid #b00020!important}.input-container.floating.has-error .input-wrapper .mis-placeholder{color:#b00020!important}.input-container [mis-input-hint],.input-container [mis-input-error]{position:absolute;left:0;right:0;bottom:0;line-height:24px;height:24px;font-size:12px;color:#6a737d;letter-spacing:.2px}.input-container [mis-input-error]{color:#b00020}\n"], dependencies: [{ kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
76
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisInputComponent, decorators: [{
77
+ type: Component,
78
+ args: [{ selector: "mis-input", template: "<div\n [class]=\"'input-container ' + size\"\n [ngClass]=\"{\n rounded: type === 'rounded',\n floating: type === 'floating',\n 'has-error': !inputValidity || hasError,\n 'no-hint': noHints,\n 'mis-disabled': inputCtrl?.disabled\n }\"\n>\n <div class=\"input-wrapper\">\n <ng-content select=\"[mis-input-icon]\"></ng-content>\n <div class=\"mis-input\">\n <ng-content select=\"input\"></ng-content>\n <span class=\"mis-placeholder\">{{ placeholder }}<span *ngIf=\"isMandatory\" style=\"color: red;\">*</span></span>\n </div>\n <ng-content select=\"[mis-input-act]\"></ng-content>\n </div>\n <ng-content select=\"[mis-input-hint]\"></ng-content>\n <ng-content select=\"[mis-input-error]\"></ng-content>\n</div>\n", styles: [":root{--pmry-200: #99BAF7;--pmry-100: #CBDDFB;--pmry-500: #0937B2;--pmry-400: #3C68D0;--pmry-600: #062A99;--pmry-700: #041F80;--pmry-300: #638FE7;--pmry-800: #021567;--pmry-900: #010F55;--sec-d-purple: #40447F;--sec-maroon: #6B034E;--sec-mud-red: #B23600;--sec-orange: #ED711C;--sec-purple: #815FD5;--sec-teal: #10ADAE;--sec-yellow: #D4900C;--sec-green: #547F40;--sec-bright-green: #27D22E;--sec-dark-teal: #035F6B;--sec-chocolate: #7C2F33;--sec-rube-pink: #C13D6D;--sec-cerulean: #0087B2;--sem-error: #B00020;--sem-info: #0091FF;--sem-warning: #FF9D00;--sem-success: #38AF49;--grey-bg-1: #FAFAFA;--grey-bg: #F5F5F5;--grey-seperators: #E0E0E0;--grey-disabled: #C8CDD3;--grey-hover: #F5F7FC;--grey-pressed: #E6EBF7;--grey-row: #F5F7FC;--dec-light-yellow: #F4E7C3;--dec-light-purple: #DACFF9;--dec-light-green: #E4F5E9;--dec-light-green2: #F1FFF3;--dec-light-pink: #FAE1EA;--dec-: #F4CBC1;--dec-lt-orange: #FAEFED;--dec-light-blue: #CFECF9;--dec-row-selection: #F1FDF8;--dec-row-selection2: #F2FBFF;--dec-row-lines: #D3E1E9;--text-white: #FFFFFF;--text-disabled: #929DAB;--text-muted: #6A737D;--text-black: #181F33;--MR-solid-blue2:#C8D5F6;--MR-solid-purple:#C9C3FB;--MR-solid-orange:#EEAC9F;--MR-solid-green:#ACDADA;--MR-solid-brown:#E8C8AF;--MR-solid-yellow:#FFEFC7;--MR-solid-blue:#BBE6FF;--MR-solid-pink:#FFC6F2;--tr-hover:#F0F3FA;--tr-pressed:#DAE1F3}.input-container{position:relative;padding-bottom:24px}.input-container.mis-disabled .input-wrapper{pointer-events:none!important}.input-container .input-wrapper{box-sizing:border-box;display:flex;align-items:center;flex-direction:row;flex-wrap:nowrap;transition:all ease-in 60ms;background-color:#fff;padding:3px 16px;gap:16px}.input-container .input-wrapper .mis-input{flex:1 1 auto;z-index:0;position:relative;display:flex;align-items:center}.input-container .input-wrapper input{flex:1 1 auto;border:none;outline:none;height:100%;padding:0;font-family:Lato;font-style:normal;font-weight:400;font-size:16px;height:24px;color:#181f33;background-color:transparent;width:100%;vertical-align:middle}.input-container .input-wrapper input::placeholder{transition:all ease-in .1s;opacity:0;transform-origin:left center;color:transparent}.input-container .input-wrapper .mis-placeholder{position:absolute;font-family:Lato;font-style:normal;font-weight:400;font-size:16px;line-height:24px;color:#6a737d;z-index:-1;transition:all ease-in .15s}.input-container .input-wrapper:focus-within{background-color:#f5f5f5}.input-container .input-wrapper:focus-within{border:1px solid #0937B2}.input-container .input-wrapper [mis-input-act],.input-container .input-wrapper [mis-input-icon]{width:18px;height:18px;color:#6a737d;font-size:24px;line-height:18px}.input-container .input-wrapper [mis-input-act]{cursor:pointer}.input-container.no-hint{padding-bottom:0}.input-container.rounded input{box-sizing:initial}.input-container.rounded.sm input{padding:3px 16px}.input-container.rounded.md input{padding:9px 16px}.input-container.rounded.lg input{padding:15px 16px}.input-container.rounded .input-wrapper{border-radius:4px;border:1px solid #e0e0e0;padding:0}.input-container.rounded .input-wrapper:hover{background-color:#f5f5f5}.input-container.rounded .input-wrapper:focus-within{border:1px solid #0937b2}.input-container.rounded .input-wrapper input:not(:placeholder-shown)+.mis-placeholder{color:transparent!important}.input-container.rounded .input-wrapper .mis-placeholder{margin-left:16px;transition-duration:50ms}.input-container.rounded.has-error .input-wrapper{border:1px solid #b00020!important}.input-container.floating .input-wrapper{padding-top:24px;padding-bottom:7px;border-bottom:1px solid #e0e0e0}.input-container.floating .input-wrapper input:focus+.mis-placeholder{color:#0937b2!important}.input-container.floating .input-wrapper input:not(:placeholder-shown)+.mis-placeholder,.input-container.floating .input-wrapper input:focus+.mis-placeholder{transform:translateY(calc(-100% + 6px))!important;font-size:12px!important;letter-spacing:.2px!important}.input-container.floating .input-wrapper:focus-within{border:none;border-bottom:1px solid #0937b2}.input-container.floating .input-wrapper:focus-within input::placeholder{color:#6a737d;opacity:1;font-size:16px}.input-container.floating.has-error .input-wrapper{border-bottom:1px solid #b00020!important}.input-container.floating.has-error .input-wrapper .mis-placeholder{color:#b00020!important}.input-container [mis-input-hint],.input-container [mis-input-error]{position:absolute;left:0;right:0;bottom:0;line-height:24px;height:24px;font-size:12px;color:#6a737d;letter-spacing:.2px}.input-container [mis-input-error]{color:#b00020}\n"] }]
79
+ }], ctorParameters: function () { return []; }, propDecorators: { type: [{
80
+ type: Input
81
+ }], size: [{
82
+ type: Input
83
+ }], placeholder: [{
84
+ type: Input
85
+ }], noHints: [{
86
+ type: Input
87
+ }], hasError: [{
88
+ type: Input
89
+ }], isMandatory: [{
90
+ type: Input
91
+ }], formInput: [{
92
+ type: ContentChild,
93
+ args: [MisInputDirective]
94
+ }] } });
95
+
96
+ class MisInputModule {
97
+ }
98
+ MisInputModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
99
+ MisInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: MisInputModule, declarations: [MisInputComponent, MisInputDirective], imports: [CommonModule, FormsModule], exports: [MisInputComponent, MisInputDirective] });
100
+ MisInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisInputModule, imports: [CommonModule, FormsModule] });
101
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisInputModule, decorators: [{
102
+ type: NgModule,
103
+ args: [{
104
+ declarations: [MisInputComponent, MisInputDirective],
105
+ imports: [CommonModule, FormsModule],
106
+ exports: [MisInputComponent, MisInputDirective]
107
+ }]
108
+ }] });
109
+
110
+ /**
111
+ * Generated bundle index. Do not edit.
112
+ */
113
+
114
+ export { MisInputComponent, MisInputDirective, MisInputModule };
115
+ //# sourceMappingURL=mis-crystal-design-system-input.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mis-crystal-design-system-input.mjs","sources":["../../../projects/mis-components/input/directives/input/input.directive.ts","../../../projects/mis-components/input/mis-input.component.ts","../../../projects/mis-components/input/mis-input.component.html","../../../projects/mis-components/input/mis-input.module.ts","../../../projects/mis-components/input/mis-crystal-design-system-input.ts"],"sourcesContent":["import { Directive, ElementRef, OnDestroy, OnInit, Optional, Self } from \"@angular/core\";\nimport { NgControl } from \"@angular/forms\";\nimport { ReplaySubject, Subject, Subscription } from \"rxjs\";\nimport { takeUntil } from \"rxjs/operators\";\n\n@Directive({\n // tslint:disable-next-line\n selector: \"input[misInput]\"\n})\nexport class MisInputDirective implements OnInit, OnDestroy {\n constructor(public el: ElementRef, @Self() @Optional() public control: NgControl) {}\n private validityChange: ReplaySubject<boolean> = new ReplaySubject(1);\n validity = this.validityChange.asObservable();\n endObs: Subject<void> = new Subject();\n focus = false;\n hasValue = false;\n\n ngOnInit(): void {\n this.control?.control?.valueChanges.pipe(takeUntil(this.endObs)).subscribe(() => {\n this.validityChange.next(!this.control.control?.invalid);\n });\n this.el.nativeElement.placeholder += \" \";\n }\n ngOnDestroy(): void {\n this.endObs.next();\n this.endObs.complete();\n }\n}\n","import { Component, ContentChild, Input, OnDestroy, OnInit, ViewEncapsulation } from \"@angular/core\";\nimport { AbstractControl } from \"@angular/forms\";\nimport { Subscription } from \"rxjs\";\nimport { MisInputDirective } from \"./directives/input/input.directive\";\n\n@Component({\n selector: \"mis-input\",\n templateUrl: \"./mis-input.component.html\",\n styleUrls: [\"./mis-input.component.scss\"]\n})\nexport class MisInputComponent implements OnInit, OnDestroy {\n @Input() type: \"rounded\" | \"floating\" = \"floating\";\n @Input() size: \"sm\" | \"md\" | \"lg\" = \"sm\";\n @Input() placeholder: string; // floating placeholder text\n @Input() noHints = false;\n @Input() hasError = false; // show input in error state\n @Input() isMandatory:boolean = false; // show input as mandatory\n @ContentChild(MisInputDirective) set formInput(input: MisInputDirective) {\n if (!this.placeholder) {\n this.placeholder = input?.el.nativeElement.placeholder || \"\";\n }\n this.inputCtrl = input.control?.control;\n this.inputSubscription?.unsubscribe();\n this.inputSubscription = input?.validity.subscribe(res => (this.inputValidity = res));\n this.placeholder += \" \";\n }\n inputCtrl: AbstractControl;\n inputSubscription: Subscription | undefined;\n inputValidity: boolean = true;\n constructor() {}\n\n ngOnInit(): void {}\n ngOnDestroy(): void {\n this.inputSubscription?.unsubscribe();\n }\n}\n","<div\n [class]=\"'input-container ' + size\"\n [ngClass]=\"{\n rounded: type === 'rounded',\n floating: type === 'floating',\n 'has-error': !inputValidity || hasError,\n 'no-hint': noHints,\n 'mis-disabled': inputCtrl?.disabled\n }\"\n>\n <div class=\"input-wrapper\">\n <ng-content select=\"[mis-input-icon]\"></ng-content>\n <div class=\"mis-input\">\n <ng-content select=\"input\"></ng-content>\n <span class=\"mis-placeholder\">{{ placeholder }}<span *ngIf=\"isMandatory\" style=\"color: red;\">*</span></span>\n </div>\n <ng-content select=\"[mis-input-act]\"></ng-content>\n </div>\n <ng-content select=\"[mis-input-hint]\"></ng-content>\n <ng-content select=\"[mis-input-error]\"></ng-content>\n</div>\n","import { CommonModule } from \"@angular/common\";\nimport { NgModule } from \"@angular/core\";\nimport { FormsModule } from \"@angular/forms\";\nimport { MisInputDirective } from \"./directives/input/input.directive\";\nimport { MisInputComponent } from \"./mis-input.component\";\n\n@NgModule({\n declarations: [MisInputComponent, MisInputDirective],\n imports: [CommonModule, FormsModule],\n exports: [MisInputComponent, MisInputDirective]\n})\nexport class MisInputModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":";;;;;;;;;MASa,iBAAiB,CAAA;IAC5B,WAAmB,CAAA,EAAc,EAA6B,OAAkB,EAAA;AAA7D,QAAA,IAAE,CAAA,EAAA,GAAF,EAAE,CAAY;AAA6B,QAAA,IAAO,CAAA,OAAA,GAAP,OAAO,CAAW;QACxE,IAAA,CAAA,cAAc,GAA2B,IAAI,aAAa,CAAC,CAAC,CAAC,CAAC;QACtE,IAAA,CAAA,QAAQ,GAAG,IAAI,CAAC,cAAc,CAAC,YAAY,EAAE,CAAC;AAC9C,QAAA,IAAA,CAAA,MAAM,GAAkB,IAAI,OAAO,EAAE,CAAC;AACtC,QAAA,IAAK,CAAA,KAAA,GAAG,KAAK,CAAC;AACd,QAAA,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;KALmE;IAOpF,QAAQ,GAAA;;QACN,CAAA,EAAA,GAAA,CAAA,EAAA,GAAA,IAAI,CAAC,OAAO,0CAAE,OAAO,MAAA,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,EAAA,CAAE,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAE,CAAA,SAAS,CAAC,MAAK;;AAC9E,YAAA,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,EAAC,CAAA,EAAA,GAAA,IAAI,CAAC,OAAO,CAAC,OAAO,0CAAE,OAAO,CAAA,CAAC,CAAC;AAC3D,SAAC,CAAC,CAAC;QACH,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,WAAW,IAAI,GAAG,CAAC;KAC1C;IACD,WAAW,GAAA;AACT,QAAA,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;AACnB,QAAA,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC;KACxB;;8GAjBU,iBAAiB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,IAAA,EAAA,IAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAAjB,iBAAiB,EAAA,QAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAJ7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;;AAET,oBAAA,QAAQ,EAAE,iBAAiB;iBAC5B,CAAA;;;8BAEqC,IAAI;;8BAAI,QAAQ;;;;MCAzC,iBAAiB,CAAA;AAmB5B,IAAA,WAAA,GAAA;AAlBS,QAAA,IAAI,CAAA,IAAA,GAA2B,UAAU,CAAC;AAC1C,QAAA,IAAI,CAAA,IAAA,GAAuB,IAAI,CAAC;AAEhC,QAAA,IAAO,CAAA,OAAA,GAAG,KAAK,CAAC;AAChB,QAAA,IAAA,CAAA,QAAQ,GAAG,KAAK,CAAC;AACjB,QAAA,IAAA,CAAA,WAAW,GAAW,KAAK,CAAC;AAYrC,QAAA,IAAa,CAAA,aAAA,GAAY,IAAI,CAAC;KACd;IAZhB,IAAqC,SAAS,CAAC,KAAwB,EAAA;;AACrE,QAAA,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE;AACrB,YAAA,IAAI,CAAC,WAAW,GAAG,CAAA,KAAK,aAAL,KAAK,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAL,KAAK,CAAE,EAAE,CAAC,aAAa,CAAC,WAAW,KAAI,EAAE,CAAC;AAC9D,SAAA;QACD,IAAI,CAAC,SAAS,GAAG,CAAA,EAAA,GAAA,KAAK,CAAC,OAAO,MAAE,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,EAAA,CAAA,OAAO,CAAC;AACxC,QAAA,CAAA,EAAA,GAAA,IAAI,CAAC,iBAAiB,MAAE,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,EAAA,CAAA,WAAW,EAAE,CAAC;QACtC,IAAI,CAAC,iBAAiB,GAAG,KAAK,KAAA,IAAA,IAAL,KAAK,KAAL,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,KAAK,CAAE,QAAQ,CAAC,SAAS,CAAC,GAAG,KAAK,IAAI,CAAC,aAAa,GAAG,GAAG,CAAC,CAAC,CAAC;AACtF,QAAA,IAAI,CAAC,WAAW,IAAI,GAAG,CAAC;KACzB;AAMD,IAAA,QAAQ,MAAW;IACnB,WAAW,GAAA;;AACT,QAAA,CAAA,EAAA,GAAA,IAAI,CAAC,iBAAiB,MAAE,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,EAAA,CAAA,WAAW,EAAE,CAAC;KACvC;;8GAxBU,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAAjB,iBAAiB,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,IAAA,EAAA,MAAA,EAAA,WAAA,EAAA,aAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,UAAA,EAAA,WAAA,EAAA,aAAA,EAAA,EAAA,OAAA,EAAA,CAAA,EAAA,YAAA,EAAA,WAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAOd,iBAAiB,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECjBjC,ovBAqBA,EAAA,MAAA,EAAA,CAAA,yiJAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,IAAA,EAAA,QAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,UAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FDXa,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAL7B,SAAS;+BACE,WAAW,EAAA,QAAA,EAAA,ovBAAA,EAAA,MAAA,EAAA,CAAA,yiJAAA,CAAA,EAAA,CAAA;0EAKZ,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBACG,OAAO,EAAA,CAAA;sBAAf,KAAK;gBACG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAC+B,SAAS,EAAA,CAAA;sBAA7C,YAAY;uBAAC,iBAAiB,CAAA;;;MENpB,cAAc,CAAA;;2GAAd,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;4GAAd,cAAc,EAAA,YAAA,EAAA,CAJV,iBAAiB,EAAE,iBAAiB,CAAA,EAAA,OAAA,EAAA,CACzC,YAAY,EAAE,WAAW,CAAA,EAAA,OAAA,EAAA,CACzB,iBAAiB,EAAE,iBAAiB,CAAA,EAAA,CAAA,CAAA;4GAEnC,cAAc,EAAA,OAAA,EAAA,CAHf,YAAY,EAAE,WAAW,CAAA,EAAA,CAAA,CAAA;2FAGxB,cAAc,EAAA,UAAA,EAAA,CAAA;kBAL1B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;AACpD,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,WAAW,CAAC;AACpC,oBAAA,OAAO,EAAE,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;iBAChD,CAAA;;;ACVD;;AAEG;;;;"}
@@ -0,0 +1,44 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ class LoaderComponent {
7
+ constructor() {
8
+ /** Controls loader size */
9
+ this.mobileView = false;
10
+ }
11
+ ngOnInit() { }
12
+ }
13
+ LoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LoaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
14
+ LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: LoaderComponent, selector: "mis-loader", inputs: { mobileView: "mobileView" }, ngImport: i0, template: "<div\n id=\"spinner\"\n [ngClass]=\"{\n mobile: mobileView\n }\"\n></div>\n", styles: ["#spinner{animation:frames 1s infinite linear;background:transparent;border:4px solid #e0e0e0;border-radius:100%;border-top-color:#6200ee;width:40px;height:40px;padding:0;position:absolute}@keyframes frames{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.mobile{height:20px!important;width:20px!important;border:2px solid #e0e0e0!important;border-top-color:#6200ee!important}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LoaderComponent, decorators: [{
16
+ type: Component,
17
+ args: [{ selector: "mis-loader", template: "<div\n id=\"spinner\"\n [ngClass]=\"{\n mobile: mobileView\n }\"\n></div>\n", styles: ["#spinner{animation:frames 1s infinite linear;background:transparent;border:4px solid #e0e0e0;border-radius:100%;border-top-color:#6200ee;width:40px;height:40px;padding:0;position:absolute}@keyframes frames{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.mobile{height:20px!important;width:20px!important;border:2px solid #e0e0e0!important;border-top-color:#6200ee!important}\n"] }]
18
+ }], ctorParameters: function () { return []; }, propDecorators: { mobileView: [{
19
+ type: Input
20
+ }] } });
21
+
22
+ class LoaderModule {
23
+ static forRoot() {
24
+ return { ngModule: LoaderModule, providers: [] };
25
+ }
26
+ }
27
+ LoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
28
+ LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: LoaderModule, declarations: [LoaderComponent], imports: [CommonModule], exports: [LoaderComponent] });
29
+ LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LoaderModule, imports: [CommonModule] });
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: LoaderModule, decorators: [{
31
+ type: NgModule,
32
+ args: [{
33
+ declarations: [LoaderComponent],
34
+ imports: [CommonModule],
35
+ exports: [LoaderComponent]
36
+ }]
37
+ }] });
38
+
39
+ /**
40
+ * Generated bundle index. Do not edit.
41
+ */
42
+
43
+ export { LoaderComponent, LoaderModule };
44
+ //# sourceMappingURL=mis-crystal-design-system-loader.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mis-crystal-design-system-loader.mjs","sources":["../../../projects/mis-components/loader/loader.component.ts","../../../projects/mis-components/loader/loader.component.html","../../../projects/mis-components/loader/loader.module.ts","../../../projects/mis-components/loader/mis-crystal-design-system-loader.ts"],"sourcesContent":["import { Component, Input, OnInit } from \"@angular/core\";\n\n@Component({\n selector: \"mis-loader\",\n templateUrl: \"./loader.component.html\",\n styleUrls: [\"./loader.component.scss\"]\n})\nexport class LoaderComponent implements OnInit {\n /** Controls loader size */\n @Input() mobileView: boolean = false;\n\n constructor() {}\n ngOnInit() {}\n}\n","<div\n id=\"spinner\"\n [ngClass]=\"{\n mobile: mobileView\n }\"\n></div>\n","import { NgModule, ModuleWithProviders } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\n\nimport { LoaderComponent } from \"./loader.component\";\n\n@NgModule({\n declarations: [LoaderComponent],\n imports: [CommonModule],\n exports: [LoaderComponent]\n})\nexport class LoaderModule {\n static forRoot(): ModuleWithProviders<LoaderModule> {\n return { ngModule: LoaderModule, providers: [] };\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;MAOa,eAAe,CAAA;AAI1B,IAAA,WAAA,GAAA;;AAFS,QAAA,IAAU,CAAA,UAAA,GAAY,KAAK,CAAC;KAErB;AAChB,IAAA,QAAQ,MAAK;;4GALF,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAf,eAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,eAAe,wFCP5B,mFAMA,EAAA,MAAA,EAAA,CAAA,+XAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FDCa,eAAe,EAAA,UAAA,EAAA,CAAA;kBAL3B,SAAS;+BACE,YAAY,EAAA,QAAA,EAAA,mFAAA,EAAA,MAAA,EAAA,CAAA,+XAAA,CAAA,EAAA,CAAA;0EAMb,UAAU,EAAA,CAAA;sBAAlB,KAAK;;;MECK,YAAY,CAAA;AACvB,IAAA,OAAO,OAAO,GAAA;QACZ,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC;KAClD;;yGAHU,YAAY,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAZ,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,EAJR,YAAA,EAAA,CAAA,eAAe,CACpB,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,eAAe,CAAA,EAAA,CAAA,CAAA;AAEd,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,YAHb,YAAY,CAAA,EAAA,CAAA,CAAA;2FAGX,YAAY,EAAA,UAAA,EAAA,CAAA;kBALxB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,eAAe,CAAC;oBAC/B,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,eAAe,CAAC;iBAC3B,CAAA;;;ACTD;;AAEG;;;;"}
@@ -0,0 +1,120 @@
1
+ import * as i1 from '@angular/cdk/overlay';
2
+ import { ConnectionPositionPair, OverlayConfig, OverlayModule } from '@angular/cdk/overlay';
3
+ import { TemplatePortal, PortalModule } from '@angular/cdk/portal';
4
+ import * as i0 from '@angular/core';
5
+ import { Directive, Input, HostListener, NgModule } from '@angular/core';
6
+ import { take } from 'rxjs/operators';
7
+ import { CommonModule } from '@angular/common';
8
+
9
+ /** @format */
10
+ class MenuDirective {
11
+ constructor(overlay, element, viewContainerRef) {
12
+ this.overlay = overlay;
13
+ this.element = element;
14
+ this.viewContainerRef = viewContainerRef;
15
+ this.positionX = "start";
16
+ this.positionY = "bottom";
17
+ this.offsetX = 0;
18
+ this.offsetY = 0;
19
+ }
20
+ onClick(event) {
21
+ this.menuShow();
22
+ }
23
+ menuShow() {
24
+ const positionStrategy = this.overlay
25
+ .position()
26
+ .flexibleConnectedTo(this.element)
27
+ .withPositions([
28
+ new ConnectionPositionPair({ originX: this.positionX, originY: this.positionY }, { overlayX: this.positionX, overlayY: this.positionY === "bottom" ? "top" : "bottom" }, this.offsetX, this.offsetY),
29
+ new ConnectionPositionPair({ originX: "start", originY: "bottom" }, { overlayX: "start", overlayY: "top" }, this.offsetX, this.offsetY),
30
+ new ConnectionPositionPair({ originX: "end", originY: "top" }, { overlayX: "end", overlayY: "bottom" }, this.offsetX, this.offsetY)
31
+ ])
32
+ .withPush(true);
33
+ const config = new OverlayConfig({
34
+ hasBackdrop: true,
35
+ positionStrategy,
36
+ scrollStrategy: this.overlay.scrollStrategies.reposition(),
37
+ backdropClass: "cdk-overlay-transparent-backdrop"
38
+ });
39
+ this.overlayRef = this.overlay.create(config);
40
+ const tempRef = new TemplatePortal(this.menu, this.viewContainerRef);
41
+ this.overlayRef.attach(tempRef);
42
+ this.overlayRef
43
+ .backdropClick()
44
+ .pipe(take(1))
45
+ .subscribe(res => {
46
+ this.close();
47
+ });
48
+ }
49
+ close() {
50
+ var _a, _b;
51
+ (_a = this.overlayRef) === null || _a === void 0 ? void 0 : _a.detach();
52
+ (_b = this.overlayRef) === null || _b === void 0 ? void 0 : _b.dispose();
53
+ }
54
+ }
55
+ MenuDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MenuDirective, deps: [{ token: i1.Overlay }, { token: i0.ElementRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
56
+ MenuDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: MenuDirective, selector: "[misMenu]", inputs: { menu: ["misMenu", "menu"], positionX: "positionX", positionY: "positionY", offsetX: "offsetX", offsetY: "offsetY" }, host: { listeners: { "click": "onClick($event)" } }, exportAs: ["misMenu"], ngImport: i0 });
57
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MenuDirective, decorators: [{
58
+ type: Directive,
59
+ args: [{
60
+ selector: "[misMenu]",
61
+ exportAs: "misMenu"
62
+ }]
63
+ }], ctorParameters: function () { return [{ type: i1.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }]; }, propDecorators: { menu: [{
64
+ type: Input,
65
+ args: ["misMenu"]
66
+ }], positionX: [{
67
+ type: Input
68
+ }], positionY: [{
69
+ type: Input
70
+ }], offsetX: [{
71
+ type: Input
72
+ }], offsetY: [{
73
+ type: Input
74
+ }], onClick: [{
75
+ type: HostListener,
76
+ args: ["click", ["$event"]]
77
+ }] } });
78
+
79
+ class MenuCloseDirective {
80
+ constructor() { }
81
+ closeMenu() {
82
+ this.menu.close();
83
+ }
84
+ }
85
+ MenuCloseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MenuCloseDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
86
+ MenuCloseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: MenuCloseDirective, selector: "[misMenuClose]", inputs: { menu: ["misMenuClose", "menu"] }, host: { listeners: { "click": "closeMenu()" } }, ngImport: i0 });
87
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MenuCloseDirective, decorators: [{
88
+ type: Directive,
89
+ args: [{
90
+ selector: "[misMenuClose]"
91
+ }]
92
+ }], ctorParameters: function () { return []; }, propDecorators: { menu: [{
93
+ type: Input,
94
+ args: ["misMenuClose"]
95
+ }], closeMenu: [{
96
+ type: HostListener,
97
+ args: ["click", []]
98
+ }] } });
99
+
100
+ /** @format */
101
+ class MisMenuModule {
102
+ }
103
+ MisMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
104
+ MisMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: MisMenuModule, declarations: [MenuDirective, MenuCloseDirective], imports: [CommonModule, OverlayModule, PortalModule], exports: [MenuDirective, MenuCloseDirective] });
105
+ MisMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisMenuModule, imports: [CommonModule, OverlayModule, PortalModule] });
106
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MisMenuModule, decorators: [{
107
+ type: NgModule,
108
+ args: [{
109
+ declarations: [MenuDirective, MenuCloseDirective],
110
+ imports: [CommonModule, OverlayModule, PortalModule],
111
+ exports: [MenuDirective, MenuCloseDirective]
112
+ }]
113
+ }] });
114
+
115
+ /**
116
+ * Generated bundle index. Do not edit.
117
+ */
118
+
119
+ export { MenuCloseDirective, MenuDirective, MisMenuModule };
120
+ //# sourceMappingURL=mis-crystal-design-system-menu.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mis-crystal-design-system-menu.mjs","sources":["../../../projects/mis-components/menu/menu.directive.ts","../../../projects/mis-components/menu/menu-close.directive.ts","../../../projects/mis-components/menu/menu.module.ts","../../../projects/mis-components/menu/mis-crystal-design-system-menu.ts"],"sourcesContent":["/** @format */\n\nimport { ConnectionPositionPair, Overlay, OverlayConfig, OverlayRef } from \"@angular/cdk/overlay\";\nimport { TemplatePortal } from \"@angular/cdk/portal\";\nimport { Directive, ElementRef, HostListener, Input, TemplateRef, ViewContainerRef } from \"@angular/core\";\nimport { take } from \"rxjs/operators\";\n\n@Directive({\n selector: \"[misMenu]\",\n exportAs: \"misMenu\"\n})\nexport class MenuDirective {\n @Input(\"misMenu\") menu: TemplateRef<ElementRef>;\n @Input() positionX: \"start\" | \"end\" = \"start\";\n @Input() positionY: \"top\" | \"bottom\" = \"bottom\";\n @Input() offsetX = 0;\n @Input() offsetY = 0;\n private overlayRef: OverlayRef;\n\n constructor(private overlay: Overlay, private element: ElementRef, private viewContainerRef: ViewContainerRef) {}\n @HostListener(\"click\", [\"$event\"]) onClick(event) {\n this.menuShow();\n }\n private menuShow() {\n const positionStrategy = this.overlay\n .position()\n .flexibleConnectedTo(this.element)\n .withPositions([\n new ConnectionPositionPair(\n { originX: this.positionX, originY: this.positionY },\n { overlayX: this.positionX, overlayY: this.positionY === \"bottom\" ? \"top\" : \"bottom\" },\n this.offsetX,\n this.offsetY\n ),\n new ConnectionPositionPair({ originX: \"start\", originY: \"bottom\" }, { overlayX: \"start\", overlayY: \"top\" }, this.offsetX, this.offsetY),\n new ConnectionPositionPair({ originX: \"end\", originY: \"top\" }, { overlayX: \"end\", overlayY: \"bottom\" }, this.offsetX, this.offsetY)\n ])\n .withPush(true);\n const config = new OverlayConfig({\n hasBackdrop: true,\n positionStrategy,\n scrollStrategy: this.overlay.scrollStrategies.reposition(),\n backdropClass: \"cdk-overlay-transparent-backdrop\"\n });\n this.overlayRef = this.overlay.create(config);\n\n const tempRef = new TemplatePortal(this.menu, this.viewContainerRef);\n this.overlayRef.attach(tempRef);\n this.overlayRef\n .backdropClick()\n .pipe(take(1))\n .subscribe(res => {\n this.close();\n });\n }\n\n close(): void {\n this.overlayRef?.detach();\n this.overlayRef?.dispose();\n }\n}\n","import { Directive, HostListener, Input } from \"@angular/core\";\nimport { MenuDirective } from \"./menu.directive\";\n\n@Directive({\n selector: \"[misMenuClose]\"\n})\nexport class MenuCloseDirective {\n @Input(\"misMenuClose\") menu: MenuDirective;\n constructor() {}\n\n @HostListener(\"click\", []) closeMenu() {\n this.menu.close();\n }\n}\n","/** @format */\n\nimport { NgModule } from \"@angular/core\";\nimport { CommonModule } from \"@angular/common\";\nimport { MenuDirective } from \"./menu.directive\";\nimport { OverlayModule } from \"@angular/cdk/overlay\";\nimport { PortalModule } from \"@angular/cdk/portal\";\nimport { MenuCloseDirective } from \"./menu-close.directive\";\n\n@NgModule({\n declarations: [MenuDirective, MenuCloseDirective],\n imports: [CommonModule, OverlayModule, PortalModule],\n exports: [MenuDirective, MenuCloseDirective]\n})\nexport class MisMenuModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}