@cocreate/users 1.34.0 → 1.34.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 +15 -0
- package/docs/index.html +0 -5
- package/package.json +1 -1
- package/src/client.js +2 -2
- package/src/server.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [1.34.2](https://github.com/CoCreate-app/CoCreate-users/compare/v1.34.1...v1.34.2) (2024-02-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* hostname selector ([3b6d38d](https://github.com/CoCreate-app/CoCreate-users/commit/3b6d38d74a09cf72ff5440e2dc1647c5bc078675))
|
|
7
|
+
* Removed https://cdn.cocreate.app/latest/CoCreate.min.css ([aaa7944](https://github.com/CoCreate-app/CoCreate-users/commit/aaa79444b46077144b81f84c524dd49d9744622f))
|
|
8
|
+
|
|
9
|
+
## [1.34.1](https://github.com/CoCreate-app/CoCreate-users/compare/v1.34.0...v1.34.1) (2024-01-30)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* render response ([33054b5](https://github.com/CoCreate-app/CoCreate-users/commit/33054b5164c370c50692a053d4bc789031208828))
|
|
15
|
+
|
|
1
16
|
# [1.34.0](https://github.com/CoCreate-app/CoCreate-users/compare/v1.33.1...v1.34.0) (2024-01-30)
|
|
2
17
|
|
|
3
18
|
|
package/docs/index.html
CHANGED
|
@@ -21,11 +21,6 @@
|
|
|
21
21
|
property="og:image"
|
|
22
22
|
content="https://cdn.cocreate.app/docs/users.png" />
|
|
23
23
|
|
|
24
|
-
<!-- CoCreate CSS -->
|
|
25
|
-
<link
|
|
26
|
-
rel="stylesheet"
|
|
27
|
-
href="https://cdn.cocreate.app/latest/CoCreate.min.css"
|
|
28
|
-
type="text/css" />
|
|
29
24
|
<link
|
|
30
25
|
rel="stylesheet"
|
|
31
26
|
href="../index.css"
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -242,7 +242,7 @@ const CoCreateUser = {
|
|
|
242
242
|
if (origin)
|
|
243
243
|
origin = await origin.getValue() || window.location.origin
|
|
244
244
|
|
|
245
|
-
let hostname = action.form.querySelector('input[key="
|
|
245
|
+
let hostname = action.form.querySelector('input[key="hostname"]');
|
|
246
246
|
if (hostname)
|
|
247
247
|
hostname = await hostname.getValue() || window.location.hostname
|
|
248
248
|
|
|
@@ -301,7 +301,7 @@ const CoCreateUser = {
|
|
|
301
301
|
data: [{
|
|
302
302
|
type: 'resetPassword',
|
|
303
303
|
message: data.message,
|
|
304
|
-
success:
|
|
304
|
+
success: data.success,
|
|
305
305
|
}]
|
|
306
306
|
});
|
|
307
307
|
})
|