@byteluck-fe/model-driven-controls 6.2.0-beta.7 → 6.2.0-jeecg-2
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/formControls/DatePicker/property.js +3 -0
- package/dist/esm/layoutControls/ListView/designer.js +3 -8
- package/dist/esm/layoutControls/TableLayout/designer.js +4 -0
- package/dist/esm/layoutControls/TableLayout/property.js +3 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/formControls/DatePicker/property.d.ts +1 -0
- package/dist/types/layoutControls/TableLayout/property.d.ts +1 -0
- package/package.json +5 -5
|
@@ -93,6 +93,7 @@ var DatePickerProperty = /*#__PURE__*/ function(BaseControlProperty) {
|
|
|
93
93
|
_define_property(_this, "allowDateRange", void 0 // 允许选中多个日期范围
|
|
94
94
|
), _define_property(_this, "filterWeekend", void 0 // 是否过滤周末
|
|
95
95
|
), _define_property(_this, "isInternational", void 0 //是否国际化
|
|
96
|
+
), _define_property(_this, "isCustomDateFormat", void 0 //是否使用自定义日期类型
|
|
96
97
|
);
|
|
97
98
|
var _props_dateType;
|
|
98
99
|
_this.dateType = (_props_dateType = props === null || props === void 0 ? void 0 : props.dateType) !== null && _props_dateType !== void 0 ? _props_dateType : DateType.DATE;
|
|
@@ -122,6 +123,8 @@ var DatePickerProperty = /*#__PURE__*/ function(BaseControlProperty) {
|
|
|
122
123
|
_this.filterWeekend = (_props_filterWeekend = props === null || props === void 0 ? void 0 : props.filterWeekend) !== null && _props_filterWeekend !== void 0 ? _props_filterWeekend : false;
|
|
123
124
|
var _props_isInternational;
|
|
124
125
|
_this.isInternational = (_props_isInternational = props === null || props === void 0 ? void 0 : props.isInternational) !== null && _props_isInternational !== void 0 ? _props_isInternational : false;
|
|
126
|
+
var _props_isCustomDateFormat;
|
|
127
|
+
_this.isCustomDateFormat = (_props_isCustomDateFormat = props === null || props === void 0 ? void 0 : props.isCustomDateFormat) !== null && _props_isCustomDateFormat !== void 0 ? _props_isCustomDateFormat : false;
|
|
125
128
|
return _this;
|
|
126
129
|
}
|
|
127
130
|
return DatePickerProperty;
|
|
@@ -158,14 +158,9 @@ _define_property(ListViewControl, "setting", [
|
|
|
158
158
|
key: 'list-selection-state',
|
|
159
159
|
visible: true
|
|
160
160
|
},
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
key: 'list-master-detail',
|
|
167
|
-
visible: true
|
|
168
|
-
},
|
|
161
|
+
// 雅江分支还没有该配置,先去掉
|
|
162
|
+
// { key: 'list-tree-setting', visible: true },
|
|
163
|
+
// { key: 'list-master-detail', visible: true },
|
|
169
164
|
{
|
|
170
165
|
key: 'list-row-style',
|
|
171
166
|
visible: true
|
|
@@ -85,6 +85,7 @@ 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, "isLabelBold", void 0 // label是否加粗
|
|
88
89
|
), _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
90
|
), _define_property(_this, "verticalAlign", void 0 //标题垂直对齐方式
|
|
90
91
|
), _define_property(_this, "innerBorder", void 0 //表格内边框
|
|
@@ -99,6 +100,8 @@ var TableLayoutControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
|
|
|
99
100
|
_this.colWidthType = (_props_colWidthType = props === null || props === void 0 ? void 0 : props.colWidthType) !== null && _props_colWidthType !== void 0 ? _props_colWidthType : 'average';
|
|
100
101
|
var _props_colWidth;
|
|
101
102
|
_this.colWidth = (_props_colWidth = props === null || props === void 0 ? void 0 : props.colWidth) !== null && _props_colWidth !== void 0 ? _props_colWidth : '12:12';
|
|
103
|
+
var _props_isLabelBold;
|
|
104
|
+
_this.isLabelBold = (_props_isLabelBold = props === null || props === void 0 ? void 0 : props.isLabelBold) !== null && _props_isLabelBold !== void 0 ? _props_isLabelBold : false;
|
|
102
105
|
var _props_labelWidth;
|
|
103
106
|
_this.labelWidth = (_props_labelWidth = props === null || props === void 0 ? void 0 : props.labelWidth) !== null && _props_labelWidth !== void 0 ? _props_labelWidth : '';
|
|
104
107
|
var _props_align;
|