@onecx/angular-integration-interface 5.3.0 → 5.3.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/services/app-state.service.mjs +3 -3
- package/esm2022/lib/services/configuration.service.mjs +3 -3
- package/esm2022/lib/services/initialize-module-guard.service.mjs +3 -3
- package/esm2022/lib/services/portal-message.service.mjs +3 -3
- package/esm2022/lib/services/remote-components.service.mjs +3 -3
- package/esm2022/lib/services/theme.service.mjs +3 -3
- package/esm2022/lib/services/user.service.mjs +3 -3
- package/esm2022/lib/services/workspace.service.mjs +3 -3
- package/esm2022/mocks/app-state-service-mock.mjs +3 -3
- package/fesm2022/onecx-angular-integration-interface-mocks.mjs +3 -3
- package/fesm2022/onecx-angular-integration-interface.mjs +24 -24
- package/package.json +1 -1
@@ -35,10 +35,10 @@ export class AppStateService {
|
|
35
35
|
this.currentWorkspace$.destroy();
|
36
36
|
this.isAuthenticated$.destroy();
|
37
37
|
}
|
38
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
39
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
38
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
39
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateService, providedIn: 'root' }); }
|
40
40
|
}
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateService, decorators: [{
|
42
42
|
type: Injectable,
|
43
43
|
args: [{ providedIn: 'root' }]
|
44
44
|
}] });
|
@@ -64,10 +64,10 @@ export class ConfigurationService {
|
|
64
64
|
getConfig() {
|
65
65
|
return this.config$.getValue();
|
66
66
|
}
|
67
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
68
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
67
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ConfigurationService, deps: [{ token: i1.HttpClient }, { token: APP_CONFIG, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
68
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ConfigurationService, providedIn: 'root' }); }
|
69
69
|
}
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ConfigurationService, decorators: [{
|
71
71
|
type: Injectable,
|
72
72
|
args: [{ providedIn: 'root' }]
|
73
73
|
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
@@ -50,10 +50,10 @@ export class InitializeModuleGuard {
|
|
50
50
|
}
|
51
51
|
return from(Promise.resolve(canActivateResult));
|
52
52
|
}
|
53
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
54
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
53
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InitializeModuleGuard, deps: [{ token: i1.TranslateService }, { token: i2.ConfigurationService }, { token: i3.AppStateService }, { token: i4.UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
54
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InitializeModuleGuard, providedIn: 'any' }); }
|
55
55
|
}
|
56
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
56
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InitializeModuleGuard, decorators: [{
|
57
57
|
type: Injectable,
|
58
58
|
args: [{ providedIn: 'any' }]
|
59
59
|
}], ctorParameters: () => [{ type: i1.TranslateService }, { type: i2.ConfigurationService }, { type: i3.AppStateService }, { type: i4.UserService }] });
|
@@ -39,10 +39,10 @@ export class PortalMessageService {
|
|
39
39
|
ngOnDestroy() {
|
40
40
|
this.message$.destroy();
|
41
41
|
}
|
42
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
43
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
42
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PortalMessageService, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
43
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PortalMessageService, providedIn: 'any' }); }
|
44
44
|
}
|
45
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
45
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PortalMessageService, decorators: [{
|
46
46
|
type: Injectable,
|
47
47
|
args: [{ providedIn: 'any' }]
|
48
48
|
}], ctorParameters: () => [{ type: i1.TranslateService }] });
|
@@ -8,10 +8,10 @@ export class RemoteComponentsService {
|
|
8
8
|
ngOnDestroy() {
|
9
9
|
this.remoteComponents$.destroy();
|
10
10
|
}
|
11
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
12
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RemoteComponentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RemoteComponentsService, providedIn: 'root' }); }
|
13
13
|
}
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RemoteComponentsService, decorators: [{
|
15
15
|
type: Injectable,
|
16
16
|
args: [{ providedIn: 'root' }]
|
17
17
|
}] });
|
@@ -38,10 +38,10 @@ export class ThemeService {
|
|
38
38
|
ngOnDestroy() {
|
39
39
|
this.currentTheme$.destroy();
|
40
40
|
}
|
41
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
42
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
41
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ThemeService, deps: [{ token: i1.ConfigurationService }, { token: i2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
42
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ThemeService, providedIn: 'root' }); }
|
43
43
|
}
|
44
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ThemeService, decorators: [{
|
45
45
|
type: Injectable,
|
46
46
|
args: [{ providedIn: 'root' }]
|
47
47
|
}], ctorParameters: () => [{ type: i1.ConfigurationService }, { type: i2.HttpClient }] });
|
@@ -76,10 +76,10 @@ export class UserService {
|
|
76
76
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
77
77
|
]).then(() => { });
|
78
78
|
}
|
79
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
80
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
79
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: UserService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
80
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
81
81
|
}
|
82
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
82
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: UserService, decorators: [{
|
83
83
|
type: Injectable,
|
84
84
|
args: [{ providedIn: 'root' }]
|
85
85
|
}], ctorParameters: () => [] });
|
@@ -115,10 +115,10 @@ export class WorkspaceService {
|
|
115
115
|
return String(value);
|
116
116
|
}
|
117
117
|
}
|
118
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
119
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
118
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: WorkspaceService, deps: [{ token: i1.AppStateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
119
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: WorkspaceService, providedIn: 'root' }); }
|
120
120
|
}
|
121
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: WorkspaceService, decorators: [{
|
122
122
|
type: Injectable,
|
123
123
|
args: [{
|
124
124
|
providedIn: 'root',
|
@@ -22,10 +22,10 @@ export class AppStateServiceMock {
|
|
22
22
|
this.currentWorkspace$ = new FakeTopic({ baseUrl: '/', microfrontendRegistrations: [], portalName: 'Test workspace', workspaceName: 'Test workspace' });
|
23
23
|
this.isAuthenticated$ = new FakeTopic(null);
|
24
24
|
}
|
25
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
26
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
25
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateServiceMock, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
26
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateServiceMock }); }
|
27
27
|
}
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateServiceMock, decorators: [{
|
29
29
|
type: Injectable
|
30
30
|
}] });
|
31
31
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLXN0YXRlLXNlcnZpY2UtbW9jay5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci1pbnRlZ3JhdGlvbi1pbnRlcmZhY2UvbW9ja3MvYXBwLXN0YXRlLXNlcnZpY2UtbW9jay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBRTFDLDJCQUEyQjtBQUMzQixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sc0NBQXNDLENBQUE7QUFDdEUsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGNBQWMsQ0FBQTs7QUFFeEM7O0dBRUc7QUFDSCxNQUFNLFVBQVUscUJBQXFCO0lBQ25DLE9BQU8sMEJBQTBCLEVBQUUsQ0FBQTtBQUNyQyxDQUFDO0FBRUQsTUFBTSxVQUFVLDBCQUEwQjtJQUN4QyxPQUFPLENBQUMsbUJBQW1CLEVBQUUsRUFBRSxPQUFPLEVBQUUsZUFBZSxFQUFFLFdBQVcsRUFBRSxtQkFBbUIsRUFBRSxDQUFDLENBQUE7QUFDOUYsQ0FBQztBQUdELE1BQU0sT0FBTyxtQkFBbUI7SUFEaEM7UUFFRSxpQkFBWSxHQUFHLElBQUksU0FBUyxFQUFFLENBQUE7UUFDOUIsbUJBQWMsR0FBRyxJQUFJLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQTtRQUNyQyxnQkFBVyxHQUFHLElBQUksU0FBUyxDQUFDLEVBQUUsU0FBUyxFQUFFLEdBQUcsRUFBRSxhQUFhLEVBQUUsR0FBRyxFQUFFLFFBQVEsRUFBRSxHQUFHLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxDQUFDLENBQUE7UUFDckcsaUJBQVksR0FBRyxJQUFJLFNBQVMsQ0FBdUIsU0FBUyxDQUFDLENBQUE7UUFDN0QsbUJBQWMsR0FBRyxJQUFJLFNBQVMsQ0FBWSxFQUFFLE9BQU8sRUFBRSxHQUFHLEVBQUUsMEJBQTBCLEVBQUUsRUFBRSxFQUFFLFVBQVUsRUFBRSxhQUFhLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxDQUFDLENBQUE7UUFDcEosc0JBQWlCLEdBQUcsSUFBSSxTQUFTLENBQVksRUFBRSxPQUFPLEVBQUUsR0FBRyxFQUFFLDBCQUEwQixFQUFFLEVBQUUsRUFBRSxVQUFVLEVBQUUsZ0JBQWdCLEVBQUUsYUFBYSxFQUFFLGdCQUFnQixFQUFFLENBQUMsQ0FBQTtRQUM3SixxQkFBZ0IsR0FBRyxJQUFJLFNBQVMsQ0FBTyxJQUFJLENBQUMsQ0FBQTtLQUM3Qzs4R0FSWSxtQkFBbUI7a0hBQW5CLG1CQUFtQjs7MkZBQW5CLG1CQUFtQjtrQkFEL0IsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgUGFnZUluZm8sIFdvcmtzcGFjZSB9IGZyb20gJ0BvbmVjeC9pbnRlZ3JhdGlvbi1pbnRlcmZhY2UnXG4vLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmVcbmltcG9ydCB7IEFwcFN0YXRlU2VydmljZSB9IGZyb20gJ0BvbmVjeC9hbmd1bGFyLWludGVncmF0aW9uLWludGVyZmFjZSdcbmltcG9ydCB7IEZha2VUb3BpYyB9IGZyb20gJy4vZmFrZS10b3BpYydcblxuLyoqXG4gKiBAZGVwcmVjYXRlZCB1c2UgcHJvdmlkZUFwcFN0YXRlU2VydmljZU1vY2soKVxuICovXG5leHBvcnQgZnVuY3Rpb24gcHJvdmlkZUFwcFNlcnZpY2VNb2NrKCkge1xuICByZXR1cm4gcHJvdmlkZUFwcFN0YXRlU2VydmljZU1vY2soKVxufVxuXG5leHBvcnQgZnVuY3Rpb24gcHJvdmlkZUFwcFN0YXRlU2VydmljZU1vY2soKSB7XG4gIHJldHVybiBbQXBwU3RhdGVTZXJ2aWNlTW9jaywgeyBwcm92aWRlOiBBcHBTdGF0ZVNlcnZpY2UsIHVzZUV4aXN0aW5nOiBBcHBTdGF0ZVNlcnZpY2VNb2NrIH1dXG59XG5cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBBcHBTdGF0ZVNlcnZpY2VNb2NrIHtcbiAgZ2xvYmFsRXJyb3IkID0gbmV3IEZha2VUb3BpYygpXG4gIGdsb2JhbExvYWRpbmckID0gbmV3IEZha2VUb3BpYyhmYWxzZSlcbiAgY3VycmVudE1mZSQgPSBuZXcgRmFrZVRvcGljKHsgbW91bnRQYXRoOiAnLycsIHJlbW90ZUJhc2VVcmw6ICcuJywgYmFzZUhyZWY6ICcvJywgc2hlbGxOYW1lOiAndGVzdCcgfSlcbiAgY3VycmVudFBhZ2UkID0gbmV3IEZha2VUb3BpYzxQYWdlSW5mbyB8IHVuZGVmaW5lZD4odW5kZWZpbmVkKVxuICBjdXJyZW50UG9ydGFsJCA9IG5ldyBGYWtlVG9waWM8V29ya3NwYWNlPih7IGJhc2VVcmw6ICcvJywgbWljcm9mcm9udGVuZFJlZ2lzdHJhdGlvbnM6IFtdLCBwb3J0YWxOYW1lOiAnVGVzdCBwb3J0YWwnLCB3b3Jrc3BhY2VOYW1lOiAnVGVzdCBwb3J0YWwnIH0pXG4gIGN1cnJlbnRXb3Jrc3BhY2UkID0gbmV3IEZha2VUb3BpYzxXb3Jrc3BhY2U+KHsgYmFzZVVybDogJy8nLCBtaWNyb2Zyb250ZW5kUmVnaXN0cmF0aW9uczogW10sIHBvcnRhbE5hbWU6ICdUZXN0IHdvcmtzcGFjZScsIHdvcmtzcGFjZU5hbWU6ICdUZXN0IHdvcmtzcGFjZScgfSlcbiAgaXNBdXRoZW50aWNhdGVkJCA9IG5ldyBGYWtlVG9waWM8bnVsbD4obnVsbClcbn1cbiJdfQ==
|
@@ -56,10 +56,10 @@ class AppStateServiceMock {
|
|
56
56
|
this.currentWorkspace$ = new FakeTopic({ baseUrl: '/', microfrontendRegistrations: [], portalName: 'Test workspace', workspaceName: 'Test workspace' });
|
57
57
|
this.isAuthenticated$ = new FakeTopic(null);
|
58
58
|
}
|
59
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
60
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
59
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateServiceMock, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
60
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateServiceMock }); }
|
61
61
|
}
|
62
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
62
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateServiceMock, decorators: [{
|
63
63
|
type: Injectable
|
64
64
|
}] });
|
65
65
|
|
@@ -40,10 +40,10 @@ class AppStateService {
|
|
40
40
|
this.currentWorkspace$.destroy();
|
41
41
|
this.isAuthenticated$.destroy();
|
42
42
|
}
|
43
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
44
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
43
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
44
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateService, providedIn: 'root' }); }
|
45
45
|
}
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
46
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: AppStateService, decorators: [{
|
47
47
|
type: Injectable,
|
48
48
|
args: [{ providedIn: 'root' }]
|
49
49
|
}] });
|
@@ -146,10 +146,10 @@ class ConfigurationService {
|
|
146
146
|
getConfig() {
|
147
147
|
return this.config$.getValue();
|
148
148
|
}
|
149
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
150
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
149
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ConfigurationService, deps: [{ token: i1.HttpClient }, { token: APP_CONFIG, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
150
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ConfigurationService, providedIn: 'root' }); }
|
151
151
|
}
|
152
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ConfigurationService, decorators: [{
|
153
153
|
type: Injectable,
|
154
154
|
args: [{ providedIn: 'root' }]
|
155
155
|
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
@@ -235,10 +235,10 @@ class UserService {
|
|
235
235
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
236
236
|
]).then(() => { });
|
237
237
|
}
|
238
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
239
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
238
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: UserService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
239
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
240
240
|
}
|
241
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: UserService, decorators: [{
|
242
242
|
type: Injectable,
|
243
243
|
args: [{ providedIn: 'root' }]
|
244
244
|
}], ctorParameters: () => [] });
|
@@ -278,10 +278,10 @@ class PortalMessageService {
|
|
278
278
|
ngOnDestroy() {
|
279
279
|
this.message$.destroy();
|
280
280
|
}
|
281
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
282
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
281
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PortalMessageService, deps: [{ token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
282
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PortalMessageService, providedIn: 'any' }); }
|
283
283
|
}
|
284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: PortalMessageService, decorators: [{
|
285
285
|
type: Injectable,
|
286
286
|
args: [{ providedIn: 'any' }]
|
287
287
|
}], ctorParameters: () => [{ type: i1$1.TranslateService }] });
|
@@ -317,10 +317,10 @@ class ThemeService {
|
|
317
317
|
ngOnDestroy() {
|
318
318
|
this.currentTheme$.destroy();
|
319
319
|
}
|
320
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
321
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
320
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ThemeService, deps: [{ token: ConfigurationService }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
321
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ThemeService, providedIn: 'root' }); }
|
322
322
|
}
|
323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: ThemeService, decorators: [{
|
324
324
|
type: Injectable,
|
325
325
|
args: [{ providedIn: 'root' }]
|
326
326
|
}], ctorParameters: () => [{ type: ConfigurationService }, { type: i1.HttpClient }] });
|
@@ -332,10 +332,10 @@ class RemoteComponentsService {
|
|
332
332
|
ngOnDestroy() {
|
333
333
|
this.remoteComponents$.destroy();
|
334
334
|
}
|
335
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
336
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
335
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RemoteComponentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
336
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RemoteComponentsService, providedIn: 'root' }); }
|
337
337
|
}
|
338
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: RemoteComponentsService, decorators: [{
|
339
339
|
type: Injectable,
|
340
340
|
args: [{ providedIn: 'root' }]
|
341
341
|
}] });
|
@@ -381,10 +381,10 @@ class InitializeModuleGuard {
|
|
381
381
|
}
|
382
382
|
return from(Promise.resolve(canActivateResult));
|
383
383
|
}
|
384
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
385
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
384
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InitializeModuleGuard, deps: [{ token: i1$1.TranslateService }, { token: ConfigurationService }, { token: AppStateService }, { token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
385
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InitializeModuleGuard, providedIn: 'any' }); }
|
386
386
|
}
|
387
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: InitializeModuleGuard, decorators: [{
|
388
388
|
type: Injectable,
|
389
389
|
args: [{ providedIn: 'any' }]
|
390
390
|
}], ctorParameters: () => [{ type: i1$1.TranslateService }, { type: ConfigurationService }, { type: AppStateService }, { type: UserService }] });
|
@@ -500,10 +500,10 @@ class WorkspaceService {
|
|
500
500
|
return String(value);
|
501
501
|
}
|
502
502
|
}
|
503
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.
|
504
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.
|
503
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: WorkspaceService, deps: [{ token: AppStateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
504
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: WorkspaceService, providedIn: 'root' }); }
|
505
505
|
}
|
506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.
|
506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.3", ngImport: i0, type: WorkspaceService, decorators: [{
|
507
507
|
type: Injectable,
|
508
508
|
args: [{
|
509
509
|
providedIn: 'root',
|