@ts-core/angular 19.0.9 → 19.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VIModule.d.ts +10 -9
- package/application/ApplicationComponent.d.ts +4 -4
- package/application/{ApplicationBaseComponent.d.ts → ApplicationComponentBase.d.ts} +3 -3
- package/application/ApplicationInitializerBase.d.ts +30 -0
- package/application/{MessageBaseComponent.d.ts → MessageComponentBase.d.ts} +1 -1
- package/directive/UppercaseValueDirective.d.ts +9 -0
- package/fesm2022/ts-core-angular.mjs +352 -241
- package/fesm2022/ts-core-angular.mjs.map +1 -1
- package/list/select/RouterSelectListItems.d.ts +3 -3
- package/package.json +2 -2
- package/public-api.d.ts +6 -4
- package/service/{PipeBaseService.d.ts → PipeServiceBase.d.ts} +1 -1
- package/service/{RouterBaseService.d.ts → RouterServiceBase.d.ts} +2 -2
|
@@ -1,8 +1,10 @@
|
|
|
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 {
|
|
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';
|
|
3
|
+
import { LanguagePreloadLoader, LanguageProxyLoader, LanguageFileLoader } from '@ts-core/language';
|
|
4
|
+
import axios from 'axios';
|
|
5
5
|
import * as _ from 'lodash';
|
|
6
|
+
import * as i0 from '@angular/core';
|
|
7
|
+
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';
|
|
6
8
|
import * as i1 from '@ts-core/frontend';
|
|
7
9
|
import { AssetUrlProvider, Assets, NativeWindowService, LanguageService, ThemeService, ThemeAssetService, LoadingService, ICookieOptions, DefaultLogger } from '@ts-core/frontend';
|
|
8
10
|
import { takeUntil, BehaviorSubject, distinctUntilChanged, debounceTime, fromEvent, filter, map, Subject } from 'rxjs';
|
|
@@ -17,7 +19,78 @@ 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
|
|
22
|
+
class ApplicationInitializerBase extends Destroyable {
|
|
23
|
+
router;
|
|
24
|
+
settings;
|
|
25
|
+
platform;
|
|
26
|
+
language;
|
|
27
|
+
windows;
|
|
28
|
+
options;
|
|
29
|
+
//--------------------------------------------------------------------------
|
|
30
|
+
//
|
|
31
|
+
// Constructor
|
|
32
|
+
//
|
|
33
|
+
//--------------------------------------------------------------------------
|
|
34
|
+
constructor(router, settings, platform, language, windows, options) {
|
|
35
|
+
super();
|
|
36
|
+
this.router = router;
|
|
37
|
+
this.settings = settings;
|
|
38
|
+
this.platform = platform;
|
|
39
|
+
this.language = language;
|
|
40
|
+
this.windows = windows;
|
|
41
|
+
this.options = options;
|
|
42
|
+
if (platform.isPlatformServer && _.isNil(options)) {
|
|
43
|
+
throw new ExtendedError(`Unable to initialize server platform: options is nil`);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
//--------------------------------------------------------------------------
|
|
47
|
+
//
|
|
48
|
+
// Public Methods
|
|
49
|
+
//
|
|
50
|
+
//--------------------------------------------------------------------------
|
|
51
|
+
async initialize() {
|
|
52
|
+
try {
|
|
53
|
+
this.settings.initialize(await this.getConfig(), this.router.getParams());
|
|
54
|
+
}
|
|
55
|
+
catch (error) {
|
|
56
|
+
this.windows.info(error.message, null, null, { isDisableClose: true, isModal: true });
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
this.language.loader = await this.getLanguageLoader();
|
|
60
|
+
return true;
|
|
61
|
+
}
|
|
62
|
+
//--------------------------------------------------------------------------
|
|
63
|
+
//
|
|
64
|
+
// Protected Methods
|
|
65
|
+
//
|
|
66
|
+
//--------------------------------------------------------------------------
|
|
67
|
+
async getLanguageLoader() {
|
|
68
|
+
if (this.platform.isPlatformServer) {
|
|
69
|
+
return new LanguagePreloadLoader(this.options.locales);
|
|
70
|
+
}
|
|
71
|
+
let { url, project, proxy } = this.getLanguageLoadSettings();
|
|
72
|
+
return this.settings.isProduction ? new LanguageProxyLoader(proxy) : new LanguageFileLoader(url, project.prefixes);
|
|
73
|
+
}
|
|
74
|
+
async getConfig() {
|
|
75
|
+
if (this.platform.isPlatformServer) {
|
|
76
|
+
return this.options.config;
|
|
77
|
+
}
|
|
78
|
+
return Object.assign(await this.getConfigLocal(), await this.getConfigRemote());
|
|
79
|
+
}
|
|
80
|
+
async getConfigLocal() {
|
|
81
|
+
let { data } = await axios.get('config.json');
|
|
82
|
+
return data;
|
|
83
|
+
}
|
|
84
|
+
async getConfigRemote() {
|
|
85
|
+
return null;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
class ServerInitializeOptions {
|
|
89
|
+
config;
|
|
90
|
+
locales;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
class ApplicationComponentBase extends DestroyableContainer {
|
|
21
94
|
// --------------------------------------------------------------------------
|
|
22
95
|
//
|
|
23
96
|
// Properties
|
|
@@ -100,15 +173,15 @@ class ApplicationBaseComponent extends DestroyableContainer {
|
|
|
100
173
|
get viewReady() {
|
|
101
174
|
return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.promise : null;
|
|
102
175
|
}
|
|
103
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
104
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
176
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ApplicationComponentBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
177
|
+
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
178
|
}
|
|
106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ApplicationComponentBase, decorators: [{
|
|
107
180
|
type: Component,
|
|
108
181
|
args: [{ template: '' }]
|
|
109
182
|
}], ctorParameters: () => [] });
|
|
110
183
|
|
|
111
|
-
class ApplicationComponent extends
|
|
184
|
+
class ApplicationComponent extends ApplicationComponentBase {
|
|
112
185
|
// --------------------------------------------------------------------------
|
|
113
186
|
//
|
|
114
187
|
// Properties
|
|
@@ -166,7 +239,7 @@ class ApplicationComponent extends ApplicationBaseComponent {
|
|
|
166
239
|
}
|
|
167
240
|
}
|
|
168
241
|
|
|
169
|
-
class
|
|
242
|
+
class MessageComponentBase extends DestroyableContainer {
|
|
170
243
|
route;
|
|
171
244
|
language;
|
|
172
245
|
// --------------------------------------------------------------------------
|
|
@@ -943,10 +1016,10 @@ class AssetBackgroundDirective extends Destroyable {
|
|
|
943
1016
|
get background() {
|
|
944
1017
|
return this._background;
|
|
945
1018
|
}
|
|
946
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
947
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
1019
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1020
|
+
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
1021
|
}
|
|
949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
|
|
950
1023
|
type: Directive,
|
|
951
1024
|
args: [{
|
|
952
1025
|
selector: '[vi-asset-background]',
|
|
@@ -979,10 +1052,10 @@ class AssetBackgroundPipe {
|
|
|
979
1052
|
transform(name, extension = 'png') {
|
|
980
1053
|
return Assets.getBackground(name, extension);
|
|
981
1054
|
}
|
|
982
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
983
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
1055
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1056
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, isStandalone: false, name: "viAssetBackground" });
|
|
984
1057
|
}
|
|
985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
|
|
986
1059
|
type: Pipe,
|
|
987
1060
|
args: [{
|
|
988
1061
|
name: 'viAssetBackground',
|
|
@@ -999,10 +1072,10 @@ class AssetIconPipe {
|
|
|
999
1072
|
transform(name, extension = 'png') {
|
|
1000
1073
|
return Assets.getIcon(name, extension);
|
|
1001
1074
|
}
|
|
1002
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1003
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
1075
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1076
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, isStandalone: false, name: "viAssetIcon" });
|
|
1004
1077
|
}
|
|
1005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1078
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, decorators: [{
|
|
1006
1079
|
type: Pipe,
|
|
1007
1080
|
args: [{
|
|
1008
1081
|
name: 'viAssetIcon',
|
|
@@ -1019,10 +1092,10 @@ class AssetFilePipe {
|
|
|
1019
1092
|
transform(name, extension) {
|
|
1020
1093
|
return Assets.getFile(name, extension);
|
|
1021
1094
|
}
|
|
1022
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1023
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
1095
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1096
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, isStandalone: false, name: "viAssetFile" });
|
|
1024
1097
|
}
|
|
1025
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, decorators: [{
|
|
1026
1099
|
type: Pipe,
|
|
1027
1100
|
args: [{
|
|
1028
1101
|
name: 'viAssetFile',
|
|
@@ -1039,10 +1112,10 @@ class AssetVideoPipe {
|
|
|
1039
1112
|
transform(name, extension = 'mp4') {
|
|
1040
1113
|
return Assets.getVideo(name, extension);
|
|
1041
1114
|
}
|
|
1042
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1043
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
1115
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1116
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, isStandalone: false, name: "viAssetVideo" });
|
|
1044
1117
|
}
|
|
1045
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, decorators: [{
|
|
1046
1119
|
type: Pipe,
|
|
1047
1120
|
args: [{
|
|
1048
1121
|
name: 'viAssetVideo',
|
|
@@ -1059,10 +1132,10 @@ class AssetSoundPipe {
|
|
|
1059
1132
|
transform(name, extension = 'mp3') {
|
|
1060
1133
|
return Assets.getSound(name, extension);
|
|
1061
1134
|
}
|
|
1062
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1063
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
1135
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1136
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, isStandalone: false, name: "viAssetSound" });
|
|
1064
1137
|
}
|
|
1065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, decorators: [{
|
|
1066
1139
|
type: Pipe,
|
|
1067
1140
|
args: [{
|
|
1068
1141
|
name: 'viAssetSound',
|
|
@@ -1079,10 +1152,10 @@ class AssetImagePipe {
|
|
|
1079
1152
|
transform(name, extension = 'png') {
|
|
1080
1153
|
return Assets.getImage(name, extension);
|
|
1081
1154
|
}
|
|
1082
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1083
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
1155
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1156
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, isStandalone: false, name: "viAssetImage" });
|
|
1084
1157
|
}
|
|
1085
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, decorators: [{
|
|
1086
1159
|
type: Pipe,
|
|
1087
1160
|
args: [{
|
|
1088
1161
|
name: 'viAssetImage',
|
|
@@ -1092,11 +1165,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
1092
1165
|
|
|
1093
1166
|
let declarations$3 = [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective];
|
|
1094
1167
|
class AssetModule {
|
|
1095
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1096
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
1097
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
1168
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1169
|
+
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] });
|
|
1170
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, imports: [CommonModule] });
|
|
1098
1171
|
}
|
|
1099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, decorators: [{
|
|
1100
1173
|
type: NgModule,
|
|
1101
1174
|
args: [{
|
|
1102
1175
|
imports: [CommonModule],
|
|
@@ -1201,10 +1274,10 @@ class PlatformService extends Destroyable {
|
|
|
1201
1274
|
get isPlatformBrowser() {
|
|
1202
1275
|
return this._isPlatformBrowser;
|
|
1203
1276
|
}
|
|
1204
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1205
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1277
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1278
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, providedIn: 'root' });
|
|
1206
1279
|
}
|
|
1207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, decorators: [{
|
|
1208
1281
|
type: Injectable,
|
|
1209
1282
|
args: [{ providedIn: 'root' }]
|
|
1210
1283
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -1234,11 +1307,11 @@ class CookieModule {
|
|
|
1234
1307
|
]
|
|
1235
1308
|
};
|
|
1236
1309
|
}
|
|
1237
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1238
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
1239
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
1310
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1311
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: CookieModule });
|
|
1312
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule });
|
|
1240
1313
|
}
|
|
1241
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule, decorators: [{
|
|
1242
1315
|
type: NgModule
|
|
1243
1316
|
}] });
|
|
1244
1317
|
function cookieServiceFactory(nativeWindow, options, platform) {
|
|
@@ -1456,10 +1529,10 @@ class AspectRatioResizeDirective extends Destroyable {
|
|
|
1456
1529
|
get ratio() {
|
|
1457
1530
|
return this._ratio;
|
|
1458
1531
|
}
|
|
1459
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1460
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
1532
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AspectRatioResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1533
|
+
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
1534
|
}
|
|
1462
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
|
|
1463
1536
|
type: Directive,
|
|
1464
1537
|
args: [{
|
|
1465
1538
|
selector: '[vi-aspect-ratio]',
|
|
@@ -1576,10 +1649,10 @@ class ScrollDirective extends Destroyable {
|
|
|
1576
1649
|
get scrollValue() {
|
|
1577
1650
|
return this._scrollValue;
|
|
1578
1651
|
}
|
|
1579
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1580
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
1652
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1653
|
+
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
1654
|
}
|
|
1582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1583
1656
|
type: Directive,
|
|
1584
1657
|
args: [{
|
|
1585
1658
|
selector: '[vi-scroll]',
|
|
@@ -1647,10 +1720,10 @@ class InfiniteScrollDirective extends ScrollDirective {
|
|
|
1647
1720
|
get scrollHeight() {
|
|
1648
1721
|
return this.element.scrollHeight;
|
|
1649
1722
|
}
|
|
1650
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1651
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
1723
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: InfiniteScrollDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1724
|
+
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
1725
|
}
|
|
1653
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
|
|
1654
1727
|
type: Directive,
|
|
1655
1728
|
args: [{
|
|
1656
1729
|
selector: '[vi-infinite-scroll]',
|
|
@@ -1766,10 +1839,10 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
|
|
|
1766
1839
|
this.isScrollLocked = true;
|
|
1767
1840
|
this.scrollCheck();
|
|
1768
1841
|
}
|
|
1769
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1770
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1842
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1843
|
+
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
1844
|
}
|
|
1772
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
|
|
1773
1846
|
type: Directive,
|
|
1774
1847
|
args: [{
|
|
1775
1848
|
selector: '[vi-auto-scroll-bottom]',
|
|
@@ -1816,10 +1889,10 @@ class ClickToCopyDirective extends Destroyable {
|
|
|
1816
1889
|
this.element = null;
|
|
1817
1890
|
clearTimeout(this.selectionClearTimer);
|
|
1818
1891
|
}
|
|
1819
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1820
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1892
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToCopyDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1893
|
+
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
1894
|
}
|
|
1822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToCopyDirective, decorators: [{
|
|
1823
1896
|
type: Directive,
|
|
1824
1897
|
args: [{
|
|
1825
1898
|
selector: '[vi-click-to-copy]',
|
|
@@ -1871,10 +1944,10 @@ class ClickToSelectDirective extends Destroyable {
|
|
|
1871
1944
|
super.destroy();
|
|
1872
1945
|
this.element = null;
|
|
1873
1946
|
}
|
|
1874
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1875
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
1947
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToSelectDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1948
|
+
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
1949
|
}
|
|
1877
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToSelectDirective, decorators: [{
|
|
1878
1951
|
type: Directive,
|
|
1879
1952
|
args: [{
|
|
1880
1953
|
selector: '[vi-click-to-select]',
|
|
@@ -1979,10 +2052,10 @@ class FocusDirective extends Destroyable {
|
|
|
1979
2052
|
set trigger(value) {
|
|
1980
2053
|
this.focus();
|
|
1981
2054
|
}
|
|
1982
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1983
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2055
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2056
|
+
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
2057
|
}
|
|
1985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FocusDirective, decorators: [{
|
|
1986
2059
|
type: Directive,
|
|
1987
2060
|
args: [{
|
|
1988
2061
|
selector: '[vi-focus]',
|
|
@@ -2024,10 +2097,10 @@ class SelectOnFocusDirective extends Destroyable {
|
|
|
2024
2097
|
super.destroy();
|
|
2025
2098
|
this.element = null;
|
|
2026
2099
|
}
|
|
2027
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2028
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2100
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SelectOnFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2101
|
+
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
2102
|
}
|
|
2030
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
|
|
2031
2104
|
type: Directive,
|
|
2032
2105
|
args: [{
|
|
2033
2106
|
selector: '[vi-select-on-focus]',
|
|
@@ -2092,10 +2165,10 @@ class ResizeDirective extends Destroyable {
|
|
|
2092
2165
|
this.interactable = null;
|
|
2093
2166
|
}
|
|
2094
2167
|
}
|
|
2095
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2096
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
2168
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2169
|
+
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
2170
|
}
|
|
2098
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeDirective, decorators: [{
|
|
2099
2172
|
type: Directive,
|
|
2100
2173
|
args: [{
|
|
2101
2174
|
selector: '[vi-resize]',
|
|
@@ -2271,10 +2344,10 @@ class ScrollCheckDirective extends Destroyable {
|
|
|
2271
2344
|
get scrollLimit() {
|
|
2272
2345
|
return this._scrollLimit;
|
|
2273
2346
|
}
|
|
2274
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2275
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
2347
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollCheckDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2348
|
+
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
2349
|
}
|
|
2277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollCheckDirective, decorators: [{
|
|
2278
2351
|
type: Directive,
|
|
2279
2352
|
args: [{
|
|
2280
2353
|
selector: '[vi-scroll-check]',
|
|
@@ -2368,10 +2441,10 @@ class LanguagePipe extends Destroyable {
|
|
|
2368
2441
|
this.lastParams = null;
|
|
2369
2442
|
this.lastValue = null;
|
|
2370
2443
|
}
|
|
2371
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2372
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
2444
|
+
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 });
|
|
2445
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipe, isStandalone: false, name: "viTranslate", pure: false });
|
|
2373
2446
|
}
|
|
2374
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipe, decorators: [{
|
|
2375
2448
|
type: Pipe,
|
|
2376
2449
|
args: [{
|
|
2377
2450
|
name: 'viTranslate',
|
|
@@ -2434,10 +2507,10 @@ class HTMLTitleDirective extends Destroyable {
|
|
|
2434
2507
|
get value() {
|
|
2435
2508
|
return this._value;
|
|
2436
2509
|
}
|
|
2437
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2438
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2510
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2511
|
+
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
2512
|
}
|
|
2440
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2513
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLTitleDirective, decorators: [{
|
|
2441
2514
|
type: Directive,
|
|
2442
2515
|
args: [{
|
|
2443
2516
|
selector: '[vi-html-title]',
|
|
@@ -2503,10 +2576,10 @@ class HTMLContentTitleDirective extends Destroyable {
|
|
|
2503
2576
|
get value() {
|
|
2504
2577
|
return this._value;
|
|
2505
2578
|
}
|
|
2506
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2507
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2579
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLContentTitleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2580
|
+
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
2581
|
}
|
|
2509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
|
|
2510
2583
|
type: Directive,
|
|
2511
2584
|
args: [{
|
|
2512
2585
|
selector: '[vi-html-content-title]',
|
|
@@ -2527,10 +2600,10 @@ class IsBrowserDirective extends StructureDirective {
|
|
|
2527
2600
|
super(templateRef, container);
|
|
2528
2601
|
this.isNeedAdd = platform.isPlatformBrowser;
|
|
2529
2602
|
}
|
|
2530
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2531
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2603
|
+
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 });
|
|
2604
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: IsBrowserDirective, isStandalone: false, selector: "[viIsBrowser]", usesInheritance: true, ngImport: i0 });
|
|
2532
2605
|
}
|
|
2533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsBrowserDirective, decorators: [{
|
|
2534
2607
|
type: Directive,
|
|
2535
2608
|
args: [{
|
|
2536
2609
|
selector: '[viIsBrowser]',
|
|
@@ -2548,10 +2621,10 @@ class IsServerDirective extends StructureDirective {
|
|
|
2548
2621
|
super(templateRef, container);
|
|
2549
2622
|
this.isNeedAdd = platform.isPlatformServer;
|
|
2550
2623
|
}
|
|
2551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2552
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2624
|
+
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 });
|
|
2625
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.10", type: IsServerDirective, isStandalone: false, selector: "[viIsServer]", usesInheritance: true, ngImport: i0 });
|
|
2553
2626
|
}
|
|
2554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsServerDirective, decorators: [{
|
|
2555
2628
|
type: Directive,
|
|
2556
2629
|
args: [{
|
|
2557
2630
|
selector: '[viIsServer]',
|
|
@@ -2577,10 +2650,10 @@ class NullEmptyValueDirective {
|
|
|
2577
2650
|
onEvent(target) {
|
|
2578
2651
|
this.control.viewToModelUpdate(_.isEmpty(target.value) ? null : target.value);
|
|
2579
2652
|
}
|
|
2580
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2581
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2653
|
+
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 });
|
|
2654
|
+
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
2655
|
}
|
|
2583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NullEmptyValueDirective, decorators: [{
|
|
2584
2657
|
type: Directive,
|
|
2585
2658
|
args: [{
|
|
2586
2659
|
selector: 'input[nullEmptyValue]',
|
|
@@ -2591,6 +2664,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
2591
2664
|
args: ['input', ['$event.target']]
|
|
2592
2665
|
}] } });
|
|
2593
2666
|
|
|
2667
|
+
class UppercaseValueDirective {
|
|
2668
|
+
control;
|
|
2669
|
+
//--------------------------------------------------------------------------
|
|
2670
|
+
//
|
|
2671
|
+
// Constructor
|
|
2672
|
+
//
|
|
2673
|
+
//--------------------------------------------------------------------------
|
|
2674
|
+
constructor(control) {
|
|
2675
|
+
this.control = control;
|
|
2676
|
+
}
|
|
2677
|
+
//--------------------------------------------------------------------------
|
|
2678
|
+
//
|
|
2679
|
+
// Event Listener
|
|
2680
|
+
//
|
|
2681
|
+
//--------------------------------------------------------------------------
|
|
2682
|
+
onEvent(target) {
|
|
2683
|
+
let { value } = target;
|
|
2684
|
+
if (!_.isEmpty(value)) {
|
|
2685
|
+
target.value = value.toUpperCase();
|
|
2686
|
+
}
|
|
2687
|
+
}
|
|
2688
|
+
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 });
|
|
2689
|
+
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 });
|
|
2690
|
+
}
|
|
2691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: UppercaseValueDirective, decorators: [{
|
|
2692
|
+
type: Directive,
|
|
2693
|
+
args: [{
|
|
2694
|
+
standalone: false,
|
|
2695
|
+
selector: 'input[uppercaseValue]'
|
|
2696
|
+
}]
|
|
2697
|
+
}], ctorParameters: () => [{ type: i1$1.NgControl }], propDecorators: { onEvent: [{
|
|
2698
|
+
type: HostListener,
|
|
2699
|
+
args: ['input', ['$event.target']]
|
|
2700
|
+
}] } });
|
|
2701
|
+
|
|
2594
2702
|
class LanguagePipePure extends Destroyable {
|
|
2595
2703
|
language;
|
|
2596
2704
|
// --------------------------------------------------------------------------
|
|
@@ -2617,10 +2725,10 @@ class LanguagePipePure extends Destroyable {
|
|
|
2617
2725
|
super.destroy();
|
|
2618
2726
|
this.language = null;
|
|
2619
2727
|
}
|
|
2620
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2621
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
2728
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2729
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, isStandalone: false, name: "viTranslatePure" });
|
|
2622
2730
|
}
|
|
2623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, decorators: [{
|
|
2624
2732
|
type: Pipe,
|
|
2625
2733
|
args: [{
|
|
2626
2734
|
name: 'viTranslatePure',
|
|
@@ -2686,10 +2794,10 @@ class LanguageResolver extends LanguageRequireResolver {
|
|
|
2686
2794
|
constructor(service) {
|
|
2687
2795
|
super(service);
|
|
2688
2796
|
}
|
|
2689
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2690
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
2797
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2798
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, providedIn: 'root' });
|
|
2691
2799
|
}
|
|
2692
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, decorators: [{
|
|
2693
2801
|
type: Injectable,
|
|
2694
2802
|
args: [{ providedIn: 'root' }]
|
|
2695
2803
|
}], ctorParameters: () => [{ type: i1.LanguageService }] });
|
|
@@ -2772,10 +2880,10 @@ class LanguageDirective extends Destroyable {
|
|
|
2772
2880
|
get params() {
|
|
2773
2881
|
return this._params;
|
|
2774
2882
|
}
|
|
2775
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2776
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
2883
|
+
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 });
|
|
2884
|
+
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
2885
|
}
|
|
2778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageDirective, decorators: [{
|
|
2779
2887
|
type: Directive,
|
|
2780
2888
|
args: [{
|
|
2781
2889
|
selector: '[vi-translate]',
|
|
@@ -2825,10 +2933,10 @@ class LanguageToggleDirective extends Destroyable {
|
|
|
2825
2933
|
super.destroy();
|
|
2826
2934
|
this.language = null;
|
|
2827
2935
|
}
|
|
2828
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2829
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
2936
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageToggleDirective, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2937
|
+
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
2938
|
}
|
|
2831
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
2939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageToggleDirective, decorators: [{
|
|
2832
2940
|
type: Directive,
|
|
2833
2941
|
args: [{
|
|
2834
2942
|
selector: '[vi-language-toggle]',
|
|
@@ -2886,10 +2994,10 @@ class LanguagePipeHas extends Destroyable {
|
|
|
2886
2994
|
this.language = null;
|
|
2887
2995
|
this.key = null;
|
|
2888
2996
|
}
|
|
2889
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2890
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
2997
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
2998
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, isStandalone: false, name: "viTranslateHas", pure: false });
|
|
2891
2999
|
}
|
|
2892
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, decorators: [{
|
|
2893
3001
|
type: Pipe,
|
|
2894
3002
|
args: [{
|
|
2895
3003
|
name: 'viTranslateHas',
|
|
@@ -2924,10 +3032,10 @@ class LanguagePipeHasPure extends Destroyable {
|
|
|
2924
3032
|
super.destroy();
|
|
2925
3033
|
this.language = null;
|
|
2926
3034
|
}
|
|
2927
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
2928
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
3035
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
3036
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, isStandalone: false, name: "viTranslateHasPure" });
|
|
2929
3037
|
}
|
|
2930
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
|
|
2931
3039
|
type: Pipe,
|
|
2932
3040
|
args: [{
|
|
2933
3041
|
name: 'viTranslateHasPure',
|
|
@@ -3001,10 +3109,10 @@ class LanguageHasDirective extends StructureDirective {
|
|
|
3001
3109
|
get viTranslateHasIsOnlyIfNotEmpty() {
|
|
3002
3110
|
return this._isOnlyIfNotEmpty;
|
|
3003
3111
|
}
|
|
3004
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3005
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
3112
|
+
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 });
|
|
3113
|
+
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
3114
|
}
|
|
3007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageHasDirective, decorators: [{
|
|
3008
3116
|
type: Directive,
|
|
3009
3117
|
args: [{
|
|
3010
3118
|
selector: '[viTranslateHas]',
|
|
@@ -3046,11 +3154,11 @@ class LanguageModule {
|
|
|
3046
3154
|
]
|
|
3047
3155
|
};
|
|
3048
3156
|
}
|
|
3049
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3050
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
3051
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
3157
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3158
|
+
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] });
|
|
3159
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, imports: [CookieModule] });
|
|
3052
3160
|
}
|
|
3053
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, decorators: [{
|
|
3054
3162
|
type: NgModule,
|
|
3055
3163
|
args: [{
|
|
3056
3164
|
imports: [CookieModule],
|
|
@@ -3353,10 +3461,10 @@ class LoginGuard extends LoginRequireResolver {
|
|
|
3353
3461
|
canActivate(route, state) {
|
|
3354
3462
|
return this.isLoggedIn() ? true : this.router.parseUrl(LoginGuard.redirectUrl);
|
|
3355
3463
|
}
|
|
3356
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3357
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
3464
|
+
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 });
|
|
3465
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginGuard, providedIn: 'root' });
|
|
3358
3466
|
}
|
|
3359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginGuard, decorators: [{
|
|
3360
3468
|
type: Injectable,
|
|
3361
3469
|
args: [{ providedIn: 'root' }]
|
|
3362
3470
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -3389,10 +3497,10 @@ class LoginNotGuard extends LoginRequireResolver {
|
|
|
3389
3497
|
canActivate(route, state) {
|
|
3390
3498
|
return !this.isLoggedIn() ? true : this.router.parseUrl(LoginNotGuard.redirectUrl);
|
|
3391
3499
|
}
|
|
3392
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3393
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
3500
|
+
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 });
|
|
3501
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginNotGuard, providedIn: 'root' });
|
|
3394
3502
|
}
|
|
3395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginNotGuard, decorators: [{
|
|
3396
3504
|
type: Injectable,
|
|
3397
3505
|
args: [{ providedIn: 'root' }]
|
|
3398
3506
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -3409,10 +3517,10 @@ class LoginResolver extends LoginRequireResolver {
|
|
|
3409
3517
|
constructor(login) {
|
|
3410
3518
|
super(login);
|
|
3411
3519
|
}
|
|
3412
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3413
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
3520
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, deps: [{ token: LoginServiceBase }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3521
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, providedIn: 'root' });
|
|
3414
3522
|
}
|
|
3415
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, decorators: [{
|
|
3416
3524
|
type: Injectable,
|
|
3417
3525
|
args: [{ providedIn: 'root' }]
|
|
3418
3526
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -3458,10 +3566,10 @@ class LoginIfCanGuard extends LoginGuard {
|
|
|
3458
3566
|
}
|
|
3459
3567
|
return super.canActivate(route, state);
|
|
3460
3568
|
}
|
|
3461
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
3462
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
3569
|
+
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 });
|
|
3570
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginIfCanGuard, providedIn: 'root' });
|
|
3463
3571
|
}
|
|
3464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
3572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginIfCanGuard, decorators: [{
|
|
3465
3573
|
type: Injectable,
|
|
3466
3574
|
args: [{ providedIn: 'root' }]
|
|
3467
3575
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -4299,10 +4407,10 @@ class PrettifyPipe {
|
|
|
4299
4407
|
//
|
|
4300
4408
|
// --------------------------------------------------------------------------
|
|
4301
4409
|
constructor() { }
|
|
4302
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4303
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4410
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4411
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, isStandalone: false, name: "viPrettify" });
|
|
4304
4412
|
}
|
|
4305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, decorators: [{
|
|
4306
4414
|
type: Pipe,
|
|
4307
4415
|
args: [{
|
|
4308
4416
|
name: 'viPrettify',
|
|
@@ -4319,10 +4427,10 @@ class CamelCasePipe {
|
|
|
4319
4427
|
transform(value) {
|
|
4320
4428
|
return !_.isNil(value) ? _.camelCase(value) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4321
4429
|
}
|
|
4322
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4323
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4430
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4431
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, isStandalone: false, name: "viCamelCase" });
|
|
4324
4432
|
}
|
|
4325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, decorators: [{
|
|
4326
4434
|
type: Pipe,
|
|
4327
4435
|
args: [{
|
|
4328
4436
|
name: 'viCamelCase',
|
|
@@ -4369,10 +4477,10 @@ class FinancePipe {
|
|
|
4369
4477
|
}
|
|
4370
4478
|
return FinancePipe.format(value, format);
|
|
4371
4479
|
}
|
|
4372
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4373
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4480
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4481
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, isStandalone: false, name: "viFinance" });
|
|
4374
4482
|
}
|
|
4375
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, decorators: [{
|
|
4376
4484
|
type: Pipe,
|
|
4377
4485
|
args: [{
|
|
4378
4486
|
name: 'viFinance',
|
|
@@ -4436,10 +4544,10 @@ class MomentDatePipe {
|
|
|
4436
4544
|
let moment = MomentDatePipe.parseMoment(value);
|
|
4437
4545
|
return moment.format(format || MomentDatePipe.DEFAULT_FORMAT);
|
|
4438
4546
|
}
|
|
4439
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4440
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4547
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4548
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, isStandalone: false, name: "viMomentDate" });
|
|
4441
4549
|
}
|
|
4442
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, decorators: [{
|
|
4443
4551
|
type: Pipe,
|
|
4444
4552
|
args: [{
|
|
4445
4553
|
name: 'viMomentDate',
|
|
@@ -4483,10 +4591,10 @@ class MomentDateAdaptivePipe {
|
|
|
4483
4591
|
}
|
|
4484
4592
|
return item.format(format);
|
|
4485
4593
|
}
|
|
4486
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4487
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4594
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4595
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, isStandalone: false, name: "viMomentAdaptiveDate" });
|
|
4488
4596
|
}
|
|
4489
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
|
|
4490
4598
|
type: Pipe,
|
|
4491
4599
|
args: [{
|
|
4492
4600
|
name: 'viMomentAdaptiveDate',
|
|
@@ -4503,10 +4611,10 @@ class MomentDateFromNowPipe {
|
|
|
4503
4611
|
transform(value, format) {
|
|
4504
4612
|
return MomentDatePipe.fromNow(value, format);
|
|
4505
4613
|
}
|
|
4506
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4507
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4614
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4615
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, isStandalone: false, name: "viMomentDateFromNow" });
|
|
4508
4616
|
}
|
|
4509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
|
|
4510
4618
|
type: Pipe,
|
|
4511
4619
|
args: [{
|
|
4512
4620
|
name: 'viMomentDateFromNow',
|
|
@@ -4535,10 +4643,10 @@ class MomentTimePipe {
|
|
|
4535
4643
|
.add(timeMilliseconds, 'milliseconds')
|
|
4536
4644
|
.format(format || MomentTimePipe.DEFAULT_FORMAT);
|
|
4537
4645
|
}
|
|
4538
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4539
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4646
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4647
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, isStandalone: false, name: "viMomentTime" });
|
|
4540
4648
|
}
|
|
4541
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, decorators: [{
|
|
4542
4650
|
type: Pipe,
|
|
4543
4651
|
args: [{
|
|
4544
4652
|
name: 'viMomentTime',
|
|
@@ -4575,10 +4683,10 @@ class NgModelErrorPipe {
|
|
|
4575
4683
|
constructor(language) {
|
|
4576
4684
|
this.language = language;
|
|
4577
4685
|
}
|
|
4578
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4579
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4686
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4687
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, isStandalone: false, name: "viNgModelError" });
|
|
4580
4688
|
}
|
|
4581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, decorators: [{
|
|
4582
4690
|
type: Pipe,
|
|
4583
4691
|
args: [{
|
|
4584
4692
|
name: 'viNgModelError',
|
|
@@ -4620,10 +4728,10 @@ class SanitizePipe {
|
|
|
4620
4728
|
throw new Error('Invalid safe type specified: ' + type);
|
|
4621
4729
|
}
|
|
4622
4730
|
}
|
|
4623
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4624
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4731
|
+
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 });
|
|
4732
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: SanitizePipe, isStandalone: false, name: "viSanitize" });
|
|
4625
4733
|
}
|
|
4626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SanitizePipe, decorators: [{
|
|
4627
4735
|
type: Pipe,
|
|
4628
4736
|
args: [{
|
|
4629
4737
|
name: 'viSanitize',
|
|
@@ -4640,10 +4748,10 @@ class StartCasePipe {
|
|
|
4640
4748
|
transform(value) {
|
|
4641
4749
|
return !_.isEmpty(value) ? value.charAt(0).toUpperCase() + value.slice(1) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4642
4750
|
}
|
|
4643
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4644
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4751
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4752
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, isStandalone: false, name: "viStartCase" });
|
|
4645
4753
|
}
|
|
4646
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, decorators: [{
|
|
4647
4755
|
type: Pipe,
|
|
4648
4756
|
args: [{
|
|
4649
4757
|
name: 'viStartCase',
|
|
@@ -4660,10 +4768,10 @@ class TruncatePipe {
|
|
|
4660
4768
|
transform(value, maxLength) {
|
|
4661
4769
|
return !_.isEmpty(value) ? _.truncate(value, { length: maxLength }) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4662
4770
|
}
|
|
4663
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4664
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4771
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4772
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, isStandalone: false, name: "viTruncate" });
|
|
4665
4773
|
}
|
|
4666
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4774
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, decorators: [{
|
|
4667
4775
|
type: Pipe,
|
|
4668
4776
|
args: [{
|
|
4669
4777
|
name: 'viTruncate',
|
|
@@ -4693,10 +4801,10 @@ class TimePipe {
|
|
|
4693
4801
|
}
|
|
4694
4802
|
return FinancePipe.format(milliseconds / DateUtil.MILLISECONDS_SECOND, format);
|
|
4695
4803
|
}
|
|
4696
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
4697
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.
|
|
4804
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4805
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, isStandalone: false, name: "viTime" });
|
|
4698
4806
|
}
|
|
4699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
4807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, decorators: [{
|
|
4700
4808
|
type: Pipe,
|
|
4701
4809
|
args: [{
|
|
4702
4810
|
name: 'viTime',
|
|
@@ -4821,7 +4929,7 @@ class QuestionManager extends Destroyable {
|
|
|
4821
4929
|
}
|
|
4822
4930
|
}
|
|
4823
4931
|
|
|
4824
|
-
class
|
|
4932
|
+
class PipeServiceBase extends Destroyable {
|
|
4825
4933
|
language;
|
|
4826
4934
|
sanitizer;
|
|
4827
4935
|
// --------------------------------------------------------------------------
|
|
@@ -4868,8 +4976,8 @@ class PipeBaseService extends Destroyable {
|
|
|
4868
4976
|
commitLanguageProperties() {
|
|
4869
4977
|
let locale = this.language.locale ? this.language.language.locale : 'en';
|
|
4870
4978
|
this._locale = locale === 'en' ? 'en-US' : locale;
|
|
4871
|
-
if (
|
|
4872
|
-
|
|
4979
|
+
if (PipeServiceBase.DATE) {
|
|
4980
|
+
PipeServiceBase.DATE = new DatePipe(this.locale);
|
|
4873
4981
|
}
|
|
4874
4982
|
}
|
|
4875
4983
|
// --------------------------------------------------------------------------
|
|
@@ -4878,77 +4986,77 @@ class PipeBaseService extends Destroyable {
|
|
|
4878
4986
|
//
|
|
4879
4987
|
// --------------------------------------------------------------------------
|
|
4880
4988
|
get date() {
|
|
4881
|
-
if (!
|
|
4882
|
-
|
|
4989
|
+
if (!PipeServiceBase.DATE) {
|
|
4990
|
+
PipeServiceBase.DATE = new DatePipe(this.locale);
|
|
4883
4991
|
}
|
|
4884
|
-
return
|
|
4992
|
+
return PipeServiceBase.DATE;
|
|
4885
4993
|
}
|
|
4886
4994
|
get time() {
|
|
4887
|
-
if (!
|
|
4888
|
-
|
|
4995
|
+
if (!PipeServiceBase.TIME) {
|
|
4996
|
+
PipeServiceBase.TIME = new TimePipe();
|
|
4889
4997
|
}
|
|
4890
|
-
return
|
|
4998
|
+
return PipeServiceBase.TIME;
|
|
4891
4999
|
}
|
|
4892
5000
|
get finance() {
|
|
4893
|
-
if (!
|
|
4894
|
-
|
|
5001
|
+
if (!PipeServiceBase.FINANCE) {
|
|
5002
|
+
PipeServiceBase.FINANCE = new FinancePipe();
|
|
4895
5003
|
}
|
|
4896
|
-
return
|
|
5004
|
+
return PipeServiceBase.FINANCE;
|
|
4897
5005
|
}
|
|
4898
5006
|
get truncate() {
|
|
4899
|
-
if (!
|
|
4900
|
-
|
|
5007
|
+
if (!PipeServiceBase.TRUNCATE) {
|
|
5008
|
+
PipeServiceBase.TRUNCATE = new TruncatePipe();
|
|
4901
5009
|
}
|
|
4902
|
-
return
|
|
5010
|
+
return PipeServiceBase.TRUNCATE;
|
|
4903
5011
|
}
|
|
4904
5012
|
get prettify() {
|
|
4905
|
-
if (!
|
|
4906
|
-
|
|
5013
|
+
if (!PipeServiceBase.PRETTIFY) {
|
|
5014
|
+
PipeServiceBase.PRETTIFY = new PrettifyPipe();
|
|
4907
5015
|
}
|
|
4908
|
-
return
|
|
5016
|
+
return PipeServiceBase.PRETTIFY;
|
|
4909
5017
|
}
|
|
4910
5018
|
get momentDate() {
|
|
4911
|
-
if (!
|
|
4912
|
-
|
|
5019
|
+
if (!PipeServiceBase.MOMENT_DATE) {
|
|
5020
|
+
PipeServiceBase.MOMENT_DATE = new MomentDatePipe();
|
|
4913
5021
|
}
|
|
4914
|
-
return
|
|
5022
|
+
return PipeServiceBase.MOMENT_DATE;
|
|
4915
5023
|
}
|
|
4916
5024
|
get momentDateFromNow() {
|
|
4917
|
-
if (!
|
|
4918
|
-
|
|
5025
|
+
if (!PipeServiceBase.MOMENT_DATE_FROM_NOW) {
|
|
5026
|
+
PipeServiceBase.MOMENT_DATE_FROM_NOW = new MomentDateFromNowPipe();
|
|
4919
5027
|
}
|
|
4920
|
-
return
|
|
5028
|
+
return PipeServiceBase.MOMENT_DATE_FROM_NOW;
|
|
4921
5029
|
}
|
|
4922
5030
|
get momentDateAdaptive() {
|
|
4923
|
-
if (!
|
|
4924
|
-
|
|
5031
|
+
if (!PipeServiceBase.MOMENT_ADAPTIVE_DATE) {
|
|
5032
|
+
PipeServiceBase.MOMENT_ADAPTIVE_DATE = new MomentDateAdaptivePipe();
|
|
4925
5033
|
}
|
|
4926
|
-
return
|
|
5034
|
+
return PipeServiceBase.MOMENT_ADAPTIVE_DATE;
|
|
4927
5035
|
}
|
|
4928
5036
|
get momentTime() {
|
|
4929
|
-
if (!
|
|
4930
|
-
|
|
5037
|
+
if (!PipeServiceBase.MOMENT_TIME) {
|
|
5038
|
+
PipeServiceBase.MOMENT_TIME = new MomentTimePipe();
|
|
4931
5039
|
}
|
|
4932
|
-
return
|
|
5040
|
+
return PipeServiceBase.MOMENT_TIME;
|
|
4933
5041
|
}
|
|
4934
5042
|
get sanitize() {
|
|
4935
|
-
if (!
|
|
4936
|
-
|
|
5043
|
+
if (!PipeServiceBase.SANITIZE) {
|
|
5044
|
+
PipeServiceBase.SANITIZE = new SanitizePipe(this.sanitizer);
|
|
4937
5045
|
}
|
|
4938
|
-
return
|
|
5046
|
+
return PipeServiceBase.SANITIZE;
|
|
4939
5047
|
}
|
|
4940
5048
|
get camelCase() {
|
|
4941
|
-
if (!
|
|
4942
|
-
|
|
5049
|
+
if (!PipeServiceBase.CAMEL_CASE) {
|
|
5050
|
+
PipeServiceBase.CAMEL_CASE = new CamelCasePipe();
|
|
4943
5051
|
}
|
|
4944
|
-
return
|
|
5052
|
+
return PipeServiceBase.CAMEL_CASE;
|
|
4945
5053
|
}
|
|
4946
5054
|
get locale() {
|
|
4947
5055
|
return this._locale;
|
|
4948
5056
|
}
|
|
4949
5057
|
}
|
|
4950
5058
|
|
|
4951
|
-
class
|
|
5059
|
+
class RouterServiceBase extends Loadable {
|
|
4952
5060
|
_router;
|
|
4953
5061
|
_route;
|
|
4954
5062
|
window;
|
|
@@ -5276,10 +5384,10 @@ class ServiceWorkerService extends Loadable {
|
|
|
5276
5384
|
get isEnabled() {
|
|
5277
5385
|
return this.updates.isEnabled;
|
|
5278
5386
|
}
|
|
5279
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5280
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
5387
|
+
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 });
|
|
5388
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ServiceWorkerService, providedIn: 'root' });
|
|
5281
5389
|
}
|
|
5282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ServiceWorkerService, decorators: [{
|
|
5283
5391
|
type: Injectable,
|
|
5284
5392
|
args: [{ providedIn: 'root' }]
|
|
5285
5393
|
}], ctorParameters: () => [{ type: i1$4.SwUpdate }, { type: i2.Logger }, { type: NotificationService }] });
|
|
@@ -5396,10 +5504,10 @@ class ThemeStyleDirective extends Destroyable {
|
|
|
5396
5504
|
this.stylePropertiesCheck();
|
|
5397
5505
|
}
|
|
5398
5506
|
}
|
|
5399
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5400
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
5507
|
+
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 });
|
|
5508
|
+
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
5509
|
}
|
|
5402
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleDirective, decorators: [{
|
|
5403
5511
|
type: Directive,
|
|
5404
5512
|
args: [{
|
|
5405
5513
|
selector: '[vi-theme-style]',
|
|
@@ -5500,10 +5608,10 @@ class ThemeStyleHoverDirective extends ThemeStyleDirective {
|
|
|
5500
5608
|
set flags(value) {
|
|
5501
5609
|
super.flags = value;
|
|
5502
5610
|
}
|
|
5503
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5504
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
5611
|
+
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 });
|
|
5612
|
+
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
5613
|
}
|
|
5506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5614
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
|
|
5507
5615
|
type: Directive,
|
|
5508
5616
|
args: [{
|
|
5509
5617
|
selector: '[vi-theme-style-hover]',
|
|
@@ -5732,10 +5840,10 @@ class ThemeAssetDirective extends Destroyable {
|
|
|
5732
5840
|
this._extension = value;
|
|
5733
5841
|
this.setSourceProperties();
|
|
5734
5842
|
}
|
|
5735
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5736
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.2.
|
|
5843
|
+
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 });
|
|
5844
|
+
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
5845
|
}
|
|
5738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetDirective, decorators: [{
|
|
5739
5847
|
type: Directive
|
|
5740
5848
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.ThemeService }, { type: i1.ThemeAssetService }], propDecorators: { errorLoadingHandler: [{
|
|
5741
5849
|
type: HostListener,
|
|
@@ -5797,10 +5905,10 @@ class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
|
|
|
5797
5905
|
get name() {
|
|
5798
5906
|
return super.name;
|
|
5799
5907
|
}
|
|
5800
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5801
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
5908
|
+
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 });
|
|
5909
|
+
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
5910
|
}
|
|
5803
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
|
|
5804
5912
|
type: Directive,
|
|
5805
5913
|
args: [{
|
|
5806
5914
|
selector: '[vi-theme-background]',
|
|
@@ -5843,10 +5951,10 @@ class ThemeAssetImageDirective extends ThemeAssetDirective {
|
|
|
5843
5951
|
get name() {
|
|
5844
5952
|
return super.name;
|
|
5845
5953
|
}
|
|
5846
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5847
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
5954
|
+
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 });
|
|
5955
|
+
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
5956
|
}
|
|
5849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
5957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
|
|
5850
5958
|
type: Directive,
|
|
5851
5959
|
args: [{
|
|
5852
5960
|
selector: '[vi-theme-image]',
|
|
@@ -5888,10 +5996,10 @@ class ThemeAssetIconDirective extends ThemeAssetDirective {
|
|
|
5888
5996
|
get name() {
|
|
5889
5997
|
return super.name;
|
|
5890
5998
|
}
|
|
5891
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5892
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
5999
|
+
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 });
|
|
6000
|
+
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
6001
|
}
|
|
5894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6002
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
|
|
5895
6003
|
type: Directive,
|
|
5896
6004
|
args: [{
|
|
5897
6005
|
selector: '[vi-theme-icon]',
|
|
@@ -5936,10 +6044,10 @@ class ThemeToggleDirective extends Destroyable {
|
|
|
5936
6044
|
super.destroy();
|
|
5937
6045
|
this.theme = null;
|
|
5938
6046
|
}
|
|
5939
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5940
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.
|
|
6047
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeToggleDirective, deps: [{ token: i1.ThemeService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6048
|
+
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
6049
|
}
|
|
5942
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeToggleDirective, decorators: [{
|
|
5943
6051
|
type: Directive,
|
|
5944
6052
|
args: [{
|
|
5945
6053
|
selector: '[vi-theme-toggle]',
|
|
@@ -5985,8 +6093,8 @@ class ThemeModule {
|
|
|
5985
6093
|
]
|
|
5986
6094
|
};
|
|
5987
6095
|
}
|
|
5988
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
5989
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
6096
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6097
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, declarations: [ThemeToggleDirective,
|
|
5990
6098
|
ThemeAssetImageDirective,
|
|
5991
6099
|
ThemeAssetIconDirective,
|
|
5992
6100
|
ThemeAssetBackgroundDirective,
|
|
@@ -5997,9 +6105,9 @@ class ThemeModule {
|
|
|
5997
6105
|
ThemeAssetBackgroundDirective,
|
|
5998
6106
|
ThemeStyleDirective,
|
|
5999
6107
|
ThemeStyleHoverDirective] });
|
|
6000
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
6108
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
|
|
6001
6109
|
}
|
|
6002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, decorators: [{
|
|
6003
6111
|
type: NgModule,
|
|
6004
6112
|
args: [{
|
|
6005
6113
|
imports: [CookieModule],
|
|
@@ -6677,10 +6785,10 @@ class IWindowContent extends DestroyableContainer {
|
|
|
6677
6785
|
this.commitWindowProperties();
|
|
6678
6786
|
}
|
|
6679
6787
|
}
|
|
6680
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6681
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.
|
|
6788
|
+
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 });
|
|
6789
|
+
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
6790
|
}
|
|
6683
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6791
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IWindowContent, decorators: [{
|
|
6684
6792
|
type: Component,
|
|
6685
6793
|
args: [{ template: '' }]
|
|
6686
6794
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -6856,10 +6964,10 @@ class INotificationContent extends DestroyableContainer {
|
|
|
6856
6964
|
get config() {
|
|
6857
6965
|
return this._config;
|
|
6858
6966
|
}
|
|
6859
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
6860
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
6967
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: INotificationContent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
6968
|
+
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
6969
|
}
|
|
6862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
6970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: INotificationContent, decorators: [{
|
|
6863
6971
|
type: Component,
|
|
6864
6972
|
args: [{ template: '' }]
|
|
6865
6973
|
}], ctorParameters: () => [{ type: i0.ViewContainerRef }], propDecorators: { config: [{
|
|
@@ -7127,10 +7235,10 @@ class LazyModuleLoader extends Loadable {
|
|
|
7127
7235
|
get modules() {
|
|
7128
7236
|
return this._modules;
|
|
7129
7237
|
}
|
|
7130
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
7131
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
7238
|
+
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 });
|
|
7239
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LazyModuleLoader, providedIn: 'root' });
|
|
7132
7240
|
}
|
|
7133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
7241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LazyModuleLoader, decorators: [{
|
|
7134
7242
|
type: Injectable,
|
|
7135
7243
|
args: [{ providedIn: 'root' }]
|
|
7136
7244
|
}], ctorParameters: () => [{ type: i0.Compiler }, { type: i0.Injector }] });
|
|
@@ -7296,6 +7404,7 @@ let declarations = [
|
|
|
7296
7404
|
ClickToSelectDirective,
|
|
7297
7405
|
InfiniteScrollDirective,
|
|
7298
7406
|
NullEmptyValueDirective,
|
|
7407
|
+
UppercaseValueDirective,
|
|
7299
7408
|
HTMLTitleDirective,
|
|
7300
7409
|
HTMLContentTitleDirective,
|
|
7301
7410
|
AutoScrollBottomDirective,
|
|
@@ -7332,8 +7441,8 @@ class VIModule {
|
|
|
7332
7441
|
]
|
|
7333
7442
|
};
|
|
7334
7443
|
}
|
|
7335
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
7336
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
7444
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7445
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: VIModule, declarations: [TimePipe,
|
|
7337
7446
|
FinancePipe,
|
|
7338
7447
|
SanitizePipe,
|
|
7339
7448
|
TruncatePipe,
|
|
@@ -7356,6 +7465,7 @@ class VIModule {
|
|
|
7356
7465
|
ClickToSelectDirective,
|
|
7357
7466
|
InfiniteScrollDirective,
|
|
7358
7467
|
NullEmptyValueDirective,
|
|
7468
|
+
UppercaseValueDirective,
|
|
7359
7469
|
HTMLTitleDirective,
|
|
7360
7470
|
HTMLContentTitleDirective,
|
|
7361
7471
|
AutoScrollBottomDirective,
|
|
@@ -7382,13 +7492,14 @@ class VIModule {
|
|
|
7382
7492
|
ClickToSelectDirective,
|
|
7383
7493
|
InfiniteScrollDirective,
|
|
7384
7494
|
NullEmptyValueDirective,
|
|
7495
|
+
UppercaseValueDirective,
|
|
7385
7496
|
HTMLTitleDirective,
|
|
7386
7497
|
HTMLContentTitleDirective,
|
|
7387
7498
|
AutoScrollBottomDirective,
|
|
7388
7499
|
AspectRatioResizeDirective] });
|
|
7389
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
7500
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
|
|
7390
7501
|
}
|
|
7391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
7502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, decorators: [{
|
|
7392
7503
|
type: NgModule,
|
|
7393
7504
|
args: [{
|
|
7394
7505
|
imports,
|
|
@@ -7426,5 +7537,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
|
|
|
7426
7537
|
* Generated bundle index. Do not edit.
|
|
7427
7538
|
*/
|
|
7428
7539
|
|
|
7429
|
-
export { APPLICATION_INJECTOR,
|
|
7540
|
+
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
7541
|
//# sourceMappingURL=ts-core-angular.mjs.map
|