@eui/cli 18.0.0-next.15 → 18.0.0-next.17
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/angular.json +2 -2
- package/lib/skeletons/_angular/base/package.json +2 -2
- package/lib/skeletons/_angular/base/src/app/core/core.module.ts +6 -5
- package/lib/skeletons/_angular/base/src/app/core/reducers/index.ts +2 -1
- package/lib/skeletons/_angular/base-mobile/angular.json +1 -1
- package/lib/skeletons/_angular/base-mobile/package.json +1 -1
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +5 -4
- package/lib/skeletons/_angular/base-mobile/src/app/core/reducers/index.ts +2 -1
- package/lib/skeletons/_angular/options/ecl-ec/angular.json +4 -4
- package/lib/skeletons/_angular/options/ecl-eu/angular.json +4 -4
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
18.0.0-next.
|
|
1
|
+
18.0.0-next.17
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"glob": "**/*",
|
|
42
|
-
"input": "node_modules/@eui/styles
|
|
42
|
+
"input": "node_modules/@eui/styles/dist/assets/",
|
|
43
43
|
"output": "./assets"
|
|
44
44
|
}
|
|
45
45
|
],
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
"glob": "**/*",
|
|
148
|
-
"input": "node_modules/@eui/styles
|
|
148
|
+
"input": "node_modules/@eui/styles/dist/assets/",
|
|
149
149
|
"output": "./assets"
|
|
150
150
|
}
|
|
151
151
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "18.0.0-next.
|
|
3
|
+
"version": "18.0.0-next.17",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "18.0.0-next.
|
|
23
|
+
"@eui/deps-base": "18.0.0-next.17"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { TranslateModule } from '@ngx-translate/core';
|
|
3
3
|
import { StoreModule } from '@ngrx/store';
|
|
4
|
-
import { EffectsModule } from '@ngrx/effects';
|
|
5
|
-
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
|
|
4
|
+
// import { EffectsModule } from '@ngrx/effects';
|
|
5
|
+
// import { StoreDevtoolsModule } from '@ngrx/store-devtools';
|
|
6
6
|
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
7
7
|
import {
|
|
8
8
|
CachePreventionInterceptor,
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
EuLoginSessionTimeoutHandlingInterceptor,
|
|
12
12
|
CoreModule as EuiCoreModule,
|
|
13
13
|
translateConfig,
|
|
14
|
-
CoreModuleEffects,
|
|
14
|
+
// CoreModuleEffects,
|
|
15
15
|
EUI_CONFIG_TOKEN,
|
|
16
16
|
} from '@eui/core';
|
|
17
17
|
import { EuiLayoutModule } from '@eui/components/layout';
|
|
@@ -29,10 +29,11 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
29
29
|
SharedModule,
|
|
30
30
|
HttpClientModule,
|
|
31
31
|
EuiCoreModule.forRoot(),
|
|
32
|
-
EffectsModule.forRoot([...CoreModuleEffects]),
|
|
32
|
+
// EffectsModule.forRoot([...CoreModuleEffects]),
|
|
33
33
|
TranslateModule.forRoot(translateConfig),
|
|
34
|
+
// StoreModule.forRoot(REDUCER_TOKEN, { metaReducers }),
|
|
34
35
|
StoreModule.forRoot(REDUCER_TOKEN, { metaReducers }),
|
|
35
|
-
!environment.production ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [],
|
|
36
|
+
// !environment.production ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [],
|
|
36
37
|
],
|
|
37
38
|
declarations: [
|
|
38
39
|
],
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
2
|
import { MetaReducer } from '@ngrx/store';
|
|
3
3
|
import { storeFreeze } from 'ngrx-store-freeze';
|
|
4
|
-
import { reducers as coreReducers,
|
|
4
|
+
import { reducers as coreReducers, localStorageSync } from '@eui/core';
|
|
5
|
+
import { CoreState, getAppState } from '@eui/base';
|
|
5
6
|
|
|
6
7
|
import { environment } from '../../../environments/environment';
|
|
7
8
|
|
|
@@ -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
|
-
import { EffectsModule } from '@ngrx/effects';
|
|
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
|
-
CoreModuleEffects,
|
|
18
|
+
// CoreModuleEffects,
|
|
19
19
|
EUI_CONFIG_TOKEN,
|
|
20
20
|
} from '@eui/core';
|
|
21
21
|
|
|
@@ -31,9 +31,10 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
31
31
|
HttpClientModule,
|
|
32
32
|
SharedModule,
|
|
33
33
|
EuiCoreModule.forRoot(),
|
|
34
|
-
EffectsModule.forRoot([...CoreModuleEffects]),
|
|
34
|
+
// EffectsModule.forRoot([...CoreModuleEffects]),
|
|
35
35
|
TranslateModule.forRoot(translateConfig),
|
|
36
|
-
StoreModule.forRoot(
|
|
36
|
+
StoreModule.forRoot(),
|
|
37
|
+
// StoreModule.forRoot(REDUCER_TOKEN, { metaReducers }),
|
|
37
38
|
!environment.production ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [],
|
|
38
39
|
IonicModule.forRoot({mode: 'md'}),
|
|
39
40
|
],
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
2
|
import { MetaReducer } from '@ngrx/store';
|
|
3
3
|
import { storeFreeze } from 'ngrx-store-freeze';
|
|
4
|
-
import { reducers as coreReducers,
|
|
4
|
+
import { reducers as coreReducers, localStorageSync } from '@eui/core';
|
|
5
|
+
import { CoreState, getAppState } from '@eui/base';
|
|
5
6
|
|
|
6
7
|
import { environment } from '../../../environments/environment';
|
|
7
8
|
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"glob": "**/*",
|
|
42
|
-
"input": "node_modules/@eui/styles
|
|
42
|
+
"input": "node_modules/@eui/styles/dist/assets/ecl",
|
|
43
43
|
"output": "./assets/images/ecl"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"glob": "**/*",
|
|
47
|
-
"input": "node_modules/@eui/styles
|
|
47
|
+
"input": "node_modules/@eui/styles/dist/assets",
|
|
48
48
|
"output": "./assets"
|
|
49
49
|
},
|
|
50
50
|
{
|
|
@@ -159,12 +159,12 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"glob": "**/*",
|
|
162
|
-
"input": "node_modules/@eui/styles
|
|
162
|
+
"input": "node_modules/@eui/styles/dist/assets/ecl",
|
|
163
163
|
"output": "./assets/images/ecl"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"glob": "**/*",
|
|
167
|
-
"input": "node_modules/@eui/styles
|
|
167
|
+
"input": "node_modules/@eui/styles/dist/assets",
|
|
168
168
|
"output": "./assets"
|
|
169
169
|
},
|
|
170
170
|
{
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"glob": "**/*",
|
|
42
|
-
"input": "node_modules/@eui/styles
|
|
42
|
+
"input": "node_modules/@eui/styles/dist/assets/ecl",
|
|
43
43
|
"output": "./assets/images/ecl"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"glob": "**/*",
|
|
47
|
-
"input": "node_modules/@eui/styles
|
|
47
|
+
"input": "node_modules/@eui/styles/dist/assets",
|
|
48
48
|
"output": "./assets"
|
|
49
49
|
},
|
|
50
50
|
{
|
|
@@ -159,12 +159,12 @@
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"glob": "**/*",
|
|
162
|
-
"input": "node_modules/@eui/styles
|
|
162
|
+
"input": "node_modules/@eui/styles/dist/assets/ecl",
|
|
163
163
|
"output": "./assets/images/ecl"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"glob": "**/*",
|
|
167
|
-
"input": "node_modules/@eui/styles
|
|
167
|
+
"input": "node_modules/@eui/styles/dist/assets",
|
|
168
168
|
"output": "./assets"
|
|
169
169
|
},
|
|
170
170
|
{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "18.0.0-next.
|
|
3
|
+
"version": "18.0.0-next.17",
|
|
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": "18.0.0-next.
|
|
21
|
+
"@eui/deps-base": "18.0.0-next.17"
|
|
22
22
|
}
|
|
23
23
|
}
|