@eui/tools 6.3.42 → 6.3.43
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
1
|
+
6.3.43
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.3.43 (2023-02-21)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* addition of configMapping for the both v10 and v15 skeletons (both participant and section) MWP-9235 [MWP-9235](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9235) ([2ff1aa3f](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2ff1aa3f96804ce5d3ef9e53227bf02c1f6725f5))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.3.42 (2023-02-21)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
1
|
import { GLOBAL } from './global';
|
|
2
2
|
import { MODULES } from './modules';
|
|
3
|
-
import { EuiAppConfig, LogLevel, ConsoleAppender, LogConfig } from '@eui/core';
|
|
4
3
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
*/
|
|
8
|
-
const logConfig: LogConfig = {
|
|
9
|
-
logLevel: LogLevel.ALL,
|
|
10
|
-
logAppenders: [{
|
|
11
|
-
type: ConsoleAppender,
|
|
12
|
-
prefixFormat: '[{level}]',
|
|
13
|
-
}],
|
|
14
|
-
};
|
|
4
|
+
import { EuiAppConfig } from '@eui/core';
|
|
5
|
+
import { configMapping } from '@csdr/integration/element';
|
|
15
6
|
|
|
16
|
-
export const appConfig: EuiAppConfig = {
|
|
7
|
+
export const appConfig: EuiAppConfig = configMapping({
|
|
17
8
|
global: GLOBAL,
|
|
18
9
|
modules: MODULES,
|
|
19
|
-
|
|
20
|
-
};
|
|
10
|
+
});
|
|
@@ -1,20 +1,10 @@
|
|
|
1
1
|
import { GLOBAL } from './global';
|
|
2
2
|
import { MODULES } from './modules';
|
|
3
|
-
import { EuiAppConfig, LogLevel, ConsoleAppender, LogConfig } from '@eui/core';
|
|
4
3
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
*/
|
|
8
|
-
const logConfig: LogConfig = {
|
|
9
|
-
logLevel: LogLevel.ALL,
|
|
10
|
-
logAppenders: [{
|
|
11
|
-
type: ConsoleAppender,
|
|
12
|
-
prefixFormat: '[{level}]',
|
|
13
|
-
}],
|
|
14
|
-
};
|
|
4
|
+
import { EuiAppConfig } from '@eui/core';
|
|
5
|
+
import { configMapping } from '@csdr/integration/element';
|
|
15
6
|
|
|
16
|
-
export const appConfig: EuiAppConfig = {
|
|
7
|
+
export const appConfig: EuiAppConfig = configMapping({
|
|
17
8
|
global: GLOBAL,
|
|
18
9
|
modules: MODULES,
|
|
19
|
-
|
|
20
|
-
};
|
|
10
|
+
});
|