@cocreate/utils 1.10.13 → 1.10.14
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/index.old.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.10.14](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.13...v1.10.14) (2022-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* renamed crud.checkAttrValue to crud.checkValue ([fe07687](https://github.com/CoCreate-app/CoCreate-utils/commit/fe076874b5f0f8a835556749341c53205c3d7bbf))
|
|
7
|
+
|
|
1
8
|
## [1.10.13](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.10.12...v1.10.13) (2022-10-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/index.old.js
CHANGED
|
@@ -53,7 +53,7 @@ export function getAttributes(element) {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
// ToDo: duplicate it is in crud.utils
|
|
56
|
-
export function
|
|
56
|
+
export function checkValue(value) {
|
|
57
57
|
if (!value) return false;
|
|
58
58
|
if (/{{\s*([\w\W]+)\s*}}/g.test(value)) {
|
|
59
59
|
return false;
|