@cocreate/unique 1.4.2 → 1.4.5

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,25 @@
1
+ ## [1.4.5](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.4.4...v1.4.5) (2022-08-31)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * getValue and setValue using HTMLElement.prototype ([94f9c1c](https://github.com/CoCreate-app/CoCreate-unique/commit/94f9c1cd6bb2381750caf9411866396f5559fb5d))
7
+
8
+ ## [1.4.4](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.4.3...v1.4.4) (2022-06-18)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump dependencies ([148d6a1](https://github.com/CoCreate-app/CoCreate-unique/commit/148d6a1d4a59c2cbb8c8e70448ce74ac55420741))
14
+
15
+ ## [1.4.3](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.4.2...v1.4.3) (2022-06-12)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * update dependencies ([a363ce5](https://github.com/CoCreate-app/CoCreate-unique/commit/a363ce5ab2e00a0993c5665e5c5055a9cf0c9bfd))
21
+ * update docs css document_id ([2d5ac38](https://github.com/CoCreate-app/CoCreate-unique/commit/2d5ac3862f0e5cbf6ed3c0653729a60b39615524))
22
+
1
23
  ## [1.4.2](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.4.1...v1.4.2) (2022-05-23)
2
24
 
3
25
 
package/docs/index.html CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  <!-- CoCreate CSS -->
15
15
  <link rel="stylesheet" href="https://cdn.cocreate.app/latest/CoCreate.min.css" type="text/css"/>
16
- <link rel="stylesheet" href="/docs/index.css" collection="files" document_id="62827d7e8082ce05b081430b" name="src" type="text/css" save="true"/>
16
+ <link rel="stylesheet" href="/docs/index.css" collection="files" document_id="60888216117c640e7596303f" name="src" type="text/css" save="true"/>
17
17
  </head>
18
18
 
19
19
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/unique",
3
- "version": "1.4.2",
3
+ "version": "1.4.5",
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.6.2",
65
- "@cocreate/docs": "^1.3.1",
66
- "@cocreate/uuid": "^1.2.1"
64
+ "@cocreate/crud-client": "^1.7.1",
65
+ "@cocreate/docs": "^1.3.3",
66
+ "@cocreate/uuid": "^1.2.4"
67
67
  }
68
68
  }
package/src/client.js CHANGED
@@ -49,7 +49,7 @@ const CoCreateUnique = {
49
49
  const self = this;
50
50
  input.addEventListener('input', function(e) {
51
51
  let request_data = {};
52
- let value = input.getValue(input);
52
+ let value = input.getValue();
53
53
  request_data['organization_id'] = window.config.organization_id;
54
54
  request_data['apiKey'] = window.config.apiKey;
55
55
  request_data['collection'] = input.getAttribute('collection');