@platforma-sdk/ui-vue 1.7.25 → 1.7.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platforma-sdk/ui-vue",
3
- "version": "1.7.25",
3
+ "version": "1.7.26",
4
4
  "type": "module",
5
5
  "main": "dist/lib.umd.cjs",
6
6
  "module": "dist/lib.js",
@@ -238,6 +238,7 @@ const gridOptions = ref<GridOptions>({
238
238
  onRowDataUpdated: (event) => {
239
239
  event.api.autoSizeAllColumns();
240
240
  },
241
+ maintainColumnOrder: true,
241
242
  rowModelType: 'clientSide',
242
243
  maxBlocksInCache: 1000,
243
244
  cacheBlockSize: 100,
@@ -253,7 +253,7 @@ function columns2rows(fields: number[], columns: PTableVector[], index: number):
253
253
  row[field] = toDisplayValue(value, valueType);
254
254
  }
255
255
  }
256
- row['id'] = index++;
256
+ row['id'] = (index++).toString();
257
257
  rowData.push(row);
258
258
  }
259
259
  return rowData;