@alauda/ui 6.2.3-beta.9 → 6.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1288) hide show
  1. package/.changeset/README.md +8 -0
  2. package/accordion/accordion-item/accordion-item.component.d.ts +7 -0
  3. package/accordion/accordion.component.d.ts +3 -0
  4. package/accordion/accordion.module.d.ts +10 -0
  5. package/alauda-ui.d.ts +1 -20
  6. package/anchor/anchor.component.d.ts +7 -2
  7. package/anchor/anchor.directive.d.ts +7 -0
  8. package/anchor/anchor.module.d.ts +7 -0
  9. package/autocomplete/autocomplete-placeholder.component.d.ts +3 -0
  10. package/autocomplete/autocomplete.component.d.ts +3 -0
  11. package/autocomplete/autocomplete.directive.d.ts +5 -0
  12. package/autocomplete/autocomplete.module.d.ts +13 -0
  13. package/autocomplete/helper-directives.d.ts +3 -0
  14. package/autocomplete/suggestion/suggestion.component.d.ts +3 -0
  15. package/autocomplete/suggestion-group/suggestion-group.component.d.ts +3 -0
  16. package/back-top/back-top.component.d.ts +3 -0
  17. package/back-top/back-top.module.d.ts +7 -0
  18. package/breadcrumb/breadcrumb-item.component.d.ts +3 -0
  19. package/breadcrumb/breadcrumb.component.d.ts +3 -0
  20. package/breadcrumb/breadcrumb.module.d.ts +8 -0
  21. package/button/button-group/button-group.component.d.ts +3 -0
  22. package/button/button.component.d.ts +9 -38
  23. package/button/button.module.d.ts +8 -0
  24. package/card/card.component.d.ts +3 -0
  25. package/card/card.module.d.ts +8 -0
  26. package/card/helper-directives.d.ts +7 -0
  27. package/card/section.component.d.ts +3 -0
  28. package/checkbox/checkbox-group/checkbox-group.component.d.ts +3 -0
  29. package/checkbox/checkbox.component.d.ts +3 -0
  30. package/checkbox/checkbox.module.d.ts +8 -0
  31. package/color-picker/color-picker.component.d.ts +3 -0
  32. package/color-picker/color-picker.module.d.ts +7 -0
  33. package/date-picker/calendar/date-picker-panel/component.d.ts +3 -0
  34. package/date-picker/calendar/footer/component.d.ts +3 -0
  35. package/date-picker/calendar/header/component.d.ts +3 -0
  36. package/date-picker/calendar/panel/picker-panel.d.ts +3 -0
  37. package/date-picker/calendar/range-picker-panel/component.d.ts +3 -0
  38. package/date-picker/date-picker/date-picker.component.d.ts +3 -0
  39. package/date-picker/date-picker.module.d.ts +20 -0
  40. package/date-picker/public-api.d.ts +1 -0
  41. package/date-picker/range-picker/range-picker.component.d.ts +3 -0
  42. package/date-picker/trigger/trigger.component.d.ts +3 -0
  43. package/dialog/confirm-dialog/confirm-dialog.component.d.ts +3 -0
  44. package/dialog/dialog-content/dialog-close.directive.d.ts +3 -0
  45. package/dialog/dialog-content/dialog-content.component.d.ts +3 -0
  46. package/dialog/dialog-content/dialog-footer.component.d.ts +3 -0
  47. package/dialog/dialog-content/dialog-header.component.d.ts +3 -0
  48. package/dialog/dialog.component.d.ts +3 -0
  49. package/dialog/dialog.module.d.ts +15 -0
  50. package/dialog/dialog.service.d.ts +3 -0
  51. package/dialog/public-api.d.ts +1 -0
  52. package/drawer/component/drawer.component.d.ts +5 -2
  53. package/drawer/component/helper-directives.d.ts +7 -4
  54. package/drawer/drawer.module.d.ts +10 -0
  55. package/drawer/drawer.service.d.ts +3 -0
  56. package/dropdown/dropdown-active.directive.d.ts +3 -0
  57. package/dropdown/dropdown-button/dropdown-button.component.d.ts +3 -0
  58. package/dropdown/dropdown.directive.d.ts +3 -0
  59. package/dropdown/dropdown.module.d.ts +17 -0
  60. package/dropdown/helper-directives.d.ts +3 -0
  61. package/dropdown/menu/menu-content.directive.d.ts +3 -0
  62. package/dropdown/menu/menu.component.d.ts +3 -0
  63. package/dropdown/menu-group/menu-group.component.d.ts +3 -0
  64. package/dropdown/menu-item/menu-item.component.d.ts +3 -0
  65. package/dropdown/public-api.d.ts +1 -0
  66. package/dropdown/submenu/submenu.component.d.ts +3 -0
  67. package/esm2020/accordion/accordion-item/accordion-item.component.mjs +73 -0
  68. package/esm2020/accordion/accordion.component.mjs +27 -0
  69. package/esm2020/accordion/accordion.module.mjs +39 -0
  70. package/{esm2015/accordion/public-api.js → esm2020/accordion/public-api.mjs} +0 -0
  71. package/esm2020/alauda-ui.mjs +5 -0
  72. package/esm2020/anchor/anchor.component.mjs +139 -0
  73. package/esm2020/anchor/anchor.directive.mjs +184 -0
  74. package/esm2020/anchor/anchor.module.mjs +36 -0
  75. package/{esm2015/anchor/public-api.js → esm2020/anchor/public-api.mjs} +0 -0
  76. package/{esm2015/anchor/types.js → esm2020/anchor/types.mjs} +0 -0
  77. package/{esm2015/anchor/utils.js → esm2020/anchor/utils.mjs} +0 -0
  78. package/esm2020/autocomplete/autocomplete-placeholder.component.mjs +17 -0
  79. package/esm2020/autocomplete/autocomplete.component.mjs +41 -0
  80. package/esm2020/autocomplete/autocomplete.directive.mjs +272 -0
  81. package/esm2020/autocomplete/autocomplete.module.mjs +53 -0
  82. package/{esm2015/autocomplete/autocomplete.types.js → esm2020/autocomplete/autocomplete.types.mjs} +0 -0
  83. package/esm2020/autocomplete/helper-directives.mjs +17 -0
  84. package/{esm2015/autocomplete/public-api.js → esm2020/autocomplete/public-api.mjs} +0 -0
  85. package/esm2020/autocomplete/suggestion/suggestion.component.mjs +78 -0
  86. package/esm2020/autocomplete/suggestion-group/suggestion-group.component.mjs +23 -0
  87. package/esm2020/back-top/back-top.component.mjs +68 -0
  88. package/esm2020/back-top/back-top.module.mjs +19 -0
  89. package/{esm2015/back-top/public-api.js → esm2020/back-top/public-api.mjs} +0 -0
  90. package/esm2020/breadcrumb/breadcrumb-item.component.mjs +32 -0
  91. package/esm2020/breadcrumb/breadcrumb.component.mjs +57 -0
  92. package/esm2020/breadcrumb/breadcrumb.module.mjs +20 -0
  93. package/{esm2015/breadcrumb/public-api.js → esm2020/breadcrumb/public-api.mjs} +0 -0
  94. package/esm2020/button/button-group/button-group.component.mjs +11 -0
  95. package/esm2020/button/button.component.mjs +122 -0
  96. package/esm2020/button/button.module.mjs +20 -0
  97. package/{esm2015/button/button.types.js → esm2020/button/button.types.mjs} +0 -0
  98. package/{esm2015/button/public-api.js → esm2020/button/public-api.mjs} +0 -0
  99. package/esm2020/card/card.component.mjs +16 -0
  100. package/esm2020/card/card.module.mjs +40 -0
  101. package/esm2020/card/helper-directives.mjs +43 -0
  102. package/{esm2015/card/public-api.js → esm2020/card/public-api.mjs} +0 -0
  103. package/esm2020/card/section.component.mjs +11 -0
  104. package/esm2020/checkbox/checkbox-group/checkbox-group.component.mjs +64 -0
  105. package/esm2020/checkbox/checkbox.component.mjs +114 -0
  106. package/esm2020/checkbox/checkbox.module.mjs +20 -0
  107. package/{esm2015/checkbox/public-api.js → esm2020/checkbox/public-api.mjs} +0 -0
  108. package/esm2020/color-picker/color-picker.component.mjs +32 -0
  109. package/esm2020/color-picker/color-picker.module.mjs +19 -0
  110. package/{esm2015/color-picker/public-api.js → esm2020/color-picker/public-api.mjs} +0 -0
  111. package/{esm2015/date-picker/calendar/constant.js → esm2020/date-picker/calendar/constant.mjs} +0 -0
  112. package/esm2020/date-picker/calendar/date-picker-panel/component.mjs +128 -0
  113. package/esm2020/date-picker/calendar/footer/component.mjs +29 -0
  114. package/esm2020/date-picker/calendar/header/component.mjs +105 -0
  115. package/esm2020/date-picker/calendar/panel/picker-panel.mjs +149 -0
  116. package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +209 -0
  117. package/{esm2015/date-picker/calendar/util.js → esm2020/date-picker/calendar/util.mjs} +0 -0
  118. package/esm2020/date-picker/date-picker/date-picker.component.mjs +104 -0
  119. package/esm2020/date-picker/date-picker.module.mjs +84 -0
  120. package/{esm2015/date-picker/date-picker.type.js → esm2020/date-picker/date-picker.type.mjs} +0 -0
  121. package/esm2020/date-picker/public-api.mjs +12 -0
  122. package/esm2020/date-picker/range-picker/range-picker.component.mjs +80 -0
  123. package/esm2020/date-picker/trigger/trigger.component.mjs +69 -0
  124. package/{esm2015/dialog/confirm-dialog/confirm-dialog-config.js → esm2020/dialog/confirm-dialog/confirm-dialog-config.mjs} +0 -0
  125. package/esm2020/dialog/confirm-dialog/confirm-dialog.component.mjs +86 -0
  126. package/{esm2015/dialog/dialog-config.js → esm2020/dialog/dialog-config.mjs} +0 -0
  127. package/esm2020/dialog/dialog-content/dialog-close.directive.mjs +38 -0
  128. package/esm2020/dialog/dialog-content/dialog-content.component.mjs +20 -0
  129. package/esm2020/dialog/dialog-content/dialog-footer.component.mjs +15 -0
  130. package/esm2020/dialog/dialog-content/dialog-header.component.mjs +39 -0
  131. package/{esm2015/dialog/dialog-ref.js → esm2020/dialog/dialog-ref.mjs} +0 -0
  132. package/esm2020/dialog/dialog.component.mjs +59 -0
  133. package/esm2020/dialog/dialog.module.mjs +68 -0
  134. package/esm2020/dialog/dialog.service.mjs +128 -0
  135. package/{esm2015/dialog/dialog.types.js → esm2020/dialog/dialog.types.mjs} +0 -0
  136. package/esm2020/dialog/public-api.mjs +12 -0
  137. package/{esm2015/dialog/utils/errors.js → esm2020/dialog/utils/errors.mjs} +0 -0
  138. package/esm2020/dialog/utils/index.mjs +11 -0
  139. package/{esm2015/drawer/component/drawer-ref.js → esm2020/drawer/component/drawer-ref.mjs} +0 -0
  140. package/esm2020/drawer/component/drawer.component.mjs +231 -0
  141. package/esm2020/drawer/component/helper-directives.mjs +37 -0
  142. package/esm2020/drawer/drawer.module.mjs +37 -0
  143. package/esm2020/drawer/drawer.service.mjs +45 -0
  144. package/{esm2015/drawer/public-api.js → esm2020/drawer/public-api.mjs} +0 -0
  145. package/esm2020/dropdown/dropdown-active.directive.mjs +21 -0
  146. package/esm2020/dropdown/dropdown-button/dropdown-button.component.mjs +51 -0
  147. package/esm2020/dropdown/dropdown.directive.mjs +83 -0
  148. package/esm2020/dropdown/dropdown.module.mjs +65 -0
  149. package/{esm2015/dropdown/dropdown.types.js → esm2020/dropdown/dropdown.types.mjs} +0 -0
  150. package/esm2020/dropdown/helper-directives.mjs +17 -0
  151. package/esm2020/dropdown/menu/menu-content.directive.mjs +51 -0
  152. package/esm2020/dropdown/menu/menu.component.mjs +33 -0
  153. package/esm2020/dropdown/menu-group/menu-group.component.mjs +11 -0
  154. package/esm2020/dropdown/menu-item/menu-item.component.mjs +37 -0
  155. package/esm2020/dropdown/public-api.mjs +12 -0
  156. package/esm2020/dropdown/submenu/submenu.component.mjs +40 -0
  157. package/esm2020/form/common-form.mjs +92 -0
  158. package/esm2020/form/form-item/form-item.component.mjs +106 -0
  159. package/esm2020/form/form.directive.mjs +70 -0
  160. package/esm2020/form/form.module.mjs +48 -0
  161. package/{esm2015/form/form.types.js → esm2020/form/form.types.mjs} +0 -0
  162. package/esm2020/form/helper-directives.mjs +81 -0
  163. package/{esm2015/form/public-api.js → esm2020/form/public-api.mjs} +0 -0
  164. package/esm2020/i18n/i18n.module.mjs +16 -0
  165. package/esm2020/i18n/i18n.pipe.mjs +20 -0
  166. package/esm2020/i18n/i18n.service.mjs +43 -0
  167. package/esm2020/i18n/i18n.type.mjs +6 -0
  168. package/{esm2015/i18n/language/en.js → esm2020/i18n/language/en.mjs} +0 -0
  169. package/{esm2015/i18n/language/zh.js → esm2020/i18n/language/zh.mjs} +0 -0
  170. package/{esm2015/i18n/public-api.js → esm2020/i18n/public-api.mjs} +0 -0
  171. package/esm2020/icon/icon-register.service.mjs +70 -0
  172. package/esm2020/icon/icon.component.mjs +65 -0
  173. package/esm2020/icon/icon.module.mjs +21 -0
  174. package/{esm2015/icon/icons.js → esm2020/icon/icons.mjs} +0 -0
  175. package/{esm2015/icon/public-api.js → esm2020/icon/public-api.mjs} +0 -0
  176. package/{esm2015/icon/utils.js → esm2020/icon/utils.mjs} +0 -0
  177. package/esm2020/inline-alert/helper-directives.mjs +14 -0
  178. package/esm2020/inline-alert/inline-alert.component.mjs +55 -0
  179. package/esm2020/inline-alert/inline-alert.module.mjs +20 -0
  180. package/{esm2015/inline-alert/inline-alert.types.js → esm2020/inline-alert/inline-alert.types.mjs} +0 -0
  181. package/{esm2015/inline-alert/public-api.js → esm2020/inline-alert/public-api.mjs} +0 -0
  182. package/esm2020/input/autosize.directive.mjs +60 -0
  183. package/esm2020/input/helper-directives.mjs +43 -0
  184. package/esm2020/input/input-group/input-group.component.mjs +39 -0
  185. package/esm2020/input/input.component.mjs +61 -0
  186. package/esm2020/input/input.module.mjs +91 -0
  187. package/esm2020/input/number-input/number-input.component.mjs +94 -0
  188. package/esm2020/input/public-api.mjs +9 -0
  189. package/esm2020/input/search/search.component.mjs +81 -0
  190. package/esm2020/input/tags-input/tags-input.component.mjs +265 -0
  191. package/{esm2015/input/tags-input/with-max-row-count.js → esm2020/input/tags-input/with-max-row-count.mjs} +0 -0
  192. package/{esm2015/input/utils/index.js → esm2020/input/utils/index.mjs} +0 -0
  193. package/esm2020/message/base-message.mjs +90 -0
  194. package/{esm2015/message/message-animations.js → esm2020/message/message-animations.mjs} +0 -0
  195. package/esm2020/message/message-wrapper.component.mjs +14 -0
  196. package/esm2020/message/message.component.mjs +70 -0
  197. package/{esm2015/message/message.config.js → esm2020/message/message.config.mjs} +0 -0
  198. package/esm2020/message/message.module.mjs +23 -0
  199. package/esm2020/message/message.service.mjs +26 -0
  200. package/{esm2015/message/public-api.js → esm2020/message/public-api.mjs} +0 -0
  201. package/esm2020/notification/notification-wrapper.component.mjs +16 -0
  202. package/esm2020/notification/notification.component.mjs +107 -0
  203. package/{esm2015/notification/notification.config.js → esm2020/notification/notification.config.mjs} +0 -0
  204. package/esm2020/notification/notification.module.mjs +24 -0
  205. package/esm2020/notification/notification.service.mjs +26 -0
  206. package/{esm2015/notification/public-api.js → esm2020/notification/public-api.mjs} +0 -0
  207. package/esm2020/paginator/paginator-intl.mjs +36 -0
  208. package/esm2020/paginator/paginator.component.mjs +125 -0
  209. package/esm2020/paginator/paginator.module.mjs +24 -0
  210. package/{esm2015/paginator/public-api.js → esm2020/paginator/public-api.mjs} +0 -0
  211. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  212. package/esm2020/radio/base-radio.mjs +69 -0
  213. package/{esm2015/radio/public-api.js → esm2020/radio/public-api.mjs} +0 -0
  214. package/esm2020/radio/radio-button/radio-button.component.mjs +42 -0
  215. package/esm2020/radio/radio-group/radio-group.component.mjs +80 -0
  216. package/esm2020/radio/radio.component.mjs +24 -0
  217. package/esm2020/radio/radio.module.mjs +21 -0
  218. package/{esm2015/radio/radio.types.js → esm2020/radio/radio.types.mjs} +0 -0
  219. package/esm2020/scrolling/fixed-size-table-virtual-scroll-strategy.mjs +84 -0
  220. package/esm2020/scrolling/fixed-size-table-virtual-scroll.directive.mjs +122 -0
  221. package/esm2020/scrolling/fixed-size-virtual-scroll.directive.mjs +28 -0
  222. package/esm2020/scrolling/public-api.mjs +7 -0
  223. package/esm2020/scrolling/scrolling.module.mjs +30 -0
  224. package/esm2020/scrolling/virtual-for-of.directive.mjs +36 -0
  225. package/esm2020/scrolling/virtual-scroll-viewport.component.mjs +26 -0
  226. package/esm2020/select/base-select.mjs +339 -0
  227. package/esm2020/select/helper-directives.mjs +29 -0
  228. package/esm2020/select/multi-select/multi-select.component.mjs +292 -0
  229. package/esm2020/select/option/option.component.mjs +110 -0
  230. package/esm2020/select/option-group/option-group.component.mjs +23 -0
  231. package/esm2020/select/option-placeholder.component.mjs +17 -0
  232. package/{esm2015/select/public-api.js → esm2020/select/public-api.mjs} +0 -0
  233. package/esm2020/select/select.component.mjs +107 -0
  234. package/esm2020/select/select.module.mjs +80 -0
  235. package/{esm2015/select/select.types.js → esm2020/select/select.types.mjs} +0 -0
  236. package/esm2020/select/validators.mjs +79 -0
  237. package/esm2020/shared/click-outside.directive.mjs +28 -0
  238. package/esm2020/shared/shared.module.mjs +16 -0
  239. package/{esm2015/sort/public-api.js → esm2020/sort/public-api.mjs} +0 -0
  240. package/{esm2015/sort/sort-errors.js → esm2020/sort/sort-errors.mjs} +0 -0
  241. package/esm2020/sort/sort-header.component.mjs +72 -0
  242. package/esm2020/sort/sort.directive.mjs +75 -0
  243. package/esm2020/sort/sort.module.mjs +19 -0
  244. package/{esm2015/sort/sort.types.js → esm2020/sort/sort.types.mjs} +0 -0
  245. package/{esm2015/status-bar/public-api.js → esm2020/status-bar/public-api.mjs} +0 -0
  246. package/esm2020/status-bar/status-bar.component.mjs +29 -0
  247. package/esm2020/status-bar/status-bar.module.mjs +19 -0
  248. package/{esm2015/status-bar/status-bar.types.js → esm2020/status-bar/status-bar.types.mjs} +0 -0
  249. package/{esm2015/steps/public-api.js → esm2020/steps/public-api.mjs} +0 -0
  250. package/esm2020/steps/steps.component.mjs +183 -0
  251. package/esm2020/steps/steps.module.mjs +19 -0
  252. package/{esm2015/steps/types.js → esm2020/steps/types.mjs} +0 -0
  253. package/{esm2015/switch/public-api.js → esm2020/switch/public-api.mjs} +0 -0
  254. package/esm2020/switch/switch.component.mjs +49 -0
  255. package/esm2020/switch/switch.module.mjs +18 -0
  256. package/esm2020/table/public-api.mjs +15 -0
  257. package/esm2020/table/table-cell-def.directive.mjs +29 -0
  258. package/esm2020/table/table-cell.component.mjs +121 -0
  259. package/esm2020/table/table-cell.directive.mjs +27 -0
  260. package/esm2020/table/table-column-def.directive.mjs +37 -0
  261. package/esm2020/table/table-header-cell-def.directive.mjs +29 -0
  262. package/esm2020/table/table-header-cell.directive.mjs +27 -0
  263. package/esm2020/table/table-header-row-def.directive.mjs +39 -0
  264. package/esm2020/table/table-header-row.component.mjs +25 -0
  265. package/esm2020/table/table-placeholder.directive.mjs +30 -0
  266. package/esm2020/table/table-row-def.directive.mjs +42 -0
  267. package/esm2020/table/table-row.component.mjs +43 -0
  268. package/esm2020/table/table-scroll.directive.mjs +91 -0
  269. package/esm2020/table/table.component.mjs +81 -0
  270. package/esm2020/table/table.module.mjs +96 -0
  271. package/{esm2015/table-of-contents/public-api.js → esm2020/table-of-contents/public-api.mjs} +0 -0
  272. package/esm2020/table-of-contents/table-of-contents.module.mjs +20 -0
  273. package/esm2020/table-of-contents/toc-container.directive.mjs +110 -0
  274. package/esm2020/table-of-contents/toc-content.directive.mjs +35 -0
  275. package/esm2020/table-of-contents/toc-link.directive.mjs +47 -0
  276. package/esm2020/tabs/public-api.mjs +9 -0
  277. package/esm2020/tabs/tab-body.component.mjs +165 -0
  278. package/esm2020/tabs/tab-context.service.mjs +32 -0
  279. package/esm2020/tabs/tab-group.component.mjs +291 -0
  280. package/esm2020/tabs/tab-header-active-indicator.component.mjs +53 -0
  281. package/esm2020/tabs/tab-header.component.mjs +365 -0
  282. package/esm2020/tabs/tab.component.mjs +85 -0
  283. package/esm2020/tabs/tabs.module.mjs +88 -0
  284. package/{esm2015/tabs/tabs.types.js → esm2020/tabs/tabs.types.mjs} +0 -0
  285. package/esm2020/tag/check-tag/check-tag.component.mjs +33 -0
  286. package/{esm2015/tag/public-api.js → esm2020/tag/public-api.mjs} +0 -0
  287. package/esm2020/tag/tag.component.mjs +64 -0
  288. package/esm2020/tag/tag.module.mjs +20 -0
  289. package/{esm2015/tag/tag.types.js → esm2020/tag/tag.types.mjs} +0 -0
  290. package/{esm2015/theme/public-api.js → esm2020/theme/public-api.mjs} +0 -0
  291. package/esm2020/theme/theme.module.mjs +18 -0
  292. package/esm2020/theme/theme.pipe.mjs +70 -0
  293. package/esm2020/theme/theme.service.mjs +53 -0
  294. package/{esm2015/theme/theme.types.js → esm2020/theme/theme.types.mjs} +0 -0
  295. package/{esm2015/theme/utils.js → esm2020/theme/utils.mjs} +0 -0
  296. package/esm2020/time-picker/component.mjs +173 -0
  297. package/esm2020/time-picker/constant.mjs +5 -0
  298. package/esm2020/time-picker/panel/panel.component.mjs +224 -0
  299. package/{esm2015/time-picker/public-api.js → esm2020/time-picker/public-api.mjs} +0 -0
  300. package/esm2020/time-picker/time-picker.module.mjs +58 -0
  301. package/esm2020/time-picker/time-picker.type.mjs +13 -0
  302. package/esm2020/tooltip/base-tooltip.mjs +244 -0
  303. package/esm2020/tooltip/public-api.mjs +9 -0
  304. package/esm2020/tooltip/tooltip-active.directive.mjs +44 -0
  305. package/esm2020/tooltip/tooltip-copy.directive.mjs +78 -0
  306. package/esm2020/tooltip/tooltip-intl.mjs +28 -0
  307. package/esm2020/tooltip/tooltip.component.mjs +49 -0
  308. package/esm2020/tooltip/tooltip.directive.mjs +51 -0
  309. package/esm2020/tooltip/tooltip.module.mjs +33 -0
  310. package/{esm2015/tooltip/tooltip.types.js → esm2020/tooltip/tooltip.types.mjs} +0 -0
  311. package/{esm2015/tooltip/utils/index.js → esm2020/tooltip/utils/index.mjs} +0 -0
  312. package/esm2020/tree-select/public-api.mjs +5 -0
  313. package/esm2020/tree-select/tree-node-placeholder.component.mjs +17 -0
  314. package/esm2020/tree-select/tree-select.component.mjs +343 -0
  315. package/esm2020/tree-select/tree-select.module.mjs +34 -0
  316. package/{esm2015/tree-select/tree-select.types.js → esm2020/tree-select/tree-select.types.mjs} +0 -0
  317. package/{esm2015/types.js → esm2020/types.mjs} +0 -0
  318. package/{esm2015/utils/async.js → esm2020/utils/async.mjs} +0 -0
  319. package/{esm2015/utils/bem.js → esm2020/utils/bem.mjs} +0 -0
  320. package/esm2020/utils/coercion.mjs +17 -0
  321. package/esm2020/utils/fn.mjs +8 -0
  322. package/{esm2015/utils/index.js → esm2020/utils/index.mjs} +0 -0
  323. package/{esm2015/utils/observe-dom.js → esm2020/utils/observe-dom.mjs} +0 -0
  324. package/{esm2015/utils/scroll-into-view.js → esm2020/utils/scroll-into-view.mjs} +0 -0
  325. package/{esm2015/utils/watch-content-exist.js → esm2020/utils/watch-content-exist.mjs} +0 -0
  326. package/fesm2015/alauda-ui.mjs +11581 -0
  327. package/fesm2015/alauda-ui.mjs.map +1 -0
  328. package/fesm2020/alauda-ui.mjs +11507 -0
  329. package/fesm2020/alauda-ui.mjs.map +1 -0
  330. package/form/common-form.d.ts +3 -0
  331. package/form/form-item/form-item.component.d.ts +3 -0
  332. package/form/form.directive.d.ts +3 -0
  333. package/form/form.module.d.ts +8 -0
  334. package/form/helper-directives.d.ts +11 -0
  335. package/i18n/i18n.module.d.ts +5 -0
  336. package/i18n/i18n.pipe.d.ts +3 -0
  337. package/i18n/i18n.service.d.ts +5 -1
  338. package/icon/icon-register.service.d.ts +3 -0
  339. package/icon/icon.component.d.ts +3 -0
  340. package/icon/icon.module.d.ts +7 -0
  341. package/inline-alert/helper-directives.d.ts +3 -0
  342. package/inline-alert/inline-alert.component.d.ts +3 -0
  343. package/inline-alert/inline-alert.module.d.ts +8 -0
  344. package/input/autosize.directive.d.ts +3 -0
  345. package/input/helper-directives.d.ts +9 -0
  346. package/input/input-group/input-group.component.d.ts +3 -0
  347. package/input/input.component.d.ts +7 -21
  348. package/input/input.module.d.ts +17 -0
  349. package/input/number-input/number-input.component.d.ts +3 -0
  350. package/input/public-api.d.ts +2 -0
  351. package/input/search/search.component.d.ts +3 -0
  352. package/input/tags-input/tags-input.component.d.ts +5 -2
  353. package/message/message-wrapper.component.d.ts +3 -0
  354. package/message/message.component.d.ts +3 -0
  355. package/message/message.module.d.ts +9 -0
  356. package/message/message.service.d.ts +3 -0
  357. package/notification/notification-wrapper.component.d.ts +3 -0
  358. package/notification/notification.component.d.ts +5 -3
  359. package/notification/notification.module.d.ts +10 -0
  360. package/notification/notification.service.d.ts +3 -0
  361. package/package.json +28 -16
  362. package/paginator/paginator-intl.d.ts +3 -0
  363. package/paginator/paginator.component.d.ts +3 -0
  364. package/paginator/paginator.module.d.ts +10 -0
  365. package/radio/base-radio.d.ts +3 -0
  366. package/radio/radio-button/radio-button.component.d.ts +3 -0
  367. package/radio/radio-group/radio-group.component.d.ts +3 -0
  368. package/radio/radio.component.d.ts +3 -0
  369. package/radio/radio.module.d.ts +9 -0
  370. package/scrolling/fixed-size-table-virtual-scroll-strategy.d.ts +3 -0
  371. package/scrolling/fixed-size-table-virtual-scroll.directive.d.ts +3 -0
  372. package/scrolling/fixed-size-virtual-scroll.directive.d.ts +3 -0
  373. package/scrolling/public-api.d.ts +1 -0
  374. package/scrolling/scrolling.module.d.ts +8 -0
  375. package/scrolling/virtual-for-of.directive.d.ts +3 -0
  376. package/scrolling/virtual-scroll-viewport.component.d.ts +3 -0
  377. package/select/base-select.d.ts +10 -29
  378. package/select/helper-directives.d.ts +5 -0
  379. package/select/multi-select/multi-select.component.d.ts +4 -0
  380. package/select/option/option.component.d.ts +3 -0
  381. package/select/option-group/option-group.component.d.ts +3 -0
  382. package/select/option-placeholder.component.d.ts +3 -0
  383. package/select/select.component.d.ts +3 -0
  384. package/select/select.module.d.ts +17 -0
  385. package/select/validators.d.ts +3 -0
  386. package/shared/click-outside.directive.d.ts +3 -0
  387. package/shared/shared.module.d.ts +5 -0
  388. package/sort/sort-header.component.d.ts +3 -0
  389. package/sort/sort.directive.d.ts +3 -0
  390. package/sort/sort.module.d.ts +7 -0
  391. package/src/accordion/README.md +13 -0
  392. package/src/anchor/README.md +23 -0
  393. package/src/dropdown/README.md +57 -0
  394. package/src/form/README.md +32 -0
  395. package/src/icon/README.md +28 -0
  396. package/src/inline-alert/README.md +16 -0
  397. package/src/input/number-input/README.md +15 -0
  398. package/src/select/README.md +57 -0
  399. package/src/sort/README.md +13 -0
  400. package/src/table/README.md +8 -0
  401. package/src/table-of-contents/README.md +79 -0
  402. package/src/tag/README.md +32 -0
  403. package/src/tree-select/README.md +34 -0
  404. package/status-bar/status-bar.component.d.ts +3 -0
  405. package/status-bar/status-bar.module.d.ts +7 -0
  406. package/steps/steps.component.d.ts +4 -1
  407. package/steps/steps.module.d.ts +7 -0
  408. package/switch/switch.component.d.ts +3 -0
  409. package/switch/switch.module.d.ts +6 -0
  410. package/table/public-api.d.ts +2 -0
  411. package/table/table-cell-def.directive.d.ts +3 -0
  412. package/table/table-cell.component.d.ts +5 -0
  413. package/table/table-cell.directive.d.ts +3 -0
  414. package/table/table-column-def.directive.d.ts +3 -0
  415. package/table/table-header-cell-def.directive.d.ts +3 -0
  416. package/table/table-header-cell.directive.d.ts +3 -0
  417. package/table/table-header-row-def.directive.d.ts +4 -1
  418. package/table/table-header-row.component.d.ts +3 -0
  419. package/table/table-placeholder.directive.d.ts +5 -0
  420. package/table/table-row-def.directive.d.ts +5 -2
  421. package/table/table-row.component.d.ts +3 -0
  422. package/table/table-scroll.directive.d.ts +5 -0
  423. package/table/table.component.d.ts +3 -0
  424. package/table/table.module.d.ts +20 -0
  425. package/table-of-contents/table-of-contents.module.d.ts +8 -0
  426. package/table-of-contents/toc-container.directive.d.ts +3 -0
  427. package/table-of-contents/toc-content.directive.d.ts +3 -0
  428. package/table-of-contents/toc-link.directive.d.ts +3 -0
  429. package/tabs/public-api.d.ts +0 -1
  430. package/tabs/tab-body.component.d.ts +61 -2
  431. package/tabs/tab-context.service.d.ts +4 -1
  432. package/tabs/tab-group.component.d.ts +7 -12
  433. package/tabs/tab-header-active-indicator.component.d.ts +3 -0
  434. package/tabs/tab-header.component.d.ts +4 -1
  435. package/tabs/tab.component.d.ts +4 -1
  436. package/tabs/tabs.module.d.ts +16 -0
  437. package/tag/check-tag/check-tag.component.d.ts +3 -0
  438. package/tag/tag.component.d.ts +3 -0
  439. package/tag/tag.module.d.ts +8 -0
  440. package/theme/_var.scss +7 -9
  441. package/theme/theme.module.d.ts +6 -0
  442. package/theme/theme.pipe.d.ts +9 -0
  443. package/theme/theme.service.d.ts +3 -0
  444. package/time-picker/component.d.ts +3 -0
  445. package/time-picker/panel/panel.component.d.ts +3 -0
  446. package/time-picker/time-picker.module.d.ts +15 -0
  447. package/tooltip/base-tooltip.d.ts +3 -0
  448. package/tooltip/public-api.d.ts +1 -0
  449. package/tooltip/tooltip-active.directive.d.ts +3 -0
  450. package/tooltip/tooltip-copy.directive.d.ts +3 -0
  451. package/tooltip/tooltip-intl.d.ts +3 -0
  452. package/tooltip/tooltip.component.d.ts +3 -0
  453. package/tooltip/tooltip.directive.d.ts +3 -0
  454. package/tooltip/tooltip.module.d.ts +10 -0
  455. package/tree-select/public-api.d.ts +0 -1
  456. package/tree-select/tree-node-placeholder.component.d.ts +3 -0
  457. package/tree-select/tree-select.component.d.ts +37 -3
  458. package/tree-select/tree-select.module.d.ts +10 -0
  459. package/utils/coercion.d.ts +1 -1
  460. package/utils/fn.d.ts +1 -1
  461. package/utils/observe-dom.d.ts +0 -1
  462. package/accordion/accordion-item/accordion-item.component.ngfactory.d.ts +0 -1
  463. package/accordion/accordion-item/accordion-item.component.scss.ngstyle.d.ts +0 -1
  464. package/accordion/accordion.component.ngfactory.d.ts +0 -1
  465. package/accordion/accordion.component.scss.ngstyle.d.ts +0 -1
  466. package/accordion/accordion.module.ngfactory.d.ts +0 -3
  467. package/alauda-ui.metadata.json +0 -1
  468. package/anchor/anchor.component.ngfactory.d.ts +0 -1
  469. package/anchor/anchor.component.scss.ngstyle.d.ts +0 -1
  470. package/anchor/anchor.module.ngfactory.d.ts +0 -3
  471. package/autocomplete/autocomplete-placeholder.component.ngfactory.d.ts +0 -1
  472. package/autocomplete/autocomplete.component.ngfactory.d.ts +0 -1
  473. package/autocomplete/autocomplete.component.scss.ngstyle.d.ts +0 -1
  474. package/autocomplete/autocomplete.module.ngfactory.d.ts +0 -3
  475. package/autocomplete/suggestion/suggestion.component.ngfactory.d.ts +0 -1
  476. package/autocomplete/suggestion/suggestion.component.scss.ngstyle.d.ts +0 -1
  477. package/autocomplete/suggestion-group/suggestion-group.component.ngfactory.d.ts +0 -1
  478. package/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.d.ts +0 -1
  479. package/back-top/back-top.component.ngfactory.d.ts +0 -1
  480. package/back-top/back-top.component.scss.ngstyle.d.ts +0 -1
  481. package/back-top/back-top.module.ngfactory.d.ts +0 -3
  482. package/breadcrumb/breadcrumb-item.component.ngfactory.d.ts +0 -1
  483. package/breadcrumb/breadcrumb-item.component.scss.ngstyle.d.ts +0 -1
  484. package/breadcrumb/breadcrumb.component.ngfactory.d.ts +0 -1
  485. package/breadcrumb/breadcrumb.component.scss.ngstyle.d.ts +0 -1
  486. package/breadcrumb/breadcrumb.module.ngfactory.d.ts +0 -3
  487. package/bundles/alauda-ui.umd.js +0 -12812
  488. package/bundles/alauda-ui.umd.js.map +0 -1
  489. package/bundles/alauda-ui.umd.min.js +0 -2
  490. package/bundles/alauda-ui.umd.min.js.map +0 -1
  491. package/button/button-group/button-group.component.ngfactory.d.ts +0 -1
  492. package/button/button-group/button-group.component.scss.ngstyle.d.ts +0 -1
  493. package/button/button.component.ngfactory.d.ts +0 -1
  494. package/button/button.component.scss.ngstyle.d.ts +0 -1
  495. package/button/button.module.ngfactory.d.ts +0 -3
  496. package/card/card.component.ngfactory.d.ts +0 -1
  497. package/card/card.component.scss.ngstyle.d.ts +0 -1
  498. package/card/card.module.ngfactory.d.ts +0 -3
  499. package/card/section.component.ngfactory.d.ts +0 -1
  500. package/card/section.component.scss.ngstyle.d.ts +0 -1
  501. package/checkbox/checkbox-group/checkbox-group.component.ngfactory.d.ts +0 -1
  502. package/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.d.ts +0 -1
  503. package/checkbox/checkbox.component.ngfactory.d.ts +0 -1
  504. package/checkbox/checkbox.component.scss.ngstyle.d.ts +0 -1
  505. package/checkbox/checkbox.module.ngfactory.d.ts +0 -3
  506. package/color-picker/color-picker.component.ngfactory.d.ts +0 -1
  507. package/color-picker/color-picker.component.scss.ngstyle.d.ts +0 -1
  508. package/color-picker/color-picker.module.ngfactory.d.ts +0 -3
  509. package/date-picker/calendar/date-picker-panel/component.ngfactory.d.ts +0 -1
  510. package/date-picker/calendar/date-picker-panel/style.scss.ngstyle.d.ts +0 -1
  511. package/date-picker/calendar/footer/component.ngfactory.d.ts +0 -1
  512. package/date-picker/calendar/footer/style.scss.ngstyle.d.ts +0 -1
  513. package/date-picker/calendar/header/component.ngfactory.d.ts +0 -1
  514. package/date-picker/calendar/header/style.scss.ngstyle.d.ts +0 -1
  515. package/date-picker/calendar/panel/picker-panel.ngfactory.d.ts +0 -1
  516. package/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.d.ts +0 -1
  517. package/date-picker/calendar/range-picker-panel/component.ngfactory.d.ts +0 -1
  518. package/date-picker/calendar/range-picker-panel/style.scss.ngstyle.d.ts +0 -1
  519. package/date-picker/date-picker/date-picker.component.ngfactory.d.ts +0 -1
  520. package/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.d.ts +0 -1
  521. package/date-picker/date-picker.module.ngfactory.d.ts +0 -3
  522. package/date-picker/range-picker/range-picker.component.ngfactory.d.ts +0 -1
  523. package/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.d.ts +0 -1
  524. package/date-picker/trigger/trigger.component.ngfactory.d.ts +0 -1
  525. package/date-picker/trigger/trigger.style.scss.shim.ngstyle.d.ts +0 -1
  526. package/dialog/confirm-dialog/confirm-dialog.component.ngfactory.d.ts +0 -1
  527. package/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.d.ts +0 -1
  528. package/dialog/dialog-content/dialog-content.component.ngfactory.d.ts +0 -1
  529. package/dialog/dialog-content/dialog-footer.component.ngfactory.d.ts +0 -1
  530. package/dialog/dialog-content/dialog-header.component.ngfactory.d.ts +0 -1
  531. package/dialog/dialog.component.ngfactory.d.ts +0 -1
  532. package/dialog/dialog.component.scss.ngstyle.d.ts +0 -1
  533. package/dialog/dialog.module.ngfactory.d.ts +0 -3
  534. package/drawer/component/drawer.component.ngfactory.d.ts +0 -1
  535. package/drawer/component/drawer.component.scss.ngstyle.d.ts +0 -1
  536. package/drawer/drawer.module.ngfactory.d.ts +0 -3
  537. package/dropdown/dropdown-button/dropdown-button.component.ngfactory.d.ts +0 -1
  538. package/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.d.ts +0 -1
  539. package/dropdown/dropdown.module.ngfactory.d.ts +0 -3
  540. package/dropdown/menu/menu.component.ngfactory.d.ts +0 -1
  541. package/dropdown/menu/menu.component.scss.ngstyle.d.ts +0 -1
  542. package/dropdown/menu-group/menu-group.component.ngfactory.d.ts +0 -1
  543. package/dropdown/menu-group/menu-group.component.scss.ngstyle.d.ts +0 -1
  544. package/dropdown/menu-item/menu-item.component.ngfactory.d.ts +0 -1
  545. package/dropdown/menu-item/menu-item.component.scss.ngstyle.d.ts +0 -1
  546. package/dropdown/submenu/submenu.component.ngfactory.d.ts +0 -1
  547. package/dropdown/submenu/submenu.component.scss.ngstyle.d.ts +0 -1
  548. package/esm2015/accordion/accordion-item/accordion-item.component.js +0 -68
  549. package/esm2015/accordion/accordion-item/accordion-item.component.ngfactory.js +0 -28
  550. package/esm2015/accordion/accordion-item/accordion-item.component.ngsummary.json +0 -1
  551. package/esm2015/accordion/accordion-item/accordion-item.component.scss.ngstyle.js +0 -9
  552. package/esm2015/accordion/accordion.component.js +0 -28
  553. package/esm2015/accordion/accordion.component.ngfactory.js +0 -17
  554. package/esm2015/accordion/accordion.component.ngsummary.json +0 -1
  555. package/esm2015/accordion/accordion.component.scss.ngstyle.js +0 -9
  556. package/esm2015/accordion/accordion.module.js +0 -28
  557. package/esm2015/accordion/accordion.module.ngfactory.js +0 -18
  558. package/esm2015/accordion/accordion.module.ngsummary.json +0 -1
  559. package/esm2015/accordion/public-api.ngsummary.json +0 -1
  560. package/esm2015/alauda-ui.js +0 -25
  561. package/esm2015/alauda-ui.ngsummary.json +0 -1
  562. package/esm2015/anchor/anchor.component.js +0 -146
  563. package/esm2015/anchor/anchor.component.ngfactory.js +0 -40
  564. package/esm2015/anchor/anchor.component.ngsummary.json +0 -1
  565. package/esm2015/anchor/anchor.component.scss.ngstyle.js +0 -9
  566. package/esm2015/anchor/anchor.directive.js +0 -174
  567. package/esm2015/anchor/anchor.directive.ngsummary.json +0 -1
  568. package/esm2015/anchor/anchor.module.js +0 -25
  569. package/esm2015/anchor/anchor.module.ngfactory.js +0 -13
  570. package/esm2015/anchor/anchor.module.ngsummary.json +0 -1
  571. package/esm2015/anchor/public-api.ngsummary.json +0 -1
  572. package/esm2015/anchor/types.ngsummary.json +0 -1
  573. package/esm2015/anchor/utils.ngsummary.json +0 -1
  574. package/esm2015/autocomplete/autocomplete-placeholder.component.js +0 -13
  575. package/esm2015/autocomplete/autocomplete-placeholder.component.ngfactory.js +0 -16
  576. package/esm2015/autocomplete/autocomplete-placeholder.component.ngsummary.json +0 -1
  577. package/esm2015/autocomplete/autocomplete.component.js +0 -40
  578. package/esm2015/autocomplete/autocomplete.component.ngfactory.js +0 -22
  579. package/esm2015/autocomplete/autocomplete.component.ngsummary.json +0 -1
  580. package/esm2015/autocomplete/autocomplete.component.scss.ngstyle.js +0 -9
  581. package/esm2015/autocomplete/autocomplete.directive.js +0 -253
  582. package/esm2015/autocomplete/autocomplete.directive.ngsummary.json +0 -1
  583. package/esm2015/autocomplete/autocomplete.module.js +0 -36
  584. package/esm2015/autocomplete/autocomplete.module.ngfactory.js +0 -20
  585. package/esm2015/autocomplete/autocomplete.module.ngsummary.json +0 -1
  586. package/esm2015/autocomplete/autocomplete.types.ngsummary.json +0 -1
  587. package/esm2015/autocomplete/helper-directives.js +0 -13
  588. package/esm2015/autocomplete/helper-directives.ngsummary.json +0 -1
  589. package/esm2015/autocomplete/public-api.ngsummary.json +0 -1
  590. package/esm2015/autocomplete/suggestion/suggestion.component.js +0 -79
  591. package/esm2015/autocomplete/suggestion/suggestion.component.ngfactory.js +0 -22
  592. package/esm2015/autocomplete/suggestion/suggestion.component.ngsummary.json +0 -1
  593. package/esm2015/autocomplete/suggestion/suggestion.component.scss.ngstyle.js +0 -9
  594. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.js +0 -25
  595. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngfactory.js +0 -18
  596. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngsummary.json +0 -1
  597. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.js +0 -9
  598. package/esm2015/back-top/back-top.component.js +0 -75
  599. package/esm2015/back-top/back-top.component.ngfactory.js +0 -25
  600. package/esm2015/back-top/back-top.component.ngsummary.json +0 -1
  601. package/esm2015/back-top/back-top.component.scss.ngstyle.js +0 -9
  602. package/esm2015/back-top/back-top.module.js +0 -14
  603. package/esm2015/back-top/back-top.module.ngfactory.js +0 -16
  604. package/esm2015/back-top/back-top.module.ngsummary.json +0 -1
  605. package/esm2015/back-top/public-api.ngsummary.json +0 -1
  606. package/esm2015/breadcrumb/breadcrumb-item.component.js +0 -36
  607. package/esm2015/breadcrumb/breadcrumb-item.component.ngfactory.js +0 -23
  608. package/esm2015/breadcrumb/breadcrumb-item.component.ngsummary.json +0 -1
  609. package/esm2015/breadcrumb/breadcrumb-item.component.scss.ngstyle.js +0 -9
  610. package/esm2015/breadcrumb/breadcrumb.component.js +0 -58
  611. package/esm2015/breadcrumb/breadcrumb.component.ngfactory.js +0 -17
  612. package/esm2015/breadcrumb/breadcrumb.component.ngsummary.json +0 -1
  613. package/esm2015/breadcrumb/breadcrumb.component.scss.ngstyle.js +0 -9
  614. package/esm2015/breadcrumb/breadcrumb.module.js +0 -15
  615. package/esm2015/breadcrumb/breadcrumb.module.ngfactory.js +0 -16
  616. package/esm2015/breadcrumb/breadcrumb.module.ngsummary.json +0 -1
  617. package/esm2015/breadcrumb/public-api.ngsummary.json +0 -1
  618. package/esm2015/button/button-group/button-group.component.js +0 -14
  619. package/esm2015/button/button-group/button-group.component.ngfactory.js +0 -17
  620. package/esm2015/button/button-group/button-group.component.ngsummary.json +0 -1
  621. package/esm2015/button/button-group/button-group.component.scss.ngstyle.js +0 -9
  622. package/esm2015/button/button.component.js +0 -124
  623. package/esm2015/button/button.component.ngfactory.js +0 -23
  624. package/esm2015/button/button.component.ngsummary.json +0 -1
  625. package/esm2015/button/button.component.scss.ngstyle.js +0 -9
  626. package/esm2015/button/button.module.js +0 -15
  627. package/esm2015/button/button.module.ngfactory.js +0 -16
  628. package/esm2015/button/button.module.ngsummary.json +0 -1
  629. package/esm2015/button/button.types.ngsummary.json +0 -1
  630. package/esm2015/button/public-api.ngsummary.json +0 -1
  631. package/esm2015/card/card.component.js +0 -20
  632. package/esm2015/card/card.component.ngfactory.js +0 -17
  633. package/esm2015/card/card.component.ngsummary.json +0 -1
  634. package/esm2015/card/card.component.scss.ngstyle.js +0 -9
  635. package/esm2015/card/card.module.js +0 -27
  636. package/esm2015/card/card.module.ngfactory.js +0 -12
  637. package/esm2015/card/card.module.ngsummary.json +0 -1
  638. package/esm2015/card/helper-directives.js +0 -33
  639. package/esm2015/card/helper-directives.ngsummary.json +0 -1
  640. package/esm2015/card/public-api.ngsummary.json +0 -1
  641. package/esm2015/card/section.component.js +0 -14
  642. package/esm2015/card/section.component.ngfactory.js +0 -17
  643. package/esm2015/card/section.component.ngsummary.json +0 -1
  644. package/esm2015/card/section.component.scss.ngstyle.js +0 -9
  645. package/esm2015/checkbox/checkbox-group/checkbox-group.component.js +0 -60
  646. package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngfactory.js +0 -18
  647. package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngsummary.json +0 -1
  648. package/esm2015/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.js +0 -9
  649. package/esm2015/checkbox/checkbox.component.js +0 -105
  650. package/esm2015/checkbox/checkbox.component.ngfactory.js +0 -30
  651. package/esm2015/checkbox/checkbox.component.ngsummary.json +0 -1
  652. package/esm2015/checkbox/checkbox.component.scss.ngstyle.js +0 -9
  653. package/esm2015/checkbox/checkbox.module.js +0 -15
  654. package/esm2015/checkbox/checkbox.module.ngfactory.js +0 -16
  655. package/esm2015/checkbox/checkbox.module.ngsummary.json +0 -1
  656. package/esm2015/checkbox/public-api.ngsummary.json +0 -1
  657. package/esm2015/color-picker/color-picker.component.js +0 -29
  658. package/esm2015/color-picker/color-picker.component.ngfactory.js +0 -22
  659. package/esm2015/color-picker/color-picker.component.ngsummary.json +0 -1
  660. package/esm2015/color-picker/color-picker.component.scss.ngstyle.js +0 -9
  661. package/esm2015/color-picker/color-picker.module.js +0 -14
  662. package/esm2015/color-picker/color-picker.module.ngfactory.js +0 -13
  663. package/esm2015/color-picker/color-picker.module.ngsummary.json +0 -1
  664. package/esm2015/color-picker/public-api.ngsummary.json +0 -1
  665. package/esm2015/date-picker/calendar/constant.ngsummary.json +0 -1
  666. package/esm2015/date-picker/calendar/date-picker-panel/component.js +0 -106
  667. package/esm2015/date-picker/calendar/date-picker-panel/component.ngfactory.js +0 -65
  668. package/esm2015/date-picker/calendar/date-picker-panel/component.ngsummary.json +0 -1
  669. package/esm2015/date-picker/calendar/date-picker-panel/style.scss.ngstyle.js +0 -9
  670. package/esm2015/date-picker/calendar/footer/component.js +0 -25
  671. package/esm2015/date-picker/calendar/footer/component.ngfactory.js +0 -32
  672. package/esm2015/date-picker/calendar/footer/component.ngsummary.json +0 -1
  673. package/esm2015/date-picker/calendar/footer/style.scss.ngstyle.js +0 -9
  674. package/esm2015/date-picker/calendar/header/component.js +0 -100
  675. package/esm2015/date-picker/calendar/header/component.ngfactory.js +0 -58
  676. package/esm2015/date-picker/calendar/header/component.ngsummary.json +0 -1
  677. package/esm2015/date-picker/calendar/header/style.scss.ngstyle.js +0 -9
  678. package/esm2015/date-picker/calendar/panel/picker-panel.js +0 -144
  679. package/esm2015/date-picker/calendar/panel/picker-panel.ngfactory.js +0 -34
  680. package/esm2015/date-picker/calendar/panel/picker-panel.ngsummary.json +0 -1
  681. package/esm2015/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.js +0 -9
  682. package/esm2015/date-picker/calendar/range-picker-panel/component.js +0 -193
  683. package/esm2015/date-picker/calendar/range-picker-panel/component.ngfactory.js +0 -76
  684. package/esm2015/date-picker/calendar/range-picker-panel/component.ngsummary.json +0 -1
  685. package/esm2015/date-picker/calendar/range-picker-panel/style.scss.ngstyle.js +0 -9
  686. package/esm2015/date-picker/calendar/util.ngsummary.json +0 -1
  687. package/esm2015/date-picker/date-picker/date-picker.component.js +0 -84
  688. package/esm2015/date-picker/date-picker/date-picker.component.ngfactory.js +0 -49
  689. package/esm2015/date-picker/date-picker/date-picker.component.ngsummary.json +0 -1
  690. package/esm2015/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.js +0 -9
  691. package/esm2015/date-picker/date-picker.module.js +0 -47
  692. package/esm2015/date-picker/date-picker.module.ngfactory.js +0 -31
  693. package/esm2015/date-picker/date-picker.module.ngsummary.json +0 -1
  694. package/esm2015/date-picker/date-picker.type.ngsummary.json +0 -1
  695. package/esm2015/date-picker/public-api.js +0 -11
  696. package/esm2015/date-picker/public-api.ngsummary.json +0 -1
  697. package/esm2015/date-picker/range-picker/range-picker.component.js +0 -66
  698. package/esm2015/date-picker/range-picker/range-picker.component.ngfactory.js +0 -49
  699. package/esm2015/date-picker/range-picker/range-picker.component.ngsummary.json +0 -1
  700. package/esm2015/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.js +0 -9
  701. package/esm2015/date-picker/trigger/trigger.component.js +0 -61
  702. package/esm2015/date-picker/trigger/trigger.component.ngfactory.js +0 -66
  703. package/esm2015/date-picker/trigger/trigger.component.ngsummary.json +0 -1
  704. package/esm2015/date-picker/trigger/trigger.style.scss.shim.ngstyle.js +0 -9
  705. package/esm2015/dialog/confirm-dialog/confirm-dialog-config.ngsummary.json +0 -1
  706. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.js +0 -95
  707. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngfactory.js +0 -32
  708. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngsummary.json +0 -1
  709. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.js +0 -9
  710. package/esm2015/dialog/dialog-config.ngsummary.json +0 -1
  711. package/esm2015/dialog/dialog-content/dialog-close.directive.js +0 -35
  712. package/esm2015/dialog/dialog-content/dialog-close.directive.ngsummary.json +0 -1
  713. package/esm2015/dialog/dialog-content/dialog-content.component.js +0 -27
  714. package/esm2015/dialog/dialog-content/dialog-content.component.ngfactory.js +0 -18
  715. package/esm2015/dialog/dialog-content/dialog-content.component.ngsummary.json +0 -1
  716. package/esm2015/dialog/dialog-content/dialog-footer.component.js +0 -17
  717. package/esm2015/dialog/dialog-content/dialog-footer.component.ngfactory.js +0 -16
  718. package/esm2015/dialog/dialog-content/dialog-footer.component.ngsummary.json +0 -1
  719. package/esm2015/dialog/dialog-content/dialog-header.component.js +0 -41
  720. package/esm2015/dialog/dialog-content/dialog-header.component.ngfactory.js +0 -26
  721. package/esm2015/dialog/dialog-content/dialog-header.component.ngsummary.json +0 -1
  722. package/esm2015/dialog/dialog-ref.ngsummary.json +0 -1
  723. package/esm2015/dialog/dialog.component.js +0 -64
  724. package/esm2015/dialog/dialog.component.ngfactory.js +0 -20
  725. package/esm2015/dialog/dialog.component.ngsummary.json +0 -1
  726. package/esm2015/dialog/dialog.component.scss.ngstyle.js +0 -9
  727. package/esm2015/dialog/dialog.module.js +0 -44
  728. package/esm2015/dialog/dialog.module.ngfactory.js +0 -25
  729. package/esm2015/dialog/dialog.module.ngsummary.json +0 -1
  730. package/esm2015/dialog/dialog.service.js +0 -132
  731. package/esm2015/dialog/dialog.service.ngsummary.json +0 -1
  732. package/esm2015/dialog/dialog.types.ngsummary.json +0 -1
  733. package/esm2015/dialog/public-api.js +0 -11
  734. package/esm2015/dialog/public-api.ngsummary.json +0 -1
  735. package/esm2015/dialog/utils/errors.ngsummary.json +0 -1
  736. package/esm2015/dialog/utils/index.js +0 -11
  737. package/esm2015/dialog/utils/index.ngsummary.json +0 -1
  738. package/esm2015/drawer/component/drawer-ref.ngsummary.json +0 -1
  739. package/esm2015/drawer/component/drawer.component.js +0 -210
  740. package/esm2015/drawer/component/drawer.component.ngfactory.js +0 -42
  741. package/esm2015/drawer/component/drawer.component.ngsummary.json +0 -1
  742. package/esm2015/drawer/component/drawer.component.scss.ngstyle.js +0 -9
  743. package/esm2015/drawer/component/helper-directives.js +0 -27
  744. package/esm2015/drawer/component/helper-directives.ngsummary.json +0 -1
  745. package/esm2015/drawer/drawer.module.js +0 -26
  746. package/esm2015/drawer/drawer.module.ngfactory.js +0 -23
  747. package/esm2015/drawer/drawer.module.ngsummary.json +0 -1
  748. package/esm2015/drawer/drawer.service.js +0 -46
  749. package/esm2015/drawer/drawer.service.ngsummary.json +0 -1
  750. package/esm2015/drawer/public-api.ngsummary.json +0 -1
  751. package/esm2015/dropdown/dropdown-active.directive.js +0 -13
  752. package/esm2015/dropdown/dropdown-active.directive.ngsummary.json +0 -1
  753. package/esm2015/dropdown/dropdown-button/dropdown-button.component.js +0 -46
  754. package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngfactory.js +0 -29
  755. package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngsummary.json +0 -1
  756. package/esm2015/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.js +0 -9
  757. package/esm2015/dropdown/dropdown.directive.js +0 -73
  758. package/esm2015/dropdown/dropdown.directive.ngsummary.json +0 -1
  759. package/esm2015/dropdown/dropdown.module.js +0 -44
  760. package/esm2015/dropdown/dropdown.module.ngfactory.js +0 -25
  761. package/esm2015/dropdown/dropdown.module.ngsummary.json +0 -1
  762. package/esm2015/dropdown/dropdown.types.ngsummary.json +0 -1
  763. package/esm2015/dropdown/helper-directives.js +0 -13
  764. package/esm2015/dropdown/helper-directives.ngsummary.json +0 -1
  765. package/esm2015/dropdown/menu/menu-content.directive.js +0 -54
  766. package/esm2015/dropdown/menu/menu-content.directive.ngsummary.json +0 -1
  767. package/esm2015/dropdown/menu/menu.component.js +0 -32
  768. package/esm2015/dropdown/menu/menu.component.ngfactory.js +0 -18
  769. package/esm2015/dropdown/menu/menu.component.ngsummary.json +0 -1
  770. package/esm2015/dropdown/menu/menu.component.scss.ngstyle.js +0 -9
  771. package/esm2015/dropdown/menu-group/menu-group.component.js +0 -14
  772. package/esm2015/dropdown/menu-group/menu-group.component.ngfactory.js +0 -17
  773. package/esm2015/dropdown/menu-group/menu-group.component.ngsummary.json +0 -1
  774. package/esm2015/dropdown/menu-group/menu-group.component.scss.ngstyle.js +0 -9
  775. package/esm2015/dropdown/menu-item/menu-item.component.js +0 -38
  776. package/esm2015/dropdown/menu-item/menu-item.component.ngfactory.js +0 -17
  777. package/esm2015/dropdown/menu-item/menu-item.component.ngsummary.json +0 -1
  778. package/esm2015/dropdown/menu-item/menu-item.component.scss.ngstyle.js +0 -9
  779. package/esm2015/dropdown/public-api.js +0 -11
  780. package/esm2015/dropdown/public-api.ngsummary.json +0 -1
  781. package/esm2015/dropdown/submenu/submenu.component.js +0 -37
  782. package/esm2015/dropdown/submenu/submenu.component.ngfactory.js +0 -29
  783. package/esm2015/dropdown/submenu/submenu.component.ngsummary.json +0 -1
  784. package/esm2015/dropdown/submenu/submenu.component.scss.ngstyle.js +0 -9
  785. package/esm2015/form/common-form.js +0 -89
  786. package/esm2015/form/common-form.ngsummary.json +0 -1
  787. package/esm2015/form/form-item/form-item.component.js +0 -93
  788. package/esm2015/form/form-item/form-item.component.ngfactory.js +0 -23
  789. package/esm2015/form/form-item/form-item.component.ngsummary.json +0 -1
  790. package/esm2015/form/form-item/form-item.component.scss.ngstyle.js +0 -9
  791. package/esm2015/form/form.directive.js +0 -58
  792. package/esm2015/form/form.directive.ngsummary.json +0 -1
  793. package/esm2015/form/form.module.js +0 -31
  794. package/esm2015/form/form.module.ngfactory.js +0 -12
  795. package/esm2015/form/form.module.ngsummary.json +0 -1
  796. package/esm2015/form/form.types.ngsummary.json +0 -1
  797. package/esm2015/form/helper-directives.js +0 -66
  798. package/esm2015/form/helper-directives.ngsummary.json +0 -1
  799. package/esm2015/form/public-api.ngsummary.json +0 -1
  800. package/esm2015/i18n/i18n.module.js +0 -11
  801. package/esm2015/i18n/i18n.module.ngfactory.js +0 -11
  802. package/esm2015/i18n/i18n.module.ngsummary.json +0 -1
  803. package/esm2015/i18n/i18n.pipe.js +0 -19
  804. package/esm2015/i18n/i18n.pipe.ngsummary.json +0 -1
  805. package/esm2015/i18n/i18n.service.js +0 -43
  806. package/esm2015/i18n/i18n.service.ngsummary.json +0 -1
  807. package/esm2015/i18n/i18n.type.js +0 -6
  808. package/esm2015/i18n/i18n.type.ngsummary.json +0 -1
  809. package/esm2015/i18n/language/en.ngsummary.json +0 -1
  810. package/esm2015/i18n/language/zh.ngsummary.json +0 -1
  811. package/esm2015/i18n/public-api.ngsummary.json +0 -1
  812. package/esm2015/icon/icon-register.service.js +0 -63
  813. package/esm2015/icon/icon-register.service.ngsummary.json +0 -1
  814. package/esm2015/icon/icon.component.js +0 -62
  815. package/esm2015/icon/icon.component.ngfactory.js +0 -25
  816. package/esm2015/icon/icon.component.ngsummary.json +0 -1
  817. package/esm2015/icon/icon.component.scss.ngstyle.js +0 -9
  818. package/esm2015/icon/icon.module.js +0 -16
  819. package/esm2015/icon/icon.module.ngfactory.js +0 -15
  820. package/esm2015/icon/icon.module.ngsummary.json +0 -1
  821. package/esm2015/icon/icons.ngsummary.json +0 -1
  822. package/esm2015/icon/public-api.ngsummary.json +0 -1
  823. package/esm2015/icon/utils.ngsummary.json +0 -1
  824. package/esm2015/inline-alert/helper-directives.js +0 -10
  825. package/esm2015/inline-alert/helper-directives.ngsummary.json +0 -1
  826. package/esm2015/inline-alert/inline-alert.component.js +0 -51
  827. package/esm2015/inline-alert/inline-alert.component.ngfactory.js +0 -29
  828. package/esm2015/inline-alert/inline-alert.component.ngsummary.json +0 -1
  829. package/esm2015/inline-alert/inline-alert.component.scss.ngstyle.js +0 -9
  830. package/esm2015/inline-alert/inline-alert.module.js +0 -15
  831. package/esm2015/inline-alert/inline-alert.module.ngfactory.js +0 -16
  832. package/esm2015/inline-alert/inline-alert.module.ngsummary.json +0 -1
  833. package/esm2015/inline-alert/inline-alert.types.ngsummary.json +0 -1
  834. package/esm2015/inline-alert/public-api.ngsummary.json +0 -1
  835. package/esm2015/input/autosize.directive.js +0 -61
  836. package/esm2015/input/autosize.directive.ngsummary.json +0 -1
  837. package/esm2015/input/helper-directives.js +0 -30
  838. package/esm2015/input/helper-directives.ngsummary.json +0 -1
  839. package/esm2015/input/input-group/input-group.component.js +0 -33
  840. package/esm2015/input/input-group/input-group.component.ngfactory.js +0 -22
  841. package/esm2015/input/input-group/input-group.component.ngsummary.json +0 -1
  842. package/esm2015/input/input-group/input-group.component.scss.ngstyle.js +0 -9
  843. package/esm2015/input/input.component.js +0 -69
  844. package/esm2015/input/input.component.ngfactory.js +0 -17
  845. package/esm2015/input/input.component.ngsummary.json +0 -1
  846. package/esm2015/input/input.component.scss.ngstyle.js +0 -9
  847. package/esm2015/input/input.module.js +0 -54
  848. package/esm2015/input/input.module.ngfactory.js +0 -20
  849. package/esm2015/input/input.module.ngsummary.json +0 -1
  850. package/esm2015/input/number-input/number-input.component.js +0 -83
  851. package/esm2015/input/number-input/number-input.component.ngfactory.js +0 -51
  852. package/esm2015/input/number-input/number-input.component.ngsummary.json +0 -1
  853. package/esm2015/input/number-input/number-input.component.scss.ngstyle.js +0 -9
  854. package/esm2015/input/public-api.js +0 -7
  855. package/esm2015/input/public-api.ngsummary.json +0 -1
  856. package/esm2015/input/search/search.component.js +0 -72
  857. package/esm2015/input/search/search.component.ngfactory.js +0 -51
  858. package/esm2015/input/search/search.component.ngsummary.json +0 -1
  859. package/esm2015/input/search/search.component.scss.ngstyle.js +0 -9
  860. package/esm2015/input/tags-input/tags-input.component.js +0 -252
  861. package/esm2015/input/tags-input/tags-input.component.ngfactory.js +0 -45
  862. package/esm2015/input/tags-input/tags-input.component.ngsummary.json +0 -1
  863. package/esm2015/input/tags-input/tags-input.component.scss.ngstyle.js +0 -9
  864. package/esm2015/input/tags-input/with-max-row-count.ngsummary.json +0 -1
  865. package/esm2015/input/utils/index.ngsummary.json +0 -1
  866. package/esm2015/message/base-message.js +0 -87
  867. package/esm2015/message/base-message.ngsummary.json +0 -1
  868. package/esm2015/message/message-animations.ngsummary.json +0 -1
  869. package/esm2015/message/message-wrapper.component.js +0 -20
  870. package/esm2015/message/message-wrapper.component.ngfactory.js +0 -17
  871. package/esm2015/message/message-wrapper.component.ngsummary.json +0 -1
  872. package/esm2015/message/message-wrapper.component.scss.ngstyle.js +0 -9
  873. package/esm2015/message/message.component.js +0 -77
  874. package/esm2015/message/message.component.ngfactory.js +0 -23
  875. package/esm2015/message/message.component.ngsummary.json +0 -1
  876. package/esm2015/message/message.component.scss.ngstyle.js +0 -9
  877. package/esm2015/message/message.config.ngsummary.json +0 -1
  878. package/esm2015/message/message.module.js +0 -18
  879. package/esm2015/message/message.module.ngfactory.js +0 -25
  880. package/esm2015/message/message.module.ngsummary.json +0 -1
  881. package/esm2015/message/message.service.js +0 -22
  882. package/esm2015/message/message.service.ngsummary.json +0 -1
  883. package/esm2015/message/public-api.ngsummary.json +0 -1
  884. package/esm2015/notification/notification-wrapper.component.js +0 -22
  885. package/esm2015/notification/notification-wrapper.component.ngfactory.js +0 -17
  886. package/esm2015/notification/notification-wrapper.component.ngsummary.json +0 -1
  887. package/esm2015/notification/notification-wrapper.component.scss.ngstyle.js +0 -9
  888. package/esm2015/notification/notification.component.js +0 -106
  889. package/esm2015/notification/notification.component.ngfactory.js +0 -42
  890. package/esm2015/notification/notification.component.ngsummary.json +0 -1
  891. package/esm2015/notification/notification.component.scss.ngstyle.js +0 -9
  892. package/esm2015/notification/notification.config.ngsummary.json +0 -1
  893. package/esm2015/notification/notification.module.js +0 -19
  894. package/esm2015/notification/notification.module.ngfactory.js +0 -25
  895. package/esm2015/notification/notification.module.ngsummary.json +0 -1
  896. package/esm2015/notification/notification.service.js +0 -22
  897. package/esm2015/notification/notification.service.ngsummary.json +0 -1
  898. package/esm2015/notification/public-api.ngsummary.json +0 -1
  899. package/esm2015/paginator/paginator-intl.js +0 -33
  900. package/esm2015/paginator/paginator-intl.ngsummary.json +0 -1
  901. package/esm2015/paginator/paginator.component.js +0 -118
  902. package/esm2015/paginator/paginator.component.ngfactory.js +0 -73
  903. package/esm2015/paginator/paginator.component.ngsummary.json +0 -1
  904. package/esm2015/paginator/paginator.component.scss.ngstyle.js +0 -9
  905. package/esm2015/paginator/paginator.module.js +0 -19
  906. package/esm2015/paginator/paginator.module.ngfactory.js +0 -32
  907. package/esm2015/paginator/paginator.module.ngsummary.json +0 -1
  908. package/esm2015/paginator/public-api.ngsummary.json +0 -1
  909. package/esm2015/public-api.ngsummary.json +0 -1
  910. package/esm2015/radio/base-radio.js +0 -69
  911. package/esm2015/radio/base-radio.ngsummary.json +0 -1
  912. package/esm2015/radio/public-api.ngsummary.json +0 -1
  913. package/esm2015/radio/radio-button/radio-button.component.js +0 -48
  914. package/esm2015/radio/radio-button/radio-button.component.ngfactory.js +0 -30
  915. package/esm2015/radio/radio-button/radio-button.component.ngsummary.json +0 -1
  916. package/esm2015/radio/radio-button/radio-button.component.scss.ngstyle.js +0 -9
  917. package/esm2015/radio/radio-group/radio-group.component.js +0 -75
  918. package/esm2015/radio/radio-group/radio-group.component.ngfactory.js +0 -18
  919. package/esm2015/radio/radio-group/radio-group.component.ngsummary.json +0 -1
  920. package/esm2015/radio/radio-group/radio-group.component.scss.ngstyle.js +0 -9
  921. package/esm2015/radio/radio.component.js +0 -31
  922. package/esm2015/radio/radio.component.ngfactory.js +0 -26
  923. package/esm2015/radio/radio.component.ngsummary.json +0 -1
  924. package/esm2015/radio/radio.component.scss.ngstyle.js +0 -9
  925. package/esm2015/radio/radio.module.js +0 -16
  926. package/esm2015/radio/radio.module.ngfactory.js +0 -16
  927. package/esm2015/radio/radio.module.ngsummary.json +0 -1
  928. package/esm2015/radio/radio.types.ngsummary.json +0 -1
  929. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.js +0 -81
  930. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.ngsummary.json +0 -1
  931. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.js +0 -108
  932. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.ngsummary.json +0 -1
  933. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.js +0 -20
  934. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.ngsummary.json +0 -1
  935. package/esm2015/scrolling/public-api.js +0 -6
  936. package/esm2015/scrolling/public-api.ngsummary.json +0 -1
  937. package/esm2015/scrolling/scrolling.module.js +0 -21
  938. package/esm2015/scrolling/scrolling.module.ngfactory.js +0 -11
  939. package/esm2015/scrolling/scrolling.module.ngsummary.json +0 -1
  940. package/esm2015/scrolling/virtual-for-of.directive.js +0 -30
  941. package/esm2015/scrolling/virtual-for-of.directive.ngsummary.json +0 -1
  942. package/esm2015/scrolling/virtual-scroll-viewport.component.js +0 -26
  943. package/esm2015/scrolling/virtual-scroll-viewport.component.ngfactory.js +0 -19
  944. package/esm2015/scrolling/virtual-scroll-viewport.component.ngsummary.json +0 -1
  945. package/esm2015/scrolling/virtual-scroll-viewport.component.scss.ngstyle.js +0 -9
  946. package/esm2015/select/base-select.js +0 -311
  947. package/esm2015/select/base-select.ngsummary.json +0 -1
  948. package/esm2015/select/helper-directives.js +0 -22
  949. package/esm2015/select/helper-directives.ngsummary.json +0 -1
  950. package/esm2015/select/multi-select/multi-select.component.js +0 -276
  951. package/esm2015/select/multi-select/multi-select.component.ngfactory.js +0 -76
  952. package/esm2015/select/multi-select/multi-select.component.ngsummary.json +0 -1
  953. package/esm2015/select/multi-select/multi-select.component.scss.ngstyle.js +0 -9
  954. package/esm2015/select/option/option.component.js +0 -107
  955. package/esm2015/select/option/option.component.ngfactory.js +0 -26
  956. package/esm2015/select/option/option.component.ngsummary.json +0 -1
  957. package/esm2015/select/option/option.component.scss.ngstyle.js +0 -9
  958. package/esm2015/select/option-group/option-group.component.js +0 -25
  959. package/esm2015/select/option-group/option-group.component.ngfactory.js +0 -18
  960. package/esm2015/select/option-group/option-group.component.ngsummary.json +0 -1
  961. package/esm2015/select/option-group/option-group.component.scss.ngstyle.js +0 -9
  962. package/esm2015/select/option-placeholder.component.js +0 -13
  963. package/esm2015/select/option-placeholder.component.ngfactory.js +0 -16
  964. package/esm2015/select/option-placeholder.component.ngsummary.json +0 -1
  965. package/esm2015/select/public-api.ngsummary.json +0 -1
  966. package/esm2015/select/select.component.js +0 -95
  967. package/esm2015/select/select.component.ngfactory.js +0 -63
  968. package/esm2015/select/select.component.ngsummary.json +0 -1
  969. package/esm2015/select/select.component.scss.ngstyle.js +0 -9
  970. package/esm2015/select/select.module.js +0 -49
  971. package/esm2015/select/select.module.ngfactory.js +0 -30
  972. package/esm2015/select/select.module.ngsummary.json +0 -1
  973. package/esm2015/select/select.types.ngsummary.json +0 -1
  974. package/esm2015/select/validators.js +0 -72
  975. package/esm2015/select/validators.ngsummary.json +0 -1
  976. package/esm2015/shared/click-outside.directive.js +0 -26
  977. package/esm2015/shared/click-outside.directive.ngsummary.json +0 -1
  978. package/esm2015/shared/shared.module.js +0 -11
  979. package/esm2015/shared/shared.module.ngfactory.js +0 -11
  980. package/esm2015/shared/shared.module.ngsummary.json +0 -1
  981. package/esm2015/sort/public-api.ngsummary.json +0 -1
  982. package/esm2015/sort/sort-errors.ngsummary.json +0 -1
  983. package/esm2015/sort/sort-header.component.js +0 -76
  984. package/esm2015/sort/sort-header.component.ngfactory.js +0 -22
  985. package/esm2015/sort/sort-header.component.ngsummary.json +0 -1
  986. package/esm2015/sort/sort-header.component.scss.ngstyle.js +0 -9
  987. package/esm2015/sort/sort.directive.js +0 -69
  988. package/esm2015/sort/sort.directive.ngsummary.json +0 -1
  989. package/esm2015/sort/sort.module.js +0 -14
  990. package/esm2015/sort/sort.module.ngfactory.js +0 -12
  991. package/esm2015/sort/sort.module.ngsummary.json +0 -1
  992. package/esm2015/sort/sort.types.ngsummary.json +0 -1
  993. package/esm2015/status-bar/public-api.ngsummary.json +0 -1
  994. package/esm2015/status-bar/status-bar.component.js +0 -28
  995. package/esm2015/status-bar/status-bar.component.ngfactory.js +0 -26
  996. package/esm2015/status-bar/status-bar.component.ngsummary.json +0 -1
  997. package/esm2015/status-bar/status-bar.component.scss.ngstyle.js +0 -9
  998. package/esm2015/status-bar/status-bar.module.js +0 -14
  999. package/esm2015/status-bar/status-bar.module.ngfactory.js +0 -20
  1000. package/esm2015/status-bar/status-bar.module.ngsummary.json +0 -1
  1001. package/esm2015/status-bar/status-bar.types.ngsummary.json +0 -1
  1002. package/esm2015/steps/public-api.ngsummary.json +0 -1
  1003. package/esm2015/steps/steps.component.js +0 -179
  1004. package/esm2015/steps/steps.component.ngfactory.js +0 -34
  1005. package/esm2015/steps/steps.component.ngsummary.json +0 -1
  1006. package/esm2015/steps/steps.component.scss.ngstyle.js +0 -9
  1007. package/esm2015/steps/steps.module.js +0 -14
  1008. package/esm2015/steps/steps.module.ngfactory.js +0 -16
  1009. package/esm2015/steps/steps.module.ngsummary.json +0 -1
  1010. package/esm2015/steps/types.ngsummary.json +0 -1
  1011. package/esm2015/switch/public-api.ngsummary.json +0 -1
  1012. package/esm2015/switch/switch.component.js +0 -47
  1013. package/esm2015/switch/switch.component.ngfactory.js +0 -25
  1014. package/esm2015/switch/switch.component.ngsummary.json +0 -1
  1015. package/esm2015/switch/switch.component.scss.ngstyle.js +0 -9
  1016. package/esm2015/switch/switch.module.js +0 -13
  1017. package/esm2015/switch/switch.module.ngfactory.js +0 -12
  1018. package/esm2015/switch/switch.module.ngsummary.json +0 -1
  1019. package/esm2015/table/public-api.js +0 -13
  1020. package/esm2015/table/public-api.ngsummary.json +0 -1
  1021. package/esm2015/table/table-cell-def.directive.js +0 -20
  1022. package/esm2015/table/table-cell-def.directive.ngsummary.json +0 -1
  1023. package/esm2015/table/table-cell.component.js +0 -82
  1024. package/esm2015/table/table-cell.component.ngfactory.js +0 -32
  1025. package/esm2015/table/table-cell.component.ngsummary.json +0 -1
  1026. package/esm2015/table/table-cell.directive.js +0 -26
  1027. package/esm2015/table/table-cell.directive.ngsummary.json +0 -1
  1028. package/esm2015/table/table-column-def.directive.js +0 -29
  1029. package/esm2015/table/table-column-def.directive.ngsummary.json +0 -1
  1030. package/esm2015/table/table-header-cell-def.directive.js +0 -20
  1031. package/esm2015/table/table-header-cell-def.directive.ngsummary.json +0 -1
  1032. package/esm2015/table/table-header-cell.directive.js +0 -26
  1033. package/esm2015/table/table-header-cell.directive.ngsummary.json +0 -1
  1034. package/esm2015/table/table-header-row-def.directive.js +0 -24
  1035. package/esm2015/table/table-header-row-def.directive.ngsummary.json +0 -1
  1036. package/esm2015/table/table-header-row.component.js +0 -20
  1037. package/esm2015/table/table-header-row.component.ngfactory.js +0 -17
  1038. package/esm2015/table/table-header-row.component.ngsummary.json +0 -1
  1039. package/esm2015/table/table-placeholder.directive.js +0 -30
  1040. package/esm2015/table/table-placeholder.directive.ngsummary.json +0 -1
  1041. package/esm2015/table/table-row-def.directive.js +0 -25
  1042. package/esm2015/table/table-row-def.directive.ngsummary.json +0 -1
  1043. package/esm2015/table/table-row.component.js +0 -37
  1044. package/esm2015/table/table-row.component.ngfactory.js +0 -17
  1045. package/esm2015/table/table-row.component.ngsummary.json +0 -1
  1046. package/esm2015/table/table-scroll.directive.js +0 -84
  1047. package/esm2015/table/table-scroll.directive.ngsummary.json +0 -1
  1048. package/esm2015/table/table-scroll.scss.ngstyle.js +0 -9
  1049. package/esm2015/table/table.component.js +0 -69
  1050. package/esm2015/table/table.component.ngfactory.js +0 -25
  1051. package/esm2015/table/table.component.ngsummary.json +0 -1
  1052. package/esm2015/table/table.component.scss.ngstyle.js +0 -9
  1053. package/esm2015/table/table.module.js +0 -61
  1054. package/esm2015/table/table.module.ngfactory.js +0 -20
  1055. package/esm2015/table/table.module.ngsummary.json +0 -1
  1056. package/esm2015/table-of-contents/public-api.ngsummary.json +0 -1
  1057. package/esm2015/table-of-contents/table-of-contents.module.js +0 -15
  1058. package/esm2015/table-of-contents/table-of-contents.module.ngfactory.js +0 -12
  1059. package/esm2015/table-of-contents/table-of-contents.module.ngsummary.json +0 -1
  1060. package/esm2015/table-of-contents/toc-container.directive.js +0 -109
  1061. package/esm2015/table-of-contents/toc-container.directive.ngsummary.json +0 -1
  1062. package/esm2015/table-of-contents/toc-content.directive.js +0 -32
  1063. package/esm2015/table-of-contents/toc-content.directive.ngsummary.json +0 -1
  1064. package/esm2015/table-of-contents/toc-link.directive.js +0 -43
  1065. package/esm2015/table-of-contents/toc-link.directive.ngsummary.json +0 -1
  1066. package/esm2015/tabs/public-api.js +0 -10
  1067. package/esm2015/tabs/public-api.ngsummary.json +0 -1
  1068. package/esm2015/tabs/tab-body.component.js +0 -35
  1069. package/esm2015/tabs/tab-body.component.ngfactory.js +0 -18
  1070. package/esm2015/tabs/tab-body.component.ngsummary.json +0 -1
  1071. package/esm2015/tabs/tab-context.service.js +0 -28
  1072. package/esm2015/tabs/tab-context.service.ngsummary.json +0 -1
  1073. package/esm2015/tabs/tab-directives.js +0 -142
  1074. package/esm2015/tabs/tab-directives.ngsummary.json +0 -1
  1075. package/esm2015/tabs/tab-group.component.js +0 -277
  1076. package/esm2015/tabs/tab-group.component.ngfactory.js +0 -56
  1077. package/esm2015/tabs/tab-group.component.ngsummary.json +0 -1
  1078. package/esm2015/tabs/tab-group.component.scss.ngstyle.js +0 -9
  1079. package/esm2015/tabs/tab-header-active-indicator.component.js +0 -59
  1080. package/esm2015/tabs/tab-header-active-indicator.component.ngfactory.js +0 -17
  1081. package/esm2015/tabs/tab-header-active-indicator.component.ngsummary.json +0 -1
  1082. package/esm2015/tabs/tab-header.component.js +0 -348
  1083. package/esm2015/tabs/tab-header.component.ngfactory.js +0 -44
  1084. package/esm2015/tabs/tab-header.component.ngsummary.json +0 -1
  1085. package/esm2015/tabs/tab-header.component.scss.ngstyle.js +0 -9
  1086. package/esm2015/tabs/tab.component.js +0 -82
  1087. package/esm2015/tabs/tab.component.ngfactory.js +0 -18
  1088. package/esm2015/tabs/tab.component.ngsummary.json +0 -1
  1089. package/esm2015/tabs/tabs.module.js +0 -53
  1090. package/esm2015/tabs/tabs.module.ngfactory.js +0 -22
  1091. package/esm2015/tabs/tabs.module.ngsummary.json +0 -1
  1092. package/esm2015/tabs/tabs.types.ngsummary.json +0 -1
  1093. package/esm2015/tag/check-tag/check-tag.component.js +0 -34
  1094. package/esm2015/tag/check-tag/check-tag.component.ngfactory.js +0 -27
  1095. package/esm2015/tag/check-tag/check-tag.component.ngsummary.json +0 -1
  1096. package/esm2015/tag/check-tag/check-tag.component.scss.ngstyle.js +0 -9
  1097. package/esm2015/tag/public-api.ngsummary.json +0 -1
  1098. package/esm2015/tag/tag.component.js +0 -57
  1099. package/esm2015/tag/tag.component.ngfactory.js +0 -26
  1100. package/esm2015/tag/tag.component.ngsummary.json +0 -1
  1101. package/esm2015/tag/tag.component.scss.ngstyle.js +0 -9
  1102. package/esm2015/tag/tag.module.js +0 -15
  1103. package/esm2015/tag/tag.module.ngfactory.js +0 -16
  1104. package/esm2015/tag/tag.module.ngsummary.json +0 -1
  1105. package/esm2015/tag/tag.types.ngsummary.json +0 -1
  1106. package/esm2015/theme/public-api.ngsummary.json +0 -1
  1107. package/esm2015/theme/theme.module.js +0 -13
  1108. package/esm2015/theme/theme.module.ngfactory.js +0 -12
  1109. package/esm2015/theme/theme.module.ngsummary.json +0 -1
  1110. package/esm2015/theme/theme.pipe.js +0 -61
  1111. package/esm2015/theme/theme.pipe.ngsummary.json +0 -1
  1112. package/esm2015/theme/theme.service.js +0 -52
  1113. package/esm2015/theme/theme.service.ngsummary.json +0 -1
  1114. package/esm2015/theme/theme.types.ngsummary.json +0 -1
  1115. package/esm2015/theme/utils.ngsummary.json +0 -1
  1116. package/esm2015/time-picker/component.js +0 -149
  1117. package/esm2015/time-picker/component.ngfactory.js +0 -82
  1118. package/esm2015/time-picker/component.ngsummary.json +0 -1
  1119. package/esm2015/time-picker/constant.js +0 -9
  1120. package/esm2015/time-picker/constant.ngsummary.json +0 -1
  1121. package/esm2015/time-picker/panel/panel.component.js +0 -211
  1122. package/esm2015/time-picker/panel/panel.component.ngfactory.js +0 -49
  1123. package/esm2015/time-picker/panel/panel.component.ngsummary.json +0 -1
  1124. package/esm2015/time-picker/panel/panel.style.scss.ngstyle.js +0 -9
  1125. package/esm2015/time-picker/public-api.ngsummary.json +0 -1
  1126. package/esm2015/time-picker/style.scss.ngstyle.js +0 -9
  1127. package/esm2015/time-picker/time-picker.module.js +0 -33
  1128. package/esm2015/time-picker/time-picker.module.ngfactory.js +0 -30
  1129. package/esm2015/time-picker/time-picker.module.ngsummary.json +0 -1
  1130. package/esm2015/time-picker/time-picker.type.js +0 -13
  1131. package/esm2015/time-picker/time-picker.type.ngsummary.json +0 -1
  1132. package/esm2015/tooltip/base-tooltip.js +0 -255
  1133. package/esm2015/tooltip/base-tooltip.ngsummary.json +0 -1
  1134. package/esm2015/tooltip/public-api.js +0 -8
  1135. package/esm2015/tooltip/public-api.ngsummary.json +0 -1
  1136. package/esm2015/tooltip/tooltip-active.directive.js +0 -44
  1137. package/esm2015/tooltip/tooltip-active.directive.ngsummary.json +0 -1
  1138. package/esm2015/tooltip/tooltip-copy.directive.js +0 -80
  1139. package/esm2015/tooltip/tooltip-copy.directive.ngsummary.json +0 -1
  1140. package/esm2015/tooltip/tooltip-intl.js +0 -25
  1141. package/esm2015/tooltip/tooltip-intl.ngsummary.json +0 -1
  1142. package/esm2015/tooltip/tooltip.component.js +0 -55
  1143. package/esm2015/tooltip/tooltip.component.ngfactory.js +0 -25
  1144. package/esm2015/tooltip/tooltip.component.ngsummary.json +0 -1
  1145. package/esm2015/tooltip/tooltip.component.scss.ngstyle.js +0 -9
  1146. package/esm2015/tooltip/tooltip.directive.js +0 -45
  1147. package/esm2015/tooltip/tooltip.directive.ngsummary.json +0 -1
  1148. package/esm2015/tooltip/tooltip.module.js +0 -25
  1149. package/esm2015/tooltip/tooltip.module.ngfactory.js +0 -19
  1150. package/esm2015/tooltip/tooltip.module.ngsummary.json +0 -1
  1151. package/esm2015/tooltip/tooltip.types.ngsummary.json +0 -1
  1152. package/esm2015/tooltip/utils/index.ngsummary.json +0 -1
  1153. package/esm2015/tree-select/public-api.js +0 -6
  1154. package/esm2015/tree-select/public-api.ngsummary.json +0 -1
  1155. package/esm2015/tree-select/tree-node/tree-node.component.js +0 -127
  1156. package/esm2015/tree-select/tree-node/tree-node.component.ngfactory.js +0 -32
  1157. package/esm2015/tree-select/tree-node/tree-node.component.ngsummary.json +0 -1
  1158. package/esm2015/tree-select/tree-node/tree-node.component.scss.ngstyle.js +0 -9
  1159. package/esm2015/tree-select/tree-node-placeholder.component.js +0 -13
  1160. package/esm2015/tree-select/tree-node-placeholder.component.ngfactory.js +0 -16
  1161. package/esm2015/tree-select/tree-node-placeholder.component.ngsummary.json +0 -1
  1162. package/esm2015/tree-select/tree-select.component.js +0 -204
  1163. package/esm2015/tree-select/tree-select.component.ngfactory.js +0 -56
  1164. package/esm2015/tree-select/tree-select.component.ngsummary.json +0 -1
  1165. package/esm2015/tree-select/tree-select.component.scss.ngstyle.js +0 -9
  1166. package/esm2015/tree-select/tree-select.module.js +0 -26
  1167. package/esm2015/tree-select/tree-select.module.ngfactory.js +0 -29
  1168. package/esm2015/tree-select/tree-select.module.ngsummary.json +0 -1
  1169. package/esm2015/tree-select/tree-select.types.ngsummary.json +0 -1
  1170. package/esm2015/types.ngsummary.json +0 -1
  1171. package/esm2015/utils/async.ngsummary.json +0 -1
  1172. package/esm2015/utils/bem.ngsummary.json +0 -1
  1173. package/esm2015/utils/coercion.js +0 -16
  1174. package/esm2015/utils/coercion.ngsummary.json +0 -1
  1175. package/esm2015/utils/fn.js +0 -8
  1176. package/esm2015/utils/fn.ngsummary.json +0 -1
  1177. package/esm2015/utils/index.ngsummary.json +0 -1
  1178. package/esm2015/utils/observe-dom.ngsummary.json +0 -1
  1179. package/esm2015/utils/scroll-into-view.ngsummary.json +0 -1
  1180. package/esm2015/utils/watch-content-exist.ngsummary.json +0 -1
  1181. package/fesm2015/alauda-ui.js +0 -10768
  1182. package/fesm2015/alauda-ui.js.map +0 -1
  1183. package/form/form-item/form-item.component.ngfactory.d.ts +0 -1
  1184. package/form/form-item/form-item.component.scss.ngstyle.d.ts +0 -1
  1185. package/form/form.module.ngfactory.d.ts +0 -3
  1186. package/i18n/i18n.module.ngfactory.d.ts +0 -3
  1187. package/icon/icon.component.ngfactory.d.ts +0 -1
  1188. package/icon/icon.component.scss.ngstyle.d.ts +0 -1
  1189. package/icon/icon.module.ngfactory.d.ts +0 -3
  1190. package/inline-alert/inline-alert.component.ngfactory.d.ts +0 -1
  1191. package/inline-alert/inline-alert.component.scss.ngstyle.d.ts +0 -1
  1192. package/inline-alert/inline-alert.module.ngfactory.d.ts +0 -3
  1193. package/input/input-group/input-group.component.ngfactory.d.ts +0 -1
  1194. package/input/input-group/input-group.component.scss.ngstyle.d.ts +0 -1
  1195. package/input/input.component.ngfactory.d.ts +0 -1
  1196. package/input/input.component.scss.ngstyle.d.ts +0 -1
  1197. package/input/input.module.ngfactory.d.ts +0 -3
  1198. package/input/number-input/number-input.component.ngfactory.d.ts +0 -1
  1199. package/input/number-input/number-input.component.scss.ngstyle.d.ts +0 -1
  1200. package/input/search/search.component.ngfactory.d.ts +0 -1
  1201. package/input/search/search.component.scss.ngstyle.d.ts +0 -1
  1202. package/input/tags-input/tags-input.component.ngfactory.d.ts +0 -1
  1203. package/input/tags-input/tags-input.component.scss.ngstyle.d.ts +0 -1
  1204. package/message/message-wrapper.component.ngfactory.d.ts +0 -1
  1205. package/message/message-wrapper.component.scss.ngstyle.d.ts +0 -1
  1206. package/message/message.component.ngfactory.d.ts +0 -1
  1207. package/message/message.component.scss.ngstyle.d.ts +0 -1
  1208. package/message/message.module.ngfactory.d.ts +0 -3
  1209. package/notification/notification-wrapper.component.ngfactory.d.ts +0 -1
  1210. package/notification/notification-wrapper.component.scss.ngstyle.d.ts +0 -1
  1211. package/notification/notification.component.ngfactory.d.ts +0 -1
  1212. package/notification/notification.component.scss.ngstyle.d.ts +0 -1
  1213. package/notification/notification.module.ngfactory.d.ts +0 -3
  1214. package/paginator/paginator.component.ngfactory.d.ts +0 -1
  1215. package/paginator/paginator.component.scss.ngstyle.d.ts +0 -1
  1216. package/paginator/paginator.module.ngfactory.d.ts +0 -3
  1217. package/radio/radio-button/radio-button.component.ngfactory.d.ts +0 -1
  1218. package/radio/radio-button/radio-button.component.scss.ngstyle.d.ts +0 -1
  1219. package/radio/radio-group/radio-group.component.ngfactory.d.ts +0 -1
  1220. package/radio/radio-group/radio-group.component.scss.ngstyle.d.ts +0 -1
  1221. package/radio/radio.component.ngfactory.d.ts +0 -1
  1222. package/radio/radio.component.scss.ngstyle.d.ts +0 -1
  1223. package/radio/radio.module.ngfactory.d.ts +0 -3
  1224. package/scrolling/scrolling.module.ngfactory.d.ts +0 -3
  1225. package/scrolling/virtual-scroll-viewport.component.ngfactory.d.ts +0 -1
  1226. package/scrolling/virtual-scroll-viewport.component.scss.ngstyle.d.ts +0 -1
  1227. package/select/multi-select/multi-select.component.ngfactory.d.ts +0 -1
  1228. package/select/multi-select/multi-select.component.scss.ngstyle.d.ts +0 -1
  1229. package/select/option/option.component.ngfactory.d.ts +0 -1
  1230. package/select/option/option.component.scss.ngstyle.d.ts +0 -1
  1231. package/select/option-group/option-group.component.ngfactory.d.ts +0 -1
  1232. package/select/option-group/option-group.component.scss.ngstyle.d.ts +0 -1
  1233. package/select/option-placeholder.component.ngfactory.d.ts +0 -1
  1234. package/select/select.component.ngfactory.d.ts +0 -1
  1235. package/select/select.component.scss.ngstyle.d.ts +0 -1
  1236. package/select/select.module.ngfactory.d.ts +0 -3
  1237. package/shared/shared.module.ngfactory.d.ts +0 -3
  1238. package/sort/sort-header.component.ngfactory.d.ts +0 -1
  1239. package/sort/sort-header.component.scss.ngstyle.d.ts +0 -1
  1240. package/sort/sort.module.ngfactory.d.ts +0 -3
  1241. package/status-bar/status-bar.component.ngfactory.d.ts +0 -1
  1242. package/status-bar/status-bar.component.scss.ngstyle.d.ts +0 -1
  1243. package/status-bar/status-bar.module.ngfactory.d.ts +0 -3
  1244. package/steps/steps.component.ngfactory.d.ts +0 -1
  1245. package/steps/steps.component.scss.ngstyle.d.ts +0 -1
  1246. package/steps/steps.module.ngfactory.d.ts +0 -3
  1247. package/switch/switch.component.ngfactory.d.ts +0 -1
  1248. package/switch/switch.component.scss.ngstyle.d.ts +0 -1
  1249. package/switch/switch.module.ngfactory.d.ts +0 -3
  1250. package/table/table-cell.component.ngfactory.d.ts +0 -1
  1251. package/table/table-header-row.component.ngfactory.d.ts +0 -1
  1252. package/table/table-row.component.ngfactory.d.ts +0 -1
  1253. package/table/table-scroll.scss.ngstyle.d.ts +0 -1
  1254. package/table/table.component.ngfactory.d.ts +0 -1
  1255. package/table/table.component.scss.ngstyle.d.ts +0 -1
  1256. package/table/table.module.ngfactory.d.ts +0 -3
  1257. package/table-of-contents/table-of-contents.module.ngfactory.d.ts +0 -3
  1258. package/tabs/tab-body.component.ngfactory.d.ts +0 -1
  1259. package/tabs/tab-directives.d.ts +0 -47
  1260. package/tabs/tab-group.component.ngfactory.d.ts +0 -1
  1261. package/tabs/tab-group.component.scss.ngstyle.d.ts +0 -1
  1262. package/tabs/tab-header-active-indicator.component.ngfactory.d.ts +0 -1
  1263. package/tabs/tab-header.component.ngfactory.d.ts +0 -1
  1264. package/tabs/tab-header.component.scss.ngstyle.d.ts +0 -1
  1265. package/tabs/tab.component.ngfactory.d.ts +0 -1
  1266. package/tabs/tabs.module.ngfactory.d.ts +0 -3
  1267. package/tag/check-tag/check-tag.component.ngfactory.d.ts +0 -1
  1268. package/tag/check-tag/check-tag.component.scss.ngstyle.d.ts +0 -1
  1269. package/tag/tag.component.ngfactory.d.ts +0 -1
  1270. package/tag/tag.component.scss.ngstyle.d.ts +0 -1
  1271. package/tag/tag.module.ngfactory.d.ts +0 -3
  1272. package/theme/theme.module.ngfactory.d.ts +0 -3
  1273. package/time-picker/component.ngfactory.d.ts +0 -1
  1274. package/time-picker/panel/panel.component.ngfactory.d.ts +0 -1
  1275. package/time-picker/panel/panel.style.scss.ngstyle.d.ts +0 -1
  1276. package/time-picker/style.scss.ngstyle.d.ts +0 -1
  1277. package/time-picker/time-picker.module.ngfactory.d.ts +0 -3
  1278. package/tooltip/tooltip.component.ngfactory.d.ts +0 -1
  1279. package/tooltip/tooltip.component.scss.ngstyle.d.ts +0 -1
  1280. package/tooltip/tooltip.module.ngfactory.d.ts +0 -3
  1281. package/tree-select/tree-node/tree-node.component.d.ts +0 -34
  1282. package/tree-select/tree-node/tree-node.component.ngfactory.d.ts +0 -1
  1283. package/tree-select/tree-node/tree-node.component.scss.ngstyle.d.ts +0 -1
  1284. package/tree-select/tree-node-placeholder.component.ngfactory.d.ts +0 -1
  1285. package/tree-select/tree-select.component.ngfactory.d.ts +0 -1
  1286. package/tree-select/tree-select.component.scss.ngstyle.d.ts +0 -1
  1287. package/tree-select/tree-select.module.ngfactory.d.ts +0 -3
  1288. package/tsconfig.lib.tsbuildinfo +0 -3
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"columns":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]},"arguments":["auiTableHeaderRowDef"]}]}],"sticky":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]},"arguments":["auiTableHeaderRowDefSticky"]}]}]}},"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":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":4,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}}],"lifecycleHooks":[3]},"isComponent":false,"selector":"[auiTableHeaderRowDef]","exportAs":null,"inputs":{"columns":"auiTableHeaderRowDef","sticky":"auiTableHeaderRowDefSticky"},"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":"TableHeaderRowDefDirective","filePath":"./table-header-row-def.directive"},{"__symbol":1,"name":"CdkHeaderRowDef","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"TemplateRef","filePath":"@angular/core"},{"__symbol":4,"name":"IterableDiffers","filePath":"@angular/core"},{"__symbol":5,"name":"CDK_TABLE","filePath":"@angular/cdk/table/index"}]}
@@ -1,20 +0,0 @@
1
- import { CDK_ROW_TEMPLATE, CdkHeaderRow } from '@angular/cdk/table';
2
- import { ChangeDetectionStrategy, Component, ViewEncapsulation, } from '@angular/core';
3
- /** Header template container that contains the cell outlet. Adds the right class and role. */
4
- export class TableHeaderRowComponent extends CdkHeaderRow {
5
- }
6
- TableHeaderRowComponent.decorators = [
7
- { type: Component, args: [{
8
- selector: 'aui-table-header-row',
9
- template: CDK_ROW_TEMPLATE,
10
- host: {
11
- class: 'aui-table__header-row',
12
- role: 'row',
13
- },
14
- changeDetection: ChangeDetectionStrategy.OnPush,
15
- encapsulation: ViewEncapsulation.None,
16
- exportAs: 'auiTableHeaderRow',
17
- preserveWhitespaces: false
18
- },] }
19
- ];
20
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtaGVhZGVyLXJvdy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdGFibGUvdGFibGUtaGVhZGVyLXJvdy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFlBQVksRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3BFLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULGlCQUFpQixHQUNsQixNQUFNLGVBQWUsQ0FBQztBQUV2Qiw4RkFBOEY7QUFhOUYsTUFBTSxPQUFPLHVCQUF3QixTQUFRLFlBQVk7OztZQVp4RCxTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHNCQUFzQjtnQkFDaEMsUUFBUSxFQUFFLGdCQUFnQjtnQkFDMUIsSUFBSSxFQUFFO29CQUNKLEtBQUssRUFBRSx1QkFBdUI7b0JBQzlCLElBQUksRUFBRSxLQUFLO2lCQUNaO2dCQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO2dCQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtnQkFDckMsUUFBUSxFQUFFLG1CQUFtQjtnQkFDN0IsbUJBQW1CLEVBQUUsS0FBSzthQUMzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENES19ST1dfVEVNUExBVEUsIENka0hlYWRlclJvdyB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBWaWV3RW5jYXBzdWxhdGlvbixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8qKiBIZWFkZXIgdGVtcGxhdGUgY29udGFpbmVyIHRoYXQgY29udGFpbnMgdGhlIGNlbGwgb3V0bGV0LiBBZGRzIHRoZSByaWdodCBjbGFzcyBhbmQgcm9sZS4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F1aS10YWJsZS1oZWFkZXItcm93JyxcbiAgdGVtcGxhdGU6IENES19ST1dfVEVNUExBVEUsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2F1aS10YWJsZV9faGVhZGVyLXJvdycsXG4gICAgcm9sZTogJ3JvdycsXG4gIH0sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBleHBvcnRBczogJ2F1aVRhYmxlSGVhZGVyUm93JyxcbiAgcHJlc2VydmVXaGl0ZXNwYWNlczogZmFsc2UsXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlSGVhZGVyUm93Q29tcG9uZW50IGV4dGVuZHMgQ2RrSGVhZGVyUm93IHt9XG4iXX0=
@@ -1,17 +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 "@angular/cdk/table";
9
- import * as i2 from "./table-header-row.component";
10
- var styles_TableHeaderRowComponent = [];
11
- var RenderType_TableHeaderRowComponent = i0.ɵcrt({ encapsulation: 2, styles: styles_TableHeaderRowComponent, data: {} });
12
- export { RenderType_TableHeaderRowComponent as RenderType_TableHeaderRowComponent };
13
- export function View_TableHeaderRowComponent_0(_l) { return i0.ɵvid(2, [(_l()(), i0.ɵeld(0, 16777216, null, null, 1, null, null, null, null, null, null, null)), i0.ɵdid(1, 147456, null, 0, i1.CdkCellOutlet, [i0.ViewContainerRef], null, null)], null, null); }
14
- export function View_TableHeaderRowComponent_Host_0(_l) { return i0.ɵvid(0, [(_l()(), i0.ɵeld(0, 0, null, null, 1, "aui-table-header-row", [["class", "aui-table__header-row"], ["role", "row"]], null, null, null, View_TableHeaderRowComponent_0, RenderType_TableHeaderRowComponent)), i0.ɵdid(1, 49152, null, 0, i2.TableHeaderRowComponent, [], null, null)], null, null); }
15
- var TableHeaderRowComponentNgFactory = i0.ɵccf("aui-table-header-row", i2.TableHeaderRowComponent, View_TableHeaderRowComponent_Host_0, {}, {}, []);
16
- export { TableHeaderRowComponentNgFactory as TableHeaderRowComponentNgFactory };
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtaGVhZGVyLXJvdy5jb21wb25lbnQubmdmYWN0b3J5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLWhlYWRlci1yb3cuY29tcG9uZW50Lm5nZmFjdG9yeS50cyIsIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS1oZWFkZXItcm93LmNvbXBvbmVudC50cy5UYWJsZUhlYWRlclJvd0NvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozt5RUNBQSx1S0FBMkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iLCI8bmctY29udGFpbmVyIGNka0NlbGxPdXRsZXQ+PC9uZy1jb250YWluZXI+Il19
@@ -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":[],"lifecycleHooks":[]},"isComponent":true,"selector":"aui-table-header-row","exportAs":"auiTableHeaderRow","inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{"class":"aui-table__header-row","role":"row"},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":[],"encapsulation":2,"styles":[],"animations":[]},"componentViewType":{"__symbol":2,"members":[]},"rendererType":{"__symbol":3,"members":[]},"componentFactory":{"__symbol":4,"members":[]}}}],"symbols":[{"__symbol":0,"name":"TableHeaderRowComponent","filePath":"./table-header-row.component"},{"__symbol":1,"name":"CdkHeaderRow","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"View_TableHeaderRowComponent_0","filePath":"./table-header-row.component.ngfactory"},{"__symbol":3,"name":"RenderType_TableHeaderRowComponent","filePath":"./table-header-row.component.ngfactory"},{"__symbol":4,"name":"TableHeaderRowComponentNgFactory","filePath":"./table-header-row.component.ngfactory"}]}
@@ -1,30 +0,0 @@
1
- import { Directive, ElementRef, TemplateRef, ViewContainerRef, } from '@angular/core';
2
- export class TablePlaceholderDefDirective {
3
- constructor(templateRef) {
4
- this.templateRef = templateRef;
5
- }
6
- }
7
- TablePlaceholderDefDirective.decorators = [
8
- { type: Directive, args: [{
9
- selector: 'ng-template[auiTablePlaceholderDef]',
10
- },] }
11
- ];
12
- TablePlaceholderDefDirective.ctorParameters = () => [
13
- { type: TemplateRef }
14
- ];
15
- export class TablePlaceholderOutlet {
16
- constructor(viewContainer, elementRef) {
17
- this.viewContainer = viewContainer;
18
- this.elementRef = elementRef;
19
- }
20
- }
21
- TablePlaceholderOutlet.decorators = [
22
- { type: Directive, args: [{
23
- selector: '[auiTablePlaceholderOutlet]',
24
- },] }
25
- ];
26
- TablePlaceholderOutlet.ctorParameters = () => [
27
- { type: ViewContainerRef },
28
- { type: ElementRef }
29
- ];
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtcGxhY2Vob2xkZXIuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLXBsYWNlaG9sZGVyLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQ0wsU0FBUyxFQUNULFVBQVUsRUFDVixXQUFXLEVBQ1gsZ0JBQWdCLEdBQ2pCLE1BQU0sZUFBZSxDQUFDO0FBS3ZCLE1BQU0sT0FBTyw0QkFBNEI7SUFDdkMsWUFBbUIsV0FBNkI7UUFBN0IsZ0JBQVcsR0FBWCxXQUFXLENBQWtCO0lBQUcsQ0FBQzs7O1lBSnJELFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUscUNBQXFDO2FBQ2hEOzs7WUFOQyxXQUFXOztBQWNiLE1BQU0sT0FBTyxzQkFBc0I7SUFDakMsWUFDUyxhQUErQixFQUMvQixVQUFzQjtRQUR0QixrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFDL0IsZUFBVSxHQUFWLFVBQVUsQ0FBWTtJQUM1QixDQUFDOzs7WUFQTCxTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLDZCQUE2QjthQUN4Qzs7O1lBWkMsZ0JBQWdCO1lBRmhCLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBSb3dPdXRsZXQgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHtcbiAgRGlyZWN0aXZlLFxuICBFbGVtZW50UmVmLFxuICBUZW1wbGF0ZVJlZixcbiAgVmlld0NvbnRhaW5lclJlZixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ25nLXRlbXBsYXRlW2F1aVRhYmxlUGxhY2Vob2xkZXJEZWZdJyxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVQbGFjZWhvbGRlckRlZkRpcmVjdGl2ZSB7XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyB0ZW1wbGF0ZVJlZjogVGVtcGxhdGVSZWY8YW55Pikge31cbn1cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2F1aVRhYmxlUGxhY2Vob2xkZXJPdXRsZXRdJyxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVQbGFjZWhvbGRlck91dGxldCBpbXBsZW1lbnRzIFJvd091dGxldCB7XG4gIGNvbnN0cnVjdG9yKFxuICAgIHB1YmxpYyB2aWV3Q29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmLFxuICAgIHB1YmxpYyBlbGVtZW50UmVmOiBFbGVtZW50UmVmLFxuICApIHt9XG59XG4iXX0=
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__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":1,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":false,"selector":"ng-template[auiTablePlaceholderDef]","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}},{"symbol":{"__symbol":2,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbol":3,"members":[]},{"__symbol":4,"members":[]}]}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":2,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":4,"members":[]}}}}],"lifecycleHooks":[]},"isComponent":false,"selector":"[auiTablePlaceholderOutlet]","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}}],"symbols":[{"__symbol":0,"name":"TablePlaceholderDefDirective","filePath":"./table-placeholder.directive"},{"__symbol":1,"name":"TemplateRef","filePath":"@angular/core"},{"__symbol":2,"name":"TablePlaceholderOutlet","filePath":"./table-placeholder.directive"},{"__symbol":3,"name":"ViewContainerRef","filePath":"@angular/core"},{"__symbol":4,"name":"ElementRef","filePath":"@angular/core"}]}
@@ -1,25 +0,0 @@
1
- import { CdkRowDef } from '@angular/cdk/table';
2
- import { Directive, Input } from '@angular/core';
3
- /**
4
- * Data row definition for the aui-table.
5
- * Captures the header row's template and other row properties such as the columns to display and
6
- * a when predicate that describes when this row should be used.
7
- */
8
- export class TableRowDefDirective extends CdkRowDef {
9
- }
10
- TableRowDefDirective.decorators = [
11
- { type: Directive, args: [{
12
- selector: '[auiTableRowDef]',
13
- providers: [
14
- {
15
- provide: CdkRowDef,
16
- useExisting: TableRowDefDirective,
17
- },
18
- ],
19
- },] }
20
- ];
21
- TableRowDefDirective.propDecorators = {
22
- columns: [{ type: Input, args: ['auiTableRowDefColumns',] }],
23
- when: [{ type: Input, args: ['auiTableRowDefWhen',] }]
24
- };
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtcm93LWRlZi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdGFibGUvdGFibGUtcm93LWRlZi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRWpEOzs7O0dBSUc7QUFVSCxNQUFNLE9BQU8sb0JBQXdCLFNBQVEsU0FBWTs7O1lBVHhELFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsa0JBQWtCO2dCQUM1QixTQUFTLEVBQUU7b0JBQ1Q7d0JBQ0UsT0FBTyxFQUFFLFNBQVM7d0JBQ2xCLFdBQVcsRUFBRSxvQkFBb0I7cUJBQ2xDO2lCQUNGO2FBQ0Y7OztzQkFFRSxLQUFLLFNBQUMsdUJBQXVCO21CQUc3QixLQUFLLFNBQUMsb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrUm93RGVmIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuLyoqXG4gKiBEYXRhIHJvdyBkZWZpbml0aW9uIGZvciB0aGUgYXVpLXRhYmxlLlxuICogQ2FwdHVyZXMgdGhlIGhlYWRlciByb3cncyB0ZW1wbGF0ZSBhbmQgb3RoZXIgcm93IHByb3BlcnRpZXMgc3VjaCBhcyB0aGUgY29sdW1ucyB0byBkaXNwbGF5IGFuZFxuICogYSB3aGVuIHByZWRpY2F0ZSB0aGF0IGRlc2NyaWJlcyB3aGVuIHRoaXMgcm93IHNob3VsZCBiZSB1c2VkLlxuICovXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpVGFibGVSb3dEZWZdJyxcbiAgcHJvdmlkZXJzOiBbXG4gICAge1xuICAgICAgcHJvdmlkZTogQ2RrUm93RGVmLFxuICAgICAgdXNlRXhpc3Rpbmc6IFRhYmxlUm93RGVmRGlyZWN0aXZlLFxuICAgIH0sXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlUm93RGVmRGlyZWN0aXZlPFQ+IGV4dGVuZHMgQ2RrUm93RGVmPFQ+IHtcbiAgQElucHV0KCdhdWlUYWJsZVJvd0RlZkNvbHVtbnMnKVxuICBjb2x1bW5zOiBzdHJpbmdbXTtcblxuICBASW5wdXQoJ2F1aVRhYmxlUm93RGVmV2hlbicpXG4gIHdoZW46IChpbmRleDogbnVtYmVyLCByb3dEYXRhOiBUKSA9PiBib29sZWFuO1xufVxuIl19
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"arity":1,"members":{"columns":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]},"arguments":["auiTableRowDefColumns"]}]}],"when":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]},"arguments":["auiTableRowDefWhen"]}]}]}},"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":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":4,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}}],"lifecycleHooks":[3]},"isComponent":false,"selector":"[auiTableRowDef]","exportAs":null,"inputs":{"columns":"auiTableRowDefColumns","when":"auiTableRowDefWhen"},"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":"TableRowDefDirective","filePath":"./table-row-def.directive"},{"__symbol":1,"name":"CdkRowDef","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"TemplateRef","filePath":"@angular/core"},{"__symbol":4,"name":"IterableDiffers","filePath":"@angular/core"},{"__symbol":5,"name":"CDK_TABLE","filePath":"@angular/cdk/table/index"}]}
@@ -1,37 +0,0 @@
1
- import { CDK_ROW_TEMPLATE, CdkRow } from '@angular/cdk/table';
2
- import { ChangeDetectionStrategy, Component, ElementRef, HostBinding, Input, ViewEncapsulation, } from '@angular/core';
3
- /** Data row template container that contains the cell outlet. Adds the right class and role. */
4
- export class TableRowComponent extends CdkRow {
5
- constructor(elRef) {
6
- super();
7
- this.elRef = elRef;
8
- this.disabled = false;
9
- this.hasPanel = false;
10
- }
11
- ngAfterContentInit() {
12
- const panel = this.elRef.nativeElement.querySelector('aui-table-cell[auiExpandPanel]');
13
- this.hasPanel = !!panel;
14
- }
15
- }
16
- TableRowComponent.decorators = [
17
- { type: Component, args: [{
18
- selector: 'aui-table-row',
19
- template: CDK_ROW_TEMPLATE,
20
- host: {
21
- class: 'aui-table__row',
22
- role: 'row',
23
- },
24
- changeDetection: ChangeDetectionStrategy.OnPush,
25
- encapsulation: ViewEncapsulation.None,
26
- exportAs: 'auiTableRow',
27
- preserveWhitespaces: false
28
- },] }
29
- ];
30
- TableRowComponent.ctorParameters = () => [
31
- { type: ElementRef }
32
- ];
33
- TableRowComponent.propDecorators = {
34
- disabled: [{ type: Input }, { type: HostBinding, args: ['class.isDisabled',] }],
35
- hasPanel: [{ type: HostBinding, args: ['class.hasPanel',] }]
36
- };
37
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtcm93LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS1yb3cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUM5RCxPQUFPLEVBRUwsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsV0FBVyxFQUNYLEtBQUssRUFDTCxpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFFdkIsZ0dBQWdHO0FBYWhHLE1BQU0sT0FBTyxpQkFBa0IsU0FBUSxNQUFNO0lBUTNDLFlBQTZCLEtBQThCO1FBQ3pELEtBQUssRUFBRSxDQUFDO1FBRG1CLFVBQUssR0FBTCxLQUFLLENBQXlCO1FBTDNELGFBQVEsR0FBRyxLQUFLLENBQUM7UUFHakIsYUFBUSxHQUFHLEtBQUssQ0FBQztJQUlqQixDQUFDO0lBRUQsa0JBQWtCO1FBQ2hCLE1BQU0sS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLGFBQWEsQ0FDbEQsZ0NBQWdDLENBQ2pDLENBQUM7UUFDRixJQUFJLENBQUMsUUFBUSxHQUFHLENBQUMsQ0FBQyxLQUFLLENBQUM7SUFDMUIsQ0FBQzs7O1lBN0JGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsZUFBZTtnQkFDekIsUUFBUSxFQUFFLGdCQUFnQjtnQkFDMUIsSUFBSSxFQUFFO29CQUNKLEtBQUssRUFBRSxnQkFBZ0I7b0JBQ3ZCLElBQUksRUFBRSxLQUFLO2lCQUNaO2dCQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO2dCQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtnQkFDckMsUUFBUSxFQUFFLGFBQWE7Z0JBQ3ZCLG1CQUFtQixFQUFFLEtBQUs7YUFDM0I7OztZQWxCQyxVQUFVOzs7dUJBb0JULEtBQUssWUFDTCxXQUFXLFNBQUMsa0JBQWtCO3VCQUc5QixXQUFXLFNBQUMsZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ0RLX1JPV19URU1QTEFURSwgQ2RrUm93IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7XG4gIEFmdGVyQ29udGVudEluaXQsXG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEVsZW1lbnRSZWYsXG4gIEhvc3RCaW5kaW5nLFxuICBJbnB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vKiogRGF0YSByb3cgdGVtcGxhdGUgY29udGFpbmVyIHRoYXQgY29udGFpbnMgdGhlIGNlbGwgb3V0bGV0LiBBZGRzIHRoZSByaWdodCBjbGFzcyBhbmQgcm9sZS4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F1aS10YWJsZS1yb3cnLFxuICB0ZW1wbGF0ZTogQ0RLX1JPV19URU1QTEFURSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnYXVpLXRhYmxlX19yb3cnLFxuICAgIHJvbGU6ICdyb3cnLFxuICB9LFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgZXhwb3J0QXM6ICdhdWlUYWJsZVJvdycsXG4gIHByZXNlcnZlV2hpdGVzcGFjZXM6IGZhbHNlLFxufSlcbmV4cG9ydCBjbGFzcyBUYWJsZVJvd0NvbXBvbmVudCBleHRlbmRzIENka1JvdyBpbXBsZW1lbnRzIEFmdGVyQ29udGVudEluaXQge1xuICBASW5wdXQoKVxuICBASG9zdEJpbmRpbmcoJ2NsYXNzLmlzRGlzYWJsZWQnKVxuICBkaXNhYmxlZCA9IGZhbHNlO1xuXG4gIEBIb3N0QmluZGluZygnY2xhc3MuaGFzUGFuZWwnKVxuICBoYXNQYW5lbCA9IGZhbHNlO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgZWxSZWY6IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+KSB7XG4gICAgc3VwZXIoKTtcbiAgfVxuXG4gIG5nQWZ0ZXJDb250ZW50SW5pdCgpIHtcbiAgICBjb25zdCBwYW5lbCA9IHRoaXMuZWxSZWYubmF0aXZlRWxlbWVudC5xdWVyeVNlbGVjdG9yKFxuICAgICAgJ2F1aS10YWJsZS1jZWxsW2F1aUV4cGFuZFBhbmVsXScsXG4gICAgKTtcbiAgICB0aGlzLmhhc1BhbmVsID0gISFwYW5lbDtcbiAgfVxufVxuIl19
@@ -1,17 +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 "@angular/cdk/table";
9
- import * as i2 from "./table-row.component";
10
- var styles_TableRowComponent = [];
11
- var RenderType_TableRowComponent = i0.ɵcrt({ encapsulation: 2, styles: styles_TableRowComponent, data: {} });
12
- export { RenderType_TableRowComponent as RenderType_TableRowComponent };
13
- export function View_TableRowComponent_0(_l) { return i0.ɵvid(2, [(_l()(), i0.ɵeld(0, 16777216, null, null, 1, null, null, null, null, null, null, null)), i0.ɵdid(1, 147456, null, 0, i1.CdkCellOutlet, [i0.ViewContainerRef], null, null)], null, null); }
14
- export function View_TableRowComponent_Host_0(_l) { return i0.ɵvid(0, [(_l()(), i0.ɵeld(0, 0, null, null, 1, "aui-table-row", [["class", "aui-table__row"], ["role", "row"]], [[2, "isDisabled", null], [2, "hasPanel", null]], null, null, View_TableRowComponent_0, RenderType_TableRowComponent)), i0.ɵdid(1, 1097728, null, 0, i2.TableRowComponent, [i0.ElementRef], null, null)], null, function (_ck, _v) { var currVal_0 = i0.ɵnov(_v, 1).disabled; var currVal_1 = i0.ɵnov(_v, 1).hasPanel; _ck(_v, 0, 0, currVal_0, currVal_1); }); }
15
- var TableRowComponentNgFactory = i0.ɵccf("aui-table-row", i2.TableRowComponent, View_TableRowComponent_Host_0, { disabled: "disabled" }, {}, []);
16
- export { TableRowComponentNgFactory as TableRowComponentNgFactory };
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtcm93LmNvbXBvbmVudC5uZ2ZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdGFibGUvdGFibGUtcm93LmNvbXBvbmVudC5uZ2ZhY3RvcnkudHMiLCIuLi8uLi8uLi9zcmMvdGFibGUvdGFibGUtcm93LmNvbXBvbmVudC50cy5UYWJsZVJvd0NvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OzttRUNBQSx1S0FBMkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iLCI8bmctY29udGFpbmVyIGNka0NlbGxPdXRsZXQ+PC9uZy1jb250YWluZXI+Il19
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"members":{"disabled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}},{"__symbolic":"call","expression":{"__symbol":3,"members":[]},"arguments":["class.isDisabled"]}]}],"hasPanel":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":3,"members":[]},"arguments":["class.hasPanel"]}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbol":4,"members":[]}]}],"ngAfterContentInit":[{"__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":4,"members":[]}}}}],"lifecycleHooks":[4]},"isComponent":true,"selector":"aui-table-row","exportAs":"auiTableRow","inputs":{"disabled":"disabled"},"outputs":{},"hostListeners":{},"hostProperties":{"class.isDisabled":"disabled","class.hasPanel":"hasPanel"},"hostAttributes":{"class":"aui-table__row","role":"row"},"providers":[],"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":"TableRowComponent","filePath":"./table-row.component"},{"__symbol":1,"name":"CdkRow","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"HostBinding","filePath":"@angular/core"},{"__symbol":4,"name":"ElementRef","filePath":"@angular/core"},{"__symbol":5,"name":"View_TableRowComponent_0","filePath":"./table-row.component.ngfactory"},{"__symbol":6,"name":"RenderType_TableRowComponent","filePath":"./table-row.component.ngfactory"},{"__symbol":7,"name":"TableRowComponentNgFactory","filePath":"./table-row.component.ngfactory"}]}
@@ -1,84 +0,0 @@
1
- import { Directive, ElementRef, Host, HostBinding, } from '@angular/core';
2
- import { Subject, fromEvent, merge } from 'rxjs';
3
- import { startWith, takeUntil } from 'rxjs/operators';
4
- import { observeResizeOn } from '../utils';
5
- import { TableComponent } from './table.component';
6
- const CLASS_PREFIX = 'aui-table';
7
- const SHADOW_CLASS = `${CLASS_PREFIX}__scroll-shadow`;
8
- const HAS_SCROLL_CLASS = `${SHADOW_CLASS}--has-scroll`;
9
- const SCROLLING_CLASS = `${SHADOW_CLASS}--scrolling`;
10
- const SCROLL_BEFORE_END_CLASS = `${SHADOW_CLASS}--before-end`;
11
- const HAS_TABLE_TOP_SHADOW = 'hasTableTopShadow';
12
- const HAS_TABLE_BOTTOM_SHADOW = 'hasTableBottomShadow';
13
- const HAS_TABLE_VERTICAL_SCROLL = 'hasTableVerticalScroll';
14
- export class TableScrollWrapperDirective {
15
- }
16
- TableScrollWrapperDirective.decorators = [
17
- { type: Directive, args: [{
18
- selector: '[auiTableScrollWrapper]',
19
- host: {
20
- class: 'aui-table__scroll-wrapper',
21
- },
22
- },] }
23
- ];
24
- export class TableScrollShadowDirective {
25
- constructor(el, table) {
26
- this.el = el;
27
- this.table = table;
28
- this.destroy$$ = new Subject();
29
- this.SCROLL_BEFORE_END_CLASS = true;
30
- this.SHADOW_CLASS = true;
31
- }
32
- get containerEl() {
33
- return this.el.nativeElement;
34
- }
35
- ngAfterViewInit() {
36
- requestAnimationFrame(() => {
37
- this.viewMutation();
38
- });
39
- }
40
- viewMutation() {
41
- merge(observeResizeOn(this.containerEl), fromEvent(this.containerEl, 'scroll'))
42
- .pipe(startWith(null), takeUntil(this.destroy$$))
43
- .subscribe(() => {
44
- this.mutateVerticalScroll();
45
- this.mutateHorizontalScroll();
46
- });
47
- }
48
- mutateVerticalScroll() {
49
- const scrollDis = this.containerEl.scrollHeight - this.containerEl.offsetHeight;
50
- this.placeClassList(this.containerEl.classList, scrollDis > 0, HAS_TABLE_VERTICAL_SCROLL);
51
- const scrollTop = this.containerEl.scrollTop;
52
- this.placeClassList(this.containerEl.classList, scrollTop > 0, HAS_TABLE_TOP_SHADOW);
53
- this.placeClassList(this.containerEl.classList, scrollTop < scrollDis, HAS_TABLE_BOTTOM_SHADOW);
54
- // 兼容屏幕缩放是 sticky多列的样式问题
55
- this.table.updateStickyColumnStyles();
56
- }
57
- mutateHorizontalScroll() {
58
- const scrollDis = this.containerEl.scrollWidth - this.containerEl.offsetWidth;
59
- this.placeClassList(this.containerEl.classList, scrollDis > 0, HAS_SCROLL_CLASS);
60
- const scrollLeft = this.containerEl.scrollLeft;
61
- this.placeClassList(this.containerEl.classList, scrollLeft > 0, SCROLLING_CLASS);
62
- this.placeClassList(this.containerEl.classList, scrollLeft < scrollDis, SCROLL_BEFORE_END_CLASS);
63
- }
64
- placeClassList(classList, condition, className) {
65
- classList[condition ? 'add' : 'remove'](className);
66
- }
67
- ngOnDestroy() {
68
- this.destroy$$.next();
69
- }
70
- }
71
- TableScrollShadowDirective.decorators = [
72
- { type: Directive, args: [{
73
- selector: '[auiTableScrollShadow]',
74
- },] }
75
- ];
76
- TableScrollShadowDirective.ctorParameters = () => [
77
- { type: ElementRef },
78
- { type: TableComponent, decorators: [{ type: Host }] }
79
- ];
80
- TableScrollShadowDirective.propDecorators = {
81
- SCROLL_BEFORE_END_CLASS: [{ type: HostBinding, args: [`class.${SCROLL_BEFORE_END_CLASS}`,] }],
82
- SHADOW_CLASS: [{ type: HostBinding, args: [`class.${SHADOW_CLASS}`,] }]
83
- };
84
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtc2Nyb2xsLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS1zY3JvbGwuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCxTQUFTLEVBQ1QsVUFBVSxFQUNWLElBQUksRUFDSixXQUFXLEdBRVosTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ2pELE9BQU8sRUFBRSxTQUFTLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFdEQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFFbkQsTUFBTSxZQUFZLEdBQUcsV0FBVyxDQUFDO0FBQ2pDLE1BQU0sWUFBWSxHQUFHLEdBQUcsWUFBWSxpQkFBaUIsQ0FBQztBQUN0RCxNQUFNLGdCQUFnQixHQUFHLEdBQUcsWUFBWSxjQUFjLENBQUM7QUFDdkQsTUFBTSxlQUFlLEdBQUcsR0FBRyxZQUFZLGFBQWEsQ0FBQztBQUNyRCxNQUFNLHVCQUF1QixHQUFHLEdBQUcsWUFBWSxjQUFjLENBQUM7QUFFOUQsTUFBTSxvQkFBb0IsR0FBRyxtQkFBbUIsQ0FBQztBQUNqRCxNQUFNLHVCQUF1QixHQUFHLHNCQUFzQixDQUFDO0FBQ3ZELE1BQU0seUJBQXlCLEdBQUcsd0JBQXdCLENBQUM7QUFRM0QsTUFBTSxPQUFPLDJCQUEyQjs7O1lBTnZDLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUseUJBQXlCO2dCQUNuQyxJQUFJLEVBQUU7b0JBQ0osS0FBSyxFQUFFLDJCQUEyQjtpQkFDbkM7YUFDRjs7QUFLRCxNQUFNLE9BQU8sMEJBQTBCO0lBRXJDLFlBQ21CLEVBQTJCLEVBQ25CLEtBQThCO1FBRHRDLE9BQUUsR0FBRixFQUFFLENBQXlCO1FBQ25CLFVBQUssR0FBTCxLQUFLLENBQXlCO1FBSHpELGNBQVMsR0FBRyxJQUFJLE9BQU8sRUFBUSxDQUFDO1FBT2hDLDRCQUF1QixHQUFHLElBQUksQ0FBQztRQUcvQixpQkFBWSxHQUFHLElBQUksQ0FBQztJQU5qQixDQUFDO0lBUUosSUFBSSxXQUFXO1FBQ2IsT0FBTyxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQztJQUMvQixDQUFDO0lBRUQsZUFBZTtRQUNiLHFCQUFxQixDQUFDLEdBQUcsRUFBRTtZQUN6QixJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7UUFDdEIsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsWUFBWTtRQUNWLEtBQUssQ0FDSCxlQUFlLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxFQUNqQyxTQUFTLENBQUMsSUFBSSxDQUFDLFdBQVcsRUFBRSxRQUFRLENBQUMsQ0FDdEM7YUFDRSxJQUFJLENBQUMsU0FBUyxDQUFDLElBQVksQ0FBQyxFQUFFLFNBQVMsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7YUFDeEQsU0FBUyxDQUFDLEdBQUcsRUFBRTtZQUNkLElBQUksQ0FBQyxvQkFBb0IsRUFBRSxDQUFDO1lBQzVCLElBQUksQ0FBQyxzQkFBc0IsRUFBRSxDQUFDO1FBQ2hDLENBQUMsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVELG9CQUFvQjtRQUNsQixNQUFNLFNBQVMsR0FDYixJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQztRQUVoRSxJQUFJLENBQUMsY0FBYyxDQUNqQixJQUFJLENBQUMsV0FBVyxDQUFDLFNBQVMsRUFDMUIsU0FBUyxHQUFHLENBQUMsRUFDYix5QkFBeUIsQ0FDMUIsQ0FBQztRQUVGLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsU0FBUyxDQUFDO1FBQzdDLElBQUksQ0FBQyxjQUFjLENBQ2pCLElBQUksQ0FBQyxXQUFXLENBQUMsU0FBUyxFQUMxQixTQUFTLEdBQUcsQ0FBQyxFQUNiLG9CQUFvQixDQUNyQixDQUFDO1FBQ0YsSUFBSSxDQUFDLGNBQWMsQ0FDakIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxTQUFTLEVBQzFCLFNBQVMsR0FBRyxTQUFTLEVBQ3JCLHVCQUF1QixDQUN4QixDQUFDO1FBRUYsd0JBQXdCO1FBQ3hCLElBQUksQ0FBQyxLQUFLLENBQUMsd0JBQXdCLEVBQUUsQ0FBQztJQUN4QyxDQUFDO0lBRUQsc0JBQXNCO1FBQ3BCLE1BQU0sU0FBUyxHQUNiLElBQUksQ0FBQyxXQUFXLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsV0FBVyxDQUFDO1FBRTlELElBQUksQ0FBQyxjQUFjLENBQ2pCLElBQUksQ0FBQyxXQUFXLENBQUMsU0FBUyxFQUMxQixTQUFTLEdBQUcsQ0FBQyxFQUNiLGdCQUFnQixDQUNqQixDQUFDO1FBRUYsTUFBTSxVQUFVLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxVQUFVLENBQUM7UUFDL0MsSUFBSSxDQUFDLGNBQWMsQ0FDakIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxTQUFTLEVBQzFCLFVBQVUsR0FBRyxDQUFDLEVBQ2QsZUFBZSxDQUNoQixDQUFDO1FBQ0YsSUFBSSxDQUFDLGNBQWMsQ0FDakIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxTQUFTLEVBQzFCLFVBQVUsR0FBRyxTQUFTLEVBQ3RCLHVCQUF1QixDQUN4QixDQUFDO0lBQ0osQ0FBQztJQUVELGNBQWMsQ0FDWixTQUF1QixFQUN2QixTQUFrQixFQUNsQixTQUFpQjtRQUVqQixTQUFTLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQ3JELENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUN4QixDQUFDOzs7WUFqR0YsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSx3QkFBd0I7YUFDbkM7OztZQTlCQyxVQUFVO1lBU0gsY0FBYyx1QkEwQmxCLElBQUk7OztzQ0FHTixXQUFXLFNBQUMsU0FBUyx1QkFBdUIsRUFBRTsyQkFHOUMsV0FBVyxTQUFDLFNBQVMsWUFBWSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQWZ0ZXJWaWV3SW5pdCxcbiAgRGlyZWN0aXZlLFxuICBFbGVtZW50UmVmLFxuICBIb3N0LFxuICBIb3N0QmluZGluZyxcbiAgT25EZXN0cm95LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN1YmplY3QsIGZyb21FdmVudCwgbWVyZ2UgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IHN0YXJ0V2l0aCwgdGFrZVVudGlsIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5pbXBvcnQgeyBvYnNlcnZlUmVzaXplT24gfSBmcm9tICcuLi91dGlscyc7XG5pbXBvcnQgeyBUYWJsZUNvbXBvbmVudCB9IGZyb20gJy4vdGFibGUuY29tcG9uZW50JztcblxuY29uc3QgQ0xBU1NfUFJFRklYID0gJ2F1aS10YWJsZSc7XG5jb25zdCBTSEFET1dfQ0xBU1MgPSBgJHtDTEFTU19QUkVGSVh9X19zY3JvbGwtc2hhZG93YDtcbmNvbnN0IEhBU19TQ1JPTExfQ0xBU1MgPSBgJHtTSEFET1dfQ0xBU1N9LS1oYXMtc2Nyb2xsYDtcbmNvbnN0IFNDUk9MTElOR19DTEFTUyA9IGAke1NIQURPV19DTEFTU30tLXNjcm9sbGluZ2A7XG5jb25zdCBTQ1JPTExfQkVGT1JFX0VORF9DTEFTUyA9IGAke1NIQURPV19DTEFTU30tLWJlZm9yZS1lbmRgO1xuXG5jb25zdCBIQVNfVEFCTEVfVE9QX1NIQURPVyA9ICdoYXNUYWJsZVRvcFNoYWRvdyc7XG5jb25zdCBIQVNfVEFCTEVfQk9UVE9NX1NIQURPVyA9ICdoYXNUYWJsZUJvdHRvbVNoYWRvdyc7XG5jb25zdCBIQVNfVEFCTEVfVkVSVElDQUxfU0NST0xMID0gJ2hhc1RhYmxlVmVydGljYWxTY3JvbGwnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpVGFibGVTY3JvbGxXcmFwcGVyXScsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2F1aS10YWJsZV9fc2Nyb2xsLXdyYXBwZXInLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBUYWJsZVNjcm9sbFdyYXBwZXJEaXJlY3RpdmUge31cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1thdWlUYWJsZVNjcm9sbFNoYWRvd10nLFxufSlcbmV4cG9ydCBjbGFzcyBUYWJsZVNjcm9sbFNoYWRvd0RpcmVjdGl2ZSBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQsIE9uRGVzdHJveSB7XG4gIGRlc3Ryb3kkJCA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcmVhZG9ubHkgZWw6IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+LFxuICAgIEBIb3N0KCkgcHJpdmF0ZSByZWFkb25seSB0YWJsZTogVGFibGVDb21wb25lbnQ8dW5rbm93bj4sXG4gICkge31cblxuICBASG9zdEJpbmRpbmcoYGNsYXNzLiR7U0NST0xMX0JFRk9SRV9FTkRfQ0xBU1N9YClcbiAgU0NST0xMX0JFRk9SRV9FTkRfQ0xBU1MgPSB0cnVlO1xuXG4gIEBIb3N0QmluZGluZyhgY2xhc3MuJHtTSEFET1dfQ0xBU1N9YClcbiAgU0hBRE9XX0NMQVNTID0gdHJ1ZTtcblxuICBnZXQgY29udGFpbmVyRWwoKSB7XG4gICAgcmV0dXJuIHRoaXMuZWwubmF0aXZlRWxlbWVudDtcbiAgfVxuXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcbiAgICByZXF1ZXN0QW5pbWF0aW9uRnJhbWUoKCkgPT4ge1xuICAgICAgdGhpcy52aWV3TXV0YXRpb24oKTtcbiAgICB9KTtcbiAgfVxuXG4gIHZpZXdNdXRhdGlvbigpIHtcbiAgICBtZXJnZShcbiAgICAgIG9ic2VydmVSZXNpemVPbih0aGlzLmNvbnRhaW5lckVsKSxcbiAgICAgIGZyb21FdmVudCh0aGlzLmNvbnRhaW5lckVsLCAnc2Nyb2xsJyksXG4gICAgKVxuICAgICAgLnBpcGUoc3RhcnRXaXRoKG51bGwgYXMgdm9pZCksIHRha2VVbnRpbCh0aGlzLmRlc3Ryb3kkJCkpXG4gICAgICAuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgICAgdGhpcy5tdXRhdGVWZXJ0aWNhbFNjcm9sbCgpO1xuICAgICAgICB0aGlzLm11dGF0ZUhvcml6b250YWxTY3JvbGwoKTtcbiAgICAgIH0pO1xuICB9XG5cbiAgbXV0YXRlVmVydGljYWxTY3JvbGwoKSB7XG4gICAgY29uc3Qgc2Nyb2xsRGlzID1cbiAgICAgIHRoaXMuY29udGFpbmVyRWwuc2Nyb2xsSGVpZ2h0IC0gdGhpcy5jb250YWluZXJFbC5vZmZzZXRIZWlnaHQ7XG5cbiAgICB0aGlzLnBsYWNlQ2xhc3NMaXN0KFxuICAgICAgdGhpcy5jb250YWluZXJFbC5jbGFzc0xpc3QsXG4gICAgICBzY3JvbGxEaXMgPiAwLFxuICAgICAgSEFTX1RBQkxFX1ZFUlRJQ0FMX1NDUk9MTCxcbiAgICApO1xuXG4gICAgY29uc3Qgc2Nyb2xsVG9wID0gdGhpcy5jb250YWluZXJFbC5zY3JvbGxUb3A7XG4gICAgdGhpcy5wbGFjZUNsYXNzTGlzdChcbiAgICAgIHRoaXMuY29udGFpbmVyRWwuY2xhc3NMaXN0LFxuICAgICAgc2Nyb2xsVG9wID4gMCxcbiAgICAgIEhBU19UQUJMRV9UT1BfU0hBRE9XLFxuICAgICk7XG4gICAgdGhpcy5wbGFjZUNsYXNzTGlzdChcbiAgICAgIHRoaXMuY29udGFpbmVyRWwuY2xhc3NMaXN0LFxuICAgICAgc2Nyb2xsVG9wIDwgc2Nyb2xsRGlzLFxuICAgICAgSEFTX1RBQkxFX0JPVFRPTV9TSEFET1csXG4gICAgKTtcblxuICAgIC8vIOWFvOWuueWxj+W5lee8qeaUvuaYryBzdGlja3nlpJrliJfnmoTmoLflvI/pl67pophcbiAgICB0aGlzLnRhYmxlLnVwZGF0ZVN0aWNreUNvbHVtblN0eWxlcygpO1xuICB9XG5cbiAgbXV0YXRlSG9yaXpvbnRhbFNjcm9sbCgpIHtcbiAgICBjb25zdCBzY3JvbGxEaXMgPVxuICAgICAgdGhpcy5jb250YWluZXJFbC5zY3JvbGxXaWR0aCAtIHRoaXMuY29udGFpbmVyRWwub2Zmc2V0V2lkdGg7XG5cbiAgICB0aGlzLnBsYWNlQ2xhc3NMaXN0KFxuICAgICAgdGhpcy5jb250YWluZXJFbC5jbGFzc0xpc3QsXG4gICAgICBzY3JvbGxEaXMgPiAwLFxuICAgICAgSEFTX1NDUk9MTF9DTEFTUyxcbiAgICApO1xuXG4gICAgY29uc3Qgc2Nyb2xsTGVmdCA9IHRoaXMuY29udGFpbmVyRWwuc2Nyb2xsTGVmdDtcbiAgICB0aGlzLnBsYWNlQ2xhc3NMaXN0KFxuICAgICAgdGhpcy5jb250YWluZXJFbC5jbGFzc0xpc3QsXG4gICAgICBzY3JvbGxMZWZ0ID4gMCxcbiAgICAgIFNDUk9MTElOR19DTEFTUyxcbiAgICApO1xuICAgIHRoaXMucGxhY2VDbGFzc0xpc3QoXG4gICAgICB0aGlzLmNvbnRhaW5lckVsLmNsYXNzTGlzdCxcbiAgICAgIHNjcm9sbExlZnQgPCBzY3JvbGxEaXMsXG4gICAgICBTQ1JPTExfQkVGT1JFX0VORF9DTEFTUyxcbiAgICApO1xuICB9XG5cbiAgcGxhY2VDbGFzc0xpc3QoXG4gICAgY2xhc3NMaXN0OiBET01Ub2tlbkxpc3QsXG4gICAgY29uZGl0aW9uOiBib29sZWFuLFxuICAgIGNsYXNzTmFtZTogc3RyaW5nLFxuICApIHtcbiAgICBjbGFzc0xpc3RbY29uZGl0aW9uID8gJ2FkZCcgOiAncmVtb3ZlJ10oY2xhc3NOYW1lKTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCkge1xuICAgIHRoaXMuZGVzdHJveSQkLm5leHQoKTtcbiAgfVxufVxuIl19
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class"},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"isComponent":false,"selector":"[auiTableScrollWrapper]","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{"class":"aui-table__scroll-wrapper"},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}},{"symbol":{"__symbol":1,"members":[]},"metadata":{"__symbolic":"class","members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[null,[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]],"parameters":[{"__symbol":3,"members":[]},{"__symbol":4,"members":[]}]}],"SCROLL_BEFORE_END_CLASS":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":5,"members":[]},"arguments":["class.aui-table__scroll-shadow--before-end"]}]}],"SHADOW_CLASS":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":5,"members":[]},"arguments":["class.aui-table__scroll-shadow"]}]}],"ngAfterViewInit":[{"__symbolic":"method"}],"viewMutation":[{"__symbolic":"method"}],"mutateVerticalScroll":[{"__symbolic":"method"}],"mutateHorizontalScroll":[{"__symbolic":"method"}],"placeClassList":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":1,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}}},{"isAttribute":false,"isHost":true,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":4,"members":[]}}}}],"lifecycleHooks":[1,6]},"isComponent":false,"selector":"[auiTableScrollShadow]","exportAs":null,"inputs":{},"outputs":{},"hostListeners":{},"hostProperties":{"class.aui-table__scroll-shadow--before-end":"SCROLL_BEFORE_END_CLASS","class.aui-table__scroll-shadow":"SHADOW_CLASS"},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":null,"template":null,"componentViewType":null,"rendererType":null,"componentFactory":null}}],"symbols":[{"__symbol":0,"name":"TableScrollWrapperDirective","filePath":"./table-scroll.directive"},{"__symbol":1,"name":"TableScrollShadowDirective","filePath":"./table-scroll.directive"},{"__symbol":2,"name":"Host","filePath":"@angular/core"},{"__symbol":3,"name":"ElementRef","filePath":"@angular/core"},{"__symbol":4,"name":"TableComponent","filePath":"./table.component"},{"__symbol":5,"name":"HostBinding","filePath":"@angular/core"}]}
@@ -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-table__scroll-wrapper{background-color:rgb(var(--aui-color-n-9));padding:0 12px 12px;border-radius:var(--aui-border-radius-l)}.aui-table__scroll-wrapper::-webkit-scrollbar{width:4px;height:4px}.aui-table__scroll-wrapper::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-table__scroll-wrapper .aui-table{padding:0}.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableBottomShadow:after,.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableTopShadow:before{transform:none;width:100%;left:0}.aui-table__scroll-shadow.hasTableTopShadow:before{transform:translate3d(-12px,0,0);top:28px;box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow.hasTableBottomShadow:after,.aui-table__scroll-shadow.hasTableTopShadow:before{content:\"\";position:-webkit-sticky;position:sticky;display:block;width:calc(100% + 24px);height:16px;margin-top:-16px;z-index:99}.aui-table__scroll-shadow.hasTableBottomShadow:after{transform:translate3d(-12px,12px,0);bottom:0;box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-1),.16) inset}.aui-table__scroll-shadow .aui-table__header-row{margin:0;padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:first-of-type{padding-left:20px}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:last-of-type{padding-right:20px}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:first-of-type{border-top-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:last-of-type{border-top-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row{border:none;padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__row .aui-table__cell{border-color:rgb(var(--aui-color-n-8));border-style:solid;border-width:1px 0}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:first-of-type{border-left-width:1px;padding-left:19px}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:last-of-type{border-right-width:1px;padding-right:19px}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:first-of-type{border-bottom-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:last-of-type{border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:not(.aui-table__scroll-shadow .aui-table__row:last-child) .aui-table__cell{border-bottom-width:0}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{position:absolute;top:0;bottom:-1px;width:20px;transition:box-shadow .3s;content:\"\";pointer-events:none}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{position:absolute;top:0;bottom:-1px;content:\"\";background:linear-gradient(180deg,rgb(var(--aui-color-n-7)),rgb(var(--aui-color-n-7)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left{padding-right:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after{right:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before{right:10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right{padding-left:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{left:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{left:10px}.aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):before{background:linear-gradient(180deg,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):before{background:linear-gradient(180deg,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}"];
8
- export { styles as styles };
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtc2Nyb2xsLnNjc3MubmdzdHlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS1zY3JvbGwuc2Nzcy5uZ3N0eWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iXX0=
@@ -1,69 +0,0 @@
1
- import { _DisposeViewRepeaterStrategy, _VIEW_REPEATER_STRATEGY, } from '@angular/cdk/collections';
2
- import { CDK_TABLE, CDK_TABLE_TEMPLATE, CdkTable, _COALESCED_STYLE_SCHEDULER, _CoalescedStyleScheduler, } from '@angular/cdk/table';
3
- import { ChangeDetectionStrategy, Component, ContentChild, Input, ViewChild, ViewEncapsulation, } from '@angular/core';
4
- import { TablePlaceholderDefDirective, TablePlaceholderOutlet, } from './table-placeholder.directive';
5
- export class TableComponent extends CdkTable {
6
- // FIXME: workaround to override because it will break constructor if it is field, but why MatTable works?
7
- // @ts-ignore
8
- get stickyCssClass() {
9
- return 'aui-table-sticky';
10
- }
11
- set stickyCssClass(_) {
12
- // nothing
13
- }
14
- ngAfterContentInit() {
15
- this._createPlaceholder();
16
- }
17
- _createPlaceholder() {
18
- const footerRow = this._placeholderDef;
19
- if (!this._placeholderDef) {
20
- return;
21
- }
22
- const container = this._placeholderOutlet.viewContainer;
23
- container.createEmbeddedView(footerRow.templateRef);
24
- }
25
- _clearPlaceholder() {
26
- this._placeholderOutlet.viewContainer.clear();
27
- }
28
- ngOnDestroy() {
29
- super.ngOnDestroy();
30
- this._clearPlaceholder();
31
- }
32
- }
33
- TableComponent.decorators = [
34
- { type: Component, args: [{
35
- selector: 'aui-table',
36
- exportAs: 'auiTable',
37
- encapsulation: ViewEncapsulation.None,
38
- template: `
39
- ${CDK_TABLE_TEMPLATE}
40
- <ng-container auiTablePlaceholderOutlet></ng-container>
41
- `,
42
- host: {
43
- class: 'aui-table',
44
- },
45
- preserveWhitespaces: false,
46
- changeDetection: ChangeDetectionStrategy.OnPush,
47
- providers: [
48
- {
49
- provide: CDK_TABLE,
50
- useExisting: TableComponent,
51
- },
52
- {
53
- provide: _VIEW_REPEATER_STRATEGY,
54
- useClass: _DisposeViewRepeaterStrategy,
55
- },
56
- {
57
- provide: _COALESCED_STYLE_SCHEDULER,
58
- useClass: _CoalescedStyleScheduler,
59
- },
60
- ],
61
- styles: [".aui-table{display:block;padding:0 12px 12px;font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m);color:rgb(var(--aui-color-main-text));background-color:rgb(var(--aui-color-n-9));border-radius:var(--aui-border-radius-l);overflow:auto}.aui-table::-webkit-scrollbar{width:4px;height:4px}.aui-table::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-table__header-row,.aui-table__row{display:flex;align-items:center}.aui-table__header-row.hasPanel,.aui-table__row.hasPanel{flex-wrap:wrap}.aui-table__header-row+.aui-table__row{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row{position:relative;border:solid rgb(var(--aui-color-n-8));border-width:1px 1px 0;background-color:rgb(var(--aui-color-n-10));padding:0 9px;min-height:58px;box-sizing:content-box}.aui-table__row:first-child{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row:last-child{border-bottom-width:1px;min-height:58px;border-bottom-left-radius:var(--aui-border-radius-l);border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__row.isDisabled:before{content:\"\";z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgb(var(--aui-color-n-10));opacity:.7;cursor:not-allowed}.aui-table__header-row{background-color:rgb(var(--aui-color-n-9));padding:0 10px}.aui-table__cell,.aui-table__header-cell{flex:1}.aui-table__cell{padding:15px 10px;background-color:rgb(var(--aui-color-n-10));overflow:hidden;word-wrap:break-word}.aui-table__header-cell{padding:12px 10px;font-weight:var(--aui-font-weight-bold);background-color:rgb(var(--aui-color-n-9));white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aui-table__column-expand-button{display:flex;align-items:center;max-width:calc(10px * 2 + var(--aui-icon-size-m))}.aui-table__column-expand-button.aui-table__cell{height:58px}.aui-table__column-expand-button .aui-expand-button{display:inline-flex;justify-content:center;align-items:center;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m);font-size:var(--aui-icon-size-m);line-height:var(--aui-icon-size-m);color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));border-radius:50%;border:none;cursor:pointer;transition:transform .1s ease-in-out}.aui-table__column-expand-button .aui-expand-button aui-icon{display:block;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m)}.aui-table__column-expand-button .aui-expand-button:hover{background-color:rgb(var(--aui-color-p-7))}.aui-table__column-expand-button .aui-expand-button:active{background-color:rgb(var(--aui-color-p-5))}.aui-table__column-expand-button .aui-expand-button.isExpanded{transform:rotate(90deg);color:#fff;background-color:rgb(var(--aui-color-primary))}.aui-table__column-expand-button .aui-expand-button.isExpanded:hover{background-color:rgb(var(--aui-color-p-1))}.aui-table__column-expand-button .aui-expand-button.isExpanded:active{background-color:rgb(var(--aui-color-p-0))}.aui-table__column-expand-button .aui-expand-button.isExpanded[disabled],.aui-table__column-expand-button .aui-expand-button[disabled]{background-color:rgb(var(--aui-color-n-8));color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-table__column-expand-panel{margin-top:-6px}.aui-table__column-expand-panel.aui-table__header-cell{display:none}.aui-table__column-expand-panel.aui-table__cell{width:100%;flex-shrink:0;flex-basis:100%;padding:0 10px;overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel{border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel-content.hasBackground{padding:16px;background-color:rgb(var(--aui-color-n-9))}", ".aui-table__scroll-wrapper{background-color:rgb(var(--aui-color-n-9));padding:0 12px 12px;border-radius:var(--aui-border-radius-l)}.aui-table__scroll-wrapper::-webkit-scrollbar{width:4px;height:4px}.aui-table__scroll-wrapper::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-table__scroll-wrapper .aui-table{padding:0}.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableBottomShadow:after,.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableTopShadow:before{transform:none;width:100%;left:0}.aui-table__scroll-shadow.hasTableTopShadow:before{transform:translate3d(-12px,0,0);top:28px;box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow.hasTableBottomShadow:after,.aui-table__scroll-shadow.hasTableTopShadow:before{content:\"\";position:-webkit-sticky;position:sticky;display:block;width:calc(100% + 24px);height:16px;margin-top:-16px;z-index:99}.aui-table__scroll-shadow.hasTableBottomShadow:after{transform:translate3d(-12px,12px,0);bottom:0;box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-1),.16) inset}.aui-table__scroll-shadow .aui-table__header-row{margin:0;padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:first-of-type{padding-left:20px}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:last-of-type{padding-right:20px}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:first-of-type{border-top-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:last-of-type{border-top-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row{border:none;padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__row .aui-table__cell{border-color:rgb(var(--aui-color-n-8));border-style:solid;border-width:1px 0}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:first-of-type{border-left-width:1px;padding-left:19px}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:last-of-type{border-right-width:1px;padding-right:19px}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:first-of-type{border-bottom-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:last-of-type{border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:not(.aui-table__scroll-shadow .aui-table__row:last-child) .aui-table__cell{border-bottom-width:0}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{position:absolute;top:0;bottom:-1px;width:20px;transition:box-shadow .3s;content:\"\";pointer-events:none}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{position:absolute;top:0;bottom:-1px;content:\"\";background:linear-gradient(180deg,rgb(var(--aui-color-n-7)),rgb(var(--aui-color-n-7)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left{padding-right:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after{right:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before{right:10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right{padding-left:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{left:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{left:10px}.aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):before{background:linear-gradient(180deg,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):before{background:linear-gradient(180deg,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}"]
62
- },] }
63
- ];
64
- TableComponent.propDecorators = {
65
- enableScrollWrapper: [{ type: Input }],
66
- _placeholderOutlet: [{ type: ViewChild, args: [TablePlaceholderOutlet, { static: true },] }],
67
- _placeholderDef: [{ type: ContentChild, args: [TablePlaceholderDefDirective, { static: true },] }]
68
- };
69
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsNEJBQTRCLEVBQzVCLHVCQUF1QixHQUN4QixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sRUFDTCxTQUFTLEVBQ1Qsa0JBQWtCLEVBQ2xCLFFBQVEsRUFDUiwwQkFBMEIsRUFDMUIsd0JBQXdCLEdBQ3pCLE1BQU0sb0JBQW9CLENBQUM7QUFDNUIsT0FBTyxFQUVMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFFTCxTQUFTLEVBQ1QsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFDTCw0QkFBNEIsRUFDNUIsc0JBQXNCLEdBQ3ZCLE1BQU0sK0JBQStCLENBQUM7QUErQnZDLE1BQU0sT0FBTyxjQUNYLFNBQVEsUUFBVztJQVduQiwwR0FBMEc7SUFDMUcsYUFBYTtJQUNiLElBQWMsY0FBYztRQUMxQixPQUFPLGtCQUFrQixDQUFDO0lBQzVCLENBQUM7SUFFRCxJQUFjLGNBQWMsQ0FBQyxDQUFTO1FBQ3BDLFVBQVU7SUFDWixDQUFDO0lBRUQsa0JBQWtCO1FBQ2hCLElBQUksQ0FBQyxrQkFBa0IsRUFBRSxDQUFDO0lBQzVCLENBQUM7SUFFTyxrQkFBa0I7UUFDeEIsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQztRQUN2QyxJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsRUFBRTtZQUN6QixPQUFPO1NBQ1I7UUFFRCxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsa0JBQWtCLENBQUMsYUFBYSxDQUFDO1FBQ3hELFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQyxTQUFTLENBQUMsV0FBVyxDQUFDLENBQUM7SUFDdEQsQ0FBQztJQUVPLGlCQUFpQjtRQUN2QixJQUFJLENBQUMsa0JBQWtCLENBQUMsYUFBYSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQ2hELENBQUM7SUFFRCxXQUFXO1FBQ1QsS0FBSyxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQ3BCLElBQUksQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO0lBQzNCLENBQUM7OztZQXhFRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLFdBQVc7Z0JBQ3JCLFFBQVEsRUFBRSxVQUFVO2dCQUNwQixhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtnQkFFckMsUUFBUSxFQUFFO01BQ04sa0JBQWtCOztHQUVyQjtnQkFDRCxJQUFJLEVBQUU7b0JBQ0osS0FBSyxFQUFFLFdBQVc7aUJBQ25CO2dCQUNELG1CQUFtQixFQUFFLEtBQUs7Z0JBQzFCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO2dCQUMvQyxTQUFTLEVBQUU7b0JBQ1Q7d0JBQ0UsT0FBTyxFQUFFLFNBQVM7d0JBQ2xCLFdBQVcsRUFBRSxjQUFjO3FCQUM1QjtvQkFDRDt3QkFDRSxPQUFPLEVBQUUsdUJBQXVCO3dCQUNoQyxRQUFRLEVBQUUsNEJBQTRCO3FCQUN2QztvQkFDRDt3QkFDRSxPQUFPLEVBQUUsMEJBQTBCO3dCQUNuQyxRQUFRLEVBQUUsd0JBQXdCO3FCQUNuQztpQkFDRjs7YUFDRjs7O2tDQUlFLEtBQUs7aUNBR0wsU0FBUyxTQUFDLHNCQUFzQixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTs4QkFHbEQsWUFBWSxTQUFDLDRCQUE0QixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIF9EaXNwb3NlVmlld1JlcGVhdGVyU3RyYXRlZ3ksXG4gIF9WSUVXX1JFUEVBVEVSX1NUUkFURUdZLFxufSBmcm9tICdAYW5ndWxhci9jZGsvY29sbGVjdGlvbnMnO1xuaW1wb3J0IHtcbiAgQ0RLX1RBQkxFLFxuICBDREtfVEFCTEVfVEVNUExBVEUsXG4gIENka1RhYmxlLFxuICBfQ09BTEVTQ0VEX1NUWUxFX1NDSEVEVUxFUixcbiAgX0NvYWxlc2NlZFN0eWxlU2NoZWR1bGVyLFxufSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHtcbiAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgQ29udGVudENoaWxkLFxuICBJbnB1dCxcbiAgT25EZXN0cm95LFxuICBWaWV3Q2hpbGQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtcbiAgVGFibGVQbGFjZWhvbGRlckRlZkRpcmVjdGl2ZSxcbiAgVGFibGVQbGFjZWhvbGRlck91dGxldCxcbn0gZnJvbSAnLi90YWJsZS1wbGFjZWhvbGRlci5kaXJlY3RpdmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhdWktdGFibGUnLFxuICBleHBvcnRBczogJ2F1aVRhYmxlJyxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgc3R5bGVVcmxzOiBbJ3RhYmxlLmNvbXBvbmVudC5zY3NzJywgJ3RhYmxlLXNjcm9sbC5zY3NzJ10sXG4gIHRlbXBsYXRlOiBgXG4gICAgJHtDREtfVEFCTEVfVEVNUExBVEV9XG4gICAgPG5nLWNvbnRhaW5lciBhdWlUYWJsZVBsYWNlaG9sZGVyT3V0bGV0PjwvbmctY29udGFpbmVyPlxuICBgLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdhdWktdGFibGUnLFxuICB9LFxuICBwcmVzZXJ2ZVdoaXRlc3BhY2VzOiBmYWxzZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IENES19UQUJMRSxcbiAgICAgIHVzZUV4aXN0aW5nOiBUYWJsZUNvbXBvbmVudCxcbiAgICB9LFxuICAgIHtcbiAgICAgIHByb3ZpZGU6IF9WSUVXX1JFUEVBVEVSX1NUUkFURUdZLFxuICAgICAgdXNlQ2xhc3M6IF9EaXNwb3NlVmlld1JlcGVhdGVyU3RyYXRlZ3ksXG4gICAgfSxcbiAgICB7XG4gICAgICBwcm92aWRlOiBfQ09BTEVTQ0VEX1NUWUxFX1NDSEVEVUxFUixcbiAgICAgIHVzZUNsYXNzOiBfQ29hbGVzY2VkU3R5bGVTY2hlZHVsZXIsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVDb21wb25lbnQ8VD5cbiAgZXh0ZW5kcyBDZGtUYWJsZTxUPlxuICBpbXBsZW1lbnRzIEFmdGVyQ29udGVudEluaXQsIE9uRGVzdHJveSB7XG4gIEBJbnB1dCgpXG4gIGVuYWJsZVNjcm9sbFdyYXBwZXI6IGJvb2xlYW47XG5cbiAgQFZpZXdDaGlsZChUYWJsZVBsYWNlaG9sZGVyT3V0bGV0LCB7IHN0YXRpYzogdHJ1ZSB9KVxuICBfcGxhY2Vob2xkZXJPdXRsZXQ6IFRhYmxlUGxhY2Vob2xkZXJPdXRsZXQ7XG5cbiAgQENvbnRlbnRDaGlsZChUYWJsZVBsYWNlaG9sZGVyRGVmRGlyZWN0aXZlLCB7IHN0YXRpYzogdHJ1ZSB9KVxuICBfcGxhY2Vob2xkZXJEZWY6IFRhYmxlUGxhY2Vob2xkZXJEZWZEaXJlY3RpdmU7XG5cbiAgLy8gRklYTUU6IHdvcmthcm91bmQgdG8gb3ZlcnJpZGUgYmVjYXVzZSBpdCB3aWxsIGJyZWFrIGNvbnN0cnVjdG9yIGlmIGl0IGlzIGZpZWxkLCBidXQgd2h5IE1hdFRhYmxlIHdvcmtzP1xuICAvLyBAdHMtaWdub3JlXG4gIHByb3RlY3RlZCBnZXQgc3RpY2t5Q3NzQ2xhc3MoKSB7XG4gICAgcmV0dXJuICdhdWktdGFibGUtc3RpY2t5JztcbiAgfVxuXG4gIHByb3RlY3RlZCBzZXQgc3RpY2t5Q3NzQ2xhc3MoXzogc3RyaW5nKSB7XG4gICAgLy8gbm90aGluZ1xuICB9XG5cbiAgbmdBZnRlckNvbnRlbnRJbml0KCkge1xuICAgIHRoaXMuX2NyZWF0ZVBsYWNlaG9sZGVyKCk7XG4gIH1cblxuICBwcml2YXRlIF9jcmVhdGVQbGFjZWhvbGRlcigpIHtcbiAgICBjb25zdCBmb290ZXJSb3cgPSB0aGlzLl9wbGFjZWhvbGRlckRlZjtcbiAgICBpZiAoIXRoaXMuX3BsYWNlaG9sZGVyRGVmKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy5fcGxhY2Vob2xkZXJPdXRsZXQudmlld0NvbnRhaW5lcjtcbiAgICBjb250YWluZXIuY3JlYXRlRW1iZWRkZWRWaWV3KGZvb3RlclJvdy50ZW1wbGF0ZVJlZik7XG4gIH1cblxuICBwcml2YXRlIF9jbGVhclBsYWNlaG9sZGVyKCkge1xuICAgIHRoaXMuX3BsYWNlaG9sZGVyT3V0bGV0LnZpZXdDb250YWluZXIuY2xlYXIoKTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCkge1xuICAgIHN1cGVyLm5nT25EZXN0cm95KCk7XG4gICAgdGhpcy5fY2xlYXJQbGFjZWhvbGRlcigpO1xuICB9XG59XG4iXX0=
@@ -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 "./table.component.scss.ngstyle";
8
- import * as i1 from "./table-scroll.scss.ngstyle";
9
- import * as i2 from "@angular/core";
10
- import * as i3 from "@angular/cdk/table";
11
- import * as i4 from "./table-placeholder.directive";
12
- import * as i5 from "./table.component";
13
- import * as i6 from "@angular/cdk/collections";
14
- import * as i7 from "@angular/cdk/bidi";
15
- import * as i8 from "@angular/common";
16
- import * as i9 from "@angular/cdk/platform";
17
- import * as i10 from "@angular/cdk/scrolling";
18
- var styles_TableComponent = [i0.styles, i1.styles];
19
- var RenderType_TableComponent = i2.ɵcrt({ encapsulation: 2, styles: styles_TableComponent, data: {} });
20
- export { RenderType_TableComponent as RenderType_TableComponent };
21
- export function View_TableComponent_0(_l) { return i2.ɵvid(2, [i2.ɵqud(402653184, 1, { _rowOutlet: 0 }), i2.ɵqud(402653184, 2, { _headerRowOutlet: 0 }), i2.ɵqud(402653184, 3, { _footerRowOutlet: 0 }), i2.ɵqud(402653184, 4, { _noDataRowOutlet: 0 }), i2.ɵqud(402653184, 5, { _placeholderOutlet: 0 }), i2.ɵncd(null, 0), i2.ɵncd(null, 1), (_l()(), i2.ɵeld(7, 16777216, null, null, 1, null, null, null, null, null, null, null)), i2.ɵdid(8, 16384, [[2, 4]], 0, i3.HeaderRowOutlet, [i2.ViewContainerRef, i2.ElementRef], null, null), (_l()(), i2.ɵeld(9, 16777216, null, null, 1, null, null, null, null, null, null, null)), i2.ɵdid(10, 16384, [[1, 4]], 0, i3.DataRowOutlet, [i2.ViewContainerRef, i2.ElementRef], null, null), (_l()(), i2.ɵeld(11, 16777216, null, null, 1, null, null, null, null, null, null, null)), i2.ɵdid(12, 16384, [[4, 4]], 0, i3.NoDataRowOutlet, [i2.ViewContainerRef, i2.ElementRef], null, null), (_l()(), i2.ɵeld(13, 16777216, null, null, 1, null, null, null, null, null, null, null)), i2.ɵdid(14, 16384, [[3, 4]], 0, i3.FooterRowOutlet, [i2.ViewContainerRef, i2.ElementRef], null, null), (_l()(), i2.ɵeld(15, 16777216, null, null, 1, null, null, null, null, null, null, null)), i2.ɵdid(16, 16384, [[5, 4]], 0, i4.TablePlaceholderOutlet, [i2.ViewContainerRef, i2.ElementRef], null, null)], null, null); }
22
- export function View_TableComponent_Host_0(_l) { return i2.ɵvid(0, [(_l()(), i2.ɵeld(0, 0, null, null, 10, "aui-table", [["class", "aui-table"]], null, null, null, View_TableComponent_0, RenderType_TableComponent)), i2.ɵprd(6144, null, i3.CDK_TABLE, null, [i5.TableComponent]), i2.ɵprd(512, null, i6._VIEW_REPEATER_STRATEGY, i6._DisposeViewRepeaterStrategy, []), i2.ɵprd(512, null, i3._COALESCED_STYLE_SCHEDULER, i3._CoalescedStyleScheduler, [i2.NgZone]), i2.ɵdid(4, 3391488, null, 6, i5.TableComponent, [i2.IterableDiffers, i2.ChangeDetectorRef, i2.ElementRef, [8, null], [2, i7.Directionality], i8.DOCUMENT, i9.Platform, [2, i6._VIEW_REPEATER_STRATEGY], [2, i3._COALESCED_STYLE_SCHEDULER], [3, i3.STICKY_POSITIONING_LISTENER], [2, i10.ViewportRuler]], null, null), i2.ɵqud(603979776, 1, { _contentColumnDefs: 1 }), i2.ɵqud(603979776, 2, { _contentRowDefs: 1 }), i2.ɵqud(603979776, 3, { _contentHeaderRowDefs: 1 }), i2.ɵqud(603979776, 4, { _contentFooterRowDefs: 1 }), i2.ɵqud(603979776, 5, { _noDataRow: 0 }), i2.ɵqud(335544320, 6, { _placeholderDef: 0 })], function (_ck, _v) { _ck(_v, 4, 0); }, null); }
23
- var TableComponentNgFactory = i2.ɵccf("aui-table", i5.TableComponent, View_TableComponent_Host_0, { trackBy: "trackBy", dataSource: "dataSource", multiTemplateDataRows: "multiTemplateDataRows", fixedLayout: "fixedLayout", enableScrollWrapper: "enableScrollWrapper" }, {}, ["caption", "colgroup, col"]);
24
- export { TableComponentNgFactory as TableComponentNgFactory };
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuY29tcG9uZW50Lm5nZmFjdG9yeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS5jb21wb25lbnQubmdmYWN0b3J5LnRzIiwiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLmNvbXBvbmVudC50cy5UYWJsZUNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OzJTQ0VFLGVBQTBDLEdBQzFDLGVBQWdELElBQ2hELDJMQUE2QyxJQUM3QywwTEFBdUMsSUFDdkMsNkxBQTZDLElBQzdDLDZMQUE2QyxJQUUzQyxvTUFBdUQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iLCJcbiAgICBcbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiY2FwdGlvblwiPjwvbmctY29udGVudD5cbiAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiY29sZ3JvdXAsIGNvbFwiPjwvbmctY29udGVudD5cbiAgPG5nLWNvbnRhaW5lciBoZWFkZXJSb3dPdXRsZXQ+PC9uZy1jb250YWluZXI+XG4gIDxuZy1jb250YWluZXIgcm93T3V0bGV0PjwvbmctY29udGFpbmVyPlxuICA8bmctY29udGFpbmVyIG5vRGF0YVJvd091dGxldD48L25nLWNvbnRhaW5lcj5cbiAgPG5nLWNvbnRhaW5lciBmb290ZXJSb3dPdXRsZXQ+PC9uZy1jb250YWluZXI+XG5cbiAgICA8bmctY29udGFpbmVyIGF1aVRhYmxlUGxhY2Vob2xkZXJPdXRsZXQ+PC9uZy1jb250YWluZXI+XG4gICJdfQ==
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","extends":{"__symbol":1,"members":[]},"arity":1,"members":{"enableScrollWrapper":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"_placeholderOutlet":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":3,"members":[]},"arguments":[{"__symbol":4,"members":[]},{"static":true}]}]}],"_placeholderDef":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":5,"members":[]},"arguments":[{"__symbol":6,"members":[]},{"static":true}]}]}],"ngAfterContentInit":[{"__symbolic":"method"}],"_createPlaceholder":[{"__symbolic":"method"}],"_clearPlaceholder":[{"__symbolic":"method"}],"ngOnDestroy":[{"__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":7,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":8,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":9,"members":[]}}}},{"isAttribute":true,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"value":"role"}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":10,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":11,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":12,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":13,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":14,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":true,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":15,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":16,"members":[]}}}}],"lifecycleHooks":[0,1,4,5]},"isComponent":true,"selector":"aui-table","exportAs":"auiTable","inputs":{"trackBy":"trackBy","dataSource":"dataSource","multiTemplateDataRows":"multiTemplateDataRows","fixedLayout":"fixedLayout","enableScrollWrapper":"enableScrollWrapper"},"outputs":{},"hostListeners":{},"hostProperties":{},"hostAttributes":{"class":"aui-table"},"providers":[{"token":{"identifier":{"reference":{"__symbol":17,"members":[]}}},"useClass":null,"useFactory":null,"useExisting":{"identifier":{"reference":{"__symbol":0,"members":[]}}},"multi":false},{"token":{"identifier":{"reference":{"__symbol":13,"members":[]}}},"useClass":{"reference":{"__symbol":18,"members":[]},"diDeps":[],"lifecycleHooks":[]},"useFactory":null,"deps":[],"multi":false},{"token":{"identifier":{"reference":{"__symbol":14,"members":[]}}},"useClass":{"reference":{"__symbol":19,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":20,"members":[]}}}}],"lifecycleHooks":[1]},"useFactory":null,"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":20,"members":[]}}}}],"multi":false}],"viewProviders":[],"queries":[{"selectors":[{"identifier":{"reference":{"__symbol":21,"members":[]}}}],"first":false,"descendants":true,"emitDistinctChangesOnly":false,"propertyName":"_contentColumnDefs","read":null},{"selectors":[{"identifier":{"reference":{"__symbol":22,"members":[]}}}],"first":false,"descendants":true,"emitDistinctChangesOnly":false,"propertyName":"_contentRowDefs","read":null},{"selectors":[{"identifier":{"reference":{"__symbol":23,"members":[]}}}],"first":false,"descendants":true,"emitDistinctChangesOnly":false,"propertyName":"_contentHeaderRowDefs","read":null},{"selectors":[{"identifier":{"reference":{"__symbol":24,"members":[]}}}],"first":false,"descendants":true,"emitDistinctChangesOnly":false,"propertyName":"_contentFooterRowDefs","read":null},{"selectors":[{"identifier":{"reference":{"__symbol":25,"members":[]}}}],"first":true,"descendants":true,"propertyName":"_noDataRow","read":null},{"selectors":[{"identifier":{"reference":{"__symbol":6,"members":[]}}}],"first":true,"descendants":true,"propertyName":"_placeholderDef","read":null,"static":true}],"guards":{},"viewQueries":[{"selectors":[{"identifier":{"reference":{"__symbol":26,"members":[]}}}],"first":true,"descendants":true,"propertyName":"_rowOutlet","read":null,"static":true},{"selectors":[{"identifier":{"reference":{"__symbol":27,"members":[]}}}],"first":true,"descendants":true,"propertyName":"_headerRowOutlet","read":null,"static":true},{"selectors":[{"identifier":{"reference":{"__symbol":28,"members":[]}}}],"first":true,"descendants":true,"propertyName":"_footerRowOutlet","read":null,"static":true},{"selectors":[{"identifier":{"reference":{"__symbol":29,"members":[]}}}],"first":true,"descendants":true,"propertyName":"_noDataRowOutlet","read":null,"static":true},{"selectors":[{"identifier":{"reference":{"__symbol":4,"members":[]}}}],"first":true,"descendants":true,"propertyName":"_placeholderOutlet","read":null,"static":true}],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":["caption","colgroup, col"],"encapsulation":2,"styles":[],"animations":[]},"componentViewType":{"__symbol":30,"members":[]},"rendererType":{"__symbol":31,"members":[]},"componentFactory":{"__symbol":32,"members":[]}}}],"symbols":[{"__symbol":0,"name":"TableComponent","filePath":"./table.component"},{"__symbol":1,"name":"CdkTable","filePath":"@angular/cdk/table/index"},{"__symbol":2,"name":"Input","filePath":"@angular/core"},{"__symbol":3,"name":"ViewChild","filePath":"@angular/core"},{"__symbol":4,"name":"TablePlaceholderOutlet","filePath":"./table-placeholder.directive"},{"__symbol":5,"name":"ContentChild","filePath":"@angular/core"},{"__symbol":6,"name":"TablePlaceholderDefDirective","filePath":"./table-placeholder.directive"},{"__symbol":7,"name":"IterableDiffers","filePath":"@angular/core"},{"__symbol":8,"name":"ChangeDetectorRef","filePath":"@angular/core"},{"__symbol":9,"name":"ElementRef","filePath":"@angular/core"},{"__symbol":10,"name":"Directionality","filePath":"@angular/cdk/bidi/index"},{"__symbol":11,"name":"DOCUMENT","filePath":"@angular/common"},{"__symbol":12,"name":"Platform","filePath":"@angular/cdk/platform/index"},{"__symbol":13,"name":"_VIEW_REPEATER_STRATEGY","filePath":"@angular/cdk/collections/index"},{"__symbol":14,"name":"_COALESCED_STYLE_SCHEDULER","filePath":"@angular/cdk/table/index"},{"__symbol":15,"name":"STICKY_POSITIONING_LISTENER","filePath":"@angular/cdk/table/index"},{"__symbol":16,"name":"ViewportRuler","filePath":"@angular/cdk/scrolling/index"},{"__symbol":17,"name":"CDK_TABLE","filePath":"@angular/cdk/table/index"},{"__symbol":18,"name":"_DisposeViewRepeaterStrategy","filePath":"@angular/cdk/collections/index"},{"__symbol":19,"name":"_CoalescedStyleScheduler","filePath":"@angular/cdk/table/index"},{"__symbol":20,"name":"NgZone","filePath":"@angular/core"},{"__symbol":21,"name":"CdkColumnDef","filePath":"@angular/cdk/table/index"},{"__symbol":22,"name":"CdkRowDef","filePath":"@angular/cdk/table/index"},{"__symbol":23,"name":"CdkHeaderRowDef","filePath":"@angular/cdk/table/index"},{"__symbol":24,"name":"CdkFooterRowDef","filePath":"@angular/cdk/table/index"},{"__symbol":25,"name":"CdkNoDataRow","filePath":"@angular/cdk/table/index"},{"__symbol":26,"name":"DataRowOutlet","filePath":"@angular/cdk/table/index"},{"__symbol":27,"name":"HeaderRowOutlet","filePath":"@angular/cdk/table/index"},{"__symbol":28,"name":"FooterRowOutlet","filePath":"@angular/cdk/table/index"},{"__symbol":29,"name":"NoDataRowOutlet","filePath":"@angular/cdk/table/index"},{"__symbol":30,"name":"View_TableComponent_0","filePath":"./table.component.ngfactory"},{"__symbol":31,"name":"RenderType_TableComponent","filePath":"./table.component.ngfactory"},{"__symbol":32,"name":"TableComponentNgFactory","filePath":"./table.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-table{display:block;padding:0 12px 12px;font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m);color:rgb(var(--aui-color-main-text));background-color:rgb(var(--aui-color-n-9));border-radius:var(--aui-border-radius-l);overflow:auto}.aui-table::-webkit-scrollbar{width:4px;height:4px}.aui-table::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-table__header-row,.aui-table__row{display:flex;align-items:center}.aui-table__header-row.hasPanel,.aui-table__row.hasPanel{flex-wrap:wrap}.aui-table__header-row+.aui-table__row{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row{position:relative;border:solid rgb(var(--aui-color-n-8));border-width:1px 1px 0;background-color:rgb(var(--aui-color-n-10));padding:0 9px;min-height:58px;box-sizing:content-box}.aui-table__row:first-child{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row:last-child{border-bottom-width:1px;min-height:58px;border-bottom-left-radius:var(--aui-border-radius-l);border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__row.isDisabled:before{content:\"\";z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgb(var(--aui-color-n-10));opacity:.7;cursor:not-allowed}.aui-table__header-row{background-color:rgb(var(--aui-color-n-9));padding:0 10px}.aui-table__cell,.aui-table__header-cell{flex:1}.aui-table__cell{padding:15px 10px;background-color:rgb(var(--aui-color-n-10));overflow:hidden;word-wrap:break-word}.aui-table__header-cell{padding:12px 10px;font-weight:var(--aui-font-weight-bold);background-color:rgb(var(--aui-color-n-9));white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aui-table__column-expand-button{display:flex;align-items:center;max-width:calc(10px * 2 + var(--aui-icon-size-m))}.aui-table__column-expand-button.aui-table__cell{height:58px}.aui-table__column-expand-button .aui-expand-button{display:inline-flex;justify-content:center;align-items:center;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m);font-size:var(--aui-icon-size-m);line-height:var(--aui-icon-size-m);color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));border-radius:50%;border:none;cursor:pointer;transition:transform .1s ease-in-out}.aui-table__column-expand-button .aui-expand-button aui-icon{display:block;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m)}.aui-table__column-expand-button .aui-expand-button:hover{background-color:rgb(var(--aui-color-p-7))}.aui-table__column-expand-button .aui-expand-button:active{background-color:rgb(var(--aui-color-p-5))}.aui-table__column-expand-button .aui-expand-button.isExpanded{transform:rotate(90deg);color:#fff;background-color:rgb(var(--aui-color-primary))}.aui-table__column-expand-button .aui-expand-button.isExpanded:hover{background-color:rgb(var(--aui-color-p-1))}.aui-table__column-expand-button .aui-expand-button.isExpanded:active{background-color:rgb(var(--aui-color-p-0))}.aui-table__column-expand-button .aui-expand-button.isExpanded[disabled],.aui-table__column-expand-button .aui-expand-button[disabled]{background-color:rgb(var(--aui-color-n-8));color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-table__column-expand-panel{margin-top:-6px}.aui-table__column-expand-panel.aui-table__header-cell{display:none}.aui-table__column-expand-panel.aui-table__cell{width:100%;flex-shrink:0;flex-basis:100%;padding:0 10px;overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel{border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel-content.hasBackground{padding:16px;background-color:rgb(var(--aui-color-n-9))}"];
8
- export { styles as styles };
9
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuY29tcG9uZW50LnNjc3MubmdzdHlsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJsZS90YWJsZS5jb21wb25lbnQuc2Nzcy5uZ3N0eWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iXX0=
@@ -1,61 +0,0 @@
1
- import { CdkTableModule } from '@angular/cdk/table';
2
- import { CommonModule } from '@angular/common';
3
- import { NgModule } from '@angular/core';
4
- import { IconModule } from '../icon/icon.module';
5
- import { TableCellDefDirective } from './table-cell-def.directive';
6
- import { TableExpandButtonCellComponent, TableExpandPanelCellComponent, } from './table-cell.component';
7
- import { TableCellDirective } from './table-cell.directive';
8
- import { TableColumnDefDirective } from './table-column-def.directive';
9
- import { TableHeaderCellDefDirective } from './table-header-cell-def.directive';
10
- import { TableHeaderCellDirective } from './table-header-cell.directive';
11
- import { TableHeaderRowDefDirective } from './table-header-row-def.directive';
12
- import { TableHeaderRowComponent } from './table-header-row.component';
13
- import { TablePlaceholderDefDirective, TablePlaceholderOutlet, } from './table-placeholder.directive';
14
- import { TableRowDefDirective } from './table-row-def.directive';
15
- import { TableRowComponent } from './table-row.component';
16
- import { TableScrollShadowDirective, TableScrollWrapperDirective, } from './table-scroll.directive';
17
- import { TableComponent } from './table.component';
18
- export class TableModule {
19
- }
20
- TableModule.decorators = [
21
- { type: NgModule, args: [{
22
- imports: [CommonModule, IconModule, CdkTableModule],
23
- declarations: [
24
- TableComponent,
25
- TableRowComponent,
26
- TableHeaderRowComponent,
27
- TableExpandButtonCellComponent,
28
- TableExpandPanelCellComponent,
29
- TableCellDirective,
30
- TableCellDefDirective,
31
- TableHeaderCellDirective,
32
- TableRowDefDirective,
33
- TableHeaderRowDefDirective,
34
- TableHeaderCellDefDirective,
35
- TableColumnDefDirective,
36
- TableScrollShadowDirective,
37
- TablePlaceholderOutlet,
38
- TablePlaceholderDefDirective,
39
- TableScrollWrapperDirective,
40
- ],
41
- exports: [
42
- TableComponent,
43
- TableRowComponent,
44
- TableHeaderRowComponent,
45
- TableExpandButtonCellComponent,
46
- TableExpandPanelCellComponent,
47
- TableCellDirective,
48
- TableCellDefDirective,
49
- TableHeaderCellDirective,
50
- TableRowDefDirective,
51
- TableHeaderRowDefDirective,
52
- TableHeaderCellDefDirective,
53
- TableColumnDefDirective,
54
- TableScrollShadowDirective,
55
- TablePlaceholderOutlet,
56
- TablePlaceholderDefDirective,
57
- TableScrollWrapperDirective,
58
- ],
59
- },] }
60
- ];
61
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDcEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRWpELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ25FLE9BQU8sRUFDTCw4QkFBOEIsRUFDOUIsNkJBQTZCLEdBQzlCLE1BQU0sd0JBQXdCLENBQUM7QUFDaEMsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDNUQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDdkUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDaEYsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDekUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDOUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDdkUsT0FBTyxFQUNMLDRCQUE0QixFQUM1QixzQkFBc0IsR0FDdkIsTUFBTSwrQkFBK0IsQ0FBQztBQUN2QyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUNqRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUMxRCxPQUFPLEVBQ0wsMEJBQTBCLEVBQzFCLDJCQUEyQixHQUM1QixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQXlDbkQsTUFBTSxPQUFPLFdBQVc7OztZQXZDdkIsUUFBUSxTQUFDO2dCQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxVQUFVLEVBQUUsY0FBYyxDQUFDO2dCQUNuRCxZQUFZLEVBQUU7b0JBQ1osY0FBYztvQkFDZCxpQkFBaUI7b0JBQ2pCLHVCQUF1QjtvQkFDdkIsOEJBQThCO29CQUM5Qiw2QkFBNkI7b0JBQzdCLGtCQUFrQjtvQkFDbEIscUJBQXFCO29CQUNyQix3QkFBd0I7b0JBQ3hCLG9CQUFvQjtvQkFDcEIsMEJBQTBCO29CQUMxQiwyQkFBMkI7b0JBQzNCLHVCQUF1QjtvQkFDdkIsMEJBQTBCO29CQUMxQixzQkFBc0I7b0JBQ3RCLDRCQUE0QjtvQkFDNUIsMkJBQTJCO2lCQUM1QjtnQkFDRCxPQUFPLEVBQUU7b0JBQ1AsY0FBYztvQkFDZCxpQkFBaUI7b0JBQ2pCLHVCQUF1QjtvQkFDdkIsOEJBQThCO29CQUM5Qiw2QkFBNkI7b0JBQzdCLGtCQUFrQjtvQkFDbEIscUJBQXFCO29CQUNyQix3QkFBd0I7b0JBQ3hCLG9CQUFvQjtvQkFDcEIsMEJBQTBCO29CQUMxQiwyQkFBMkI7b0JBQzNCLHVCQUF1QjtvQkFDdkIsMEJBQTBCO29CQUMxQixzQkFBc0I7b0JBQ3RCLDRCQUE0QjtvQkFDNUIsMkJBQTJCO2lCQUM1QjthQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrVGFibGVNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEljb25Nb2R1bGUgfSBmcm9tICcuLi9pY29uL2ljb24ubW9kdWxlJztcblxuaW1wb3J0IHsgVGFibGVDZWxsRGVmRGlyZWN0aXZlIH0gZnJvbSAnLi90YWJsZS1jZWxsLWRlZi5kaXJlY3RpdmUnO1xuaW1wb3J0IHtcbiAgVGFibGVFeHBhbmRCdXR0b25DZWxsQ29tcG9uZW50LFxuICBUYWJsZUV4cGFuZFBhbmVsQ2VsbENvbXBvbmVudCxcbn0gZnJvbSAnLi90YWJsZS1jZWxsLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBUYWJsZUNlbGxEaXJlY3RpdmUgfSBmcm9tICcuL3RhYmxlLWNlbGwuZGlyZWN0aXZlJztcbmltcG9ydCB7IFRhYmxlQ29sdW1uRGVmRGlyZWN0aXZlIH0gZnJvbSAnLi90YWJsZS1jb2x1bW4tZGVmLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBUYWJsZUhlYWRlckNlbGxEZWZEaXJlY3RpdmUgfSBmcm9tICcuL3RhYmxlLWhlYWRlci1jZWxsLWRlZi5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVGFibGVIZWFkZXJDZWxsRGlyZWN0aXZlIH0gZnJvbSAnLi90YWJsZS1oZWFkZXItY2VsbC5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVGFibGVIZWFkZXJSb3dEZWZEaXJlY3RpdmUgfSBmcm9tICcuL3RhYmxlLWhlYWRlci1yb3ctZGVmLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBUYWJsZUhlYWRlclJvd0NvbXBvbmVudCB9IGZyb20gJy4vdGFibGUtaGVhZGVyLXJvdy5jb21wb25lbnQnO1xuaW1wb3J0IHtcbiAgVGFibGVQbGFjZWhvbGRlckRlZkRpcmVjdGl2ZSxcbiAgVGFibGVQbGFjZWhvbGRlck91dGxldCxcbn0gZnJvbSAnLi90YWJsZS1wbGFjZWhvbGRlci5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVGFibGVSb3dEZWZEaXJlY3RpdmUgfSBmcm9tICcuL3RhYmxlLXJvdy1kZWYuZGlyZWN0aXZlJztcbmltcG9ydCB7IFRhYmxlUm93Q29tcG9uZW50IH0gZnJvbSAnLi90YWJsZS1yb3cuY29tcG9uZW50JztcbmltcG9ydCB7XG4gIFRhYmxlU2Nyb2xsU2hhZG93RGlyZWN0aXZlLFxuICBUYWJsZVNjcm9sbFdyYXBwZXJEaXJlY3RpdmUsXG59IGZyb20gJy4vdGFibGUtc2Nyb2xsLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBUYWJsZUNvbXBvbmVudCB9IGZyb20gJy4vdGFibGUuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgSWNvbk1vZHVsZSwgQ2RrVGFibGVNb2R1bGVdLFxuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBUYWJsZUNvbXBvbmVudCxcbiAgICBUYWJsZVJvd0NvbXBvbmVudCxcbiAgICBUYWJsZUhlYWRlclJvd0NvbXBvbmVudCxcbiAgICBUYWJsZUV4cGFuZEJ1dHRvbkNlbGxDb21wb25lbnQsXG4gICAgVGFibGVFeHBhbmRQYW5lbENlbGxDb21wb25lbnQsXG4gICAgVGFibGVDZWxsRGlyZWN0aXZlLFxuICAgIFRhYmxlQ2VsbERlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZUhlYWRlckNlbGxEaXJlY3RpdmUsXG4gICAgVGFibGVSb3dEZWZEaXJlY3RpdmUsXG4gICAgVGFibGVIZWFkZXJSb3dEZWZEaXJlY3RpdmUsXG4gICAgVGFibGVIZWFkZXJDZWxsRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlQ29sdW1uRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlU2Nyb2xsU2hhZG93RGlyZWN0aXZlLFxuICAgIFRhYmxlUGxhY2Vob2xkZXJPdXRsZXQsXG4gICAgVGFibGVQbGFjZWhvbGRlckRlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZVNjcm9sbFdyYXBwZXJEaXJlY3RpdmUsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBUYWJsZUNvbXBvbmVudCxcbiAgICBUYWJsZVJvd0NvbXBvbmVudCxcbiAgICBUYWJsZUhlYWRlclJvd0NvbXBvbmVudCxcbiAgICBUYWJsZUV4cGFuZEJ1dHRvbkNlbGxDb21wb25lbnQsXG4gICAgVGFibGVFeHBhbmRQYW5lbENlbGxDb21wb25lbnQsXG4gICAgVGFibGVDZWxsRGlyZWN0aXZlLFxuICAgIFRhYmxlQ2VsbERlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZUhlYWRlckNlbGxEaXJlY3RpdmUsXG4gICAgVGFibGVSb3dEZWZEaXJlY3RpdmUsXG4gICAgVGFibGVIZWFkZXJSb3dEZWZEaXJlY3RpdmUsXG4gICAgVGFibGVIZWFkZXJDZWxsRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlQ29sdW1uRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlU2Nyb2xsU2hhZG93RGlyZWN0aXZlLFxuICAgIFRhYmxlUGxhY2Vob2xkZXJPdXRsZXQsXG4gICAgVGFibGVQbGFjZWhvbGRlckRlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZVNjcm9sbFdyYXBwZXJEaXJlY3RpdmUsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlTW9kdWxlIHt9XG4iXX0=