@byteluck-fe/model-driven-controls 2.22.1-beta.2 → 2.22.1-beta.5

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;
@@ -141,6 +141,8 @@ var SubTableColumnControlProperty = /*#__PURE__*/ function(LayoutControlProperty
141
141
  /**
142
142
  * 隐藏标题一直为false
143
143
  * */ _define_property(_assert_this_initialized(_this), "isHideCaption", void 0);
144
+ _define_property(_assert_this_initialized(_this), "enableExp", void 0);
145
+ _define_property(_assert_this_initialized(_this), "expression", void 0);
144
146
  var _props_caption;
145
147
  _this.caption = (_props_caption = props === null || props === void 0 ? void 0 : props.caption) !== null && _props_caption !== void 0 ? _props_caption : '';
146
148
  var _props_fixed;
@@ -152,6 +154,10 @@ var SubTableColumnControlProperty = /*#__PURE__*/ function(LayoutControlProperty
152
154
  var _props_isHideCaption;
153
155
  _this.isHideCaption = (_props_isHideCaption = props === null || props === void 0 ? void 0 : props.isHideCaption) !== null && _props_isHideCaption !== void 0 ? _props_isHideCaption : false;
154
156
  _this.metaAutoWidth = new MetaAutoWidth(props === null || props === void 0 ? void 0 : props.metaAutoWidth);
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 : '';
155
161
  return _this;
156
162
  }
157
163
  return SubTableColumnControlProperty;