feat(dees-form): register new input components (tags, list, wysiwyg, richtext) and emit change notification for richtext updates

This commit is contained in:
2026-03-10 13:56:22 +00:00
parent 09741e0b37
commit eaf327ea75
4 changed files with 21 additions and 1 deletions

View File

@@ -269,6 +269,7 @@ export class DeesInputRichtext extends DeesInputBase<string> {
onUpdate: ({ editor }) => {
this.value = editor.getHTML();
this.updateWordCount();
this.changeSubject.next(this.value);
this.dispatchEvent(
new CustomEvent('input', {
detail: { value: this.value },