doway-coms 1.5.10 → 1.5.12
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/.browserslistrc +2 -2
- package/README.md +28 -28
- package/dist/doway-coms.common.js +135645 -0
- package/dist/doway-coms.css +3 -0
- package/dist/doway-coms.umd.js +135655 -0
- package/dist/doway-coms.umd.min.js +317 -0
- package/dist/package.json +12 -0
- package/package.json +1 -1
- package/packages/BaseGantt/src/index.vue +2 -0
- package/dist/css/chunk-vendors.7f83d8f9.css +0 -8
- package/dist/css/index.86478f73.css +0 -3
- package/dist/favicon.ico +0 -0
- package/dist/js/chunk-vendors.307eaa8f.js +0 -347
- package/dist/js/index.48e7f7ac.js +0 -2
package/package.json
CHANGED
|
@@ -448,9 +448,11 @@ export default {
|
|
|
448
448
|
evt.clientY + evt.target.offsetHeight - evt.offsetY // (rowIndex + 1) * this.rowHeight
|
|
449
449
|
this.ganttBarTooltip.item = ordInfo
|
|
450
450
|
this.ganttBarTooltip.show = true
|
|
451
|
+
this.$emit('mouseEnter',ordInfo)
|
|
451
452
|
},
|
|
452
453
|
ganttBarMouseLeave(evt, ordInfo) {
|
|
453
454
|
this.ganttBarTooltip.show = false
|
|
455
|
+
this.$emit('mouseLeave',ordInfo)
|
|
454
456
|
},
|
|
455
457
|
bodyScroll(scrollInfo) {
|
|
456
458
|
if (scrollInfo.isX === true) {
|