@byteluck-fe/model-driven-controls 6.2.0-2-beta.1 → 6.2.0-jeecg-1

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.
@@ -107,7 +107,10 @@ var DataViewControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntime
107
107
  */ _define_property(_this, "isLoading", void 0), /**
108
108
  * 绑定业务模型
109
109
  * @public
110
- */ _define_property(_this, "datasourceBind", void 0);
110
+ */ _define_property(_this, "datasourceBind", void 0), /**
111
+ * 流程表单只读控件展现形式;disabled:禁用模式;text:文本模式;
112
+ * @defaultValue disabled
113
+ */ _define_property(_this, "processFormReadonlyControlMode", void 0);
111
114
  var _props_save;
112
115
  _this.save = new OperationItem((_props_save = props === null || props === void 0 ? void 0 : props.save) !== null && _props_save !== void 0 ? _props_save : {
113
116
  content: getLocaleText('CMD.save', null, '保存'),
@@ -139,6 +142,8 @@ var DataViewControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntime
139
142
  var _props_isLoading;
140
143
  _this.isLoading = (_props_isLoading = props === null || props === void 0 ? void 0 : props.isLoading) !== null && _props_isLoading !== void 0 ? _props_isLoading : false;
141
144
  _this.datasourceBind = new DataSourceBind(props === null || props === void 0 ? void 0 : props.datasourceBind);
145
+ var _props_processFormReadonlyControlMode;
146
+ _this.processFormReadonlyControlMode = (_props_processFormReadonlyControlMode = props === null || props === void 0 ? void 0 : props.processFormReadonlyControlMode) !== null && _props_processFormReadonlyControlMode !== void 0 ? _props_processFormReadonlyControlMode : 'disabled';
142
147
  return _this;
143
148
  }
144
149
  return DataViewControlProperty;
@@ -158,14 +158,9 @@ _define_property(ListViewControl, "setting", [
158
158
  key: 'list-selection-state',
159
159
  visible: true
160
160
  },
161
- {
162
- key: 'list-tree-setting',
163
- visible: true
164
- },
165
- {
166
- key: 'list-master-detail',
167
- visible: true
168
- },
161
+ // 雅江分支还没有该配置,先去掉
162
+ // { key: 'list-tree-setting', visible: true },
163
+ // { key: 'list-master-detail', visible: true },
169
164
  {
170
165
  key: 'list-row-style',
171
166
  visible: true
@@ -99,7 +99,7 @@ var TableLayoutColControlProperty = /*#__PURE__*/ function(LayoutControlProperty
99
99
  var _props_layout;
100
100
  _this.layout = (_props_layout = props === null || props === void 0 ? void 0 : props.layout) !== null && _props_layout !== void 0 ? _props_layout : 'flex';
101
101
  var _props_flexDirection;
102
- _this.flexDirection = (_props_flexDirection = props === null || props === void 0 ? void 0 : props.flexDirection) !== null && _props_flexDirection !== void 0 ? _props_flexDirection : '';
102
+ _this.flexDirection = (_props_flexDirection = props === null || props === void 0 ? void 0 : props.flexDirection) !== null && _props_flexDirection !== void 0 ? _props_flexDirection : 'column';
103
103
  var _props_alignItems;
104
104
  _this.alignItems = (_props_alignItems = props === null || props === void 0 ? void 0 : props.alignItems) !== null && _props_alignItems !== void 0 ? _props_alignItems : '';
105
105
  var _props_justifyContent;