@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.
- package/dist/esm/layoutControls/TableLayout/designer.js +4 -0
- package/dist/esm/layoutControls/TableLayout/property.js +4 -1
- package/dist/esm/layoutControls/TableLayoutCol/designer.js +4 -4
- package/dist/esm/layoutControls/TableLayoutWrapper/designer.js +4 -0
- package/dist/esm/layoutControls/TableLayoutWrapper/property.js +4 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/layoutControls/TableLayout/property.d.ts +1 -0
- package/dist/types/layoutControls/TableLayoutWrapper/property.d.ts +1 -0
- package/package.json +2 -2
|
@@ -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: '
|
|
138
|
+
key: 'is-label-col',
|
|
139
139
|
visible: true
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
|
-
key: '
|
|
142
|
+
key: 'layout-config',
|
|
143
143
|
visible: true
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
|
-
key: '
|
|
146
|
+
key: 'flex-config',
|
|
147
147
|
visible: true
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
|
-
key: '
|
|
150
|
+
key: 'dynamic-background',
|
|
151
151
|
visible: true
|
|
152
152
|
}
|
|
153
153
|
]);
|
|
@@ -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;
|