@ts-core/angular 11.0.89 → 13.0.4

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 (358) 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 +88 -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 +189 -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/{esm2015/login/LoginRequireResolver.js → esm2020/login/LoginRequireResolver.mjs} +0 -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 +132 -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 +50 -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/{esm2015/transport/TransportLazyModule.js → esm2020/transport/TransportLazyModule.mjs} +0 -0
  169. package/{esm2015/transport/TransportLazyModuleLoadedEvent.js → esm2020/transport/TransportLazyModuleLoadedEvent.mjs} +0 -0
  170. package/esm2020/ts-core-angular.mjs +5 -0
  171. package/{esm2015/user/IUser.js → esm2020/user/IUser.mjs} +0 -0
  172. package/{esm2015/user/UserBaseService.js → esm2020/user/UserBaseService.mjs} +0 -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 +128 -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 +86 -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} +3509 -3319
  194. package/fesm2015/ts-core-angular.mjs.map +1 -0
  195. package/fesm2020/ts-core-angular.mjs +9519 -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 +3 -0
  208. package/login/LoginRedirectResolver.d.ts +3 -0
  209. package/login/LoginResolver.d.ts +3 -0
  210. package/module/LazyModuleLoader.d.ts +3 -0
  211. package/notification/INotificationContent.d.ts +3 -0
  212. package/notification/NotificationModule.d.ts +14 -0
  213. package/notification/NotificationService.d.ts +3 -0
  214. package/notification/component/NotificationQuestionBaseComponent.d.ts +3 -0
  215. package/notification/component/notification/notification.component.d.ts +3 -0
  216. package/package.json +44 -30
  217. package/pipe/CamelCasePipe.d.ts +3 -0
  218. package/pipe/FinancePipe.d.ts +3 -0
  219. package/pipe/MomentDateAdaptivePipe.d.ts +3 -0
  220. package/pipe/MomentDateFromNowPipe.d.ts +3 -0
  221. package/pipe/MomentDatePipe.d.ts +3 -0
  222. package/pipe/MomentTimePipe.d.ts +3 -0
  223. package/pipe/NgModelErrorPipe.d.ts +3 -0
  224. package/pipe/PrettifyPipe.d.ts +3 -0
  225. package/pipe/SanitizePipe.d.ts +3 -0
  226. package/pipe/StartCasePipe.d.ts +3 -0
  227. package/pipe/TimePipe.d.ts +3 -0
  228. package/pipe/TruncatePipe.d.ts +3 -0
  229. package/public-api.d.ts +25 -9
  230. package/service/BootstrapBreakpointService.d.ts +3 -0
  231. package/style/mat/vi-mat.scss +48 -1
  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/ts-core-angular.d.ts +1 -24
  240. package/window/IWindowContent.d.ts +5 -1
  241. package/window/WindowModule.d.ts +20 -0
  242. package/window/WindowService.d.ts +3 -0
  243. package/window/component/WindowDragAreaDirective.d.ts +3 -0
  244. package/window/component/WindowDragable.d.ts +1 -1
  245. package/window/component/WindowElement.d.ts +3 -0
  246. package/window/component/WindowResizeable.d.ts +1 -1
  247. package/window/component/window-close-element/window-close-element.component.d.ts +3 -0
  248. package/window/component/window-minimize-element/window-minimize-element.component.d.ts +3 -0
  249. package/window/component/window-question/window-question.component.d.ts +3 -0
  250. package/window/component/window-resize-element/window-resize-element.component.d.ts +3 -0
  251. package/application/ApplicationComponent2.d.ts +0 -19
  252. package/bundles/ts-core-angular.umd.js +0 -11299
  253. package/bundles/ts-core-angular.umd.js.map +0 -1
  254. package/bundles/ts-core-angular.umd.min.js +0 -2
  255. package/bundles/ts-core-angular.umd.min.js.map +0 -1
  256. package/esm2015/VICommonModule.js +0 -98
  257. package/esm2015/application/ApplicationBaseComponent.js +0 -80
  258. package/esm2015/application/ApplicationComponent.js +0 -57
  259. package/esm2015/application/ApplicationComponent2.js +0 -53
  260. package/esm2015/asset/AssetBackgroundDirective.js +0 -144
  261. package/esm2015/asset/AssetBackgroundPipe.js +0 -18
  262. package/esm2015/asset/AssetFilePipe.js +0 -18
  263. package/esm2015/asset/AssetIconPipe.js +0 -18
  264. package/esm2015/asset/AssetImagePipe.js +0 -18
  265. package/esm2015/asset/AssetModule.js +0 -19
  266. package/esm2015/asset/AssetSoundPipe.js +0 -18
  267. package/esm2015/asset/AssetVideoPipe.js +0 -18
  268. package/esm2015/bottomSheet/BottomSheetImpl.js +0 -231
  269. package/esm2015/bottomSheet/BottomSheetModule.js +0 -40
  270. package/esm2015/bottomSheet/BottomSheetService.js +0 -103
  271. package/esm2015/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.js +0 -63
  272. package/esm2015/component/VIComponentModule.js +0 -67
  273. package/esm2015/component/cdk-table/CdkTableBaseComponent.js +0 -176
  274. package/esm2015/component/cdk-table/CdkTableFilterableMapCollection.js +0 -94
  275. package/esm2015/component/cdk-table/CdkTablePaginableBookmarkMapCollection.js +0 -49
  276. package/esm2015/component/cdk-table/CdkTablePaginableMapCollection.js +0 -57
  277. package/esm2015/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.js +0 -24
  278. package/esm2015/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.js +0 -52
  279. package/esm2015/component/cdk-table/column/CdkTableCellClassNamePipe.js +0 -17
  280. package/esm2015/component/cdk-table/column/CdkTableColumnClassNamePipe.js +0 -18
  281. package/esm2015/component/cdk-table/column/CdkTableColumnStyleNamePipe.js +0 -18
  282. package/esm2015/component/cdk-table/column/CdkTableColumnValuePipe.js +0 -18
  283. package/esm2015/component/cdk-table/column/ICdkTableColumn.js +0 -2
  284. package/esm2015/component/cdk-table/row/CdkTableRowClassNamePipe.js +0 -18
  285. package/esm2015/component/cdk-table/row/CdkTableRowStyleNamePipe.js +0 -18
  286. package/esm2015/component/language/language-selector/language-selector.component.js +0 -75
  287. package/esm2015/component/menu-list/menu-list.component.js +0 -14
  288. package/esm2015/component/select-list/select-list.component.js +0 -14
  289. package/esm2015/component/tab-group/tab-group.component.js +0 -68
  290. package/esm2015/cookie/CookieModule.js +0 -33
  291. package/esm2015/directive/AspectRatioResizeDirective.js +0 -125
  292. package/esm2015/directive/AutoScrollBottomDirective.js +0 -107
  293. package/esm2015/directive/ClickToCopyDirective.js +0 -48
  294. package/esm2015/directive/ClickToSelectDirective.js +0 -48
  295. package/esm2015/directive/FocusDirective.js +0 -53
  296. package/esm2015/directive/HTMLContentTitleDirective.js +0 -70
  297. package/esm2015/directive/InfiniteScrollDirective.js +0 -69
  298. package/esm2015/directive/ResizeDirective.js +0 -75
  299. package/esm2015/directive/ScrollDirective.js +0 -124
  300. package/esm2015/directive/SelectOnFocusDirective.js +0 -46
  301. package/esm2015/form/FormElementSync.js +0 -62
  302. package/esm2015/form/validate.js +0 -61
  303. package/esm2015/language/LanguageDirective.js +0 -90
  304. package/esm2015/language/LanguageHasDirective.js +0 -93
  305. package/esm2015/language/LanguageMatPaginatorIntl.js +0 -54
  306. package/esm2015/language/LanguageModule.js +0 -62
  307. package/esm2015/language/LanguagePipe.js +0 -57
  308. package/esm2015/language/LanguagePipeHas.js +0 -55
  309. package/esm2015/language/LanguagePipeHasPure.js +0 -39
  310. package/esm2015/language/LanguagePipePure.js +0 -38
  311. package/esm2015/language/LanguageResolver.js +0 -23
  312. package/esm2015/login/LoginBaseService.js +0 -197
  313. package/esm2015/login/LoginGuard.js +0 -31
  314. package/esm2015/login/LoginRedirectResolver.js +0 -19
  315. package/esm2015/login/LoginResolver.js +0 -30
  316. package/esm2015/module/LazyModuleLoader.js +0 -98
  317. package/esm2015/notification/INotificationContent.js +0 -126
  318. package/esm2015/notification/NotificationImpl.js +0 -140
  319. package/esm2015/notification/NotificationModule.js +0 -40
  320. package/esm2015/notification/NotificationService.js +0 -248
  321. package/esm2015/notification/component/NotificationQuestionBaseComponent.js +0 -43
  322. package/esm2015/notification/component/notification/notification.component.js +0 -64
  323. package/esm2015/pipe/CamelCasePipe.js +0 -28
  324. package/esm2015/pipe/FinancePipe.js +0 -49
  325. package/esm2015/pipe/MomentDateAdaptivePipe.js +0 -47
  326. package/esm2015/pipe/MomentDateFromNowPipe.js +0 -18
  327. package/esm2015/pipe/MomentDatePipe.js +0 -67
  328. package/esm2015/pipe/MomentTimePipe.js +0 -31
  329. package/esm2015/pipe/NgModelErrorPipe.js +0 -41
  330. package/esm2015/pipe/PrettifyPipe.js +0 -35
  331. package/esm2015/pipe/SanitizePipe.js +0 -46
  332. package/esm2015/pipe/StartCasePipe.js +0 -20
  333. package/esm2015/pipe/TimePipe.js +0 -33
  334. package/esm2015/pipe/TruncatePipe.js +0 -21
  335. package/esm2015/public-api.js +0 -161
  336. package/esm2015/service/BootstrapBreakpointService.js +0 -118
  337. package/esm2015/service/RouterBaseService.js +0 -223
  338. package/esm2015/theme/ThemeAssetBackgroundDirective.js +0 -37
  339. package/esm2015/theme/ThemeAssetDirective.js +0 -204
  340. package/esm2015/theme/ThemeAssetImageDirective.js +0 -35
  341. package/esm2015/theme/ThemeModule.js +0 -57
  342. package/esm2015/theme/ThemeStyleDirective.js +0 -113
  343. package/esm2015/theme/ThemeStyleHoverDirective.js +0 -105
  344. package/esm2015/theme/ThemeToggleDirective.js +0 -61
  345. package/esm2015/transport/TransportLazy.js +0 -98
  346. package/esm2015/ts-core-angular.js +0 -28
  347. package/esm2015/window/IWindowContent.js +0 -115
  348. package/esm2015/window/WindowImpl.js +0 -320
  349. package/esm2015/window/WindowModule.js +0 -46
  350. package/esm2015/window/WindowService.js +0 -349
  351. package/esm2015/window/component/WindowDragAreaDirective.js +0 -96
  352. package/esm2015/window/component/WindowElement.js +0 -78
  353. package/esm2015/window/component/window-close-element/window-close-element.component.js +0 -63
  354. package/esm2015/window/component/window-minimize-element/window-minimize-element.component.js +0 -83
  355. package/esm2015/window/component/window-question/window-question.component.js +0 -50
  356. package/esm2015/window/component/window-resize-element/window-resize-element.component.js +0 -62
  357. package/fesm2015/ts-core-angular.js.map +0 -1
  358. package/ts-core-angular.metadata.json +0 -1
@@ -2,6 +2,7 @@ import { AfterContentInit, OnDestroy } from '@angular/core';
2
2
  import { FormControl, FormGroupDirective, NgForm, NgModel, Validator, ValidatorFn } from '@angular/forms';
3
3
  import { ValidationResult } from './validate';
4
4
  import { ValueAccessor } from './ValueAccessor';
5
+ import * as i0 from "@angular/core";
5
6
  export declare abstract class FormElementSync<T> extends ValueAccessor<T> implements AfterContentInit, OnDestroy {
6
7
  private validators;
7
8
  protected abstract model: NgModel;
@@ -16,4 +17,6 @@ export declare abstract class FormElementSync<T> extends ValueAccessor<T> implem
16
17
  protected isErrorState: (control: FormControl | null, form: FormGroupDirective | NgForm | null) => boolean;
17
18
  ngAfterContentInit(): void;
18
19
  ngOnDestroy(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormElementSync<any>, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormElementSync<any>, never, never, {}, {}, never>;
19
22
  }
@@ -1,6 +1,7 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Destroyable } 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 LanguageDirective extends Destroyable {
5
6
  protected element: ElementRef;
6
7
  protected language: LanguageService;
@@ -14,4 +15,6 @@ export declare class LanguageDirective extends Destroyable {
14
15
  get key(): string;
15
16
  set params(value: any);
16
17
  get params(): any;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LanguageDirective, "[vi-translate]", never, { "isNeedTitle": "isNeedTitle"; "key": "vi-translate"; "params": "params"; }, {}, never>;
17
20
  }
@@ -1,6 +1,7 @@
1
1
  import { EmbeddedViewRef, TemplateRef, ViewContainerRef } from '@angular/core';
2
2
  import { Destroyable } 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 LanguageHasDirective extends Destroyable {
5
6
  private template;
6
7
  private container;
@@ -14,4 +15,6 @@ export declare class LanguageHasDirective extends Destroyable {
14
15
  destroy(): void;
15
16
  set key(value: string);
16
17
  get key(): string;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageHasDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LanguageHasDirective, "[viTranslateHas]", never, { "isOnlyIfNotEmpty": "isOnlyIfNotEmpty"; "key": "viTranslateHas"; }, {}, never>;
17
20
  }
@@ -2,6 +2,7 @@ import { MatPaginatorIntl } from '@angular/material/paginator';
2
2
  import { LanguageService } from '@ts-core/frontend/language';
3
3
  import { Subscription } from 'rxjs';
4
4
  import { OnDestroy } from '@angular/core';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class LanguageMatPaginatorIntl extends MatPaginatorIntl implements OnDestroy {
6
7
  protected language: LanguageService;
7
8
  lastPageLabel: string;
@@ -14,4 +15,6 @@ export declare class LanguageMatPaginatorIntl extends MatPaginatorIntl implement
14
15
  protected commitLanguageProperties(): void;
15
16
  protected languageRangeLabel: (page: number, pageSize: number, length: number) => string;
16
17
  ngOnDestroy(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageMatPaginatorIntl, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<LanguageMatPaginatorIntl>;
17
20
  }
@@ -1,8 +1,19 @@
1
1
  import { InjectionToken, ModuleWithProviders } from '@angular/core';
2
2
  import { ICookieService } from '@ts-core/frontend/cookie';
3
3
  import { ILanguageServiceOptions, LanguageService } from '@ts-core/frontend/language';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "./LanguagePipe";
6
+ import * as i2 from "./LanguagePipePure";
7
+ import * as i3 from "./LanguagePipeHas";
8
+ import * as i4 from "./LanguagePipeHasPure";
9
+ import * as i5 from "./LanguageHasDirective";
10
+ import * as i6 from "./LanguageDirective";
11
+ import * as i7 from "../cookie/CookieModule";
4
12
  export declare class LanguageModule {
5
13
  static forRoot(options?: ILanguageServiceOptions): ModuleWithProviders<LanguageModule>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LanguageModule, [typeof i1.LanguagePipe, typeof i2.LanguagePipePure, typeof i3.LanguagePipeHas, typeof i4.LanguagePipeHasPure, typeof i5.LanguageHasDirective, typeof i6.LanguageDirective], [typeof i7.CookieModule], [typeof i1.LanguagePipe, typeof i2.LanguagePipePure, typeof i3.LanguagePipeHas, typeof i4.LanguagePipeHasPure, typeof i5.LanguageHasDirective, typeof i6.LanguageDirective]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<LanguageModule>;
6
17
  }
7
18
  export declare function languageServiceFactory(cookie: ICookieService, options?: ILanguageServiceOptions): LanguageService;
8
19
  export declare const LANGUAGE_OPTIONS: InjectionToken<ILanguageServiceOptions>;
@@ -1,6 +1,7 @@
1
1
  import { PipeTransform } 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 LanguagePipe extends DestroyableContainer implements PipeTransform {
5
6
  private language;
6
7
  private key;
@@ -10,4 +11,6 @@ export declare class LanguagePipe extends DestroyableContainer implements PipeTr
10
11
  private valueUpdate;
11
12
  transform(key: string, params?: any): string;
12
13
  destroy(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePipe, never>;
15
+ static ɵpipe: i0.ɵɵPipeDeclaration<LanguagePipe, "viTranslate">;
13
16
  }
@@ -1,6 +1,7 @@
1
1
  import { PipeTransform } 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 LanguagePipeHas extends DestroyableContainer implements PipeTransform {
5
6
  private language;
6
7
  private key;
@@ -9,4 +10,6 @@ export declare class LanguagePipeHas extends DestroyableContainer implements Pip
9
10
  private valueUpdate;
10
11
  transform(key: string): boolean;
11
12
  destroy(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePipeHas, never>;
14
+ static ɵpipe: i0.ɵɵPipeDeclaration<LanguagePipeHas, "viTranslateHas">;
12
15
  }
@@ -1,9 +1,12 @@
1
1
  import { PipeTransform } 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 LanguagePipeHasPure extends DestroyableContainer implements PipeTransform {
5
6
  private language;
6
7
  constructor(language: LanguageService);
7
8
  transform(key: string): boolean;
8
9
  destroy(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePipeHasPure, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<LanguagePipeHasPure, "viTranslateHasPure">;
9
12
  }
@@ -1,9 +1,12 @@
1
1
  import { PipeTransform } 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 LanguagePipePure extends DestroyableContainer implements PipeTransform {
5
6
  private language;
6
7
  constructor(language: LanguageService);
7
8
  transform(key: string, params?: any): string;
8
9
  destroy(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePipePure, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<LanguagePipePure, "viTranslatePure">;
9
12
  }
@@ -1,5 +1,8 @@
1
1
  import { LanguageService } from '@ts-core/frontend/language';
2
2
  import { LanguageRequireResolver } from './LanguageRequireResolver';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class LanguageResolver extends LanguageRequireResolver {
4
5
  constructor(language: LanguageService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageResolver, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<LanguageResolver>;
5
8
  }
@@ -1,7 +1,10 @@
1
1
  import { CanActivate } from '@angular/router';
2
2
  import { LoginBaseService } from './LoginBaseService';
3
3
  import { LoginRequireResolver } from './LoginRequireResolver';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class LoginGuard extends LoginRequireResolver implements CanActivate {
5
6
  constructor(login: LoginBaseService);
6
7
  canActivate(): boolean;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginGuard, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoginGuard>;
7
10
  }
@@ -1,4 +1,7 @@
1
1
  import { ActivatedRouteSnapshot, CanActivate, RouterStateSnapshot } from '@angular/router';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class LoginRedirectResolver implements CanActivate {
3
4
  canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginRedirectResolver, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoginRedirectResolver>;
4
7
  }
@@ -1,7 +1,10 @@
1
1
  import { LoginBaseService } from './LoginBaseService';
2
2
  import { LoginRequireResolver } from './LoginRequireResolver';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class LoginResolver extends LoginRequireResolver {
4
5
  static logoutUrl: string;
5
6
  static redirectUrl: string;
6
7
  constructor(login: LoginBaseService);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginResolver, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoginResolver>;
7
10
  }
@@ -1,6 +1,7 @@
1
1
  import { Compiler, Injector, NgModuleFactory, NgModuleRef, Type } from '@angular/core';
2
2
  import { Loadable } from '@ts-core/common';
3
3
  import { MapCollection } from '@ts-core/common/map';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class LazyModuleLoader<T extends ILazyModuleData = ILazyModuleData> extends Loadable {
5
6
  protected compiler: Compiler;
6
7
  protected injector: Injector;
@@ -12,6 +13,8 @@ export declare class LazyModuleLoader<T extends ILazyModuleData = ILazyModuleDat
12
13
  loadIfNeed(id: string): Promise<T>;
13
14
  destroy(): void;
14
15
  get modules(): MapCollection<T>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<LazyModuleLoader<any>, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<LazyModuleLoader<any>>;
15
18
  }
16
19
  export interface ILazyModuleData<T = any> {
17
20
  id: string;
@@ -3,6 +3,7 @@ import { DestroyableContainer } from '@ts-core/common';
3
3
  import { Observable } from 'rxjs';
4
4
  import { INotification } from './INotification';
5
5
  import { NotificationConfig } from './NotificationConfig';
6
+ import * as i0 from "@angular/core";
6
7
  export declare abstract class INotificationContent<T = any> extends DestroyableContainer implements AfterViewInit {
7
8
  container: ViewContainerRef;
8
9
  protected timer: any;
@@ -25,4 +26,6 @@ export declare abstract class INotificationContent<T = any> extends DestroyableC
25
26
  set notification(value: INotification<T>);
26
27
  set config(value: NotificationConfig<T>);
27
28
  get config(): NotificationConfig<T>;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<INotificationContent<any>, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<INotificationContent<any>, "ng-component", never, { "config": "config"; }, {}, never, never>;
28
31
  }
@@ -1,4 +1,18 @@
1
1
  import { ModuleWithProviders } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ import { LanguageService } from '@ts-core/frontend/language';
4
+ import { NotificationService } from './NotificationService';
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "./component/notification/notification.component";
7
+ import * as i2 from "@angular/common";
8
+ import * as i3 from "@angular/forms";
9
+ import * as i4 from "@angular/material/dialog";
10
+ import * as i5 from "@angular/material/button";
11
+ import * as i6 from "../language/LanguageModule";
2
12
  export declare class NotificationModule {
3
13
  static forRoot(): ModuleWithProviders<NotificationModule>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationModule, [typeof i1.NotificationComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.MatDialogModule, typeof i5.MatButtonModule, typeof i6.LanguageModule], [typeof i1.NotificationComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<NotificationModule>;
4
17
  }
18
+ export declare function notificationServiceFactory(dialog: MatDialog, language: LanguageService): NotificationService;
@@ -8,6 +8,7 @@ import { INotification } from './INotification';
8
8
  import { INotificationContent } from './INotificationContent';
9
9
  import { NotificationConfig, NotificationConfigOptions } from './NotificationConfig';
10
10
  import { NotificationFactory } from './NotificationFactory';
11
+ import * as i0 from "@angular/core";
11
12
  export declare class NotificationService {
12
13
  factory: NotificationFactory<INotification>;
13
14
  questionComponent: ComponentType<INotificationContent<any>>;
@@ -43,6 +44,8 @@ export declare class NotificationService {
43
44
  get configs(): Array<NotificationConfig>;
44
45
  get closedConfigs(): Array<NotificationConfig>;
45
46
  get notifications(): Map<NotificationConfig, INotificationContent<any>>;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
48
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
46
49
  }
47
50
  export declare type NotificationId = string | NotificationConfig | NotificationConfigOptions;
48
51
  export declare enum NotificationServiceEvent {
@@ -1,7 +1,10 @@
1
1
  import { INotificationContent } from '../../notification/INotificationContent';
2
2
  import { QuestionManager } from '../../question/QuestionManager';
3
+ import * as i0 from "@angular/core";
3
4
  export declare abstract class NotificationQuestionBaseComponent extends INotificationContent<QuestionManager> {
4
5
  protected commitConfigProperties(): void;
5
6
  clickHandler(): void;
6
7
  protected get isInfo(): boolean;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationQuestionBaseComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationQuestionBaseComponent, "ng-component", never, {}, {}, never, never>;
7
10
  }
@@ -2,10 +2,13 @@ import { ViewContainerRef } from '@angular/core';
2
2
  import { LanguageService } from '@ts-core/frontend/language';
3
3
  import { NotificationService } from '../../NotificationService';
4
4
  import { NotificationQuestionBaseComponent } from '../NotificationQuestionBaseComponent';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class NotificationComponent extends NotificationQuestionBaseComponent {
6
7
  private language;
7
8
  private notifications;
8
9
  constructor(container: ViewContainerRef, language: LanguageService, notifications: NotificationService);
9
10
  protected commitConfigProperties(): void;
10
11
  remove(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "vi-notification", never, {}, {}, never, never>;
11
14
  }
package/package.json CHANGED
@@ -1,38 +1,39 @@
1
1
  {
2
2
  "name": "@ts-core/angular",
3
- "version": "11.0.89",
3
+ "version": "13.0.4",
4
4
  "description": "Modules for frontend based on angular",
5
- "main": "bundles/ts-core-angular.umd.js",
5
+ "main": "public-api.js",
6
6
  "author": {
7
7
  "name": "Renat Gubaev",
8
8
  "email": "renat.gubaev@gmail.com"
9
9
  },
10
10
  "license": "ISC",
11
11
  "peerDependencies": {
12
- "@angular/animations": "^11.2.14",
13
- "@angular/cdk": "^11.2.13",
14
- "@angular/cli": "^11.2.15",
15
- "@angular/common": "^11.2.14",
16
- "@angular/compiler": "^11.2.14",
17
- "@angular/core": "^11.2.14",
18
- "@angular/forms": "^11.2.14",
19
- "@angular/material": "^11.2.13",
20
- "@angular/material-moment-adapter": "^11.2.13",
21
- "@angular/platform-browser": "^11.2.14",
22
- "@angular/platform-browser-dynamic": "^11.2.14",
23
- "@angular/router": "^11.2.14",
24
- "@ts-core/common": "^1.0.185",
25
- "@ts-core/frontend": "^1.0.44",
26
- "@types/numeral": "0.0.25",
12
+ "@angular/animations": "^13.1.3",
13
+ "@angular/cdk": "^13.1.3",
14
+ "@angular/cli": "^13.1.4",
15
+ "@angular/common": "^13.1.3",
16
+ "@angular/compiler": "^13.1.3",
17
+ "@angular/core": "^13.1.3",
18
+ "@angular/forms": "^13.1.3",
19
+ "@angular/material": "^13.1.3",
20
+ "@angular/material-moment-adapter": "^13.1.3",
21
+ "@angular/platform-browser": "^13.1.3",
22
+ "@angular/platform-browser-dynamic": "^13.1.3",
23
+ "@angular/router": "^13.1.3",
24
+ "@nguniversal/express-engine": "^13.0.2",
25
+ "@ts-core/common": "^2.0.2",
26
+ "@ts-core/frontend": "^2.0.1",
27
+ "@types/numeral": "^2.0.2",
27
28
  "bootstrap": "^4.6.1",
28
- "css-element-queries": "1.2.0",
29
- "csshake": "1.5.3",
30
- "interactjs": "1.4.10",
31
- "moment": "2.24.0",
32
- "ngx-cookie": "4.0.2",
33
- "numeral": "2.0.6",
34
- "rxjs": "^6.6.7",
35
- "zone.js": "^0.11.3"
29
+ "css-element-queries": "^1.2.3",
30
+ "csshake": "^1.5.3",
31
+ "interactjs": "^1.10.11",
32
+ "moment": "^2.29.1",
33
+ "ngx-cookie": "^4.0.1",
34
+ "numeral": "^2.0.6",
35
+ "rxjs": "^7.5.2",
36
+ "zone.js": "^0.11.4"
36
37
  },
37
38
  "repository": {
38
39
  "type": "git",
@@ -45,12 +46,25 @@
45
46
  "url": "https://github.com/ManhattanDoctor/ts-core-frontend-angular/issues"
46
47
  },
47
48
  "homepage": "https://github.com/ManhattanDoctor/ts-core-frontend-angular#readme",
48
- "module": "fesm2015/ts-core-angular.js",
49
- "es2015": "fesm2015/ts-core-angular.js",
50
- "esm2015": "esm2015/ts-core-angular.js",
51
- "fesm2015": "fesm2015/ts-core-angular.js",
49
+ "module": "fesm2015/ts-core-angular.mjs",
50
+ "es2020": "fesm2020/ts-core-angular.mjs",
51
+ "esm2020": "esm2020/ts-core-angular.mjs",
52
+ "fesm2020": "fesm2020/ts-core-angular.mjs",
53
+ "fesm2015": "fesm2015/ts-core-angular.mjs",
52
54
  "typings": "ts-core-angular.d.ts",
53
- "metadata": "ts-core-angular.metadata.json",
55
+ "exports": {
56
+ "./package.json": {
57
+ "default": "./package.json"
58
+ },
59
+ ".": {
60
+ "types": "./ts-core-angular.d.ts",
61
+ "esm2020": "./esm2020/ts-core-angular.mjs",
62
+ "es2020": "./fesm2020/ts-core-angular.mjs",
63
+ "es2015": "./fesm2015/ts-core-angular.mjs",
64
+ "node": "./fesm2015/ts-core-angular.mjs",
65
+ "default": "./fesm2020/ts-core-angular.mjs"
66
+ }
67
+ },
54
68
  "sideEffects": false,
55
69
  "dependencies": {
56
70
  "tslib": "^2.3.1"
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class CamelCasePipe implements PipeTransform {
3
4
  transform(value: any): string;
4
5
  constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CamelCasePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<CamelCasePipe, "viCamelCase">;
5
8
  }
@@ -1,6 +1,9 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class FinancePipe implements PipeTransform {
3
4
  static DEFAULT_FORMAT: string;
4
5
  static format(value: number | string, format: string): string;
5
6
  transform(value: number | string, format?: string, isNeedPlus?: boolean): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FinancePipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<FinancePipe, "viFinance">;
6
9
  }
@@ -1,9 +1,12 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { Moment } from 'moment';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class MomentDateAdaptivePipe implements PipeTransform {
4
5
  static HOUR_FORMAT: string;
5
6
  static DAY_FORMAT: string;
6
7
  static MONTH_FORMAT: string;
7
8
  static YEAR_FORMAT: string;
8
9
  transform(value: Date | Moment): string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MomentDateAdaptivePipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<MomentDateAdaptivePipe, "viMomentAdaptiveDate">;
9
12
  }
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { Moment } from 'moment';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class MomentDateFromNowPipe implements PipeTransform {
4
5
  transform(value: Date | Moment, format?: string): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MomentDateFromNowPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<MomentDateFromNowPipe, "viMomentDateFromNow">;
5
8
  }
@@ -1,10 +1,13 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { Moment } from 'moment';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class MomentDatePipe implements PipeTransform {
4
5
  static DEFAULT_FORMAT: string;
5
6
  static parseMoment(value: MomentAvailableType, format?: string): Moment;
6
7
  static fromNow(value: MomentAvailableType, format?: string): string;
7
8
  static toConditionValue(value: string | Date): string;
8
9
  transform(value: MomentAvailableType, format?: string): string;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MomentDatePipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<MomentDatePipe, "viMomentDate">;
9
12
  }
10
13
  export declare type MomentAvailableType = Date | Moment | string | number;
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class MomentTimePipe implements PipeTransform {
3
4
  static DEFAULT_FORMAT: string;
4
5
  transform(timeMilliseconds: number, format?: string): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<MomentTimePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<MomentTimePipe, "viMomentTime">;
5
8
  }
@@ -1,9 +1,12 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { ValidationErrors } from '@angular/forms';
3
3
  import { LanguageService } from '@ts-core/frontend/language';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class NgModelErrorPipe implements PipeTransform {
5
6
  protected language: LanguageService;
6
7
  transform(value: ValidationErrors): string;
7
8
  translateError(key: string, value: any): string;
8
9
  constructor(language: LanguageService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgModelErrorPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<NgModelErrorPipe, "viNgModelError">;
9
12
  }
@@ -1,6 +1,9 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class PrettifyPipe implements PipeTransform {
3
4
  static EMPTY_SYMBOL: string;
4
5
  transform(value: any): string;
5
6
  constructor();
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<PrettifyPipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<PrettifyPipe, "viPrettify">;
6
9
  }
@@ -1,6 +1,9 @@
1
1
  import { DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl } from '@angular/platform-browser';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class SanitizePipe {
3
4
  private sanitizer;
4
5
  constructor(sanitizer: DomSanitizer);
5
6
  transform(value: string, type?: string): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SanitizePipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<SanitizePipe, "viSanitize">;
6
9
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class StartCasePipe implements PipeTransform {
3
4
  transform(value: any): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<StartCasePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<StartCasePipe, "viStartCase">;
4
7
  }
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class TimePipe implements PipeTransform {
3
4
  static DEFAULT_FORMAT: string;
4
5
  transform(milliseconds: number | string, format?: string): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<TimePipe, "viTime">;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class TruncatePipe implements PipeTransform {
3
4
  transform(value: any, maxLength?: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "viTruncate">;
4
7
  }
package/public-api.d.ts CHANGED
@@ -1,29 +1,36 @@
1
1
  export * from './application/ApplicationBaseComponent';
2
2
  export * from './application/ApplicationComponent';
3
- export * from './application/ApplicationComponent2';
4
3
  export * from './application/MessageBaseComponent';
5
4
  export * from './application/ShellBaseComponent';
6
5
  export * from './ApplicationInjector';
7
6
  export * from './asset/AssetBackgroundDirective';
8
7
  export * from './asset/AssetBackgroundPipe';
9
8
  export * from './asset/AssetIconPipe';
9
+ export * from './asset/AssetFilePipe';
10
+ export * from './asset/AssetVideoPipe';
11
+ export * from './asset/AssetSoundPipe';
10
12
  export * from './asset/AssetImagePipe';
11
13
  export * from './asset/AssetModule';
12
- export * from './component/language/language-selector/language-selector.component';
13
- export * from './component/cdk-table/CdkTableDataSource';
14
- export * from './component/cdk-table/CdkTablePaginableMapCollection';
15
- export * from './component/cdk-table/CdkTablePaginableBookmarkMapCollection';
16
14
  export * from './component/VIComponentModule';
15
+ export * from './component/tab-group/tab-group.component';
17
16
  export * from './component/menu-list/menu-list.component';
18
17
  export * from './component/select-list/select-list.component';
19
- export * from './component/tab-group/tab-group.component';
18
+ export * from './component/language/language-selector/language-selector.component';
20
19
  export * from './component/cdk-table/CdkTableDataSource';
21
20
  export * from './component/cdk-table/CdkTablePaginableMapCollection';
22
21
  export * from './component/cdk-table/CdkTableFilterableMapCollection';
23
22
  export * from './component/cdk-table/CdkTablePaginableBookmarkMapCollection';
24
23
  export * from './component/cdk-table/row/ICdkTableRow';
24
+ export * from './component/cdk-table/row/CdkTableRowClassNamePipe';
25
+ export * from './component/cdk-table/row/CdkTableRowStyleNamePipe';
25
26
  export * from './component/cdk-table/column/ICdkTableColumn';
27
+ export * from './component/cdk-table/column/CdkTableColumnValuePipe';
28
+ export * from './component/cdk-table/column/CdkTableCellClassNamePipe';
29
+ export * from './component/cdk-table/column/CdkTableColumnClassNamePipe';
30
+ export * from './component/cdk-table/column/CdkTableColumnStyleNamePipe';
26
31
  export * from './component/cdk-table/CdkTableBaseComponent';
32
+ export * from './component/cdk-table/cdk-table-paginable/cdk-table-paginable.component';
33
+ export * from './component/cdk-table/cdk-table-filterable/cdk-table-filterable.component';
27
34
  export * from './cookie/CookieModule';
28
35
  export * from './cookie/CookieOptions';
29
36
  export * from './cookie/CookieService';
@@ -74,6 +81,8 @@ export * from './notification/NotificationFactory';
74
81
  export * from './notification/NotificationModule';
75
82
  export * from './notification/NotificationProperties';
76
83
  export * from './notification/NotificationService';
84
+ export * from './notification/component/NotificationBaseComponent';
85
+ export * from './notification/component/notification/notification.component';
77
86
  export * from './bottomSheet/BottomSheetService';
78
87
  export * from './pipe/CamelCasePipe';
79
88
  export * from './pipe/FinancePipe';
@@ -110,11 +119,18 @@ export * from './transport/TransportLazyModuleLoadedEvent';
110
119
  export * from './util/ViewUtil';
111
120
  export * from './VICommonModule';
112
121
  export * from './window/IWindow';
113
- export * from './window/IWindowContent';
122
+ export * from './window/WindowImpl';
114
123
  export * from './window/WindowBase';
115
124
  export * from './window/WindowConfig';
116
125
  export * from './window/WindowFactory';
117
- export * from './window/WindowImpl';
118
126
  export * from './window/WindowModule';
119
- export * from './window/WindowProperties';
127
+ export * from './window/IWindowContent';
120
128
  export * from './window/WindowService';
129
+ export * from './window/WindowProperties';
130
+ export * from './window/component/WindowBaseComponent';
131
+ export * from './window/component/WindowDragAreaDirective';
132
+ export * from './window/component/WindowQuestionBaseComponent';
133
+ export * from './window/component/window-question/window-question.component';
134
+ export * from './window/component/window-close-element/window-close-element.component';
135
+ export * from './window/component/window-resize-element/window-resize-element.component';
136
+ export * from './window/component/window-minimize-element/window-minimize-element.component';
@@ -2,6 +2,7 @@ import { BreakpointObserver } from '@angular/cdk/layout';
2
2
  import { DestroyableContainer } from '@ts-core/common';
3
3
  import { ObservableData } from '@ts-core/common/observer';
4
4
  import { Observable, Subject } from 'rxjs';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class BootstrapBreakpointService extends DestroyableContainer {
6
7
  protected service: BreakpointObserver;
7
8
  static DEFAULT_SM: number;
@@ -24,6 +25,8 @@ export declare class BootstrapBreakpointService extends DestroyableContainer {
24
25
  get breakpoint(): BootstrapBreakpoint;
25
26
  get events(): Observable<ObservableData<BootstrapBreakpointServiceEvent, BootstrapBreakpoint>>;
26
27
  get changed(): Observable<BootstrapBreakpoint>;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<BootstrapBreakpointService, never>;
29
+ static ɵprov: i0.ɵɵInjectableDeclaration<BootstrapBreakpointService>;
27
30
  }
28
31
  interface IBreakpointItem {
29
32
  name: BootstrapBreakpoint;