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/dist/evui.common.js +10 -8
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +10 -8
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/grid/uses.js +3 -3
package/package.json
CHANGED
|
@@ -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 (!
|
|
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;
|