cnhis-design-vue 2.1.149 → 2.1.150

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/es/age/index.js +2 -2
  3. package/es/big-table/index.js +56 -54
  4. package/es/big-table/style.css +1 -1
  5. package/es/button/index.js +4 -4
  6. package/es/captcha/index.js +3 -3
  7. package/es/card-reader-sdk/index.js +1 -1
  8. package/es/checkbox/index.js +1 -1
  9. package/es/color-picker/index.js +1 -1
  10. package/es/drag-layout/index.js +3 -3
  11. package/es/editor/index.js +1 -1
  12. package/es/ellipsis/index.js +1 -1
  13. package/es/fabric-chart/index.js +9 -9
  14. package/es/form-table/index.js +20 -20
  15. package/es/full-calendar/index.js +4 -4
  16. package/es/index/index.js +215 -213
  17. package/es/index/style.css +1 -1
  18. package/es/input/index.js +1 -1
  19. package/es/map/index.js +1 -1
  20. package/es/multi-chat/index.js +25 -25
  21. package/es/multi-chat-client/index.js +19 -19
  22. package/es/multi-chat-history/index.js +4 -4
  23. package/es/multi-chat-record/index.js +4 -4
  24. package/es/multi-chat-setting/index.js +20 -20
  25. package/es/multi-chat-sip/index.js +1 -1
  26. package/es/radio/index.js +1 -1
  27. package/es/scale-container/index.js +1 -1
  28. package/es/scale-view/index.js +27 -27
  29. package/es/select/index.js +4 -4
  30. package/es/select-label/index.js +3 -3
  31. package/es/select-person/index.js +2 -2
  32. package/es/select-tag/index.js +4 -4
  33. package/es/shortcut-setter/index.js +2 -2
  34. package/es/slider-tree/index.js +1 -1
  35. package/es/table-filter/index.js +32 -32
  36. package/es/tag/index.js +1 -1
  37. package/es/verification-code/index.js +2 -2
  38. package/lib/cui.common.js +240 -238
  39. package/lib/cui.umd.js +240 -238
  40. package/lib/cui.umd.min.js +7 -7
  41. package/package.json +1 -1
  42. package/packages/big-table/src/BigTable.vue +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "2.1.149",
3
+ "version": "2.1.150",
4
4
  "description": "前端业务UI库",
5
5
  "keyword": "cnhis-design-vue vue cnhis",
6
6
  "homepage": "http://dv.cnhis.com/",
@@ -2206,15 +2206,15 @@ export default create({
2206
2206
  table.setAllCheckboxRow(false);
2207
2207
  */
2208
2208
  table?.setAllCheckboxRow(false);
2209
- this.$set(this, 'checkedRows', [row]);
2210
- this.pubCheckChange([row]);
2209
+ this.$set(this, 'checkedRows', []);
2210
+ this.pubCheckChange([], {isChecked: false});
2211
2211
  rowVal = row;
2212
2212
  } else {
2213
2213
  if (checkedRow.length > 1) return false;
2214
2214
  rowVal = checked || (checkedRow.length === 1 && !checked) ? checkedRow[0] : {};
2215
2215
  this.$set(this, 'checkedRows', [rowVal]);
2216
2216
  }
2217
- this.updateAddCheckedRows(rowVal, true);
2217
+ // this.updateAddCheckedRows(rowVal, true);
2218
2218
  // 需要选中行
2219
2219
  this.$emit('handlerClickRow', rowVal, rowIndex, { source, column, trigger });
2220
2220
  this.setTableCurrentRow(table, row);