@ts-core/angular 15.0.16 → 15.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/asset/language/en.json +9 -0
  2. package/asset/language/ru.json +9 -0
  3. package/esm2020/VIModule.mjs +4 -4
  4. package/esm2020/application/ApplicationBaseComponent.mjs +3 -3
  5. package/esm2020/asset/AssetBackgroundDirective.mjs +3 -3
  6. package/esm2020/asset/AssetBackgroundPipe.mjs +3 -3
  7. package/esm2020/asset/AssetFilePipe.mjs +3 -3
  8. package/esm2020/asset/AssetIconPipe.mjs +3 -3
  9. package/esm2020/asset/AssetImagePipe.mjs +3 -3
  10. package/esm2020/asset/AssetModule.mjs +4 -4
  11. package/esm2020/asset/AssetSoundPipe.mjs +3 -3
  12. package/esm2020/asset/AssetVideoPipe.mjs +3 -3
  13. package/esm2020/cookie/CookieModule.mjs +4 -4
  14. package/esm2020/directive/AspectRatioResizeDirective.mjs +3 -3
  15. package/esm2020/directive/AutoScrollBottomDirective.mjs +3 -3
  16. package/esm2020/directive/ClickToCopyDirective.mjs +3 -3
  17. package/esm2020/directive/ClickToSelectDirective.mjs +3 -3
  18. package/esm2020/directive/FocusDirective.mjs +3 -3
  19. package/esm2020/directive/HTMLContentTitleDirective.mjs +3 -3
  20. package/esm2020/directive/HTMLTitleDirective.mjs +3 -3
  21. package/esm2020/directive/InfiniteScrollDirective.mjs +3 -3
  22. package/esm2020/directive/IsBrowserDirective.mjs +3 -3
  23. package/esm2020/directive/IsServerDirective.mjs +3 -3
  24. package/esm2020/directive/ResizeDirective.mjs +3 -3
  25. package/esm2020/directive/ScrollCheckDirective.mjs +3 -3
  26. package/esm2020/directive/ScrollDirective.mjs +3 -3
  27. package/esm2020/directive/SelectOnFocusDirective.mjs +3 -3
  28. package/esm2020/form/FormElementSync.mjs +3 -3
  29. package/esm2020/language/LanguageDirective.mjs +3 -3
  30. package/esm2020/language/LanguageHasDirective.mjs +3 -3
  31. package/esm2020/language/LanguageModule.mjs +4 -4
  32. package/esm2020/language/LanguagePipe.mjs +3 -3
  33. package/esm2020/language/LanguagePipeHas.mjs +3 -3
  34. package/esm2020/language/LanguagePipeHasPure.mjs +3 -3
  35. package/esm2020/language/LanguagePipePure.mjs +3 -3
  36. package/esm2020/language/LanguageResolver.mjs +3 -3
  37. package/esm2020/login/LoginGuard.mjs +4 -4
  38. package/esm2020/login/LoginIfCanGuard.mjs +4 -4
  39. package/esm2020/login/LoginNotGuard.mjs +4 -4
  40. package/esm2020/login/LoginResolver.mjs +3 -3
  41. package/esm2020/module/LazyModuleLoader.mjs +3 -3
  42. package/esm2020/notification/INotificationContent.mjs +3 -3
  43. package/esm2020/pipe/CamelCasePipe.mjs +3 -3
  44. package/esm2020/pipe/FinancePipe.mjs +3 -3
  45. package/esm2020/pipe/MomentDateAdaptivePipe.mjs +3 -3
  46. package/esm2020/pipe/MomentDateFromNowPipe.mjs +3 -3
  47. package/esm2020/pipe/MomentDatePipe.mjs +3 -3
  48. package/esm2020/pipe/MomentTimePipe.mjs +3 -3
  49. package/esm2020/pipe/NgModelErrorPipe.mjs +3 -3
  50. package/esm2020/pipe/PrettifyPipe.mjs +3 -3
  51. package/esm2020/pipe/SanitizePipe.mjs +3 -3
  52. package/esm2020/pipe/StartCasePipe.mjs +3 -3
  53. package/esm2020/pipe/TimePipe.mjs +3 -3
  54. package/esm2020/pipe/TruncatePipe.mjs +3 -3
  55. package/esm2020/service/PlatformService.mjs +3 -3
  56. package/esm2020/theme/ThemeAssetBackgroundDirective.mjs +3 -3
  57. package/esm2020/theme/ThemeAssetDirective.mjs +31 -10
  58. package/esm2020/theme/ThemeAssetIconDirective.mjs +3 -3
  59. package/esm2020/theme/ThemeAssetImageDirective.mjs +3 -3
  60. package/esm2020/theme/ThemeModule.mjs +4 -4
  61. package/esm2020/theme/ThemeStyleDirective.mjs +3 -3
  62. package/esm2020/theme/ThemeStyleHoverDirective.mjs +3 -3
  63. package/esm2020/theme/ThemeToggleDirective.mjs +3 -3
  64. package/esm2020/window/IWindowContent.mjs +3 -3
  65. package/esm2020/window/WindowBase.mjs +3 -23
  66. package/fesm2015/ts-core-angular.mjs +220 -219
  67. package/fesm2015/ts-core-angular.mjs.map +1 -1
  68. package/fesm2020/ts-core-angular.mjs +220 -219
  69. package/fesm2020/ts-core-angular.mjs.map +1 -1
  70. package/login/LoginGuard.d.ts +1 -2
  71. package/login/LoginNotGuard.d.ts +1 -2
  72. package/package.json +1 -1
  73. package/theme/ThemeAssetDirective.d.ts +7 -4
@@ -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.0.4", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
95
- ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: ApplicationBaseComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
96
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ApplicationBaseComponent, decorators: [{
94
+ ApplicationBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
95
+ ApplicationBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: ApplicationBaseComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
96
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ApplicationBaseComponent, decorators: [{
97
97
  type: Component,
98
98
  args: [{ template: '' }]
99
99
  }], ctorParameters: function () { return []; } });
@@ -904,9 +904,9 @@ class AssetBackgroundDirective extends Destroyable {
904
904
  return this._background;
905
905
  }
906
906
  }
907
- AssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
908
- AssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", 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 });
909
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
907
+ AssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
908
+ AssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", 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 });
909
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
910
910
  type: Directive,
911
911
  args: [{
912
912
  selector: '[vi-asset-background]'
@@ -936,9 +936,9 @@ class AssetBackgroundPipe {
936
936
  return Assets.getBackground(name, extension);
937
937
  }
938
938
  }
939
- AssetBackgroundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
940
- AssetBackgroundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: AssetBackgroundPipe, name: "viAssetBackground" });
941
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
939
+ AssetBackgroundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
940
+ AssetBackgroundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: AssetBackgroundPipe, name: "viAssetBackground" });
941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
942
942
  type: Pipe,
943
943
  args: [{
944
944
  name: 'viAssetBackground'
@@ -955,9 +955,9 @@ class AssetIconPipe {
955
955
  return Assets.getIcon(name, extension);
956
956
  }
957
957
  }
958
- AssetIconPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
959
- AssetIconPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: AssetIconPipe, name: "viAssetIcon" });
960
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetIconPipe, decorators: [{
958
+ AssetIconPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
959
+ AssetIconPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: AssetIconPipe, name: "viAssetIcon" });
960
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetIconPipe, decorators: [{
961
961
  type: Pipe,
962
962
  args: [{
963
963
  name: 'viAssetIcon'
@@ -974,9 +974,9 @@ class AssetFilePipe {
974
974
  return Assets.getFile(name, extension);
975
975
  }
976
976
  }
977
- AssetFilePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
978
- AssetFilePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: AssetFilePipe, name: "viAssetFile" });
979
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetFilePipe, decorators: [{
977
+ AssetFilePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
978
+ AssetFilePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: AssetFilePipe, name: "viAssetFile" });
979
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetFilePipe, decorators: [{
980
980
  type: Pipe,
981
981
  args: [{
982
982
  name: 'viAssetFile'
@@ -993,9 +993,9 @@ class AssetVideoPipe {
993
993
  return Assets.getVideo(name, extension);
994
994
  }
995
995
  }
996
- AssetVideoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
997
- AssetVideoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: AssetVideoPipe, name: "viAssetVideo" });
998
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetVideoPipe, decorators: [{
996
+ AssetVideoPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
997
+ AssetVideoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: AssetVideoPipe, name: "viAssetVideo" });
998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetVideoPipe, decorators: [{
999
999
  type: Pipe,
1000
1000
  args: [{
1001
1001
  name: 'viAssetVideo'
@@ -1012,9 +1012,9 @@ class AssetSoundPipe {
1012
1012
  return Assets.getSound(name, extension);
1013
1013
  }
1014
1014
  }
1015
- AssetSoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1016
- AssetSoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: AssetSoundPipe, name: "viAssetSound" });
1017
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetSoundPipe, decorators: [{
1015
+ AssetSoundPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1016
+ AssetSoundPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: AssetSoundPipe, name: "viAssetSound" });
1017
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetSoundPipe, decorators: [{
1018
1018
  type: Pipe,
1019
1019
  args: [{
1020
1020
  name: 'viAssetSound'
@@ -1031,9 +1031,9 @@ class AssetImagePipe {
1031
1031
  return Assets.getImage(name, extension);
1032
1032
  }
1033
1033
  }
1034
- AssetImagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1035
- AssetImagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: AssetImagePipe, name: "viAssetImage" });
1036
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetImagePipe, decorators: [{
1034
+ AssetImagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1035
+ AssetImagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: AssetImagePipe, name: "viAssetImage" });
1036
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetImagePipe, decorators: [{
1037
1037
  type: Pipe,
1038
1038
  args: [{
1039
1039
  name: 'viAssetImage'
@@ -1042,10 +1042,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImpor
1042
1042
 
1043
1043
  class AssetModule {
1044
1044
  }
1045
- AssetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1046
- AssetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: AssetModule, declarations: [AssetBackgroundDirective, AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe], imports: [CommonModule], exports: [AssetBackgroundDirective, AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe] });
1047
- AssetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetModule, imports: [CommonModule] });
1048
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AssetModule, decorators: [{
1045
+ AssetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1046
+ AssetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: AssetModule, declarations: [AssetBackgroundDirective, AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe], imports: [CommonModule], exports: [AssetBackgroundDirective, AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe] });
1047
+ AssetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetModule, imports: [CommonModule] });
1048
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AssetModule, decorators: [{
1049
1049
  type: NgModule,
1050
1050
  args: [{
1051
1051
  imports: [CommonModule],
@@ -1146,9 +1146,9 @@ class PlatformService extends DestroyableContainer {
1146
1146
  return this._isPlatformBrowser;
1147
1147
  }
1148
1148
  }
1149
- PlatformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
1150
- PlatformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PlatformService, providedIn: 'root' });
1151
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PlatformService, decorators: [{
1149
+ PlatformService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
1150
+ PlatformService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: PlatformService, providedIn: 'root' });
1151
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: PlatformService, decorators: [{
1152
1152
  type: Injectable,
1153
1153
  args: [{ providedIn: 'root' }]
1154
1154
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
@@ -1179,10 +1179,10 @@ class CookieModule {
1179
1179
  };
1180
1180
  }
1181
1181
  }
1182
- CookieModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1183
- CookieModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: CookieModule });
1184
- CookieModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: CookieModule });
1185
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: CookieModule, decorators: [{
1182
+ CookieModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1183
+ CookieModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: CookieModule });
1184
+ CookieModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: CookieModule });
1185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: CookieModule, decorators: [{
1186
1186
  type: NgModule
1187
1187
  }] });
1188
1188
  function cookieServiceFactory(nativeWindow, platform, options) {
@@ -1383,9 +1383,9 @@ class AspectRatioResizeDirective extends DestroyableContainer {
1383
1383
  //
1384
1384
  // --------------------------------------------------------------------------
1385
1385
  AspectRatioResizeDirective.UPDATE_DELAY = 100;
1386
- AspectRatioResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1387
- AspectRatioResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: AspectRatioResizeDirective, selector: "[vi-aspect-ratio]", inputs: { direction: ["vi-aspect-ratio", "direction"], ratio: "ratio" }, usesInheritance: true, ngImport: i0 });
1388
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
1386
+ AspectRatioResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1387
+ AspectRatioResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: AspectRatioResizeDirective, selector: "[vi-aspect-ratio]", inputs: { direction: ["vi-aspect-ratio", "direction"], ratio: "ratio" }, usesInheritance: true, ngImport: i0 });
1388
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
1389
1389
  type: Directive,
1390
1390
  args: [{
1391
1391
  selector: '[vi-aspect-ratio]'
@@ -1499,9 +1499,9 @@ class ScrollDirective extends Destroyable {
1499
1499
  //
1500
1500
  // --------------------------------------------------------------------------
1501
1501
  ScrollDirective.INITIALIZATION_DELAY = 1;
1502
- ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1503
- ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ScrollDirective, selector: "[vi-scroll]", inputs: { scrollValue: "scrollValue" }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
1504
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ScrollDirective, decorators: [{
1502
+ ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1503
+ ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ScrollDirective, selector: "[vi-scroll]", inputs: { scrollValue: "scrollValue" }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
1504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ScrollDirective, decorators: [{
1505
1505
  type: Directive,
1506
1506
  args: [{
1507
1507
  selector: '[vi-scroll]'
@@ -1571,9 +1571,9 @@ class InfiniteScrollDirective extends ScrollDirective {
1571
1571
  return this.element.scrollHeight;
1572
1572
  }
1573
1573
  }
1574
- InfiniteScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1575
- InfiniteScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: InfiniteScrollDirective, selector: "[vi-infinite-scroll]", inputs: { elementHeight: "elementHeight" }, outputs: { top: "top", bottom: "bottom" }, usesInheritance: true, ngImport: i0 });
1576
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
1574
+ InfiniteScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1575
+ InfiniteScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: InfiniteScrollDirective, selector: "[vi-infinite-scroll]", inputs: { elementHeight: "elementHeight" }, outputs: { top: "top", bottom: "bottom" }, usesInheritance: true, ngImport: i0 });
1576
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
1577
1577
  type: Directive,
1578
1578
  args: [{
1579
1579
  selector: '[vi-infinite-scroll]'
@@ -1684,9 +1684,9 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
1684
1684
  this.triggerTimer = setTimeout(this.checkTrigger, InfiniteScrollDirective.INITIALIZATION_DELAY);
1685
1685
  }
1686
1686
  }
1687
- AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1688
- AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: AutoScrollBottomDirective, selector: "[vi-auto-scroll-bottom]", inputs: { trigger: ["vi-auto-bottom-scroll", "trigger"] }, outputs: { triggerChanged: "triggerChanged" }, usesInheritance: true, ngImport: i0 });
1689
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
1687
+ AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1688
+ AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: AutoScrollBottomDirective, selector: "[vi-auto-scroll-bottom]", inputs: { trigger: ["vi-auto-bottom-scroll", "trigger"] }, outputs: { triggerChanged: "triggerChanged" }, usesInheritance: true, ngImport: i0 });
1689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
1690
1690
  type: Directive,
1691
1691
  args: [{
1692
1692
  selector: '[vi-auto-scroll-bottom]'
@@ -1727,9 +1727,9 @@ class ClickToCopyDirective extends Destroyable {
1727
1727
  clearTimeout(this.selectionClearTimer);
1728
1728
  }
1729
1729
  }
1730
- ClickToCopyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1731
- ClickToCopyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ClickToCopyDirective, selector: "[vi-click-to-copy]", inputs: { element: ["vi-click-to-copy", "element"] }, host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1732
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ClickToCopyDirective, decorators: [{
1730
+ ClickToCopyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1731
+ ClickToCopyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ClickToCopyDirective, selector: "[vi-click-to-copy]", inputs: { element: ["vi-click-to-copy", "element"] }, host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1732
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ClickToCopyDirective, decorators: [{
1733
1733
  type: Directive,
1734
1734
  args: [{
1735
1735
  selector: '[vi-click-to-copy]'
@@ -1775,9 +1775,9 @@ class ClickToSelectDirective extends Destroyable {
1775
1775
  this.element = null;
1776
1776
  }
1777
1777
  }
1778
- ClickToSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1779
- ClickToSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ClickToSelectDirective, selector: "[vi-click-to-select]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1780
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ClickToSelectDirective, decorators: [{
1778
+ ClickToSelectDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1779
+ ClickToSelectDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ClickToSelectDirective, selector: "[vi-click-to-select]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ClickToSelectDirective, decorators: [{
1781
1781
  type: Directive,
1782
1782
  args: [{
1783
1783
  selector: '[vi-click-to-select]'
@@ -1868,9 +1868,9 @@ class FocusDirective extends Destroyable {
1868
1868
  this.focus();
1869
1869
  }
1870
1870
  }
1871
- FocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1872
- FocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: FocusDirective, selector: "[vi-focus]", inputs: { trigger: ["vi-focus", "trigger"] }, usesInheritance: true, ngImport: i0 });
1873
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: FocusDirective, decorators: [{
1871
+ FocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1872
+ FocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: FocusDirective, selector: "[vi-focus]", inputs: { trigger: ["vi-focus", "trigger"] }, usesInheritance: true, ngImport: i0 });
1873
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: FocusDirective, decorators: [{
1874
1874
  type: Directive,
1875
1875
  args: [{
1876
1876
  selector: '[vi-focus]'
@@ -1911,9 +1911,9 @@ class SelectOnFocusDirective extends Destroyable {
1911
1911
  this.element = null;
1912
1912
  }
1913
1913
  }
1914
- SelectOnFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1915
- SelectOnFocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: SelectOnFocusDirective, selector: "[vi-select-on-focus]", host: { listeners: { "focus": "focusHandler()" } }, usesInheritance: true, ngImport: i0 });
1916
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
1914
+ SelectOnFocusDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1915
+ SelectOnFocusDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: SelectOnFocusDirective, selector: "[vi-select-on-focus]", host: { listeners: { "focus": "focusHandler()" } }, usesInheritance: true, ngImport: i0 });
1916
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
1917
1917
  type: Directive,
1918
1918
  args: [{
1919
1919
  selector: '[vi-select-on-focus]'
@@ -1977,9 +1977,9 @@ class ResizeDirective extends Destroyable {
1977
1977
  }
1978
1978
  }
1979
1979
  }
1980
- ResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1981
- ResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ResizeDirective, selector: "[vi-resize]", inputs: { isTop: "isTop", isLeft: "isLeft", isRight: "isRight", isBottom: "isBottom" }, outputs: { resized: "resized" }, usesInheritance: true, ngImport: i0 });
1982
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ResizeDirective, decorators: [{
1980
+ ResizeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1981
+ ResizeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ResizeDirective, selector: "[vi-resize]", inputs: { isTop: "isTop", isLeft: "isLeft", isRight: "isRight", isBottom: "isBottom" }, outputs: { resized: "resized" }, usesInheritance: true, ngImport: i0 });
1982
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ResizeDirective, decorators: [{
1983
1983
  type: Directive,
1984
1984
  args: [{
1985
1985
  selector: '[vi-resize]'
@@ -2071,9 +2071,9 @@ class ScrollCheckDirective extends DestroyableContainer {
2071
2071
  return this._scrollLimit;
2072
2072
  }
2073
2073
  }
2074
- ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2075
- ScrollCheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", 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 });
2076
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ScrollCheckDirective, decorators: [{
2074
+ ScrollCheckDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2075
+ ScrollCheckDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", 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 });
2076
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ScrollCheckDirective, decorators: [{
2077
2077
  type: Directive,
2078
2078
  args: [{
2079
2079
  selector: '[vi-scroll-check]'
@@ -2155,9 +2155,9 @@ class LanguagePipe extends DestroyableContainer {
2155
2155
  this.lastValue = null;
2156
2156
  }
2157
2157
  }
2158
- LanguagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipe, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2159
- LanguagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipe, name: "viTranslate", pure: false });
2160
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipe, decorators: [{
2158
+ LanguagePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipe, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2159
+ LanguagePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipe, name: "viTranslate", pure: false });
2160
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipe, decorators: [{
2161
2161
  type: Pipe,
2162
2162
  args: [{
2163
2163
  name: 'viTranslate',
@@ -2213,9 +2213,9 @@ class HTMLTitleDirective extends Destroyable {
2213
2213
  return this._value;
2214
2214
  }
2215
2215
  }
2216
- HTMLTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2217
- HTMLTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: HTMLTitleDirective, selector: "[vi-html-title]", inputs: { value: ["vi-html-title", "value"] }, usesInheritance: true, ngImport: i0 });
2218
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: HTMLTitleDirective, decorators: [{
2216
+ HTMLTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2217
+ HTMLTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: HTMLTitleDirective, selector: "[vi-html-title]", inputs: { value: ["vi-html-title", "value"] }, usesInheritance: true, ngImport: i0 });
2218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: HTMLTitleDirective, decorators: [{
2219
2219
  type: Directive,
2220
2220
  args: [{
2221
2221
  selector: '[vi-html-title]'
@@ -2274,9 +2274,9 @@ class HTMLContentTitleDirective extends Destroyable {
2274
2274
  return this._value;
2275
2275
  }
2276
2276
  }
2277
- HTMLContentTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2278
- HTMLContentTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: HTMLContentTitleDirective, selector: "[vi-html-content-title]", inputs: { value: ["vi-html-content-title", "value"] }, usesInheritance: true, ngImport: i0 });
2279
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
2277
+ HTMLContentTitleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2278
+ HTMLContentTitleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: HTMLContentTitleDirective, selector: "[vi-html-content-title]", inputs: { value: ["vi-html-content-title", "value"] }, usesInheritance: true, ngImport: i0 });
2279
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
2280
2280
  type: Directive,
2281
2281
  args: [{
2282
2282
  selector: '[vi-html-content-title]'
@@ -2298,9 +2298,9 @@ class IsBrowserDirective {
2298
2298
  }
2299
2299
  }
2300
2300
  }
2301
- IsBrowserDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: IsBrowserDirective, deps: [{ token: PlatformService }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
2302
- IsBrowserDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: IsBrowserDirective, selector: "[viIsBrowser]", ngImport: i0 });
2303
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: IsBrowserDirective, decorators: [{
2301
+ IsBrowserDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: IsBrowserDirective, deps: [{ token: PlatformService }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
2302
+ IsBrowserDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: IsBrowserDirective, selector: "[viIsBrowser]", ngImport: i0 });
2303
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: IsBrowserDirective, decorators: [{
2304
2304
  type: Directive,
2305
2305
  args: [{
2306
2306
  selector: '[viIsBrowser]'
@@ -2319,9 +2319,9 @@ class IsServerDirective {
2319
2319
  }
2320
2320
  }
2321
2321
  }
2322
- IsServerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: IsServerDirective, deps: [{ token: PlatformService }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
2323
- IsServerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: IsServerDirective, selector: "[viIsServer]", ngImport: i0 });
2324
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: IsServerDirective, decorators: [{
2322
+ IsServerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: IsServerDirective, deps: [{ token: PlatformService }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
2323
+ IsServerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: IsServerDirective, selector: "[viIsServer]", ngImport: i0 });
2324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: IsServerDirective, decorators: [{
2325
2325
  type: Directive,
2326
2326
  args: [{
2327
2327
  selector: '[viIsServer]'
@@ -2528,9 +2528,9 @@ class FormElementSync extends ValueAccessor {
2528
2528
  this.timer = null;
2529
2529
  }
2530
2530
  }
2531
- FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.Directive });
2532
- FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: FormElementSync, usesInheritance: true, ngImport: i0 });
2533
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: FormElementSync, decorators: [{
2531
+ FormElementSync.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: FormElementSync, deps: [{ token: Array }], target: i0.ɵɵFactoryTarget.Directive });
2532
+ FormElementSync.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: FormElementSync, usesInheritance: true, ngImport: i0 });
2533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: FormElementSync, decorators: [{
2534
2534
  type: Directive
2535
2535
  }], ctorParameters: function () { return [{ type: Array }]; } });
2536
2536
 
@@ -2560,9 +2560,9 @@ class LanguagePipePure extends DestroyableContainer {
2560
2560
  this.language = null;
2561
2561
  }
2562
2562
  }
2563
- LanguagePipePure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2564
- LanguagePipePure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipePure, name: "viTranslatePure" });
2565
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipePure, decorators: [{
2563
+ LanguagePipePure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2564
+ LanguagePipePure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipePure, name: "viTranslatePure" });
2565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipePure, decorators: [{
2566
2566
  type: Pipe,
2567
2567
  args: [{
2568
2568
  name: 'viTranslatePure'
@@ -2613,9 +2613,9 @@ class LanguageResolver extends LanguageRequireResolver {
2613
2613
  super(language);
2614
2614
  }
2615
2615
  }
2616
- LanguageResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
2617
- LanguageResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
2618
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageResolver, decorators: [{
2616
+ LanguageResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
2617
+ LanguageResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
2618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageResolver, decorators: [{
2619
2619
  type: Injectable,
2620
2620
  args: [{ providedIn: 'root' }]
2621
2621
  }], ctorParameters: function () { return [{ type: i1.LanguageService }]; } });
@@ -2689,9 +2689,9 @@ class LanguageDirective extends Destroyable {
2689
2689
  return this._params;
2690
2690
  }
2691
2691
  }
2692
- LanguageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageDirective, deps: [{ token: i0.ElementRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2693
- LanguageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: LanguageDirective, selector: "[vi-translate]", inputs: { isNeedTitle: "isNeedTitle", key: ["vi-translate", "key"], params: "params" }, usesInheritance: true, ngImport: i0 });
2694
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageDirective, decorators: [{
2692
+ LanguageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageDirective, deps: [{ token: i0.ElementRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2693
+ LanguageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: LanguageDirective, selector: "[vi-translate]", inputs: { isNeedTitle: "isNeedTitle", key: ["vi-translate", "key"], params: "params" }, usesInheritance: true, ngImport: i0 });
2694
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageDirective, decorators: [{
2695
2695
  type: Directive,
2696
2696
  args: [{
2697
2697
  selector: '[vi-translate]'
@@ -2745,9 +2745,9 @@ class LanguagePipeHas extends DestroyableContainer {
2745
2745
  this.key = null;
2746
2746
  }
2747
2747
  }
2748
- LanguagePipeHas.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2749
- LanguagePipeHas.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipeHas, name: "viTranslateHas", pure: false });
2750
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipeHas, decorators: [{
2748
+ LanguagePipeHas.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2749
+ LanguagePipeHas.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipeHas, name: "viTranslateHas", pure: false });
2750
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipeHas, decorators: [{
2751
2751
  type: Pipe,
2752
2752
  args: [{
2753
2753
  name: 'viTranslateHas',
@@ -2781,9 +2781,9 @@ class LanguagePipeHasPure extends DestroyableContainer {
2781
2781
  this.language = null;
2782
2782
  }
2783
2783
  }
2784
- LanguagePipeHasPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2785
- LanguagePipeHasPure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipeHasPure, name: "viTranslateHasPure" });
2786
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
2784
+ LanguagePipeHasPure.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2785
+ LanguagePipeHasPure.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipeHasPure, name: "viTranslateHasPure" });
2786
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
2787
2787
  type: Pipe,
2788
2788
  args: [{
2789
2789
  name: 'viTranslateHasPure',
@@ -2875,9 +2875,9 @@ class LanguageHasDirective extends Destroyable {
2875
2875
  return this._isOnlyIfNotEmpty;
2876
2876
  }
2877
2877
  }
2878
- LanguageHasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageHasDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2879
- LanguageHasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: LanguageHasDirective, selector: "[viTranslateHas]", inputs: { viTranslateHas: "viTranslateHas", viTranslateHasIsOnlyIfNotEmpty: "viTranslateHasIsOnlyIfNotEmpty" }, usesInheritance: true, ngImport: i0 });
2880
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageHasDirective, decorators: [{
2878
+ LanguageHasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageHasDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2879
+ LanguageHasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: LanguageHasDirective, selector: "[viTranslateHas]", inputs: { viTranslateHas: "viTranslateHas", viTranslateHasIsOnlyIfNotEmpty: "viTranslateHasIsOnlyIfNotEmpty" }, usesInheritance: true, ngImport: i0 });
2880
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageHasDirective, decorators: [{
2881
2881
  type: Directive,
2882
2882
  args: [{
2883
2883
  selector: '[viTranslateHas]'
@@ -2918,10 +2918,10 @@ class LanguageModule {
2918
2918
  };
2919
2919
  }
2920
2920
  }
2921
- LanguageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2922
- LanguageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: LanguageModule, declarations: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageHasDirective, LanguageDirective], imports: [CookieModule], exports: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageHasDirective, LanguageDirective] });
2923
- LanguageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
2924
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LanguageModule, decorators: [{
2921
+ LanguageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2922
+ LanguageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: LanguageModule, declarations: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageHasDirective, LanguageDirective], imports: [CookieModule], exports: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageHasDirective, LanguageDirective] });
2923
+ LanguageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
2924
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LanguageModule, decorators: [{
2925
2925
  type: NgModule,
2926
2926
  args: [{
2927
2927
  imports: [CookieModule],
@@ -3177,9 +3177,9 @@ class LoginGuard extends LoginRequireResolver {
3177
3177
  //
3178
3178
  // --------------------------------------------------------------------------
3179
3179
  LoginGuard.redirectUrl = '/login';
3180
- LoginGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3181
- LoginGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginGuard, providedIn: 'root' });
3182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginGuard, decorators: [{
3180
+ LoginGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3181
+ LoginGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginGuard, providedIn: 'root' });
3182
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginGuard, decorators: [{
3183
3183
  type: Injectable,
3184
3184
  args: [{ providedIn: 'root' }]
3185
3185
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
@@ -3212,9 +3212,9 @@ class LoginNotGuard extends LoginRequireResolver {
3212
3212
  //
3213
3213
  // --------------------------------------------------------------------------
3214
3214
  LoginNotGuard.redirectUrl = '/';
3215
- LoginNotGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginNotGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3216
- LoginNotGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
3217
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginNotGuard, decorators: [{
3215
+ LoginNotGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginNotGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3216
+ LoginNotGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
3217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginNotGuard, decorators: [{
3218
3218
  type: Injectable,
3219
3219
  args: [{ providedIn: 'root' }]
3220
3220
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
@@ -3260,9 +3260,9 @@ class LoginIfCanGuard extends LoginGuard {
3260
3260
  return super.canActivate(route, state);
3261
3261
  }
3262
3262
  }
3263
- LoginIfCanGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginIfCanGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3264
- LoginIfCanGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
3265
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginIfCanGuard, decorators: [{
3263
+ LoginIfCanGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginIfCanGuard, deps: [{ token: LoginBaseService }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3264
+ LoginIfCanGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
3265
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginIfCanGuard, decorators: [{
3266
3266
  type: Injectable,
3267
3267
  args: [{ providedIn: 'root' }]
3268
3268
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
@@ -3280,9 +3280,9 @@ class LoginResolver extends LoginRequireResolver {
3280
3280
  super(login);
3281
3281
  }
3282
3282
  }
3283
- LoginResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginResolver, deps: [{ token: LoginBaseService }], target: i0.ɵɵFactoryTarget.Injectable });
3284
- LoginResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginResolver, providedIn: 'root' });
3285
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LoginResolver, decorators: [{
3283
+ LoginResolver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginResolver, deps: [{ token: LoginBaseService }], target: i0.ɵɵFactoryTarget.Injectable });
3284
+ LoginResolver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginResolver, providedIn: 'root' });
3285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LoginResolver, decorators: [{
3286
3286
  type: Injectable,
3287
3287
  args: [{ providedIn: 'root' }]
3288
3288
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
@@ -3886,9 +3886,9 @@ class PrettifyPipe {
3886
3886
  //
3887
3887
  // --------------------------------------------------------------------------
3888
3888
  PrettifyPipe.EMPTY_SYMBOL = '-';
3889
- PrettifyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3890
- PrettifyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: PrettifyPipe, name: "viPrettify" });
3891
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: PrettifyPipe, decorators: [{
3889
+ PrettifyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3890
+ PrettifyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: PrettifyPipe, name: "viPrettify" });
3891
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: PrettifyPipe, decorators: [{
3892
3892
  type: Pipe,
3893
3893
  args: [{
3894
3894
  name: 'viPrettify'
@@ -3905,9 +3905,9 @@ class CamelCasePipe {
3905
3905
  return !_.isNil(value) ? _.camelCase(value) : PrettifyPipe.EMPTY_SYMBOL;
3906
3906
  }
3907
3907
  }
3908
- CamelCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3909
- CamelCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: CamelCasePipe, name: "viCamelCase" });
3910
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: CamelCasePipe, decorators: [{
3908
+ CamelCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3909
+ CamelCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: CamelCasePipe, name: "viCamelCase" });
3910
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: CamelCasePipe, decorators: [{
3911
3911
  type: Pipe,
3912
3912
  args: [{
3913
3913
  name: 'viCamelCase'
@@ -3954,9 +3954,9 @@ class FinancePipe {
3954
3954
  //
3955
3955
  // --------------------------------------------------------------------------
3956
3956
  FinancePipe.DEFAULT_FORMAT = '0,0';
3957
- FinancePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3958
- FinancePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: FinancePipe, name: "viFinance" });
3959
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: FinancePipe, decorators: [{
3957
+ FinancePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3958
+ FinancePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: FinancePipe, name: "viFinance" });
3959
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: FinancePipe, decorators: [{
3960
3960
  type: Pipe,
3961
3961
  args: [{
3962
3962
  name: 'viFinance'
@@ -4020,9 +4020,9 @@ class MomentDatePipe {
4020
4020
  //
4021
4021
  // --------------------------------------------------------------------------
4022
4022
  MomentDatePipe.DEFAULT_FORMAT = 'LLL';
4023
- MomentDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4024
- MomentDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: MomentDatePipe, name: "viMomentDate" });
4025
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentDatePipe, decorators: [{
4023
+ MomentDatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4024
+ MomentDatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: MomentDatePipe, name: "viMomentDate" });
4025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentDatePipe, decorators: [{
4026
4026
  type: Pipe,
4027
4027
  args: [{
4028
4028
  name: 'viMomentDate'
@@ -4066,9 +4066,9 @@ MomentDateAdaptivePipe.HOUR_FORMAT = 'HH:ss';
4066
4066
  MomentDateAdaptivePipe.DAY_FORMAT = 'DD MMM HH:ss';
4067
4067
  MomentDateAdaptivePipe.MONTH_FORMAT = 'DD MMM HH:ss';
4068
4068
  MomentDateAdaptivePipe.YEAR_FORMAT = 'LLL';
4069
- MomentDateAdaptivePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4070
- MomentDateAdaptivePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: MomentDateAdaptivePipe, name: "viMomentAdaptiveDate" });
4071
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
4069
+ MomentDateAdaptivePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4070
+ MomentDateAdaptivePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: MomentDateAdaptivePipe, name: "viMomentAdaptiveDate" });
4071
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
4072
4072
  type: Pipe,
4073
4073
  args: [{
4074
4074
  name: 'viMomentAdaptiveDate'
@@ -4085,9 +4085,9 @@ class MomentDateFromNowPipe {
4085
4085
  return MomentDatePipe.fromNow(value, format);
4086
4086
  }
4087
4087
  }
4088
- MomentDateFromNowPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4089
- MomentDateFromNowPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: MomentDateFromNowPipe, name: "viMomentDateFromNow" });
4090
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
4088
+ MomentDateFromNowPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4089
+ MomentDateFromNowPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: MomentDateFromNowPipe, name: "viMomentDateFromNow" });
4090
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
4091
4091
  type: Pipe,
4092
4092
  args: [{
4093
4093
  name: 'viMomentDateFromNow'
@@ -4116,9 +4116,9 @@ class MomentTimePipe {
4116
4116
  //
4117
4117
  // --------------------------------------------------------------------------
4118
4118
  MomentTimePipe.DEFAULT_FORMAT = 'hh:mm:ss';
4119
- MomentTimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4120
- MomentTimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: MomentTimePipe, name: "viMomentTime" });
4121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: MomentTimePipe, decorators: [{
4119
+ MomentTimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4120
+ MomentTimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: MomentTimePipe, name: "viMomentTime" });
4121
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: MomentTimePipe, decorators: [{
4122
4122
  type: Pipe,
4123
4123
  args: [{
4124
4124
  name: 'viMomentTime'
@@ -4154,9 +4154,9 @@ class NgModelErrorPipe {
4154
4154
  return this.language.translate('error.form.' + key, value);
4155
4155
  }
4156
4156
  }
4157
- NgModelErrorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
4158
- NgModelErrorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: NgModelErrorPipe, name: "viNgModelError" });
4159
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: NgModelErrorPipe, decorators: [{
4157
+ NgModelErrorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
4158
+ NgModelErrorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: NgModelErrorPipe, name: "viNgModelError" });
4159
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: NgModelErrorPipe, decorators: [{
4160
4160
  type: Pipe,
4161
4161
  args: [{
4162
4162
  name: 'viNgModelError'
@@ -4197,9 +4197,9 @@ class SanitizePipe {
4197
4197
  }
4198
4198
  }
4199
4199
  }
4200
- SanitizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: SanitizePipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
4201
- SanitizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: SanitizePipe, name: "viSanitize" });
4202
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: SanitizePipe, decorators: [{
4200
+ SanitizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: SanitizePipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
4201
+ SanitizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: SanitizePipe, name: "viSanitize" });
4202
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: SanitizePipe, decorators: [{
4203
4203
  type: Pipe,
4204
4204
  args: [{
4205
4205
  name: 'viSanitize'
@@ -4216,9 +4216,9 @@ class StartCasePipe {
4216
4216
  return !_.isEmpty(value) ? value.charAt(0).toUpperCase() + value.slice(1) : PrettifyPipe.EMPTY_SYMBOL;
4217
4217
  }
4218
4218
  }
4219
- StartCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4220
- StartCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: StartCasePipe, name: "viStartCase" });
4221
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: StartCasePipe, decorators: [{
4219
+ StartCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4220
+ StartCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: StartCasePipe, name: "viStartCase" });
4221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: StartCasePipe, decorators: [{
4222
4222
  type: Pipe,
4223
4223
  args: [{
4224
4224
  name: 'viStartCase'
@@ -4235,9 +4235,9 @@ class TruncatePipe {
4235
4235
  return !_.isEmpty(value) ? _.truncate(value, { length: maxLength }) : PrettifyPipe.EMPTY_SYMBOL;
4236
4236
  }
4237
4237
  }
4238
- TruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4239
- TruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: TruncatePipe, name: "viTruncate" });
4240
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: TruncatePipe, decorators: [{
4238
+ TruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4239
+ TruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: TruncatePipe, name: "viTruncate" });
4240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TruncatePipe, decorators: [{
4241
4241
  type: Pipe,
4242
4242
  args: [{
4243
4243
  name: 'viTruncate'
@@ -4267,9 +4267,9 @@ class TimePipe {
4267
4267
  //
4268
4268
  // --------------------------------------------------------------------------
4269
4269
  TimePipe.DEFAULT_FORMAT = '00:00:00';
4270
- TimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4271
- TimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: TimePipe, name: "viTime" });
4272
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: TimePipe, decorators: [{
4270
+ TimePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4271
+ TimePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: TimePipe, name: "viTime" });
4272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: TimePipe, decorators: [{
4273
4273
  type: Pipe,
4274
4274
  args: [{
4275
4275
  name: 'viTime'
@@ -4809,9 +4809,9 @@ class ThemeStyleDirective extends Destroyable {
4809
4809
  }
4810
4810
  }
4811
4811
  }
4812
- ThemeStyleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeStyleDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
4813
- ThemeStyleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ThemeStyleDirective, selector: "[vi-theme-style]", inputs: { flags: "flags", styleName: "styleName", key: ["vi-theme-style", "key"] }, usesInheritance: true, ngImport: i0 });
4814
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeStyleDirective, decorators: [{
4812
+ ThemeStyleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeStyleDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
4813
+ ThemeStyleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ThemeStyleDirective, selector: "[vi-theme-style]", inputs: { flags: "flags", styleName: "styleName", key: ["vi-theme-style", "key"] }, usesInheritance: true, ngImport: i0 });
4814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeStyleDirective, decorators: [{
4815
4815
  type: Directive,
4816
4816
  args: [{
4817
4817
  selector: '[vi-theme-style]'
@@ -4912,9 +4912,9 @@ class ThemeStyleHoverDirective extends ThemeStyleDirective {
4912
4912
  super.flags = value;
4913
4913
  }
4914
4914
  }
4915
- ThemeStyleHoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeStyleHoverDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
4916
- ThemeStyleHoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ThemeStyleHoverDirective, selector: "[vi-theme-style-hover]", inputs: { key: ["vi-theme-style-hover", "key"], styleName: "styleName", flags: "flags" }, usesInheritance: true, ngImport: i0 });
4917
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
4915
+ ThemeStyleHoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeStyleHoverDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
4916
+ ThemeStyleHoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ThemeStyleHoverDirective, selector: "[vi-theme-style-hover]", inputs: { key: ["vi-theme-style-hover", "key"], styleName: "styleName", flags: "flags" }, usesInheritance: true, ngImport: i0 });
4917
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
4918
4918
  type: Directive,
4919
4919
  args: [{
4920
4920
  selector: '[vi-theme-style-hover]'
@@ -4990,8 +4990,7 @@ class ThemeAssetDirective extends Destroyable {
4990
4990
  return;
4991
4991
  }
4992
4992
  this.isTriedThemeDefault = true;
4993
- this.source = this.getSource(this.getDefaultSourceId());
4994
- this.commitSourceProperties();
4993
+ this.setDefaultSourceProperties();
4995
4994
  }
4996
4995
  // --------------------------------------------------------------------------
4997
4996
  //
@@ -4999,11 +4998,16 @@ class ThemeAssetDirective extends Destroyable {
4999
4998
  //
5000
4999
  // --------------------------------------------------------------------------
5001
5000
  setSourceProperties() {
5002
- this.source = this.getSource(this.getSourceId(this.theme.theme));
5003
- this.commitSourceProperties();
5001
+ this.source = this.getSource(this.getSourceId());
5002
+ }
5003
+ setDefaultSourceProperties() {
5004
+ this.source = this.getSource(this.getDefaultSourceId());
5004
5005
  }
5005
- getSourceId(theme) {
5006
- return !_.isNil(theme) ? this.name + _.capitalize(theme.name) : null;
5006
+ getSourceId() {
5007
+ if (_.isNil(this.name) || _.isNil(this.theme) || _.isNil(this.theme.theme)) {
5008
+ return null;
5009
+ }
5010
+ return this.name + _.capitalize(this.theme.theme.name);
5007
5011
  }
5008
5012
  getDefaultSourceId() {
5009
5013
  return this.themeAsset.getName(this.name, this.isIgnoreTheme);
@@ -5024,6 +5028,23 @@ class ThemeAssetDirective extends Destroyable {
5024
5028
  }
5025
5029
  // --------------------------------------------------------------------------
5026
5030
  //
5031
+ // Protected Properties
5032
+ //
5033
+ // --------------------------------------------------------------------------
5034
+ get source() {
5035
+ return this._source;
5036
+ }
5037
+ set source(value) {
5038
+ if (value === this._source) {
5039
+ return;
5040
+ }
5041
+ this._source = value;
5042
+ if (!_.isNil(value)) {
5043
+ this.commitSourceProperties();
5044
+ }
5045
+ }
5046
+ // --------------------------------------------------------------------------
5047
+ //
5027
5048
  // Public Properties
5028
5049
  //
5029
5050
  // --------------------------------------------------------------------------
@@ -5115,9 +5136,9 @@ class ThemeAssetDirective extends Destroyable {
5115
5136
  }
5116
5137
  }
5117
5138
  }
5118
- ThemeAssetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5119
- ThemeAssetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", 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 });
5120
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetDirective, decorators: [{
5139
+ ThemeAssetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5140
+ ThemeAssetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", 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 });
5141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetDirective, decorators: [{
5121
5142
  type: Directive
5122
5143
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.ThemeService }, { type: i1.ThemeAssetService }]; }, propDecorators: { errorLoadingHandler: [{
5123
5144
  type: HostListener,
@@ -5174,9 +5195,9 @@ class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
5174
5195
  return super.name;
5175
5196
  }
5176
5197
  }
5177
- ThemeAssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5178
- ThemeAssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ThemeAssetBackgroundDirective, selector: "[vi-theme-background]", inputs: { name: ["vi-theme-background", "name"] }, usesInheritance: true, ngImport: i0 });
5179
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
5198
+ ThemeAssetBackgroundDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5199
+ ThemeAssetBackgroundDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ThemeAssetBackgroundDirective, selector: "[vi-theme-background]", inputs: { name: ["vi-theme-background", "name"] }, usesInheritance: true, ngImport: i0 });
5200
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
5180
5201
  type: Directive,
5181
5202
  args: [{
5182
5203
  selector: '[vi-theme-background]'
@@ -5219,9 +5240,9 @@ class ThemeAssetImageDirective extends ThemeAssetDirective {
5219
5240
  return super.name;
5220
5241
  }
5221
5242
  }
5222
- ThemeAssetImageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetImageDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5223
- ThemeAssetImageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ThemeAssetImageDirective, selector: "[vi-theme-image]", inputs: { name: ["vi-theme-image", "name"] }, usesInheritance: true, ngImport: i0 });
5224
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
5243
+ ThemeAssetImageDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetImageDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5244
+ ThemeAssetImageDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ThemeAssetImageDirective, selector: "[vi-theme-image]", inputs: { name: ["vi-theme-image", "name"] }, usesInheritance: true, ngImport: i0 });
5245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
5225
5246
  type: Directive,
5226
5247
  args: [{
5227
5248
  selector: '[vi-theme-image]'
@@ -5263,9 +5284,9 @@ class ThemeAssetIconDirective extends ThemeAssetDirective {
5263
5284
  return super.name;
5264
5285
  }
5265
5286
  }
5266
- ThemeAssetIconDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetIconDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5267
- ThemeAssetIconDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ThemeAssetIconDirective, selector: "[vi-theme-icon]", inputs: { name: ["vi-theme-icon", "name"] }, usesInheritance: true, ngImport: i0 });
5268
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
5287
+ ThemeAssetIconDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetIconDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5288
+ ThemeAssetIconDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ThemeAssetIconDirective, selector: "[vi-theme-icon]", inputs: { name: ["vi-theme-icon", "name"] }, usesInheritance: true, ngImport: i0 });
5289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
5269
5290
  type: Directive,
5270
5291
  args: [{
5271
5292
  selector: '[vi-theme-icon]'
@@ -5321,9 +5342,9 @@ class ThemeToggleDirective extends Destroyable {
5321
5342
  this.theme = null;
5322
5343
  }
5323
5344
  }
5324
- ThemeToggleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5325
- ThemeToggleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ThemeToggleDirective, selector: "[vi-theme-toggle]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
5326
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeToggleDirective, decorators: [{
5345
+ ThemeToggleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5346
+ ThemeToggleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.2", type: ThemeToggleDirective, selector: "[vi-theme-toggle]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
5347
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeToggleDirective, decorators: [{
5327
5348
  type: Directive,
5328
5349
  args: [{
5329
5350
  selector: '[vi-theme-toggle]'
@@ -5369,8 +5390,8 @@ class ThemeModule {
5369
5390
  };
5370
5391
  }
5371
5392
  }
5372
- ThemeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5373
- ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
5393
+ ThemeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5394
+ ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
5374
5395
  ThemeAssetImageDirective,
5375
5396
  ThemeAssetIconDirective,
5376
5397
  ThemeAssetBackgroundDirective,
@@ -5381,8 +5402,8 @@ ThemeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
5381
5402
  ThemeAssetBackgroundDirective,
5382
5403
  ThemeStyleDirective,
5383
5404
  ThemeStyleHoverDirective] });
5384
- ThemeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
5385
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ThemeModule, decorators: [{
5405
+ ThemeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
5406
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: ThemeModule, decorators: [{
5386
5407
  type: NgModule,
5387
5408
  args: [{
5388
5409
  imports: [CookieModule],
@@ -5646,28 +5667,8 @@ class WindowBase extends DestroyableContainer {
5646
5667
  this._width = NaN;
5647
5668
  this._height = NaN;
5648
5669
  }
5649
- commitSizeProperties() {
5650
- /*
5651
- let width = !_.isNaN(this.width) ? `${this.width}px` : 'auto';
5652
- let height = !_.isNaN(this.height) ? `${this.height}px` : 'auto';
5653
- this.getReference().updateSize(width, height);
5654
- */
5655
- }
5656
- commitPositionProperties() {
5657
- /*
5658
- if (_.isNaN(this._x) && _.isNaN(this._y)) {
5659
- return;
5660
- }
5661
- let position = {} as any;
5662
- if (!_.isNaN(this._y)) {
5663
- position.top = `${this._y}px`;
5664
- }
5665
- if (!_.isNaN(this._x)) {
5666
- position.left = `${this._x}px`;
5667
- }
5668
- this.getReference().updatePosition(position);
5669
- */
5670
- }
5670
+ commitSizeProperties() { }
5671
+ commitPositionProperties() { }
5671
5672
  // --------------------------------------------------------------------------
5672
5673
  //
5673
5674
  // Public Methods
@@ -6063,9 +6064,9 @@ class IWindowContent extends DestroyableContainer {
6063
6064
  }
6064
6065
  }
6065
6066
  }
6066
- IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: IWindowContent, deps: [{ token: WINDOW_CONTENT_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Component });
6067
- IWindowContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: IWindowContent, selector: "ng-component", inputs: { isDisabled: "isDisabled", window: "window" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6068
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: IWindowContent, decorators: [{
6067
+ IWindowContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: IWindowContent, deps: [{ token: WINDOW_CONTENT_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Component });
6068
+ IWindowContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: IWindowContent, selector: "ng-component", inputs: { isDisabled: "isDisabled", window: "window" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6069
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: IWindowContent, decorators: [{
6069
6070
  type: Component,
6070
6071
  args: [{ template: '' }]
6071
6072
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
@@ -6223,9 +6224,9 @@ class INotificationContent extends DestroyableContainer {
6223
6224
  return this._config;
6224
6225
  }
6225
6226
  }
6226
- INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
6227
- INotificationContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: INotificationContent, selector: "ng-component", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6228
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: INotificationContent, decorators: [{
6227
+ INotificationContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
6228
+ INotificationContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.2", type: INotificationContent, selector: "ng-component", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6229
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: INotificationContent, decorators: [{
6229
6230
  type: Component,
6230
6231
  args: [{ template: '' }]
6231
6232
  }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { config: [{
@@ -6336,9 +6337,9 @@ class LazyModuleLoader extends Loadable {
6336
6337
  return this._modules;
6337
6338
  }
6338
6339
  }
6339
- LazyModuleLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LazyModuleLoader, deps: [{ token: i0.Compiler }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
6340
- LazyModuleLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
6341
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: LazyModuleLoader, decorators: [{
6340
+ LazyModuleLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LazyModuleLoader, deps: [{ token: i0.Compiler }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
6341
+ LazyModuleLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
6342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: LazyModuleLoader, decorators: [{
6342
6343
  type: Injectable,
6343
6344
  args: [{ providedIn: 'root' }]
6344
6345
  }], ctorParameters: function () { return [{ type: i0.Compiler }, { type: i0.Injector }]; } });
@@ -6533,8 +6534,8 @@ class VIModule {
6533
6534
  };
6534
6535
  }
6535
6536
  }
6536
- VIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6537
- VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: VIModule, declarations: [TimePipe,
6537
+ VIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6538
+ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.2", ngImport: i0, type: VIModule, declarations: [TimePipe,
6538
6539
  FinancePipe,
6539
6540
  SanitizePipe,
6540
6541
  TruncatePipe,
@@ -6585,8 +6586,8 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0
6585
6586
  HTMLContentTitleDirective,
6586
6587
  AutoScrollBottomDirective,
6587
6588
  AspectRatioResizeDirective] });
6588
- VIModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: VIModule, imports: [IMPORTS, CookieModule, ThemeModule, LanguageModule, AssetModule] });
6589
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: VIModule, decorators: [{
6589
+ VIModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: VIModule, imports: [IMPORTS, CookieModule, ThemeModule, LanguageModule, AssetModule] });
6590
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.2", ngImport: i0, type: VIModule, decorators: [{
6590
6591
  type: NgModule,
6591
6592
  args: [{
6592
6593
  imports: IMPORTS,