@byteluck-fe/model-driven-controls 4.34.0-lx1 → 4.34.0-lx2
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/baseControls/Link/designer.js +21 -0
- package/dist/esm/baseControls/Link/property.js +4 -4
- package/dist/esm/formControls/Address/designer.js +9 -0
- package/dist/esm/formControls/Amount/designer.js +9 -0
- package/dist/esm/formControls/Attachment/designer.js +12 -1
- package/dist/esm/formControls/AutoNumber/designer.js +9 -0
- package/dist/esm/formControls/Calc/designer.js +9 -0
- package/dist/esm/formControls/Checkbox/designer.js +9 -0
- package/dist/esm/formControls/DatePicker/designer.js +9 -0
- package/dist/esm/formControls/DateRange/designer.js +9 -0
- package/dist/esm/formControls/Department/designer.js +9 -0
- package/dist/esm/formControls/Department2/designer.js +9 -0
- package/dist/esm/formControls/ElectronicSignature/designer.js +9 -0
- package/dist/esm/formControls/Employee/designer.js +9 -0
- package/dist/esm/formControls/Employee2/designer.js +9 -0
- package/dist/esm/formControls/Image/designer.js +12 -0
- package/dist/esm/formControls/Input/designer.js +9 -0
- package/dist/esm/formControls/Input/property.js +1 -13
- package/dist/esm/formControls/Number/designer.js +9 -0
- package/dist/esm/formControls/OrganizationSelection/designer.js +9 -0
- package/dist/esm/formControls/Radio/designer.js +9 -0
- package/dist/esm/formControls/RichText/designer.js +9 -0
- package/dist/esm/formControls/Score/designer.js +9 -0
- package/dist/esm/formControls/SearchDateRange/designer.js +9 -0
- package/dist/esm/formControls/SearchInput/designer.js +9 -0
- package/dist/esm/formControls/SearchNumberRange/designer.js +9 -0
- package/dist/esm/formControls/Select/designer.js +9 -0
- package/dist/esm/formControls/SelectMultiple/designer.js +9 -0
- package/dist/esm/formControls/SelectRelation/designer.js +9 -0
- package/dist/esm/formControls/SensitivenInformation/designer.js +9 -0
- package/dist/esm/formControls/Textarea/designer.js +9 -0
- package/dist/esm/formControls/Textarea/property.js +1 -13
- package/dist/esm/formControls/Tree/designer.js +9 -0
- package/dist/esm/formControls/VueFormItem/designer.js +9 -0
- package/dist/esm/formControls/WPS/designer.js +9 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/baseControls/Link/property.d.ts +2 -2
- package/dist/types/formControls/Input/property.d.ts +0 -12
- package/dist/types/formControls/Textarea/property.d.ts +0 -12
- package/package.json +35 -35
|
@@ -124,10 +124,31 @@ _define_property(LinkControl, "controlEventKeys", [
|
|
|
124
124
|
'on_click'
|
|
125
125
|
]);
|
|
126
126
|
_define_property(LinkControl, "setting", [
|
|
127
|
+
{
|
|
128
|
+
key: 'data-bind',
|
|
129
|
+
visible: true
|
|
130
|
+
},
|
|
127
131
|
{
|
|
128
132
|
key: 'content',
|
|
129
133
|
visible: true
|
|
130
134
|
},
|
|
135
|
+
{
|
|
136
|
+
key: 'caption',
|
|
137
|
+
showItems: [
|
|
138
|
+
COMMON_SETTING_TYPE.CAPTION,
|
|
139
|
+
COMMON_SETTING_TYPE.IS_HIDE_CAPTION
|
|
140
|
+
],
|
|
141
|
+
visible: true
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
key: 'caption-style',
|
|
145
|
+
showItems: [
|
|
146
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
147
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
148
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
149
|
+
],
|
|
150
|
+
visible: true
|
|
151
|
+
},
|
|
131
152
|
{
|
|
132
153
|
key: 'link-url',
|
|
133
154
|
visible: true
|
|
@@ -70,10 +70,10 @@ function _is_native_reflect_construct() {
|
|
|
70
70
|
return !!result;
|
|
71
71
|
})();
|
|
72
72
|
}
|
|
73
|
-
import {
|
|
74
|
-
var LinkProperty = /*#__PURE__*/ function(
|
|
73
|
+
import { BaseControlProperty } from '@byteluck-fe/model-driven-core';
|
|
74
|
+
var LinkProperty = /*#__PURE__*/ function(BaseControlProperty) {
|
|
75
75
|
"use strict";
|
|
76
|
-
_inherits(LinkProperty,
|
|
76
|
+
_inherits(LinkProperty, BaseControlProperty);
|
|
77
77
|
function LinkProperty(props) {
|
|
78
78
|
_class_call_check(this, LinkProperty);
|
|
79
79
|
var _this;
|
|
@@ -89,6 +89,6 @@ var LinkProperty = /*#__PURE__*/ function(Property) {
|
|
|
89
89
|
return _this;
|
|
90
90
|
}
|
|
91
91
|
return LinkProperty;
|
|
92
|
-
}(
|
|
92
|
+
}(BaseControlProperty);
|
|
93
93
|
export default LinkProperty;
|
|
94
94
|
export { LinkProperty };
|
|
@@ -135,6 +135,15 @@ _define_property(AddressControl, "setting", [
|
|
|
135
135
|
],
|
|
136
136
|
visible: true
|
|
137
137
|
},
|
|
138
|
+
{
|
|
139
|
+
key: 'caption-style',
|
|
140
|
+
showItems: [
|
|
141
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
142
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
143
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
144
|
+
],
|
|
145
|
+
visible: true
|
|
146
|
+
},
|
|
138
147
|
{
|
|
139
148
|
key: 'label-position',
|
|
140
149
|
visible: true
|
|
@@ -177,6 +177,15 @@ _define_property(AmountControl, "setting", [
|
|
|
177
177
|
],
|
|
178
178
|
visible: true
|
|
179
179
|
},
|
|
180
|
+
{
|
|
181
|
+
key: 'caption-style',
|
|
182
|
+
showItems: [
|
|
183
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
184
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
185
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
186
|
+
],
|
|
187
|
+
visible: true
|
|
188
|
+
},
|
|
180
189
|
{
|
|
181
190
|
key: 'label-position',
|
|
182
191
|
visible: true
|
|
@@ -138,6 +138,15 @@ _define_property(AttachmentControl, "setting", [
|
|
|
138
138
|
],
|
|
139
139
|
visible: true
|
|
140
140
|
},
|
|
141
|
+
{
|
|
142
|
+
key: 'caption-style',
|
|
143
|
+
showItems: [
|
|
144
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
146
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
147
|
+
],
|
|
148
|
+
visible: true
|
|
149
|
+
},
|
|
141
150
|
{
|
|
142
151
|
key: 'label-position',
|
|
143
152
|
visible: true
|
|
@@ -157,7 +166,9 @@ _define_property(AttachmentControl, "setting", [
|
|
|
157
166
|
COMMON_SETTING_TYPE.REQUIRED,
|
|
158
167
|
COMMON_SETTING_TYPE.IS_HIDE,
|
|
159
168
|
COMMON_SETTING_TYPE.IS_HIDE_CAPTION,
|
|
160
|
-
COMMON_SETTING_TYPE.IS_SHOW_CAPTION_TIP
|
|
169
|
+
COMMON_SETTING_TYPE.IS_SHOW_CAPTION_TIP,
|
|
170
|
+
COMMON_SETTING_TYPE.FORBID_DOWNLOAD,
|
|
171
|
+
COMMON_SETTING_TYPE.ACCESS_CONTROL
|
|
161
172
|
]
|
|
162
173
|
},
|
|
163
174
|
{
|
|
@@ -138,6 +138,15 @@ _define_property(AutoNumberControl, "setting", [
|
|
|
138
138
|
],
|
|
139
139
|
visible: true
|
|
140
140
|
},
|
|
141
|
+
{
|
|
142
|
+
key: 'caption-style',
|
|
143
|
+
showItems: [
|
|
144
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
146
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
147
|
+
],
|
|
148
|
+
visible: true
|
|
149
|
+
},
|
|
141
150
|
{
|
|
142
151
|
key: 'label-position',
|
|
143
152
|
visible: true
|
|
@@ -174,6 +174,15 @@ _define_property(CalcControl, "setting", [
|
|
|
174
174
|
],
|
|
175
175
|
visible: true
|
|
176
176
|
},
|
|
177
|
+
{
|
|
178
|
+
key: 'caption-style',
|
|
179
|
+
showItems: [
|
|
180
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
181
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
182
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
183
|
+
],
|
|
184
|
+
visible: true
|
|
185
|
+
},
|
|
177
186
|
{
|
|
178
187
|
key: 'label-position',
|
|
179
188
|
visible: true
|
|
@@ -143,6 +143,15 @@ _define_property(CheckboxControl, "setting", [
|
|
|
143
143
|
],
|
|
144
144
|
visible: true
|
|
145
145
|
},
|
|
146
|
+
{
|
|
147
|
+
key: 'caption-style',
|
|
148
|
+
showItems: [
|
|
149
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
150
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
151
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
152
|
+
],
|
|
153
|
+
visible: true
|
|
154
|
+
},
|
|
146
155
|
{
|
|
147
156
|
key: 'label-position',
|
|
148
157
|
visible: true
|
|
@@ -174,6 +174,15 @@ _define_property(DatePickerControl, "setting", [
|
|
|
174
174
|
],
|
|
175
175
|
visible: true
|
|
176
176
|
},
|
|
177
|
+
{
|
|
178
|
+
key: 'caption-style',
|
|
179
|
+
showItems: [
|
|
180
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
181
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
182
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
183
|
+
],
|
|
184
|
+
visible: true
|
|
185
|
+
},
|
|
177
186
|
{
|
|
178
187
|
key: 'label-position',
|
|
179
188
|
visible: true
|
|
@@ -170,6 +170,15 @@ _define_property(DateRangeControl, "setting", [
|
|
|
170
170
|
],
|
|
171
171
|
visible: true
|
|
172
172
|
},
|
|
173
|
+
{
|
|
174
|
+
key: 'caption-style',
|
|
175
|
+
showItems: [
|
|
176
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
177
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
178
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
179
|
+
],
|
|
180
|
+
visible: true
|
|
181
|
+
},
|
|
173
182
|
{
|
|
174
183
|
key: 'label-position',
|
|
175
184
|
visible: true
|
|
@@ -168,6 +168,15 @@ _define_property(DepartmentControl, "setting", [
|
|
|
168
168
|
],
|
|
169
169
|
visible: true
|
|
170
170
|
},
|
|
171
|
+
{
|
|
172
|
+
key: 'caption-style',
|
|
173
|
+
showItems: [
|
|
174
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
175
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
176
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
177
|
+
],
|
|
178
|
+
visible: true
|
|
179
|
+
},
|
|
171
180
|
{
|
|
172
181
|
key: 'label-position',
|
|
173
182
|
visible: true
|
|
@@ -182,6 +182,15 @@ _define_property(Department2Control, "setting", [
|
|
|
182
182
|
],
|
|
183
183
|
visible: true
|
|
184
184
|
},
|
|
185
|
+
{
|
|
186
|
+
key: 'caption-style',
|
|
187
|
+
showItems: [
|
|
188
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
189
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
190
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
191
|
+
],
|
|
192
|
+
visible: true
|
|
193
|
+
},
|
|
185
194
|
{
|
|
186
195
|
key: 'label-position',
|
|
187
196
|
visible: true
|
|
@@ -139,6 +139,15 @@ _define_property(ElectronicSignatureControl, "setting", [
|
|
|
139
139
|
],
|
|
140
140
|
visible: true
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
key: 'caption-style',
|
|
144
|
+
showItems: [
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
146
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
147
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
148
|
+
],
|
|
149
|
+
visible: true
|
|
150
|
+
},
|
|
142
151
|
{
|
|
143
152
|
key: 'label-position',
|
|
144
153
|
visible: true
|
|
@@ -135,6 +135,15 @@ _define_property(EmployeeControl, "setting", [
|
|
|
135
135
|
],
|
|
136
136
|
visible: true
|
|
137
137
|
},
|
|
138
|
+
{
|
|
139
|
+
key: 'caption-style',
|
|
140
|
+
showItems: [
|
|
141
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
142
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
143
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
144
|
+
],
|
|
145
|
+
visible: true
|
|
146
|
+
},
|
|
138
147
|
{
|
|
139
148
|
key: 'label-position',
|
|
140
149
|
visible: true
|
|
@@ -147,6 +147,15 @@ _define_property(Employee2Control, "setting", [
|
|
|
147
147
|
],
|
|
148
148
|
visible: true
|
|
149
149
|
},
|
|
150
|
+
{
|
|
151
|
+
key: 'caption-style',
|
|
152
|
+
showItems: [
|
|
153
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
154
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
155
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
156
|
+
],
|
|
157
|
+
visible: true
|
|
158
|
+
},
|
|
150
159
|
{
|
|
151
160
|
key: 'label-position',
|
|
152
161
|
visible: true
|
|
@@ -146,6 +146,18 @@ _define_property(ImageControl, "setting", [
|
|
|
146
146
|
],
|
|
147
147
|
visible: true
|
|
148
148
|
},
|
|
149
|
+
{
|
|
150
|
+
key: 'caption-style',
|
|
151
|
+
showItems: [
|
|
152
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
153
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
154
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC,
|
|
155
|
+
COMMON_SETTING_TYPE.FORBID_DOWNLOAD,
|
|
156
|
+
COMMON_SETTING_TYPE.ONLY_ALLOW_TAKE_PHOTO,
|
|
157
|
+
COMMON_SETTING_TYPE.ACCESS_CONTROL
|
|
158
|
+
],
|
|
159
|
+
visible: true
|
|
160
|
+
},
|
|
149
161
|
{
|
|
150
162
|
key: 'label-position',
|
|
151
163
|
visible: true
|
|
@@ -145,6 +145,15 @@ _define_property(InputControl, "setting", [
|
|
|
145
145
|
],
|
|
146
146
|
visible: true
|
|
147
147
|
},
|
|
148
|
+
{
|
|
149
|
+
key: 'caption-style',
|
|
150
|
+
showItems: [
|
|
151
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
152
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
153
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
154
|
+
],
|
|
155
|
+
visible: true
|
|
156
|
+
},
|
|
148
157
|
{
|
|
149
158
|
key: 'label-position',
|
|
150
159
|
visible: true
|
|
@@ -180,15 +180,7 @@ var InputControlPropertyRuntimeRules = /*#__PURE__*/ function(BaseControlPropert
|
|
|
180
180
|
* 密码模式 '' | 'ALL_MASK' | 'LAST_FOUR_MASK'
|
|
181
181
|
* @defaultValue ''
|
|
182
182
|
* @public
|
|
183
|
-
*/ _define_property(_this, "encryptedMode", void 0)
|
|
184
|
-
* 边框颜色
|
|
185
|
-
* @defaultValue ''
|
|
186
|
-
* @public
|
|
187
|
-
*/ _define_property(_this, "borderColor", void 0), /**
|
|
188
|
-
* 背景颜色
|
|
189
|
-
* @defaultValue ''
|
|
190
|
-
* @public
|
|
191
|
-
*/ _define_property(_this, "backgroundColor", void 0);
|
|
183
|
+
*/ _define_property(_this, "encryptedMode", void 0);
|
|
192
184
|
var _props_maxLength;
|
|
193
185
|
_this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : 200;
|
|
194
186
|
var _props_minLength;
|
|
@@ -204,10 +196,6 @@ var InputControlPropertyRuntimeRules = /*#__PURE__*/ function(BaseControlPropert
|
|
|
204
196
|
_this.encrypted = (_props_encrypted = props === null || props === void 0 ? void 0 : props.encrypted) !== null && _props_encrypted !== void 0 ? _props_encrypted : false;
|
|
205
197
|
var _props_encryptedMode;
|
|
206
198
|
_this.encryptedMode = (_props_encryptedMode = props === null || props === void 0 ? void 0 : props.encryptedMode) !== null && _props_encryptedMode !== void 0 ? _props_encryptedMode : '';
|
|
207
|
-
var _props_borderColor;
|
|
208
|
-
_this.borderColor = (_props_borderColor = props === null || props === void 0 ? void 0 : props.borderColor) !== null && _props_borderColor !== void 0 ? _props_borderColor : '';
|
|
209
|
-
var _props_backgroundColor;
|
|
210
|
-
_this.backgroundColor = (_props_backgroundColor = props === null || props === void 0 ? void 0 : props.backgroundColor) !== null && _props_backgroundColor !== void 0 ? _props_backgroundColor : '';
|
|
211
199
|
return _this;
|
|
212
200
|
}
|
|
213
201
|
return InputProperty;
|
|
@@ -181,6 +181,15 @@ _define_property(NumberControl, "setting", [
|
|
|
181
181
|
],
|
|
182
182
|
visible: true
|
|
183
183
|
},
|
|
184
|
+
{
|
|
185
|
+
key: 'caption-style',
|
|
186
|
+
showItems: [
|
|
187
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
188
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
189
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
190
|
+
],
|
|
191
|
+
visible: true
|
|
192
|
+
},
|
|
184
193
|
{
|
|
185
194
|
key: 'label-position',
|
|
186
195
|
visible: true
|
|
@@ -182,6 +182,15 @@ _define_property(OrganizationSelectionControl, "setting", [
|
|
|
182
182
|
],
|
|
183
183
|
visible: true
|
|
184
184
|
},
|
|
185
|
+
{
|
|
186
|
+
key: 'caption-style',
|
|
187
|
+
showItems: [
|
|
188
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
189
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
190
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
191
|
+
],
|
|
192
|
+
visible: true
|
|
193
|
+
},
|
|
185
194
|
{
|
|
186
195
|
key: 'label-position',
|
|
187
196
|
visible: true
|
|
@@ -143,6 +143,15 @@ _define_property(RadioControl, "setting", [
|
|
|
143
143
|
],
|
|
144
144
|
visible: true
|
|
145
145
|
},
|
|
146
|
+
{
|
|
147
|
+
key: 'caption-style',
|
|
148
|
+
showItems: [
|
|
149
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
150
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
151
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
152
|
+
],
|
|
153
|
+
visible: true
|
|
154
|
+
},
|
|
146
155
|
{
|
|
147
156
|
key: 'label-position',
|
|
148
157
|
visible: true
|
|
@@ -145,6 +145,15 @@ _define_property(RichTextControl, "setting", [
|
|
|
145
145
|
],
|
|
146
146
|
visible: true
|
|
147
147
|
},
|
|
148
|
+
{
|
|
149
|
+
key: 'caption-style',
|
|
150
|
+
showItems: [
|
|
151
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
152
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
153
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
154
|
+
],
|
|
155
|
+
visible: true
|
|
156
|
+
},
|
|
148
157
|
{
|
|
149
158
|
key: 'label-position',
|
|
150
159
|
visible: true
|
|
@@ -208,6 +208,15 @@ _define_property(ScoreControl, "setting", [
|
|
|
208
208
|
],
|
|
209
209
|
visible: true
|
|
210
210
|
},
|
|
211
|
+
{
|
|
212
|
+
key: 'caption-style',
|
|
213
|
+
showItems: [
|
|
214
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
215
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
216
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
217
|
+
],
|
|
218
|
+
visible: true
|
|
219
|
+
},
|
|
211
220
|
{
|
|
212
221
|
key: 'label-position',
|
|
213
222
|
visible: true
|
|
@@ -139,6 +139,15 @@ _define_property(SearchDateRangeControl, "setting", [
|
|
|
139
139
|
],
|
|
140
140
|
visible: true
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
key: 'caption-style',
|
|
144
|
+
showItems: [
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
146
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
147
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
148
|
+
],
|
|
149
|
+
visible: true
|
|
150
|
+
},
|
|
142
151
|
{
|
|
143
152
|
key: 'label-position',
|
|
144
153
|
visible: true
|
|
@@ -132,6 +132,15 @@ _define_property(SearchInputControl, "setting", [
|
|
|
132
132
|
],
|
|
133
133
|
visible: true
|
|
134
134
|
},
|
|
135
|
+
{
|
|
136
|
+
key: 'caption-style',
|
|
137
|
+
showItems: [
|
|
138
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
139
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
140
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
141
|
+
],
|
|
142
|
+
visible: true
|
|
143
|
+
},
|
|
135
144
|
// {
|
|
136
145
|
// key: 'common-setting',
|
|
137
146
|
// visible: true,
|
|
@@ -139,6 +139,15 @@ _define_property(SearchNumberRangeControl, "setting", [
|
|
|
139
139
|
],
|
|
140
140
|
visible: true
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
key: 'caption-style',
|
|
144
|
+
showItems: [
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
146
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
147
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
148
|
+
],
|
|
149
|
+
visible: true
|
|
150
|
+
},
|
|
142
151
|
{
|
|
143
152
|
key: 'label-position',
|
|
144
153
|
visible: true
|
|
@@ -139,6 +139,15 @@ _define_property(SelectControl, "setting", [
|
|
|
139
139
|
],
|
|
140
140
|
visible: true
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
key: 'caption-style',
|
|
144
|
+
showItems: [
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
146
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
147
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
148
|
+
],
|
|
149
|
+
visible: true
|
|
150
|
+
},
|
|
142
151
|
{
|
|
143
152
|
key: 'label-position',
|
|
144
153
|
visible: true
|
|
@@ -139,6 +139,15 @@ _define_property(SelectMultipleControl, "setting", [
|
|
|
139
139
|
],
|
|
140
140
|
visible: true
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
key: 'caption-style',
|
|
144
|
+
showItems: [
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
146
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
147
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
148
|
+
],
|
|
149
|
+
visible: true
|
|
150
|
+
},
|
|
142
151
|
{
|
|
143
152
|
key: 'label-position',
|
|
144
153
|
visible: true
|
|
@@ -139,6 +139,15 @@ _define_property(SelectRelationControl, "setting", [
|
|
|
139
139
|
],
|
|
140
140
|
visible: true
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
key: 'caption-style',
|
|
144
|
+
showItems: [
|
|
145
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
146
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
147
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
148
|
+
],
|
|
149
|
+
visible: true
|
|
150
|
+
},
|
|
142
151
|
{
|
|
143
152
|
key: 'label-position',
|
|
144
153
|
visible: true
|
|
@@ -142,6 +142,15 @@ _define_property(SensitivenInformationControl, "setting", [
|
|
|
142
142
|
],
|
|
143
143
|
visible: true
|
|
144
144
|
},
|
|
145
|
+
{
|
|
146
|
+
key: 'caption-style',
|
|
147
|
+
showItems: [
|
|
148
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
149
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
150
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
151
|
+
],
|
|
152
|
+
visible: true
|
|
153
|
+
},
|
|
145
154
|
{
|
|
146
155
|
key: 'label-position',
|
|
147
156
|
visible: true
|
|
@@ -145,6 +145,15 @@ _define_property(TextareaControl, "setting", [
|
|
|
145
145
|
],
|
|
146
146
|
visible: true
|
|
147
147
|
},
|
|
148
|
+
{
|
|
149
|
+
key: 'caption-style',
|
|
150
|
+
showItems: [
|
|
151
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
152
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
153
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
154
|
+
],
|
|
155
|
+
visible: true
|
|
156
|
+
},
|
|
148
157
|
{
|
|
149
158
|
key: 'label-position',
|
|
150
159
|
visible: true
|
|
@@ -164,15 +164,7 @@ var TextareaControlPropertyRuntimeRules = /*#__PURE__*/ function(BaseControlProp
|
|
|
164
164
|
* 最大适应行数
|
|
165
165
|
* @defaultValue 无默认值
|
|
166
166
|
* @public
|
|
167
|
-
*/ _define_property(_this, "maxRows", void 0)
|
|
168
|
-
* 边框颜色
|
|
169
|
-
* @defaultValue ''
|
|
170
|
-
* @public
|
|
171
|
-
*/ _define_property(_this, "borderColor", void 0), /**
|
|
172
|
-
* 背景颜色
|
|
173
|
-
* @defaultValue ''
|
|
174
|
-
* @public
|
|
175
|
-
*/ _define_property(_this, "backgroundColor", void 0);
|
|
167
|
+
*/ _define_property(_this, "maxRows", void 0);
|
|
176
168
|
var _props_maxLength;
|
|
177
169
|
_this.maxLength = (_props_maxLength = props === null || props === void 0 ? void 0 : props.maxLength) !== null && _props_maxLength !== void 0 ? _props_maxLength : 50000;
|
|
178
170
|
var _props_minLength;
|
|
@@ -188,10 +180,6 @@ var TextareaControlPropertyRuntimeRules = /*#__PURE__*/ function(BaseControlProp
|
|
|
188
180
|
var _props_autoSize;
|
|
189
181
|
_this.autoSize = (_props_autoSize = props === null || props === void 0 ? void 0 : props.autoSize) !== null && _props_autoSize !== void 0 ? _props_autoSize : false;
|
|
190
182
|
_this.maxRows = props === null || props === void 0 ? void 0 : props.maxRows;
|
|
191
|
-
var _props_borderColor;
|
|
192
|
-
_this.borderColor = (_props_borderColor = props === null || props === void 0 ? void 0 : props.borderColor) !== null && _props_borderColor !== void 0 ? _props_borderColor : '';
|
|
193
|
-
var _props_backgroundColor;
|
|
194
|
-
_this.backgroundColor = (_props_backgroundColor = props === null || props === void 0 ? void 0 : props.backgroundColor) !== null && _props_backgroundColor !== void 0 ? _props_backgroundColor : '';
|
|
195
183
|
return _this;
|
|
196
184
|
}
|
|
197
185
|
return TextareaProperty;
|
|
@@ -156,6 +156,15 @@ _define_property(TreeControl, "setting", [
|
|
|
156
156
|
],
|
|
157
157
|
visible: true
|
|
158
158
|
},
|
|
159
|
+
{
|
|
160
|
+
key: 'caption-style',
|
|
161
|
+
showItems: [
|
|
162
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
163
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
164
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
165
|
+
],
|
|
166
|
+
visible: true
|
|
167
|
+
},
|
|
159
168
|
{
|
|
160
169
|
key: 'label-position',
|
|
161
170
|
visible: true
|
|
@@ -136,6 +136,15 @@ _define_property(VueFormItemControl, "setting", [
|
|
|
136
136
|
],
|
|
137
137
|
visible: true
|
|
138
138
|
},
|
|
139
|
+
{
|
|
140
|
+
key: 'caption-style',
|
|
141
|
+
showItems: [
|
|
142
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
143
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
144
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
145
|
+
],
|
|
146
|
+
visible: true
|
|
147
|
+
},
|
|
139
148
|
{
|
|
140
149
|
key: 'label-position',
|
|
141
150
|
visible: true
|
|
@@ -146,6 +146,15 @@ _define_property(WPSControl, "setting", [
|
|
|
146
146
|
],
|
|
147
147
|
visible: true
|
|
148
148
|
},
|
|
149
|
+
{
|
|
150
|
+
key: 'caption-style',
|
|
151
|
+
showItems: [
|
|
152
|
+
COMMON_SETTING_TYPE.CAPTION_SIZE,
|
|
153
|
+
COMMON_SETTING_TYPE.CAPTION_COLOR,
|
|
154
|
+
COMMON_SETTING_TYPE.IS_CAPTION_ITALIC
|
|
155
|
+
],
|
|
156
|
+
visible: true
|
|
157
|
+
},
|
|
149
158
|
{
|
|
150
159
|
key: 'label-position',
|
|
151
160
|
visible: true
|