@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.
@@ -1474,7 +1474,9 @@ var InPlaceEditor = /** @__PURE__ @class */ (function (_super) {
1474
1474
  */
1475
1475
  InPlaceEditor.prototype.requiredModules = function () {
1476
1476
  var modules = [];
1477
- modules.push({ member: modulesList[this.type], args: [this] });
1477
+ if (Array.prototype.indexOf.call(this.moduleList, this.type) > -1) {
1478
+ modules.push({ member: modulesList[this.type], args: [this] });
1479
+ }
1478
1480
  return modules;
1479
1481
  };
1480
1482
  /**