@cocreate/users 1.4.29 → 1.4.33

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 CHANGED
@@ -1,3 +1,31 @@
1
+ ## [1.4.33](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.32...v1.4.33) (2022-02-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update action param to name ([274b50f](https://github.com/CoCreate-app/CoCreate-users/commit/274b50f4bb2092d88a50c3e46bbce9540573a9dc))
7
+
8
+ ## [1.4.32](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.31...v1.4.32) (2022-02-10)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump dependencies ([56e9b48](https://github.com/CoCreate-app/CoCreate-users/commit/56e9b4841b4bc4d92cd65cf3df0c3ab0ab8b43cd))
14
+
15
+ ## [1.4.31](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.30...v1.4.31) (2022-02-07)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * bump dependency versions ([a62ac30](https://github.com/CoCreate-app/CoCreate-users/commit/a62ac30b3fe4e7db0f4ab21b9ccfc904a61362af))
21
+
22
+ ## [1.4.30](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.29...v1.4.30) (2022-02-03)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * replaced show and hide class hidden with attribute hidden ([1fe3942](https://github.com/CoCreate-app/CoCreate-users/commit/1fe3942fb84d254e24870e6edbe2f157a2cc7c11))
28
+
1
29
  ## [1.4.29](https://github.com/CoCreate-app/CoCreate-users/compare/v1.4.28...v1.4.29) (2022-02-01)
2
30
 
3
31
 
package/docs/index.html CHANGED
@@ -99,7 +99,7 @@
99
99
  <div class="container svColumn overflow:hidden card position:relative border-radius:2px width:auto height:100%" id="sandbox">
100
100
  <div class="font-size:20px position:absolute top:10px right:10px opacity:0.6">
101
101
  <a class="margin-right:10px" id="code" show="#preview" hide="#code, #view"><i class="far fa-eye"></i></a>
102
- <a class="margin-right:10px hidden" id="preview" show="#code, #view" hide="#preview"><i class="fas fa-code"></i></a>
102
+ <a class="margin-right:10px" id="preview" show="#code, #view" hide="#preview" hidden><i class="fas fa-code"></i></a>
103
103
  <a class="margin-right:5px" fullscreen target="#playground"><i class="fas fa-expand"></i></a>
104
104
  </div>
105
105
  <div class="svRow">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/users",
3
- "version": "1.4.29",
3
+ "version": "1.4.33",
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.28",
65
- "@cocreate/crud-client": "^1.4.43",
66
- "@cocreate/docs": "^1.2.65",
67
- "@cocreate/elements": "^1.6.5",
68
- "@cocreate/render": "^1.5.1"
64
+ "@cocreate/actions": "^1.3.31",
65
+ "@cocreate/crud-client": "^1.4.46",
66
+ "@cocreate/docs": "^1.2.68",
67
+ "@cocreate/elements": "^1.6.9",
68
+ "@cocreate/render": "^1.5.5"
69
69
  }
70
70
  }
package/src/index.js CHANGED
@@ -317,7 +317,7 @@ const CoCreateUser = {
317
317
 
318
318
 
319
319
  action.init({
320
- action: "createUserNew",
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
- action: "createUser",
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
- action: "login",
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
- action: "logout",
344
+ name: "logout",
345
345
  endEvent: "logout",
346
346
  callback: (btn, data) => {
347
347
  CoCreateUser.logout(btn, data);