doway-coms 2.10.46 → 2.10.48

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": "doway-coms",
3
- "version": "2.10.46",
3
+ "version": "2.10.48",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -3699,6 +3699,7 @@ export default {
3699
3699
 
3700
3700
  /* 添加到你的组件样式中 */
3701
3701
  .popover-content-card {
3702
+ top:100px !important;
3702
3703
  max-height: none !important; /* 移除最大高度限制 */
3703
3704
  overflow: visible !important; /* 允许内容溢出 */
3704
3705
  }
@@ -675,7 +675,7 @@ export default {
675
675
  inputKeydownEvent(event) {
676
676
  if (event.keyCode === 9) {
677
677
  //tab事件
678
- if(this.allowAutoClear){
678
+ if(this.allowAutoClear!==false){
679
679
  this.$refs.pulldownRef.hidePanel()
680
680
  this.clearInputValue()
681
681
  }
@@ -717,7 +717,7 @@ export default {
717
717
  //造成当前行编辑装填变成关闭,并且取步到弹出组件,导致输入的值没有被清空
718
718
  //所以这里需要判断是否有弹出组件,如果没有,则清空输入框
719
719
  //davis20241129
720
- if(vm.allowAutoClear){
720
+ if(vm.allowAutoClear!==false){
721
721
  vm.clearInputValue()
722
722
  }
723
723
  }
@@ -901,7 +901,7 @@ export default {
901
901
  * 面板隐藏事件
902
902
  */
903
903
  pullDownHideEvent({ $event }) {
904
- if(this.allowAutoClear){
904
+ if(this.allowAutoClear!==false){
905
905
  this.clearInputValue()
906
906
  }
907
907
  },