@byteluck-fe/model-driven-controls 1.8.0-beta.11 → 1.8.0-beta.13

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.
@@ -124,7 +124,8 @@ TitleControl.setting = [
124
124
  {
125
125
  key: "caption",
126
126
  showItems: [
127
- COMMON_SETTING_TYPE.CAPTION
127
+ COMMON_SETTING_TYPE.CAPTION,
128
+ COMMON_SETTING_TYPE.IS_HIDE_CAPTION
128
129
  ],
129
130
  visible: true
130
131
  },
@@ -102,7 +102,7 @@ ArrayColumnControl.setting = [
102
102
  visible: true
103
103
  },
104
104
  {
105
- key: "column-width",
105
+ key: "column-autowidth",
106
106
  visible: true
107
107
  },
108
108
  {
@@ -102,7 +102,7 @@ AutoNumberColumnControl.setting = [
102
102
  visible: true
103
103
  },
104
104
  {
105
- key: "column-width",
105
+ key: "column-autowidth",
106
106
  visible: true
107
107
  },
108
108
  {
@@ -214,7 +214,7 @@ CustomColumnControl.setting = [
214
214
  visible: true
215
215
  },
216
216
  {
217
- key: "column-width",
217
+ key: "column-autowidth",
218
218
  visible: true
219
219
  },
220
220
  {
@@ -135,7 +135,7 @@ DecimalColumnControl.setting = [
135
135
  visible: true
136
136
  },
137
137
  {
138
- key: "column-width",
138
+ key: "column-autowidth",
139
139
  visible: true
140
140
  },
141
141
  {
@@ -134,7 +134,7 @@ DepartmentColumnControl.setting = [
134
134
  visible: true
135
135
  },
136
136
  {
137
- key: "column-width",
137
+ key: "column-autowidth",
138
138
  visible: true
139
139
  },
140
140
  {
@@ -130,7 +130,7 @@ EmployeeColumnControl.setting = [
130
130
  visible: true
131
131
  },
132
132
  {
133
- key: "column-width",
133
+ key: "column-autowidth",
134
134
  visible: true
135
135
  },
136
136
  {
@@ -102,7 +102,7 @@ FileColumnControl.setting = [
102
102
  visible: true
103
103
  },
104
104
  {
105
- key: "column-width",
105
+ key: "column-autowidth",
106
106
  visible: true
107
107
  },
108
108
  {
@@ -102,7 +102,7 @@ ImageColumnControl.setting = [
102
102
  visible: true
103
103
  },
104
104
  {
105
- key: "column-width",
105
+ key: "column-autowidth",
106
106
  visible: true
107
107
  },
108
108
  {
@@ -102,7 +102,7 @@ LocationColumnControl.setting = [
102
102
  visible: true
103
103
  },
104
104
  {
105
- key: "column-width",
105
+ key: "column-autowidth",
106
106
  visible: true
107
107
  },
108
108
  {
@@ -377,7 +377,7 @@ OperationColumnControl.setting = [
377
377
  key: "column-show-type",
378
378
  visible: true
379
379
  },
380
- // { key: 'column-width', visible: true },
380
+ // { key: 'column-autowidth', visible: true },
381
381
  {
382
382
  key: "column-sort",
383
383
  visible: true
@@ -102,7 +102,7 @@ PeopleColumnControl.setting = [
102
102
  visible: true
103
103
  },
104
104
  {
105
- key: "column-width",
105
+ key: "column-autowidth",
106
106
  visible: true
107
107
  },
108
108
  {
@@ -134,7 +134,7 @@ TextColumnControl.setting = [
134
134
  visible: true
135
135
  },
136
136
  {
137
- key: "column-width",
137
+ key: "column-autowidth",
138
138
  visible: true
139
139
  },
140
140
  {
@@ -134,7 +134,7 @@ TimescopeColumnControl.setting = [
134
134
  visible: true
135
135
  },
136
136
  {
137
- key: "column-width",
137
+ key: "column-autowidth",
138
138
  visible: true
139
139
  },
140
140
  {
@@ -134,7 +134,7 @@ TimestampColumnControl.setting = [
134
134
  visible: true
135
135
  },
136
136
  {
137
- key: "column-width",
137
+ key: "column-autowidth",
138
138
  visible: true
139
139
  },
140
140
  {
@@ -102,7 +102,7 @@ VarcharColumnControl.setting = [
102
102
  visible: true
103
103
  },
104
104
  {
105
- key: "column-width",
105
+ key: "column-autowidth",
106
106
  visible: true
107
107
  },
108
108
  {
@@ -107,7 +107,7 @@ GridTableColumnControl.setting = [
107
107
  visible: true
108
108
  },
109
109
  {
110
- key: "column-width",
110
+ key: "column-autowidth",
111
111
  visible: true
112
112
  },
113
113
  {
@@ -158,6 +158,8 @@ var ListViewControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
158
158
  _this.isFixedHeader = (_props_isFixedHeader = props === null || props === void 0 ? void 0 : props.isFixedHeader) !== null && _props_isFixedHeader !== void 0 ? _props_isFixedHeader : false;
159
159
  var _props_isAllLoaded;
160
160
  _this.isAllLoaded = (_props_isAllLoaded = props === null || props === void 0 ? void 0 : props.isAllLoaded) !== null && _props_isAllLoaded !== void 0 ? _props_isAllLoaded : true;
161
+ var _props_countType;
162
+ _this.countType = (_props_countType = props === null || props === void 0 ? void 0 : props.countType) !== null && _props_countType !== void 0 ? _props_countType : "async";
161
163
  return _this;
162
164
  }
163
165
  return ListViewControlProperty;