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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.6.16",
3
+ "version": "0.6.17",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -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 || 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' : '',
package/src/index.js CHANGED
@@ -121,7 +121,7 @@ if (typeof window !== 'undefined' && window.Vue) {
121
121
  }
122
122
 
123
123
  export default {
124
- version: '0.6.16',
124
+ version: '0.6.17',
125
125
  install,
126
126
  Button,
127
127
  ButtonGroup,