@cosmotech/core 1.19.1-beta.1 → 2.0.0
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/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +20 -0
- package/dist/index.cjs.js +4586 -3966
- package/dist/index.esm.js +4586 -3966
- package/eslint.config.mjs +59 -0
- package/package.json +18 -15
- package/.eslintignore +0 -5
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## **2.0.0** <sub><sup>2025-01-23 (ba70eef...4d0f1df)</sup></sub>
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- add min & max validation in ValidationUtils and AgGridUtils file uploads ([c7f0b3d](https://github.com/Cosmo-Tech/webapp-component-core/commit/c7f0b3d))
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- fix user email retrieved from keycloak accounts ([ba70eef](https://github.com/Cosmo-Tech/webapp-component-core/commit/ba70eef))
|
|
10
|
+
- remove forbidden characters constraint in scenario names ([9b67422](https://github.com/Cosmo-Tech/webapp-component-core/commit/9b67422))
|
|
11
|
+
- modify isValid function to return error structures on validation fail ([ce4ba32](https://github.com/Cosmo-Tech/webapp-component-core/commit/ce4ba32))
|
|
12
|
+
|
|
13
|
+
### BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
- the function isValid now returns an Error object when the validation failed, or true if it succeeded. The Error object contains three fields: summary, context and location (the last one is set to null by the isValid function).
|
|
16
|
+
|
|
17
|
+
## **1.19.1** <sub><sup>2024-11-07 (6023cdc...6023cdc)</sup></sub>
|
|
18
|
+
|
|
19
|
+
- update dependencies
|
|
20
|
+
|
|
1
21
|
## **1.19.0** <sub><sup>2024-10-22 (07716f7...07716f7)</sup></sub>
|
|
2
22
|
|
|
3
23
|
### Features
|