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 +5 -0
- package/dist/index.native.js +5 -1
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +6 -2
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
- package/packages/dof-popup/index.vue +5 -1
package/CHANGELOG.md
CHANGED
package/dist/index.native.js
CHANGED
|
@@ -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);
|