@eui/tools 6.16.24 → 6.16.26
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/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes/18.x/base/angular.json +1 -1
- package/scripts/utils/pre-build/injection/app-sources-full-skeleton/src/_generated/environments/environment.prod.ts +6 -1
- package/scripts/utils/pre-build/injection/app-sources-full-skeleton/src/_generated/environments/environment.ts +6 -1
- package/scripts/utils/pre-build/injection/app-sources-full-skeleton-eui18/src/_generated/environments/environment.prod.ts +6 -1
- package/scripts/utils/pre-build/injection/app-sources-full-skeleton-eui18/src/_generated/environments/environment.ts +6 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.16.
|
|
1
|
+
6.16.26
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.16.26 (2024-06-10)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* updates the Environment config - EUI-9203 [EUI-9203](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9203) ([af17a502](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/af17a5024119cabfb4582eee50da8cf5191291cb))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.16.25 (2024-06-10)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* adapted v18 remote default skeleton for eUI 18 assets - MWP-10780 [MWP-10780](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-10780) ([a5c0773d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a5c0773df23cb7aaaa12de2cef3b842ea7a25382))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.16.24 (2024-06-10)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { EuiEnvConfig } from '@eui/core';
|
|
2
2
|
|
|
3
|
-
export
|
|
3
|
+
export interface EnvConfig extends EuiEnvConfig {
|
|
4
|
+
production?: boolean;
|
|
5
|
+
enableDevToolRedux?: boolean;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const environment: EnvConfig = {
|
|
4
9
|
production: true,
|
|
5
10
|
enableDevToolRedux: false,
|
|
6
11
|
envDynamicConfig: {
|
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
import { EuiEnvConfig } from '@eui/core';
|
|
5
5
|
|
|
6
|
-
export
|
|
6
|
+
export interface EnvConfig extends EuiEnvConfig {
|
|
7
|
+
production?: boolean;
|
|
8
|
+
enableDevToolRedux?: boolean;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const environment: EnvConfig = {
|
|
7
12
|
production: false,
|
|
8
13
|
enableDevToolRedux: true,
|
|
9
14
|
envDynamicConfig: {
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { EuiEnvConfig } from '@eui/base';
|
|
2
2
|
|
|
3
|
-
export
|
|
3
|
+
export interface EnvConfig extends EuiEnvConfig {
|
|
4
|
+
production?: boolean;
|
|
5
|
+
enableDevToolRedux?: boolean;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const environment: EnvConfig = {
|
|
4
9
|
production: true,
|
|
5
10
|
enableDevToolRedux: false,
|
|
6
11
|
envDynamicConfig: {
|
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
import { EuiEnvConfig } from '@eui/base';
|
|
5
5
|
|
|
6
|
-
export
|
|
6
|
+
export interface EnvConfig extends EuiEnvConfig {
|
|
7
|
+
production?: boolean;
|
|
8
|
+
enableDevToolRedux?: boolean;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const environment: EnvConfig = {
|
|
7
12
|
production: false,
|
|
8
13
|
enableDevToolRedux: true,
|
|
9
14
|
envDynamicConfig: {
|