@cocreate/attributes
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -0,1 +1,8 @@ | ||
## [1.1.3](https://github.com/CoCreate-app/CoCreate-attributes/compare/v1.1.2...v1.1.3) (2021-08-03) | ||
### Bug Fixes | ||
* get crdt.replateText params from element ([4a6ed5c](https://github.com/CoCreate-app/CoCreate-attributes/commit/4a6ed5c90364a20877bc43145bbfc7f3a26f451f)) | ||
## [1.1.2](https://github.com/CoCreate-app/CoCreate-attributes/compare/v1.1.1...v1.1.2) (2021-08-02) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@cocreate/attributes", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Simple HTML5 & JavaScript component add, update & remove values in element's attributes from input, select or js api. Easily configured using HTML5 data-attributes and/or JavaScript API.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -514,9 +514,9 @@ /*global CoCreate*/ | ||
crdt.replaceText({ | ||
collection: 'builder', | ||
document_id: 'null', | ||
collection: input.getAttribute('collection'), | ||
document_id: input.getAttribute('document_id'), | ||
name: input.getAttribute('name'), | ||
value: value + '', | ||
position: '0', | ||
// position: '0', | ||
}) | ||
else | ||
else | ||
input.value = value + ''; | ||
@@ -523,0 +523,0 @@ // console.warn('CoCreateStyle: unidentified input: ', inputType, 'input ', input) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81892