@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.
- package/dist/cjs/revo-grid.cjs.entry.js +2 -1
- package/dist/cjs/revo-grid.cjs.entry.js.map +1 -1
- package/dist/collection/components/revoGrid/revo-grid.js +2 -1
- package/dist/collection/components/revoGrid/revo-grid.js.map +1 -1
- package/dist/esm/revo-grid.entry.js +2 -1
- package/dist/esm/revo-grid.entry.js.map +1 -1
- package/dist/revo-grid/revo-grid.entry.js +1 -1
- package/dist/revo-grid/revo-grid.entry.js.map +1 -1
- package/dist/types/components/revoGrid/revo-grid.d.ts +1 -1
- package/hydrate/index.js +2 -1
- package/hydrate/index.mjs +2 -1
- package/package.json +1 -1
- package/standalone/revo-grid.js +2 -1
- package/standalone/revo-grid.js.map +1 -1
|
@@ -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);
|