@ts-core/angular 11.0.87 → 13.0.2

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 (362) hide show
  1. package/VICommonModule.d.ts +34 -2
  2. package/application/ApplicationBaseComponent.d.ts +9 -5
  3. package/application/ApplicationComponent.d.ts +2 -6
  4. package/asset/AssetBackgroundDirective.d.ts +3 -0
  5. package/asset/AssetBackgroundPipe.d.ts +3 -0
  6. package/asset/AssetFilePipe.d.ts +3 -0
  7. package/asset/AssetIconPipe.d.ts +3 -0
  8. package/asset/AssetImagePipe.d.ts +3 -0
  9. package/asset/AssetModule.d.ts +12 -0
  10. package/asset/AssetSoundPipe.d.ts +3 -0
  11. package/asset/AssetVideoPipe.d.ts +3 -0
  12. package/bottomSheet/BottomSheetModule.d.ts +10 -0
  13. package/bottomSheet/BottomSheetService.d.ts +3 -0
  14. package/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.d.ts +3 -0
  15. package/component/VIComponentModule.d.ts +28 -0
  16. package/component/cdk-table/CdkTableBaseComponent.d.ts +6 -3
  17. package/component/cdk-table/CdkTableFilterableMapCollection.d.ts +5 -5
  18. package/component/cdk-table/CdkTablePaginableBookmarkMapCollection.d.ts +2 -2
  19. package/component/cdk-table/CdkTablePaginableMapCollection.d.ts +2 -6
  20. package/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.d.ts +3 -0
  21. package/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.d.ts +3 -0
  22. package/component/cdk-table/column/CdkTableCellClassNamePipe.d.ts +3 -0
  23. package/component/cdk-table/column/CdkTableColumnClassNamePipe.d.ts +3 -0
  24. package/component/cdk-table/column/CdkTableColumnStyleNamePipe.d.ts +3 -0
  25. package/component/cdk-table/column/CdkTableColumnValuePipe.d.ts +3 -0
  26. package/component/cdk-table/column/ICdkTableColumn.d.ts +1 -1
  27. package/component/cdk-table/row/CdkTableRowClassNamePipe.d.ts +3 -0
  28. package/component/cdk-table/row/CdkTableRowStyleNamePipe.d.ts +3 -0
  29. package/component/language/language-selector/language-selector.component.d.ts +3 -0
  30. package/component/menu-list/menu-list.component.d.ts +3 -0
  31. package/component/select-list/select-list.component.d.ts +3 -0
  32. package/component/tab-group/tab-group.component.d.ts +3 -0
  33. package/cookie/CookieModule.d.ts +4 -0
  34. package/directive/AspectRatioResizeDirective.d.ts +3 -0
  35. package/directive/AutoScrollBottomDirective.d.ts +3 -0
  36. package/directive/ClickToCopyDirective.d.ts +3 -0
  37. package/directive/ClickToSelectDirective.d.ts +3 -0
  38. package/directive/FocusDirective.d.ts +3 -0
  39. package/directive/HTMLContentTitleDirective.d.ts +3 -0
  40. package/directive/InfiniteScrollDirective.d.ts +3 -0
  41. package/directive/ResizeDirective.d.ts +3 -0
  42. package/directive/ScrollDirective.d.ts +3 -0
  43. package/directive/SelectOnFocusDirective.d.ts +3 -0
  44. package/{esm2015/ApplicationInjector.js → esm2020/ApplicationInjector.mjs} +0 -0
  45. package/esm2020/VICommonModule.mjs +145 -0
  46. package/esm2020/application/ApplicationBaseComponent.mjs +87 -0
  47. package/esm2020/application/ApplicationComponent.mjs +53 -0
  48. package/{esm2015/application/MessageBaseComponent.js → esm2020/application/MessageBaseComponent.mjs} +0 -0
  49. package/{esm2015/application/ShellBaseComponent.js → esm2020/application/ShellBaseComponent.mjs} +0 -0
  50. package/esm2020/asset/AssetBackgroundDirective.mjs +150 -0
  51. package/esm2020/asset/AssetBackgroundPipe.mjs +22 -0
  52. package/esm2020/asset/AssetFilePipe.mjs +22 -0
  53. package/esm2020/asset/AssetIconPipe.mjs +22 -0
  54. package/esm2020/asset/AssetImagePipe.mjs +22 -0
  55. package/esm2020/asset/AssetModule.mjs +24 -0
  56. package/esm2020/asset/AssetSoundPipe.mjs +22 -0
  57. package/esm2020/asset/AssetVideoPipe.mjs +22 -0
  58. package/esm2020/bottomSheet/BottomSheetImpl.mjs +230 -0
  59. package/esm2020/bottomSheet/BottomSheetModule.mjs +45 -0
  60. package/esm2020/bottomSheet/BottomSheetService.mjs +99 -0
  61. package/{esm2015/bottomSheet/component/BottomSheetBaseComponent.js → esm2020/bottomSheet/component/BottomSheetBaseComponent.mjs} +0 -0
  62. package/esm2020/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.mjs +60 -0
  63. package/esm2020/component/VIComponentModule.mjs +105 -0
  64. package/esm2020/component/cdk-table/CdkTableBaseComponent.mjs +188 -0
  65. package/{esm2015/component/cdk-table/CdkTableDataSource.js → esm2020/component/cdk-table/CdkTableDataSource.mjs} +0 -0
  66. package/esm2020/component/cdk-table/CdkTableFilterableMapCollection.mjs +94 -0
  67. package/esm2020/component/cdk-table/CdkTablePaginableBookmarkMapCollection.mjs +49 -0
  68. package/esm2020/component/cdk-table/CdkTablePaginableMapCollection.mjs +57 -0
  69. package/esm2020/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.mjs +35 -0
  70. package/esm2020/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.mjs +63 -0
  71. package/esm2020/component/cdk-table/column/CdkTableCellClassNamePipe.mjs +21 -0
  72. package/esm2020/component/cdk-table/column/CdkTableColumnClassNamePipe.mjs +22 -0
  73. package/esm2020/component/cdk-table/column/CdkTableColumnStyleNamePipe.mjs +22 -0
  74. package/esm2020/component/cdk-table/column/CdkTableColumnValuePipe.mjs +22 -0
  75. package/esm2020/component/cdk-table/column/ICdkTableColumn.mjs +2 -0
  76. package/esm2020/component/cdk-table/row/CdkTableRowClassNamePipe.mjs +22 -0
  77. package/esm2020/component/cdk-table/row/CdkTableRowStyleNamePipe.mjs +22 -0
  78. package/{esm2015/component/cdk-table/row/ICdkTableRow.js → esm2020/component/cdk-table/row/ICdkTableRow.mjs} +0 -0
  79. package/esm2020/component/language/language-selector/language-selector.component.mjs +79 -0
  80. package/esm2020/component/menu-list/menu-list.component.mjs +16 -0
  81. package/esm2020/component/select-list/select-list.component.mjs +17 -0
  82. package/esm2020/component/tab-group/tab-group.component.mjs +71 -0
  83. package/esm2020/cookie/CookieModule.mjs +37 -0
  84. package/{esm2015/cookie/CookieOptions.js → esm2020/cookie/CookieOptions.mjs} +0 -0
  85. package/{esm2015/cookie/CookieService.js → esm2020/cookie/CookieService.mjs} +1 -1
  86. package/esm2020/directive/AspectRatioResizeDirective.mjs +127 -0
  87. package/esm2020/directive/AutoScrollBottomDirective.mjs +115 -0
  88. package/esm2020/directive/ClickToCopyDirective.mjs +49 -0
  89. package/esm2020/directive/ClickToSelectDirective.mjs +49 -0
  90. package/esm2020/directive/FocusDirective.mjs +54 -0
  91. package/esm2020/directive/HTMLContentTitleDirective.mjs +71 -0
  92. package/esm2020/directive/InfiniteScrollDirective.mjs +74 -0
  93. package/esm2020/directive/ResizeDirective.mjs +79 -0
  94. package/esm2020/directive/ScrollDirective.mjs +128 -0
  95. package/esm2020/directive/SelectOnFocusDirective.mjs +47 -0
  96. package/{esm2015/form/FormElementAsync.js → esm2020/form/FormElementAsync.mjs} +0 -0
  97. package/esm2020/form/FormElementSync.mjs +69 -0
  98. package/{esm2015/form/ValueAccessor.js → esm2020/form/ValueAccessor.mjs} +0 -0
  99. package/esm2020/form/validate.mjs +59 -0
  100. package/esm2020/language/LanguageDirective.mjs +92 -0
  101. package/esm2020/language/LanguageHasDirective.mjs +93 -0
  102. package/esm2020/language/LanguageMatPaginatorIntl.mjs +62 -0
  103. package/esm2020/language/LanguageModule.mjs +67 -0
  104. package/{esm2015/language/LanguageMomentDateAdapter.js → esm2020/language/LanguageMomentDateAdapter.mjs} +2 -4
  105. package/esm2020/language/LanguagePipe.mjs +58 -0
  106. package/esm2020/language/LanguagePipeHas.mjs +56 -0
  107. package/esm2020/language/LanguagePipeHasPure.mjs +40 -0
  108. package/esm2020/language/LanguagePipePure.mjs +39 -0
  109. package/{esm2015/language/LanguageRequireResolver.js → esm2020/language/LanguageRequireResolver.mjs} +0 -0
  110. package/esm2020/language/LanguageResolver.mjs +21 -0
  111. package/{esm2015/list/IListItem.js → esm2020/list/IListItem.mjs} +0 -0
  112. package/{esm2015/list/ListItem.js → esm2020/list/ListItem.mjs} +0 -0
  113. package/{esm2015/list/ListItems.js → esm2020/list/ListItems.mjs} +0 -0
  114. package/{esm2015/list/select/ISelectListItem.js → esm2020/list/select/ISelectListItem.mjs} +0 -0
  115. package/{esm2015/list/select/SelectListItem.js → esm2020/list/select/SelectListItem.mjs} +0 -0
  116. package/{esm2015/list/select/SelectListItems.js → esm2020/list/select/SelectListItems.mjs} +0 -0
  117. package/esm2020/login/LoginBaseService.mjs +187 -0
  118. package/esm2020/login/LoginGuard.mjs +29 -0
  119. package/esm2020/login/LoginRedirectResolver.mjs +21 -0
  120. package/esm2020/login/LoginRequireResolver.mjs +36 -0
  121. package/esm2020/login/LoginResolver.mjs +28 -0
  122. package/{esm2015/manager/FocusManager.js → esm2020/manager/FocusManager.mjs} +0 -0
  123. package/{esm2015/manager/ResizeManager.js → esm2020/manager/ResizeManager.mjs} +0 -0
  124. package/{esm2015/menu/MenuItem.js → esm2020/menu/MenuItem.mjs} +0 -0
  125. package/{esm2015/menu/MenuItemBase.js → esm2020/menu/MenuItemBase.mjs} +0 -0
  126. package/{esm2015/menu/MenuItems.js → esm2020/menu/MenuItems.mjs} +0 -0
  127. package/{esm2015/menu/NavigationMenuItem.js → esm2020/menu/NavigationMenuItem.mjs} +0 -0
  128. package/esm2020/module/LazyModuleLoader.mjs +89 -0
  129. package/{esm2015/notification/INotification.js → esm2020/notification/INotification.mjs} +0 -0
  130. package/esm2020/notification/INotificationContent.mjs +131 -0
  131. package/{esm2015/notification/NotificationConfig.js → esm2020/notification/NotificationConfig.mjs} +0 -0
  132. package/{esm2015/notification/NotificationFactory.js → esm2020/notification/NotificationFactory.mjs} +0 -0
  133. package/esm2020/notification/NotificationImpl.mjs +139 -0
  134. package/esm2020/notification/NotificationModule.mjs +53 -0
  135. package/{esm2015/notification/NotificationProperties.js → esm2020/notification/NotificationProperties.mjs} +0 -0
  136. package/esm2020/notification/NotificationService.mjs +239 -0
  137. package/{esm2015/notification/component/NotificationBaseComponent.js → esm2020/notification/component/NotificationBaseComponent.mjs} +0 -0
  138. package/esm2020/notification/component/NotificationQuestionBaseComponent.mjs +49 -0
  139. package/esm2020/notification/component/notification/notification.component.mjs +61 -0
  140. package/esm2020/pipe/CamelCasePipe.mjs +31 -0
  141. package/esm2020/pipe/FinancePipe.mjs +53 -0
  142. package/esm2020/pipe/MomentDateAdaptivePipe.mjs +51 -0
  143. package/esm2020/pipe/MomentDateFromNowPipe.mjs +22 -0
  144. package/esm2020/pipe/MomentDatePipe.mjs +71 -0
  145. package/esm2020/pipe/MomentTimePipe.mjs +35 -0
  146. package/esm2020/pipe/NgModelErrorPipe.mjs +42 -0
  147. package/esm2020/pipe/PrettifyPipe.mjs +38 -0
  148. package/esm2020/pipe/SanitizePipe.mjs +47 -0
  149. package/esm2020/pipe/StartCasePipe.mjs +24 -0
  150. package/esm2020/pipe/TimePipe.mjs +37 -0
  151. package/esm2020/pipe/TruncatePipe.mjs +25 -0
  152. package/esm2020/public-api.mjs +160 -0
  153. package/{esm2015/question/IQuestion.js → esm2020/question/IQuestion.mjs} +0 -0
  154. package/{esm2015/question/QuestionManager.js → esm2020/question/QuestionManager.mjs} +0 -0
  155. package/esm2020/service/BootstrapBreakpointService.mjs +116 -0
  156. package/{esm2015/service/PipeBaseService.js → esm2020/service/PipeBaseService.mjs} +0 -0
  157. package/esm2020/service/RouterBaseService.mjs +214 -0
  158. package/{esm2015/service/route/CanDeactivateGuard.js → esm2020/service/route/CanDeactivateGuard.mjs} +0 -0
  159. package/{esm2015/service/route/IRouterDeactivatable.js → esm2020/service/route/IRouterDeactivatable.mjs} +0 -0
  160. package/esm2020/theme/ThemeAssetBackgroundDirective.mjs +36 -0
  161. package/esm2020/theme/ThemeAssetDirective.mjs +219 -0
  162. package/esm2020/theme/ThemeAssetImageDirective.mjs +34 -0
  163. package/esm2020/theme/ThemeModule.mjs +62 -0
  164. package/esm2020/theme/ThemeStyleDirective.mjs +115 -0
  165. package/esm2020/theme/ThemeStyleHoverDirective.mjs +107 -0
  166. package/esm2020/theme/ThemeToggleDirective.mjs +62 -0
  167. package/esm2020/transport/TransportLazy.mjs +91 -0
  168. package/esm2020/transport/TransportLazyModule.mjs +28 -0
  169. package/esm2020/transport/TransportLazyModuleLoadedEvent.mjs +18 -0
  170. package/esm2020/ts-core-angular.mjs +5 -0
  171. package/{esm2015/user/IUser.js → esm2020/user/IUser.mjs} +0 -0
  172. package/esm2020/user/UserBaseService.mjs +105 -0
  173. package/{esm2015/util/ViewUtil.js → esm2020/util/ViewUtil.mjs} +0 -0
  174. package/{esm2015/window/IWindow.js → esm2020/window/IWindow.mjs} +0 -0
  175. package/esm2020/window/IWindowContent.mjs +124 -0
  176. package/{esm2015/window/WindowBase.js → esm2020/window/WindowBase.mjs} +0 -0
  177. package/{esm2015/window/WindowConfig.js → esm2020/window/WindowConfig.mjs} +0 -0
  178. package/{esm2015/window/WindowFactory.js → esm2020/window/WindowFactory.mjs} +0 -0
  179. package/esm2020/window/WindowImpl.mjs +319 -0
  180. package/esm2020/window/WindowModule.mjs +59 -0
  181. package/{esm2015/window/WindowProperties.js → esm2020/window/WindowProperties.mjs} +0 -0
  182. package/esm2020/window/WindowService.mjs +338 -0
  183. package/{esm2015/window/component/WindowBaseComponent.js → esm2020/window/component/WindowBaseComponent.mjs} +0 -0
  184. package/esm2020/window/component/WindowDragAreaDirective.mjs +97 -0
  185. package/{esm2015/window/component/WindowDragable.js → esm2020/window/component/WindowDragable.mjs} +1 -1
  186. package/esm2020/window/component/WindowElement.mjs +85 -0
  187. package/{esm2015/window/component/WindowQuestionBaseComponent.js → esm2020/window/component/WindowQuestionBaseComponent.mjs} +0 -0
  188. package/{esm2015/window/component/WindowResizeable.js → esm2020/window/component/WindowResizeable.mjs} +1 -1
  189. package/esm2020/window/component/window-close-element/window-close-element.component.mjs +60 -0
  190. package/esm2020/window/component/window-minimize-element/window-minimize-element.component.mjs +80 -0
  191. package/esm2020/window/component/window-question/window-question.component.mjs +50 -0
  192. package/esm2020/window/component/window-resize-element/window-resize-element.component.mjs +59 -0
  193. package/fesm2015/{ts-core-angular.js → ts-core-angular.mjs} +5106 -4696
  194. package/fesm2015/ts-core-angular.mjs.map +1 -0
  195. package/fesm2020/ts-core-angular.mjs +9510 -0
  196. package/fesm2020/ts-core-angular.mjs.map +1 -0
  197. package/form/FormElementSync.d.ts +3 -0
  198. package/language/LanguageDirective.d.ts +3 -0
  199. package/language/LanguageHasDirective.d.ts +3 -0
  200. package/language/LanguageMatPaginatorIntl.d.ts +3 -0
  201. package/language/LanguageModule.d.ts +11 -0
  202. package/language/LanguagePipe.d.ts +3 -0
  203. package/language/LanguagePipeHas.d.ts +3 -0
  204. package/language/LanguagePipeHasPure.d.ts +3 -0
  205. package/language/LanguagePipePure.d.ts +3 -0
  206. package/language/LanguageResolver.d.ts +3 -0
  207. package/login/LoginGuard.d.ts +5 -2
  208. package/login/LoginRedirectResolver.d.ts +3 -0
  209. package/login/LoginRequireResolver.d.ts +2 -2
  210. package/login/LoginResolver.d.ts +3 -0
  211. package/module/LazyModuleLoader.d.ts +24 -0
  212. package/notification/INotificationContent.d.ts +3 -0
  213. package/notification/NotificationModule.d.ts +14 -0
  214. package/notification/NotificationService.d.ts +3 -0
  215. package/notification/component/NotificationQuestionBaseComponent.d.ts +3 -0
  216. package/notification/component/notification/notification.component.d.ts +3 -0
  217. package/package.json +44 -30
  218. package/pipe/CamelCasePipe.d.ts +3 -0
  219. package/pipe/FinancePipe.d.ts +3 -0
  220. package/pipe/MomentDateAdaptivePipe.d.ts +3 -0
  221. package/pipe/MomentDateFromNowPipe.d.ts +3 -0
  222. package/pipe/MomentDatePipe.d.ts +3 -0
  223. package/pipe/MomentTimePipe.d.ts +3 -0
  224. package/pipe/NgModelErrorPipe.d.ts +3 -0
  225. package/pipe/PrettifyPipe.d.ts +3 -0
  226. package/pipe/SanitizePipe.d.ts +3 -0
  227. package/pipe/StartCasePipe.d.ts +3 -0
  228. package/pipe/TimePipe.d.ts +3 -0
  229. package/pipe/TruncatePipe.d.ts +3 -0
  230. package/public-api.d.ts +29 -9
  231. package/service/BootstrapBreakpointService.d.ts +3 -0
  232. package/theme/ThemeAssetBackgroundDirective.d.ts +3 -0
  233. package/theme/ThemeAssetDirective.d.ts +3 -0
  234. package/theme/ThemeAssetImageDirective.d.ts +3 -0
  235. package/theme/ThemeModule.d.ts +10 -0
  236. package/theme/ThemeStyleDirective.d.ts +3 -0
  237. package/theme/ThemeStyleHoverDirective.d.ts +3 -0
  238. package/theme/ThemeToggleDirective.d.ts +3 -0
  239. package/transport/TransportLazy.d.ts +15 -0
  240. package/transport/TransportLazyModule.d.ts +16 -0
  241. package/transport/TransportLazyModuleLoadedEvent.d.ts +6 -0
  242. package/ts-core-angular.d.ts +1 -24
  243. package/user/UserBaseService.d.ts +1 -1
  244. package/window/IWindowContent.d.ts +3 -0
  245. package/window/WindowModule.d.ts +20 -0
  246. package/window/WindowService.d.ts +3 -0
  247. package/window/component/WindowDragAreaDirective.d.ts +3 -0
  248. package/window/component/WindowDragable.d.ts +1 -1
  249. package/window/component/WindowElement.d.ts +3 -0
  250. package/window/component/WindowResizeable.d.ts +1 -1
  251. package/window/component/window-close-element/window-close-element.component.d.ts +3 -0
  252. package/window/component/window-minimize-element/window-minimize-element.component.d.ts +3 -0
  253. package/window/component/window-question/window-question.component.d.ts +3 -0
  254. package/window/component/window-resize-element/window-resize-element.component.d.ts +3 -0
  255. package/application/ApplicationComponent2.d.ts +0 -19
  256. package/bundles/ts-core-angular.umd.js +0 -10984
  257. package/bundles/ts-core-angular.umd.js.map +0 -1
  258. package/bundles/ts-core-angular.umd.min.js +0 -2
  259. package/bundles/ts-core-angular.umd.min.js.map +0 -1
  260. package/esm2015/VICommonModule.js +0 -98
  261. package/esm2015/application/ApplicationBaseComponent.js +0 -80
  262. package/esm2015/application/ApplicationComponent.js +0 -57
  263. package/esm2015/application/ApplicationComponent2.js +0 -53
  264. package/esm2015/asset/AssetBackgroundDirective.js +0 -144
  265. package/esm2015/asset/AssetBackgroundPipe.js +0 -18
  266. package/esm2015/asset/AssetFilePipe.js +0 -18
  267. package/esm2015/asset/AssetIconPipe.js +0 -18
  268. package/esm2015/asset/AssetImagePipe.js +0 -18
  269. package/esm2015/asset/AssetModule.js +0 -19
  270. package/esm2015/asset/AssetSoundPipe.js +0 -18
  271. package/esm2015/asset/AssetVideoPipe.js +0 -18
  272. package/esm2015/bottomSheet/BottomSheetImpl.js +0 -231
  273. package/esm2015/bottomSheet/BottomSheetModule.js +0 -40
  274. package/esm2015/bottomSheet/BottomSheetService.js +0 -103
  275. package/esm2015/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.js +0 -63
  276. package/esm2015/component/VIComponentModule.js +0 -67
  277. package/esm2015/component/cdk-table/CdkTableBaseComponent.js +0 -176
  278. package/esm2015/component/cdk-table/CdkTableFilterableMapCollection.js +0 -94
  279. package/esm2015/component/cdk-table/CdkTablePaginableBookmarkMapCollection.js +0 -49
  280. package/esm2015/component/cdk-table/CdkTablePaginableMapCollection.js +0 -57
  281. package/esm2015/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.js +0 -24
  282. package/esm2015/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.js +0 -52
  283. package/esm2015/component/cdk-table/column/CdkTableCellClassNamePipe.js +0 -17
  284. package/esm2015/component/cdk-table/column/CdkTableColumnClassNamePipe.js +0 -18
  285. package/esm2015/component/cdk-table/column/CdkTableColumnStyleNamePipe.js +0 -18
  286. package/esm2015/component/cdk-table/column/CdkTableColumnValuePipe.js +0 -18
  287. package/esm2015/component/cdk-table/column/ICdkTableColumn.js +0 -2
  288. package/esm2015/component/cdk-table/row/CdkTableRowClassNamePipe.js +0 -18
  289. package/esm2015/component/cdk-table/row/CdkTableRowStyleNamePipe.js +0 -18
  290. package/esm2015/component/language/language-selector/language-selector.component.js +0 -75
  291. package/esm2015/component/menu-list/menu-list.component.js +0 -14
  292. package/esm2015/component/select-list/select-list.component.js +0 -14
  293. package/esm2015/component/tab-group/tab-group.component.js +0 -68
  294. package/esm2015/cookie/CookieModule.js +0 -33
  295. package/esm2015/directive/AspectRatioResizeDirective.js +0 -125
  296. package/esm2015/directive/AutoScrollBottomDirective.js +0 -107
  297. package/esm2015/directive/ClickToCopyDirective.js +0 -48
  298. package/esm2015/directive/ClickToSelectDirective.js +0 -48
  299. package/esm2015/directive/FocusDirective.js +0 -53
  300. package/esm2015/directive/HTMLContentTitleDirective.js +0 -70
  301. package/esm2015/directive/InfiniteScrollDirective.js +0 -69
  302. package/esm2015/directive/ResizeDirective.js +0 -75
  303. package/esm2015/directive/ScrollDirective.js +0 -124
  304. package/esm2015/directive/SelectOnFocusDirective.js +0 -46
  305. package/esm2015/form/FormElementSync.js +0 -62
  306. package/esm2015/form/validate.js +0 -61
  307. package/esm2015/language/LanguageDirective.js +0 -90
  308. package/esm2015/language/LanguageHasDirective.js +0 -93
  309. package/esm2015/language/LanguageMatPaginatorIntl.js +0 -54
  310. package/esm2015/language/LanguageModule.js +0 -62
  311. package/esm2015/language/LanguagePipe.js +0 -57
  312. package/esm2015/language/LanguagePipeHas.js +0 -55
  313. package/esm2015/language/LanguagePipeHasPure.js +0 -39
  314. package/esm2015/language/LanguagePipePure.js +0 -38
  315. package/esm2015/language/LanguageResolver.js +0 -23
  316. package/esm2015/login/LoginBaseService.js +0 -197
  317. package/esm2015/login/LoginGuard.js +0 -31
  318. package/esm2015/login/LoginRedirectResolver.js +0 -19
  319. package/esm2015/login/LoginRequireResolver.js +0 -36
  320. package/esm2015/login/LoginResolver.js +0 -30
  321. package/esm2015/notification/INotificationContent.js +0 -126
  322. package/esm2015/notification/NotificationImpl.js +0 -140
  323. package/esm2015/notification/NotificationModule.js +0 -40
  324. package/esm2015/notification/NotificationService.js +0 -248
  325. package/esm2015/notification/component/NotificationQuestionBaseComponent.js +0 -43
  326. package/esm2015/notification/component/notification/notification.component.js +0 -64
  327. package/esm2015/pipe/CamelCasePipe.js +0 -28
  328. package/esm2015/pipe/FinancePipe.js +0 -49
  329. package/esm2015/pipe/MomentDateAdaptivePipe.js +0 -47
  330. package/esm2015/pipe/MomentDateFromNowPipe.js +0 -18
  331. package/esm2015/pipe/MomentDatePipe.js +0 -67
  332. package/esm2015/pipe/MomentTimePipe.js +0 -31
  333. package/esm2015/pipe/NgModelErrorPipe.js +0 -41
  334. package/esm2015/pipe/PrettifyPipe.js +0 -35
  335. package/esm2015/pipe/SanitizePipe.js +0 -46
  336. package/esm2015/pipe/StartCasePipe.js +0 -20
  337. package/esm2015/pipe/TimePipe.js +0 -33
  338. package/esm2015/pipe/TruncatePipe.js +0 -21
  339. package/esm2015/public-api.js +0 -155
  340. package/esm2015/service/BootstrapBreakpointService.js +0 -118
  341. package/esm2015/service/RouterBaseService.js +0 -223
  342. package/esm2015/theme/ThemeAssetBackgroundDirective.js +0 -37
  343. package/esm2015/theme/ThemeAssetDirective.js +0 -204
  344. package/esm2015/theme/ThemeAssetImageDirective.js +0 -35
  345. package/esm2015/theme/ThemeModule.js +0 -57
  346. package/esm2015/theme/ThemeStyleDirective.js +0 -113
  347. package/esm2015/theme/ThemeStyleHoverDirective.js +0 -105
  348. package/esm2015/theme/ThemeToggleDirective.js +0 -61
  349. package/esm2015/ts-core-angular.js +0 -28
  350. package/esm2015/user/UserBaseService.js +0 -105
  351. package/esm2015/window/IWindowContent.js +0 -115
  352. package/esm2015/window/WindowImpl.js +0 -320
  353. package/esm2015/window/WindowModule.js +0 -46
  354. package/esm2015/window/WindowService.js +0 -349
  355. package/esm2015/window/component/WindowDragAreaDirective.js +0 -96
  356. package/esm2015/window/component/WindowElement.js +0 -78
  357. package/esm2015/window/component/window-close-element/window-close-element.component.js +0 -63
  358. package/esm2015/window/component/window-minimize-element/window-minimize-element.component.js +0 -83
  359. package/esm2015/window/component/window-question/window-question.component.js +0 -50
  360. package/esm2015/window/component/window-resize-element/window-resize-element.component.js +0 -62
  361. package/fesm2015/ts-core-angular.js.map +0 -1
  362. package/ts-core-angular.metadata.json +0 -1
@@ -3,13 +3,45 @@ import { ILogger, LoggerLevel } from '@ts-core/common/logger';
3
3
  import { ICookieOptions } from '@ts-core/frontend/cookie';
4
4
  import { ILanguageServiceOptions } from '@ts-core/frontend/language';
5
5
  import { IThemeServiceOptions } from '@ts-core/frontend/theme';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "./pipe/TimePipe";
8
+ import * as i2 from "./pipe/FinancePipe";
9
+ import * as i3 from "./pipe/SanitizePipe";
10
+ import * as i4 from "./pipe/TruncatePipe";
11
+ import * as i5 from "./pipe/PrettifyPipe";
12
+ import * as i6 from "./pipe/CamelCasePipe";
13
+ import * as i7 from "./pipe/StartCasePipe";
14
+ import * as i8 from "./pipe/NgModelErrorPipe";
15
+ import * as i9 from "./pipe/MomentDatePipe";
16
+ import * as i10 from "./pipe/MomentTimePipe";
17
+ import * as i11 from "./pipe/MomentDateFromNowPipe";
18
+ import * as i12 from "./pipe/MomentDateAdaptivePipe";
19
+ import * as i13 from "./directive/FocusDirective";
20
+ import * as i14 from "./directive/ResizeDirective";
21
+ import * as i15 from "./directive/ScrollDirective";
22
+ import * as i16 from "./directive/ClickToCopyDirective";
23
+ import * as i17 from "./directive/SelectOnFocusDirective";
24
+ import * as i18 from "./directive/ClickToSelectDirective";
25
+ import * as i19 from "./directive/InfiniteScrollDirective";
26
+ import * as i20 from "./directive/HTMLContentTitleDirective";
27
+ import * as i21 from "./directive/AutoScrollBottomDirective";
28
+ import * as i22 from "./directive/AspectRatioResizeDirective";
29
+ import * as i23 from "./cookie/CookieModule";
30
+ import * as i24 from "./theme/ThemeModule";
31
+ import * as i25 from "./language/LanguageModule";
32
+ import * as i26 from "./asset/AssetModule";
33
+ import * as i27 from "./window/WindowModule";
34
+ import * as i28 from "./notification/NotificationModule";
6
35
  export declare class VICommonModule {
7
36
  static forRoot(options?: IVICommonOptions): ModuleWithProviders<VICommonModule>;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<VICommonModule, never>;
38
+ static ɵmod: i0.ɵɵNgModuleDeclaration<VICommonModule, [typeof i1.TimePipe, typeof i2.FinancePipe, typeof i3.SanitizePipe, typeof i4.TruncatePipe, typeof i5.PrettifyPipe, typeof i6.CamelCasePipe, typeof i7.StartCasePipe, typeof i8.NgModelErrorPipe, typeof i9.MomentDatePipe, typeof i10.MomentTimePipe, typeof i11.MomentDateFromNowPipe, typeof i12.MomentDateAdaptivePipe, typeof i13.FocusDirective, typeof i14.ResizeDirective, typeof i15.ScrollDirective, typeof i16.ClickToCopyDirective, typeof i17.SelectOnFocusDirective, typeof i18.ClickToSelectDirective, typeof i19.InfiniteScrollDirective, typeof i20.HTMLContentTitleDirective, typeof i21.AutoScrollBottomDirective, typeof i22.AspectRatioResizeDirective], [typeof i23.CookieModule, typeof i24.ThemeModule, typeof i25.LanguageModule, typeof i26.AssetModule, typeof i27.WindowModule, typeof i28.NotificationModule], [typeof i23.CookieModule, typeof i24.ThemeModule, typeof i25.LanguageModule, typeof i26.AssetModule, typeof i27.WindowModule, typeof i28.NotificationModule, typeof i1.TimePipe, typeof i2.FinancePipe, typeof i3.SanitizePipe, typeof i4.TruncatePipe, typeof i5.PrettifyPipe, typeof i6.CamelCasePipe, typeof i7.StartCasePipe, typeof i8.NgModelErrorPipe, typeof i9.MomentDatePipe, typeof i10.MomentTimePipe, typeof i11.MomentDateFromNowPipe, typeof i12.MomentDateAdaptivePipe, typeof i13.FocusDirective, typeof i14.ResizeDirective, typeof i15.ScrollDirective, typeof i16.ClickToCopyDirective, typeof i17.SelectOnFocusDirective, typeof i18.ClickToSelectDirective, typeof i19.InfiniteScrollDirective, typeof i20.HTMLContentTitleDirective, typeof i21.AutoScrollBottomDirective, typeof i22.AspectRatioResizeDirective]>;
39
+ static ɵinj: i0.ɵɵInjectorDeclaration<VICommonModule>;
8
40
  }
9
41
  export declare class IVICommonOptions extends ICookieOptions {
10
42
  loggerLevel?: LoggerLevel;
11
43
  themeOptions?: IThemeServiceOptions;
12
44
  languageOptions?: ILanguageServiceOptions;
13
45
  }
14
- export declare function loggerServiceFactory(options?: IVICommonOptions): ILogger;
15
- export declare const VI_ANGULAR_OPTIONS: InjectionToken<IThemeServiceOptions>;
46
+ export declare function loggerServiceFactory(options: IVICommonOptions): ILogger;
47
+ export declare const VI_ANGULAR_OPTIONS: InjectionToken<IVICommonOptions>;
@@ -1,11 +1,13 @@
1
1
  import { AfterViewInit } from '@angular/core';
2
2
  import { DestroyableContainer } from '@ts-core/common';
3
+ import { PromiseHandler } from '@ts-core/common/promise';
4
+ import * as i0 from "@angular/core";
3
5
  export declare abstract class ApplicationBaseComponent extends DestroyableContainer implements AfterViewInit {
4
- private viewReadyDelay;
5
- private timeout;
6
- private isReadyAlreadyCalled;
7
- private viewReadyPromise;
8
- constructor(viewReadyDelay?: number);
6
+ protected timeout: any;
7
+ protected isReadyAlreadyCalled: boolean;
8
+ protected viewReadyDelay: number;
9
+ protected viewReadyPromise: PromiseHandler<void, void>;
10
+ constructor();
9
11
  private makeViewReady;
10
12
  protected checkReady(): void;
11
13
  protected isReady(): boolean;
@@ -15,4 +17,6 @@ export declare abstract class ApplicationBaseComponent extends DestroyableContai
15
17
  destroy(): void;
16
18
  get isViewReady(): boolean;
17
19
  get viewReady(): Promise<void>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationBaseComponent, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationBaseComponent>;
18
22
  }
@@ -1,23 +1,19 @@
1
1
  import { Renderer2 } from '@angular/core';
2
- import { DateAdapter } from '@angular/material/core';
3
2
  import { Language } from '@ts-core/language';
4
3
  import { LanguageService } from '@ts-core/frontend/language';
5
4
  import { SettingsBaseService } from '@ts-core/frontend/service';
6
5
  import { ThemeService } from '@ts-core/frontend/theme';
7
6
  import { ApplicationBaseComponent } from './ApplicationBaseComponent';
8
- export declare abstract class ApplicationComponent<T extends SettingsBaseService> extends ApplicationBaseComponent {
7
+ export declare abstract class ApplicationComponent2<T extends SettingsBaseService> extends ApplicationBaseComponent {
9
8
  private isLanguageLoaded;
10
9
  protected initialize(): void;
11
10
  protected isReady(): boolean;
12
11
  protected languageLoadingComplete(item: Language): void;
12
+ protected abstract languageLoadingError(item: Language, error: Error): void;
13
13
  protected viewReadyHandler(): void;
14
14
  protected setLocale(item: Language): void;
15
- protected abstract languageLoadingError(item: Language, error: Error): void;
16
- protected abstract get config(): any;
17
- protected abstract get routerParams(): any;
18
15
  protected abstract get settings(): T;
19
16
  protected abstract get theme(): ThemeService;
20
17
  protected abstract get language(): LanguageService;
21
18
  protected abstract get renderer(): Renderer2;
22
- protected abstract get dateAdapter(): DateAdapter<any>;
23
19
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Destroyable } from '@ts-core/common';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class AssetBackgroundDirective extends Destroyable {
4
5
  private element;
5
6
  private _isUrl;
@@ -24,4 +25,6 @@ export declare class AssetBackgroundDirective extends Destroyable {
24
25
  get extension(): string;
25
26
  set background(value: string);
26
27
  get background(): string;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetBackgroundDirective, never>;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AssetBackgroundDirective, "[vi-asset-background]", never, { "isIcon": "isIcon"; "isImage": "isImage"; "isUrl": "isUrl"; "repeat": "repeat"; "extension": "extension"; "background": "vi-asset-background"; }, {}, never>;
27
30
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class AssetBackgroundPipe implements PipeTransform {
3
4
  transform(name: string, extension?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetBackgroundPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<AssetBackgroundPipe, "viAssetBackground">;
4
7
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class AssetFilePipe implements PipeTransform {
3
4
  transform(name: string, extension: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetFilePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<AssetFilePipe, "viAssetFile">;
4
7
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class AssetIconPipe implements PipeTransform {
3
4
  transform(name: string, extension?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetIconPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<AssetIconPipe, "viAssetIcon">;
4
7
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class AssetImagePipe implements PipeTransform {
3
4
  transform(name: string, extension?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetImagePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<AssetImagePipe, "viAssetImage">;
4
7
  }
@@ -1,2 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./AssetBackgroundDirective";
3
+ import * as i2 from "./AssetImagePipe";
4
+ import * as i3 from "./AssetIconPipe";
5
+ import * as i4 from "./AssetFilePipe";
6
+ import * as i5 from "./AssetSoundPipe";
7
+ import * as i6 from "./AssetVideoPipe";
8
+ import * as i7 from "./AssetBackgroundPipe";
9
+ import * as i8 from "@angular/common";
1
10
  export declare class AssetModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AssetModule, [typeof i1.AssetBackgroundDirective, typeof i2.AssetImagePipe, typeof i3.AssetIconPipe, typeof i4.AssetFilePipe, typeof i5.AssetSoundPipe, typeof i6.AssetVideoPipe, typeof i7.AssetBackgroundPipe], [typeof i8.CommonModule], [typeof i1.AssetBackgroundDirective, typeof i2.AssetImagePipe, typeof i3.AssetIconPipe, typeof i4.AssetFilePipe, typeof i5.AssetSoundPipe, typeof i6.AssetVideoPipe, typeof i7.AssetBackgroundPipe]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<AssetModule>;
2
14
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class AssetSoundPipe implements PipeTransform {
3
4
  transform(name: string, extension?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetSoundPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<AssetSoundPipe, "viAssetSound">;
4
7
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class AssetVideoPipe implements PipeTransform {
3
4
  transform(name: string, extension?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetVideoPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<AssetVideoPipe, "viAssetVideo">;
4
7
  }
@@ -1,4 +1,14 @@
1
1
  import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./component/bottom-sheet-close-element/bottom-sheet-close-element.component";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "@angular/forms";
6
+ import * as i4 from "@angular/material/bottom-sheet";
7
+ import * as i5 from "@angular/material/button";
8
+ import * as i6 from "../language/LanguageModule";
2
9
  export declare class BottomSheetModule {
3
10
  static forRoot(): ModuleWithProviders<BottomSheetModule>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottomSheetModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BottomSheetModule, [typeof i1.BottomSheetCloseElementComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.MatBottomSheetModule, typeof i5.MatButtonModule, typeof i6.LanguageModule], [typeof i1.BottomSheetCloseElementComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<BottomSheetModule>;
4
14
  }
@@ -10,6 +10,7 @@ import { WindowConfig, WindowConfigOptions } from '../window/WindowConfig';
10
10
  import { IWindowContent } from '../window/IWindowContent';
11
11
  import { WindowServiceEvent } from '../window/WindowService';
12
12
  import { IQuestion, IQuestionOptions } from '../question/IQuestion';
13
+ import * as i0 from "@angular/core";
13
14
  export declare class BottomSheetService extends Destroyable {
14
15
  factory: WindowFactory<IWindow>;
15
16
  questionComponent: ComponentType<IWindowContent>;
@@ -23,4 +24,6 @@ export declare class BottomSheetService extends Destroyable {
23
24
  info(translationId?: string, translation?: any, questionOptions?: IQuestionOptions, configOptions?: WindowConfigOptions): IQuestion;
24
25
  question(translationId?: string, translation?: any, questionOptions?: IQuestionOptions, configOptions?: WindowConfigOptions): IQuestion;
25
26
  get events(): Observable<ObservableData<WindowServiceEvent, IWindow>>;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottomSheetService, never>;
28
+ static ɵprov: i0.ɵɵInjectableDeclaration<BottomSheetService>;
26
29
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { WindowElement } from '../../../window/component/WindowElement';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class BottomSheetCloseElementComponent extends WindowElement {
4
5
  static ICON_CLASS: string;
5
6
  static ICON_VALUE: string;
@@ -7,4 +8,6 @@ export declare class BottomSheetCloseElementComponent extends WindowElement {
7
8
  protected createChildren(): void;
8
9
  protected destroyChildren(): void;
9
10
  private mouseClickHandler;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottomSheetCloseElementComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<BottomSheetCloseElementComponent, "vi-bottom-sheet-close-element", never, {}, {}, never, never>;
10
13
  }
@@ -1,2 +1,30 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./cdk-table/column/CdkTableColumnValuePipe";
3
+ import * as i2 from "./cdk-table/column/CdkTableColumnClassNamePipe";
4
+ import * as i3 from "./cdk-table/column/CdkTableColumnStyleNamePipe";
5
+ import * as i4 from "./cdk-table/row/CdkTableRowStyleNamePipe";
6
+ import * as i5 from "./cdk-table/row/CdkTableRowClassNamePipe";
7
+ import * as i6 from "./cdk-table/column/CdkTableCellClassNamePipe";
8
+ import * as i7 from "./language/language-selector/language-selector.component";
9
+ import * as i8 from "./tab-group/tab-group.component";
10
+ import * as i9 from "./menu-list/menu-list.component";
11
+ import * as i10 from "./select-list/select-list.component";
12
+ import * as i11 from "./cdk-table/cdk-table-paginable/cdk-table-paginable.component";
13
+ import * as i12 from "./cdk-table/cdk-table-filterable/cdk-table-filterable.component";
14
+ import * as i13 from "@angular/common";
15
+ import * as i14 from "@angular/forms";
16
+ import * as i15 from "@angular/material/tabs";
17
+ import * as i16 from "@angular/material/list";
18
+ import * as i17 from "@angular/material/menu";
19
+ import * as i18 from "@angular/material/select";
20
+ import * as i19 from "@angular/material/button";
21
+ import * as i20 from "@angular/material/sort";
22
+ import * as i21 from "@angular/material/table";
23
+ import * as i22 from "@angular/material/paginator";
24
+ import * as i23 from "@angular/material/progress-bar";
25
+ import * as i24 from "../VICommonModule";
1
26
  export declare class VIComponentModule {
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<VIComponentModule, never>;
28
+ static ɵmod: i0.ɵɵNgModuleDeclaration<VIComponentModule, [typeof i1.CdkTableColumnValuePipe, typeof i2.CdkTableColumnClassNamePipe, typeof i3.CdkTableColumnStyleNamePipe, typeof i4.CdkTableRowStyleNamePipe, typeof i5.CdkTableRowClassNamePipe, typeof i6.CdkTableCellClassNamePipe, typeof i7.LanguageSelectorComponent, typeof i8.TabGroupComponent, typeof i9.MenuListComponent, typeof i10.SelectListComponent, typeof i11.CdkTablePaginableComponent, typeof i12.CdkTableFilterableComponent], [typeof i13.CommonModule, typeof i14.FormsModule, typeof i15.MatTabsModule, typeof i16.MatListModule, typeof i17.MatMenuModule, typeof i18.MatSelectModule, typeof i19.MatButtonModule, typeof i20.MatSortModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule, typeof i23.MatProgressBarModule, typeof i24.VICommonModule], [typeof i1.CdkTableColumnValuePipe, typeof i2.CdkTableColumnClassNamePipe, typeof i3.CdkTableColumnStyleNamePipe, typeof i4.CdkTableRowStyleNamePipe, typeof i5.CdkTableRowClassNamePipe, typeof i6.CdkTableCellClassNamePipe, typeof i7.LanguageSelectorComponent, typeof i8.TabGroupComponent, typeof i9.MenuListComponent, typeof i10.SelectListComponent, typeof i11.CdkTablePaginableComponent, typeof i12.CdkTableFilterableComponent]>;
29
+ static ɵinj: i0.ɵɵInjectorDeclaration<VIComponentModule>;
2
30
  }
@@ -5,6 +5,7 @@ import { ICdkTableColumn } from './column/ICdkTableColumn';
5
5
  import { CdkTablePaginableMapCollection } from './CdkTablePaginableMapCollection';
6
6
  import { CdkTableFilterableMapCollection } from './CdkTableFilterableMapCollection';
7
7
  import { SortDirection } from '@angular/material/sort';
8
+ import * as i0 from "@angular/core";
8
9
  export declare abstract class CdkTableBaseComponent<T extends CdkTablePaginableMapCollection<U, V> | CdkTableFilterableMapCollection<U, V>, U, V> extends DestroyableContainer {
9
10
  protected _table: T;
10
11
  protected _settings: ICdkTableSettings<U>;
@@ -15,7 +16,7 @@ export declare abstract class CdkTableBaseComponent<T extends CdkTablePaginableM
15
16
  protected _selectedRows: Array<U>;
16
17
  rowClicked: EventEmitter<U>;
17
18
  cellClicked: EventEmitter<ICdkTableCellEvent<U>>;
18
- sortActive: keyof U;
19
+ sortActive: string;
19
20
  sortDirection: SortDirection;
20
21
  constructor();
21
22
  protected commitTableProperties(): void;
@@ -23,7 +24,7 @@ export declare abstract class CdkTableBaseComponent<T extends CdkTablePaginableM
23
24
  protected commitSelectedRowsProperties(): void;
24
25
  protected commitSettingsProperties(): void;
25
26
  protected commitRowProperties(): void;
26
- columnTrackBy(index: number, item: ICdkTableColumn<U>): keyof U;
27
+ columnTrackBy(index: number, item: ICdkTableColumn<U>): string;
27
28
  destroy(): void;
28
29
  cellClickHandler(item: U, column: ICdkTableColumn<U>): void;
29
30
  get table(): T;
@@ -39,10 +40,12 @@ export declare abstract class CdkTableBaseComponent<T extends CdkTablePaginableM
39
40
  get settings(): ICdkTableSettings<U>;
40
41
  set settings(value: ICdkTableSettings<U>);
41
42
  get columnNames(): Array<keyof U>;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableBaseComponent<any, any, any>, never>;
44
+ static ɵprov: i0.ɵɵInjectableDeclaration<CdkTableBaseComponent<any, any, any>>;
42
45
  }
43
46
  export interface ICdkTableCellEvent<U> {
44
47
  data: U;
45
- column: keyof U;
48
+ column: string;
46
49
  }
47
50
  export interface ICdkTableSettings<U> {
48
51
  noDataId?: string;
@@ -1,14 +1,14 @@
1
1
  import { CdkTableDataSource } from './CdkTableDataSource';
2
2
  import { FilterableDataSourceMapCollection } from '@ts-core/common/map/dataSource';
3
- import { SortData } from './CdkTablePaginableMapCollection';
3
+ import { Sort } from '@angular/material/sort';
4
4
  export declare abstract class CdkTableFilterableMapCollection<U, V> extends FilterableDataSourceMapCollection<U, V> {
5
- static getSort<U, V = any>(collection: FilterableDataSourceMapCollection<U, V>): SortData<U>;
6
- static applySortEvent<U, V = any>(item: FilterableDataSourceMapCollection<U, V>, event: SortData<U>): boolean;
5
+ static getSort<U, V = any>(collection: FilterableDataSourceMapCollection<U, V>): Sort;
6
+ static applySortEvent<U, V = any>(item: FilterableDataSourceMapCollection<U, V>, event: Sort): boolean;
7
7
  protected _table: CdkTableDataSource<U>;
8
8
  protected initialize(): void;
9
9
  protected getTable(): CdkTableDataSource<U>;
10
- sortEventHandler(event: SortData<U>): void;
11
- protected sortFunction(first: U, second: U, event: SortData<U>): number;
10
+ sortEventHandler(event: Sort): void;
11
+ protected sortFunction(first: U, second: U, event: Sort): number;
12
12
  destroy(): void;
13
13
  get table(): CdkTableDataSource<U>;
14
14
  }
@@ -1,11 +1,11 @@
1
1
  import { PaginableBookmarkDataSourceMapCollection } from '@ts-core/common/map/dataSource';
2
2
  import { CdkTableDataSource } from './CdkTableDataSource';
3
- import { SortData } from './CdkTablePaginableMapCollection';
3
+ import { Sort } from '@angular/material/sort';
4
4
  export declare abstract class CdkTablePaginableBookmarkMapCollection<U, V> extends PaginableBookmarkDataSourceMapCollection<U, V> {
5
5
  protected _table: CdkTableDataSource<U>;
6
6
  protected initialize(): void;
7
7
  protected getTable(): CdkTableDataSource<U>;
8
- sortEventHandler(event: SortData<U>): void;
8
+ sortEventHandler(event: Sort): void;
9
9
  destroy(): void;
10
10
  get table(): CdkTableDataSource<U>;
11
11
  }
@@ -1,17 +1,13 @@
1
1
  import { CdkTableDataSource } from './CdkTableDataSource';
2
2
  import { PaginableDataSourceMapCollection } from '@ts-core/common/map/dataSource';
3
- import { SortDirection } from '@angular/material/sort';
3
+ import { Sort } from '@angular/material/sort';
4
4
  import { PageEvent } from '@angular/material/paginator';
5
5
  export declare abstract class CdkTablePaginableMapCollection<U, V> extends PaginableDataSourceMapCollection<U, V> {
6
6
  protected _table: CdkTableDataSource<U>;
7
7
  protected initialize(): void;
8
8
  protected getTable(): CdkTableDataSource<U>;
9
- sortEventHandler(event: SortData<U>): void;
9
+ sortEventHandler(event: Sort): void;
10
10
  pageEventHandler(event: PageEvent): void;
11
11
  destroy(): void;
12
12
  get table(): CdkTableDataSource<U>;
13
13
  }
14
- export interface SortData<U> {
15
- active: keyof U;
16
- direction: SortDirection;
17
- }
@@ -1,6 +1,9 @@
1
1
  import { CdkTableBaseComponent } from '../CdkTableBaseComponent';
2
2
  import { CdkTableFilterableMapCollection } from '../CdkTableFilterableMapCollection';
3
3
  import { ViewContainerRef } from '@angular/core';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class CdkTableFilterableComponent<U = any, V = any> extends CdkTableBaseComponent<CdkTableFilterableMapCollection<U, V>, U, V> {
5
6
  constructor(container: ViewContainerRef);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableFilterableComponent<any, any>, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<CdkTableFilterableComponent<any, any>, "vi-cdk-table-filterable", never, {}, {}, never, never>;
6
9
  }
@@ -1,12 +1,15 @@
1
1
  import { CdkTableBaseComponent } from '../CdkTableBaseComponent';
2
2
  import { CdkTablePaginableMapCollection } from '../CdkTablePaginableMapCollection';
3
3
  import { ViewContainerRef } from '@angular/core';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class CdkTablePaginableComponent<U = any, V = any> extends CdkTableBaseComponent<CdkTablePaginableMapCollection<U, V>, U, V> {
5
6
  protected _paginator: ICdkTablePaginatorSettings;
6
7
  constructor(container: ViewContainerRef);
7
8
  protected commitPaginatorProperties(): void;
8
9
  get paginator(): ICdkTablePaginatorSettings;
9
10
  set paginator(value: ICdkTablePaginatorSettings);
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTablePaginableComponent<any, any>, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<CdkTablePaginableComponent<any, any>, "vi-cdk-table-paginable", never, { "paginator": "paginator"; }, {}, never, ["*"]>;
10
13
  }
11
14
  export interface ICdkTablePaginatorSettings {
12
15
  pageSizes?: Array<number>;
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { ICdkTableColumn } from './ICdkTableColumn';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CdkTableCellClassNamePipe implements PipeTransform {
4
5
  transform<U>(column: ICdkTableColumn<U>): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableCellClassNamePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<CdkTableCellClassNamePipe, "viCdkTableCellClassName">;
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { ICdkTableColumn } from './ICdkTableColumn';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CdkTableColumnClassNamePipe implements PipeTransform {
4
5
  transform<U>(item: U, column: ICdkTableColumn<U>): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableColumnClassNamePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<CdkTableColumnClassNamePipe, "viCdkTableColumnClassName">;
5
8
  }
@@ -1,7 +1,10 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { ICdkTableColumn } from './ICdkTableColumn';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CdkTableColumnStyleNamePipe implements PipeTransform {
4
5
  transform<U>(item: U, column: ICdkTableColumn<U>): {
5
6
  [key: string]: any;
6
7
  };
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableColumnStyleNamePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<CdkTableColumnStyleNamePipe, "viCdkTableColumnStyleName">;
7
10
  }
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { ICdkTableColumn } from './ICdkTableColumn';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CdkTableColumnValuePipe implements PipeTransform {
4
5
  transform<U>(item: U, column: ICdkTableColumn<U>): string | number | U[keyof U];
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableColumnValuePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<CdkTableColumnValuePipe, "viCdkTableColumnValue">;
5
8
  }
@@ -1,5 +1,5 @@
1
1
  export interface ICdkTableColumn<U = any> {
2
- name: keyof U;
2
+ name: string;
3
3
  format?: ICdkTableColumnValueFunction<U>;
4
4
  className?: ICdkTableColumnClassNameFunction<U> | string;
5
5
  styleName?: ICdkTableColumnStyleNameFunction<U>;
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { ICdkTableRow } from './ICdkTableRow';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CdkTableRowClassNamePipe implements PipeTransform {
4
5
  transform<U>(item: U, row: ICdkTableRow<U>, selectedRows: Array<U>): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableRowClassNamePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<CdkTableRowClassNamePipe, "viCdkTableRowClassName">;
5
8
  }
@@ -1,7 +1,10 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { ICdkTableRow } from './ICdkTableRow';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CdkTableRowStyleNamePipe implements PipeTransform {
4
5
  transform<U>(item: U, row: ICdkTableRow<U>, selectedRows: Array<U>, isInteractive?: boolean): {
5
6
  [key: string]: any;
6
7
  };
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CdkTableRowStyleNamePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<CdkTableRowStyleNamePipe, "viCdkTableRowStyleName">;
7
10
  }
@@ -1,6 +1,7 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { DestroyableContainer } from '@ts-core/common';
3
3
  import { LanguageService } from '@ts-core/frontend/language';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class LanguageSelectorComponent extends DestroyableContainer {
5
6
  protected element: ElementRef;
6
7
  language: LanguageService;
@@ -13,4 +14,6 @@ export declare class LanguageSelectorComponent extends DestroyableContainer {
13
14
  set isNeedIcon(value: boolean);
14
15
  get isNeedLabel(): boolean;
15
16
  set isNeedLabel(value: boolean);
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageSelectorComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<LanguageSelectorComponent, "vi-language-selector", never, { "isNeedIcon": "isNeedIcon"; "isNeedLabel": "isNeedLabel"; }, {}, never, never>;
16
19
  }
@@ -1,6 +1,9 @@
1
1
  import { DestroyableContainer } from '@ts-core/common';
2
2
  import { ListItems } from '../../list/ListItems';
3
3
  import { IListItem } from '../../list/IListItem';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class MenuListComponent<T = any> extends DestroyableContainer {
5
6
  list: ListItems<IListItem<T>>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuListComponent<any>, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<MenuListComponent<any>, "vi-menu-list", never, { "list": "list"; }, {}, never, never>;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { DestroyableContainer } from '@ts-core/common';
2
2
  import { ISelectListItem } from '../../list/select/ISelectListItem';
3
3
  import { SelectListItems } from '../../list/select/SelectListItems';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class SelectListComponent<T = any> extends DestroyableContainer {
5
6
  list: SelectListItems<ISelectListItem<T>>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectListComponent<any>, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectListComponent<any>, "vi-select-list", never, { "list": "list"; }, {}, never, never>;
6
9
  }
@@ -2,6 +2,7 @@ import { MatTabChangeEvent } from '@angular/material/tabs';
2
2
  import { DestroyableContainer } from '@ts-core/common';
3
3
  import { ISelectListItem } from '../../list/select/ISelectListItem';
4
4
  import { SelectListItems } from '../../list/select/SelectListItems';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class TabGroupComponent<T = any> extends DestroyableContainer {
6
7
  className: string;
7
8
  protected _list: SelectListItems<ISelectListItem<T>>;
@@ -10,4 +11,6 @@ export declare class TabGroupComponent<T = any> extends DestroyableContainer {
10
11
  destroy(): void;
11
12
  get list(): SelectListItems<ISelectListItem<T>>;
12
13
  set list(value: SelectListItems<ISelectListItem<T>>);
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent<any>, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent<any>, "vi-tab-group", never, { "className": "className"; "list": "list"; }, {}, never, never>;
13
16
  }
@@ -1,8 +1,12 @@
1
1
  import { InjectionToken, ModuleWithProviders } from '@angular/core';
2
2
  import { ICookieOptions } from '@ts-core/frontend/cookie';
3
3
  import { CookieService } from './CookieService';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class CookieModule {
5
6
  static forRoot(options?: ICookieOptions): ModuleWithProviders<CookieModule>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CookieModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CookieModule, never, never, never>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<CookieModule>;
6
10
  }
7
11
  export declare function cookieServiceFactory(options: ICookieOptions): CookieService;
8
12
  export declare const COOKIE_OPTIONS: InjectionToken<ICookieOptions>;
@@ -1,5 +1,6 @@
1
1
  import { AfterViewInit, ElementRef } from '@angular/core';
2
2
  import { DestroyableContainer } from '@ts-core/common';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class AspectRatioResizeDirective extends DestroyableContainer implements AfterViewInit {
4
5
  protected static UPDATE_DELAY: number;
5
6
  private _ratio;
@@ -18,6 +19,8 @@ export declare class AspectRatioResizeDirective extends DestroyableContainer imp
18
19
  get direction(): Direction;
19
20
  set ratio(value: number);
20
21
  get ratio(): number;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<AspectRatioResizeDirective, never>;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AspectRatioResizeDirective, "[vi-aspect-ratio]", never, { "direction": "vi-aspect-ratio"; "ratio": "ratio"; }, {}, never>;
21
24
  }
22
25
  export declare enum Direction {
23
26
  VERTICAL = "VERTICAL",
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { InfiniteScrollDirective } from './InfiniteScrollDirective';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class AutoScrollBottomDirective extends InfiniteScrollDirective {
4
5
  triggerChanged: EventEmitter<void>;
5
6
  private _trigger;
@@ -16,4 +17,6 @@ export declare class AutoScrollBottomDirective extends InfiniteScrollDirective {
16
17
  protected scrollChangedHandler(): void;
17
18
  destroy(): void;
18
19
  set trigger(value: number);
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutoScrollBottomDirective, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutoScrollBottomDirective, "[vi-auto-scroll-bottom]", never, { "trigger": "vi-auto-bottom-scroll"; }, { "triggerChanged": "triggerChanged"; }, never>;
19
22
  }
@@ -1,8 +1,11 @@
1
1
  import { Destroyable } from '@ts-core/common';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ClickToCopyDirective extends Destroyable {
3
4
  element: HTMLElement;
4
5
  private selectionClearTimer;
5
6
  private clickHandler;
6
7
  private selectionRemove;
7
8
  destroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickToCopyDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickToCopyDirective, "[vi-click-to-copy]", never, { "element": "vi-click-to-copy"; }, {}, never>;
8
11
  }
@@ -1,8 +1,11 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Destroyable } from '@ts-core/common';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ClickToSelectDirective extends Destroyable {
4
5
  protected element: HTMLElement;
5
6
  constructor(element: ElementRef);
6
7
  private clickHandler;
7
8
  destroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickToSelectDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickToSelectDirective, "[vi-click-to-select]", never, {}, {}, never>;
8
11
  }
@@ -1,9 +1,12 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Destroyable } from '@ts-core/common';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FocusDirective<T = any> extends Destroyable {
4
5
  private manager;
5
6
  constructor(element: ElementRef);
6
7
  protected focus: () => void;
7
8
  destroy(): void;
8
9
  set trigger(value: T);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FocusDirective<any>, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FocusDirective<any>, "[vi-focus]", never, { "trigger": "vi-focus"; }, {}, never>;
9
12
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Destroyable } from '@ts-core/common';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class HTMLContentTitleDirective extends Destroyable {
4
5
  protected element: ElementRef;
5
6
  protected _value: string;
@@ -8,4 +9,6 @@ export declare class HTMLContentTitleDirective extends Destroyable {
8
9
  destroy(): void;
9
10
  set value(value: string);
10
11
  get value(): string;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<HTMLContentTitleDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HTMLContentTitleDirective, "[vi-html-content-title]", never, { "value": "vi-html-content-title"; }, {}, never>;
11
14
  }