@ts-core/angular 19.0.9 → 19.0.11

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,11 +1,13 @@
1
- import * as i0 from '@angular/core';
2
- import { Component, ViewContainerRef, booleanAttribute, Input, Directive, Pipe, NgModule, PLATFORM_ID, Inject, Injectable, InjectionToken, numberAttribute, EventEmitter, HostListener, Output, RendererStyleFlags2, Optional, NgModuleFactory, RendererFactory2, APP_INITIALIZER } from '@angular/core';
3
1
  import * as i2 from '@ts-core/common';
4
- import { DestroyableContainer, PromiseHandler, LoadableEvent, ExtendedError, Destroyable, DateUtil, ArrayUtil, Loadable, LoadableStatus, ObservableData, TransportTimeoutError, TransportNoConnectionError, FilterableMapCollection, RemoveFilterableCondition, GetFilterableCondition, IDestroyable, MapCollection, TransportEvent, TransportLocal, Logger, LoggerLevel } from '@ts-core/common';
5
- import * as _ from 'lodash';
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';
6
3
  import * as i1 from '@ts-core/frontend';
7
- import { AssetUrlProvider, Assets, NativeWindowService, LanguageService, ThemeService, ThemeAssetService, LoadingService, ICookieOptions, DefaultLogger } from '@ts-core/frontend';
8
- import { takeUntil, BehaviorSubject, distinctUntilChanged, debounceTime, fromEvent, filter, map, Subject } from 'rxjs';
4
+ import { AssetsCdnProvider, Assets, NativeWindowService, LanguageService, ThemeService, ThemeAssetService, LoadingService, ICookieOptions, DefaultLogger } from '@ts-core/frontend';
5
+ import { LanguagePreloadLoader, LanguageProxyLoader, LanguageFileLoader } from '@ts-core/language';
6
+ import axios from 'axios';
7
+ import * as _ from 'lodash';
8
+ import * as i0 from '@angular/core';
9
+ import { Component, ViewContainerRef, booleanAttribute, Input, Directive, Pipe, NgModule, PLATFORM_ID, Inject, Injectable, InjectionToken, numberAttribute, EventEmitter, HostListener, Output, RendererStyleFlags2, Optional, NgModuleFactory, RendererFactory2, APP_INITIALIZER } from '@angular/core';
10
+ import { filter, takeUntil, BehaviorSubject, distinctUntilChanged, debounceTime, fromEvent, map, Subject } from 'rxjs';
9
11
  import moment from 'moment';
10
12
  import numeral from 'numeral';
11
13
  import { CommonModule, isPlatformServer, isPlatformBrowser, DatePipe, DOCUMENT } from '@angular/common';
@@ -17,13 +19,83 @@ import { NavigationStart, NavigationEnd, NavigationCancel, NavigationError } fro
17
19
  import * as i1$3 from '@angular/platform-browser';
18
20
  import * as i1$4 from '@angular/service-worker';
19
21
 
20
- class ApplicationBaseComponent extends DestroyableContainer {
22
+ class ApplicationInitializerBase extends Destroyable {
23
+ options;
24
+ //--------------------------------------------------------------------------
25
+ //
26
+ // Constructor
27
+ //
28
+ //--------------------------------------------------------------------------
29
+ constructor(options) {
30
+ super();
31
+ this.options = options;
32
+ }
33
+ //--------------------------------------------------------------------------
34
+ //
35
+ // Public Methods
36
+ //
37
+ //--------------------------------------------------------------------------
38
+ async initialize() {
39
+ if (this.platform.isPlatformServer && _.isNil(this.options)) {
40
+ throw new ExtendedError(`Unable to initialize: server platform requires options`);
41
+ }
42
+ try {
43
+ this.settings.initialize(await this.getConfig(), this.router.getParams());
44
+ }
45
+ catch (error) {
46
+ this.windows.info(error.message, null, null, { isDisableClose: true, isModal: true });
47
+ return;
48
+ }
49
+ this.initializeAssets();
50
+ this.initializeLanguage();
51
+ }
52
+ //--------------------------------------------------------------------------
53
+ //
54
+ // Language Methods
55
+ //
56
+ //--------------------------------------------------------------------------
57
+ async initializeAssets() {
58
+ Assets.provider = new AssetsCdnProvider(this.settings.assetsUrl, this.settings.assetsCdnUrl);
59
+ }
60
+ async initializeLanguage() {
61
+ this.language.loader = await this.getLanguageLoader();
62
+ }
63
+ async getLanguageLoader() {
64
+ if (this.platform.isPlatformServer) {
65
+ return new LanguagePreloadLoader(this.options.locales);
66
+ }
67
+ let { url, project, proxy } = this.getLanguageLoadSettings();
68
+ return this.settings.isProduction ? new LanguageProxyLoader(proxy) : new LanguageFileLoader(url, project.prefixes);
69
+ }
70
+ //--------------------------------------------------------------------------
71
+ //
72
+ // Config Methods
73
+ //
74
+ //--------------------------------------------------------------------------
75
+ async getConfig() {
76
+ if (this.platform.isPlatformServer) {
77
+ return this.options.config;
78
+ }
79
+ let local = await this.getConfigLocal();
80
+ let remote = await this.getConfigRemote(local);
81
+ return Object.assign(local, remote);
82
+ }
83
+ async getConfigLocal() {
84
+ let { data } = await axios.get('config.json');
85
+ return data;
86
+ }
87
+ }
88
+ class ServerInitializeOptions {
89
+ config;
90
+ locales;
91
+ }
92
+
93
+ class ApplicationComponentBase extends DestroyableContainer {
21
94
  // --------------------------------------------------------------------------
22
95
  //
23
96
  // Properties
24
97
  //
25
98
  // --------------------------------------------------------------------------
26
- timeout;
27
99
  isReadyAlreadyCalled;
28
100
  viewReadyDelay = NaN;
29
101
  viewReadyPromise;
@@ -84,31 +156,27 @@ class ApplicationBaseComponent extends DestroyableContainer {
84
156
  this.viewReadyPromise.reject();
85
157
  this.viewReadyPromise = null;
86
158
  }
87
- if (!_.isNil(this.timeout)) {
88
- clearTimeout(this.timeout);
89
- this.timeout = null;
90
- }
91
159
  }
92
160
  // --------------------------------------------------------------------------
93
161
  //
94
162
  // Public Properties
95
163
  //
96
164
  // --------------------------------------------------------------------------
97
- get isViewReady() {
98
- return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.isResolved : false;
99
- }
100
165
  get viewReady() {
101
166
  return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.promise : null;
102
167
  }
103
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ApplicationBaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
104
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: ApplicationBaseComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: '', isInline: true });
168
+ get isViewReady() {
169
+ return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.isResolved : false;
170
+ }
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 });
105
173
  }
106
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ApplicationBaseComponent, decorators: [{
174
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ApplicationComponentBase, decorators: [{
107
175
  type: Component,
108
176
  args: [{ template: '' }]
109
177
  }], ctorParameters: () => [] });
110
178
 
111
- class ApplicationComponent extends ApplicationBaseComponent {
179
+ class ApplicationComponent extends ApplicationComponentBase {
112
180
  // --------------------------------------------------------------------------
113
181
  //
114
182
  // Properties
@@ -121,28 +189,13 @@ class ApplicationComponent extends ApplicationBaseComponent {
121
189
  //
122
190
  // --------------------------------------------------------------------------
123
191
  initialize() {
124
- this.initializeAssets();
125
- this.initializeTheme();
126
192
  this.initializeLanguage();
127
193
  }
128
- initializeAssets() {
129
- Assets.provider = new AssetUrlProvider(this.settings.assetsUrl);
130
- }
131
- initializeTheme() {
132
- this.theme.initialize(this.settings.themes);
133
- }
134
194
  initializeLanguage() {
135
- this.language.initialize(`${this.settings.assetsUrl}language/`, this.settings.languages);
136
- this.language.events.pipe(takeUntil(this.destroyed)).subscribe(data => {
137
- switch (data.type) {
138
- case LoadableEvent.COMPLETE:
139
- this.languageLoadingComplete(data.data);
140
- break;
141
- case LoadableEvent.ERROR:
142
- this.languageLoadingError(data.data, data.error);
143
- break;
144
- }
145
- });
195
+ this.language.events
196
+ .pipe(filter(item => item.type === LoadableEvent.ERROR), takeUntil(this.destroyed))
197
+ .subscribe(item => this.languageLoadingError(item.data.toString(), item.error));
198
+ this.language.completed.pipe(takeUntil(this.destroyed)).subscribe(item => this.languageLoadingComplete(item));
146
199
  }
147
200
  isReady() {
148
201
  return super.isReady() && this.isLanguageLoaded;
@@ -152,21 +205,21 @@ class ApplicationComponent extends ApplicationBaseComponent {
152
205
  // Event Handlers
153
206
  //
154
207
  // --------------------------------------------------------------------------
155
- languageLoadingComplete(item) {
208
+ languageLoadingComplete(locale) {
156
209
  this.isLanguageLoaded = true;
157
- this.setLocale(item);
210
+ this.setLocale(locale);
158
211
  this.checkReady();
159
212
  }
160
213
  viewReadyHandler() {
161
214
  this.initialize();
162
215
  }
163
216
  setLocale(item) {
164
- moment.locale(item.locale);
165
- numeral.locale(item.locale);
217
+ moment.locale(item);
218
+ numeral.locale(item);
166
219
  }
167
220
  }
168
221
 
169
- class MessageBaseComponent extends DestroyableContainer {
222
+ class MessageComponentBase extends DestroyableContainer {
170
223
  route;
171
224
  language;
172
225
  // --------------------------------------------------------------------------
@@ -943,10 +996,10 @@ class AssetBackgroundDirective extends Destroyable {
943
996
  get background() {
944
997
  return this._background;
945
998
  }
946
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
947
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", 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 });
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 });
948
1001
  }
949
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
1002
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
950
1003
  type: Directive,
951
1004
  args: [{
952
1005
  selector: '[vi-asset-background]',
@@ -979,10 +1032,10 @@ class AssetBackgroundPipe {
979
1032
  transform(name, extension = 'png') {
980
1033
  return Assets.getBackground(name, extension);
981
1034
  }
982
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
983
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: AssetBackgroundPipe, isStandalone: false, name: "viAssetBackground" });
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" });
984
1037
  }
985
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
1038
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
986
1039
  type: Pipe,
987
1040
  args: [{
988
1041
  name: 'viAssetBackground',
@@ -999,10 +1052,10 @@ class AssetIconPipe {
999
1052
  transform(name, extension = 'png') {
1000
1053
  return Assets.getIcon(name, extension);
1001
1054
  }
1002
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1003
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: AssetIconPipe, isStandalone: false, name: "viAssetIcon" });
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" });
1004
1057
  }
1005
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetIconPipe, decorators: [{
1058
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, decorators: [{
1006
1059
  type: Pipe,
1007
1060
  args: [{
1008
1061
  name: 'viAssetIcon',
@@ -1019,10 +1072,10 @@ class AssetFilePipe {
1019
1072
  transform(name, extension) {
1020
1073
  return Assets.getFile(name, extension);
1021
1074
  }
1022
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1023
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: AssetFilePipe, isStandalone: false, name: "viAssetFile" });
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" });
1024
1077
  }
1025
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetFilePipe, decorators: [{
1078
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, decorators: [{
1026
1079
  type: Pipe,
1027
1080
  args: [{
1028
1081
  name: 'viAssetFile',
@@ -1039,10 +1092,10 @@ class AssetVideoPipe {
1039
1092
  transform(name, extension = 'mp4') {
1040
1093
  return Assets.getVideo(name, extension);
1041
1094
  }
1042
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1043
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: AssetVideoPipe, isStandalone: false, name: "viAssetVideo" });
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" });
1044
1097
  }
1045
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetVideoPipe, decorators: [{
1098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, decorators: [{
1046
1099
  type: Pipe,
1047
1100
  args: [{
1048
1101
  name: 'viAssetVideo',
@@ -1059,10 +1112,10 @@ class AssetSoundPipe {
1059
1112
  transform(name, extension = 'mp3') {
1060
1113
  return Assets.getSound(name, extension);
1061
1114
  }
1062
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1063
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: AssetSoundPipe, isStandalone: false, name: "viAssetSound" });
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" });
1064
1117
  }
1065
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetSoundPipe, decorators: [{
1118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, decorators: [{
1066
1119
  type: Pipe,
1067
1120
  args: [{
1068
1121
  name: 'viAssetSound',
@@ -1079,10 +1132,10 @@ class AssetImagePipe {
1079
1132
  transform(name, extension = 'png') {
1080
1133
  return Assets.getImage(name, extension);
1081
1134
  }
1082
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1083
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: AssetImagePipe, isStandalone: false, name: "viAssetImage" });
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" });
1084
1137
  }
1085
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetImagePipe, decorators: [{
1138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, decorators: [{
1086
1139
  type: Pipe,
1087
1140
  args: [{
1088
1141
  name: 'viAssetImage',
@@ -1092,11 +1145,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
1092
1145
 
1093
1146
  let declarations$3 = [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective];
1094
1147
  class AssetModule {
1095
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1096
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: AssetModule, declarations: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective], imports: [CommonModule], exports: [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective] });
1097
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetModule, imports: [CommonModule] });
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] });
1098
1151
  }
1099
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AssetModule, decorators: [{
1152
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, decorators: [{
1100
1153
  type: NgModule,
1101
1154
  args: [{
1102
1155
  imports: [CommonModule],
@@ -1201,10 +1254,10 @@ class PlatformService extends Destroyable {
1201
1254
  get isPlatformBrowser() {
1202
1255
  return this._isPlatformBrowser;
1203
1256
  }
1204
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
1205
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: PlatformService, providedIn: 'root' });
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' });
1206
1259
  }
1207
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: PlatformService, decorators: [{
1260
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, decorators: [{
1208
1261
  type: Injectable,
1209
1262
  args: [{ providedIn: 'root' }]
1210
1263
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -1234,11 +1287,11 @@ class CookieModule {
1234
1287
  ]
1235
1288
  };
1236
1289
  }
1237
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1238
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: CookieModule });
1239
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: CookieModule });
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 });
1240
1293
  }
1241
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: CookieModule, decorators: [{
1294
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule, decorators: [{
1242
1295
  type: NgModule
1243
1296
  }] });
1244
1297
  function cookieServiceFactory(nativeWindow, options, platform) {
@@ -1456,10 +1509,10 @@ class AspectRatioResizeDirective extends Destroyable {
1456
1509
  get ratio() {
1457
1510
  return this._ratio;
1458
1511
  }
1459
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1460
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", type: AspectRatioResizeDirective, isStandalone: false, selector: "[vi-aspect-ratio]", inputs: { direction: ["vi-aspect-ratio", "direction"], ratio: ["ratio", "ratio", numberAttribute] }, usesInheritance: true, ngImport: i0 });
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 });
1461
1514
  }
1462
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
1515
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
1463
1516
  type: Directive,
1464
1517
  args: [{
1465
1518
  selector: '[vi-aspect-ratio]',
@@ -1576,10 +1629,10 @@ class ScrollDirective extends Destroyable {
1576
1629
  get scrollValue() {
1577
1630
  return this._scrollValue;
1578
1631
  }
1579
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1580
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", type: ScrollDirective, isStandalone: false, selector: "[vi-scroll]", inputs: { scrollValue: ["scrollValue", "scrollValue", numberAttribute] }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
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 });
1581
1634
  }
1582
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ScrollDirective, decorators: [{
1635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
1583
1636
  type: Directive,
1584
1637
  args: [{
1585
1638
  selector: '[vi-scroll]',
@@ -1647,10 +1700,10 @@ class InfiniteScrollDirective extends ScrollDirective {
1647
1700
  get scrollHeight() {
1648
1701
  return this.element.scrollHeight;
1649
1702
  }
1650
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1651
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", type: InfiniteScrollDirective, isStandalone: false, selector: "[vi-infinite-scroll]", inputs: { elementHeight: ["elementHeight", "elementHeight", numberAttribute] }, outputs: { top: "top", bottom: "bottom" }, usesInheritance: true, ngImport: i0 });
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 });
1652
1705
  }
1653
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
1706
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
1654
1707
  type: Directive,
1655
1708
  args: [{
1656
1709
  selector: '[vi-infinite-scroll]',
@@ -1766,10 +1819,10 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
1766
1819
  this.isScrollLocked = true;
1767
1820
  this.scrollCheck();
1768
1821
  }
1769
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1770
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", 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 });
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 });
1771
1824
  }
1772
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
1825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
1773
1826
  type: Directive,
1774
1827
  args: [{
1775
1828
  selector: '[vi-auto-scroll-bottom]',
@@ -1816,10 +1869,10 @@ class ClickToCopyDirective extends Destroyable {
1816
1869
  this.element = null;
1817
1870
  clearTimeout(this.selectionClearTimer);
1818
1871
  }
1819
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1820
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", 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 });
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 });
1821
1874
  }
1822
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ClickToCopyDirective, decorators: [{
1875
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToCopyDirective, decorators: [{
1823
1876
  type: Directive,
1824
1877
  args: [{
1825
1878
  selector: '[vi-click-to-copy]',
@@ -1871,10 +1924,10 @@ class ClickToSelectDirective extends Destroyable {
1871
1924
  super.destroy();
1872
1925
  this.element = null;
1873
1926
  }
1874
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1875
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: ClickToSelectDirective, isStandalone: false, selector: "[vi-click-to-select]", host: { listeners: { "click": "clickHandler($event)" } }, usesInheritance: true, ngImport: i0 });
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 });
1876
1929
  }
1877
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ClickToSelectDirective, decorators: [{
1930
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToSelectDirective, decorators: [{
1878
1931
  type: Directive,
1879
1932
  args: [{
1880
1933
  selector: '[vi-click-to-select]',
@@ -1979,10 +2032,10 @@ class FocusDirective extends Destroyable {
1979
2032
  set trigger(value) {
1980
2033
  this.focus();
1981
2034
  }
1982
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1983
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: FocusDirective, isStandalone: false, selector: "[vi-focus]", inputs: { trigger: ["vi-focus", "trigger"] }, usesInheritance: true, ngImport: i0 });
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 });
1984
2037
  }
1985
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: FocusDirective, decorators: [{
2038
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FocusDirective, decorators: [{
1986
2039
  type: Directive,
1987
2040
  args: [{
1988
2041
  selector: '[vi-focus]',
@@ -2024,10 +2077,10 @@ class SelectOnFocusDirective extends Destroyable {
2024
2077
  super.destroy();
2025
2078
  this.element = null;
2026
2079
  }
2027
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2028
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: SelectOnFocusDirective, isStandalone: false, selector: "[vi-select-on-focus]", host: { listeners: { "focus": "focusHandler()" } }, usesInheritance: true, ngImport: i0 });
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 });
2029
2082
  }
2030
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
2083
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
2031
2084
  type: Directive,
2032
2085
  args: [{
2033
2086
  selector: '[vi-select-on-focus]',
@@ -2092,10 +2145,10 @@ class ResizeDirective extends Destroyable {
2092
2145
  this.interactable = null;
2093
2146
  }
2094
2147
  }
2095
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2096
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", 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 });
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 });
2097
2150
  }
2098
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ResizeDirective, decorators: [{
2151
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeDirective, decorators: [{
2099
2152
  type: Directive,
2100
2153
  args: [{
2101
2154
  selector: '[vi-resize]',
@@ -2271,10 +2324,10 @@ class ScrollCheckDirective extends Destroyable {
2271
2324
  get scrollLimit() {
2272
2325
  return this._scrollLimit;
2273
2326
  }
2274
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2275
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", 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 });
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 });
2276
2329
  }
2277
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ScrollCheckDirective, decorators: [{
2330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollCheckDirective, decorators: [{
2278
2331
  type: Directive,
2279
2332
  args: [{
2280
2333
  selector: '[vi-scroll-check]',
@@ -2368,10 +2421,10 @@ class LanguagePipe extends Destroyable {
2368
2421
  this.lastParams = null;
2369
2422
  this.lastValue = null;
2370
2423
  }
2371
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipe, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2372
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipe, isStandalone: false, name: "viTranslate", pure: false });
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 });
2373
2426
  }
2374
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipe, decorators: [{
2427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipe, decorators: [{
2375
2428
  type: Pipe,
2376
2429
  args: [{
2377
2430
  name: 'viTranslate',
@@ -2434,10 +2487,10 @@ class HTMLTitleDirective extends Destroyable {
2434
2487
  get value() {
2435
2488
  return this._value;
2436
2489
  }
2437
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2438
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: HTMLTitleDirective, isStandalone: false, selector: "[vi-html-title]", inputs: { value: ["vi-html-title", "value"] }, usesInheritance: true, ngImport: i0 });
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 });
2439
2492
  }
2440
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: HTMLTitleDirective, decorators: [{
2493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLTitleDirective, decorators: [{
2441
2494
  type: Directive,
2442
2495
  args: [{
2443
2496
  selector: '[vi-html-title]',
@@ -2503,10 +2556,10 @@ class HTMLContentTitleDirective extends Destroyable {
2503
2556
  get value() {
2504
2557
  return this._value;
2505
2558
  }
2506
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2507
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: HTMLContentTitleDirective, isStandalone: false, selector: "[vi-html-content-title]", inputs: { value: ["vi-html-content-title", "value"] }, usesInheritance: true, ngImport: i0 });
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 });
2508
2561
  }
2509
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
2562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
2510
2563
  type: Directive,
2511
2564
  args: [{
2512
2565
  selector: '[vi-html-content-title]',
@@ -2527,10 +2580,10 @@ class IsBrowserDirective extends StructureDirective {
2527
2580
  super(templateRef, container);
2528
2581
  this.isNeedAdd = platform.isPlatformBrowser;
2529
2582
  }
2530
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: IsBrowserDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
2531
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: IsBrowserDirective, isStandalone: false, selector: "[viIsBrowser]", usesInheritance: true, ngImport: i0 });
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 });
2532
2585
  }
2533
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: IsBrowserDirective, decorators: [{
2586
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsBrowserDirective, decorators: [{
2534
2587
  type: Directive,
2535
2588
  args: [{
2536
2589
  selector: '[viIsBrowser]',
@@ -2548,10 +2601,10 @@ class IsServerDirective extends StructureDirective {
2548
2601
  super(templateRef, container);
2549
2602
  this.isNeedAdd = platform.isPlatformServer;
2550
2603
  }
2551
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: IsServerDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: PlatformService }], target: i0.ɵɵFactoryTarget.Directive });
2552
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: IsServerDirective, isStandalone: false, selector: "[viIsServer]", usesInheritance: true, ngImport: i0 });
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 });
2553
2606
  }
2554
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: IsServerDirective, decorators: [{
2607
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsServerDirective, decorators: [{
2555
2608
  type: Directive,
2556
2609
  args: [{
2557
2610
  selector: '[viIsServer]',
@@ -2577,10 +2630,10 @@ class NullEmptyValueDirective {
2577
2630
  onEvent(target) {
2578
2631
  this.control.viewToModelUpdate(_.isEmpty(target.value) ? null : target.value);
2579
2632
  }
2580
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: NullEmptyValueDirective, deps: [{ token: i1$1.NgControl }], target: i0.ɵɵFactoryTarget.Directive });
2581
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: NullEmptyValueDirective, isStandalone: false, selector: "input[nullEmptyValue]", host: { listeners: { "input": "onEvent($event.target)" } }, ngImport: i0 });
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 });
2582
2635
  }
2583
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: NullEmptyValueDirective, decorators: [{
2636
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NullEmptyValueDirective, decorators: [{
2584
2637
  type: Directive,
2585
2638
  args: [{
2586
2639
  selector: 'input[nullEmptyValue]',
@@ -2591,6 +2644,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
2591
2644
  args: ['input', ['$event.target']]
2592
2645
  }] } });
2593
2646
 
2647
+ class UppercaseValueDirective {
2648
+ control;
2649
+ //--------------------------------------------------------------------------
2650
+ //
2651
+ // Constructor
2652
+ //
2653
+ //--------------------------------------------------------------------------
2654
+ constructor(control) {
2655
+ this.control = control;
2656
+ }
2657
+ //--------------------------------------------------------------------------
2658
+ //
2659
+ // Event Listener
2660
+ //
2661
+ //--------------------------------------------------------------------------
2662
+ onEvent(target) {
2663
+ let { value } = target;
2664
+ if (!_.isEmpty(value)) {
2665
+ target.value = value.toUpperCase();
2666
+ }
2667
+ }
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 });
2670
+ }
2671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: UppercaseValueDirective, decorators: [{
2672
+ type: Directive,
2673
+ args: [{
2674
+ standalone: false,
2675
+ selector: 'input[uppercaseValue]'
2676
+ }]
2677
+ }], ctorParameters: () => [{ type: i1$1.NgControl }], propDecorators: { onEvent: [{
2678
+ type: HostListener,
2679
+ args: ['input', ['$event.target']]
2680
+ }] } });
2681
+
2594
2682
  class LanguagePipePure extends Destroyable {
2595
2683
  language;
2596
2684
  // --------------------------------------------------------------------------
@@ -2617,10 +2705,10 @@ class LanguagePipePure extends Destroyable {
2617
2705
  super.destroy();
2618
2706
  this.language = null;
2619
2707
  }
2620
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2621
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipePure, isStandalone: false, name: "viTranslatePure" });
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" });
2622
2710
  }
2623
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipePure, decorators: [{
2711
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, decorators: [{
2624
2712
  type: Pipe,
2625
2713
  args: [{
2626
2714
  name: 'viTranslatePure',
@@ -2686,10 +2774,10 @@ class LanguageResolver extends LanguageRequireResolver {
2686
2774
  constructor(service) {
2687
2775
  super(service);
2688
2776
  }
2689
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
2690
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
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' });
2691
2779
  }
2692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageResolver, decorators: [{
2780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, decorators: [{
2693
2781
  type: Injectable,
2694
2782
  args: [{ providedIn: 'root' }]
2695
2783
  }], ctorParameters: () => [{ type: i1.LanguageService }] });
@@ -2772,10 +2860,10 @@ class LanguageDirective extends Destroyable {
2772
2860
  get params() {
2773
2861
  return this._params;
2774
2862
  }
2775
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageDirective, deps: [{ token: i0.ElementRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2776
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", type: LanguageDirective, isStandalone: false, selector: "[vi-translate]", inputs: { isNeedTitle: ["isNeedTitle", "isNeedTitle", booleanAttribute], key: ["vi-translate", "key"], params: "params" }, usesInheritance: true, ngImport: i0 });
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 });
2777
2865
  }
2778
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageDirective, decorators: [{
2866
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageDirective, decorators: [{
2779
2867
  type: Directive,
2780
2868
  args: [{
2781
2869
  selector: '[vi-translate]',
@@ -2793,14 +2881,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
2793
2881
 
2794
2882
  class LanguageToggleDirective extends Destroyable {
2795
2883
  language;
2884
+ settings;
2796
2885
  // --------------------------------------------------------------------------
2797
2886
  //
2798
2887
  // Constructor
2799
2888
  //
2800
2889
  // --------------------------------------------------------------------------
2801
- constructor(language) {
2890
+ constructor(language, settings) {
2802
2891
  super();
2803
2892
  this.language = language;
2893
+ this.settings = settings;
2804
2894
  }
2805
2895
  // --------------------------------------------------------------------------
2806
2896
  //
@@ -2808,9 +2898,10 @@ class LanguageToggleDirective extends Destroyable {
2808
2898
  //
2809
2899
  // --------------------------------------------------------------------------
2810
2900
  clickHandler() {
2811
- let items = this.language.languages.collection;
2812
- if (items.length > 1) {
2813
- this.language.language = ArrayUtil.nextItem(this.language.language, items, true);
2901
+ let items = this.settings.languages.collection;
2902
+ let item = ArrayUtil.nextItem(_.find(items, { locale: this.language.locale }), items, true);
2903
+ if (!_.isNil(item)) {
2904
+ this.language.locale = item.locale;
2814
2905
  }
2815
2906
  }
2816
2907
  // --------------------------------------------------------------------------
@@ -2825,16 +2916,16 @@ class LanguageToggleDirective extends Destroyable {
2825
2916
  super.destroy();
2826
2917
  this.language = null;
2827
2918
  }
2828
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageToggleDirective, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
2829
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: LanguageToggleDirective, isStandalone: false, selector: "[vi-language-toggle]", host: { listeners: { "click": "clickHandler()" } }, usesInheritance: true, ngImport: i0 });
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 });
2830
2921
  }
2831
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageToggleDirective, decorators: [{
2922
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageToggleDirective, decorators: [{
2832
2923
  type: Directive,
2833
2924
  args: [{
2834
2925
  selector: '[vi-language-toggle]',
2835
2926
  standalone: false
2836
2927
  }]
2837
- }], ctorParameters: () => [{ type: i1.LanguageService }], propDecorators: { clickHandler: [{
2928
+ }], ctorParameters: () => [{ type: i1.LanguageService }, { type: i1.SettingsServiceBase }], propDecorators: { clickHandler: [{
2838
2929
  type: HostListener,
2839
2930
  args: ['click']
2840
2931
  }] } });
@@ -2886,10 +2977,10 @@ class LanguagePipeHas extends Destroyable {
2886
2977
  this.language = null;
2887
2978
  this.key = null;
2888
2979
  }
2889
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2890
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipeHas, isStandalone: false, name: "viTranslateHas", pure: false });
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 });
2891
2982
  }
2892
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipeHas, decorators: [{
2983
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, decorators: [{
2893
2984
  type: Pipe,
2894
2985
  args: [{
2895
2986
  name: 'viTranslateHas',
@@ -2924,10 +3015,10 @@ class LanguagePipeHasPure extends Destroyable {
2924
3015
  super.destroy();
2925
3016
  this.language = null;
2926
3017
  }
2927
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
2928
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipeHasPure, isStandalone: false, name: "viTranslateHasPure" });
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" });
2929
3020
  }
2930
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
3021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
2931
3022
  type: Pipe,
2932
3023
  args: [{
2933
3024
  name: 'viTranslateHasPure',
@@ -3001,10 +3092,10 @@ class LanguageHasDirective extends StructureDirective {
3001
3092
  get viTranslateHasIsOnlyIfNotEmpty() {
3002
3093
  return this._isOnlyIfNotEmpty;
3003
3094
  }
3004
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageHasDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
3005
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: LanguageHasDirective, isStandalone: false, selector: "[viTranslateHas]", inputs: { viTranslateHas: "viTranslateHas", viTranslateHasIsOnlyIfNotEmpty: "viTranslateHasIsOnlyIfNotEmpty" }, usesInheritance: true, ngImport: i0 });
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 });
3006
3097
  }
3007
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageHasDirective, decorators: [{
3098
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageHasDirective, decorators: [{
3008
3099
  type: Directive,
3009
3100
  args: [{
3010
3101
  selector: '[viTranslateHas]',
@@ -3046,11 +3137,11 @@ class LanguageModule {
3046
3137
  ]
3047
3138
  };
3048
3139
  }
3049
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3050
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: LanguageModule, declarations: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageToggleDirective, LanguageHasDirective, LanguageDirective], imports: [CookieModule], exports: [LanguagePipe, LanguagePipePure, LanguagePipeHas, LanguagePipeHasPure, LanguageToggleDirective, LanguageHasDirective, LanguageDirective] });
3051
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
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] });
3052
3143
  }
3053
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LanguageModule, decorators: [{
3144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, decorators: [{
3054
3145
  type: NgModule,
3055
3146
  args: [{
3056
3147
  imports: [CookieModule],
@@ -3353,10 +3444,10 @@ class LoginGuard extends LoginRequireResolver {
3353
3444
  canActivate(route, state) {
3354
3445
  return this.isLoggedIn() ? true : this.router.parseUrl(LoginGuard.redirectUrl);
3355
3446
  }
3356
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3357
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginGuard, providedIn: 'root' });
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' });
3358
3449
  }
3359
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginGuard, decorators: [{
3450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginGuard, decorators: [{
3360
3451
  type: Injectable,
3361
3452
  args: [{ providedIn: 'root' }]
3362
3453
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -3389,10 +3480,10 @@ class LoginNotGuard extends LoginRequireResolver {
3389
3480
  canActivate(route, state) {
3390
3481
  return !this.isLoggedIn() ? true : this.router.parseUrl(LoginNotGuard.redirectUrl);
3391
3482
  }
3392
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginNotGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3393
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
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' });
3394
3485
  }
3395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginNotGuard, decorators: [{
3486
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginNotGuard, decorators: [{
3396
3487
  type: Injectable,
3397
3488
  args: [{ providedIn: 'root' }]
3398
3489
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -3409,10 +3500,10 @@ class LoginResolver extends LoginRequireResolver {
3409
3500
  constructor(login) {
3410
3501
  super(login);
3411
3502
  }
3412
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginResolver, deps: [{ token: LoginServiceBase }], target: i0.ɵɵFactoryTarget.Injectable });
3413
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginResolver, providedIn: 'root' });
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' });
3414
3505
  }
3415
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginResolver, decorators: [{
3506
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, decorators: [{
3416
3507
  type: Injectable,
3417
3508
  args: [{ providedIn: 'root' }]
3418
3509
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -3458,10 +3549,10 @@ class LoginIfCanGuard extends LoginGuard {
3458
3549
  }
3459
3550
  return super.canActivate(route, state);
3460
3551
  }
3461
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginIfCanGuard, deps: [{ token: LoginServiceBase }, { token: i1$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
3462
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
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' });
3463
3554
  }
3464
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LoginIfCanGuard, decorators: [{
3555
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginIfCanGuard, decorators: [{
3465
3556
  type: Injectable,
3466
3557
  args: [{ providedIn: 'root' }]
3467
3558
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -4299,10 +4390,10 @@ class PrettifyPipe {
4299
4390
  //
4300
4391
  // --------------------------------------------------------------------------
4301
4392
  constructor() { }
4302
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4303
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: PrettifyPipe, isStandalone: false, name: "viPrettify" });
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" });
4304
4395
  }
4305
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: PrettifyPipe, decorators: [{
4396
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, decorators: [{
4306
4397
  type: Pipe,
4307
4398
  args: [{
4308
4399
  name: 'viPrettify',
@@ -4319,10 +4410,10 @@ class CamelCasePipe {
4319
4410
  transform(value) {
4320
4411
  return !_.isNil(value) ? _.camelCase(value) : PrettifyPipe.EMPTY_SYMBOL;
4321
4412
  }
4322
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4323
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: CamelCasePipe, isStandalone: false, name: "viCamelCase" });
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" });
4324
4415
  }
4325
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: CamelCasePipe, decorators: [{
4416
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, decorators: [{
4326
4417
  type: Pipe,
4327
4418
  args: [{
4328
4419
  name: 'viCamelCase',
@@ -4369,10 +4460,10 @@ class FinancePipe {
4369
4460
  }
4370
4461
  return FinancePipe.format(value, format);
4371
4462
  }
4372
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4373
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: FinancePipe, isStandalone: false, name: "viFinance" });
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" });
4374
4465
  }
4375
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: FinancePipe, decorators: [{
4466
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, decorators: [{
4376
4467
  type: Pipe,
4377
4468
  args: [{
4378
4469
  name: 'viFinance',
@@ -4436,10 +4527,10 @@ class MomentDatePipe {
4436
4527
  let moment = MomentDatePipe.parseMoment(value);
4437
4528
  return moment.format(format || MomentDatePipe.DEFAULT_FORMAT);
4438
4529
  }
4439
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4440
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: MomentDatePipe, isStandalone: false, name: "viMomentDate" });
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" });
4441
4532
  }
4442
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentDatePipe, decorators: [{
4533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, decorators: [{
4443
4534
  type: Pipe,
4444
4535
  args: [{
4445
4536
  name: 'viMomentDate',
@@ -4483,10 +4574,10 @@ class MomentDateAdaptivePipe {
4483
4574
  }
4484
4575
  return item.format(format);
4485
4576
  }
4486
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4487
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: MomentDateAdaptivePipe, isStandalone: false, name: "viMomentAdaptiveDate" });
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" });
4488
4579
  }
4489
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
4580
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
4490
4581
  type: Pipe,
4491
4582
  args: [{
4492
4583
  name: 'viMomentAdaptiveDate',
@@ -4503,10 +4594,10 @@ class MomentDateFromNowPipe {
4503
4594
  transform(value, format) {
4504
4595
  return MomentDatePipe.fromNow(value, format);
4505
4596
  }
4506
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4507
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: MomentDateFromNowPipe, isStandalone: false, name: "viMomentDateFromNow" });
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" });
4508
4599
  }
4509
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
4600
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
4510
4601
  type: Pipe,
4511
4602
  args: [{
4512
4603
  name: 'viMomentDateFromNow',
@@ -4535,10 +4626,10 @@ class MomentTimePipe {
4535
4626
  .add(timeMilliseconds, 'milliseconds')
4536
4627
  .format(format || MomentTimePipe.DEFAULT_FORMAT);
4537
4628
  }
4538
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4539
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: MomentTimePipe, isStandalone: false, name: "viMomentTime" });
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" });
4540
4631
  }
4541
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: MomentTimePipe, decorators: [{
4632
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, decorators: [{
4542
4633
  type: Pipe,
4543
4634
  args: [{
4544
4635
  name: 'viMomentTime',
@@ -4575,10 +4666,10 @@ class NgModelErrorPipe {
4575
4666
  constructor(language) {
4576
4667
  this.language = language;
4577
4668
  }
4578
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
4579
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: NgModelErrorPipe, isStandalone: false, name: "viNgModelError" });
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" });
4580
4671
  }
4581
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: NgModelErrorPipe, decorators: [{
4672
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, decorators: [{
4582
4673
  type: Pipe,
4583
4674
  args: [{
4584
4675
  name: 'viNgModelError',
@@ -4620,10 +4711,10 @@ class SanitizePipe {
4620
4711
  throw new Error('Invalid safe type specified: ' + type);
4621
4712
  }
4622
4713
  }
4623
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SanitizePipe, deps: [{ token: i1$3.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
4624
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: SanitizePipe, isStandalone: false, name: "viSanitize" });
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" });
4625
4716
  }
4626
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SanitizePipe, decorators: [{
4717
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SanitizePipe, decorators: [{
4627
4718
  type: Pipe,
4628
4719
  args: [{
4629
4720
  name: 'viSanitize',
@@ -4640,10 +4731,10 @@ class StartCasePipe {
4640
4731
  transform(value) {
4641
4732
  return !_.isEmpty(value) ? value.charAt(0).toUpperCase() + value.slice(1) : PrettifyPipe.EMPTY_SYMBOL;
4642
4733
  }
4643
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4644
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: StartCasePipe, isStandalone: false, name: "viStartCase" });
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" });
4645
4736
  }
4646
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: StartCasePipe, decorators: [{
4737
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, decorators: [{
4647
4738
  type: Pipe,
4648
4739
  args: [{
4649
4740
  name: 'viStartCase',
@@ -4660,10 +4751,10 @@ class TruncatePipe {
4660
4751
  transform(value, maxLength) {
4661
4752
  return !_.isEmpty(value) ? _.truncate(value, { length: maxLength }) : PrettifyPipe.EMPTY_SYMBOL;
4662
4753
  }
4663
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4664
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: TruncatePipe, isStandalone: false, name: "viTruncate" });
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" });
4665
4756
  }
4666
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: TruncatePipe, decorators: [{
4757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, decorators: [{
4667
4758
  type: Pipe,
4668
4759
  args: [{
4669
4760
  name: 'viTruncate',
@@ -4693,10 +4784,10 @@ class TimePipe {
4693
4784
  }
4694
4785
  return FinancePipe.format(milliseconds / DateUtil.MILLISECONDS_SECOND, format);
4695
4786
  }
4696
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4697
- static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: TimePipe, isStandalone: false, name: "viTime" });
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" });
4698
4789
  }
4699
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: TimePipe, decorators: [{
4790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, decorators: [{
4700
4791
  type: Pipe,
4701
4792
  args: [{
4702
4793
  name: 'viTime',
@@ -4821,7 +4912,7 @@ class QuestionManager extends Destroyable {
4821
4912
  }
4822
4913
  }
4823
4914
 
4824
- class PipeBaseService extends Destroyable {
4915
+ class PipeServiceBase extends Destroyable {
4825
4916
  language;
4826
4917
  sanitizer;
4827
4918
  // --------------------------------------------------------------------------
@@ -4866,10 +4957,10 @@ class PipeBaseService extends Destroyable {
4866
4957
  //
4867
4958
  // --------------------------------------------------------------------------
4868
4959
  commitLanguageProperties() {
4869
- let locale = this.language.locale ? this.language.language.locale : 'en';
4960
+ let locale = this.language.locale ? this.language.locale : 'en';
4870
4961
  this._locale = locale === 'en' ? 'en-US' : locale;
4871
- if (PipeBaseService.DATE) {
4872
- PipeBaseService.DATE = new DatePipe(this.locale);
4962
+ if (PipeServiceBase.DATE) {
4963
+ PipeServiceBase.DATE = new DatePipe(this.locale);
4873
4964
  }
4874
4965
  }
4875
4966
  // --------------------------------------------------------------------------
@@ -4878,77 +4969,77 @@ class PipeBaseService extends Destroyable {
4878
4969
  //
4879
4970
  // --------------------------------------------------------------------------
4880
4971
  get date() {
4881
- if (!PipeBaseService.DATE) {
4882
- PipeBaseService.DATE = new DatePipe(this.locale);
4972
+ if (!PipeServiceBase.DATE) {
4973
+ PipeServiceBase.DATE = new DatePipe(this.locale);
4883
4974
  }
4884
- return PipeBaseService.DATE;
4975
+ return PipeServiceBase.DATE;
4885
4976
  }
4886
4977
  get time() {
4887
- if (!PipeBaseService.TIME) {
4888
- PipeBaseService.TIME = new TimePipe();
4978
+ if (!PipeServiceBase.TIME) {
4979
+ PipeServiceBase.TIME = new TimePipe();
4889
4980
  }
4890
- return PipeBaseService.TIME;
4981
+ return PipeServiceBase.TIME;
4891
4982
  }
4892
4983
  get finance() {
4893
- if (!PipeBaseService.FINANCE) {
4894
- PipeBaseService.FINANCE = new FinancePipe();
4984
+ if (!PipeServiceBase.FINANCE) {
4985
+ PipeServiceBase.FINANCE = new FinancePipe();
4895
4986
  }
4896
- return PipeBaseService.FINANCE;
4987
+ return PipeServiceBase.FINANCE;
4897
4988
  }
4898
4989
  get truncate() {
4899
- if (!PipeBaseService.TRUNCATE) {
4900
- PipeBaseService.TRUNCATE = new TruncatePipe();
4990
+ if (!PipeServiceBase.TRUNCATE) {
4991
+ PipeServiceBase.TRUNCATE = new TruncatePipe();
4901
4992
  }
4902
- return PipeBaseService.TRUNCATE;
4993
+ return PipeServiceBase.TRUNCATE;
4903
4994
  }
4904
4995
  get prettify() {
4905
- if (!PipeBaseService.PRETTIFY) {
4906
- PipeBaseService.PRETTIFY = new PrettifyPipe();
4996
+ if (!PipeServiceBase.PRETTIFY) {
4997
+ PipeServiceBase.PRETTIFY = new PrettifyPipe();
4907
4998
  }
4908
- return PipeBaseService.PRETTIFY;
4999
+ return PipeServiceBase.PRETTIFY;
4909
5000
  }
4910
5001
  get momentDate() {
4911
- if (!PipeBaseService.MOMENT_DATE) {
4912
- PipeBaseService.MOMENT_DATE = new MomentDatePipe();
5002
+ if (!PipeServiceBase.MOMENT_DATE) {
5003
+ PipeServiceBase.MOMENT_DATE = new MomentDatePipe();
4913
5004
  }
4914
- return PipeBaseService.MOMENT_DATE;
5005
+ return PipeServiceBase.MOMENT_DATE;
4915
5006
  }
4916
5007
  get momentDateFromNow() {
4917
- if (!PipeBaseService.MOMENT_DATE_FROM_NOW) {
4918
- PipeBaseService.MOMENT_DATE_FROM_NOW = new MomentDateFromNowPipe();
5008
+ if (!PipeServiceBase.MOMENT_DATE_FROM_NOW) {
5009
+ PipeServiceBase.MOMENT_DATE_FROM_NOW = new MomentDateFromNowPipe();
4919
5010
  }
4920
- return PipeBaseService.MOMENT_DATE_FROM_NOW;
5011
+ return PipeServiceBase.MOMENT_DATE_FROM_NOW;
4921
5012
  }
4922
5013
  get momentDateAdaptive() {
4923
- if (!PipeBaseService.MOMENT_ADAPTIVE_DATE) {
4924
- PipeBaseService.MOMENT_ADAPTIVE_DATE = new MomentDateAdaptivePipe();
5014
+ if (!PipeServiceBase.MOMENT_ADAPTIVE_DATE) {
5015
+ PipeServiceBase.MOMENT_ADAPTIVE_DATE = new MomentDateAdaptivePipe();
4925
5016
  }
4926
- return PipeBaseService.MOMENT_ADAPTIVE_DATE;
5017
+ return PipeServiceBase.MOMENT_ADAPTIVE_DATE;
4927
5018
  }
4928
5019
  get momentTime() {
4929
- if (!PipeBaseService.MOMENT_TIME) {
4930
- PipeBaseService.MOMENT_TIME = new MomentTimePipe();
5020
+ if (!PipeServiceBase.MOMENT_TIME) {
5021
+ PipeServiceBase.MOMENT_TIME = new MomentTimePipe();
4931
5022
  }
4932
- return PipeBaseService.MOMENT_TIME;
5023
+ return PipeServiceBase.MOMENT_TIME;
4933
5024
  }
4934
5025
  get sanitize() {
4935
- if (!PipeBaseService.SANITIZE) {
4936
- PipeBaseService.SANITIZE = new SanitizePipe(this.sanitizer);
5026
+ if (!PipeServiceBase.SANITIZE) {
5027
+ PipeServiceBase.SANITIZE = new SanitizePipe(this.sanitizer);
4937
5028
  }
4938
- return PipeBaseService.SANITIZE;
5029
+ return PipeServiceBase.SANITIZE;
4939
5030
  }
4940
5031
  get camelCase() {
4941
- if (!PipeBaseService.CAMEL_CASE) {
4942
- PipeBaseService.CAMEL_CASE = new CamelCasePipe();
5032
+ if (!PipeServiceBase.CAMEL_CASE) {
5033
+ PipeServiceBase.CAMEL_CASE = new CamelCasePipe();
4943
5034
  }
4944
- return PipeBaseService.CAMEL_CASE;
5035
+ return PipeServiceBase.CAMEL_CASE;
4945
5036
  }
4946
5037
  get locale() {
4947
5038
  return this._locale;
4948
5039
  }
4949
5040
  }
4950
5041
 
4951
- class RouterBaseService extends Loadable {
5042
+ class RouterServiceBase extends Loadable {
4952
5043
  _router;
4953
5044
  _route;
4954
5045
  window;
@@ -5276,10 +5367,10 @@ class ServiceWorkerService extends Loadable {
5276
5367
  get isEnabled() {
5277
5368
  return this.updates.isEnabled;
5278
5369
  }
5279
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ServiceWorkerService, deps: [{ token: i1$4.SwUpdate }, { token: i2.Logger }, { token: NotificationService }], target: i0.ɵɵFactoryTarget.Injectable });
5280
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ServiceWorkerService, providedIn: 'root' });
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' });
5281
5372
  }
5282
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ServiceWorkerService, decorators: [{
5373
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ServiceWorkerService, decorators: [{
5283
5374
  type: Injectable,
5284
5375
  args: [{ providedIn: 'root' }]
5285
5376
  }], ctorParameters: () => [{ type: i1$4.SwUpdate }, { type: i2.Logger }, { type: NotificationService }] });
@@ -5396,10 +5487,10 @@ class ThemeStyleDirective extends Destroyable {
5396
5487
  this.stylePropertiesCheck();
5397
5488
  }
5398
5489
  }
5399
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeStyleDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5400
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: ThemeStyleDirective, isStandalone: false, selector: "[vi-theme-style]", inputs: { flags: "flags", styleName: "styleName", key: ["vi-theme-style", "key"] }, usesInheritance: true, ngImport: i0 });
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 });
5401
5492
  }
5402
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeStyleDirective, decorators: [{
5493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleDirective, decorators: [{
5403
5494
  type: Directive,
5404
5495
  args: [{
5405
5496
  selector: '[vi-theme-style]',
@@ -5500,10 +5591,10 @@ class ThemeStyleHoverDirective extends ThemeStyleDirective {
5500
5591
  set flags(value) {
5501
5592
  super.flags = value;
5502
5593
  }
5503
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeStyleHoverDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5504
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: ThemeStyleHoverDirective, isStandalone: false, selector: "[vi-theme-style-hover]", inputs: { key: ["vi-theme-style-hover", "key"], styleName: "styleName", flags: "flags" }, usesInheritance: true, ngImport: i0 });
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 });
5505
5596
  }
5506
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
5597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
5507
5598
  type: Directive,
5508
5599
  args: [{
5509
5600
  selector: '[vi-theme-style-hover]',
@@ -5732,10 +5823,10 @@ class ThemeAssetDirective extends Destroyable {
5732
5823
  this._extension = value;
5733
5824
  this.setSourceProperties();
5734
5825
  }
5735
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5736
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.3", 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 });
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 });
5737
5828
  }
5738
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetDirective, decorators: [{
5829
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetDirective, decorators: [{
5739
5830
  type: Directive
5740
5831
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.ThemeService }, { type: i1.ThemeAssetService }], propDecorators: { errorLoadingHandler: [{
5741
5832
  type: HostListener,
@@ -5797,10 +5888,10 @@ class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
5797
5888
  get name() {
5798
5889
  return super.name;
5799
5890
  }
5800
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5801
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: ThemeAssetBackgroundDirective, isStandalone: false, selector: "[vi-theme-background]", inputs: { name: ["vi-theme-background", "name"] }, usesInheritance: true, ngImport: i0 });
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 });
5802
5893
  }
5803
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
5894
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
5804
5895
  type: Directive,
5805
5896
  args: [{
5806
5897
  selector: '[vi-theme-background]',
@@ -5843,10 +5934,10 @@ class ThemeAssetImageDirective extends ThemeAssetDirective {
5843
5934
  get name() {
5844
5935
  return super.name;
5845
5936
  }
5846
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetImageDirective, deps: [{ token: i0.ElementRef }, { token: i1.ThemeService }, { token: i1.ThemeAssetService }], target: i0.ɵɵFactoryTarget.Directive });
5847
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: ThemeAssetImageDirective, isStandalone: false, selector: "[vi-theme-image]", inputs: { name: ["vi-theme-image", "name"] }, usesInheritance: true, ngImport: i0 });
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 });
5848
5939
  }
5849
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
5940
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
5850
5941
  type: Directive,
5851
5942
  args: [{
5852
5943
  selector: '[vi-theme-image]',
@@ -5888,10 +5979,10 @@ class ThemeAssetIconDirective extends ThemeAssetDirective {
5888
5979
  get name() {
5889
5980
  return super.name;
5890
5981
  }
5891
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetIconDirective, 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.3", type: ThemeAssetIconDirective, isStandalone: false, selector: "[vi-theme-icon]", inputs: { name: ["vi-theme-icon", "name"] }, usesInheritance: true, ngImport: i0 });
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 });
5893
5984
  }
5894
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
5985
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
5895
5986
  type: Directive,
5896
5987
  args: [{
5897
5988
  selector: '[vi-theme-icon]',
@@ -5936,10 +6027,10 @@ class ThemeToggleDirective extends Destroyable {
5936
6027
  super.destroy();
5937
6028
  this.theme = null;
5938
6029
  }
5939
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
5940
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.3", type: ThemeToggleDirective, isStandalone: false, selector: "[vi-theme-toggle]", host: { listeners: { "click": "clickHandler()" } }, usesInheritance: true, ngImport: i0 });
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 });
5941
6032
  }
5942
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeToggleDirective, decorators: [{
6033
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeToggleDirective, decorators: [{
5943
6034
  type: Directive,
5944
6035
  args: [{
5945
6036
  selector: '[vi-theme-toggle]',
@@ -5985,8 +6076,8 @@ class ThemeModule {
5985
6076
  ]
5986
6077
  };
5987
6078
  }
5988
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5989
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
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,
5990
6081
  ThemeAssetImageDirective,
5991
6082
  ThemeAssetIconDirective,
5992
6083
  ThemeAssetBackgroundDirective,
@@ -5997,9 +6088,9 @@ class ThemeModule {
5997
6088
  ThemeAssetBackgroundDirective,
5998
6089
  ThemeStyleDirective,
5999
6090
  ThemeStyleHoverDirective] });
6000
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
6091
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
6001
6092
  }
6002
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: ThemeModule, decorators: [{
6093
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, decorators: [{
6003
6094
  type: NgModule,
6004
6095
  args: [{
6005
6096
  imports: [CookieModule],
@@ -6677,10 +6768,10 @@ class IWindowContent extends DestroyableContainer {
6677
6768
  this.commitWindowProperties();
6678
6769
  }
6679
6770
  }
6680
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: IWindowContent, deps: [{ token: WINDOW_CONTENT_CONTAINER, optional: true }], target: i0.ɵɵFactoryTarget.Component });
6681
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.3", type: IWindowContent, isStandalone: true, selector: "ng-component", inputs: { isDisabled: ["isDisabled", "isDisabled", booleanAttribute], window: "window" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
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 });
6682
6773
  }
6683
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: IWindowContent, decorators: [{
6774
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IWindowContent, decorators: [{
6684
6775
  type: Component,
6685
6776
  args: [{ template: '' }]
6686
6777
  }], ctorParameters: () => [{ type: undefined, decorators: [{
@@ -6856,10 +6947,10 @@ class INotificationContent extends DestroyableContainer {
6856
6947
  get config() {
6857
6948
  return this._config;
6858
6949
  }
6859
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
6860
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: INotificationContent, isStandalone: true, selector: "ng-component", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
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 });
6861
6952
  }
6862
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: INotificationContent, decorators: [{
6953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: INotificationContent, decorators: [{
6863
6954
  type: Component,
6864
6955
  args: [{ template: '' }]
6865
6956
  }], ctorParameters: () => [{ type: i0.ViewContainerRef }], propDecorators: { config: [{
@@ -7127,10 +7218,10 @@ class LazyModuleLoader extends Loadable {
7127
7218
  get modules() {
7128
7219
  return this._modules;
7129
7220
  }
7130
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LazyModuleLoader, deps: [{ token: i0.Compiler }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
7131
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
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' });
7132
7223
  }
7133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: LazyModuleLoader, decorators: [{
7224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LazyModuleLoader, decorators: [{
7134
7225
  type: Injectable,
7135
7226
  args: [{ providedIn: 'root' }]
7136
7227
  }], ctorParameters: () => [{ type: i0.Compiler }, { type: i0.Injector }] });
@@ -7296,6 +7387,7 @@ let declarations = [
7296
7387
  ClickToSelectDirective,
7297
7388
  InfiniteScrollDirective,
7298
7389
  NullEmptyValueDirective,
7390
+ UppercaseValueDirective,
7299
7391
  HTMLTitleDirective,
7300
7392
  HTMLContentTitleDirective,
7301
7393
  AutoScrollBottomDirective,
@@ -7332,8 +7424,8 @@ class VIModule {
7332
7424
  ]
7333
7425
  };
7334
7426
  }
7335
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7336
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.3", ngImport: i0, type: VIModule, declarations: [TimePipe,
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,
7337
7429
  FinancePipe,
7338
7430
  SanitizePipe,
7339
7431
  TruncatePipe,
@@ -7356,6 +7448,7 @@ class VIModule {
7356
7448
  ClickToSelectDirective,
7357
7449
  InfiniteScrollDirective,
7358
7450
  NullEmptyValueDirective,
7451
+ UppercaseValueDirective,
7359
7452
  HTMLTitleDirective,
7360
7453
  HTMLContentTitleDirective,
7361
7454
  AutoScrollBottomDirective,
@@ -7382,13 +7475,14 @@ class VIModule {
7382
7475
  ClickToSelectDirective,
7383
7476
  InfiniteScrollDirective,
7384
7477
  NullEmptyValueDirective,
7478
+ UppercaseValueDirective,
7385
7479
  HTMLTitleDirective,
7386
7480
  HTMLContentTitleDirective,
7387
7481
  AutoScrollBottomDirective,
7388
7482
  AspectRatioResizeDirective] });
7389
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
7483
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
7390
7484
  }
7391
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: VIModule, decorators: [{
7485
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, decorators: [{
7392
7486
  type: NgModule,
7393
7487
  args: [{
7394
7488
  imports,
@@ -7426,5 +7520,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
7426
7520
  * Generated bundle index. Do not edit.
7427
7521
  */
7428
7522
 
7429
- export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BooleanValueStorage, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, DateValueStorage, Direction, FinancePipe, FocusDirective, FocusManager, 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, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationConfig, NotificationEvent, NotificationService, NotificationServiceEvent, NullEmptyValueDirective, PipeBaseService, PlatformService, PrettifyPipe, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, RouterSelectListItems, SanitizePipe, ScrollCheckDirective, ScrollDirective, SelectListItem, SelectListItems, SelectOnFocusDirective, ServiceWorkerService, StartCasePipe, StructureDirective, THEME_OPTIONS, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetIconDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, 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 };
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 };
7430
7524
  //# sourceMappingURL=ts-core-angular.mjs.map