@syncfusion/ej2-inplace-editor 24.2.7 → 25.2.3

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.
@@ -1430,7 +1430,9 @@ let InPlaceEditor = class InPlaceEditor extends Component {
1430
1430
  */
1431
1431
  requiredModules() {
1432
1432
  const modules = [];
1433
- modules.push({ member: modulesList[this.type], args: [this] });
1433
+ if (Array.prototype.indexOf.call(this.moduleList, this.type) > -1) {
1434
+ modules.push({ member: modulesList[this.type], args: [this] });
1435
+ }
1434
1436
  return modules;
1435
1437
  }
1436
1438
  /**