dolphin-weex-ui 2.1.0 → 2.1.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # 升级日志
2
2
 
3
+ ## 2.1.1
4
+
5
+ - [ ! ] 优化dof-popup组件点击蒙层自动关闭问题
6
+ - [ ! ] date: 2024/04/22
7
+
3
8
  ## 2.1.0
4
9
 
5
10
  - [ ! ] 优化dof-slider动效卡顿问题
@@ -30780,6 +30780,10 @@ exports.default = {
30780
30780
  borderRadius: {
30781
30781
  type: String,
30782
30782
  default: '32px'
30783
+ },
30784
+ isOverLayClickHide: {
30785
+ type: Boolean,
30786
+ default: true
30783
30787
  }
30784
30788
  },
30785
30789
  data: function data() {
@@ -30917,7 +30921,7 @@ exports.default = {
30917
30921
  dofOverlayBodyClicking: function dofOverlayBodyClicking() {
30918
30922
  var _this4 = this;
30919
30923
 
30920
- this.isShow && this.appearPopup(false);
30924
+ this.isOverLayClickHide && this.isShow && this.appearPopup(false);
30921
30925
  setTimeout(function () {
30922
30926
  _this4.$emit('dofPopupOverlayClicked');
30923
30927
  }, 100);