evui 3.4.82 → 3.4.83
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 +63 -57
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +63 -57
- 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/GridColumnSetting.vue +4 -1
- package/src/components/grid/uses.js +1 -1
package/package.json
CHANGED
|
@@ -138,7 +138,10 @@ export default {
|
|
|
138
138
|
const onCheckColumn = (columns) => {
|
|
139
139
|
if (columns?.length === 1) {
|
|
140
140
|
lastCheckedColumn = columns[0];
|
|
141
|
-
} else if (columns?.length < 1
|
|
141
|
+
} else if (columns?.length < 1) { // 최소 한개 컬럼은 선택되도록
|
|
142
|
+
if (lastCheckedColumn == null) {
|
|
143
|
+
lastCheckedColumn = originColumnList.value[0]?.text;
|
|
144
|
+
}
|
|
142
145
|
checkColumnGroup.value.push(lastCheckedColumn);
|
|
143
146
|
}
|
|
144
147
|
};
|
|
@@ -560,7 +560,7 @@ export const checkEvent = (params) => {
|
|
|
560
560
|
*/
|
|
561
561
|
const onCheck = (event, row) => {
|
|
562
562
|
if (checkInfo.useCheckbox.mode === 'single' && checkInfo.prevCheckedRow.length) {
|
|
563
|
-
checkInfo.prevCheckedRow
|
|
563
|
+
checkInfo.prevCheckedRow = [];
|
|
564
564
|
unCheckedRow(checkInfo.prevCheckedRow);
|
|
565
565
|
}
|
|
566
566
|
|