@cocreate/users 1.7.26 → 1.7.27
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/client.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.7.27](https://github.com/CoCreate-app/CoCreate-users/compare/v1.7.26...v1.7.27) (2022-08-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* getValue and setValue using HTMLElement.prototype ([31a45bd](https://github.com/CoCreate-app/CoCreate-users/commit/31a45bd8f933f6e76e6320af9097f6f949cc3dad))
|
|
7
|
+
|
|
1
8
|
## [1.7.26](https://github.com/CoCreate-app/CoCreate-users/compare/v1.7.25...v1.7.26) (2022-08-23)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -265,7 +265,7 @@ const CoCreateUser = {
|
|
|
265
265
|
//. get form data
|
|
266
266
|
elements.forEach(el => {
|
|
267
267
|
let name = el.getAttribute('name');
|
|
268
|
-
let value = el.getValue(
|
|
268
|
+
let value = el.getValue();
|
|
269
269
|
if (!name || !value) return;
|
|
270
270
|
|
|
271
271
|
if (el.getAttribute('data-type') == 'array') {
|