@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.
- package/esm2022/interfaces/quill2x.interface.mjs +1 -1
- package/esm2022/quill2x.component.mjs +4 -4
- package/fesm2022/libs-ui-components-inputs-quill.mjs +3 -3
- package/fesm2022/libs-ui-components-inputs-quill.mjs.map +1 -1
- package/interfaces/quill2x.interface.d.ts +1 -0
- package/package.json +17 -17
- package/quill2x.component.d.ts +2 -1
|
@@ -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
|
|
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
|
|
2338
|
+
this.outChange.emit(get(this.item, this.fieldBind()));
|
|
2339
2339
|
}
|
|
2340
2340
|
convertInnerHTMLAndSetValue(html) {
|
|
2341
2341
|
this.setStyleForContent();
|