@byteluck-fe/model-driven-controls 2.22.0-beta.5 → 2.22.0-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.
|
@@ -172,6 +172,8 @@ var ListSelectButtonPropertyRules = /*#__PURE__*/ function(PropertyRules) {
|
|
|
172
172
|
*/ _define_property(_assert_this_initialized(_this), "fillBack", void 0);
|
|
173
173
|
// 展示已选明细
|
|
174
174
|
_define_property(_assert_this_initialized(_this), "showSelectedDetail", void 0);
|
|
175
|
+
// 是否使用选中行填充
|
|
176
|
+
_define_property(_assert_this_initialized(_this), "isSelectedRowFill", void 0);
|
|
175
177
|
// 展示已选内容配置字段
|
|
176
178
|
_define_property(_assert_this_initialized(_this), "selectedContentConfig", void 0);
|
|
177
179
|
var _props_content;
|
|
@@ -184,6 +186,8 @@ var ListSelectButtonPropertyRules = /*#__PURE__*/ function(PropertyRules) {
|
|
|
184
186
|
var _props_showSelectedDetail;
|
|
185
187
|
_this.showSelectedDetail = (_props_showSelectedDetail = props === null || props === void 0 ? void 0 : props.showSelectedDetail) !== null && _props_showSelectedDetail !== void 0 ? _props_showSelectedDetail : false;
|
|
186
188
|
_this.selectedContentConfig = new SelectedContentConfig(props === null || props === void 0 ? void 0 : props.selectedContentConfig);
|
|
189
|
+
var _props_isSelectedRowFill;
|
|
190
|
+
_this.isSelectedRowFill = (_props_isSelectedRowFill = props === null || props === void 0 ? void 0 : props.isSelectedRowFill) !== null && _props_isSelectedRowFill !== void 0 ? _props_isSelectedRowFill : false;
|
|
187
191
|
var _props_disableFilling;
|
|
188
192
|
_this.disableFilling = (_props_disableFilling = props === null || props === void 0 ? void 0 : props.disableFilling) !== null && _props_disableFilling !== void 0 ? _props_disableFilling : true;
|
|
189
193
|
return _this;
|