@cocreate/users 1.9.0 → 1.9.2

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,17 @@
1
+ ## [1.9.2](https://github.com/CoCreate-app/CoCreate-users/compare/v1.9.1...v1.9.2) (2022-09-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump dependencies ([f08a489](https://github.com/CoCreate-app/CoCreate-users/commit/f08a489e9a9d817b9896808d9d86e96c46efef63))
7
+
8
+ ## [1.9.1](https://github.com/CoCreate-app/CoCreate-users/compare/v1.9.0...v1.9.1) (2022-09-29)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * config renameed to CoCreateConfig ([b91eecb](https://github.com/CoCreate-app/CoCreate-users/commit/b91eecbbc1e518379557ec1021949b3af954a3f5))
14
+
1
15
  # [1.9.0](https://github.com/CoCreate-app/CoCreate-users/compare/v1.8.0...v1.9.0) (2022-09-28)
2
16
 
3
17
 
package/demo/login.html CHANGED
@@ -76,7 +76,7 @@
76
76
  </div>
77
77
 
78
78
  <script>
79
- var config = {
79
+ var CoCreateConfig = {
80
80
  apiKey: '2061acef-0451-4545-f754-60cf8160', // Your apiKey can be retrived after signing up at https://cocreate.app
81
81
  organization_id: '5ff747727005da1c272740ab', // Your organization_id can be retrived after signing up at https://cocreate.app
82
82
  host: 'server.cocreate.app' // Points to socket server. If not defined it will use the url in web browser by default
package/demo/signup.html CHANGED
@@ -97,7 +97,7 @@
97
97
  </div>
98
98
 
99
99
  <script>
100
- var config = {
100
+ var CoCreateConfig = {
101
101
  apiKey: '2061acef-0451-4545-f754-60cf8160', // Your apiKey can be retrived after signing up at https://cocreate.app
102
102
  organization_id: '5ff747727005da1c272740ab', // Your organization_id can be retrived after signing up at https://cocreate.app
103
103
  host: 'server.cocreate.app' // Points to socket server. If not defined it will use the url in web browser by default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/users",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
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.0",
65
- "@cocreate/crud-client": "^1.10.0",
66
- "@cocreate/docs": "^1.3.5",
64
+ "@cocreate/actions": "^1.5.2",
65
+ "@cocreate/crud-client": "^1.12.1",
66
+ "@cocreate/docs": "^1.3.8",
67
67
  "@cocreate/elements": "^1.12.0",
68
- "@cocreate/render": "^1.14.0",
68
+ "@cocreate/render": "^1.15.0",
69
69
  "mongodb": "^4.4.0"
70
70
  }
71
71
  }