@byteluck-fe/model-driven-controls 6.2.0-1-beta.20 → 6.2.0-1-beta.21
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.
|
@@ -80,11 +80,14 @@ var TableLayoutWrapperControlProperty = /*#__PURE__*/ function(LayoutControlProp
|
|
|
80
80
|
_this = _call_super(this, TableLayoutWrapperControlProperty, [
|
|
81
81
|
props
|
|
82
82
|
]), _define_property(_this, "width", void 0), //wrapper 单位
|
|
83
|
-
_define_property(_this, "widthCompany", void 0)
|
|
83
|
+
_define_property(_this, "widthCompany", void 0), // 表单控件是否显示边框线
|
|
84
|
+
_define_property(_this, "showFormBorder", void 0);
|
|
84
85
|
var _props_width;
|
|
85
86
|
_this.width = (_props_width = props === null || props === void 0 ? void 0 : props.width) !== null && _props_width !== void 0 ? _props_width : '';
|
|
86
87
|
var _props_widthCompany;
|
|
87
88
|
_this.widthCompany = (_props_widthCompany = props === null || props === void 0 ? void 0 : props.widthCompany) !== null && _props_widthCompany !== void 0 ? _props_widthCompany : 'px';
|
|
89
|
+
var _props_showFormBorder;
|
|
90
|
+
_this.showFormBorder = (_props_showFormBorder = props === null || props === void 0 ? void 0 : props.showFormBorder) !== null && _props_showFormBorder !== void 0 ? _props_showFormBorder : false;
|
|
88
91
|
return _this;
|
|
89
92
|
}
|
|
90
93
|
return TableLayoutWrapperControlProperty;
|