@byteluck-fe/model-driven-controls 6.0.0-dongxin-beta.2 → 6.0.0-dongxin-beta.3
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.
|
@@ -155,7 +155,7 @@ var InputControlPropertyRuntimeRules = /*#__PURE__*/ function(BaseControlPropert
|
|
|
155
155
|
function InputProperty(props) {
|
|
156
156
|
_class_call_check(this, InputProperty);
|
|
157
157
|
var _this;
|
|
158
|
-
var _ref, _ref1, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7;
|
|
158
|
+
var _ref, _ref1, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7, _ref8, _ref9;
|
|
159
159
|
_this = _call_super(this, InputProperty, [
|
|
160
160
|
props
|
|
161
161
|
]), /**
|
|
@@ -182,6 +182,14 @@ var InputControlPropertyRuntimeRules = /*#__PURE__*/ function(BaseControlPropert
|
|
|
182
182
|
* @defaultValue ''
|
|
183
183
|
* @public
|
|
184
184
|
*/ _define_property(_this, "encryptedMode", void 0), /**
|
|
185
|
+
* 自定义掩盖位数,前后保留位数
|
|
186
|
+
* @defaultValue { front: 0, back: 0 }
|
|
187
|
+
* @public
|
|
188
|
+
*/ _define_property(_this, "encModeCustomMask", void 0), /**
|
|
189
|
+
* 正则表达式掩盖
|
|
190
|
+
* @defaultValue { type: '', value: '' }
|
|
191
|
+
* @public
|
|
192
|
+
*/ _define_property(_this, "encModeRegexMask", void 0), /**
|
|
185
193
|
* ai 显示内容搜索 false | true
|
|
186
194
|
* @defaultValue false
|
|
187
195
|
* @public
|
|
@@ -194,7 +202,15 @@ var InputControlPropertyRuntimeRules = /*#__PURE__*/ function(BaseControlPropert
|
|
|
194
202
|
_this.placeholder = (_ref4 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && _ref4 !== void 0 ? _ref4 : getLocaleText('CMD.pleaseEnter', null, '请输入');
|
|
195
203
|
_this.encrypted = (_ref5 = props === null || props === void 0 ? void 0 : props.encrypted) !== null && _ref5 !== void 0 ? _ref5 : false;
|
|
196
204
|
_this.encryptedMode = (_ref6 = props === null || props === void 0 ? void 0 : props.encryptedMode) !== null && _ref6 !== void 0 ? _ref6 : '';
|
|
197
|
-
_this.
|
|
205
|
+
_this.encModeCustomMask = (_ref7 = props === null || props === void 0 ? void 0 : props.encModeCustomMask) !== null && _ref7 !== void 0 ? _ref7 : {
|
|
206
|
+
front: 0,
|
|
207
|
+
back: 0
|
|
208
|
+
};
|
|
209
|
+
_this.encModeRegexMask = (_ref8 = props === null || props === void 0 ? void 0 : props.encModeRegexMask) !== null && _ref8 !== void 0 ? _ref8 : {
|
|
210
|
+
type: '',
|
|
211
|
+
value: ''
|
|
212
|
+
};
|
|
213
|
+
_this.aiContentSearch = (_ref9 = props === null || props === void 0 ? void 0 : props.aiContentSearch) !== null && _ref9 !== void 0 ? _ref9 : false;
|
|
198
214
|
return _this;
|
|
199
215
|
}
|
|
200
216
|
return InputProperty;
|