@libs-ui/components-inputs-quill 0.2.327-0 → 0.2.327-1

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.
@@ -2328,14 +2328,14 @@ class LibsUiComponentsInputsQuill2xComponent {
2328
2328
  updateValueByRootQuillHtml() {
2329
2329
  const html = this.removeUnwantedPart(this.quill?.root.innerHTML || '');
2330
2330
  if (!this.quill?.root.getElementsByTagName('img').length && !this.quill?.getText()) {
2331
- set(this.item, this.fieldBind(), '');
2331
+ set(this.item(), this.fieldBind(), '');
2332
2332
  this.validate();
2333
- this.outChange.emit(get(this.item(), this.fieldBind()));
2333
+ this.outChange.emit(get(this.item, this.fieldBind()));
2334
2334
  return;
2335
2335
  }
2336
2336
  this.convertInnerHTMLAndSetValue(html);
2337
2337
  this.validate();
2338
- this.outChange.emit(get(this.item(), this.fieldBind()));
2338
+ this.outChange.emit(get(this.item, this.fieldBind()));
2339
2339
  }
2340
2340
  convertInnerHTMLAndSetValue(html) {
2341
2341
  this.setStyleForContent();