feat: update vc-trigger to 2.6.2
parent
ca48b2f905
commit
8d51e59112
|
@ -181,10 +181,7 @@ export default {
|
||||||
// hiddenClassName,
|
// hiddenClassName,
|
||||||
},
|
},
|
||||||
class: className,
|
class: className,
|
||||||
on: {
|
on: $listeners,
|
||||||
mouseenter: mouseenter || noop,
|
|
||||||
mouseleave: mouseleave || noop,
|
|
||||||
},
|
|
||||||
ref: 'popupInstance',
|
ref: 'popupInstance',
|
||||||
style: { ...sizeStyle, ...popupStyle, ...this.getZIndexStyle() },
|
style: { ...sizeStyle, ...popupStyle, ...this.getZIndexStyle() },
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,6 +70,14 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
mixins: [BaseMixin],
|
mixins: [BaseMixin],
|
||||||
|
provide () {
|
||||||
|
return {
|
||||||
|
vcTriggerContext: this,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
inject: {
|
||||||
|
vcTriggerContext: { default: {}},
|
||||||
|
},
|
||||||
data () {
|
data () {
|
||||||
const props = this.$props
|
const props = this.$props
|
||||||
let popupVisible
|
let popupVisible
|
||||||
|
@ -122,6 +130,7 @@ export default {
|
||||||
beforeDestroy () {
|
beforeDestroy () {
|
||||||
this.clearDelayTimer()
|
this.clearDelayTimer()
|
||||||
this.clearOutsideHandler()
|
this.clearOutsideHandler()
|
||||||
|
clearTimeout(this.mouseDownTimeout)
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updatedCal () {
|
updatedCal () {
|
||||||
|
@ -260,6 +269,19 @@ export default {
|
||||||
this.setPopupVisible(!this.$data.sPopupVisible, event)
|
this.setPopupVisible(!this.$data.sPopupVisible, event)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onPopupMouseDown (...args) {
|
||||||
|
const { vcTriggerContext = {}} = this
|
||||||
|
this.hasPopupMouseDown = true
|
||||||
|
|
||||||
|
clearTimeout(this.mouseDownTimeout)
|
||||||
|
this.mouseDownTimeout = setTimeout(() => {
|
||||||
|
this.hasPopupMouseDown = false
|
||||||
|
}, 0)
|
||||||
|
|
||||||
|
if (vcTriggerContext.onPopupMouseDown) {
|
||||||
|
vcTriggerContext.onPopupMouseDown(...args)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onDocumentClick (event) {
|
onDocumentClick (event) {
|
||||||
if (this.$props.mask && !this.$props.maskClosable) {
|
if (this.$props.mask && !this.$props.maskClosable) {
|
||||||
|
@ -267,8 +289,7 @@ export default {
|
||||||
}
|
}
|
||||||
const target = event.target
|
const target = event.target
|
||||||
const root = this.$el
|
const root = this.$el
|
||||||
const popupNode = this.getPopupDomNode()
|
if (!contains(root, target) && !this.hasPopupMouseDown) {
|
||||||
if (!contains(root, target) && !contains(popupNode, target)) {
|
|
||||||
this.close()
|
this.close()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -318,6 +339,8 @@ export default {
|
||||||
if (this.isMouseLeaveToHide()) {
|
if (this.isMouseLeaveToHide()) {
|
||||||
mouseProps.mouseleave = self.onPopupMouseleave
|
mouseProps.mouseleave = self.onPopupMouseleave
|
||||||
}
|
}
|
||||||
|
mouseProps.mousedown = this.onPopupMouseDown
|
||||||
|
mouseProps.touchstart = this.onPopupMouseDown
|
||||||
const {
|
const {
|
||||||
handleGetPopupClassFromAlign, getRootDomNode,
|
handleGetPopupClassFromAlign, getRootDomNode,
|
||||||
getContainer, $listeners } = self
|
getContainer, $listeners } = self
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
// based on rc-trigger 2.5.4
|
// based on rc-trigger 2.6.2
|
||||||
import Trigger from './Trigger'
|
import Trigger from './Trigger'
|
||||||
export default Trigger
|
export default Trigger
|
||||||
|
|
Loading…
Reference in New Issue