@m4l/components 9.4.2-JT11122025.beta.2 → 9.4.2-JT12122025.beta.1

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.
@@ -232,8 +232,11 @@ function DataGridProvider(props) {
232
232
  });
233
233
  getAllViewModes().forEach((viewModeParam) => {
234
234
  const currentConfig = updatedConfigs[viewModeParam];
235
+ const currentConfigKeys = new Set(
236
+ getConfigColumns(viewModeParam).map((c) => c.key)
237
+ );
235
238
  const newColumnsForView = columns.filter(
236
- (column, index) => column.key !== getConfigColumns(viewModeParam)[index]?.key
239
+ (column) => !currentConfigKeys.has(column.key)
237
240
  );
238
241
  if (newColumnsForView.length > 0) {
239
242
  const colLength = currentConfig.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.4.2-JT11122025.beta.2",
3
+ "version": "9.4.2-JT12122025.beta.1",
4
4
  "license": "UNLICENSED",
5
5
  "description": "M4L Components",
6
6
  "lint-staged": {