@eui/tools 4.18.6 → 4.18.7
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.18.
|
|
1
|
+
4.18.7
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 4.18.7 (2022-01-03)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* quill cleanup MWP-7583 [MWP-7583](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-7583) ([f0916a9c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f0916a9cda61a182308f55b051d2d523feda21c8))
|
|
7
|
+
* add host-zone MWP-7583 [MWP-7583](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-7583) ([01cda40d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/01cda40db9d393c3ee8f24aa0a42239ad3f37c7a))
|
|
8
|
+
|
|
9
|
+
* * *
|
|
10
|
+
* * *
|
|
1
11
|
## 4.18.6 (2021-12-15)
|
|
2
12
|
|
|
3
13
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -53,6 +53,7 @@ import {
|
|
|
53
53
|
ELEMENT_ROUTER_TOKEN,
|
|
54
54
|
I18N_SERVICE_HOST_TOKEN,
|
|
55
55
|
I18nServiceMapping,
|
|
56
|
+
NG_ZONE_HOST_TOKEN,
|
|
56
57
|
PUSH_NOTIFICATION_SERVICE_HOST_TOKEN,
|
|
57
58
|
PushNotificationServiceMapping,
|
|
58
59
|
USER_SERVICE_HOST_TOKEN,
|
|
@@ -150,6 +151,7 @@ export function openidConnectInterceptorFactory(config) {
|
|
|
150
151
|
{ provide: USER_SERVICE_HOST_TOKEN, useFactory: () => window['PROVIDERS']['UserService'] },
|
|
151
152
|
{ provide: UX_SERVICE_HOST_TOKEN, useFactory: () => window['PROVIDERS']['UxService'] },
|
|
152
153
|
{ provide: UX_APP_SHELL_SERVICE_HOST_TOKEN, useFactory: () => window['PROVIDERS']['UxAppShellService'] },
|
|
154
|
+
{ provide: NG_ZONE_HOST_TOKEN, useFactory: () => window['PROVIDERS']['ngZone'] },
|
|
153
155
|
// TODO[REMOTE-SETUP] uncomment if LanguageInterceptor or StorageService is used
|
|
154
156
|
// { provide: StorageService, useFactory: () => window['PROVIDERS']['StorageService'] },
|
|
155
157
|
|
|
@@ -187,10 +189,11 @@ export function openidConnectInterceptorFactory(config) {
|
|
|
187
189
|
storeService: StoreService,
|
|
188
190
|
iI18nService: I18nService,
|
|
189
191
|
hostUxService: any,
|
|
190
|
-
hostUxAppShellService: any
|
|
191
|
-
|
|
192
|
+
hostUxAppShellService: any,
|
|
193
|
+
hostNgZone) => new UxAppShellServiceMapping(
|
|
194
|
+
config, http, platformId, router, storeService, iI18nService, hostUxService, hostUxAppShellService, hostNgZone),
|
|
192
195
|
deps: [CONFIG_TOKEN, HttpClient, PLATFORM_ID, Router, StoreService, I18nService,
|
|
193
|
-
UX_SERVICE_HOST_TOKEN, UX_APP_SHELL_SERVICE_HOST_TOKEN],
|
|
196
|
+
UX_SERVICE_HOST_TOKEN, UX_APP_SHELL_SERVICE_HOST_TOKEN, NG_ZONE_HOST_TOKEN],
|
|
194
197
|
},
|
|
195
198
|
{ provide: ELEMENT_ROUTER_TOKEN, useFactory: () => window['PROVIDERS']['ELEMENT_ROUTER_TOKEN'], deps: [] },
|
|
196
199
|
// TODO[REMOTE-SETUP] uncomment if zipkin is used
|
|
@@ -4,12 +4,4 @@ module.exports = {
|
|
|
4
4
|
plugins: [
|
|
5
5
|
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
|
|
6
6
|
],
|
|
7
|
-
|
|
8
|
-
// When importing a module whose path matches one of the following, just
|
|
9
|
-
// assume a corresponding global variable exists and use that instead.
|
|
10
|
-
// This is important because it allows us to avoid bundling all of our
|
|
11
|
-
// dependencies, which allows browsers to cache those libraries between builds.
|
|
12
|
-
externals: {
|
|
13
|
-
'quill': 'Quill',
|
|
14
|
-
},
|
|
15
7
|
}
|