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

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.
@@ -165,6 +165,10 @@ const ColumnsConfig = forwardRef((props, ref) => {
165
165
  newColumnConfig.visible = columnConfigRow.visible;
166
166
  newColumnConfig.frozen = columnConfigRow.frozen;
167
167
  }
168
+ const rowIndex = rows.findIndex((row) => row.key === columnConfig.key);
169
+ if (rowIndex > -1) {
170
+ newColumnConfig.index = rowIndex;
171
+ }
168
172
  }
169
173
  return newColumnConfig;
170
174
  }).sort((a, b) => getRowIndex(a) - getRowIndex(b));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.4.2-JT12122025.beta.1",
3
+ "version": "9.4.2-JT12122025.beta.2",
4
4
  "license": "UNLICENSED",
5
5
  "description": "M4L Components",
6
6
  "lint-staged": {