@byteluck-fe/model-driven-controls 6.2.0-1-beta.19 → 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.
@@ -146,6 +146,10 @@ _define_property(TableLayoutControl, "setting", [
146
146
  key: 'text-align',
147
147
  visible: true
148
148
  },
149
+ {
150
+ key: 'vertical-align',
151
+ visible: true
152
+ },
149
153
  {
150
154
  key: 'dynamic-border',
151
155
  visible: true
@@ -85,7 +85,8 @@ var TableLayoutControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
85
85
  ), _define_property(_this, "colWidthType", void 0 //列宽分配, average 平均分配,custom为自定义分配
86
86
  ), _define_property(_this, "colWidth", void 0 //列宽分配以冒号分割, 12:12为自定义分配
87
87
  ), _define_property(_this, "labelWidth", void 0 // label宽度
88
- ), _define_property(_this, "padding", void 0), _define_property(_this, "margin", void 0), _define_property(_this, "border", void 0), _define_property(_this, "background", void 0), _define_property(_this, "borderRadius", void 0), _define_property(_this, "align", void 0 //内容对齐方式
88
+ ), _define_property(_this, "padding", void 0), _define_property(_this, "margin", void 0), _define_property(_this, "border", void 0), _define_property(_this, "background", void 0), _define_property(_this, "borderRadius", void 0), _define_property(_this, "align", void 0 //标题水平对齐方式
89
+ ), _define_property(_this, "verticalAlign", void 0 //标题垂直对齐方式
89
90
  ), _define_property(_this, "innerBorder", void 0 //表格内边框
90
91
  );
91
92
  var _props_rowCount;
@@ -102,6 +103,8 @@ var TableLayoutControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
102
103
  _this.labelWidth = (_props_labelWidth = props === null || props === void 0 ? void 0 : props.labelWidth) !== null && _props_labelWidth !== void 0 ? _props_labelWidth : '';
103
104
  var _props_align;
104
105
  _this.align = (_props_align = props === null || props === void 0 ? void 0 : props.align) !== null && _props_align !== void 0 ? _props_align : '';
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';
105
108
  var _props_padding;
106
109
  _this.padding = (_props_padding = props === null || props === void 0 ? void 0 : props.padding) !== null && _props_padding !== void 0 ? _props_padding : {
107
110
  paddingTop: '',
@@ -135,19 +135,19 @@ _define_property(TableLayoutColControl, "setting", [
135
135
  visible: true
136
136
  },
137
137
  {
138
- key: 'layout-config',
138
+ key: 'is-label-col',
139
139
  visible: true
140
140
  },
141
141
  {
142
- key: 'flex-config',
142
+ key: 'layout-config',
143
143
  visible: true
144
144
  },
145
145
  {
146
- key: 'dynamic-background',
146
+ key: 'flex-config',
147
147
  visible: true
148
148
  },
149
149
  {
150
- key: 'is-label-col',
150
+ key: 'dynamic-background',
151
151
  visible: true
152
152
  }
153
153
  ]);
@@ -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;