@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.
- package/VICommonModule.d.ts +34 -2
- package/application/ApplicationBaseComponent.d.ts +9 -5
- package/application/ApplicationComponent.d.ts +2 -6
- package/asset/AssetBackgroundDirective.d.ts +3 -0
- package/asset/AssetBackgroundPipe.d.ts +3 -0
- package/asset/AssetFilePipe.d.ts +3 -0
- package/asset/AssetIconPipe.d.ts +3 -0
- package/asset/AssetImagePipe.d.ts +3 -0
- package/asset/AssetModule.d.ts +12 -0
- package/asset/AssetSoundPipe.d.ts +3 -0
- package/asset/AssetVideoPipe.d.ts +3 -0
- package/bottomSheet/BottomSheetModule.d.ts +10 -0
- package/bottomSheet/BottomSheetService.d.ts +3 -0
- package/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.d.ts +3 -0
- package/component/VIComponentModule.d.ts +28 -0
- package/component/cdk-table/CdkTableBaseComponent.d.ts +6 -3
- package/component/cdk-table/CdkTableFilterableMapCollection.d.ts +5 -5
- package/component/cdk-table/CdkTablePaginableBookmarkMapCollection.d.ts +2 -2
- package/component/cdk-table/CdkTablePaginableMapCollection.d.ts +2 -6
- package/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.d.ts +3 -0
- package/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.d.ts +3 -0
- package/component/cdk-table/column/CdkTableCellClassNamePipe.d.ts +3 -0
- package/component/cdk-table/column/CdkTableColumnClassNamePipe.d.ts +3 -0
- package/component/cdk-table/column/CdkTableColumnStyleNamePipe.d.ts +3 -0
- package/component/cdk-table/column/CdkTableColumnValuePipe.d.ts +3 -0
- package/component/cdk-table/column/ICdkTableColumn.d.ts +1 -1
- package/component/cdk-table/row/CdkTableRowClassNamePipe.d.ts +3 -0
- package/component/cdk-table/row/CdkTableRowStyleNamePipe.d.ts +3 -0
- package/component/language/language-selector/language-selector.component.d.ts +3 -0
- package/component/menu-list/menu-list.component.d.ts +3 -0
- package/component/select-list/select-list.component.d.ts +3 -0
- package/component/tab-group/tab-group.component.d.ts +3 -0
- package/cookie/CookieModule.d.ts +4 -0
- package/directive/AspectRatioResizeDirective.d.ts +3 -0
- package/directive/AutoScrollBottomDirective.d.ts +3 -0
- package/directive/ClickToCopyDirective.d.ts +3 -0
- package/directive/ClickToSelectDirective.d.ts +3 -0
- package/directive/FocusDirective.d.ts +3 -0
- package/directive/HTMLContentTitleDirective.d.ts +3 -0
- package/directive/InfiniteScrollDirective.d.ts +3 -0
- package/directive/ResizeDirective.d.ts +3 -0
- package/directive/ScrollDirective.d.ts +3 -0
- package/directive/SelectOnFocusDirective.d.ts +3 -0
- package/{esm2015/ApplicationInjector.js → esm2020/ApplicationInjector.mjs} +0 -0
- package/esm2020/VICommonModule.mjs +145 -0
- package/esm2020/application/ApplicationBaseComponent.mjs +87 -0
- package/esm2020/application/ApplicationComponent.mjs +53 -0
- package/{esm2015/application/MessageBaseComponent.js → esm2020/application/MessageBaseComponent.mjs} +0 -0
- package/{esm2015/application/ShellBaseComponent.js → esm2020/application/ShellBaseComponent.mjs} +0 -0
- package/esm2020/asset/AssetBackgroundDirective.mjs +150 -0
- package/esm2020/asset/AssetBackgroundPipe.mjs +22 -0
- package/esm2020/asset/AssetFilePipe.mjs +22 -0
- package/esm2020/asset/AssetIconPipe.mjs +22 -0
- package/esm2020/asset/AssetImagePipe.mjs +22 -0
- package/esm2020/asset/AssetModule.mjs +24 -0
- package/esm2020/asset/AssetSoundPipe.mjs +22 -0
- package/esm2020/asset/AssetVideoPipe.mjs +22 -0
- package/esm2020/bottomSheet/BottomSheetImpl.mjs +230 -0
- package/esm2020/bottomSheet/BottomSheetModule.mjs +45 -0
- package/esm2020/bottomSheet/BottomSheetService.mjs +99 -0
- package/{esm2015/bottomSheet/component/BottomSheetBaseComponent.js → esm2020/bottomSheet/component/BottomSheetBaseComponent.mjs} +0 -0
- package/esm2020/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.mjs +60 -0
- package/esm2020/component/VIComponentModule.mjs +105 -0
- package/esm2020/component/cdk-table/CdkTableBaseComponent.mjs +188 -0
- package/{esm2015/component/cdk-table/CdkTableDataSource.js → esm2020/component/cdk-table/CdkTableDataSource.mjs} +0 -0
- package/esm2020/component/cdk-table/CdkTableFilterableMapCollection.mjs +94 -0
- package/esm2020/component/cdk-table/CdkTablePaginableBookmarkMapCollection.mjs +49 -0
- package/esm2020/component/cdk-table/CdkTablePaginableMapCollection.mjs +57 -0
- package/esm2020/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.mjs +35 -0
- package/esm2020/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.mjs +63 -0
- package/esm2020/component/cdk-table/column/CdkTableCellClassNamePipe.mjs +21 -0
- package/esm2020/component/cdk-table/column/CdkTableColumnClassNamePipe.mjs +22 -0
- package/esm2020/component/cdk-table/column/CdkTableColumnStyleNamePipe.mjs +22 -0
- package/esm2020/component/cdk-table/column/CdkTableColumnValuePipe.mjs +22 -0
- package/esm2020/component/cdk-table/column/ICdkTableColumn.mjs +2 -0
- package/esm2020/component/cdk-table/row/CdkTableRowClassNamePipe.mjs +22 -0
- package/esm2020/component/cdk-table/row/CdkTableRowStyleNamePipe.mjs +22 -0
- package/{esm2015/component/cdk-table/row/ICdkTableRow.js → esm2020/component/cdk-table/row/ICdkTableRow.mjs} +0 -0
- package/esm2020/component/language/language-selector/language-selector.component.mjs +79 -0
- package/esm2020/component/menu-list/menu-list.component.mjs +16 -0
- package/esm2020/component/select-list/select-list.component.mjs +17 -0
- package/esm2020/component/tab-group/tab-group.component.mjs +71 -0
- package/esm2020/cookie/CookieModule.mjs +37 -0
- package/{esm2015/cookie/CookieOptions.js → esm2020/cookie/CookieOptions.mjs} +0 -0
- package/{esm2015/cookie/CookieService.js → esm2020/cookie/CookieService.mjs} +1 -1
- package/esm2020/directive/AspectRatioResizeDirective.mjs +127 -0
- package/esm2020/directive/AutoScrollBottomDirective.mjs +115 -0
- package/esm2020/directive/ClickToCopyDirective.mjs +49 -0
- package/esm2020/directive/ClickToSelectDirective.mjs +49 -0
- package/esm2020/directive/FocusDirective.mjs +54 -0
- package/esm2020/directive/HTMLContentTitleDirective.mjs +71 -0
- package/esm2020/directive/InfiniteScrollDirective.mjs +74 -0
- package/esm2020/directive/ResizeDirective.mjs +79 -0
- package/esm2020/directive/ScrollDirective.mjs +128 -0
- package/esm2020/directive/SelectOnFocusDirective.mjs +47 -0
- package/{esm2015/form/FormElementAsync.js → esm2020/form/FormElementAsync.mjs} +0 -0
- package/esm2020/form/FormElementSync.mjs +69 -0
- package/{esm2015/form/ValueAccessor.js → esm2020/form/ValueAccessor.mjs} +0 -0
- package/esm2020/form/validate.mjs +59 -0
- package/esm2020/language/LanguageDirective.mjs +92 -0
- package/esm2020/language/LanguageHasDirective.mjs +93 -0
- package/esm2020/language/LanguageMatPaginatorIntl.mjs +62 -0
- package/esm2020/language/LanguageModule.mjs +67 -0
- package/{esm2015/language/LanguageMomentDateAdapter.js → esm2020/language/LanguageMomentDateAdapter.mjs} +2 -4
- package/esm2020/language/LanguagePipe.mjs +58 -0
- package/esm2020/language/LanguagePipeHas.mjs +56 -0
- package/esm2020/language/LanguagePipeHasPure.mjs +40 -0
- package/esm2020/language/LanguagePipePure.mjs +39 -0
- package/{esm2015/language/LanguageRequireResolver.js → esm2020/language/LanguageRequireResolver.mjs} +0 -0
- package/esm2020/language/LanguageResolver.mjs +21 -0
- package/{esm2015/list/IListItem.js → esm2020/list/IListItem.mjs} +0 -0
- package/{esm2015/list/ListItem.js → esm2020/list/ListItem.mjs} +0 -0
- package/{esm2015/list/ListItems.js → esm2020/list/ListItems.mjs} +0 -0
- package/{esm2015/list/select/ISelectListItem.js → esm2020/list/select/ISelectListItem.mjs} +0 -0
- package/{esm2015/list/select/SelectListItem.js → esm2020/list/select/SelectListItem.mjs} +0 -0
- package/{esm2015/list/select/SelectListItems.js → esm2020/list/select/SelectListItems.mjs} +0 -0
- package/esm2020/login/LoginBaseService.mjs +187 -0
- package/esm2020/login/LoginGuard.mjs +29 -0
- package/esm2020/login/LoginRedirectResolver.mjs +21 -0
- package/esm2020/login/LoginRequireResolver.mjs +36 -0
- package/esm2020/login/LoginResolver.mjs +28 -0
- package/{esm2015/manager/FocusManager.js → esm2020/manager/FocusManager.mjs} +0 -0
- package/{esm2015/manager/ResizeManager.js → esm2020/manager/ResizeManager.mjs} +0 -0
- package/{esm2015/menu/MenuItem.js → esm2020/menu/MenuItem.mjs} +0 -0
- package/{esm2015/menu/MenuItemBase.js → esm2020/menu/MenuItemBase.mjs} +0 -0
- package/{esm2015/menu/MenuItems.js → esm2020/menu/MenuItems.mjs} +0 -0
- package/{esm2015/menu/NavigationMenuItem.js → esm2020/menu/NavigationMenuItem.mjs} +0 -0
- package/esm2020/module/LazyModuleLoader.mjs +89 -0
- package/{esm2015/notification/INotification.js → esm2020/notification/INotification.mjs} +0 -0
- package/esm2020/notification/INotificationContent.mjs +131 -0
- package/{esm2015/notification/NotificationConfig.js → esm2020/notification/NotificationConfig.mjs} +0 -0
- package/{esm2015/notification/NotificationFactory.js → esm2020/notification/NotificationFactory.mjs} +0 -0
- package/esm2020/notification/NotificationImpl.mjs +139 -0
- package/esm2020/notification/NotificationModule.mjs +53 -0
- package/{esm2015/notification/NotificationProperties.js → esm2020/notification/NotificationProperties.mjs} +0 -0
- package/esm2020/notification/NotificationService.mjs +239 -0
- package/{esm2015/notification/component/NotificationBaseComponent.js → esm2020/notification/component/NotificationBaseComponent.mjs} +0 -0
- package/esm2020/notification/component/NotificationQuestionBaseComponent.mjs +49 -0
- package/esm2020/notification/component/notification/notification.component.mjs +61 -0
- package/esm2020/pipe/CamelCasePipe.mjs +31 -0
- package/esm2020/pipe/FinancePipe.mjs +53 -0
- package/esm2020/pipe/MomentDateAdaptivePipe.mjs +51 -0
- package/esm2020/pipe/MomentDateFromNowPipe.mjs +22 -0
- package/esm2020/pipe/MomentDatePipe.mjs +71 -0
- package/esm2020/pipe/MomentTimePipe.mjs +35 -0
- package/esm2020/pipe/NgModelErrorPipe.mjs +42 -0
- package/esm2020/pipe/PrettifyPipe.mjs +38 -0
- package/esm2020/pipe/SanitizePipe.mjs +47 -0
- package/esm2020/pipe/StartCasePipe.mjs +24 -0
- package/esm2020/pipe/TimePipe.mjs +37 -0
- package/esm2020/pipe/TruncatePipe.mjs +25 -0
- package/esm2020/public-api.mjs +160 -0
- package/{esm2015/question/IQuestion.js → esm2020/question/IQuestion.mjs} +0 -0
- package/{esm2015/question/QuestionManager.js → esm2020/question/QuestionManager.mjs} +0 -0
- package/esm2020/service/BootstrapBreakpointService.mjs +116 -0
- package/{esm2015/service/PipeBaseService.js → esm2020/service/PipeBaseService.mjs} +0 -0
- package/esm2020/service/RouterBaseService.mjs +214 -0
- package/{esm2015/service/route/CanDeactivateGuard.js → esm2020/service/route/CanDeactivateGuard.mjs} +0 -0
- package/{esm2015/service/route/IRouterDeactivatable.js → esm2020/service/route/IRouterDeactivatable.mjs} +0 -0
- package/esm2020/theme/ThemeAssetBackgroundDirective.mjs +36 -0
- package/esm2020/theme/ThemeAssetDirective.mjs +219 -0
- package/esm2020/theme/ThemeAssetImageDirective.mjs +34 -0
- package/esm2020/theme/ThemeModule.mjs +62 -0
- package/esm2020/theme/ThemeStyleDirective.mjs +115 -0
- package/esm2020/theme/ThemeStyleHoverDirective.mjs +107 -0
- package/esm2020/theme/ThemeToggleDirective.mjs +62 -0
- package/esm2020/transport/TransportLazy.mjs +91 -0
- package/esm2020/transport/TransportLazyModule.mjs +28 -0
- package/esm2020/transport/TransportLazyModuleLoadedEvent.mjs +18 -0
- package/esm2020/ts-core-angular.mjs +5 -0
- package/{esm2015/user/IUser.js → esm2020/user/IUser.mjs} +0 -0
- package/esm2020/user/UserBaseService.mjs +105 -0
- package/{esm2015/util/ViewUtil.js → esm2020/util/ViewUtil.mjs} +0 -0
- package/{esm2015/window/IWindow.js → esm2020/window/IWindow.mjs} +0 -0
- package/esm2020/window/IWindowContent.mjs +124 -0
- package/{esm2015/window/WindowBase.js → esm2020/window/WindowBase.mjs} +0 -0
- package/{esm2015/window/WindowConfig.js → esm2020/window/WindowConfig.mjs} +0 -0
- package/{esm2015/window/WindowFactory.js → esm2020/window/WindowFactory.mjs} +0 -0
- package/esm2020/window/WindowImpl.mjs +319 -0
- package/esm2020/window/WindowModule.mjs +59 -0
- package/{esm2015/window/WindowProperties.js → esm2020/window/WindowProperties.mjs} +0 -0
- package/esm2020/window/WindowService.mjs +338 -0
- package/{esm2015/window/component/WindowBaseComponent.js → esm2020/window/component/WindowBaseComponent.mjs} +0 -0
- package/esm2020/window/component/WindowDragAreaDirective.mjs +97 -0
- package/{esm2015/window/component/WindowDragable.js → esm2020/window/component/WindowDragable.mjs} +1 -1
- package/esm2020/window/component/WindowElement.mjs +85 -0
- package/{esm2015/window/component/WindowQuestionBaseComponent.js → esm2020/window/component/WindowQuestionBaseComponent.mjs} +0 -0
- package/{esm2015/window/component/WindowResizeable.js → esm2020/window/component/WindowResizeable.mjs} +1 -1
- package/esm2020/window/component/window-close-element/window-close-element.component.mjs +60 -0
- package/esm2020/window/component/window-minimize-element/window-minimize-element.component.mjs +80 -0
- package/esm2020/window/component/window-question/window-question.component.mjs +50 -0
- package/esm2020/window/component/window-resize-element/window-resize-element.component.mjs +59 -0
- package/fesm2015/{ts-core-angular.js → ts-core-angular.mjs} +5106 -4696
- package/fesm2015/ts-core-angular.mjs.map +1 -0
- package/fesm2020/ts-core-angular.mjs +9510 -0
- package/fesm2020/ts-core-angular.mjs.map +1 -0
- package/form/FormElementSync.d.ts +3 -0
- package/language/LanguageDirective.d.ts +3 -0
- package/language/LanguageHasDirective.d.ts +3 -0
- package/language/LanguageMatPaginatorIntl.d.ts +3 -0
- package/language/LanguageModule.d.ts +11 -0
- package/language/LanguagePipe.d.ts +3 -0
- package/language/LanguagePipeHas.d.ts +3 -0
- package/language/LanguagePipeHasPure.d.ts +3 -0
- package/language/LanguagePipePure.d.ts +3 -0
- package/language/LanguageResolver.d.ts +3 -0
- package/login/LoginGuard.d.ts +5 -2
- package/login/LoginRedirectResolver.d.ts +3 -0
- package/login/LoginRequireResolver.d.ts +2 -2
- package/login/LoginResolver.d.ts +3 -0
- package/module/LazyModuleLoader.d.ts +24 -0
- package/notification/INotificationContent.d.ts +3 -0
- package/notification/NotificationModule.d.ts +14 -0
- package/notification/NotificationService.d.ts +3 -0
- package/notification/component/NotificationQuestionBaseComponent.d.ts +3 -0
- package/notification/component/notification/notification.component.d.ts +3 -0
- package/package.json +44 -30
- package/pipe/CamelCasePipe.d.ts +3 -0
- package/pipe/FinancePipe.d.ts +3 -0
- package/pipe/MomentDateAdaptivePipe.d.ts +3 -0
- package/pipe/MomentDateFromNowPipe.d.ts +3 -0
- package/pipe/MomentDatePipe.d.ts +3 -0
- package/pipe/MomentTimePipe.d.ts +3 -0
- package/pipe/NgModelErrorPipe.d.ts +3 -0
- package/pipe/PrettifyPipe.d.ts +3 -0
- package/pipe/SanitizePipe.d.ts +3 -0
- package/pipe/StartCasePipe.d.ts +3 -0
- package/pipe/TimePipe.d.ts +3 -0
- package/pipe/TruncatePipe.d.ts +3 -0
- package/public-api.d.ts +29 -9
- package/service/BootstrapBreakpointService.d.ts +3 -0
- package/theme/ThemeAssetBackgroundDirective.d.ts +3 -0
- package/theme/ThemeAssetDirective.d.ts +3 -0
- package/theme/ThemeAssetImageDirective.d.ts +3 -0
- package/theme/ThemeModule.d.ts +10 -0
- package/theme/ThemeStyleDirective.d.ts +3 -0
- package/theme/ThemeStyleHoverDirective.d.ts +3 -0
- package/theme/ThemeToggleDirective.d.ts +3 -0
- package/transport/TransportLazy.d.ts +15 -0
- package/transport/TransportLazyModule.d.ts +16 -0
- package/transport/TransportLazyModuleLoadedEvent.d.ts +6 -0
- package/ts-core-angular.d.ts +1 -24
- package/user/UserBaseService.d.ts +1 -1
- package/window/IWindowContent.d.ts +3 -0
- package/window/WindowModule.d.ts +20 -0
- package/window/WindowService.d.ts +3 -0
- package/window/component/WindowDragAreaDirective.d.ts +3 -0
- package/window/component/WindowDragable.d.ts +1 -1
- package/window/component/WindowElement.d.ts +3 -0
- package/window/component/WindowResizeable.d.ts +1 -1
- package/window/component/window-close-element/window-close-element.component.d.ts +3 -0
- package/window/component/window-minimize-element/window-minimize-element.component.d.ts +3 -0
- package/window/component/window-question/window-question.component.d.ts +3 -0
- package/window/component/window-resize-element/window-resize-element.component.d.ts +3 -0
- package/application/ApplicationComponent2.d.ts +0 -19
- package/bundles/ts-core-angular.umd.js +0 -10984
- package/bundles/ts-core-angular.umd.js.map +0 -1
- package/bundles/ts-core-angular.umd.min.js +0 -2
- package/bundles/ts-core-angular.umd.min.js.map +0 -1
- package/esm2015/VICommonModule.js +0 -98
- package/esm2015/application/ApplicationBaseComponent.js +0 -80
- package/esm2015/application/ApplicationComponent.js +0 -57
- package/esm2015/application/ApplicationComponent2.js +0 -53
- package/esm2015/asset/AssetBackgroundDirective.js +0 -144
- package/esm2015/asset/AssetBackgroundPipe.js +0 -18
- package/esm2015/asset/AssetFilePipe.js +0 -18
- package/esm2015/asset/AssetIconPipe.js +0 -18
- package/esm2015/asset/AssetImagePipe.js +0 -18
- package/esm2015/asset/AssetModule.js +0 -19
- package/esm2015/asset/AssetSoundPipe.js +0 -18
- package/esm2015/asset/AssetVideoPipe.js +0 -18
- package/esm2015/bottomSheet/BottomSheetImpl.js +0 -231
- package/esm2015/bottomSheet/BottomSheetModule.js +0 -40
- package/esm2015/bottomSheet/BottomSheetService.js +0 -103
- package/esm2015/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.js +0 -63
- package/esm2015/component/VIComponentModule.js +0 -67
- package/esm2015/component/cdk-table/CdkTableBaseComponent.js +0 -176
- package/esm2015/component/cdk-table/CdkTableFilterableMapCollection.js +0 -94
- package/esm2015/component/cdk-table/CdkTablePaginableBookmarkMapCollection.js +0 -49
- package/esm2015/component/cdk-table/CdkTablePaginableMapCollection.js +0 -57
- package/esm2015/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.js +0 -24
- package/esm2015/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.js +0 -52
- package/esm2015/component/cdk-table/column/CdkTableCellClassNamePipe.js +0 -17
- package/esm2015/component/cdk-table/column/CdkTableColumnClassNamePipe.js +0 -18
- package/esm2015/component/cdk-table/column/CdkTableColumnStyleNamePipe.js +0 -18
- package/esm2015/component/cdk-table/column/CdkTableColumnValuePipe.js +0 -18
- package/esm2015/component/cdk-table/column/ICdkTableColumn.js +0 -2
- package/esm2015/component/cdk-table/row/CdkTableRowClassNamePipe.js +0 -18
- package/esm2015/component/cdk-table/row/CdkTableRowStyleNamePipe.js +0 -18
- package/esm2015/component/language/language-selector/language-selector.component.js +0 -75
- package/esm2015/component/menu-list/menu-list.component.js +0 -14
- package/esm2015/component/select-list/select-list.component.js +0 -14
- package/esm2015/component/tab-group/tab-group.component.js +0 -68
- package/esm2015/cookie/CookieModule.js +0 -33
- package/esm2015/directive/AspectRatioResizeDirective.js +0 -125
- package/esm2015/directive/AutoScrollBottomDirective.js +0 -107
- package/esm2015/directive/ClickToCopyDirective.js +0 -48
- package/esm2015/directive/ClickToSelectDirective.js +0 -48
- package/esm2015/directive/FocusDirective.js +0 -53
- package/esm2015/directive/HTMLContentTitleDirective.js +0 -70
- package/esm2015/directive/InfiniteScrollDirective.js +0 -69
- package/esm2015/directive/ResizeDirective.js +0 -75
- package/esm2015/directive/ScrollDirective.js +0 -124
- package/esm2015/directive/SelectOnFocusDirective.js +0 -46
- package/esm2015/form/FormElementSync.js +0 -62
- package/esm2015/form/validate.js +0 -61
- package/esm2015/language/LanguageDirective.js +0 -90
- package/esm2015/language/LanguageHasDirective.js +0 -93
- package/esm2015/language/LanguageMatPaginatorIntl.js +0 -54
- package/esm2015/language/LanguageModule.js +0 -62
- package/esm2015/language/LanguagePipe.js +0 -57
- package/esm2015/language/LanguagePipeHas.js +0 -55
- package/esm2015/language/LanguagePipeHasPure.js +0 -39
- package/esm2015/language/LanguagePipePure.js +0 -38
- package/esm2015/language/LanguageResolver.js +0 -23
- package/esm2015/login/LoginBaseService.js +0 -197
- package/esm2015/login/LoginGuard.js +0 -31
- package/esm2015/login/LoginRedirectResolver.js +0 -19
- package/esm2015/login/LoginRequireResolver.js +0 -36
- package/esm2015/login/LoginResolver.js +0 -30
- package/esm2015/notification/INotificationContent.js +0 -126
- package/esm2015/notification/NotificationImpl.js +0 -140
- package/esm2015/notification/NotificationModule.js +0 -40
- package/esm2015/notification/NotificationService.js +0 -248
- package/esm2015/notification/component/NotificationQuestionBaseComponent.js +0 -43
- package/esm2015/notification/component/notification/notification.component.js +0 -64
- package/esm2015/pipe/CamelCasePipe.js +0 -28
- package/esm2015/pipe/FinancePipe.js +0 -49
- package/esm2015/pipe/MomentDateAdaptivePipe.js +0 -47
- package/esm2015/pipe/MomentDateFromNowPipe.js +0 -18
- package/esm2015/pipe/MomentDatePipe.js +0 -67
- package/esm2015/pipe/MomentTimePipe.js +0 -31
- package/esm2015/pipe/NgModelErrorPipe.js +0 -41
- package/esm2015/pipe/PrettifyPipe.js +0 -35
- package/esm2015/pipe/SanitizePipe.js +0 -46
- package/esm2015/pipe/StartCasePipe.js +0 -20
- package/esm2015/pipe/TimePipe.js +0 -33
- package/esm2015/pipe/TruncatePipe.js +0 -21
- package/esm2015/public-api.js +0 -155
- package/esm2015/service/BootstrapBreakpointService.js +0 -118
- package/esm2015/service/RouterBaseService.js +0 -223
- package/esm2015/theme/ThemeAssetBackgroundDirective.js +0 -37
- package/esm2015/theme/ThemeAssetDirective.js +0 -204
- package/esm2015/theme/ThemeAssetImageDirective.js +0 -35
- package/esm2015/theme/ThemeModule.js +0 -57
- package/esm2015/theme/ThemeStyleDirective.js +0 -113
- package/esm2015/theme/ThemeStyleHoverDirective.js +0 -105
- package/esm2015/theme/ThemeToggleDirective.js +0 -61
- package/esm2015/ts-core-angular.js +0 -28
- package/esm2015/user/UserBaseService.js +0 -105
- package/esm2015/window/IWindowContent.js +0 -115
- package/esm2015/window/WindowImpl.js +0 -320
- package/esm2015/window/WindowModule.js +0 -46
- package/esm2015/window/WindowService.js +0 -349
- package/esm2015/window/component/WindowDragAreaDirective.js +0 -96
- package/esm2015/window/component/WindowElement.js +0 -78
- package/esm2015/window/component/window-close-element/window-close-element.component.js +0 -63
- package/esm2015/window/component/window-minimize-element/window-minimize-element.component.js +0 -83
- package/esm2015/window/component/window-question/window-question.component.js +0 -50
- package/esm2015/window/component/window-resize-element/window-resize-element.component.js +0 -62
- package/fesm2015/ts-core-angular.js.map +0 -1
- 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 ɵprov: i0.ɵɵInjectableDeclaration<FormElementSync<any>>;
|
|
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
|
}
|
package/login/LoginGuard.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import {
|
|
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
|
-
canActivate(
|
|
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,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Resolve } from '@angular/router';
|
|
2
2
|
import { LoginBaseService } from './LoginBaseService';
|
|
3
3
|
export declare class LoginRequireResolver implements Resolve<void> {
|
|
4
4
|
protected login: LoginBaseService;
|
|
5
5
|
constructor(login: LoginBaseService);
|
|
6
|
-
resolve(
|
|
6
|
+
resolve(): Promise<void>;
|
|
7
7
|
}
|
package/login/LoginResolver.d.ts
CHANGED
|
@@ -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
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Compiler, Injector, NgModuleFactory, NgModuleRef, Type } from '@angular/core';
|
|
2
|
+
import { Loadable } from '@ts-core/common';
|
|
3
|
+
import { MapCollection } from '@ts-core/common/map';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LazyModuleLoader<T extends ILazyModuleData = ILazyModuleData> extends Loadable {
|
|
6
|
+
protected compiler: Compiler;
|
|
7
|
+
protected injector: Injector;
|
|
8
|
+
protected _modules: MapCollection<T>;
|
|
9
|
+
constructor(compiler: Compiler, injector: Injector);
|
|
10
|
+
protected load(item: T): Promise<void>;
|
|
11
|
+
protected loadReference<T>(path: LazyModulePath<T>): Promise<NgModuleRef<T>>;
|
|
12
|
+
protected isNeedLoad(item: T): boolean;
|
|
13
|
+
loadIfNeed(id: string): Promise<T>;
|
|
14
|
+
destroy(): void;
|
|
15
|
+
get modules(): MapCollection<T>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LazyModuleLoader<any>, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LazyModuleLoader<any>>;
|
|
18
|
+
}
|
|
19
|
+
export interface ILazyModuleData<T = any> {
|
|
20
|
+
id: string;
|
|
21
|
+
path?: LazyModulePath<T>;
|
|
22
|
+
reference?: NgModuleRef<T>;
|
|
23
|
+
}
|
|
24
|
+
export declare type LazyModulePath<T> = () => Promise<NgModuleFactory<T> | Type<T>>;
|
|
@@ -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 ɵprov: i0.ɵɵInjectableDeclaration<INotificationContent<any>>;
|
|
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 ɵprov: i0.ɵɵInjectableDeclaration<NotificationQuestionBaseComponent>;
|
|
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": "
|
|
3
|
+
"version": "13.0.2",
|
|
4
4
|
"description": "Modules for frontend based on angular",
|
|
5
|
-
"main": "
|
|
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": "^
|
|
13
|
-
"@angular/cdk": "^
|
|
14
|
-
"@angular/cli": "^
|
|
15
|
-
"@angular/common": "^
|
|
16
|
-
"@angular/compiler": "^
|
|
17
|
-
"@angular/core": "^
|
|
18
|
-
"@angular/forms": "^
|
|
19
|
-
"@angular/material": "^
|
|
20
|
-
"@angular/material-moment-adapter": "^
|
|
21
|
-
"@angular/platform-browser": "^
|
|
22
|
-
"@angular/platform-browser-dynamic": "^
|
|
23
|
-
"@angular/router": "^
|
|
24
|
-
"@
|
|
25
|
-
"@ts-core/
|
|
26
|
-
"@
|
|
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.
|
|
29
|
-
"csshake": "1.5.3",
|
|
30
|
-
"interactjs": "1.
|
|
31
|
-
"moment": "2.
|
|
32
|
-
"ngx-cookie": "4.0.
|
|
33
|
-
"numeral": "2.0.6",
|
|
34
|
-
"rxjs": "^
|
|
35
|
-
"zone.js": "^0.11.
|
|
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.
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
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
|
-
"
|
|
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"
|
package/pipe/CamelCasePipe.d.ts
CHANGED
|
@@ -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
|
}
|
package/pipe/FinancePipe.d.ts
CHANGED
|
@@ -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
|
}
|
package/pipe/MomentDatePipe.d.ts
CHANGED
|
@@ -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;
|
package/pipe/MomentTimePipe.d.ts
CHANGED
|
@@ -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
|
}
|
package/pipe/PrettifyPipe.d.ts
CHANGED
|
@@ -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
|
}
|
package/pipe/SanitizePipe.d.ts
CHANGED
|
@@ -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
|
}
|
package/pipe/StartCasePipe.d.ts
CHANGED
|
@@ -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
|
}
|
package/pipe/TimePipe.d.ts
CHANGED
|
@@ -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
|
}
|
package/pipe/TruncatePipe.d.ts
CHANGED
|
@@ -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/
|
|
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';
|
|
@@ -103,14 +112,25 @@ export * from './theme/ThemeModule';
|
|
|
103
112
|
export * from './theme/ThemeToggleDirective';
|
|
104
113
|
export * from './user/IUser';
|
|
105
114
|
export * from './user/UserBaseService';
|
|
115
|
+
export * from './module/LazyModuleLoader';
|
|
116
|
+
export * from './transport/TransportLazy';
|
|
117
|
+
export * from './transport/TransportLazyModule';
|
|
118
|
+
export * from './transport/TransportLazyModuleLoadedEvent';
|
|
106
119
|
export * from './util/ViewUtil';
|
|
107
120
|
export * from './VICommonModule';
|
|
108
121
|
export * from './window/IWindow';
|
|
109
|
-
export * from './window/
|
|
122
|
+
export * from './window/WindowImpl';
|
|
110
123
|
export * from './window/WindowBase';
|
|
111
124
|
export * from './window/WindowConfig';
|
|
112
125
|
export * from './window/WindowFactory';
|
|
113
|
-
export * from './window/WindowImpl';
|
|
114
126
|
export * from './window/WindowModule';
|
|
115
|
-
export * from './window/
|
|
127
|
+
export * from './window/IWindowContent';
|
|
116
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';
|