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