@cocreate/unique 1.2.23 → 1.2.27

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.27](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.26...v1.2.27) (2022-01-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updated saveDocument to save and createDocument replaced with save, reset ([6c7309d](https://github.com/CoCreate-app/CoCreate-unique/commit/6c7309d05e9cff151a25d17a5cb56089ea7ccb6b))
7
+
8
+ ## [1.2.26](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.25...v1.2.26) (2022-01-01)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * 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))
14
+
15
+ ## [1.2.25](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.24...v1.2.25) (2021-12-15)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * update dependencies ([ed28ce5](https://github.com/CoCreate-app/CoCreate-unique/commit/ed28ce5ac440de281966cecc51de86bd5d7438ec))
21
+
22
+ ## [1.2.24](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.23...v1.2.24) (2021-12-14)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * update dependencies ([d2fe3cf](https://github.com/CoCreate-app/CoCreate-unique/commit/d2fe3cfd5c78fee0268b0ff4a3f19f951eed6dcd))
28
+
1
29
  ## [1.2.23](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.2.22...v1.2.23) (2021-11-27)
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
@@ -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.23",
3
+ "version": "1.2.27",
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.38",
65
- "@cocreate/docs": "^1.2.60",
66
- "@cocreate/uuid": "^1.1.49"
64
+ "@cocreate/crud-client": "^1.4.40",
65
+ "@cocreate/docs": "^1.2.62",
66
+ "@cocreate/uuid": "^1.1.51"
67
67
  }
68
68
  }