@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
|
@@ -92,9 +92,9 @@ class ApplicationBaseComponent extends DestroyableContainer {
|
|
|
92
92
|
return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.promise : null;
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
|
-
ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
96
|
-
ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
97
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
95
|
+
ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
96
|
+
ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ApplicationBaseComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
97
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ApplicationBaseComponent, decorators: [{
|
|
98
98
|
type: Component,
|
|
99
99
|
args: [{ template: '' }]
|
|
100
100
|
}], ctorParameters: function () { return []; } });
|
|
@@ -916,9 +916,9 @@ class AssetBackgroundDirective extends Destroyable {
|
|
|
916
916
|
return this._background;
|
|
917
917
|
}
|
|
918
918
|
}
|
|
919
|
-
AssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
920
|
-
AssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
921
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
919
|
+
AssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
920
|
+
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 });
|
|
921
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
|
|
922
922
|
type: Directive,
|
|
923
923
|
args: [{
|
|
924
924
|
selector: '[vi-asset-background]'
|
|
@@ -948,9 +948,9 @@ class AssetBackgroundPipe {
|
|
|
948
948
|
return Assets.getBackground(name, extension);
|
|
949
949
|
}
|
|
950
950
|
}
|
|
951
|
-
AssetBackgroundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
952
|
-
AssetBackgroundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
951
|
+
AssetBackgroundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
952
|
+
AssetBackgroundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundPipe, name: "viAssetBackground" });
|
|
953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
|
|
954
954
|
type: Pipe,
|
|
955
955
|
args: [{
|
|
956
956
|
name: 'viAssetBackground'
|
|
@@ -967,9 +967,9 @@ class AssetIconPipe {
|
|
|
967
967
|
return Assets.getIcon(name, extension);
|
|
968
968
|
}
|
|
969
969
|
}
|
|
970
|
-
AssetIconPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
971
|
-
AssetIconPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
972
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
970
|
+
AssetIconPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
971
|
+
AssetIconPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetIconPipe, name: "viAssetIcon" });
|
|
972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetIconPipe, decorators: [{
|
|
973
973
|
type: Pipe,
|
|
974
974
|
args: [{
|
|
975
975
|
name: 'viAssetIcon'
|
|
@@ -986,9 +986,9 @@ class AssetFilePipe {
|
|
|
986
986
|
return Assets.getFile(name, extension);
|
|
987
987
|
}
|
|
988
988
|
}
|
|
989
|
-
AssetFilePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
990
|
-
AssetFilePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
991
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
989
|
+
AssetFilePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
990
|
+
AssetFilePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetFilePipe, name: "viAssetFile" });
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetFilePipe, decorators: [{
|
|
992
992
|
type: Pipe,
|
|
993
993
|
args: [{
|
|
994
994
|
name: 'viAssetFile'
|
|
@@ -1005,9 +1005,9 @@ class AssetVideoPipe {
|
|
|
1005
1005
|
return Assets.getVideo(name, extension);
|
|
1006
1006
|
}
|
|
1007
1007
|
}
|
|
1008
|
-
AssetVideoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1009
|
-
AssetVideoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
1010
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1008
|
+
AssetVideoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1009
|
+
AssetVideoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetVideoPipe, name: "viAssetVideo" });
|
|
1010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetVideoPipe, decorators: [{
|
|
1011
1011
|
type: Pipe,
|
|
1012
1012
|
args: [{
|
|
1013
1013
|
name: 'viAssetVideo'
|
|
@@ -1024,9 +1024,9 @@ class AssetSoundPipe {
|
|
|
1024
1024
|
return Assets.getSound(name, extension);
|
|
1025
1025
|
}
|
|
1026
1026
|
}
|
|
1027
|
-
AssetSoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1028
|
-
AssetSoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
1029
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1027
|
+
AssetSoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1028
|
+
AssetSoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetSoundPipe, name: "viAssetSound" });
|
|
1029
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetSoundPipe, decorators: [{
|
|
1030
1030
|
type: Pipe,
|
|
1031
1031
|
args: [{
|
|
1032
1032
|
name: 'viAssetSound'
|
|
@@ -1043,9 +1043,9 @@ class AssetImagePipe {
|
|
|
1043
1043
|
return Assets.getImage(name, extension);
|
|
1044
1044
|
}
|
|
1045
1045
|
}
|
|
1046
|
-
AssetImagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1047
|
-
AssetImagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
1048
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1046
|
+
AssetImagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1047
|
+
AssetImagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AssetImagePipe, name: "viAssetImage" });
|
|
1048
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetImagePipe, decorators: [{
|
|
1049
1049
|
type: Pipe,
|
|
1050
1050
|
args: [{
|
|
1051
1051
|
name: 'viAssetImage'
|
|
@@ -1055,10 +1055,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1055
1055
|
let declarations$3 = [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective];
|
|
1056
1056
|
class AssetModule {
|
|
1057
1057
|
}
|
|
1058
|
-
AssetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1059
|
-
AssetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
1060
|
-
AssetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
1061
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1058
|
+
AssetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1059
|
+
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] });
|
|
1060
|
+
AssetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetModule, imports: [CommonModule] });
|
|
1061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AssetModule, decorators: [{
|
|
1062
1062
|
type: NgModule,
|
|
1063
1063
|
args: [{
|
|
1064
1064
|
imports: [CommonModule],
|
|
@@ -1167,9 +1167,9 @@ class PlatformService extends DestroyableContainer {
|
|
|
1167
1167
|
return this._isPlatformBrowser;
|
|
1168
1168
|
}
|
|
1169
1169
|
}
|
|
1170
|
-
PlatformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1171
|
-
PlatformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
1172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1170
|
+
PlatformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1171
|
+
PlatformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PlatformService, providedIn: 'root' });
|
|
1172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PlatformService, decorators: [{
|
|
1173
1173
|
type: Injectable,
|
|
1174
1174
|
args: [{ providedIn: 'root' }]
|
|
1175
1175
|
}], ctorParameters: function () {
|
|
@@ -1202,10 +1202,10 @@ class CookieModule {
|
|
|
1202
1202
|
};
|
|
1203
1203
|
}
|
|
1204
1204
|
}
|
|
1205
|
-
CookieModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1206
|
-
CookieModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
1207
|
-
CookieModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
1208
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1205
|
+
CookieModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1206
|
+
CookieModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CookieModule });
|
|
1207
|
+
CookieModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CookieModule });
|
|
1208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CookieModule, decorators: [{
|
|
1209
1209
|
type: NgModule
|
|
1210
1210
|
}] });
|
|
1211
1211
|
function cookieServiceFactory(nativeWindow, platform, options) {
|
|
@@ -1406,9 +1406,9 @@ class AspectRatioResizeDirective extends DestroyableContainer {
|
|
|
1406
1406
|
//
|
|
1407
1407
|
// --------------------------------------------------------------------------
|
|
1408
1408
|
AspectRatioResizeDirective.UPDATE_DELAY = 100;
|
|
1409
|
-
AspectRatioResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1410
|
-
AspectRatioResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1409
|
+
AspectRatioResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1410
|
+
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 });
|
|
1411
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
|
|
1412
1412
|
type: Directive,
|
|
1413
1413
|
args: [{
|
|
1414
1414
|
selector: '[vi-aspect-ratio]'
|
|
@@ -1425,7 +1425,7 @@ var Direction;
|
|
|
1425
1425
|
Direction["HORIZONTAL"] = "HORIZONTAL";
|
|
1426
1426
|
})(Direction || (Direction = {}));
|
|
1427
1427
|
|
|
1428
|
-
class
|
|
1428
|
+
class ScrollDirectiveBase extends Destroyable {
|
|
1429
1429
|
// --------------------------------------------------------------------------
|
|
1430
1430
|
//
|
|
1431
1431
|
// Constructor
|
|
@@ -1443,7 +1443,7 @@ class ScrollDirective extends Destroyable {
|
|
|
1443
1443
|
this._scrollValue = 0;
|
|
1444
1444
|
this.initializeHandler = () => this.initialize();
|
|
1445
1445
|
this.element = ViewUtil.parseElement(element);
|
|
1446
|
-
this.timer = setTimeout(this.initializeHandler,
|
|
1446
|
+
this.timer = setTimeout(this.initializeHandler, ScrollDirectiveBase.INITIALIZATION_DELAY);
|
|
1447
1447
|
}
|
|
1448
1448
|
// --------------------------------------------------------------------------
|
|
1449
1449
|
//
|
|
@@ -1521,14 +1521,11 @@ class ScrollDirective extends Destroyable {
|
|
|
1521
1521
|
// Static Properties
|
|
1522
1522
|
//
|
|
1523
1523
|
// --------------------------------------------------------------------------
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1528
|
-
type:
|
|
1529
|
-
args: [{
|
|
1530
|
-
selector: '[vi-scroll]'
|
|
1531
|
-
}]
|
|
1524
|
+
ScrollDirectiveBase.INITIALIZATION_DELAY = 1;
|
|
1525
|
+
ScrollDirectiveBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirectiveBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1526
|
+
ScrollDirectiveBase.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirectiveBase });
|
|
1527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirectiveBase, decorators: [{
|
|
1528
|
+
type: Injectable
|
|
1532
1529
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { scrolled: [{
|
|
1533
1530
|
type: Output
|
|
1534
1531
|
}], scrollHandler: [{
|
|
@@ -1538,6 +1535,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
1538
1535
|
type: Input
|
|
1539
1536
|
}] } });
|
|
1540
1537
|
|
|
1538
|
+
class ScrollDirective extends ScrollDirectiveBase {
|
|
1539
|
+
// --------------------------------------------------------------------------
|
|
1540
|
+
//
|
|
1541
|
+
// Constructor
|
|
1542
|
+
//
|
|
1543
|
+
// --------------------------------------------------------------------------
|
|
1544
|
+
constructor(element) {
|
|
1545
|
+
super(element);
|
|
1546
|
+
}
|
|
1547
|
+
}
|
|
1548
|
+
ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1549
|
+
ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective, selector: "[vi-scroll]", usesInheritance: true, ngImport: i0 });
|
|
1550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1551
|
+
type: Directive,
|
|
1552
|
+
args: [{
|
|
1553
|
+
selector: '[vi-scroll]'
|
|
1554
|
+
}]
|
|
1555
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
1556
|
+
|
|
1541
1557
|
class InfiniteScrollDirective extends ScrollDirective {
|
|
1542
1558
|
constructor() {
|
|
1543
1559
|
super(...arguments);
|
|
@@ -1594,9 +1610,9 @@ class InfiniteScrollDirective extends ScrollDirective {
|
|
|
1594
1610
|
return this.element.scrollHeight;
|
|
1595
1611
|
}
|
|
1596
1612
|
}
|
|
1597
|
-
InfiniteScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1598
|
-
InfiniteScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1613
|
+
InfiniteScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1614
|
+
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 });
|
|
1615
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
|
|
1600
1616
|
type: Directive,
|
|
1601
1617
|
args: [{
|
|
1602
1618
|
selector: '[vi-infinite-scroll]'
|
|
@@ -1707,9 +1723,9 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
|
|
|
1707
1723
|
this.triggerTimer = setTimeout(this.checkTrigger, InfiniteScrollDirective.INITIALIZATION_DELAY);
|
|
1708
1724
|
}
|
|
1709
1725
|
}
|
|
1710
|
-
AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1711
|
-
AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1726
|
+
AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1727
|
+
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 });
|
|
1728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
|
|
1713
1729
|
type: Directive,
|
|
1714
1730
|
args: [{
|
|
1715
1731
|
selector: '[vi-auto-scroll-bottom]'
|
|
@@ -1734,7 +1750,7 @@ class ClickToCopyDirective extends Destroyable {
|
|
|
1734
1750
|
clickHandler(event) {
|
|
1735
1751
|
ViewUtil.selectContent(this.element, true);
|
|
1736
1752
|
clearTimeout(this.selectionClearTimer);
|
|
1737
|
-
this.selectionClearTimer = setTimeout(this.selectionRemove, DateUtil.
|
|
1753
|
+
this.selectionClearTimer = setTimeout(this.selectionRemove, DateUtil.MILLISECONDS_SECOND / 2);
|
|
1738
1754
|
}
|
|
1739
1755
|
// --------------------------------------------------------------------------
|
|
1740
1756
|
//
|
|
@@ -1750,9 +1766,9 @@ class ClickToCopyDirective extends Destroyable {
|
|
|
1750
1766
|
clearTimeout(this.selectionClearTimer);
|
|
1751
1767
|
}
|
|
1752
1768
|
}
|
|
1753
|
-
ClickToCopyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1754
|
-
ClickToCopyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1755
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1769
|
+
ClickToCopyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1770
|
+
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 });
|
|
1771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToCopyDirective, decorators: [{
|
|
1756
1772
|
type: Directive,
|
|
1757
1773
|
args: [{
|
|
1758
1774
|
selector: '[vi-click-to-copy]'
|
|
@@ -1798,9 +1814,9 @@ class ClickToSelectDirective extends Destroyable {
|
|
|
1798
1814
|
this.element = null;
|
|
1799
1815
|
}
|
|
1800
1816
|
}
|
|
1801
|
-
ClickToSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1802
|
-
ClickToSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1803
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1817
|
+
ClickToSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1818
|
+
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 });
|
|
1819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ClickToSelectDirective, decorators: [{
|
|
1804
1820
|
type: Directive,
|
|
1805
1821
|
args: [{
|
|
1806
1822
|
selector: '[vi-click-to-select]'
|
|
@@ -1891,9 +1907,9 @@ class FocusDirective extends Destroyable {
|
|
|
1891
1907
|
this.focus();
|
|
1892
1908
|
}
|
|
1893
1909
|
}
|
|
1894
|
-
FocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1895
|
-
FocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1896
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1910
|
+
FocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1911
|
+
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 });
|
|
1912
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FocusDirective, decorators: [{
|
|
1897
1913
|
type: Directive,
|
|
1898
1914
|
args: [{
|
|
1899
1915
|
selector: '[vi-focus]'
|
|
@@ -1934,9 +1950,9 @@ class SelectOnFocusDirective extends Destroyable {
|
|
|
1934
1950
|
this.element = null;
|
|
1935
1951
|
}
|
|
1936
1952
|
}
|
|
1937
|
-
SelectOnFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
1938
|
-
SelectOnFocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
1939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
1953
|
+
SelectOnFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1954
|
+
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 });
|
|
1955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
|
|
1940
1956
|
type: Directive,
|
|
1941
1957
|
args: [{
|
|
1942
1958
|
selector: '[vi-select-on-focus]'
|
|
@@ -2000,9 +2016,9 @@ class ResizeDirective extends Destroyable {
|
|
|
2000
2016
|
}
|
|
2001
2017
|
}
|
|
2002
2018
|
}
|
|
2003
|
-
ResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2004
|
-
ResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2019
|
+
ResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2020
|
+
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 });
|
|
2021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ResizeDirective, decorators: [{
|
|
2006
2022
|
type: Directive,
|
|
2007
2023
|
args: [{
|
|
2008
2024
|
selector: '[vi-resize]'
|
|
@@ -2088,6 +2104,25 @@ class StructureDirective extends DestroyableContainer {
|
|
|
2088
2104
|
}
|
|
2089
2105
|
}
|
|
2090
2106
|
|
|
2107
|
+
class ScrollDirective1 extends ScrollDirectiveBase {
|
|
2108
|
+
// --------------------------------------------------------------------------
|
|
2109
|
+
//
|
|
2110
|
+
// Constructor
|
|
2111
|
+
//
|
|
2112
|
+
// --------------------------------------------------------------------------
|
|
2113
|
+
constructor(element) {
|
|
2114
|
+
super(element);
|
|
2115
|
+
}
|
|
2116
|
+
}
|
|
2117
|
+
ScrollDirective1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2118
|
+
ScrollDirective1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective1, selector: "[vi-scroll-1]", usesInheritance: true, ngImport: i0 });
|
|
2119
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, decorators: [{
|
|
2120
|
+
type: Directive,
|
|
2121
|
+
args: [{
|
|
2122
|
+
selector: '[vi-scroll-1]'
|
|
2123
|
+
}]
|
|
2124
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2125
|
+
|
|
2091
2126
|
class ScrollCheckDirective extends DestroyableContainer {
|
|
2092
2127
|
//--------------------------------------------------------------------------
|
|
2093
2128
|
//
|
|
@@ -2163,9 +2198,9 @@ class ScrollCheckDirective extends DestroyableContainer {
|
|
|
2163
2198
|
return this._scrollLimit;
|
|
2164
2199
|
}
|
|
2165
2200
|
}
|
|
2166
|
-
ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2167
|
-
ScrollCheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2168
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2201
|
+
ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2202
|
+
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 });
|
|
2203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollCheckDirective, decorators: [{
|
|
2169
2204
|
type: Directive,
|
|
2170
2205
|
args: [{
|
|
2171
2206
|
selector: '[vi-scroll-check]'
|
|
@@ -2247,9 +2282,9 @@ class LanguagePipe extends DestroyableContainer {
|
|
|
2247
2282
|
this.lastValue = null;
|
|
2248
2283
|
}
|
|
2249
2284
|
}
|
|
2250
|
-
LanguagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2251
|
-
LanguagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2285
|
+
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 });
|
|
2286
|
+
LanguagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipe, name: "viTranslate", pure: false });
|
|
2287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipe, decorators: [{
|
|
2253
2288
|
type: Pipe,
|
|
2254
2289
|
args: [{
|
|
2255
2290
|
name: 'viTranslate',
|
|
@@ -2305,9 +2340,9 @@ class HTMLTitleDirective extends Destroyable {
|
|
|
2305
2340
|
return this._value;
|
|
2306
2341
|
}
|
|
2307
2342
|
}
|
|
2308
|
-
HTMLTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2309
|
-
HTMLTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2343
|
+
HTMLTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2344
|
+
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 });
|
|
2345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLTitleDirective, decorators: [{
|
|
2311
2346
|
type: Directive,
|
|
2312
2347
|
args: [{
|
|
2313
2348
|
selector: '[vi-html-title]'
|
|
@@ -2366,9 +2401,9 @@ class HTMLContentTitleDirective extends Destroyable {
|
|
|
2366
2401
|
return this._value;
|
|
2367
2402
|
}
|
|
2368
2403
|
}
|
|
2369
|
-
HTMLContentTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2370
|
-
HTMLContentTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2404
|
+
HTMLContentTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2405
|
+
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 });
|
|
2406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
|
|
2372
2407
|
type: Directive,
|
|
2373
2408
|
args: [{
|
|
2374
2409
|
selector: '[vi-html-content-title]'
|
|
@@ -2378,47 +2413,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2378
2413
|
args: ['vi-html-content-title']
|
|
2379
2414
|
}] } });
|
|
2380
2415
|
|
|
2381
|
-
class IsBrowserDirective {
|
|
2416
|
+
class IsBrowserDirective extends StructureDirective {
|
|
2382
2417
|
// --------------------------------------------------------------------------
|
|
2383
2418
|
//
|
|
2384
2419
|
// Constructor
|
|
2385
2420
|
//
|
|
2386
2421
|
// --------------------------------------------------------------------------
|
|
2387
|
-
constructor(
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
}
|
|
2422
|
+
constructor(templateRef, container, platform) {
|
|
2423
|
+
super(templateRef, container);
|
|
2424
|
+
this.isNeedAdd = platform.isPlatformBrowser;
|
|
2391
2425
|
}
|
|
2392
2426
|
}
|
|
2393
|
-
IsBrowserDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2394
|
-
IsBrowserDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2427
|
+
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 });
|
|
2428
|
+
IsBrowserDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: IsBrowserDirective, selector: "[viIsBrowser]", usesInheritance: true, ngImport: i0 });
|
|
2429
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IsBrowserDirective, decorators: [{
|
|
2396
2430
|
type: Directive,
|
|
2397
2431
|
args: [{
|
|
2398
2432
|
selector: '[viIsBrowser]'
|
|
2399
2433
|
}]
|
|
2400
|
-
}], ctorParameters: function () { return [{ type:
|
|
2434
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: PlatformService }]; } });
|
|
2401
2435
|
|
|
2402
|
-
class IsServerDirective {
|
|
2436
|
+
class IsServerDirective extends StructureDirective {
|
|
2403
2437
|
// --------------------------------------------------------------------------
|
|
2404
2438
|
//
|
|
2405
2439
|
// Constructor
|
|
2406
2440
|
//
|
|
2407
2441
|
// --------------------------------------------------------------------------
|
|
2408
|
-
constructor(
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
}
|
|
2442
|
+
constructor(templateRef, container, platform) {
|
|
2443
|
+
super(templateRef, container);
|
|
2444
|
+
this.isNeedAdd = platform.isPlatformServer;
|
|
2412
2445
|
}
|
|
2413
2446
|
}
|
|
2414
|
-
IsServerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2415
|
-
IsServerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2416
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2447
|
+
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 });
|
|
2448
|
+
IsServerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: IsServerDirective, selector: "[viIsServer]", usesInheritance: true, ngImport: i0 });
|
|
2449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IsServerDirective, decorators: [{
|
|
2417
2450
|
type: Directive,
|
|
2418
2451
|
args: [{
|
|
2419
2452
|
selector: '[viIsServer]'
|
|
2420
2453
|
}]
|
|
2421
|
-
}], ctorParameters: function () { return [{ type:
|
|
2454
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: PlatformService }]; } });
|
|
2422
2455
|
|
|
2423
2456
|
let normalizeValidator = (validator) => {
|
|
2424
2457
|
let func = validator.validate.bind(validator);
|
|
@@ -2620,9 +2653,9 @@ class FormElementSync extends ValueAccessor {
|
|
|
2620
2653
|
this.timer = null;
|
|
2621
2654
|
}
|
|
2622
2655
|
}
|
|
2623
|
-
FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2624
|
-
FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2625
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2656
|
+
FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2657
|
+
FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FormElementSync, usesInheritance: true, ngImport: i0 });
|
|
2658
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormElementSync, decorators: [{
|
|
2626
2659
|
type: Directive
|
|
2627
2660
|
}], ctorParameters: function () { return [{ type: Array }]; } });
|
|
2628
2661
|
|
|
@@ -2652,9 +2685,9 @@ class LanguagePipePure extends DestroyableContainer {
|
|
|
2652
2685
|
this.language = null;
|
|
2653
2686
|
}
|
|
2654
2687
|
}
|
|
2655
|
-
LanguagePipePure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2656
|
-
LanguagePipePure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2657
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2688
|
+
LanguagePipePure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2689
|
+
LanguagePipePure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipePure, name: "viTranslatePure" });
|
|
2690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipePure, decorators: [{
|
|
2658
2691
|
type: Pipe,
|
|
2659
2692
|
args: [{
|
|
2660
2693
|
name: 'viTranslatePure'
|
|
@@ -2705,9 +2738,9 @@ class LanguageResolver extends LanguageRequireResolver {
|
|
|
2705
2738
|
super(language);
|
|
2706
2739
|
}
|
|
2707
2740
|
}
|
|
2708
|
-
LanguageResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2709
|
-
LanguageResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
2710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2741
|
+
LanguageResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2742
|
+
LanguageResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
|
|
2743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageResolver, decorators: [{
|
|
2711
2744
|
type: Injectable,
|
|
2712
2745
|
args: [{ providedIn: 'root' }]
|
|
2713
2746
|
}], ctorParameters: function () { return [{ type: i1.LanguageService }]; } });
|
|
@@ -2781,9 +2814,9 @@ class LanguageDirective extends Destroyable {
|
|
|
2781
2814
|
return this._params;
|
|
2782
2815
|
}
|
|
2783
2816
|
}
|
|
2784
|
-
LanguageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2785
|
-
LanguageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2817
|
+
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 });
|
|
2818
|
+
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 });
|
|
2819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageDirective, decorators: [{
|
|
2787
2820
|
type: Directive,
|
|
2788
2821
|
args: [{
|
|
2789
2822
|
selector: '[vi-translate]'
|
|
@@ -2837,9 +2870,9 @@ class LanguagePipeHas extends DestroyableContainer {
|
|
|
2837
2870
|
this.key = null;
|
|
2838
2871
|
}
|
|
2839
2872
|
}
|
|
2840
|
-
LanguagePipeHas.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2841
|
-
LanguagePipeHas.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2873
|
+
LanguagePipeHas.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2874
|
+
LanguagePipeHas.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHas, name: "viTranslateHas", pure: false });
|
|
2875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHas, decorators: [{
|
|
2843
2876
|
type: Pipe,
|
|
2844
2877
|
args: [{
|
|
2845
2878
|
name: 'viTranslateHas',
|
|
@@ -2873,9 +2906,9 @@ class LanguagePipeHasPure extends DestroyableContainer {
|
|
|
2873
2906
|
this.language = null;
|
|
2874
2907
|
}
|
|
2875
2908
|
}
|
|
2876
|
-
LanguagePipeHasPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2877
|
-
LanguagePipeHasPure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
2878
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2909
|
+
LanguagePipeHasPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2910
|
+
LanguagePipeHasPure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHasPure, name: "viTranslateHasPure" });
|
|
2911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
|
|
2879
2912
|
type: Pipe,
|
|
2880
2913
|
args: [{
|
|
2881
2914
|
name: 'viTranslateHasPure',
|
|
@@ -2942,9 +2975,9 @@ class LanguageHasDirective extends StructureDirective {
|
|
|
2942
2975
|
return this._isOnlyIfNotEmpty;
|
|
2943
2976
|
}
|
|
2944
2977
|
}
|
|
2945
|
-
LanguageHasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2946
|
-
LanguageHasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
2947
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
2978
|
+
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 });
|
|
2979
|
+
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 });
|
|
2980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageHasDirective, decorators: [{
|
|
2948
2981
|
type: Directive,
|
|
2949
2982
|
args: [{
|
|
2950
2983
|
selector: '[viTranslateHas]'
|
|
@@ -2986,10 +3019,10 @@ class LanguageModule {
|
|
|
2986
3019
|
};
|
|
2987
3020
|
}
|
|
2988
3021
|
}
|
|
2989
|
-
LanguageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
2990
|
-
LanguageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
2991
|
-
LanguageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
2992
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3022
|
+
LanguageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3023
|
+
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] });
|
|
3024
|
+
LanguageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
|
|
3025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LanguageModule, decorators: [{
|
|
2993
3026
|
type: NgModule,
|
|
2994
3027
|
args: [{
|
|
2995
3028
|
imports: [CookieModule],
|
|
@@ -3255,9 +3288,9 @@ class LoginGuard extends LoginRequireResolver {
|
|
|
3255
3288
|
//
|
|
3256
3289
|
// --------------------------------------------------------------------------
|
|
3257
3290
|
LoginGuard.redirectUrl = '/login';
|
|
3258
|
-
LoginGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3259
|
-
LoginGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3260
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3291
|
+
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 });
|
|
3292
|
+
LoginGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginGuard, providedIn: 'root' });
|
|
3293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginGuard, decorators: [{
|
|
3261
3294
|
type: Injectable,
|
|
3262
3295
|
args: [{ providedIn: 'root' }]
|
|
3263
3296
|
}], ctorParameters: function () {
|
|
@@ -3292,9 +3325,9 @@ class LoginNotGuard extends LoginRequireResolver {
|
|
|
3292
3325
|
//
|
|
3293
3326
|
// --------------------------------------------------------------------------
|
|
3294
3327
|
LoginNotGuard.redirectUrl = '/';
|
|
3295
|
-
LoginNotGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3296
|
-
LoginNotGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3328
|
+
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 });
|
|
3329
|
+
LoginNotGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
|
|
3330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginNotGuard, decorators: [{
|
|
3298
3331
|
type: Injectable,
|
|
3299
3332
|
args: [{ providedIn: 'root' }]
|
|
3300
3333
|
}], ctorParameters: function () {
|
|
@@ -3349,9 +3382,9 @@ class LoginIfCanGuard extends LoginGuard {
|
|
|
3349
3382
|
});
|
|
3350
3383
|
}
|
|
3351
3384
|
}
|
|
3352
|
-
LoginIfCanGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3353
|
-
LoginIfCanGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3354
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3385
|
+
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 });
|
|
3386
|
+
LoginIfCanGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
|
|
3387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginIfCanGuard, decorators: [{
|
|
3355
3388
|
type: Injectable,
|
|
3356
3389
|
args: [{ providedIn: 'root' }]
|
|
3357
3390
|
}], ctorParameters: function () {
|
|
@@ -3371,9 +3404,9 @@ class LoginResolver extends LoginRequireResolver {
|
|
|
3371
3404
|
super(login);
|
|
3372
3405
|
}
|
|
3373
3406
|
}
|
|
3374
|
-
LoginResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
3375
|
-
LoginResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
3376
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
3407
|
+
LoginResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginResolver, deps: [{ token: LoginBaseService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3408
|
+
LoginResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginResolver, providedIn: 'root' });
|
|
3409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoginResolver, decorators: [{
|
|
3377
3410
|
type: Injectable,
|
|
3378
3411
|
args: [{ providedIn: 'root' }]
|
|
3379
3412
|
}], ctorParameters: function () {
|
|
@@ -4113,9 +4146,9 @@ class PrettifyPipe {
|
|
|
4113
4146
|
//
|
|
4114
4147
|
// --------------------------------------------------------------------------
|
|
4115
4148
|
PrettifyPipe.EMPTY_SYMBOL = '-';
|
|
4116
|
-
PrettifyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4117
|
-
PrettifyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4149
|
+
PrettifyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4150
|
+
PrettifyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PrettifyPipe, name: "viPrettify" });
|
|
4151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PrettifyPipe, decorators: [{
|
|
4119
4152
|
type: Pipe,
|
|
4120
4153
|
args: [{
|
|
4121
4154
|
name: 'viPrettify'
|
|
@@ -4132,9 +4165,9 @@ class CamelCasePipe {
|
|
|
4132
4165
|
return !_.isNil(value) ? _.camelCase(value) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4133
4166
|
}
|
|
4134
4167
|
}
|
|
4135
|
-
CamelCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4136
|
-
CamelCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4168
|
+
CamelCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4169
|
+
CamelCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CamelCasePipe, name: "viCamelCase" });
|
|
4170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CamelCasePipe, decorators: [{
|
|
4138
4171
|
type: Pipe,
|
|
4139
4172
|
args: [{
|
|
4140
4173
|
name: 'viCamelCase'
|
|
@@ -4181,9 +4214,9 @@ class FinancePipe {
|
|
|
4181
4214
|
//
|
|
4182
4215
|
// --------------------------------------------------------------------------
|
|
4183
4216
|
FinancePipe.DEFAULT_FORMAT = '0,0';
|
|
4184
|
-
FinancePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4185
|
-
FinancePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4217
|
+
FinancePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4218
|
+
FinancePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FinancePipe, name: "viFinance" });
|
|
4219
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FinancePipe, decorators: [{
|
|
4187
4220
|
type: Pipe,
|
|
4188
4221
|
args: [{
|
|
4189
4222
|
name: 'viFinance'
|
|
@@ -4247,9 +4280,9 @@ class MomentDatePipe {
|
|
|
4247
4280
|
//
|
|
4248
4281
|
// --------------------------------------------------------------------------
|
|
4249
4282
|
MomentDatePipe.DEFAULT_FORMAT = 'LLL';
|
|
4250
|
-
MomentDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4251
|
-
MomentDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4283
|
+
MomentDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4284
|
+
MomentDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentDatePipe, name: "viMomentDate" });
|
|
4285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDatePipe, decorators: [{
|
|
4253
4286
|
type: Pipe,
|
|
4254
4287
|
args: [{
|
|
4255
4288
|
name: 'viMomentDate'
|
|
@@ -4293,9 +4326,9 @@ MomentDateAdaptivePipe.HOUR_FORMAT = 'HH:ss';
|
|
|
4293
4326
|
MomentDateAdaptivePipe.DAY_FORMAT = 'DD MMM HH:ss';
|
|
4294
4327
|
MomentDateAdaptivePipe.MONTH_FORMAT = 'DD MMM HH:ss';
|
|
4295
4328
|
MomentDateAdaptivePipe.YEAR_FORMAT = 'LLL';
|
|
4296
|
-
MomentDateAdaptivePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4297
|
-
MomentDateAdaptivePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4329
|
+
MomentDateAdaptivePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4330
|
+
MomentDateAdaptivePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentDateAdaptivePipe, name: "viMomentAdaptiveDate" });
|
|
4331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
|
|
4299
4332
|
type: Pipe,
|
|
4300
4333
|
args: [{
|
|
4301
4334
|
name: 'viMomentAdaptiveDate'
|
|
@@ -4312,9 +4345,9 @@ class MomentDateFromNowPipe {
|
|
|
4312
4345
|
return MomentDatePipe.fromNow(value, format);
|
|
4313
4346
|
}
|
|
4314
4347
|
}
|
|
4315
|
-
MomentDateFromNowPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4316
|
-
MomentDateFromNowPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4317
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4348
|
+
MomentDateFromNowPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4349
|
+
MomentDateFromNowPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentDateFromNowPipe, name: "viMomentDateFromNow" });
|
|
4350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
|
|
4318
4351
|
type: Pipe,
|
|
4319
4352
|
args: [{
|
|
4320
4353
|
name: 'viMomentDateFromNow'
|
|
@@ -4343,9 +4376,9 @@ class MomentTimePipe {
|
|
|
4343
4376
|
//
|
|
4344
4377
|
// --------------------------------------------------------------------------
|
|
4345
4378
|
MomentTimePipe.DEFAULT_FORMAT = 'hh:mm:ss';
|
|
4346
|
-
MomentTimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4347
|
-
MomentTimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4379
|
+
MomentTimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4380
|
+
MomentTimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MomentTimePipe, name: "viMomentTime" });
|
|
4381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MomentTimePipe, decorators: [{
|
|
4349
4382
|
type: Pipe,
|
|
4350
4383
|
args: [{
|
|
4351
4384
|
name: 'viMomentTime'
|
|
@@ -4381,9 +4414,9 @@ class NgModelErrorPipe {
|
|
|
4381
4414
|
return this.language.translate('error.form.' + key, value);
|
|
4382
4415
|
}
|
|
4383
4416
|
}
|
|
4384
|
-
NgModelErrorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4385
|
-
NgModelErrorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4417
|
+
NgModelErrorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4418
|
+
NgModelErrorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NgModelErrorPipe, name: "viNgModelError" });
|
|
4419
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NgModelErrorPipe, decorators: [{
|
|
4387
4420
|
type: Pipe,
|
|
4388
4421
|
args: [{
|
|
4389
4422
|
name: 'viNgModelError'
|
|
@@ -4424,9 +4457,9 @@ class SanitizePipe {
|
|
|
4424
4457
|
}
|
|
4425
4458
|
}
|
|
4426
4459
|
}
|
|
4427
|
-
SanitizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4428
|
-
SanitizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4429
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4460
|
+
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 });
|
|
4461
|
+
SanitizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SanitizePipe, name: "viSanitize" });
|
|
4462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SanitizePipe, decorators: [{
|
|
4430
4463
|
type: Pipe,
|
|
4431
4464
|
args: [{
|
|
4432
4465
|
name: 'viSanitize'
|
|
@@ -4443,9 +4476,9 @@ class StartCasePipe {
|
|
|
4443
4476
|
return !_.isEmpty(value) ? value.charAt(0).toUpperCase() + value.slice(1) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4444
4477
|
}
|
|
4445
4478
|
}
|
|
4446
|
-
StartCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4447
|
-
StartCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4448
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4479
|
+
StartCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4480
|
+
StartCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: StartCasePipe, name: "viStartCase" });
|
|
4481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StartCasePipe, decorators: [{
|
|
4449
4482
|
type: Pipe,
|
|
4450
4483
|
args: [{
|
|
4451
4484
|
name: 'viStartCase'
|
|
@@ -4462,9 +4495,9 @@ class TruncatePipe {
|
|
|
4462
4495
|
return !_.isEmpty(value) ? _.truncate(value, { length: maxLength }) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4463
4496
|
}
|
|
4464
4497
|
}
|
|
4465
|
-
TruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4466
|
-
TruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4498
|
+
TruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4499
|
+
TruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TruncatePipe, name: "viTruncate" });
|
|
4500
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TruncatePipe, decorators: [{
|
|
4468
4501
|
type: Pipe,
|
|
4469
4502
|
args: [{
|
|
4470
4503
|
name: 'viTruncate'
|
|
@@ -4494,9 +4527,9 @@ class TimePipe {
|
|
|
4494
4527
|
//
|
|
4495
4528
|
// --------------------------------------------------------------------------
|
|
4496
4529
|
TimePipe.DEFAULT_FORMAT = '00:00:00';
|
|
4497
|
-
TimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
4498
|
-
TimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
4499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
4530
|
+
TimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4531
|
+
TimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TimePipe, name: "viTime" });
|
|
4532
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePipe, decorators: [{
|
|
4500
4533
|
type: Pipe,
|
|
4501
4534
|
args: [{
|
|
4502
4535
|
name: 'viTime'
|
|
@@ -5054,9 +5087,9 @@ class ThemeStyleDirective extends Destroyable {
|
|
|
5054
5087
|
}
|
|
5055
5088
|
}
|
|
5056
5089
|
}
|
|
5057
|
-
ThemeStyleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5058
|
-
ThemeStyleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5090
|
+
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 });
|
|
5091
|
+
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 });
|
|
5092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeStyleDirective, decorators: [{
|
|
5060
5093
|
type: Directive,
|
|
5061
5094
|
args: [{
|
|
5062
5095
|
selector: '[vi-theme-style]'
|
|
@@ -5157,9 +5190,9 @@ class ThemeStyleHoverDirective extends ThemeStyleDirective {
|
|
|
5157
5190
|
super.flags = value;
|
|
5158
5191
|
}
|
|
5159
5192
|
}
|
|
5160
|
-
ThemeStyleHoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5161
|
-
ThemeStyleHoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5193
|
+
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 });
|
|
5194
|
+
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 });
|
|
5195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
|
|
5163
5196
|
type: Directive,
|
|
5164
5197
|
args: [{
|
|
5165
5198
|
selector: '[vi-theme-style-hover]'
|
|
@@ -5381,9 +5414,9 @@ class ThemeAssetDirective extends Destroyable {
|
|
|
5381
5414
|
}
|
|
5382
5415
|
}
|
|
5383
5416
|
}
|
|
5384
|
-
ThemeAssetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5385
|
-
ThemeAssetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5417
|
+
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 });
|
|
5418
|
+
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 });
|
|
5419
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetDirective, decorators: [{
|
|
5387
5420
|
type: Directive
|
|
5388
5421
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.ThemeService }, { type: i1.ThemeAssetService }]; }, propDecorators: { errorLoadingHandler: [{
|
|
5389
5422
|
type: HostListener,
|
|
@@ -5440,9 +5473,9 @@ class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
|
|
|
5440
5473
|
return super.name;
|
|
5441
5474
|
}
|
|
5442
5475
|
}
|
|
5443
|
-
ThemeAssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5444
|
-
ThemeAssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5476
|
+
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 });
|
|
5477
|
+
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 });
|
|
5478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
|
|
5446
5479
|
type: Directive,
|
|
5447
5480
|
args: [{
|
|
5448
5481
|
selector: '[vi-theme-background]'
|
|
@@ -5485,9 +5518,9 @@ class ThemeAssetImageDirective extends ThemeAssetDirective {
|
|
|
5485
5518
|
return super.name;
|
|
5486
5519
|
}
|
|
5487
5520
|
}
|
|
5488
|
-
ThemeAssetImageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5489
|
-
ThemeAssetImageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5521
|
+
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 });
|
|
5522
|
+
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 });
|
|
5523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
|
|
5491
5524
|
type: Directive,
|
|
5492
5525
|
args: [{
|
|
5493
5526
|
selector: '[vi-theme-image]'
|
|
@@ -5529,9 +5562,9 @@ class ThemeAssetIconDirective extends ThemeAssetDirective {
|
|
|
5529
5562
|
return super.name;
|
|
5530
5563
|
}
|
|
5531
5564
|
}
|
|
5532
|
-
ThemeAssetIconDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5533
|
-
ThemeAssetIconDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5565
|
+
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 });
|
|
5566
|
+
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 });
|
|
5567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
|
|
5535
5568
|
type: Directive,
|
|
5536
5569
|
args: [{
|
|
5537
5570
|
selector: '[vi-theme-icon]'
|
|
@@ -5587,9 +5620,9 @@ class ThemeToggleDirective extends Destroyable {
|
|
|
5587
5620
|
this.theme = null;
|
|
5588
5621
|
}
|
|
5589
5622
|
}
|
|
5590
|
-
ThemeToggleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5591
|
-
ThemeToggleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
5592
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5623
|
+
ThemeToggleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5624
|
+
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 });
|
|
5625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeToggleDirective, decorators: [{
|
|
5593
5626
|
type: Directive,
|
|
5594
5627
|
args: [{
|
|
5595
5628
|
selector: '[vi-theme-toggle]'
|
|
@@ -5635,8 +5668,8 @@ class ThemeModule {
|
|
|
5635
5668
|
};
|
|
5636
5669
|
}
|
|
5637
5670
|
}
|
|
5638
|
-
ThemeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
5639
|
-
ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
5671
|
+
ThemeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5672
|
+
ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
|
|
5640
5673
|
ThemeAssetImageDirective,
|
|
5641
5674
|
ThemeAssetIconDirective,
|
|
5642
5675
|
ThemeAssetBackgroundDirective,
|
|
@@ -5647,8 +5680,8 @@ ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
5647
5680
|
ThemeAssetBackgroundDirective,
|
|
5648
5681
|
ThemeStyleDirective,
|
|
5649
5682
|
ThemeStyleHoverDirective] });
|
|
5650
|
-
ThemeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
5651
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
5683
|
+
ThemeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
|
|
5684
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ThemeModule, decorators: [{
|
|
5652
5685
|
type: NgModule,
|
|
5653
5686
|
args: [{
|
|
5654
5687
|
imports: [CookieModule],
|
|
@@ -6312,9 +6345,9 @@ class IWindowContent extends DestroyableContainer {
|
|
|
6312
6345
|
}
|
|
6313
6346
|
}
|
|
6314
6347
|
}
|
|
6315
|
-
IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6316
|
-
IWindowContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
6317
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
6348
|
+
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 });
|
|
6349
|
+
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 });
|
|
6350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IWindowContent, decorators: [{
|
|
6318
6351
|
type: Component,
|
|
6319
6352
|
args: [{ template: '' }]
|
|
6320
6353
|
}], ctorParameters: function () {
|
|
@@ -6474,9 +6507,9 @@ class INotificationContent extends DestroyableContainer {
|
|
|
6474
6507
|
return this._config;
|
|
6475
6508
|
}
|
|
6476
6509
|
}
|
|
6477
|
-
INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6478
|
-
INotificationContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
6479
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
6510
|
+
INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
6511
|
+
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 });
|
|
6512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: INotificationContent, decorators: [{
|
|
6480
6513
|
type: Component,
|
|
6481
6514
|
args: [{ template: '' }]
|
|
6482
6515
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { config: [{
|
|
@@ -6708,9 +6741,9 @@ class LazyModuleLoader extends Loadable {
|
|
|
6708
6741
|
return this._modules;
|
|
6709
6742
|
}
|
|
6710
6743
|
}
|
|
6711
|
-
LazyModuleLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6712
|
-
LazyModuleLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
|
6713
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
6744
|
+
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 });
|
|
6745
|
+
LazyModuleLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
|
|
6746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LazyModuleLoader, decorators: [{
|
|
6714
6747
|
type: Injectable,
|
|
6715
6748
|
args: [{ providedIn: 'root' }]
|
|
6716
6749
|
}], ctorParameters: function () { return [{ type: i0.Compiler }, { type: i0.Injector }]; } });
|
|
@@ -6877,6 +6910,7 @@ let declarations = [
|
|
|
6877
6910
|
FocusDirective,
|
|
6878
6911
|
ResizeDirective,
|
|
6879
6912
|
ScrollDirective,
|
|
6913
|
+
ScrollDirective1,
|
|
6880
6914
|
ScrollCheckDirective,
|
|
6881
6915
|
ClickToCopyDirective,
|
|
6882
6916
|
SelectOnFocusDirective,
|
|
@@ -6919,8 +6953,8 @@ class VIModule {
|
|
|
6919
6953
|
};
|
|
6920
6954
|
}
|
|
6921
6955
|
}
|
|
6922
|
-
VIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
6923
|
-
VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
6956
|
+
VIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6957
|
+
VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: VIModule, declarations: [TimePipe,
|
|
6924
6958
|
FinancePipe,
|
|
6925
6959
|
SanitizePipe,
|
|
6926
6960
|
TruncatePipe,
|
|
@@ -6937,6 +6971,7 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6937
6971
|
FocusDirective,
|
|
6938
6972
|
ResizeDirective,
|
|
6939
6973
|
ScrollDirective,
|
|
6974
|
+
ScrollDirective1,
|
|
6940
6975
|
ScrollCheckDirective,
|
|
6941
6976
|
ClickToCopyDirective,
|
|
6942
6977
|
SelectOnFocusDirective,
|
|
@@ -6962,6 +6997,7 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6962
6997
|
FocusDirective,
|
|
6963
6998
|
ResizeDirective,
|
|
6964
6999
|
ScrollDirective,
|
|
7000
|
+
ScrollDirective1,
|
|
6965
7001
|
ScrollCheckDirective,
|
|
6966
7002
|
ClickToCopyDirective,
|
|
6967
7003
|
SelectOnFocusDirective,
|
|
@@ -6971,8 +7007,8 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6971
7007
|
HTMLContentTitleDirective,
|
|
6972
7008
|
AutoScrollBottomDirective,
|
|
6973
7009
|
AspectRatioResizeDirective] });
|
|
6974
|
-
VIModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
6975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
7010
|
+
VIModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
|
|
7011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VIModule, decorators: [{
|
|
6976
7012
|
type: NgModule,
|
|
6977
7013
|
args: [{
|
|
6978
7014
|
imports,
|
|
@@ -7007,5 +7043,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
|
|
|
7007
7043
|
* Generated bundle index. Do not edit.
|
|
7008
7044
|
*/
|
|
7009
7045
|
|
|
7010
|
-
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 };
|
|
7046
|
+
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 };
|
|
7011
7047
|
//# sourceMappingURL=ts-core-angular.mjs.map
|