@byteluck-fe/model-driven-controls 2.22.0-beta.5 → 2.22.1-beta.0
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.
- package/dist/esm/baseControls/ListSelectButton/property.js +4 -0
- package/dist/esm/listControls/GridTable/designer.js +3 -4
- package/dist/esm/listControls/SubTable/designer.js +1 -4
- package/dist/index.umd.js +1 -1
- package/dist/types/baseControls/ListSelectButton/property.d.ts +1 -0
- package/package.json +5 -5
|
@@ -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;
|
|
@@ -302,7 +302,6 @@ var GridTableControl = /*#__PURE__*/ function _target(DesignerListControl) {
|
|
|
302
302
|
function GridTableControl(props) {
|
|
303
303
|
_class_call_check(this, GridTableControl);
|
|
304
304
|
var _this;
|
|
305
|
-
var _props_props;
|
|
306
305
|
_this = _super.call(this, props);
|
|
307
306
|
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
308
307
|
_define_property(_assert_this_initialized(_this), "children", void 0);
|
|
@@ -317,9 +316,9 @@ var GridTableControl = /*#__PURE__*/ function _target(DesignerListControl) {
|
|
|
317
316
|
new DesignerOperationColumnControl()
|
|
318
317
|
];
|
|
319
318
|
}
|
|
320
|
-
if (
|
|
321
|
-
|
|
322
|
-
}
|
|
319
|
+
// if (props?.props?.footers === undefined) {
|
|
320
|
+
// this.props.footers = []
|
|
321
|
+
// }
|
|
323
322
|
_this.excludes = JSONCopy(excludes);
|
|
324
323
|
_this.childrenMaxLength = childrenMaxLength;
|
|
325
324
|
return _this;
|
|
@@ -106,7 +106,7 @@ var SubTableControl = /*#__PURE__*/ function(DesignerListControl) {
|
|
|
106
106
|
function SubTableControl(props) {
|
|
107
107
|
_class_call_check(this, SubTableControl);
|
|
108
108
|
var _this;
|
|
109
|
-
var _props_props
|
|
109
|
+
var _props_props;
|
|
110
110
|
_this = _super.call(this, props);
|
|
111
111
|
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
112
112
|
_this.props = new SubTableControlProperty(_assert_this_initialized(_this), props === null || props === void 0 ? void 0 : props.props);
|
|
@@ -118,9 +118,6 @@ var SubTableControl = /*#__PURE__*/ function(DesignerListControl) {
|
|
|
118
118
|
new DesignerSubTableColumnControl()
|
|
119
119
|
];
|
|
120
120
|
}
|
|
121
|
-
if ((props === null || props === void 0 ? void 0 : (_props_props1 = props.props) === null || _props_props1 === void 0 ? void 0 : _props_props1.footers) === undefined) {
|
|
122
|
-
_this.props.footers = [];
|
|
123
|
-
}
|
|
124
121
|
return _this;
|
|
125
122
|
}
|
|
126
123
|
_create_class(SubTableControl, [
|