@byteluck-fe/model-driven-controls 6.2.0-1-beta.20 → 6.2.0-1-beta.22

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.
@@ -104,7 +104,7 @@ var TableLayoutControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
104
104
  var _props_align;
105
105
  _this.align = (_props_align = props === null || props === void 0 ? void 0 : props.align) !== null && _props_align !== void 0 ? _props_align : '';
106
106
  var _props_verticalAlign;
107
- _this.verticalAlign = (_props_verticalAlign = props === null || props === void 0 ? void 0 : props.verticalAlign) !== null && _props_verticalAlign !== void 0 ? _props_verticalAlign : 'top';
107
+ _this.verticalAlign = (_props_verticalAlign = props === null || props === void 0 ? void 0 : props.verticalAlign) !== null && _props_verticalAlign !== void 0 ? _props_verticalAlign : 'flex-start';
108
108
  var _props_padding;
109
109
  _this.padding = (_props_padding = props === null || props === void 0 ? void 0 : props.padding) !== null && _props_padding !== void 0 ? _props_padding : {
110
110
  paddingTop: '',
@@ -126,6 +126,10 @@ _define_property(TableLayoutWrapperControl, "setting", [
126
126
  {
127
127
  key: 'dynamic-size',
128
128
  visible: true
129
+ },
130
+ {
131
+ key: 'show-form-border',
132
+ visible: true
129
133
  }
130
134
  ]);
131
135
  export default TableLayoutWrapperControl;
@@ -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;