@byteluck-fe/model-driven-controls 2.22.1-beta.4 → 2.22.1-beta.6

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.
@@ -131,6 +131,10 @@ _define_property(SubTableColumnControl, "setting", [
131
131
  {
132
132
  key: 'column-auto-width',
133
133
  visible: true
134
+ },
135
+ {
136
+ key: 'column-stat',
137
+ visible: true
134
138
  }
135
139
  ]);
136
140
  export default SubTableColumnControl;
@@ -154,8 +154,10 @@ var SubTableColumnControlProperty = /*#__PURE__*/ function(LayoutControlProperty
154
154
  var _props_isHideCaption;
155
155
  _this.isHideCaption = (_props_isHideCaption = props === null || props === void 0 ? void 0 : props.isHideCaption) !== null && _props_isHideCaption !== void 0 ? _props_isHideCaption : false;
156
156
  _this.metaAutoWidth = new MetaAutoWidth(props === null || props === void 0 ? void 0 : props.metaAutoWidth);
157
- _this.enableExp = false;
158
- _this.expression = '';
157
+ var _props_enableExp;
158
+ _this.enableExp = (_props_enableExp = props === null || props === void 0 ? void 0 : props.enableExp) !== null && _props_enableExp !== void 0 ? _props_enableExp : false;
159
+ var _props_expression;
160
+ _this.expression = (_props_expression = props === null || props === void 0 ? void 0 : props.expression) !== null && _props_expression !== void 0 ? _props_expression : '';
159
161
  return _this;
160
162
  }
161
163
  return SubTableColumnControlProperty;