@festo-ui/angular 4.0.3-pre-20221027.4 → 4.0.3-pre-20221028.2
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/forms/text-editor/text-editor.component.mjs +2 -2
- package/fesm2015/festo-ui-angular.mjs +1 -1
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +1 -1
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/lib/forms/text-editor/text-editor.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5694,7 +5694,7 @@ class TextEditorComponent extends ValueAccessorBaseDirective {
|
|
|
5694
5694
|
this.valueSetter = (quillEditor, value) => {
|
|
5695
5695
|
const sanitizeConfig = this.config?.sanitizing || this.defaultConfig.sanitizing;
|
|
5696
5696
|
if (sanitizeConfig.sanitizingFn) {
|
|
5697
|
-
value = sanitizeConfig.sanitizingFn(this.domSanitizer);
|
|
5697
|
+
value = sanitizeConfig.sanitizingFn(this.domSanitizer, value);
|
|
5698
5698
|
}
|
|
5699
5699
|
if (!sanitizeConfig.skipDefaultSanitizing) {
|
|
5700
5700
|
value = this.domSanitizer.sanitize(SecurityContext.HTML, value);
|