@eui/tools 6.21.52 → 6.21.54

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.
@@ -1 +1 @@
1
- 6.21.52
1
+ 6.21.54
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.21.54 (2025-03-27)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * add missing eui providers at eui level MWP-11759 [MWP-11759](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11759) ([7ff94eb9](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/7ff94eb94d705382c40dc7cb3be8175390390a21))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.21.53 (2025-03-26)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * participant skeleton adaptation REGIOCCINT-1768 [REGIOCCINT-1768](https://webgate.ec.europa.eu/CITnet/jira/browse/REGIOCCINT-1768) ([15d82ec9](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/15d82ec99df5790bd65420b638b5349753ad5bd6))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.21.52 (2025-03-25)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.52",
3
+ "version": "6.21.54",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -15,6 +15,7 @@ import {
15
15
  CONFIG_TOKEN,
16
16
  EUI_CONFIG_TOKEN,
17
17
  translateConfig,
18
+ provideEuiInitializer,
18
19
  } from '@eui/core';
19
20
  import {
20
21
  provideCsdrCore,
@@ -29,7 +30,7 @@ import { appConfig } from '../config';
29
30
 
30
31
  import { @root.common.module@ as RootCommonModule } from '@root.npm.pkg@';
31
32
  import { provideCsdrIntegrationElement } from '@csdr/integration/element';
32
- import { CONTAINER_MAPPED_PROVIDERS } from '@csdr/integration/participant';
33
+ import { provideCsdrIntegrationParticipant } from '@csdr/integration/participant';
33
34
  import { RoutingModule } from './routing.module';
34
35
 
35
36
  import { ModuleComponent } from './module.component';
@@ -56,6 +57,7 @@ import { ModuleComponent } from './module.component';
56
57
 
57
58
  provideAnimations(),
58
59
  provideHttpClient(withInterceptorsFromDi()),
60
+ provideEuiInitializer(),
59
61
  provideCsdrCore(),
60
62
  provideCsdrIntegrationElement({ appConfig, environment }),
61
63
 
@@ -1,3 +1,3 @@
1
1
  {
2
- "providers": "...CONTAINER_MAPPED_PROVIDERS"
2
+ "providers": "provideCsdrIntegrationParticipant()"
3
3
  }