cnhis-design-vue 2.1.15 → 2.1.18

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 (46) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/es/age/index.js +2 -2
  3. package/es/big-table/index.js +119 -106
  4. package/es/big-table/style.css +1 -1
  5. package/es/button/index.js +1208 -1132
  6. package/es/button/style.css +1 -1
  7. package/es/captcha/index.js +3 -3
  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/fabric-chart/index.js +72 -81
  13. package/es/fabric-chart/style.css +1 -1
  14. package/es/form-table/index.js +17 -17
  15. package/es/index/index.js +1582 -1487
  16. package/es/index/style.css +1 -1
  17. package/es/input/index.js +1 -1
  18. package/es/map/index.js +1 -1
  19. package/es/multi-chat/index.js +24 -24
  20. package/es/multi-chat-client/index.js +18 -18
  21. package/es/multi-chat-history/index.js +4 -4
  22. package/es/multi-chat-record/index.js +4 -4
  23. package/es/multi-chat-setting/index.js +74 -59
  24. package/es/multi-chat-setting/style.css +1 -1
  25. package/es/multi-chat-sip/index.js +1 -1
  26. package/es/radio/index.js +1 -1
  27. package/es/scale-view/index.js +24 -24
  28. package/es/select/index.js +3 -3
  29. package/es/select-label/index.js +3 -3
  30. package/es/select-person/index.js +2 -2
  31. package/es/table-filter/index.js +1227 -1151
  32. package/es/table-filter/style.css +1 -1
  33. package/es/tag/index.js +1 -1
  34. package/es/verification-code/index.js +2 -2
  35. package/lib/cui.common.js +1682 -1587
  36. package/lib/cui.umd.js +1682 -1587
  37. package/lib/cui.umd.min.js +23 -23
  38. package/package.json +2 -2
  39. package/packages/big-table/src/components/AutoLayoutButton.vue +1 -1
  40. package/packages/big-table/src/utils/batchEditing.js +610 -603
  41. package/packages/button/src/ButtonPrint/index.vue +4 -0
  42. package/packages/button/src/ButtonPrint/js/print.es.min.js +2791 -3
  43. package/packages/fabric-chart/src/FabricChart.vue +15 -36
  44. package/packages/fabric-chart/src/fabric-chart/FabricCanvas.vue +4 -3
  45. package/packages/fabric-chart/src/fabric-chart/FabricScaleValue.vue +8 -6
  46. package/packages/multi-chat/setting/baseInfo/index.vue +27 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "2.1.15",
3
+ "version": "2.1.18",
4
4
  "description": "前端业务UI库",
5
5
  "keyword": "cnhis-design-vue vue cnhis",
6
6
  "homepage": "http://dv.cnhis.com/",
@@ -104,4 +104,4 @@
104
104
  "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
105
105
  }
106
106
  }
107
- }
107
+ }
@@ -215,7 +215,7 @@ export default {
215
215
  return;
216
216
  }
217
217
  btnTotalWidth += (this.btnShowWidthObj[btn.id] || 0) + 10;
218
- if (btnTotalWidth < (wrapWidth-15)) {
218
+ if (btnTotalWidth < (wrapWidth)) {
219
219
  btn.showType = '_show';
220
220
  } else {
221
221
  btn.showType = '_hide';