@ts-core/angular 19.0.8 → 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 +11 -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/NullEmptyValueDirective.d.ts +9 -0
- package/directive/UppercaseValueDirective.d.ts +9 -0
- package/fesm2022/ts-core-angular.mjs +409 -249
- 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 +7 -4
- package/resolver/LoadableResolver.d.ts +2 -0
- package/service/{PipeBaseService.d.ts → PipeServiceBase.d.ts} +1 -1
- package/service/{RouterBaseService.d.ts → RouterServiceBase.d.ts} +2 -2
- package/user/UserServiceBase.d.ts +1 -1
|
@@ -1,22 +1,96 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ViewContainerRef, booleanAttribute, Directive, Input, Pipe, NgModule, PLATFORM_ID, Injectable, Inject, InjectionToken, numberAttribute, EventEmitter, Output, HostListener, RendererStyleFlags2, Optional, NgModuleFactory, APP_INITIALIZER, RendererFactory2 } 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
|
-
import {
|
|
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';
|
|
9
11
|
import moment from 'moment';
|
|
10
12
|
import numeral from 'numeral';
|
|
11
13
|
import { CommonModule, isPlatformServer, isPlatformBrowser, DatePipe, DOCUMENT } from '@angular/common';
|
|
12
14
|
import * as Cookie from 'ngx-cookie';
|
|
13
15
|
import * as interact from 'interactjs';
|
|
14
|
-
import * as i1$1 from '@angular/
|
|
16
|
+
import * as i1$1 from '@angular/forms';
|
|
17
|
+
import * as i1$2 from '@angular/router';
|
|
15
18
|
import { NavigationStart, NavigationEnd, NavigationCancel, NavigationError } from '@angular/router';
|
|
16
|
-
import * as i1$
|
|
17
|
-
import * as i1$
|
|
19
|
+
import * as i1$3 from '@angular/platform-browser';
|
|
20
|
+
import * as i1$4 from '@angular/service-worker';
|
|
21
|
+
|
|
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
|
+
}
|
|
18
92
|
|
|
19
|
-
class
|
|
93
|
+
class ApplicationComponentBase extends DestroyableContainer {
|
|
20
94
|
// --------------------------------------------------------------------------
|
|
21
95
|
//
|
|
22
96
|
// Properties
|
|
@@ -99,15 +173,15 @@ class ApplicationBaseComponent extends DestroyableContainer {
|
|
|
99
173
|
get viewReady() {
|
|
100
174
|
return !_.isNil(this.viewReadyPromise) ? this.viewReadyPromise.promise : null;
|
|
101
175
|
}
|
|
102
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
103
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
104
178
|
}
|
|
105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ApplicationComponentBase, decorators: [{
|
|
106
180
|
type: Component,
|
|
107
181
|
args: [{ template: '' }]
|
|
108
182
|
}], ctorParameters: () => [] });
|
|
109
183
|
|
|
110
|
-
class ApplicationComponent extends
|
|
184
|
+
class ApplicationComponent extends ApplicationComponentBase {
|
|
111
185
|
// --------------------------------------------------------------------------
|
|
112
186
|
//
|
|
113
187
|
// Properties
|
|
@@ -165,7 +239,7 @@ class ApplicationComponent extends ApplicationBaseComponent {
|
|
|
165
239
|
}
|
|
166
240
|
}
|
|
167
241
|
|
|
168
|
-
class
|
|
242
|
+
class MessageComponentBase extends DestroyableContainer {
|
|
169
243
|
route;
|
|
170
244
|
language;
|
|
171
245
|
// --------------------------------------------------------------------------
|
|
@@ -942,10 +1016,10 @@ class AssetBackgroundDirective extends Destroyable {
|
|
|
942
1016
|
get background() {
|
|
943
1017
|
return this._background;
|
|
944
1018
|
}
|
|
945
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
946
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
947
1021
|
}
|
|
948
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1022
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundDirective, decorators: [{
|
|
949
1023
|
type: Directive,
|
|
950
1024
|
args: [{
|
|
951
1025
|
selector: '[vi-asset-background]',
|
|
@@ -978,10 +1052,10 @@ class AssetBackgroundPipe {
|
|
|
978
1052
|
transform(name, extension = 'png') {
|
|
979
1053
|
return Assets.getBackground(name, extension);
|
|
980
1054
|
}
|
|
981
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
982
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
983
1057
|
}
|
|
984
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetBackgroundPipe, decorators: [{
|
|
985
1059
|
type: Pipe,
|
|
986
1060
|
args: [{
|
|
987
1061
|
name: 'viAssetBackground',
|
|
@@ -998,10 +1072,10 @@ class AssetIconPipe {
|
|
|
998
1072
|
transform(name, extension = 'png') {
|
|
999
1073
|
return Assets.getIcon(name, extension);
|
|
1000
1074
|
}
|
|
1001
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1002
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
1003
1077
|
}
|
|
1004
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1078
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetIconPipe, decorators: [{
|
|
1005
1079
|
type: Pipe,
|
|
1006
1080
|
args: [{
|
|
1007
1081
|
name: 'viAssetIcon',
|
|
@@ -1018,10 +1092,10 @@ class AssetFilePipe {
|
|
|
1018
1092
|
transform(name, extension) {
|
|
1019
1093
|
return Assets.getFile(name, extension);
|
|
1020
1094
|
}
|
|
1021
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1022
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
1023
1097
|
}
|
|
1024
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetFilePipe, decorators: [{
|
|
1025
1099
|
type: Pipe,
|
|
1026
1100
|
args: [{
|
|
1027
1101
|
name: 'viAssetFile',
|
|
@@ -1038,10 +1112,10 @@ class AssetVideoPipe {
|
|
|
1038
1112
|
transform(name, extension = 'mp4') {
|
|
1039
1113
|
return Assets.getVideo(name, extension);
|
|
1040
1114
|
}
|
|
1041
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1042
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
1043
1117
|
}
|
|
1044
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetVideoPipe, decorators: [{
|
|
1045
1119
|
type: Pipe,
|
|
1046
1120
|
args: [{
|
|
1047
1121
|
name: 'viAssetVideo',
|
|
@@ -1058,10 +1132,10 @@ class AssetSoundPipe {
|
|
|
1058
1132
|
transform(name, extension = 'mp3') {
|
|
1059
1133
|
return Assets.getSound(name, extension);
|
|
1060
1134
|
}
|
|
1061
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1062
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
1063
1137
|
}
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetSoundPipe, decorators: [{
|
|
1065
1139
|
type: Pipe,
|
|
1066
1140
|
args: [{
|
|
1067
1141
|
name: 'viAssetSound',
|
|
@@ -1078,10 +1152,10 @@ class AssetImagePipe {
|
|
|
1078
1152
|
transform(name, extension = 'png') {
|
|
1079
1153
|
return Assets.getImage(name, extension);
|
|
1080
1154
|
}
|
|
1081
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1082
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
1083
1157
|
}
|
|
1084
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1158
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetImagePipe, decorators: [{
|
|
1085
1159
|
type: Pipe,
|
|
1086
1160
|
args: [{
|
|
1087
1161
|
name: 'viAssetImage',
|
|
@@ -1091,11 +1165,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.6", ngImpor
|
|
|
1091
1165
|
|
|
1092
1166
|
let declarations$3 = [AssetImagePipe, AssetIconPipe, AssetFilePipe, AssetSoundPipe, AssetVideoPipe, AssetBackgroundPipe, AssetBackgroundDirective];
|
|
1093
1167
|
class AssetModule {
|
|
1094
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1095
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.
|
|
1096
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.
|
|
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] });
|
|
1097
1171
|
}
|
|
1098
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AssetModule, decorators: [{
|
|
1099
1173
|
type: NgModule,
|
|
1100
1174
|
args: [{
|
|
1101
1175
|
imports: [CommonModule],
|
|
@@ -1200,10 +1274,10 @@ class PlatformService extends Destroyable {
|
|
|
1200
1274
|
get isPlatformBrowser() {
|
|
1201
1275
|
return this._isPlatformBrowser;
|
|
1202
1276
|
}
|
|
1203
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1204
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
1205
1279
|
}
|
|
1206
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PlatformService, decorators: [{
|
|
1207
1281
|
type: Injectable,
|
|
1208
1282
|
args: [{ providedIn: 'root' }]
|
|
1209
1283
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -1233,11 +1307,11 @@ class CookieModule {
|
|
|
1233
1307
|
]
|
|
1234
1308
|
};
|
|
1235
1309
|
}
|
|
1236
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1237
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.
|
|
1238
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.
|
|
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 });
|
|
1239
1313
|
}
|
|
1240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CookieModule, decorators: [{
|
|
1241
1315
|
type: NgModule
|
|
1242
1316
|
}] });
|
|
1243
1317
|
function cookieServiceFactory(nativeWindow, options, platform) {
|
|
@@ -1455,10 +1529,10 @@ class AspectRatioResizeDirective extends Destroyable {
|
|
|
1455
1529
|
get ratio() {
|
|
1456
1530
|
return this._ratio;
|
|
1457
1531
|
}
|
|
1458
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1459
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
1460
1534
|
}
|
|
1461
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AspectRatioResizeDirective, decorators: [{
|
|
1462
1536
|
type: Directive,
|
|
1463
1537
|
args: [{
|
|
1464
1538
|
selector: '[vi-aspect-ratio]',
|
|
@@ -1575,10 +1649,10 @@ class ScrollDirective extends Destroyable {
|
|
|
1575
1649
|
get scrollValue() {
|
|
1576
1650
|
return this._scrollValue;
|
|
1577
1651
|
}
|
|
1578
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1579
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
1580
1654
|
}
|
|
1581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1582
1656
|
type: Directive,
|
|
1583
1657
|
args: [{
|
|
1584
1658
|
selector: '[vi-scroll]',
|
|
@@ -1646,10 +1720,10 @@ class InfiniteScrollDirective extends ScrollDirective {
|
|
|
1646
1720
|
get scrollHeight() {
|
|
1647
1721
|
return this.element.scrollHeight;
|
|
1648
1722
|
}
|
|
1649
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1650
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
1651
1725
|
}
|
|
1652
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: InfiniteScrollDirective, decorators: [{
|
|
1653
1727
|
type: Directive,
|
|
1654
1728
|
args: [{
|
|
1655
1729
|
selector: '[vi-infinite-scroll]',
|
|
@@ -1765,10 +1839,10 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
|
|
|
1765
1839
|
this.isScrollLocked = true;
|
|
1766
1840
|
this.scrollCheck();
|
|
1767
1841
|
}
|
|
1768
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1769
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
1770
1844
|
}
|
|
1771
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
|
|
1772
1846
|
type: Directive,
|
|
1773
1847
|
args: [{
|
|
1774
1848
|
selector: '[vi-auto-scroll-bottom]',
|
|
@@ -1815,10 +1889,10 @@ class ClickToCopyDirective extends Destroyable {
|
|
|
1815
1889
|
this.element = null;
|
|
1816
1890
|
clearTimeout(this.selectionClearTimer);
|
|
1817
1891
|
}
|
|
1818
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1819
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
1820
1894
|
}
|
|
1821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToCopyDirective, decorators: [{
|
|
1822
1896
|
type: Directive,
|
|
1823
1897
|
args: [{
|
|
1824
1898
|
selector: '[vi-click-to-copy]',
|
|
@@ -1870,10 +1944,10 @@ class ClickToSelectDirective extends Destroyable {
|
|
|
1870
1944
|
super.destroy();
|
|
1871
1945
|
this.element = null;
|
|
1872
1946
|
}
|
|
1873
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1874
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
1875
1949
|
}
|
|
1876
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
1950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ClickToSelectDirective, decorators: [{
|
|
1877
1951
|
type: Directive,
|
|
1878
1952
|
args: [{
|
|
1879
1953
|
selector: '[vi-click-to-select]',
|
|
@@ -1978,10 +2052,10 @@ class FocusDirective extends Destroyable {
|
|
|
1978
2052
|
set trigger(value) {
|
|
1979
2053
|
this.focus();
|
|
1980
2054
|
}
|
|
1981
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
1982
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
1983
2057
|
}
|
|
1984
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FocusDirective, decorators: [{
|
|
1985
2059
|
type: Directive,
|
|
1986
2060
|
args: [{
|
|
1987
2061
|
selector: '[vi-focus]',
|
|
@@ -2023,10 +2097,10 @@ class SelectOnFocusDirective extends Destroyable {
|
|
|
2023
2097
|
super.destroy();
|
|
2024
2098
|
this.element = null;
|
|
2025
2099
|
}
|
|
2026
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2027
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2028
2102
|
}
|
|
2029
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SelectOnFocusDirective, decorators: [{
|
|
2030
2104
|
type: Directive,
|
|
2031
2105
|
args: [{
|
|
2032
2106
|
selector: '[vi-select-on-focus]',
|
|
@@ -2091,10 +2165,10 @@ class ResizeDirective extends Destroyable {
|
|
|
2091
2165
|
this.interactable = null;
|
|
2092
2166
|
}
|
|
2093
2167
|
}
|
|
2094
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2095
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
2096
2170
|
}
|
|
2097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ResizeDirective, decorators: [{
|
|
2098
2172
|
type: Directive,
|
|
2099
2173
|
args: [{
|
|
2100
2174
|
selector: '[vi-resize]',
|
|
@@ -2270,10 +2344,10 @@ class ScrollCheckDirective extends Destroyable {
|
|
|
2270
2344
|
get scrollLimit() {
|
|
2271
2345
|
return this._scrollLimit;
|
|
2272
2346
|
}
|
|
2273
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2274
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
2275
2349
|
}
|
|
2276
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ScrollCheckDirective, decorators: [{
|
|
2277
2351
|
type: Directive,
|
|
2278
2352
|
args: [{
|
|
2279
2353
|
selector: '[vi-scroll-check]',
|
|
@@ -2367,10 +2441,10 @@ class LanguagePipe extends Destroyable {
|
|
|
2367
2441
|
this.lastParams = null;
|
|
2368
2442
|
this.lastValue = null;
|
|
2369
2443
|
}
|
|
2370
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2371
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2372
2446
|
}
|
|
2373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipe, decorators: [{
|
|
2374
2448
|
type: Pipe,
|
|
2375
2449
|
args: [{
|
|
2376
2450
|
name: 'viTranslate',
|
|
@@ -2433,10 +2507,10 @@ class HTMLTitleDirective extends Destroyable {
|
|
|
2433
2507
|
get value() {
|
|
2434
2508
|
return this._value;
|
|
2435
2509
|
}
|
|
2436
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2437
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2438
2512
|
}
|
|
2439
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2513
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLTitleDirective, decorators: [{
|
|
2440
2514
|
type: Directive,
|
|
2441
2515
|
args: [{
|
|
2442
2516
|
selector: '[vi-html-title]',
|
|
@@ -2502,10 +2576,10 @@ class HTMLContentTitleDirective extends Destroyable {
|
|
|
2502
2576
|
get value() {
|
|
2503
2577
|
return this._value;
|
|
2504
2578
|
}
|
|
2505
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2506
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2507
2581
|
}
|
|
2508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: HTMLContentTitleDirective, decorators: [{
|
|
2509
2583
|
type: Directive,
|
|
2510
2584
|
args: [{
|
|
2511
2585
|
selector: '[vi-html-content-title]',
|
|
@@ -2526,10 +2600,10 @@ class IsBrowserDirective extends StructureDirective {
|
|
|
2526
2600
|
super(templateRef, container);
|
|
2527
2601
|
this.isNeedAdd = platform.isPlatformBrowser;
|
|
2528
2602
|
}
|
|
2529
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2530
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2531
2605
|
}
|
|
2532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsBrowserDirective, decorators: [{
|
|
2533
2607
|
type: Directive,
|
|
2534
2608
|
args: [{
|
|
2535
2609
|
selector: '[viIsBrowser]',
|
|
@@ -2547,10 +2621,10 @@ class IsServerDirective extends StructureDirective {
|
|
|
2547
2621
|
super(templateRef, container);
|
|
2548
2622
|
this.isNeedAdd = platform.isPlatformServer;
|
|
2549
2623
|
}
|
|
2550
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2551
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2552
2626
|
}
|
|
2553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IsServerDirective, decorators: [{
|
|
2554
2628
|
type: Directive,
|
|
2555
2629
|
args: [{
|
|
2556
2630
|
selector: '[viIsServer]',
|
|
@@ -2558,6 +2632,73 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.6", ngImpor
|
|
|
2558
2632
|
}]
|
|
2559
2633
|
}], ctorParameters: () => [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: PlatformService }] });
|
|
2560
2634
|
|
|
2635
|
+
class NullEmptyValueDirective {
|
|
2636
|
+
control;
|
|
2637
|
+
//--------------------------------------------------------------------------
|
|
2638
|
+
//
|
|
2639
|
+
// Constructor
|
|
2640
|
+
//
|
|
2641
|
+
//--------------------------------------------------------------------------
|
|
2642
|
+
constructor(control) {
|
|
2643
|
+
this.control = control;
|
|
2644
|
+
}
|
|
2645
|
+
//--------------------------------------------------------------------------
|
|
2646
|
+
//
|
|
2647
|
+
// Event Listener
|
|
2648
|
+
//
|
|
2649
|
+
//--------------------------------------------------------------------------
|
|
2650
|
+
onEvent(target) {
|
|
2651
|
+
this.control.viewToModelUpdate(_.isEmpty(target.value) ? null : target.value);
|
|
2652
|
+
}
|
|
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 });
|
|
2655
|
+
}
|
|
2656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NullEmptyValueDirective, decorators: [{
|
|
2657
|
+
type: Directive,
|
|
2658
|
+
args: [{
|
|
2659
|
+
selector: 'input[nullEmptyValue]',
|
|
2660
|
+
standalone: false
|
|
2661
|
+
}]
|
|
2662
|
+
}], ctorParameters: () => [{ type: i1$1.NgControl }], propDecorators: { onEvent: [{
|
|
2663
|
+
type: HostListener,
|
|
2664
|
+
args: ['input', ['$event.target']]
|
|
2665
|
+
}] } });
|
|
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
|
+
|
|
2561
2702
|
class LanguagePipePure extends Destroyable {
|
|
2562
2703
|
language;
|
|
2563
2704
|
// --------------------------------------------------------------------------
|
|
@@ -2584,10 +2725,10 @@ class LanguagePipePure extends Destroyable {
|
|
|
2584
2725
|
super.destroy();
|
|
2585
2726
|
this.language = null;
|
|
2586
2727
|
}
|
|
2587
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2588
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
2589
2730
|
}
|
|
2590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipePure, decorators: [{
|
|
2591
2732
|
type: Pipe,
|
|
2592
2733
|
args: [{
|
|
2593
2734
|
name: 'viTranslatePure',
|
|
@@ -2607,20 +2748,31 @@ class LoadableResolver {
|
|
|
2607
2748
|
}
|
|
2608
2749
|
// --------------------------------------------------------------------------
|
|
2609
2750
|
//
|
|
2751
|
+
// Protected Methods
|
|
2752
|
+
//
|
|
2753
|
+
// --------------------------------------------------------------------------
|
|
2754
|
+
resolveHandler() { }
|
|
2755
|
+
rejectHandler() { }
|
|
2756
|
+
// --------------------------------------------------------------------------
|
|
2757
|
+
//
|
|
2610
2758
|
// Public Methods
|
|
2611
2759
|
//
|
|
2612
2760
|
// --------------------------------------------------------------------------
|
|
2613
2761
|
resolve(route, state) {
|
|
2614
2762
|
if (this.service.isLoaded) {
|
|
2763
|
+
this.resolveHandler();
|
|
2615
2764
|
return Promise.resolve();
|
|
2616
2765
|
}
|
|
2617
2766
|
let promise = PromiseHandler.create();
|
|
2618
2767
|
let subscription = this.service.events.subscribe(data => {
|
|
2619
2768
|
if (data.type === LoadableEvent.COMPLETE) {
|
|
2769
|
+
this.resolveHandler();
|
|
2620
2770
|
promise.resolve();
|
|
2621
2771
|
}
|
|
2622
2772
|
else if (data.type === LoadableEvent.ERROR) {
|
|
2623
|
-
|
|
2773
|
+
this.rejectHandler();
|
|
2774
|
+
let error = data.error?.toString();
|
|
2775
|
+
promise.reject(error);
|
|
2624
2776
|
}
|
|
2625
2777
|
else if (data.type === LoadableEvent.FINISHED) {
|
|
2626
2778
|
subscription.unsubscribe();
|
|
@@ -2642,10 +2794,10 @@ class LanguageResolver extends LanguageRequireResolver {
|
|
|
2642
2794
|
constructor(service) {
|
|
2643
2795
|
super(service);
|
|
2644
2796
|
}
|
|
2645
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2646
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
2647
2799
|
}
|
|
2648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageResolver, decorators: [{
|
|
2649
2801
|
type: Injectable,
|
|
2650
2802
|
args: [{ providedIn: 'root' }]
|
|
2651
2803
|
}], ctorParameters: () => [{ type: i1.LanguageService }] });
|
|
@@ -2728,10 +2880,10 @@ class LanguageDirective extends Destroyable {
|
|
|
2728
2880
|
get params() {
|
|
2729
2881
|
return this._params;
|
|
2730
2882
|
}
|
|
2731
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2732
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
2733
2885
|
}
|
|
2734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageDirective, decorators: [{
|
|
2735
2887
|
type: Directive,
|
|
2736
2888
|
args: [{
|
|
2737
2889
|
selector: '[vi-translate]',
|
|
@@ -2781,10 +2933,10 @@ class LanguageToggleDirective extends Destroyable {
|
|
|
2781
2933
|
super.destroy();
|
|
2782
2934
|
this.language = null;
|
|
2783
2935
|
}
|
|
2784
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2785
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2786
2938
|
}
|
|
2787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
2939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageToggleDirective, decorators: [{
|
|
2788
2940
|
type: Directive,
|
|
2789
2941
|
args: [{
|
|
2790
2942
|
selector: '[vi-language-toggle]',
|
|
@@ -2842,10 +2994,10 @@ class LanguagePipeHas extends Destroyable {
|
|
|
2842
2994
|
this.language = null;
|
|
2843
2995
|
this.key = null;
|
|
2844
2996
|
}
|
|
2845
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2846
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2847
2999
|
}
|
|
2848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHas, decorators: [{
|
|
2849
3001
|
type: Pipe,
|
|
2850
3002
|
args: [{
|
|
2851
3003
|
name: 'viTranslateHas',
|
|
@@ -2880,10 +3032,10 @@ class LanguagePipeHasPure extends Destroyable {
|
|
|
2880
3032
|
super.destroy();
|
|
2881
3033
|
this.language = null;
|
|
2882
3034
|
}
|
|
2883
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2884
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
2885
3037
|
}
|
|
2886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguagePipeHasPure, decorators: [{
|
|
2887
3039
|
type: Pipe,
|
|
2888
3040
|
args: [{
|
|
2889
3041
|
name: 'viTranslateHasPure',
|
|
@@ -2957,10 +3109,10 @@ class LanguageHasDirective extends StructureDirective {
|
|
|
2957
3109
|
get viTranslateHasIsOnlyIfNotEmpty() {
|
|
2958
3110
|
return this._isOnlyIfNotEmpty;
|
|
2959
3111
|
}
|
|
2960
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
2961
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
2962
3114
|
}
|
|
2963
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageHasDirective, decorators: [{
|
|
2964
3116
|
type: Directive,
|
|
2965
3117
|
args: [{
|
|
2966
3118
|
selector: '[viTranslateHas]',
|
|
@@ -3002,11 +3154,11 @@ class LanguageModule {
|
|
|
3002
3154
|
]
|
|
3003
3155
|
};
|
|
3004
3156
|
}
|
|
3005
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3006
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.
|
|
3007
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.
|
|
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] });
|
|
3008
3160
|
}
|
|
3009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LanguageModule, decorators: [{
|
|
3010
3162
|
type: NgModule,
|
|
3011
3163
|
args: [{
|
|
3012
3164
|
imports: [CookieModule],
|
|
@@ -3309,16 +3461,16 @@ class LoginGuard extends LoginRequireResolver {
|
|
|
3309
3461
|
canActivate(route, state) {
|
|
3310
3462
|
return this.isLoggedIn() ? true : this.router.parseUrl(LoginGuard.redirectUrl);
|
|
3311
3463
|
}
|
|
3312
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3313
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
3314
3466
|
}
|
|
3315
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginGuard, decorators: [{
|
|
3316
3468
|
type: Injectable,
|
|
3317
3469
|
args: [{ providedIn: 'root' }]
|
|
3318
3470
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
3319
3471
|
type: Inject,
|
|
3320
3472
|
args: [LoginServiceBase]
|
|
3321
|
-
}] }, { type: i1$
|
|
3473
|
+
}] }, { type: i1$2.Router }] });
|
|
3322
3474
|
|
|
3323
3475
|
class LoginNotGuard extends LoginRequireResolver {
|
|
3324
3476
|
router;
|
|
@@ -3345,16 +3497,16 @@ class LoginNotGuard extends LoginRequireResolver {
|
|
|
3345
3497
|
canActivate(route, state) {
|
|
3346
3498
|
return !this.isLoggedIn() ? true : this.router.parseUrl(LoginNotGuard.redirectUrl);
|
|
3347
3499
|
}
|
|
3348
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3349
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
3350
3502
|
}
|
|
3351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginNotGuard, decorators: [{
|
|
3352
3504
|
type: Injectable,
|
|
3353
3505
|
args: [{ providedIn: 'root' }]
|
|
3354
3506
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
3355
3507
|
type: Inject,
|
|
3356
3508
|
args: [LoginServiceBase]
|
|
3357
|
-
}] }, { type: i1$
|
|
3509
|
+
}] }, { type: i1$2.Router }] });
|
|
3358
3510
|
|
|
3359
3511
|
class LoginResolver extends LoginRequireResolver {
|
|
3360
3512
|
// --------------------------------------------------------------------------
|
|
@@ -3365,10 +3517,10 @@ class LoginResolver extends LoginRequireResolver {
|
|
|
3365
3517
|
constructor(login) {
|
|
3366
3518
|
super(login);
|
|
3367
3519
|
}
|
|
3368
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3369
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
3370
3522
|
}
|
|
3371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginResolver, decorators: [{
|
|
3372
3524
|
type: Injectable,
|
|
3373
3525
|
args: [{ providedIn: 'root' }]
|
|
3374
3526
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -3414,16 +3566,16 @@ class LoginIfCanGuard extends LoginGuard {
|
|
|
3414
3566
|
}
|
|
3415
3567
|
return super.canActivate(route, state);
|
|
3416
3568
|
}
|
|
3417
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
3418
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
3419
3571
|
}
|
|
3420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
3572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LoginIfCanGuard, decorators: [{
|
|
3421
3573
|
type: Injectable,
|
|
3422
3574
|
args: [{ providedIn: 'root' }]
|
|
3423
3575
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
3424
3576
|
type: Inject,
|
|
3425
3577
|
args: [LoginServiceBase]
|
|
3426
|
-
}] }, { type: i1$
|
|
3578
|
+
}] }, { type: i1$2.Router }] });
|
|
3427
3579
|
|
|
3428
3580
|
class ValueStorage extends Destroyable {
|
|
3429
3581
|
storage;
|
|
@@ -4255,10 +4407,10 @@ class PrettifyPipe {
|
|
|
4255
4407
|
//
|
|
4256
4408
|
// --------------------------------------------------------------------------
|
|
4257
4409
|
constructor() { }
|
|
4258
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4259
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4260
4412
|
}
|
|
4261
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4413
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: PrettifyPipe, decorators: [{
|
|
4262
4414
|
type: Pipe,
|
|
4263
4415
|
args: [{
|
|
4264
4416
|
name: 'viPrettify',
|
|
@@ -4275,10 +4427,10 @@ class CamelCasePipe {
|
|
|
4275
4427
|
transform(value) {
|
|
4276
4428
|
return !_.isNil(value) ? _.camelCase(value) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4277
4429
|
}
|
|
4278
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4279
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4280
4432
|
}
|
|
4281
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: CamelCasePipe, decorators: [{
|
|
4282
4434
|
type: Pipe,
|
|
4283
4435
|
args: [{
|
|
4284
4436
|
name: 'viCamelCase',
|
|
@@ -4325,10 +4477,10 @@ class FinancePipe {
|
|
|
4325
4477
|
}
|
|
4326
4478
|
return FinancePipe.format(value, format);
|
|
4327
4479
|
}
|
|
4328
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4329
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4330
4482
|
}
|
|
4331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4483
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: FinancePipe, decorators: [{
|
|
4332
4484
|
type: Pipe,
|
|
4333
4485
|
args: [{
|
|
4334
4486
|
name: 'viFinance',
|
|
@@ -4392,10 +4544,10 @@ class MomentDatePipe {
|
|
|
4392
4544
|
let moment = MomentDatePipe.parseMoment(value);
|
|
4393
4545
|
return moment.format(format || MomentDatePipe.DEFAULT_FORMAT);
|
|
4394
4546
|
}
|
|
4395
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4396
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4397
4549
|
}
|
|
4398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDatePipe, decorators: [{
|
|
4399
4551
|
type: Pipe,
|
|
4400
4552
|
args: [{
|
|
4401
4553
|
name: 'viMomentDate',
|
|
@@ -4439,10 +4591,10 @@ class MomentDateAdaptivePipe {
|
|
|
4439
4591
|
}
|
|
4440
4592
|
return item.format(format);
|
|
4441
4593
|
}
|
|
4442
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4443
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4444
4596
|
}
|
|
4445
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateAdaptivePipe, decorators: [{
|
|
4446
4598
|
type: Pipe,
|
|
4447
4599
|
args: [{
|
|
4448
4600
|
name: 'viMomentAdaptiveDate',
|
|
@@ -4459,10 +4611,10 @@ class MomentDateFromNowPipe {
|
|
|
4459
4611
|
transform(value, format) {
|
|
4460
4612
|
return MomentDatePipe.fromNow(value, format);
|
|
4461
4613
|
}
|
|
4462
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4463
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4464
4616
|
}
|
|
4465
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentDateFromNowPipe, decorators: [{
|
|
4466
4618
|
type: Pipe,
|
|
4467
4619
|
args: [{
|
|
4468
4620
|
name: 'viMomentDateFromNow',
|
|
@@ -4491,10 +4643,10 @@ class MomentTimePipe {
|
|
|
4491
4643
|
.add(timeMilliseconds, 'milliseconds')
|
|
4492
4644
|
.format(format || MomentTimePipe.DEFAULT_FORMAT);
|
|
4493
4645
|
}
|
|
4494
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4495
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4496
4648
|
}
|
|
4497
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MomentTimePipe, decorators: [{
|
|
4498
4650
|
type: Pipe,
|
|
4499
4651
|
args: [{
|
|
4500
4652
|
name: 'viMomentTime',
|
|
@@ -4531,10 +4683,10 @@ class NgModelErrorPipe {
|
|
|
4531
4683
|
constructor(language) {
|
|
4532
4684
|
this.language = language;
|
|
4533
4685
|
}
|
|
4534
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4535
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4536
4688
|
}
|
|
4537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: NgModelErrorPipe, decorators: [{
|
|
4538
4690
|
type: Pipe,
|
|
4539
4691
|
args: [{
|
|
4540
4692
|
name: 'viNgModelError',
|
|
@@ -4576,16 +4728,16 @@ class SanitizePipe {
|
|
|
4576
4728
|
throw new Error('Invalid safe type specified: ' + type);
|
|
4577
4729
|
}
|
|
4578
4730
|
}
|
|
4579
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4580
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4581
4733
|
}
|
|
4582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4734
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: SanitizePipe, decorators: [{
|
|
4583
4735
|
type: Pipe,
|
|
4584
4736
|
args: [{
|
|
4585
4737
|
name: 'viSanitize',
|
|
4586
4738
|
standalone: false
|
|
4587
4739
|
}]
|
|
4588
|
-
}], ctorParameters: () => [{ type: i1$
|
|
4740
|
+
}], ctorParameters: () => [{ type: i1$3.DomSanitizer }] });
|
|
4589
4741
|
|
|
4590
4742
|
class StartCasePipe {
|
|
4591
4743
|
// --------------------------------------------------------------------------
|
|
@@ -4596,10 +4748,10 @@ class StartCasePipe {
|
|
|
4596
4748
|
transform(value) {
|
|
4597
4749
|
return !_.isEmpty(value) ? value.charAt(0).toUpperCase() + value.slice(1) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4598
4750
|
}
|
|
4599
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4600
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4601
4753
|
}
|
|
4602
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: StartCasePipe, decorators: [{
|
|
4603
4755
|
type: Pipe,
|
|
4604
4756
|
args: [{
|
|
4605
4757
|
name: 'viStartCase',
|
|
@@ -4616,10 +4768,10 @@ class TruncatePipe {
|
|
|
4616
4768
|
transform(value, maxLength) {
|
|
4617
4769
|
return !_.isEmpty(value) ? _.truncate(value, { length: maxLength }) : PrettifyPipe.EMPTY_SYMBOL;
|
|
4618
4770
|
}
|
|
4619
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4620
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4621
4773
|
}
|
|
4622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4774
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TruncatePipe, decorators: [{
|
|
4623
4775
|
type: Pipe,
|
|
4624
4776
|
args: [{
|
|
4625
4777
|
name: 'viTruncate',
|
|
@@ -4649,10 +4801,10 @@ class TimePipe {
|
|
|
4649
4801
|
}
|
|
4650
4802
|
return FinancePipe.format(milliseconds / DateUtil.MILLISECONDS_SECOND, format);
|
|
4651
4803
|
}
|
|
4652
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
4653
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
|
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" });
|
|
4654
4806
|
}
|
|
4655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
4807
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: TimePipe, decorators: [{
|
|
4656
4808
|
type: Pipe,
|
|
4657
4809
|
args: [{
|
|
4658
4810
|
name: 'viTime',
|
|
@@ -4777,7 +4929,7 @@ class QuestionManager extends Destroyable {
|
|
|
4777
4929
|
}
|
|
4778
4930
|
}
|
|
4779
4931
|
|
|
4780
|
-
class
|
|
4932
|
+
class PipeServiceBase extends Destroyable {
|
|
4781
4933
|
language;
|
|
4782
4934
|
sanitizer;
|
|
4783
4935
|
// --------------------------------------------------------------------------
|
|
@@ -4824,8 +4976,8 @@ class PipeBaseService extends Destroyable {
|
|
|
4824
4976
|
commitLanguageProperties() {
|
|
4825
4977
|
let locale = this.language.locale ? this.language.language.locale : 'en';
|
|
4826
4978
|
this._locale = locale === 'en' ? 'en-US' : locale;
|
|
4827
|
-
if (
|
|
4828
|
-
|
|
4979
|
+
if (PipeServiceBase.DATE) {
|
|
4980
|
+
PipeServiceBase.DATE = new DatePipe(this.locale);
|
|
4829
4981
|
}
|
|
4830
4982
|
}
|
|
4831
4983
|
// --------------------------------------------------------------------------
|
|
@@ -4834,77 +4986,77 @@ class PipeBaseService extends Destroyable {
|
|
|
4834
4986
|
//
|
|
4835
4987
|
// --------------------------------------------------------------------------
|
|
4836
4988
|
get date() {
|
|
4837
|
-
if (!
|
|
4838
|
-
|
|
4989
|
+
if (!PipeServiceBase.DATE) {
|
|
4990
|
+
PipeServiceBase.DATE = new DatePipe(this.locale);
|
|
4839
4991
|
}
|
|
4840
|
-
return
|
|
4992
|
+
return PipeServiceBase.DATE;
|
|
4841
4993
|
}
|
|
4842
4994
|
get time() {
|
|
4843
|
-
if (!
|
|
4844
|
-
|
|
4995
|
+
if (!PipeServiceBase.TIME) {
|
|
4996
|
+
PipeServiceBase.TIME = new TimePipe();
|
|
4845
4997
|
}
|
|
4846
|
-
return
|
|
4998
|
+
return PipeServiceBase.TIME;
|
|
4847
4999
|
}
|
|
4848
5000
|
get finance() {
|
|
4849
|
-
if (!
|
|
4850
|
-
|
|
5001
|
+
if (!PipeServiceBase.FINANCE) {
|
|
5002
|
+
PipeServiceBase.FINANCE = new FinancePipe();
|
|
4851
5003
|
}
|
|
4852
|
-
return
|
|
5004
|
+
return PipeServiceBase.FINANCE;
|
|
4853
5005
|
}
|
|
4854
5006
|
get truncate() {
|
|
4855
|
-
if (!
|
|
4856
|
-
|
|
5007
|
+
if (!PipeServiceBase.TRUNCATE) {
|
|
5008
|
+
PipeServiceBase.TRUNCATE = new TruncatePipe();
|
|
4857
5009
|
}
|
|
4858
|
-
return
|
|
5010
|
+
return PipeServiceBase.TRUNCATE;
|
|
4859
5011
|
}
|
|
4860
5012
|
get prettify() {
|
|
4861
|
-
if (!
|
|
4862
|
-
|
|
5013
|
+
if (!PipeServiceBase.PRETTIFY) {
|
|
5014
|
+
PipeServiceBase.PRETTIFY = new PrettifyPipe();
|
|
4863
5015
|
}
|
|
4864
|
-
return
|
|
5016
|
+
return PipeServiceBase.PRETTIFY;
|
|
4865
5017
|
}
|
|
4866
5018
|
get momentDate() {
|
|
4867
|
-
if (!
|
|
4868
|
-
|
|
5019
|
+
if (!PipeServiceBase.MOMENT_DATE) {
|
|
5020
|
+
PipeServiceBase.MOMENT_DATE = new MomentDatePipe();
|
|
4869
5021
|
}
|
|
4870
|
-
return
|
|
5022
|
+
return PipeServiceBase.MOMENT_DATE;
|
|
4871
5023
|
}
|
|
4872
5024
|
get momentDateFromNow() {
|
|
4873
|
-
if (!
|
|
4874
|
-
|
|
5025
|
+
if (!PipeServiceBase.MOMENT_DATE_FROM_NOW) {
|
|
5026
|
+
PipeServiceBase.MOMENT_DATE_FROM_NOW = new MomentDateFromNowPipe();
|
|
4875
5027
|
}
|
|
4876
|
-
return
|
|
5028
|
+
return PipeServiceBase.MOMENT_DATE_FROM_NOW;
|
|
4877
5029
|
}
|
|
4878
5030
|
get momentDateAdaptive() {
|
|
4879
|
-
if (!
|
|
4880
|
-
|
|
5031
|
+
if (!PipeServiceBase.MOMENT_ADAPTIVE_DATE) {
|
|
5032
|
+
PipeServiceBase.MOMENT_ADAPTIVE_DATE = new MomentDateAdaptivePipe();
|
|
4881
5033
|
}
|
|
4882
|
-
return
|
|
5034
|
+
return PipeServiceBase.MOMENT_ADAPTIVE_DATE;
|
|
4883
5035
|
}
|
|
4884
5036
|
get momentTime() {
|
|
4885
|
-
if (!
|
|
4886
|
-
|
|
5037
|
+
if (!PipeServiceBase.MOMENT_TIME) {
|
|
5038
|
+
PipeServiceBase.MOMENT_TIME = new MomentTimePipe();
|
|
4887
5039
|
}
|
|
4888
|
-
return
|
|
5040
|
+
return PipeServiceBase.MOMENT_TIME;
|
|
4889
5041
|
}
|
|
4890
5042
|
get sanitize() {
|
|
4891
|
-
if (!
|
|
4892
|
-
|
|
5043
|
+
if (!PipeServiceBase.SANITIZE) {
|
|
5044
|
+
PipeServiceBase.SANITIZE = new SanitizePipe(this.sanitizer);
|
|
4893
5045
|
}
|
|
4894
|
-
return
|
|
5046
|
+
return PipeServiceBase.SANITIZE;
|
|
4895
5047
|
}
|
|
4896
5048
|
get camelCase() {
|
|
4897
|
-
if (!
|
|
4898
|
-
|
|
5049
|
+
if (!PipeServiceBase.CAMEL_CASE) {
|
|
5050
|
+
PipeServiceBase.CAMEL_CASE = new CamelCasePipe();
|
|
4899
5051
|
}
|
|
4900
|
-
return
|
|
5052
|
+
return PipeServiceBase.CAMEL_CASE;
|
|
4901
5053
|
}
|
|
4902
5054
|
get locale() {
|
|
4903
5055
|
return this._locale;
|
|
4904
5056
|
}
|
|
4905
5057
|
}
|
|
4906
5058
|
|
|
4907
|
-
class
|
|
5059
|
+
class RouterServiceBase extends Loadable {
|
|
4908
5060
|
_router;
|
|
4909
5061
|
_route;
|
|
4910
5062
|
window;
|
|
@@ -5232,13 +5384,13 @@ class ServiceWorkerService extends Loadable {
|
|
|
5232
5384
|
get isEnabled() {
|
|
5233
5385
|
return this.updates.isEnabled;
|
|
5234
5386
|
}
|
|
5235
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5236
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
5237
5389
|
}
|
|
5238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ServiceWorkerService, decorators: [{
|
|
5239
5391
|
type: Injectable,
|
|
5240
5392
|
args: [{ providedIn: 'root' }]
|
|
5241
|
-
}], ctorParameters: () => [{ type: i1$
|
|
5393
|
+
}], ctorParameters: () => [{ type: i1$4.SwUpdate }, { type: i2.Logger }, { type: NotificationService }] });
|
|
5242
5394
|
|
|
5243
5395
|
class CanDeactivateGuard {
|
|
5244
5396
|
// --------------------------------------------------------------------------
|
|
@@ -5352,10 +5504,10 @@ class ThemeStyleDirective extends Destroyable {
|
|
|
5352
5504
|
this.stylePropertiesCheck();
|
|
5353
5505
|
}
|
|
5354
5506
|
}
|
|
5355
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5356
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
5357
5509
|
}
|
|
5358
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleDirective, decorators: [{
|
|
5359
5511
|
type: Directive,
|
|
5360
5512
|
args: [{
|
|
5361
5513
|
selector: '[vi-theme-style]',
|
|
@@ -5456,10 +5608,10 @@ class ThemeStyleHoverDirective extends ThemeStyleDirective {
|
|
|
5456
5608
|
set flags(value) {
|
|
5457
5609
|
super.flags = value;
|
|
5458
5610
|
}
|
|
5459
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5460
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
5461
5613
|
}
|
|
5462
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5614
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeStyleHoverDirective, decorators: [{
|
|
5463
5615
|
type: Directive,
|
|
5464
5616
|
args: [{
|
|
5465
5617
|
selector: '[vi-theme-style-hover]',
|
|
@@ -5688,10 +5840,10 @@ class ThemeAssetDirective extends Destroyable {
|
|
|
5688
5840
|
this._extension = value;
|
|
5689
5841
|
this.setSourceProperties();
|
|
5690
5842
|
}
|
|
5691
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5692
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
5693
5845
|
}
|
|
5694
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetDirective, decorators: [{
|
|
5695
5847
|
type: Directive
|
|
5696
5848
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.ThemeService }, { type: i1.ThemeAssetService }], propDecorators: { errorLoadingHandler: [{
|
|
5697
5849
|
type: HostListener,
|
|
@@ -5753,10 +5905,10 @@ class ThemeAssetBackgroundDirective extends ThemeAssetDirective {
|
|
|
5753
5905
|
get name() {
|
|
5754
5906
|
return super.name;
|
|
5755
5907
|
}
|
|
5756
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5757
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
5758
5910
|
}
|
|
5759
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetBackgroundDirective, decorators: [{
|
|
5760
5912
|
type: Directive,
|
|
5761
5913
|
args: [{
|
|
5762
5914
|
selector: '[vi-theme-background]',
|
|
@@ -5799,10 +5951,10 @@ class ThemeAssetImageDirective extends ThemeAssetDirective {
|
|
|
5799
5951
|
get name() {
|
|
5800
5952
|
return super.name;
|
|
5801
5953
|
}
|
|
5802
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5803
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
5804
5956
|
}
|
|
5805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
5957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetImageDirective, decorators: [{
|
|
5806
5958
|
type: Directive,
|
|
5807
5959
|
args: [{
|
|
5808
5960
|
selector: '[vi-theme-image]',
|
|
@@ -5844,10 +5996,10 @@ class ThemeAssetIconDirective extends ThemeAssetDirective {
|
|
|
5844
5996
|
get name() {
|
|
5845
5997
|
return super.name;
|
|
5846
5998
|
}
|
|
5847
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5848
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
5849
6001
|
}
|
|
5850
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
6002
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeAssetIconDirective, decorators: [{
|
|
5851
6003
|
type: Directive,
|
|
5852
6004
|
args: [{
|
|
5853
6005
|
selector: '[vi-theme-icon]',
|
|
@@ -5892,10 +6044,10 @@ class ThemeToggleDirective extends Destroyable {
|
|
|
5892
6044
|
super.destroy();
|
|
5893
6045
|
this.theme = null;
|
|
5894
6046
|
}
|
|
5895
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5896
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
5897
6049
|
}
|
|
5898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
6050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeToggleDirective, decorators: [{
|
|
5899
6051
|
type: Directive,
|
|
5900
6052
|
args: [{
|
|
5901
6053
|
selector: '[vi-theme-toggle]',
|
|
@@ -5941,8 +6093,8 @@ class ThemeModule {
|
|
|
5941
6093
|
]
|
|
5942
6094
|
};
|
|
5943
6095
|
}
|
|
5944
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
5945
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.
|
|
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,
|
|
5946
6098
|
ThemeAssetImageDirective,
|
|
5947
6099
|
ThemeAssetIconDirective,
|
|
5948
6100
|
ThemeAssetBackgroundDirective,
|
|
@@ -5953,9 +6105,9 @@ class ThemeModule {
|
|
|
5953
6105
|
ThemeAssetBackgroundDirective,
|
|
5954
6106
|
ThemeStyleDirective,
|
|
5955
6107
|
ThemeStyleHoverDirective] });
|
|
5956
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.
|
|
6108
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, imports: [CookieModule] });
|
|
5957
6109
|
}
|
|
5958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
6110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: ThemeModule, decorators: [{
|
|
5959
6111
|
type: NgModule,
|
|
5960
6112
|
args: [{
|
|
5961
6113
|
imports: [CookieModule],
|
|
@@ -6003,10 +6155,12 @@ class UserServiceBase extends Loginable {
|
|
|
6003
6155
|
}
|
|
6004
6156
|
async loginedHandler() {
|
|
6005
6157
|
await this.initializeUser(this.login.loginData);
|
|
6158
|
+
this.status = LoadableStatus.LOADED;
|
|
6006
6159
|
this.observer.next(new ObservableData(UserServiceBaseEvent.LOGINED, this.user));
|
|
6007
6160
|
}
|
|
6008
6161
|
async logoutedHandler() {
|
|
6009
6162
|
await this.deinitializeUser();
|
|
6163
|
+
this.status = LoadableStatus.NOT_LOADED;
|
|
6010
6164
|
this.observer.next(new ObservableData(UserServiceBaseEvent.LOGOUTED));
|
|
6011
6165
|
}
|
|
6012
6166
|
// --------------------------------------------------------------------------
|
|
@@ -6014,7 +6168,7 @@ class UserServiceBase extends Loginable {
|
|
|
6014
6168
|
// Public Methods
|
|
6015
6169
|
//
|
|
6016
6170
|
// --------------------------------------------------------------------------
|
|
6017
|
-
|
|
6171
|
+
isEquals(item) {
|
|
6018
6172
|
if (!this.has || _.isNil(item)) {
|
|
6019
6173
|
return false;
|
|
6020
6174
|
}
|
|
@@ -6631,10 +6785,10 @@ class IWindowContent extends DestroyableContainer {
|
|
|
6631
6785
|
this.commitWindowProperties();
|
|
6632
6786
|
}
|
|
6633
6787
|
}
|
|
6634
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
6635
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.
|
|
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 });
|
|
6636
6790
|
}
|
|
6637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
6791
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: IWindowContent, decorators: [{
|
|
6638
6792
|
type: Component,
|
|
6639
6793
|
args: [{ template: '' }]
|
|
6640
6794
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -6810,10 +6964,10 @@ class INotificationContent extends DestroyableContainer {
|
|
|
6810
6964
|
get config() {
|
|
6811
6965
|
return this._config;
|
|
6812
6966
|
}
|
|
6813
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
6814
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.
|
|
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 });
|
|
6815
6969
|
}
|
|
6816
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
6970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: INotificationContent, decorators: [{
|
|
6817
6971
|
type: Component,
|
|
6818
6972
|
args: [{ template: '' }]
|
|
6819
6973
|
}], ctorParameters: () => [{ type: i0.ViewContainerRef }], propDecorators: { config: [{
|
|
@@ -7081,10 +7235,10 @@ class LazyModuleLoader extends Loadable {
|
|
|
7081
7235
|
get modules() {
|
|
7082
7236
|
return this._modules;
|
|
7083
7237
|
}
|
|
7084
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
7085
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
|
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' });
|
|
7086
7240
|
}
|
|
7087
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
7241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: LazyModuleLoader, decorators: [{
|
|
7088
7242
|
type: Injectable,
|
|
7089
7243
|
args: [{ providedIn: 'root' }]
|
|
7090
7244
|
}], ctorParameters: () => [{ type: i0.Compiler }, { type: i0.Injector }] });
|
|
@@ -7249,6 +7403,8 @@ let declarations = [
|
|
|
7249
7403
|
SelectOnFocusDirective,
|
|
7250
7404
|
ClickToSelectDirective,
|
|
7251
7405
|
InfiniteScrollDirective,
|
|
7406
|
+
NullEmptyValueDirective,
|
|
7407
|
+
UppercaseValueDirective,
|
|
7252
7408
|
HTMLTitleDirective,
|
|
7253
7409
|
HTMLContentTitleDirective,
|
|
7254
7410
|
AutoScrollBottomDirective,
|
|
@@ -7285,8 +7441,8 @@ class VIModule {
|
|
|
7285
7441
|
]
|
|
7286
7442
|
};
|
|
7287
7443
|
}
|
|
7288
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
|
7289
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.
|
|
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,
|
|
7290
7446
|
FinancePipe,
|
|
7291
7447
|
SanitizePipe,
|
|
7292
7448
|
TruncatePipe,
|
|
@@ -7308,6 +7464,8 @@ class VIModule {
|
|
|
7308
7464
|
SelectOnFocusDirective,
|
|
7309
7465
|
ClickToSelectDirective,
|
|
7310
7466
|
InfiniteScrollDirective,
|
|
7467
|
+
NullEmptyValueDirective,
|
|
7468
|
+
UppercaseValueDirective,
|
|
7311
7469
|
HTMLTitleDirective,
|
|
7312
7470
|
HTMLContentTitleDirective,
|
|
7313
7471
|
AutoScrollBottomDirective,
|
|
@@ -7333,13 +7491,15 @@ class VIModule {
|
|
|
7333
7491
|
SelectOnFocusDirective,
|
|
7334
7492
|
ClickToSelectDirective,
|
|
7335
7493
|
InfiniteScrollDirective,
|
|
7494
|
+
NullEmptyValueDirective,
|
|
7495
|
+
UppercaseValueDirective,
|
|
7336
7496
|
HTMLTitleDirective,
|
|
7337
7497
|
HTMLContentTitleDirective,
|
|
7338
7498
|
AutoScrollBottomDirective,
|
|
7339
7499
|
AspectRatioResizeDirective] });
|
|
7340
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.
|
|
7500
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, imports: [imports, CookieModule, ThemeModule, LanguageModule, AssetModule] });
|
|
7341
7501
|
}
|
|
7342
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
|
7502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: VIModule, decorators: [{
|
|
7343
7503
|
type: NgModule,
|
|
7344
7504
|
args: [{
|
|
7345
7505
|
imports,
|
|
@@ -7377,5 +7537,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
|
|
|
7377
7537
|
* Generated bundle index. Do not edit.
|
|
7378
7538
|
*/
|
|
7379
7539
|
|
|
7380
|
-
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 };
|
|
7381
7541
|
//# sourceMappingURL=ts-core-angular.mjs.map
|