@smartbit4all/ng-client 3.3.242 → 3.3.244
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/esm2020/lib/smart-form/smartform.component.mjs +4 -1
- package/esm2020/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +2 -2
- package/fesm2015/smartbit4all-ng-client.mjs +4 -1
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +4 -1
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.244.tgz +0 -0
- package/smartbit4all-ng-client-3.3.242.tgz +0 -0
|
@@ -5936,7 +5936,7 @@ class SmartformwidgetComponent {
|
|
|
5936
5936
|
}
|
|
5937
5937
|
const insertOpCount = change.delta.ops?.filter((it) => !!it.insert).length ?? 0;
|
|
5938
5938
|
if (insertOpCount > 0) {
|
|
5939
|
-
this.quill?.quillEditor.setContents(change.oldDelta);
|
|
5939
|
+
this.quill?.quillEditor.setContents(change.oldDelta, 'silent');
|
|
5940
5940
|
}
|
|
5941
5941
|
}
|
|
5942
5942
|
/**
|
|
@@ -6435,6 +6435,9 @@ class SmartformComponent {
|
|
|
6435
6435
|
});
|
|
6436
6436
|
this.translateWidgets(this.smartForm.widgets);
|
|
6437
6437
|
}
|
|
6438
|
+
else {
|
|
6439
|
+
this.markAllWidgetsForChangeDetection();
|
|
6440
|
+
}
|
|
6438
6441
|
}
|
|
6439
6442
|
async translateWidgets(widgets) {
|
|
6440
6443
|
await this.service.translateWidgets(this.smartForm.widgets);
|