evui 3.4.81 → 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 +66 -58
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +66 -58
- 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 +4 -2
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
|
|
|
@@ -1074,7 +1074,9 @@ export const filterEvent = (params) => {
|
|
|
1074
1074
|
let columnValue = rowData[column.index] ?? null;
|
|
1075
1075
|
column.type = column.type || 'string';
|
|
1076
1076
|
if (columnValue !== null) {
|
|
1077
|
-
if (
|
|
1077
|
+
if (columnValue instanceof Array) {
|
|
1078
|
+
columnValue = JSON.stringify(columnValue);
|
|
1079
|
+
} else if (typeof columnValue === 'object') {
|
|
1078
1080
|
columnValue = columnValue[column.field];
|
|
1079
1081
|
}
|
|
1080
1082
|
if (!column.hide && (column?.searchable === undefined || column?.searchable)) {
|