sone-ui-component-3.2.4 2.0.276 → 2.0.278

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": "sone-ui-component-3.2.4",
3
- "version": "2.0.276",
3
+ "version": "2.0.278",
4
4
  "private": false,
5
5
  "main": "lib/sone-ui.common.js",
6
6
  "files": [
@@ -465,6 +465,7 @@
465
465
  :prop="column.prop"
466
466
  :width="column.width"
467
467
  :align="column.hasOwnProperty('align') ? column.align : 'left'"
468
+ :show-overflow-tooltip="false"
468
469
  filter-placement="bottom-end"
469
470
  :header-align="column.hasOwnProperty('headerAlign') ? column.headerAlign : 'left'"
470
471
  v-else-if="column.hasOwnProperty('istrue')?column.istrue:true"
@@ -482,6 +483,7 @@
482
483
  :min-width="childColumn.minWidth"
483
484
  :prop="childColumn.prop"
484
485
  :width="childColumn.width"
486
+ :show-overflow-tooltip="false"
485
487
  :align="childColumn.hasOwnProperty('align') ? childColumn.align : 'left'"
486
488
  filter-placement="bottom-end"
487
489
  :header-align="childColumn.hasOwnProperty('headerAlign') ? childColumn.headerAlign : 'left'"
package/src/index.js CHANGED
@@ -55,7 +55,7 @@ if (typeof window !== 'undefined' && window.Vue) {
55
55
  }
56
56
 
57
57
  export default {
58
- version: '2.0.276',
58
+ version: '2.0.278',
59
59
  locale: locale.use,
60
60
  i18n: locale.i18n,
61
61
  install,
@@ -219,7 +219,7 @@
219
219
  border: 6px solid transparent;
220
220
  border-bottom-color: #009bee;
221
221
  position: absolute;
222
- z-index: 1000;
222
+ z-index: 10;
223
223
  left: calc(50% - 5px);
224
224
  top: -5px;
225
225
  cursor: pointer;