evui 3.4.42 → 3.4.43

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": "evui",
3
- "version": "3.4.42",
3
+ "version": "3.4.43",
4
4
  "description": "A EXEM Library project",
5
5
  "author": "exem <dev_client@ex-em.com>",
6
6
  "license": "MIT",
@@ -137,7 +137,7 @@ export const scrollEvent = (params) => {
137
137
  if (pageInfo.isClientPaging) {
138
138
  store = getPagingData();
139
139
  }
140
- stores.viewStore = store;
140
+ stores.viewStore = [...store];
141
141
  scrollInfo.vScrollTopHeight = 0;
142
142
  scrollInfo.vScrollBottomHeight = 0;
143
143
  } else {
@@ -277,8 +277,8 @@ export const resizeEvent = (params) => {
277
277
  stores.orderedColumns.forEach((column) => {
278
278
  const item = column;
279
279
 
280
- if (!props.columns[column.index].width && !item.resized) {
281
- item.width = 0;
280
+ if (!item.resized) {
281
+ item.width = props.columns[column.index].width ?? 0;
282
282
  }
283
283
 
284
284
  return item;