@byteluck-fe/model-driven-controls 7.0.0-props.86 → 7.0.0-props.88

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.
@@ -210,10 +210,33 @@ _define_property(TagControl, "setting", [
210
210
  ]
211
211
  },
212
212
  {
213
- key: 'common-color',
213
+ key: 'common-select',
214
214
  visible: true,
215
215
  name: 'color',
216
- label: '颜色设置'
216
+ label: '默认',
217
+ default: 'default',
218
+ options: [
219
+ {
220
+ value: 'default',
221
+ label: '默认'
222
+ },
223
+ {
224
+ value: 'success',
225
+ label: '成功'
226
+ },
227
+ {
228
+ value: 'processing',
229
+ label: '进行中'
230
+ },
231
+ {
232
+ value: 'error',
233
+ label: '错误'
234
+ },
235
+ {
236
+ value: 'warning',
237
+ label: '警告'
238
+ }
239
+ ]
217
240
  },
218
241
  {
219
242
  key: 'options-setting',
@@ -131,7 +131,7 @@ var TagProperty = /*#__PURE__*/ function(BaseControlProperty) {
131
131
  _this.defaultValue = (_ref2 = props === null || props === void 0 ? void 0 : props.defaultValue) !== null && _ref2 !== void 0 ? _ref2 : [];
132
132
  _this.size = (_ref3 = props === null || props === void 0 ? void 0 : props.size) !== null && _ref3 !== void 0 ? _ref3 : 'middle';
133
133
  _this.align = (_ref4 = props === null || props === void 0 ? void 0 : props.align) !== null && _ref4 !== void 0 ? _ref4 : 'left';
134
- _this.color = (_ref5 = props === null || props === void 0 ? void 0 : props.color) !== null && _ref5 !== void 0 ? _ref5 : '#1677ff';
134
+ _this.color = (_ref5 = props === null || props === void 0 ? void 0 : props.color) !== null && _ref5 !== void 0 ? _ref5 : 'default';
135
135
  _this.optionConfig = (_ref6 = props === null || props === void 0 ? void 0 : props.optionConfig) !== null && _ref6 !== void 0 ? _ref6 : 'custom';
136
136
  _this.datasourceBind = new DataSourceBind(props === null || props === void 0 ? void 0 : props.datasourceBind);
137
137
  _this.openMultistageFilling = (_ref7 = props === null || props === void 0 ? void 0 : props.openMultistageFilling) !== null && _ref7 !== void 0 ? _ref7 : false;