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/lib/sone-ui.common.js +9 -7
- package/lib/sone-ui.common.js.map +1 -1
- package/lib/sone-ui.umd.js +9 -7
- package/lib/sone-ui.umd.js.map +1 -1
- package/lib/sone-ui.umd.min.js +2 -2
- package/lib/sone-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/table/src/main.vue +2 -0
- package/src/index.js +1 -1
- package/src/styles/form.scss +1 -1
package/package.json
CHANGED
|
@@ -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