@cocreate/unique 1.2.25 → 1.2.29

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.2.29](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.28...v1.2.29) (2022-02-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * replaced show and hide class hidden with attribute hidden ([7f803a9](https://github.com/CoCreate-app/CoCreate-unique/commit/7f803a9b42b6ce518c2e2fd4dc18629c38f24959))
7
+
8
+ ## [1.2.28](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.27...v1.2.28) (2022-02-01)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update dependency versions ([dcc9ee1](https://github.com/CoCreate-app/CoCreate-unique/commit/dcc9ee1c8e5e689bdf0f19cc05b473f64652fbfd))
14
+
15
+ ## [1.2.27](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.26...v1.2.27) (2022-01-16)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * updated saveDocument to save and createDocument replaced with save, reset ([6c7309d](https://github.com/CoCreate-app/CoCreate-unique/commit/6c7309d05e9cff151a25d17a5cb56089ea7ccb6b))
21
+
22
+ ## [1.2.26](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.25...v1.2.26) (2022-01-01)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * get-value attribute value now supports a selector added # to all values currently in get-value attributes ([a6bfe20](https://github.com/CoCreate-app/CoCreate-unique/commit/a6bfe209b4f286abbd8dff5ddf94aba2b71f8c42))
28
+
1
29
  ## [1.2.25](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.24...v1.2.25) (2021-12-15)
2
30
 
3
31
 
package/demo/index.html CHANGED
@@ -35,7 +35,7 @@
35
35
  <form collection="users" document_id realtime="false">
36
36
  <input type="text" unique class="floating-label" placeholder="Name" name="name">
37
37
  <input type="text" unique class="floating-label" placeholder="Email" name="email">
38
- <button actions="validate, saveDocument" class="position:fixed bottom:15px right:15px background:dodgerblue grow-hover border-radius:50% padding:15px">
38
+ <button actions="validate, save" class="position:fixed bottom:15px right:15px background:dodgerblue grow-hover border-radius:50% padding:15px">
39
39
  <i class="far fa-save"></i>
40
40
  </button>
41
41
  </form>
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">
@@ -112,7 +112,7 @@
112
112
  <div class="svSplitter svHorizontal"> </div>
113
113
 
114
114
  <div class="svPanel">
115
- <iframe get-value="demo" frameBorder="0" height="100%" width="100%" class="min-width:300px"></iframe>
115
+ <iframe get-value="#demo" frameBorder="0" height="100%" width="100%" class="min-width:300px"></iframe>
116
116
  </div>
117
117
 
118
118
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/unique",
3
- "version": "1.2.25",
3
+ "version": "1.2.29",
4
4
  "description": "A simple unique component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "unique",
@@ -61,8 +61,8 @@
61
61
  "webpack-log": "^3.0.1"
62
62
  },
63
63
  "dependencies": {
64
- "@cocreate/crud-client": "^1.4.40",
65
- "@cocreate/docs": "^1.2.62",
66
- "@cocreate/uuid": "^1.1.51"
64
+ "@cocreate/crud-client": "^1.4.43",
65
+ "@cocreate/docs": "^1.2.65",
66
+ "@cocreate/uuid": "^1.1.55"
67
67
  }
68
68
  }