@cocreate/users 1.19.6 → 1.19.8
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 +14 -0
- package/CoCreate.config.js +3 -2
- package/demo/signin.html +1 -1
- package/demo/signout.html +1 -1
- package/demo/signup.html +2 -2
- package/docs/index.html +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.19.8](https://github.com/CoCreate-app/CoCreate-users/compare/v1.19.7...v1.19.8) (2023-05-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bump [@cocreate](https://github.com/cocreate) dependencies ([fe717a3](https://github.com/CoCreate-app/CoCreate-users/commit/fe717a368dc272414fa1b3185431db8ad1ac5c58))
|
|
7
|
+
|
|
8
|
+
## [1.19.7](https://github.com/CoCreate-app/CoCreate-users/compare/v1.19.6...v1.19.7) (2023-05-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update manifest.json to manifest.webmanifest ([96379ef](https://github.com/CoCreate-app/CoCreate-users/commit/96379ef50135dfd8e98f37e6230c1fb7a8e880ea))
|
|
14
|
+
|
|
1
15
|
## [1.19.6](https://github.com/CoCreate-app/CoCreate-users/compare/v1.19.5...v1.19.6) (2023-05-01)
|
|
2
16
|
|
|
3
17
|
|
package/CoCreate.config.js
CHANGED
|
@@ -17,9 +17,10 @@ module.exports = {
|
|
|
17
17
|
"general.cocreate.app"
|
|
18
18
|
],
|
|
19
19
|
"directory": "/docs/users",
|
|
20
|
-
"
|
|
20
|
+
"parentDirectory": "{{parentDirectory}}",
|
|
21
|
+
"content-type": "{{content-type}}",
|
|
21
22
|
"public": "true",
|
|
22
|
-
"website_id": "
|
|
23
|
+
"website_id": "644d4bff8036fb9d1d1fd69c"
|
|
23
24
|
}
|
|
24
25
|
}
|
|
25
26
|
]
|
package/demo/signin.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<link rel="icon" href="https://cdn.cocreate.app/favicon.ico" type="image/ico" sizes="16x16">
|
|
7
7
|
<link rel="stylesheet" href="../index.css" collection="files" document_id="637bc8fe91249e639db315d9" name="src" type="text/css"/>
|
|
8
|
-
<link rel="manifest" href="/manifest.
|
|
8
|
+
<link rel="manifest" href="/manifest.webmanifest">
|
|
9
9
|
</head>
|
|
10
10
|
|
|
11
11
|
<body style='background-image: url("https://cdn.cocreate.app/background.png");'>
|
package/demo/signout.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<link rel="icon" href="https://cdn.cocreate.app/favicon.ico" type="image/ico" sizes="16x16">
|
|
7
7
|
<link rel="stylesheet" href="../index.css" collection="files" document_id="637bc8fe91249e639db315d9" name="src" type="text/css"/>
|
|
8
|
-
<link rel="manifest" href="/manifest.
|
|
8
|
+
<link rel="manifest" href="/manifest.webmanifest">
|
|
9
9
|
</head>
|
|
10
10
|
|
|
11
11
|
<body style='background-image: url("https://cdn.cocreate.app/background.png");'>
|
package/demo/signup.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<title>Sign Up | CoCreate</title>
|
|
9
9
|
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon.ico">
|
|
10
10
|
<link rel="stylesheet" href="../index.css" collection="files" document_id="637bc8fe91249e639db315d9" name="src" type="text/css"/>
|
|
11
|
-
<link rel="manifest" href="/manifest.
|
|
11
|
+
<link rel="manifest" href="/manifest.webmanifest" />
|
|
12
12
|
</head>
|
|
13
13
|
|
|
14
14
|
<style>
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
<small id="errorUconfirmpassword" class="text-danger"></small>
|
|
77
77
|
|
|
78
78
|
<div class="display:flex">
|
|
79
|
-
<button type="button" class="outline red-white
|
|
79
|
+
<button type="button" class="outline red-white" actions="validate, signUp, signIn" href="signout.html">
|
|
80
80
|
Sign Up
|
|
81
81
|
</button>
|
|
82
82
|
</div>
|
package/docs/index.html
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<!-- CoCreate CSS -->
|
|
15
15
|
<link rel="stylesheet" href="https://cdn.cocreate.app/latest/CoCreate.min.css" type="text/css"/>
|
|
16
16
|
<link rel="stylesheet" href="/docs/index.css" collection="files" document_id="60888216117c640e7596303f" name="src" type="text/css" save="true"/>
|
|
17
|
-
<link rel="manifest" href="/manifest.
|
|
17
|
+
<link rel="manifest" href="/manifest.webmanifest" />
|
|
18
18
|
</head>
|
|
19
19
|
|
|
20
20
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/users",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.8",
|
|
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",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"webpack-log": "^3.0.1"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@cocreate/actions": "^1.8.
|
|
63
|
-
"@cocreate/crud-client": "^1.
|
|
64
|
-
"@cocreate/docs": "^1.7.
|
|
65
|
-
"@cocreate/element-prototype": "^1.8.
|
|
66
|
-
"@cocreate/local-storage": "^1.6.
|
|
67
|
-
"@cocreate/render": "^1.24.
|
|
62
|
+
"@cocreate/actions": "^1.8.8",
|
|
63
|
+
"@cocreate/crud-client": "^1.20.4",
|
|
64
|
+
"@cocreate/docs": "^1.7.8",
|
|
65
|
+
"@cocreate/element-prototype": "^1.8.7",
|
|
66
|
+
"@cocreate/local-storage": "^1.6.8",
|
|
67
|
+
"@cocreate/render": "^1.24.8"
|
|
68
68
|
}
|
|
69
69
|
}
|