eoss-ui 0.6.16 → 0.6.17
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/data-table.js +8 -9
- package/lib/eoss-ui.common.js +9 -10
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/data-table/src/column.vue +1 -7
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -605,17 +605,11 @@ export default {
|
|
|
605
605
|
config.sort = true;
|
|
606
606
|
config.outside = false;
|
|
607
607
|
}
|
|
608
|
-
let minWidth =
|
|
609
|
-
this.label || this.title
|
|
610
|
-
? (this.label || this.title).length * 15 + 20
|
|
611
|
-
: this.width
|
|
612
|
-
? ''
|
|
613
|
-
: 80;
|
|
614
608
|
return {
|
|
615
609
|
...config,
|
|
616
610
|
filterIcon: this.icon,
|
|
617
611
|
sortable: this.sortable || this.sort,
|
|
618
|
-
minWidth: this.minWidth || this.table.minWidth
|
|
612
|
+
minWidth: this.minWidth || this.table.minWidth,
|
|
619
613
|
className: [
|
|
620
614
|
this.className ? this.className : '',
|
|
621
615
|
this.type ? ' es-table-' + this.type + '-box' : '',
|