@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
@@ -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;
@@ -1,8 +1,11 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { ThemeAssetService, ThemeService } from '@ts-core/frontend/theme';
3
3
  import { ThemeAssetDirective } from './ThemeAssetDirective';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
5
6
  constructor(element: ElementRef, theme: ThemeService, themeAsset: ThemeAssetService);
6
7
  protected commitSourceProperties(): void;
7
8
  protected removeSourceProperties(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeAssetBackgroundDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ThemeAssetBackgroundDirective, "[vi-theme-background]", never, {}, {}, never>;
8
11
  }
@@ -1,6 +1,7 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Destroyable } from '@ts-core/common';
3
3
  import { Theme, ThemeAssetService, ThemeService } from '@ts-core/frontend/theme';
4
+ import * as i0 from "@angular/core";
4
5
  export declare abstract class ThemeAssetDirective<T extends HTMLElement = HTMLElement> extends Destroyable {
5
6
  protected theme: ThemeService;
6
7
  protected themeAsset: ThemeAssetService;
@@ -41,4 +42,6 @@ export declare abstract class ThemeAssetDirective<T extends HTMLElement = HTMLEl
41
42
  set name(value: string);
42
43
  get extension(): string;
43
44
  set extension(value: string);
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeAssetDirective<any>, never>;
46
+ static ɵprov: i0.ɵɵInjectableDeclaration<ThemeAssetDirective<any>>;
44
47
  }
@@ -1,8 +1,11 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { ThemeAssetService, ThemeService } from '@ts-core/frontend/theme';
3
3
  import { ThemeAssetDirective } from './ThemeAssetDirective';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ThemeAssetImageDirective extends ThemeAssetDirective<HTMLImageElement> {
5
6
  constructor(element: ElementRef, theme: ThemeService, themeAsset: ThemeAssetService);
6
7
  protected commitSourceProperties(): void;
7
8
  protected removeSourceProperties(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeAssetImageDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ThemeAssetImageDirective, "[vi-theme-image]", never, {}, {}, never>;
8
11
  }
@@ -1,8 +1,18 @@
1
1
  import { InjectionToken, ModuleWithProviders } from '@angular/core';
2
2
  import { ICookieService } from '@ts-core/frontend/cookie';
3
3
  import { IThemeServiceOptions, ThemeService, ThemeAssetService } from '@ts-core/frontend/theme';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "./ThemeToggleDirective";
6
+ import * as i2 from "./ThemeAssetImageDirective";
7
+ import * as i3 from "./ThemeAssetBackgroundDirective";
8
+ import * as i4 from "./ThemeStyleDirective";
9
+ import * as i5 from "./ThemeStyleHoverDirective";
10
+ import * as i6 from "../cookie/CookieModule";
4
11
  export declare class ThemeModule {
5
12
  static forRoot(options?: IThemeServiceOptions): ModuleWithProviders<ThemeModule>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeModule, [typeof i1.ThemeToggleDirective, typeof i2.ThemeAssetImageDirective, typeof i3.ThemeAssetBackgroundDirective, typeof i4.ThemeStyleDirective, typeof i5.ThemeStyleHoverDirective], [typeof i6.CookieModule], [typeof i1.ThemeToggleDirective, typeof i2.ThemeAssetImageDirective, typeof i3.ThemeAssetBackgroundDirective, typeof i4.ThemeStyleDirective, typeof i5.ThemeStyleHoverDirective]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<ThemeModule>;
6
16
  }
7
17
  export declare function themeServiceFactory(cookie: ICookieService, options?: IThemeServiceOptions): ThemeService;
8
18
  export declare function themeAssetServiceFactory(theme: ThemeService): ThemeAssetService;
@@ -1,6 +1,7 @@
1
1
  import { ElementRef, RendererStyleFlags2 } from '@angular/core';
2
2
  import { Destroyable } from '@ts-core/common';
3
3
  import { ThemeService } from '@ts-core/frontend/theme';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ThemeStyleDirective extends Destroyable {
5
6
  protected theme: ThemeService;
6
7
  protected _key: string;
@@ -21,4 +22,6 @@ export declare class ThemeStyleDirective extends Destroyable {
21
22
  set styleName(value: string);
22
23
  get key(): string;
23
24
  set key(value: string);
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeStyleDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ThemeStyleDirective, "[vi-theme-style]", never, { "flags": "flags"; "styleName": "styleName"; "key": "vi-theme-style"; }, {}, never>;
24
27
  }
@@ -1,6 +1,7 @@
1
1
  import { ElementRef, RendererStyleFlags2 } from '@angular/core';
2
2
  import { ThemeService } from '@ts-core/frontend/theme';
3
3
  import { ThemeStyleDirective } from './ThemeStyleDirective';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ThemeStyleHoverDirective extends ThemeStyleDirective {
5
6
  protected _isHover: boolean;
6
7
  constructor(element: ElementRef, theme: ThemeService);
@@ -17,4 +18,6 @@ export declare class ThemeStyleHoverDirective extends ThemeStyleDirective {
17
18
  set styleName(value: string);
18
19
  get flags(): RendererStyleFlags2;
19
20
  set flags(value: RendererStyleFlags2);
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeStyleHoverDirective, never>;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ThemeStyleHoverDirective, "[vi-theme-style-hover]", never, { "key": "vi-theme-style-hover"; "styleName": "styleName"; "flags": "flags"; }, {}, never>;
20
23
  }
@@ -1,8 +1,11 @@
1
1
  import { Destroyable } from '@ts-core/common';
2
2
  import { ThemeService } from '@ts-core/frontend/theme';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ThemeToggleDirective extends Destroyable {
4
5
  private theme;
5
6
  constructor(theme: ThemeService);
6
7
  private clickHandler;
7
8
  destroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ThemeToggleDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ThemeToggleDirective, "[vi-theme-toggle]", never, {}, {}, never>;
8
11
  }
@@ -0,0 +1,15 @@
1
+ import { ITransportCommand, ITransportCommandOptions, ITransportEvent, ITransportSettings } from '@ts-core/common/transport';
2
+ import { TransportLocal } from '@ts-core/common/transport/local';
3
+ import { LazyModuleLoader } from '../module/LazyModuleLoader';
4
+ import { ILogger } from '@ts-core/common/logger';
5
+ import { ITransportLazyModuleData } from './TransportLazyModule';
6
+ export declare class TransportLazy extends TransportLocal {
7
+ protected loader: LazyModuleLoader<ITransportLazyModuleData>;
8
+ constructor(logger: ILogger, loader: LazyModuleLoader<ITransportLazyModuleData>, settings?: ITransportSettings);
9
+ protected moduleLoadedHandler(module: ITransportLazyModuleData): void;
10
+ protected dispatchCommand<U>(command: ITransportCommand<U>, options: ITransportCommandOptions, isNeedReply: boolean): Promise<void>;
11
+ protected getModuleByCommand(name: string): ITransportLazyModuleData;
12
+ protected getModuleByEvent(name: string): ITransportLazyModuleData;
13
+ dispatch<T>(event: ITransportEvent<T>): void;
14
+ destroy(): void;
15
+ }
@@ -0,0 +1,16 @@
1
+ import { NgModuleRef } from '@angular/core';
2
+ import { Transport } from '@ts-core/common/transport';
3
+ import { ILazyModuleData } from '../module/LazyModuleLoader';
4
+ export declare abstract class TransportLazyModule<T> implements ITransportLazyModuleData<T> {
5
+ reference: NgModuleRef<T>;
6
+ protected transport: Transport;
7
+ constructor(reference: NgModuleRef<T>, transport: Transport);
8
+ protected moduleLoadedDispatch(): void;
9
+ abstract get id(): string;
10
+ get events(): Array<string>;
11
+ get commands(): Array<string>;
12
+ }
13
+ export interface ITransportLazyModuleData<T = any> extends ILazyModuleData<T> {
14
+ events?: Array<string>;
15
+ commands?: Array<string>;
16
+ }
@@ -0,0 +1,6 @@
1
+ import { TransportEvent } from '@ts-core/common/transport';
2
+ import { ITransportLazyModuleData } from './TransportLazyModule';
3
+ export declare class TransportLazyModuleLoadedEvent<T extends ITransportLazyModuleData = ITransportLazyModuleData> extends TransportEvent<T> {
4
+ static readonly NAME = "TransportLazyModuleLoadedEvent";
5
+ constructor(request: T);
6
+ }
@@ -1,28 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@ts-core/angular" />
4
5
  export * from './public-api';
5
- export { AssetFilePipe as ɵa } from './asset/AssetFilePipe';
6
- export { AssetSoundPipe as ɵb } from './asset/AssetSoundPipe';
7
- export { AssetVideoPipe as ɵc } from './asset/AssetVideoPipe';
8
- export { BottomSheetModule as ɵm } from './bottomSheet/BottomSheetModule';
9
- export { BottomSheetCloseElementComponent as ɵn } from './bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component';
10
- export { CdkTableFilterableComponent as ɵv } from './component/cdk-table/cdk-table-filterable/cdk-table-filterable.component';
11
- export { CdkTablePaginableComponent as ɵu } from './component/cdk-table/cdk-table-paginable/cdk-table-paginable.component';
12
- export { CdkTableCellClassNamePipe as ɵt } from './component/cdk-table/column/CdkTableCellClassNamePipe';
13
- export { CdkTableColumnClassNamePipe as ɵp } from './component/cdk-table/column/CdkTableColumnClassNamePipe';
14
- export { CdkTableColumnStyleNamePipe as ɵq } from './component/cdk-table/column/CdkTableColumnStyleNamePipe';
15
- export { CdkTableColumnValuePipe as ɵo } from './component/cdk-table/column/CdkTableColumnValuePipe';
16
- export { CdkTableRowClassNamePipe as ɵs } from './component/cdk-table/row/CdkTableRowClassNamePipe';
17
- export { CdkTableRowStyleNamePipe as ɵr } from './component/cdk-table/row/CdkTableRowStyleNamePipe';
18
- export { ValueAccessor as ɵw } from './form/ValueAccessor';
19
- export { AsyncValidatorArray as ɵy, ValidatorArray as ɵx } from './form/validate';
20
- export { NotificationQuestionBaseComponent as ɵl } from './notification/component/NotificationQuestionBaseComponent';
21
- export { NotificationComponent as ɵk } from './notification/component/notification/notification.component';
22
- export { WindowDragAreaDirective as ɵd } from './window/component/WindowDragAreaDirective';
23
- export { WindowElement as ɵh } from './window/component/WindowElement';
24
- export { WindowQuestionBaseComponent as ɵf } from './window/component/WindowQuestionBaseComponent';
25
- export { WindowCloseElementComponent as ɵg } from './window/component/window-close-element/window-close-element.component';
26
- export { WindowMinimizeElementComponent as ɵj } from './window/component/window-minimize-element/window-minimize-element.component';
27
- export { WindowQuestionComponent as ɵe } from './window/component/window-question/window-question.component';
28
- export { WindowResizeElementComponent as ɵi } from './window/component/window-resize-element/window-resize-element.component';
@@ -13,7 +13,7 @@ export declare abstract class UserBaseService<U extends IUser = any, V = void> {
13
13
  protected loginedHandler(): void;
14
14
  protected logoutedHandler(): void;
15
15
  protected abstract createUser(data: any): U;
16
- isUser(value: any): boolean;
16
+ isUser(value: Partial<U> | UserUid): boolean;
17
17
  userUpdate(data: any): void;
18
18
  get events(): Observable<ObservableData<V | UserBaseServiceEvent, U>>;
19
19
  get logined(): Observable<U>;
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
3
3
  import { DestroyableContainer } from '@ts-core/common';
4
4
  import { IWindow } from './IWindow';
5
5
  import { WindowConfig } from './WindowConfig';
6
+ import * as i0 from "@angular/core";
6
7
  export declare abstract class IWindowContent<T = any> extends DestroyableContainer implements AfterViewInit {
7
8
  container: WindowContentContainer;
8
9
  protected _window: IWindow<T>;
@@ -26,5 +27,7 @@ export declare abstract class IWindowContent<T = any> extends DestroyableContain
26
27
  get config(): WindowConfig<T>;
27
28
  get window(): IWindow<T>;
28
29
  set window(value: IWindow<T>);
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<IWindowContent<any>, never>;
31
+ static ɵprov: i0.ɵɵInjectableDeclaration<IWindowContent<any>>;
29
32
  }
30
33
  export declare type WindowContentContainer = ElementRef | ViewContainerRef;
@@ -1,4 +1,24 @@
1
1
  import { ModuleWithProviders } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ import { LanguageService } from '@ts-core/frontend/language';
4
+ import { CookieService } from '../cookie/CookieService';
5
+ import { WindowService } from './WindowService';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "./component/WindowDragAreaDirective";
8
+ import * as i2 from "./component/window-question/window-question.component";
9
+ import * as i3 from "./component/window-close-element/window-close-element.component";
10
+ import * as i4 from "./component/window-resize-element/window-resize-element.component";
11
+ import * as i5 from "./component/window-minimize-element/window-minimize-element.component";
12
+ import * as i6 from "@angular/common";
13
+ import * as i7 from "@angular/forms";
14
+ import * as i8 from "@angular/material/button";
15
+ import * as i9 from "@angular/material/dialog";
16
+ import * as i10 from "../cookie/CookieModule";
17
+ import * as i11 from "../language/LanguageModule";
2
18
  export declare class WindowModule {
3
19
  static forRoot(): ModuleWithProviders<WindowModule>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowModule, never>;
21
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WindowModule, [typeof i1.WindowDragAreaDirective, typeof i2.WindowQuestionComponent, typeof i3.WindowCloseElementComponent, typeof i4.WindowResizeElementComponent, typeof i5.WindowMinimizeElementComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.MatButtonModule, typeof i9.MatDialogModule, typeof i10.CookieModule, typeof i11.LanguageModule], [typeof i1.WindowDragAreaDirective, typeof i2.WindowQuestionComponent, typeof i3.WindowCloseElementComponent, typeof i4.WindowResizeElementComponent, typeof i5.WindowMinimizeElementComponent]>;
22
+ static ɵinj: i0.ɵɵInjectorDeclaration<WindowModule>;
4
23
  }
24
+ export declare function windowServiceFactory(dialog: MatDialog, language: LanguageService, cookies: CookieService): WindowService;
@@ -10,6 +10,7 @@ import { IWindow } from './IWindow';
10
10
  import { IWindowContent } from './IWindowContent';
11
11
  import { WindowAlign, WindowConfig, WindowConfigOptions } from './WindowConfig';
12
12
  import { WindowFactory } from './WindowFactory';
13
+ import * as i0 from "@angular/core";
13
14
  export declare class WindowService extends Destroyable {
14
15
  factory: WindowFactory<IWindow>;
15
16
  questionComponent: ComponentType<IWindowContent>;
@@ -51,6 +52,8 @@ export declare class WindowService extends Destroyable {
51
52
  private get windowsArray();
52
53
  get events(): Observable<ObservableData<WindowServiceEvent, IWindow>>;
53
54
  get windows(): Map<WindowConfig, IWindowContent>;
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowService, never>;
56
+ static ɵprov: i0.ɵɵInjectableDeclaration<WindowService>;
54
57
  }
55
58
  export declare class PropertiesManager extends Destroyable {
56
59
  private cookies;
@@ -1,6 +1,7 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { Destroyable } from '@ts-core/common';
3
3
  import { IWindow } from '../IWindow';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class WindowDragAreaDirective extends Destroyable {
5
6
  private element;
6
7
  private _window;
@@ -13,4 +14,6 @@ export declare class WindowDragAreaDirective extends Destroyable {
13
14
  protected get interactable(): any;
14
15
  set window(value: IWindow);
15
16
  get window(): IWindow;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowDragAreaDirective, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<WindowDragAreaDirective, "[vi-window-drag-area]", never, { "window": "vi-window-drag-area"; }, {}, never>;
16
19
  }
@@ -1,4 +1,4 @@
1
- import { InteractEvent } from '@interactjs/types/types';
1
+ import { InteractEvent } from '@interactjs/types';
2
2
  import { WindowResizeable } from './WindowResizeable';
3
3
  export declare class WindowDragable extends WindowResizeable {
4
4
  protected isWasDragged: boolean;
@@ -1,6 +1,7 @@
1
1
  import { AfterViewInit, ElementRef } from '@angular/core';
2
2
  import { DestroyableContainer } from '@ts-core/common';
3
3
  import { IWindow } from '../IWindow';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class WindowElement extends DestroyableContainer implements AfterViewInit {
5
6
  protected element: ElementRef;
6
7
  protected _window: IWindow;
@@ -15,4 +16,6 @@ export declare class WindowElement extends DestroyableContainer implements After
15
16
  protected get nativeElement(): HTMLElement;
16
17
  get window(): IWindow;
17
18
  set window(value: IWindow);
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowElement, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<WindowElement>;
18
21
  }
@@ -1,4 +1,4 @@
1
- import { Interactable, InteractEvent } from '@interactjs/types/types';
1
+ import { Interactable, InteractEvent } from '@interactjs/types';
2
2
  import { WindowImpl } from '../WindowImpl';
3
3
  export declare class WindowResizeable extends WindowImpl {
4
4
  private _interactable;
@@ -1,5 +1,6 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { WindowElement } from '../WindowElement';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class WindowCloseElementComponent extends WindowElement {
4
5
  static ICON_CLASS: string;
5
6
  static ICON_VALUE: string;
@@ -7,4 +8,6 @@ export declare class WindowCloseElementComponent extends WindowElement {
7
8
  protected createChildren(): void;
8
9
  protected destroyChildren(): void;
9
10
  private mouseClickHandler;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowCloseElementComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<WindowCloseElementComponent, "vi-window-close-element", never, {}, {}, never, never>;
10
13
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { WindowElement } from '../WindowElement';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class WindowMinimizeElementComponent extends WindowElement {
4
5
  static ICON_CLASS: string;
5
6
  static ICON_MINIMIZE_VALUE: string;
@@ -10,4 +11,6 @@ export declare class WindowMinimizeElementComponent extends WindowElement {
10
11
  protected createChildren(): void;
11
12
  protected destroyChildren(): void;
12
13
  private mouseClickHandler;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowMinimizeElementComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<WindowMinimizeElementComponent, "vi-window-minimize-element", never, {}, {}, never, never>;
13
16
  }
@@ -1,9 +1,12 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { LanguageService } from '@ts-core/frontend/language';
3
3
  import { WindowQuestionBaseComponent } from '../WindowQuestionBaseComponent';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class WindowQuestionComponent extends WindowQuestionBaseComponent {
5
6
  protected language: LanguageService;
6
7
  text: string;
7
8
  constructor(container: ViewContainerRef, language: LanguageService);
8
9
  protected commitConfigProperties(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowQuestionComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<WindowQuestionComponent, "ng-component", never, {}, {}, never, never>;
9
12
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { WindowElement } from '../WindowElement';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class WindowResizeElementComponent extends WindowElement {
4
5
  static ICON_CLASS: string;
5
6
  static ICON_VALUE: string;
@@ -7,4 +8,6 @@ export declare class WindowResizeElementComponent extends WindowElement {
7
8
  protected createChildren(): void;
8
9
  protected destroyChildren(): void;
9
10
  private mouseClickHandler;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowResizeElementComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<WindowResizeElementComponent, "vi-window-resize-element", never, {}, {}, never, never>;
10
13
  }
@@ -1,19 +0,0 @@
1
- import { Renderer2 } from '@angular/core';
2
- import { Language } from '@ts-core/language';
3
- import { LanguageService } from '@ts-core/frontend/language';
4
- import { SettingsBaseService } from '@ts-core/frontend/service';
5
- import { ThemeService } from '@ts-core/frontend/theme';
6
- import { ApplicationBaseComponent } from './ApplicationBaseComponent';
7
- export declare abstract class ApplicationComponent2<T extends SettingsBaseService> extends ApplicationBaseComponent {
8
- private isLanguageLoaded;
9
- protected initialize(): void;
10
- protected isReady(): boolean;
11
- protected languageLoadingComplete(item: Language): void;
12
- protected abstract languageLoadingError(item: Language, error: Error): void;
13
- protected viewReadyHandler(): void;
14
- protected setLocale(item: Language): void;
15
- protected abstract get settings(): T;
16
- protected abstract get theme(): ThemeService;
17
- protected abstract get language(): LanguageService;
18
- protected abstract get renderer(): Renderer2;
19
- }