@abp/ng.core 7.4.0-rc.5 → 7.4.1
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/esm2022/lib/abstracts/auth.guard.mjs +5 -6
- package/esm2022/lib/abstracts/auth.service.mjs +5 -6
- package/esm2022/lib/abstracts/ng-model.component.mjs +5 -6
- package/esm2022/lib/clients/http.client.mjs +5 -6
- package/esm2022/lib/components/dynamic-layout.component.mjs +5 -6
- package/esm2022/lib/components/replaceable-route-container.component.mjs +6 -7
- package/esm2022/lib/components/router-outlet.component.mjs +5 -6
- package/esm2022/lib/core.module.mjs +16 -19
- package/esm2022/lib/directives/autofocus.directive.mjs +5 -6
- package/esm2022/lib/directives/caps-lock.directive.mjs +6 -7
- package/esm2022/lib/directives/debounce.directive.mjs +5 -6
- package/esm2022/lib/directives/for.directive.mjs +5 -6
- package/esm2022/lib/directives/form-submit.directive.mjs +5 -6
- package/esm2022/lib/directives/init.directive.mjs +5 -6
- package/esm2022/lib/directives/permission.directive.mjs +5 -6
- package/esm2022/lib/directives/replaceable-template.directive.mjs +5 -6
- package/esm2022/lib/directives/show-password.directive.mjs +5 -6
- package/esm2022/lib/directives/stop-propagation.directive.mjs +5 -6
- package/esm2022/lib/guards/permission.guard.mjs +5 -6
- package/esm2022/lib/handlers/routes.handler.mjs +5 -6
- package/esm2022/lib/interceptors/api.interceptor.mjs +5 -6
- package/esm2022/lib/localization.module.mjs +6 -7
- package/esm2022/lib/models/dtos.mjs +3 -1
- package/esm2022/lib/pipes/localization.pipe.mjs +6 -7
- package/esm2022/lib/pipes/safe-html.pipe.mjs +6 -7
- package/esm2022/lib/pipes/short-date-time.pipe.mjs +5 -6
- package/esm2022/lib/pipes/short-date.pipe.mjs +5 -6
- package/esm2022/lib/pipes/short-time.pipe.mjs +5 -6
- package/esm2022/lib/pipes/sort.pipe.mjs +6 -7
- package/esm2022/lib/pipes/to-injector.pipe.mjs +5 -6
- package/esm2022/lib/proxy/pages/abp/multi-tenancy/abp-tenant.service.mjs +5 -6
- package/esm2022/lib/proxy/volo/abp/asp-net-core/mvc/api-exploring/abp-api-definition.service.mjs +5 -6
- package/esm2022/lib/proxy/volo/abp/asp-net-core/mvc/application-configurations/abp-application-configuration.service.mjs +5 -6
- package/esm2022/lib/proxy/volo/abp/asp-net-core/mvc/application-configurations/abp-application-localization.service.mjs +5 -6
- package/esm2022/lib/services/config-state.service.mjs +5 -6
- package/esm2022/lib/services/content-projection.service.mjs +5 -6
- package/esm2022/lib/services/dom-insertion.service.mjs +5 -6
- package/esm2022/lib/services/environment.service.mjs +5 -6
- package/esm2022/lib/services/http-error-reporter.service.mjs +5 -6
- package/esm2022/lib/services/http-wait.service.mjs +5 -6
- package/esm2022/lib/services/internet-connection-service.mjs +5 -6
- package/esm2022/lib/services/lazy-load.service.mjs +5 -6
- package/esm2022/lib/services/list.service.mjs +5 -6
- package/esm2022/lib/services/local-storage.service.mjs +5 -6
- package/esm2022/lib/services/localization.service.mjs +5 -6
- package/esm2022/lib/services/multi-tenancy.service.mjs +5 -6
- package/esm2022/lib/services/permission.service.mjs +5 -6
- package/esm2022/lib/services/replaceable-components.service.mjs +5 -6
- package/esm2022/lib/services/resource-wait.service.mjs +5 -6
- package/esm2022/lib/services/rest.service.mjs +5 -6
- package/esm2022/lib/services/router-events.service.mjs +5 -6
- package/esm2022/lib/services/router-wait.service.mjs +5 -6
- package/esm2022/lib/services/routes.service.mjs +9 -11
- package/esm2022/lib/services/session-state.service.mjs +5 -6
- package/esm2022/lib/services/subscription.service.mjs +5 -6
- package/esm2022/lib/services/track-by.service.mjs +5 -6
- package/esm2022/lib/services/window.service.mjs +5 -6
- package/esm2022/lib/utils/file-utils.mjs +2 -1
- package/esm2022/testing/lib/core-testing.module.mjs +6 -7
- package/esm2022/testing/lib/services/mock-permission.service.mjs +5 -6
- package/esm2022/testing/lib/services/mock-rest.service.mjs +5 -6
- package/fesm2022/abp-ng.core-testing.mjs +10 -10
- package/fesm2022/abp-ng.core-testing.mjs.map +1 -1
- package/fesm2022/abp-ng.core.mjs +189 -186
- package/fesm2022/abp-ng.core.mjs.map +1 -1
- package/lib/models/dtos.d.ts +2 -0
- package/lib/utils/file-utils.d.ts +1 -0
- package/package.json +2 -2
package/fesm2022/abp-ng.core.mjs
CHANGED
|
@@ -54,10 +54,10 @@ class AbstractNgModelComponent {
|
|
|
54
54
|
setDisabledState(isDisabled) {
|
|
55
55
|
this.disabled = isDisabled;
|
|
56
56
|
}
|
|
57
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
58
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.
|
|
57
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbstractNgModelComponent, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
58
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.11", type: AbstractNgModelComponent, selector: "ng-component", inputs: { disabled: "disabled", readonly: "readonly", valueFn: "valueFn", valueLimitFn: "valueLimitFn", value: "value" }, ngImport: i0, template: '', isInline: true }); }
|
|
59
59
|
}
|
|
60
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
60
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbstractNgModelComponent, decorators: [{
|
|
61
61
|
type: Component,
|
|
62
62
|
args: [{ template: '' }]
|
|
63
63
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; }, propDecorators: { disabled: [{
|
|
@@ -77,10 +77,10 @@ class AuthGuard {
|
|
|
77
77
|
console.error('You should add @abp/ng-oauth packages or create your own auth packages.');
|
|
78
78
|
return false;
|
|
79
79
|
}
|
|
80
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
81
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
80
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AuthGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
81
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AuthGuard, providedIn: 'root' }); }
|
|
82
82
|
}
|
|
83
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
83
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AuthGuard, decorators: [{
|
|
84
84
|
type: Injectable,
|
|
85
85
|
args: [{
|
|
86
86
|
providedIn: 'root',
|
|
@@ -119,10 +119,10 @@ class AuthService {
|
|
|
119
119
|
console.log({ grantType, parameters, headers });
|
|
120
120
|
return Promise.reject(new Error('not implemented'));
|
|
121
121
|
}
|
|
122
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
123
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AuthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
123
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AuthService, providedIn: 'root' }); }
|
|
124
124
|
}
|
|
125
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AuthService, decorators: [{
|
|
126
126
|
type: Injectable,
|
|
127
127
|
args: [{
|
|
128
128
|
providedIn: 'root',
|
|
@@ -239,10 +239,10 @@ class ExternalHttpClient extends HttpClient {
|
|
|
239
239
|
optionsOrRequest.context ??= new HttpContext();
|
|
240
240
|
optionsOrRequest.context.set(IS_EXTERNAL_REQUEST, true);
|
|
241
241
|
}
|
|
242
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
243
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
242
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ExternalHttpClient, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
243
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ExternalHttpClient, providedIn: 'root' }); }
|
|
244
244
|
}
|
|
245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ExternalHttpClient, decorators: [{
|
|
246
246
|
type: Injectable,
|
|
247
247
|
args: [{
|
|
248
248
|
providedIn: 'root',
|
|
@@ -389,10 +389,10 @@ class EnvironmentService {
|
|
|
389
389
|
getIssuer$() {
|
|
390
390
|
return this.store.sliceState(state => state?.oAuthConfig?.issuer).pipe(map(mapToIssuer));
|
|
391
391
|
}
|
|
392
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
393
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: EnvironmentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
393
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
394
394
|
}
|
|
395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
396
396
|
type: Injectable,
|
|
397
397
|
args: [{ providedIn: 'root' }]
|
|
398
398
|
}] });
|
|
@@ -415,10 +415,10 @@ class HttpErrorReporterService {
|
|
|
415
415
|
get errors() {
|
|
416
416
|
return this._errors$.value;
|
|
417
417
|
}
|
|
418
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
419
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
418
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: HttpErrorReporterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
419
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: HttpErrorReporterService, providedIn: 'root' }); }
|
|
420
420
|
}
|
|
421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: HttpErrorReporterService, decorators: [{
|
|
422
422
|
type: Injectable,
|
|
423
423
|
args: [{ providedIn: 'root' }]
|
|
424
424
|
}] });
|
|
@@ -474,10 +474,10 @@ class RestService {
|
|
|
474
474
|
removeDuplicateSlashes(url) {
|
|
475
475
|
return url.replace(/([^:]\/)\/+/g, '$1');
|
|
476
476
|
}
|
|
477
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
478
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
477
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RestService, deps: [{ token: CORE_OPTIONS }, { token: i1.HttpClient }, { token: ExternalHttpClient }, { token: EnvironmentService }, { token: HttpErrorReporterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
478
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
|
479
479
|
}
|
|
480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RestService, decorators: [{
|
|
481
481
|
type: Injectable,
|
|
482
482
|
args: [{
|
|
483
483
|
providedIn: 'root',
|
|
@@ -497,10 +497,10 @@ class AbpApplicationConfigurationService {
|
|
|
497
497
|
params: { includeLocalizationResources: options.includeLocalizationResources },
|
|
498
498
|
}, { apiName: this.apiName });
|
|
499
499
|
}
|
|
500
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
501
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
500
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApplicationConfigurationService, deps: [{ token: RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
501
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApplicationConfigurationService, providedIn: 'root' }); }
|
|
502
502
|
}
|
|
503
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApplicationConfigurationService, decorators: [{
|
|
504
504
|
type: Injectable,
|
|
505
505
|
args: [{
|
|
506
506
|
providedIn: 'root',
|
|
@@ -517,10 +517,10 @@ class AbpApplicationLocalizationService {
|
|
|
517
517
|
params: { cultureName: input.cultureName, onlyDynamics: input.onlyDynamics },
|
|
518
518
|
}, { apiName: this.apiName });
|
|
519
519
|
}
|
|
520
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
521
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
520
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApplicationLocalizationService, deps: [{ token: RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
521
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApplicationLocalizationService, providedIn: 'root' }); }
|
|
522
522
|
}
|
|
523
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApplicationLocalizationService, decorators: [{
|
|
524
524
|
type: Injectable,
|
|
525
525
|
args: [{
|
|
526
526
|
providedIn: 'root',
|
|
@@ -676,10 +676,10 @@ class ConfigStateService {
|
|
|
676
676
|
getGlobalFeatureIsEnabled$(key) {
|
|
677
677
|
return this.store.sliceState(state => this.isGlobalFeatureEnabled(key, state.globalFeatures));
|
|
678
678
|
}
|
|
679
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
680
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ConfigStateService, deps: [{ token: AbpApplicationConfigurationService }, { token: AbpApplicationLocalizationService }, { token: INCUDE_LOCALIZATION_RESOURCES_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
680
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ConfigStateService, providedIn: 'root' }); }
|
|
681
681
|
}
|
|
682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
682
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ConfigStateService, decorators: [{
|
|
683
683
|
type: Injectable,
|
|
684
684
|
args: [{
|
|
685
685
|
providedIn: 'root',
|
|
@@ -720,10 +720,10 @@ class AbpLocalStorageService {
|
|
|
720
720
|
setItem(key, value) {
|
|
721
721
|
localStorage.setItem(key, value);
|
|
722
722
|
}
|
|
723
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
724
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
723
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpLocalStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
724
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpLocalStorageService, providedIn: 'root' }); }
|
|
725
725
|
}
|
|
726
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpLocalStorageService, decorators: [{
|
|
727
727
|
type: Injectable,
|
|
728
728
|
args: [{
|
|
729
729
|
providedIn: 'root',
|
|
@@ -791,10 +791,10 @@ class SessionStateService {
|
|
|
791
791
|
this.store.patch({ language });
|
|
792
792
|
document.documentElement.setAttribute('lang', language);
|
|
793
793
|
}
|
|
794
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
795
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
794
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SessionStateService, deps: [{ token: ConfigStateService }, { token: AbpLocalStorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
795
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SessionStateService, providedIn: 'root' }); }
|
|
796
796
|
}
|
|
797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SessionStateService, decorators: [{
|
|
798
798
|
type: Injectable,
|
|
799
799
|
args: [{
|
|
800
800
|
providedIn: 'root',
|
|
@@ -969,10 +969,10 @@ class LocalizationService {
|
|
|
969
969
|
localization = '';
|
|
970
970
|
return localization || defaultValue || key;
|
|
971
971
|
}
|
|
972
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
973
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
972
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationService, deps: [{ token: SessionStateService }, { token: i0.Injector }, { token: LocalizationService, optional: true, skipSelf: true }, { token: ConfigStateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
973
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
|
|
974
974
|
}
|
|
975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationService, decorators: [{
|
|
976
976
|
type: Injectable,
|
|
977
977
|
args: [{ providedIn: 'root' }]
|
|
978
978
|
}], ctorParameters: function () { return [{ type: SessionStateService }, { type: i0.Injector }, { type: LocalizationService, decorators: [{
|
|
@@ -1063,10 +1063,10 @@ class ReplaceableComponentsService {
|
|
|
1063
1063
|
get$(replaceableComponentKey) {
|
|
1064
1064
|
return this.replaceableComponents$.pipe(map(components => components.find(component => component.key === replaceableComponentKey)));
|
|
1065
1065
|
}
|
|
1066
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1067
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1066
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ReplaceableComponentsService, deps: [{ token: i0.NgZone }, { token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1067
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ReplaceableComponentsService, providedIn: 'root' }); }
|
|
1068
1068
|
}
|
|
1069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ReplaceableComponentsService, decorators: [{
|
|
1070
1070
|
type: Injectable,
|
|
1071
1071
|
args: [{ providedIn: 'root' }]
|
|
1072
1072
|
}], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i1$1.Router }]; } });
|
|
@@ -1096,10 +1096,10 @@ class RouterEvents {
|
|
|
1096
1096
|
const keys = Object.keys(NavigationEvent);
|
|
1097
1097
|
return this.getNavigationEvents(...keys);
|
|
1098
1098
|
}
|
|
1099
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1100
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1099
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterEvents, deps: [{ token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1100
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterEvents, providedIn: 'root' }); }
|
|
1101
1101
|
}
|
|
1102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterEvents, decorators: [{
|
|
1103
1103
|
type: Injectable,
|
|
1104
1104
|
args: [{ providedIn: 'root' }]
|
|
1105
1105
|
}], ctorParameters: function () { return [{ type: i1$1.Router }]; } });
|
|
@@ -1259,10 +1259,10 @@ class PermissionService {
|
|
|
1259
1259
|
getPolicy(key, grantedPolicies) {
|
|
1260
1260
|
return grantedPolicies[key] || false;
|
|
1261
1261
|
}
|
|
1262
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1263
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1262
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionService, deps: [{ token: ConfigStateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1263
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionService, providedIn: 'root' }); }
|
|
1264
1264
|
}
|
|
1265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1265
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionService, decorators: [{
|
|
1266
1266
|
type: Injectable,
|
|
1267
1267
|
args: [{ providedIn: 'root' }]
|
|
1268
1268
|
}], ctorParameters: function () { return [{ type: ConfigStateService }]; } });
|
|
@@ -1274,10 +1274,10 @@ class ContentProjectionService {
|
|
|
1274
1274
|
projectContent(projectionStrategy, injector = this.injector) {
|
|
1275
1275
|
return projectionStrategy.injectContent(injector);
|
|
1276
1276
|
}
|
|
1277
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1278
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1277
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ContentProjectionService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1278
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ContentProjectionService, providedIn: 'root' }); }
|
|
1279
1279
|
}
|
|
1280
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ContentProjectionService, decorators: [{
|
|
1281
1281
|
type: Injectable,
|
|
1282
1282
|
args: [{ providedIn: 'root' }]
|
|
1283
1283
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
@@ -1347,6 +1347,7 @@ function featuresFactory(configState, featureKeys, mapFn = features => features)
|
|
|
1347
1347
|
return configState.getFeatures$(featureKeys).pipe(filter(Boolean), map(mapFn));
|
|
1348
1348
|
}
|
|
1349
1349
|
|
|
1350
|
+
/** @deprecated the method will change in v8.0 */
|
|
1350
1351
|
function downloadBlob(blob, filename) {
|
|
1351
1352
|
const blobUrl = URL.createObjectURL(blob);
|
|
1352
1353
|
const link = document.createElement('a');
|
|
@@ -1442,10 +1443,10 @@ class AbpTenantService {
|
|
|
1442
1443
|
url: `/api/abp/multi-tenancy/tenants/by-name/${name}`,
|
|
1443
1444
|
}, { apiName: this.apiName });
|
|
1444
1445
|
}
|
|
1445
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1446
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1446
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpTenantService, deps: [{ token: RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1447
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpTenantService, providedIn: 'root' }); }
|
|
1447
1448
|
}
|
|
1448
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpTenantService, decorators: [{
|
|
1449
1450
|
type: Injectable,
|
|
1450
1451
|
args: [{
|
|
1451
1452
|
providedIn: 'root',
|
|
@@ -1477,10 +1478,10 @@ class MultiTenancyService {
|
|
|
1477
1478
|
.findTenantById(tenantId)
|
|
1478
1479
|
.pipe(switchMap(this.setTenantToState));
|
|
1479
1480
|
}
|
|
1480
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1481
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1481
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: MultiTenancyService, deps: [{ token: RestService }, { token: SessionStateService }, { token: AbpTenantService }, { token: ConfigStateService }, { token: TENANT_KEY }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1482
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: MultiTenancyService, providedIn: 'root' }); }
|
|
1482
1483
|
}
|
|
1483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: MultiTenancyService, decorators: [{
|
|
1484
1485
|
type: Injectable,
|
|
1485
1486
|
args: [{ providedIn: 'root' }]
|
|
1486
1487
|
}], ctorParameters: function () { return [{ type: RestService }, { type: SessionStateService }, { type: AbpTenantService }, { type: ConfigStateService }, { type: undefined, decorators: [{
|
|
@@ -1777,10 +1778,10 @@ class DomInsertionService {
|
|
|
1777
1778
|
const hash = generateHash(content);
|
|
1778
1779
|
return this.inserted.has(hash);
|
|
1779
1780
|
}
|
|
1780
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1781
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1781
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: DomInsertionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1782
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: DomInsertionService, providedIn: 'root' }); }
|
|
1782
1783
|
}
|
|
1783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: DomInsertionService, decorators: [{
|
|
1784
1785
|
type: Injectable,
|
|
1785
1786
|
args: [{ providedIn: 'root' }]
|
|
1786
1787
|
}] });
|
|
@@ -1843,10 +1844,10 @@ class HttpWaitService {
|
|
|
1843
1844
|
const { method, endpoint } = filteredRequest;
|
|
1844
1845
|
return endpoint === request.endpoint && method === request.method;
|
|
1845
1846
|
}
|
|
1846
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1847
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1847
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: HttpWaitService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1848
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: HttpWaitService, providedIn: 'root' }); }
|
|
1848
1849
|
}
|
|
1849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1850
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: HttpWaitService, decorators: [{
|
|
1850
1851
|
type: Injectable,
|
|
1851
1852
|
args: [{
|
|
1852
1853
|
providedIn: 'root',
|
|
@@ -1879,10 +1880,10 @@ class ResourceWaitService {
|
|
|
1879
1880
|
resources.delete(resource);
|
|
1880
1881
|
this.store.patch({ resources });
|
|
1881
1882
|
}
|
|
1882
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1883
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1883
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ResourceWaitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1884
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ResourceWaitService, providedIn: 'root' }); }
|
|
1884
1885
|
}
|
|
1885
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ResourceWaitService, decorators: [{
|
|
1886
1887
|
type: Injectable,
|
|
1887
1888
|
args: [{
|
|
1888
1889
|
providedIn: 'root',
|
|
@@ -1913,10 +1914,10 @@ class LazyLoadService {
|
|
|
1913
1914
|
this.loaded.delete(path);
|
|
1914
1915
|
return true;
|
|
1915
1916
|
}
|
|
1916
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
1917
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
1917
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LazyLoadService, deps: [{ token: ResourceWaitService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1918
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LazyLoadService, providedIn: 'root' }); }
|
|
1918
1919
|
}
|
|
1919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
1920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LazyLoadService, decorators: [{
|
|
1920
1921
|
type: Injectable,
|
|
1921
1922
|
args: [{
|
|
1922
1923
|
providedIn: 'root',
|
|
@@ -2026,10 +2027,10 @@ class ListService {
|
|
|
2026
2027
|
sorting: this._sortOrder ? `${this._sortKey} ${this._sortOrder}` : undefined,
|
|
2027
2028
|
});
|
|
2028
2029
|
}
|
|
2029
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2030
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2030
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ListService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2031
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ListService }); }
|
|
2031
2032
|
}
|
|
2032
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ListService, decorators: [{
|
|
2033
2034
|
type: Injectable
|
|
2034
2035
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
2035
2036
|
|
|
@@ -2065,10 +2066,10 @@ class RouterWaitService {
|
|
|
2065
2066
|
setLoading(loading) {
|
|
2066
2067
|
this.store.patch({ loading });
|
|
2067
2068
|
}
|
|
2068
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2069
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2069
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterWaitService, deps: [{ token: RouterEvents }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2070
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterWaitService, providedIn: 'root' }); }
|
|
2070
2071
|
}
|
|
2071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterWaitService, decorators: [{
|
|
2072
2073
|
type: Injectable,
|
|
2073
2074
|
args: [{
|
|
2074
2075
|
providedIn: 'root',
|
|
@@ -2108,10 +2109,10 @@ class SubscriptionService {
|
|
|
2108
2109
|
this.subscription.unsubscribe();
|
|
2109
2110
|
this.subscription = new Subscription();
|
|
2110
2111
|
}
|
|
2111
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2112
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2112
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SubscriptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2113
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SubscriptionService }); }
|
|
2113
2114
|
}
|
|
2114
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SubscriptionService, decorators: [{
|
|
2115
2116
|
type: Injectable
|
|
2116
2117
|
}] });
|
|
2117
2118
|
|
|
@@ -2124,10 +2125,10 @@ class TrackByService {
|
|
|
2124
2125
|
this.by = trackBy;
|
|
2125
2126
|
this.byDeep = trackByDeep;
|
|
2126
2127
|
}
|
|
2127
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2128
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: TrackByService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2129
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: TrackByService, providedIn: 'root' }); }
|
|
2129
2130
|
}
|
|
2130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: TrackByService, decorators: [{
|
|
2131
2132
|
type: Injectable,
|
|
2132
2133
|
args: [{
|
|
2133
2134
|
providedIn: 'root',
|
|
@@ -2148,10 +2149,10 @@ class AbpWindowService {
|
|
|
2148
2149
|
reloadPage() {
|
|
2149
2150
|
this.window.location.reload();
|
|
2150
2151
|
}
|
|
2151
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2152
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2152
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpWindowService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2153
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpWindowService, providedIn: 'root' }); }
|
|
2153
2154
|
}
|
|
2154
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpWindowService, decorators: [{
|
|
2155
2156
|
type: Injectable,
|
|
2156
2157
|
args: [{ providedIn: 'root' }]
|
|
2157
2158
|
}] });
|
|
@@ -2174,10 +2175,10 @@ class InternetConnectionService {
|
|
|
2174
2175
|
get networkStatus$() {
|
|
2175
2176
|
return this.status$.asObservable();
|
|
2176
2177
|
}
|
|
2177
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2178
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2178
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: InternetConnectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2179
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: InternetConnectionService, providedIn: 'root' }); }
|
|
2179
2180
|
}
|
|
2180
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: InternetConnectionService, decorators: [{
|
|
2181
2182
|
type: Injectable,
|
|
2182
2183
|
args: [{
|
|
2183
2184
|
providedIn: 'root',
|
|
@@ -2337,10 +2338,10 @@ class AbstractNavTreeService extends AbstractTreeService {
|
|
|
2337
2338
|
ngOnDestroy() {
|
|
2338
2339
|
this.subscription.unsubscribe();
|
|
2339
2340
|
}
|
|
2340
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2341
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2341
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbstractNavTreeService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2342
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbstractNavTreeService }); }
|
|
2342
2343
|
}
|
|
2343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbstractNavTreeService, decorators: [{
|
|
2344
2345
|
type: Injectable
|
|
2345
2346
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
2346
2347
|
class RoutesService extends AbstractNavTreeService {
|
|
@@ -2353,10 +2354,10 @@ class RoutesService extends AbstractNavTreeService {
|
|
|
2353
2354
|
get groupedVisible$() {
|
|
2354
2355
|
return this.visible$.pipe(map$1(items => items.filter(item => this.hasPathOrChild(item))), map$1(visible => this.createGroupedTree(visible)));
|
|
2355
2356
|
}
|
|
2356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2357
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
2357
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RoutesService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2358
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RoutesService, providedIn: 'root' }); }
|
|
2358
2359
|
}
|
|
2359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RoutesService, decorators: [{
|
|
2360
2361
|
type: Injectable,
|
|
2361
2362
|
args: [{ providedIn: 'root' }]
|
|
2362
2363
|
}] });
|
|
@@ -2437,10 +2438,10 @@ class DynamicLayoutComponent {
|
|
|
2437
2438
|
getComponent(key) {
|
|
2438
2439
|
return this.replaceableComponents.get(key);
|
|
2439
2440
|
}
|
|
2440
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2441
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.
|
|
2441
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: DynamicLayoutComponent, deps: [{ token: i0.Injector }, { token: LocalizationService }, { token: ReplaceableComponentsService }, { token: SubscriptionService }, { token: RouterEvents }, { token: DynamicLayoutComponent, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2442
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.11", type: DynamicLayoutComponent, selector: "abp-dynamic-layout", providers: [SubscriptionService], ngImport: i0, template: ` <ng-container *ngIf="isLayoutVisible" [ngComponentOutlet]="layout"></ng-container> `, isInline: true, dependencies: [{ kind: "directive", type: i5.NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }, { kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
2442
2443
|
}
|
|
2443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2444
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: DynamicLayoutComponent, decorators: [{
|
|
2444
2445
|
type: Component,
|
|
2445
2446
|
args: [{
|
|
2446
2447
|
selector: 'abp-dynamic-layout',
|
|
@@ -2469,12 +2470,12 @@ class ReplaceableRouteContainerComponent {
|
|
|
2469
2470
|
this.externalComponent = res.component;
|
|
2470
2471
|
});
|
|
2471
2472
|
}
|
|
2472
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2473
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.
|
|
2473
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ReplaceableRouteContainerComponent, deps: [{ token: i1$1.ActivatedRoute }, { token: ReplaceableComponentsService }, { token: SubscriptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2474
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.11", type: ReplaceableRouteContainerComponent, selector: "abp-replaceable-route-container", providers: [SubscriptionService], ngImport: i0, template: `
|
|
2474
2475
|
<ng-container *ngComponentOutlet="externalComponent || defaultComponent"></ng-container>
|
|
2475
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i5.NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }] }); }
|
|
2476
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i5.NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }] }); }
|
|
2476
2477
|
}
|
|
2477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ReplaceableRouteContainerComponent, decorators: [{
|
|
2478
2479
|
type: Component,
|
|
2479
2480
|
args: [{
|
|
2480
2481
|
selector: 'abp-replaceable-route-container',
|
|
@@ -2486,10 +2487,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.6", ngImpor
|
|
|
2486
2487
|
}], ctorParameters: function () { return [{ type: i1$1.ActivatedRoute }, { type: ReplaceableComponentsService }, { type: SubscriptionService }]; } });
|
|
2487
2488
|
|
|
2488
2489
|
class RouterOutletComponent {
|
|
2489
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2490
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.
|
|
2490
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterOutletComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2491
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.11", type: RouterOutletComponent, selector: "abp-router-outlet", ngImport: i0, template: ` <router-outlet></router-outlet> `, isInline: true, dependencies: [{ kind: "directive", type: i1$1.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] }); }
|
|
2491
2492
|
}
|
|
2492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2493
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RouterOutletComponent, decorators: [{
|
|
2493
2494
|
type: Component,
|
|
2494
2495
|
args: [{
|
|
2495
2496
|
selector: 'abp-router-outlet',
|
|
@@ -2848,10 +2849,10 @@ class AutofocusDirective {
|
|
|
2848
2849
|
ngAfterViewInit() {
|
|
2849
2850
|
setTimeout(() => this.elRef.nativeElement.focus(), this.delay);
|
|
2850
2851
|
}
|
|
2851
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2852
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
2852
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AutofocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2853
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: AutofocusDirective, selector: "[autofocus]", inputs: { delay: ["autofocus", "delay"] }, ngImport: i0 }); }
|
|
2853
2854
|
}
|
|
2854
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2855
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AutofocusDirective, decorators: [{
|
|
2855
2856
|
type: Directive,
|
|
2856
2857
|
args: [{
|
|
2857
2858
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -2875,10 +2876,10 @@ class InputEventDebounceDirective {
|
|
|
2875
2876
|
this.debounceEvent.emit(event);
|
|
2876
2877
|
});
|
|
2877
2878
|
}
|
|
2878
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
2879
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
2879
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: InputEventDebounceDirective, deps: [{ token: i0.ElementRef }, { token: SubscriptionService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2880
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: InputEventDebounceDirective, selector: "[input.debounce]", inputs: { debounce: "debounce" }, outputs: { debounceEvent: "input.debounce" }, providers: [SubscriptionService], ngImport: i0 }); }
|
|
2880
2881
|
}
|
|
2881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
2882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: InputEventDebounceDirective, decorators: [{
|
|
2882
2883
|
type: Directive,
|
|
2883
2884
|
args: [{
|
|
2884
2885
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -3013,10 +3014,10 @@ class ForDirective {
|
|
|
3013
3014
|
this.projectItems(items);
|
|
3014
3015
|
}
|
|
3015
3016
|
}
|
|
3016
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3017
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3017
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ForDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i0.IterableDiffers }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3018
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: ForDirective, selector: "[abpFor]", inputs: { items: ["abpForOf", "items"], orderBy: ["abpForOrderBy", "orderBy"], orderDir: ["abpForOrderDir", "orderDir"], filterBy: ["abpForFilterBy", "filterBy"], filterVal: ["abpForFilterVal", "filterVal"], trackBy: ["abpForTrackBy", "trackBy"], compareBy: ["abpForCompareBy", "compareBy"], emptyRef: ["abpForEmptyRef", "emptyRef"] }, usesOnChanges: true, ngImport: i0 }); }
|
|
3018
3019
|
}
|
|
3019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ForDirective, decorators: [{
|
|
3020
3021
|
type: Directive,
|
|
3021
3022
|
args: [{
|
|
3022
3023
|
selector: '[abpFor]',
|
|
@@ -3082,10 +3083,10 @@ class FormSubmitDirective {
|
|
|
3082
3083
|
form.markAsDirty();
|
|
3083
3084
|
this.cdRef.detectChanges();
|
|
3084
3085
|
}
|
|
3085
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3086
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3086
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: FormSubmitDirective, deps: [{ token: i1$2.FormGroupDirective, self: true }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: SubscriptionService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3087
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: FormSubmitDirective, selector: "form[ngSubmit][formGroup]", inputs: { debounce: "debounce", notValidateOnSubmit: "notValidateOnSubmit", markAsDirtyWhenSubmit: "markAsDirtyWhenSubmit" }, outputs: { ngSubmit: "ngSubmit" }, providers: [SubscriptionService], ngImport: i0 }); }
|
|
3087
3088
|
}
|
|
3088
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3089
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: FormSubmitDirective, decorators: [{
|
|
3089
3090
|
type: Directive,
|
|
3090
3091
|
args: [{
|
|
3091
3092
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -3124,10 +3125,10 @@ class InitDirective {
|
|
|
3124
3125
|
ngAfterViewInit() {
|
|
3125
3126
|
this.init.emit(this.elRef);
|
|
3126
3127
|
}
|
|
3127
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3128
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3128
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: InitDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3129
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: InitDirective, selector: "[abpInit]", outputs: { init: "abpInit" }, ngImport: i0 }); }
|
|
3129
3130
|
}
|
|
3130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: InitDirective, decorators: [{
|
|
3131
3132
|
type: Directive,
|
|
3132
3133
|
args: [{ selector: '[abpInit]' }]
|
|
3133
3134
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { init: [{
|
|
@@ -3181,10 +3182,10 @@ class PermissionDirective {
|
|
|
3181
3182
|
this.cdrSubject.pipe(take(1)).subscribe(() => this.queue.add(() => this.cdRef.detectChanges()));
|
|
3182
3183
|
this.rendered = true;
|
|
3183
3184
|
}
|
|
3184
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3185
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3185
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionDirective, deps: [{ token: i0.TemplateRef, optional: true }, { token: i0.ViewContainerRef }, { token: PermissionService }, { token: i0.ChangeDetectorRef }, { token: QUEUE_MANAGER }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3186
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: PermissionDirective, selector: "[abpPermission]", inputs: { condition: ["abpPermission", "condition"], runChangeDetection: ["abpPermissionRunChangeDetection", "runChangeDetection"] }, usesOnChanges: true, ngImport: i0 }); }
|
|
3186
3187
|
}
|
|
3187
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionDirective, decorators: [{
|
|
3188
3189
|
type: Directive,
|
|
3189
3190
|
args: [{
|
|
3190
3191
|
selector: '[abpPermission]',
|
|
@@ -3312,10 +3313,10 @@ class ReplaceableTemplateDirective {
|
|
|
3312
3313
|
this.defaultComponentSubscriptions = {};
|
|
3313
3314
|
this.defaultComponentRef = null;
|
|
3314
3315
|
}
|
|
3315
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3316
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3316
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ReplaceableTemplateDirective, deps: [{ token: i0.Injector }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: ReplaceableComponentsService }, { token: SubscriptionService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3317
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: { data: ["abpReplaceableTemplate", "data"] }, providers: [SubscriptionService], usesOnChanges: true, ngImport: i0 }); }
|
|
3317
3318
|
}
|
|
3318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ReplaceableTemplateDirective, decorators: [{
|
|
3319
3320
|
type: Directive,
|
|
3320
3321
|
args: [{
|
|
3321
3322
|
selector: '[abpReplaceableTemplate]',
|
|
@@ -3338,10 +3339,10 @@ class StopPropagationDirective {
|
|
|
3338
3339
|
this.stopPropEvent.emit(event);
|
|
3339
3340
|
});
|
|
3340
3341
|
}
|
|
3341
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3342
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3342
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: StopPropagationDirective, deps: [{ token: i0.ElementRef }, { token: SubscriptionService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3343
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: StopPropagationDirective, selector: "[click.stop]", outputs: { stopPropEvent: "click.stop" }, providers: [SubscriptionService], ngImport: i0 }); }
|
|
3343
3344
|
}
|
|
3344
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: StopPropagationDirective, decorators: [{
|
|
3345
3346
|
type: Directive,
|
|
3346
3347
|
args: [{
|
|
3347
3348
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -3373,10 +3374,10 @@ class RoutesHandler {
|
|
|
3373
3374
|
}
|
|
3374
3375
|
});
|
|
3375
3376
|
}
|
|
3376
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3377
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
3377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RoutesHandler, deps: [{ token: RoutesService }, { token: i1$1.Router, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3378
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RoutesHandler, providedIn: 'root' }); }
|
|
3378
3379
|
}
|
|
3379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RoutesHandler, decorators: [{
|
|
3380
3381
|
type: Injectable,
|
|
3381
3382
|
args: [{
|
|
3382
3383
|
providedIn: 'root',
|
|
@@ -3414,11 +3415,11 @@ class LocalizationPipe {
|
|
|
3414
3415
|
}, []) || [];
|
|
3415
3416
|
return this.localization.instant(value, ...params);
|
|
3416
3417
|
}
|
|
3417
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3418
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.
|
|
3419
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
3418
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationPipe, deps: [{ token: LocalizationService }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3419
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: LocalizationPipe, name: "abpLocalization" }); }
|
|
3420
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationPipe }); }
|
|
3420
3421
|
}
|
|
3421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationPipe, decorators: [{
|
|
3422
3423
|
type: Injectable
|
|
3423
3424
|
}, {
|
|
3424
3425
|
type: Pipe,
|
|
@@ -3428,11 +3429,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.6", ngImpor
|
|
|
3428
3429
|
}], ctorParameters: function () { return [{ type: LocalizationService }]; } });
|
|
3429
3430
|
|
|
3430
3431
|
class LocalizationModule {
|
|
3431
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3432
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
3433
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
3432
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3433
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: LocalizationModule, declarations: [LocalizationPipe], exports: [LocalizationPipe] }); }
|
|
3434
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationModule }); }
|
|
3434
3435
|
}
|
|
3435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: LocalizationModule, decorators: [{
|
|
3436
3437
|
type: NgModule,
|
|
3437
3438
|
args: [{
|
|
3438
3439
|
exports: [LocalizationPipe],
|
|
@@ -3474,11 +3475,11 @@ class SortPipe {
|
|
|
3474
3475
|
];
|
|
3475
3476
|
return sortOrder === 'asc' ? sorted : sorted.reverse();
|
|
3476
3477
|
}
|
|
3477
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3478
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.
|
|
3479
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
3478
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SortPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3479
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: SortPipe, name: "abpSort" }); }
|
|
3480
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SortPipe }); }
|
|
3480
3481
|
}
|
|
3481
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SortPipe, decorators: [{
|
|
3482
3483
|
type: Injectable
|
|
3483
3484
|
}, {
|
|
3484
3485
|
type: Pipe,
|
|
@@ -3504,10 +3505,10 @@ class ToInjectorPipe {
|
|
|
3504
3505
|
name,
|
|
3505
3506
|
});
|
|
3506
3507
|
}
|
|
3507
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3508
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.
|
|
3508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ToInjectorPipe, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3509
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: ToInjectorPipe, name: "toInjector" }); }
|
|
3509
3510
|
}
|
|
3510
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ToInjectorPipe, decorators: [{
|
|
3511
3512
|
type: Pipe,
|
|
3512
3513
|
args: [{
|
|
3513
3514
|
name: 'toInjector',
|
|
@@ -3568,10 +3569,10 @@ class ShortDateTimePipe extends DatePipe {
|
|
|
3568
3569
|
const format = getShortDateShortTimeFormat(this.configStateService);
|
|
3569
3570
|
return super.transform(value, format, timezone, locale);
|
|
3570
3571
|
}
|
|
3571
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3572
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.
|
|
3572
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShortDateTimePipe, deps: [{ token: ConfigStateService }, { token: LOCALE_ID }, { token: DATE_PIPE_DEFAULT_TIMEZONE, optional: true }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3573
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: ShortDateTimePipe, name: "shortDateTime" }); }
|
|
3573
3574
|
}
|
|
3574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShortDateTimePipe, decorators: [{
|
|
3575
3576
|
type: Pipe,
|
|
3576
3577
|
args: [{
|
|
3577
3578
|
name: 'shortDateTime',
|
|
@@ -3596,10 +3597,10 @@ class ShortTimePipe extends DatePipe {
|
|
|
3596
3597
|
const format = getShortTimeFormat(this.configStateService);
|
|
3597
3598
|
return super.transform(value, format, timezone, locale);
|
|
3598
3599
|
}
|
|
3599
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3600
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.
|
|
3600
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShortTimePipe, deps: [{ token: ConfigStateService }, { token: LOCALE_ID }, { token: DATE_PIPE_DEFAULT_TIMEZONE, optional: true }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3601
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: ShortTimePipe, name: "shortTime" }); }
|
|
3601
3602
|
}
|
|
3602
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShortTimePipe, decorators: [{
|
|
3603
3604
|
type: Pipe,
|
|
3604
3605
|
args: [{
|
|
3605
3606
|
name: 'shortTime',
|
|
@@ -3624,10 +3625,10 @@ class ShortDatePipe extends DatePipe {
|
|
|
3624
3625
|
const format = getShortDateFormat(this.configStateService);
|
|
3625
3626
|
return super.transform(value, format, timezone, locale);
|
|
3626
3627
|
}
|
|
3627
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3628
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.
|
|
3628
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShortDatePipe, deps: [{ token: ConfigStateService }, { token: LOCALE_ID }, { token: DATE_PIPE_DEFAULT_TIMEZONE, optional: true }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3629
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: ShortDatePipe, name: "shortDate" }); }
|
|
3629
3630
|
}
|
|
3630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShortDatePipe, decorators: [{
|
|
3631
3632
|
type: Pipe,
|
|
3632
3633
|
args: [{
|
|
3633
3634
|
name: 'shortDate',
|
|
@@ -3652,11 +3653,11 @@ class SafeHtmlPipe {
|
|
|
3652
3653
|
return '';
|
|
3653
3654
|
return this.sanitizer.sanitize(SecurityContext.HTML, value);
|
|
3654
3655
|
}
|
|
3655
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3656
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.
|
|
3657
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
3656
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SafeHtmlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
3657
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: SafeHtmlPipe, name: "abpSafeHtml" }); }
|
|
3658
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SafeHtmlPipe }); }
|
|
3658
3659
|
}
|
|
3659
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: SafeHtmlPipe, decorators: [{
|
|
3660
3661
|
type: Injectable
|
|
3661
3662
|
}, {
|
|
3662
3663
|
type: Pipe,
|
|
@@ -3675,8 +3676,8 @@ const IncludeLocalizationResourcesProvider = {
|
|
|
3675
3676
|
* This module will be imported and exported by all others.
|
|
3676
3677
|
*/
|
|
3677
3678
|
class BaseCoreModule {
|
|
3678
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3679
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
3679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: BaseCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3680
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: BaseCoreModule, declarations: [AbstractNgModelComponent,
|
|
3680
3681
|
AutofocusDirective,
|
|
3681
3682
|
DynamicLayoutComponent,
|
|
3682
3683
|
ForDirective,
|
|
@@ -3722,7 +3723,7 @@ class BaseCoreModule {
|
|
|
3722
3723
|
ShortDateTimePipe,
|
|
3723
3724
|
ShortTimePipe,
|
|
3724
3725
|
ShortDatePipe] }); }
|
|
3725
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
3726
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: BaseCoreModule, providers: [LocalizationPipe], imports: [CommonModule,
|
|
3726
3727
|
HttpClientModule,
|
|
3727
3728
|
FormsModule,
|
|
3728
3729
|
ReactiveFormsModule,
|
|
@@ -3734,7 +3735,7 @@ class BaseCoreModule {
|
|
|
3734
3735
|
RouterModule,
|
|
3735
3736
|
LocalizationModule] }); }
|
|
3736
3737
|
}
|
|
3737
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3738
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: BaseCoreModule, decorators: [{
|
|
3738
3739
|
type: NgModule,
|
|
3739
3740
|
args: [{
|
|
3740
3741
|
exports: [
|
|
@@ -3799,16 +3800,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.6", ngImpor
|
|
|
3799
3800
|
* and it introduces imports useful at root level (e.g. NGXS)
|
|
3800
3801
|
*/
|
|
3801
3802
|
class RootCoreModule {
|
|
3802
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3803
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
3804
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
3803
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RootCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3804
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: RootCoreModule, imports: [BaseCoreModule, LocalizationModule, i1.HttpClientXsrfModule], exports: [BaseCoreModule, LocalizationModule] }); }
|
|
3805
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RootCoreModule, imports: [BaseCoreModule,
|
|
3805
3806
|
LocalizationModule,
|
|
3806
3807
|
HttpClientXsrfModule.withOptions({
|
|
3807
3808
|
cookieName: 'XSRF-TOKEN',
|
|
3808
3809
|
headerName: 'RequestVerificationToken',
|
|
3809
3810
|
}), BaseCoreModule, LocalizationModule] }); }
|
|
3810
3811
|
}
|
|
3811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3812
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: RootCoreModule, decorators: [{
|
|
3812
3813
|
type: NgModule,
|
|
3813
3814
|
args: [{
|
|
3814
3815
|
exports: [BaseCoreModule, LocalizationModule],
|
|
@@ -3901,11 +3902,11 @@ class CoreModule {
|
|
|
3901
3902
|
],
|
|
3902
3903
|
};
|
|
3903
3904
|
}
|
|
3904
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3905
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.
|
|
3906
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.
|
|
3905
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3906
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.11", ngImport: i0, type: CoreModule, imports: [BaseCoreModule], exports: [BaseCoreModule] }); }
|
|
3907
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: CoreModule, imports: [BaseCoreModule, BaseCoreModule] }); }
|
|
3907
3908
|
}
|
|
3908
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: CoreModule, decorators: [{
|
|
3909
3910
|
type: NgModule,
|
|
3910
3911
|
args: [{
|
|
3911
3912
|
exports: [BaseCoreModule],
|
|
@@ -3923,10 +3924,10 @@ class ShowPasswordDirective {
|
|
|
3923
3924
|
return;
|
|
3924
3925
|
element.type = visible ? 'text' : 'password';
|
|
3925
3926
|
}
|
|
3926
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3927
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3927
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShowPasswordDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3928
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: ShowPasswordDirective, isStandalone: true, selector: "[abpShowPassword]", inputs: { abpShowPassword: "abpShowPassword" }, ngImport: i0 }); }
|
|
3928
3929
|
}
|
|
3929
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3930
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ShowPasswordDirective, decorators: [{
|
|
3930
3931
|
type: Directive,
|
|
3931
3932
|
args: [{
|
|
3932
3933
|
standalone: true,
|
|
@@ -3950,15 +3951,15 @@ class TrackCapsLockDirective {
|
|
|
3950
3951
|
const s = String.fromCharCode(e.which);
|
|
3951
3952
|
if ((s.toUpperCase() === s && s.toLowerCase() !== s && e.shiftKey) ||
|
|
3952
3953
|
(s.toUpperCase() !== s && s.toLowerCase() === s && e.shiftKey) ||
|
|
3953
|
-
e.getModifierState('CapsLock')) {
|
|
3954
|
+
(e.getModifierState && e.getModifierState('CapsLock'))) {
|
|
3954
3955
|
return true;
|
|
3955
3956
|
}
|
|
3956
3957
|
return false;
|
|
3957
3958
|
}
|
|
3958
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
3959
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.
|
|
3959
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: TrackCapsLockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3960
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.11", type: TrackCapsLockDirective, isStandalone: true, selector: "[abpCapsLock]", outputs: { capsLock: "abpCapsLock" }, host: { listeners: { "window:keydown": "onKeyDown($event)", "window:keyup": "onKeyUp($event)" } }, ngImport: i0 }); }
|
|
3960
3961
|
}
|
|
3961
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
3962
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: TrackCapsLockDirective, decorators: [{
|
|
3962
3963
|
type: Directive,
|
|
3963
3964
|
args: [{
|
|
3964
3965
|
standalone: true,
|
|
@@ -3997,10 +3998,10 @@ class PermissionGuard {
|
|
|
3997
3998
|
}
|
|
3998
3999
|
}));
|
|
3999
4000
|
}
|
|
4000
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4001
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4001
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4002
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionGuard, providedIn: 'root' }); }
|
|
4002
4003
|
}
|
|
4003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: PermissionGuard, decorators: [{
|
|
4004
4005
|
type: Injectable,
|
|
4005
4006
|
args: [{
|
|
4006
4007
|
providedIn: 'root',
|
|
@@ -4095,6 +4096,7 @@ class AuditedEntityDto extends CreationAuditedEntityDto {
|
|
|
4095
4096
|
super(initialValues);
|
|
4096
4097
|
}
|
|
4097
4098
|
}
|
|
4099
|
+
/** @deprecated the class signature will change in v8.0 */
|
|
4098
4100
|
class AuditedEntityWithUserDto extends AuditedEntityDto {
|
|
4099
4101
|
constructor(initialValues = {}) {
|
|
4100
4102
|
super(initialValues);
|
|
@@ -4105,6 +4107,7 @@ class FullAuditedEntityDto extends AuditedEntityDto {
|
|
|
4105
4107
|
super(initialValues);
|
|
4106
4108
|
}
|
|
4107
4109
|
}
|
|
4110
|
+
/** @deprecated the class signature will change in v8.0 */
|
|
4108
4111
|
class FullAuditedEntityWithUserDto extends FullAuditedEntityDto {
|
|
4109
4112
|
constructor(initialValues = {}) {
|
|
4110
4113
|
super(initialValues);
|
|
@@ -4151,10 +4154,10 @@ class AbpApiDefinitionService {
|
|
|
4151
4154
|
params: { includeTypes: model.includeTypes },
|
|
4152
4155
|
}, { apiName: this.apiName });
|
|
4153
4156
|
}
|
|
4154
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4155
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApiDefinitionService, deps: [{ token: RestService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4158
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApiDefinitionService, providedIn: 'root' }); }
|
|
4156
4159
|
}
|
|
4157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: AbpApiDefinitionService, decorators: [{
|
|
4158
4161
|
type: Injectable,
|
|
4159
4162
|
args: [{
|
|
4160
4163
|
providedIn: 'root',
|
|
@@ -4593,10 +4596,10 @@ class ApiInterceptor {
|
|
|
4593
4596
|
this.httpWaitService.addRequest(request);
|
|
4594
4597
|
return next.handle(request).pipe(finalize(() => this.httpWaitService.deleteRequest(request)));
|
|
4595
4598
|
}
|
|
4596
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.
|
|
4597
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.
|
|
4599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ApiInterceptor, deps: [{ token: HttpWaitService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4600
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ApiInterceptor, providedIn: 'root' }); }
|
|
4598
4601
|
}
|
|
4599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.
|
|
4602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.11", ngImport: i0, type: ApiInterceptor, decorators: [{
|
|
4600
4603
|
type: Injectable,
|
|
4601
4604
|
args: [{
|
|
4602
4605
|
providedIn: 'root',
|