@cocreate/users 1.4.30 → 1.4.34
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 +28 -0
- package/package.json +6 -6
- package/src/index.js +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [1.4.34](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.33...v1.4.34) (2022-02-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update dependencies ([6a542aa](https://github.com/CoCreate-app/CoCreate-users/commit/6a542aa5e6776ef5f7d7e72acca379fc199805f6))
|
|
7
|
+
|
|
8
|
+
## [1.4.33](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.32...v1.4.33) (2022-02-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update action param to name ([274b50f](https://github.com/CoCreate-app/CoCreate-users/commit/274b50f4bb2092d88a50c3e46bbce9540573a9dc))
|
|
14
|
+
|
|
15
|
+
## [1.4.32](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.31...v1.4.32) (2022-02-10)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* bump dependencies ([56e9b48](https://github.com/CoCreate-app/CoCreate-users/commit/56e9b4841b4bc4d92cd65cf3df0c3ab0ab8b43cd))
|
|
21
|
+
|
|
22
|
+
## [1.4.31](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.30...v1.4.31) (2022-02-07)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* bump dependency versions ([a62ac30](https://github.com/CoCreate-app/CoCreate-users/commit/a62ac30b3fe4e7db0f4ab21b9ccfc904a61362af))
|
|
28
|
+
|
|
1
29
|
## [1.4.30](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.29...v1.4.30) (2022-02-03)
|
|
2
30
|
|
|
3
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/users",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.34",
|
|
4
4
|
"description": "A simple users component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"users",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
"webpack-log": "^3.0.1"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@cocreate/actions": "^1.3.
|
|
65
|
-
"@cocreate/crud-client": "^1.4.
|
|
66
|
-
"@cocreate/docs": "^1.2.
|
|
67
|
-
"@cocreate/elements": "^1.6.
|
|
68
|
-
"@cocreate/render": "^1.5.
|
|
64
|
+
"@cocreate/actions": "^1.3.33",
|
|
65
|
+
"@cocreate/crud-client": "^1.4.47",
|
|
66
|
+
"@cocreate/docs": "^1.2.69",
|
|
67
|
+
"@cocreate/elements": "^1.6.11",
|
|
68
|
+
"@cocreate/render": "^1.5.7"
|
|
69
69
|
}
|
|
70
70
|
}
|
package/src/index.js
CHANGED
|
@@ -317,7 +317,7 @@ const CoCreateUser = {
|
|
|
317
317
|
|
|
318
318
|
|
|
319
319
|
action.init({
|
|
320
|
-
|
|
320
|
+
name: "createUserNew",
|
|
321
321
|
endEvent: "createUserNew",
|
|
322
322
|
callback: (btn, data) => {
|
|
323
323
|
CoCreateUser.createUser(btn);
|
|
@@ -325,7 +325,7 @@ action.init({
|
|
|
325
325
|
});
|
|
326
326
|
|
|
327
327
|
action.init({
|
|
328
|
-
|
|
328
|
+
name: "createUser",
|
|
329
329
|
endEvent: "createUser",
|
|
330
330
|
callback: (btn, data) => {
|
|
331
331
|
CoCreateUser.createUser(btn);
|
|
@@ -333,7 +333,7 @@ action.init({
|
|
|
333
333
|
});
|
|
334
334
|
|
|
335
335
|
action.init({
|
|
336
|
-
|
|
336
|
+
name: "login",
|
|
337
337
|
endEvent: "login",
|
|
338
338
|
callback: (btn, data) => {
|
|
339
339
|
CoCreateUser.requestLogin(btn, data);
|
|
@@ -341,7 +341,7 @@ action.init({
|
|
|
341
341
|
});
|
|
342
342
|
|
|
343
343
|
action.init({
|
|
344
|
-
|
|
344
|
+
name: "logout",
|
|
345
345
|
endEvent: "logout",
|
|
346
346
|
callback: (btn, data) => {
|
|
347
347
|
CoCreateUser.logout(btn, data);
|