@revolist/revogrid 4.9.18 → 4.9.20

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.
@@ -2299,12 +2299,13 @@ const RevoGridComponent = class {
2299
2299
  additionalDataChanged(data) {
2300
2300
  this.additionaldatachanged.emit(data);
2301
2301
  }
2302
- pluginsChanged(plugins = []) {
2302
+ pluginsChanged(plugins = [], _prevPlugins) {
2303
2303
  // pass data provider to plugins
2304
2304
  const pluginData = this.getPluginData();
2305
2305
  if (!pluginData) {
2306
2306
  return;
2307
2307
  }
2308
+ // todo: remove old plugins if any was removed based on _prevPlugins
2308
2309
  // register user plugins
2309
2310
  plugins === null || plugins === void 0 ? void 0 : plugins.forEach(userPlugin => {
2310
2311
  const existingPlugin = this.internalPlugins.find(createdPlugin => createdPlugin instanceof userPlugin);