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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evui",
3
- "version": "3.4.81",
3
+ "version": "3.4.83",
4
4
  "description": "A EXEM Library project",
5
5
  "author": "exem <dev_client@ex-em.com>",
6
6
  "license": "MIT",
@@ -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 && lastCheckedColumn !== null) { // 최소 한개 컬럼은 선택되도록
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[ROW_CHECK_INDEX] = false;
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 (typeof columnValue === 'object') {
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)) {