@ts-core/angular 15.0.52 → 15.0.53
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/VIModule.d.ts +15 -14
- package/directive/IsBrowserDirective.d.ts +3 -2
- package/directive/IsServerDirective.d.ts +3 -2
- package/directive/ScrollDirective.d.ts +4 -19
- package/directive/ScrollDirective1.d.ts +8 -0
- package/directive/base/ScrollDirectiveBase.d.ts +23 -0
- package/directive/base/index.d.ts +1 -0
- package/esm2020/VIModule.mjs +9 -5
- package/esm2020/application/ApplicationBaseComponent.mjs +4 -4
- package/esm2020/asset/AssetBackgroundDirective.mjs +4 -4
- package/esm2020/asset/AssetBackgroundPipe.mjs +4 -4
- package/esm2020/asset/AssetFilePipe.mjs +4 -4
- package/esm2020/asset/AssetIconPipe.mjs +4 -4
- package/esm2020/asset/AssetImagePipe.mjs +4 -4
- package/esm2020/asset/AssetModule.mjs +5 -5
- package/esm2020/asset/AssetSoundPipe.mjs +4 -4
- package/esm2020/asset/AssetVideoPipe.mjs +4 -4
- package/esm2020/cookie/CookieModule.mjs +5 -5
- package/esm2020/directive/AspectRatioResizeDirective.mjs +4 -4
- package/esm2020/directive/AutoScrollBottomDirective.mjs +4 -4
- package/esm2020/directive/ClickToCopyDirective.mjs +5 -5
- package/esm2020/directive/ClickToSelectDirective.mjs +4 -4
- package/esm2020/directive/FocusDirective.mjs +4 -4
- package/esm2020/directive/HTMLContentTitleDirective.mjs +4 -4
- package/esm2020/directive/HTMLTitleDirective.mjs +4 -4
- package/esm2020/directive/InfiniteScrollDirective.mjs +4 -4
- package/esm2020/directive/IsBrowserDirective.mjs +10 -10
- package/esm2020/directive/IsServerDirective.mjs +10 -10
- package/esm2020/directive/ResizeDirective.mjs +4 -4
- package/esm2020/directive/ScrollCheckDirective.mjs +4 -4
- package/esm2020/directive/ScrollDirective.mjs +9 -105
- package/esm2020/directive/ScrollDirective1.mjs +22 -0
- package/esm2020/directive/SelectOnFocusDirective.mjs +4 -4
- package/esm2020/directive/base/ScrollDirectiveBase.mjs +115 -0
- package/esm2020/directive/base/index.mjs +2 -0
- package/esm2020/form/FormElementSync.mjs +4 -4
- package/esm2020/language/LanguageDirective.mjs +4 -4
- package/esm2020/language/LanguageHasDirective.mjs +4 -4
- package/esm2020/language/LanguageModule.mjs +5 -5
- package/esm2020/language/LanguagePipe.mjs +4 -4
- package/esm2020/language/LanguagePipeHas.mjs +4 -4
- package/esm2020/language/LanguagePipeHasPure.mjs +4 -4
- package/esm2020/language/LanguagePipePure.mjs +4 -4
- package/esm2020/language/LanguageResolver.mjs +4 -4
- package/esm2020/login/LoginGuard.mjs +4 -4
- package/esm2020/login/LoginIfCanGuard.mjs +4 -4
- package/esm2020/login/LoginNotGuard.mjs +4 -4
- package/esm2020/login/LoginResolver.mjs +4 -4
- package/esm2020/module/LazyModuleLoader.mjs +4 -4
- package/esm2020/notification/INotificationContent.mjs +4 -4
- package/esm2020/pipe/CamelCasePipe.mjs +4 -4
- package/esm2020/pipe/FinancePipe.mjs +4 -4
- package/esm2020/pipe/MomentDateAdaptivePipe.mjs +4 -4
- package/esm2020/pipe/MomentDateFromNowPipe.mjs +4 -4
- package/esm2020/pipe/MomentDatePipe.mjs +4 -4
- package/esm2020/pipe/MomentTimePipe.mjs +4 -4
- package/esm2020/pipe/NgModelErrorPipe.mjs +4 -4
- package/esm2020/pipe/PrettifyPipe.mjs +4 -4
- package/esm2020/pipe/SanitizePipe.mjs +4 -4
- package/esm2020/pipe/StartCasePipe.mjs +4 -4
- package/esm2020/pipe/TimePipe.mjs +4 -4
- package/esm2020/pipe/TruncatePipe.mjs +4 -4
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/service/PlatformService.mjs +4 -4
- package/esm2020/theme/ThemeAssetBackgroundDirective.mjs +4 -4
- package/esm2020/theme/ThemeAssetDirective.mjs +4 -4
- package/esm2020/theme/ThemeAssetIconDirective.mjs +4 -4
- package/esm2020/theme/ThemeAssetImageDirective.mjs +4 -4
- package/esm2020/theme/ThemeModule.mjs +5 -5
- package/esm2020/theme/ThemeStyleDirective.mjs +4 -4
- package/esm2020/theme/ThemeStyleHoverDirective.mjs +4 -4
- package/esm2020/theme/ThemeToggleDirective.mjs +4 -4
- package/esm2020/window/IWindowContent.mjs +4 -4
- package/fesm2015/ts-core-angular.mjs +248 -212
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +248 -212
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -91,9 +91,9 @@ class ApplicationBaseComponent extends DestroyableContainer {
|
|
|
91
91
|
return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.promise : null;
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
|
-
ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
95
|
-
ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
96
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
94
|
+
ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
95
|
+
ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ApplicationBaseComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
96
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApplicationBaseComponent, decorators: [{
|
|
97
97
|
type: Component,
|
|
98
98
|
args: [{ template: '' }]
|
|
99
99
|
}], ctorParameters: function () { return []; } });
|
|
@@ -915,9 +915,9 @@ class AssetBackgroundDirective extends Destroyable {
|
|
|
915
915
|
return this._background;
|
|
916
916
|
}
|
|
917
917
|
}
|
|
918
|
-
AssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
919
|
-
AssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
918
|
+
AssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
919
|
+
AssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AssetBackgroundDirective, selector: "[vi-asset-background]", inputs: { isIcon: "isIcon", isImage: "isImage", isUrl: "isUrl", repeat: "repeat", extension: "extension", background: ["vi-asset-background", "background"] }, usesInheritance: true, ngImport: i0 });
|
|
920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
|
|
921
921
|
type: Directive,
|
|
922
922
|
args: [{
|
|
923
923
|
selector: '[vi-asset-background]'
|
|
@@ -947,9 +947,9 @@ class AssetBackgroundPipe {
|
|
|
947
947
|
return Assets.getBackground(name, extension);
|
|
948
948
|
}
|
|
949
949
|
}
|
|
950
|
-
AssetBackgroundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
951
|
-
AssetBackgroundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
952
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
950
|
+
AssetBackgroundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
951
|
+
AssetBackgroundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundPipe, name: "viAssetBackground" });
|
|
952
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
|
|
953
953
|
type: Pipe,
|
|
954
954
|
args: [{
|
|
955
955
|
name: 'viAssetBackground'
|
|
@@ -966,9 +966,9 @@ class AssetIconPipe {
|
|
|
966
966
|
return Assets.getIcon(name, extension);
|
|
967
967
|
}
|
|
968
968
|
}
|
|
969
|
-
AssetIconPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
970
|
-
AssetIconPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
969
|
+
AssetIconPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
970
|
+
AssetIconPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetIconPipe, name: "viAssetIcon" });
|
|
971
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetIconPipe, decorators: [{
|
|
972
972
|
type: Pipe,
|
|
973
973
|
args: [{
|
|
974
974
|
name: 'viAssetIcon'
|
|
@@ -985,9 +985,9 @@ class AssetFilePipe {
|
|
|
985
985
|
return Assets.getFile(name, extension);
|
|
986
986
|
}
|
|
987
987
|
}
|
|
988
|
-
AssetFilePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
989
|
-
AssetFilePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
988
|
+
AssetFilePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
989
|
+
AssetFilePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetFilePipe, name: "viAssetFile" });
|
|
990
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetFilePipe, decorators: [{
|
|
991
991
|
type: Pipe,
|
|
992
992
|
args: [{
|
|
993
993
|
name: 'viAssetFile'
|
|
@@ -1004,9 +1004,9 @@ class AssetVideoPipe {
|
|
|
1004
1004
|
return Assets.getVideo(name, extension);
|
|
1005
1005
|
}
|
|
1006
1006
|
}
|
|
1007
|
-
AssetVideoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1008
|
-
AssetVideoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
1009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1007
|
+
AssetVideoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1008
|
+
AssetVideoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetVideoPipe, name: "viAssetVideo" });
|
|
1009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetVideoPipe, decorators: [{
|
|
1010
1010
|
type: Pipe,
|
|
1011
1011
|
args: [{
|
|
1012
1012
|
name: 'viAssetVideo'
|
|
@@ -1023,9 +1023,9 @@ class AssetSoundPipe {
|
|
|
1023
1023
|
return Assets.getSound(name, extension);
|
|
1024
1024
|
}
|
|
1025
1025
|
}
|
|
1026
|
-
AssetSoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1027
|
-
AssetSoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
1028
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1026
|
+
AssetSoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1027
|
+
AssetSoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetSoundPipe, name: "viAssetSound" });
|
|
1028
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetSoundPipe, decorators: [{
|
|
1029
1029
|
type: Pipe,
|
|
1030
1030
|
args: [{
|
|
1031
1031
|
name: 'viAssetSound'
|
|
@@ -1042,9 +1042,9 @@ class AssetImagePipe {
|
|
|
1042
1042
|
return Assets.getImage(name, extension);
|
|
1043
1043
|
}
|
|
1044
1044
|
}
|
|
1045
|
-
AssetImagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1046
|
-
AssetImagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
1047
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1045
|
+
AssetImagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1046
|
+
AssetImagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetImagePipe, name: "viAssetImage" });
|
|
1047
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetImagePipe, decorators: [{
|
|
1048
1048
|
type: Pipe,
|
|
1049
1049
|
args: [{
|
|
1050
1050
|
name: 'viAssetImage'
|
|
@@ -1054,10 +1054,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1054
1054
|
let declarations$3 = [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective];
|
|
1055
1055
|
class AssetModule {
|
|
1056
1056
|
}
|
|
1057
|
-
AssetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1058
|
-
AssetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
1059
|
-
AssetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
1060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1057
|
+
AssetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1058
|
+
AssetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetModule, declarations: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective], imports: [CommonModule], exports: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective] });
|
|
1059
|
+
AssetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetModule, imports: [CommonModule] });
|
|
1060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetModule, decorators: [{
|
|
1061
1061
|
type: NgModule,
|
|
1062
1062
|
args: [{
|
|
1063
1063
|
imports: [CommonModule],
|
|
@@ -1166,9 +1166,9 @@ class PlatformService extends DestroyableContainer {
|
|
|
1166
1166
|
return this._isPlatformBrowser;
|
|
1167
1167
|
}
|
|
1168
1168
|
}
|
|
1169
|
-
PlatformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1170
|
-
PlatformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
1171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1169
|
+
PlatformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1170
|
+
PlatformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PlatformService, providedIn: 'root' });
|
|
1171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PlatformService, decorators: [{
|
|
1172
1172
|
type: Injectable,
|
|
1173
1173
|
args: [{ providedIn: 'root' }]
|
|
1174
1174
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -1199,10 +1199,10 @@ class CookieModule {
|
|
|
1199
1199
|
};
|
|
1200
1200
|
}
|
|
1201
1201
|
}
|
|
1202
|
-
CookieModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1203
|
-
CookieModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
1204
|
-
CookieModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
1205
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1202
|
+
CookieModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1203
|
+
CookieModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CookieModule });
|
|
1204
|
+
CookieModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CookieModule });
|
|
1205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CookieModule, decorators: [{
|
|
1206
1206
|
type: NgModule
|
|
1207
1207
|
}] });
|
|
1208
1208
|
function cookieServiceFactory(nativeWindow, platform, options) {
|
|
@@ -1403,9 +1403,9 @@ class AspectRatioResizeDirective extends DestroyableContainer {
|
|
|
1403
1403
|
//
|
|
1404
1404
|
// --------------------------------------------------------------------------
|
|
1405
1405
|
AspectRatioResizeDirective.UPDATE_DELAY = 100;
|
|
1406
|
-
AspectRatioResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1407
|
-
AspectRatioResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1406
|
+
AspectRatioResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1407
|
+
AspectRatioResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AspectRatioResizeDirective, selector: "[vi-aspect-ratio]", inputs: { direction: ["vi-aspect-ratio", "direction"], ratio: "ratio" }, usesInheritance: true, ngImport: i0 });
|
|
1408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
|
|
1409
1409
|
type: Directive,
|
|
1410
1410
|
args: [{
|
|
1411
1411
|
selector: '[vi-aspect-ratio]'
|
|
@@ -1422,7 +1422,7 @@ var Direction;
|
|
|
1422
1422
|
Direction["HORIZONTAL"] = "HORIZONTAL";
|
|
1423
1423
|
})(Direction || (Direction = {}));
|
|
1424
1424
|
|
|
1425
|
-
class
|
|
1425
|
+
class ScrollDirectiveBase extends Destroyable {
|
|
1426
1426
|
// --------------------------------------------------------------------------
|
|
1427
1427
|
//
|
|
1428
1428
|
// Constructor
|
|
@@ -1440,7 +1440,7 @@ class ScrollDirective extends Destroyable {
|
|
|
1440
1440
|
this._scrollValue = 0;
|
|
1441
1441
|
this.initializeHandler = () => this.initialize();
|
|
1442
1442
|
this.element = ViewUtil.parseElement(element);
|
|
1443
|
-
this.timer = setTimeout(this.initializeHandler,
|
|
1443
|
+
this.timer = setTimeout(this.initializeHandler, ScrollDirectiveBase.INITIALIZATION_DELAY);
|
|
1444
1444
|
}
|
|
1445
1445
|
// --------------------------------------------------------------------------
|
|
1446
1446
|
//
|
|
@@ -1518,14 +1518,11 @@ class ScrollDirective extends Destroyable {
|
|
|
1518
1518
|
// Static Properties
|
|
1519
1519
|
//
|
|
1520
1520
|
// --------------------------------------------------------------------------
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1525
|
-
type:
|
|
1526
|
-
args: [{
|
|
1527
|
-
selector: '[vi-scroll]'
|
|
1528
|
-
}]
|
|
1521
|
+
ScrollDirectiveBase.INITIALIZATION_DELAY = 1;
|
|
1522
|
+
ScrollDirectiveBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirectiveBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1523
|
+
ScrollDirectiveBase.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirectiveBase });
|
|
1524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirectiveBase, decorators: [{
|
|
1525
|
+
type: Injectable
|
|
1529
1526
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { scrolled: [{
|
|
1530
1527
|
type: Output
|
|
1531
1528
|
}], scrollHandler: [{
|
|
@@ -1535,6 +1532,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1535
1532
|
type: Input
|
|
1536
1533
|
}] } });
|
|
1537
1534
|
|
|
1535
|
+
class ScrollDirective extends ScrollDirectiveBase {
|
|
1536
|
+
// --------------------------------------------------------------------------
|
|
1537
|
+
//
|
|
1538
|
+
// Constructor
|
|
1539
|
+
//
|
|
1540
|
+
// --------------------------------------------------------------------------
|
|
1541
|
+
constructor(element) {
|
|
1542
|
+
super(element);
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1546
|
+
ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective, selector: "[vi-scroll]", usesInheritance: true, ngImport: i0 });
|
|
1547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1548
|
+
type: Directive,
|
|
1549
|
+
args: [{
|
|
1550
|
+
selector: '[vi-scroll]'
|
|
1551
|
+
}]
|
|
1552
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
1553
|
+
|
|
1538
1554
|
class InfiniteScrollDirective extends ScrollDirective {
|
|
1539
1555
|
constructor() {
|
|
1540
1556
|
super(...arguments);
|
|
@@ -1591,9 +1607,9 @@ class InfiniteScrollDirective extends ScrollDirective {
|
|
|
1591
1607
|
return this.element.scrollHeight;
|
|
1592
1608
|
}
|
|
1593
1609
|
}
|
|
1594
|
-
InfiniteScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1595
|
-
InfiniteScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1610
|
+
InfiniteScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1611
|
+
InfiniteScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: InfiniteScrollDirective, selector: "[vi-infinite-scroll]", inputs: { elementHeight: "elementHeight" }, outputs: { top: "top", bottom: "bottom" }, usesInheritance: true, ngImport: i0 });
|
|
1612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
|
|
1597
1613
|
type: Directive,
|
|
1598
1614
|
args: [{
|
|
1599
1615
|
selector: '[vi-infinite-scroll]'
|
|
@@ -1704,9 +1720,9 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
|
|
|
1704
1720
|
this.triggerTimer = setTimeout(this.checkTrigger, InfiniteScrollDirective.INITIALIZATION_DELAY);
|
|
1705
1721
|
}
|
|
1706
1722
|
}
|
|
1707
|
-
AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1708
|
-
AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1709
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1723
|
+
AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1724
|
+
AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AutoScrollBottomDirective, selector: "[vi-auto-scroll-bottom]", inputs: { trigger: ["vi-auto-bottom-scroll", "trigger"] }, outputs: { triggerChanged: "triggerChanged" }, usesInheritance: true, ngImport: i0 });
|
|
1725
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
|
|
1710
1726
|
type: Directive,
|
|
1711
1727
|
args: [{
|
|
1712
1728
|
selector: '[vi-auto-scroll-bottom]'
|
|
@@ -1731,7 +1747,7 @@ class ClickToCopyDirective extends Destroyable {
|
|
|
1731
1747
|
clickHandler(event) {
|
|
1732
1748
|
ViewUtil.selectContent(this.element, true);
|
|
1733
1749
|
clearTimeout(this.selectionClearTimer);
|
|
1734
|
-
this.selectionClearTimer = setTimeout(this.selectionRemove, DateUtil.
|
|
1750
|
+
this.selectionClearTimer = setTimeout(this.selectionRemove, DateUtil.MILLISECONDS_SECOND / 2);
|
|
1735
1751
|
}
|
|
1736
1752
|
// --------------------------------------------------------------------------
|
|
1737
1753
|
//
|
|
@@ -1747,9 +1763,9 @@ class ClickToCopyDirective extends Destroyable {
|
|
|
1747
1763
|
clearTimeout(this.selectionClearTimer);
|
|
1748
1764
|
}
|
|
1749
1765
|
}
|
|
1750
|
-
ClickToCopyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1751
|
-
ClickToCopyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1766
|
+
ClickToCopyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1767
|
+
ClickToCopyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ClickToCopyDirective, selector: "[vi-click-to-copy]", inputs: { element: ["vi-click-to-copy", "element"] }, host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
|
|
1768
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToCopyDirective, decorators: [{
|
|
1753
1769
|
type: Directive,
|
|
1754
1770
|
args: [{
|
|
1755
1771
|
selector: '[vi-click-to-copy]'
|
|
@@ -1795,9 +1811,9 @@ class ClickToSelectDirective extends Destroyable {
|
|
|
1795
1811
|
this.element = null;
|
|
1796
1812
|
}
|
|
1797
1813
|
}
|
|
1798
|
-
ClickToSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1799
|
-
ClickToSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1800
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1814
|
+
ClickToSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1815
|
+
ClickToSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ClickToSelectDirective, selector: "[vi-click-to-select]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
|
|
1816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToSelectDirective, decorators: [{
|
|
1801
1817
|
type: Directive,
|
|
1802
1818
|
args: [{
|
|
1803
1819
|
selector: '[vi-click-to-select]'
|
|
@@ -1888,9 +1904,9 @@ class FocusDirective extends Destroyable {
|
|
|
1888
1904
|
this.focus();
|
|
1889
1905
|
}
|
|
1890
1906
|
}
|
|
1891
|
-
FocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1892
|
-
FocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1893
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1907
|
+
FocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1908
|
+
FocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FocusDirective, selector: "[vi-focus]", inputs: { trigger: ["vi-focus", "trigger"] }, usesInheritance: true, ngImport: i0 });
|
|
1909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusDirective, decorators: [{
|
|
1894
1910
|
type: Directive,
|
|
1895
1911
|
args: [{
|
|
1896
1912
|
selector: '[vi-focus]'
|
|
@@ -1931,9 +1947,9 @@ class SelectOnFocusDirective extends Destroyable {
|
|
|
1931
1947
|
this.element = null;
|
|
1932
1948
|
}
|
|
1933
1949
|
}
|
|
1934
|
-
SelectOnFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1935
|
-
SelectOnFocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1950
|
+
SelectOnFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1951
|
+
SelectOnFocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: SelectOnFocusDirective, selector: "[vi-select-on-focus]", host: { listeners: { "focus": "focusHandler()" } }, usesInheritance: true, ngImport: i0 });
|
|
1952
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
|
|
1937
1953
|
type: Directive,
|
|
1938
1954
|
args: [{
|
|
1939
1955
|
selector: '[vi-select-on-focus]'
|
|
@@ -1997,9 +2013,9 @@ class ResizeDirective extends Destroyable {
|
|
|
1997
2013
|
}
|
|
1998
2014
|
}
|
|
1999
2015
|
}
|
|
2000
|
-
ResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2001
|
-
ResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2016
|
+
ResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2017
|
+
ResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ResizeDirective, selector: "[vi-resize]", inputs: { isTop: "isTop", isLeft: "isLeft", isRight: "isRight", isBottom: "isBottom" }, outputs: { resized: "resized" }, usesInheritance: true, ngImport: i0 });
|
|
2018
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeDirective, decorators: [{
|
|
2003
2019
|
type: Directive,
|
|
2004
2020
|
args: [{
|
|
2005
2021
|
selector: '[vi-resize]'
|
|
@@ -2085,6 +2101,25 @@ class StructureDirective extends DestroyableContainer {
|
|
|
2085
2101
|
}
|
|
2086
2102
|
}
|
|
2087
2103
|
|
|
2104
|
+
class ScrollDirective1 extends ScrollDirectiveBase {
|
|
2105
|
+
// --------------------------------------------------------------------------
|
|
2106
|
+
//
|
|
2107
|
+
// Constructor
|
|
2108
|
+
//
|
|
2109
|
+
// --------------------------------------------------------------------------
|
|
2110
|
+
constructor(element) {
|
|
2111
|
+
super(element);
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2114
|
+
ScrollDirective1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2115
|
+
ScrollDirective1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective1, selector: "[vi-scroll-1]", usesInheritance: true, ngImport: i0 });
|
|
2116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, decorators: [{
|
|
2117
|
+
type: Directive,
|
|
2118
|
+
args: [{
|
|
2119
|
+
selector: '[vi-scroll-1]'
|
|
2120
|
+
}]
|
|
2121
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2122
|
+
|
|
2088
2123
|
class ScrollCheckDirective extends DestroyableContainer {
|
|
2089
2124
|
//--------------------------------------------------------------------------
|
|
2090
2125
|
//
|
|
@@ -2160,9 +2195,9 @@ class ScrollCheckDirective extends DestroyableContainer {
|
|
|
2160
2195
|
return this._scrollLimit;
|
|
2161
2196
|
}
|
|
2162
2197
|
}
|
|
2163
|
-
ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2164
|
-
ScrollCheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2198
|
+
ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2199
|
+
ScrollCheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollCheckDirective, selector: "[vi-scroll-check]", inputs: { delay: "delay", offset: "offset", scrollLimit: ["vi-scroll-check", "scrollLimit"] }, outputs: { top: "top", bottom: "bottom", limitExceed: "limitExceed" }, usesInheritance: true, ngImport: i0 });
|
|
2200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollCheckDirective, decorators: [{
|
|
2166
2201
|
type: Directive,
|
|
2167
2202
|
args: [{
|
|
2168
2203
|
selector: '[vi-scroll-check]'
|
|
@@ -2244,9 +2279,9 @@ class LanguagePipe extends DestroyableContainer {
|
|
|
2244
2279
|
this.lastValue = null;
|
|
2245
2280
|
}
|
|
2246
2281
|
}
|
|
2247
|
-
LanguagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2248
|
-
LanguagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2249
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2282
|
+
LanguagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipe, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2283
|
+
LanguagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipe, name: "viTranslate", pure: false });
|
|
2284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipe, decorators: [{
|
|
2250
2285
|
type: Pipe,
|
|
2251
2286
|
args: [{
|
|
2252
2287
|
name: 'viTranslate',
|
|
@@ -2302,9 +2337,9 @@ class HTMLTitleDirective extends Destroyable {
|
|
|
2302
2337
|
return this._value;
|
|
2303
2338
|
}
|
|
2304
2339
|
}
|
|
2305
|
-
HTMLTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2306
|
-
HTMLTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2307
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2340
|
+
HTMLTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2341
|
+
HTMLTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HTMLTitleDirective, selector: "[vi-html-title]", inputs: { value: ["vi-html-title", "value"] }, usesInheritance: true, ngImport: i0 });
|
|
2342
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLTitleDirective, decorators: [{
|
|
2308
2343
|
type: Directive,
|
|
2309
2344
|
args: [{
|
|
2310
2345
|
selector: '[vi-html-title]'
|
|
@@ -2363,9 +2398,9 @@ class HTMLContentTitleDirective extends Destroyable {
|
|
|
2363
2398
|
return this._value;
|
|
2364
2399
|
}
|
|
2365
2400
|
}
|
|
2366
|
-
HTMLContentTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2367
|
-
HTMLContentTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2401
|
+
HTMLContentTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2402
|
+
HTMLContentTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HTMLContentTitleDirective, selector: "[vi-html-content-title]", inputs: { value: ["vi-html-content-title", "value"] }, usesInheritance: true, ngImport: i0 });
|
|
2403
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
|
|
2369
2404
|
type: Directive,
|
|
2370
2405
|
args: [{
|
|
2371
2406
|
selector: '[vi-html-content-title]'
|
|
@@ -2375,47 +2410,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2375
2410
|
args: ['vi-html-content-title']
|
|
2376
2411
|
}] } });
|
|
2377
2412
|
|
|
2378
|
-
class IsBrowserDirective {
|
|
2413
|
+
class IsBrowserDirective extends StructureDirective {
|
|
2379
2414
|
// --------------------------------------------------------------------------
|
|
2380
2415
|
//
|
|
2381
2416
|
// Constructor
|
|
2382
2417
|
//
|
|
2383
2418
|
// --------------------------------------------------------------------------
|
|
2384
|
-
constructor(
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
}
|
|
2419
|
+
constructor(templateRef, container, platform) {
|
|
2420
|
+
super(templateRef, container);
|
|
2421
|
+
this.isNeedAdd = platform.isPlatformBrowser;
|
|
2388
2422
|
}
|
|
2389
2423
|
}
|
|
2390
|
-
IsBrowserDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2391
|
-
IsBrowserDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2392
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2424
|
+
IsBrowserDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IsBrowserDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2425
|
+
IsBrowserDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: IsBrowserDirective, selector: "[viIsBrowser]", usesInheritance: true, ngImport: i0 });
|
|
2426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IsBrowserDirective, decorators: [{
|
|
2393
2427
|
type: Directive,
|
|
2394
2428
|
args: [{
|
|
2395
2429
|
selector: '[viIsBrowser]'
|
|
2396
2430
|
}]
|
|
2397
|
-
}], ctorParameters: function () { return [{ type:
|
|
2431
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: PlatformService }]; } });
|
|
2398
2432
|
|
|
2399
|
-
class IsServerDirective {
|
|
2433
|
+
class IsServerDirective extends StructureDirective {
|
|
2400
2434
|
// --------------------------------------------------------------------------
|
|
2401
2435
|
//
|
|
2402
2436
|
// Constructor
|
|
2403
2437
|
//
|
|
2404
2438
|
// --------------------------------------------------------------------------
|
|
2405
|
-
constructor(
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
}
|
|
2439
|
+
constructor(templateRef, container, platform) {
|
|
2440
|
+
super(templateRef, container);
|
|
2441
|
+
this.isNeedAdd = platform.isPlatformServer;
|
|
2409
2442
|
}
|
|
2410
2443
|
}
|
|
2411
|
-
IsServerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2412
|
-
IsServerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2413
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2444
|
+
IsServerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IsServerDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2445
|
+
IsServerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: IsServerDirective, selector: "[viIsServer]", usesInheritance: true, ngImport: i0 });
|
|
2446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IsServerDirective, decorators: [{
|
|
2414
2447
|
type: Directive,
|
|
2415
2448
|
args: [{
|
|
2416
2449
|
selector: '[viIsServer]'
|
|
2417
2450
|
}]
|
|
2418
|
-
}], ctorParameters: function () { return [{ type:
|
|
2451
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: PlatformService }]; } });
|
|
2419
2452
|
|
|
2420
2453
|
let normalizeValidator = (validator) => {
|
|
2421
2454
|
let func = validator.validate.bind(validator);
|
|
@@ -2617,9 +2650,9 @@ class FormElementSync extends ValueAccessor {
|
|
|
2617
2650
|
this.timer = null;
|
|
2618
2651
|
}
|
|
2619
2652
|
}
|
|
2620
|
-
FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2621
|
-
FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2653
|
+
FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2654
|
+
FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FormElementSync, usesInheritance: true, ngImport: i0 });
|
|
2655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormElementSync, decorators: [{
|
|
2623
2656
|
type: Directive
|
|
2624
2657
|
}], ctorParameters: function () { return [{ type: Array }]; } });
|
|
2625
2658
|
|
|
@@ -2649,9 +2682,9 @@ class LanguagePipePure extends DestroyableContainer {
|
|
|
2649
2682
|
this.language = null;
|
|
2650
2683
|
}
|
|
2651
2684
|
}
|
|
2652
|
-
LanguagePipePure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2653
|
-
LanguagePipePure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2654
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2685
|
+
LanguagePipePure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2686
|
+
LanguagePipePure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipePure, name: "viTranslatePure" });
|
|
2687
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipePure, decorators: [{
|
|
2655
2688
|
type: Pipe,
|
|
2656
2689
|
args: [{
|
|
2657
2690
|
name: 'viTranslatePure'
|
|
@@ -2702,9 +2735,9 @@ class LanguageResolver extends LanguageRequireResolver {
|
|
|
2702
2735
|
super(language);
|
|
2703
2736
|
}
|
|
2704
2737
|
}
|
|
2705
|
-
LanguageResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2706
|
-
LanguageResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
2707
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2738
|
+
LanguageResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2739
|
+
LanguageResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
|
|
2740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageResolver, decorators: [{
|
|
2708
2741
|
type: Injectable,
|
|
2709
2742
|
args: [{ providedIn: 'root' }]
|
|
2710
2743
|
}], ctorParameters: function () { return [{ type: i1.LanguageService }]; } });
|
|
@@ -2778,9 +2811,9 @@ class LanguageDirective extends Destroyable {
|
|
|
2778
2811
|
return this._params;
|
|
2779
2812
|
}
|
|
2780
2813
|
}
|
|
2781
|
-
LanguageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2782
|
-
LanguageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2814
|
+
LanguageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageDirective, deps: [{ token: i0.ElementRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2815
|
+
LanguageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LanguageDirective, selector: "[vi-translate]", inputs: { isNeedTitle: "isNeedTitle", key: ["vi-translate", "key"], params: "params" }, usesInheritance: true, ngImport: i0 });
|
|
2816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageDirective, decorators: [{
|
|
2784
2817
|
type: Directive,
|
|
2785
2818
|
args: [{
|
|
2786
2819
|
selector: '[vi-translate]'
|
|
@@ -2834,9 +2867,9 @@ class LanguagePipeHas extends DestroyableContainer {
|
|
|
2834
2867
|
this.key = null;
|
|
2835
2868
|
}
|
|
2836
2869
|
}
|
|
2837
|
-
LanguagePipeHas.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2838
|
-
LanguagePipeHas.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2839
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2870
|
+
LanguagePipeHas.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2871
|
+
LanguagePipeHas.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHas, name: "viTranslateHas", pure: false });
|
|
2872
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHas, decorators: [{
|
|
2840
2873
|
type: Pipe,
|
|
2841
2874
|
args: [{
|
|
2842
2875
|
name: 'viTranslateHas',
|
|
@@ -2870,9 +2903,9 @@ class LanguagePipeHasPure extends DestroyableContainer {
|
|
|
2870
2903
|
this.language = null;
|
|
2871
2904
|
}
|
|
2872
2905
|
}
|
|
2873
|
-
LanguagePipeHasPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2874
|
-
LanguagePipeHasPure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2875
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2906
|
+
LanguagePipeHasPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2907
|
+
LanguagePipeHasPure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHasPure, name: "viTranslateHasPure" });
|
|
2908
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
|
|
2876
2909
|
type: Pipe,
|
|
2877
2910
|
args: [{
|
|
2878
2911
|
name: 'viTranslateHasPure',
|
|
@@ -2939,9 +2972,9 @@ class LanguageHasDirective extends StructureDirective {
|
|
|
2939
2972
|
return this._isOnlyIfNotEmpty;
|
|
2940
2973
|
}
|
|
2941
2974
|
}
|
|
2942
|
-
LanguageHasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2943
|
-
LanguageHasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2975
|
+
LanguageHasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageHasDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2976
|
+
LanguageHasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LanguageHasDirective, selector: "[viTranslateHas]", inputs: { viTranslateHas: "viTranslateHas", viTranslateHasIsOnlyIfNotEmpty: "viTranslateHasIsOnlyIfNotEmpty" }, usesInheritance: true, ngImport: i0 });
|
|
2977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageHasDirective, decorators: [{
|
|
2945
2978
|
type: Directive,
|
|
2946
2979
|
args: [{
|
|
2947
2980
|
selector: '[viTranslateHas]'
|
|
@@ -2983,10 +3016,10 @@ class LanguageModule {
|
|
|
2983
3016
|
};
|
|
2984
3017
|
}
|
|
2985
3018
|
}
|
|
2986
|
-
LanguageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2987
|
-
LanguageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
2988
|
-
LanguageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
2989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3019
|
+
LanguageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3020
|
+
LanguageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguageModule, declarations: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageHasDirective, LanguageDirective], imports: [CookieModule], exports: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageHasDirective, LanguageDirective] });
|
|
3021
|
+
LanguageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
|
|
3022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageModule, decorators: [{
|
|
2990
3023
|
type: NgModule,
|
|
2991
3024
|
args: [{
|
|
2992
3025
|
imports: [CookieModule],
|
|
@@ -3242,9 +3275,9 @@ class LoginGuard extends LoginRequireResolver {
|
|
|
3242
3275
|
//
|
|
3243
3276
|
// --------------------------------------------------------------------------
|
|
3244
3277
|
LoginGuard.redirectUrl = '/login';
|
|
3245
|
-
LoginGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3246
|
-
LoginGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3278
|
+
LoginGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3279
|
+
LoginGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginGuard, providedIn: 'root' });
|
|
3280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginGuard, decorators: [{
|
|
3248
3281
|
type: Injectable,
|
|
3249
3282
|
args: [{ providedIn: 'root' }]
|
|
3250
3283
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -3277,9 +3310,9 @@ class LoginNotGuard extends LoginRequireResolver {
|
|
|
3277
3310
|
//
|
|
3278
3311
|
// --------------------------------------------------------------------------
|
|
3279
3312
|
LoginNotGuard.redirectUrl = '/';
|
|
3280
|
-
LoginNotGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3281
|
-
LoginNotGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3313
|
+
LoginNotGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginNotGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3314
|
+
LoginNotGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
|
|
3315
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginNotGuard, decorators: [{
|
|
3283
3316
|
type: Injectable,
|
|
3284
3317
|
args: [{ providedIn: 'root' }]
|
|
3285
3318
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -3325,9 +3358,9 @@ class LoginIfCanGuard extends LoginGuard {
|
|
|
3325
3358
|
return super.canActivate(route, state);
|
|
3326
3359
|
}
|
|
3327
3360
|
}
|
|
3328
|
-
LoginIfCanGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3329
|
-
LoginIfCanGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3330
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3361
|
+
LoginIfCanGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginIfCanGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3362
|
+
LoginIfCanGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
|
|
3363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginIfCanGuard, decorators: [{
|
|
3331
3364
|
type: Injectable,
|
|
3332
3365
|
args: [{ providedIn: 'root' }]
|
|
3333
3366
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -3345,9 +3378,9 @@ class LoginResolver extends LoginRequireResolver {
|
|
|
3345
3378
|
super(login);
|
|
3346
3379
|
}
|
|
3347
3380
|
}
|
|
3348
|
-
LoginResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3349
|
-
LoginResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3381
|
+
LoginResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginResolver, deps: [{ token: LoginBaseService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3382
|
+
LoginResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginResolver, providedIn: 'root' });
|
|
3383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginResolver, decorators: [{
|
|
3351
3384
|
type: Injectable,
|
|
3352
3385
|
args: [{ providedIn: 'root' }]
|
|
3353
3386
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -4085,9 +4118,9 @@ class PrettifyPipe {
|
|
|
4085
4118
|
//
|
|
4086
4119
|
// --------------------------------------------------------------------------
|
|
4087
4120
|
PrettifyPipe.EMPTY_SYMBOL = '-';
|
|
4088
|
-
PrettifyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4089
|
-
PrettifyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4090
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4121
|
+
PrettifyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4122
|
+
PrettifyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PrettifyPipe, name: "viPrettify" });
|
|
4123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PrettifyPipe, decorators: [{
|
|
4091
4124
|
type: Pipe,
|
|
4092
4125
|
args: [{
|
|
4093
4126
|
name: 'viPrettify'
|
|
@@ -4104,9 +4137,9 @@ class CamelCasePipe {
|
|
|
4104
4137
|
return !_.isNil(value) ? _.camelCase(value) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4105
4138
|
}
|
|
4106
4139
|
}
|
|
4107
|
-
CamelCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4108
|
-
CamelCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4140
|
+
CamelCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4141
|
+
CamelCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CamelCasePipe, name: "viCamelCase" });
|
|
4142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CamelCasePipe, decorators: [{
|
|
4110
4143
|
type: Pipe,
|
|
4111
4144
|
args: [{
|
|
4112
4145
|
name: 'viCamelCase'
|
|
@@ -4153,9 +4186,9 @@ class FinancePipe {
|
|
|
4153
4186
|
//
|
|
4154
4187
|
// --------------------------------------------------------------------------
|
|
4155
4188
|
FinancePipe.DEFAULT_FORMAT = '0,0';
|
|
4156
|
-
FinancePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4157
|
-
FinancePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4189
|
+
FinancePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4190
|
+
FinancePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FinancePipe, name: "viFinance" });
|
|
4191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FinancePipe, decorators: [{
|
|
4159
4192
|
type: Pipe,
|
|
4160
4193
|
args: [{
|
|
4161
4194
|
name: 'viFinance'
|
|
@@ -4219,9 +4252,9 @@ class MomentDatePipe {
|
|
|
4219
4252
|
//
|
|
4220
4253
|
// --------------------------------------------------------------------------
|
|
4221
4254
|
MomentDatePipe.DEFAULT_FORMAT = 'LLL';
|
|
4222
|
-
MomentDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4223
|
-
MomentDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4255
|
+
MomentDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4256
|
+
MomentDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentDatePipe, name: "viMomentDate" });
|
|
4257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDatePipe, decorators: [{
|
|
4225
4258
|
type: Pipe,
|
|
4226
4259
|
args: [{
|
|
4227
4260
|
name: 'viMomentDate'
|
|
@@ -4265,9 +4298,9 @@ MomentDateAdaptivePipe.HOUR_FORMAT = 'HH:ss';
|
|
|
4265
4298
|
MomentDateAdaptivePipe.DAY_FORMAT = 'DD MMM HH:ss';
|
|
4266
4299
|
MomentDateAdaptivePipe.MONTH_FORMAT = 'DD MMM HH:ss';
|
|
4267
4300
|
MomentDateAdaptivePipe.YEAR_FORMAT = 'LLL';
|
|
4268
|
-
MomentDateAdaptivePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4269
|
-
MomentDateAdaptivePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4301
|
+
MomentDateAdaptivePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4302
|
+
MomentDateAdaptivePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentDateAdaptivePipe, name: "viMomentAdaptiveDate" });
|
|
4303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
|
|
4271
4304
|
type: Pipe,
|
|
4272
4305
|
args: [{
|
|
4273
4306
|
name: 'viMomentAdaptiveDate'
|
|
@@ -4284,9 +4317,9 @@ class MomentDateFromNowPipe {
|
|
|
4284
4317
|
return MomentDatePipe.fromNow(value, format);
|
|
4285
4318
|
}
|
|
4286
4319
|
}
|
|
4287
|
-
MomentDateFromNowPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4288
|
-
MomentDateFromNowPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4320
|
+
MomentDateFromNowPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4321
|
+
MomentDateFromNowPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentDateFromNowPipe, name: "viMomentDateFromNow" });
|
|
4322
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
|
|
4290
4323
|
type: Pipe,
|
|
4291
4324
|
args: [{
|
|
4292
4325
|
name: 'viMomentDateFromNow'
|
|
@@ -4315,9 +4348,9 @@ class MomentTimePipe {
|
|
|
4315
4348
|
//
|
|
4316
4349
|
// --------------------------------------------------------------------------
|
|
4317
4350
|
MomentTimePipe.DEFAULT_FORMAT = 'hh:mm:ss';
|
|
4318
|
-
MomentTimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4319
|
-
MomentTimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4320
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4351
|
+
MomentTimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4352
|
+
MomentTimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentTimePipe, name: "viMomentTime" });
|
|
4353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentTimePipe, decorators: [{
|
|
4321
4354
|
type: Pipe,
|
|
4322
4355
|
args: [{
|
|
4323
4356
|
name: 'viMomentTime'
|
|
@@ -4353,9 +4386,9 @@ class NgModelErrorPipe {
|
|
|
4353
4386
|
return this.language.translate('error.form.' + key, value);
|
|
4354
4387
|
}
|
|
4355
4388
|
}
|
|
4356
|
-
NgModelErrorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4357
|
-
NgModelErrorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4389
|
+
NgModelErrorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4390
|
+
NgModelErrorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NgModelErrorPipe, name: "viNgModelError" });
|
|
4391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NgModelErrorPipe, decorators: [{
|
|
4359
4392
|
type: Pipe,
|
|
4360
4393
|
args: [{
|
|
4361
4394
|
name: 'viNgModelError'
|
|
@@ -4396,9 +4429,9 @@ class SanitizePipe {
|
|
|
4396
4429
|
}
|
|
4397
4430
|
}
|
|
4398
4431
|
}
|
|
4399
|
-
SanitizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4400
|
-
SanitizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4401
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4432
|
+
SanitizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SanitizePipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4433
|
+
SanitizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SanitizePipe, name: "viSanitize" });
|
|
4434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SanitizePipe, decorators: [{
|
|
4402
4435
|
type: Pipe,
|
|
4403
4436
|
args: [{
|
|
4404
4437
|
name: 'viSanitize'
|
|
@@ -4415,9 +4448,9 @@ class StartCasePipe {
|
|
|
4415
4448
|
return !_.isEmpty(value) ? value.charAt(0).toUpperCase() + value.slice(1) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4416
4449
|
}
|
|
4417
4450
|
}
|
|
4418
|
-
StartCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4419
|
-
StartCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4451
|
+
StartCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4452
|
+
StartCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: StartCasePipe, name: "viStartCase" });
|
|
4453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StartCasePipe, decorators: [{
|
|
4421
4454
|
type: Pipe,
|
|
4422
4455
|
args: [{
|
|
4423
4456
|
name: 'viStartCase'
|
|
@@ -4434,9 +4467,9 @@ class TruncatePipe {
|
|
|
4434
4467
|
return !_.isEmpty(value) ? _.truncate(value, { length: maxLength }) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4435
4468
|
}
|
|
4436
4469
|
}
|
|
4437
|
-
TruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4438
|
-
TruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4439
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4470
|
+
TruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4471
|
+
TruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TruncatePipe, name: "viTruncate" });
|
|
4472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TruncatePipe, decorators: [{
|
|
4440
4473
|
type: Pipe,
|
|
4441
4474
|
args: [{
|
|
4442
4475
|
name: 'viTruncate'
|
|
@@ -4466,9 +4499,9 @@ class TimePipe {
|
|
|
4466
4499
|
//
|
|
4467
4500
|
// --------------------------------------------------------------------------
|
|
4468
4501
|
TimePipe.DEFAULT_FORMAT = '00:00:00';
|
|
4469
|
-
TimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4470
|
-
TimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4471
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4502
|
+
TimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4503
|
+
TimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TimePipe, name: "viTime" });
|
|
4504
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePipe, decorators: [{
|
|
4472
4505
|
type: Pipe,
|
|
4473
4506
|
args: [{
|
|
4474
4507
|
name: 'viTime'
|
|
@@ -5018,9 +5051,9 @@ class ThemeStyleDirective extends Destroyable {
|
|
|
5018
5051
|
}
|
|
5019
5052
|
}
|
|
5020
5053
|
}
|
|
5021
|
-
ThemeStyleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5022
|
-
ThemeStyleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5023
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5054
|
+
ThemeStyleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeStyleDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5055
|
+
ThemeStyleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ThemeStyleDirective, selector: "[vi-theme-style]", inputs: { flags: "flags", styleName: "styleName", key: ["vi-theme-style", "key"] }, usesInheritance: true, ngImport: i0 });
|
|
5056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeStyleDirective, decorators: [{
|
|
5024
5057
|
type: Directive,
|
|
5025
5058
|
args: [{
|
|
5026
5059
|
selector: '[vi-theme-style]'
|
|
@@ -5121,9 +5154,9 @@ class ThemeStyleHoverDirective extends ThemeStyleDirective {
|
|
|
5121
5154
|
super.flags = value;
|
|
5122
5155
|
}
|
|
5123
5156
|
}
|
|
5124
|
-
ThemeStyleHoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5125
|
-
ThemeStyleHoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5157
|
+
ThemeStyleHoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeStyleHoverDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5158
|
+
ThemeStyleHoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ThemeStyleHoverDirective, selector: "[vi-theme-style-hover]", inputs: { key: ["vi-theme-style-hover", "key"], styleName: "styleName", flags: "flags" }, usesInheritance: true, ngImport: i0 });
|
|
5159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
|
|
5127
5160
|
type: Directive,
|
|
5128
5161
|
args: [{
|
|
5129
5162
|
selector: '[vi-theme-style-hover]'
|
|
@@ -5345,9 +5378,9 @@ class ThemeAssetDirective extends Destroyable {
|
|
|
5345
5378
|
}
|
|
5346
5379
|
}
|
|
5347
5380
|
}
|
|
5348
|
-
ThemeAssetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5349
|
-
ThemeAssetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5381
|
+
ThemeAssetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5382
|
+
ThemeAssetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ThemeAssetDirective, inputs: { isSound: "isSound", isVideo: "isVideo", isFile: "isFile", isImage: "isImage", isBackground: "isBackground", isIgnoreTheme: "isIgnoreTheme", name: "name", extension: "extension" }, host: { listeners: { "error": "errorLoadingHandler($event)" } }, usesInheritance: true, ngImport: i0 });
|
|
5383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetDirective, decorators: [{
|
|
5351
5384
|
type: Directive
|
|
5352
5385
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.ThemeService }, { type: i1.ThemeAssetService }]; }, propDecorators: { errorLoadingHandler: [{
|
|
5353
5386
|
type: HostListener,
|
|
@@ -5404,9 +5437,9 @@ class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
|
|
|
5404
5437
|
return super.name;
|
|
5405
5438
|
}
|
|
5406
5439
|
}
|
|
5407
|
-
ThemeAssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5408
|
-
ThemeAssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5409
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5440
|
+
ThemeAssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5441
|
+
ThemeAssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ThemeAssetBackgroundDirective, selector: "[vi-theme-background]", inputs: { name: ["vi-theme-background", "name"] }, usesInheritance: true, ngImport: i0 });
|
|
5442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
|
|
5410
5443
|
type: Directive,
|
|
5411
5444
|
args: [{
|
|
5412
5445
|
selector: '[vi-theme-background]'
|
|
@@ -5449,9 +5482,9 @@ class ThemeAssetImageDirective extends ThemeAssetDirective {
|
|
|
5449
5482
|
return super.name;
|
|
5450
5483
|
}
|
|
5451
5484
|
}
|
|
5452
|
-
ThemeAssetImageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5453
|
-
ThemeAssetImageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5485
|
+
ThemeAssetImageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetImageDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5486
|
+
ThemeAssetImageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ThemeAssetImageDirective, selector: "[vi-theme-image]", inputs: { name: ["vi-theme-image", "name"] }, usesInheritance: true, ngImport: i0 });
|
|
5487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
|
|
5455
5488
|
type: Directive,
|
|
5456
5489
|
args: [{
|
|
5457
5490
|
selector: '[vi-theme-image]'
|
|
@@ -5493,9 +5526,9 @@ class ThemeAssetIconDirective extends ThemeAssetDirective {
|
|
|
5493
5526
|
return super.name;
|
|
5494
5527
|
}
|
|
5495
5528
|
}
|
|
5496
|
-
ThemeAssetIconDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5497
|
-
ThemeAssetIconDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5498
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5529
|
+
ThemeAssetIconDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetIconDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5530
|
+
ThemeAssetIconDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ThemeAssetIconDirective, selector: "[vi-theme-icon]", inputs: { name: ["vi-theme-icon", "name"] }, usesInheritance: true, ngImport: i0 });
|
|
5531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
|
|
5499
5532
|
type: Directive,
|
|
5500
5533
|
args: [{
|
|
5501
5534
|
selector: '[vi-theme-icon]'
|
|
@@ -5551,9 +5584,9 @@ class ThemeToggleDirective extends Destroyable {
|
|
|
5551
5584
|
this.theme = null;
|
|
5552
5585
|
}
|
|
5553
5586
|
}
|
|
5554
|
-
ThemeToggleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5555
|
-
ThemeToggleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5587
|
+
ThemeToggleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5588
|
+
ThemeToggleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ThemeToggleDirective, selector: "[vi-theme-toggle]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
|
|
5589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeToggleDirective, decorators: [{
|
|
5557
5590
|
type: Directive,
|
|
5558
5591
|
args: [{
|
|
5559
5592
|
selector: '[vi-theme-toggle]'
|
|
@@ -5599,8 +5632,8 @@ class ThemeModule {
|
|
|
5599
5632
|
};
|
|
5600
5633
|
}
|
|
5601
5634
|
}
|
|
5602
|
-
ThemeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5603
|
-
ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
5635
|
+
ThemeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5636
|
+
ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
|
|
5604
5637
|
ThemeAssetImageDirective,
|
|
5605
5638
|
ThemeAssetIconDirective,
|
|
5606
5639
|
ThemeAssetBackgroundDirective,
|
|
@@ -5611,8 +5644,8 @@ ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
5611
5644
|
ThemeAssetBackgroundDirective,
|
|
5612
5645
|
ThemeStyleDirective,
|
|
5613
5646
|
ThemeStyleHoverDirective] });
|
|
5614
|
-
ThemeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
5615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5647
|
+
ThemeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
|
|
5648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, decorators: [{
|
|
5616
5649
|
type: NgModule,
|
|
5617
5650
|
args: [{
|
|
5618
5651
|
imports: [CookieModule],
|
|
@@ -6276,9 +6309,9 @@ class IWindowContent extends DestroyableContainer {
|
|
|
6276
6309
|
}
|
|
6277
6310
|
}
|
|
6278
6311
|
}
|
|
6279
|
-
IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6280
|
-
IWindowContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
6281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
6312
|
+
IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IWindowContent, deps: [{ token: WINDOW_CONTENT_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
6313
|
+
IWindowContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: IWindowContent, selector: "ng-component", inputs: { isDisabled: "isDisabled", window: "window" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
6314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IWindowContent, decorators: [{
|
|
6282
6315
|
type: Component,
|
|
6283
6316
|
args: [{ template: '' }]
|
|
6284
6317
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -6436,9 +6469,9 @@ class INotificationContent extends DestroyableContainer {
|
|
|
6436
6469
|
return this._config;
|
|
6437
6470
|
}
|
|
6438
6471
|
}
|
|
6439
|
-
INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6440
|
-
INotificationContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
6441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
6472
|
+
INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
6473
|
+
INotificationContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: INotificationContent, selector: "ng-component", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
6474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: INotificationContent, decorators: [{
|
|
6442
6475
|
type: Component,
|
|
6443
6476
|
args: [{ template: '' }]
|
|
6444
6477
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { config: [{
|
|
@@ -6664,9 +6697,9 @@ class LazyModuleLoader extends Loadable {
|
|
|
6664
6697
|
return this._modules;
|
|
6665
6698
|
}
|
|
6666
6699
|
}
|
|
6667
|
-
LazyModuleLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6668
|
-
LazyModuleLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
6669
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
6700
|
+
LazyModuleLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LazyModuleLoader, deps: [{ token: i0.Compiler }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6701
|
+
LazyModuleLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
|
|
6702
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LazyModuleLoader, decorators: [{
|
|
6670
6703
|
type: Injectable,
|
|
6671
6704
|
args: [{ providedIn: 'root' }]
|
|
6672
6705
|
}], ctorParameters: function () { return [{ type: i0.Compiler }, { type: i0.Injector }]; } });
|
|
@@ -6823,6 +6856,7 @@ let declarations = [
|
|
|
6823
6856
|
FocusDirective,
|
|
6824
6857
|
ResizeDirective,
|
|
6825
6858
|
ScrollDirective,
|
|
6859
|
+
ScrollDirective1,
|
|
6826
6860
|
ScrollCheckDirective,
|
|
6827
6861
|
ClickToCopyDirective,
|
|
6828
6862
|
SelectOnFocusDirective,
|
|
@@ -6865,8 +6899,8 @@ class VIModule {
|
|
|
6865
6899
|
};
|
|
6866
6900
|
}
|
|
6867
6901
|
}
|
|
6868
|
-
VIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6869
|
-
VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
6902
|
+
VIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6903
|
+
VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: VIModule, declarations: [TimePipe,
|
|
6870
6904
|
FinancePipe,
|
|
6871
6905
|
SanitizePipe,
|
|
6872
6906
|
TruncatePipe,
|
|
@@ -6883,6 +6917,7 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6883
6917
|
FocusDirective,
|
|
6884
6918
|
ResizeDirective,
|
|
6885
6919
|
ScrollDirective,
|
|
6920
|
+
ScrollDirective1,
|
|
6886
6921
|
ScrollCheckDirective,
|
|
6887
6922
|
ClickToCopyDirective,
|
|
6888
6923
|
SelectOnFocusDirective,
|
|
@@ -6908,6 +6943,7 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6908
6943
|
FocusDirective,
|
|
6909
6944
|
ResizeDirective,
|
|
6910
6945
|
ScrollDirective,
|
|
6946
|
+
ScrollDirective1,
|
|
6911
6947
|
ScrollCheckDirective,
|
|
6912
6948
|
ClickToCopyDirective,
|
|
6913
6949
|
SelectOnFocusDirective,
|
|
@@ -6917,8 +6953,8 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6917
6953
|
HTMLContentTitleDirective,
|
|
6918
6954
|
AutoScrollBottomDirective,
|
|
6919
6955
|
AspectRatioResizeDirective] });
|
|
6920
|
-
VIModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
6921
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
6956
|
+
VIModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
|
|
6957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VIModule, decorators: [{
|
|
6922
6958
|
type: NgModule,
|
|
6923
6959
|
args: [{
|
|
6924
6960
|
imports,
|
|
@@ -6953,5 +6989,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
|
|
|
6953
6989
|
* Generated bundle index. Do not edit.
|
|
6954
6990
|
*/
|
|
6955
6991
|
|
|
6956
|
-
export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BooleanValueStorage, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, DateValueStorage, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVIOptions, IWindow, IWindowContent, InfiniteScrollDirective, IsBrowserDirective, IsServerDirective, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageModule, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LazyModuleLoader, ListItem, ListItems, LocalStorageService, LoginBaseService, LoginBaseServiceEvent, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, LoginTokenStorage, MenuItem, MenuItemBase, MenuItems, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationConfig, NotificationEvent, NotificationService, NotificationServiceEvent, PipeBaseService, PlatformService, PrettifyPipe, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, RouterSelectListItems, SanitizePipe, ScrollCheckDirective, ScrollDirective, SelectListItem, SelectListItems, SelectOnFocusDirective, StartCasePipe, StructureDirective, THEME_OPTIONS, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetIconDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, UserBaseService, UserBaseServiceEvent, VIModule, VI_ANGULAR_OPTIONS, ValueStorage, ViewUtil, WINDOW_CONTENT_CONTAINER, WindowAlign, WindowBase, WindowClosedError, WindowConfig, WindowEvent, WindowService, WindowServiceEvent, cookieServiceFactory, initializerFactory, languageServiceFactory, localStorageServiceFactory, loggerServiceFactory, loginTokenStorageServiceFactory, nativeWindowServiceFactory, themeAssetServiceFactory, themeServiceFactory };
|
|
6992
|
+
export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BooleanValueStorage, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, DateValueStorage, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVIOptions, IWindow, IWindowContent, InfiniteScrollDirective, IsBrowserDirective, IsServerDirective, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageModule, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LazyModuleLoader, ListItem, ListItems, LocalStorageService, LoginBaseService, LoginBaseServiceEvent, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, LoginTokenStorage, MenuItem, MenuItemBase, MenuItems, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationConfig, NotificationEvent, NotificationService, NotificationServiceEvent, PipeBaseService, PlatformService, PrettifyPipe, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, RouterSelectListItems, SanitizePipe, ScrollCheckDirective, ScrollDirective, ScrollDirective1, SelectListItem, SelectListItems, SelectOnFocusDirective, StartCasePipe, StructureDirective, THEME_OPTIONS, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetIconDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, UserBaseService, UserBaseServiceEvent, VIModule, VI_ANGULAR_OPTIONS, ValueStorage, ViewUtil, WINDOW_CONTENT_CONTAINER, WindowAlign, WindowBase, WindowClosedError, WindowConfig, WindowEvent, WindowService, WindowServiceEvent, cookieServiceFactory, initializerFactory, languageServiceFactory, localStorageServiceFactory, loggerServiceFactory, loginTokenStorageServiceFactory, nativeWindowServiceFactory, themeAssetServiceFactory, themeServiceFactory };
|
|
6957
6993
|
//# sourceMappingURL=ts-core-angular.mjs.map
|