n20-common-lib 2.4.25 → 2.4.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.4.25",
3
+ "version": "2.4.26",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -44,6 +44,7 @@
44
44
  <el-checkbox
45
45
  v-if="column.groupId === gp.groupId"
46
46
  :key="i"
47
+ v-hover-tooltip="column[labelKey]"
47
48
  :label="column[labelKey]"
48
49
  :disabled="column.checked"
49
50
  class="m-t"
@@ -119,7 +119,7 @@ HoverTooltip.install = (Vue) => {
119
119
  el.$tipHide = () => tipHide(el)
120
120
  el.addEventListener('mouseenter', () => {
121
121
  console.log(getWidth(binding.value))
122
- if (getWidth(binding.value) > (binding.arg || 100)) {
122
+ if (getWidth(binding.value) > (binding.arg || 98)) {
123
123
  return el.$tipShow()
124
124
  }
125
125
  })