@byteluck-fe/model-driven-controls 2.22.3-beta.2 → 2.22.3-beta.4

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.
@@ -116,13 +116,16 @@ var ReferenceListPropertyRules = /*#__PURE__*/ function(PropertyRules) {
116
116
  _define_property(_this, "isShowSimpleSearch", void 0), // 是否显示工具栏
117
117
  _define_property(_this, "isShowToolbar", void 0), //动作设置
118
118
  _define_property(_this, "actionSetting", void 0), //列表高度配置
119
- _define_property(_this, "listHeightSetting", void 0);
119
+ _define_property(_this, "listHeightSetting", void 0), //列表高度配置
120
+ _define_property(_this, "isHideCaption", void 0);
120
121
  var _props_caption;
121
122
  _this.caption = (_props_caption = props === null || props === void 0 ? void 0 : props.caption) !== null && _props_caption !== void 0 ? _props_caption : ReferenceListControl.controlName;
122
123
  var _props_isShowSimpleSearch;
123
124
  _this.isShowSimpleSearch = (_props_isShowSimpleSearch = props === null || props === void 0 ? void 0 : props.isShowSimpleSearch) !== null && _props_isShowSimpleSearch !== void 0 ? _props_isShowSimpleSearch : true;
124
125
  var _props_isShowToolbar;
125
126
  _this.isShowToolbar = (_props_isShowToolbar = props === null || props === void 0 ? void 0 : props.isShowToolbar) !== null && _props_isShowToolbar !== void 0 ? _props_isShowToolbar : true;
127
+ var _props_isHideCaption;
128
+ _this.isHideCaption = (_props_isHideCaption = props === null || props === void 0 ? void 0 : props.isHideCaption) !== null && _props_isHideCaption !== void 0 ? _props_isHideCaption : false;
126
129
  var _props_actionSetting;
127
130
  _this.actionSetting = (_props_actionSetting = props === null || props === void 0 ? void 0 : props.actionSetting) !== null && _props_actionSetting !== void 0 ? _props_actionSetting : new ActionSetting();
128
131
  var _props_listHeightSetting;
@@ -253,12 +253,12 @@ export var ListHeightSetting = function ListHeightSetting(props) {
253
253
  "use strict";
254
254
  _class_call_check(this, ListHeightSetting);
255
255
  _define_property(this, "type", void 0);
256
- _define_property(this, "line", void 0);
256
+ _define_property(this, "row", void 0);
257
257
  _define_property(this, "height", void 0);
258
258
  var _props_type;
259
259
  this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : 'auto';
260
- var _props_line;
261
- this.line = (_props_line = props === null || props === void 0 ? void 0 : props.line) !== null && _props_line !== void 0 ? _props_line : 20;
260
+ var _props_row;
261
+ this.row = (_props_row = props === null || props === void 0 ? void 0 : props.row) !== null && _props_row !== void 0 ? _props_row : 20;
262
262
  this.height = props === null || props === void 0 ? void 0 : props.height;
263
263
  };
264
264
  export var ImportListBind = function ImportListBind(props) {