eoss-ui 0.5.39 → 0.5.40

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/select.js CHANGED
@@ -3968,7 +3968,8 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
3968
3968
  eles.push(h('el-option', {
3969
3969
  attrs: {
3970
3970
  label: item[_this2.label] || item.label,
3971
- value: _this2.isObject ? item : item[_this2.valKey]
3971
+ value: _this2.isObject ? item : item[_this2.valKey],
3972
+ disabled: item.disabled
3972
3973
  }
3973
3974
  }));
3974
3975
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.5.39",
3
+ "version": "0.5.40",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -289,7 +289,8 @@ export default {
289
289
  h('el-option', {
290
290
  attrs: {
291
291
  label: item[this.label] || item.label,
292
- value: this.isObject ? item : item[this.valKey]
292
+ value: this.isObject ? item : item[this.valKey],
293
+ disabled: item.disabled
293
294
  }
294
295
  })
295
296
  );
package/src/index.js CHANGED
@@ -117,7 +117,7 @@ if (typeof window !== 'undefined' && window.Vue) {
117
117
  }
118
118
 
119
119
  export default {
120
- version: '0.5.39',
120
+ version: '0.5.40',
121
121
  install,
122
122
  Button,
123
123
  ButtonGroup,