@cocreate/users 1.10.9 → 1.10.11

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,18 @@
1
+ ## [1.10.11](https://github.com/CoCreate-app/CoCreate-users/compare/v1.10.10...v1.10.11) (2022-11-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump dependencies ([f907740](https://github.com/CoCreate-app/CoCreate-users/commit/f9077400d8b7c89a28a5b7ecf60553517a92310e))
7
+
8
+ ## [1.10.10](https://github.com/CoCreate-app/CoCreate-users/compare/v1.10.9...v1.10.10) (2022-11-25)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump dependencies ([abb5879](https://github.com/CoCreate-app/CoCreate-users/commit/abb5879cca4a1dbb5b2c53d18184214e4001e4b0))
14
+ * CoCreate.crud.default removed bug causing default object ([dee83ce](https://github.com/CoCreate-app/CoCreate-users/commit/dee83ce9fc213678f7afb6266839bb0f76046e4a))
15
+
1
16
  ## [1.10.9](https://github.com/CoCreate-app/CoCreate-users/compare/v1.10.8...v1.10.9) (2022-11-24)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/users",
3
- "version": "1.10.9",
3
+ "version": "1.10.11",
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,11 +61,11 @@
61
61
  "webpack-log": "^3.0.1"
62
62
  },
63
63
  "dependencies": {
64
- "@cocreate/actions": "^1.5.21",
65
- "@cocreate/crud-client": "^1.14.2",
66
- "@cocreate/docs": "^1.4.3",
67
- "@cocreate/element-prototype": "^1.1.6",
68
- "@cocreate/render": "^1.16.8",
64
+ "@cocreate/actions": "^1.5.23",
65
+ "@cocreate/crud-client": "^1.15.1",
66
+ "@cocreate/docs": "^1.4.5",
67
+ "@cocreate/element-prototype": "^1.1.8",
68
+ "@cocreate/render": "^1.16.10",
69
69
  "mongodb": "^4.4.0"
70
70
  }
71
71
  }
package/src/client.js CHANGED
@@ -1,15 +1,9 @@
1
1
  /*globals CustomEvent, btoa*/
2
- import CRUD from '@cocreate/crud-client';
2
+ import crud from '@cocreate/crud-client';
3
3
  import action from '@cocreate/actions';
4
4
  import render from '@cocreate/render';
5
5
  import '@cocreate/element-prototype';
6
6
 
7
- let crud
8
- if (CRUD && CRUD.default)
9
- crud = CRUD.default
10
- else
11
- crud = CRUD
12
-
13
7
  const CONST_PERMISSION_CLASS = 'checkPermission';
14
8
 
15
9
  const CoCreateUser = {