@alauda/ui 6.2.2-beta.9 → 6.2.3-beta.1

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 (1290) 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 +44 -0
  167. package/{esm2015/i18n/i18n.type.js → esm2020/i18n/i18n.type.mjs} +0 -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 +52 -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 +16 -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 +11582 -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 +27 -18
  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/_pattern.scss +3 -3
  442. package/theme/_var.scss +5 -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 +36 -2
  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.ngsummary.json +0 -1
  811. package/esm2015/i18n/language/en.ngsummary.json +0 -1
  812. package/esm2015/i18n/language/zh.ngsummary.json +0 -1
  813. package/esm2015/i18n/public-api.ngsummary.json +0 -1
  814. package/esm2015/icon/icon-register.service.js +0 -63
  815. package/esm2015/icon/icon-register.service.ngsummary.json +0 -1
  816. package/esm2015/icon/icon.component.js +0 -62
  817. package/esm2015/icon/icon.component.ngfactory.js +0 -25
  818. package/esm2015/icon/icon.component.ngsummary.json +0 -1
  819. package/esm2015/icon/icon.component.scss.ngstyle.js +0 -9
  820. package/esm2015/icon/icon.module.js +0 -16
  821. package/esm2015/icon/icon.module.ngfactory.js +0 -15
  822. package/esm2015/icon/icon.module.ngsummary.json +0 -1
  823. package/esm2015/icon/icons.ngsummary.json +0 -1
  824. package/esm2015/icon/public-api.ngsummary.json +0 -1
  825. package/esm2015/icon/utils.ngsummary.json +0 -1
  826. package/esm2015/inline-alert/helper-directives.js +0 -10
  827. package/esm2015/inline-alert/helper-directives.ngsummary.json +0 -1
  828. package/esm2015/inline-alert/inline-alert.component.js +0 -51
  829. package/esm2015/inline-alert/inline-alert.component.ngfactory.js +0 -29
  830. package/esm2015/inline-alert/inline-alert.component.ngsummary.json +0 -1
  831. package/esm2015/inline-alert/inline-alert.component.scss.ngstyle.js +0 -9
  832. package/esm2015/inline-alert/inline-alert.module.js +0 -15
  833. package/esm2015/inline-alert/inline-alert.module.ngfactory.js +0 -16
  834. package/esm2015/inline-alert/inline-alert.module.ngsummary.json +0 -1
  835. package/esm2015/inline-alert/inline-alert.types.ngsummary.json +0 -1
  836. package/esm2015/inline-alert/public-api.ngsummary.json +0 -1
  837. package/esm2015/input/autosize.directive.js +0 -61
  838. package/esm2015/input/autosize.directive.ngsummary.json +0 -1
  839. package/esm2015/input/helper-directives.js +0 -30
  840. package/esm2015/input/helper-directives.ngsummary.json +0 -1
  841. package/esm2015/input/input-group/input-group.component.js +0 -33
  842. package/esm2015/input/input-group/input-group.component.ngfactory.js +0 -22
  843. package/esm2015/input/input-group/input-group.component.ngsummary.json +0 -1
  844. package/esm2015/input/input-group/input-group.component.scss.ngstyle.js +0 -9
  845. package/esm2015/input/input.component.js +0 -69
  846. package/esm2015/input/input.component.ngfactory.js +0 -17
  847. package/esm2015/input/input.component.ngsummary.json +0 -1
  848. package/esm2015/input/input.component.scss.ngstyle.js +0 -9
  849. package/esm2015/input/input.module.js +0 -54
  850. package/esm2015/input/input.module.ngfactory.js +0 -20
  851. package/esm2015/input/input.module.ngsummary.json +0 -1
  852. package/esm2015/input/number-input/number-input.component.js +0 -83
  853. package/esm2015/input/number-input/number-input.component.ngfactory.js +0 -51
  854. package/esm2015/input/number-input/number-input.component.ngsummary.json +0 -1
  855. package/esm2015/input/number-input/number-input.component.scss.ngstyle.js +0 -9
  856. package/esm2015/input/public-api.js +0 -7
  857. package/esm2015/input/public-api.ngsummary.json +0 -1
  858. package/esm2015/input/search/search.component.js +0 -72
  859. package/esm2015/input/search/search.component.ngfactory.js +0 -51
  860. package/esm2015/input/search/search.component.ngsummary.json +0 -1
  861. package/esm2015/input/search/search.component.scss.ngstyle.js +0 -9
  862. package/esm2015/input/tags-input/tags-input.component.js +0 -252
  863. package/esm2015/input/tags-input/tags-input.component.ngfactory.js +0 -45
  864. package/esm2015/input/tags-input/tags-input.component.ngsummary.json +0 -1
  865. package/esm2015/input/tags-input/tags-input.component.scss.ngstyle.js +0 -9
  866. package/esm2015/input/tags-input/with-max-row-count.ngsummary.json +0 -1
  867. package/esm2015/input/utils/index.ngsummary.json +0 -1
  868. package/esm2015/message/base-message.js +0 -87
  869. package/esm2015/message/base-message.ngsummary.json +0 -1
  870. package/esm2015/message/message-animations.ngsummary.json +0 -1
  871. package/esm2015/message/message-wrapper.component.js +0 -20
  872. package/esm2015/message/message-wrapper.component.ngfactory.js +0 -17
  873. package/esm2015/message/message-wrapper.component.ngsummary.json +0 -1
  874. package/esm2015/message/message-wrapper.component.scss.ngstyle.js +0 -9
  875. package/esm2015/message/message.component.js +0 -77
  876. package/esm2015/message/message.component.ngfactory.js +0 -23
  877. package/esm2015/message/message.component.ngsummary.json +0 -1
  878. package/esm2015/message/message.component.scss.ngstyle.js +0 -9
  879. package/esm2015/message/message.config.ngsummary.json +0 -1
  880. package/esm2015/message/message.module.js +0 -18
  881. package/esm2015/message/message.module.ngfactory.js +0 -25
  882. package/esm2015/message/message.module.ngsummary.json +0 -1
  883. package/esm2015/message/message.service.js +0 -22
  884. package/esm2015/message/message.service.ngsummary.json +0 -1
  885. package/esm2015/message/public-api.ngsummary.json +0 -1
  886. package/esm2015/notification/notification-wrapper.component.js +0 -22
  887. package/esm2015/notification/notification-wrapper.component.ngfactory.js +0 -17
  888. package/esm2015/notification/notification-wrapper.component.ngsummary.json +0 -1
  889. package/esm2015/notification/notification-wrapper.component.scss.ngstyle.js +0 -9
  890. package/esm2015/notification/notification.component.js +0 -106
  891. package/esm2015/notification/notification.component.ngfactory.js +0 -42
  892. package/esm2015/notification/notification.component.ngsummary.json +0 -1
  893. package/esm2015/notification/notification.component.scss.ngstyle.js +0 -9
  894. package/esm2015/notification/notification.config.ngsummary.json +0 -1
  895. package/esm2015/notification/notification.module.js +0 -19
  896. package/esm2015/notification/notification.module.ngfactory.js +0 -25
  897. package/esm2015/notification/notification.module.ngsummary.json +0 -1
  898. package/esm2015/notification/notification.service.js +0 -22
  899. package/esm2015/notification/notification.service.ngsummary.json +0 -1
  900. package/esm2015/notification/public-api.ngsummary.json +0 -1
  901. package/esm2015/paginator/paginator-intl.js +0 -33
  902. package/esm2015/paginator/paginator-intl.ngsummary.json +0 -1
  903. package/esm2015/paginator/paginator.component.js +0 -118
  904. package/esm2015/paginator/paginator.component.ngfactory.js +0 -73
  905. package/esm2015/paginator/paginator.component.ngsummary.json +0 -1
  906. package/esm2015/paginator/paginator.component.scss.ngstyle.js +0 -9
  907. package/esm2015/paginator/paginator.module.js +0 -19
  908. package/esm2015/paginator/paginator.module.ngfactory.js +0 -32
  909. package/esm2015/paginator/paginator.module.ngsummary.json +0 -1
  910. package/esm2015/paginator/public-api.ngsummary.json +0 -1
  911. package/esm2015/public-api.ngsummary.json +0 -1
  912. package/esm2015/radio/base-radio.js +0 -69
  913. package/esm2015/radio/base-radio.ngsummary.json +0 -1
  914. package/esm2015/radio/public-api.ngsummary.json +0 -1
  915. package/esm2015/radio/radio-button/radio-button.component.js +0 -48
  916. package/esm2015/radio/radio-button/radio-button.component.ngfactory.js +0 -30
  917. package/esm2015/radio/radio-button/radio-button.component.ngsummary.json +0 -1
  918. package/esm2015/radio/radio-button/radio-button.component.scss.ngstyle.js +0 -9
  919. package/esm2015/radio/radio-group/radio-group.component.js +0 -75
  920. package/esm2015/radio/radio-group/radio-group.component.ngfactory.js +0 -18
  921. package/esm2015/radio/radio-group/radio-group.component.ngsummary.json +0 -1
  922. package/esm2015/radio/radio-group/radio-group.component.scss.ngstyle.js +0 -9
  923. package/esm2015/radio/radio.component.js +0 -31
  924. package/esm2015/radio/radio.component.ngfactory.js +0 -26
  925. package/esm2015/radio/radio.component.ngsummary.json +0 -1
  926. package/esm2015/radio/radio.component.scss.ngstyle.js +0 -9
  927. package/esm2015/radio/radio.module.js +0 -16
  928. package/esm2015/radio/radio.module.ngfactory.js +0 -16
  929. package/esm2015/radio/radio.module.ngsummary.json +0 -1
  930. package/esm2015/radio/radio.types.ngsummary.json +0 -1
  931. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.js +0 -81
  932. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.ngsummary.json +0 -1
  933. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.js +0 -108
  934. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.ngsummary.json +0 -1
  935. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.js +0 -20
  936. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.ngsummary.json +0 -1
  937. package/esm2015/scrolling/public-api.js +0 -6
  938. package/esm2015/scrolling/public-api.ngsummary.json +0 -1
  939. package/esm2015/scrolling/scrolling.module.js +0 -21
  940. package/esm2015/scrolling/scrolling.module.ngfactory.js +0 -11
  941. package/esm2015/scrolling/scrolling.module.ngsummary.json +0 -1
  942. package/esm2015/scrolling/virtual-for-of.directive.js +0 -30
  943. package/esm2015/scrolling/virtual-for-of.directive.ngsummary.json +0 -1
  944. package/esm2015/scrolling/virtual-scroll-viewport.component.js +0 -26
  945. package/esm2015/scrolling/virtual-scroll-viewport.component.ngfactory.js +0 -19
  946. package/esm2015/scrolling/virtual-scroll-viewport.component.ngsummary.json +0 -1
  947. package/esm2015/scrolling/virtual-scroll-viewport.component.scss.ngstyle.js +0 -9
  948. package/esm2015/select/base-select.js +0 -311
  949. package/esm2015/select/base-select.ngsummary.json +0 -1
  950. package/esm2015/select/helper-directives.js +0 -22
  951. package/esm2015/select/helper-directives.ngsummary.json +0 -1
  952. package/esm2015/select/multi-select/multi-select.component.js +0 -276
  953. package/esm2015/select/multi-select/multi-select.component.ngfactory.js +0 -76
  954. package/esm2015/select/multi-select/multi-select.component.ngsummary.json +0 -1
  955. package/esm2015/select/multi-select/multi-select.component.scss.ngstyle.js +0 -9
  956. package/esm2015/select/option/option.component.js +0 -107
  957. package/esm2015/select/option/option.component.ngfactory.js +0 -26
  958. package/esm2015/select/option/option.component.ngsummary.json +0 -1
  959. package/esm2015/select/option/option.component.scss.ngstyle.js +0 -9
  960. package/esm2015/select/option-group/option-group.component.js +0 -25
  961. package/esm2015/select/option-group/option-group.component.ngfactory.js +0 -18
  962. package/esm2015/select/option-group/option-group.component.ngsummary.json +0 -1
  963. package/esm2015/select/option-group/option-group.component.scss.ngstyle.js +0 -9
  964. package/esm2015/select/option-placeholder.component.js +0 -13
  965. package/esm2015/select/option-placeholder.component.ngfactory.js +0 -16
  966. package/esm2015/select/option-placeholder.component.ngsummary.json +0 -1
  967. package/esm2015/select/public-api.ngsummary.json +0 -1
  968. package/esm2015/select/select.component.js +0 -95
  969. package/esm2015/select/select.component.ngfactory.js +0 -63
  970. package/esm2015/select/select.component.ngsummary.json +0 -1
  971. package/esm2015/select/select.component.scss.ngstyle.js +0 -9
  972. package/esm2015/select/select.module.js +0 -49
  973. package/esm2015/select/select.module.ngfactory.js +0 -30
  974. package/esm2015/select/select.module.ngsummary.json +0 -1
  975. package/esm2015/select/select.types.ngsummary.json +0 -1
  976. package/esm2015/select/validators.js +0 -72
  977. package/esm2015/select/validators.ngsummary.json +0 -1
  978. package/esm2015/shared/click-outside.directive.js +0 -26
  979. package/esm2015/shared/click-outside.directive.ngsummary.json +0 -1
  980. package/esm2015/shared/shared.module.js +0 -11
  981. package/esm2015/shared/shared.module.ngfactory.js +0 -11
  982. package/esm2015/shared/shared.module.ngsummary.json +0 -1
  983. package/esm2015/sort/public-api.ngsummary.json +0 -1
  984. package/esm2015/sort/sort-errors.ngsummary.json +0 -1
  985. package/esm2015/sort/sort-header.component.js +0 -76
  986. package/esm2015/sort/sort-header.component.ngfactory.js +0 -22
  987. package/esm2015/sort/sort-header.component.ngsummary.json +0 -1
  988. package/esm2015/sort/sort-header.component.scss.ngstyle.js +0 -9
  989. package/esm2015/sort/sort.directive.js +0 -69
  990. package/esm2015/sort/sort.directive.ngsummary.json +0 -1
  991. package/esm2015/sort/sort.module.js +0 -14
  992. package/esm2015/sort/sort.module.ngfactory.js +0 -12
  993. package/esm2015/sort/sort.module.ngsummary.json +0 -1
  994. package/esm2015/sort/sort.types.ngsummary.json +0 -1
  995. package/esm2015/status-bar/public-api.ngsummary.json +0 -1
  996. package/esm2015/status-bar/status-bar.component.js +0 -28
  997. package/esm2015/status-bar/status-bar.component.ngfactory.js +0 -26
  998. package/esm2015/status-bar/status-bar.component.ngsummary.json +0 -1
  999. package/esm2015/status-bar/status-bar.component.scss.ngstyle.js +0 -9
  1000. package/esm2015/status-bar/status-bar.module.js +0 -14
  1001. package/esm2015/status-bar/status-bar.module.ngfactory.js +0 -20
  1002. package/esm2015/status-bar/status-bar.module.ngsummary.json +0 -1
  1003. package/esm2015/status-bar/status-bar.types.ngsummary.json +0 -1
  1004. package/esm2015/steps/public-api.ngsummary.json +0 -1
  1005. package/esm2015/steps/steps.component.js +0 -179
  1006. package/esm2015/steps/steps.component.ngfactory.js +0 -34
  1007. package/esm2015/steps/steps.component.ngsummary.json +0 -1
  1008. package/esm2015/steps/steps.component.scss.ngstyle.js +0 -9
  1009. package/esm2015/steps/steps.module.js +0 -14
  1010. package/esm2015/steps/steps.module.ngfactory.js +0 -16
  1011. package/esm2015/steps/steps.module.ngsummary.json +0 -1
  1012. package/esm2015/steps/types.ngsummary.json +0 -1
  1013. package/esm2015/switch/public-api.ngsummary.json +0 -1
  1014. package/esm2015/switch/switch.component.js +0 -47
  1015. package/esm2015/switch/switch.component.ngfactory.js +0 -25
  1016. package/esm2015/switch/switch.component.ngsummary.json +0 -1
  1017. package/esm2015/switch/switch.component.scss.ngstyle.js +0 -9
  1018. package/esm2015/switch/switch.module.js +0 -13
  1019. package/esm2015/switch/switch.module.ngfactory.js +0 -12
  1020. package/esm2015/switch/switch.module.ngsummary.json +0 -1
  1021. package/esm2015/table/public-api.js +0 -13
  1022. package/esm2015/table/public-api.ngsummary.json +0 -1
  1023. package/esm2015/table/table-cell-def.directive.js +0 -20
  1024. package/esm2015/table/table-cell-def.directive.ngsummary.json +0 -1
  1025. package/esm2015/table/table-cell.component.js +0 -82
  1026. package/esm2015/table/table-cell.component.ngfactory.js +0 -32
  1027. package/esm2015/table/table-cell.component.ngsummary.json +0 -1
  1028. package/esm2015/table/table-cell.directive.js +0 -26
  1029. package/esm2015/table/table-cell.directive.ngsummary.json +0 -1
  1030. package/esm2015/table/table-column-def.directive.js +0 -29
  1031. package/esm2015/table/table-column-def.directive.ngsummary.json +0 -1
  1032. package/esm2015/table/table-header-cell-def.directive.js +0 -20
  1033. package/esm2015/table/table-header-cell-def.directive.ngsummary.json +0 -1
  1034. package/esm2015/table/table-header-cell.directive.js +0 -26
  1035. package/esm2015/table/table-header-cell.directive.ngsummary.json +0 -1
  1036. package/esm2015/table/table-header-row-def.directive.js +0 -24
  1037. package/esm2015/table/table-header-row-def.directive.ngsummary.json +0 -1
  1038. package/esm2015/table/table-header-row.component.js +0 -20
  1039. package/esm2015/table/table-header-row.component.ngfactory.js +0 -17
  1040. package/esm2015/table/table-header-row.component.ngsummary.json +0 -1
  1041. package/esm2015/table/table-placeholder.directive.js +0 -30
  1042. package/esm2015/table/table-placeholder.directive.ngsummary.json +0 -1
  1043. package/esm2015/table/table-row-def.directive.js +0 -25
  1044. package/esm2015/table/table-row-def.directive.ngsummary.json +0 -1
  1045. package/esm2015/table/table-row.component.js +0 -37
  1046. package/esm2015/table/table-row.component.ngfactory.js +0 -17
  1047. package/esm2015/table/table-row.component.ngsummary.json +0 -1
  1048. package/esm2015/table/table-scroll.directive.js +0 -84
  1049. package/esm2015/table/table-scroll.directive.ngsummary.json +0 -1
  1050. package/esm2015/table/table-scroll.scss.ngstyle.js +0 -9
  1051. package/esm2015/table/table.component.js +0 -69
  1052. package/esm2015/table/table.component.ngfactory.js +0 -25
  1053. package/esm2015/table/table.component.ngsummary.json +0 -1
  1054. package/esm2015/table/table.component.scss.ngstyle.js +0 -9
  1055. package/esm2015/table/table.module.js +0 -61
  1056. package/esm2015/table/table.module.ngfactory.js +0 -20
  1057. package/esm2015/table/table.module.ngsummary.json +0 -1
  1058. package/esm2015/table-of-contents/public-api.ngsummary.json +0 -1
  1059. package/esm2015/table-of-contents/table-of-contents.module.js +0 -15
  1060. package/esm2015/table-of-contents/table-of-contents.module.ngfactory.js +0 -12
  1061. package/esm2015/table-of-contents/table-of-contents.module.ngsummary.json +0 -1
  1062. package/esm2015/table-of-contents/toc-container.directive.js +0 -109
  1063. package/esm2015/table-of-contents/toc-container.directive.ngsummary.json +0 -1
  1064. package/esm2015/table-of-contents/toc-content.directive.js +0 -32
  1065. package/esm2015/table-of-contents/toc-content.directive.ngsummary.json +0 -1
  1066. package/esm2015/table-of-contents/toc-link.directive.js +0 -43
  1067. package/esm2015/table-of-contents/toc-link.directive.ngsummary.json +0 -1
  1068. package/esm2015/tabs/public-api.js +0 -10
  1069. package/esm2015/tabs/public-api.ngsummary.json +0 -1
  1070. package/esm2015/tabs/tab-body.component.js +0 -35
  1071. package/esm2015/tabs/tab-body.component.ngfactory.js +0 -18
  1072. package/esm2015/tabs/tab-body.component.ngsummary.json +0 -1
  1073. package/esm2015/tabs/tab-context.service.js +0 -28
  1074. package/esm2015/tabs/tab-context.service.ngsummary.json +0 -1
  1075. package/esm2015/tabs/tab-directives.js +0 -142
  1076. package/esm2015/tabs/tab-directives.ngsummary.json +0 -1
  1077. package/esm2015/tabs/tab-group.component.js +0 -277
  1078. package/esm2015/tabs/tab-group.component.ngfactory.js +0 -56
  1079. package/esm2015/tabs/tab-group.component.ngsummary.json +0 -1
  1080. package/esm2015/tabs/tab-group.component.scss.ngstyle.js +0 -9
  1081. package/esm2015/tabs/tab-header-active-indicator.component.js +0 -59
  1082. package/esm2015/tabs/tab-header-active-indicator.component.ngfactory.js +0 -17
  1083. package/esm2015/tabs/tab-header-active-indicator.component.ngsummary.json +0 -1
  1084. package/esm2015/tabs/tab-header.component.js +0 -348
  1085. package/esm2015/tabs/tab-header.component.ngfactory.js +0 -44
  1086. package/esm2015/tabs/tab-header.component.ngsummary.json +0 -1
  1087. package/esm2015/tabs/tab-header.component.scss.ngstyle.js +0 -9
  1088. package/esm2015/tabs/tab.component.js +0 -82
  1089. package/esm2015/tabs/tab.component.ngfactory.js +0 -18
  1090. package/esm2015/tabs/tab.component.ngsummary.json +0 -1
  1091. package/esm2015/tabs/tabs.module.js +0 -53
  1092. package/esm2015/tabs/tabs.module.ngfactory.js +0 -22
  1093. package/esm2015/tabs/tabs.module.ngsummary.json +0 -1
  1094. package/esm2015/tabs/tabs.types.ngsummary.json +0 -1
  1095. package/esm2015/tag/check-tag/check-tag.component.js +0 -34
  1096. package/esm2015/tag/check-tag/check-tag.component.ngfactory.js +0 -27
  1097. package/esm2015/tag/check-tag/check-tag.component.ngsummary.json +0 -1
  1098. package/esm2015/tag/check-tag/check-tag.component.scss.ngstyle.js +0 -9
  1099. package/esm2015/tag/public-api.ngsummary.json +0 -1
  1100. package/esm2015/tag/tag.component.js +0 -57
  1101. package/esm2015/tag/tag.component.ngfactory.js +0 -26
  1102. package/esm2015/tag/tag.component.ngsummary.json +0 -1
  1103. package/esm2015/tag/tag.component.scss.ngstyle.js +0 -9
  1104. package/esm2015/tag/tag.module.js +0 -15
  1105. package/esm2015/tag/tag.module.ngfactory.js +0 -16
  1106. package/esm2015/tag/tag.module.ngsummary.json +0 -1
  1107. package/esm2015/tag/tag.types.ngsummary.json +0 -1
  1108. package/esm2015/theme/public-api.ngsummary.json +0 -1
  1109. package/esm2015/theme/theme.module.js +0 -13
  1110. package/esm2015/theme/theme.module.ngfactory.js +0 -12
  1111. package/esm2015/theme/theme.module.ngsummary.json +0 -1
  1112. package/esm2015/theme/theme.pipe.js +0 -61
  1113. package/esm2015/theme/theme.pipe.ngsummary.json +0 -1
  1114. package/esm2015/theme/theme.service.js +0 -52
  1115. package/esm2015/theme/theme.service.ngsummary.json +0 -1
  1116. package/esm2015/theme/theme.types.ngsummary.json +0 -1
  1117. package/esm2015/theme/utils.ngsummary.json +0 -1
  1118. package/esm2015/time-picker/component.js +0 -149
  1119. package/esm2015/time-picker/component.ngfactory.js +0 -82
  1120. package/esm2015/time-picker/component.ngsummary.json +0 -1
  1121. package/esm2015/time-picker/constant.js +0 -9
  1122. package/esm2015/time-picker/constant.ngsummary.json +0 -1
  1123. package/esm2015/time-picker/panel/panel.component.js +0 -211
  1124. package/esm2015/time-picker/panel/panel.component.ngfactory.js +0 -49
  1125. package/esm2015/time-picker/panel/panel.component.ngsummary.json +0 -1
  1126. package/esm2015/time-picker/panel/panel.style.scss.ngstyle.js +0 -9
  1127. package/esm2015/time-picker/public-api.ngsummary.json +0 -1
  1128. package/esm2015/time-picker/style.scss.ngstyle.js +0 -9
  1129. package/esm2015/time-picker/time-picker.module.js +0 -33
  1130. package/esm2015/time-picker/time-picker.module.ngfactory.js +0 -30
  1131. package/esm2015/time-picker/time-picker.module.ngsummary.json +0 -1
  1132. package/esm2015/time-picker/time-picker.type.js +0 -13
  1133. package/esm2015/time-picker/time-picker.type.ngsummary.json +0 -1
  1134. package/esm2015/tooltip/base-tooltip.js +0 -255
  1135. package/esm2015/tooltip/base-tooltip.ngsummary.json +0 -1
  1136. package/esm2015/tooltip/public-api.js +0 -8
  1137. package/esm2015/tooltip/public-api.ngsummary.json +0 -1
  1138. package/esm2015/tooltip/tooltip-active.directive.js +0 -44
  1139. package/esm2015/tooltip/tooltip-active.directive.ngsummary.json +0 -1
  1140. package/esm2015/tooltip/tooltip-copy.directive.js +0 -80
  1141. package/esm2015/tooltip/tooltip-copy.directive.ngsummary.json +0 -1
  1142. package/esm2015/tooltip/tooltip-intl.js +0 -25
  1143. package/esm2015/tooltip/tooltip-intl.ngsummary.json +0 -1
  1144. package/esm2015/tooltip/tooltip.component.js +0 -55
  1145. package/esm2015/tooltip/tooltip.component.ngfactory.js +0 -25
  1146. package/esm2015/tooltip/tooltip.component.ngsummary.json +0 -1
  1147. package/esm2015/tooltip/tooltip.component.scss.ngstyle.js +0 -9
  1148. package/esm2015/tooltip/tooltip.directive.js +0 -45
  1149. package/esm2015/tooltip/tooltip.directive.ngsummary.json +0 -1
  1150. package/esm2015/tooltip/tooltip.module.js +0 -25
  1151. package/esm2015/tooltip/tooltip.module.ngfactory.js +0 -19
  1152. package/esm2015/tooltip/tooltip.module.ngsummary.json +0 -1
  1153. package/esm2015/tooltip/tooltip.types.ngsummary.json +0 -1
  1154. package/esm2015/tooltip/utils/index.ngsummary.json +0 -1
  1155. package/esm2015/tree-select/public-api.js +0 -6
  1156. package/esm2015/tree-select/public-api.ngsummary.json +0 -1
  1157. package/esm2015/tree-select/tree-node/tree-node.component.js +0 -127
  1158. package/esm2015/tree-select/tree-node/tree-node.component.ngfactory.js +0 -32
  1159. package/esm2015/tree-select/tree-node/tree-node.component.ngsummary.json +0 -1
  1160. package/esm2015/tree-select/tree-node/tree-node.component.scss.ngstyle.js +0 -9
  1161. package/esm2015/tree-select/tree-node-placeholder.component.js +0 -13
  1162. package/esm2015/tree-select/tree-node-placeholder.component.ngfactory.js +0 -16
  1163. package/esm2015/tree-select/tree-node-placeholder.component.ngsummary.json +0 -1
  1164. package/esm2015/tree-select/tree-select.component.js +0 -204
  1165. package/esm2015/tree-select/tree-select.component.ngfactory.js +0 -56
  1166. package/esm2015/tree-select/tree-select.component.ngsummary.json +0 -1
  1167. package/esm2015/tree-select/tree-select.component.scss.ngstyle.js +0 -9
  1168. package/esm2015/tree-select/tree-select.module.js +0 -26
  1169. package/esm2015/tree-select/tree-select.module.ngfactory.js +0 -29
  1170. package/esm2015/tree-select/tree-select.module.ngsummary.json +0 -1
  1171. package/esm2015/tree-select/tree-select.types.ngsummary.json +0 -1
  1172. package/esm2015/types.ngsummary.json +0 -1
  1173. package/esm2015/utils/async.ngsummary.json +0 -1
  1174. package/esm2015/utils/bem.ngsummary.json +0 -1
  1175. package/esm2015/utils/coercion.js +0 -16
  1176. package/esm2015/utils/coercion.ngsummary.json +0 -1
  1177. package/esm2015/utils/fn.js +0 -8
  1178. package/esm2015/utils/fn.ngsummary.json +0 -1
  1179. package/esm2015/utils/index.ngsummary.json +0 -1
  1180. package/esm2015/utils/observe-dom.ngsummary.json +0 -1
  1181. package/esm2015/utils/scroll-into-view.ngsummary.json +0 -1
  1182. package/esm2015/utils/watch-content-exist.ngsummary.json +0 -1
  1183. package/fesm2015/alauda-ui.js +0 -10768
  1184. package/fesm2015/alauda-ui.js.map +0 -1
  1185. package/form/form-item/form-item.component.ngfactory.d.ts +0 -1
  1186. package/form/form-item/form-item.component.scss.ngstyle.d.ts +0 -1
  1187. package/form/form.module.ngfactory.d.ts +0 -3
  1188. package/i18n/i18n.module.ngfactory.d.ts +0 -3
  1189. package/icon/icon.component.ngfactory.d.ts +0 -1
  1190. package/icon/icon.component.scss.ngstyle.d.ts +0 -1
  1191. package/icon/icon.module.ngfactory.d.ts +0 -3
  1192. package/inline-alert/inline-alert.component.ngfactory.d.ts +0 -1
  1193. package/inline-alert/inline-alert.component.scss.ngstyle.d.ts +0 -1
  1194. package/inline-alert/inline-alert.module.ngfactory.d.ts +0 -3
  1195. package/input/input-group/input-group.component.ngfactory.d.ts +0 -1
  1196. package/input/input-group/input-group.component.scss.ngstyle.d.ts +0 -1
  1197. package/input/input.component.ngfactory.d.ts +0 -1
  1198. package/input/input.component.scss.ngstyle.d.ts +0 -1
  1199. package/input/input.module.ngfactory.d.ts +0 -3
  1200. package/input/number-input/number-input.component.ngfactory.d.ts +0 -1
  1201. package/input/number-input/number-input.component.scss.ngstyle.d.ts +0 -1
  1202. package/input/search/search.component.ngfactory.d.ts +0 -1
  1203. package/input/search/search.component.scss.ngstyle.d.ts +0 -1
  1204. package/input/tags-input/tags-input.component.ngfactory.d.ts +0 -1
  1205. package/input/tags-input/tags-input.component.scss.ngstyle.d.ts +0 -1
  1206. package/message/message-wrapper.component.ngfactory.d.ts +0 -1
  1207. package/message/message-wrapper.component.scss.ngstyle.d.ts +0 -1
  1208. package/message/message.component.ngfactory.d.ts +0 -1
  1209. package/message/message.component.scss.ngstyle.d.ts +0 -1
  1210. package/message/message.module.ngfactory.d.ts +0 -3
  1211. package/notification/notification-wrapper.component.ngfactory.d.ts +0 -1
  1212. package/notification/notification-wrapper.component.scss.ngstyle.d.ts +0 -1
  1213. package/notification/notification.component.ngfactory.d.ts +0 -1
  1214. package/notification/notification.component.scss.ngstyle.d.ts +0 -1
  1215. package/notification/notification.module.ngfactory.d.ts +0 -3
  1216. package/paginator/paginator.component.ngfactory.d.ts +0 -1
  1217. package/paginator/paginator.component.scss.ngstyle.d.ts +0 -1
  1218. package/paginator/paginator.module.ngfactory.d.ts +0 -3
  1219. package/radio/radio-button/radio-button.component.ngfactory.d.ts +0 -1
  1220. package/radio/radio-button/radio-button.component.scss.ngstyle.d.ts +0 -1
  1221. package/radio/radio-group/radio-group.component.ngfactory.d.ts +0 -1
  1222. package/radio/radio-group/radio-group.component.scss.ngstyle.d.ts +0 -1
  1223. package/radio/radio.component.ngfactory.d.ts +0 -1
  1224. package/radio/radio.component.scss.ngstyle.d.ts +0 -1
  1225. package/radio/radio.module.ngfactory.d.ts +0 -3
  1226. package/scrolling/scrolling.module.ngfactory.d.ts +0 -3
  1227. package/scrolling/virtual-scroll-viewport.component.ngfactory.d.ts +0 -1
  1228. package/scrolling/virtual-scroll-viewport.component.scss.ngstyle.d.ts +0 -1
  1229. package/select/multi-select/multi-select.component.ngfactory.d.ts +0 -1
  1230. package/select/multi-select/multi-select.component.scss.ngstyle.d.ts +0 -1
  1231. package/select/option/option.component.ngfactory.d.ts +0 -1
  1232. package/select/option/option.component.scss.ngstyle.d.ts +0 -1
  1233. package/select/option-group/option-group.component.ngfactory.d.ts +0 -1
  1234. package/select/option-group/option-group.component.scss.ngstyle.d.ts +0 -1
  1235. package/select/option-placeholder.component.ngfactory.d.ts +0 -1
  1236. package/select/select.component.ngfactory.d.ts +0 -1
  1237. package/select/select.component.scss.ngstyle.d.ts +0 -1
  1238. package/select/select.module.ngfactory.d.ts +0 -3
  1239. package/shared/shared.module.ngfactory.d.ts +0 -3
  1240. package/sort/sort-header.component.ngfactory.d.ts +0 -1
  1241. package/sort/sort-header.component.scss.ngstyle.d.ts +0 -1
  1242. package/sort/sort.module.ngfactory.d.ts +0 -3
  1243. package/status-bar/status-bar.component.ngfactory.d.ts +0 -1
  1244. package/status-bar/status-bar.component.scss.ngstyle.d.ts +0 -1
  1245. package/status-bar/status-bar.module.ngfactory.d.ts +0 -3
  1246. package/steps/steps.component.ngfactory.d.ts +0 -1
  1247. package/steps/steps.component.scss.ngstyle.d.ts +0 -1
  1248. package/steps/steps.module.ngfactory.d.ts +0 -3
  1249. package/switch/switch.component.ngfactory.d.ts +0 -1
  1250. package/switch/switch.component.scss.ngstyle.d.ts +0 -1
  1251. package/switch/switch.module.ngfactory.d.ts +0 -3
  1252. package/table/table-cell.component.ngfactory.d.ts +0 -1
  1253. package/table/table-header-row.component.ngfactory.d.ts +0 -1
  1254. package/table/table-row.component.ngfactory.d.ts +0 -1
  1255. package/table/table-scroll.scss.ngstyle.d.ts +0 -1
  1256. package/table/table.component.ngfactory.d.ts +0 -1
  1257. package/table/table.component.scss.ngstyle.d.ts +0 -1
  1258. package/table/table.module.ngfactory.d.ts +0 -3
  1259. package/table-of-contents/table-of-contents.module.ngfactory.d.ts +0 -3
  1260. package/tabs/tab-body.component.ngfactory.d.ts +0 -1
  1261. package/tabs/tab-directives.d.ts +0 -47
  1262. package/tabs/tab-group.component.ngfactory.d.ts +0 -1
  1263. package/tabs/tab-group.component.scss.ngstyle.d.ts +0 -1
  1264. package/tabs/tab-header-active-indicator.component.ngfactory.d.ts +0 -1
  1265. package/tabs/tab-header.component.ngfactory.d.ts +0 -1
  1266. package/tabs/tab-header.component.scss.ngstyle.d.ts +0 -1
  1267. package/tabs/tab.component.ngfactory.d.ts +0 -1
  1268. package/tabs/tabs.module.ngfactory.d.ts +0 -3
  1269. package/tag/check-tag/check-tag.component.ngfactory.d.ts +0 -1
  1270. package/tag/check-tag/check-tag.component.scss.ngstyle.d.ts +0 -1
  1271. package/tag/tag.component.ngfactory.d.ts +0 -1
  1272. package/tag/tag.component.scss.ngstyle.d.ts +0 -1
  1273. package/tag/tag.module.ngfactory.d.ts +0 -3
  1274. package/theme/theme.module.ngfactory.d.ts +0 -3
  1275. package/time-picker/component.ngfactory.d.ts +0 -1
  1276. package/time-picker/panel/panel.component.ngfactory.d.ts +0 -1
  1277. package/time-picker/panel/panel.style.scss.ngstyle.d.ts +0 -1
  1278. package/time-picker/style.scss.ngstyle.d.ts +0 -1
  1279. package/time-picker/time-picker.module.ngfactory.d.ts +0 -3
  1280. package/tooltip/tooltip.component.ngfactory.d.ts +0 -1
  1281. package/tooltip/tooltip.component.scss.ngstyle.d.ts +0 -1
  1282. package/tooltip/tooltip.module.ngfactory.d.ts +0 -3
  1283. package/tree-select/tree-node/tree-node.component.d.ts +0 -34
  1284. package/tree-select/tree-node/tree-node.component.ngfactory.d.ts +0 -1
  1285. package/tree-select/tree-node/tree-node.component.scss.ngstyle.d.ts +0 -1
  1286. package/tree-select/tree-node-placeholder.component.ngfactory.d.ts +0 -1
  1287. package/tree-select/tree-select.component.ngfactory.d.ts +0 -1
  1288. package/tree-select/tree-select.component.scss.ngstyle.d.ts +0 -1
  1289. package/tree-select/tree-select.module.ngfactory.d.ts +0 -3
  1290. package/tsconfig.lib.tsbuildinfo +0 -3
@@ -1,16 +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 "./steps.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 "../theme/theme.module";
13
- import * as i6 from "../icon/icon.module";
14
- var StepsModuleNgFactory = i0.ɵcmf(i1.StepsModule, [], 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(1073742336, i2.CommonModule, i2.CommonModule, []), i0.ɵmpd(1073742336, i5.ThemeModule, i5.ThemeModule, []), i0.ɵmpd(1073742336, i6.IconModule, i6.IconModule, []), i0.ɵmpd(1073742336, i1.StepsModule, i1.StepsModule, [])]); });
15
- export { StepsModuleNgFactory as StepsModuleNgFactory };
16
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RlcHMubW9kdWxlLm5nZmFjdG9yeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zdGVwcy9zdGVwcy5tb2R1bGUubmdmYWN0b3J5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCAqIGFzIGkxIGZyb20gJy4vc3RlcHMubW9kdWxlJztcbmltcG9ydCAqIGFzIGkyIGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgKiBhcyBpMyBmcm9tICcuLi9pY29uL2ljb24uY29tcG9uZW50JztcbmltcG9ydCAqIGFzIGk0IGZyb20gJy4vc3RlcHMuY29tcG9uZW50JztcbmltcG9ydCAqIGFzIGk1IGZyb20gJy4uL2ljb24vaWNvbi5tb2R1bGUnO1xuZXhwb3J0IGNvbnN0IFN0ZXBzTW9kdWxlTmdGYWN0b3J5OmkwLk5nTW9kdWxlRmFjdG9yeTxpMS5TdGVwc01vZHVsZT4gPSAobnVsbCBhcyBhbnkpO1xudmFyIF9kZWNsMF8wOmkyLk5nQ2xhc3MgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTppMi5OZ0NvbXBvbmVudE91dGxldCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yOmkyLk5nRm9yT2Y8YW55LGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzppMi5OZ0lmPGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNDppMi5OZ1RlbXBsYXRlT3V0bGV0ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzU6aTIuTmdTdHlsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF82OmkyLk5nU3dpdGNoID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzc6aTIuTmdTd2l0Y2hDYXNlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzg6aTIuTmdTd2l0Y2hEZWZhdWx0ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzk6aTIuTmdQbHVyYWwgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTA6aTIuTmdQbHVyYWxDYXNlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzExOmkzLkljb25Db21wb25lbnQgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTI6aTQuU3RlcHNDb21wb25lbnQgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTM6aTIuQXN5bmNQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzE0OmkyLlVwcGVyQ2FzZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTU6aTIuTG93ZXJDYXNlUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNjppMi5Kc29uUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNzppMi5TbGljZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTg6aTIuRGVjaW1hbFBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTk6aTIuUGVyY2VudFBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjA6aTIuVGl0bGVDYXNlUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yMTppMi5DdXJyZW5jeVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjI6aTIuRGF0ZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjM6aTIuSTE4blBsdXJhbFBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjQ6aTIuSTE4blNlbGVjdFBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjU6aTIuS2V5VmFsdWVQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI2OmkyLkNvbW1vbk1vZHVsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yNzppNS5JY29uTW9kdWxlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI4OmkwLlRlbXBsYXRlUmVmPGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjk6aTAuRWxlbWVudFJlZjxhbnk+ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG5mdW5jdGlvbiBfVmlld19TdGVwc0NvbXBvbmVudF9Ib3N0XzFfMCgpOnZvaWQge1xuICB2YXIgX2FueTphbnkgPSAobnVsbCBhcyBhbnkpO1xufVxuZnVuY3Rpb24gX1ZpZXdfU3RlcHNDb21wb25lbnRfMV8wKCk6dm9pZCB7XG4gIHZhciBfYW55OmFueSA9IChudWxsIGFzIGFueSk7XG4gIGNvbnN0IGN1cnJWYWxfMDphbnkgPSBpMC7JtWlubGluZUludGVycG9sYXRlKDIsJ2F1aS1zdGVwcyBhdWktc3RlcHMtLScsKF9kZWNsMF8xMi5vcmllbnRhdGlvbiB8fCAnaG9yaXpvbnRhbCcpLFxuICAgICAgJyBhdWktc3RlcHMtLScsKF9kZWNsMF8xMi50eXBlIHx8ICdzdGVwJyksJycpO1xuICBjdXJyVmFsXzA7XG4gIGNvbnN0IGN1cnJWYWxfMTphbnkgPSBfZGVjbDBfMTIuc3RlcHM7XG4gIGN1cnJWYWxfMTtcbn1cbiJdfQ==
@@ -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":[]}}],"modules":[{"reference":{"__symbol":4,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":10,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":9,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]}],"exportedDirectives":[{"reference":{"__symbol":11,"members":[]}}],"exportedPipes":[]}}],"symbols":[{"__symbol":0,"name":"StepsModule","filePath":"./steps.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":"ThemeModule","filePath":"../theme/theme.module"},{"__symbol":11,"name":"StepsComponent","filePath":"./steps.component"}]}
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"interface"}},{"symbol":{"__symbol":1,"members":[]},"metadata":{"__symbolic":"interface"}},{"symbol":{"__symbol":2,"members":[]},"metadata":{"__symbolic":"interface"}},{"symbol":{"__symbol":3,"members":[]},"metadata":{"__symbolic":"interface"}}],"symbols":[{"__symbol":0,"name":"StepState","filePath":"./types"},{"__symbol":1,"name":"StepItem","filePath":"./types"},{"__symbol":2,"name":"StepsOrientation","filePath":"./types"},{"__symbol":3,"name":"StepsType","filePath":"./types"}]}
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbol":1,"members":[]}},{"symbol":{"__symbol":2,"members":[]},"metadata":{"__symbol":3,"members":[]}}],"symbols":[{"__symbol":0,"name":"SwitchComponent","filePath":"./public-api"},{"__symbol":1,"name":"SwitchComponent","filePath":"./switch.component"},{"__symbol":2,"name":"SwitchModule","filePath":"./public-api"},{"__symbol":3,"name":"SwitchModule","filePath":"./switch.module"}]}
@@ -1,47 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input, ViewEncapsulation, forwardRef, } from '@angular/core';
2
- import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
- import { CommonFormControl } from '../form/public-api';
4
- import { buildBem } from '../utils';
5
- const prefix = 'aui-switch';
6
- export class SwitchComponent extends CommonFormControl {
7
- constructor() {
8
- super(...arguments);
9
- this.bem = buildBem(prefix);
10
- this.loading = false;
11
- }
12
- writeValue(value) {
13
- this.value$$.next(value);
14
- }
15
- onSwitch() {
16
- if (this.disabled) {
17
- return;
18
- }
19
- this.emitValueChange(!this.snapshot.value);
20
- }
21
- onBlur() {
22
- if (this.onTouched) {
23
- this.onTouched();
24
- }
25
- }
26
- }
27
- SwitchComponent.decorators = [
28
- { type: Component, args: [{
29
- selector: 'aui-switch',
30
- template: "<div\n class=\"aui-switch\"\n [class.isLoading]=\"loading\"\n [class.isDisabled]=\"disabled\"\n [class.isChecked]=\"value$ | async\"\n (click)=\"onSwitch()\"\n>\n <input\n #input\n [ngClass]=\"bem.element('input')\"\n type=\"checkbox\"\n [disabled]=\"disabled\"\n [checked]=\"value$ | async\"\n (blur)=\"onBlur()\"\n />\n <span [ngClass]=\"bem.element('bar')\">\n <i [ngClass]=\"bem.element('dot')\"></i>\n </span>\n</div>\n",
31
- encapsulation: ViewEncapsulation.None,
32
- changeDetection: ChangeDetectionStrategy.OnPush,
33
- preserveWhitespaces: false,
34
- providers: [
35
- {
36
- provide: NG_VALUE_ACCESSOR,
37
- useExisting: forwardRef(() => SwitchComponent),
38
- multi: true,
39
- },
40
- ],
41
- styles: [".aui-switch{display:inline-flex;position:relative;vertical-align:text-bottom;color:rgb(var(--aui-color-n-4));cursor:pointer}.aui-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.aui-switch__input:focus+.aui-switch__bar{box-shadow:0 0 0 2px rgba(var(--aui-color-primary),.16)}.aui-switch__bar{display:inline-block;width:30px;height:16px;border-radius:8px;background-color:currentColor;transition:background-color .3s;position:relative;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aui-switch__dot{background-color:#fff;border-radius:50%;width:12px;height:12px;position:absolute;top:2px;left:2px;transition:left .3s}.aui-switch.isDisabled{color:rgb(var(--aui-color-n-7));cursor:not-allowed}@media (prefers-color-scheme:dark){html[aui-theme-mode=system] .aui-switch.isDisabled .aui-switch__dot{background-color:rgb(var(--aui-color-n-4))}}html[aui-theme-mode=dark] .aui-switch.isDisabled .aui-switch__dot{background-color:rgb(var(--aui-color-n-4))}.aui-switch.isChecked{color:rgb(var(--aui-color-primary))}.aui-switch.isChecked.isDisabled{color:rgb(var(--aui-color-p-4))}.aui-switch.isChecked .aui-switch__dot{left:16px}.aui-switch.isLoading .aui-switch__dot:after{content:\"\";position:absolute;top:2px;bottom:2px;left:2px;right:2px;border:1px solid;border-top:1px solid transparent;border-radius:50%;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}"]
42
- },] }
43
- ];
44
- SwitchComponent.propDecorators = {
45
- loading: [{ type: Input }]
46
- };
47
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dpdGNoLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zd2l0Y2gvc3dpdGNoLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxLQUFLLEVBQ0wsaUJBQWlCLEVBQ2pCLFVBQVUsR0FDWCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUVuRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUN2RCxPQUFPLEVBQU8sUUFBUSxFQUFFLE1BQU0sVUFBVSxDQUFDO0FBRXpDLE1BQU0sTUFBTSxHQUFHLFlBQVksQ0FBQztBQWlCNUIsTUFBTSxPQUFPLGVBQWdCLFNBQVEsaUJBQTBCO0lBZi9EOztRQWdCRSxRQUFHLEdBQVEsUUFBUSxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBRzVCLFlBQU8sR0FBRyxLQUFLLENBQUM7SUFrQmxCLENBQUM7SUFoQkMsVUFBVSxDQUFDLEtBQWM7UUFDdkIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDM0IsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDakIsT0FBTztTQUNSO1FBQ0QsSUFBSSxDQUFDLGVBQWUsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDN0MsQ0FBQztJQUVELE1BQU07UUFDSixJQUFJLElBQUksQ0FBQyxTQUFTLEVBQUU7WUFDbEIsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDO1NBQ2xCO0lBQ0gsQ0FBQzs7O1lBcENGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsWUFBWTtnQkFDdEIsa2RBQXNDO2dCQUV0QyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtnQkFDckMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07Z0JBQy9DLG1CQUFtQixFQUFFLEtBQUs7Z0JBQzFCLFNBQVMsRUFBRTtvQkFDVDt3QkFDRSxPQUFPLEVBQUUsaUJBQWlCO3dCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLGVBQWUsQ0FBQzt3QkFDOUMsS0FBSyxFQUFFLElBQUk7cUJBQ1o7aUJBQ0Y7O2FBQ0Y7OztzQkFJRSxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgSW5wdXQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxuICBmb3J3YXJkUmVmLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5pbXBvcnQgeyBDb21tb25Gb3JtQ29udHJvbCB9IGZyb20gJy4uL2Zvcm0vcHVibGljLWFwaSc7XG5pbXBvcnQgeyBCZW0sIGJ1aWxkQmVtIH0gZnJvbSAnLi4vdXRpbHMnO1xuXG5jb25zdCBwcmVmaXggPSAnYXVpLXN3aXRjaCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F1aS1zd2l0Y2gnLFxuICB0ZW1wbGF0ZVVybDogJy4vc3dpdGNoLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vc3dpdGNoLmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcmVzZXJ2ZVdoaXRlc3BhY2VzOiBmYWxzZSxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgcHJvdmlkZTogTkdfVkFMVUVfQUNDRVNTT1IsXG4gICAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBTd2l0Y2hDb21wb25lbnQpLFxuICAgICAgbXVsdGk6IHRydWUsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgU3dpdGNoQ29tcG9uZW50IGV4dGVuZHMgQ29tbW9uRm9ybUNvbnRyb2w8Ym9vbGVhbj4ge1xuICBiZW06IEJlbSA9IGJ1aWxkQmVtKHByZWZpeCk7XG5cbiAgQElucHV0KClcbiAgbG9hZGluZyA9IGZhbHNlO1xuXG4gIHdyaXRlVmFsdWUodmFsdWU6IGJvb2xlYW4pIHtcbiAgICB0aGlzLnZhbHVlJCQubmV4dCh2YWx1ZSk7XG4gIH1cblxuICBvblN3aXRjaCgpIHtcbiAgICBpZiAodGhpcy5kaXNhYmxlZCkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cbiAgICB0aGlzLmVtaXRWYWx1ZUNoYW5nZSghdGhpcy5zbmFwc2hvdC52YWx1ZSk7XG4gIH1cblxuICBvbkJsdXIoKSB7XG4gICAgaWYgKHRoaXMub25Ub3VjaGVkKSB7XG4gICAgICB0aGlzLm9uVG91Y2hlZCgpO1xuICAgIH1cbiAgfVxufVxuIl19
@@ -1,25 +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 "./switch.component.scss.ngstyle";
8
- import * as i1 from "@angular/core";
9
- import * as i2 from "@angular/common";
10
- import * as i3 from "@angular/forms";
11
- import * as i4 from "./switch.component";
12
- var styles_SwitchComponent = [i0.styles];
13
- var RenderType_SwitchComponent = i1.ɵcrt({ encapsulation: 2, styles: styles_SwitchComponent, data: {} });
14
- export { RenderType_SwitchComponent as RenderType_SwitchComponent };
15
- export function View_SwitchComponent_0(_l) { return i1.ɵvid(2, [(_l()(), i1.ɵeld(0, 0, null, null, 8, "div", [["class", "aui-switch"]], [[2, "isLoading", null], [2, "isDisabled", null], [2, "isChecked", null]], [[null, "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("click" === en)) {
16
- var pd_0 = (_co.onSwitch() !== false);
17
- ad = (pd_0 && ad);
18
- } return ad; }, null, null)), i1.ɵpid(131072, i2.AsyncPipe, [i1.ChangeDetectorRef]), (_l()(), i1.ɵeld(2, 0, [["input", 1]], null, 2, "input", [["type", "checkbox"]], [[8, "disabled", 0], [8, "checked", 0]], [[null, "blur"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("blur" === en)) {
19
- var pd_0 = (_co.onBlur() !== false);
20
- ad = (pd_0 && ad);
21
- } return ad; }, null, null)), i1.ɵdid(3, 278528, null, 0, i2.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null), i1.ɵpid(131072, i2.AsyncPipe, [i1.ChangeDetectorRef]), (_l()(), i1.ɵeld(5, 0, null, null, 3, "span", [], null, null, null, null, null)), i1.ɵdid(6, 278528, null, 0, i2.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null), (_l()(), i1.ɵeld(7, 0, null, null, 1, "i", [], null, null, null, null, null)), i1.ɵdid(8, 278528, null, 0, i2.NgClass, [i1.IterableDiffers, i1.KeyValueDiffers, i1.ElementRef, i1.Renderer2], { ngClass: [0, "ngClass"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_5 = _co.bem.element("input"); _ck(_v, 3, 0, currVal_5); var currVal_6 = _co.bem.element("bar"); _ck(_v, 6, 0, currVal_6); var currVal_7 = _co.bem.element("dot"); _ck(_v, 8, 0, currVal_7); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.loading; var currVal_1 = _co.disabled; var currVal_2 = i1.ɵunv(_v, 0, 2, i1.ɵnov(_v, 1).transform(_co.value$)); _ck(_v, 0, 0, currVal_0, currVal_1, currVal_2); var currVal_3 = _co.disabled; var currVal_4 = i1.ɵunv(_v, 2, 1, i1.ɵnov(_v, 4).transform(_co.value$)); _ck(_v, 2, 0, currVal_3, currVal_4); }); }
22
- export function View_SwitchComponent_Host_0(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, "aui-switch", [], null, null, null, View_SwitchComponent_0, RenderType_SwitchComponent)), i1.ɵprd(5120, null, i3.NG_VALUE_ACCESSOR, function (p0_0) { return [p0_0]; }, [i4.SwitchComponent]), i1.ɵdid(2, 49152, null, 0, i4.SwitchComponent, [i1.ChangeDetectorRef], null, null)], null, null); }
23
- var SwitchComponentNgFactory = i1.ɵccf("aui-switch", i4.SwitchComponent, View_SwitchComponent_Host_0, { disabled: "disabled", readonly: "readonly", propValue: "value", loading: "loading" }, { valueChange: "valueChange" }, []);
24
- export { SwitchComponentNgFactory as SwitchComponentNgFactory };
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dpdGNoLmNvbXBvbmVudC5uZ2ZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvc3dpdGNoL3N3aXRjaC5jb21wb25lbnQubmdmYWN0b3J5LnRzIiwiLi4vLi4vLi4vc3JjL3N3aXRjaC9zd2l0Y2guY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7aUVDQUEsNE5Ba0JNLFlBYko7O3dCQUFvQjtNQUx0Qix3QkFrQk0sSUFkSixtREFBa0MsS0FHbEMsa01BT0UsWUFEQTs7d0JBQWlCO01BTm5CLDRLQU9FLEdBRkEsbURBQTBCLEtBRzVCLGlPQUVPLElBREwsOE5BQXNDLGlEQVB0Qyx1Q0FBZ0MsR0FGbEMsWUFPRSxFQUxBLFNBQWdDLEdBTTVCLHFDQUE4QixHQUFwQyxZQUVPLEVBRkQsU0FBOEIsR0FDL0IscUNBQThCLEdBQWpDLFlBQXNDLEVBQW5DLFNBQThCLG1EQWRuQyxtQkFBMkIsVUFDM0IsbUJBQTZCLFdBQzdCLDhEQUFrQyxXQUpwQyxZQWtCTSxFQWhCSixTQUEyQixFQUMzQixTQUE2QixFQUM3QixTQUFrQyxHQU9oQyxtQkFBcUIsV0FDckIsOERBQTBCLFdBTDVCLFlBT0UsRUFIQSxTQUFxQixFQUNyQixTQUEwQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIGkwIGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaTAuQ29tcG9uZW50RmFjdG9yeTtcbiIsIjxkaXZcbiAgY2xhc3M9XCJhdWktc3dpdGNoXCJcbiAgW2NsYXNzLmlzTG9hZGluZ109XCJsb2FkaW5nXCJcbiAgW2NsYXNzLmlzRGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICBbY2xhc3MuaXNDaGVja2VkXT1cInZhbHVlJCB8IGFzeW5jXCJcbiAgKGNsaWNrKT1cIm9uU3dpdGNoKClcIlxuPlxuICA8aW5wdXRcbiAgICAjaW5wdXRcbiAgICBbbmdDbGFzc109XCJiZW0uZWxlbWVudCgnaW5wdXQnKVwiXG4gICAgdHlwZT1cImNoZWNrYm94XCJcbiAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICAgIFtjaGVja2VkXT1cInZhbHVlJCB8IGFzeW5jXCJcbiAgICAoYmx1cik9XCJvbkJsdXIoKVwiXG4gIC8+XG4gIDxzcGFuIFtuZ0NsYXNzXT1cImJlbS5lbGVtZW50KCdiYXInKVwiPlxuICAgIDxpIFtuZ0NsYXNzXT1cImJlbS5lbGVtZW50KCdkb3QnKVwiPjwvaT5cbiAgPC9zcGFuPlxuPC9kaXY+XG4iXX0=
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"loading":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"writeValue":[{"__symbolic":"method"}],"onSwitch":[{"__symbolic":"method"}],"onBlur":[{"__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":3,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":true,"selector":"aui-switch","exportAs":null,"inputs":{"disabled":"disabled","readonly":"readonly","propValue":"value","loading":"loading"},"outputs":{"valueChange":"valueChange"},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[{"token":{"identifier":{"reference":{"__symbol":4,"members":[]}}},"useClass":null,"useFactory":null,"useExisting":{"identifier":{"reference":{"__symbol":0,"members":[]}}},"multi":true}],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":[],"encapsulation":2,"styles":[],"animations":[]},"componentViewType":{"__symbol":5,"members":[]},"rendererType":{"__symbol":6,"members":[]},"componentFactory":{"__symbol":7,"members":[]}}}],"symbols":[{"__symbol":0,"name":"SwitchComponent","filePath":"./switch.component"},{"__symbol":1,"name":"CommonFormControl","filePath":"../form/public-api"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"ChangeDetectorRef","filePath":"@angular/core"},{"__symbol":4,"name":"NG_VALUE_ACCESSOR","filePath":"@angular/forms"},{"__symbol":5,"name":"View_SwitchComponent_0","filePath":"./switch.component.ngfactory"},{"__symbol":6,"name":"RenderType_SwitchComponent","filePath":"./switch.component.ngfactory"},{"__symbol":7,"name":"SwitchComponentNgFactory","filePath":"./switch.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-switch{display:inline-flex;position:relative;vertical-align:text-bottom;color:rgb(var(--aui-color-n-4));cursor:pointer}.aui-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.aui-switch__input:focus+.aui-switch__bar{box-shadow:0 0 0 2px rgba(var(--aui-color-primary),.16)}.aui-switch__bar{display:inline-block;width:30px;height:16px;border-radius:8px;background-color:currentColor;transition:background-color .3s;position:relative;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.aui-switch__dot{background-color:#fff;border-radius:50%;width:12px;height:12px;position:absolute;top:2px;left:2px;transition:left .3s}.aui-switch.isDisabled{color:rgb(var(--aui-color-n-7));cursor:not-allowed}@media (prefers-color-scheme:dark){html[aui-theme-mode=system] .aui-switch.isDisabled .aui-switch__dot{background-color:rgb(var(--aui-color-n-4))}}html[aui-theme-mode=dark] .aui-switch.isDisabled .aui-switch__dot{background-color:rgb(var(--aui-color-n-4))}.aui-switch.isChecked{color:rgb(var(--aui-color-primary))}.aui-switch.isChecked.isDisabled{color:rgb(var(--aui-color-p-4))}.aui-switch.isChecked .aui-switch__dot{left:16px}.aui-switch.isLoading .aui-switch__dot:after{content:\"\";position:absolute;top:2px;bottom:2px;left:2px;right:2px;border:1px solid;border-top:1px solid transparent;border-radius:50%;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}"];
8
- export { styles as styles };
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dpdGNoLmNvbXBvbmVudC5zY3NzLm5nc3R5bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvc3dpdGNoL3N3aXRjaC5jb21wb25lbnQuc2Nzcy5uZ3N0eWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iXX0=
@@ -1,13 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { NgModule } from '@angular/core';
3
- import { SwitchComponent } from './switch.component';
4
- export class SwitchModule {
5
- }
6
- SwitchModule.decorators = [
7
- { type: NgModule, args: [{
8
- imports: [CommonModule],
9
- declarations: [SwitchComponent],
10
- exports: [SwitchComponent],
11
- },] }
12
- ];
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dpdGNoLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zd2l0Y2gvc3dpdGNoLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV6QyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFPckQsTUFBTSxPQUFPLFlBQVk7OztZQUx4QixRQUFRLFNBQUM7Z0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO2dCQUN2QixZQUFZLEVBQUUsQ0FBQyxlQUFlLENBQUM7Z0JBQy9CLE9BQU8sRUFBRSxDQUFDLGVBQWUsQ0FBQzthQUMzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBTd2l0Y2hDb21wb25lbnQgfSBmcm9tICcuL3N3aXRjaC5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgZGVjbGFyYXRpb25zOiBbU3dpdGNoQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW1N3aXRjaENvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIFN3aXRjaE1vZHVsZSB7fVxuIl19
@@ -1,12 +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 "./switch.module";
9
- import * as i2 from "@angular/common";
10
- var SwitchModuleNgFactory = i0.ɵcmf(i1.SwitchModule, [], 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(1073742336, i2.CommonModule, i2.CommonModule, []), i0.ɵmpd(1073742336, i1.SwitchModule, i1.SwitchModule, [])]); });
11
- export { SwitchModuleNgFactory as SwitchModuleNgFactory };
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3dpdGNoLm1vZHVsZS5uZ2ZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvc3dpdGNoL3N3aXRjaC5tb2R1bGUubmdmYWN0b3J5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCAqIGFzIGkxIGZyb20gJy4vc3dpdGNoLm1vZHVsZSc7XG5pbXBvcnQgKiBhcyBpMiBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0ICogYXMgaTMgZnJvbSAnLi9zd2l0Y2guY29tcG9uZW50JztcbmV4cG9ydCBjb25zdCBTd2l0Y2hNb2R1bGVOZ0ZhY3Rvcnk6aTAuTmdNb2R1bGVGYWN0b3J5PGkxLlN3aXRjaE1vZHVsZT4gPSAobnVsbCBhcyBhbnkpO1xudmFyIF9kZWNsMF8wOmkyLk5nQ2xhc3MgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTppMi5OZ0NvbXBvbmVudE91dGxldCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yOmkyLk5nRm9yT2Y8YW55LGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzppMi5OZ0lmPGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNDppMi5OZ1RlbXBsYXRlT3V0bGV0ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzU6aTIuTmdTdHlsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF82OmkyLk5nU3dpdGNoID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzc6aTIuTmdTd2l0Y2hDYXNlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzg6aTIuTmdTd2l0Y2hEZWZhdWx0ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzk6aTIuTmdQbHVyYWwgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTA6aTIuTmdQbHVyYWxDYXNlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzExOmkzLlN3aXRjaENvbXBvbmVudCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xMjppMi5Bc3luY1BpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTM6aTIuVXBwZXJDYXNlUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNDppMi5Mb3dlckNhc2VQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzE1OmkyLkpzb25QaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzE2OmkyLlNsaWNlUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNzppMi5EZWNpbWFsUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xODppMi5QZXJjZW50UGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xOTppMi5UaXRsZUNhc2VQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzIwOmkyLkN1cnJlbmN5UGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yMTppMi5EYXRlUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yMjppMi5JMThuUGx1cmFsUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yMzppMi5JMThuU2VsZWN0UGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yNDppMi5LZXlWYWx1ZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjU6aTIuQ29tbW9uTW9kdWxlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI2OmkwLlRlbXBsYXRlUmVmPGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjc6aTAuRWxlbWVudFJlZjxhbnk+ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG5mdW5jdGlvbiBfVmlld19Td2l0Y2hDb21wb25lbnRfSG9zdF8xXzAoKTp2b2lkIHtcbiAgdmFyIF9hbnk6YW55ID0gKG51bGwgYXMgYW55KTtcbn1cbmZ1bmN0aW9uIF9WaWV3X1N3aXRjaENvbXBvbmVudF8xXzAoKTp2b2lkIHtcbiAgdmFyIF9hbnk6YW55ID0gKG51bGwgYXMgYW55KTtcbiAgY29uc3QgY3VyclZhbF8wOmFueSA9IF9kZWNsMF8xMS5sb2FkaW5nO1xuICBjdXJyVmFsXzA7XG4gIGNvbnN0IGN1cnJWYWxfMTphbnkgPSBfZGVjbDBfMTEuZGlzYWJsZWQ7XG4gIGN1cnJWYWxfMTtcbiAgY29uc3QgY3VyclZhbF8yOmFueSA9IF9hbnkudHJhbnNmb3JtKF9kZWNsMF8xMS52YWx1ZSQpO1xuICBjdXJyVmFsXzI7XG4gIGNvbnN0IGN1cnJWYWxfMzphbnkgPSBfZGVjbDBfMTEuYmVtLmVsZW1lbnQoJ2lucHV0Jyk7XG4gIGN1cnJWYWxfMztcbiAgY29uc3QgY3VyclZhbF80OmFueSA9IF9kZWNsMF8xMS5kaXNhYmxlZDtcbiAgY3VyclZhbF80O1xuICBjb25zdCBjdXJyVmFsXzU6YW55ID0gX2FueS50cmFuc2Zvcm0oX2RlY2wwXzExLnZhbHVlJCk7XG4gIGN1cnJWYWxfNTtcbiAgY29uc3QgY3VyclZhbF82OmFueSA9IF9kZWNsMF8xMS5iZW0uZWxlbWVudCgnYmFyJyk7XG4gIGN1cnJWYWxfNjtcbiAgY29uc3QgY3VyclZhbF83OmFueSA9IF9kZWNsMF8xMS5iZW0uZWxlbWVudCgnZG90Jyk7XG4gIGN1cnJWYWxfNztcbiAgY29uc3QgcGRfODphbnkgPSAoKDxhbnk+X2RlY2wwXzExLm9uU3dpdGNoKCkpICE9PSBmYWxzZSk7XG4gIGNvbnN0IHBkXzk6YW55ID0gKCg8YW55Pl9kZWNsMF8xMS5vbkJsdXIoKSkgIT09IGZhbHNlKTtcbn1cbiJdfQ==
@@ -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":[]}}],"modules":[{"reference":{"__symbol":4,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]}],"exportedDirectives":[{"reference":{"__symbol":5,"members":[]}}],"exportedPipes":[]}}],"symbols":[{"__symbol":0,"name":"SwitchModule","filePath":"./switch.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":"SwitchComponent","filePath":"./switch.component"}]}
@@ -1,13 +0,0 @@
1
- export * from './table.module';
2
- export * from './table.component';
3
- export * from './table-row.component';
4
- export * from './table-header-row.component';
5
- export * from './table-cell.directive';
6
- export * from './table-header-cell.directive';
7
- export * from './table-row-def.directive';
8
- export * from './table-header-row-def.directive';
9
- export * from './table-cell-def.directive';
10
- export * from './table-header-cell-def.directive';
11
- export * from './table-column-def.directive';
12
- export * from './table-scroll.directive';
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJsZS9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi90YWJsZS5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi90YWJsZS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90YWJsZS1yb3cuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUtaGVhZGVyLXJvdy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90YWJsZS1jZWxsLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL3RhYmxlLWhlYWRlci1jZWxsLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL3RhYmxlLXJvdy1kZWYuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUtaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUtY2VsbC1kZWYuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUtaGVhZGVyLWNlbGwtZGVmLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL3RhYmxlLWNvbHVtbi1kZWYuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUtc2Nyb2xsLmRpcmVjdGl2ZSc7XG4iXX0=
@@ -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":[]}},{"symbol":{"__symbol":14,"members":[]},"metadata":{"__symbol":15,"members":[]}},{"symbol":{"__symbol":16,"members":[]},"metadata":{"__symbol":17,"members":[]}},{"symbol":{"__symbol":18,"members":[]},"metadata":{"__symbol":19,"members":[]}},{"symbol":{"__symbol":20,"members":[]},"metadata":{"__symbol":21,"members":[]}},{"symbol":{"__symbol":22,"members":[]},"metadata":{"__symbol":23,"members":[]}},{"symbol":{"__symbol":24,"members":[]},"metadata":{"__symbol":25,"members":[]}}],"symbols":[{"__symbol":0,"name":"TableModule","filePath":"./public-api"},{"__symbol":1,"name":"TableModule","filePath":"./table.module"},{"__symbol":2,"name":"TableComponent","filePath":"./public-api"},{"__symbol":3,"name":"TableComponent","filePath":"./table.component"},{"__symbol":4,"name":"TableRowComponent","filePath":"./public-api"},{"__symbol":5,"name":"TableRowComponent","filePath":"./table-row.component"},{"__symbol":6,"name":"TableHeaderRowComponent","filePath":"./public-api"},{"__symbol":7,"name":"TableHeaderRowComponent","filePath":"./table-header-row.component"},{"__symbol":8,"name":"TableCellDirective","filePath":"./public-api"},{"__symbol":9,"name":"TableCellDirective","filePath":"./table-cell.directive"},{"__symbol":10,"name":"TableHeaderCellDirective","filePath":"./public-api"},{"__symbol":11,"name":"TableHeaderCellDirective","filePath":"./table-header-cell.directive"},{"__symbol":12,"name":"TableRowDefDirective","filePath":"./public-api"},{"__symbol":13,"name":"TableRowDefDirective","filePath":"./table-row-def.directive"},{"__symbol":14,"name":"TableHeaderRowDefDirective","filePath":"./public-api"},{"__symbol":15,"name":"TableHeaderRowDefDirective","filePath":"./table-header-row-def.directive"},{"__symbol":16,"name":"TableCellDefDirective","filePath":"./public-api"},{"__symbol":17,"name":"TableCellDefDirective","filePath":"./table-cell-def.directive"},{"__symbol":18,"name":"TableHeaderCellDefDirective","filePath":"./public-api"},{"__symbol":19,"name":"TableHeaderCellDefDirective","filePath":"./table-header-cell-def.directive"},{"__symbol":20,"name":"TableColumnDefDirective","filePath":"./public-api"},{"__symbol":21,"name":"TableColumnDefDirective","filePath":"./table-column-def.directive"},{"__symbol":22,"name":"TableScrollWrapperDirective","filePath":"./public-api"},{"__symbol":23,"name":"TableScrollWrapperDirective","filePath":"./table-scroll.directive"},{"__symbol":24,"name":"TableScrollShadowDirective","filePath":"./public-api"},{"__symbol":25,"name":"TableScrollShadowDirective","filePath":"./table-scroll.directive"}]}
@@ -1,20 +0,0 @@
1
- import { CdkCellDef } from '@angular/cdk/table';
2
- import { Directive } from '@angular/core';
3
- /**
4
- * Cell definition for the aui-table.
5
- * Captures the template of a column's data row cell as well as cell-specific properties.
6
- */
7
- export class TableCellDefDirective extends CdkCellDef {
8
- }
9
- TableCellDefDirective.decorators = [
10
- { type: Directive, args: [{
11
- selector: '[auiTableCellDef]',
12
- providers: [
13
- {
14
- provide: CdkCellDef,
15
- useExisting: TableCellDefDirective,
16
- },
17
- ],
18
- },] }
19
- ];
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY2VsbC1kZWYuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLWNlbGwtZGVmLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEQsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUxQzs7O0dBR0c7QUFVSCxNQUFNLE9BQU8scUJBQXNCLFNBQVEsVUFBVTs7O1lBVHBELFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsbUJBQW1CO2dCQUM3QixTQUFTLEVBQUU7b0JBQ1Q7d0JBQ0UsT0FBTyxFQUFFLFVBQVU7d0JBQ25CLFdBQVcsRUFBRSxxQkFBcUI7cUJBQ25DO2lCQUNGO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDZGtDZWxsRGVmIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vKipcbiAqIENlbGwgZGVmaW5pdGlvbiBmb3IgdGhlIGF1aS10YWJsZS5cbiAqIENhcHR1cmVzIHRoZSB0ZW1wbGF0ZSBvZiBhIGNvbHVtbidzIGRhdGEgcm93IGNlbGwgYXMgd2VsbCBhcyBjZWxsLXNwZWNpZmljIHByb3BlcnRpZXMuXG4gKi9cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1thdWlUYWJsZUNlbGxEZWZdJyxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgcHJvdmlkZTogQ2RrQ2VsbERlZixcbiAgICAgIHVzZUV4aXN0aW5nOiBUYWJsZUNlbGxEZWZEaXJlY3RpdmUsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVDZWxsRGVmRGlyZWN0aXZlIGV4dGVuZHMgQ2RrQ2VsbERlZiB7fVxuIl19
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":2,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":false,"selector":"[auiTableCellDef]","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[{"token":{"identifier":{"reference":{"__symbol":1,"members":[]}}},"useClass":null,"useFactory":null,"useExisting":{"identifier":{"reference":{"__symbol":0,"members":[]}}},"multi":false}],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}}],"symbols":[{"__symbol":0,"name":"TableCellDefDirective","filePath":"./table-cell-def.directive"},{"__symbol":1,"name":"CdkCellDef","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"TemplateRef","filePath":"@angular/core"}]}
@@ -1,82 +0,0 @@
1
- import { animate, state, style, transition, trigger, } from '@angular/animations';
2
- import { CdkCell } from '@angular/cdk/table';
3
- import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, ViewEncapsulation, } from '@angular/core';
4
- export class TableExpandButtonCellComponent extends CdkCell {
5
- constructor() {
6
- super(...arguments);
7
- this.expand = false;
8
- this.disabled = false;
9
- this.expandChange = new EventEmitter();
10
- }
11
- get expanded() {
12
- return this.expand ? 'expanded' : null;
13
- }
14
- }
15
- TableExpandButtonCellComponent.decorators = [
16
- { type: Component, args: [{
17
- selector: 'aui-table-cell[auiExpandButton]',
18
- template: `
19
- <button
20
- type="button"
21
- class="aui-expand-button"
22
- [class.isExpanded]="expand"
23
- [disabled]="disabled"
24
- (click)="expandChange.next()"
25
- >
26
- <aui-icon icon="angle_right"></aui-icon>
27
- </button>
28
- `,
29
- changeDetection: ChangeDetectionStrategy.OnPush,
30
- encapsulation: ViewEncapsulation.None,
31
- preserveWhitespaces: false
32
- },] }
33
- ];
34
- TableExpandButtonCellComponent.propDecorators = {
35
- expand: [{ type: Input }],
36
- disabled: [{ type: Input }],
37
- expandChange: [{ type: Output }]
38
- };
39
- export class TableExpandPanelCellComponent extends CdkCell {
40
- constructor() {
41
- super(...arguments);
42
- this.expand = false;
43
- this.background = true;
44
- }
45
- get expanded() {
46
- return this.expand ? 'expanded' : null;
47
- }
48
- }
49
- TableExpandPanelCellComponent.decorators = [
50
- { type: Component, args: [{
51
- selector: 'aui-table-cell[auiExpandPanel]',
52
- template: `
53
- <div
54
- *ngIf="expand"
55
- class="aui-table__cell-expand-panel"
56
- [@expand]="expanded"
57
- >
58
- <div
59
- class="aui-table__cell-expand-panel-content"
60
- [class.hasBackground]="background"
61
- >
62
- <ng-content></ng-content>
63
- </div>
64
- </div>
65
- `,
66
- changeDetection: ChangeDetectionStrategy.OnPush,
67
- encapsulation: ViewEncapsulation.None,
68
- preserveWhitespaces: false,
69
- animations: [
70
- trigger('expand', [
71
- state('*', style({ height: 0 })),
72
- state('expanded', style({ height: '*', 'margin-bottom': '15px' })),
73
- transition('* <=> expanded', [animate('0.1s ease-in-out')]),
74
- ]),
75
- ]
76
- },] }
77
- ];
78
- TableExpandPanelCellComponent.propDecorators = {
79
- expand: [{ type: Input }],
80
- background: [{ type: Input }]
81
- };
82
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY2VsbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdGFibGUvdGFibGUtY2VsbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLE9BQU8sRUFDUCxLQUFLLEVBQ0wsS0FBSyxFQUNMLFVBQVUsRUFDVixPQUFPLEdBQ1IsTUFBTSxxQkFBcUIsQ0FBQztBQUM3QixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDN0MsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEVBQ04saUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBbUJ2QixNQUFNLE9BQU8sOEJBQStCLFNBQVEsT0FBTztJQWpCM0Q7O1FBbUJFLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFHZixhQUFRLEdBQUcsS0FBSyxDQUFDO1FBR2pCLGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztJQUtwQyxDQUFDO0lBSEMsSUFBSSxRQUFRO1FBQ1YsT0FBTyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQztJQUN6QyxDQUFDOzs7WUE3QkYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSxpQ0FBaUM7Z0JBQzNDLFFBQVEsRUFBRTs7Ozs7Ozs7OztHQVVUO2dCQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO2dCQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtnQkFDckMsbUJBQW1CLEVBQUUsS0FBSzthQUMzQjs7O3FCQUVFLEtBQUs7dUJBR0wsS0FBSzsyQkFHTCxNQUFNOztBQWtDVCxNQUFNLE9BQU8sNkJBQThCLFNBQVEsT0FBTztJQTNCMUQ7O1FBNkJFLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFHZixlQUFVLEdBQUcsSUFBSSxDQUFDO0lBS3BCLENBQUM7SUFIQyxJQUFJLFFBQVE7UUFDVixPQUFPLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO0lBQ3pDLENBQUM7OztZQXBDRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLGdDQUFnQztnQkFDMUMsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7O0dBYVQ7Z0JBQ0QsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07Z0JBQy9DLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO2dCQUNyQyxtQkFBbUIsRUFBRSxLQUFLO2dCQUMxQixVQUFVLEVBQUU7b0JBQ1YsT0FBTyxDQUFDLFFBQVEsRUFBRTt3QkFDaEIsS0FBSyxDQUFDLEdBQUcsRUFBRSxLQUFLLENBQUMsRUFBRSxNQUFNLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQzt3QkFDaEMsS0FBSyxDQUFDLFVBQVUsRUFBRSxLQUFLLENBQUMsRUFBRSxNQUFNLEVBQUUsR0FBRyxFQUFFLGVBQWUsRUFBRSxNQUFNLEVBQUUsQ0FBQyxDQUFDO3dCQUNsRSxVQUFVLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQyxPQUFPLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxDQUFDO3FCQUM1RCxDQUFDO2lCQUNIO2FBQ0Y7OztxQkFFRSxLQUFLO3lCQUdMLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBhbmltYXRlLFxuICBzdGF0ZSxcbiAgc3R5bGUsXG4gIHRyYW5zaXRpb24sXG4gIHRyaWdnZXIsXG59IGZyb20gJ0Bhbmd1bGFyL2FuaW1hdGlvbnMnO1xuaW1wb3J0IHsgQ2RrQ2VsbCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBFdmVudEVtaXR0ZXIsXG4gIElucHV0LFxuICBPdXRwdXQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXVpLXRhYmxlLWNlbGxbYXVpRXhwYW5kQnV0dG9uXScsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGJ1dHRvblxuICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICBjbGFzcz1cImF1aS1leHBhbmQtYnV0dG9uXCJcbiAgICAgIFtjbGFzcy5pc0V4cGFuZGVkXT1cImV4cGFuZFwiXG4gICAgICBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICAgICAgKGNsaWNrKT1cImV4cGFuZENoYW5nZS5uZXh0KClcIlxuICAgID5cbiAgICAgIDxhdWktaWNvbiBpY29uPVwiYW5nbGVfcmlnaHRcIj48L2F1aS1pY29uPlxuICAgIDwvYnV0dG9uPlxuICBgLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgcHJlc2VydmVXaGl0ZXNwYWNlczogZmFsc2UsXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlRXhwYW5kQnV0dG9uQ2VsbENvbXBvbmVudCBleHRlbmRzIENka0NlbGwge1xuICBASW5wdXQoKVxuICBleHBhbmQgPSBmYWxzZTtcblxuICBASW5wdXQoKVxuICBkaXNhYmxlZCA9IGZhbHNlO1xuXG4gIEBPdXRwdXQoKVxuICBleHBhbmRDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgZ2V0IGV4cGFuZGVkKCkge1xuICAgIHJldHVybiB0aGlzLmV4cGFuZCA/ICdleHBhbmRlZCcgOiBudWxsO1xuICB9XG59XG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhdWktdGFibGUtY2VsbFthdWlFeHBhbmRQYW5lbF0nLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXZcbiAgICAgICpuZ0lmPVwiZXhwYW5kXCJcbiAgICAgIGNsYXNzPVwiYXVpLXRhYmxlX19jZWxsLWV4cGFuZC1wYW5lbFwiXG4gICAgICBbQGV4cGFuZF09XCJleHBhbmRlZFwiXG4gICAgPlxuICAgICAgPGRpdlxuICAgICAgICBjbGFzcz1cImF1aS10YWJsZV9fY2VsbC1leHBhbmQtcGFuZWwtY29udGVudFwiXG4gICAgICAgIFtjbGFzcy5oYXNCYWNrZ3JvdW5kXT1cImJhY2tncm91bmRcIlxuICAgICAgPlxuICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbiAgYCxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIHByZXNlcnZlV2hpdGVzcGFjZXM6IGZhbHNlLFxuICBhbmltYXRpb25zOiBbXG4gICAgdHJpZ2dlcignZXhwYW5kJywgW1xuICAgICAgc3RhdGUoJyonLCBzdHlsZSh7IGhlaWdodDogMCB9KSksXG4gICAgICBzdGF0ZSgnZXhwYW5kZWQnLCBzdHlsZSh7IGhlaWdodDogJyonLCAnbWFyZ2luLWJvdHRvbSc6ICcxNXB4JyB9KSksXG4gICAgICB0cmFuc2l0aW9uKCcqIDw9PiBleHBhbmRlZCcsIFthbmltYXRlKCcwLjFzIGVhc2UtaW4tb3V0JyldKSxcbiAgICBdKSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVFeHBhbmRQYW5lbENlbGxDb21wb25lbnQgZXh0ZW5kcyBDZGtDZWxsIHtcbiAgQElucHV0KClcbiAgZXhwYW5kID0gZmFsc2U7XG5cbiAgQElucHV0KClcbiAgYmFja2dyb3VuZCA9IHRydWU7XG5cbiAgZ2V0IGV4cGFuZGVkKCkge1xuICAgIHJldHVybiB0aGlzLmV4cGFuZCA/ICdleHBhbmRlZCcgOiBudWxsO1xuICB9XG59XG4iXX0=
@@ -1,32 +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 "../icon/icon.component.ngfactory";
9
- import * as i2 from "../icon/icon.component";
10
- import * as i3 from "../icon/icon-register.service";
11
- import * as i4 from "./table-cell.component";
12
- import * as i5 from "@angular/cdk/table";
13
- import * as i6 from "@angular/common";
14
- var styles_TableExpandButtonCellComponent = [];
15
- var RenderType_TableExpandButtonCellComponent = i0.ɵcrt({ encapsulation: 2, styles: styles_TableExpandButtonCellComponent, data: {} });
16
- export { RenderType_TableExpandButtonCellComponent as RenderType_TableExpandButtonCellComponent };
17
- export function View_TableExpandButtonCellComponent_0(_l) { return i0.ɵvid(2, [(_l()(), i0.ɵeld(0, 0, null, null, 2, "button", [["class", "aui-expand-button"], ["type", "button"]], [[2, "isExpanded", null], [8, "disabled", 0]], [[null, "click"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("click" === en)) {
18
- var pd_0 = (_co.expandChange.next() !== false);
19
- ad = (pd_0 && ad);
20
- } return ad; }, null, null)), (_l()(), i0.ɵeld(1, 0, null, null, 1, "aui-icon", [["icon", "angle_right"]], null, null, null, i1.View_IconComponent_0, i1.RenderType_IconComponent)), i0.ɵdid(2, 49152, null, 0, i2.IconComponent, [i3.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var currVal_2 = "angle_right"; _ck(_v, 2, 0, currVal_2); }, function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.expand; var currVal_1 = _co.disabled; _ck(_v, 0, 0, currVal_0, currVal_1); }); }
21
- export function View_TableExpandButtonCellComponent_Host_0(_l) { return i0.ɵvid(0, [(_l()(), i0.ɵeld(0, 0, null, null, 1, "aui-table-cell", [["auiExpandButton", ""]], null, null, null, View_TableExpandButtonCellComponent_0, RenderType_TableExpandButtonCellComponent)), i0.ɵdid(1, 49152, null, 0, i4.TableExpandButtonCellComponent, [i5.CdkColumnDef, i0.ElementRef], null, null)], null, null); }
22
- var TableExpandButtonCellComponentNgFactory = i0.ɵccf("aui-table-cell[auiExpandButton]", i4.TableExpandButtonCellComponent, View_TableExpandButtonCellComponent_Host_0, { expand: "expand", disabled: "disabled" }, { expandChange: "expandChange" }, []);
23
- export { TableExpandButtonCellComponentNgFactory as TableExpandButtonCellComponentNgFactory };
24
- var styles_TableExpandPanelCellComponent = [];
25
- var RenderType_TableExpandPanelCellComponent = i0.ɵcrt({ encapsulation: 2, styles: styles_TableExpandPanelCellComponent, data: { "animation": [{ type: 7, name: "expand", definitions: [{ type: 0, name: "*", styles: { type: 6, styles: { height: 0 }, offset: null }, options: undefined }, { type: 0, name: "expanded", styles: { type: 6, styles: { height: "*", "margin-bottom": "15px" }, offset: null }, options: undefined }, { type: 1, expr: "* <=> expanded", animation: [{ type: 4, styles: null, timings: "0.1s ease-in-out" }], options: null }], options: {} }] } });
26
- export { RenderType_TableExpandPanelCellComponent as RenderType_TableExpandPanelCellComponent };
27
- function View_TableExpandPanelCellComponent_1(_l) { return i0.ɵvid(0, [(_l()(), i0.ɵeld(0, 0, null, null, 2, "div", [["class", "aui-table__cell-expand-panel"]], [[24, "@expand", 0]], null, null, null, null)), (_l()(), i0.ɵeld(1, 0, null, null, 1, "div", [["class", "aui-table__cell-expand-panel-content"]], [[2, "hasBackground", null]], null, null, null, null)), i0.ɵncd(null, 0)], null, function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.expanded; _ck(_v, 0, 0, currVal_0); var currVal_1 = _co.background; _ck(_v, 1, 0, currVal_1); }); }
28
- export function View_TableExpandPanelCellComponent_0(_l) { return i0.ɵvid(2, [(_l()(), i0.ɵand(16777216, null, null, 1, null, View_TableExpandPanelCellComponent_1)), i0.ɵdid(1, 16384, null, 0, i6.NgIf, [i0.ViewContainerRef, i0.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.expand; _ck(_v, 1, 0, currVal_0); }, null); }
29
- export function View_TableExpandPanelCellComponent_Host_0(_l) { return i0.ɵvid(0, [(_l()(), i0.ɵeld(0, 0, null, null, 1, "aui-table-cell", [["auiExpandPanel", ""]], null, null, null, View_TableExpandPanelCellComponent_0, RenderType_TableExpandPanelCellComponent)), i0.ɵdid(1, 49152, null, 0, i4.TableExpandPanelCellComponent, [i5.CdkColumnDef, i0.ElementRef], null, null)], null, null); }
30
- var TableExpandPanelCellComponentNgFactory = i0.ɵccf("aui-table-cell[auiExpandPanel]", i4.TableExpandPanelCellComponent, View_TableExpandPanelCellComponent_Host_0, { expand: "expand", background: "background" }, {}, ["*"]);
31
- export { TableExpandPanelCellComponentNgFactory as TableExpandPanelCellComponentNgFactory };
32
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY2VsbC5jb21wb25lbnQubmdmYWN0b3J5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLWNlbGwuY29tcG9uZW50Lm5nZmFjdG9yeS50cyIsIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS1jZWxsLmNvbXBvbmVudC50cy5UYWJsZUV4cGFuZEJ1dHRvbkNlbGxDb21wb25lbnQuaHRtbCIsIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS1jZWxsLmNvbXBvbmVudC50cy5UYWJsZUV4cGFuZFBhbmVsQ2VsbENvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Z0ZDQ0ksOE5BUVMsWUFIUDs7d0JBQTZCO01BTC9CLHdCQVFTLEtBRFAsd1BBQXdDLHlCQUE5Qiw2QkFBa0IsRUFBNUIsWUFBd0MsRUFBOUIsU0FBa0IsbURBSjVCLG1CQUEyQixTQUMzQixtQkFBcUIsV0FKdkIsWUFRUyxFQUxQLFNBQTJCLEVBQzNCLFNBQXFCOzs7Ozs7O3dFQ0p2QixxSUFXTSxLQU5KLHFKQUtNLElBREosZUFBeUIsdURBTjNCLG1CQUFvQixXQUh0QixZQVdNLEVBUkosU0FBb0IsR0FJbEIsbUJBQWtDLGFBRnBDLFlBS00sRUFISixTQUFrQzsrRUFQdEMsNkxBV00saURBVkosbUJBQWMsU0FEaEIsWUFXTSxFQVZKLFNBQWMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iLCJcbiAgICA8YnV0dG9uXG4gICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgIGNsYXNzPVwiYXVpLWV4cGFuZC1idXR0b25cIlxuICAgICAgW2NsYXNzLmlzRXhwYW5kZWRdPVwiZXhwYW5kXCJcbiAgICAgIFtkaXNhYmxlZF09XCJkaXNhYmxlZFwiXG4gICAgICAoY2xpY2spPVwiZXhwYW5kQ2hhbmdlLm5leHQoKVwiXG4gICAgPlxuICAgICAgPGF1aS1pY29uIGljb249XCJhbmdsZV9yaWdodFwiPjwvYXVpLWljb24+XG4gICAgPC9idXR0b24+XG4gICIsIlxuICAgIDxkaXZcbiAgICAgICpuZ0lmPVwiZXhwYW5kXCJcbiAgICAgIGNsYXNzPVwiYXVpLXRhYmxlX19jZWxsLWV4cGFuZC1wYW5lbFwiXG4gICAgICBbQGV4cGFuZF09XCJleHBhbmRlZFwiXG4gICAgPlxuICAgICAgPGRpdlxuICAgICAgICBjbGFzcz1cImF1aS10YWJsZV9fY2VsbC1leHBhbmQtcGFuZWwtY29udGVudFwiXG4gICAgICAgIFtjbGFzcy5oYXNCYWNrZ3JvdW5kXT1cImJhY2tncm91bmRcIlxuICAgICAgPlxuICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbiAgIl19
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"expand":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"expandChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":3,"members":[]}}]}]}},"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":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":6,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":true,"selector":"aui-table-cell[auiExpandButton]","exportAs":null,"inputs":{"expand":"expand","disabled":"disabled"},"outputs":{"expandChange":"expandChange"},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":[],"encapsulation":2,"styles":[],"animations":[]},"componentViewType":{"__symbol":7,"members":[]},"rendererType":{"__symbol":8,"members":[]},"componentFactory":{"__symbol":9,"members":[]}}},{"symbol":{"__symbol":4,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"expand":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"background":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":4,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":6,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":true,"selector":"aui-table-cell[auiExpandPanel]","exportAs":null,"inputs":{"expand":"expand","background":"background"},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":["*"],"encapsulation":2,"styles":[],"animations":[{"type":7,"name":"expand","definitions":[{"type":0,"name":"*","styles":{"type":6,"styles":{"height":0},"offset":null}},{"type":0,"name":"expanded","styles":{"type":6,"styles":{"height":"*","margin-bottom":"15px"},"offset":null}},{"type":1,"expr":"* <=> expanded","animation":[{"type":4,"styles":null,"timings":"0.1s ease-in-out"}],"options":null}],"options":{}}]},"componentViewType":{"__symbol":10,"members":[]},"rendererType":{"__symbol":11,"members":[]},"componentFactory":{"__symbol":12,"members":[]}}}],"symbols":[{"__symbol":0,"name":"TableExpandButtonCellComponent","filePath":"./table-cell.component"},{"__symbol":1,"name":"CdkCell","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"Output","filePath":"@angular/core"},{"__symbol":4,"name":"TableExpandPanelCellComponent","filePath":"./table-cell.component"},{"__symbol":5,"name":"CdkColumnDef","filePath":"@angular/cdk/table/index"},{"__symbol":6,"name":"ElementRef","filePath":"@angular/core"},{"__symbol":7,"name":"View_TableExpandButtonCellComponent_0","filePath":"./table-cell.component.ngfactory"},{"__symbol":8,"name":"RenderType_TableExpandButtonCellComponent","filePath":"./table-cell.component.ngfactory"},{"__symbol":9,"name":"TableExpandButtonCellComponentNgFactory","filePath":"./table-cell.component.ngfactory"},{"__symbol":10,"name":"View_TableExpandPanelCellComponent_0","filePath":"./table-cell.component.ngfactory"},{"__symbol":11,"name":"RenderType_TableExpandPanelCellComponent","filePath":"./table-cell.component.ngfactory"},{"__symbol":12,"name":"TableExpandPanelCellComponentNgFactory","filePath":"./table-cell.component.ngfactory"}]}
@@ -1,26 +0,0 @@
1
- import { CdkCell, CdkColumnDef } from '@angular/cdk/table';
2
- import { Directive, ElementRef } from '@angular/core';
3
- import { buildBem } from '../utils';
4
- const bem = buildBem('aui-table');
5
- /** Cell template container that adds the right classes and role. */
6
- export class TableCellDirective extends CdkCell {
7
- constructor(columnDef, elementRef) {
8
- super(columnDef, elementRef);
9
- elementRef.nativeElement.classList.add(bem.element(`column-${columnDef.cssClassFriendlyName}`));
10
- }
11
- }
12
- TableCellDirective.decorators = [
13
- { type: Directive, args: [{
14
- // tslint:disable-next-line: directive-selector
15
- selector: 'aui-table-cell',
16
- host: {
17
- class: 'aui-table__cell',
18
- role: 'gridcell',
19
- },
20
- },] }
21
- ];
22
- TableCellDirective.ctorParameters = () => [
23
- { type: CdkColumnDef },
24
- { type: ElementRef }
25
- ];
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY2VsbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdGFibGUvdGFibGUtY2VsbC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUMzRCxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV0RCxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sVUFBVSxDQUFDO0FBRXBDLE1BQU0sR0FBRyxHQUFHLFFBQVEsQ0FBQyxXQUFXLENBQUMsQ0FBQztBQUVsQyxvRUFBb0U7QUFTcEUsTUFBTSxPQUFPLGtCQUFtQixTQUFRLE9BQU87SUFDN0MsWUFBWSxTQUF1QixFQUFFLFVBQW1DO1FBQ3RFLEtBQUssQ0FBQyxTQUFTLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFDN0IsVUFBVSxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUNwQyxHQUFHLENBQUMsT0FBTyxDQUFDLFVBQVUsU0FBUyxDQUFDLG9CQUFvQixFQUFFLENBQUMsQ0FDeEQsQ0FBQztJQUNKLENBQUM7OztZQWRGLFNBQVMsU0FBQztnQkFDVCwrQ0FBK0M7Z0JBQy9DLFFBQVEsRUFBRSxnQkFBZ0I7Z0JBQzFCLElBQUksRUFBRTtvQkFDSixLQUFLLEVBQUUsaUJBQWlCO29CQUN4QixJQUFJLEVBQUUsVUFBVTtpQkFDakI7YUFDRjs7O1lBZmlCLFlBQVk7WUFDVixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrQ2VsbCwgQ2RrQ29sdW1uRGVmIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBidWlsZEJlbSB9IGZyb20gJy4uL3V0aWxzJztcblxuY29uc3QgYmVtID0gYnVpbGRCZW0oJ2F1aS10YWJsZScpO1xuXG4vKiogQ2VsbCB0ZW1wbGF0ZSBjb250YWluZXIgdGhhdCBhZGRzIHRoZSByaWdodCBjbGFzc2VzIGFuZCByb2xlLiAqL1xuQERpcmVjdGl2ZSh7XG4gIC8vIHRzbGludDpkaXNhYmxlLW5leHQtbGluZTogZGlyZWN0aXZlLXNlbGVjdG9yXG4gIHNlbGVjdG9yOiAnYXVpLXRhYmxlLWNlbGwnLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdhdWktdGFibGVfX2NlbGwnLFxuICAgIHJvbGU6ICdncmlkY2VsbCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlQ2VsbERpcmVjdGl2ZSBleHRlbmRzIENka0NlbGwge1xuICBjb25zdHJ1Y3Rvcihjb2x1bW5EZWY6IENka0NvbHVtbkRlZiwgZWxlbWVudFJlZjogRWxlbWVudFJlZjxIVE1MRWxlbWVudD4pIHtcbiAgICBzdXBlcihjb2x1bW5EZWYsIGVsZW1lbnRSZWYpO1xuICAgIGVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5jbGFzc0xpc3QuYWRkKFxuICAgICAgYmVtLmVsZW1lbnQoYGNvbHVtbi0ke2NvbHVtbkRlZi5jc3NDbGFzc0ZyaWVuZGx5TmFtZX1gKSxcbiAgICApO1xuICB9XG59XG4iXX0=
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbol":2,"members":[]},{"__symbol":3,"members":[]}]}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":2,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":false,"selector":"aui-table-cell","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{"class":"aui-table__cell","role":"gridcell"},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}}],"symbols":[{"__symbol":0,"name":"TableCellDirective","filePath":"./table-cell.directive"},{"__symbol":1,"name":"CdkCell","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"CdkColumnDef","filePath":"@angular/cdk/table/index"},{"__symbol":3,"name":"ElementRef","filePath":"@angular/core"}]}
@@ -1,29 +0,0 @@
1
- import { CdkColumnDef } from '@angular/cdk/table';
2
- import { Directive, Input } from '@angular/core';
3
- /**
4
- * Column definition for the aui-table.
5
- * Defines a set of cells available for a table column.
6
- */
7
- export class TableColumnDefDirective extends CdkColumnDef {
8
- // Unique name for this column
9
- // Why it does not work in `inputs` property?
10
- set auiTableColumnDef(value) {
11
- this.name = value;
12
- }
13
- }
14
- TableColumnDefDirective.decorators = [
15
- { type: Directive, args: [{
16
- selector: '[auiTableColumnDef]',
17
- providers: [
18
- {
19
- provide: CdkColumnDef,
20
- useExisting: TableColumnDefDirective,
21
- },
22
- ],
23
- inputs: ['sticky'],
24
- },] }
25
- ];
26
- TableColumnDefDirective.propDecorators = {
27
- auiTableColumnDef: [{ type: Input }]
28
- };
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY29sdW1uLWRlZi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdGFibGUvdGFibGUtY29sdW1uLWRlZi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ2xELE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWpEOzs7R0FHRztBQVdILE1BQU0sT0FBTyx1QkFBd0IsU0FBUSxZQUFZO0lBQ3ZELDhCQUE4QjtJQUM5Qiw2Q0FBNkM7SUFDN0MsSUFDSSxpQkFBaUIsQ0FBQyxLQUFhO1FBQ2pDLElBQUksQ0FBQyxJQUFJLEdBQUcsS0FBSyxDQUFDO0lBQ3BCLENBQUM7OztZQWhCRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHFCQUFxQjtnQkFDL0IsU0FBUyxFQUFFO29CQUNUO3dCQUNFLE9BQU8sRUFBRSxZQUFZO3dCQUNyQixXQUFXLEVBQUUsdUJBQXVCO3FCQUNyQztpQkFDRjtnQkFDRCxNQUFNLEVBQUUsQ0FBQyxRQUFRLENBQUM7YUFDbkI7OztnQ0FJRSxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrQ29sdW1uRGVmIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuLyoqXG4gKiBDb2x1bW4gZGVmaW5pdGlvbiBmb3IgdGhlIGF1aS10YWJsZS5cbiAqIERlZmluZXMgYSBzZXQgb2YgY2VsbHMgYXZhaWxhYmxlIGZvciBhIHRhYmxlIGNvbHVtbi5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2F1aVRhYmxlQ29sdW1uRGVmXScsXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IENka0NvbHVtbkRlZixcbiAgICAgIHVzZUV4aXN0aW5nOiBUYWJsZUNvbHVtbkRlZkRpcmVjdGl2ZSxcbiAgICB9LFxuICBdLFxuICBpbnB1dHM6IFsnc3RpY2t5J10sXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlQ29sdW1uRGVmRGlyZWN0aXZlIGV4dGVuZHMgQ2RrQ29sdW1uRGVmIHtcbiAgLy8gVW5pcXVlIG5hbWUgZm9yIHRoaXMgY29sdW1uXG4gIC8vIFdoeSBpdCBkb2VzIG5vdCB3b3JrIGluIGBpbnB1dHNgIHByb3BlcnR5P1xuICBASW5wdXQoKVxuICBzZXQgYXVpVGFibGVDb2x1bW5EZWYodmFsdWU6IHN0cmluZykge1xuICAgIHRoaXMubmFtZSA9IHZhbHVlO1xuICB9XG59XG4iXX0=
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"auiTableColumnDef":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":false,"selector":"[auiTableColumnDef]","exportAs":null,"inputs":{"sticky":"sticky","name":"cdkColumnDef","stickyEnd":"stickyEnd","auiTableColumnDef":"auiTableColumnDef"},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[{"token":{"identifier":{"reference":{"__symbol":1,"members":[]}}},"useClass":null,"useFactory":null,"useExisting":{"identifier":{"reference":{"__symbol":0,"members":[]}}},"multi":false}],"viewProviders":[],"queries":[{"selectors":[{"identifier":{"reference":{"__symbol":4,"members":[]}}}],"first":true,"descendants":true,"propertyName":"cell","read":null},{"selectors":[{"identifier":{"reference":{"__symbol":5,"members":[]}}}],"first":true,"descendants":true,"propertyName":"headerCell","read":null},{"selectors":[{"identifier":{"reference":{"__symbol":6,"members":[]}}}],"first":true,"descendants":true,"propertyName":"footerCell","read":null}],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}}],"symbols":[{"__symbol":0,"name":"TableColumnDefDirective","filePath":"./table-column-def.directive"},{"__symbol":1,"name":"CdkColumnDef","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"CDK_TABLE","filePath":"@angular/cdk/table/index"},{"__symbol":4,"name":"CdkCellDef","filePath":"@angular/cdk/table/index"},{"__symbol":5,"name":"CdkHeaderCellDef","filePath":"@angular/cdk/table/index"},{"__symbol":6,"name":"CdkFooterCellDef","filePath":"@angular/cdk/table/index"}]}
@@ -1,20 +0,0 @@
1
- import { CdkHeaderCellDef } from '@angular/cdk/table';
2
- import { Directive } from '@angular/core';
3
- /**
4
- * Header cell definition for the aui-table.
5
- * Captures the template of a column's header cell and as well as cell-specific properties.
6
- */
7
- export class TableHeaderCellDefDirective extends CdkHeaderCellDef {
8
- }
9
- TableHeaderCellDefDirective.decorators = [
10
- { type: Directive, args: [{
11
- selector: '[auiTableHeaderCellDef]',
12
- providers: [
13
- {
14
- provide: CdkHeaderCellDef,
15
- useExisting: TableHeaderCellDefDirective,
16
- },
17
- ],
18
- },] }
19
- ];
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtaGVhZGVyLWNlbGwtZGVmLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS1oZWFkZXItY2VsbC1kZWYuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFMUM7OztHQUdHO0FBVUgsTUFBTSxPQUFPLDJCQUE0QixTQUFRLGdCQUFnQjs7O1lBVGhFLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUseUJBQXlCO2dCQUNuQyxTQUFTLEVBQUU7b0JBQ1Q7d0JBQ0UsT0FBTyxFQUFFLGdCQUFnQjt3QkFDekIsV0FBVyxFQUFFLDJCQUEyQjtxQkFDekM7aUJBQ0Y7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka0hlYWRlckNlbGxEZWYgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8qKlxuICogSGVhZGVyIGNlbGwgZGVmaW5pdGlvbiBmb3IgdGhlIGF1aS10YWJsZS5cbiAqIENhcHR1cmVzIHRoZSB0ZW1wbGF0ZSBvZiBhIGNvbHVtbidzIGhlYWRlciBjZWxsIGFuZCBhcyB3ZWxsIGFzIGNlbGwtc3BlY2lmaWMgcHJvcGVydGllcy5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2F1aVRhYmxlSGVhZGVyQ2VsbERlZl0nLFxuICBwcm92aWRlcnM6IFtcbiAgICB7XG4gICAgICBwcm92aWRlOiBDZGtIZWFkZXJDZWxsRGVmLFxuICAgICAgdXNlRXhpc3Rpbmc6IFRhYmxlSGVhZGVyQ2VsbERlZkRpcmVjdGl2ZSxcbiAgICB9LFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBUYWJsZUhlYWRlckNlbGxEZWZEaXJlY3RpdmUgZXh0ZW5kcyBDZGtIZWFkZXJDZWxsRGVmIHt9XG4iXX0=
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":2,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":false,"selector":"[auiTableHeaderCellDef]","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[{"token":{"identifier":{"reference":{"__symbol":1,"members":[]}}},"useClass":null,"useFactory":null,"useExisting":{"identifier":{"reference":{"__symbol":0,"members":[]}}},"multi":false}],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}}],"symbols":[{"__symbol":0,"name":"TableHeaderCellDefDirective","filePath":"./table-header-cell-def.directive"},{"__symbol":1,"name":"CdkHeaderCellDef","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"TemplateRef","filePath":"@angular/core"}]}
@@ -1,26 +0,0 @@
1
- import { CdkColumnDef, CdkHeaderCell } from '@angular/cdk/table';
2
- import { Directive, ElementRef } from '@angular/core';
3
- import { buildBem } from '../utils';
4
- const bem = buildBem('aui-table');
5
- /** Header cell template container that adds the right classes and role. */
6
- export class TableHeaderCellDirective extends CdkHeaderCell {
7
- constructor(columnDef, elementRef) {
8
- super(columnDef, elementRef);
9
- elementRef.nativeElement.classList.add(bem.element(`column-${columnDef.cssClassFriendlyName}`));
10
- }
11
- }
12
- TableHeaderCellDirective.decorators = [
13
- { type: Directive, args: [{
14
- // tslint:disable-next-line: directive-selector
15
- selector: 'aui-table-header-cell',
16
- host: {
17
- class: 'aui-table__header-cell',
18
- role: 'columnheader',
19
- },
20
- },] }
21
- ];
22
- TableHeaderCellDirective.ctorParameters = () => [
23
- { type: CdkColumnDef },
24
- { type: ElementRef }
25
- ];
26
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtaGVhZGVyLWNlbGwuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLWhlYWRlci1jZWxsLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLGFBQWEsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ2pFLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXRELE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFFcEMsTUFBTSxHQUFHLEdBQUcsUUFBUSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0FBRWxDLDJFQUEyRTtBQVMzRSxNQUFNLE9BQU8sd0JBQXlCLFNBQVEsYUFBYTtJQUN6RCxZQUFZLFNBQXVCLEVBQUUsVUFBbUM7UUFDdEUsS0FBSyxDQUFDLFNBQVMsRUFBRSxVQUFVLENBQUMsQ0FBQztRQUM3QixVQUFVLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQ3BDLEdBQUcsQ0FBQyxPQUFPLENBQUMsVUFBVSxTQUFTLENBQUMsb0JBQW9CLEVBQUUsQ0FBQyxDQUN4RCxDQUFDO0lBQ0osQ0FBQzs7O1lBZEYsU0FBUyxTQUFDO2dCQUNULCtDQUErQztnQkFDL0MsUUFBUSxFQUFFLHVCQUF1QjtnQkFDakMsSUFBSSxFQUFFO29CQUNKLEtBQUssRUFBRSx3QkFBd0I7b0JBQy9CLElBQUksRUFBRSxjQUFjO2lCQUNyQjthQUNGOzs7WUFmUSxZQUFZO1lBQ0QsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka0NvbHVtbkRlZiwgQ2RrSGVhZGVyQ2VsbCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgYnVpbGRCZW0gfSBmcm9tICcuLi91dGlscyc7XG5cbmNvbnN0IGJlbSA9IGJ1aWxkQmVtKCdhdWktdGFibGUnKTtcblxuLyoqIEhlYWRlciBjZWxsIHRlbXBsYXRlIGNvbnRhaW5lciB0aGF0IGFkZHMgdGhlIHJpZ2h0IGNsYXNzZXMgYW5kIHJvbGUuICovXG5ARGlyZWN0aXZlKHtcbiAgLy8gdHNsaW50OmRpc2FibGUtbmV4dC1saW5lOiBkaXJlY3RpdmUtc2VsZWN0b3JcbiAgc2VsZWN0b3I6ICdhdWktdGFibGUtaGVhZGVyLWNlbGwnLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdhdWktdGFibGVfX2hlYWRlci1jZWxsJyxcbiAgICByb2xlOiAnY29sdW1uaGVhZGVyJyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVIZWFkZXJDZWxsRGlyZWN0aXZlIGV4dGVuZHMgQ2RrSGVhZGVyQ2VsbCB7XG4gIGNvbnN0cnVjdG9yKGNvbHVtbkRlZjogQ2RrQ29sdW1uRGVmLCBlbGVtZW50UmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50Pikge1xuICAgIHN1cGVyKGNvbHVtbkRlZiwgZWxlbWVudFJlZik7XG4gICAgZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmNsYXNzTGlzdC5hZGQoXG4gICAgICBiZW0uZWxlbWVudChgY29sdW1uLSR7Y29sdW1uRGVmLmNzc0NsYXNzRnJpZW5kbHlOYW1lfWApLFxuICAgICk7XG4gIH1cbn1cbiJdfQ==
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbol":2,"members":[]},{"__symbol":3,"members":[]}]}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":2,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":false,"selector":"aui-table-header-cell","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{"class":"aui-table__header-cell","role":"columnheader"},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}}],"symbols":[{"__symbol":0,"name":"TableHeaderCellDirective","filePath":"./table-header-cell.directive"},{"__symbol":1,"name":"CdkHeaderCell","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"CdkColumnDef","filePath":"@angular/cdk/table/index"},{"__symbol":3,"name":"ElementRef","filePath":"@angular/core"}]}
@@ -1,24 +0,0 @@
1
- import { CdkHeaderRowDef } from '@angular/cdk/table';
2
- import { Directive, Input } from '@angular/core';
3
- /**
4
- * Header row definition for the aui-table.
5
- * Captures the header row's template and other header properties such as the columns to display.
6
- */
7
- export class TableHeaderRowDefDirective extends CdkHeaderRowDef {
8
- }
9
- TableHeaderRowDefDirective.decorators = [
10
- { type: Directive, args: [{
11
- selector: '[auiTableHeaderRowDef]',
12
- providers: [
13
- {
14
- provide: CdkHeaderRowDef,
15
- useExisting: TableHeaderRowDefDirective,
16
- },
17
- ],
18
- },] }
19
- ];
20
- TableHeaderRowDefDirective.propDecorators = {
21
- columns: [{ type: Input, args: ['auiTableHeaderRowDef',] }],
22
- sticky: [{ type: Input, args: ['auiTableHeaderRowDefSticky',] }]
23
- };
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLWhlYWRlci1yb3ctZGVmLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDckQsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFakQ7OztHQUdHO0FBVUgsTUFBTSxPQUFPLDBCQUEyQixTQUFRLGVBQWU7OztZQVQ5RCxTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHdCQUF3QjtnQkFDbEMsU0FBUyxFQUFFO29CQUNUO3dCQUNFLE9BQU8sRUFBRSxlQUFlO3dCQUN4QixXQUFXLEVBQUUsMEJBQTBCO3FCQUN4QztpQkFDRjthQUNGOzs7c0JBRUUsS0FBSyxTQUFDLHNCQUFzQjtxQkFHNUIsS0FBSyxTQUFDLDRCQUE0QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka0hlYWRlclJvd0RlZiB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8qKlxuICogSGVhZGVyIHJvdyBkZWZpbml0aW9uIGZvciB0aGUgYXVpLXRhYmxlLlxuICogQ2FwdHVyZXMgdGhlIGhlYWRlciByb3cncyB0ZW1wbGF0ZSBhbmQgb3RoZXIgaGVhZGVyIHByb3BlcnRpZXMgc3VjaCBhcyB0aGUgY29sdW1ucyB0byBkaXNwbGF5LlxuICovXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpVGFibGVIZWFkZXJSb3dEZWZdJyxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgcHJvdmlkZTogQ2RrSGVhZGVyUm93RGVmLFxuICAgICAgdXNlRXhpc3Rpbmc6IFRhYmxlSGVhZGVyUm93RGVmRGlyZWN0aXZlLFxuICAgIH0sXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlSGVhZGVyUm93RGVmRGlyZWN0aXZlIGV4dGVuZHMgQ2RrSGVhZGVyUm93RGVmIHtcbiAgQElucHV0KCdhdWlUYWJsZUhlYWRlclJvd0RlZicpXG4gIGNvbHVtbnM6IHN0cmluZ1tdO1xuXG4gIEBJbnB1dCgnYXVpVGFibGVIZWFkZXJSb3dEZWZTdGlja3knKVxuICBzdGlja3k6IGJvb2xlYW47XG59XG4iXX0=