bk-magic-vue 2.5.4-beta.5 → 2.5.4-beta.6
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/dist/bk-magic-vue.js +10 -6
- package/dist/bk-magic-vue.min.js +1 -1
- package/dist/bk-magic-vue.min.js.gz +0 -0
- package/dist/bk-magic-vue.min.js.map +1 -1
- package/lib/date-picker.js +10 -6
- package/lib/time-picker.js +10 -6
- package/package.json +1 -1
package/dist/bk-magic-vue.js
CHANGED
|
@@ -7743,14 +7743,18 @@
|
|
|
7743
7743
|
var _this$$slots = this.$slots,
|
|
7744
7744
|
headerSlots = _this$$slots.header,
|
|
7745
7745
|
footerSlots = _this$$slots.footer;
|
|
7746
|
-
|
|
7747
|
-
|
|
7748
|
-
|
|
7746
|
+
if (headerSlots) {
|
|
7747
|
+
for (var i = 0; i < headerSlots.length; i++) {
|
|
7748
|
+
if (headerSlots[i].elm.contains(e.target)) {
|
|
7749
|
+
return;
|
|
7750
|
+
}
|
|
7749
7751
|
}
|
|
7750
7752
|
}
|
|
7751
|
-
|
|
7752
|
-
|
|
7753
|
-
|
|
7753
|
+
if (footerSlots) {
|
|
7754
|
+
for (var _i = 0; _i < footerSlots.length; _i++) {
|
|
7755
|
+
if (footerSlots[_i].elm.contains(e.target)) {
|
|
7756
|
+
return;
|
|
7757
|
+
}
|
|
7754
7758
|
}
|
|
7755
7759
|
}
|
|
7756
7760
|
this.visible = false;
|