@onecx/ngrx-integration-interface 7.1.0 → 8.0.0-rc.6
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/README.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
|
-
# ngrx-integration-interface
|
|
1
|
+
# @onecx/ngrx-integration-interface
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
`@onecx/ngrx-integration-interface` contains integration services and utilities for integrating NgRx state management with OneCX platform services.
|
|
4
|
+
More information about OneCX libraries can be found in the [OneCX documentation](https://onecx.github.io/docs/documentation/current/onecx-portal-ui-libs/index.html).
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
## Installation
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
```bash
|
|
9
|
+
npm install @onecx/ngrx-integration-interface
|
|
10
|
+
```
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
## Additional Commands
|
|
13
|
+
- `npx nx run ngrx-integration-interface:build` - Builds the library and outputs the result to the `dist` folder.
|
|
14
|
+
- `npx nx run ngrx-integration-interface:build-migrations` - Builds the migration files for the library.
|
|
15
|
+
- `npx nx run ngrx-integration-interface:test` - Runs the unit tests for the library.
|
|
16
|
+
- `npx nx run ngrx-integration-interface:lint` - Lints the library's codebase.
|
|
17
|
+
- `npx nx run ngrx-integration-interface:release` - Releases a new version of the library to npm, following semantic versioning guidelines.
|
|
@@ -4,7 +4,7 @@ import { createActionGroup, props, Store, createReducer, on, createFeatureSelect
|
|
|
4
4
|
import { EventsTopic, EventType, CurrentThemeTopic } from '@onecx/integration-interface';
|
|
5
5
|
import { filter } from 'rxjs';
|
|
6
6
|
import { AppStateService, ShellCapabilityService, Capability, UserService, ConfigurationService, AppConfigService } from '@onecx/angular-integration-interface';
|
|
7
|
-
import { __decorate
|
|
7
|
+
import { __decorate } from 'tslib';
|
|
8
8
|
import { untilDestroyed, UntilDestroy } from '@ngneat/until-destroy';
|
|
9
9
|
|
|
10
10
|
const OneCxActions = createActionGroup({
|
|
@@ -55,10 +55,10 @@ class NavigatedEventStoreConnectorService {
|
|
|
55
55
|
ngOnDestroy() {
|
|
56
56
|
this._eventsTopic$?.destroy();
|
|
57
57
|
}
|
|
58
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
59
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
58
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: NavigatedEventStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
59
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: NavigatedEventStoreConnectorService }); }
|
|
60
60
|
}
|
|
61
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
61
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: NavigatedEventStoreConnectorService, decorators: [{
|
|
62
62
|
type: Injectable
|
|
63
63
|
}], ctorParameters: () => [] });
|
|
64
64
|
|
|
@@ -78,14 +78,13 @@ let PermissionsStoreConnectorService = class PermissionsStoreConnectorService {
|
|
|
78
78
|
this.store.dispatch(OneCxActions.permissionsChanged({ permissions }));
|
|
79
79
|
});
|
|
80
80
|
}
|
|
81
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
82
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
81
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: PermissionsStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
82
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: PermissionsStoreConnectorService }); }
|
|
83
83
|
};
|
|
84
84
|
PermissionsStoreConnectorService = __decorate([
|
|
85
|
-
UntilDestroy()
|
|
86
|
-
__metadata("design:paramtypes", [])
|
|
85
|
+
UntilDestroy()
|
|
87
86
|
], PermissionsStoreConnectorService);
|
|
88
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
87
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: PermissionsStoreConnectorService, decorators: [{
|
|
89
88
|
type: Injectable
|
|
90
89
|
}], ctorParameters: () => [] });
|
|
91
90
|
|
|
@@ -105,14 +104,13 @@ let ConfigurationStoreConnectorService = class ConfigurationStoreConnectorServic
|
|
|
105
104
|
}
|
|
106
105
|
});
|
|
107
106
|
}
|
|
108
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
109
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
107
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: ConfigurationStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
108
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: ConfigurationStoreConnectorService }); }
|
|
110
109
|
};
|
|
111
110
|
ConfigurationStoreConnectorService = __decorate([
|
|
112
|
-
UntilDestroy()
|
|
113
|
-
__metadata("design:paramtypes", [])
|
|
111
|
+
UntilDestroy()
|
|
114
112
|
], ConfigurationStoreConnectorService);
|
|
115
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: ConfigurationStoreConnectorService, decorators: [{
|
|
116
114
|
type: Injectable
|
|
117
115
|
}], ctorParameters: () => [] });
|
|
118
116
|
|
|
@@ -132,14 +130,13 @@ let CurrentMfeStoreConnectorService = class CurrentMfeStoreConnectorService {
|
|
|
132
130
|
this.store.dispatch(OneCxActions.currentMfeChanged({ currentMfe }));
|
|
133
131
|
});
|
|
134
132
|
}
|
|
135
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
136
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentMfeStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
134
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentMfeStoreConnectorService }); }
|
|
137
135
|
};
|
|
138
136
|
CurrentMfeStoreConnectorService = __decorate([
|
|
139
|
-
UntilDestroy()
|
|
140
|
-
__metadata("design:paramtypes", [])
|
|
137
|
+
UntilDestroy()
|
|
141
138
|
], CurrentMfeStoreConnectorService);
|
|
142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentMfeStoreConnectorService, decorators: [{
|
|
143
140
|
type: Injectable
|
|
144
141
|
}], ctorParameters: () => [] });
|
|
145
142
|
|
|
@@ -159,14 +156,13 @@ let CurrentPageStoreConnectorService = class CurrentPageStoreConnectorService {
|
|
|
159
156
|
this.store.dispatch(OneCxActions.currentPageChanged({ currentPage }));
|
|
160
157
|
});
|
|
161
158
|
}
|
|
162
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
163
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
159
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentPageStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
160
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentPageStoreConnectorService }); }
|
|
164
161
|
};
|
|
165
162
|
CurrentPageStoreConnectorService = __decorate([
|
|
166
|
-
UntilDestroy()
|
|
167
|
-
__metadata("design:paramtypes", [])
|
|
163
|
+
UntilDestroy()
|
|
168
164
|
], CurrentPageStoreConnectorService);
|
|
169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentPageStoreConnectorService, decorators: [{
|
|
170
166
|
type: Injectable
|
|
171
167
|
}], ctorParameters: () => [] });
|
|
172
168
|
|
|
@@ -189,14 +185,13 @@ let CurrentThemeStoreConnectorService = class CurrentThemeStoreConnectorService
|
|
|
189
185
|
ngOnDestroy() {
|
|
190
186
|
this.currentThemeTopic$.destroy();
|
|
191
187
|
}
|
|
192
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
193
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
188
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentThemeStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
189
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentThemeStoreConnectorService }); }
|
|
194
190
|
};
|
|
195
191
|
CurrentThemeStoreConnectorService = __decorate([
|
|
196
|
-
UntilDestroy()
|
|
197
|
-
__metadata("design:paramtypes", [])
|
|
192
|
+
UntilDestroy()
|
|
198
193
|
], CurrentThemeStoreConnectorService);
|
|
199
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentThemeStoreConnectorService, decorators: [{
|
|
200
195
|
type: Injectable
|
|
201
196
|
}], ctorParameters: () => [] });
|
|
202
197
|
|
|
@@ -216,14 +211,13 @@ let CurrentWorkspaceStoreConnectorService = class CurrentWorkspaceStoreConnector
|
|
|
216
211
|
this.store.dispatch(OneCxActions.currentWorkspaceChanged({ currentWorkspace }));
|
|
217
212
|
});
|
|
218
213
|
}
|
|
219
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
220
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
214
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentWorkspaceStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
215
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentWorkspaceStoreConnectorService }); }
|
|
221
216
|
};
|
|
222
217
|
CurrentWorkspaceStoreConnectorService = __decorate([
|
|
223
|
-
UntilDestroy()
|
|
224
|
-
__metadata("design:paramtypes", [])
|
|
218
|
+
UntilDestroy()
|
|
225
219
|
], CurrentWorkspaceStoreConnectorService);
|
|
226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: CurrentWorkspaceStoreConnectorService, decorators: [{
|
|
227
221
|
type: Injectable
|
|
228
222
|
}], ctorParameters: () => [] });
|
|
229
223
|
|
|
@@ -243,14 +237,13 @@ let AppConfigStoreConnectorService = class AppConfigStoreConnectorService {
|
|
|
243
237
|
this.store.dispatch(OneCxActions.appConfigChanged({ appConfig }));
|
|
244
238
|
});
|
|
245
239
|
}
|
|
246
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
247
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: AppConfigStoreConnectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
241
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: AppConfigStoreConnectorService }); }
|
|
248
242
|
};
|
|
249
243
|
AppConfigStoreConnectorService = __decorate([
|
|
250
|
-
UntilDestroy()
|
|
251
|
-
__metadata("design:paramtypes", [])
|
|
244
|
+
UntilDestroy()
|
|
252
245
|
], AppConfigStoreConnectorService);
|
|
253
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImport: i0, type: AppConfigStoreConnectorService, decorators: [{
|
|
254
247
|
type: Injectable
|
|
255
248
|
}], ctorParameters: () => [] });
|
|
256
249
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onecx-ngrx-integration-interface.mjs","sources":["../../../../libs/ngrx-integration-interface/src/lib/store-connector/onecx-actions.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/navigated-event-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/permissions-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/configuration-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-mfe-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-page-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-theme-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-workspace-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/app-config-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/onecx-reducer.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/onecx-selectors.ts","../../../../libs/ngrx-integration-interface/src/index.ts","../../../../libs/ngrx-integration-interface/src/onecx-ngrx-integration-interface.ts"],"sourcesContent":["import { createActionGroup, props } from '@ngrx/store'\nimport { MfeInfo, PageInfo, Theme, UserProfile, Workspace } from '@onecx/integration-interface'\n\nexport const OneCxActions = createActionGroup({\n source: 'OneCX',\n events: {\n navigated: props<{\n event: undefined | unknown\n }>(),\n permissionsChanged: props<{\n permissions: string[]\n }>(),\n configChanged: props<{\n config: { [key: string]: string }\n }>(),\n currentMfeChanged: props<{\n currentMfe: MfeInfo\n }>(),\n currentPageChanged: props<{\n currentPage: PageInfo | undefined\n }>(),\n currentThemeChanged: props<{\n currentTheme: Theme\n }>(),\n currentWorkspaceChanged: props<{\n currentWorkspace: Workspace\n }>(),\n appConfigChanged: props<{\n appConfig: { [key: string]: string }\n }>(),\n userProfileChanged: props<{\n userProfile: UserProfile\n }>(),\n },\n})\n","import { Injectable, OnDestroy, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { EventsTopic, EventType } from '@onecx/integration-interface'\nimport { filter } from 'rxjs'\nimport { CurrentLocationTopicPayload, TopicEventType } from '@onecx/integration-interface'\nimport { Capability, ShellCapabilityService } from '@onecx/angular-integration-interface'\nimport { Observable } from 'rxjs'\nimport { OneCxActions } from '../onecx-actions'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideNavigatedEventStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(NavigatedEventStoreConnectorService)),\n NavigatedEventStoreConnectorService,\n ]\n}\n\n@Injectable()\nexport class NavigatedEventStoreConnectorService implements OnDestroy {\n private appStateService = inject(AppStateService)\n private capabilityService = inject(ShellCapabilityService)\n private _eventsTopic$: EventsTopic | undefined\n get eventsTopic$() {\n this._eventsTopic$ ??= new EventsTopic()\n return this._eventsTopic$\n }\n set eventsTopic$(source: EventsTopic) {\n this._eventsTopic$ = source\n }\n private store = inject(Store)\n constructor() {\n let observable: Observable<TopicEventType | CurrentLocationTopicPayload> =\n this.appStateService.currentLocation$.asObservable()\n if (!this.capabilityService.hasCapability(Capability.CURRENT_LOCATION_TOPIC)) {\n observable = this.eventsTopic$.pipe(filter((e) => e.type === EventType.NAVIGATED))\n }\n observable.subscribe((navigatedEvent) => {\n let event: unknown = navigatedEvent as CurrentLocationTopicPayload\n if (!this.capabilityService.hasCapability(Capability.CURRENT_LOCATION_TOPIC)) {\n event = (navigatedEvent as TopicEventType).payload\n }\n this.store.dispatch(OneCxActions.navigated({ event }))\n })\n }\n ngOnDestroy(): void {\n this._eventsTopic$?.destroy()\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { UserService } from '@onecx/angular-integration-interface'\n\nexport function providePermissionsStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(PermissionsStoreConnectorService)),\n PermissionsStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class PermissionsStoreConnectorService {\n private userService = inject(UserService)\n private store = inject(Store)\n constructor() {\n this.userService.getPermissions()\n .pipe(untilDestroyed(this))\n .subscribe((permissions) => {\n this.store.dispatch(OneCxActions.permissionsChanged({ permissions }))\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { UntilDestroy } from '@ngneat/until-destroy'\nimport { Store } from '@ngrx/store'\nimport { ConfigurationService } from '@onecx/angular-integration-interface'\nimport { OneCxActions } from '../onecx-actions'\n\nexport function provideConfigurationStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(ConfigurationStoreConnectorService)),\n ConfigurationStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class ConfigurationStoreConnectorService {\n private configService = inject(ConfigurationService)\n private store = inject(Store)\n constructor() {\n this.configService.getConfig().then((config: any) => {\n if (config) {\n this.store.dispatch(OneCxActions.configChanged({ config }))\n }\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { MfeInfo } from '@onecx/integration-interface'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideCurrentMfeStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentMfeStoreConnectorService)),\n CurrentMfeStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentMfeStoreConnectorService {\n private appStateService = inject(AppStateService)\n private store = inject(Store)\n constructor() {\n this.appStateService.currentMfe$\n .pipe(untilDestroyed(this))\n .subscribe((currentMfe: MfeInfo) => {\n this.store.dispatch(OneCxActions.currentMfeChanged({ currentMfe }))\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { PageInfo } from '@onecx/integration-interface'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideCurrentPageStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentPageStoreConnectorService)),\n CurrentPageStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentPageStoreConnectorService {\n private appStateService = inject(AppStateService)\n private store = inject(Store)\n constructor() {\n this.appStateService.currentPage$\n .pipe(untilDestroyed(this))\n .subscribe((currentPage: PageInfo | undefined) => {\n this.store.dispatch(OneCxActions.currentPageChanged({ currentPage }))\n })\n }\n}\n","import { Injectable, OnDestroy, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { CurrentThemeTopic, Theme } from '@onecx/integration-interface'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\n\nexport function provideCurrentThemeStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentThemeStoreConnectorService)),\n CurrentThemeStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentThemeStoreConnectorService implements OnDestroy {\n private currentThemeTopic$ = new CurrentThemeTopic()\n private store = inject(Store)\n constructor() {\n this.currentThemeTopic$\n .pipe(untilDestroyed(this))\n .subscribe((currentTheme: Theme) => {\n this.store.dispatch(OneCxActions.currentThemeChanged({ currentTheme }))\n })\n }\n ngOnDestroy(): void {\n this.currentThemeTopic$.destroy()\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { Workspace } from '@onecx/integration-interface'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideCurrentWorkspaceStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentWorkspaceStoreConnectorService)),\n CurrentWorkspaceStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentWorkspaceStoreConnectorService {\n private appStateService = inject(AppStateService)\n private store = inject(Store)\n constructor() {\n this.appStateService.currentWorkspace$\n .pipe(untilDestroyed(this))\n .subscribe((currentWorkspace: Workspace) => {\n this.store.dispatch(OneCxActions.currentWorkspaceChanged({ currentWorkspace }))\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { AppConfigService } from '@onecx/angular-integration-interface'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\n\nexport function provideAppConfigStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(AppConfigStoreConnectorService)),\n AppConfigStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class AppConfigStoreConnectorService {\n private appConfigService = inject(AppConfigService)\n private store = inject(Store)\n constructor() {\n this.appConfigService.config$\n .pipe(untilDestroyed(this))\n .subscribe((appConfig) => {\n this.store.dispatch(OneCxActions.appConfigChanged({ appConfig }))\n })\n }\n}\n","import { createReducer, on } from '@ngrx/store'\nimport { OneCxActions } from './onecx-actions'\nimport { OneCxState } from './onecx-state'\nimport { NavigatedEventPayload } from '@onecx/integration-interface'\n\nexport const oneCxReducer = createReducer<OneCxState>(\n {},\n on(\n OneCxActions.navigated,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n location: action.event as NavigatedEventPayload,\n })\n ),\n on(\n OneCxActions.permissionsChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n permissions: action.permissions,\n })\n ),\n on(\n OneCxActions.configChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n config: action.config,\n })\n ),\n on(\n OneCxActions.currentMfeChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentMfe: action.currentMfe,\n })\n ),\n on(\n OneCxActions.currentPageChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentPage: action.currentPage,\n })\n ),\n on(\n OneCxActions.currentThemeChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentTheme: action.currentTheme,\n })\n ),\n on(\n OneCxActions.currentWorkspaceChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentWorkspace: action.currentWorkspace,\n })\n ),\n on(\n OneCxActions.appConfigChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n appConfig: action.appConfig,\n })\n ),\n on(\n OneCxActions.userProfileChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n userProfile: action.userProfile,\n })\n )\n)\n","import { MemoizedSelector, createFeatureSelector, createSelector } from '@ngrx/store'\nimport { OneCxState } from './onecx-state'\nimport { LocationState } from './onecx-state'\nimport { MfeInfo, PageInfo, Theme, Workspace, UserProfile } from '@onecx/integration-interface'\n\nexport function createOneCxSelector<State extends Record<string, any>>(): MemoizedSelector<State, OneCxState> {\n return createFeatureSelector('onecx')\n}\n\nexport type OneCxSelectors<V> = {\n selectLocation: MemoizedSelector<V, LocationState | undefined>\n selectBackNavigationPossible: MemoizedSelector<V, boolean>\n selectPermissions: MemoizedSelector<V, string[] | undefined>\n selectConfig: MemoizedSelector<V, { [key: string]: string } | undefined>\n selectCurrentMfe: MemoizedSelector<V, MfeInfo | undefined>\n selectCurrentPage: MemoizedSelector<V, PageInfo | undefined>\n selectCurrentTheme: MemoizedSelector<V, Theme | undefined>\n selectCurrentWorkspace: MemoizedSelector<V, Workspace | undefined>\n selectAppConfig: MemoizedSelector<V, { [key: string]: string } | undefined>\n selectUserProfile: MemoizedSelector<V, UserProfile | undefined>\n}\n\nexport function getOneCxSelectors<V extends Record<string, any>>(\n selectState: (state: V) => OneCxState = createOneCxSelector<V>()\n): OneCxSelectors<V> {\n const selectLocation = createSelector(selectState, (state) => state.location)\n const selectBackNavigationPossible = createSelector(selectLocation, (location) => !!location && !location?.isFirst)\n const selectPermissions = createSelector(selectState, (state) => state.permissions)\n const selectConfig = createSelector(selectState, (state) => state.config)\n const selectCurrentMfe = createSelector(selectState, (state) => state.currentMfe)\n const selectCurrentPage = createSelector(selectState, (state) => state.currentPage)\n const selectCurrentTheme = createSelector(selectState, (state) => state.currentTheme)\n const selectCurrentWorkspace = createSelector(selectState, (state) => state.currentWorkspace)\n const selectAppConfig = createSelector(selectState, (state) => state.appConfig)\n const selectUserProfile = createSelector(selectState, (state) => state.userProfile)\n return {\n selectLocation,\n selectBackNavigationPossible,\n selectPermissions,\n selectConfig,\n selectCurrentMfe,\n selectCurrentPage,\n selectCurrentTheme,\n selectCurrentWorkspace,\n selectAppConfig,\n selectUserProfile,\n }\n}\n","// Store Connector\nexport * from './lib/store-connector/store-connectors'\n\nexport * from './lib/store-connector/onecx-actions'\nexport * from './lib/store-connector/onecx-reducer'\nexport * from './lib/store-connector/onecx-selectors'\nexport * from './lib/store-connector/onecx-state'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"onecx-ngrx-integration-interface.mjs","sources":["../../../../libs/ngrx-integration-interface/src/lib/store-connector/onecx-actions.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/navigated-event-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/permissions-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/configuration-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-mfe-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-page-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-theme-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/current-workspace-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/store-connectors/app-config-store-connector-service.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/onecx-reducer.ts","../../../../libs/ngrx-integration-interface/src/lib/store-connector/onecx-selectors.ts","../../../../libs/ngrx-integration-interface/src/index.ts","../../../../libs/ngrx-integration-interface/src/onecx-ngrx-integration-interface.ts"],"sourcesContent":["import { createActionGroup, props } from '@ngrx/store'\nimport { MfeInfo, PageInfo, Theme, UserProfile, Workspace } from '@onecx/integration-interface'\n\nexport const OneCxActions = createActionGroup({\n source: 'OneCX',\n events: {\n navigated: props<{\n event: undefined | unknown\n }>(),\n permissionsChanged: props<{\n permissions: string[]\n }>(),\n configChanged: props<{\n config: { [key: string]: string }\n }>(),\n currentMfeChanged: props<{\n currentMfe: MfeInfo\n }>(),\n currentPageChanged: props<{\n currentPage: PageInfo | undefined\n }>(),\n currentThemeChanged: props<{\n currentTheme: Theme\n }>(),\n currentWorkspaceChanged: props<{\n currentWorkspace: Workspace\n }>(),\n appConfigChanged: props<{\n appConfig: { [key: string]: string }\n }>(),\n userProfileChanged: props<{\n userProfile: UserProfile\n }>(),\n },\n})\n","import { Injectable, OnDestroy, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { EventsTopic, EventType } from '@onecx/integration-interface'\nimport { filter } from 'rxjs'\nimport { CurrentLocationTopicPayload, TopicEventType } from '@onecx/integration-interface'\nimport { Capability, ShellCapabilityService } from '@onecx/angular-integration-interface'\nimport { Observable } from 'rxjs'\nimport { OneCxActions } from '../onecx-actions'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideNavigatedEventStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(NavigatedEventStoreConnectorService)),\n NavigatedEventStoreConnectorService,\n ]\n}\n\n@Injectable()\nexport class NavigatedEventStoreConnectorService implements OnDestroy {\n private appStateService = inject(AppStateService)\n private capabilityService = inject(ShellCapabilityService)\n private _eventsTopic$: EventsTopic | undefined\n get eventsTopic$() {\n this._eventsTopic$ ??= new EventsTopic()\n return this._eventsTopic$\n }\n set eventsTopic$(source: EventsTopic) {\n this._eventsTopic$ = source\n }\n private store = inject(Store)\n constructor() {\n let observable: Observable<TopicEventType | CurrentLocationTopicPayload> =\n this.appStateService.currentLocation$.asObservable()\n if (!this.capabilityService.hasCapability(Capability.CURRENT_LOCATION_TOPIC)) {\n observable = this.eventsTopic$.pipe(filter((e) => e.type === EventType.NAVIGATED))\n }\n observable.subscribe((navigatedEvent) => {\n let event: unknown = navigatedEvent as CurrentLocationTopicPayload\n if (!this.capabilityService.hasCapability(Capability.CURRENT_LOCATION_TOPIC)) {\n event = (navigatedEvent as TopicEventType).payload\n }\n this.store.dispatch(OneCxActions.navigated({ event }))\n })\n }\n ngOnDestroy(): void {\n this._eventsTopic$?.destroy()\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { UserService } from '@onecx/angular-integration-interface'\n\nexport function providePermissionsStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(PermissionsStoreConnectorService)),\n PermissionsStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class PermissionsStoreConnectorService {\n private userService = inject(UserService)\n private store = inject(Store)\n constructor() {\n this.userService.getPermissions()\n .pipe(untilDestroyed(this))\n .subscribe((permissions) => {\n this.store.dispatch(OneCxActions.permissionsChanged({ permissions }))\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { UntilDestroy } from '@ngneat/until-destroy'\nimport { Store } from '@ngrx/store'\nimport { ConfigurationService } from '@onecx/angular-integration-interface'\nimport { OneCxActions } from '../onecx-actions'\n\nexport function provideConfigurationStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(ConfigurationStoreConnectorService)),\n ConfigurationStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class ConfigurationStoreConnectorService {\n private configService = inject(ConfigurationService)\n private store = inject(Store)\n constructor() {\n this.configService.getConfig().then((config: any) => {\n if (config) {\n this.store.dispatch(OneCxActions.configChanged({ config }))\n }\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { MfeInfo } from '@onecx/integration-interface'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideCurrentMfeStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentMfeStoreConnectorService)),\n CurrentMfeStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentMfeStoreConnectorService {\n private appStateService = inject(AppStateService)\n private store = inject(Store)\n constructor() {\n this.appStateService.currentMfe$\n .pipe(untilDestroyed(this))\n .subscribe((currentMfe: MfeInfo) => {\n this.store.dispatch(OneCxActions.currentMfeChanged({ currentMfe }))\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { PageInfo } from '@onecx/integration-interface'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideCurrentPageStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentPageStoreConnectorService)),\n CurrentPageStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentPageStoreConnectorService {\n private appStateService = inject(AppStateService)\n private store = inject(Store)\n constructor() {\n this.appStateService.currentPage$\n .pipe(untilDestroyed(this))\n .subscribe((currentPage: PageInfo | undefined) => {\n this.store.dispatch(OneCxActions.currentPageChanged({ currentPage }))\n })\n }\n}\n","import { Injectable, OnDestroy, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { CurrentThemeTopic, Theme } from '@onecx/integration-interface'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\n\nexport function provideCurrentThemeStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentThemeStoreConnectorService)),\n CurrentThemeStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentThemeStoreConnectorService implements OnDestroy {\n private currentThemeTopic$ = new CurrentThemeTopic()\n private store = inject(Store)\n constructor() {\n this.currentThemeTopic$\n .pipe(untilDestroyed(this))\n .subscribe((currentTheme: Theme) => {\n this.store.dispatch(OneCxActions.currentThemeChanged({ currentTheme }))\n })\n }\n ngOnDestroy(): void {\n this.currentThemeTopic$.destroy()\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\nimport { Workspace } from '@onecx/integration-interface'\nimport { AppStateService } from '@onecx/angular-integration-interface'\n\nexport function provideCurrentWorkspaceStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(CurrentWorkspaceStoreConnectorService)),\n CurrentWorkspaceStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class CurrentWorkspaceStoreConnectorService {\n private appStateService = inject(AppStateService)\n private store = inject(Store)\n constructor() {\n this.appStateService.currentWorkspace$\n .pipe(untilDestroyed(this))\n .subscribe((currentWorkspace: Workspace) => {\n this.store.dispatch(OneCxActions.currentWorkspaceChanged({ currentWorkspace }))\n })\n }\n}\n","import { Injectable, inject, provideEnvironmentInitializer } from '@angular/core'\nimport { Store } from '@ngrx/store'\nimport { OneCxActions } from '../onecx-actions'\nimport { AppConfigService } from '@onecx/angular-integration-interface'\nimport { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'\n\nexport function provideAppConfigStoreConnector() {\n return [\n provideEnvironmentInitializer(() => inject(AppConfigStoreConnectorService)),\n AppConfigStoreConnectorService,\n ]\n}\n\n@UntilDestroy()\n@Injectable()\nexport class AppConfigStoreConnectorService {\n private appConfigService = inject(AppConfigService)\n private store = inject(Store)\n constructor() {\n this.appConfigService.config$\n .pipe(untilDestroyed(this))\n .subscribe((appConfig) => {\n this.store.dispatch(OneCxActions.appConfigChanged({ appConfig }))\n })\n }\n}\n","import { createReducer, on } from '@ngrx/store'\nimport { OneCxActions } from './onecx-actions'\nimport { OneCxState } from './onecx-state'\nimport { NavigatedEventPayload } from '@onecx/integration-interface'\n\nexport const oneCxReducer = createReducer<OneCxState>(\n {},\n on(\n OneCxActions.navigated,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n location: action.event as NavigatedEventPayload,\n })\n ),\n on(\n OneCxActions.permissionsChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n permissions: action.permissions,\n })\n ),\n on(\n OneCxActions.configChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n config: action.config,\n })\n ),\n on(\n OneCxActions.currentMfeChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentMfe: action.currentMfe,\n })\n ),\n on(\n OneCxActions.currentPageChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentPage: action.currentPage,\n })\n ),\n on(\n OneCxActions.currentThemeChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentTheme: action.currentTheme,\n })\n ),\n on(\n OneCxActions.currentWorkspaceChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n currentWorkspace: action.currentWorkspace,\n })\n ),\n on(\n OneCxActions.appConfigChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n appConfig: action.appConfig,\n })\n ),\n on(\n OneCxActions.userProfileChanged,\n (state: OneCxState, action): OneCxState => ({\n ...state,\n userProfile: action.userProfile,\n })\n )\n)\n","import { MemoizedSelector, createFeatureSelector, createSelector } from '@ngrx/store'\nimport { OneCxState } from './onecx-state'\nimport { LocationState } from './onecx-state'\nimport { MfeInfo, PageInfo, Theme, Workspace, UserProfile } from '@onecx/integration-interface'\n\nexport function createOneCxSelector<State extends Record<string, any>>(): MemoizedSelector<State, OneCxState> {\n return createFeatureSelector('onecx')\n}\n\nexport type OneCxSelectors<V> = {\n selectLocation: MemoizedSelector<V, LocationState | undefined>\n selectBackNavigationPossible: MemoizedSelector<V, boolean>\n selectPermissions: MemoizedSelector<V, string[] | undefined>\n selectConfig: MemoizedSelector<V, { [key: string]: string } | undefined>\n selectCurrentMfe: MemoizedSelector<V, MfeInfo | undefined>\n selectCurrentPage: MemoizedSelector<V, PageInfo | undefined>\n selectCurrentTheme: MemoizedSelector<V, Theme | undefined>\n selectCurrentWorkspace: MemoizedSelector<V, Workspace | undefined>\n selectAppConfig: MemoizedSelector<V, { [key: string]: string } | undefined>\n selectUserProfile: MemoizedSelector<V, UserProfile | undefined>\n}\n\nexport function getOneCxSelectors<V extends Record<string, any>>(\n selectState: (state: V) => OneCxState = createOneCxSelector<V>()\n): OneCxSelectors<V> {\n const selectLocation = createSelector(selectState, (state) => state.location)\n const selectBackNavigationPossible = createSelector(selectLocation, (location) => !!location && !location?.isFirst)\n const selectPermissions = createSelector(selectState, (state) => state.permissions)\n const selectConfig = createSelector(selectState, (state) => state.config)\n const selectCurrentMfe = createSelector(selectState, (state) => state.currentMfe)\n const selectCurrentPage = createSelector(selectState, (state) => state.currentPage)\n const selectCurrentTheme = createSelector(selectState, (state) => state.currentTheme)\n const selectCurrentWorkspace = createSelector(selectState, (state) => state.currentWorkspace)\n const selectAppConfig = createSelector(selectState, (state) => state.appConfig)\n const selectUserProfile = createSelector(selectState, (state) => state.userProfile)\n return {\n selectLocation,\n selectBackNavigationPossible,\n selectPermissions,\n selectConfig,\n selectCurrentMfe,\n selectCurrentPage,\n selectCurrentTheme,\n selectCurrentWorkspace,\n selectAppConfig,\n selectUserProfile,\n }\n}\n","// Store Connector\nexport * from './lib/store-connector/store-connectors'\n\nexport * from './lib/store-connector/onecx-actions'\nexport * from './lib/store-connector/onecx-reducer'\nexport * from './lib/store-connector/onecx-selectors'\nexport * from './lib/store-connector/onecx-state'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,30 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onecx/ngrx-integration-interface",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-rc.6",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/onecx/onecx-portal-ui-libs"
|
|
8
8
|
},
|
|
9
9
|
"peerDependencies": {
|
|
10
|
-
"@angular/core": "^
|
|
11
|
-
"@ngrx/store": "^
|
|
12
|
-
"@onecx/angular-integration-interface": "^
|
|
13
|
-
"@onecx/integration-interface": "^
|
|
10
|
+
"@angular/core": "^21.0.0",
|
|
11
|
+
"@ngrx/store": "^21.0.0",
|
|
12
|
+
"@onecx/angular-integration-interface": "^8.0.0-rc.6",
|
|
13
|
+
"@onecx/integration-interface": "^8.0.0-rc.6",
|
|
14
14
|
"@ngneat/until-destroy": "^10.0.0",
|
|
15
|
-
"rxjs": "^7.8.1"
|
|
15
|
+
"rxjs": "^7.8.1",
|
|
16
|
+
"@onecx/accelerator": "^8.0.0-rc.6"
|
|
16
17
|
},
|
|
17
18
|
"publishConfig": {
|
|
18
19
|
"access": "public"
|
|
19
20
|
},
|
|
20
21
|
"module": "fesm2022/onecx-ngrx-integration-interface.mjs",
|
|
21
|
-
"typings": "
|
|
22
|
+
"typings": "types/onecx-ngrx-integration-interface.d.ts",
|
|
22
23
|
"exports": {
|
|
23
24
|
"./package.json": {
|
|
24
25
|
"default": "./package.json"
|
|
25
26
|
},
|
|
26
27
|
".": {
|
|
27
|
-
"types": "./
|
|
28
|
+
"types": "./types/onecx-ngrx-integration-interface.d.ts",
|
|
28
29
|
"default": "./fesm2022/onecx-ngrx-integration-interface.mjs"
|
|
29
30
|
}
|
|
30
31
|
},
|
|
File without changes
|