@eui/tools 4.17.4 → 4.17.5
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/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.17.
|
|
1
|
+
4.17.5
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 4.17.5 (2021-11-25)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* eui10 element creation adaptation MWP-7583 [MWP-7583](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-7583) ([0165130e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0165130e42ff83aa343bedb98da13c1c608f442f))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 4.17.4 (2021-11-24)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -46,6 +46,7 @@ import {
|
|
|
46
46
|
USER_SERVICE_HOST_TOKEN,
|
|
47
47
|
UserMapping,
|
|
48
48
|
UX_SERVICE_HOST_TOKEN,
|
|
49
|
+
UX_APP_SHELL_SERVICE_HOST_TOKEN,
|
|
49
50
|
UxAppShellServiceMapping,
|
|
50
51
|
} from '@csdr/integration';
|
|
51
52
|
import { RoutingModule } from './routing.module';
|
|
@@ -84,7 +85,7 @@ export function openidConnectInterceptorFactory(config) {
|
|
|
84
85
|
reducerProvider,
|
|
85
86
|
{
|
|
86
87
|
provide: EUI_CONFIG_TOKEN,
|
|
87
|
-
useValue: { appConfig, environment },
|
|
88
|
+
useValue: { appConfig: { ...appConfig, ...environment }, environment },
|
|
88
89
|
},
|
|
89
90
|
{
|
|
90
91
|
provide: HTTP_INTERCEPTORS,
|
|
@@ -123,6 +124,7 @@ export function openidConnectInterceptorFactory(config) {
|
|
|
123
124
|
// used in the el-mappers
|
|
124
125
|
{ provide: USER_SERVICE_HOST_TOKEN, useFactory: () => window['PROVIDERS']['UserService'] },
|
|
125
126
|
{ provide: UX_SERVICE_HOST_TOKEN, useFactory: () => window['PROVIDERS']['UxService'] },
|
|
127
|
+
{ provide: UX_APP_SHELL_SERVICE_HOST_TOKEN, useFactory: () => window['PROVIDERS']['UxAppShellService'] },
|
|
126
128
|
|
|
127
129
|
{
|
|
128
130
|
provide: PushNotificationsService,
|
|
@@ -143,9 +145,11 @@ export function openidConnectInterceptorFactory(config) {
|
|
|
143
145
|
router: Router,
|
|
144
146
|
storeService: StoreService,
|
|
145
147
|
iI18nService: I18nService,
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
148
|
+
hostUxService: any,
|
|
149
|
+
hostUxAppShellService: any) => new UxAppShellServiceMapping(
|
|
150
|
+
config, http, platformId, router, storeService, iI18nService, hostUxService, hostUxAppShellService),
|
|
151
|
+
deps: [CONFIG_TOKEN, HttpClient, PLATFORM_ID, Router, StoreService, I18nService,
|
|
152
|
+
UX_SERVICE_HOST_TOKEN, UX_APP_SHELL_SERVICE_HOST_TOKEN],
|
|
149
153
|
},
|
|
150
154
|
{ provide: ELEMENT_ROUTER_TOKEN, useFactory: () => window['PROVIDERS']['ELEMENT_ROUTER_TOKEN'], deps: [] },
|
|
151
155
|
// TODO[REMOTE-SETUP] uncomment if zipkin is used
|