@eui/cli 19.0.0-rc.9 → 19.0.1-snapshot-1734024388557
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 +1 -1
- package/lib/skeletons/_angular/base/package.json +2 -2
- package/lib/skeletons/_angular/base-mobile/angular.json +1 -1
- package/lib/skeletons/_angular/base-mobile/package.json +4 -4
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +4 -4
- package/lib/skeletons/_angular/base-mobile/src/tsconfig.app.json +1 -0
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +3 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
19.0.
|
|
1
|
+
19.0.1-snapshot-1734024388557
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.1-snapshot-1734024388557",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"private": true,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@eui/deps-base": "19.0.
|
|
24
|
+
"@eui/deps-base": "19.0.1-snapshot-1734024388557"
|
|
25
25
|
},
|
|
26
26
|
"resolutions": {
|
|
27
27
|
"js-yaml": ">=3.13.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.1-snapshot-1734024388557",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "18.2.4
|
|
24
|
-
"@eui/mobile-core": "18.0.0-next.
|
|
25
|
-
"@eui/mobile-styles": "18.0.0-next.
|
|
23
|
+
"@eui/deps-base": "18.2.4",
|
|
24
|
+
"@eui/mobile-core": "18.0.0-next.22",
|
|
25
|
+
"@eui/mobile-styles": "18.0.0-next.22"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { TranslateModule } from '@ngx-translate/core';
|
|
3
3
|
import { StoreModule } from '@ngrx/store';
|
|
4
|
-
|
|
4
|
+
import { EffectsModule } from '@ngrx/effects';
|
|
5
5
|
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
|
|
6
6
|
|
|
7
7
|
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
EuLoginSessionTimeoutHandlingInterceptor,
|
|
16
16
|
CoreModule as EuiCoreModule,
|
|
17
17
|
translateConfig,
|
|
18
|
-
|
|
18
|
+
CoreModuleEffects,
|
|
19
19
|
EUI_CONFIG_TOKEN,
|
|
20
20
|
} from '@eui/core';
|
|
21
21
|
|
|
@@ -31,10 +31,10 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
31
31
|
HttpClientModule,
|
|
32
32
|
SharedModule,
|
|
33
33
|
EuiCoreModule.forRoot(),
|
|
34
|
-
|
|
34
|
+
EffectsModule.forRoot([...CoreModuleEffects]),
|
|
35
35
|
TranslateModule.forRoot(translateConfig),
|
|
36
36
|
StoreModule.forRoot(),
|
|
37
|
-
|
|
37
|
+
StoreModule.forRoot(REDUCER_TOKEN, { metaReducers }),
|
|
38
38
|
!environment.production ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [],
|
|
39
39
|
IonicModule.forRoot({mode: 'md'}),
|
|
40
40
|
],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.1-snapshot-1734024388557",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"description": "eUI JEE Symfony app scripts",
|
|
6
6
|
"scripts": {
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
},
|
|
19
19
|
"private": true,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@eui/deps-base": "19.0.
|
|
21
|
+
"@eui/deps-base": "19.0.1-snapshot-1734024388557"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/cli",
|
|
3
|
-
"version": "19.0.
|
|
4
|
-
"tag": "
|
|
3
|
+
"version": "19.0.1-snapshot-1734024388557",
|
|
4
|
+
"tag": "snapshot",
|
|
5
5
|
"license": "EUPL-1.1",
|
|
6
6
|
"description": "eUI CLI app generator",
|
|
7
7
|
"bin": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "https://citnet.tech.ec.europa.eu/CITnet/stash/projects/CSDR/repos/eui"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@eui/tools": "6.21.
|
|
16
|
+
"@eui/tools": "6.21.13"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"@eui/tools": "^6.0.0",
|