@alauda/ui 6.2.2 → 6.2.3-beta.10

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 (1291) hide show
  1. package/.changeset/README.md +8 -0
  2. package/accordion/accordion-item/accordion-item.component.d.ts +7 -0
  3. package/accordion/accordion.component.d.ts +3 -0
  4. package/accordion/accordion.module.d.ts +10 -0
  5. package/alauda-ui.d.ts +1 -20
  6. package/anchor/anchor.component.d.ts +7 -2
  7. package/anchor/anchor.directive.d.ts +7 -0
  8. package/anchor/anchor.module.d.ts +7 -0
  9. package/autocomplete/autocomplete-placeholder.component.d.ts +3 -0
  10. package/autocomplete/autocomplete.component.d.ts +3 -0
  11. package/autocomplete/autocomplete.directive.d.ts +5 -0
  12. package/autocomplete/autocomplete.module.d.ts +13 -0
  13. package/autocomplete/helper-directives.d.ts +3 -0
  14. package/autocomplete/suggestion/suggestion.component.d.ts +3 -0
  15. package/autocomplete/suggestion-group/suggestion-group.component.d.ts +3 -0
  16. package/back-top/back-top.component.d.ts +3 -0
  17. package/back-top/back-top.module.d.ts +7 -0
  18. package/breadcrumb/breadcrumb-item.component.d.ts +3 -0
  19. package/breadcrumb/breadcrumb.component.d.ts +3 -0
  20. package/breadcrumb/breadcrumb.module.d.ts +8 -0
  21. package/button/button-group/button-group.component.d.ts +3 -0
  22. package/button/button.component.d.ts +9 -38
  23. package/button/button.module.d.ts +8 -0
  24. package/card/card.component.d.ts +3 -0
  25. package/card/card.module.d.ts +8 -0
  26. package/card/helper-directives.d.ts +7 -0
  27. package/card/section.component.d.ts +3 -0
  28. package/checkbox/checkbox-group/checkbox-group.component.d.ts +3 -0
  29. package/checkbox/checkbox.component.d.ts +3 -0
  30. package/checkbox/checkbox.module.d.ts +8 -0
  31. package/color-picker/color-picker.component.d.ts +3 -0
  32. package/color-picker/color-picker.module.d.ts +7 -0
  33. package/date-picker/calendar/date-picker-panel/component.d.ts +3 -0
  34. package/date-picker/calendar/footer/component.d.ts +3 -0
  35. package/date-picker/calendar/header/component.d.ts +3 -0
  36. package/date-picker/calendar/panel/picker-panel.d.ts +3 -0
  37. package/date-picker/calendar/range-picker-panel/component.d.ts +3 -0
  38. package/date-picker/date-picker/date-picker.component.d.ts +3 -0
  39. package/date-picker/date-picker.module.d.ts +20 -0
  40. package/date-picker/public-api.d.ts +1 -0
  41. package/date-picker/range-picker/range-picker.component.d.ts +3 -0
  42. package/date-picker/trigger/trigger.component.d.ts +3 -0
  43. package/dialog/confirm-dialog/confirm-dialog.component.d.ts +3 -0
  44. package/dialog/dialog-content/dialog-close.directive.d.ts +3 -0
  45. package/dialog/dialog-content/dialog-content.component.d.ts +3 -0
  46. package/dialog/dialog-content/dialog-footer.component.d.ts +3 -0
  47. package/dialog/dialog-content/dialog-header.component.d.ts +3 -0
  48. package/dialog/dialog.component.d.ts +3 -0
  49. package/dialog/dialog.module.d.ts +15 -0
  50. package/dialog/dialog.service.d.ts +3 -0
  51. package/dialog/public-api.d.ts +1 -0
  52. package/drawer/component/drawer.component.d.ts +5 -2
  53. package/drawer/component/helper-directives.d.ts +7 -4
  54. package/drawer/drawer.module.d.ts +10 -0
  55. package/drawer/drawer.service.d.ts +3 -0
  56. package/dropdown/dropdown-active.directive.d.ts +3 -0
  57. package/dropdown/dropdown-button/dropdown-button.component.d.ts +3 -0
  58. package/dropdown/dropdown.directive.d.ts +3 -0
  59. package/dropdown/dropdown.module.d.ts +17 -0
  60. package/dropdown/helper-directives.d.ts +3 -0
  61. package/dropdown/menu/menu-content.directive.d.ts +3 -0
  62. package/dropdown/menu/menu.component.d.ts +3 -0
  63. package/dropdown/menu-group/menu-group.component.d.ts +3 -0
  64. package/dropdown/menu-item/menu-item.component.d.ts +3 -0
  65. package/dropdown/public-api.d.ts +1 -0
  66. package/dropdown/submenu/submenu.component.d.ts +3 -0
  67. package/esm2020/accordion/accordion-item/accordion-item.component.mjs +73 -0
  68. package/esm2020/accordion/accordion.component.mjs +27 -0
  69. package/esm2020/accordion/accordion.module.mjs +39 -0
  70. package/{esm2015/accordion/public-api.js → esm2020/accordion/public-api.mjs} +0 -0
  71. package/esm2020/alauda-ui.mjs +5 -0
  72. package/esm2020/anchor/anchor.component.mjs +139 -0
  73. package/esm2020/anchor/anchor.directive.mjs +184 -0
  74. package/esm2020/anchor/anchor.module.mjs +36 -0
  75. package/{esm2015/anchor/public-api.js → esm2020/anchor/public-api.mjs} +0 -0
  76. package/{esm2015/anchor/types.js → esm2020/anchor/types.mjs} +0 -0
  77. package/{esm2015/anchor/utils.js → esm2020/anchor/utils.mjs} +0 -0
  78. package/esm2020/autocomplete/autocomplete-placeholder.component.mjs +17 -0
  79. package/esm2020/autocomplete/autocomplete.component.mjs +41 -0
  80. package/esm2020/autocomplete/autocomplete.directive.mjs +272 -0
  81. package/esm2020/autocomplete/autocomplete.module.mjs +53 -0
  82. package/{esm2015/autocomplete/autocomplete.types.js → esm2020/autocomplete/autocomplete.types.mjs} +0 -0
  83. package/esm2020/autocomplete/helper-directives.mjs +17 -0
  84. package/{esm2015/autocomplete/public-api.js → esm2020/autocomplete/public-api.mjs} +0 -0
  85. package/esm2020/autocomplete/suggestion/suggestion.component.mjs +78 -0
  86. package/esm2020/autocomplete/suggestion-group/suggestion-group.component.mjs +23 -0
  87. package/esm2020/back-top/back-top.component.mjs +68 -0
  88. package/esm2020/back-top/back-top.module.mjs +19 -0
  89. package/{esm2015/back-top/public-api.js → esm2020/back-top/public-api.mjs} +0 -0
  90. package/esm2020/breadcrumb/breadcrumb-item.component.mjs +32 -0
  91. package/esm2020/breadcrumb/breadcrumb.component.mjs +57 -0
  92. package/esm2020/breadcrumb/breadcrumb.module.mjs +20 -0
  93. package/{esm2015/breadcrumb/public-api.js → esm2020/breadcrumb/public-api.mjs} +0 -0
  94. package/esm2020/button/button-group/button-group.component.mjs +11 -0
  95. package/esm2020/button/button.component.mjs +122 -0
  96. package/esm2020/button/button.module.mjs +20 -0
  97. package/{esm2015/button/button.types.js → esm2020/button/button.types.mjs} +0 -0
  98. package/{esm2015/button/public-api.js → esm2020/button/public-api.mjs} +0 -0
  99. package/esm2020/card/card.component.mjs +16 -0
  100. package/esm2020/card/card.module.mjs +40 -0
  101. package/esm2020/card/helper-directives.mjs +43 -0
  102. package/{esm2015/card/public-api.js → esm2020/card/public-api.mjs} +0 -0
  103. package/esm2020/card/section.component.mjs +11 -0
  104. package/esm2020/checkbox/checkbox-group/checkbox-group.component.mjs +64 -0
  105. package/esm2020/checkbox/checkbox.component.mjs +114 -0
  106. package/esm2020/checkbox/checkbox.module.mjs +20 -0
  107. package/{esm2015/checkbox/public-api.js → esm2020/checkbox/public-api.mjs} +0 -0
  108. package/esm2020/color-picker/color-picker.component.mjs +32 -0
  109. package/esm2020/color-picker/color-picker.module.mjs +19 -0
  110. package/{esm2015/color-picker/public-api.js → esm2020/color-picker/public-api.mjs} +0 -0
  111. package/{esm2015/date-picker/calendar/constant.js → esm2020/date-picker/calendar/constant.mjs} +0 -0
  112. package/esm2020/date-picker/calendar/date-picker-panel/component.mjs +128 -0
  113. package/esm2020/date-picker/calendar/footer/component.mjs +29 -0
  114. package/esm2020/date-picker/calendar/header/component.mjs +105 -0
  115. package/esm2020/date-picker/calendar/panel/picker-panel.mjs +149 -0
  116. package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +209 -0
  117. package/{esm2015/date-picker/calendar/util.js → esm2020/date-picker/calendar/util.mjs} +0 -0
  118. package/esm2020/date-picker/date-picker/date-picker.component.mjs +104 -0
  119. package/esm2020/date-picker/date-picker.module.mjs +84 -0
  120. package/{esm2015/date-picker/date-picker.type.js → esm2020/date-picker/date-picker.type.mjs} +0 -0
  121. package/esm2020/date-picker/public-api.mjs +12 -0
  122. package/esm2020/date-picker/range-picker/range-picker.component.mjs +80 -0
  123. package/esm2020/date-picker/trigger/trigger.component.mjs +69 -0
  124. package/{esm2015/dialog/confirm-dialog/confirm-dialog-config.js → esm2020/dialog/confirm-dialog/confirm-dialog-config.mjs} +0 -0
  125. package/esm2020/dialog/confirm-dialog/confirm-dialog.component.mjs +86 -0
  126. package/{esm2015/dialog/dialog-config.js → esm2020/dialog/dialog-config.mjs} +0 -0
  127. package/esm2020/dialog/dialog-content/dialog-close.directive.mjs +38 -0
  128. package/esm2020/dialog/dialog-content/dialog-content.component.mjs +20 -0
  129. package/esm2020/dialog/dialog-content/dialog-footer.component.mjs +15 -0
  130. package/esm2020/dialog/dialog-content/dialog-header.component.mjs +39 -0
  131. package/{esm2015/dialog/dialog-ref.js → esm2020/dialog/dialog-ref.mjs} +0 -0
  132. package/esm2020/dialog/dialog.component.mjs +59 -0
  133. package/esm2020/dialog/dialog.module.mjs +68 -0
  134. package/esm2020/dialog/dialog.service.mjs +128 -0
  135. package/{esm2015/dialog/dialog.types.js → esm2020/dialog/dialog.types.mjs} +0 -0
  136. package/esm2020/dialog/public-api.mjs +12 -0
  137. package/{esm2015/dialog/utils/errors.js → esm2020/dialog/utils/errors.mjs} +0 -0
  138. package/esm2020/dialog/utils/index.mjs +11 -0
  139. package/{esm2015/drawer/component/drawer-ref.js → esm2020/drawer/component/drawer-ref.mjs} +0 -0
  140. package/esm2020/drawer/component/drawer.component.mjs +231 -0
  141. package/esm2020/drawer/component/helper-directives.mjs +37 -0
  142. package/esm2020/drawer/drawer.module.mjs +37 -0
  143. package/esm2020/drawer/drawer.service.mjs +45 -0
  144. package/{esm2015/drawer/public-api.js → esm2020/drawer/public-api.mjs} +0 -0
  145. package/esm2020/dropdown/dropdown-active.directive.mjs +21 -0
  146. package/esm2020/dropdown/dropdown-button/dropdown-button.component.mjs +51 -0
  147. package/esm2020/dropdown/dropdown.directive.mjs +83 -0
  148. package/esm2020/dropdown/dropdown.module.mjs +65 -0
  149. package/{esm2015/dropdown/dropdown.types.js → esm2020/dropdown/dropdown.types.mjs} +0 -0
  150. package/esm2020/dropdown/helper-directives.mjs +17 -0
  151. package/esm2020/dropdown/menu/menu-content.directive.mjs +51 -0
  152. package/esm2020/dropdown/menu/menu.component.mjs +33 -0
  153. package/esm2020/dropdown/menu-group/menu-group.component.mjs +11 -0
  154. package/esm2020/dropdown/menu-item/menu-item.component.mjs +37 -0
  155. package/esm2020/dropdown/public-api.mjs +12 -0
  156. package/esm2020/dropdown/submenu/submenu.component.mjs +40 -0
  157. package/esm2020/form/common-form.mjs +92 -0
  158. package/esm2020/form/form-item/form-item.component.mjs +106 -0
  159. package/esm2020/form/form.directive.mjs +70 -0
  160. package/esm2020/form/form.module.mjs +48 -0
  161. package/{esm2015/form/form.types.js → esm2020/form/form.types.mjs} +0 -0
  162. package/esm2020/form/helper-directives.mjs +81 -0
  163. package/{esm2015/form/public-api.js → esm2020/form/public-api.mjs} +0 -0
  164. package/esm2020/i18n/i18n.module.mjs +16 -0
  165. package/esm2020/i18n/i18n.pipe.mjs +20 -0
  166. package/esm2020/i18n/i18n.service.mjs +43 -0
  167. package/esm2020/i18n/i18n.type.mjs +6 -0
  168. package/{esm2015/i18n/language/en.js → esm2020/i18n/language/en.mjs} +0 -0
  169. package/{esm2015/i18n/language/zh.js → esm2020/i18n/language/zh.mjs} +0 -0
  170. package/{esm2015/i18n/public-api.js → esm2020/i18n/public-api.mjs} +0 -0
  171. package/esm2020/icon/icon-register.service.mjs +70 -0
  172. package/esm2020/icon/icon.component.mjs +65 -0
  173. package/esm2020/icon/icon.module.mjs +21 -0
  174. package/{esm2015/icon/icons.js → esm2020/icon/icons.mjs} +0 -0
  175. package/{esm2015/icon/public-api.js → esm2020/icon/public-api.mjs} +0 -0
  176. package/{esm2015/icon/utils.js → esm2020/icon/utils.mjs} +0 -0
  177. package/esm2020/inline-alert/helper-directives.mjs +14 -0
  178. package/esm2020/inline-alert/inline-alert.component.mjs +55 -0
  179. package/esm2020/inline-alert/inline-alert.module.mjs +20 -0
  180. package/{esm2015/inline-alert/inline-alert.types.js → esm2020/inline-alert/inline-alert.types.mjs} +0 -0
  181. package/{esm2015/inline-alert/public-api.js → esm2020/inline-alert/public-api.mjs} +0 -0
  182. package/esm2020/input/autosize.directive.mjs +60 -0
  183. package/esm2020/input/helper-directives.mjs +43 -0
  184. package/esm2020/input/input-group/input-group.component.mjs +39 -0
  185. package/esm2020/input/input.component.mjs +61 -0
  186. package/esm2020/input/input.module.mjs +91 -0
  187. package/esm2020/input/number-input/number-input.component.mjs +94 -0
  188. package/esm2020/input/public-api.mjs +9 -0
  189. package/esm2020/input/search/search.component.mjs +81 -0
  190. package/esm2020/input/tags-input/tags-input.component.mjs +265 -0
  191. package/{esm2015/input/tags-input/with-max-row-count.js → esm2020/input/tags-input/with-max-row-count.mjs} +0 -0
  192. package/{esm2015/input/utils/index.js → esm2020/input/utils/index.mjs} +0 -0
  193. package/esm2020/message/base-message.mjs +90 -0
  194. package/{esm2015/message/message-animations.js → esm2020/message/message-animations.mjs} +0 -0
  195. package/esm2020/message/message-wrapper.component.mjs +14 -0
  196. package/esm2020/message/message.component.mjs +70 -0
  197. package/{esm2015/message/message.config.js → esm2020/message/message.config.mjs} +0 -0
  198. package/esm2020/message/message.module.mjs +23 -0
  199. package/esm2020/message/message.service.mjs +26 -0
  200. package/{esm2015/message/public-api.js → esm2020/message/public-api.mjs} +0 -0
  201. package/esm2020/notification/notification-wrapper.component.mjs +16 -0
  202. package/esm2020/notification/notification.component.mjs +107 -0
  203. package/{esm2015/notification/notification.config.js → esm2020/notification/notification.config.mjs} +0 -0
  204. package/esm2020/notification/notification.module.mjs +24 -0
  205. package/esm2020/notification/notification.service.mjs +26 -0
  206. package/{esm2015/notification/public-api.js → esm2020/notification/public-api.mjs} +0 -0
  207. package/esm2020/paginator/paginator-intl.mjs +36 -0
  208. package/esm2020/paginator/paginator.component.mjs +125 -0
  209. package/esm2020/paginator/paginator.module.mjs +24 -0
  210. package/{esm2015/paginator/public-api.js → esm2020/paginator/public-api.mjs} +0 -0
  211. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  212. package/esm2020/radio/base-radio.mjs +69 -0
  213. package/{esm2015/radio/public-api.js → esm2020/radio/public-api.mjs} +0 -0
  214. package/esm2020/radio/radio-button/radio-button.component.mjs +42 -0
  215. package/esm2020/radio/radio-group/radio-group.component.mjs +80 -0
  216. package/esm2020/radio/radio.component.mjs +24 -0
  217. package/esm2020/radio/radio.module.mjs +21 -0
  218. package/{esm2015/radio/radio.types.js → esm2020/radio/radio.types.mjs} +0 -0
  219. package/esm2020/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +84 -0
  220. package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +122 -0
  221. package/esm2020/scrolling/fixed-size-virtual-scroll.directive.mjs +28 -0
  222. package/esm2020/scrolling/public-api.mjs +7 -0
  223. package/esm2020/scrolling/scrolling.module.mjs +30 -0
  224. package/esm2020/scrolling/virtual-for-of.directive.mjs +36 -0
  225. package/esm2020/scrolling/virtual-scroll-viewport.component.mjs +26 -0
  226. package/esm2020/select/base-select.mjs +339 -0
  227. package/esm2020/select/helper-directives.mjs +29 -0
  228. package/esm2020/select/multi-select/multi-select.component.mjs +292 -0
  229. package/esm2020/select/option/option.component.mjs +110 -0
  230. package/esm2020/select/option-group/option-group.component.mjs +23 -0
  231. package/esm2020/select/option-placeholder.component.mjs +17 -0
  232. package/{esm2015/select/public-api.js → esm2020/select/public-api.mjs} +0 -0
  233. package/esm2020/select/select.component.mjs +107 -0
  234. package/esm2020/select/select.module.mjs +80 -0
  235. package/{esm2015/select/select.types.js → esm2020/select/select.types.mjs} +0 -0
  236. package/esm2020/select/validators.mjs +79 -0
  237. package/esm2020/shared/click-outside.directive.mjs +28 -0
  238. package/esm2020/shared/shared.module.mjs +16 -0
  239. package/{esm2015/sort/public-api.js → esm2020/sort/public-api.mjs} +0 -0
  240. package/{esm2015/sort/sort-errors.js → esm2020/sort/sort-errors.mjs} +0 -0
  241. package/esm2020/sort/sort-header.component.mjs +72 -0
  242. package/esm2020/sort/sort.directive.mjs +75 -0
  243. package/esm2020/sort/sort.module.mjs +19 -0
  244. package/{esm2015/sort/sort.types.js → esm2020/sort/sort.types.mjs} +0 -0
  245. package/{esm2015/status-bar/public-api.js → esm2020/status-bar/public-api.mjs} +0 -0
  246. package/esm2020/status-bar/status-bar.component.mjs +29 -0
  247. package/esm2020/status-bar/status-bar.module.mjs +19 -0
  248. package/{esm2015/status-bar/status-bar.types.js → esm2020/status-bar/status-bar.types.mjs} +0 -0
  249. package/{esm2015/steps/public-api.js → esm2020/steps/public-api.mjs} +0 -0
  250. package/esm2020/steps/steps.component.mjs +183 -0
  251. package/esm2020/steps/steps.module.mjs +19 -0
  252. package/{esm2015/steps/types.js → esm2020/steps/types.mjs} +0 -0
  253. package/{esm2015/switch/public-api.js → esm2020/switch/public-api.mjs} +0 -0
  254. package/esm2020/switch/switch.component.mjs +49 -0
  255. package/esm2020/switch/switch.module.mjs +18 -0
  256. package/esm2020/table/public-api.mjs +15 -0
  257. package/esm2020/table/table-cell-def.directive.mjs +29 -0
  258. package/esm2020/table/table-cell.component.mjs +121 -0
  259. package/esm2020/table/table-cell.directive.mjs +27 -0
  260. package/esm2020/table/table-column-def.directive.mjs +37 -0
  261. package/esm2020/table/table-header-cell-def.directive.mjs +29 -0
  262. package/esm2020/table/table-header-cell.directive.mjs +27 -0
  263. package/esm2020/table/table-header-row-def.directive.mjs +39 -0
  264. package/esm2020/table/table-header-row.component.mjs +25 -0
  265. package/esm2020/table/table-placeholder.directive.mjs +30 -0
  266. package/esm2020/table/table-row-def.directive.mjs +42 -0
  267. package/esm2020/table/table-row.component.mjs +43 -0
  268. package/esm2020/table/table-scroll.directive.mjs +91 -0
  269. package/esm2020/table/table.component.mjs +81 -0
  270. package/esm2020/table/table.module.mjs +96 -0
  271. package/{esm2015/table-of-contents/public-api.js → esm2020/table-of-contents/public-api.mjs} +0 -0
  272. package/esm2020/table-of-contents/table-of-contents.module.mjs +20 -0
  273. package/esm2020/table-of-contents/toc-container.directive.mjs +110 -0
  274. package/esm2020/table-of-contents/toc-content.directive.mjs +35 -0
  275. package/esm2020/table-of-contents/toc-link.directive.mjs +47 -0
  276. package/esm2020/tabs/public-api.mjs +9 -0
  277. package/esm2020/tabs/tab-body.component.mjs +165 -0
  278. package/esm2020/tabs/tab-context.service.mjs +32 -0
  279. package/esm2020/tabs/tab-group.component.mjs +291 -0
  280. package/esm2020/tabs/tab-header-active-indicator.component.mjs +53 -0
  281. package/esm2020/tabs/tab-header.component.mjs +365 -0
  282. package/esm2020/tabs/tab.component.mjs +85 -0
  283. package/esm2020/tabs/tabs.module.mjs +88 -0
  284. package/{esm2015/tabs/tabs.types.js → esm2020/tabs/tabs.types.mjs} +0 -0
  285. package/esm2020/tag/check-tag/check-tag.component.mjs +33 -0
  286. package/{esm2015/tag/public-api.js → esm2020/tag/public-api.mjs} +0 -0
  287. package/esm2020/tag/tag.component.mjs +64 -0
  288. package/esm2020/tag/tag.module.mjs +20 -0
  289. package/{esm2015/tag/tag.types.js → esm2020/tag/tag.types.mjs} +0 -0
  290. package/{esm2015/theme/public-api.js → esm2020/theme/public-api.mjs} +0 -0
  291. package/esm2020/theme/theme.module.mjs +18 -0
  292. package/esm2020/theme/theme.pipe.mjs +70 -0
  293. package/esm2020/theme/theme.service.mjs +53 -0
  294. package/{esm2015/theme/theme.types.js → esm2020/theme/theme.types.mjs} +0 -0
  295. package/{esm2015/theme/utils.js → esm2020/theme/utils.mjs} +0 -0
  296. package/esm2020/time-picker/component.mjs +173 -0
  297. package/esm2020/time-picker/constant.mjs +5 -0
  298. package/esm2020/time-picker/panel/panel.component.mjs +224 -0
  299. package/{esm2015/time-picker/public-api.js → esm2020/time-picker/public-api.mjs} +0 -0
  300. package/esm2020/time-picker/time-picker.module.mjs +58 -0
  301. package/esm2020/time-picker/time-picker.type.mjs +13 -0
  302. package/esm2020/tooltip/base-tooltip.mjs +244 -0
  303. package/esm2020/tooltip/public-api.mjs +9 -0
  304. package/esm2020/tooltip/tooltip-active.directive.mjs +44 -0
  305. package/esm2020/tooltip/tooltip-copy.directive.mjs +78 -0
  306. package/esm2020/tooltip/tooltip-intl.mjs +28 -0
  307. package/esm2020/tooltip/tooltip.component.mjs +49 -0
  308. package/esm2020/tooltip/tooltip.directive.mjs +51 -0
  309. package/esm2020/tooltip/tooltip.module.mjs +33 -0
  310. package/{esm2015/tooltip/tooltip.types.js → esm2020/tooltip/tooltip.types.mjs} +0 -0
  311. package/{esm2015/tooltip/utils/index.js → esm2020/tooltip/utils/index.mjs} +0 -0
  312. package/esm2020/tree-select/public-api.mjs +5 -0
  313. package/esm2020/tree-select/tree-node-placeholder.component.mjs +17 -0
  314. package/esm2020/tree-select/tree-select.component.mjs +343 -0
  315. package/esm2020/tree-select/tree-select.module.mjs +34 -0
  316. package/{esm2015/tree-select/tree-select.types.js → esm2020/tree-select/tree-select.types.mjs} +0 -0
  317. package/{esm2015/types.js → esm2020/types.mjs} +0 -0
  318. package/{esm2015/utils/async.js → esm2020/utils/async.mjs} +0 -0
  319. package/{esm2015/utils/bem.js → esm2020/utils/bem.mjs} +0 -0
  320. package/esm2020/utils/coercion.mjs +17 -0
  321. package/esm2020/utils/fn.mjs +8 -0
  322. package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
  323. package/{esm2015/utils/observe-dom.js → esm2020/utils/observe-dom.mjs} +0 -0
  324. package/{esm2015/utils/scroll-into-view.js → esm2020/utils/scroll-into-view.mjs} +0 -0
  325. package/{esm2015/utils/watch-content-exist.js → esm2020/utils/watch-content-exist.mjs} +0 -0
  326. package/fesm2015/alauda-ui.mjs +11581 -0
  327. package/fesm2015/alauda-ui.mjs.map +1 -0
  328. package/fesm2020/alauda-ui.mjs +11507 -0
  329. package/fesm2020/alauda-ui.mjs.map +1 -0
  330. package/form/common-form.d.ts +3 -0
  331. package/form/form-item/form-item.component.d.ts +3 -0
  332. package/form/form.directive.d.ts +3 -0
  333. package/form/form.module.d.ts +8 -0
  334. package/form/helper-directives.d.ts +11 -0
  335. package/i18n/i18n.module.d.ts +5 -0
  336. package/i18n/i18n.pipe.d.ts +3 -0
  337. package/i18n/i18n.service.d.ts +5 -1
  338. package/icon/icon-register.service.d.ts +3 -0
  339. package/icon/icon.component.d.ts +3 -0
  340. package/icon/icon.module.d.ts +7 -0
  341. package/inline-alert/helper-directives.d.ts +3 -0
  342. package/inline-alert/inline-alert.component.d.ts +3 -0
  343. package/inline-alert/inline-alert.module.d.ts +8 -0
  344. package/input/autosize.directive.d.ts +3 -0
  345. package/input/helper-directives.d.ts +9 -0
  346. package/input/input-group/input-group.component.d.ts +3 -0
  347. package/input/input.component.d.ts +7 -21
  348. package/input/input.module.d.ts +17 -0
  349. package/input/number-input/number-input.component.d.ts +3 -0
  350. package/input/public-api.d.ts +2 -0
  351. package/input/search/search.component.d.ts +3 -0
  352. package/input/tags-input/tags-input.component.d.ts +5 -2
  353. package/message/message-wrapper.component.d.ts +3 -0
  354. package/message/message.component.d.ts +3 -0
  355. package/message/message.module.d.ts +9 -0
  356. package/message/message.service.d.ts +3 -0
  357. package/notification/notification-wrapper.component.d.ts +3 -0
  358. package/notification/notification.component.d.ts +5 -3
  359. package/notification/notification.module.d.ts +10 -0
  360. package/notification/notification.service.d.ts +3 -0
  361. package/package.json +28 -16
  362. package/paginator/paginator-intl.d.ts +3 -0
  363. package/paginator/paginator.component.d.ts +3 -0
  364. package/paginator/paginator.module.d.ts +10 -0
  365. package/radio/base-radio.d.ts +3 -0
  366. package/radio/radio-button/radio-button.component.d.ts +3 -0
  367. package/radio/radio-group/radio-group.component.d.ts +3 -0
  368. package/radio/radio.component.d.ts +3 -0
  369. package/radio/radio.module.d.ts +9 -0
  370. package/scrolling/fixed-size-table-virtual-scroll-strategy.d.ts +3 -0
  371. package/scrolling/fixed-size-table-virtual-scroll.directive.d.ts +3 -0
  372. package/scrolling/fixed-size-virtual-scroll.directive.d.ts +3 -0
  373. package/scrolling/public-api.d.ts +1 -0
  374. package/scrolling/scrolling.module.d.ts +8 -0
  375. package/scrolling/virtual-for-of.directive.d.ts +3 -0
  376. package/scrolling/virtual-scroll-viewport.component.d.ts +3 -0
  377. package/select/base-select.d.ts +10 -29
  378. package/select/helper-directives.d.ts +5 -0
  379. package/select/multi-select/multi-select.component.d.ts +4 -0
  380. package/select/option/option.component.d.ts +3 -0
  381. package/select/option-group/option-group.component.d.ts +3 -0
  382. package/select/option-placeholder.component.d.ts +3 -0
  383. package/select/select.component.d.ts +3 -0
  384. package/select/select.module.d.ts +17 -0
  385. package/select/validators.d.ts +3 -0
  386. package/shared/click-outside.directive.d.ts +3 -0
  387. package/shared/shared.module.d.ts +5 -0
  388. package/sort/sort-header.component.d.ts +3 -0
  389. package/sort/sort.directive.d.ts +3 -0
  390. package/sort/sort.module.d.ts +7 -0
  391. package/src/accordion/README.md +13 -0
  392. package/src/anchor/README.md +23 -0
  393. package/src/dropdown/README.md +57 -0
  394. package/src/form/README.md +32 -0
  395. package/src/icon/README.md +28 -0
  396. package/src/inline-alert/README.md +16 -0
  397. package/src/input/number-input/README.md +15 -0
  398. package/src/select/README.md +57 -0
  399. package/src/sort/README.md +13 -0
  400. package/src/table/README.md +8 -0
  401. package/src/table-of-contents/README.md +79 -0
  402. package/src/tag/README.md +32 -0
  403. package/src/tree-select/README.md +34 -0
  404. package/status-bar/status-bar.component.d.ts +3 -0
  405. package/status-bar/status-bar.module.d.ts +7 -0
  406. package/steps/steps.component.d.ts +4 -1
  407. package/steps/steps.module.d.ts +7 -0
  408. package/switch/switch.component.d.ts +3 -0
  409. package/switch/switch.module.d.ts +6 -0
  410. package/table/public-api.d.ts +2 -0
  411. package/table/table-cell-def.directive.d.ts +3 -0
  412. package/table/table-cell.component.d.ts +5 -0
  413. package/table/table-cell.directive.d.ts +3 -0
  414. package/table/table-column-def.directive.d.ts +3 -0
  415. package/table/table-header-cell-def.directive.d.ts +3 -0
  416. package/table/table-header-cell.directive.d.ts +3 -0
  417. package/table/table-header-row-def.directive.d.ts +4 -1
  418. package/table/table-header-row.component.d.ts +3 -0
  419. package/table/table-placeholder.directive.d.ts +5 -0
  420. package/table/table-row-def.directive.d.ts +5 -2
  421. package/table/table-row.component.d.ts +3 -0
  422. package/table/table-scroll.directive.d.ts +5 -0
  423. package/table/table.component.d.ts +3 -0
  424. package/table/table.module.d.ts +20 -0
  425. package/table-of-contents/table-of-contents.module.d.ts +8 -0
  426. package/table-of-contents/toc-container.directive.d.ts +3 -0
  427. package/table-of-contents/toc-content.directive.d.ts +3 -0
  428. package/table-of-contents/toc-link.directive.d.ts +3 -0
  429. package/tabs/public-api.d.ts +0 -1
  430. package/tabs/tab-body.component.d.ts +61 -2
  431. package/tabs/tab-context.service.d.ts +4 -1
  432. package/tabs/tab-group.component.d.ts +7 -12
  433. package/tabs/tab-header-active-indicator.component.d.ts +3 -0
  434. package/tabs/tab-header.component.d.ts +4 -1
  435. package/tabs/tab.component.d.ts +4 -1
  436. package/tabs/tabs.module.d.ts +16 -0
  437. package/tag/check-tag/check-tag.component.d.ts +3 -0
  438. package/tag/tag.component.d.ts +3 -0
  439. package/tag/tag.module.d.ts +8 -0
  440. package/theme/_base-var.scss +1 -11
  441. package/theme/_mixin.scss +6 -1
  442. package/theme/_var.scss +6 -3
  443. package/theme/style.css +20 -0
  444. package/theme/theme.module.d.ts +6 -0
  445. package/theme/theme.pipe.d.ts +9 -0
  446. package/theme/theme.service.d.ts +3 -0
  447. package/time-picker/component.d.ts +3 -0
  448. package/time-picker/panel/panel.component.d.ts +3 -0
  449. package/time-picker/time-picker.module.d.ts +15 -0
  450. package/tooltip/base-tooltip.d.ts +3 -0
  451. package/tooltip/public-api.d.ts +1 -0
  452. package/tooltip/tooltip-active.directive.d.ts +3 -0
  453. package/tooltip/tooltip-copy.directive.d.ts +3 -0
  454. package/tooltip/tooltip-intl.d.ts +3 -0
  455. package/tooltip/tooltip.component.d.ts +3 -0
  456. package/tooltip/tooltip.directive.d.ts +3 -0
  457. package/tooltip/tooltip.module.d.ts +10 -0
  458. package/tree-select/public-api.d.ts +0 -1
  459. package/tree-select/tree-node-placeholder.component.d.ts +3 -0
  460. package/tree-select/tree-select.component.d.ts +37 -3
  461. package/tree-select/tree-select.module.d.ts +10 -0
  462. package/utils/coercion.d.ts +1 -1
  463. package/utils/fn.d.ts +1 -1
  464. package/utils/observe-dom.d.ts +0 -1
  465. package/accordion/accordion-item/accordion-item.component.ngfactory.d.ts +0 -1
  466. package/accordion/accordion-item/accordion-item.component.scss.ngstyle.d.ts +0 -1
  467. package/accordion/accordion.component.ngfactory.d.ts +0 -1
  468. package/accordion/accordion.component.scss.ngstyle.d.ts +0 -1
  469. package/accordion/accordion.module.ngfactory.d.ts +0 -3
  470. package/alauda-ui.metadata.json +0 -1
  471. package/anchor/anchor.component.ngfactory.d.ts +0 -1
  472. package/anchor/anchor.component.scss.ngstyle.d.ts +0 -1
  473. package/anchor/anchor.module.ngfactory.d.ts +0 -3
  474. package/autocomplete/autocomplete-placeholder.component.ngfactory.d.ts +0 -1
  475. package/autocomplete/autocomplete.component.ngfactory.d.ts +0 -1
  476. package/autocomplete/autocomplete.component.scss.ngstyle.d.ts +0 -1
  477. package/autocomplete/autocomplete.module.ngfactory.d.ts +0 -3
  478. package/autocomplete/suggestion/suggestion.component.ngfactory.d.ts +0 -1
  479. package/autocomplete/suggestion/suggestion.component.scss.ngstyle.d.ts +0 -1
  480. package/autocomplete/suggestion-group/suggestion-group.component.ngfactory.d.ts +0 -1
  481. package/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.d.ts +0 -1
  482. package/back-top/back-top.component.ngfactory.d.ts +0 -1
  483. package/back-top/back-top.component.scss.ngstyle.d.ts +0 -1
  484. package/back-top/back-top.module.ngfactory.d.ts +0 -3
  485. package/breadcrumb/breadcrumb-item.component.ngfactory.d.ts +0 -1
  486. package/breadcrumb/breadcrumb-item.component.scss.ngstyle.d.ts +0 -1
  487. package/breadcrumb/breadcrumb.component.ngfactory.d.ts +0 -1
  488. package/breadcrumb/breadcrumb.component.scss.ngstyle.d.ts +0 -1
  489. package/breadcrumb/breadcrumb.module.ngfactory.d.ts +0 -3
  490. package/bundles/alauda-ui.umd.js +0 -12812
  491. package/bundles/alauda-ui.umd.js.map +0 -1
  492. package/bundles/alauda-ui.umd.min.js +0 -2
  493. package/bundles/alauda-ui.umd.min.js.map +0 -1
  494. package/button/button-group/button-group.component.ngfactory.d.ts +0 -1
  495. package/button/button-group/button-group.component.scss.ngstyle.d.ts +0 -1
  496. package/button/button.component.ngfactory.d.ts +0 -1
  497. package/button/button.component.scss.ngstyle.d.ts +0 -1
  498. package/button/button.module.ngfactory.d.ts +0 -3
  499. package/card/card.component.ngfactory.d.ts +0 -1
  500. package/card/card.component.scss.ngstyle.d.ts +0 -1
  501. package/card/card.module.ngfactory.d.ts +0 -3
  502. package/card/section.component.ngfactory.d.ts +0 -1
  503. package/card/section.component.scss.ngstyle.d.ts +0 -1
  504. package/checkbox/checkbox-group/checkbox-group.component.ngfactory.d.ts +0 -1
  505. package/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.d.ts +0 -1
  506. package/checkbox/checkbox.component.ngfactory.d.ts +0 -1
  507. package/checkbox/checkbox.component.scss.ngstyle.d.ts +0 -1
  508. package/checkbox/checkbox.module.ngfactory.d.ts +0 -3
  509. package/color-picker/color-picker.component.ngfactory.d.ts +0 -1
  510. package/color-picker/color-picker.component.scss.ngstyle.d.ts +0 -1
  511. package/color-picker/color-picker.module.ngfactory.d.ts +0 -3
  512. package/date-picker/calendar/date-picker-panel/component.ngfactory.d.ts +0 -1
  513. package/date-picker/calendar/date-picker-panel/style.scss.ngstyle.d.ts +0 -1
  514. package/date-picker/calendar/footer/component.ngfactory.d.ts +0 -1
  515. package/date-picker/calendar/footer/style.scss.ngstyle.d.ts +0 -1
  516. package/date-picker/calendar/header/component.ngfactory.d.ts +0 -1
  517. package/date-picker/calendar/header/style.scss.ngstyle.d.ts +0 -1
  518. package/date-picker/calendar/panel/picker-panel.ngfactory.d.ts +0 -1
  519. package/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.d.ts +0 -1
  520. package/date-picker/calendar/range-picker-panel/component.ngfactory.d.ts +0 -1
  521. package/date-picker/calendar/range-picker-panel/style.scss.ngstyle.d.ts +0 -1
  522. package/date-picker/date-picker/date-picker.component.ngfactory.d.ts +0 -1
  523. package/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.d.ts +0 -1
  524. package/date-picker/date-picker.module.ngfactory.d.ts +0 -3
  525. package/date-picker/range-picker/range-picker.component.ngfactory.d.ts +0 -1
  526. package/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.d.ts +0 -1
  527. package/date-picker/trigger/trigger.component.ngfactory.d.ts +0 -1
  528. package/date-picker/trigger/trigger.style.scss.shim.ngstyle.d.ts +0 -1
  529. package/dialog/confirm-dialog/confirm-dialog.component.ngfactory.d.ts +0 -1
  530. package/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.d.ts +0 -1
  531. package/dialog/dialog-content/dialog-content.component.ngfactory.d.ts +0 -1
  532. package/dialog/dialog-content/dialog-footer.component.ngfactory.d.ts +0 -1
  533. package/dialog/dialog-content/dialog-header.component.ngfactory.d.ts +0 -1
  534. package/dialog/dialog.component.ngfactory.d.ts +0 -1
  535. package/dialog/dialog.component.scss.ngstyle.d.ts +0 -1
  536. package/dialog/dialog.module.ngfactory.d.ts +0 -3
  537. package/drawer/component/drawer.component.ngfactory.d.ts +0 -1
  538. package/drawer/component/drawer.component.scss.ngstyle.d.ts +0 -1
  539. package/drawer/drawer.module.ngfactory.d.ts +0 -3
  540. package/dropdown/dropdown-button/dropdown-button.component.ngfactory.d.ts +0 -1
  541. package/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.d.ts +0 -1
  542. package/dropdown/dropdown.module.ngfactory.d.ts +0 -3
  543. package/dropdown/menu/menu.component.ngfactory.d.ts +0 -1
  544. package/dropdown/menu/menu.component.scss.ngstyle.d.ts +0 -1
  545. package/dropdown/menu-group/menu-group.component.ngfactory.d.ts +0 -1
  546. package/dropdown/menu-group/menu-group.component.scss.ngstyle.d.ts +0 -1
  547. package/dropdown/menu-item/menu-item.component.ngfactory.d.ts +0 -1
  548. package/dropdown/menu-item/menu-item.component.scss.ngstyle.d.ts +0 -1
  549. package/dropdown/submenu/submenu.component.ngfactory.d.ts +0 -1
  550. package/dropdown/submenu/submenu.component.scss.ngstyle.d.ts +0 -1
  551. package/esm2015/accordion/accordion-item/accordion-item.component.js +0 -68
  552. package/esm2015/accordion/accordion-item/accordion-item.component.ngfactory.js +0 -28
  553. package/esm2015/accordion/accordion-item/accordion-item.component.ngsummary.json +0 -1
  554. package/esm2015/accordion/accordion-item/accordion-item.component.scss.ngstyle.js +0 -9
  555. package/esm2015/accordion/accordion.component.js +0 -28
  556. package/esm2015/accordion/accordion.component.ngfactory.js +0 -17
  557. package/esm2015/accordion/accordion.component.ngsummary.json +0 -1
  558. package/esm2015/accordion/accordion.component.scss.ngstyle.js +0 -9
  559. package/esm2015/accordion/accordion.module.js +0 -28
  560. package/esm2015/accordion/accordion.module.ngfactory.js +0 -18
  561. package/esm2015/accordion/accordion.module.ngsummary.json +0 -1
  562. package/esm2015/accordion/public-api.ngsummary.json +0 -1
  563. package/esm2015/alauda-ui.js +0 -25
  564. package/esm2015/alauda-ui.ngsummary.json +0 -1
  565. package/esm2015/anchor/anchor.component.js +0 -146
  566. package/esm2015/anchor/anchor.component.ngfactory.js +0 -40
  567. package/esm2015/anchor/anchor.component.ngsummary.json +0 -1
  568. package/esm2015/anchor/anchor.component.scss.ngstyle.js +0 -9
  569. package/esm2015/anchor/anchor.directive.js +0 -174
  570. package/esm2015/anchor/anchor.directive.ngsummary.json +0 -1
  571. package/esm2015/anchor/anchor.module.js +0 -25
  572. package/esm2015/anchor/anchor.module.ngfactory.js +0 -13
  573. package/esm2015/anchor/anchor.module.ngsummary.json +0 -1
  574. package/esm2015/anchor/public-api.ngsummary.json +0 -1
  575. package/esm2015/anchor/types.ngsummary.json +0 -1
  576. package/esm2015/anchor/utils.ngsummary.json +0 -1
  577. package/esm2015/autocomplete/autocomplete-placeholder.component.js +0 -13
  578. package/esm2015/autocomplete/autocomplete-placeholder.component.ngfactory.js +0 -16
  579. package/esm2015/autocomplete/autocomplete-placeholder.component.ngsummary.json +0 -1
  580. package/esm2015/autocomplete/autocomplete.component.js +0 -40
  581. package/esm2015/autocomplete/autocomplete.component.ngfactory.js +0 -22
  582. package/esm2015/autocomplete/autocomplete.component.ngsummary.json +0 -1
  583. package/esm2015/autocomplete/autocomplete.component.scss.ngstyle.js +0 -9
  584. package/esm2015/autocomplete/autocomplete.directive.js +0 -253
  585. package/esm2015/autocomplete/autocomplete.directive.ngsummary.json +0 -1
  586. package/esm2015/autocomplete/autocomplete.module.js +0 -36
  587. package/esm2015/autocomplete/autocomplete.module.ngfactory.js +0 -20
  588. package/esm2015/autocomplete/autocomplete.module.ngsummary.json +0 -1
  589. package/esm2015/autocomplete/autocomplete.types.ngsummary.json +0 -1
  590. package/esm2015/autocomplete/helper-directives.js +0 -13
  591. package/esm2015/autocomplete/helper-directives.ngsummary.json +0 -1
  592. package/esm2015/autocomplete/public-api.ngsummary.json +0 -1
  593. package/esm2015/autocomplete/suggestion/suggestion.component.js +0 -79
  594. package/esm2015/autocomplete/suggestion/suggestion.component.ngfactory.js +0 -22
  595. package/esm2015/autocomplete/suggestion/suggestion.component.ngsummary.json +0 -1
  596. package/esm2015/autocomplete/suggestion/suggestion.component.scss.ngstyle.js +0 -9
  597. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.js +0 -25
  598. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngfactory.js +0 -18
  599. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngsummary.json +0 -1
  600. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.js +0 -9
  601. package/esm2015/back-top/back-top.component.js +0 -75
  602. package/esm2015/back-top/back-top.component.ngfactory.js +0 -25
  603. package/esm2015/back-top/back-top.component.ngsummary.json +0 -1
  604. package/esm2015/back-top/back-top.component.scss.ngstyle.js +0 -9
  605. package/esm2015/back-top/back-top.module.js +0 -14
  606. package/esm2015/back-top/back-top.module.ngfactory.js +0 -16
  607. package/esm2015/back-top/back-top.module.ngsummary.json +0 -1
  608. package/esm2015/back-top/public-api.ngsummary.json +0 -1
  609. package/esm2015/breadcrumb/breadcrumb-item.component.js +0 -36
  610. package/esm2015/breadcrumb/breadcrumb-item.component.ngfactory.js +0 -23
  611. package/esm2015/breadcrumb/breadcrumb-item.component.ngsummary.json +0 -1
  612. package/esm2015/breadcrumb/breadcrumb-item.component.scss.ngstyle.js +0 -9
  613. package/esm2015/breadcrumb/breadcrumb.component.js +0 -58
  614. package/esm2015/breadcrumb/breadcrumb.component.ngfactory.js +0 -17
  615. package/esm2015/breadcrumb/breadcrumb.component.ngsummary.json +0 -1
  616. package/esm2015/breadcrumb/breadcrumb.component.scss.ngstyle.js +0 -9
  617. package/esm2015/breadcrumb/breadcrumb.module.js +0 -15
  618. package/esm2015/breadcrumb/breadcrumb.module.ngfactory.js +0 -16
  619. package/esm2015/breadcrumb/breadcrumb.module.ngsummary.json +0 -1
  620. package/esm2015/breadcrumb/public-api.ngsummary.json +0 -1
  621. package/esm2015/button/button-group/button-group.component.js +0 -14
  622. package/esm2015/button/button-group/button-group.component.ngfactory.js +0 -17
  623. package/esm2015/button/button-group/button-group.component.ngsummary.json +0 -1
  624. package/esm2015/button/button-group/button-group.component.scss.ngstyle.js +0 -9
  625. package/esm2015/button/button.component.js +0 -124
  626. package/esm2015/button/button.component.ngfactory.js +0 -23
  627. package/esm2015/button/button.component.ngsummary.json +0 -1
  628. package/esm2015/button/button.component.scss.ngstyle.js +0 -9
  629. package/esm2015/button/button.module.js +0 -15
  630. package/esm2015/button/button.module.ngfactory.js +0 -16
  631. package/esm2015/button/button.module.ngsummary.json +0 -1
  632. package/esm2015/button/button.types.ngsummary.json +0 -1
  633. package/esm2015/button/public-api.ngsummary.json +0 -1
  634. package/esm2015/card/card.component.js +0 -20
  635. package/esm2015/card/card.component.ngfactory.js +0 -17
  636. package/esm2015/card/card.component.ngsummary.json +0 -1
  637. package/esm2015/card/card.component.scss.ngstyle.js +0 -9
  638. package/esm2015/card/card.module.js +0 -27
  639. package/esm2015/card/card.module.ngfactory.js +0 -12
  640. package/esm2015/card/card.module.ngsummary.json +0 -1
  641. package/esm2015/card/helper-directives.js +0 -33
  642. package/esm2015/card/helper-directives.ngsummary.json +0 -1
  643. package/esm2015/card/public-api.ngsummary.json +0 -1
  644. package/esm2015/card/section.component.js +0 -14
  645. package/esm2015/card/section.component.ngfactory.js +0 -17
  646. package/esm2015/card/section.component.ngsummary.json +0 -1
  647. package/esm2015/card/section.component.scss.ngstyle.js +0 -9
  648. package/esm2015/checkbox/checkbox-group/checkbox-group.component.js +0 -60
  649. package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngfactory.js +0 -18
  650. package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngsummary.json +0 -1
  651. package/esm2015/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.js +0 -9
  652. package/esm2015/checkbox/checkbox.component.js +0 -105
  653. package/esm2015/checkbox/checkbox.component.ngfactory.js +0 -30
  654. package/esm2015/checkbox/checkbox.component.ngsummary.json +0 -1
  655. package/esm2015/checkbox/checkbox.component.scss.ngstyle.js +0 -9
  656. package/esm2015/checkbox/checkbox.module.js +0 -15
  657. package/esm2015/checkbox/checkbox.module.ngfactory.js +0 -16
  658. package/esm2015/checkbox/checkbox.module.ngsummary.json +0 -1
  659. package/esm2015/checkbox/public-api.ngsummary.json +0 -1
  660. package/esm2015/color-picker/color-picker.component.js +0 -29
  661. package/esm2015/color-picker/color-picker.component.ngfactory.js +0 -22
  662. package/esm2015/color-picker/color-picker.component.ngsummary.json +0 -1
  663. package/esm2015/color-picker/color-picker.component.scss.ngstyle.js +0 -9
  664. package/esm2015/color-picker/color-picker.module.js +0 -14
  665. package/esm2015/color-picker/color-picker.module.ngfactory.js +0 -13
  666. package/esm2015/color-picker/color-picker.module.ngsummary.json +0 -1
  667. package/esm2015/color-picker/public-api.ngsummary.json +0 -1
  668. package/esm2015/date-picker/calendar/constant.ngsummary.json +0 -1
  669. package/esm2015/date-picker/calendar/date-picker-panel/component.js +0 -106
  670. package/esm2015/date-picker/calendar/date-picker-panel/component.ngfactory.js +0 -65
  671. package/esm2015/date-picker/calendar/date-picker-panel/component.ngsummary.json +0 -1
  672. package/esm2015/date-picker/calendar/date-picker-panel/style.scss.ngstyle.js +0 -9
  673. package/esm2015/date-picker/calendar/footer/component.js +0 -25
  674. package/esm2015/date-picker/calendar/footer/component.ngfactory.js +0 -32
  675. package/esm2015/date-picker/calendar/footer/component.ngsummary.json +0 -1
  676. package/esm2015/date-picker/calendar/footer/style.scss.ngstyle.js +0 -9
  677. package/esm2015/date-picker/calendar/header/component.js +0 -100
  678. package/esm2015/date-picker/calendar/header/component.ngfactory.js +0 -58
  679. package/esm2015/date-picker/calendar/header/component.ngsummary.json +0 -1
  680. package/esm2015/date-picker/calendar/header/style.scss.ngstyle.js +0 -9
  681. package/esm2015/date-picker/calendar/panel/picker-panel.js +0 -144
  682. package/esm2015/date-picker/calendar/panel/picker-panel.ngfactory.js +0 -34
  683. package/esm2015/date-picker/calendar/panel/picker-panel.ngsummary.json +0 -1
  684. package/esm2015/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.js +0 -9
  685. package/esm2015/date-picker/calendar/range-picker-panel/component.js +0 -193
  686. package/esm2015/date-picker/calendar/range-picker-panel/component.ngfactory.js +0 -76
  687. package/esm2015/date-picker/calendar/range-picker-panel/component.ngsummary.json +0 -1
  688. package/esm2015/date-picker/calendar/range-picker-panel/style.scss.ngstyle.js +0 -9
  689. package/esm2015/date-picker/calendar/util.ngsummary.json +0 -1
  690. package/esm2015/date-picker/date-picker/date-picker.component.js +0 -84
  691. package/esm2015/date-picker/date-picker/date-picker.component.ngfactory.js +0 -49
  692. package/esm2015/date-picker/date-picker/date-picker.component.ngsummary.json +0 -1
  693. package/esm2015/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.js +0 -9
  694. package/esm2015/date-picker/date-picker.module.js +0 -47
  695. package/esm2015/date-picker/date-picker.module.ngfactory.js +0 -31
  696. package/esm2015/date-picker/date-picker.module.ngsummary.json +0 -1
  697. package/esm2015/date-picker/date-picker.type.ngsummary.json +0 -1
  698. package/esm2015/date-picker/public-api.js +0 -11
  699. package/esm2015/date-picker/public-api.ngsummary.json +0 -1
  700. package/esm2015/date-picker/range-picker/range-picker.component.js +0 -66
  701. package/esm2015/date-picker/range-picker/range-picker.component.ngfactory.js +0 -49
  702. package/esm2015/date-picker/range-picker/range-picker.component.ngsummary.json +0 -1
  703. package/esm2015/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.js +0 -9
  704. package/esm2015/date-picker/trigger/trigger.component.js +0 -61
  705. package/esm2015/date-picker/trigger/trigger.component.ngfactory.js +0 -66
  706. package/esm2015/date-picker/trigger/trigger.component.ngsummary.json +0 -1
  707. package/esm2015/date-picker/trigger/trigger.style.scss.shim.ngstyle.js +0 -9
  708. package/esm2015/dialog/confirm-dialog/confirm-dialog-config.ngsummary.json +0 -1
  709. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.js +0 -95
  710. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngfactory.js +0 -32
  711. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngsummary.json +0 -1
  712. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.js +0 -9
  713. package/esm2015/dialog/dialog-config.ngsummary.json +0 -1
  714. package/esm2015/dialog/dialog-content/dialog-close.directive.js +0 -35
  715. package/esm2015/dialog/dialog-content/dialog-close.directive.ngsummary.json +0 -1
  716. package/esm2015/dialog/dialog-content/dialog-content.component.js +0 -27
  717. package/esm2015/dialog/dialog-content/dialog-content.component.ngfactory.js +0 -18
  718. package/esm2015/dialog/dialog-content/dialog-content.component.ngsummary.json +0 -1
  719. package/esm2015/dialog/dialog-content/dialog-footer.component.js +0 -17
  720. package/esm2015/dialog/dialog-content/dialog-footer.component.ngfactory.js +0 -16
  721. package/esm2015/dialog/dialog-content/dialog-footer.component.ngsummary.json +0 -1
  722. package/esm2015/dialog/dialog-content/dialog-header.component.js +0 -41
  723. package/esm2015/dialog/dialog-content/dialog-header.component.ngfactory.js +0 -26
  724. package/esm2015/dialog/dialog-content/dialog-header.component.ngsummary.json +0 -1
  725. package/esm2015/dialog/dialog-ref.ngsummary.json +0 -1
  726. package/esm2015/dialog/dialog.component.js +0 -64
  727. package/esm2015/dialog/dialog.component.ngfactory.js +0 -20
  728. package/esm2015/dialog/dialog.component.ngsummary.json +0 -1
  729. package/esm2015/dialog/dialog.component.scss.ngstyle.js +0 -9
  730. package/esm2015/dialog/dialog.module.js +0 -44
  731. package/esm2015/dialog/dialog.module.ngfactory.js +0 -25
  732. package/esm2015/dialog/dialog.module.ngsummary.json +0 -1
  733. package/esm2015/dialog/dialog.service.js +0 -132
  734. package/esm2015/dialog/dialog.service.ngsummary.json +0 -1
  735. package/esm2015/dialog/dialog.types.ngsummary.json +0 -1
  736. package/esm2015/dialog/public-api.js +0 -11
  737. package/esm2015/dialog/public-api.ngsummary.json +0 -1
  738. package/esm2015/dialog/utils/errors.ngsummary.json +0 -1
  739. package/esm2015/dialog/utils/index.js +0 -11
  740. package/esm2015/dialog/utils/index.ngsummary.json +0 -1
  741. package/esm2015/drawer/component/drawer-ref.ngsummary.json +0 -1
  742. package/esm2015/drawer/component/drawer.component.js +0 -210
  743. package/esm2015/drawer/component/drawer.component.ngfactory.js +0 -42
  744. package/esm2015/drawer/component/drawer.component.ngsummary.json +0 -1
  745. package/esm2015/drawer/component/drawer.component.scss.ngstyle.js +0 -9
  746. package/esm2015/drawer/component/helper-directives.js +0 -27
  747. package/esm2015/drawer/component/helper-directives.ngsummary.json +0 -1
  748. package/esm2015/drawer/drawer.module.js +0 -26
  749. package/esm2015/drawer/drawer.module.ngfactory.js +0 -23
  750. package/esm2015/drawer/drawer.module.ngsummary.json +0 -1
  751. package/esm2015/drawer/drawer.service.js +0 -46
  752. package/esm2015/drawer/drawer.service.ngsummary.json +0 -1
  753. package/esm2015/drawer/public-api.ngsummary.json +0 -1
  754. package/esm2015/dropdown/dropdown-active.directive.js +0 -13
  755. package/esm2015/dropdown/dropdown-active.directive.ngsummary.json +0 -1
  756. package/esm2015/dropdown/dropdown-button/dropdown-button.component.js +0 -46
  757. package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngfactory.js +0 -29
  758. package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngsummary.json +0 -1
  759. package/esm2015/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.js +0 -9
  760. package/esm2015/dropdown/dropdown.directive.js +0 -73
  761. package/esm2015/dropdown/dropdown.directive.ngsummary.json +0 -1
  762. package/esm2015/dropdown/dropdown.module.js +0 -44
  763. package/esm2015/dropdown/dropdown.module.ngfactory.js +0 -25
  764. package/esm2015/dropdown/dropdown.module.ngsummary.json +0 -1
  765. package/esm2015/dropdown/dropdown.types.ngsummary.json +0 -1
  766. package/esm2015/dropdown/helper-directives.js +0 -13
  767. package/esm2015/dropdown/helper-directives.ngsummary.json +0 -1
  768. package/esm2015/dropdown/menu/menu-content.directive.js +0 -54
  769. package/esm2015/dropdown/menu/menu-content.directive.ngsummary.json +0 -1
  770. package/esm2015/dropdown/menu/menu.component.js +0 -32
  771. package/esm2015/dropdown/menu/menu.component.ngfactory.js +0 -18
  772. package/esm2015/dropdown/menu/menu.component.ngsummary.json +0 -1
  773. package/esm2015/dropdown/menu/menu.component.scss.ngstyle.js +0 -9
  774. package/esm2015/dropdown/menu-group/menu-group.component.js +0 -14
  775. package/esm2015/dropdown/menu-group/menu-group.component.ngfactory.js +0 -17
  776. package/esm2015/dropdown/menu-group/menu-group.component.ngsummary.json +0 -1
  777. package/esm2015/dropdown/menu-group/menu-group.component.scss.ngstyle.js +0 -9
  778. package/esm2015/dropdown/menu-item/menu-item.component.js +0 -38
  779. package/esm2015/dropdown/menu-item/menu-item.component.ngfactory.js +0 -17
  780. package/esm2015/dropdown/menu-item/menu-item.component.ngsummary.json +0 -1
  781. package/esm2015/dropdown/menu-item/menu-item.component.scss.ngstyle.js +0 -9
  782. package/esm2015/dropdown/public-api.js +0 -11
  783. package/esm2015/dropdown/public-api.ngsummary.json +0 -1
  784. package/esm2015/dropdown/submenu/submenu.component.js +0 -37
  785. package/esm2015/dropdown/submenu/submenu.component.ngfactory.js +0 -29
  786. package/esm2015/dropdown/submenu/submenu.component.ngsummary.json +0 -1
  787. package/esm2015/dropdown/submenu/submenu.component.scss.ngstyle.js +0 -9
  788. package/esm2015/form/common-form.js +0 -89
  789. package/esm2015/form/common-form.ngsummary.json +0 -1
  790. package/esm2015/form/form-item/form-item.component.js +0 -93
  791. package/esm2015/form/form-item/form-item.component.ngfactory.js +0 -23
  792. package/esm2015/form/form-item/form-item.component.ngsummary.json +0 -1
  793. package/esm2015/form/form-item/form-item.component.scss.ngstyle.js +0 -9
  794. package/esm2015/form/form.directive.js +0 -58
  795. package/esm2015/form/form.directive.ngsummary.json +0 -1
  796. package/esm2015/form/form.module.js +0 -31
  797. package/esm2015/form/form.module.ngfactory.js +0 -12
  798. package/esm2015/form/form.module.ngsummary.json +0 -1
  799. package/esm2015/form/form.types.ngsummary.json +0 -1
  800. package/esm2015/form/helper-directives.js +0 -66
  801. package/esm2015/form/helper-directives.ngsummary.json +0 -1
  802. package/esm2015/form/public-api.ngsummary.json +0 -1
  803. package/esm2015/i18n/i18n.module.js +0 -11
  804. package/esm2015/i18n/i18n.module.ngfactory.js +0 -11
  805. package/esm2015/i18n/i18n.module.ngsummary.json +0 -1
  806. package/esm2015/i18n/i18n.pipe.js +0 -19
  807. package/esm2015/i18n/i18n.pipe.ngsummary.json +0 -1
  808. package/esm2015/i18n/i18n.service.js +0 -43
  809. package/esm2015/i18n/i18n.service.ngsummary.json +0 -1
  810. package/esm2015/i18n/i18n.type.js +0 -6
  811. package/esm2015/i18n/i18n.type.ngsummary.json +0 -1
  812. package/esm2015/i18n/language/en.ngsummary.json +0 -1
  813. package/esm2015/i18n/language/zh.ngsummary.json +0 -1
  814. package/esm2015/i18n/public-api.ngsummary.json +0 -1
  815. package/esm2015/icon/icon-register.service.js +0 -63
  816. package/esm2015/icon/icon-register.service.ngsummary.json +0 -1
  817. package/esm2015/icon/icon.component.js +0 -62
  818. package/esm2015/icon/icon.component.ngfactory.js +0 -25
  819. package/esm2015/icon/icon.component.ngsummary.json +0 -1
  820. package/esm2015/icon/icon.component.scss.ngstyle.js +0 -9
  821. package/esm2015/icon/icon.module.js +0 -16
  822. package/esm2015/icon/icon.module.ngfactory.js +0 -15
  823. package/esm2015/icon/icon.module.ngsummary.json +0 -1
  824. package/esm2015/icon/icons.ngsummary.json +0 -1
  825. package/esm2015/icon/public-api.ngsummary.json +0 -1
  826. package/esm2015/icon/utils.ngsummary.json +0 -1
  827. package/esm2015/inline-alert/helper-directives.js +0 -10
  828. package/esm2015/inline-alert/helper-directives.ngsummary.json +0 -1
  829. package/esm2015/inline-alert/inline-alert.component.js +0 -51
  830. package/esm2015/inline-alert/inline-alert.component.ngfactory.js +0 -29
  831. package/esm2015/inline-alert/inline-alert.component.ngsummary.json +0 -1
  832. package/esm2015/inline-alert/inline-alert.component.scss.ngstyle.js +0 -9
  833. package/esm2015/inline-alert/inline-alert.module.js +0 -15
  834. package/esm2015/inline-alert/inline-alert.module.ngfactory.js +0 -16
  835. package/esm2015/inline-alert/inline-alert.module.ngsummary.json +0 -1
  836. package/esm2015/inline-alert/inline-alert.types.ngsummary.json +0 -1
  837. package/esm2015/inline-alert/public-api.ngsummary.json +0 -1
  838. package/esm2015/input/autosize.directive.js +0 -61
  839. package/esm2015/input/autosize.directive.ngsummary.json +0 -1
  840. package/esm2015/input/helper-directives.js +0 -30
  841. package/esm2015/input/helper-directives.ngsummary.json +0 -1
  842. package/esm2015/input/input-group/input-group.component.js +0 -33
  843. package/esm2015/input/input-group/input-group.component.ngfactory.js +0 -22
  844. package/esm2015/input/input-group/input-group.component.ngsummary.json +0 -1
  845. package/esm2015/input/input-group/input-group.component.scss.ngstyle.js +0 -9
  846. package/esm2015/input/input.component.js +0 -69
  847. package/esm2015/input/input.component.ngfactory.js +0 -17
  848. package/esm2015/input/input.component.ngsummary.json +0 -1
  849. package/esm2015/input/input.component.scss.ngstyle.js +0 -9
  850. package/esm2015/input/input.module.js +0 -54
  851. package/esm2015/input/input.module.ngfactory.js +0 -20
  852. package/esm2015/input/input.module.ngsummary.json +0 -1
  853. package/esm2015/input/number-input/number-input.component.js +0 -83
  854. package/esm2015/input/number-input/number-input.component.ngfactory.js +0 -51
  855. package/esm2015/input/number-input/number-input.component.ngsummary.json +0 -1
  856. package/esm2015/input/number-input/number-input.component.scss.ngstyle.js +0 -9
  857. package/esm2015/input/public-api.js +0 -7
  858. package/esm2015/input/public-api.ngsummary.json +0 -1
  859. package/esm2015/input/search/search.component.js +0 -72
  860. package/esm2015/input/search/search.component.ngfactory.js +0 -51
  861. package/esm2015/input/search/search.component.ngsummary.json +0 -1
  862. package/esm2015/input/search/search.component.scss.ngstyle.js +0 -9
  863. package/esm2015/input/tags-input/tags-input.component.js +0 -252
  864. package/esm2015/input/tags-input/tags-input.component.ngfactory.js +0 -45
  865. package/esm2015/input/tags-input/tags-input.component.ngsummary.json +0 -1
  866. package/esm2015/input/tags-input/tags-input.component.scss.ngstyle.js +0 -9
  867. package/esm2015/input/tags-input/with-max-row-count.ngsummary.json +0 -1
  868. package/esm2015/input/utils/index.ngsummary.json +0 -1
  869. package/esm2015/message/base-message.js +0 -87
  870. package/esm2015/message/base-message.ngsummary.json +0 -1
  871. package/esm2015/message/message-animations.ngsummary.json +0 -1
  872. package/esm2015/message/message-wrapper.component.js +0 -20
  873. package/esm2015/message/message-wrapper.component.ngfactory.js +0 -17
  874. package/esm2015/message/message-wrapper.component.ngsummary.json +0 -1
  875. package/esm2015/message/message-wrapper.component.scss.ngstyle.js +0 -9
  876. package/esm2015/message/message.component.js +0 -77
  877. package/esm2015/message/message.component.ngfactory.js +0 -23
  878. package/esm2015/message/message.component.ngsummary.json +0 -1
  879. package/esm2015/message/message.component.scss.ngstyle.js +0 -9
  880. package/esm2015/message/message.config.ngsummary.json +0 -1
  881. package/esm2015/message/message.module.js +0 -18
  882. package/esm2015/message/message.module.ngfactory.js +0 -25
  883. package/esm2015/message/message.module.ngsummary.json +0 -1
  884. package/esm2015/message/message.service.js +0 -22
  885. package/esm2015/message/message.service.ngsummary.json +0 -1
  886. package/esm2015/message/public-api.ngsummary.json +0 -1
  887. package/esm2015/notification/notification-wrapper.component.js +0 -22
  888. package/esm2015/notification/notification-wrapper.component.ngfactory.js +0 -17
  889. package/esm2015/notification/notification-wrapper.component.ngsummary.json +0 -1
  890. package/esm2015/notification/notification-wrapper.component.scss.ngstyle.js +0 -9
  891. package/esm2015/notification/notification.component.js +0 -106
  892. package/esm2015/notification/notification.component.ngfactory.js +0 -42
  893. package/esm2015/notification/notification.component.ngsummary.json +0 -1
  894. package/esm2015/notification/notification.component.scss.ngstyle.js +0 -9
  895. package/esm2015/notification/notification.config.ngsummary.json +0 -1
  896. package/esm2015/notification/notification.module.js +0 -19
  897. package/esm2015/notification/notification.module.ngfactory.js +0 -25
  898. package/esm2015/notification/notification.module.ngsummary.json +0 -1
  899. package/esm2015/notification/notification.service.js +0 -22
  900. package/esm2015/notification/notification.service.ngsummary.json +0 -1
  901. package/esm2015/notification/public-api.ngsummary.json +0 -1
  902. package/esm2015/paginator/paginator-intl.js +0 -33
  903. package/esm2015/paginator/paginator-intl.ngsummary.json +0 -1
  904. package/esm2015/paginator/paginator.component.js +0 -118
  905. package/esm2015/paginator/paginator.component.ngfactory.js +0 -73
  906. package/esm2015/paginator/paginator.component.ngsummary.json +0 -1
  907. package/esm2015/paginator/paginator.component.scss.ngstyle.js +0 -9
  908. package/esm2015/paginator/paginator.module.js +0 -19
  909. package/esm2015/paginator/paginator.module.ngfactory.js +0 -32
  910. package/esm2015/paginator/paginator.module.ngsummary.json +0 -1
  911. package/esm2015/paginator/public-api.ngsummary.json +0 -1
  912. package/esm2015/public-api.ngsummary.json +0 -1
  913. package/esm2015/radio/base-radio.js +0 -69
  914. package/esm2015/radio/base-radio.ngsummary.json +0 -1
  915. package/esm2015/radio/public-api.ngsummary.json +0 -1
  916. package/esm2015/radio/radio-button/radio-button.component.js +0 -48
  917. package/esm2015/radio/radio-button/radio-button.component.ngfactory.js +0 -30
  918. package/esm2015/radio/radio-button/radio-button.component.ngsummary.json +0 -1
  919. package/esm2015/radio/radio-button/radio-button.component.scss.ngstyle.js +0 -9
  920. package/esm2015/radio/radio-group/radio-group.component.js +0 -75
  921. package/esm2015/radio/radio-group/radio-group.component.ngfactory.js +0 -18
  922. package/esm2015/radio/radio-group/radio-group.component.ngsummary.json +0 -1
  923. package/esm2015/radio/radio-group/radio-group.component.scss.ngstyle.js +0 -9
  924. package/esm2015/radio/radio.component.js +0 -31
  925. package/esm2015/radio/radio.component.ngfactory.js +0 -26
  926. package/esm2015/radio/radio.component.ngsummary.json +0 -1
  927. package/esm2015/radio/radio.component.scss.ngstyle.js +0 -9
  928. package/esm2015/radio/radio.module.js +0 -16
  929. package/esm2015/radio/radio.module.ngfactory.js +0 -16
  930. package/esm2015/radio/radio.module.ngsummary.json +0 -1
  931. package/esm2015/radio/radio.types.ngsummary.json +0 -1
  932. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.js +0 -81
  933. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.ngsummary.json +0 -1
  934. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.js +0 -108
  935. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.ngsummary.json +0 -1
  936. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.js +0 -20
  937. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.ngsummary.json +0 -1
  938. package/esm2015/scrolling/public-api.js +0 -6
  939. package/esm2015/scrolling/public-api.ngsummary.json +0 -1
  940. package/esm2015/scrolling/scrolling.module.js +0 -21
  941. package/esm2015/scrolling/scrolling.module.ngfactory.js +0 -11
  942. package/esm2015/scrolling/scrolling.module.ngsummary.json +0 -1
  943. package/esm2015/scrolling/virtual-for-of.directive.js +0 -30
  944. package/esm2015/scrolling/virtual-for-of.directive.ngsummary.json +0 -1
  945. package/esm2015/scrolling/virtual-scroll-viewport.component.js +0 -26
  946. package/esm2015/scrolling/virtual-scroll-viewport.component.ngfactory.js +0 -19
  947. package/esm2015/scrolling/virtual-scroll-viewport.component.ngsummary.json +0 -1
  948. package/esm2015/scrolling/virtual-scroll-viewport.component.scss.ngstyle.js +0 -9
  949. package/esm2015/select/base-select.js +0 -311
  950. package/esm2015/select/base-select.ngsummary.json +0 -1
  951. package/esm2015/select/helper-directives.js +0 -22
  952. package/esm2015/select/helper-directives.ngsummary.json +0 -1
  953. package/esm2015/select/multi-select/multi-select.component.js +0 -276
  954. package/esm2015/select/multi-select/multi-select.component.ngfactory.js +0 -76
  955. package/esm2015/select/multi-select/multi-select.component.ngsummary.json +0 -1
  956. package/esm2015/select/multi-select/multi-select.component.scss.ngstyle.js +0 -9
  957. package/esm2015/select/option/option.component.js +0 -107
  958. package/esm2015/select/option/option.component.ngfactory.js +0 -26
  959. package/esm2015/select/option/option.component.ngsummary.json +0 -1
  960. package/esm2015/select/option/option.component.scss.ngstyle.js +0 -9
  961. package/esm2015/select/option-group/option-group.component.js +0 -25
  962. package/esm2015/select/option-group/option-group.component.ngfactory.js +0 -18
  963. package/esm2015/select/option-group/option-group.component.ngsummary.json +0 -1
  964. package/esm2015/select/option-group/option-group.component.scss.ngstyle.js +0 -9
  965. package/esm2015/select/option-placeholder.component.js +0 -13
  966. package/esm2015/select/option-placeholder.component.ngfactory.js +0 -16
  967. package/esm2015/select/option-placeholder.component.ngsummary.json +0 -1
  968. package/esm2015/select/public-api.ngsummary.json +0 -1
  969. package/esm2015/select/select.component.js +0 -95
  970. package/esm2015/select/select.component.ngfactory.js +0 -63
  971. package/esm2015/select/select.component.ngsummary.json +0 -1
  972. package/esm2015/select/select.component.scss.ngstyle.js +0 -9
  973. package/esm2015/select/select.module.js +0 -49
  974. package/esm2015/select/select.module.ngfactory.js +0 -30
  975. package/esm2015/select/select.module.ngsummary.json +0 -1
  976. package/esm2015/select/select.types.ngsummary.json +0 -1
  977. package/esm2015/select/validators.js +0 -72
  978. package/esm2015/select/validators.ngsummary.json +0 -1
  979. package/esm2015/shared/click-outside.directive.js +0 -26
  980. package/esm2015/shared/click-outside.directive.ngsummary.json +0 -1
  981. package/esm2015/shared/shared.module.js +0 -11
  982. package/esm2015/shared/shared.module.ngfactory.js +0 -11
  983. package/esm2015/shared/shared.module.ngsummary.json +0 -1
  984. package/esm2015/sort/public-api.ngsummary.json +0 -1
  985. package/esm2015/sort/sort-errors.ngsummary.json +0 -1
  986. package/esm2015/sort/sort-header.component.js +0 -76
  987. package/esm2015/sort/sort-header.component.ngfactory.js +0 -22
  988. package/esm2015/sort/sort-header.component.ngsummary.json +0 -1
  989. package/esm2015/sort/sort-header.component.scss.ngstyle.js +0 -9
  990. package/esm2015/sort/sort.directive.js +0 -69
  991. package/esm2015/sort/sort.directive.ngsummary.json +0 -1
  992. package/esm2015/sort/sort.module.js +0 -14
  993. package/esm2015/sort/sort.module.ngfactory.js +0 -12
  994. package/esm2015/sort/sort.module.ngsummary.json +0 -1
  995. package/esm2015/sort/sort.types.ngsummary.json +0 -1
  996. package/esm2015/status-bar/public-api.ngsummary.json +0 -1
  997. package/esm2015/status-bar/status-bar.component.js +0 -28
  998. package/esm2015/status-bar/status-bar.component.ngfactory.js +0 -26
  999. package/esm2015/status-bar/status-bar.component.ngsummary.json +0 -1
  1000. package/esm2015/status-bar/status-bar.component.scss.ngstyle.js +0 -9
  1001. package/esm2015/status-bar/status-bar.module.js +0 -14
  1002. package/esm2015/status-bar/status-bar.module.ngfactory.js +0 -20
  1003. package/esm2015/status-bar/status-bar.module.ngsummary.json +0 -1
  1004. package/esm2015/status-bar/status-bar.types.ngsummary.json +0 -1
  1005. package/esm2015/steps/public-api.ngsummary.json +0 -1
  1006. package/esm2015/steps/steps.component.js +0 -179
  1007. package/esm2015/steps/steps.component.ngfactory.js +0 -34
  1008. package/esm2015/steps/steps.component.ngsummary.json +0 -1
  1009. package/esm2015/steps/steps.component.scss.ngstyle.js +0 -9
  1010. package/esm2015/steps/steps.module.js +0 -14
  1011. package/esm2015/steps/steps.module.ngfactory.js +0 -16
  1012. package/esm2015/steps/steps.module.ngsummary.json +0 -1
  1013. package/esm2015/steps/types.ngsummary.json +0 -1
  1014. package/esm2015/switch/public-api.ngsummary.json +0 -1
  1015. package/esm2015/switch/switch.component.js +0 -47
  1016. package/esm2015/switch/switch.component.ngfactory.js +0 -25
  1017. package/esm2015/switch/switch.component.ngsummary.json +0 -1
  1018. package/esm2015/switch/switch.component.scss.ngstyle.js +0 -9
  1019. package/esm2015/switch/switch.module.js +0 -13
  1020. package/esm2015/switch/switch.module.ngfactory.js +0 -12
  1021. package/esm2015/switch/switch.module.ngsummary.json +0 -1
  1022. package/esm2015/table/public-api.js +0 -13
  1023. package/esm2015/table/public-api.ngsummary.json +0 -1
  1024. package/esm2015/table/table-cell-def.directive.js +0 -20
  1025. package/esm2015/table/table-cell-def.directive.ngsummary.json +0 -1
  1026. package/esm2015/table/table-cell.component.js +0 -82
  1027. package/esm2015/table/table-cell.component.ngfactory.js +0 -32
  1028. package/esm2015/table/table-cell.component.ngsummary.json +0 -1
  1029. package/esm2015/table/table-cell.directive.js +0 -26
  1030. package/esm2015/table/table-cell.directive.ngsummary.json +0 -1
  1031. package/esm2015/table/table-column-def.directive.js +0 -29
  1032. package/esm2015/table/table-column-def.directive.ngsummary.json +0 -1
  1033. package/esm2015/table/table-header-cell-def.directive.js +0 -20
  1034. package/esm2015/table/table-header-cell-def.directive.ngsummary.json +0 -1
  1035. package/esm2015/table/table-header-cell.directive.js +0 -26
  1036. package/esm2015/table/table-header-cell.directive.ngsummary.json +0 -1
  1037. package/esm2015/table/table-header-row-def.directive.js +0 -24
  1038. package/esm2015/table/table-header-row-def.directive.ngsummary.json +0 -1
  1039. package/esm2015/table/table-header-row.component.js +0 -20
  1040. package/esm2015/table/table-header-row.component.ngfactory.js +0 -17
  1041. package/esm2015/table/table-header-row.component.ngsummary.json +0 -1
  1042. package/esm2015/table/table-placeholder.directive.js +0 -30
  1043. package/esm2015/table/table-placeholder.directive.ngsummary.json +0 -1
  1044. package/esm2015/table/table-row-def.directive.js +0 -25
  1045. package/esm2015/table/table-row-def.directive.ngsummary.json +0 -1
  1046. package/esm2015/table/table-row.component.js +0 -37
  1047. package/esm2015/table/table-row.component.ngfactory.js +0 -17
  1048. package/esm2015/table/table-row.component.ngsummary.json +0 -1
  1049. package/esm2015/table/table-scroll.directive.js +0 -84
  1050. package/esm2015/table/table-scroll.directive.ngsummary.json +0 -1
  1051. package/esm2015/table/table-scroll.scss.ngstyle.js +0 -9
  1052. package/esm2015/table/table.component.js +0 -69
  1053. package/esm2015/table/table.component.ngfactory.js +0 -25
  1054. package/esm2015/table/table.component.ngsummary.json +0 -1
  1055. package/esm2015/table/table.component.scss.ngstyle.js +0 -9
  1056. package/esm2015/table/table.module.js +0 -61
  1057. package/esm2015/table/table.module.ngfactory.js +0 -20
  1058. package/esm2015/table/table.module.ngsummary.json +0 -1
  1059. package/esm2015/table-of-contents/public-api.ngsummary.json +0 -1
  1060. package/esm2015/table-of-contents/table-of-contents.module.js +0 -15
  1061. package/esm2015/table-of-contents/table-of-contents.module.ngfactory.js +0 -12
  1062. package/esm2015/table-of-contents/table-of-contents.module.ngsummary.json +0 -1
  1063. package/esm2015/table-of-contents/toc-container.directive.js +0 -109
  1064. package/esm2015/table-of-contents/toc-container.directive.ngsummary.json +0 -1
  1065. package/esm2015/table-of-contents/toc-content.directive.js +0 -32
  1066. package/esm2015/table-of-contents/toc-content.directive.ngsummary.json +0 -1
  1067. package/esm2015/table-of-contents/toc-link.directive.js +0 -43
  1068. package/esm2015/table-of-contents/toc-link.directive.ngsummary.json +0 -1
  1069. package/esm2015/tabs/public-api.js +0 -10
  1070. package/esm2015/tabs/public-api.ngsummary.json +0 -1
  1071. package/esm2015/tabs/tab-body.component.js +0 -35
  1072. package/esm2015/tabs/tab-body.component.ngfactory.js +0 -18
  1073. package/esm2015/tabs/tab-body.component.ngsummary.json +0 -1
  1074. package/esm2015/tabs/tab-context.service.js +0 -28
  1075. package/esm2015/tabs/tab-context.service.ngsummary.json +0 -1
  1076. package/esm2015/tabs/tab-directives.js +0 -142
  1077. package/esm2015/tabs/tab-directives.ngsummary.json +0 -1
  1078. package/esm2015/tabs/tab-group.component.js +0 -277
  1079. package/esm2015/tabs/tab-group.component.ngfactory.js +0 -56
  1080. package/esm2015/tabs/tab-group.component.ngsummary.json +0 -1
  1081. package/esm2015/tabs/tab-group.component.scss.ngstyle.js +0 -9
  1082. package/esm2015/tabs/tab-header-active-indicator.component.js +0 -59
  1083. package/esm2015/tabs/tab-header-active-indicator.component.ngfactory.js +0 -17
  1084. package/esm2015/tabs/tab-header-active-indicator.component.ngsummary.json +0 -1
  1085. package/esm2015/tabs/tab-header.component.js +0 -348
  1086. package/esm2015/tabs/tab-header.component.ngfactory.js +0 -44
  1087. package/esm2015/tabs/tab-header.component.ngsummary.json +0 -1
  1088. package/esm2015/tabs/tab-header.component.scss.ngstyle.js +0 -9
  1089. package/esm2015/tabs/tab.component.js +0 -82
  1090. package/esm2015/tabs/tab.component.ngfactory.js +0 -18
  1091. package/esm2015/tabs/tab.component.ngsummary.json +0 -1
  1092. package/esm2015/tabs/tabs.module.js +0 -53
  1093. package/esm2015/tabs/tabs.module.ngfactory.js +0 -22
  1094. package/esm2015/tabs/tabs.module.ngsummary.json +0 -1
  1095. package/esm2015/tabs/tabs.types.ngsummary.json +0 -1
  1096. package/esm2015/tag/check-tag/check-tag.component.js +0 -34
  1097. package/esm2015/tag/check-tag/check-tag.component.ngfactory.js +0 -27
  1098. package/esm2015/tag/check-tag/check-tag.component.ngsummary.json +0 -1
  1099. package/esm2015/tag/check-tag/check-tag.component.scss.ngstyle.js +0 -9
  1100. package/esm2015/tag/public-api.ngsummary.json +0 -1
  1101. package/esm2015/tag/tag.component.js +0 -57
  1102. package/esm2015/tag/tag.component.ngfactory.js +0 -26
  1103. package/esm2015/tag/tag.component.ngsummary.json +0 -1
  1104. package/esm2015/tag/tag.component.scss.ngstyle.js +0 -9
  1105. package/esm2015/tag/tag.module.js +0 -15
  1106. package/esm2015/tag/tag.module.ngfactory.js +0 -16
  1107. package/esm2015/tag/tag.module.ngsummary.json +0 -1
  1108. package/esm2015/tag/tag.types.ngsummary.json +0 -1
  1109. package/esm2015/theme/public-api.ngsummary.json +0 -1
  1110. package/esm2015/theme/theme.module.js +0 -13
  1111. package/esm2015/theme/theme.module.ngfactory.js +0 -12
  1112. package/esm2015/theme/theme.module.ngsummary.json +0 -1
  1113. package/esm2015/theme/theme.pipe.js +0 -61
  1114. package/esm2015/theme/theme.pipe.ngsummary.json +0 -1
  1115. package/esm2015/theme/theme.service.js +0 -52
  1116. package/esm2015/theme/theme.service.ngsummary.json +0 -1
  1117. package/esm2015/theme/theme.types.ngsummary.json +0 -1
  1118. package/esm2015/theme/utils.ngsummary.json +0 -1
  1119. package/esm2015/time-picker/component.js +0 -149
  1120. package/esm2015/time-picker/component.ngfactory.js +0 -82
  1121. package/esm2015/time-picker/component.ngsummary.json +0 -1
  1122. package/esm2015/time-picker/constant.js +0 -9
  1123. package/esm2015/time-picker/constant.ngsummary.json +0 -1
  1124. package/esm2015/time-picker/panel/panel.component.js +0 -211
  1125. package/esm2015/time-picker/panel/panel.component.ngfactory.js +0 -49
  1126. package/esm2015/time-picker/panel/panel.component.ngsummary.json +0 -1
  1127. package/esm2015/time-picker/panel/panel.style.scss.ngstyle.js +0 -9
  1128. package/esm2015/time-picker/public-api.ngsummary.json +0 -1
  1129. package/esm2015/time-picker/style.scss.ngstyle.js +0 -9
  1130. package/esm2015/time-picker/time-picker.module.js +0 -33
  1131. package/esm2015/time-picker/time-picker.module.ngfactory.js +0 -30
  1132. package/esm2015/time-picker/time-picker.module.ngsummary.json +0 -1
  1133. package/esm2015/time-picker/time-picker.type.js +0 -13
  1134. package/esm2015/time-picker/time-picker.type.ngsummary.json +0 -1
  1135. package/esm2015/tooltip/base-tooltip.js +0 -255
  1136. package/esm2015/tooltip/base-tooltip.ngsummary.json +0 -1
  1137. package/esm2015/tooltip/public-api.js +0 -8
  1138. package/esm2015/tooltip/public-api.ngsummary.json +0 -1
  1139. package/esm2015/tooltip/tooltip-active.directive.js +0 -44
  1140. package/esm2015/tooltip/tooltip-active.directive.ngsummary.json +0 -1
  1141. package/esm2015/tooltip/tooltip-copy.directive.js +0 -80
  1142. package/esm2015/tooltip/tooltip-copy.directive.ngsummary.json +0 -1
  1143. package/esm2015/tooltip/tooltip-intl.js +0 -25
  1144. package/esm2015/tooltip/tooltip-intl.ngsummary.json +0 -1
  1145. package/esm2015/tooltip/tooltip.component.js +0 -55
  1146. package/esm2015/tooltip/tooltip.component.ngfactory.js +0 -25
  1147. package/esm2015/tooltip/tooltip.component.ngsummary.json +0 -1
  1148. package/esm2015/tooltip/tooltip.component.scss.ngstyle.js +0 -9
  1149. package/esm2015/tooltip/tooltip.directive.js +0 -45
  1150. package/esm2015/tooltip/tooltip.directive.ngsummary.json +0 -1
  1151. package/esm2015/tooltip/tooltip.module.js +0 -25
  1152. package/esm2015/tooltip/tooltip.module.ngfactory.js +0 -19
  1153. package/esm2015/tooltip/tooltip.module.ngsummary.json +0 -1
  1154. package/esm2015/tooltip/tooltip.types.ngsummary.json +0 -1
  1155. package/esm2015/tooltip/utils/index.ngsummary.json +0 -1
  1156. package/esm2015/tree-select/public-api.js +0 -6
  1157. package/esm2015/tree-select/public-api.ngsummary.json +0 -1
  1158. package/esm2015/tree-select/tree-node/tree-node.component.js +0 -127
  1159. package/esm2015/tree-select/tree-node/tree-node.component.ngfactory.js +0 -32
  1160. package/esm2015/tree-select/tree-node/tree-node.component.ngsummary.json +0 -1
  1161. package/esm2015/tree-select/tree-node/tree-node.component.scss.ngstyle.js +0 -9
  1162. package/esm2015/tree-select/tree-node-placeholder.component.js +0 -13
  1163. package/esm2015/tree-select/tree-node-placeholder.component.ngfactory.js +0 -16
  1164. package/esm2015/tree-select/tree-node-placeholder.component.ngsummary.json +0 -1
  1165. package/esm2015/tree-select/tree-select.component.js +0 -204
  1166. package/esm2015/tree-select/tree-select.component.ngfactory.js +0 -56
  1167. package/esm2015/tree-select/tree-select.component.ngsummary.json +0 -1
  1168. package/esm2015/tree-select/tree-select.component.scss.ngstyle.js +0 -9
  1169. package/esm2015/tree-select/tree-select.module.js +0 -26
  1170. package/esm2015/tree-select/tree-select.module.ngfactory.js +0 -29
  1171. package/esm2015/tree-select/tree-select.module.ngsummary.json +0 -1
  1172. package/esm2015/tree-select/tree-select.types.ngsummary.json +0 -1
  1173. package/esm2015/types.ngsummary.json +0 -1
  1174. package/esm2015/utils/async.ngsummary.json +0 -1
  1175. package/esm2015/utils/bem.ngsummary.json +0 -1
  1176. package/esm2015/utils/coercion.js +0 -16
  1177. package/esm2015/utils/coercion.ngsummary.json +0 -1
  1178. package/esm2015/utils/fn.js +0 -8
  1179. package/esm2015/utils/fn.ngsummary.json +0 -1
  1180. package/esm2015/utils/index.ngsummary.json +0 -1
  1181. package/esm2015/utils/observe-dom.ngsummary.json +0 -1
  1182. package/esm2015/utils/scroll-into-view.ngsummary.json +0 -1
  1183. package/esm2015/utils/watch-content-exist.ngsummary.json +0 -1
  1184. package/fesm2015/alauda-ui.js +0 -10768
  1185. package/fesm2015/alauda-ui.js.map +0 -1
  1186. package/form/form-item/form-item.component.ngfactory.d.ts +0 -1
  1187. package/form/form-item/form-item.component.scss.ngstyle.d.ts +0 -1
  1188. package/form/form.module.ngfactory.d.ts +0 -3
  1189. package/i18n/i18n.module.ngfactory.d.ts +0 -3
  1190. package/icon/icon.component.ngfactory.d.ts +0 -1
  1191. package/icon/icon.component.scss.ngstyle.d.ts +0 -1
  1192. package/icon/icon.module.ngfactory.d.ts +0 -3
  1193. package/inline-alert/inline-alert.component.ngfactory.d.ts +0 -1
  1194. package/inline-alert/inline-alert.component.scss.ngstyle.d.ts +0 -1
  1195. package/inline-alert/inline-alert.module.ngfactory.d.ts +0 -3
  1196. package/input/input-group/input-group.component.ngfactory.d.ts +0 -1
  1197. package/input/input-group/input-group.component.scss.ngstyle.d.ts +0 -1
  1198. package/input/input.component.ngfactory.d.ts +0 -1
  1199. package/input/input.component.scss.ngstyle.d.ts +0 -1
  1200. package/input/input.module.ngfactory.d.ts +0 -3
  1201. package/input/number-input/number-input.component.ngfactory.d.ts +0 -1
  1202. package/input/number-input/number-input.component.scss.ngstyle.d.ts +0 -1
  1203. package/input/search/search.component.ngfactory.d.ts +0 -1
  1204. package/input/search/search.component.scss.ngstyle.d.ts +0 -1
  1205. package/input/tags-input/tags-input.component.ngfactory.d.ts +0 -1
  1206. package/input/tags-input/tags-input.component.scss.ngstyle.d.ts +0 -1
  1207. package/message/message-wrapper.component.ngfactory.d.ts +0 -1
  1208. package/message/message-wrapper.component.scss.ngstyle.d.ts +0 -1
  1209. package/message/message.component.ngfactory.d.ts +0 -1
  1210. package/message/message.component.scss.ngstyle.d.ts +0 -1
  1211. package/message/message.module.ngfactory.d.ts +0 -3
  1212. package/notification/notification-wrapper.component.ngfactory.d.ts +0 -1
  1213. package/notification/notification-wrapper.component.scss.ngstyle.d.ts +0 -1
  1214. package/notification/notification.component.ngfactory.d.ts +0 -1
  1215. package/notification/notification.component.scss.ngstyle.d.ts +0 -1
  1216. package/notification/notification.module.ngfactory.d.ts +0 -3
  1217. package/paginator/paginator.component.ngfactory.d.ts +0 -1
  1218. package/paginator/paginator.component.scss.ngstyle.d.ts +0 -1
  1219. package/paginator/paginator.module.ngfactory.d.ts +0 -3
  1220. package/radio/radio-button/radio-button.component.ngfactory.d.ts +0 -1
  1221. package/radio/radio-button/radio-button.component.scss.ngstyle.d.ts +0 -1
  1222. package/radio/radio-group/radio-group.component.ngfactory.d.ts +0 -1
  1223. package/radio/radio-group/radio-group.component.scss.ngstyle.d.ts +0 -1
  1224. package/radio/radio.component.ngfactory.d.ts +0 -1
  1225. package/radio/radio.component.scss.ngstyle.d.ts +0 -1
  1226. package/radio/radio.module.ngfactory.d.ts +0 -3
  1227. package/scrolling/scrolling.module.ngfactory.d.ts +0 -3
  1228. package/scrolling/virtual-scroll-viewport.component.ngfactory.d.ts +0 -1
  1229. package/scrolling/virtual-scroll-viewport.component.scss.ngstyle.d.ts +0 -1
  1230. package/select/multi-select/multi-select.component.ngfactory.d.ts +0 -1
  1231. package/select/multi-select/multi-select.component.scss.ngstyle.d.ts +0 -1
  1232. package/select/option/option.component.ngfactory.d.ts +0 -1
  1233. package/select/option/option.component.scss.ngstyle.d.ts +0 -1
  1234. package/select/option-group/option-group.component.ngfactory.d.ts +0 -1
  1235. package/select/option-group/option-group.component.scss.ngstyle.d.ts +0 -1
  1236. package/select/option-placeholder.component.ngfactory.d.ts +0 -1
  1237. package/select/select.component.ngfactory.d.ts +0 -1
  1238. package/select/select.component.scss.ngstyle.d.ts +0 -1
  1239. package/select/select.module.ngfactory.d.ts +0 -3
  1240. package/shared/shared.module.ngfactory.d.ts +0 -3
  1241. package/sort/sort-header.component.ngfactory.d.ts +0 -1
  1242. package/sort/sort-header.component.scss.ngstyle.d.ts +0 -1
  1243. package/sort/sort.module.ngfactory.d.ts +0 -3
  1244. package/status-bar/status-bar.component.ngfactory.d.ts +0 -1
  1245. package/status-bar/status-bar.component.scss.ngstyle.d.ts +0 -1
  1246. package/status-bar/status-bar.module.ngfactory.d.ts +0 -3
  1247. package/steps/steps.component.ngfactory.d.ts +0 -1
  1248. package/steps/steps.component.scss.ngstyle.d.ts +0 -1
  1249. package/steps/steps.module.ngfactory.d.ts +0 -3
  1250. package/switch/switch.component.ngfactory.d.ts +0 -1
  1251. package/switch/switch.component.scss.ngstyle.d.ts +0 -1
  1252. package/switch/switch.module.ngfactory.d.ts +0 -3
  1253. package/table/table-cell.component.ngfactory.d.ts +0 -1
  1254. package/table/table-header-row.component.ngfactory.d.ts +0 -1
  1255. package/table/table-row.component.ngfactory.d.ts +0 -1
  1256. package/table/table-scroll.scss.ngstyle.d.ts +0 -1
  1257. package/table/table.component.ngfactory.d.ts +0 -1
  1258. package/table/table.component.scss.ngstyle.d.ts +0 -1
  1259. package/table/table.module.ngfactory.d.ts +0 -3
  1260. package/table-of-contents/table-of-contents.module.ngfactory.d.ts +0 -3
  1261. package/tabs/tab-body.component.ngfactory.d.ts +0 -1
  1262. package/tabs/tab-directives.d.ts +0 -47
  1263. package/tabs/tab-group.component.ngfactory.d.ts +0 -1
  1264. package/tabs/tab-group.component.scss.ngstyle.d.ts +0 -1
  1265. package/tabs/tab-header-active-indicator.component.ngfactory.d.ts +0 -1
  1266. package/tabs/tab-header.component.ngfactory.d.ts +0 -1
  1267. package/tabs/tab-header.component.scss.ngstyle.d.ts +0 -1
  1268. package/tabs/tab.component.ngfactory.d.ts +0 -1
  1269. package/tabs/tabs.module.ngfactory.d.ts +0 -3
  1270. package/tag/check-tag/check-tag.component.ngfactory.d.ts +0 -1
  1271. package/tag/check-tag/check-tag.component.scss.ngstyle.d.ts +0 -1
  1272. package/tag/tag.component.ngfactory.d.ts +0 -1
  1273. package/tag/tag.component.scss.ngstyle.d.ts +0 -1
  1274. package/tag/tag.module.ngfactory.d.ts +0 -3
  1275. package/theme/theme.module.ngfactory.d.ts +0 -3
  1276. package/time-picker/component.ngfactory.d.ts +0 -1
  1277. package/time-picker/panel/panel.component.ngfactory.d.ts +0 -1
  1278. package/time-picker/panel/panel.style.scss.ngstyle.d.ts +0 -1
  1279. package/time-picker/style.scss.ngstyle.d.ts +0 -1
  1280. package/time-picker/time-picker.module.ngfactory.d.ts +0 -3
  1281. package/tooltip/tooltip.component.ngfactory.d.ts +0 -1
  1282. package/tooltip/tooltip.component.scss.ngstyle.d.ts +0 -1
  1283. package/tooltip/tooltip.module.ngfactory.d.ts +0 -3
  1284. package/tree-select/tree-node/tree-node.component.d.ts +0 -34
  1285. package/tree-select/tree-node/tree-node.component.ngfactory.d.ts +0 -1
  1286. package/tree-select/tree-node/tree-node.component.scss.ngstyle.d.ts +0 -1
  1287. package/tree-select/tree-node-placeholder.component.ngfactory.d.ts +0 -1
  1288. package/tree-select/tree-select.component.ngfactory.d.ts +0 -1
  1289. package/tree-select/tree-select.component.scss.ngstyle.d.ts +0 -1
  1290. package/tree-select/tree-select.module.ngfactory.d.ts +0 -3
  1291. package/tsconfig.lib.tsbuildinfo +0 -3
@@ -1,20 +0,0 @@
1
- /**
2
- * @fileoverview This file was generated by the Angular template compiler. Do not edit.
3
- *
4
- * @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
5
- * tslint:disable
6
- */
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "./input.module";
9
- import * as i2 from "@angular/common";
10
- import * as i3 from "../icon/icon-register.service";
11
- import * as i4 from "@angular/common/http";
12
- import * as i5 from "@angular/forms";
13
- import * as i6 from "../theme/theme.module";
14
- import * as i7 from "../icon/icon.module";
15
- import * as i8 from "../button/button.module";
16
- import * as i9 from "../tag/tag.module";
17
- import * as i10 from "../shared/shared.module";
18
- var InputModuleNgFactory = i0.ɵcmf(i1.InputModule, [], function (_l) { return i0.ɵmod([i0.ɵmpd(512, i0.ComponentFactoryResolver, i0.ɵCodegenComponentFactoryResolver, [[8, []], [3, i0.ComponentFactoryResolver], i0.NgModuleRef]), i0.ɵmpd(4608, i2.NgLocalization, i2.NgLocaleLocalization, [i0.LOCALE_ID]), i0.ɵmpd(5120, i3.IconRegisterService, i3.ICON_REGISTER_PROVIDER_FACTORY, [[3, i3.IconRegisterService], [2, i2.DOCUMENT], [2, i4.HttpClient]]), i0.ɵmpd(4608, i5.ɵangular_packages_forms_forms_n, i5.ɵangular_packages_forms_forms_n, []), i0.ɵmpd(4608, i5.FormBuilder, i5.FormBuilder, []), i0.ɵmpd(1073742336, i2.CommonModule, i2.CommonModule, []), i0.ɵmpd(1073742336, i6.ThemeModule, i6.ThemeModule, []), i0.ɵmpd(1073742336, i7.IconModule, i7.IconModule, []), i0.ɵmpd(1073742336, i8.ButtonModule, i8.ButtonModule, []), i0.ɵmpd(1073742336, i5.ɵangular_packages_forms_forms_d, i5.ɵangular_packages_forms_forms_d, []), i0.ɵmpd(1073742336, i5.FormsModule, i5.FormsModule, []), i0.ɵmpd(1073742336, i5.ReactiveFormsModule, i5.ReactiveFormsModule, []), i0.ɵmpd(1073742336, i9.TagModule, i9.TagModule, []), i0.ɵmpd(1073742336, i10.SharedModule, i10.SharedModule, []), i0.ɵmpd(1073742336, i1.InputModule, i1.InputModule, [])]); });
19
- export { InputModuleNgFactory as InputModuleNgFactory };
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQubW9kdWxlLm5nZmFjdG9yeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9pbnB1dC9pbnB1dC5tb2R1bGUubmdmYWN0b3J5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCAqIGFzIGkxIGZyb20gJy4vaW5wdXQubW9kdWxlJztcbmltcG9ydCAqIGFzIGkyIGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgKiBhcyBpMyBmcm9tICcuLi9idXR0b24vYnV0dG9uLmNvbXBvbmVudCc7XG5pbXBvcnQgKiBhcyBpNCBmcm9tICcuLi9idXR0b24vYnV0dG9uLWdyb3VwL2J1dHRvbi1ncm91cC5jb21wb25lbnQnO1xuaW1wb3J0ICogYXMgaTUgZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0ICogYXMgaTYgZnJvbSAnLi4vaWNvbi9pY29uLmNvbXBvbmVudCc7XG5pbXBvcnQgKiBhcyBpNyBmcm9tICcuLi90YWcvdGFnLmNvbXBvbmVudCc7XG5pbXBvcnQgKiBhcyBpOCBmcm9tICcuLi90YWcvY2hlY2stdGFnL2NoZWNrLXRhZy5jb21wb25lbnQnO1xuaW1wb3J0ICogYXMgaTkgZnJvbSAnLi4vc2hhcmVkL2NsaWNrLW91dHNpZGUuZGlyZWN0aXZlJztcbmltcG9ydCAqIGFzIGkxMCBmcm9tICcuL2F1dG9zaXplLmRpcmVjdGl2ZSc7XG5pbXBvcnQgKiBhcyBpMTEgZnJvbSAnLi9pbnB1dC5jb21wb25lbnQnO1xuaW1wb3J0ICogYXMgaTEyIGZyb20gJy4vaW5wdXQtZ3JvdXAvaW5wdXQtZ3JvdXAuY29tcG9uZW50JztcbmltcG9ydCAqIGFzIGkxMyBmcm9tICcuL2hlbHBlci1kaXJlY3RpdmVzJztcbmltcG9ydCAqIGFzIGkxNCBmcm9tICcuL3NlYXJjaC9zZWFyY2guY29tcG9uZW50JztcbmltcG9ydCAqIGFzIGkxNSBmcm9tICcuL3RhZ3MtaW5wdXQvdGFncy1pbnB1dC5jb21wb25lbnQnO1xuaW1wb3J0ICogYXMgaTE2IGZyb20gJy4vbnVtYmVyLWlucHV0L251bWJlci1pbnB1dC5jb21wb25lbnQnO1xuaW1wb3J0ICogYXMgaTE3IGZyb20gJy4uL2J1dHRvbi9idXR0b24ubW9kdWxlJztcbmltcG9ydCAqIGFzIGkxOCBmcm9tICcuLi9pY29uL2ljb24ubW9kdWxlJztcbmltcG9ydCAqIGFzIGkxOSBmcm9tICcuLi90YWcvdGFnLm1vZHVsZSc7XG5pbXBvcnQgKiBhcyBpMjAgZnJvbSAnLi4vc2hhcmVkL3NoYXJlZC5tb2R1bGUnO1xuZXhwb3J0IGNvbnN0IElucHV0TW9kdWxlTmdGYWN0b3J5OmkwLk5nTW9kdWxlRmFjdG9yeTxpMS5JbnB1dE1vZHVsZT4gPSAobnVsbCBhcyBhbnkpO1xudmFyIF9kZWNsMF8wOmkyLk5nQ2xhc3MgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTppMi5OZ0NvbXBvbmVudE91dGxldCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yOmkyLk5nRm9yT2Y8YW55LGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzppMi5OZ0lmPGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNDppMi5OZ1RlbXBsYXRlT3V0bGV0ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzU6aTIuTmdTdHlsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF82OmkyLk5nU3dpdGNoID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzc6aTIuTmdTd2l0Y2hDYXNlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzg6aTIuTmdTd2l0Y2hEZWZhdWx0ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzk6aTIuTmdQbHVyYWwgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTA6aTIuTmdQbHVyYWxDYXNlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzExOmkzLkJ1dHRvbkNvbXBvbmVudCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xMjppNC5CdXR0b25Hcm91cENvbXBvbmVudCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xMzppNS7JtWFuZ3VsYXJfcGFja2FnZXNfZm9ybXNfZm9ybXNfeSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNDppNS5OZ1NlbGVjdE9wdGlvbiA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNTppNS7JtWFuZ3VsYXJfcGFja2FnZXNfZm9ybXNfZm9ybXNfeCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNjppNS5EZWZhdWx0VmFsdWVBY2Nlc3NvciA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNzppNS5OdW1iZXJWYWx1ZUFjY2Vzc29yID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzE4Omk1LlJhbmdlVmFsdWVBY2Nlc3NvciA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xOTppNS5DaGVja2JveENvbnRyb2xWYWx1ZUFjY2Vzc29yID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzIwOmk1LlNlbGVjdENvbnRyb2xWYWx1ZUFjY2Vzc29yID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzIxOmk1LlNlbGVjdE11bHRpcGxlQ29udHJvbFZhbHVlQWNjZXNzb3IgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjI6aTUuUmFkaW9Db250cm9sVmFsdWVBY2Nlc3NvciA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yMzppNS5OZ0NvbnRyb2xTdGF0dXMgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjQ6aTUuTmdDb250cm9sU3RhdHVzR3JvdXAgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjU6aTUuUmVxdWlyZWRWYWxpZGF0b3IgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjY6aTUuTWluTGVuZ3RoVmFsaWRhdG9yID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI3Omk1Lk1heExlbmd0aFZhbGlkYXRvciA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yODppNS5QYXR0ZXJuVmFsaWRhdG9yID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI5Omk1LkNoZWNrYm94UmVxdWlyZWRWYWxpZGF0b3IgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzA6aTUuRW1haWxWYWxpZGF0b3IgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzE6aTUuTmdNb2RlbCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8zMjppNS5OZ01vZGVsR3JvdXAgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzM6aTUuTmdGb3JtID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzM0Omk1LkZvcm1Db250cm9sRGlyZWN0aXZlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzM1Omk1LkZvcm1Hcm91cERpcmVjdGl2ZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8zNjppNS5Gb3JtQ29udHJvbE5hbWUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzc6aTUuRm9ybUdyb3VwTmFtZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8zODppNS5Gb3JtQXJyYXlOYW1lID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzM5Omk2Lkljb25Db21wb25lbnQgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNDA6aTcuVGFnQ29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzQxOmk4LkNoZWNrVGFnQ29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzQyOmk5LkNsaWNrT3V0c2lkZURpcmVjdGl2ZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF80MzppMTAuQXV0b3NpemVEaXJlY3RpdmUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNDQ6aTExLklucHV0Q29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzQ1OmkxMi5JbnB1dEdyb3VwQ29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzQ2OmkxMy5JbnB1dEFkZG9uQmVmb3JlRGlyZWN0aXZlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzQ3OmkxMy5JbnB1dEFkZG9uQWZ0ZXJEaXJlY3RpdmUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNDg6aTEzLklucHV0UHJlZml4RGlyZWN0aXZlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzQ5OmkxMy5JbnB1dFN1ZmZpeERpcmVjdGl2ZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF81MDppMTQuU2VhcmNoQ29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzUxOmkxNS5UYWdzSW5wdXRDb21wb25lbnQgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNTI6aTE2Lk51bWJlcklucHV0Q29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzUzOmkyLkFzeW5jUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF81NDppMi5VcHBlckNhc2VQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzU1OmkyLkxvd2VyQ2FzZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNTY6aTIuSnNvblBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNTc6aTIuU2xpY2VQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzU4OmkyLkRlY2ltYWxQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzU5OmkyLlBlcmNlbnRQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzYwOmkyLlRpdGxlQ2FzZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNjE6aTIuQ3VycmVuY3lQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzYyOmkyLkRhdGVQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzYzOmkyLkkxOG5QbHVyYWxQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzY0OmkyLkkxOG5TZWxlY3RQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzY1OmkyLktleVZhbHVlUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF82NjppMi5Db21tb25Nb2R1bGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNjc6aTE3LkJ1dHRvbk1vZHVsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF82ODppNS5Gb3Jtc01vZHVsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF82OTppNS5SZWFjdGl2ZUZvcm1zTW9kdWxlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzcwOmkxOC5JY29uTW9kdWxlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzcxOmkxOS5UYWdNb2R1bGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNzI6aTIwLlNoYXJlZE1vZHVsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF83MzppMC5UZW1wbGF0ZVJlZjxhbnk+ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzc0OmkwLkVsZW1lbnRSZWY8YW55PiA9ICg8YW55PihudWxsIGFzIGFueSkpO1xuZnVuY3Rpb24gX1ZpZXdfSW5wdXRDb21wb25lbnRfSG9zdF8xXzAoKTp2b2lkIHtcbiAgdmFyIF9hbnk6YW55ID0gKG51bGwgYXMgYW55KTtcbn1cbmZ1bmN0aW9uIF9WaWV3X0lucHV0Q29tcG9uZW50XzFfMCgpOnZvaWQge1xuICB2YXIgX2FueTphbnkgPSAobnVsbCBhcyBhbnkpO1xufVxuZnVuY3Rpb24gX1ZpZXdfSW5wdXRHcm91cENvbXBvbmVudF9Ib3N0XzJfMCgpOnZvaWQge1xuICB2YXIgX2FueTphbnkgPSAobnVsbCBhcyBhbnkpO1xufVxuZnVuY3Rpb24gX1ZpZXdfSW5wdXRHcm91cENvbXBvbmVudF8yXzAoKTp2b2lkIHtcbiAgdmFyIF9hbnk6YW55ID0gKG51bGwgYXMgYW55KTtcbiAgY29uc3QgY3VyclZhbF8wOmFueSA9IF9kZWNsMF80NS5iZW0uYmxvY2soX2FueS50cmFuc2Zvcm0oX2RlY2wwXzQ1LmlucHV0UmVmLnNpemUkKSk7XG4gIGN1cnJWYWxfMDtcbiAgY29uc3QgY3VyclZhbF8xOmFueSA9IF9hbnkudHJhbnNmb3JtKF9kZWNsMF80NS5pbnB1dFJlZi5kaXNhYmxlZCQpO1xuICBjdXJyVmFsXzE7XG4gIGNvbnN0IGN1cnJWYWxfMjphbnkgPSBfYW55LnRyYW5zZm9ybShfZGVjbDBfNDUuaGFzQWRkb25CZWZvcmUkKTtcbiAgY3VyclZhbF8yO1xuICBjb25zdCBjdXJyVmFsXzM6YW55ID0gX2FueS50cmFuc2Zvcm0oX2RlY2wwXzQ1Lmhhc0FkZG9uQWZ0ZXIkKTtcbiAgY3VyclZhbF8zO1xuICBjb25zdCBjdXJyVmFsXzQ6YW55ID0gX2FueS50cmFuc2Zvcm0oX2RlY2wwXzQ1Lmhhc1ByZWZpeCQpO1xuICBjdXJyVmFsXzQ7XG4gIGNvbnN0IGN1cnJWYWxfNTphbnkgPSBfYW55LnRyYW5zZm9ybShfZGVjbDBfNDUuaGFzU3VmZml4JCk7XG4gIGN1cnJWYWxfNTtcbiAgY29uc3QgY3VyclZhbF82OmFueSA9IF9kZWNsMF80NS5iZW0uZWxlbWVudCgnaW5uZXItd3JhcHBlcicpO1xuICBjdXJyVmFsXzY7XG4gIGNvbnN0IGN1cnJWYWxfNzphbnkgPSBfYW55LnRyYW5zZm9ybShfZGVjbDBfNDUuaGFzQWRkb25CZWZvcmUkKTtcbiAgY3VyclZhbF83O1xuICBjb25zdCBjdXJyVmFsXzg6YW55ID0gX2RlY2wwXzQ1LmJlbS5lbGVtZW50KCdpbnB1dC13cmFwcGVyJyk7XG4gIGN1cnJWYWxfODtcbiAgY29uc3QgY3VyclZhbF85OmFueSA9IF9hbnkudHJhbnNmb3JtKF9kZWNsMF80NS5oYXNQcmVmaXgkKTtcbiAgY3VyclZhbF85O1xuICBjb25zdCBjdXJyVmFsXzEwOmFueSA9IF9hbnkudHJhbnNmb3JtKF9kZWNsMF80NS5oYXNTdWZmaXgkKTtcbiAgY3VyclZhbF8xMDtcbiAgY29uc3QgY3VyclZhbF8xMTphbnkgPSBfYW55LnRyYW5zZm9ybShfZGVjbDBfNDUuaGFzQWRkb25BZnRlciQpO1xuICBjdXJyVmFsXzExO1xufVxuZnVuY3Rpb24gX1ZpZXdfU2VhcmNoQ29tcG9uZW50X0hvc3RfM18wKCk6dm9pZCB7XG4gIHZhciBfYW55OmFueSA9IChudWxsIGFzIGFueSk7XG59XG5mdW5jdGlvbiBfVmlld19TZWFyY2hDb21wb25lbnRfM18wKCk6dm9pZCB7XG4gIHZhciBfYW55OmFueSA9IChudWxsIGFzIGFueSk7XG4gIGNvbnN0IGN1cnJWYWxfMDphbnkgPSBfZGVjbDBfNTAuYmVtLmJsb2NrKF9kZWNsMF81MC5zaXplKTtcbiAgY3VyclZhbF8wO1xuICBjb25zdCBjdXJyVmFsXzE6YW55ID0gIV9kZWNsMF81MC5zZWFyY2hCdXR0b247XG4gIGN1cnJWYWxfMTtcbiAgY29uc3QgY3VyclZhbF8yOmFueSA9IF9kZWNsMF81MC5zZWFyY2hCdXR0b247XG4gIGN1cnJWYWxfMjtcbiAgY29uc3QgY3VyclZhbF8zOmFueSA9IF9kZWNsMF81MC5jbGVhcmFibGU7XG4gIGN1cnJWYWxfMztcbiAgY29uc3QgY3VyclZhbF80OmFueSA9IF9kZWNsMF81MC5zZWFyY2hpbmc7XG4gIGN1cnJWYWxfNDtcbiAgY29uc3QgY3VyclZhbF81OmFueSA9IF9kZWNsMF81MC5kaXNhYmxlZDtcbiAgY3VyclZhbF81O1xuICBjb25zdCBjdXJyVmFsXzY6YW55ID0gIV9kZWNsMF81MC5zZWFyY2hCdXR0b247XG4gIGN1cnJWYWxfNjtcbiAgY29uc3QgY3VyclZhbF83OmFueSA9IF9kZWNsMF81MC5iZW0uZWxlbWVudCgnaW5wdXQnKTtcbiAgY3VyclZhbF83O1xuICBjb25zdCBjdXJyVmFsXzg6YW55ID0gX2RlY2wwXzUwLmRpc2FibGVkO1xuICBjdXJyVmFsXzg7XG4gIGNvbnN0IGN1cnJWYWxfOTphbnkgPSBfZGVjbDBfNTAudmFsdWU7XG4gIGN1cnJWYWxfOTtcbiAgY29uc3QgY3VyclZhbF8xMDphbnkgPSBfZGVjbDBfNTAuc2l6ZTtcbiAgY3VyclZhbF8xMDtcbiAgY29uc3QgY3VyclZhbF8xMTphbnkgPSBfZGVjbDBfNTAuZGlzYWJsZWQ7XG4gIGN1cnJWYWxfMTE7XG4gIGNvbnN0IGN1cnJWYWxfMTI6YW55ID0gX2RlY2wwXzUwLnBsYWNlaG9sZGVyO1xuICBjdXJyVmFsXzEyO1xuICBjb25zdCBjdXJyVmFsXzEzOmFueSA9IF9kZWNsMF81MC5zaG93U3Bpbm5lcjtcbiAgY3VyclZhbF8xMztcbiAgY29uc3QgY3VyclZhbF8xNDphbnkgPSAhX2RlY2wwXzUwLnNob3dDbGVhcjtcbiAgY3VyclZhbF8xNDtcbiAgY29uc3QgY3VyclZhbF8xNTphbnkgPSBfZGVjbDBfNTAuYmVtLmVsZW1lbnQoJ2NsZWFyJyk7XG4gIGN1cnJWYWxfMTU7XG4gIGNvbnN0IGN1cnJWYWxfMTY6YW55ID0gJ2Nsb3NlX3NtYWxsJztcbiAgY3VyclZhbF8xNjtcbiAgY29uc3QgY3VyclZhbF8xNzphbnkgPSBfZGVjbDBfNTAuc2VhcmNoQnV0dG9uO1xuICBjdXJyVmFsXzE3O1xuICBjb25zdCBwZF8xODphbnkgPSAoKDxhbnk+X2RlY2wwXzUwLmVtaXRDaGFuZ2UoX2FueSkpICE9PSBmYWxzZSk7XG4gIGNvbnN0IHBkXzE5OmFueSA9ICgoPGFueT5fZGVjbDBfNTAuZW1pdFNlYXJjaCgpKSAhPT0gZmFsc2UpO1xuICBjb25zdCBwZF8yMDphbnkgPSAoKDxhbnk+X2RlY2wwXzUwLmVtaXRDbGVhcigpKSAhPT0gZmFsc2UpO1xufVxuZnVuY3Rpb24gX1ZpZXdfVGFnc0lucHV0Q29tcG9uZW50X0hvc3RfNF8wKCk6dm9pZCB7XG4gIHZhciBfYW55OmFueSA9IChudWxsIGFzIGFueSk7XG59XG5mdW5jdGlvbiBfVmlld19UYWdzSW5wdXRDb21wb25lbnRfNF8wKCk6dm9pZCB7XG4gIHZhciBfYW55OmFueSA9IChudWxsIGFzIGFueSk7XG4gIGNvbnN0IGN1cnJWYWxfMDphbnkgPSBfZGVjbDBfNTEucm9vdENsYXNzO1xuICBjdXJyVmFsXzA7XG4gIGNvbnN0IGN1cnJWYWxfMTphbnkgPSBfZGVjbDBfNTEubWF4SGVpZ2h0O1xuICBjdXJyVmFsXzE7XG4gIHZhciB0bXBfMl8wOmFueSA9IChudWxsIGFzIGFueSk7XG4gIGNvbnN0IGN1cnJWYWxfMjphbnkgPSAoKCgodG1wXzJfMCA9IF9hbnkudHJhbnNmb3JtKF9kZWNsMF81MS52YWx1ZSQpKSA9PSBudWxsKT8gKG51bGwgYXMgYW55KTogdG1wXzJfMC5sZW5ndGgpIHx8IF9hbnkudmFsdWUubGVuZ3RoKTtcbiAgY3VyclZhbF8yO1xuICBjb25zdCBjdXJyVmFsXzM6YW55ID0gX2RlY2wwXzUxLmJlbS5lbGVtZW50KCdwbGFjZWhvbGRlcicpO1xuICBjdXJyVmFsXzM7XG4gIGNvbnN0IGN1cnJWYWxfNDphbnkgPSBfZGVjbDBfNTEucGxhY2Vob2xkZXI7XG4gIGN1cnJWYWxfNDtcbiAgY29uc3QgY3VyclZhbF81OmFueSA9IF9hbnkudHJhbnNmb3JtKF9kZWNsMF81MS52YWx1ZSQpO1xuICBjdXJyVmFsXzU7XG4gIGNvbnN0IGN1cnJWYWxfNjphbnkgPSBfZGVjbDBfNTEudHJhY2tCeVZhbHVlO1xuICBjdXJyVmFsXzY7XG4gIGNvbnN0IGN1cnJWYWxfNzphbnkgPSBfZGVjbDBfNTEuaW5wdXRDbGFzcztcbiAgY3VyclZhbF83O1xuICBjb25zdCBjdXJyVmFsXzg6YW55ID0gX2RlY2wwXzUxLmRpc2FibGVkO1xuICBjdXJyVmFsXzg7XG4gIGNvbnN0IGN1cnJWYWxfOTphbnkgPSBfZGVjbDBfNTEuYmVtLmVsZW1lbnQoJ21pcnJvcicpO1xuICBjdXJyVmFsXzk7XG4gIGNvbnN0IGN1cnJWYWxfMTA6YW55ID0gX2FueS52YWx1ZTtcbiAgY3VyclZhbF8xMDtcbiAgY29uc3QgcGRfMTE6YW55ID0gKCg8YW55Pl9hbnkucHJldmVudERlZmF1bHQoKSkgIT09IGZhbHNlKTtcbiAgY29uc3QgcGRfMTI6YW55ID0gKCg8YW55Pl9hbnkuZm9jdXMoKSkgIT09IGZhbHNlKTtcbiAgY29uc3QgcGRfMTM6YW55ID0gKCg8YW55Pl9kZWNsMF81MS5vbklucHV0Rm9jdXMoKSkgIT09IGZhbHNlKTtcbiAgY29uc3QgcGRfMTQ6YW55ID0gKCg8YW55Pl9kZWNsMF81MS5vbklucHV0Qmx1cihfYW55KSkgIT09IGZhbHNlKTtcbiAgY29uc3QgcGRfMTU6YW55ID0gKCg8YW55Pl9kZWNsMF81MS5vbktleURvd24oX2FueSkpICE9PSBmYWxzZSk7XG4gIGNvbnN0IHBkXzE2OmFueSA9ICgoPGFueT5fZGVjbDBfNTEub25JbnB1dCgpKSAhPT0gZmFsc2UpO1xufVxuZnVuY3Rpb24gX1ZpZXdfTnVtYmVySW5wdXRDb21wb25lbnRfSG9zdF81XzAoKTp2b2lkIHtcbiAgdmFyIF9hbnk6YW55ID0gKG51bGwgYXMgYW55KTtcbn1cbmZ1bmN0aW9uIF9WaWV3X051bWJlcklucHV0Q29tcG9uZW50XzVfMCgpOnZvaWQge1xuICB2YXIgX2FueTphbnkgPSAobnVsbCBhcyBhbnkpO1xuICBjb25zdCBjdXJyVmFsXzA6YW55ID0gX2RlY2wwXzUyLmJlbS5ibG9jayhfZGVjbDBfNTIuc2l6ZSk7XG4gIGN1cnJWYWxfMDtcbiAgY29uc3QgY3VyclZhbF8xOmFueSA9ICg8YW55Pntpc0ZvY3VzOl9kZWNsMF81Mi5pc0ZvY3VzLGlzRGlzYWJsZWQ6X2RlY2wwXzUyLmRpc2FibGVkfSk7XG4gIGN1cnJWYWxfMTtcbiAgY29uc3QgY3VyclZhbF8yOmFueSA9IF9kZWNsMF81Mi5jb250cm9scztcbiAgY3VyclZhbF8yO1xuICBjb25zdCBjdXJyVmFsXzM6YW55ID0gX2RlY2wwXzUyLmJlbS5lbGVtZW50KCdpbnB1dCcpO1xuICBjdXJyVmFsXzM7XG4gIGNvbnN0IGN1cnJWYWxfNDphbnkgPSBfZGVjbDBfNTIuZGlzYWJsZWQ7XG4gIGN1cnJWYWxfNDtcbiAgY29uc3QgY3VyclZhbF81OmFueSA9IF9kZWNsMF81Mi5wbGFjZWhvbGRlcjtcbiAgY3VyclZhbF81O1xuICBjb25zdCBjdXJyVmFsXzY6YW55ID0gX2RlY2wwXzUyLmNvbnRyb2xzO1xuICBjdXJyVmFsXzY7XG4gIGNvbnN0IHBkXzc6YW55ID0gKCg8YW55PihfZGVjbDBfNTIuaXNGb2N1cyA9IGZhbHNlKSkgIT09IGZhbHNlKTtcbiAgY29uc3QgcGRfODphbnkgPSAoKDxhbnk+X2RlY2wwXzUyLmlucHV0Q2hhbmdlZChfYW55LnRhcmdldC52YWx1ZSkpICE9PSBmYWxzZSk7XG4gIGNvbnN0IHBkXzk6YW55ID0gKCg8YW55PihfZGVjbDBfNTIuaXNGb2N1cyA9IHRydWUpKSAhPT0gZmFsc2UpO1xuICBjb25zdCBwZF8xMDphbnkgPSAoKDxhbnk+KF9kZWNsMF81Mi5pc0ZvY3VzID0gZmFsc2UpKSAhPT0gZmFsc2UpO1xufVxuIl19
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class"},"type":{"summaryKind":2,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"entryComponents":[],"providers":[{"provider":{"token":{"identifier":{"reference":{"__symbol":1,"members":[]}}},"useClass":{"reference":{"__symbol":2,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}}}],"lifecycleHooks":[]},"useFactory":null,"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}}}],"multi":false},"module":{"reference":{"__symbol":4,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}},"useClass":null,"useFactory":{"reference":{"__symbol":6,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":true,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":7,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":8,"members":[]}}}}]},"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":true,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":7,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":8,"members":[]}}}}],"multi":false},"module":{"reference":{"__symbol":9,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":10,"members":[]},"diDeps":[],"lifecycleHooks":[]}},"useClass":{"reference":{"__symbol":10,"members":[]},"diDeps":[],"lifecycleHooks":[]},"useFactory":null,"deps":[],"multi":false},"module":{"reference":{"__symbol":11,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":12,"members":[]},"diDeps":[],"lifecycleHooks":[]}},"useClass":{"reference":{"__symbol":12,"members":[]},"diDeps":[],"lifecycleHooks":[]},"useFactory":null,"deps":[],"multi":false},"module":{"reference":{"__symbol":13,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":10,"members":[]},"diDeps":[],"lifecycleHooks":[]}},"useClass":{"reference":{"__symbol":10,"members":[]},"diDeps":[],"lifecycleHooks":[]},"useFactory":null,"deps":[],"multi":false},"module":{"reference":{"__symbol":13,"members":[]},"diDeps":[],"lifecycleHooks":[]}}],"modules":[{"reference":{"__symbol":4,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":14,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":9,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":15,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":16,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":11,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":13,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":17,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":18,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]}],"exportedDirectives":[{"reference":{"__symbol":19,"members":[]}},{"reference":{"__symbol":20,"members":[]}},{"reference":{"__symbol":21,"members":[]}},{"reference":{"__symbol":22,"members":[]}},{"reference":{"__symbol":23,"members":[]}},{"reference":{"__symbol":24,"members":[]}},{"reference":{"__symbol":25,"members":[]}},{"reference":{"__symbol":26,"members":[]}},{"reference":{"__symbol":27,"members":[]}},{"reference":{"__symbol":28,"members":[]}}],"exportedPipes":[]}}],"symbols":[{"__symbol":0,"name":"InputModule","filePath":"./input.module"},{"__symbol":1,"name":"NgLocalization","filePath":"@angular/common"},{"__symbol":2,"name":"NgLocaleLocalization","filePath":"@angular/common"},{"__symbol":3,"name":"LOCALE_ID","filePath":"@angular/core"},{"__symbol":4,"name":"CommonModule","filePath":"@angular/common"},{"__symbol":5,"name":"IconRegisterService","filePath":"../icon/icon-register.service"},{"__symbol":6,"name":"ICON_REGISTER_PROVIDER_FACTORY","filePath":"../icon/icon-register.service"},{"__symbol":7,"name":"DOCUMENT","filePath":"@angular/common"},{"__symbol":8,"name":"HttpClient","filePath":"@angular/common/http/http"},{"__symbol":9,"name":"IconModule","filePath":"../icon/icon.module"},{"__symbol":10,"name":"ɵangular_packages_forms_forms_n","filePath":"@angular/forms"},{"__symbol":11,"name":"FormsModule","filePath":"@angular/forms"},{"__symbol":12,"name":"FormBuilder","filePath":"@angular/forms"},{"__symbol":13,"name":"ReactiveFormsModule","filePath":"@angular/forms"},{"__symbol":14,"name":"ThemeModule","filePath":"../theme/theme.module"},{"__symbol":15,"name":"ButtonModule","filePath":"../button/button.module"},{"__symbol":16,"name":"ɵangular_packages_forms_forms_d","filePath":"@angular/forms"},{"__symbol":17,"name":"TagModule","filePath":"../tag/tag.module"},{"__symbol":18,"name":"SharedModule","filePath":"../shared/shared.module"},{"__symbol":19,"name":"AutosizeDirective","filePath":"./autosize.directive"},{"__symbol":20,"name":"InputComponent","filePath":"./input.component"},{"__symbol":21,"name":"InputGroupComponent","filePath":"./input-group/input-group.component"},{"__symbol":22,"name":"InputAddonBeforeDirective","filePath":"./helper-directives"},{"__symbol":23,"name":"InputAddonAfterDirective","filePath":"./helper-directives"},{"__symbol":24,"name":"InputPrefixDirective","filePath":"./helper-directives"},{"__symbol":25,"name":"InputSuffixDirective","filePath":"./helper-directives"},{"__symbol":26,"name":"SearchComponent","filePath":"./search/search.component"},{"__symbol":27,"name":"TagsInputComponent","filePath":"./tags-input/tags-input.component"},{"__symbol":28,"name":"NumberInputComponent","filePath":"./number-input/number-input.component"}]}
@@ -1,83 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, ElementRef, Input, ViewChild, ViewEncapsulation, forwardRef, } from '@angular/core';
2
- import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
- import { CommonFormControl } from '../../form/public-api';
4
- import { ComponentSize } from '../../types';
5
- import { buildBem, coerceNumber } from '../../utils';
6
- export class NumberInputComponent extends CommonFormControl {
7
- constructor() {
8
- super(...arguments);
9
- this.bem = buildBem('aui-number-input');
10
- this.size = ComponentSize.Medium;
11
- this.min = Number.MIN_SAFE_INTEGER;
12
- this.max = Number.MAX_SAFE_INTEGER;
13
- this.step = 1;
14
- this.controls = true;
15
- this.placeholder = '';
16
- this.controlsPosition = '';
17
- this.isFocus = false;
18
- }
19
- ngAfterViewInit() {
20
- var _a;
21
- this.inputRef.nativeElement.value = ((_a = this.snapshot.value) !== null && _a !== void 0 ? _a : '') + '';
22
- }
23
- valueIn(v) {
24
- if (this.inputRef) {
25
- this.inputRef.nativeElement.value = (v !== null && v !== void 0 ? v : '') + '';
26
- }
27
- return v;
28
- }
29
- valueOut(value) {
30
- return Math.max(coerceNumber(this.min, Number.MIN_SAFE_INTEGER), Math.min(coerceNumber(this.max, Number.MAX_SAFE_INTEGER), this.parsePrecision(value)));
31
- }
32
- inputChanged(value) {
33
- this.emitValue(coerceNumber(value, this.snapshot.value));
34
- }
35
- takeOneStep(positive) {
36
- var _a, _b;
37
- if (positive) {
38
- this.emitValue(((_a = this.snapshot.value) !== null && _a !== void 0 ? _a : 0) + this.step);
39
- }
40
- else {
41
- this.emitValue(((_b = this.snapshot.value) !== null && _b !== void 0 ? _b : 0) - this.step);
42
- }
43
- }
44
- parsePrecision(value) {
45
- var _a;
46
- const precision = (_a = this.precision) !== null && _a !== void 0 ? _a : this.getStepPrecision();
47
- return parseFloat(value.toFixed(precision));
48
- }
49
- getStepPrecision() {
50
- const step = this.step + '';
51
- const index = step.indexOf('.');
52
- return index < 0 ? 0 : step.slice(index + 1).length;
53
- }
54
- }
55
- NumberInputComponent.decorators = [
56
- { type: Component, args: [{
57
- selector: 'aui-number-input',
58
- template: "<div\n [class]=\"bem.block(size)\"\n [ngClass]=\"{\n isFocus: isFocus,\n isDisabled: disabled\n }\"\n auiClickOutside\n (auiClickOutside)=\"isFocus = false\"\n>\n <button\n *ngIf=\"controls\"\n aui-button\n type=\"button\"\n [ngClass]=\"bem.element('decrease')\"\n [disabled]=\"disabled || (value$ | async) <= min\"\n (click)=\"takeOneStep(false); isFocus = true\"\n >\n <aui-icon icon=\"minus\"></aui-icon>\n </button>\n <input\n #inputRef\n autocomplete=\"off\"\n (change)=\"inputChanged($event.target.value)\"\n [disabled]=\"disabled\"\n [ngClass]=\"bem.element('input')\"\n [placeholder]=\"placeholder\"\n (focus)=\"isFocus = true\"\n (blur)=\"isFocus = false\"\n />\n <button\n *ngIf=\"controls\"\n aui-button\n type=\"button\"\n [ngClass]=\"bem.element('increase')\"\n [disabled]=\"disabled || (value$ | async) >= max\"\n (click)=\"takeOneStep(true); isFocus = true\"\n >\n <aui-icon icon=\"plus\"></aui-icon>\n </button>\n</div>\n",
59
- changeDetection: ChangeDetectionStrategy.OnPush,
60
- encapsulation: ViewEncapsulation.None,
61
- preserveWhitespaces: false,
62
- providers: [
63
- {
64
- provide: NG_VALUE_ACCESSOR,
65
- useExisting: forwardRef(() => NumberInputComponent),
66
- multi: true,
67
- },
68
- ],
69
- styles: [".aui-number-input{display:flex;padding:3px;width:var(--aui-form-item-width-s);border:1px solid rgb(var(--aui-color-n-7));border-radius:var(--aui-border-radius-m);background-color:rgb(var(--aui-color-main-bg));color:rgb(var(--aui-color-n-1))}.aui-number-input--small .aui-number-input__decrease.aui-button,.aui-number-input--small .aui-number-input__increase.aui-button{width:var(--aui-line-height-m);height:var(--aui-line-height-m)}.aui-number-input.isFocus,.aui-number-input:hover{border-color:rgb(var(--aui-color-primary))}.aui-number-input.isFocus{box-shadow:0 0 0 2px rgba(var(--aui-color-primary),.16)}.aui-number-input.isDisabled{border:1px solid rgb(var(--aui-color-n-7))}.aui-number-input.isDisabled:hover{cursor:not-allowed}.aui-number-input.isDisabled .aui-number-input__input{color:rgb(var(--aui-color-n-6))}.aui-number-input.isDisabled .aui-number-input__input:hover{cursor:not-allowed}.aui-number-input__decrease.aui-button,.aui-number-input__increase.aui-button{background-color:rgb(var(--aui-color-n-8));border:unset;width:var(--aui-icon-size-xl);height:var(--aui-icon-size-xl)}.aui-number-input__decrease.aui-button aui-icon,.aui-number-input__increase.aui-button aui-icon{font-size:var(--aui-font-size-s)}.aui-number-input__decrease.aui-button .aui-button__content,.aui-number-input__increase.aui-button .aui-button__content{padding:unset}.aui-number-input__input{min-width:0;line-height:var(--aui-line-height-m);border:unset;padding:unset;margin:0 var(--aui-spacing-s);background-color:transparent;color:rgb(var(--aui-color-n-1));text-align:center}.aui-number-input__input:focus{border:unset}.aui-number-input__input:focus-visible{outline:unset}.ng-submitted aui-number-input.ng-invalid,aui-number-input.ng-invalid.ng-dirty{border-color:rgb(var(--aui-color-red))}"]
70
- },] }
71
- ];
72
- NumberInputComponent.propDecorators = {
73
- size: [{ type: Input }],
74
- min: [{ type: Input }],
75
- max: [{ type: Input }],
76
- step: [{ type: Input }],
77
- precision: [{ type: Input }],
78
- controls: [{ type: Input }],
79
- placeholder: [{ type: Input }],
80
- controlsPosition: [{ type: Input }],
81
- inputRef: [{ type: ViewChild, args: ['inputRef', { read: ElementRef },] }]
82
- };
83
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtYmVyLWlucHV0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9pbnB1dC9udW1iZXItaW5wdXQvbnVtYmVyLWlucHV0LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBRUwsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsS0FBSyxFQUNMLFNBQVMsRUFDVCxpQkFBaUIsRUFDakIsVUFBVSxHQUNYLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRW5ELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzFELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFDNUMsT0FBTyxFQUFPLFFBQVEsRUFBRSxZQUFZLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFpQjFELE1BQU0sT0FBTyxvQkFDWCxTQUFRLGlCQUF5QjtJQWhCbkM7O1FBa0JFLFFBQUcsR0FBUSxRQUFRLENBQUMsa0JBQWtCLENBQUMsQ0FBQztRQUd4QyxTQUFJLEdBQWtCLGFBQWEsQ0FBQyxNQUFNLENBQUM7UUFHM0MsUUFBRyxHQUFvQixNQUFNLENBQUMsZ0JBQWdCLENBQUM7UUFHL0MsUUFBRyxHQUFvQixNQUFNLENBQUMsZ0JBQWdCLENBQUM7UUFHL0MsU0FBSSxHQUFHLENBQUMsQ0FBQztRQU1ULGFBQVEsR0FBRyxJQUFJLENBQUM7UUFHaEIsZ0JBQVcsR0FBRyxFQUFFLENBQUM7UUFHakIscUJBQWdCLEdBQUcsRUFBRSxDQUFDO1FBS3RCLFlBQU8sR0FBRyxLQUFLLENBQUM7SUE2Q2xCLENBQUM7SUEzQ0MsZUFBZTs7UUFDYixJQUFJLENBQUMsUUFBUSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsT0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssbUNBQUksRUFBRSxDQUFDLEdBQUcsRUFBRSxDQUFDO0lBQ3ZFLENBQUM7SUFFRCxPQUFPLENBQUMsQ0FBUztRQUNmLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRTtZQUNqQixJQUFJLENBQUMsUUFBUSxDQUFDLGFBQWEsQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDLGFBQUQsQ0FBQyxjQUFELENBQUMsR0FBSSxFQUFFLENBQUMsR0FBRyxFQUFFLENBQUM7U0FDcEQ7UUFDRCxPQUFPLENBQUMsQ0FBQztJQUNYLENBQUM7SUFFRCxRQUFRLENBQUMsS0FBYTtRQUNwQixPQUFPLElBQUksQ0FBQyxHQUFHLENBQ2IsWUFBWSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUUsTUFBTSxDQUFDLGdCQUFnQixDQUFDLEVBQy9DLElBQUksQ0FBQyxHQUFHLENBQ04sWUFBWSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUUsTUFBTSxDQUFDLGdCQUFnQixDQUFDLEVBQy9DLElBQUksQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLENBQzNCLENBQ0YsQ0FBQztJQUNKLENBQUM7SUFFRCxZQUFZLENBQUMsS0FBYTtRQUN4QixJQUFJLENBQUMsU0FBUyxDQUFDLFlBQVksQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFRCxXQUFXLENBQUMsUUFBaUI7O1FBQzNCLElBQUksUUFBUSxFQUFFO1lBQ1osSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsS0FBSyxtQ0FBSSxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDeEQ7YUFBTTtZQUNMLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssbUNBQUksQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ3hEO0lBQ0gsQ0FBQztJQUVPLGNBQWMsQ0FBQyxLQUFhOztRQUNsQyxNQUFNLFNBQVMsU0FBRyxJQUFJLENBQUMsU0FBUyxtQ0FBSSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQztRQUM1RCxPQUFPLFVBQVUsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7SUFDOUMsQ0FBQztJQUVPLGdCQUFnQjtRQUN0QixNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUM1QixNQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDO1FBQ2hDLE9BQU8sS0FBSyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUM7SUFDdEQsQ0FBQzs7O1lBM0ZGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsa0JBQWtCO2dCQUM1QiwwZ0NBQTRDO2dCQUU1QyxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtnQkFDL0MsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7Z0JBQ3JDLG1CQUFtQixFQUFFLEtBQUs7Z0JBQzFCLFNBQVMsRUFBRTtvQkFDVDt3QkFDRSxPQUFPLEVBQUUsaUJBQWlCO3dCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLG9CQUFvQixDQUFDO3dCQUNuRCxLQUFLLEVBQUUsSUFBSTtxQkFDWjtpQkFDRjs7YUFDRjs7O21CQU1FLEtBQUs7a0JBR0wsS0FBSztrQkFHTCxLQUFLO21CQUdMLEtBQUs7d0JBR0wsS0FBSzt1QkFHTCxLQUFLOzBCQUdMLEtBQUs7K0JBR0wsS0FBSzt1QkFHTCxTQUFTLFNBQUMsVUFBVSxFQUFFLEVBQUUsSUFBSSxFQUFFLFVBQVUsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEFmdGVyVmlld0luaXQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIElucHV0LFxuICBWaWV3Q2hpbGQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxuICBmb3J3YXJkUmVmLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBDb21tb25Gb3JtQ29udHJvbCB9IGZyb20gJy4uLy4uL2Zvcm0vcHVibGljLWFwaSc7XG5pbXBvcnQgeyBDb21wb25lbnRTaXplIH0gZnJvbSAnLi4vLi4vdHlwZXMnO1xuaW1wb3J0IHsgQmVtLCBidWlsZEJlbSwgY29lcmNlTnVtYmVyIH0gZnJvbSAnLi4vLi4vdXRpbHMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhdWktbnVtYmVyLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL251bWJlci1pbnB1dC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL251bWJlci1pbnB1dC5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJlc2VydmVXaGl0ZXNwYWNlczogZmFsc2UsXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gTnVtYmVySW5wdXRDb21wb25lbnQpLFxuICAgICAgbXVsdGk6IHRydWUsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgTnVtYmVySW5wdXRDb21wb25lbnRcbiAgZXh0ZW5kcyBDb21tb25Gb3JtQ29udHJvbDxudW1iZXI+XG4gIGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCB7XG4gIGJlbTogQmVtID0gYnVpbGRCZW0oJ2F1aS1udW1iZXItaW5wdXQnKTtcblxuICBASW5wdXQoKVxuICBzaXplOiBDb21wb25lbnRTaXplID0gQ29tcG9uZW50U2l6ZS5NZWRpdW07XG5cbiAgQElucHV0KClcbiAgbWluOiBzdHJpbmcgfCBudW1iZXIgPSBOdW1iZXIuTUlOX1NBRkVfSU5URUdFUjtcblxuICBASW5wdXQoKVxuICBtYXg6IHN0cmluZyB8IG51bWJlciA9IE51bWJlci5NQVhfU0FGRV9JTlRFR0VSO1xuXG4gIEBJbnB1dCgpXG4gIHN0ZXAgPSAxO1xuXG4gIEBJbnB1dCgpXG4gIHByZWNpc2lvbjogbnVtYmVyO1xuXG4gIEBJbnB1dCgpXG4gIGNvbnRyb2xzID0gdHJ1ZTtcblxuICBASW5wdXQoKVxuICBwbGFjZWhvbGRlciA9ICcnO1xuXG4gIEBJbnB1dCgpXG4gIGNvbnRyb2xzUG9zaXRpb24gPSAnJztcblxuICBAVmlld0NoaWxkKCdpbnB1dFJlZicsIHsgcmVhZDogRWxlbWVudFJlZiB9KVxuICBpbnB1dFJlZjogRWxlbWVudFJlZjxIVE1MSW5wdXRFbGVtZW50PjtcblxuICBpc0ZvY3VzID0gZmFsc2U7XG5cbiAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgIHRoaXMuaW5wdXRSZWYubmF0aXZlRWxlbWVudC52YWx1ZSA9ICh0aGlzLnNuYXBzaG90LnZhbHVlID8/ICcnKSArICcnO1xuICB9XG5cbiAgdmFsdWVJbih2OiBudW1iZXIpIHtcbiAgICBpZiAodGhpcy5pbnB1dFJlZikge1xuICAgICAgdGhpcy5pbnB1dFJlZi5uYXRpdmVFbGVtZW50LnZhbHVlID0gKHYgPz8gJycpICsgJyc7XG4gICAgfVxuICAgIHJldHVybiB2O1xuICB9XG5cbiAgdmFsdWVPdXQodmFsdWU6IG51bWJlcikge1xuICAgIHJldHVybiBNYXRoLm1heChcbiAgICAgIGNvZXJjZU51bWJlcih0aGlzLm1pbiwgTnVtYmVyLk1JTl9TQUZFX0lOVEVHRVIpLFxuICAgICAgTWF0aC5taW4oXG4gICAgICAgIGNvZXJjZU51bWJlcih0aGlzLm1heCwgTnVtYmVyLk1BWF9TQUZFX0lOVEVHRVIpLFxuICAgICAgICB0aGlzLnBhcnNlUHJlY2lzaW9uKHZhbHVlKSxcbiAgICAgICksXG4gICAgKTtcbiAgfVxuXG4gIGlucHV0Q2hhbmdlZCh2YWx1ZTogc3RyaW5nKSB7XG4gICAgdGhpcy5lbWl0VmFsdWUoY29lcmNlTnVtYmVyKHZhbHVlLCB0aGlzLnNuYXBzaG90LnZhbHVlKSk7XG4gIH1cblxuICB0YWtlT25lU3RlcChwb3NpdGl2ZTogYm9vbGVhbikge1xuICAgIGlmIChwb3NpdGl2ZSkge1xuICAgICAgdGhpcy5lbWl0VmFsdWUoKHRoaXMuc25hcHNob3QudmFsdWUgPz8gMCkgKyB0aGlzLnN0ZXApO1xuICAgIH0gZWxzZSB7XG4gICAgICB0aGlzLmVtaXRWYWx1ZSgodGhpcy5zbmFwc2hvdC52YWx1ZSA/PyAwKSAtIHRoaXMuc3RlcCk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBwYXJzZVByZWNpc2lvbih2YWx1ZTogbnVtYmVyKSB7XG4gICAgY29uc3QgcHJlY2lzaW9uID0gdGhpcy5wcmVjaXNpb24gPz8gdGhpcy5nZXRTdGVwUHJlY2lzaW9uKCk7XG4gICAgcmV0dXJuIHBhcnNlRmxvYXQodmFsdWUudG9GaXhlZChwcmVjaXNpb24pKTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0U3RlcFByZWNpc2lvbigpIHtcbiAgICBjb25zdCBzdGVwID0gdGhpcy5zdGVwICsgJyc7XG4gICAgY29uc3QgaW5kZXggPSBzdGVwLmluZGV4T2YoJy4nKTtcbiAgICByZXR1cm4gaW5kZXggPCAwID8gMCA6IHN0ZXAuc2xpY2UoaW5kZXggKyAxKS5sZW5ndGg7XG4gIH1cbn1cbiJdfQ==
@@ -1,51 +0,0 @@
1
- /**
2
- * @fileoverview This file was generated by the Angular template compiler. Do not edit.
3
- *
4
- * @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
5
- * tslint:disable
6
- */
7
- import * as i0 from "./number-input.component.scss.ngstyle";
8
- import * as i1 from "@angular/core";
9
- import * as i2 from "../../button/button.component.ngfactory";
10
- import * as i3 from "@angular/common";
11
- import * as i4 from "../../button/button.component";
12
- import * as i5 from "@angular/cdk/a11y";
13
- import * as i6 from "../../icon/icon.component.ngfactory";
14
- import * as i7 from "../../icon/icon.component";
15
- import * as i8 from "../../icon/icon-register.service";
16
- import * as i9 from "../../shared/click-outside.directive";
17
- import * as i10 from "@angular/forms";
18
- import * as i11 from "./number-input.component";
19
- var styles_NumberInputComponent = [i0.styles];
20
- var RenderType_NumberInputComponent = i1.ɵcrt({ encapsulation: 2, styles: styles_NumberInputComponent, data: {} });
21
- export { RenderType_NumberInputComponent as RenderType_NumberInputComponent };
22
- function View_NumberInputComponent_1(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 5, "button", [["aui-button", ""], ["type", "button"]], [[8, "disabled", 0]], [[null, "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("click" === en)) {
23
- _co.takeOneStep(false);
24
- var pd_0 = ((_co.isFocus = true) !== false);
25
- ad = (pd_0 && ad);
26
- } return ad; }, i2.View_ButtonComponent_0, i2.RenderType_ButtonComponent)), i1.ɵdid(1, 278528, null, 0, i3.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null), i1.ɵdid(2, 180224, null, 0, i4.ButtonComponent, [i1.ElementRef, i1.Renderer2, i5.FocusMonitor], { type: [0, "type"] }, null), i1.ɵpid(131072, i3.AsyncPipe, [i1.ChangeDetectorRef]), (_l()(), i1.ɵeld(4, 0, null, 0, 1, "aui-icon", [["icon", "minus"]], null, null, null, i6.View_IconComponent_0, i6.RenderType_IconComponent)), i1.ɵdid(5, 49152, null, 0, i7.IconComponent, [i8.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_1 = _co.bem.element("decrease"); _ck(_v, 1, 0, currVal_1); var currVal_2 = ""; _ck(_v, 2, 0, currVal_2); var currVal_3 = "minus"; _ck(_v, 5, 0, currVal_3); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = (_co.disabled || (i1.ɵunv(_v, 0, 0, i1.ɵnov(_v, 3).transform(_co.value$)) <= _co.min)); _ck(_v, 0, 0, currVal_0); }); }
27
- function View_NumberInputComponent_2(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 5, "button", [["aui-button", ""], ["type", "button"]], [[8, "disabled", 0]], [[null, "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("click" === en)) {
28
- _co.takeOneStep(true);
29
- var pd_0 = ((_co.isFocus = true) !== false);
30
- ad = (pd_0 && ad);
31
- } return ad; }, i2.View_ButtonComponent_0, i2.RenderType_ButtonComponent)), i1.ɵdid(1, 278528, null, 0, i3.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null), i1.ɵdid(2, 180224, null, 0, i4.ButtonComponent, [i1.ElementRef, i1.Renderer2, i5.FocusMonitor], { type: [0, "type"] }, null), i1.ɵpid(131072, i3.AsyncPipe, [i1.ChangeDetectorRef]), (_l()(), i1.ɵeld(4, 0, null, 0, 1, "aui-icon", [["icon", "plus"]], null, null, null, i6.View_IconComponent_0, i6.RenderType_IconComponent)), i1.ɵdid(5, 49152, null, 0, i7.IconComponent, [i8.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_1 = _co.bem.element("increase"); _ck(_v, 1, 0, currVal_1); var currVal_2 = ""; _ck(_v, 2, 0, currVal_2); var currVal_3 = "plus"; _ck(_v, 5, 0, currVal_3); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = (_co.disabled || (i1.ɵunv(_v, 0, 0, i1.ɵnov(_v, 3).transform(_co.value$)) >= _co.max)); _ck(_v, 0, 0, currVal_0); }); }
32
- export function View_NumberInputComponent_0(_l) { return i1.ɵvid(2, [i1.ɵqud(671088640, 1, { inputRef: 0 }), (_l()(), i1.ɵeld(1, 0, null, null, 9, "div", [["auiClickOutside", ""]], null, [[null, "auiClickOutside"], ["document", "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("document:click" === en)) {
33
- var pd_0 = (i1.ɵnov(_v, 4).onBodyClick($event) !== false);
34
- ad = (pd_0 && ad);
35
- } if (("auiClickOutside" === en)) {
36
- var pd_1 = ((_co.isFocus = false) !== false);
37
- ad = (pd_1 && ad);
38
- } return ad; }, null, null)), i1.ɵdid(2, 278528, null, 0, i3.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { klass: [0, "klass"], ngClass: [1, "ngClass"] }, null), i1.ɵpod(3, { isFocus: 0, isDisabled: 1 }), i1.ɵdid(4, 16384, null, 0, i9.ClickOutsideDirective, [i1.ElementRef], null, { auiClickOutside: "auiClickOutside" }), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_NumberInputComponent_1)), i1.ɵdid(6, 16384, null, 0, i3.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null), (_l()(), i1.ɵeld(7, 0, [[1, 0], ["inputRef", 1]], null, 1, "input", [["autocomplete", "off"]], [[8, "disabled", 0], [8, "placeholder", 0]], [[null, "change"], [null, "focus"], [null, "blur"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("change" === en)) {
39
- var pd_0 = (_co.inputChanged($event.target.value) !== false);
40
- ad = (pd_0 && ad);
41
- } if (("focus" === en)) {
42
- var pd_1 = ((_co.isFocus = true) !== false);
43
- ad = (pd_1 && ad);
44
- } if (("blur" === en)) {
45
- var pd_2 = ((_co.isFocus = false) !== false);
46
- ad = (pd_2 && ad);
47
- } return ad; }, null, null)), i1.ɵdid(8, 278528, null, 0, i3.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_NumberInputComponent_2)), i1.ɵdid(10, 16384, null, 0, i3.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.bem.block(_co.size); var currVal_1 = _ck(_v, 3, 0, _co.isFocus, _co.disabled); _ck(_v, 2, 0, currVal_0, currVal_1); var currVal_2 = _co.controls; _ck(_v, 6, 0, currVal_2); var currVal_5 = _co.bem.element("input"); _ck(_v, 8, 0, currVal_5); var currVal_6 = _co.controls; _ck(_v, 10, 0, currVal_6); }, function (_ck, _v) { var _co = _v.component; var currVal_3 = _co.disabled; var currVal_4 = _co.placeholder; _ck(_v, 7, 0, currVal_3, currVal_4); }); }
48
- export function View_NumberInputComponent_Host_0(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, "aui-number-input", [], null, null, null, View_NumberInputComponent_0, RenderType_NumberInputComponent)), i1.ɵprd(5120, null, i10.NG_VALUE_ACCESSOR, function (p0_0) { return [p0_0]; }, [i11.NumberInputComponent]), i1.ɵdid(2, 4243456, null, 0, i11.NumberInputComponent, [i1.ChangeDetectorRef], null, null)], null, null); }
49
- var NumberInputComponentNgFactory = i1.ɵccf("aui-number-input", i11.NumberInputComponent, View_NumberInputComponent_Host_0, { disabled: "disabled", readonly: "readonly", propValue: "value", size: "size", min: "min", max: "max", step: "step", precision: "precision", controls: "controls", placeholder: "placeholder", controlsPosition: "controlsPosition" }, { valueChange: "valueChange" }, []);
50
- export { NumberInputComponentNgFactory as NumberInputComponentNgFactory };
51
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtYmVyLWlucHV0LmNvbXBvbmVudC5uZ2ZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvaW5wdXQvbnVtYmVyLWlucHV0L251bWJlci1pbnB1dC5jb21wb25lbnQubmdmYWN0b3J5LnRzIiwiLi4vLi4vLi4vLi4vc3JjL2lucHV0L251bWJlci1pbnB1dC9udW1iZXItaW5wdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OytEQ1NFLHlMQVNTLFlBSFA7Ozt3QkFBNEM7TUFOOUMsd1ZBU1MsR0FKUCxtREFBZ0QsS0FHaEQsK09BQWtDLGlEQUpsQywwQ0FBbUMsR0FKckMsWUFTUyxFQUxQLFNBQW1DLEdBRm5DLGtCQUFVLEVBRlosWUFTUyxFQVBQLFNBQVUsR0FNQSx1QkFBWSxFQUF0QixZQUFrQyxFQUF4QixTQUFZLG1EQUh0QixnR0FBZ0QsUUFMbEQsWUFTUyxFQUpQLFNBQWdEOytEQWVsRCx5TEFTUyxZQUhQOzs7d0JBQTJDO01BTjdDLHdWQVNTLEdBSlAsbURBQWdELEtBR2hELDhPQUFpQyxpREFKakMsMENBQW1DLEdBSnJDLFlBU1MsRUFMUCxTQUFtQyxHQUZuQyxrQkFBVSxFQUZaLFlBU1MsRUFQUCxTQUFVLEdBTUEsc0JBQVcsRUFBckIsWUFBaUMsRUFBdkIsU0FBVyxtREFIckIsZ0dBQWdELFFBTGxELFlBU1MsRUFKUCxTQUFnRDs4R0FsQ3BEOzt3QkF1Q007TUFoQ0o7O3dCQUFtQztNQVByQyxpTUF1Q00sR0FyQ0osc0NBR0UsS0FMSixnSEF1Q00sTUE5Qkosb0xBU1MsSUFDVCx1UEFTRSxZQU5BOzt3QkFBNEM7TUFJNUM7O3dCQUF3QjtNQUN4Qjs7d0JBQXdCO01BUjFCLDRLQVNFLElBQ0YscUxBU1MsaURBckNULGlDQUF5QixRQUN6Qiw4Q0FHRSxZQUxKLFlBdUNNLEVBdENKLFNBQXlCLEVBQ3pCLFNBR0UsR0FLQSxtQkFBZ0IsV0FEbEIsWUFTUyxFQVJQLFNBQWdCLEdBY2hCLHVDQUFnQyxHQUxsQyxZQVNFLEVBSkEsU0FBZ0MsR0FNaEMsbUJBQWdCLFdBRGxCLGFBU1MsRUFSUCxTQUFnQixtREFQaEIsbUJBQXFCLFdBRXJCLG1CQUEyQixjQU43QixZQVNFLEVBTEEsU0FBcUIsRUFFckIsU0FBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iLCI8ZGl2XG4gIFtjbGFzc109XCJiZW0uYmxvY2soc2l6ZSlcIlxuICBbbmdDbGFzc109XCJ7XG4gICAgaXNGb2N1czogaXNGb2N1cyxcbiAgICBpc0Rpc2FibGVkOiBkaXNhYmxlZFxuICB9XCJcbiAgYXVpQ2xpY2tPdXRzaWRlXG4gIChhdWlDbGlja091dHNpZGUpPVwiaXNGb2N1cyA9IGZhbHNlXCJcbj5cbiAgPGJ1dHRvblxuICAgICpuZ0lmPVwiY29udHJvbHNcIlxuICAgIGF1aS1idXR0b25cbiAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICBbbmdDbGFzc109XCJiZW0uZWxlbWVudCgnZGVjcmVhc2UnKVwiXG4gICAgW2Rpc2FibGVkXT1cImRpc2FibGVkIHx8ICh2YWx1ZSQgfCBhc3luYykgPD0gbWluXCJcbiAgICAoY2xpY2spPVwidGFrZU9uZVN0ZXAoZmFsc2UpOyBpc0ZvY3VzID0gdHJ1ZVwiXG4gID5cbiAgICA8YXVpLWljb24gaWNvbj1cIm1pbnVzXCI+PC9hdWktaWNvbj5cbiAgPC9idXR0b24+XG4gIDxpbnB1dFxuICAgICNpbnB1dFJlZlxuICAgIGF1dG9jb21wbGV0ZT1cIm9mZlwiXG4gICAgKGNoYW5nZSk9XCJpbnB1dENoYW5nZWQoJGV2ZW50LnRhcmdldC52YWx1ZSlcIlxuICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXG4gICAgW25nQ2xhc3NdPVwiYmVtLmVsZW1lbnQoJ2lucHV0JylcIlxuICAgIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXG4gICAgKGZvY3VzKT1cImlzRm9jdXMgPSB0cnVlXCJcbiAgICAoYmx1cik9XCJpc0ZvY3VzID0gZmFsc2VcIlxuICAvPlxuICA8YnV0dG9uXG4gICAgKm5nSWY9XCJjb250cm9sc1wiXG4gICAgYXVpLWJ1dHRvblxuICAgIHR5cGU9XCJidXR0b25cIlxuICAgIFtuZ0NsYXNzXT1cImJlbS5lbGVtZW50KCdpbmNyZWFzZScpXCJcbiAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWQgfHwgKHZhbHVlJCB8IGFzeW5jKSA+PSBtYXhcIlxuICAgIChjbGljayk9XCJ0YWtlT25lU3RlcCh0cnVlKTsgaXNGb2N1cyA9IHRydWVcIlxuICA+XG4gICAgPGF1aS1pY29uIGljb249XCJwbHVzXCI+PC9hdWktaWNvbj5cbiAgPC9idXR0b24+XG48L2Rpdj5cbiJdfQ==
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"size":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"min":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"max":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"step":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"precision":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"controls":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"placeholder":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"controlsPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"inputRef":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":3,"members":[]},"arguments":["inputRef",{"read":{"__symbol":4,"members":[]}}]}]}],"ngAfterViewInit":[{"__symbolic":"method"}],"valueIn":[{"__symbolic":"method"}],"valueOut":[{"__symbolic":"method"}],"inputChanged":[{"__symbolic":"method"}],"takeOneStep":[{"__symbolic":"method"}],"parsePrecision":[{"__symbolic":"method"}],"getStepPrecision":[{"__symbolic":"method"}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}}],"lifecycleHooks":[6]},"isComponent":true,"selector":"aui-number-input","exportAs":null,"inputs":{"disabled":"disabled","readonly":"readonly","propValue":"value","size":"size","min":"min","max":"max","step":"step","precision":"precision","controls":"controls","placeholder":"placeholder","controlsPosition":"controlsPosition"},"outputs":{"valueChange":"valueChange"},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[{"token":{"identifier":{"reference":{"__symbol":6,"members":[]}}},"useClass":null,"useFactory":null,"useExisting":{"identifier":{"reference":{"__symbol":0,"members":[]}}},"multi":true}],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[{"selectors":[{"value":"inputRef"}],"first":true,"descendants":true,"propertyName":"inputRef","read":{"identifier":{"reference":{"__symbol":4,"members":[]}}}}],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":[],"encapsulation":2,"styles":[],"animations":[]},"componentViewType":{"__symbol":7,"members":[]},"rendererType":{"__symbol":8,"members":[]},"componentFactory":{"__symbol":9,"members":[]}}}],"symbols":[{"__symbol":0,"name":"NumberInputComponent","filePath":"./number-input.component"},{"__symbol":1,"name":"CommonFormControl","filePath":"../../form/public-api"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"ViewChild","filePath":"@angular/core"},{"__symbol":4,"name":"ElementRef","filePath":"@angular/core"},{"__symbol":5,"name":"ChangeDetectorRef","filePath":"@angular/core"},{"__symbol":6,"name":"NG_VALUE_ACCESSOR","filePath":"@angular/forms"},{"__symbol":7,"name":"View_NumberInputComponent_0","filePath":"./number-input.component.ngfactory"},{"__symbol":8,"name":"RenderType_NumberInputComponent","filePath":"./number-input.component.ngfactory"},{"__symbol":9,"name":"NumberInputComponentNgFactory","filePath":"./number-input.component.ngfactory"}]}
@@ -1,9 +0,0 @@
1
- /**
2
- * @fileoverview This file was generated by the Angular template compiler. Do not edit.
3
- *
4
- * @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
5
- * tslint:disable
6
- */
7
- var styles = [".aui-number-input{display:flex;padding:3px;width:var(--aui-form-item-width-s);border:1px solid rgb(var(--aui-color-n-7));border-radius:var(--aui-border-radius-m);background-color:rgb(var(--aui-color-main-bg));color:rgb(var(--aui-color-n-1))}.aui-number-input--small .aui-number-input__decrease.aui-button,.aui-number-input--small .aui-number-input__increase.aui-button{width:var(--aui-line-height-m);height:var(--aui-line-height-m)}.aui-number-input.isFocus,.aui-number-input:hover{border-color:rgb(var(--aui-color-primary))}.aui-number-input.isFocus{box-shadow:0 0 0 2px rgba(var(--aui-color-primary),.16)}.aui-number-input.isDisabled{border:1px solid rgb(var(--aui-color-n-7))}.aui-number-input.isDisabled:hover{cursor:not-allowed}.aui-number-input.isDisabled .aui-number-input__input{color:rgb(var(--aui-color-n-6))}.aui-number-input.isDisabled .aui-number-input__input:hover{cursor:not-allowed}.aui-number-input__decrease.aui-button,.aui-number-input__increase.aui-button{background-color:rgb(var(--aui-color-n-8));border:unset;width:var(--aui-icon-size-xl);height:var(--aui-icon-size-xl)}.aui-number-input__decrease.aui-button aui-icon,.aui-number-input__increase.aui-button aui-icon{font-size:var(--aui-font-size-s)}.aui-number-input__decrease.aui-button .aui-button__content,.aui-number-input__increase.aui-button .aui-button__content{padding:unset}.aui-number-input__input{min-width:0;line-height:var(--aui-line-height-m);border:unset;padding:unset;margin:0 var(--aui-spacing-s);background-color:transparent;color:rgb(var(--aui-color-n-1));text-align:center}.aui-number-input__input:focus{border:unset}.aui-number-input__input:focus-visible{outline:unset}.ng-submitted aui-number-input.ng-invalid,aui-number-input.ng-invalid.ng-dirty{border-color:rgb(var(--aui-color-red))}"];
8
- export { styles as styles };
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtYmVyLWlucHV0LmNvbXBvbmVudC5zY3NzLm5nc3R5bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvaW5wdXQvbnVtYmVyLWlucHV0L251bWJlci1pbnB1dC5jb21wb25lbnQuc2Nzcy5uZ3N0eWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iXX0=
@@ -1,7 +0,0 @@
1
- export * from './input.component';
2
- export * from './input-group/input-group.component';
3
- export * from './search/search.component';
4
- export * from './tags-input/tags-input.component';
5
- export * from './input.module';
6
- export * from './number-input/number-input.component';
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9pbnB1dC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLHVDQUF1QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9pbnB1dC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9pbnB1dC1ncm91cC9pbnB1dC1ncm91cC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9zZWFyY2gvc2VhcmNoLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3RhZ3MtaW5wdXQvdGFncy1pbnB1dC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9pbnB1dC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9udW1iZXItaW5wdXQvbnVtYmVyLWlucHV0LmNvbXBvbmVudCc7XG4iXX0=
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbol":1,"members":[]}},{"symbol":{"__symbol":2,"members":[]},"metadata":{"__symbol":3,"members":[]}},{"symbol":{"__symbol":4,"members":[]},"metadata":{"__symbol":5,"members":[]}},{"symbol":{"__symbol":6,"members":[]},"metadata":{"__symbol":7,"members":[]}},{"symbol":{"__symbol":8,"members":[]},"metadata":{"__symbol":9,"members":[]}},{"symbol":{"__symbol":10,"members":[]},"metadata":{"__symbol":11,"members":[]}},{"symbol":{"__symbol":12,"members":[]},"metadata":{"__symbol":13,"members":[]}}],"symbols":[{"__symbol":0,"name":"InputComponent","filePath":"./public-api"},{"__symbol":1,"name":"InputComponent","filePath":"./input.component"},{"__symbol":2,"name":"InputGroupComponent","filePath":"./public-api"},{"__symbol":3,"name":"InputGroupComponent","filePath":"./input-group/input-group.component"},{"__symbol":4,"name":"SearchComponent","filePath":"./public-api"},{"__symbol":5,"name":"SearchComponent","filePath":"./search/search.component"},{"__symbol":6,"name":"INPUT_ERROR_KEY","filePath":"./public-api"},{"__symbol":7,"name":"INPUT_ERROR_KEY","filePath":"./tags-input/tags-input.component"},{"__symbol":8,"name":"TagsInputComponent","filePath":"./public-api"},{"__symbol":9,"name":"TagsInputComponent","filePath":"./tags-input/tags-input.component"},{"__symbol":10,"name":"InputModule","filePath":"./public-api"},{"__symbol":11,"name":"InputModule","filePath":"./input.module"},{"__symbol":12,"name":"NumberInputComponent","filePath":"./public-api"},{"__symbol":13,"name":"NumberInputComponent","filePath":"./number-input/number-input.component"}]}
@@ -1,72 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, ViewEncapsulation, } from '@angular/core';
2
- import { ComponentSize } from '../../types';
3
- import { buildBem } from '../../utils';
4
- export class SearchComponent {
5
- constructor() {
6
- this.bem = buildBem('aui-search');
7
- this.size = ComponentSize.Medium;
8
- this.searchButton = false;
9
- this.clearable = true;
10
- this.searching = false;
11
- this.placeholder = '';
12
- this.disabled = false;
13
- this.keywordChange = new EventEmitter();
14
- this.search = new EventEmitter();
15
- this.clear = new EventEmitter();
16
- this.value = '';
17
- }
18
- get keyword() {
19
- return this.value;
20
- }
21
- set keyword(value) {
22
- this.value = value;
23
- }
24
- get showSpinner() {
25
- return this.searching && !this.searchButton;
26
- }
27
- get showClear() {
28
- return !this.disabled && this.clearable && this.value && !this.showSpinner;
29
- }
30
- emitChange(value) {
31
- this.value = value;
32
- this.keywordChange.emit(value);
33
- }
34
- emitSearch() {
35
- if (this.disabled) {
36
- return;
37
- }
38
- this.search.emit(this.value);
39
- }
40
- emitClear() {
41
- if (this.disabled) {
42
- return;
43
- }
44
- this.value = '';
45
- this.keywordChange.emit('');
46
- this.search.emit('');
47
- this.clear.emit();
48
- }
49
- }
50
- SearchComponent.decorators = [
51
- { type: Component, args: [{
52
- selector: 'aui-search',
53
- template: "<div\n [ngClass]=\"bem.block(size)\"\n [class.hasIcon]=\"!searchButton\"\n [class.hasButton]=\"searchButton\"\n [class.isClearable]=\"clearable\"\n [class.isSearching]=\"searching\"\n [class.isDisabled]=\"disabled\"\n>\n <div *ngIf=\"!searchButton\" [class]=\"bem.element('icon')\">\n <aui-icon icon=\"search_s\"></aui-icon>\n </div>\n <input\n aui-input\n autocomplete=\"off\"\n [ngModel]=\"value\"\n (ngModelChange)=\"emitChange($event)\"\n [disabled]=\"disabled\"\n (keyup.enter)=\"emitSearch()\"\n [ngClass]=\"bem.element('input')\"\n [placeholder]=\"placeholder\"\n [size]=\"size\"\n />\n <div *ngIf=\"showSpinner\" [class]=\"bem.element('spinner')\">\n <aui-icon icon=\"spinner\"></aui-icon>\n </div>\n <div\n [hidden]=\"!showClear\"\n [class]=\"bem.element('clear')\"\n (click)=\"emitClear()\"\n >\n <aui-icon icon=\"close_small\"></aui-icon>\n </div>\n <div\n *ngIf=\"searchButton\"\n [class]=\"bem.element('button')\"\n (click)=\"emitSearch()\"\n >\n <div [class]=\"bem.element('button-icon')\">\n <aui-icon [icon]=\"searching ? 'spinner' : 'search_s'\"></aui-icon>\n </div>\n </div>\n</div>\n",
54
- changeDetection: ChangeDetectionStrategy.OnPush,
55
- encapsulation: ViewEncapsulation.None,
56
- preserveWhitespaces: false,
57
- styles: [".aui-search{display:inline-block;width:100%;position:relative;color:rgb(var(--aui-color-n-4))}.aui-search.isDisabled{color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-search--large{font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-search--large aui-icon{font-size:var(--aui-icon-size-l)}.aui-search--large .aui-search__clear,.aui-search--large .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--large .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--large .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--large.isClearable .aui-search__input,.aui-search--large.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--large.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-l) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--large.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-l) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--large.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-l) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--large.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-l) * 2)}.aui-search--medium{font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m)}.aui-search--medium aui-icon{font-size:var(--aui-icon-size-m)}.aui-search--medium .aui-search__clear,.aui-search--medium .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--medium .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--medium .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--medium.isClearable .aui-search__input,.aui-search--medium.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--medium.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--medium.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--medium.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--medium.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-m) * 2)}.aui-search--small{font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m)}.aui-search--small aui-icon{font-size:var(--aui-icon-size-m)}.aui-search--small .aui-search__clear,.aui-search--small .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--small .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--small .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--small.isClearable .aui-search__input,.aui-search--small.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--small.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--small.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--small.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--small.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-m) * 2)}.aui-search--mini{font-size:var(--aui-font-size-s);line-height:var(--aui-line-height-s)}.aui-search--mini aui-icon{font-size:var(--aui-icon-size-s)}.aui-search--mini .aui-search__clear,.aui-search--mini .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--mini .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--mini .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--mini.isClearable .aui-search__input,.aui-search--mini.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--mini.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-s) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--mini.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-s) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--mini.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-s) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--mini.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-s) * 2)}.aui-search__icon{position:absolute;top:50%;transform:translateY(-50%);color:rgb(var(--aui-color-n-6))}.aui-search__button{position:absolute;top:0;right:1px;height:100%;display:flex;align-items:center}.aui-search:not(.isDisabled):not(.isSearching) .aui-search__button{cursor:pointer}.aui-search:not(.isDisabled):not(.isSearching) .aui-search__button:hover{color:rgb(var(--aui-color-primary))}.aui-search__button-icon{border-left:1px solid rgb(var(--aui-color-n-7))}.aui-search__clear,.aui-search__spinner{position:absolute;top:50%;transform:translateY(-50%)}.aui-search__clear .aui-icon{border-radius:50%;color:rgb(var(--aui-color-n-4));cursor:pointer;transition:all .3s ease}.aui-search__clear .aui-icon:hover{color:#fff;background-color:rgb(var(--aui-color-n-4))}"]
58
- },] }
59
- ];
60
- SearchComponent.propDecorators = {
61
- size: [{ type: Input }],
62
- searchButton: [{ type: Input }],
63
- clearable: [{ type: Input }],
64
- searching: [{ type: Input }],
65
- placeholder: [{ type: Input }],
66
- disabled: [{ type: Input }],
67
- keyword: [{ type: Input }],
68
- keywordChange: [{ type: Output }],
69
- search: [{ type: Output }],
70
- clear: [{ type: Output }]
71
- };
72
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9pbnB1dC9zZWFyY2gvc2VhcmNoLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUNMLE1BQU0sRUFDTixpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUM1QyxPQUFPLEVBQU8sUUFBUSxFQUFFLE1BQU0sYUFBYSxDQUFDO0FBVTVDLE1BQU0sT0FBTyxlQUFlO0lBUjVCO1FBU0UsUUFBRyxHQUFRLFFBQVEsQ0FBQyxZQUFZLENBQUMsQ0FBQztRQUdsQyxTQUFJLEdBQWtCLGFBQWEsQ0FBQyxNQUFNLENBQUM7UUFHM0MsaUJBQVksR0FBRyxLQUFLLENBQUM7UUFHckIsY0FBUyxHQUFHLElBQUksQ0FBQztRQUdqQixjQUFTLEdBQUcsS0FBSyxDQUFDO1FBR2xCLGdCQUFXLEdBQUcsRUFBRSxDQUFDO1FBR2pCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFZakIsa0JBQWEsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBRzNDLFdBQU0sR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBR3BDLFVBQUssR0FBRyxJQUFJLFlBQVksRUFBUSxDQUFDO1FBRWpDLFVBQUssR0FBRyxFQUFFLENBQUM7SUErQmIsQ0FBQztJQWpEQyxJQUNJLE9BQU87UUFDVCxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUM7SUFDcEIsQ0FBQztJQUVELElBQUksT0FBTyxDQUFDLEtBQWE7UUFDdkIsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDckIsQ0FBQztJQWFELElBQUksV0FBVztRQUNiLE9BQU8sSUFBSSxDQUFDLFNBQVMsSUFBSSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUM7SUFDOUMsQ0FBQztJQUVELElBQUksU0FBUztRQUNYLE9BQU8sQ0FBQyxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksQ0FBQyxTQUFTLElBQUksSUFBSSxDQUFDLEtBQUssSUFBSSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDN0UsQ0FBQztJQUVELFVBQVUsQ0FBQyxLQUFhO1FBQ3RCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO1FBQ25CLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFRCxVQUFVO1FBQ1IsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2pCLE9BQU87U0FDUjtRQUNELElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMvQixDQUFDO0lBRUQsU0FBUztRQUNQLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRTtZQUNqQixPQUFPO1NBQ1I7UUFDRCxJQUFJLENBQUMsS0FBSyxHQUFHLEVBQUUsQ0FBQztRQUNoQixJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUM1QixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUNyQixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3BCLENBQUM7OztZQTdFRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLFlBQVk7Z0JBQ3RCLDZxQ0FBc0M7Z0JBRXRDLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO2dCQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtnQkFDckMsbUJBQW1CLEVBQUUsS0FBSzs7YUFDM0I7OzttQkFJRSxLQUFLOzJCQUdMLEtBQUs7d0JBR0wsS0FBSzt3QkFHTCxLQUFLOzBCQUdMLEtBQUs7dUJBR0wsS0FBSztzQkFHTCxLQUFLOzRCQVNMLE1BQU07cUJBR04sTUFBTTtvQkFHTixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT3V0cHV0LFxuICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IENvbXBvbmVudFNpemUgfSBmcm9tICcuLi8uLi90eXBlcyc7XG5pbXBvcnQgeyBCZW0sIGJ1aWxkQmVtIH0gZnJvbSAnLi4vLi4vdXRpbHMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhdWktc2VhcmNoJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NlYXJjaC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlYXJjaC5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJlc2VydmVXaGl0ZXNwYWNlczogZmFsc2UsXG59KVxuZXhwb3J0IGNsYXNzIFNlYXJjaENvbXBvbmVudCB7XG4gIGJlbTogQmVtID0gYnVpbGRCZW0oJ2F1aS1zZWFyY2gnKTtcblxuICBASW5wdXQoKVxuICBzaXplOiBDb21wb25lbnRTaXplID0gQ29tcG9uZW50U2l6ZS5NZWRpdW07XG5cbiAgQElucHV0KClcbiAgc2VhcmNoQnV0dG9uID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgY2xlYXJhYmxlID0gdHJ1ZTtcblxuICBASW5wdXQoKVxuICBzZWFyY2hpbmcgPSBmYWxzZTtcblxuICBASW5wdXQoKVxuICBwbGFjZWhvbGRlciA9ICcnO1xuXG4gIEBJbnB1dCgpXG4gIGRpc2FibGVkID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgZ2V0IGtleXdvcmQoKSB7XG4gICAgcmV0dXJuIHRoaXMudmFsdWU7XG4gIH1cblxuICBzZXQga2V5d29yZCh2YWx1ZTogc3RyaW5nKSB7XG4gICAgdGhpcy52YWx1ZSA9IHZhbHVlO1xuICB9XG5cbiAgQE91dHB1dCgpXG4gIGtleXdvcmRDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICBAT3V0cHV0KClcbiAgc2VhcmNoID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG5cbiAgQE91dHB1dCgpXG4gIGNsZWFyID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPigpO1xuXG4gIHZhbHVlID0gJyc7XG5cbiAgZ2V0IHNob3dTcGlubmVyKCkge1xuICAgIHJldHVybiB0aGlzLnNlYXJjaGluZyAmJiAhdGhpcy5zZWFyY2hCdXR0b247XG4gIH1cblxuICBnZXQgc2hvd0NsZWFyKCkge1xuICAgIHJldHVybiAhdGhpcy5kaXNhYmxlZCAmJiB0aGlzLmNsZWFyYWJsZSAmJiB0aGlzLnZhbHVlICYmICF0aGlzLnNob3dTcGlubmVyO1xuICB9XG5cbiAgZW1pdENoYW5nZSh2YWx1ZTogc3RyaW5nKTogdm9pZCB7XG4gICAgdGhpcy52YWx1ZSA9IHZhbHVlO1xuICAgIHRoaXMua2V5d29yZENoYW5nZS5lbWl0KHZhbHVlKTtcbiAgfVxuXG4gIGVtaXRTZWFyY2goKTogdm9pZCB7XG4gICAgaWYgKHRoaXMuZGlzYWJsZWQpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG4gICAgdGhpcy5zZWFyY2guZW1pdCh0aGlzLnZhbHVlKTtcbiAgfVxuXG4gIGVtaXRDbGVhcigpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5kaXNhYmxlZCkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cbiAgICB0aGlzLnZhbHVlID0gJyc7XG4gICAgdGhpcy5rZXl3b3JkQ2hhbmdlLmVtaXQoJycpO1xuICAgIHRoaXMuc2VhcmNoLmVtaXQoJycpO1xuICAgIHRoaXMuY2xlYXIuZW1pdCgpO1xuICB9XG59XG4iXX0=
@@ -1,51 +0,0 @@
1
- /**
2
- * @fileoverview This file was generated by the Angular template compiler. Do not edit.
3
- *
4
- * @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
5
- * tslint:disable
6
- */
7
- import * as i0 from "./search.component.scss.ngstyle";
8
- import * as i1 from "@angular/core";
9
- import * as i2 from "../../icon/icon.component.ngfactory";
10
- import * as i3 from "../../icon/icon.component";
11
- import * as i4 from "../../icon/icon-register.service";
12
- import * as i5 from "@angular/common";
13
- import * as i6 from "../input.component.ngfactory";
14
- import * as i7 from "@angular/forms";
15
- import * as i8 from "../input.component";
16
- import * as i9 from "./search.component";
17
- var styles_SearchComponent = [i0.styles];
18
- var RenderType_SearchComponent = i1.ɵcrt({ encapsulation: 2, styles: styles_SearchComponent, data: {} });
19
- export { RenderType_SearchComponent as RenderType_SearchComponent };
20
- function View_SearchComponent_1(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, "div", [], [[8, "className", 0]], null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "aui-icon", [["icon", "search_s"]], null, null, null, i2.View_IconComponent_0, i2.RenderType_IconComponent)), i1.ɵdid(2, 49152, null, 0, i3.IconComponent, [i4.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var currVal_1 = "search_s"; _ck(_v, 2, 0, currVal_1); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.bem.element("icon"); _ck(_v, 0, 0, currVal_0); }); }
21
- function View_SearchComponent_2(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, "div", [], [[8, "className", 0]], null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "aui-icon", [["icon", "spinner"]], null, null, null, i2.View_IconComponent_0, i2.RenderType_IconComponent)), i1.ɵdid(2, 49152, null, 0, i3.IconComponent, [i4.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var currVal_1 = "spinner"; _ck(_v, 2, 0, currVal_1); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.bem.element("spinner"); _ck(_v, 0, 0, currVal_0); }); }
22
- function View_SearchComponent_3(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 3, "div", [], [[8, "className", 0]], [[null, "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("click" === en)) {
23
- var pd_0 = (_co.emitSearch() !== false);
24
- ad = (pd_0 && ad);
25
- } return ad; }, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 2, "div", [], [[8, "className", 0]], null, null, null, null)), (_l()(), i1.ɵeld(2, 0, null, null, 1, "aui-icon", [], null, null, null, i2.View_IconComponent_0, i2.RenderType_IconComponent)), i1.ɵdid(3, 49152, null, 0, i3.IconComponent, [i4.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_2 = (_co.searching ? "spinner" : "search_s"); _ck(_v, 3, 0, currVal_2); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.bem.element("button"); _ck(_v, 0, 0, currVal_0); var currVal_1 = _co.bem.element("button-icon"); _ck(_v, 1, 0, currVal_1); }); }
26
- export function View_SearchComponent_0(_l) { return i1.ɵvid(2, [(_l()(), i1.ɵeld(0, 0, null, null, 18, "div", [], [[2, "hasIcon", null], [2, "hasButton", null], [2, "isClearable", null], [2, "isSearching", null], [2, "isDisabled", null]], null, null, null, null)), i1.ɵdid(1, 278528, null, 0, i5.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_SearchComponent_1)), i1.ɵdid(3, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null), (_l()(), i1.ɵeld(4, 0, null, null, 7, "input", [["aui-input", ""], ["autocomplete", "off"]], [[8, "placeholder", 0], [2, "ng-untouched", null], [2, "ng-touched", null], [2, "ng-pristine", null], [2, "ng-dirty", null], [2, "ng-valid", null], [2, "ng-invalid", null], [2, "ng-pending", null]], [[null, "ngModelChange"], [null, "keyup.enter"], [null, "input"], [null, "blur"], [null, "compositionstart"], [null, "compositionend"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("input" === en)) {
27
- var pd_0 = (i1.ɵnov(_v, 6)._handleInput($event.target.value) !== false);
28
- ad = (pd_0 && ad);
29
- } if (("blur" === en)) {
30
- var pd_1 = (i1.ɵnov(_v, 6).onTouched() !== false);
31
- ad = (pd_1 && ad);
32
- } if (("compositionstart" === en)) {
33
- var pd_2 = (i1.ɵnov(_v, 6)._compositionStart() !== false);
34
- ad = (pd_2 && ad);
35
- } if (("compositionend" === en)) {
36
- var pd_3 = (i1.ɵnov(_v, 6)._compositionEnd($event.target.value) !== false);
37
- ad = (pd_3 && ad);
38
- } if (("ngModelChange" === en)) {
39
- var pd_4 = (_co.emitChange($event) !== false);
40
- ad = (pd_4 && ad);
41
- } if (("keyup.enter" === en)) {
42
- var pd_5 = (_co.emitSearch() !== false);
43
- ad = (pd_5 && ad);
44
- } return ad; }, i6.View_InputComponent_0, i6.RenderType_InputComponent)), i1.ɵdid(5, 278528, null, 0, i5.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null), i1.ɵdid(6, 16384, null, 0, i7.DefaultValueAccessor, [i1.Renderer2, i1.ElementRef, [2, i7.COMPOSITION_BUFFER_MODE]], null, null), i1.ɵprd(1024, null, i7.NG_VALUE_ACCESSOR, function (p0_0) { return [p0_0]; }, [i7.DefaultValueAccessor]), i1.ɵdid(8, 671744, null, 0, i7.NgModel, [[8, null], [8, null], [8, null], [6, i7.NG_VALUE_ACCESSOR]], { isDisabled: [0, "isDisabled"], model: [1, "model"] }, { update: "ngModelChange" }), i1.ɵprd(2048, null, i7.NgControl, null, [i7.NgModel]), i1.ɵdid(10, 16384, null, 0, i7.NgControlStatus, [[4, i7.NgControl]], null, null), i1.ɵdid(11, 49152, null, 0, i8.InputComponent, [i1.ElementRef, i1.Renderer2], { size: [0, "size"], disabled: [1, "disabled"] }, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_SearchComponent_2)), i1.ɵdid(13, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null), (_l()(), i1.ɵeld(14, 0, null, null, 2, "div", [], [[8, "hidden", 0], [8, "className", 0]], [[null, "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("click" === en)) {
45
- var pd_0 = (_co.emitClear() !== false);
46
- ad = (pd_0 && ad);
47
- } return ad; }, null, null)), (_l()(), i1.ɵeld(15, 0, null, null, 1, "aui-icon", [["icon", "close_small"]], null, null, null, i2.View_IconComponent_0, i2.RenderType_IconComponent)), i1.ɵdid(16, 49152, null, 0, i3.IconComponent, [i4.IconRegisterService], { icon: [0, "icon"] }, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_SearchComponent_3)), i1.ɵdid(18, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_5 = _co.bem.block(_co.size); _ck(_v, 1, 0, currVal_5); var currVal_6 = !_co.searchButton; _ck(_v, 3, 0, currVal_6); var currVal_15 = _co.bem.element("input"); _ck(_v, 5, 0, currVal_15); var currVal_16 = _co.disabled; var currVal_17 = _co.value; _ck(_v, 8, 0, currVal_16, currVal_17); var currVal_18 = _co.size; var currVal_19 = _co.disabled; _ck(_v, 11, 0, currVal_18, currVal_19); var currVal_20 = _co.showSpinner; _ck(_v, 13, 0, currVal_20); var currVal_23 = "close_small"; _ck(_v, 16, 0, currVal_23); var currVal_24 = _co.searchButton; _ck(_v, 18, 0, currVal_24); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = !_co.searchButton; var currVal_1 = _co.searchButton; var currVal_2 = _co.clearable; var currVal_3 = _co.searching; var currVal_4 = _co.disabled; _ck(_v, 0, 0, currVal_0, currVal_1, currVal_2, currVal_3, currVal_4); var currVal_7 = _co.placeholder; var currVal_8 = i1.ɵnov(_v, 10).is("untouched"); var currVal_9 = i1.ɵnov(_v, 10).is("touched"); var currVal_10 = i1.ɵnov(_v, 10).is("pristine"); var currVal_11 = i1.ɵnov(_v, 10).is("dirty"); var currVal_12 = i1.ɵnov(_v, 10).is("valid"); var currVal_13 = i1.ɵnov(_v, 10).is("invalid"); var currVal_14 = i1.ɵnov(_v, 10).is("pending"); _ck(_v, 4, 0, currVal_7, currVal_8, currVal_9, currVal_10, currVal_11, currVal_12, currVal_13, currVal_14); var currVal_21 = !_co.showClear; var currVal_22 = _co.bem.element("clear"); _ck(_v, 14, 0, currVal_21, currVal_22); }); }
48
- export function View_SearchComponent_Host_0(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "aui-search", [], null, null, null, View_SearchComponent_0, RenderType_SearchComponent)), i1.ɵdid(1, 49152, null, 0, i9.SearchComponent, [], null, null)], null, null); }
49
- var SearchComponentNgFactory = i1.ɵccf("aui-search", i9.SearchComponent, View_SearchComponent_Host_0, { size: "size", searchButton: "searchButton", clearable: "clearable", searching: "searching", placeholder: "placeholder", disabled: "disabled", keyword: "keyword" }, { keywordChange: "keywordChange", search: "search", clear: "clear" }, []);
50
- export { SearchComponentNgFactory as SearchComponentNgFactory };
51
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLmNvbXBvbmVudC5uZ2ZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvaW5wdXQvc2VhcmNoL3NlYXJjaC5jb21wb25lbnQubmdmYWN0b3J5LnRzIiwiLi4vLi4vLi4vLi4vc3JjL2lucHV0L3NlYXJjaC9zZWFyY2guY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7OzswRENRRSw2RkFFTSxLQURKLHFQQUFxQyx5QkFBM0IsMEJBQWUsRUFBekIsWUFBcUMsRUFBM0IsU0FBZSxtREFEQSxzQ0FBNkIsR0FBeEQsWUFFTSxFQUZxQixTQUE2QjswREFjeEQsNkZBRU0sS0FESixvUEFBb0MseUJBQTFCLHlCQUFjLEVBQXhCLFlBQW9DLEVBQTFCLFNBQWMsbURBREQseUNBQWdDLEdBQXpELFlBRU0sRUFGbUIsU0FBZ0M7MERBVXpELGlKQVFNLFlBTEo7O3dCQUFzQjtNQUh4Qix3QkFRTSxLQUhKLDZGQUVNLEtBREosaU9BQWlFLGlEQUF2RCx1REFBMkMsR0FBckQsWUFBaUUsRUFBdkQsU0FBMkMsbURBSnZELHdDQUErQixHQUZqQyxZQVFNLEVBTkosU0FBK0IsR0FHMUIsNkNBQW9DLEdBQXpDLFlBRU0sRUFGRCxTQUFvQztpRUFyQzdDLHdWQXlDTSxJQWpDSiwrS0FFTSxJQUNOOzs7Ozs7Ozs7Ozt3QkFVRTtNQU5BOzt3QkFBb0M7TUFFcEM7O3dCQUE0QjtNQU45QiwrNEJBVUUsSUFDRixnTEFFTSxJQUNOLG9LQU1NLFlBSEo7O3dCQUFxQjtNQUh2Qix3QkFNTSxLQURKLDBQQUF3QyxJQUUxQyxnTEFRTSxpREF2Q04saUNBQTJCLFFBRDdCLFlBeUNNLEVBeENKLFNBQTJCLEdBT3RCLG9CQUFxQixlQUExQixZQUVNLEVBRkQsU0FBcUIsR0FVeEIsd0NBQWdDLEdBUGxDLFlBVUUsRUFIQSxVQUFnQyxHQUZoQyxvQkFBcUIsV0FGckIsb0JBQWlCLFFBSG5CLFlBVUUsRUFMQSxVQUFxQixFQUZyQixVQUFpQixHQU1qQixvQkFBYSxPQUpiLG9CQUFxQixXQUx2QixhQVVFLEVBREEsVUFBYSxFQUpiLFVBQXFCLEdBTWxCLG9CQUFtQixjQUF4QixhQUVNLEVBRkQsVUFBbUIsR0FRWiw4QkFBa0IsRUFBNUIsYUFBd0MsRUFBOUIsVUFBa0IsR0FHNUIsb0JBQW9CLGVBRHRCLGFBUU0sRUFQSixVQUFvQixtREEvQnRCLG9CQUErQixlQUMvQixtQkFBZ0MsZUFDaEMsbUJBQStCLFlBQy9CLG1CQUErQixZQUMvQixtQkFBNkIsV0FOL0IsWUF5Q00sRUF2Q0osU0FBK0IsRUFDL0IsU0FBZ0MsRUFDaEMsU0FBK0IsRUFDL0IsU0FBK0IsRUFDL0IsU0FBNkIsR0FhM0IsbUJBQTJCLGNBUjdCLHlWQVVFLEVBRkEsU0FBMkIsRUFSN0IsZ0ZBVUUsR0FLQSxxQkFBcUIsWUFDckIsd0NBQThCLEdBRmhDLGFBTU0sRUFMSixVQUFxQixFQUNyQixVQUE4QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIGkwIGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaTAuQ29tcG9uZW50RmFjdG9yeTtcbiIsIjxkaXZcbiAgW25nQ2xhc3NdPVwiYmVtLmJsb2NrKHNpemUpXCJcbiAgW2NsYXNzLmhhc0ljb25dPVwiIXNlYXJjaEJ1dHRvblwiXG4gIFtjbGFzcy5oYXNCdXR0b25dPVwic2VhcmNoQnV0dG9uXCJcbiAgW2NsYXNzLmlzQ2xlYXJhYmxlXT1cImNsZWFyYWJsZVwiXG4gIFtjbGFzcy5pc1NlYXJjaGluZ109XCJzZWFyY2hpbmdcIlxuICBbY2xhc3MuaXNEaXNhYmxlZF09XCJkaXNhYmxlZFwiXG4+XG4gIDxkaXYgKm5nSWY9XCIhc2VhcmNoQnV0dG9uXCIgW2NsYXNzXT1cImJlbS5lbGVtZW50KCdpY29uJylcIj5cbiAgICA8YXVpLWljb24gaWNvbj1cInNlYXJjaF9zXCI+PC9hdWktaWNvbj5cbiAgPC9kaXY+XG4gIDxpbnB1dFxuICAgIGF1aS1pbnB1dFxuICAgIGF1dG9jb21wbGV0ZT1cIm9mZlwiXG4gICAgW25nTW9kZWxdPVwidmFsdWVcIlxuICAgIChuZ01vZGVsQ2hhbmdlKT1cImVtaXRDaGFuZ2UoJGV2ZW50KVwiXG4gICAgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcbiAgICAoa2V5dXAuZW50ZXIpPVwiZW1pdFNlYXJjaCgpXCJcbiAgICBbbmdDbGFzc109XCJiZW0uZWxlbWVudCgnaW5wdXQnKVwiXG4gICAgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcbiAgICBbc2l6ZV09XCJzaXplXCJcbiAgLz5cbiAgPGRpdiAqbmdJZj1cInNob3dTcGlubmVyXCIgW2NsYXNzXT1cImJlbS5lbGVtZW50KCdzcGlubmVyJylcIj5cbiAgICA8YXVpLWljb24gaWNvbj1cInNwaW5uZXJcIj48L2F1aS1pY29uPlxuICA8L2Rpdj5cbiAgPGRpdlxuICAgIFtoaWRkZW5dPVwiIXNob3dDbGVhclwiXG4gICAgW2NsYXNzXT1cImJlbS5lbGVtZW50KCdjbGVhcicpXCJcbiAgICAoY2xpY2spPVwiZW1pdENsZWFyKClcIlxuICA+XG4gICAgPGF1aS1pY29uIGljb249XCJjbG9zZV9zbWFsbFwiPjwvYXVpLWljb24+XG4gIDwvZGl2PlxuICA8ZGl2XG4gICAgKm5nSWY9XCJzZWFyY2hCdXR0b25cIlxuICAgIFtjbGFzc109XCJiZW0uZWxlbWVudCgnYnV0dG9uJylcIlxuICAgIChjbGljayk9XCJlbWl0U2VhcmNoKClcIlxuICA+XG4gICAgPGRpdiBbY2xhc3NdPVwiYmVtLmVsZW1lbnQoJ2J1dHRvbi1pY29uJylcIj5cbiAgICAgIDxhdWktaWNvbiBbaWNvbl09XCJzZWFyY2hpbmcgPyAnc3Bpbm5lcicgOiAnc2VhcmNoX3MnXCI+PC9hdWktaWNvbj5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","members":{"size":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"searchButton":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"clearable":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"searching":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"placeholder":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"keyword":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"keywordChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"search":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"clear":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"emitChange":[{"__symbolic":"method"}],"emitSearch":[{"__symbolic":"method"}],"emitClear":[{"__symbolic":"method"}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"isComponent":true,"selector":"aui-search","exportAs":null,"inputs":{"size":"size","searchButton":"searchButton","clearable":"clearable","searching":"searching","placeholder":"placeholder","disabled":"disabled","keyword":"keyword"},"outputs":{"keywordChange":"keywordChange","search":"search","clear":"clear"},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":[],"encapsulation":2,"styles":[],"animations":[]},"componentViewType":{"__symbol":3,"members":[]},"rendererType":{"__symbol":4,"members":[]},"componentFactory":{"__symbol":5,"members":[]}}}],"symbols":[{"__symbol":0,"name":"SearchComponent","filePath":"./search.component"},{"__symbol":1,"name":"Input","filePath":"@angular/core"},{"__symbol":2,"name":"Output","filePath":"@angular/core"},{"__symbol":3,"name":"View_SearchComponent_0","filePath":"./search.component.ngfactory"},{"__symbol":4,"name":"RenderType_SearchComponent","filePath":"./search.component.ngfactory"},{"__symbol":5,"name":"SearchComponentNgFactory","filePath":"./search.component.ngfactory"}]}
@@ -1,9 +0,0 @@
1
- /**
2
- * @fileoverview This file was generated by the Angular template compiler. Do not edit.
3
- *
4
- * @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
5
- * tslint:disable
6
- */
7
- var styles = [".aui-search{display:inline-block;width:100%;position:relative;color:rgb(var(--aui-color-n-4))}.aui-search.isDisabled{color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-search--large{font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-search--large aui-icon{font-size:var(--aui-icon-size-l)}.aui-search--large .aui-search__clear,.aui-search--large .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--large .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--large .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--large.isClearable .aui-search__input,.aui-search--large.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--large.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-l) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--large.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-l) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--large.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-l) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--large.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-l) * 2)}.aui-search--medium{font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m)}.aui-search--medium aui-icon{font-size:var(--aui-icon-size-m)}.aui-search--medium .aui-search__clear,.aui-search--medium .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--medium .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--medium .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--medium.isClearable .aui-search__input,.aui-search--medium.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--medium.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--medium.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--medium.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--medium.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-m) * 2)}.aui-search--small{font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m)}.aui-search--small aui-icon{font-size:var(--aui-icon-size-m)}.aui-search--small .aui-search__clear,.aui-search--small .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--small .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--small .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--small.isClearable .aui-search__input,.aui-search--small.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--small.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--small.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--small.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-m) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--small.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-m) * 2)}.aui-search--mini{font-size:var(--aui-font-size-s);line-height:var(--aui-line-height-s)}.aui-search--mini aui-icon{font-size:var(--aui-icon-size-s)}.aui-search--mini .aui-search__clear,.aui-search--mini .aui-search__spinner{right:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--mini .aui-search__icon{left:calc(var(--aui-inline-padding-xs) + 1px)}.aui-search--mini .aui-search__button-icon{padding:0 var(--aui-inline-padding-xs)}.aui-search--mini.isClearable .aui-search__input,.aui-search--mini.isSearching .aui-search__input{padding-right:var(--aui-inline-padding-xs)}.aui-search--mini.hasIcon .aui-search__input{padding-left:calc(var(--aui-icon-size-s) + var(--aui-inline-padding-xs) * 2 + 1px)}.aui-search--mini.hasButton .aui-search__input{padding-right:calc(var(--aui-icon-size-s) + var(--aui-inline-padding-xs) * 3 + 1px)}.aui-search--mini.hasButton .aui-search__clear{right:calc(var(--aui-icon-size-s) + var(--aui-inline-padding-xs) * 3 + 1px * 2)}.aui-search--mini.hasButton.isClearable .aui-search__input{padding-right:calc(var(--aui-icon-size-s) * 2)}.aui-search__icon{position:absolute;top:50%;transform:translateY(-50%);color:rgb(var(--aui-color-n-6))}.aui-search__button{position:absolute;top:0;right:1px;height:100%;display:flex;align-items:center}.aui-search:not(.isDisabled):not(.isSearching) .aui-search__button{cursor:pointer}.aui-search:not(.isDisabled):not(.isSearching) .aui-search__button:hover{color:rgb(var(--aui-color-primary))}.aui-search__button-icon{border-left:1px solid rgb(var(--aui-color-n-7))}.aui-search__clear,.aui-search__spinner{position:absolute;top:50%;transform:translateY(-50%)}.aui-search__clear .aui-icon{border-radius:50%;color:rgb(var(--aui-color-n-4));cursor:pointer;transition:all .3s ease}.aui-search__clear .aui-icon:hover{color:#fff;background-color:rgb(var(--aui-color-n-4))}"];
8
- export { styles as styles };
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLmNvbXBvbmVudC5zY3NzLm5nc3R5bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvaW5wdXQvc2VhcmNoL3NlYXJjaC5jb21wb25lbnQuc2Nzcy5uZ3N0eWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iXX0=