@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.
@@ -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);