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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evui",
3
- "version": "3.4.82",
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