@cosmotech/core 1.15.0 → 1.16.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/.prettierrc.json +4 -1
- package/CHANGELOG.md +9 -0
- package/dist/index.cjs.js +38459 -38467
- package/dist/index.esm.js +38459 -38467
- package/package.json +2 -1
package/.prettierrc.json
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"plugins": ["@trivago/prettier-plugin-sort-imports"],
|
|
2
3
|
"singleQuote": true,
|
|
3
4
|
"printWidth": 120,
|
|
4
|
-
"trailingComma": "es5"
|
|
5
|
+
"trailingComma": "es5",
|
|
6
|
+
"importOrder": ["react", "prop-types", "<THIRD_PARTY_MODULES>", "^@cosmotech/(.*)$", "^[./]"],
|
|
7
|
+
"importOrderSeparation": false
|
|
5
8
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## **1.15.1** <sub><sup>2024-01-11 (93d6f7cbafa3dcd4064a49ec7f85ec64984405da...dba7f30759195e5f30ec317027eeea48d88ce17e)</sup></sub>
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- fix unexpected unempty value when field is filled with multispaces ([867c3a6](https://github.com/Cosmo-Tech/webapp-component-core/commit/867c3a6f26e344a68c1ee0940254731e1a2e45fe))
|
|
6
|
+
- fix useless spaces in some table parameters error message ([405797d](https://github.com/Cosmo-Tech/webapp-component-core/commit/405797d0742845b645b3eb462e1d16ce9d5be7b5))
|
|
7
|
+
|
|
8
|
+
<br>
|
|
9
|
+
|
|
1
10
|
## **1.15.0** <sub><sup>2023-10-26 (c41f4a6...e39934b)</sup></sub>
|
|
2
11
|
|
|
3
12
|
### Features
|