@ts-core/angular 19.0.11 → 19.0.13

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.
@@ -1,5 +1,5 @@
1
1
  import * as i2 from '@ts-core/common';
2
- import { Destroyable, ExtendedError, DestroyableContainer, PromiseHandler, LoadableEvent, DateUtil, ArrayUtil, Loadable, LoadableStatus, ObservableData, TransportTimeoutError, TransportNoConnectionError, FilterableMapCollection, RemoveFilterableCondition, GetFilterableCondition, IDestroyable, MapCollection, TransportEvent, TransportLocal, Logger, LoggerLevel } from '@ts-core/common';
2
+ import { Destroyable, ExtendedError, DestroyableContainer, PromiseHandler, LoadableEvent, DateUtil, ArrayUtil, Loadable, LoadableStatus, ObservableData, TransportTimeoutError, TransportNoConnectionError, FilterableMapCollection, RemoveFilterableCondition, GetFilterableCondition, IDestroyable, TransformUtil, MapCollection, TransportEvent, TransportLocal, Logger, LoggerLevel } from '@ts-core/common';
3
3
  import * as i1 from '@ts-core/frontend';
4
4
  import { AssetsCdnProvider, Assets, NativeWindowService, LanguageService, ThemeService, ThemeAssetService, LoadingService, ICookieOptions, DefaultLogger } from '@ts-core/frontend';
5
5
  import { LanguagePreloadLoader, LanguageProxyLoader, LanguageFileLoader } from '@ts-core/language';
@@ -46,17 +46,26 @@ class ApplicationInitializerBase extends Destroyable {
46
46
  this.windows.info(error.message, null, null, { isDisableClose: true, isModal: true });
47
47
  return;
48
48
  }
49
- this.initializeAssets();
49
+ this.initializeAsset();
50
+ this.initializeTheme();
50
51
  this.initializeLanguage();
51
52
  }
52
53
  //--------------------------------------------------------------------------
53
54
  //
54
- // Language Methods
55
+ // Protected Methods
55
56
  //
56
57
  //--------------------------------------------------------------------------
57
- async initializeAssets() {
58
+ async initializeAsset() {
58
59
  Assets.provider = new AssetsCdnProvider(this.settings.assetsUrl, this.settings.assetsCdnUrl);
59
60
  }
61
+ async initializeTheme() {
62
+ this.theme.initialize(this.settings.themes);
63
+ }
64
+ //--------------------------------------------------------------------------
65
+ //
66
+ // Language Methods
67
+ //
68
+ //--------------------------------------------------------------------------
60
69
  async initializeLanguage() {
61
70
  this.language.loader = await this.getLanguageLoader();
62
71
  }
@@ -77,12 +86,19 @@ class ApplicationInitializerBase extends Destroyable {
77
86
  return this.options.config;
78
87
  }
79
88
  let local = await this.getConfigLocal();
80
- let remote = await this.getConfigRemote(local);
81
- return Object.assign(local, remote);
89
+ return Object.assign(local, await this.getConfigRemote(local));
82
90
  }
83
91
  async getConfigLocal() {
84
- let { data } = await axios.get('config.json');
85
- return data;
92
+ return this.loadConfig('config.json');
93
+ }
94
+ async loadConfig(url) {
95
+ try {
96
+ let { data } = await axios.get(url);
97
+ return data;
98
+ }
99
+ catch (error) {
100
+ throw new ExtendedError(`Unable to load config from "${url}": ${error.message}`);
101
+ }
86
102
  }
87
103
  }
88
104
  class ServerInitializeOptions {
@@ -168,10 +184,10 @@ class ApplicationComponentBase extends DestroyableContainer {
168
184
  get isViewReady() {
169
185
  return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.isResolved : false;
170
186
  }
171
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ApplicationComponentBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
172
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.10", type: ApplicationComponentBase, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
187
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ApplicationComponentBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
188
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: ApplicationComponentBase, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
173
189
  }
174
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ApplicationComponentBase, decorators: [{
190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ApplicationComponentBase, decorators: [{
175
191
  type: Component,
176
192
  args: [{ template: '' }]
177
193
  }], ctorParameters: () => [] });
@@ -996,10 +1012,10 @@ class AssetBackgroundDirective extends Destroyable {
996
1012
  get background() {
997
1013
  return this._background;
998
1014
  }
999
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1000
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: AssetBackgroundDirective, isStandalone: false, selector: "[vi-asset-background]", inputs: { isIcon: ["isIcon", "isIcon", booleanAttribute], isImage: ["isImage", "isImage", booleanAttribute], isUrl: ["isUrl", "isUrl", booleanAttribute], repeat: "repeat", extension: "extension", background: ["vi-asset-background", "background"] }, usesInheritance: true, ngImport: i0 });
1015
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1016
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: AssetBackgroundDirective, isStandalone: false, selector: "[vi-asset-background]", inputs: { isIcon: ["isIcon", "isIcon", booleanAttribute], isImage: ["isImage", "isImage", booleanAttribute], isUrl: ["isUrl", "isUrl", booleanAttribute], repeat: "repeat", extension: "extension", background: ["vi-asset-background", "background"] }, usesInheritance: true, ngImport: i0 });
1001
1017
  }
1002
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
1018
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
1003
1019
  type: Directive,
1004
1020
  args: [{
1005
1021
  selector: '[vi-asset-background]',
@@ -1032,10 +1048,10 @@ class AssetBackgroundPipe {
1032
1048
  transform(name, extension = 'png') {
1033
1049
  return Assets.getBackground(name, extension);
1034
1050
  }
1035
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1036
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, isStandalone: false, name: "viAssetBackground" });
1051
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1052
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: AssetBackgroundPipe, isStandalone: false, name: "viAssetBackground" });
1037
1053
  }
1038
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
1054
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
1039
1055
  type: Pipe,
1040
1056
  args: [{
1041
1057
  name: 'viAssetBackground',
@@ -1052,10 +1068,10 @@ class AssetIconPipe {
1052
1068
  transform(name, extension = 'png') {
1053
1069
  return Assets.getIcon(name, extension);
1054
1070
  }
1055
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1056
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, isStandalone: false, name: "viAssetIcon" });
1071
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1072
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: AssetIconPipe, isStandalone: false, name: "viAssetIcon" });
1057
1073
  }
1058
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, decorators: [{
1074
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetIconPipe, decorators: [{
1059
1075
  type: Pipe,
1060
1076
  args: [{
1061
1077
  name: 'viAssetIcon',
@@ -1072,10 +1088,10 @@ class AssetFilePipe {
1072
1088
  transform(name, extension) {
1073
1089
  return Assets.getFile(name, extension);
1074
1090
  }
1075
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1076
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, isStandalone: false, name: "viAssetFile" });
1091
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1092
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: AssetFilePipe, isStandalone: false, name: "viAssetFile" });
1077
1093
  }
1078
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, decorators: [{
1094
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetFilePipe, decorators: [{
1079
1095
  type: Pipe,
1080
1096
  args: [{
1081
1097
  name: 'viAssetFile',
@@ -1092,10 +1108,10 @@ class AssetVideoPipe {
1092
1108
  transform(name, extension = 'mp4') {
1093
1109
  return Assets.getVideo(name, extension);
1094
1110
  }
1095
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1096
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, isStandalone: false, name: "viAssetVideo" });
1111
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1112
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: AssetVideoPipe, isStandalone: false, name: "viAssetVideo" });
1097
1113
  }
1098
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, decorators: [{
1114
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetVideoPipe, decorators: [{
1099
1115
  type: Pipe,
1100
1116
  args: [{
1101
1117
  name: 'viAssetVideo',
@@ -1112,10 +1128,10 @@ class AssetSoundPipe {
1112
1128
  transform(name, extension = 'mp3') {
1113
1129
  return Assets.getSound(name, extension);
1114
1130
  }
1115
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1116
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, isStandalone: false, name: "viAssetSound" });
1131
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1132
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: AssetSoundPipe, isStandalone: false, name: "viAssetSound" });
1117
1133
  }
1118
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, decorators: [{
1134
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetSoundPipe, decorators: [{
1119
1135
  type: Pipe,
1120
1136
  args: [{
1121
1137
  name: 'viAssetSound',
@@ -1132,10 +1148,10 @@ class AssetImagePipe {
1132
1148
  transform(name, extension = 'png') {
1133
1149
  return Assets.getImage(name, extension);
1134
1150
  }
1135
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1136
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, isStandalone: false, name: "viAssetImage" });
1151
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1152
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: AssetImagePipe, isStandalone: false, name: "viAssetImage" });
1137
1153
  }
1138
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, decorators: [{
1154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetImagePipe, decorators: [{
1139
1155
  type: Pipe,
1140
1156
  args: [{
1141
1157
  name: 'viAssetImage',
@@ -1145,11 +1161,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImpo
1145
1161
 
1146
1162
  let declarations$3 = [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective];
1147
1163
  class AssetModule {
1148
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1149
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, declarations: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective], imports: [CommonModule], exports: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective] });
1150
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, imports: [CommonModule] });
1164
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1165
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: AssetModule, declarations: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective], imports: [CommonModule], exports: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective] });
1166
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetModule, imports: [CommonModule] });
1151
1167
  }
1152
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, decorators: [{
1168
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AssetModule, decorators: [{
1153
1169
  type: NgModule,
1154
1170
  args: [{
1155
1171
  imports: [CommonModule],
@@ -1254,10 +1270,10 @@ class PlatformService extends Destroyable {
1254
1270
  get isPlatformBrowser() {
1255
1271
  return this._isPlatformBrowser;
1256
1272
  }
1257
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
1258
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, providedIn: 'root' });
1273
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
1274
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: PlatformService, providedIn: 'root' });
1259
1275
  }
1260
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, decorators: [{
1276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: PlatformService, decorators: [{
1261
1277
  type: Injectable,
1262
1278
  args: [{ providedIn: 'root' }]
1263
1279
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -1287,11 +1303,11 @@ class CookieModule {
1287
1303
  ]
1288
1304
  };
1289
1305
  }
1290
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1291
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: CookieModule });
1292
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule });
1306
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1307
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: CookieModule });
1308
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: CookieModule });
1293
1309
  }
1294
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule, decorators: [{
1310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: CookieModule, decorators: [{
1295
1311
  type: NgModule
1296
1312
  }] });
1297
1313
  function cookieServiceFactory(nativeWindow, options, platform) {
@@ -1509,10 +1525,10 @@ class AspectRatioResizeDirective extends Destroyable {
1509
1525
  get ratio() {
1510
1526
  return this._ratio;
1511
1527
  }
1512
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1513
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: AspectRatioResizeDirective, isStandalone: false, selector: "[vi-aspect-ratio]", inputs: { direction: ["vi-aspect-ratio", "direction"], ratio: ["ratio", "ratio", numberAttribute] }, usesInheritance: true, ngImport: i0 });
1528
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1529
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: AspectRatioResizeDirective, isStandalone: false, selector: "[vi-aspect-ratio]", inputs: { direction: ["vi-aspect-ratio", "direction"], ratio: ["ratio", "ratio", numberAttribute] }, usesInheritance: true, ngImport: i0 });
1514
1530
  }
1515
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
1531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
1516
1532
  type: Directive,
1517
1533
  args: [{
1518
1534
  selector: '[vi-aspect-ratio]',
@@ -1629,10 +1645,10 @@ class ScrollDirective extends Destroyable {
1629
1645
  get scrollValue() {
1630
1646
  return this._scrollValue;
1631
1647
  }
1632
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1633
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: ScrollDirective, isStandalone: false, selector: "[vi-scroll]", inputs: { scrollValue: ["scrollValue", "scrollValue", numberAttribute] }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
1648
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1649
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: ScrollDirective, isStandalone: false, selector: "[vi-scroll]", inputs: { scrollValue: ["scrollValue", "scrollValue", numberAttribute] }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
1634
1650
  }
1635
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
1651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ScrollDirective, decorators: [{
1636
1652
  type: Directive,
1637
1653
  args: [{
1638
1654
  selector: '[vi-scroll]',
@@ -1700,10 +1716,10 @@ class InfiniteScrollDirective extends ScrollDirective {
1700
1716
  get scrollHeight() {
1701
1717
  return this.element.scrollHeight;
1702
1718
  }
1703
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1704
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: InfiniteScrollDirective, isStandalone: false, selector: "[vi-infinite-scroll]", inputs: { elementHeight: ["elementHeight", "elementHeight", numberAttribute] }, outputs: { top: "top", bottom: "bottom" }, usesInheritance: true, ngImport: i0 });
1719
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1720
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: InfiniteScrollDirective, isStandalone: false, selector: "[vi-infinite-scroll]", inputs: { elementHeight: ["elementHeight", "elementHeight", numberAttribute] }, outputs: { top: "top", bottom: "bottom" }, usesInheritance: true, ngImport: i0 });
1705
1721
  }
1706
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
1722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
1707
1723
  type: Directive,
1708
1724
  args: [{
1709
1725
  selector: '[vi-infinite-scroll]',
@@ -1819,10 +1835,10 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
1819
1835
  this.isScrollLocked = true;
1820
1836
  this.scrollCheck();
1821
1837
  }
1822
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1823
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: AutoScrollBottomDirective, isStandalone: false, selector: "[vi-auto-scroll-bottom]", inputs: { behavior: "behavior", trigger: ["vi-auto-scroll-bottom", "trigger"] }, outputs: { triggerChanged: "triggerChanged" }, usesInheritance: true, ngImport: i0 });
1838
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1839
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: AutoScrollBottomDirective, isStandalone: false, selector: "[vi-auto-scroll-bottom]", inputs: { behavior: "behavior", trigger: ["vi-auto-scroll-bottom", "trigger"] }, outputs: { triggerChanged: "triggerChanged" }, usesInheritance: true, ngImport: i0 });
1824
1840
  }
1825
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
1841
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
1826
1842
  type: Directive,
1827
1843
  args: [{
1828
1844
  selector: '[vi-auto-scroll-bottom]',
@@ -1869,10 +1885,10 @@ class ClickToCopyDirective extends Destroyable {
1869
1885
  this.element = null;
1870
1886
  clearTimeout(this.selectionClearTimer);
1871
1887
  }
1872
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1873
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ClickToCopyDirective, isStandalone: false, selector: "[vi-click-to-copy]", inputs: { element: ["vi-click-to-copy", "element"] }, host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1888
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1889
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ClickToCopyDirective, isStandalone: false, selector: "[vi-click-to-copy]", inputs: { element: ["vi-click-to-copy", "element"] }, host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1874
1890
  }
1875
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToCopyDirective, decorators: [{
1891
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ClickToCopyDirective, decorators: [{
1876
1892
  type: Directive,
1877
1893
  args: [{
1878
1894
  selector: '[vi-click-to-copy]',
@@ -1924,10 +1940,10 @@ class ClickToSelectDirective extends Destroyable {
1924
1940
  super.destroy();
1925
1941
  this.element = null;
1926
1942
  }
1927
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1928
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ClickToSelectDirective, isStandalone: false, selector: "[vi-click-to-select]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1943
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1944
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ClickToSelectDirective, isStandalone: false, selector: "[vi-click-to-select]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
1929
1945
  }
1930
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToSelectDirective, decorators: [{
1946
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ClickToSelectDirective, decorators: [{
1931
1947
  type: Directive,
1932
1948
  args: [{
1933
1949
  selector: '[vi-click-to-select]',
@@ -2032,10 +2048,10 @@ class FocusDirective extends Destroyable {
2032
2048
  set trigger(value) {
2033
2049
  this.focus();
2034
2050
  }
2035
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2036
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: FocusDirective, isStandalone: false, selector: "[vi-focus]", inputs: { trigger: ["vi-focus", "trigger"] }, usesInheritance: true, ngImport: i0 });
2051
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2052
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: FocusDirective, isStandalone: false, selector: "[vi-focus]", inputs: { trigger: ["vi-focus", "trigger"] }, usesInheritance: true, ngImport: i0 });
2037
2053
  }
2038
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FocusDirective, decorators: [{
2054
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: FocusDirective, decorators: [{
2039
2055
  type: Directive,
2040
2056
  args: [{
2041
2057
  selector: '[vi-focus]',
@@ -2077,10 +2093,10 @@ class SelectOnFocusDirective extends Destroyable {
2077
2093
  super.destroy();
2078
2094
  this.element = null;
2079
2095
  }
2080
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2081
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: SelectOnFocusDirective, isStandalone: false, selector: "[vi-select-on-focus]", host: { listeners: { "focus": "focusHandler()" } }, usesInheritance: true, ngImport: i0 });
2096
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2097
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: SelectOnFocusDirective, isStandalone: false, selector: "[vi-select-on-focus]", host: { listeners: { "focus": "focusHandler()" } }, usesInheritance: true, ngImport: i0 });
2082
2098
  }
2083
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
2099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
2084
2100
  type: Directive,
2085
2101
  args: [{
2086
2102
  selector: '[vi-select-on-focus]',
@@ -2145,10 +2161,10 @@ class ResizeDirective extends Destroyable {
2145
2161
  this.interactable = null;
2146
2162
  }
2147
2163
  }
2148
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2149
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: ResizeDirective, isStandalone: false, selector: "[vi-resize]", inputs: { isTop: ["isTop", "isTop", booleanAttribute], isLeft: ["isLeft", "isLeft", booleanAttribute], isRight: ["isRight", "isRight", booleanAttribute], isBottom: ["isBottom", "isBottom", booleanAttribute] }, outputs: { resized: "resized" }, usesInheritance: true, ngImport: i0 });
2164
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2165
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: ResizeDirective, isStandalone: false, selector: "[vi-resize]", inputs: { isTop: ["isTop", "isTop", booleanAttribute], isLeft: ["isLeft", "isLeft", booleanAttribute], isRight: ["isRight", "isRight", booleanAttribute], isBottom: ["isBottom", "isBottom", booleanAttribute] }, outputs: { resized: "resized" }, usesInheritance: true, ngImport: i0 });
2150
2166
  }
2151
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeDirective, decorators: [{
2167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ResizeDirective, decorators: [{
2152
2168
  type: Directive,
2153
2169
  args: [{
2154
2170
  selector: '[vi-resize]',
@@ -2324,10 +2340,10 @@ class ScrollCheckDirective extends Destroyable {
2324
2340
  get scrollLimit() {
2325
2341
  return this._scrollLimit;
2326
2342
  }
2327
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2328
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: ScrollCheckDirective, isStandalone: false, selector: "[vi-scroll-check]", inputs: { delay: ["delay", "delay", numberAttribute], offset: ["offset", "offset", numberAttribute], scrollLimit: ["vi-scroll-check", "scrollLimit"] }, outputs: { top: "top", bottom: "bottom", limitExceed: "limitExceed" }, usesInheritance: true, ngImport: i0 });
2343
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2344
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: ScrollCheckDirective, isStandalone: false, selector: "[vi-scroll-check]", inputs: { delay: ["delay", "delay", numberAttribute], offset: ["offset", "offset", numberAttribute], scrollLimit: ["vi-scroll-check", "scrollLimit"] }, outputs: { top: "top", bottom: "bottom", limitExceed: "limitExceed" }, usesInheritance: true, ngImport: i0 });
2329
2345
  }
2330
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollCheckDirective, decorators: [{
2346
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ScrollCheckDirective, decorators: [{
2331
2347
  type: Directive,
2332
2348
  args: [{
2333
2349
  selector: '[vi-scroll-check]',
@@ -2421,10 +2437,10 @@ class LanguagePipe extends Destroyable {
2421
2437
  this.lastParams = null;
2422
2438
  this.lastValue = null;
2423
2439
  }
2424
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipe, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2425
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipe, isStandalone: false, name: "viTranslate", pure: false });
2440
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipe, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2441
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipe, isStandalone: false, name: "viTranslate", pure: false });
2426
2442
  }
2427
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipe, decorators: [{
2443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipe, decorators: [{
2428
2444
  type: Pipe,
2429
2445
  args: [{
2430
2446
  name: 'viTranslate',
@@ -2487,10 +2503,10 @@ class HTMLTitleDirective extends Destroyable {
2487
2503
  get value() {
2488
2504
  return this._value;
2489
2505
  }
2490
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2491
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: HTMLTitleDirective, isStandalone: false, selector: "[vi-html-title]", inputs: { value: ["vi-html-title", "value"] }, usesInheritance: true, ngImport: i0 });
2506
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2507
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: HTMLTitleDirective, isStandalone: false, selector: "[vi-html-title]", inputs: { value: ["vi-html-title", "value"] }, usesInheritance: true, ngImport: i0 });
2492
2508
  }
2493
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLTitleDirective, decorators: [{
2509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: HTMLTitleDirective, decorators: [{
2494
2510
  type: Directive,
2495
2511
  args: [{
2496
2512
  selector: '[vi-html-title]',
@@ -2556,10 +2572,10 @@ class HTMLContentTitleDirective extends Destroyable {
2556
2572
  get value() {
2557
2573
  return this._value;
2558
2574
  }
2559
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2560
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: HTMLContentTitleDirective, isStandalone: false, selector: "[vi-html-content-title]", inputs: { value: ["vi-html-content-title", "value"] }, usesInheritance: true, ngImport: i0 });
2575
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2576
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: HTMLContentTitleDirective, isStandalone: false, selector: "[vi-html-content-title]", inputs: { value: ["vi-html-content-title", "value"] }, usesInheritance: true, ngImport: i0 });
2561
2577
  }
2562
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
2578
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
2563
2579
  type: Directive,
2564
2580
  args: [{
2565
2581
  selector: '[vi-html-content-title]',
@@ -2580,10 +2596,10 @@ class IsBrowserDirective extends StructureDirective {
2580
2596
  super(templateRef, container);
2581
2597
  this.isNeedAdd = platform.isPlatformBrowser;
2582
2598
  }
2583
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsBrowserDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
2584
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: IsBrowserDirective, isStandalone: false, selector: "[viIsBrowser]", usesInheritance: true, ngImport: i0 });
2599
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: IsBrowserDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
2600
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: IsBrowserDirective, isStandalone: false, selector: "[viIsBrowser]", usesInheritance: true, ngImport: i0 });
2585
2601
  }
2586
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsBrowserDirective, decorators: [{
2602
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: IsBrowserDirective, decorators: [{
2587
2603
  type: Directive,
2588
2604
  args: [{
2589
2605
  selector: '[viIsBrowser]',
@@ -2601,10 +2617,10 @@ class IsServerDirective extends StructureDirective {
2601
2617
  super(templateRef, container);
2602
2618
  this.isNeedAdd = platform.isPlatformServer;
2603
2619
  }
2604
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsServerDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
2605
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: IsServerDirective, isStandalone: false, selector: "[viIsServer]", usesInheritance: true, ngImport: i0 });
2620
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: IsServerDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
2621
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: IsServerDirective, isStandalone: false, selector: "[viIsServer]", usesInheritance: true, ngImport: i0 });
2606
2622
  }
2607
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsServerDirective, decorators: [{
2623
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: IsServerDirective, decorators: [{
2608
2624
  type: Directive,
2609
2625
  args: [{
2610
2626
  selector: '[viIsServer]',
@@ -2630,10 +2646,10 @@ class NullEmptyValueDirective {
2630
2646
  onEvent(target) {
2631
2647
  this.control.viewToModelUpdate(_.isEmpty(target.value) ? null : target.value);
2632
2648
  }
2633
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NullEmptyValueDirective, deps: [{ token: i1$1.NgControl }], target: i0.ɵɵFactoryTarget.Directive });
2634
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: NullEmptyValueDirective, isStandalone: false, selector: "input[nullEmptyValue]", host: { listeners: { "input": "onEvent($event.target)" } }, ngImport: i0 });
2649
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: NullEmptyValueDirective, deps: [{ token: i1$1.NgControl }], target: i0.ɵɵFactoryTarget.Directive });
2650
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: NullEmptyValueDirective, isStandalone: false, selector: "input[nullEmptyValue]", host: { listeners: { "input": "onEvent($event.target)" } }, ngImport: i0 });
2635
2651
  }
2636
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NullEmptyValueDirective, decorators: [{
2652
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: NullEmptyValueDirective, decorators: [{
2637
2653
  type: Directive,
2638
2654
  args: [{
2639
2655
  selector: 'input[nullEmptyValue]',
@@ -2665,10 +2681,10 @@ class UppercaseValueDirective {
2665
2681
  target.value = value.toUpperCase();
2666
2682
  }
2667
2683
  }
2668
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: UppercaseValueDirective, deps: [{ token: i1$1.NgControl }], target: i0.ɵɵFactoryTarget.Directive });
2669
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: UppercaseValueDirective, isStandalone: false, selector: "input[uppercaseValue]", host: { listeners: { "input": "onEvent($event.target)" } }, ngImport: i0 });
2684
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: UppercaseValueDirective, deps: [{ token: i1$1.NgControl }], target: i0.ɵɵFactoryTarget.Directive });
2685
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: UppercaseValueDirective, isStandalone: false, selector: "input[uppercaseValue]", host: { listeners: { "input": "onEvent($event.target)" } }, ngImport: i0 });
2670
2686
  }
2671
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: UppercaseValueDirective, decorators: [{
2687
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: UppercaseValueDirective, decorators: [{
2672
2688
  type: Directive,
2673
2689
  args: [{
2674
2690
  standalone: false,
@@ -2705,10 +2721,10 @@ class LanguagePipePure extends Destroyable {
2705
2721
  super.destroy();
2706
2722
  this.language = null;
2707
2723
  }
2708
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2709
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, isStandalone: false, name: "viTranslatePure" });
2724
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2725
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipePure, isStandalone: false, name: "viTranslatePure" });
2710
2726
  }
2711
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, decorators: [{
2727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipePure, decorators: [{
2712
2728
  type: Pipe,
2713
2729
  args: [{
2714
2730
  name: 'viTranslatePure',
@@ -2732,7 +2748,7 @@ class LoadableResolver {
2732
2748
  //
2733
2749
  // --------------------------------------------------------------------------
2734
2750
  resolveHandler() { }
2735
- rejectHandler() { }
2751
+ rejectHandler(error) { }
2736
2752
  // --------------------------------------------------------------------------
2737
2753
  //
2738
2754
  // Public Methods
@@ -2750,8 +2766,8 @@ class LoadableResolver {
2750
2766
  promise.resolve();
2751
2767
  }
2752
2768
  else if (data.type === LoadableEvent.ERROR) {
2753
- this.rejectHandler();
2754
2769
  let error = data.error?.toString();
2770
+ this.rejectHandler(data.error);
2755
2771
  promise.reject(error);
2756
2772
  }
2757
2773
  else if (data.type === LoadableEvent.FINISHED) {
@@ -2774,10 +2790,10 @@ class LanguageResolver extends LanguageRequireResolver {
2774
2790
  constructor(service) {
2775
2791
  super(service);
2776
2792
  }
2777
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
2778
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
2793
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
2794
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
2779
2795
  }
2780
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, decorators: [{
2796
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageResolver, decorators: [{
2781
2797
  type: Injectable,
2782
2798
  args: [{ providedIn: 'root' }]
2783
2799
  }], ctorParameters: () => [{ type: i1.LanguageService }] });
@@ -2860,10 +2876,10 @@ class LanguageDirective extends Destroyable {
2860
2876
  get params() {
2861
2877
  return this._params;
2862
2878
  }
2863
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageDirective, deps: [{ token: i0.ElementRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2864
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: LanguageDirective, isStandalone: false, selector: "[vi-translate]", inputs: { isNeedTitle: ["isNeedTitle", "isNeedTitle", booleanAttribute], key: ["vi-translate", "key"], params: "params" }, usesInheritance: true, ngImport: i0 });
2879
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageDirective, deps: [{ token: i0.ElementRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2880
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: LanguageDirective, isStandalone: false, selector: "[vi-translate]", inputs: { isNeedTitle: ["isNeedTitle", "isNeedTitle", booleanAttribute], key: ["vi-translate", "key"], params: "params" }, usesInheritance: true, ngImport: i0 });
2865
2881
  }
2866
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageDirective, decorators: [{
2882
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageDirective, decorators: [{
2867
2883
  type: Directive,
2868
2884
  args: [{
2869
2885
  selector: '[vi-translate]',
@@ -2916,10 +2932,10 @@ class LanguageToggleDirective extends Destroyable {
2916
2932
  super.destroy();
2917
2933
  this.language = null;
2918
2934
  }
2919
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageToggleDirective, deps: [{ token: i1.LanguageService }, { token: i1.SettingsServiceBase }], target: i0.ɵɵFactoryTarget.Directive });
2920
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: LanguageToggleDirective, isStandalone: false, selector: "[vi-language-toggle]", host: { listeners: { "click": "clickHandler()" } }, usesInheritance: true, ngImport: i0 });
2935
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageToggleDirective, deps: [{ token: i1.LanguageService }, { token: i1.SettingsServiceBase }], target: i0.ɵɵFactoryTarget.Directive });
2936
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: LanguageToggleDirective, isStandalone: false, selector: "[vi-language-toggle]", host: { listeners: { "click": "clickHandler()" } }, usesInheritance: true, ngImport: i0 });
2921
2937
  }
2922
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageToggleDirective, decorators: [{
2938
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageToggleDirective, decorators: [{
2923
2939
  type: Directive,
2924
2940
  args: [{
2925
2941
  selector: '[vi-language-toggle]',
@@ -2977,10 +2993,10 @@ class LanguagePipeHas extends Destroyable {
2977
2993
  this.language = null;
2978
2994
  this.key = null;
2979
2995
  }
2980
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2981
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, isStandalone: false, name: "viTranslateHas", pure: false });
2996
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2997
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipeHas, isStandalone: false, name: "viTranslateHas", pure: false });
2982
2998
  }
2983
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, decorators: [{
2999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipeHas, decorators: [{
2984
3000
  type: Pipe,
2985
3001
  args: [{
2986
3002
  name: 'viTranslateHas',
@@ -3015,10 +3031,10 @@ class LanguagePipeHasPure extends Destroyable {
3015
3031
  super.destroy();
3016
3032
  this.language = null;
3017
3033
  }
3018
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
3019
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, isStandalone: false, name: "viTranslateHasPure" });
3034
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
3035
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipeHasPure, isStandalone: false, name: "viTranslateHasPure" });
3020
3036
  }
3021
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
3037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
3022
3038
  type: Pipe,
3023
3039
  args: [{
3024
3040
  name: 'viTranslateHasPure',
@@ -3092,10 +3108,10 @@ class LanguageHasDirective extends StructureDirective {
3092
3108
  get viTranslateHasIsOnlyIfNotEmpty() {
3093
3109
  return this._isOnlyIfNotEmpty;
3094
3110
  }
3095
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageHasDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
3096
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: LanguageHasDirective, isStandalone: false, selector: "[viTranslateHas]", inputs: { viTranslateHas: "viTranslateHas", viTranslateHasIsOnlyIfNotEmpty: "viTranslateHasIsOnlyIfNotEmpty" }, usesInheritance: true, ngImport: i0 });
3111
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageHasDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
3112
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: LanguageHasDirective, isStandalone: false, selector: "[viTranslateHas]", inputs: { viTranslateHas: "viTranslateHas", viTranslateHasIsOnlyIfNotEmpty: "viTranslateHasIsOnlyIfNotEmpty" }, usesInheritance: true, ngImport: i0 });
3097
3113
  }
3098
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageHasDirective, decorators: [{
3114
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageHasDirective, decorators: [{
3099
3115
  type: Directive,
3100
3116
  args: [{
3101
3117
  selector: '[viTranslateHas]',
@@ -3137,11 +3153,11 @@ class LanguageModule {
3137
3153
  ]
3138
3154
  };
3139
3155
  }
3140
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3141
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, declarations: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageToggleDirective, LanguageHasDirective, LanguageDirective], imports: [CookieModule], exports: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageToggleDirective, LanguageHasDirective, LanguageDirective] });
3142
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
3156
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3157
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: LanguageModule, declarations: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageToggleDirective, LanguageHasDirective, LanguageDirective], imports: [CookieModule], exports: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageToggleDirective, LanguageHasDirective, LanguageDirective] });
3158
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
3143
3159
  }
3144
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, decorators: [{
3160
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LanguageModule, decorators: [{
3145
3161
  type: NgModule,
3146
3162
  args: [{
3147
3163
  imports: [CookieModule],
@@ -3444,10 +3460,10 @@ class LoginGuard extends LoginRequireResolver {
3444
3460
  canActivate(route, state) {
3445
3461
  return this.isLoggedIn() ? true : this.router.parseUrl(LoginGuard.redirectUrl);
3446
3462
  }
3447
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3448
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginGuard, providedIn: 'root' });
3463
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3464
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginGuard, providedIn: 'root' });
3449
3465
  }
3450
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginGuard, decorators: [{
3466
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginGuard, decorators: [{
3451
3467
  type: Injectable,
3452
3468
  args: [{ providedIn: 'root' }]
3453
3469
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -3480,10 +3496,10 @@ class LoginNotGuard extends LoginRequireResolver {
3480
3496
  canActivate(route, state) {
3481
3497
  return !this.isLoggedIn() ? true : this.router.parseUrl(LoginNotGuard.redirectUrl);
3482
3498
  }
3483
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginNotGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3484
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
3499
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginNotGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3500
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
3485
3501
  }
3486
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginNotGuard, decorators: [{
3502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginNotGuard, decorators: [{
3487
3503
  type: Injectable,
3488
3504
  args: [{ providedIn: 'root' }]
3489
3505
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -3500,10 +3516,10 @@ class LoginResolver extends LoginRequireResolver {
3500
3516
  constructor(login) {
3501
3517
  super(login);
3502
3518
  }
3503
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, deps: [{ token: LoginServiceBase }], target: i0.ɵɵFactoryTarget.Injectable });
3504
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, providedIn: 'root' });
3519
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginResolver, deps: [{ token: LoginServiceBase }], target: i0.ɵɵFactoryTarget.Injectable });
3520
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginResolver, providedIn: 'root' });
3505
3521
  }
3506
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, decorators: [{
3522
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginResolver, decorators: [{
3507
3523
  type: Injectable,
3508
3524
  args: [{ providedIn: 'root' }]
3509
3525
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -3549,10 +3565,10 @@ class LoginIfCanGuard extends LoginGuard {
3549
3565
  }
3550
3566
  return super.canActivate(route, state);
3551
3567
  }
3552
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginIfCanGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3553
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
3568
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginIfCanGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3569
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
3554
3570
  }
3555
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginIfCanGuard, decorators: [{
3571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LoginIfCanGuard, decorators: [{
3556
3572
  type: Injectable,
3557
3573
  args: [{ providedIn: 'root' }]
3558
3574
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -4390,10 +4406,10 @@ class PrettifyPipe {
4390
4406
  //
4391
4407
  // --------------------------------------------------------------------------
4392
4408
  constructor() { }
4393
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4394
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, isStandalone: false, name: "viPrettify" });
4409
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4410
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: PrettifyPipe, isStandalone: false, name: "viPrettify" });
4395
4411
  }
4396
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, decorators: [{
4412
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: PrettifyPipe, decorators: [{
4397
4413
  type: Pipe,
4398
4414
  args: [{
4399
4415
  name: 'viPrettify',
@@ -4410,10 +4426,10 @@ class CamelCasePipe {
4410
4426
  transform(value) {
4411
4427
  return !_.isNil(value) ? _.camelCase(value) : PrettifyPipe.EMPTY_SYMBOL;
4412
4428
  }
4413
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4414
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, isStandalone: false, name: "viCamelCase" });
4429
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4430
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: CamelCasePipe, isStandalone: false, name: "viCamelCase" });
4415
4431
  }
4416
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, decorators: [{
4432
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: CamelCasePipe, decorators: [{
4417
4433
  type: Pipe,
4418
4434
  args: [{
4419
4435
  name: 'viCamelCase',
@@ -4460,10 +4476,10 @@ class FinancePipe {
4460
4476
  }
4461
4477
  return FinancePipe.format(value, format);
4462
4478
  }
4463
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4464
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, isStandalone: false, name: "viFinance" });
4479
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4480
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: FinancePipe, isStandalone: false, name: "viFinance" });
4465
4481
  }
4466
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, decorators: [{
4482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: FinancePipe, decorators: [{
4467
4483
  type: Pipe,
4468
4484
  args: [{
4469
4485
  name: 'viFinance',
@@ -4527,10 +4543,10 @@ class MomentDatePipe {
4527
4543
  let moment = MomentDatePipe.parseMoment(value);
4528
4544
  return moment.format(format || MomentDatePipe.DEFAULT_FORMAT);
4529
4545
  }
4530
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4531
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, isStandalone: false, name: "viMomentDate" });
4546
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4547
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: MomentDatePipe, isStandalone: false, name: "viMomentDate" });
4532
4548
  }
4533
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, decorators: [{
4549
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentDatePipe, decorators: [{
4534
4550
  type: Pipe,
4535
4551
  args: [{
4536
4552
  name: 'viMomentDate',
@@ -4574,10 +4590,10 @@ class MomentDateAdaptivePipe {
4574
4590
  }
4575
4591
  return item.format(format);
4576
4592
  }
4577
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4578
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, isStandalone: false, name: "viMomentAdaptiveDate" });
4593
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4594
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: MomentDateAdaptivePipe, isStandalone: false, name: "viMomentAdaptiveDate" });
4579
4595
  }
4580
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
4596
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
4581
4597
  type: Pipe,
4582
4598
  args: [{
4583
4599
  name: 'viMomentAdaptiveDate',
@@ -4594,10 +4610,10 @@ class MomentDateFromNowPipe {
4594
4610
  transform(value, format) {
4595
4611
  return MomentDatePipe.fromNow(value, format);
4596
4612
  }
4597
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4598
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, isStandalone: false, name: "viMomentDateFromNow" });
4613
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4614
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: MomentDateFromNowPipe, isStandalone: false, name: "viMomentDateFromNow" });
4599
4615
  }
4600
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
4616
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
4601
4617
  type: Pipe,
4602
4618
  args: [{
4603
4619
  name: 'viMomentDateFromNow',
@@ -4626,10 +4642,10 @@ class MomentTimePipe {
4626
4642
  .add(timeMilliseconds, 'milliseconds')
4627
4643
  .format(format || MomentTimePipe.DEFAULT_FORMAT);
4628
4644
  }
4629
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4630
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, isStandalone: false, name: "viMomentTime" });
4645
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4646
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: MomentTimePipe, isStandalone: false, name: "viMomentTime" });
4631
4647
  }
4632
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, decorators: [{
4648
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: MomentTimePipe, decorators: [{
4633
4649
  type: Pipe,
4634
4650
  args: [{
4635
4651
  name: 'viMomentTime',
@@ -4666,10 +4682,10 @@ class NgModelErrorPipe {
4666
4682
  constructor(language) {
4667
4683
  this.language = language;
4668
4684
  }
4669
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
4670
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, isStandalone: false, name: "viNgModelError" });
4685
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
4686
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: NgModelErrorPipe, isStandalone: false, name: "viNgModelError" });
4671
4687
  }
4672
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, decorators: [{
4688
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: NgModelErrorPipe, decorators: [{
4673
4689
  type: Pipe,
4674
4690
  args: [{
4675
4691
  name: 'viNgModelError',
@@ -4711,10 +4727,10 @@ class SanitizePipe {
4711
4727
  throw new Error('Invalid safe type specified: ' + type);
4712
4728
  }
4713
4729
  }
4714
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SanitizePipe, deps: [{ token: i1$3.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
4715
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: SanitizePipe, isStandalone: false, name: "viSanitize" });
4730
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SanitizePipe, deps: [{ token: i1$3.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
4731
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: SanitizePipe, isStandalone: false, name: "viSanitize" });
4716
4732
  }
4717
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SanitizePipe, decorators: [{
4733
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SanitizePipe, decorators: [{
4718
4734
  type: Pipe,
4719
4735
  args: [{
4720
4736
  name: 'viSanitize',
@@ -4731,10 +4747,10 @@ class StartCasePipe {
4731
4747
  transform(value) {
4732
4748
  return !_.isEmpty(value) ? value.charAt(0).toUpperCase() + value.slice(1) : PrettifyPipe.EMPTY_SYMBOL;
4733
4749
  }
4734
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4735
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, isStandalone: false, name: "viStartCase" });
4750
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4751
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: StartCasePipe, isStandalone: false, name: "viStartCase" });
4736
4752
  }
4737
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, decorators: [{
4753
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: StartCasePipe, decorators: [{
4738
4754
  type: Pipe,
4739
4755
  args: [{
4740
4756
  name: 'viStartCase',
@@ -4751,10 +4767,10 @@ class TruncatePipe {
4751
4767
  transform(value, maxLength) {
4752
4768
  return !_.isEmpty(value) ? _.truncate(value, { length: maxLength }) : PrettifyPipe.EMPTY_SYMBOL;
4753
4769
  }
4754
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4755
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, isStandalone: false, name: "viTruncate" });
4770
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4771
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: TruncatePipe, isStandalone: false, name: "viTruncate" });
4756
4772
  }
4757
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, decorators: [{
4773
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: TruncatePipe, decorators: [{
4758
4774
  type: Pipe,
4759
4775
  args: [{
4760
4776
  name: 'viTruncate',
@@ -4784,10 +4800,10 @@ class TimePipe {
4784
4800
  }
4785
4801
  return FinancePipe.format(milliseconds / DateUtil.MILLISECONDS_SECOND, format);
4786
4802
  }
4787
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4788
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, isStandalone: false, name: "viTime" });
4803
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4804
+ static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: TimePipe, isStandalone: false, name: "viTime" });
4789
4805
  }
4790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, decorators: [{
4806
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: TimePipe, decorators: [{
4791
4807
  type: Pipe,
4792
4808
  args: [{
4793
4809
  name: 'viTime',
@@ -5367,10 +5383,10 @@ class ServiceWorkerService extends Loadable {
5367
5383
  get isEnabled() {
5368
5384
  return this.updates.isEnabled;
5369
5385
  }
5370
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ServiceWorkerService, deps: [{ token: i1$4.SwUpdate }, { token: i2.Logger }, { token: NotificationService }], target: i0.ɵɵFactoryTarget.Injectable });
5371
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ServiceWorkerService, providedIn: 'root' });
5386
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ServiceWorkerService, deps: [{ token: i1$4.SwUpdate }, { token: i2.Logger }, { token: NotificationService }], target: i0.ɵɵFactoryTarget.Injectable });
5387
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ServiceWorkerService, providedIn: 'root' });
5372
5388
  }
5373
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ServiceWorkerService, decorators: [{
5389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ServiceWorkerService, decorators: [{
5374
5390
  type: Injectable,
5375
5391
  args: [{ providedIn: 'root' }]
5376
5392
  }], ctorParameters: () => [{ type: i1$4.SwUpdate }, { type: i2.Logger }, { type: NotificationService }] });
@@ -5382,9 +5398,10 @@ class CanDeactivateGuard {
5382
5398
  //
5383
5399
  // --------------------------------------------------------------------------
5384
5400
  canDeactivate(component, currentRoute, currentState, nextState) {
5385
- return !component.isForceDeactivate ? component.isCanDeactivate(currentRoute, currentState, nextState) : true;
5401
+ return CanDeactivateFunction(component, currentRoute, currentState, nextState);
5386
5402
  }
5387
5403
  }
5404
+ const CanDeactivateFunction = (component, currentRoute, currentState, nextState) => (!component.isForceDeactivate ? component.isCanDeactivate(currentRoute, currentState, nextState) : true);
5388
5405
 
5389
5406
  class ThemeStyleDirective extends Destroyable {
5390
5407
  theme;
@@ -5487,10 +5504,10 @@ class ThemeStyleDirective extends Destroyable {
5487
5504
  this.stylePropertiesCheck();
5488
5505
  }
5489
5506
  }
5490
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5491
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ThemeStyleDirective, isStandalone: false, selector: "[vi-theme-style]", inputs: { flags: "flags", styleName: "styleName", key: ["vi-theme-style", "key"] }, usesInheritance: true, ngImport: i0 });
5507
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeStyleDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5508
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ThemeStyleDirective, isStandalone: false, selector: "[vi-theme-style]", inputs: { flags: "flags", styleName: "styleName", key: ["vi-theme-style", "key"] }, usesInheritance: true, ngImport: i0 });
5492
5509
  }
5493
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleDirective, decorators: [{
5510
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeStyleDirective, decorators: [{
5494
5511
  type: Directive,
5495
5512
  args: [{
5496
5513
  selector: '[vi-theme-style]',
@@ -5591,10 +5608,10 @@ class ThemeStyleHoverDirective extends ThemeStyleDirective {
5591
5608
  set flags(value) {
5592
5609
  super.flags = value;
5593
5610
  }
5594
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleHoverDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5595
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ThemeStyleHoverDirective, isStandalone: false, selector: "[vi-theme-style-hover]", inputs: { key: ["vi-theme-style-hover", "key"], styleName: "styleName", flags: "flags" }, usesInheritance: true, ngImport: i0 });
5611
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeStyleHoverDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5612
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ThemeStyleHoverDirective, isStandalone: false, selector: "[vi-theme-style-hover]", inputs: { key: ["vi-theme-style-hover", "key"], styleName: "styleName", flags: "flags" }, usesInheritance: true, ngImport: i0 });
5596
5613
  }
5597
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
5614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
5598
5615
  type: Directive,
5599
5616
  args: [{
5600
5617
  selector: '[vi-theme-style-hover]',
@@ -5823,10 +5840,10 @@ class ThemeAssetDirective extends Destroyable {
5823
5840
  this._extension = value;
5824
5841
  this.setSourceProperties();
5825
5842
  }
5826
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5827
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.10", type: ThemeAssetDirective, isStandalone: true, inputs: { isSound: ["isSound", "isSound", booleanAttribute], isVideo: ["isVideo", "isVideo", booleanAttribute], isFile: ["isFile", "isFile", booleanAttribute], isImage: ["isImage", "isImage", booleanAttribute], isBackground: ["isBackground", "isBackground", booleanAttribute], isIgnoreTheme: ["isIgnoreTheme", "isIgnoreTheme", booleanAttribute], name: "name", extension: "extension" }, host: { listeners: { "error": "errorLoadingHandler($event)" } }, usesInheritance: true, ngImport: i0 });
5843
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5844
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.11", type: ThemeAssetDirective, isStandalone: true, inputs: { isSound: ["isSound", "isSound", booleanAttribute], isVideo: ["isVideo", "isVideo", booleanAttribute], isFile: ["isFile", "isFile", booleanAttribute], isImage: ["isImage", "isImage", booleanAttribute], isBackground: ["isBackground", "isBackground", booleanAttribute], isIgnoreTheme: ["isIgnoreTheme", "isIgnoreTheme", booleanAttribute], name: "name", extension: "extension" }, host: { listeners: { "error": "errorLoadingHandler($event)" } }, usesInheritance: true, ngImport: i0 });
5828
5845
  }
5829
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetDirective, decorators: [{
5846
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetDirective, decorators: [{
5830
5847
  type: Directive
5831
5848
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.ThemeService }, { type: i1.ThemeAssetService }], propDecorators: { errorLoadingHandler: [{
5832
5849
  type: HostListener,
@@ -5888,10 +5905,10 @@ class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
5888
5905
  get name() {
5889
5906
  return super.name;
5890
5907
  }
5891
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5892
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ThemeAssetBackgroundDirective, isStandalone: false, selector: "[vi-theme-background]", inputs: { name: ["vi-theme-background", "name"] }, usesInheritance: true, ngImport: i0 });
5908
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5909
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ThemeAssetBackgroundDirective, isStandalone: false, selector: "[vi-theme-background]", inputs: { name: ["vi-theme-background", "name"] }, usesInheritance: true, ngImport: i0 });
5893
5910
  }
5894
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
5911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
5895
5912
  type: Directive,
5896
5913
  args: [{
5897
5914
  selector: '[vi-theme-background]',
@@ -5934,10 +5951,10 @@ class ThemeAssetImageDirective extends ThemeAssetDirective {
5934
5951
  get name() {
5935
5952
  return super.name;
5936
5953
  }
5937
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetImageDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5938
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ThemeAssetImageDirective, isStandalone: false, selector: "[vi-theme-image]", inputs: { name: ["vi-theme-image", "name"] }, usesInheritance: true, ngImport: i0 });
5954
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetImageDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5955
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ThemeAssetImageDirective, isStandalone: false, selector: "[vi-theme-image]", inputs: { name: ["vi-theme-image", "name"] }, usesInheritance: true, ngImport: i0 });
5939
5956
  }
5940
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
5957
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
5941
5958
  type: Directive,
5942
5959
  args: [{
5943
5960
  selector: '[vi-theme-image]',
@@ -5979,10 +5996,10 @@ class ThemeAssetIconDirective extends ThemeAssetDirective {
5979
5996
  get name() {
5980
5997
  return super.name;
5981
5998
  }
5982
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetIconDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5983
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ThemeAssetIconDirective, isStandalone: false, selector: "[vi-theme-icon]", inputs: { name: ["vi-theme-icon", "name"] }, usesInheritance: true, ngImport: i0 });
5999
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetIconDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
6000
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ThemeAssetIconDirective, isStandalone: false, selector: "[vi-theme-icon]", inputs: { name: ["vi-theme-icon", "name"] }, usesInheritance: true, ngImport: i0 });
5984
6001
  }
5985
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
6002
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
5986
6003
  type: Directive,
5987
6004
  args: [{
5988
6005
  selector: '[vi-theme-icon]',
@@ -6027,10 +6044,10 @@ class ThemeToggleDirective extends Destroyable {
6027
6044
  super.destroy();
6028
6045
  this.theme = null;
6029
6046
  }
6030
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
6031
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: ThemeToggleDirective, isStandalone: false, selector: "[vi-theme-toggle]", host: { listeners: { "click": "clickHandler()" } }, usesInheritance: true, ngImport: i0 });
6047
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
6048
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.11", type: ThemeToggleDirective, isStandalone: false, selector: "[vi-theme-toggle]", host: { listeners: { "click": "clickHandler()" } }, usesInheritance: true, ngImport: i0 });
6032
6049
  }
6033
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeToggleDirective, decorators: [{
6050
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeToggleDirective, decorators: [{
6034
6051
  type: Directive,
6035
6052
  args: [{
6036
6053
  selector: '[vi-theme-toggle]',
@@ -6076,8 +6093,8 @@ class ThemeModule {
6076
6093
  ]
6077
6094
  };
6078
6095
  }
6079
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6080
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
6096
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6097
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
6081
6098
  ThemeAssetImageDirective,
6082
6099
  ThemeAssetIconDirective,
6083
6100
  ThemeAssetBackgroundDirective,
@@ -6088,9 +6105,9 @@ class ThemeModule {
6088
6105
  ThemeAssetBackgroundDirective,
6089
6106
  ThemeStyleDirective,
6090
6107
  ThemeStyleHoverDirective] });
6091
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
6108
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
6092
6109
  }
6093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, decorators: [{
6110
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: ThemeModule, decorators: [{
6094
6111
  type: NgModule,
6095
6112
  args: [{
6096
6113
  imports: [CookieModule],
@@ -6768,10 +6785,10 @@ class IWindowContent extends DestroyableContainer {
6768
6785
  this.commitWindowProperties();
6769
6786
  }
6770
6787
  }
6771
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IWindowContent, deps: [{ token: WINDOW_CONTENT_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Component });
6772
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.10", type: IWindowContent, isStandalone: true, selector: "ng-component", inputs: { isDisabled: ["isDisabled", "isDisabled", booleanAttribute], window: "window" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6788
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: IWindowContent, deps: [{ token: WINDOW_CONTENT_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Component });
6789
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.11", type: IWindowContent, isStandalone: true, selector: "ng-component", inputs: { isDisabled: ["isDisabled", "isDisabled", booleanAttribute], window: "window" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6773
6790
  }
6774
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IWindowContent, decorators: [{
6791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: IWindowContent, decorators: [{
6775
6792
  type: Component,
6776
6793
  args: [{ template: '' }]
6777
6794
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -6947,10 +6964,10 @@ class INotificationContent extends DestroyableContainer {
6947
6964
  get config() {
6948
6965
  return this._config;
6949
6966
  }
6950
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
6951
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.10", type: INotificationContent, isStandalone: true, selector: "ng-component", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6967
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
6968
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: INotificationContent, isStandalone: true, selector: "ng-component", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
6952
6969
  }
6953
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: INotificationContent, decorators: [{
6970
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: INotificationContent, decorators: [{
6954
6971
  type: Component,
6955
6972
  args: [{ template: '' }]
6956
6973
  }], ctorParameters: () => [{ type: i0.ViewContainerRef }], propDecorators: { config: [{
@@ -6994,6 +7011,63 @@ var NotificationServiceEvent;
6994
7011
  class BottomSheetService extends Destroyable {
6995
7012
  }
6996
7013
 
7014
+ class DateValueStorage extends ValueStorage {
7015
+ //--------------------------------------------------------------------------
7016
+ //
7017
+ // Public Methods
7018
+ //
7019
+ //--------------------------------------------------------------------------
7020
+ defaultExpirationDelta = 0;
7021
+ //--------------------------------------------------------------------------
7022
+ //
7023
+ // Protected Methods
7024
+ //
7025
+ //--------------------------------------------------------------------------
7026
+ serialize(value) {
7027
+ return new Date(value);
7028
+ }
7029
+ deserialize(value) {
7030
+ return value.toISOString();
7031
+ }
7032
+ //--------------------------------------------------------------------------
7033
+ //
7034
+ // Public Methods
7035
+ //
7036
+ //--------------------------------------------------------------------------
7037
+ isMore(item) {
7038
+ return this.has() ? this.get().getTime() > item.getTime() : false;
7039
+ }
7040
+ isLess(item) {
7041
+ return this.has() ? this.get().getTime() < item.getTime() : false;
7042
+ }
7043
+ isEqual(item) {
7044
+ return this.has() ? this.get().getTime() === item.getTime() : false;
7045
+ }
7046
+ isExpired(item) {
7047
+ return this.has() ? this.isLess(item) : true;
7048
+ }
7049
+ isExpiredFromNow(delta) {
7050
+ if (_.isNil(delta)) {
7051
+ delta = this.defaultExpirationDelta;
7052
+ }
7053
+ return this.isExpired(DateUtil.getDate(Date.now() + delta));
7054
+ }
7055
+ }
7056
+
7057
+ class JSONValueStorage extends ValueStorage {
7058
+ //--------------------------------------------------------------------------
7059
+ //
7060
+ // Protected Methods
7061
+ //
7062
+ //--------------------------------------------------------------------------
7063
+ serialize(value) {
7064
+ return JSON.parse(value);
7065
+ }
7066
+ deserialize(value) {
7067
+ return JSON.stringify(value);
7068
+ }
7069
+ }
7070
+
6997
7071
  class LocalStorageService extends Destroyable {
6998
7072
  //--------------------------------------------------------------------------
6999
7073
  //
@@ -7065,74 +7139,37 @@ class LocalStorageService extends Destroyable {
7065
7139
  }
7066
7140
  }
7067
7141
 
7068
- class JSONValueStorage extends ValueStorage {
7142
+ class BooleanValueStorage extends ValueStorage {
7069
7143
  //--------------------------------------------------------------------------
7070
7144
  //
7071
7145
  // Protected Methods
7072
7146
  //
7073
7147
  //--------------------------------------------------------------------------
7074
7148
  serialize(value) {
7075
- return JSON.parse(value);
7149
+ return value === 'true';
7076
7150
  }
7077
7151
  deserialize(value) {
7078
- return JSON.stringify(value);
7152
+ return value ? 'true' : 'false';
7079
7153
  }
7080
7154
  }
7081
7155
 
7082
- class DateValueStorage extends ValueStorage {
7083
- //--------------------------------------------------------------------------
7084
- //
7085
- // Public Methods
7086
- //
7087
- //--------------------------------------------------------------------------
7088
- defaultExpirationDelta = 0;
7156
+ class ClassTypeValueStorage extends JSONValueStorage {
7089
7157
  //--------------------------------------------------------------------------
7090
7158
  //
7091
- // Protected Methods
7092
- //
7093
- //--------------------------------------------------------------------------
7094
- serialize(value) {
7095
- return new Date(value);
7096
- }
7097
- deserialize(value) {
7098
- return value.toISOString();
7099
- }
7100
- //--------------------------------------------------------------------------
7101
- //
7102
- // Public Methods
7159
+ // Properties
7103
7160
  //
7104
7161
  //--------------------------------------------------------------------------
7105
- isMore(item) {
7106
- return this.has() ? this.get().getTime() > item.getTime() : false;
7107
- }
7108
- isLess(item) {
7109
- return this.has() ? this.get().getTime() < item.getTime() : false;
7110
- }
7111
- isEqual(item) {
7112
- return this.has() ? this.get().getTime() === item.getTime() : false;
7113
- }
7114
- isExpired(item) {
7115
- return this.has() ? this.isLess(item) : true;
7116
- }
7117
- isExpiredFromNow(delta) {
7118
- if (_.isNil(delta)) {
7119
- delta = this.defaultExpirationDelta;
7120
- }
7121
- return this.isExpired(DateUtil.getDate(Date.now() + delta));
7122
- }
7123
- }
7124
-
7125
- class BooleanValueStorage extends ValueStorage {
7162
+ classType;
7126
7163
  //--------------------------------------------------------------------------
7127
7164
  //
7128
7165
  // Protected Methods
7129
7166
  //
7130
7167
  //--------------------------------------------------------------------------
7131
7168
  serialize(value) {
7132
- return value === 'true';
7169
+ return TransformUtil.toClass(this.classType, super.serialize(value));
7133
7170
  }
7134
7171
  deserialize(value) {
7135
- return value ? 'true' : 'false';
7172
+ return super.deserialize(TransformUtil.fromClass(value));
7136
7173
  }
7137
7174
  }
7138
7175
 
@@ -7218,10 +7255,10 @@ class LazyModuleLoader extends Loadable {
7218
7255
  get modules() {
7219
7256
  return this._modules;
7220
7257
  }
7221
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LazyModuleLoader, deps: [{ token: i0.Compiler }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
7222
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
7258
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LazyModuleLoader, deps: [{ token: i0.Compiler }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
7259
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
7223
7260
  }
7224
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LazyModuleLoader, decorators: [{
7261
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: LazyModuleLoader, decorators: [{
7225
7262
  type: Injectable,
7226
7263
  args: [{ providedIn: 'root' }]
7227
7264
  }], ctorParameters: () => [{ type: i0.Compiler }, { type: i0.Injector }] });
@@ -7424,8 +7461,8 @@ class VIModule {
7424
7461
  ]
7425
7462
  };
7426
7463
  }
7427
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7428
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: VIModule, declarations: [TimePipe,
7464
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7465
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: VIModule, declarations: [TimePipe,
7429
7466
  FinancePipe,
7430
7467
  SanitizePipe,
7431
7468
  TruncatePipe,
@@ -7480,9 +7517,9 @@ class VIModule {
7480
7517
  HTMLContentTitleDirective,
7481
7518
  AutoScrollBottomDirective,
7482
7519
  AspectRatioResizeDirective] });
7483
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
7520
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
7484
7521
  }
7485
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, decorators: [{
7522
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: VIModule, decorators: [{
7486
7523
  type: NgModule,
7487
7524
  args: [{
7488
7525
  imports,
@@ -7520,5 +7557,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
7520
7557
  * Generated bundle index. Do not edit.
7521
7558
  */
7522
7559
 
7523
- export { APPLICATION_INJECTOR, ApplicationComponent, ApplicationComponentBase, ApplicationInitializerBase, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BooleanValueStorage, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, DateValueStorage, Direction, FinancePipe, FocusDirective, FocusManager, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVIOptions, IWindow, IWindowContent, InfiniteScrollDirective, IsBrowserDirective, IsServerDirective, JSONValueStorage, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageModule, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LanguageToggleDirective, LazyModuleLoader, ListItem, ListItems, LoadableResolver, LocalStorageService, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, LoginServiceBase, LoginServiceBaseEvent, LoginTokenStorage, Loginable, MenuItem, MenuItemBase, MenuItems, MessageComponentBase, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationConfig, NotificationEvent, NotificationService, NotificationServiceEvent, NullEmptyValueDirective, PipeServiceBase, PlatformService, PrettifyPipe, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterSelectListItems, RouterServiceBase, SanitizePipe, ScrollCheckDirective, ScrollDirective, SelectListItem, SelectListItems, SelectOnFocusDirective, ServerInitializeOptions, ServiceWorkerService, StartCasePipe, StructureDirective, THEME_OPTIONS, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetIconDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, UppercaseValueDirective, UserServiceBase, UserServiceBaseEvent, VIModule, VI_ANGULAR_OPTIONS, ValueStorage, ViewUtil, WINDOW_CONTENT_CONTAINER, WindowAlign, WindowBase, WindowClosedError, WindowConfig, WindowEvent, WindowService, WindowServiceEvent, cookieServiceFactory, initializerFactory, languageServiceFactory, localStorageServiceFactory, loggerServiceFactory, loginTokenStorageServiceFactory, nativeWindowServiceFactory, themeAssetServiceFactory, themeServiceFactory };
7560
+ export { APPLICATION_INJECTOR, ApplicationComponent, ApplicationComponentBase, ApplicationInitializerBase, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BooleanValueStorage, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateFunction, CanDeactivateGuard, ClassTypeValueStorage, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, DateValueStorage, Direction, FinancePipe, FocusDirective, FocusManager, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVIOptions, IWindow, IWindowContent, InfiniteScrollDirective, IsBrowserDirective, IsServerDirective, JSONValueStorage, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageModule, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LanguageToggleDirective, LazyModuleLoader, ListItem, ListItems, LoadableResolver, LocalStorageService, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, LoginServiceBase, LoginServiceBaseEvent, LoginTokenStorage, Loginable, MenuItem, MenuItemBase, MenuItems, MessageComponentBase, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationConfig, NotificationEvent, NotificationService, NotificationServiceEvent, NullEmptyValueDirective, PipeServiceBase, PlatformService, PrettifyPipe, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterSelectListItems, RouterServiceBase, SanitizePipe, ScrollCheckDirective, ScrollDirective, SelectListItem, SelectListItems, SelectOnFocusDirective, ServerInitializeOptions, ServiceWorkerService, StartCasePipe, StructureDirective, THEME_OPTIONS, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetIconDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, UppercaseValueDirective, UserServiceBase, UserServiceBaseEvent, VIModule, VI_ANGULAR_OPTIONS, ValueStorage, ViewUtil, WINDOW_CONTENT_CONTAINER, WindowAlign, WindowBase, WindowClosedError, WindowConfig, WindowEvent, WindowService, WindowServiceEvent, cookieServiceFactory, initializerFactory, languageServiceFactory, localStorageServiceFactory, loggerServiceFactory, loginTokenStorageServiceFactory, nativeWindowServiceFactory, themeAssetServiceFactory, themeServiceFactory };
7524
7561
  //# sourceMappingURL=ts-core-angular.mjs.map