@syncfusion/ej2-richtexteditor 20.1.60 → 20.1.61

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.
@@ -15745,7 +15745,7 @@ class MsWordPaste {
15745
15745
  this.checkVShape(elm);
15746
15746
  let imgElem = elm.querySelectorAll('img');
15747
15747
  for (let i = 0; i < imgElem.length; i++) {
15748
- if (!isNullOrUndefined(imgElem[i].getAttribute('v:shapes')) && imgElem[i].getAttribute('v:shapes').indexOf('Picture') < 0) {
15748
+ if (!isNullOrUndefined(imgElem[i].getAttribute('v:shapes')) && imgElem[i].getAttribute('v:shapes').indexOf('Picture') < 0 && imgElem[i].getAttribute('v:shapes').indexOf('Image') < 0) {
15749
15749
  detach(imgElem[i]);
15750
15750
  }
15751
15751
  }