@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.
@@ -1 +1 @@
1
- 6.16.24
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,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.24",
3
+ "version": "6.16.26",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  {
38
38
  "glob": "**/*",
39
- "input": "node_modules/@eui/styles-base/dist/assets/",
39
+ "input": "node_modules/@eui/styles/dist/assets/",
40
40
  "output": "./assets"
41
41
  }
42
42
  ],
@@ -1,6 +1,11 @@
1
1
  import { EuiEnvConfig } from '@eui/core';
2
2
 
3
- export const environment: EuiEnvConfig = {
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 const environment: EuiEnvConfig = {
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 const environment: EuiEnvConfig = {
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 const environment: EuiEnvConfig = {
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: {