@alauda/ui 6.2.3-beta.9 → 6.3.1-beta.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 (1289) 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 -10
  441. package/theme/style.css +2 -2
  442. package/theme/theme.module.d.ts +6 -0
  443. package/theme/theme.pipe.d.ts +9 -0
  444. package/theme/theme.service.d.ts +3 -0
  445. package/time-picker/component.d.ts +3 -0
  446. package/time-picker/panel/panel.component.d.ts +3 -0
  447. package/time-picker/time-picker.module.d.ts +15 -0
  448. package/tooltip/base-tooltip.d.ts +3 -0
  449. package/tooltip/public-api.d.ts +1 -0
  450. package/tooltip/tooltip-active.directive.d.ts +3 -0
  451. package/tooltip/tooltip-copy.directive.d.ts +3 -0
  452. package/tooltip/tooltip-intl.d.ts +3 -0
  453. package/tooltip/tooltip.component.d.ts +3 -0
  454. package/tooltip/tooltip.directive.d.ts +3 -0
  455. package/tooltip/tooltip.module.d.ts +10 -0
  456. package/tree-select/public-api.d.ts +0 -1
  457. package/tree-select/tree-node-placeholder.component.d.ts +3 -0
  458. package/tree-select/tree-select.component.d.ts +37 -3
  459. package/tree-select/tree-select.module.d.ts +10 -0
  460. package/utils/coercion.d.ts +1 -1
  461. package/utils/fn.d.ts +1 -1
  462. package/utils/observe-dom.d.ts +0 -1
  463. package/accordion/accordion-item/accordion-item.component.ngfactory.d.ts +0 -1
  464. package/accordion/accordion-item/accordion-item.component.scss.ngstyle.d.ts +0 -1
  465. package/accordion/accordion.component.ngfactory.d.ts +0 -1
  466. package/accordion/accordion.component.scss.ngstyle.d.ts +0 -1
  467. package/accordion/accordion.module.ngfactory.d.ts +0 -3
  468. package/alauda-ui.metadata.json +0 -1
  469. package/anchor/anchor.component.ngfactory.d.ts +0 -1
  470. package/anchor/anchor.component.scss.ngstyle.d.ts +0 -1
  471. package/anchor/anchor.module.ngfactory.d.ts +0 -3
  472. package/autocomplete/autocomplete-placeholder.component.ngfactory.d.ts +0 -1
  473. package/autocomplete/autocomplete.component.ngfactory.d.ts +0 -1
  474. package/autocomplete/autocomplete.component.scss.ngstyle.d.ts +0 -1
  475. package/autocomplete/autocomplete.module.ngfactory.d.ts +0 -3
  476. package/autocomplete/suggestion/suggestion.component.ngfactory.d.ts +0 -1
  477. package/autocomplete/suggestion/suggestion.component.scss.ngstyle.d.ts +0 -1
  478. package/autocomplete/suggestion-group/suggestion-group.component.ngfactory.d.ts +0 -1
  479. package/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.d.ts +0 -1
  480. package/back-top/back-top.component.ngfactory.d.ts +0 -1
  481. package/back-top/back-top.component.scss.ngstyle.d.ts +0 -1
  482. package/back-top/back-top.module.ngfactory.d.ts +0 -3
  483. package/breadcrumb/breadcrumb-item.component.ngfactory.d.ts +0 -1
  484. package/breadcrumb/breadcrumb-item.component.scss.ngstyle.d.ts +0 -1
  485. package/breadcrumb/breadcrumb.component.ngfactory.d.ts +0 -1
  486. package/breadcrumb/breadcrumb.component.scss.ngstyle.d.ts +0 -1
  487. package/breadcrumb/breadcrumb.module.ngfactory.d.ts +0 -3
  488. package/bundles/alauda-ui.umd.js +0 -12812
  489. package/bundles/alauda-ui.umd.js.map +0 -1
  490. package/bundles/alauda-ui.umd.min.js +0 -2
  491. package/bundles/alauda-ui.umd.min.js.map +0 -1
  492. package/button/button-group/button-group.component.ngfactory.d.ts +0 -1
  493. package/button/button-group/button-group.component.scss.ngstyle.d.ts +0 -1
  494. package/button/button.component.ngfactory.d.ts +0 -1
  495. package/button/button.component.scss.ngstyle.d.ts +0 -1
  496. package/button/button.module.ngfactory.d.ts +0 -3
  497. package/card/card.component.ngfactory.d.ts +0 -1
  498. package/card/card.component.scss.ngstyle.d.ts +0 -1
  499. package/card/card.module.ngfactory.d.ts +0 -3
  500. package/card/section.component.ngfactory.d.ts +0 -1
  501. package/card/section.component.scss.ngstyle.d.ts +0 -1
  502. package/checkbox/checkbox-group/checkbox-group.component.ngfactory.d.ts +0 -1
  503. package/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.d.ts +0 -1
  504. package/checkbox/checkbox.component.ngfactory.d.ts +0 -1
  505. package/checkbox/checkbox.component.scss.ngstyle.d.ts +0 -1
  506. package/checkbox/checkbox.module.ngfactory.d.ts +0 -3
  507. package/color-picker/color-picker.component.ngfactory.d.ts +0 -1
  508. package/color-picker/color-picker.component.scss.ngstyle.d.ts +0 -1
  509. package/color-picker/color-picker.module.ngfactory.d.ts +0 -3
  510. package/date-picker/calendar/date-picker-panel/component.ngfactory.d.ts +0 -1
  511. package/date-picker/calendar/date-picker-panel/style.scss.ngstyle.d.ts +0 -1
  512. package/date-picker/calendar/footer/component.ngfactory.d.ts +0 -1
  513. package/date-picker/calendar/footer/style.scss.ngstyle.d.ts +0 -1
  514. package/date-picker/calendar/header/component.ngfactory.d.ts +0 -1
  515. package/date-picker/calendar/header/style.scss.ngstyle.d.ts +0 -1
  516. package/date-picker/calendar/panel/picker-panel.ngfactory.d.ts +0 -1
  517. package/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.d.ts +0 -1
  518. package/date-picker/calendar/range-picker-panel/component.ngfactory.d.ts +0 -1
  519. package/date-picker/calendar/range-picker-panel/style.scss.ngstyle.d.ts +0 -1
  520. package/date-picker/date-picker/date-picker.component.ngfactory.d.ts +0 -1
  521. package/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.d.ts +0 -1
  522. package/date-picker/date-picker.module.ngfactory.d.ts +0 -3
  523. package/date-picker/range-picker/range-picker.component.ngfactory.d.ts +0 -1
  524. package/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.d.ts +0 -1
  525. package/date-picker/trigger/trigger.component.ngfactory.d.ts +0 -1
  526. package/date-picker/trigger/trigger.style.scss.shim.ngstyle.d.ts +0 -1
  527. package/dialog/confirm-dialog/confirm-dialog.component.ngfactory.d.ts +0 -1
  528. package/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.d.ts +0 -1
  529. package/dialog/dialog-content/dialog-content.component.ngfactory.d.ts +0 -1
  530. package/dialog/dialog-content/dialog-footer.component.ngfactory.d.ts +0 -1
  531. package/dialog/dialog-content/dialog-header.component.ngfactory.d.ts +0 -1
  532. package/dialog/dialog.component.ngfactory.d.ts +0 -1
  533. package/dialog/dialog.component.scss.ngstyle.d.ts +0 -1
  534. package/dialog/dialog.module.ngfactory.d.ts +0 -3
  535. package/drawer/component/drawer.component.ngfactory.d.ts +0 -1
  536. package/drawer/component/drawer.component.scss.ngstyle.d.ts +0 -1
  537. package/drawer/drawer.module.ngfactory.d.ts +0 -3
  538. package/dropdown/dropdown-button/dropdown-button.component.ngfactory.d.ts +0 -1
  539. package/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.d.ts +0 -1
  540. package/dropdown/dropdown.module.ngfactory.d.ts +0 -3
  541. package/dropdown/menu/menu.component.ngfactory.d.ts +0 -1
  542. package/dropdown/menu/menu.component.scss.ngstyle.d.ts +0 -1
  543. package/dropdown/menu-group/menu-group.component.ngfactory.d.ts +0 -1
  544. package/dropdown/menu-group/menu-group.component.scss.ngstyle.d.ts +0 -1
  545. package/dropdown/menu-item/menu-item.component.ngfactory.d.ts +0 -1
  546. package/dropdown/menu-item/menu-item.component.scss.ngstyle.d.ts +0 -1
  547. package/dropdown/submenu/submenu.component.ngfactory.d.ts +0 -1
  548. package/dropdown/submenu/submenu.component.scss.ngstyle.d.ts +0 -1
  549. package/esm2015/accordion/accordion-item/accordion-item.component.js +0 -68
  550. package/esm2015/accordion/accordion-item/accordion-item.component.ngfactory.js +0 -28
  551. package/esm2015/accordion/accordion-item/accordion-item.component.ngsummary.json +0 -1
  552. package/esm2015/accordion/accordion-item/accordion-item.component.scss.ngstyle.js +0 -9
  553. package/esm2015/accordion/accordion.component.js +0 -28
  554. package/esm2015/accordion/accordion.component.ngfactory.js +0 -17
  555. package/esm2015/accordion/accordion.component.ngsummary.json +0 -1
  556. package/esm2015/accordion/accordion.component.scss.ngstyle.js +0 -9
  557. package/esm2015/accordion/accordion.module.js +0 -28
  558. package/esm2015/accordion/accordion.module.ngfactory.js +0 -18
  559. package/esm2015/accordion/accordion.module.ngsummary.json +0 -1
  560. package/esm2015/accordion/public-api.ngsummary.json +0 -1
  561. package/esm2015/alauda-ui.js +0 -25
  562. package/esm2015/alauda-ui.ngsummary.json +0 -1
  563. package/esm2015/anchor/anchor.component.js +0 -146
  564. package/esm2015/anchor/anchor.component.ngfactory.js +0 -40
  565. package/esm2015/anchor/anchor.component.ngsummary.json +0 -1
  566. package/esm2015/anchor/anchor.component.scss.ngstyle.js +0 -9
  567. package/esm2015/anchor/anchor.directive.js +0 -174
  568. package/esm2015/anchor/anchor.directive.ngsummary.json +0 -1
  569. package/esm2015/anchor/anchor.module.js +0 -25
  570. package/esm2015/anchor/anchor.module.ngfactory.js +0 -13
  571. package/esm2015/anchor/anchor.module.ngsummary.json +0 -1
  572. package/esm2015/anchor/public-api.ngsummary.json +0 -1
  573. package/esm2015/anchor/types.ngsummary.json +0 -1
  574. package/esm2015/anchor/utils.ngsummary.json +0 -1
  575. package/esm2015/autocomplete/autocomplete-placeholder.component.js +0 -13
  576. package/esm2015/autocomplete/autocomplete-placeholder.component.ngfactory.js +0 -16
  577. package/esm2015/autocomplete/autocomplete-placeholder.component.ngsummary.json +0 -1
  578. package/esm2015/autocomplete/autocomplete.component.js +0 -40
  579. package/esm2015/autocomplete/autocomplete.component.ngfactory.js +0 -22
  580. package/esm2015/autocomplete/autocomplete.component.ngsummary.json +0 -1
  581. package/esm2015/autocomplete/autocomplete.component.scss.ngstyle.js +0 -9
  582. package/esm2015/autocomplete/autocomplete.directive.js +0 -253
  583. package/esm2015/autocomplete/autocomplete.directive.ngsummary.json +0 -1
  584. package/esm2015/autocomplete/autocomplete.module.js +0 -36
  585. package/esm2015/autocomplete/autocomplete.module.ngfactory.js +0 -20
  586. package/esm2015/autocomplete/autocomplete.module.ngsummary.json +0 -1
  587. package/esm2015/autocomplete/autocomplete.types.ngsummary.json +0 -1
  588. package/esm2015/autocomplete/helper-directives.js +0 -13
  589. package/esm2015/autocomplete/helper-directives.ngsummary.json +0 -1
  590. package/esm2015/autocomplete/public-api.ngsummary.json +0 -1
  591. package/esm2015/autocomplete/suggestion/suggestion.component.js +0 -79
  592. package/esm2015/autocomplete/suggestion/suggestion.component.ngfactory.js +0 -22
  593. package/esm2015/autocomplete/suggestion/suggestion.component.ngsummary.json +0 -1
  594. package/esm2015/autocomplete/suggestion/suggestion.component.scss.ngstyle.js +0 -9
  595. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.js +0 -25
  596. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngfactory.js +0 -18
  597. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.ngsummary.json +0 -1
  598. package/esm2015/autocomplete/suggestion-group/suggestion-group.component.scss.ngstyle.js +0 -9
  599. package/esm2015/back-top/back-top.component.js +0 -75
  600. package/esm2015/back-top/back-top.component.ngfactory.js +0 -25
  601. package/esm2015/back-top/back-top.component.ngsummary.json +0 -1
  602. package/esm2015/back-top/back-top.component.scss.ngstyle.js +0 -9
  603. package/esm2015/back-top/back-top.module.js +0 -14
  604. package/esm2015/back-top/back-top.module.ngfactory.js +0 -16
  605. package/esm2015/back-top/back-top.module.ngsummary.json +0 -1
  606. package/esm2015/back-top/public-api.ngsummary.json +0 -1
  607. package/esm2015/breadcrumb/breadcrumb-item.component.js +0 -36
  608. package/esm2015/breadcrumb/breadcrumb-item.component.ngfactory.js +0 -23
  609. package/esm2015/breadcrumb/breadcrumb-item.component.ngsummary.json +0 -1
  610. package/esm2015/breadcrumb/breadcrumb-item.component.scss.ngstyle.js +0 -9
  611. package/esm2015/breadcrumb/breadcrumb.component.js +0 -58
  612. package/esm2015/breadcrumb/breadcrumb.component.ngfactory.js +0 -17
  613. package/esm2015/breadcrumb/breadcrumb.component.ngsummary.json +0 -1
  614. package/esm2015/breadcrumb/breadcrumb.component.scss.ngstyle.js +0 -9
  615. package/esm2015/breadcrumb/breadcrumb.module.js +0 -15
  616. package/esm2015/breadcrumb/breadcrumb.module.ngfactory.js +0 -16
  617. package/esm2015/breadcrumb/breadcrumb.module.ngsummary.json +0 -1
  618. package/esm2015/breadcrumb/public-api.ngsummary.json +0 -1
  619. package/esm2015/button/button-group/button-group.component.js +0 -14
  620. package/esm2015/button/button-group/button-group.component.ngfactory.js +0 -17
  621. package/esm2015/button/button-group/button-group.component.ngsummary.json +0 -1
  622. package/esm2015/button/button-group/button-group.component.scss.ngstyle.js +0 -9
  623. package/esm2015/button/button.component.js +0 -124
  624. package/esm2015/button/button.component.ngfactory.js +0 -23
  625. package/esm2015/button/button.component.ngsummary.json +0 -1
  626. package/esm2015/button/button.component.scss.ngstyle.js +0 -9
  627. package/esm2015/button/button.module.js +0 -15
  628. package/esm2015/button/button.module.ngfactory.js +0 -16
  629. package/esm2015/button/button.module.ngsummary.json +0 -1
  630. package/esm2015/button/button.types.ngsummary.json +0 -1
  631. package/esm2015/button/public-api.ngsummary.json +0 -1
  632. package/esm2015/card/card.component.js +0 -20
  633. package/esm2015/card/card.component.ngfactory.js +0 -17
  634. package/esm2015/card/card.component.ngsummary.json +0 -1
  635. package/esm2015/card/card.component.scss.ngstyle.js +0 -9
  636. package/esm2015/card/card.module.js +0 -27
  637. package/esm2015/card/card.module.ngfactory.js +0 -12
  638. package/esm2015/card/card.module.ngsummary.json +0 -1
  639. package/esm2015/card/helper-directives.js +0 -33
  640. package/esm2015/card/helper-directives.ngsummary.json +0 -1
  641. package/esm2015/card/public-api.ngsummary.json +0 -1
  642. package/esm2015/card/section.component.js +0 -14
  643. package/esm2015/card/section.component.ngfactory.js +0 -17
  644. package/esm2015/card/section.component.ngsummary.json +0 -1
  645. package/esm2015/card/section.component.scss.ngstyle.js +0 -9
  646. package/esm2015/checkbox/checkbox-group/checkbox-group.component.js +0 -60
  647. package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngfactory.js +0 -18
  648. package/esm2015/checkbox/checkbox-group/checkbox-group.component.ngsummary.json +0 -1
  649. package/esm2015/checkbox/checkbox-group/checkbox-group.component.scss.ngstyle.js +0 -9
  650. package/esm2015/checkbox/checkbox.component.js +0 -105
  651. package/esm2015/checkbox/checkbox.component.ngfactory.js +0 -30
  652. package/esm2015/checkbox/checkbox.component.ngsummary.json +0 -1
  653. package/esm2015/checkbox/checkbox.component.scss.ngstyle.js +0 -9
  654. package/esm2015/checkbox/checkbox.module.js +0 -15
  655. package/esm2015/checkbox/checkbox.module.ngfactory.js +0 -16
  656. package/esm2015/checkbox/checkbox.module.ngsummary.json +0 -1
  657. package/esm2015/checkbox/public-api.ngsummary.json +0 -1
  658. package/esm2015/color-picker/color-picker.component.js +0 -29
  659. package/esm2015/color-picker/color-picker.component.ngfactory.js +0 -22
  660. package/esm2015/color-picker/color-picker.component.ngsummary.json +0 -1
  661. package/esm2015/color-picker/color-picker.component.scss.ngstyle.js +0 -9
  662. package/esm2015/color-picker/color-picker.module.js +0 -14
  663. package/esm2015/color-picker/color-picker.module.ngfactory.js +0 -13
  664. package/esm2015/color-picker/color-picker.module.ngsummary.json +0 -1
  665. package/esm2015/color-picker/public-api.ngsummary.json +0 -1
  666. package/esm2015/date-picker/calendar/constant.ngsummary.json +0 -1
  667. package/esm2015/date-picker/calendar/date-picker-panel/component.js +0 -106
  668. package/esm2015/date-picker/calendar/date-picker-panel/component.ngfactory.js +0 -65
  669. package/esm2015/date-picker/calendar/date-picker-panel/component.ngsummary.json +0 -1
  670. package/esm2015/date-picker/calendar/date-picker-panel/style.scss.ngstyle.js +0 -9
  671. package/esm2015/date-picker/calendar/footer/component.js +0 -25
  672. package/esm2015/date-picker/calendar/footer/component.ngfactory.js +0 -32
  673. package/esm2015/date-picker/calendar/footer/component.ngsummary.json +0 -1
  674. package/esm2015/date-picker/calendar/footer/style.scss.ngstyle.js +0 -9
  675. package/esm2015/date-picker/calendar/header/component.js +0 -100
  676. package/esm2015/date-picker/calendar/header/component.ngfactory.js +0 -58
  677. package/esm2015/date-picker/calendar/header/component.ngsummary.json +0 -1
  678. package/esm2015/date-picker/calendar/header/style.scss.ngstyle.js +0 -9
  679. package/esm2015/date-picker/calendar/panel/picker-panel.js +0 -144
  680. package/esm2015/date-picker/calendar/panel/picker-panel.ngfactory.js +0 -34
  681. package/esm2015/date-picker/calendar/panel/picker-panel.ngsummary.json +0 -1
  682. package/esm2015/date-picker/calendar/panel/picker-panel.style.scss.ngstyle.js +0 -9
  683. package/esm2015/date-picker/calendar/range-picker-panel/component.js +0 -193
  684. package/esm2015/date-picker/calendar/range-picker-panel/component.ngfactory.js +0 -76
  685. package/esm2015/date-picker/calendar/range-picker-panel/component.ngsummary.json +0 -1
  686. package/esm2015/date-picker/calendar/range-picker-panel/style.scss.ngstyle.js +0 -9
  687. package/esm2015/date-picker/calendar/util.ngsummary.json +0 -1
  688. package/esm2015/date-picker/date-picker/date-picker.component.js +0 -84
  689. package/esm2015/date-picker/date-picker/date-picker.component.ngfactory.js +0 -49
  690. package/esm2015/date-picker/date-picker/date-picker.component.ngsummary.json +0 -1
  691. package/esm2015/date-picker/date-picker/date-picker.style.scss.shim.ngstyle.js +0 -9
  692. package/esm2015/date-picker/date-picker.module.js +0 -47
  693. package/esm2015/date-picker/date-picker.module.ngfactory.js +0 -31
  694. package/esm2015/date-picker/date-picker.module.ngsummary.json +0 -1
  695. package/esm2015/date-picker/date-picker.type.ngsummary.json +0 -1
  696. package/esm2015/date-picker/public-api.js +0 -11
  697. package/esm2015/date-picker/public-api.ngsummary.json +0 -1
  698. package/esm2015/date-picker/range-picker/range-picker.component.js +0 -66
  699. package/esm2015/date-picker/range-picker/range-picker.component.ngfactory.js +0 -49
  700. package/esm2015/date-picker/range-picker/range-picker.component.ngsummary.json +0 -1
  701. package/esm2015/date-picker/range-picker/range-picker.style.scss.shim.ngstyle.js +0 -9
  702. package/esm2015/date-picker/trigger/trigger.component.js +0 -61
  703. package/esm2015/date-picker/trigger/trigger.component.ngfactory.js +0 -66
  704. package/esm2015/date-picker/trigger/trigger.component.ngsummary.json +0 -1
  705. package/esm2015/date-picker/trigger/trigger.style.scss.shim.ngstyle.js +0 -9
  706. package/esm2015/dialog/confirm-dialog/confirm-dialog-config.ngsummary.json +0 -1
  707. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.js +0 -95
  708. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngfactory.js +0 -32
  709. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.ngsummary.json +0 -1
  710. package/esm2015/dialog/confirm-dialog/confirm-dialog.component.scss.ngstyle.js +0 -9
  711. package/esm2015/dialog/dialog-config.ngsummary.json +0 -1
  712. package/esm2015/dialog/dialog-content/dialog-close.directive.js +0 -35
  713. package/esm2015/dialog/dialog-content/dialog-close.directive.ngsummary.json +0 -1
  714. package/esm2015/dialog/dialog-content/dialog-content.component.js +0 -27
  715. package/esm2015/dialog/dialog-content/dialog-content.component.ngfactory.js +0 -18
  716. package/esm2015/dialog/dialog-content/dialog-content.component.ngsummary.json +0 -1
  717. package/esm2015/dialog/dialog-content/dialog-footer.component.js +0 -17
  718. package/esm2015/dialog/dialog-content/dialog-footer.component.ngfactory.js +0 -16
  719. package/esm2015/dialog/dialog-content/dialog-footer.component.ngsummary.json +0 -1
  720. package/esm2015/dialog/dialog-content/dialog-header.component.js +0 -41
  721. package/esm2015/dialog/dialog-content/dialog-header.component.ngfactory.js +0 -26
  722. package/esm2015/dialog/dialog-content/dialog-header.component.ngsummary.json +0 -1
  723. package/esm2015/dialog/dialog-ref.ngsummary.json +0 -1
  724. package/esm2015/dialog/dialog.component.js +0 -64
  725. package/esm2015/dialog/dialog.component.ngfactory.js +0 -20
  726. package/esm2015/dialog/dialog.component.ngsummary.json +0 -1
  727. package/esm2015/dialog/dialog.component.scss.ngstyle.js +0 -9
  728. package/esm2015/dialog/dialog.module.js +0 -44
  729. package/esm2015/dialog/dialog.module.ngfactory.js +0 -25
  730. package/esm2015/dialog/dialog.module.ngsummary.json +0 -1
  731. package/esm2015/dialog/dialog.service.js +0 -132
  732. package/esm2015/dialog/dialog.service.ngsummary.json +0 -1
  733. package/esm2015/dialog/dialog.types.ngsummary.json +0 -1
  734. package/esm2015/dialog/public-api.js +0 -11
  735. package/esm2015/dialog/public-api.ngsummary.json +0 -1
  736. package/esm2015/dialog/utils/errors.ngsummary.json +0 -1
  737. package/esm2015/dialog/utils/index.js +0 -11
  738. package/esm2015/dialog/utils/index.ngsummary.json +0 -1
  739. package/esm2015/drawer/component/drawer-ref.ngsummary.json +0 -1
  740. package/esm2015/drawer/component/drawer.component.js +0 -210
  741. package/esm2015/drawer/component/drawer.component.ngfactory.js +0 -42
  742. package/esm2015/drawer/component/drawer.component.ngsummary.json +0 -1
  743. package/esm2015/drawer/component/drawer.component.scss.ngstyle.js +0 -9
  744. package/esm2015/drawer/component/helper-directives.js +0 -27
  745. package/esm2015/drawer/component/helper-directives.ngsummary.json +0 -1
  746. package/esm2015/drawer/drawer.module.js +0 -26
  747. package/esm2015/drawer/drawer.module.ngfactory.js +0 -23
  748. package/esm2015/drawer/drawer.module.ngsummary.json +0 -1
  749. package/esm2015/drawer/drawer.service.js +0 -46
  750. package/esm2015/drawer/drawer.service.ngsummary.json +0 -1
  751. package/esm2015/drawer/public-api.ngsummary.json +0 -1
  752. package/esm2015/dropdown/dropdown-active.directive.js +0 -13
  753. package/esm2015/dropdown/dropdown-active.directive.ngsummary.json +0 -1
  754. package/esm2015/dropdown/dropdown-button/dropdown-button.component.js +0 -46
  755. package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngfactory.js +0 -29
  756. package/esm2015/dropdown/dropdown-button/dropdown-button.component.ngsummary.json +0 -1
  757. package/esm2015/dropdown/dropdown-button/dropdown-button.component.scss.ngstyle.js +0 -9
  758. package/esm2015/dropdown/dropdown.directive.js +0 -73
  759. package/esm2015/dropdown/dropdown.directive.ngsummary.json +0 -1
  760. package/esm2015/dropdown/dropdown.module.js +0 -44
  761. package/esm2015/dropdown/dropdown.module.ngfactory.js +0 -25
  762. package/esm2015/dropdown/dropdown.module.ngsummary.json +0 -1
  763. package/esm2015/dropdown/dropdown.types.ngsummary.json +0 -1
  764. package/esm2015/dropdown/helper-directives.js +0 -13
  765. package/esm2015/dropdown/helper-directives.ngsummary.json +0 -1
  766. package/esm2015/dropdown/menu/menu-content.directive.js +0 -54
  767. package/esm2015/dropdown/menu/menu-content.directive.ngsummary.json +0 -1
  768. package/esm2015/dropdown/menu/menu.component.js +0 -32
  769. package/esm2015/dropdown/menu/menu.component.ngfactory.js +0 -18
  770. package/esm2015/dropdown/menu/menu.component.ngsummary.json +0 -1
  771. package/esm2015/dropdown/menu/menu.component.scss.ngstyle.js +0 -9
  772. package/esm2015/dropdown/menu-group/menu-group.component.js +0 -14
  773. package/esm2015/dropdown/menu-group/menu-group.component.ngfactory.js +0 -17
  774. package/esm2015/dropdown/menu-group/menu-group.component.ngsummary.json +0 -1
  775. package/esm2015/dropdown/menu-group/menu-group.component.scss.ngstyle.js +0 -9
  776. package/esm2015/dropdown/menu-item/menu-item.component.js +0 -38
  777. package/esm2015/dropdown/menu-item/menu-item.component.ngfactory.js +0 -17
  778. package/esm2015/dropdown/menu-item/menu-item.component.ngsummary.json +0 -1
  779. package/esm2015/dropdown/menu-item/menu-item.component.scss.ngstyle.js +0 -9
  780. package/esm2015/dropdown/public-api.js +0 -11
  781. package/esm2015/dropdown/public-api.ngsummary.json +0 -1
  782. package/esm2015/dropdown/submenu/submenu.component.js +0 -37
  783. package/esm2015/dropdown/submenu/submenu.component.ngfactory.js +0 -29
  784. package/esm2015/dropdown/submenu/submenu.component.ngsummary.json +0 -1
  785. package/esm2015/dropdown/submenu/submenu.component.scss.ngstyle.js +0 -9
  786. package/esm2015/form/common-form.js +0 -89
  787. package/esm2015/form/common-form.ngsummary.json +0 -1
  788. package/esm2015/form/form-item/form-item.component.js +0 -93
  789. package/esm2015/form/form-item/form-item.component.ngfactory.js +0 -23
  790. package/esm2015/form/form-item/form-item.component.ngsummary.json +0 -1
  791. package/esm2015/form/form-item/form-item.component.scss.ngstyle.js +0 -9
  792. package/esm2015/form/form.directive.js +0 -58
  793. package/esm2015/form/form.directive.ngsummary.json +0 -1
  794. package/esm2015/form/form.module.js +0 -31
  795. package/esm2015/form/form.module.ngfactory.js +0 -12
  796. package/esm2015/form/form.module.ngsummary.json +0 -1
  797. package/esm2015/form/form.types.ngsummary.json +0 -1
  798. package/esm2015/form/helper-directives.js +0 -66
  799. package/esm2015/form/helper-directives.ngsummary.json +0 -1
  800. package/esm2015/form/public-api.ngsummary.json +0 -1
  801. package/esm2015/i18n/i18n.module.js +0 -11
  802. package/esm2015/i18n/i18n.module.ngfactory.js +0 -11
  803. package/esm2015/i18n/i18n.module.ngsummary.json +0 -1
  804. package/esm2015/i18n/i18n.pipe.js +0 -19
  805. package/esm2015/i18n/i18n.pipe.ngsummary.json +0 -1
  806. package/esm2015/i18n/i18n.service.js +0 -43
  807. package/esm2015/i18n/i18n.service.ngsummary.json +0 -1
  808. package/esm2015/i18n/i18n.type.js +0 -6
  809. package/esm2015/i18n/i18n.type.ngsummary.json +0 -1
  810. package/esm2015/i18n/language/en.ngsummary.json +0 -1
  811. package/esm2015/i18n/language/zh.ngsummary.json +0 -1
  812. package/esm2015/i18n/public-api.ngsummary.json +0 -1
  813. package/esm2015/icon/icon-register.service.js +0 -63
  814. package/esm2015/icon/icon-register.service.ngsummary.json +0 -1
  815. package/esm2015/icon/icon.component.js +0 -62
  816. package/esm2015/icon/icon.component.ngfactory.js +0 -25
  817. package/esm2015/icon/icon.component.ngsummary.json +0 -1
  818. package/esm2015/icon/icon.component.scss.ngstyle.js +0 -9
  819. package/esm2015/icon/icon.module.js +0 -16
  820. package/esm2015/icon/icon.module.ngfactory.js +0 -15
  821. package/esm2015/icon/icon.module.ngsummary.json +0 -1
  822. package/esm2015/icon/icons.ngsummary.json +0 -1
  823. package/esm2015/icon/public-api.ngsummary.json +0 -1
  824. package/esm2015/icon/utils.ngsummary.json +0 -1
  825. package/esm2015/inline-alert/helper-directives.js +0 -10
  826. package/esm2015/inline-alert/helper-directives.ngsummary.json +0 -1
  827. package/esm2015/inline-alert/inline-alert.component.js +0 -51
  828. package/esm2015/inline-alert/inline-alert.component.ngfactory.js +0 -29
  829. package/esm2015/inline-alert/inline-alert.component.ngsummary.json +0 -1
  830. package/esm2015/inline-alert/inline-alert.component.scss.ngstyle.js +0 -9
  831. package/esm2015/inline-alert/inline-alert.module.js +0 -15
  832. package/esm2015/inline-alert/inline-alert.module.ngfactory.js +0 -16
  833. package/esm2015/inline-alert/inline-alert.module.ngsummary.json +0 -1
  834. package/esm2015/inline-alert/inline-alert.types.ngsummary.json +0 -1
  835. package/esm2015/inline-alert/public-api.ngsummary.json +0 -1
  836. package/esm2015/input/autosize.directive.js +0 -61
  837. package/esm2015/input/autosize.directive.ngsummary.json +0 -1
  838. package/esm2015/input/helper-directives.js +0 -30
  839. package/esm2015/input/helper-directives.ngsummary.json +0 -1
  840. package/esm2015/input/input-group/input-group.component.js +0 -33
  841. package/esm2015/input/input-group/input-group.component.ngfactory.js +0 -22
  842. package/esm2015/input/input-group/input-group.component.ngsummary.json +0 -1
  843. package/esm2015/input/input-group/input-group.component.scss.ngstyle.js +0 -9
  844. package/esm2015/input/input.component.js +0 -69
  845. package/esm2015/input/input.component.ngfactory.js +0 -17
  846. package/esm2015/input/input.component.ngsummary.json +0 -1
  847. package/esm2015/input/input.component.scss.ngstyle.js +0 -9
  848. package/esm2015/input/input.module.js +0 -54
  849. package/esm2015/input/input.module.ngfactory.js +0 -20
  850. package/esm2015/input/input.module.ngsummary.json +0 -1
  851. package/esm2015/input/number-input/number-input.component.js +0 -83
  852. package/esm2015/input/number-input/number-input.component.ngfactory.js +0 -51
  853. package/esm2015/input/number-input/number-input.component.ngsummary.json +0 -1
  854. package/esm2015/input/number-input/number-input.component.scss.ngstyle.js +0 -9
  855. package/esm2015/input/public-api.js +0 -7
  856. package/esm2015/input/public-api.ngsummary.json +0 -1
  857. package/esm2015/input/search/search.component.js +0 -72
  858. package/esm2015/input/search/search.component.ngfactory.js +0 -51
  859. package/esm2015/input/search/search.component.ngsummary.json +0 -1
  860. package/esm2015/input/search/search.component.scss.ngstyle.js +0 -9
  861. package/esm2015/input/tags-input/tags-input.component.js +0 -252
  862. package/esm2015/input/tags-input/tags-input.component.ngfactory.js +0 -45
  863. package/esm2015/input/tags-input/tags-input.component.ngsummary.json +0 -1
  864. package/esm2015/input/tags-input/tags-input.component.scss.ngstyle.js +0 -9
  865. package/esm2015/input/tags-input/with-max-row-count.ngsummary.json +0 -1
  866. package/esm2015/input/utils/index.ngsummary.json +0 -1
  867. package/esm2015/message/base-message.js +0 -87
  868. package/esm2015/message/base-message.ngsummary.json +0 -1
  869. package/esm2015/message/message-animations.ngsummary.json +0 -1
  870. package/esm2015/message/message-wrapper.component.js +0 -20
  871. package/esm2015/message/message-wrapper.component.ngfactory.js +0 -17
  872. package/esm2015/message/message-wrapper.component.ngsummary.json +0 -1
  873. package/esm2015/message/message-wrapper.component.scss.ngstyle.js +0 -9
  874. package/esm2015/message/message.component.js +0 -77
  875. package/esm2015/message/message.component.ngfactory.js +0 -23
  876. package/esm2015/message/message.component.ngsummary.json +0 -1
  877. package/esm2015/message/message.component.scss.ngstyle.js +0 -9
  878. package/esm2015/message/message.config.ngsummary.json +0 -1
  879. package/esm2015/message/message.module.js +0 -18
  880. package/esm2015/message/message.module.ngfactory.js +0 -25
  881. package/esm2015/message/message.module.ngsummary.json +0 -1
  882. package/esm2015/message/message.service.js +0 -22
  883. package/esm2015/message/message.service.ngsummary.json +0 -1
  884. package/esm2015/message/public-api.ngsummary.json +0 -1
  885. package/esm2015/notification/notification-wrapper.component.js +0 -22
  886. package/esm2015/notification/notification-wrapper.component.ngfactory.js +0 -17
  887. package/esm2015/notification/notification-wrapper.component.ngsummary.json +0 -1
  888. package/esm2015/notification/notification-wrapper.component.scss.ngstyle.js +0 -9
  889. package/esm2015/notification/notification.component.js +0 -106
  890. package/esm2015/notification/notification.component.ngfactory.js +0 -42
  891. package/esm2015/notification/notification.component.ngsummary.json +0 -1
  892. package/esm2015/notification/notification.component.scss.ngstyle.js +0 -9
  893. package/esm2015/notification/notification.config.ngsummary.json +0 -1
  894. package/esm2015/notification/notification.module.js +0 -19
  895. package/esm2015/notification/notification.module.ngfactory.js +0 -25
  896. package/esm2015/notification/notification.module.ngsummary.json +0 -1
  897. package/esm2015/notification/notification.service.js +0 -22
  898. package/esm2015/notification/notification.service.ngsummary.json +0 -1
  899. package/esm2015/notification/public-api.ngsummary.json +0 -1
  900. package/esm2015/paginator/paginator-intl.js +0 -33
  901. package/esm2015/paginator/paginator-intl.ngsummary.json +0 -1
  902. package/esm2015/paginator/paginator.component.js +0 -118
  903. package/esm2015/paginator/paginator.component.ngfactory.js +0 -73
  904. package/esm2015/paginator/paginator.component.ngsummary.json +0 -1
  905. package/esm2015/paginator/paginator.component.scss.ngstyle.js +0 -9
  906. package/esm2015/paginator/paginator.module.js +0 -19
  907. package/esm2015/paginator/paginator.module.ngfactory.js +0 -32
  908. package/esm2015/paginator/paginator.module.ngsummary.json +0 -1
  909. package/esm2015/paginator/public-api.ngsummary.json +0 -1
  910. package/esm2015/public-api.ngsummary.json +0 -1
  911. package/esm2015/radio/base-radio.js +0 -69
  912. package/esm2015/radio/base-radio.ngsummary.json +0 -1
  913. package/esm2015/radio/public-api.ngsummary.json +0 -1
  914. package/esm2015/radio/radio-button/radio-button.component.js +0 -48
  915. package/esm2015/radio/radio-button/radio-button.component.ngfactory.js +0 -30
  916. package/esm2015/radio/radio-button/radio-button.component.ngsummary.json +0 -1
  917. package/esm2015/radio/radio-button/radio-button.component.scss.ngstyle.js +0 -9
  918. package/esm2015/radio/radio-group/radio-group.component.js +0 -75
  919. package/esm2015/radio/radio-group/radio-group.component.ngfactory.js +0 -18
  920. package/esm2015/radio/radio-group/radio-group.component.ngsummary.json +0 -1
  921. package/esm2015/radio/radio-group/radio-group.component.scss.ngstyle.js +0 -9
  922. package/esm2015/radio/radio.component.js +0 -31
  923. package/esm2015/radio/radio.component.ngfactory.js +0 -26
  924. package/esm2015/radio/radio.component.ngsummary.json +0 -1
  925. package/esm2015/radio/radio.component.scss.ngstyle.js +0 -9
  926. package/esm2015/radio/radio.module.js +0 -16
  927. package/esm2015/radio/radio.module.ngfactory.js +0 -16
  928. package/esm2015/radio/radio.module.ngsummary.json +0 -1
  929. package/esm2015/radio/radio.types.ngsummary.json +0 -1
  930. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.js +0 -81
  931. package/esm2015/scrolling/fixed-size-table-virtual-scroll-strategy.ngsummary.json +0 -1
  932. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.js +0 -108
  933. package/esm2015/scrolling/fixed-size-table-virtual-scroll.directive.ngsummary.json +0 -1
  934. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.js +0 -20
  935. package/esm2015/scrolling/fixed-size-virtual-scroll.directive.ngsummary.json +0 -1
  936. package/esm2015/scrolling/public-api.js +0 -6
  937. package/esm2015/scrolling/public-api.ngsummary.json +0 -1
  938. package/esm2015/scrolling/scrolling.module.js +0 -21
  939. package/esm2015/scrolling/scrolling.module.ngfactory.js +0 -11
  940. package/esm2015/scrolling/scrolling.module.ngsummary.json +0 -1
  941. package/esm2015/scrolling/virtual-for-of.directive.js +0 -30
  942. package/esm2015/scrolling/virtual-for-of.directive.ngsummary.json +0 -1
  943. package/esm2015/scrolling/virtual-scroll-viewport.component.js +0 -26
  944. package/esm2015/scrolling/virtual-scroll-viewport.component.ngfactory.js +0 -19
  945. package/esm2015/scrolling/virtual-scroll-viewport.component.ngsummary.json +0 -1
  946. package/esm2015/scrolling/virtual-scroll-viewport.component.scss.ngstyle.js +0 -9
  947. package/esm2015/select/base-select.js +0 -311
  948. package/esm2015/select/base-select.ngsummary.json +0 -1
  949. package/esm2015/select/helper-directives.js +0 -22
  950. package/esm2015/select/helper-directives.ngsummary.json +0 -1
  951. package/esm2015/select/multi-select/multi-select.component.js +0 -276
  952. package/esm2015/select/multi-select/multi-select.component.ngfactory.js +0 -76
  953. package/esm2015/select/multi-select/multi-select.component.ngsummary.json +0 -1
  954. package/esm2015/select/multi-select/multi-select.component.scss.ngstyle.js +0 -9
  955. package/esm2015/select/option/option.component.js +0 -107
  956. package/esm2015/select/option/option.component.ngfactory.js +0 -26
  957. package/esm2015/select/option/option.component.ngsummary.json +0 -1
  958. package/esm2015/select/option/option.component.scss.ngstyle.js +0 -9
  959. package/esm2015/select/option-group/option-group.component.js +0 -25
  960. package/esm2015/select/option-group/option-group.component.ngfactory.js +0 -18
  961. package/esm2015/select/option-group/option-group.component.ngsummary.json +0 -1
  962. package/esm2015/select/option-group/option-group.component.scss.ngstyle.js +0 -9
  963. package/esm2015/select/option-placeholder.component.js +0 -13
  964. package/esm2015/select/option-placeholder.component.ngfactory.js +0 -16
  965. package/esm2015/select/option-placeholder.component.ngsummary.json +0 -1
  966. package/esm2015/select/public-api.ngsummary.json +0 -1
  967. package/esm2015/select/select.component.js +0 -95
  968. package/esm2015/select/select.component.ngfactory.js +0 -63
  969. package/esm2015/select/select.component.ngsummary.json +0 -1
  970. package/esm2015/select/select.component.scss.ngstyle.js +0 -9
  971. package/esm2015/select/select.module.js +0 -49
  972. package/esm2015/select/select.module.ngfactory.js +0 -30
  973. package/esm2015/select/select.module.ngsummary.json +0 -1
  974. package/esm2015/select/select.types.ngsummary.json +0 -1
  975. package/esm2015/select/validators.js +0 -72
  976. package/esm2015/select/validators.ngsummary.json +0 -1
  977. package/esm2015/shared/click-outside.directive.js +0 -26
  978. package/esm2015/shared/click-outside.directive.ngsummary.json +0 -1
  979. package/esm2015/shared/shared.module.js +0 -11
  980. package/esm2015/shared/shared.module.ngfactory.js +0 -11
  981. package/esm2015/shared/shared.module.ngsummary.json +0 -1
  982. package/esm2015/sort/public-api.ngsummary.json +0 -1
  983. package/esm2015/sort/sort-errors.ngsummary.json +0 -1
  984. package/esm2015/sort/sort-header.component.js +0 -76
  985. package/esm2015/sort/sort-header.component.ngfactory.js +0 -22
  986. package/esm2015/sort/sort-header.component.ngsummary.json +0 -1
  987. package/esm2015/sort/sort-header.component.scss.ngstyle.js +0 -9
  988. package/esm2015/sort/sort.directive.js +0 -69
  989. package/esm2015/sort/sort.directive.ngsummary.json +0 -1
  990. package/esm2015/sort/sort.module.js +0 -14
  991. package/esm2015/sort/sort.module.ngfactory.js +0 -12
  992. package/esm2015/sort/sort.module.ngsummary.json +0 -1
  993. package/esm2015/sort/sort.types.ngsummary.json +0 -1
  994. package/esm2015/status-bar/public-api.ngsummary.json +0 -1
  995. package/esm2015/status-bar/status-bar.component.js +0 -28
  996. package/esm2015/status-bar/status-bar.component.ngfactory.js +0 -26
  997. package/esm2015/status-bar/status-bar.component.ngsummary.json +0 -1
  998. package/esm2015/status-bar/status-bar.component.scss.ngstyle.js +0 -9
  999. package/esm2015/status-bar/status-bar.module.js +0 -14
  1000. package/esm2015/status-bar/status-bar.module.ngfactory.js +0 -20
  1001. package/esm2015/status-bar/status-bar.module.ngsummary.json +0 -1
  1002. package/esm2015/status-bar/status-bar.types.ngsummary.json +0 -1
  1003. package/esm2015/steps/public-api.ngsummary.json +0 -1
  1004. package/esm2015/steps/steps.component.js +0 -179
  1005. package/esm2015/steps/steps.component.ngfactory.js +0 -34
  1006. package/esm2015/steps/steps.component.ngsummary.json +0 -1
  1007. package/esm2015/steps/steps.component.scss.ngstyle.js +0 -9
  1008. package/esm2015/steps/steps.module.js +0 -14
  1009. package/esm2015/steps/steps.module.ngfactory.js +0 -16
  1010. package/esm2015/steps/steps.module.ngsummary.json +0 -1
  1011. package/esm2015/steps/types.ngsummary.json +0 -1
  1012. package/esm2015/switch/public-api.ngsummary.json +0 -1
  1013. package/esm2015/switch/switch.component.js +0 -47
  1014. package/esm2015/switch/switch.component.ngfactory.js +0 -25
  1015. package/esm2015/switch/switch.component.ngsummary.json +0 -1
  1016. package/esm2015/switch/switch.component.scss.ngstyle.js +0 -9
  1017. package/esm2015/switch/switch.module.js +0 -13
  1018. package/esm2015/switch/switch.module.ngfactory.js +0 -12
  1019. package/esm2015/switch/switch.module.ngsummary.json +0 -1
  1020. package/esm2015/table/public-api.js +0 -13
  1021. package/esm2015/table/public-api.ngsummary.json +0 -1
  1022. package/esm2015/table/table-cell-def.directive.js +0 -20
  1023. package/esm2015/table/table-cell-def.directive.ngsummary.json +0 -1
  1024. package/esm2015/table/table-cell.component.js +0 -82
  1025. package/esm2015/table/table-cell.component.ngfactory.js +0 -32
  1026. package/esm2015/table/table-cell.component.ngsummary.json +0 -1
  1027. package/esm2015/table/table-cell.directive.js +0 -26
  1028. package/esm2015/table/table-cell.directive.ngsummary.json +0 -1
  1029. package/esm2015/table/table-column-def.directive.js +0 -29
  1030. package/esm2015/table/table-column-def.directive.ngsummary.json +0 -1
  1031. package/esm2015/table/table-header-cell-def.directive.js +0 -20
  1032. package/esm2015/table/table-header-cell-def.directive.ngsummary.json +0 -1
  1033. package/esm2015/table/table-header-cell.directive.js +0 -26
  1034. package/esm2015/table/table-header-cell.directive.ngsummary.json +0 -1
  1035. package/esm2015/table/table-header-row-def.directive.js +0 -24
  1036. package/esm2015/table/table-header-row-def.directive.ngsummary.json +0 -1
  1037. package/esm2015/table/table-header-row.component.js +0 -20
  1038. package/esm2015/table/table-header-row.component.ngfactory.js +0 -17
  1039. package/esm2015/table/table-header-row.component.ngsummary.json +0 -1
  1040. package/esm2015/table/table-placeholder.directive.js +0 -30
  1041. package/esm2015/table/table-placeholder.directive.ngsummary.json +0 -1
  1042. package/esm2015/table/table-row-def.directive.js +0 -25
  1043. package/esm2015/table/table-row-def.directive.ngsummary.json +0 -1
  1044. package/esm2015/table/table-row.component.js +0 -37
  1045. package/esm2015/table/table-row.component.ngfactory.js +0 -17
  1046. package/esm2015/table/table-row.component.ngsummary.json +0 -1
  1047. package/esm2015/table/table-scroll.directive.js +0 -84
  1048. package/esm2015/table/table-scroll.directive.ngsummary.json +0 -1
  1049. package/esm2015/table/table-scroll.scss.ngstyle.js +0 -9
  1050. package/esm2015/table/table.component.js +0 -69
  1051. package/esm2015/table/table.component.ngfactory.js +0 -25
  1052. package/esm2015/table/table.component.ngsummary.json +0 -1
  1053. package/esm2015/table/table.component.scss.ngstyle.js +0 -9
  1054. package/esm2015/table/table.module.js +0 -61
  1055. package/esm2015/table/table.module.ngfactory.js +0 -20
  1056. package/esm2015/table/table.module.ngsummary.json +0 -1
  1057. package/esm2015/table-of-contents/public-api.ngsummary.json +0 -1
  1058. package/esm2015/table-of-contents/table-of-contents.module.js +0 -15
  1059. package/esm2015/table-of-contents/table-of-contents.module.ngfactory.js +0 -12
  1060. package/esm2015/table-of-contents/table-of-contents.module.ngsummary.json +0 -1
  1061. package/esm2015/table-of-contents/toc-container.directive.js +0 -109
  1062. package/esm2015/table-of-contents/toc-container.directive.ngsummary.json +0 -1
  1063. package/esm2015/table-of-contents/toc-content.directive.js +0 -32
  1064. package/esm2015/table-of-contents/toc-content.directive.ngsummary.json +0 -1
  1065. package/esm2015/table-of-contents/toc-link.directive.js +0 -43
  1066. package/esm2015/table-of-contents/toc-link.directive.ngsummary.json +0 -1
  1067. package/esm2015/tabs/public-api.js +0 -10
  1068. package/esm2015/tabs/public-api.ngsummary.json +0 -1
  1069. package/esm2015/tabs/tab-body.component.js +0 -35
  1070. package/esm2015/tabs/tab-body.component.ngfactory.js +0 -18
  1071. package/esm2015/tabs/tab-body.component.ngsummary.json +0 -1
  1072. package/esm2015/tabs/tab-context.service.js +0 -28
  1073. package/esm2015/tabs/tab-context.service.ngsummary.json +0 -1
  1074. package/esm2015/tabs/tab-directives.js +0 -142
  1075. package/esm2015/tabs/tab-directives.ngsummary.json +0 -1
  1076. package/esm2015/tabs/tab-group.component.js +0 -277
  1077. package/esm2015/tabs/tab-group.component.ngfactory.js +0 -56
  1078. package/esm2015/tabs/tab-group.component.ngsummary.json +0 -1
  1079. package/esm2015/tabs/tab-group.component.scss.ngstyle.js +0 -9
  1080. package/esm2015/tabs/tab-header-active-indicator.component.js +0 -59
  1081. package/esm2015/tabs/tab-header-active-indicator.component.ngfactory.js +0 -17
  1082. package/esm2015/tabs/tab-header-active-indicator.component.ngsummary.json +0 -1
  1083. package/esm2015/tabs/tab-header.component.js +0 -348
  1084. package/esm2015/tabs/tab-header.component.ngfactory.js +0 -44
  1085. package/esm2015/tabs/tab-header.component.ngsummary.json +0 -1
  1086. package/esm2015/tabs/tab-header.component.scss.ngstyle.js +0 -9
  1087. package/esm2015/tabs/tab.component.js +0 -82
  1088. package/esm2015/tabs/tab.component.ngfactory.js +0 -18
  1089. package/esm2015/tabs/tab.component.ngsummary.json +0 -1
  1090. package/esm2015/tabs/tabs.module.js +0 -53
  1091. package/esm2015/tabs/tabs.module.ngfactory.js +0 -22
  1092. package/esm2015/tabs/tabs.module.ngsummary.json +0 -1
  1093. package/esm2015/tabs/tabs.types.ngsummary.json +0 -1
  1094. package/esm2015/tag/check-tag/check-tag.component.js +0 -34
  1095. package/esm2015/tag/check-tag/check-tag.component.ngfactory.js +0 -27
  1096. package/esm2015/tag/check-tag/check-tag.component.ngsummary.json +0 -1
  1097. package/esm2015/tag/check-tag/check-tag.component.scss.ngstyle.js +0 -9
  1098. package/esm2015/tag/public-api.ngsummary.json +0 -1
  1099. package/esm2015/tag/tag.component.js +0 -57
  1100. package/esm2015/tag/tag.component.ngfactory.js +0 -26
  1101. package/esm2015/tag/tag.component.ngsummary.json +0 -1
  1102. package/esm2015/tag/tag.component.scss.ngstyle.js +0 -9
  1103. package/esm2015/tag/tag.module.js +0 -15
  1104. package/esm2015/tag/tag.module.ngfactory.js +0 -16
  1105. package/esm2015/tag/tag.module.ngsummary.json +0 -1
  1106. package/esm2015/tag/tag.types.ngsummary.json +0 -1
  1107. package/esm2015/theme/public-api.ngsummary.json +0 -1
  1108. package/esm2015/theme/theme.module.js +0 -13
  1109. package/esm2015/theme/theme.module.ngfactory.js +0 -12
  1110. package/esm2015/theme/theme.module.ngsummary.json +0 -1
  1111. package/esm2015/theme/theme.pipe.js +0 -61
  1112. package/esm2015/theme/theme.pipe.ngsummary.json +0 -1
  1113. package/esm2015/theme/theme.service.js +0 -52
  1114. package/esm2015/theme/theme.service.ngsummary.json +0 -1
  1115. package/esm2015/theme/theme.types.ngsummary.json +0 -1
  1116. package/esm2015/theme/utils.ngsummary.json +0 -1
  1117. package/esm2015/time-picker/component.js +0 -149
  1118. package/esm2015/time-picker/component.ngfactory.js +0 -82
  1119. package/esm2015/time-picker/component.ngsummary.json +0 -1
  1120. package/esm2015/time-picker/constant.js +0 -9
  1121. package/esm2015/time-picker/constant.ngsummary.json +0 -1
  1122. package/esm2015/time-picker/panel/panel.component.js +0 -211
  1123. package/esm2015/time-picker/panel/panel.component.ngfactory.js +0 -49
  1124. package/esm2015/time-picker/panel/panel.component.ngsummary.json +0 -1
  1125. package/esm2015/time-picker/panel/panel.style.scss.ngstyle.js +0 -9
  1126. package/esm2015/time-picker/public-api.ngsummary.json +0 -1
  1127. package/esm2015/time-picker/style.scss.ngstyle.js +0 -9
  1128. package/esm2015/time-picker/time-picker.module.js +0 -33
  1129. package/esm2015/time-picker/time-picker.module.ngfactory.js +0 -30
  1130. package/esm2015/time-picker/time-picker.module.ngsummary.json +0 -1
  1131. package/esm2015/time-picker/time-picker.type.js +0 -13
  1132. package/esm2015/time-picker/time-picker.type.ngsummary.json +0 -1
  1133. package/esm2015/tooltip/base-tooltip.js +0 -255
  1134. package/esm2015/tooltip/base-tooltip.ngsummary.json +0 -1
  1135. package/esm2015/tooltip/public-api.js +0 -8
  1136. package/esm2015/tooltip/public-api.ngsummary.json +0 -1
  1137. package/esm2015/tooltip/tooltip-active.directive.js +0 -44
  1138. package/esm2015/tooltip/tooltip-active.directive.ngsummary.json +0 -1
  1139. package/esm2015/tooltip/tooltip-copy.directive.js +0 -80
  1140. package/esm2015/tooltip/tooltip-copy.directive.ngsummary.json +0 -1
  1141. package/esm2015/tooltip/tooltip-intl.js +0 -25
  1142. package/esm2015/tooltip/tooltip-intl.ngsummary.json +0 -1
  1143. package/esm2015/tooltip/tooltip.component.js +0 -55
  1144. package/esm2015/tooltip/tooltip.component.ngfactory.js +0 -25
  1145. package/esm2015/tooltip/tooltip.component.ngsummary.json +0 -1
  1146. package/esm2015/tooltip/tooltip.component.scss.ngstyle.js +0 -9
  1147. package/esm2015/tooltip/tooltip.directive.js +0 -45
  1148. package/esm2015/tooltip/tooltip.directive.ngsummary.json +0 -1
  1149. package/esm2015/tooltip/tooltip.module.js +0 -25
  1150. package/esm2015/tooltip/tooltip.module.ngfactory.js +0 -19
  1151. package/esm2015/tooltip/tooltip.module.ngsummary.json +0 -1
  1152. package/esm2015/tooltip/tooltip.types.ngsummary.json +0 -1
  1153. package/esm2015/tooltip/utils/index.ngsummary.json +0 -1
  1154. package/esm2015/tree-select/public-api.js +0 -6
  1155. package/esm2015/tree-select/public-api.ngsummary.json +0 -1
  1156. package/esm2015/tree-select/tree-node/tree-node.component.js +0 -127
  1157. package/esm2015/tree-select/tree-node/tree-node.component.ngfactory.js +0 -32
  1158. package/esm2015/tree-select/tree-node/tree-node.component.ngsummary.json +0 -1
  1159. package/esm2015/tree-select/tree-node/tree-node.component.scss.ngstyle.js +0 -9
  1160. package/esm2015/tree-select/tree-node-placeholder.component.js +0 -13
  1161. package/esm2015/tree-select/tree-node-placeholder.component.ngfactory.js +0 -16
  1162. package/esm2015/tree-select/tree-node-placeholder.component.ngsummary.json +0 -1
  1163. package/esm2015/tree-select/tree-select.component.js +0 -204
  1164. package/esm2015/tree-select/tree-select.component.ngfactory.js +0 -56
  1165. package/esm2015/tree-select/tree-select.component.ngsummary.json +0 -1
  1166. package/esm2015/tree-select/tree-select.component.scss.ngstyle.js +0 -9
  1167. package/esm2015/tree-select/tree-select.module.js +0 -26
  1168. package/esm2015/tree-select/tree-select.module.ngfactory.js +0 -29
  1169. package/esm2015/tree-select/tree-select.module.ngsummary.json +0 -1
  1170. package/esm2015/tree-select/tree-select.types.ngsummary.json +0 -1
  1171. package/esm2015/types.ngsummary.json +0 -1
  1172. package/esm2015/utils/async.ngsummary.json +0 -1
  1173. package/esm2015/utils/bem.ngsummary.json +0 -1
  1174. package/esm2015/utils/coercion.js +0 -16
  1175. package/esm2015/utils/coercion.ngsummary.json +0 -1
  1176. package/esm2015/utils/fn.js +0 -8
  1177. package/esm2015/utils/fn.ngsummary.json +0 -1
  1178. package/esm2015/utils/index.ngsummary.json +0 -1
  1179. package/esm2015/utils/observe-dom.ngsummary.json +0 -1
  1180. package/esm2015/utils/scroll-into-view.ngsummary.json +0 -1
  1181. package/esm2015/utils/watch-content-exist.ngsummary.json +0 -1
  1182. package/fesm2015/alauda-ui.js +0 -10768
  1183. package/fesm2015/alauda-ui.js.map +0 -1
  1184. package/form/form-item/form-item.component.ngfactory.d.ts +0 -1
  1185. package/form/form-item/form-item.component.scss.ngstyle.d.ts +0 -1
  1186. package/form/form.module.ngfactory.d.ts +0 -3
  1187. package/i18n/i18n.module.ngfactory.d.ts +0 -3
  1188. package/icon/icon.component.ngfactory.d.ts +0 -1
  1189. package/icon/icon.component.scss.ngstyle.d.ts +0 -1
  1190. package/icon/icon.module.ngfactory.d.ts +0 -3
  1191. package/inline-alert/inline-alert.component.ngfactory.d.ts +0 -1
  1192. package/inline-alert/inline-alert.component.scss.ngstyle.d.ts +0 -1
  1193. package/inline-alert/inline-alert.module.ngfactory.d.ts +0 -3
  1194. package/input/input-group/input-group.component.ngfactory.d.ts +0 -1
  1195. package/input/input-group/input-group.component.scss.ngstyle.d.ts +0 -1
  1196. package/input/input.component.ngfactory.d.ts +0 -1
  1197. package/input/input.component.scss.ngstyle.d.ts +0 -1
  1198. package/input/input.module.ngfactory.d.ts +0 -3
  1199. package/input/number-input/number-input.component.ngfactory.d.ts +0 -1
  1200. package/input/number-input/number-input.component.scss.ngstyle.d.ts +0 -1
  1201. package/input/search/search.component.ngfactory.d.ts +0 -1
  1202. package/input/search/search.component.scss.ngstyle.d.ts +0 -1
  1203. package/input/tags-input/tags-input.component.ngfactory.d.ts +0 -1
  1204. package/input/tags-input/tags-input.component.scss.ngstyle.d.ts +0 -1
  1205. package/message/message-wrapper.component.ngfactory.d.ts +0 -1
  1206. package/message/message-wrapper.component.scss.ngstyle.d.ts +0 -1
  1207. package/message/message.component.ngfactory.d.ts +0 -1
  1208. package/message/message.component.scss.ngstyle.d.ts +0 -1
  1209. package/message/message.module.ngfactory.d.ts +0 -3
  1210. package/notification/notification-wrapper.component.ngfactory.d.ts +0 -1
  1211. package/notification/notification-wrapper.component.scss.ngstyle.d.ts +0 -1
  1212. package/notification/notification.component.ngfactory.d.ts +0 -1
  1213. package/notification/notification.component.scss.ngstyle.d.ts +0 -1
  1214. package/notification/notification.module.ngfactory.d.ts +0 -3
  1215. package/paginator/paginator.component.ngfactory.d.ts +0 -1
  1216. package/paginator/paginator.component.scss.ngstyle.d.ts +0 -1
  1217. package/paginator/paginator.module.ngfactory.d.ts +0 -3
  1218. package/radio/radio-button/radio-button.component.ngfactory.d.ts +0 -1
  1219. package/radio/radio-button/radio-button.component.scss.ngstyle.d.ts +0 -1
  1220. package/radio/radio-group/radio-group.component.ngfactory.d.ts +0 -1
  1221. package/radio/radio-group/radio-group.component.scss.ngstyle.d.ts +0 -1
  1222. package/radio/radio.component.ngfactory.d.ts +0 -1
  1223. package/radio/radio.component.scss.ngstyle.d.ts +0 -1
  1224. package/radio/radio.module.ngfactory.d.ts +0 -3
  1225. package/scrolling/scrolling.module.ngfactory.d.ts +0 -3
  1226. package/scrolling/virtual-scroll-viewport.component.ngfactory.d.ts +0 -1
  1227. package/scrolling/virtual-scroll-viewport.component.scss.ngstyle.d.ts +0 -1
  1228. package/select/multi-select/multi-select.component.ngfactory.d.ts +0 -1
  1229. package/select/multi-select/multi-select.component.scss.ngstyle.d.ts +0 -1
  1230. package/select/option/option.component.ngfactory.d.ts +0 -1
  1231. package/select/option/option.component.scss.ngstyle.d.ts +0 -1
  1232. package/select/option-group/option-group.component.ngfactory.d.ts +0 -1
  1233. package/select/option-group/option-group.component.scss.ngstyle.d.ts +0 -1
  1234. package/select/option-placeholder.component.ngfactory.d.ts +0 -1
  1235. package/select/select.component.ngfactory.d.ts +0 -1
  1236. package/select/select.component.scss.ngstyle.d.ts +0 -1
  1237. package/select/select.module.ngfactory.d.ts +0 -3
  1238. package/shared/shared.module.ngfactory.d.ts +0 -3
  1239. package/sort/sort-header.component.ngfactory.d.ts +0 -1
  1240. package/sort/sort-header.component.scss.ngstyle.d.ts +0 -1
  1241. package/sort/sort.module.ngfactory.d.ts +0 -3
  1242. package/status-bar/status-bar.component.ngfactory.d.ts +0 -1
  1243. package/status-bar/status-bar.component.scss.ngstyle.d.ts +0 -1
  1244. package/status-bar/status-bar.module.ngfactory.d.ts +0 -3
  1245. package/steps/steps.component.ngfactory.d.ts +0 -1
  1246. package/steps/steps.component.scss.ngstyle.d.ts +0 -1
  1247. package/steps/steps.module.ngfactory.d.ts +0 -3
  1248. package/switch/switch.component.ngfactory.d.ts +0 -1
  1249. package/switch/switch.component.scss.ngstyle.d.ts +0 -1
  1250. package/switch/switch.module.ngfactory.d.ts +0 -3
  1251. package/table/table-cell.component.ngfactory.d.ts +0 -1
  1252. package/table/table-header-row.component.ngfactory.d.ts +0 -1
  1253. package/table/table-row.component.ngfactory.d.ts +0 -1
  1254. package/table/table-scroll.scss.ngstyle.d.ts +0 -1
  1255. package/table/table.component.ngfactory.d.ts +0 -1
  1256. package/table/table.component.scss.ngstyle.d.ts +0 -1
  1257. package/table/table.module.ngfactory.d.ts +0 -3
  1258. package/table-of-contents/table-of-contents.module.ngfactory.d.ts +0 -3
  1259. package/tabs/tab-body.component.ngfactory.d.ts +0 -1
  1260. package/tabs/tab-directives.d.ts +0 -47
  1261. package/tabs/tab-group.component.ngfactory.d.ts +0 -1
  1262. package/tabs/tab-group.component.scss.ngstyle.d.ts +0 -1
  1263. package/tabs/tab-header-active-indicator.component.ngfactory.d.ts +0 -1
  1264. package/tabs/tab-header.component.ngfactory.d.ts +0 -1
  1265. package/tabs/tab-header.component.scss.ngstyle.d.ts +0 -1
  1266. package/tabs/tab.component.ngfactory.d.ts +0 -1
  1267. package/tabs/tabs.module.ngfactory.d.ts +0 -3
  1268. package/tag/check-tag/check-tag.component.ngfactory.d.ts +0 -1
  1269. package/tag/check-tag/check-tag.component.scss.ngstyle.d.ts +0 -1
  1270. package/tag/tag.component.ngfactory.d.ts +0 -1
  1271. package/tag/tag.component.scss.ngstyle.d.ts +0 -1
  1272. package/tag/tag.module.ngfactory.d.ts +0 -3
  1273. package/theme/theme.module.ngfactory.d.ts +0 -3
  1274. package/time-picker/component.ngfactory.d.ts +0 -1
  1275. package/time-picker/panel/panel.component.ngfactory.d.ts +0 -1
  1276. package/time-picker/panel/panel.style.scss.ngstyle.d.ts +0 -1
  1277. package/time-picker/style.scss.ngstyle.d.ts +0 -1
  1278. package/time-picker/time-picker.module.ngfactory.d.ts +0 -3
  1279. package/tooltip/tooltip.component.ngfactory.d.ts +0 -1
  1280. package/tooltip/tooltip.component.scss.ngstyle.d.ts +0 -1
  1281. package/tooltip/tooltip.module.ngfactory.d.ts +0 -3
  1282. package/tree-select/tree-node/tree-node.component.d.ts +0 -34
  1283. package/tree-select/tree-node/tree-node.component.ngfactory.d.ts +0 -1
  1284. package/tree-select/tree-node/tree-node.component.scss.ngstyle.d.ts +0 -1
  1285. package/tree-select/tree-node-placeholder.component.ngfactory.d.ts +0 -1
  1286. package/tree-select/tree-select.component.ngfactory.d.ts +0 -1
  1287. package/tree-select/tree-select.component.scss.ngstyle.d.ts +0 -1
  1288. package/tree-select/tree-select.module.ngfactory.d.ts +0 -3
  1289. package/tsconfig.lib.tsbuildinfo +0 -3
@@ -0,0 +1,81 @@
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
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@angular/cdk/table";
7
+ import * as i2 from "./table-placeholder.directive";
8
+ export class TableComponent extends CdkTable {
9
+ // FIXME: workaround to override because it will break constructor if it is field, but why MatTable works?
10
+ // @ts-ignore
11
+ get stickyCssClass() {
12
+ return 'aui-table-sticky';
13
+ }
14
+ set stickyCssClass(_) {
15
+ // nothing
16
+ }
17
+ ngAfterContentInit() {
18
+ this._createPlaceholder();
19
+ }
20
+ _createPlaceholder() {
21
+ const footerRow = this._placeholderDef;
22
+ if (!this._placeholderDef) {
23
+ return;
24
+ }
25
+ const container = this._placeholderOutlet.viewContainer;
26
+ container.createEmbeddedView(footerRow.templateRef);
27
+ }
28
+ _clearPlaceholder() {
29
+ this._placeholderOutlet.viewContainer.clear();
30
+ }
31
+ ngOnDestroy() {
32
+ super.ngOnDestroy();
33
+ this._clearPlaceholder();
34
+ }
35
+ }
36
+ TableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
37
+ TableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.3", type: TableComponent, selector: "aui-table", inputs: { enableScrollWrapper: "enableScrollWrapper" }, host: { classAttribute: "aui-table" }, providers: [
38
+ {
39
+ provide: CDK_TABLE,
40
+ useExisting: TableComponent,
41
+ },
42
+ {
43
+ provide: _VIEW_REPEATER_STRATEGY,
44
+ useClass: _DisposeViewRepeaterStrategy,
45
+ },
46
+ {
47
+ provide: _COALESCED_STYLE_SCHEDULER,
48
+ useClass: _CoalescedStyleScheduler,
49
+ },
50
+ ], queries: [{ propertyName: "_placeholderDef", first: true, predicate: TablePlaceholderDefDirective, descendants: true, static: true }], viewQueries: [{ propertyName: "_placeholderOutlet", first: true, predicate: TablePlaceholderOutlet, descendants: true, static: true }], exportAs: ["auiTable"], usesInheritance: true, ngImport: i0, template: "\n \n <ng-content select=\"caption\"></ng-content>\n <ng-content select=\"colgroup, col\"></ng-content>\n <ng-container headerRowOutlet></ng-container>\n <ng-container rowOutlet></ng-container>\n <ng-container noDataRowOutlet></ng-container>\n <ng-container footerRowOutlet></ng-container>\n\n <ng-container auiTablePlaceholderOutlet></ng-container>\n ", isInline: true, styles: ["@charset \"UTF-8\";.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:#0000004d}.aui-table__row,.aui-table__header-row{display:flex;align-items:center}.aui-table__row.hasPanel,.aui-table__header-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-width:1px;border-style:solid;border-color:rgb(var(--aui-color-n-8));border-bottom-width: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[disabled],.aui-table__column-expand-button .aui-expand-button.isExpanded[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))}\n", "@charset \"UTF-8\";.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:#0000004d}.aui-table__scroll-wrapper .aui-table{padding:0}.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableTopShadow:before,.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableBottomShadow:after{transform:none;width:100%;left:0}.aui-table__scroll-shadow.hasTableTopShadow:before{content:\"\";position:sticky;display:block;width:calc(100% + 24px);height:16px;margin-top:-16px;transform:translate(-12px);z-index:99;top:28px;box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow.hasTableBottomShadow:after{content:\"\";position:sticky;display:block;width:calc(100% + 24px);height:16px;transform:translate(-12px,12px);z-index:99;bottom:0;margin-top:-16px;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-width:1px 0;border-style:solid;border-color:rgb(var(--aui-color-n-8))}.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(to bottom,rgb(var(--aui-color-n-7)),rgb(var(--aui-color-n-7)) 8px,transparent 6px,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(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,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(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}\n"], directives: [{ type: i1.HeaderRowOutlet, selector: "[headerRowOutlet]" }, { type: i1.DataRowOutlet, selector: "[rowOutlet]" }, { type: i1.NoDataRowOutlet, selector: "[noDataRowOutlet]" }, { type: i1.FooterRowOutlet, selector: "[footerRowOutlet]" }, { type: i2.TablePlaceholderOutlet, selector: "[auiTablePlaceholderOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableComponent, decorators: [{
52
+ type: Component,
53
+ args: [{ selector: 'aui-table', exportAs: 'auiTable', encapsulation: ViewEncapsulation.None, template: `
54
+ ${CDK_TABLE_TEMPLATE}
55
+ <ng-container auiTablePlaceholderOutlet></ng-container>
56
+ `, host: {
57
+ class: 'aui-table',
58
+ }, preserveWhitespaces: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
59
+ {
60
+ provide: CDK_TABLE,
61
+ useExisting: TableComponent,
62
+ },
63
+ {
64
+ provide: _VIEW_REPEATER_STRATEGY,
65
+ useClass: _DisposeViewRepeaterStrategy,
66
+ },
67
+ {
68
+ provide: _COALESCED_STYLE_SCHEDULER,
69
+ useClass: _CoalescedStyleScheduler,
70
+ },
71
+ ], styles: ["@charset \"UTF-8\";.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:#0000004d}.aui-table__row,.aui-table__header-row{display:flex;align-items:center}.aui-table__row.hasPanel,.aui-table__header-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-width:1px;border-style:solid;border-color:rgb(var(--aui-color-n-8));border-bottom-width: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[disabled],.aui-table__column-expand-button .aui-expand-button.isExpanded[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))}\n", "@charset \"UTF-8\";.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:#0000004d}.aui-table__scroll-wrapper .aui-table{padding:0}.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableTopShadow:before,.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableBottomShadow:after{transform:none;width:100%;left:0}.aui-table__scroll-shadow.hasTableTopShadow:before{content:\"\";position:sticky;display:block;width:calc(100% + 24px);height:16px;margin-top:-16px;transform:translate(-12px);z-index:99;top:28px;box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}.aui-table__scroll-shadow.hasTableBottomShadow:after{content:\"\";position:sticky;display:block;width:calc(100% + 24px);height:16px;transform:translate(-12px,12px);z-index:99;bottom:0;margin-top:-16px;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-width:1px 0;border-style:solid;border-color:rgb(var(--aui-color-n-8))}.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(to bottom,rgb(var(--aui-color-n-7)),rgb(var(--aui-color-n-7)) 8px,transparent 6px,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(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,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(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}\n"] }]
72
+ }], propDecorators: { enableScrollWrapper: [{
73
+ type: Input
74
+ }], _placeholderOutlet: [{
75
+ type: ViewChild,
76
+ args: [TablePlaceholderOutlet, { static: true }]
77
+ }], _placeholderDef: [{
78
+ type: ContentChild,
79
+ args: [TablePlaceholderDefDirective, { static: true }]
80
+ }] } });
81
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsNEJBQTRCLEVBQzVCLHVCQUF1QixHQUN4QixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sRUFDTCxTQUFTLEVBQ1Qsa0JBQWtCLEVBQ2xCLFFBQVEsRUFDUiwwQkFBMEIsRUFDMUIsd0JBQXdCLEdBQ3pCLE1BQU0sb0JBQW9CLENBQUM7QUFDNUIsT0FBTyxFQUVMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFFTCxTQUFTLEVBQ1QsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFDTCw0QkFBNEIsRUFDNUIsc0JBQXNCLEdBQ3ZCLE1BQU0sK0JBQStCLENBQUM7Ozs7QUErQnZDLE1BQU0sT0FBTyxjQUNYLFNBQVEsUUFBVztJQVluQiwwR0FBMEc7SUFDMUcsYUFBYTtJQUNiLElBQWMsY0FBYztRQUMxQixPQUFPLGtCQUFrQixDQUFDO0lBQzVCLENBQUM7SUFFRCxJQUF1QixjQUFjLENBQUMsQ0FBUztRQUM3QyxVQUFVO0lBQ1osQ0FBQztJQUVELGtCQUFrQjtRQUNoQixJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBRU8sa0JBQWtCO1FBQ3hCLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUM7UUFDdkMsSUFBSSxDQUFDLElBQUksQ0FBQyxlQUFlLEVBQUU7WUFDekIsT0FBTztTQUNSO1FBRUQsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGFBQWEsQ0FBQztRQUN4RCxTQUFTLENBQUMsa0JBQWtCLENBQUMsU0FBUyxDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQ3RELENBQUM7SUFFTyxpQkFBaUI7UUFDdkIsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGFBQWEsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNoRCxDQUFDO0lBRVEsV0FBVztRQUNsQixLQUFLLENBQUMsV0FBVyxFQUFFLENBQUM7UUFDcEIsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7SUFDM0IsQ0FBQzs7MkdBNUNVLGNBQWM7K0ZBQWQsY0FBYyxtSUFmZDtRQUNUO1lBQ0UsT0FBTyxFQUFFLFNBQVM7WUFDbEIsV0FBVyxFQUFFLGNBQWM7U0FDNUI7UUFDRDtZQUNFLE9BQU8sRUFBRSx1QkFBdUI7WUFDaEMsUUFBUSxFQUFFLDRCQUE0QjtTQUN2QztRQUNEO1lBQ0UsT0FBTyxFQUFFLDBCQUEwQjtZQUNuQyxRQUFRLEVBQUUsd0JBQXdCO1NBQ25DO0tBQ0YsdUVBWWEsNEJBQTRCLGtIQUgvQixzQkFBc0I7MkZBUHRCLGNBQWM7a0JBN0IxQixTQUFTOytCQUNFLFdBQVcsWUFDWCxVQUFVLGlCQUNMLGlCQUFpQixDQUFDLElBQUksWUFFM0I7TUFDTixrQkFBa0I7O0dBRXJCLFFBQ0s7d0JBQ0osS0FBSyxFQUFFLFdBQVc7cUJBQ25CLHVCQUNvQixLQUFLLG1CQUNULHVCQUF1QixDQUFDLE1BQU0sYUFDcEM7d0JBQ1Q7NEJBQ0UsT0FBTyxFQUFFLFNBQVM7NEJBQ2xCLFdBQVcsZ0JBQWdCO3lCQUM1Qjt3QkFDRDs0QkFDRSxPQUFPLEVBQUUsdUJBQXVCOzRCQUNoQyxRQUFRLEVBQUUsNEJBQTRCO3lCQUN2Qzt3QkFDRDs0QkFDRSxPQUFPLEVBQUUsMEJBQTBCOzRCQUNuQyxRQUFRLEVBQUUsd0JBQXdCO3lCQUNuQztxQkFDRjs4QkFPRCxtQkFBbUI7c0JBRGxCLEtBQUs7Z0JBSU4sa0JBQWtCO3NCQURqQixTQUFTO3VCQUFDLHNCQUFzQixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTtnQkFJbkQsZUFBZTtzQkFEZCxZQUFZO3VCQUFDLDRCQUE0QixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIF9EaXNwb3NlVmlld1JlcGVhdGVyU3RyYXRlZ3ksXG4gIF9WSUVXX1JFUEVBVEVSX1NUUkFURUdZLFxufSBmcm9tICdAYW5ndWxhci9jZGsvY29sbGVjdGlvbnMnO1xuaW1wb3J0IHtcbiAgQ0RLX1RBQkxFLFxuICBDREtfVEFCTEVfVEVNUExBVEUsXG4gIENka1RhYmxlLFxuICBfQ09BTEVTQ0VEX1NUWUxFX1NDSEVEVUxFUixcbiAgX0NvYWxlc2NlZFN0eWxlU2NoZWR1bGVyLFxufSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHtcbiAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgQ29udGVudENoaWxkLFxuICBJbnB1dCxcbiAgT25EZXN0cm95LFxuICBWaWV3Q2hpbGQsXG4gIFZpZXdFbmNhcHN1bGF0aW9uLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHtcbiAgVGFibGVQbGFjZWhvbGRlckRlZkRpcmVjdGl2ZSxcbiAgVGFibGVQbGFjZWhvbGRlck91dGxldCxcbn0gZnJvbSAnLi90YWJsZS1wbGFjZWhvbGRlci5kaXJlY3RpdmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhdWktdGFibGUnLFxuICBleHBvcnRBczogJ2F1aVRhYmxlJyxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgc3R5bGVVcmxzOiBbJ3RhYmxlLmNvbXBvbmVudC5zY3NzJywgJ3RhYmxlLXNjcm9sbC5zY3NzJ10sXG4gIHRlbXBsYXRlOiBgXG4gICAgJHtDREtfVEFCTEVfVEVNUExBVEV9XG4gICAgPG5nLWNvbnRhaW5lciBhdWlUYWJsZVBsYWNlaG9sZGVyT3V0bGV0PjwvbmctY29udGFpbmVyPlxuICBgLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdhdWktdGFibGUnLFxuICB9LFxuICBwcmVzZXJ2ZVdoaXRlc3BhY2VzOiBmYWxzZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IENES19UQUJMRSxcbiAgICAgIHVzZUV4aXN0aW5nOiBUYWJsZUNvbXBvbmVudCxcbiAgICB9LFxuICAgIHtcbiAgICAgIHByb3ZpZGU6IF9WSUVXX1JFUEVBVEVSX1NUUkFURUdZLFxuICAgICAgdXNlQ2xhc3M6IF9EaXNwb3NlVmlld1JlcGVhdGVyU3RyYXRlZ3ksXG4gICAgfSxcbiAgICB7XG4gICAgICBwcm92aWRlOiBfQ09BTEVTQ0VEX1NUWUxFX1NDSEVEVUxFUixcbiAgICAgIHVzZUNsYXNzOiBfQ29hbGVzY2VkU3R5bGVTY2hlZHVsZXIsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVDb21wb25lbnQ8VD5cbiAgZXh0ZW5kcyBDZGtUYWJsZTxUPlxuICBpbXBsZW1lbnRzIEFmdGVyQ29udGVudEluaXQsIE9uRGVzdHJveVxue1xuICBASW5wdXQoKVxuICBlbmFibGVTY3JvbGxXcmFwcGVyOiBib29sZWFuO1xuXG4gIEBWaWV3Q2hpbGQoVGFibGVQbGFjZWhvbGRlck91dGxldCwgeyBzdGF0aWM6IHRydWUgfSlcbiAgX3BsYWNlaG9sZGVyT3V0bGV0OiBUYWJsZVBsYWNlaG9sZGVyT3V0bGV0O1xuXG4gIEBDb250ZW50Q2hpbGQoVGFibGVQbGFjZWhvbGRlckRlZkRpcmVjdGl2ZSwgeyBzdGF0aWM6IHRydWUgfSlcbiAgX3BsYWNlaG9sZGVyRGVmOiBUYWJsZVBsYWNlaG9sZGVyRGVmRGlyZWN0aXZlO1xuXG4gIC8vIEZJWE1FOiB3b3JrYXJvdW5kIHRvIG92ZXJyaWRlIGJlY2F1c2UgaXQgd2lsbCBicmVhayBjb25zdHJ1Y3RvciBpZiBpdCBpcyBmaWVsZCwgYnV0IHdoeSBNYXRUYWJsZSB3b3Jrcz9cbiAgLy8gQHRzLWlnbm9yZVxuICBwcm90ZWN0ZWQgZ2V0IHN0aWNreUNzc0NsYXNzKCkge1xuICAgIHJldHVybiAnYXVpLXRhYmxlLXN0aWNreSc7XG4gIH1cblxuICBwcm90ZWN0ZWQgb3ZlcnJpZGUgc2V0IHN0aWNreUNzc0NsYXNzKF86IHN0cmluZykge1xuICAgIC8vIG5vdGhpbmdcbiAgfVxuXG4gIG5nQWZ0ZXJDb250ZW50SW5pdCgpIHtcbiAgICB0aGlzLl9jcmVhdGVQbGFjZWhvbGRlcigpO1xuICB9XG5cbiAgcHJpdmF0ZSBfY3JlYXRlUGxhY2Vob2xkZXIoKSB7XG4gICAgY29uc3QgZm9vdGVyUm93ID0gdGhpcy5fcGxhY2Vob2xkZXJEZWY7XG4gICAgaWYgKCF0aGlzLl9wbGFjZWhvbGRlckRlZikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGNvbnN0IGNvbnRhaW5lciA9IHRoaXMuX3BsYWNlaG9sZGVyT3V0bGV0LnZpZXdDb250YWluZXI7XG4gICAgY29udGFpbmVyLmNyZWF0ZUVtYmVkZGVkVmlldyhmb290ZXJSb3cudGVtcGxhdGVSZWYpO1xuICB9XG5cbiAgcHJpdmF0ZSBfY2xlYXJQbGFjZWhvbGRlcigpIHtcbiAgICB0aGlzLl9wbGFjZWhvbGRlck91dGxldC52aWV3Q29udGFpbmVyLmNsZWFyKCk7XG4gIH1cblxuICBvdmVycmlkZSBuZ09uRGVzdHJveSgpIHtcbiAgICBzdXBlci5uZ09uRGVzdHJveSgpO1xuICAgIHRoaXMuX2NsZWFyUGxhY2Vob2xkZXIoKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,96 @@
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
+ import * as i0 from "@angular/core";
19
+ export class TableModule {
20
+ }
21
+ TableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
22
+ TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableModule, declarations: [TableComponent,
23
+ TableRowComponent,
24
+ TableHeaderRowComponent,
25
+ TableExpandButtonCellComponent,
26
+ TableExpandPanelCellComponent,
27
+ TableCellDirective,
28
+ TableCellDefDirective,
29
+ TableHeaderCellDirective,
30
+ TableRowDefDirective,
31
+ TableHeaderRowDefDirective,
32
+ TableHeaderCellDefDirective,
33
+ TableColumnDefDirective,
34
+ TableScrollShadowDirective,
35
+ TablePlaceholderOutlet,
36
+ TablePlaceholderDefDirective,
37
+ TableScrollWrapperDirective], imports: [CommonModule, IconModule, CdkTableModule], exports: [TableComponent,
38
+ TableRowComponent,
39
+ TableHeaderRowComponent,
40
+ TableExpandButtonCellComponent,
41
+ TableExpandPanelCellComponent,
42
+ TableCellDirective,
43
+ TableCellDefDirective,
44
+ TableHeaderCellDirective,
45
+ TableRowDefDirective,
46
+ TableHeaderRowDefDirective,
47
+ TableHeaderCellDefDirective,
48
+ TableColumnDefDirective,
49
+ TableScrollShadowDirective,
50
+ TablePlaceholderOutlet,
51
+ TablePlaceholderDefDirective,
52
+ TableScrollWrapperDirective] });
53
+ TableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableModule, imports: [[CommonModule, IconModule, CdkTableModule]] });
54
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableModule, decorators: [{
55
+ type: NgModule,
56
+ args: [{
57
+ imports: [CommonModule, IconModule, CdkTableModule],
58
+ declarations: [
59
+ TableComponent,
60
+ TableRowComponent,
61
+ TableHeaderRowComponent,
62
+ TableExpandButtonCellComponent,
63
+ TableExpandPanelCellComponent,
64
+ TableCellDirective,
65
+ TableCellDefDirective,
66
+ TableHeaderCellDirective,
67
+ TableRowDefDirective,
68
+ TableHeaderRowDefDirective,
69
+ TableHeaderCellDefDirective,
70
+ TableColumnDefDirective,
71
+ TableScrollShadowDirective,
72
+ TablePlaceholderOutlet,
73
+ TablePlaceholderDefDirective,
74
+ TableScrollWrapperDirective,
75
+ ],
76
+ exports: [
77
+ TableComponent,
78
+ TableRowComponent,
79
+ TableHeaderRowComponent,
80
+ TableExpandButtonCellComponent,
81
+ TableExpandPanelCellComponent,
82
+ TableCellDirective,
83
+ TableCellDefDirective,
84
+ TableHeaderCellDirective,
85
+ TableRowDefDirective,
86
+ TableHeaderRowDefDirective,
87
+ TableHeaderCellDefDirective,
88
+ TableColumnDefDirective,
89
+ TableScrollShadowDirective,
90
+ TablePlaceholderOutlet,
91
+ TablePlaceholderDefDirective,
92
+ TableScrollWrapperDirective,
93
+ ],
94
+ }]
95
+ }] });
96
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlL3RhYmxlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDcEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRWpELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ25FLE9BQU8sRUFDTCw4QkFBOEIsRUFDOUIsNkJBQTZCLEdBQzlCLE1BQU0sd0JBQXdCLENBQUM7QUFDaEMsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDNUQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDdkUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDaEYsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDekUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDOUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDdkUsT0FBTyxFQUNMLDRCQUE0QixFQUM1QixzQkFBc0IsR0FDdkIsTUFBTSwrQkFBK0IsQ0FBQztBQUN2QyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUNqRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUMxRCxPQUFPLEVBQ0wsMEJBQTBCLEVBQzFCLDJCQUEyQixHQUM1QixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7QUF5Q25ELE1BQU0sT0FBTyxXQUFXOzt3R0FBWCxXQUFXO3lHQUFYLFdBQVcsaUJBcENwQixjQUFjO1FBQ2QsaUJBQWlCO1FBQ2pCLHVCQUF1QjtRQUN2Qiw4QkFBOEI7UUFDOUIsNkJBQTZCO1FBQzdCLGtCQUFrQjtRQUNsQixxQkFBcUI7UUFDckIsd0JBQXdCO1FBQ3hCLG9CQUFvQjtRQUNwQiwwQkFBMEI7UUFDMUIsMkJBQTJCO1FBQzNCLHVCQUF1QjtRQUN2QiwwQkFBMEI7UUFDMUIsc0JBQXNCO1FBQ3RCLDRCQUE0QjtRQUM1QiwyQkFBMkIsYUFqQm5CLFlBQVksRUFBRSxVQUFVLEVBQUUsY0FBYyxhQW9CaEQsY0FBYztRQUNkLGlCQUFpQjtRQUNqQix1QkFBdUI7UUFDdkIsOEJBQThCO1FBQzlCLDZCQUE2QjtRQUM3QixrQkFBa0I7UUFDbEIscUJBQXFCO1FBQ3JCLHdCQUF3QjtRQUN4QixvQkFBb0I7UUFDcEIsMEJBQTBCO1FBQzFCLDJCQUEyQjtRQUMzQix1QkFBdUI7UUFDdkIsMEJBQTBCO1FBQzFCLHNCQUFzQjtRQUN0Qiw0QkFBNEI7UUFDNUIsMkJBQTJCO3lHQUdsQixXQUFXLFlBdENiLENBQUMsWUFBWSxFQUFFLFVBQVUsRUFBRSxjQUFjLENBQUM7MkZBc0N4QyxXQUFXO2tCQXZDdkIsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsVUFBVSxFQUFFLGNBQWMsQ0FBQztvQkFDbkQsWUFBWSxFQUFFO3dCQUNaLGNBQWM7d0JBQ2QsaUJBQWlCO3dCQUNqQix1QkFBdUI7d0JBQ3ZCLDhCQUE4Qjt3QkFDOUIsNkJBQTZCO3dCQUM3QixrQkFBa0I7d0JBQ2xCLHFCQUFxQjt3QkFDckIsd0JBQXdCO3dCQUN4QixvQkFBb0I7d0JBQ3BCLDBCQUEwQjt3QkFDMUIsMkJBQTJCO3dCQUMzQix1QkFBdUI7d0JBQ3ZCLDBCQUEwQjt3QkFDMUIsc0JBQXNCO3dCQUN0Qiw0QkFBNEI7d0JBQzVCLDJCQUEyQjtxQkFDNUI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLGNBQWM7d0JBQ2QsaUJBQWlCO3dCQUNqQix1QkFBdUI7d0JBQ3ZCLDhCQUE4Qjt3QkFDOUIsNkJBQTZCO3dCQUM3QixrQkFBa0I7d0JBQ2xCLHFCQUFxQjt3QkFDckIsd0JBQXdCO3dCQUN4QixvQkFBb0I7d0JBQ3BCLDBCQUEwQjt3QkFDMUIsMkJBQTJCO3dCQUMzQix1QkFBdUI7d0JBQ3ZCLDBCQUEwQjt3QkFDMUIsc0JBQXNCO3dCQUN0Qiw0QkFBNEI7d0JBQzVCLDJCQUEyQjtxQkFDNUI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDZGtUYWJsZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgSWNvbk1vZHVsZSB9IGZyb20gJy4uL2ljb24vaWNvbi5tb2R1bGUnO1xuXG5pbXBvcnQgeyBUYWJsZUNlbGxEZWZEaXJlY3RpdmUgfSBmcm9tICcuL3RhYmxlLWNlbGwtZGVmLmRpcmVjdGl2ZSc7XG5pbXBvcnQge1xuICBUYWJsZUV4cGFuZEJ1dHRvbkNlbGxDb21wb25lbnQsXG4gIFRhYmxlRXhwYW5kUGFuZWxDZWxsQ29tcG9uZW50LFxufSBmcm9tICcuL3RhYmxlLWNlbGwuY29tcG9uZW50JztcbmltcG9ydCB7IFRhYmxlQ2VsbERpcmVjdGl2ZSB9IGZyb20gJy4vdGFibGUtY2VsbC5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVGFibGVDb2x1bW5EZWZEaXJlY3RpdmUgfSBmcm9tICcuL3RhYmxlLWNvbHVtbi1kZWYuZGlyZWN0aXZlJztcbmltcG9ydCB7IFRhYmxlSGVhZGVyQ2VsbERlZkRpcmVjdGl2ZSB9IGZyb20gJy4vdGFibGUtaGVhZGVyLWNlbGwtZGVmLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBUYWJsZUhlYWRlckNlbGxEaXJlY3RpdmUgfSBmcm9tICcuL3RhYmxlLWhlYWRlci1jZWxsLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBUYWJsZUhlYWRlclJvd0RlZkRpcmVjdGl2ZSB9IGZyb20gJy4vdGFibGUtaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlJztcbmltcG9ydCB7IFRhYmxlSGVhZGVyUm93Q29tcG9uZW50IH0gZnJvbSAnLi90YWJsZS1oZWFkZXItcm93LmNvbXBvbmVudCc7XG5pbXBvcnQge1xuICBUYWJsZVBsYWNlaG9sZGVyRGVmRGlyZWN0aXZlLFxuICBUYWJsZVBsYWNlaG9sZGVyT3V0bGV0LFxufSBmcm9tICcuL3RhYmxlLXBsYWNlaG9sZGVyLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBUYWJsZVJvd0RlZkRpcmVjdGl2ZSB9IGZyb20gJy4vdGFibGUtcm93LWRlZi5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVGFibGVSb3dDb21wb25lbnQgfSBmcm9tICcuL3RhYmxlLXJvdy5jb21wb25lbnQnO1xuaW1wb3J0IHtcbiAgVGFibGVTY3JvbGxTaGFkb3dEaXJlY3RpdmUsXG4gIFRhYmxlU2Nyb2xsV3JhcHBlckRpcmVjdGl2ZSxcbn0gZnJvbSAnLi90YWJsZS1zY3JvbGwuZGlyZWN0aXZlJztcbmltcG9ydCB7IFRhYmxlQ29tcG9uZW50IH0gZnJvbSAnLi90YWJsZS5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBJY29uTW9kdWxlLCBDZGtUYWJsZU1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1xuICAgIFRhYmxlQ29tcG9uZW50LFxuICAgIFRhYmxlUm93Q29tcG9uZW50LFxuICAgIFRhYmxlSGVhZGVyUm93Q29tcG9uZW50LFxuICAgIFRhYmxlRXhwYW5kQnV0dG9uQ2VsbENvbXBvbmVudCxcbiAgICBUYWJsZUV4cGFuZFBhbmVsQ2VsbENvbXBvbmVudCxcbiAgICBUYWJsZUNlbGxEaXJlY3RpdmUsXG4gICAgVGFibGVDZWxsRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlSGVhZGVyQ2VsbERpcmVjdGl2ZSxcbiAgICBUYWJsZVJvd0RlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZUhlYWRlclJvd0RlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZUhlYWRlckNlbGxEZWZEaXJlY3RpdmUsXG4gICAgVGFibGVDb2x1bW5EZWZEaXJlY3RpdmUsXG4gICAgVGFibGVTY3JvbGxTaGFkb3dEaXJlY3RpdmUsXG4gICAgVGFibGVQbGFjZWhvbGRlck91dGxldCxcbiAgICBUYWJsZVBsYWNlaG9sZGVyRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlU2Nyb2xsV3JhcHBlckRpcmVjdGl2ZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIFRhYmxlQ29tcG9uZW50LFxuICAgIFRhYmxlUm93Q29tcG9uZW50LFxuICAgIFRhYmxlSGVhZGVyUm93Q29tcG9uZW50LFxuICAgIFRhYmxlRXhwYW5kQnV0dG9uQ2VsbENvbXBvbmVudCxcbiAgICBUYWJsZUV4cGFuZFBhbmVsQ2VsbENvbXBvbmVudCxcbiAgICBUYWJsZUNlbGxEaXJlY3RpdmUsXG4gICAgVGFibGVDZWxsRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlSGVhZGVyQ2VsbERpcmVjdGl2ZSxcbiAgICBUYWJsZVJvd0RlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZUhlYWRlclJvd0RlZkRpcmVjdGl2ZSxcbiAgICBUYWJsZUhlYWRlckNlbGxEZWZEaXJlY3RpdmUsXG4gICAgVGFibGVDb2x1bW5EZWZEaXJlY3RpdmUsXG4gICAgVGFibGVTY3JvbGxTaGFkb3dEaXJlY3RpdmUsXG4gICAgVGFibGVQbGFjZWhvbGRlck91dGxldCxcbiAgICBUYWJsZVBsYWNlaG9sZGVyRGVmRGlyZWN0aXZlLFxuICAgIFRhYmxlU2Nyb2xsV3JhcHBlckRpcmVjdGl2ZSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVNb2R1bGUge31cbiJdfQ==
@@ -0,0 +1,20 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { TocContainerDirective } from './toc-container.directive';
4
+ import { TocContentDirective } from './toc-content.directive';
5
+ import { TocLinkDirective } from './toc-link.directive';
6
+ import * as i0 from "@angular/core";
7
+ export class TableOfContentsModule {
8
+ }
9
+ TableOfContentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableOfContentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
10
+ TableOfContentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableOfContentsModule, declarations: [TocContentDirective, TocContainerDirective, TocLinkDirective], imports: [CommonModule], exports: [TocContentDirective, TocContainerDirective, TocLinkDirective] });
11
+ TableOfContentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableOfContentsModule, imports: [[CommonModule]] });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TableOfContentsModule, decorators: [{
13
+ type: NgModule,
14
+ args: [{
15
+ imports: [CommonModule],
16
+ declarations: [TocContentDirective, TocContainerDirective, TocLinkDirective],
17
+ exports: [TocContentDirective, TocContainerDirective, TocLinkDirective],
18
+ }]
19
+ }] });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtb2YtY29udGVudHMubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlLW9mLWNvbnRlbnRzL3RhYmxlLW9mLWNvbnRlbnRzLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV6QyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUNsRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUM5RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFPeEQsTUFBTSxPQUFPLHFCQUFxQjs7a0hBQXJCLHFCQUFxQjttSEFBckIscUJBQXFCLGlCQUhqQixtQkFBbUIsRUFBRSxxQkFBcUIsRUFBRSxnQkFBZ0IsYUFEakUsWUFBWSxhQUVaLG1CQUFtQixFQUFFLHFCQUFxQixFQUFFLGdCQUFnQjttSEFFM0QscUJBQXFCLFlBSnZCLENBQUMsWUFBWSxDQUFDOzJGQUlaLHFCQUFxQjtrQkFMakMsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFlBQVksRUFBRSxDQUFDLG1CQUFtQixFQUFFLHFCQUFxQixFQUFFLGdCQUFnQixDQUFDO29CQUM1RSxPQUFPLEVBQUUsQ0FBQyxtQkFBbUIsRUFBRSxxQkFBcUIsRUFBRSxnQkFBZ0IsQ0FBQztpQkFDeEUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgVG9jQ29udGFpbmVyRGlyZWN0aXZlIH0gZnJvbSAnLi90b2MtY29udGFpbmVyLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBUb2NDb250ZW50RGlyZWN0aXZlIH0gZnJvbSAnLi90b2MtY29udGVudC5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgVG9jTGlua0RpcmVjdGl2ZSB9IGZyb20gJy4vdG9jLWxpbmsuZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1RvY0NvbnRlbnREaXJlY3RpdmUsIFRvY0NvbnRhaW5lckRpcmVjdGl2ZSwgVG9jTGlua0RpcmVjdGl2ZV0sXG4gIGV4cG9ydHM6IFtUb2NDb250ZW50RGlyZWN0aXZlLCBUb2NDb250YWluZXJEaXJlY3RpdmUsIFRvY0xpbmtEaXJlY3RpdmVdLFxufSlcbmV4cG9ydCBjbGFzcyBUYWJsZU9mQ29udGVudHNNb2R1bGUge31cbiJdfQ==
@@ -0,0 +1,110 @@
1
+ import { Directive, EventEmitter, HostListener, Output, } from '@angular/core';
2
+ import { EMPTY, Subject, animationFrameScheduler, of, } from 'rxjs';
3
+ import { debounceTime, endWith, map, observeOn, repeat, startWith, switchMap, takeUntil, takeWhile, tap, } from 'rxjs/operators';
4
+ import * as i0 from "@angular/core";
5
+ export class TocContainerDirective {
6
+ constructor(elementRef, cdr) {
7
+ this.cdr = cdr;
8
+ this.activedChange = new EventEmitter();
9
+ this._contents = [];
10
+ this._scrollTop$ = new Subject();
11
+ this._scrollTo$ = new Subject();
12
+ this._onDestroy$ = new Subject();
13
+ this._subs = [];
14
+ this._nativeElement = elementRef.nativeElement;
15
+ }
16
+ get scrollTop() {
17
+ return this._nativeElement.scrollTop || 0;
18
+ }
19
+ set scrollTop(value) {
20
+ this._nativeElement.scrollTop = value;
21
+ }
22
+ get isScrollEnd() {
23
+ return (this._nativeElement.scrollHeight - this._nativeElement.scrollTop ===
24
+ this._nativeElement.clientHeight);
25
+ }
26
+ getOffsetTop(element) {
27
+ if (element.parentElement === this._nativeElement) {
28
+ return element.offsetTop;
29
+ }
30
+ return element.offsetTop + this.getOffsetTop(element.parentElement);
31
+ }
32
+ getMinContent(scrollTop) {
33
+ return (minContent, content) => {
34
+ if (Math.abs(scrollTop - this.getOffsetTop(content.nativeElement)) <
35
+ Math.abs(scrollTop - this.getOffsetTop(minContent.nativeElement))) {
36
+ minContent = content;
37
+ }
38
+ return minContent;
39
+ };
40
+ }
41
+ getMaxContent(maxContent, content) {
42
+ if (this.getOffsetTop(content.nativeElement) >
43
+ this.getOffsetTop(maxContent.nativeElement)) {
44
+ maxContent = content;
45
+ }
46
+ return maxContent;
47
+ }
48
+ onScroll() {
49
+ this._scrollTop$.next(this.scrollTop);
50
+ }
51
+ ngAfterContentInit() {
52
+ const actived$ = this._scrollTop$
53
+ .pipe(startWith(this.scrollTop), debounceTime(200), map(scrollTop => this._contents.reduce(this.isScrollEnd
54
+ ? this.getMaxContent.bind(this)
55
+ : this.getMinContent(scrollTop))), map(actived => actived.auiTocContent))
56
+ .pipe(tap(actived => {
57
+ this._contents.forEach(content => {
58
+ content.active = actived === content.auiTocContent;
59
+ });
60
+ this.cdr.detectChanges();
61
+ }));
62
+ const scrollTween$ = this._scrollTo$.pipe(switchMap(name => {
63
+ const target = this._contents.find(content => content.auiTocContent === name);
64
+ if (!target) {
65
+ return EMPTY;
66
+ }
67
+ const destination = this.getOffsetTop(target.nativeElement);
68
+ const start = performance.now();
69
+ const source = this.scrollTop;
70
+ const duration = 500;
71
+ return of(0).pipe(observeOn(animationFrameScheduler), repeat(), map(() => (performance.now() - start) / duration), takeWhile(t => t < 1), endWith(1), map(t => t * t * t), map(t => source * (1 - t) + destination * t));
72
+ }), takeUntil(this._onDestroy$));
73
+ this._subs.push(actived$.subscribe(this.activedChange), scrollTween$.subscribe(tweenValue => {
74
+ this.scrollTop = tweenValue;
75
+ }));
76
+ }
77
+ ngOnDestroy() {
78
+ this._subs.forEach(sub => sub.unsubscribe());
79
+ this._onDestroy$.next();
80
+ }
81
+ scrollTo(content) {
82
+ if (Array.isArray(content)) {
83
+ this._scrollTo$.next(content[0]);
84
+ }
85
+ else {
86
+ this._scrollTo$.next(content);
87
+ }
88
+ }
89
+ registerContent(tocContent) {
90
+ this._contents = [...this._contents, tocContent];
91
+ }
92
+ deregisterContent(tocContent) {
93
+ this._contents = this._contents.filter(content => content.auiTocContent !== tocContent.auiTocContent);
94
+ }
95
+ }
96
+ TocContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TocContainerDirective, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
97
+ TocContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.3", type: TocContainerDirective, selector: "[auiTocContainer]", outputs: { activedChange: "activedChange" }, host: { listeners: { "scroll": "onScroll()" } }, exportAs: ["auiTocContainer"], ngImport: i0 });
98
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TocContainerDirective, decorators: [{
99
+ type: Directive,
100
+ args: [{
101
+ selector: '[auiTocContainer]',
102
+ exportAs: 'auiTocContainer',
103
+ }]
104
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { activedChange: [{
105
+ type: Output
106
+ }], onScroll: [{
107
+ type: HostListener,
108
+ args: ['scroll']
109
+ }] } });
110
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9jLWNvbnRhaW5lci5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvdGFibGUtb2YtY29udGVudHMvdG9jLWNvbnRhaW5lci5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUdMLFNBQVMsRUFFVCxZQUFZLEVBQ1osWUFBWSxFQUVaLE1BQU0sR0FDUCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQ0wsS0FBSyxFQUNMLE9BQU8sRUFFUCx1QkFBdUIsRUFDdkIsRUFBRSxHQUNILE1BQU0sTUFBTSxDQUFDO0FBQ2QsT0FBTyxFQUNMLFlBQVksRUFDWixPQUFPLEVBQ1AsR0FBRyxFQUNILFNBQVMsRUFDVCxNQUFNLEVBQ04sU0FBUyxFQUNULFNBQVMsRUFDVCxTQUFTLEVBQ1QsU0FBUyxFQUNULEdBQUcsR0FDSixNQUFNLGdCQUFnQixDQUFDOztBQVF4QixNQUFNLE9BQU8scUJBQXFCO0lBMEJoQyxZQUNFLFVBQW1DLEVBQ2xCLEdBQXNCO1FBQXRCLFFBQUcsR0FBSCxHQUFHLENBQW1CO1FBMUJ6QyxrQkFBYSxHQUFHLElBQUksWUFBWSxFQUFVLENBQUM7UUFFbkMsY0FBUyxHQUEwQixFQUFFLENBQUM7UUFDN0IsZ0JBQVcsR0FBRyxJQUFJLE9BQU8sRUFBVSxDQUFDO1FBQ3BDLGVBQVUsR0FBRyxJQUFJLE9BQU8sRUFBVSxDQUFDO1FBQ25DLGdCQUFXLEdBQUcsSUFBSSxPQUFPLEVBQVEsQ0FBQztRQUNsQyxVQUFLLEdBQW1CLEVBQUUsQ0FBQztRQXNCMUMsSUFBSSxDQUFDLGNBQWMsR0FBRyxVQUFVLENBQUMsYUFBYSxDQUFDO0lBQ2pELENBQUM7SUFwQkQsSUFBSSxTQUFTO1FBQ1gsT0FBTyxJQUFJLENBQUMsY0FBYyxDQUFDLFNBQVMsSUFBSSxDQUFDLENBQUM7SUFDNUMsQ0FBQztJQUVELElBQUksU0FBUyxDQUFDLEtBQWE7UUFDekIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxTQUFTLEdBQUcsS0FBSyxDQUFDO0lBQ3hDLENBQUM7SUFFRCxJQUFJLFdBQVc7UUFDYixPQUFPLENBQ0wsSUFBSSxDQUFDLGNBQWMsQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLGNBQWMsQ0FBQyxTQUFTO1lBQ2hFLElBQUksQ0FBQyxjQUFjLENBQUMsWUFBWSxDQUNqQyxDQUFDO0lBQ0osQ0FBQztJQVNELFlBQVksQ0FBQyxPQUFvQjtRQUMvQixJQUFJLE9BQU8sQ0FBQyxhQUFhLEtBQUssSUFBSSxDQUFDLGNBQWMsRUFBRTtZQUNqRCxPQUFPLE9BQU8sQ0FBQyxTQUFTLENBQUM7U0FDMUI7UUFDRCxPQUFPLE9BQU8sQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLENBQUM7SUFDdEUsQ0FBQztJQUVPLGFBQWEsQ0FBQyxTQUFpQjtRQUNyQyxPQUFPLENBQUMsVUFBK0IsRUFBRSxPQUE0QixFQUFFLEVBQUU7WUFDdkUsSUFDRSxJQUFJLENBQUMsR0FBRyxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxhQUFhLENBQUMsQ0FBQztnQkFDOUQsSUFBSSxDQUFDLEdBQUcsQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDLENBQUMsRUFDakU7Z0JBQ0EsVUFBVSxHQUFHLE9BQU8sQ0FBQzthQUN0QjtZQUNELE9BQU8sVUFBVSxDQUFDO1FBQ3BCLENBQUMsQ0FBQztJQUNKLENBQUM7SUFFTyxhQUFhLENBQ25CLFVBQStCLEVBQy9CLE9BQTRCO1FBRTVCLElBQ0UsSUFBSSxDQUFDLFlBQVksQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDO1lBQ3hDLElBQUksQ0FBQyxZQUFZLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxFQUMzQztZQUNBLFVBQVUsR0FBRyxPQUFPLENBQUM7U0FDdEI7UUFDRCxPQUFPLFVBQVUsQ0FBQztJQUNwQixDQUFDO0lBR0QsUUFBUTtRQUNOLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUN4QyxDQUFDO0lBRUQsa0JBQWtCO1FBQ2hCLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxXQUFXO2FBQzlCLElBQUksQ0FDSCxTQUFTLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxFQUN6QixZQUFZLENBQUMsR0FBRyxDQUFDLEVBQ2pCLEdBQUcsQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUNkLElBQUksQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUNuQixJQUFJLENBQUMsV0FBVztZQUNkLENBQUMsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUM7WUFDL0IsQ0FBQyxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLENBQ2xDLENBQ0YsRUFDRCxHQUFHLENBQUMsT0FBTyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsYUFBYSxDQUFDLENBQ3RDO2FBQ0EsSUFBSSxDQUNILEdBQUcsQ0FBQyxPQUFPLENBQUMsRUFBRTtZQUNaLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxFQUFFO2dCQUMvQixPQUFPLENBQUMsTUFBTSxHQUFHLE9BQU8sS0FBSyxPQUFPLENBQUMsYUFBYSxDQUFDO1lBQ3JELENBQUMsQ0FBQyxDQUFDO1lBQ0gsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsQ0FBQztRQUMzQixDQUFDLENBQUMsQ0FDSCxDQUFDO1FBRUosTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQ3ZDLFNBQVMsQ0FBQyxJQUFJLENBQUMsRUFBRTtZQUNmLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUNoQyxPQUFPLENBQUMsRUFBRSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEtBQUssSUFBSSxDQUMxQyxDQUFDO1lBRUYsSUFBSSxDQUFDLE1BQU0sRUFBRTtnQkFDWCxPQUFPLEtBQUssQ0FBQzthQUNkO1lBQ0QsTUFBTSxXQUFXLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFDLENBQUM7WUFFNUQsTUFBTSxLQUFLLEdBQUcsV0FBVyxDQUFDLEdBQUcsRUFBRSxDQUFDO1lBQ2hDLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUM7WUFDOUIsTUFBTSxRQUFRLEdBQUcsR0FBRyxDQUFDO1lBRXJCLE9BQU8sRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDZixTQUFTLENBQUMsdUJBQXVCLENBQUMsRUFDbEMsTUFBTSxFQUFFLEVBQ1IsR0FBRyxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsV0FBVyxDQUFDLEdBQUcsRUFBRSxHQUFHLEtBQUssQ0FBQyxHQUFHLFFBQVEsQ0FBQyxFQUNqRCxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEVBQ3JCLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFDVixHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxFQUNuQixHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsV0FBVyxHQUFHLENBQUMsQ0FBQyxDQUM3QyxDQUFDO1FBQ0osQ0FBQyxDQUFDLEVBQ0YsU0FBUyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FDNUIsQ0FBQztRQUVGLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUNiLFFBQVEsQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxFQUN0QyxZQUFZLENBQUMsU0FBUyxDQUFDLFVBQVUsQ0FBQyxFQUFFO1lBQ2xDLElBQUksQ0FBQyxTQUFTLEdBQUcsVUFBVSxDQUFDO1FBQzlCLENBQUMsQ0FBQyxDQUNILENBQUM7SUFDSixDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUM7UUFDN0MsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBRUQsUUFBUSxDQUFDLE9BQTBCO1FBQ2pDLElBQUksS0FBSyxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsRUFBRTtZQUMxQixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztTQUNsQzthQUFNO1lBQ0wsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7U0FDL0I7SUFDSCxDQUFDO0lBRUQsZUFBZSxDQUFDLFVBQStCO1FBQzdDLElBQUksQ0FBQyxTQUFTLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxTQUFTLEVBQUUsVUFBVSxDQUFDLENBQUM7SUFDbkQsQ0FBQztJQUVELGlCQUFpQixDQUFDLFVBQStCO1FBQy9DLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQ3BDLE9BQU8sQ0FBQyxFQUFFLENBQUMsT0FBTyxDQUFDLGFBQWEsS0FBSyxVQUFVLENBQUMsYUFBYSxDQUM5RCxDQUFDO0lBQ0osQ0FBQzs7a0hBdEpVLHFCQUFxQjtzR0FBckIscUJBQXFCOzJGQUFyQixxQkFBcUI7a0JBSmpDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG1CQUFtQjtvQkFDN0IsUUFBUSxFQUFFLGlCQUFpQjtpQkFDNUI7aUlBR0MsYUFBYTtzQkFEWixNQUFNO2dCQWlFUCxRQUFRO3NCQURQLFlBQVk7dUJBQUMsUUFBUSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIEFmdGVyQ29udGVudEluaXQsXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBEaXJlY3RpdmUsXG4gIEVsZW1lbnRSZWYsXG4gIEV2ZW50RW1pdHRlcixcbiAgSG9zdExpc3RlbmVyLFxuICBPbkRlc3Ryb3ksXG4gIE91dHB1dCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1xuICBFTVBUWSxcbiAgU3ViamVjdCxcbiAgU3Vic2NyaXB0aW9uLFxuICBhbmltYXRpb25GcmFtZVNjaGVkdWxlcixcbiAgb2YsXG59IGZyb20gJ3J4anMnO1xuaW1wb3J0IHtcbiAgZGVib3VuY2VUaW1lLFxuICBlbmRXaXRoLFxuICBtYXAsXG4gIG9ic2VydmVPbixcbiAgcmVwZWF0LFxuICBzdGFydFdpdGgsXG4gIHN3aXRjaE1hcCxcbiAgdGFrZVVudGlsLFxuICB0YWtlV2hpbGUsXG4gIHRhcCxcbn0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5pbXBvcnQgeyBUb2NDb250ZW50RGlyZWN0aXZlIH0gZnJvbSAnLi90b2MtY29udGVudC5kaXJlY3RpdmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpVG9jQ29udGFpbmVyXScsXG4gIGV4cG9ydEFzOiAnYXVpVG9jQ29udGFpbmVyJyxcbn0pXG5leHBvcnQgY2xhc3MgVG9jQ29udGFpbmVyRGlyZWN0aXZlIGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCwgT25EZXN0cm95IHtcbiAgQE91dHB1dCgpXG4gIGFjdGl2ZWRDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICBwcml2YXRlIF9jb250ZW50czogVG9jQ29udGVudERpcmVjdGl2ZVtdID0gW107XG4gIHByaXZhdGUgcmVhZG9ubHkgX3Njcm9sbFRvcCQgPSBuZXcgU3ViamVjdDxudW1iZXI+KCk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX3Njcm9sbFRvJCA9IG5ldyBTdWJqZWN0PHN0cmluZz4oKTtcbiAgcHJpdmF0ZSByZWFkb25seSBfb25EZXN0cm95JCA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX3N1YnM6IFN1YnNjcmlwdGlvbltdID0gW107XG4gIHByaXZhdGUgX25hdGl2ZUVsZW1lbnQ6IEhUTUxFbGVtZW50O1xuXG4gIGdldCBzY3JvbGxUb3AoKTogbnVtYmVyIHtcbiAgICByZXR1cm4gdGhpcy5fbmF0aXZlRWxlbWVudC5zY3JvbGxUb3AgfHwgMDtcbiAgfVxuXG4gIHNldCBzY3JvbGxUb3AodmFsdWU6IG51bWJlcikge1xuICAgIHRoaXMuX25hdGl2ZUVsZW1lbnQuc2Nyb2xsVG9wID0gdmFsdWU7XG4gIH1cblxuICBnZXQgaXNTY3JvbGxFbmQoKSB7XG4gICAgcmV0dXJuIChcbiAgICAgIHRoaXMuX25hdGl2ZUVsZW1lbnQuc2Nyb2xsSGVpZ2h0IC0gdGhpcy5fbmF0aXZlRWxlbWVudC5zY3JvbGxUb3AgPT09XG4gICAgICB0aGlzLl9uYXRpdmVFbGVtZW50LmNsaWVudEhlaWdodFxuICAgICk7XG4gIH1cblxuICBjb25zdHJ1Y3RvcihcbiAgICBlbGVtZW50UmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PixcbiAgICBwcml2YXRlIHJlYWRvbmx5IGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICkge1xuICAgIHRoaXMuX25hdGl2ZUVsZW1lbnQgPSBlbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQ7XG4gIH1cblxuICBnZXRPZmZzZXRUb3AoZWxlbWVudDogSFRNTEVsZW1lbnQpOiBudW1iZXIge1xuICAgIGlmIChlbGVtZW50LnBhcmVudEVsZW1lbnQgPT09IHRoaXMuX25hdGl2ZUVsZW1lbnQpIHtcbiAgICAgIHJldHVybiBlbGVtZW50Lm9mZnNldFRvcDtcbiAgICB9XG4gICAgcmV0dXJuIGVsZW1lbnQub2Zmc2V0VG9wICsgdGhpcy5nZXRPZmZzZXRUb3AoZWxlbWVudC5wYXJlbnRFbGVtZW50KTtcbiAgfVxuXG4gIHByaXZhdGUgZ2V0TWluQ29udGVudChzY3JvbGxUb3A6IG51bWJlcikge1xuICAgIHJldHVybiAobWluQ29udGVudDogVG9jQ29udGVudERpcmVjdGl2ZSwgY29udGVudDogVG9jQ29udGVudERpcmVjdGl2ZSkgPT4ge1xuICAgICAgaWYgKFxuICAgICAgICBNYXRoLmFicyhzY3JvbGxUb3AgLSB0aGlzLmdldE9mZnNldFRvcChjb250ZW50Lm5hdGl2ZUVsZW1lbnQpKSA8XG4gICAgICAgIE1hdGguYWJzKHNjcm9sbFRvcCAtIHRoaXMuZ2V0T2Zmc2V0VG9wKG1pbkNvbnRlbnQubmF0aXZlRWxlbWVudCkpXG4gICAgICApIHtcbiAgICAgICAgbWluQ29udGVudCA9IGNvbnRlbnQ7XG4gICAgICB9XG4gICAgICByZXR1cm4gbWluQ29udGVudDtcbiAgICB9O1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRNYXhDb250ZW50KFxuICAgIG1heENvbnRlbnQ6IFRvY0NvbnRlbnREaXJlY3RpdmUsXG4gICAgY29udGVudDogVG9jQ29udGVudERpcmVjdGl2ZSxcbiAgKSB7XG4gICAgaWYgKFxuICAgICAgdGhpcy5nZXRPZmZzZXRUb3AoY29udGVudC5uYXRpdmVFbGVtZW50KSA+XG4gICAgICB0aGlzLmdldE9mZnNldFRvcChtYXhDb250ZW50Lm5hdGl2ZUVsZW1lbnQpXG4gICAgKSB7XG4gICAgICBtYXhDb250ZW50ID0gY29udGVudDtcbiAgICB9XG4gICAgcmV0dXJuIG1heENvbnRlbnQ7XG4gIH1cblxuICBASG9zdExpc3RlbmVyKCdzY3JvbGwnKVxuICBvblNjcm9sbCgpIHtcbiAgICB0aGlzLl9zY3JvbGxUb3AkLm5leHQodGhpcy5zY3JvbGxUb3ApO1xuICB9XG5cbiAgbmdBZnRlckNvbnRlbnRJbml0KCkge1xuICAgIGNvbnN0IGFjdGl2ZWQkID0gdGhpcy5fc2Nyb2xsVG9wJFxuICAgICAgLnBpcGUoXG4gICAgICAgIHN0YXJ0V2l0aCh0aGlzLnNjcm9sbFRvcCksXG4gICAgICAgIGRlYm91bmNlVGltZSgyMDApLFxuICAgICAgICBtYXAoc2Nyb2xsVG9wID0+XG4gICAgICAgICAgdGhpcy5fY29udGVudHMucmVkdWNlKFxuICAgICAgICAgICAgdGhpcy5pc1Njcm9sbEVuZFxuICAgICAgICAgICAgICA/IHRoaXMuZ2V0TWF4Q29udGVudC5iaW5kKHRoaXMpXG4gICAgICAgICAgICAgIDogdGhpcy5nZXRNaW5Db250ZW50KHNjcm9sbFRvcCksXG4gICAgICAgICAgKSxcbiAgICAgICAgKSxcbiAgICAgICAgbWFwKGFjdGl2ZWQgPT4gYWN0aXZlZC5hdWlUb2NDb250ZW50KSxcbiAgICAgIClcbiAgICAgIC5waXBlKFxuICAgICAgICB0YXAoYWN0aXZlZCA9PiB7XG4gICAgICAgICAgdGhpcy5fY29udGVudHMuZm9yRWFjaChjb250ZW50ID0+IHtcbiAgICAgICAgICAgIGNvbnRlbnQuYWN0aXZlID0gYWN0aXZlZCA9PT0gY29udGVudC5hdWlUb2NDb250ZW50O1xuICAgICAgICAgIH0pO1xuICAgICAgICAgIHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKTtcbiAgICAgICAgfSksXG4gICAgICApO1xuXG4gICAgY29uc3Qgc2Nyb2xsVHdlZW4kID0gdGhpcy5fc2Nyb2xsVG8kLnBpcGUoXG4gICAgICBzd2l0Y2hNYXAobmFtZSA9PiB7XG4gICAgICAgIGNvbnN0IHRhcmdldCA9IHRoaXMuX2NvbnRlbnRzLmZpbmQoXG4gICAgICAgICAgY29udGVudCA9PiBjb250ZW50LmF1aVRvY0NvbnRlbnQgPT09IG5hbWUsXG4gICAgICAgICk7XG5cbiAgICAgICAgaWYgKCF0YXJnZXQpIHtcbiAgICAgICAgICByZXR1cm4gRU1QVFk7XG4gICAgICAgIH1cbiAgICAgICAgY29uc3QgZGVzdGluYXRpb24gPSB0aGlzLmdldE9mZnNldFRvcCh0YXJnZXQubmF0aXZlRWxlbWVudCk7XG5cbiAgICAgICAgY29uc3Qgc3RhcnQgPSBwZXJmb3JtYW5jZS5ub3coKTtcbiAgICAgICAgY29uc3Qgc291cmNlID0gdGhpcy5zY3JvbGxUb3A7XG4gICAgICAgIGNvbnN0IGR1cmF0aW9uID0gNTAwO1xuXG4gICAgICAgIHJldHVybiBvZigwKS5waXBlKFxuICAgICAgICAgIG9ic2VydmVPbihhbmltYXRpb25GcmFtZVNjaGVkdWxlciksXG4gICAgICAgICAgcmVwZWF0KCksXG4gICAgICAgICAgbWFwKCgpID0+IChwZXJmb3JtYW5jZS5ub3coKSAtIHN0YXJ0KSAvIGR1cmF0aW9uKSxcbiAgICAgICAgICB0YWtlV2hpbGUodCA9PiB0IDwgMSksXG4gICAgICAgICAgZW5kV2l0aCgxKSxcbiAgICAgICAgICBtYXAodCA9PiB0ICogdCAqIHQpLFxuICAgICAgICAgIG1hcCh0ID0+IHNvdXJjZSAqICgxIC0gdCkgKyBkZXN0aW5hdGlvbiAqIHQpLFxuICAgICAgICApO1xuICAgICAgfSksXG4gICAgICB0YWtlVW50aWwodGhpcy5fb25EZXN0cm95JCksXG4gICAgKTtcblxuICAgIHRoaXMuX3N1YnMucHVzaChcbiAgICAgIGFjdGl2ZWQkLnN1YnNjcmliZSh0aGlzLmFjdGl2ZWRDaGFuZ2UpLFxuICAgICAgc2Nyb2xsVHdlZW4kLnN1YnNjcmliZSh0d2VlblZhbHVlID0+IHtcbiAgICAgICAgdGhpcy5zY3JvbGxUb3AgPSB0d2VlblZhbHVlO1xuICAgICAgfSksXG4gICAgKTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCkge1xuICAgIHRoaXMuX3N1YnMuZm9yRWFjaChzdWIgPT4gc3ViLnVuc3Vic2NyaWJlKCkpO1xuICAgIHRoaXMuX29uRGVzdHJveSQubmV4dCgpO1xuICB9XG5cbiAgc2Nyb2xsVG8oY29udGVudDogc3RyaW5nIHwgc3RyaW5nW10pIHtcbiAgICBpZiAoQXJyYXkuaXNBcnJheShjb250ZW50KSkge1xuICAgICAgdGhpcy5fc2Nyb2xsVG8kLm5leHQoY29udGVudFswXSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuX3Njcm9sbFRvJC5uZXh0KGNvbnRlbnQpO1xuICAgIH1cbiAgfVxuXG4gIHJlZ2lzdGVyQ29udGVudCh0b2NDb250ZW50OiBUb2NDb250ZW50RGlyZWN0aXZlKSB7XG4gICAgdGhpcy5fY29udGVudHMgPSBbLi4udGhpcy5fY29udGVudHMsIHRvY0NvbnRlbnRdO1xuICB9XG5cbiAgZGVyZWdpc3RlckNvbnRlbnQodG9jQ29udGVudDogVG9jQ29udGVudERpcmVjdGl2ZSkge1xuICAgIHRoaXMuX2NvbnRlbnRzID0gdGhpcy5fY29udGVudHMuZmlsdGVyKFxuICAgICAgY29udGVudCA9PiBjb250ZW50LmF1aVRvY0NvbnRlbnQgIT09IHRvY0NvbnRlbnQuYXVpVG9jQ29udGVudCxcbiAgICApO1xuICB9XG59XG4iXX0=
@@ -0,0 +1,35 @@
1
+ import { Directive, HostBinding, Input, Optional, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./toc-container.directive";
4
+ export class TocContentDirective {
5
+ constructor(elemRef, containerDirective) {
6
+ this.containerDirective = containerDirective;
7
+ this.nativeElement = elemRef.nativeElement;
8
+ }
9
+ ngOnInit() {
10
+ if (this.containerDirective) {
11
+ this.containerDirective.registerContent(this);
12
+ }
13
+ }
14
+ ngOnDestroy() {
15
+ if (this.containerDirective) {
16
+ this.containerDirective.deregisterContent(this);
17
+ }
18
+ }
19
+ }
20
+ TocContentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TocContentDirective, deps: [{ token: i0.ElementRef }, { token: i1.TocContainerDirective, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
21
+ TocContentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.3", type: TocContentDirective, selector: "[auiTocContent]", inputs: { auiTocContent: "auiTocContent" }, host: { properties: { "class.isActive": "this.active" } }, ngImport: i0 });
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TocContentDirective, decorators: [{
23
+ type: Directive,
24
+ args: [{
25
+ selector: '[auiTocContent]',
26
+ }]
27
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.TocContainerDirective, decorators: [{
28
+ type: Optional
29
+ }] }]; }, propDecorators: { active: [{
30
+ type: HostBinding,
31
+ args: ['class.isActive']
32
+ }], auiTocContent: [{
33
+ type: Input
34
+ }] } });
35
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9jLWNvbnRlbnQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlLW9mLWNvbnRlbnRzL3RvYy1jb250ZW50LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUVULFdBQVcsRUFDWCxLQUFLLEVBR0wsUUFBUSxHQUNULE1BQU0sZUFBZSxDQUFDOzs7QUFPdkIsTUFBTSxPQUFPLG1CQUFtQjtJQVM5QixZQUNFLE9BQWdDLEVBQ0gsa0JBQXlDO1FBQXpDLHVCQUFrQixHQUFsQixrQkFBa0IsQ0FBdUI7UUFFdEUsSUFBSSxDQUFDLGFBQWEsR0FBRyxPQUFPLENBQUMsYUFBYSxDQUFDO0lBQzdDLENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxJQUFJLENBQUMsa0JBQWtCLEVBQUU7WUFDM0IsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztTQUMvQztJQUNILENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxJQUFJLENBQUMsa0JBQWtCLEVBQUU7WUFDM0IsSUFBSSxDQUFDLGtCQUFrQixDQUFDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ2pEO0lBQ0gsQ0FBQzs7Z0hBMUJVLG1CQUFtQjtvR0FBbkIsbUJBQW1COzJGQUFuQixtQkFBbUI7a0JBSC9CLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGlCQUFpQjtpQkFDNUI7OzBCQVlJLFFBQVE7NENBVFgsTUFBTTtzQkFETCxXQUFXO3VCQUFDLGdCQUFnQjtnQkFJN0IsYUFBYTtzQkFEWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgRGlyZWN0aXZlLFxuICBFbGVtZW50UmVmLFxuICBIb3N0QmluZGluZyxcbiAgSW5wdXQsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBPcHRpb25hbCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IFRvY0NvbnRhaW5lckRpcmVjdGl2ZSB9IGZyb20gJy4vdG9jLWNvbnRhaW5lci5kaXJlY3RpdmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpVG9jQ29udGVudF0nLFxufSlcbmV4cG9ydCBjbGFzcyBUb2NDb250ZW50RGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBASG9zdEJpbmRpbmcoJ2NsYXNzLmlzQWN0aXZlJylcbiAgYWN0aXZlOiBib29sZWFuO1xuXG4gIEBJbnB1dCgpXG4gIGF1aVRvY0NvbnRlbnQ6IHN0cmluZztcblxuICBuYXRpdmVFbGVtZW50OiBIVE1MRWxlbWVudDtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBlbGVtUmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PixcbiAgICBAT3B0aW9uYWwoKSBwcml2YXRlIHJlYWRvbmx5IGNvbnRhaW5lckRpcmVjdGl2ZTogVG9jQ29udGFpbmVyRGlyZWN0aXZlLFxuICApIHtcbiAgICB0aGlzLm5hdGl2ZUVsZW1lbnQgPSBlbGVtUmVmLm5hdGl2ZUVsZW1lbnQ7XG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5jb250YWluZXJEaXJlY3RpdmUpIHtcbiAgICAgIHRoaXMuY29udGFpbmVyRGlyZWN0aXZlLnJlZ2lzdGVyQ29udGVudCh0aGlzKTtcbiAgICB9XG4gIH1cblxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5jb250YWluZXJEaXJlY3RpdmUpIHtcbiAgICAgIHRoaXMuY29udGFpbmVyRGlyZWN0aXZlLmRlcmVnaXN0ZXJDb250ZW50KHRoaXMpO1xuICAgIH1cbiAgfVxufVxuIl19
@@ -0,0 +1,47 @@
1
+ import { Directive, HostBinding, HostListener, Input, } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class TocLinkDirective {
4
+ constructor(cdr) {
5
+ this.cdr = cdr;
6
+ this._subs = [];
7
+ }
8
+ onClick() {
9
+ this.for.scrollTo(this.auiTocLink);
10
+ }
11
+ ngOnInit() {
12
+ if (!this.for || !this.auiTocLink) {
13
+ return;
14
+ }
15
+ this._subs.push(this.for.activedChange.subscribe((actived) => {
16
+ if (Array.isArray(this.auiTocLink)) {
17
+ this.active = this.auiTocLink.includes(actived);
18
+ }
19
+ else {
20
+ this.active = actived === this.auiTocLink;
21
+ }
22
+ this.cdr.detectChanges();
23
+ }));
24
+ }
25
+ ngOnDestroy() {
26
+ this._subs.forEach(sub => sub.unsubscribe());
27
+ }
28
+ }
29
+ TocLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TocLinkDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
30
+ TocLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.3", type: TocLinkDirective, selector: "[auiTocLink]", inputs: { for: "for", auiTocLink: "auiTocLink" }, host: { listeners: { "click": "onClick()" }, properties: { "class.isActive": "this.active" } }, ngImport: i0 });
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.3", ngImport: i0, type: TocLinkDirective, decorators: [{
32
+ type: Directive,
33
+ args: [{
34
+ selector: '[auiTocLink]',
35
+ }]
36
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { active: [{
37
+ type: HostBinding,
38
+ args: ['class.isActive']
39
+ }], for: [{
40
+ type: Input
41
+ }], auiTocLink: [{
42
+ type: Input
43
+ }], onClick: [{
44
+ type: HostListener,
45
+ args: ['click']
46
+ }] } });
47
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9jLWxpbmsuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3RhYmxlLW9mLWNvbnRlbnRzL3RvYy1saW5rLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBRUwsU0FBUyxFQUNULFdBQVcsRUFDWCxZQUFZLEVBQ1osS0FBSyxHQUdOLE1BQU0sZUFBZSxDQUFDOztBQVF2QixNQUFNLE9BQU8sZ0JBQWdCO0lBaUIzQixZQUE2QixHQUFzQjtRQUF0QixRQUFHLEdBQUgsR0FBRyxDQUFtQjtRQVBsQyxVQUFLLEdBQW1CLEVBQUUsQ0FBQztJQU9VLENBQUM7SUFKdkQsT0FBTztRQUNMLElBQUksQ0FBQyxHQUFHLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztJQUNyQyxDQUFDO0lBSUQsUUFBUTtRQUNOLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNqQyxPQUFPO1NBQ1I7UUFDRCxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FDYixJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQyxPQUFlLEVBQUUsRUFBRTtZQUNuRCxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxFQUFFO2dCQUNsQyxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDO2FBQ2pEO2lCQUFNO2dCQUNMLElBQUksQ0FBQyxNQUFNLEdBQUcsT0FBTyxLQUFLLElBQUksQ0FBQyxVQUFVLENBQUM7YUFDM0M7WUFDRCxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO1FBQzNCLENBQUMsQ0FBQyxDQUNILENBQUM7SUFDSixDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUM7SUFDL0MsQ0FBQzs7NkdBckNVLGdCQUFnQjtpR0FBaEIsZ0JBQWdCOzJGQUFoQixnQkFBZ0I7a0JBSDVCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGNBQWM7aUJBQ3pCO3dHQUdDLE1BQU07c0JBREwsV0FBVzt1QkFBQyxnQkFBZ0I7Z0JBSTdCLEdBQUc7c0JBREYsS0FBSztnQkFJTixVQUFVO3NCQURULEtBQUs7Z0JBTU4sT0FBTztzQkFETixZQUFZO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgRGlyZWN0aXZlLFxuICBIb3N0QmluZGluZyxcbiAgSG9zdExpc3RlbmVyLFxuICBJbnB1dCxcbiAgT25EZXN0cm95LFxuICBPbkluaXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgU3Vic2NyaXB0aW9uIH0gZnJvbSAncnhqcyc7XG5cbmltcG9ydCB7IFRvY0NvbnRhaW5lckRpcmVjdGl2ZSB9IGZyb20gJy4vdG9jLWNvbnRhaW5lci5kaXJlY3RpdmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbYXVpVG9jTGlua10nLFxufSlcbmV4cG9ydCBjbGFzcyBUb2NMaW5rRGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBASG9zdEJpbmRpbmcoJ2NsYXNzLmlzQWN0aXZlJylcbiAgYWN0aXZlOiBib29sZWFuO1xuXG4gIEBJbnB1dCgpXG4gIGZvcjogVG9jQ29udGFpbmVyRGlyZWN0aXZlO1xuXG4gIEBJbnB1dCgpXG4gIGF1aVRvY0xpbms6IHN0cmluZyB8IHN0cmluZ1tdO1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgX3N1YnM6IFN1YnNjcmlwdGlvbltdID0gW107XG5cbiAgQEhvc3RMaXN0ZW5lcignY2xpY2snKVxuICBvbkNsaWNrKCkge1xuICAgIHRoaXMuZm9yLnNjcm9sbFRvKHRoaXMuYXVpVG9jTGluayk7XG4gIH1cblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIHJlYWRvbmx5IGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHt9XG5cbiAgbmdPbkluaXQoKSB7XG4gICAgaWYgKCF0aGlzLmZvciB8fCAhdGhpcy5hdWlUb2NMaW5rKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuICAgIHRoaXMuX3N1YnMucHVzaChcbiAgICAgIHRoaXMuZm9yLmFjdGl2ZWRDaGFuZ2Uuc3Vic2NyaWJlKChhY3RpdmVkOiBzdHJpbmcpID0+IHtcbiAgICAgICAgaWYgKEFycmF5LmlzQXJyYXkodGhpcy5hdWlUb2NMaW5rKSkge1xuICAgICAgICAgIHRoaXMuYWN0aXZlID0gdGhpcy5hdWlUb2NMaW5rLmluY2x1ZGVzKGFjdGl2ZWQpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIHRoaXMuYWN0aXZlID0gYWN0aXZlZCA9PT0gdGhpcy5hdWlUb2NMaW5rO1xuICAgICAgICB9XG4gICAgICAgIHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKTtcbiAgICAgIH0pLFxuICAgICk7XG4gIH1cblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLl9zdWJzLmZvckVhY2goc3ViID0+IHN1Yi51bnN1YnNjcmliZSgpKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,9 @@
1
+ export * from './tabs.module';
2
+ export * from './tabs.types';
3
+ export * from './tab-group.component';
4
+ export * from './tab-body.component';
5
+ export * from './tab-header.component';
6
+ export * from './tab.component';
7
+ export * from './tab-header-active-indicator.component';
8
+ export * from './tab-context.service';
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy90YWJzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsdUJBQXVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYnMubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vdGFicy50eXBlcyc7XG5leHBvcnQgKiBmcm9tICcuL3RhYi1ncm91cC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90YWItYm9keS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90YWItaGVhZGVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3RhYi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90YWItaGVhZGVyLWFjdGl2ZS1pbmRpY2F0b3IuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vdGFiLWNvbnRleHQuc2VydmljZSc7XG4iXX0=