@byteluck-fe/model-driven-core 2.23.2 → 2.23.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.
Files changed (54) hide show
  1. package/README.md +69 -69
  2. package/dist/esm/common/BaseControl/designer.js +26 -32
  3. package/dist/esm/common/BaseControl/property.js +15 -15
  4. package/dist/esm/common/BaseControl/runtime.js +1 -2
  5. package/dist/esm/common/ColumnControl/property.js +28 -28
  6. package/dist/esm/common/FormControl/property.js +44 -44
  7. package/dist/esm/common/LayoutControl/designer.js +6 -10
  8. package/dist/esm/common/ListControl/designer.js +6 -10
  9. package/dist/esm/common/Validator.js +1 -0
  10. package/dist/esm/common/initOptionAndDataSourceRules.js +5 -5
  11. package/dist/esm/framework/index.js +390 -381
  12. package/dist/index.umd.js +1 -1
  13. package/dist/types/api-doc-index.d.ts +4 -4
  14. package/dist/types/common/BaseControl/designer.d.ts +71 -71
  15. package/dist/types/common/BaseControl/index.d.ts +13 -13
  16. package/dist/types/common/BaseControl/property.d.ts +44 -44
  17. package/dist/types/common/BaseControl/runtime.d.ts +23 -23
  18. package/dist/types/common/BaseControl/types.d.ts +35 -35
  19. package/dist/types/common/ColumnControl/designer.d.ts +20 -20
  20. package/dist/types/common/ColumnControl/index.d.ts +12 -12
  21. package/dist/types/common/ColumnControl/property.d.ts +74 -74
  22. package/dist/types/common/ColumnControl/runtime.d.ts +11 -11
  23. package/dist/types/common/ControlArray.d.ts +9 -9
  24. package/dist/types/common/FormControl/designer.d.ts +13 -13
  25. package/dist/types/common/FormControl/index.d.ts +12 -12
  26. package/dist/types/common/FormControl/property.d.ts +100 -100
  27. package/dist/types/common/FormControl/runtime.d.ts +11 -11
  28. package/dist/types/common/LayoutControl/designer.d.ts +21 -21
  29. package/dist/types/common/LayoutControl/index.d.ts +12 -12
  30. package/dist/types/common/LayoutControl/property.d.ts +6 -6
  31. package/dist/types/common/LayoutControl/runtime.d.ts +11 -11
  32. package/dist/types/common/ListControl/designer.d.ts +16 -16
  33. package/dist/types/common/ListControl/index.d.ts +12 -12
  34. package/dist/types/common/ListControl/property.d.ts +18 -18
  35. package/dist/types/common/ListControl/runtime.d.ts +12 -12
  36. package/dist/types/common/SearchViewControl/designer.d.ts +11 -11
  37. package/dist/types/common/SearchViewControl/index.d.ts +12 -12
  38. package/dist/types/common/SearchViewControl/property.d.ts +8 -8
  39. package/dist/types/common/SearchViewControl/runtime.d.ts +11 -11
  40. package/dist/types/common/Validator.d.ts +15 -15
  41. package/dist/types/common/WrapControl/designer.d.ts +11 -11
  42. package/dist/types/common/WrapControl/index.d.ts +12 -12
  43. package/dist/types/common/WrapControl/property.d.ts +6 -6
  44. package/dist/types/common/WrapControl/runtime.d.ts +11 -11
  45. package/dist/types/common/controlHooksEmitter.d.ts +4 -4
  46. package/dist/types/common/index.d.ts +12 -12
  47. package/dist/types/common/initLinkOperationRules.d.ts +6 -6
  48. package/dist/types/common/initOptionAndDataSourceRules.d.ts +10 -10
  49. package/dist/types/framework/RegisterControls.d.ts +37 -37
  50. package/dist/types/framework/index.d.ts +938 -938
  51. package/dist/types/framework/isDataBind.d.ts +2 -2
  52. package/dist/types/index.d.ts +4 -4
  53. package/dist/types/type.d.ts +91 -91
  54. package/package.json +3 -3
package/README.md CHANGED
@@ -1,69 +1,69 @@
1
- # Core
2
- 引擎控件核心定义
3
-
4
- 定义了控件的基类和一些工具类的实现
5
-
6
- ```
7
- │ index.ts // 入口文件
8
- │ type.ts // 类型
9
-
10
- ├─common // 基础类
11
- │ │ ControlArray.ts // 控件数组,管理设计态和运行态的children和headers数组
12
- │ │ controlHooksEmitter.ts // 旧版设计态的控件事件发布,暂时不可废弃
13
- │ │ index.ts
14
- │ │ initOptionAndDataSourceRules.ts // 关联数据源和自定义选项的校验规则
15
- │ │ Validator.ts // 校验
16
- │ │
17
- │ ├─BaseControl // 基础控件
18
- │ │ designer.ts
19
- │ │ index.ts
20
- │ │ property.ts
21
- │ │ runtime.ts
22
- │ │ types.ts
23
- │ │
24
- │ ├─ColumnControl // 列控件
25
- │ │ designer.ts
26
- │ │ index.ts
27
- │ │ property.ts
28
- │ │ runtime.ts
29
- │ │ types.ts
30
- │ │
31
- │ ├─FormControl // 表单控件
32
- │ │ designer.ts
33
- │ │ index.ts
34
- │ │ property.ts
35
- │ │ runtime.ts
36
- │ │ types.ts
37
- │ │
38
- │ ├─LayoutControl // 布局控件
39
- │ │ designer.ts
40
- │ │ index.ts
41
- │ │ property.ts
42
- │ │ runtime.ts
43
- │ │ types.ts
44
- │ │
45
- │ ├─ListControl // 列表控件
46
- │ │ designer.ts
47
- │ │ index.ts
48
- │ │ property.ts
49
- │ │ runtime.ts
50
- │ │ types.ts
51
- │ │
52
- │ ├─SearchViewControl // 查询容器控件
53
- │ │ designer.ts
54
- │ │ index.ts
55
- │ │ property.ts
56
- │ │ runtime.ts
57
- │ │ types.ts
58
- │ │
59
- │ └─WrapControl // 容器控件
60
- │ designer.ts
61
- │ index.ts
62
- │ property.ts
63
- │ runtime.ts
64
- │ types.ts
65
-
66
- └─framework // 工具类
67
- index.ts // 很多工具类
68
- RegisterControls.ts // 注册和管理控件类,被Runtime和Designer继承
69
- ```
1
+ # Core
2
+ 引擎控件核心定义
3
+
4
+ 定义了控件的基类和一些工具类的实现
5
+
6
+ ```
7
+ │ index.ts // 入口文件
8
+ │ type.ts // 类型
9
+
10
+ ├─common // 基础类
11
+ │ │ ControlArray.ts // 控件数组,管理设计态和运行态的children和headers数组
12
+ │ │ controlHooksEmitter.ts // 旧版设计态的控件事件发布,暂时不可废弃
13
+ │ │ index.ts
14
+ │ │ initOptionAndDataSourceRules.ts // 关联数据源和自定义选项的校验规则
15
+ │ │ Validator.ts // 校验
16
+ │ │
17
+ │ ├─BaseControl // 基础控件
18
+ │ │ designer.ts
19
+ │ │ index.ts
20
+ │ │ property.ts
21
+ │ │ runtime.ts
22
+ │ │ types.ts
23
+ │ │
24
+ │ ├─ColumnControl // 列控件
25
+ │ │ designer.ts
26
+ │ │ index.ts
27
+ │ │ property.ts
28
+ │ │ runtime.ts
29
+ │ │ types.ts
30
+ │ │
31
+ │ ├─FormControl // 表单控件
32
+ │ │ designer.ts
33
+ │ │ index.ts
34
+ │ │ property.ts
35
+ │ │ runtime.ts
36
+ │ │ types.ts
37
+ │ │
38
+ │ ├─LayoutControl // 布局控件
39
+ │ │ designer.ts
40
+ │ │ index.ts
41
+ │ │ property.ts
42
+ │ │ runtime.ts
43
+ │ │ types.ts
44
+ │ │
45
+ │ ├─ListControl // 列表控件
46
+ │ │ designer.ts
47
+ │ │ index.ts
48
+ │ │ property.ts
49
+ │ │ runtime.ts
50
+ │ │ types.ts
51
+ │ │
52
+ │ ├─SearchViewControl // 查询容器控件
53
+ │ │ designer.ts
54
+ │ │ index.ts
55
+ │ │ property.ts
56
+ │ │ runtime.ts
57
+ │ │ types.ts
58
+ │ │
59
+ │ └─WrapControl // 容器控件
60
+ │ designer.ts
61
+ │ index.ts
62
+ │ property.ts
63
+ │ runtime.ts
64
+ │ types.ts
65
+
66
+ └─framework // 工具类
67
+ index.ts // 很多工具类
68
+ RegisterControls.ts // 注册和管理控件类,被Runtime和Designer继承
69
+ ```
@@ -120,7 +120,7 @@ function _unsupported_iterable_to_array(o, minLen) {
120
120
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
121
121
  }
122
122
  function _ts_generator(thisArg, body) {
123
- var f, y, t, g, _ = {
123
+ var f, y, t, _ = {
124
124
  label: 0,
125
125
  sent: function() {
126
126
  if (t[0] & 1) throw t[1];
@@ -128,12 +128,8 @@ function _ts_generator(thisArg, body) {
128
128
  },
129
129
  trys: [],
130
130
  ops: []
131
- };
132
- return g = {
133
- next: verb(0),
134
- "throw": verb(1),
135
- "return": verb(2)
136
- }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
131
+ }, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
132
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
137
133
  return this;
138
134
  }), g;
139
135
  function verb(n) {
@@ -146,7 +142,7 @@ function _ts_generator(thisArg, body) {
146
142
  }
147
143
  function step(op) {
148
144
  if (f) throw new TypeError("Generator is already executing.");
149
- while(_)try {
145
+ while(g && (g = 0, op[0] && (_ = 0)), _)try {
150
146
  if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
151
147
  if (y = 0, t) op = [
152
148
  op[0] & 2,
@@ -214,6 +210,7 @@ function _ts_generator(thisArg, body) {
214
210
  };
215
211
  }
216
212
  }
213
+ import { getLocaleText } from '@byteluck-fe/locale-message';
217
214
  import Property from './property';
218
215
  import { genNonDuplicateId, JSONCopy, referenceError, updateValueFromKeys } from '@byteluck-fe/model-driven-shared';
219
216
  import { createValidator } from '../Validator';
@@ -223,8 +220,7 @@ var Control = /*#__PURE__*/ function _target() {
223
220
  function Control(props) {
224
221
  var _this = this;
225
222
  _class_call_check(this, Control);
226
- _define_property(this, "id", void 0 // 唯一标识符
227
- );
223
+ _define_property(this, "id", void 0); // 唯一标识符
228
224
  _define_property(this, "name", void 0);
229
225
  _define_property(this, "icon", void 0);
230
226
  _define_property(this, "type", void 0);
@@ -315,17 +311,16 @@ var Control = /*#__PURE__*/ function _target() {
315
311
  {
316
312
  key: "preValidate",
317
313
  value: function preValidate() {
318
- var _this = this;
319
314
  return _async_to_generator(function() {
320
315
  var rules, results, result;
321
316
  return _ts_generator(this, function(_state) {
322
317
  switch(_state.label){
323
318
  case 0:
324
319
  // 在处理validate之前,预留的钩子函数,允许在validate之前处理一些数据
325
- rules = _object_spread({}, _this.rules);
320
+ rules = _object_spread({}, this.rules);
326
321
  return [
327
322
  4,
328
- _this._callControlHooks('preValidate', rules)
323
+ this._callControlHooks('preValidate', rules)
329
324
  ];
330
325
  case 1:
331
326
  results = _state.sent();
@@ -336,14 +331,13 @@ var Control = /*#__PURE__*/ function _target() {
336
331
  ];
337
332
  }
338
333
  });
339
- })();
334
+ }).call(this);
340
335
  }
341
336
  },
342
337
  {
343
338
  key: "validate",
344
339
  value: // property校验
345
340
  function validate(messages, ignore) {
346
- var _this = this;
347
341
  return _async_to_generator(function() {
348
342
  var result, rules, validator, err;
349
343
  return _ts_generator(this, function(_state) {
@@ -351,11 +345,11 @@ var Control = /*#__PURE__*/ function _target() {
351
345
  case 0:
352
346
  return [
353
347
  4,
354
- _this.preValidate()
348
+ this.preValidate()
355
349
  ];
356
350
  case 1:
357
351
  result = _state.sent();
358
- rules = result !== undefined ? result : _object_spread({}, _this.rules);
352
+ rules = result !== undefined ? result : _object_spread({}, this.rules);
359
353
  if (Array.isArray(ignore)) {
360
354
  ignore.forEach(function(key) {
361
355
  if (rules.hasOwnProperty(key)) {
@@ -374,7 +368,7 @@ var Control = /*#__PURE__*/ function _target() {
374
368
  ]);
375
369
  return [
376
370
  4,
377
- validator.validate(_this.props)
371
+ validator.validate(this.props)
378
372
  ];
379
373
  case 3:
380
374
  _state.sent();
@@ -385,7 +379,7 @@ var Control = /*#__PURE__*/ function _target() {
385
379
  case 4:
386
380
  err = _state.sent();
387
381
  if (!err.control) {
388
- err.control = _this;
382
+ err.control = this;
389
383
  }
390
384
  throw err;
391
385
  case 5:
@@ -394,7 +388,7 @@ var Control = /*#__PURE__*/ function _target() {
394
388
  ];
395
389
  }
396
390
  });
397
- })();
391
+ }).call(this);
398
392
  }
399
393
  },
400
394
  {
@@ -486,7 +480,7 @@ var Control = /*#__PURE__*/ function _target() {
486
480
  _define_property(Control, "mode", 'Designer');
487
481
  _define_property(Control, "slots", void 0);
488
482
  _define_property(Control, "slotPosition", void 0);
489
- _define_property(Control, "controlName", '控件');
483
+ _define_property(Control, "controlName", getLocaleText('CMD.85531751967135654'));
490
484
  _define_property(Control, "controlIcon", 'icon');
491
485
  _define_property(Control, "controlType", 'control');
492
486
  _define_property(Control, "controlFieldType", void 0);
@@ -502,10 +496,10 @@ _define_property(Control, "removeSettingItem", removeSetting);
502
496
  _define_property(Control, "updateSettingItem", updateSetting);
503
497
  export default Control;
504
498
  export { Control as DesignerControl };
505
- /**
506
- * @function 删除控件或者实例上的setting的方法
507
- * @description 其中的this可能是DesignerControl的类,也可以是实例
508
- * @param keys 需要删除的key或key组成的数组
499
+ /**
500
+ * @function 删除控件或者实例上的setting的方法
501
+ * @description 其中的this可能是DesignerControl的类,也可以是实例
502
+ * @param keys 需要删除的key或key组成的数组
509
503
  * */ function removeSetting(keys) {
510
504
  var _this = this;
511
505
  var deleteKeys = Array.isArray(keys) ? keys : [
@@ -533,13 +527,13 @@ export { Control as DesignerControl };
533
527
  }
534
528
  });
535
529
  }
536
- /**
537
- * @function 修改控件或者实例上的setting的方法
538
- * @description 其中的this可能是DesignerControl的类,也可以是实例
539
- * @param settingKey 需要修改的key或者key组成的数组
540
- * @param value 修改之后的visible值
541
- * @param value.showItems 需要添加或替换的showItems
542
- * @param value.type 默认是replace替换,可以更改为push新增
530
+ /**
531
+ * @function 修改控件或者实例上的setting的方法
532
+ * @description 其中的this可能是DesignerControl的类,也可以是实例
533
+ * @param settingKey 需要修改的key或者key组成的数组
534
+ * @param value 修改之后的visible值
535
+ * @param value.showItems 需要添加或替换的showItems
536
+ * @param value.type 默认是replace替换,可以更改为push新增
543
537
  * */ function updateSetting(settingKey, value) {
544
538
  var _this = this;
545
539
  var keys = typeof settingKey === 'string' ? [
@@ -133,29 +133,29 @@ var PropertyRuntimeRules = /*#__PURE__*/ function(Array1) {
133
133
  }
134
134
  return PropertyRuntimeRules;
135
135
  }(_wrap_native_super(Array));
136
- /**
137
- * 全局属性
138
- * @public
136
+ /**
137
+ * 全局属性
138
+ * @public
139
139
  */ var Property = function Property(props) {
140
140
  "use strict";
141
141
  var caption = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : '';
142
142
  _class_call_check(this, Property);
143
- /**
144
- * 是否隐藏
145
- * @public
146
- * @defaultValue false
143
+ /**
144
+ * 是否隐藏
145
+ * @public
146
+ * @defaultValue false
147
147
  */ _define_property(this, "isHide", void 0);
148
148
  _define_property(this, "className", void 0);
149
149
  _define_property(this, "style", void 0);
150
- /**
151
- * 标题
152
- * @public
153
- * @defaultValue ''
150
+ /**
151
+ * 标题
152
+ * @public
153
+ * @defaultValue ''
154
154
  */ _define_property(this, "caption", void 0);
155
- /**
156
- * 标题
157
- * @public
158
- * @defaultValue ''
155
+ /**
156
+ * 标题
157
+ * @public
158
+ * @defaultValue ''
159
159
  */ _define_property(this, "defaultState", void 0);
160
160
  var _props_isHide;
161
161
  this.isHide = (_props_isHide = props === null || props === void 0 ? void 0 : props.isHide) !== null && _props_isHide !== void 0 ? _props_isHide : false;
@@ -44,8 +44,7 @@ var Control = /*#__PURE__*/ function _target() {
44
44
  "use strict";
45
45
  function Control(props) {
46
46
  _class_call_check(this, Control);
47
- _define_property(this, "id", void 0 // 唯一标识符
48
- );
47
+ _define_property(this, "id", void 0); // 唯一标识符
49
48
  _define_property(this, "type", void 0);
50
49
  _define_property(this, "controlType", void 0);
51
50
  _define_property(this, "props", void 0);
@@ -96,9 +96,9 @@ var ColumnControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
96
96
  }
97
97
  return ColumnControlPropertyRules;
98
98
  }(PropertyRules);
99
- /**
100
- * 列基本属性
101
- * @public
99
+ /**
100
+ * 列基本属性
101
+ * @public
102
102
  */ var ColumnControlProperty = /*#__PURE__*/ function(Property) {
103
103
  "use strict";
104
104
  _inherits(ColumnControlProperty, Property);
@@ -107,31 +107,31 @@ var ColumnControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
107
107
  var _this;
108
108
  _this = _call_super(this, ColumnControlProperty, [
109
109
  props
110
- ]), /**
111
- * 宽度类型
112
- * @defaultValue 'auto'
113
- */ _define_property(_this, "widthType", void 0), /**
114
- * 宽度
115
- * @defaultValue 150
116
- */ _define_property(_this, "width", void 0), /**
117
- * 标题
118
- */ _define_property(_this, "caption", void 0), /**
119
- * 绑定数据项
120
- */ _define_property(_this, "dataBind", void 0), /**
121
- * 自适应页面宽度
122
- */ _define_property(_this, "autoWidth", void 0), /**
123
- * 冻结
124
- * @defaultValue 'none'
125
- */ _define_property(_this, "fixed", void 0), /**
126
- * 表头排序
127
- * @defaultValue true
128
- */ _define_property(_this, "sort", void 0), /**
129
- * 对齐
130
- */ _define_property(_this, "align", void 0), /**
131
- * @internal
132
- */ _define_property(_this, "colSpan", void 0), /**
133
- * 自动高度
134
- * @defaultValue false
110
+ ]), /**
111
+ * 宽度类型
112
+ * @defaultValue 'auto'
113
+ */ _define_property(_this, "widthType", void 0), /**
114
+ * 宽度
115
+ * @defaultValue 150
116
+ */ _define_property(_this, "width", void 0), /**
117
+ * 标题
118
+ */ _define_property(_this, "caption", void 0), /**
119
+ * 绑定数据项
120
+ */ _define_property(_this, "dataBind", void 0), /**
121
+ * 自适应页面宽度
122
+ */ _define_property(_this, "autoWidth", void 0), /**
123
+ * 冻结
124
+ * @defaultValue 'none'
125
+ */ _define_property(_this, "fixed", void 0), /**
126
+ * 表头排序
127
+ * @defaultValue true
128
+ */ _define_property(_this, "sort", void 0), /**
129
+ * 对齐
130
+ */ _define_property(_this, "align", void 0), /**
131
+ * @internal
132
+ */ _define_property(_this, "colSpan", void 0), /**
133
+ * 自动高度
134
+ * @defaultValue false
135
135
  */ _define_property(_this, "autoHeight", void 0), _define_property(_this, "children", void 0);
136
136
  var _props_width;
137
137
  _this.width = (_props_width = props === null || props === void 0 ? void 0 : props.width) !== null && _props_width !== void 0 ? _props_width : 150;
@@ -184,9 +184,9 @@ var BaseControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntimeRule
184
184
  }
185
185
  return BaseControlPropertyRuntimeRules;
186
186
  }(PropertyRuntimeRules);
187
- /**
188
- * 表单控件公共属性
189
- * @public
187
+ /**
188
+ * 表单控件公共属性
189
+ * @public
190
190
  */ var BaseControlProperty = /*#__PURE__*/ function(Property) {
191
191
  "use strict";
192
192
  _inherits(BaseControlProperty, Property);
@@ -195,47 +195,47 @@ var BaseControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntimeRule
195
195
  var _this;
196
196
  _this = _call_super(this, BaseControlProperty, [
197
197
  props
198
- ]), /**
199
- * 标题
200
- * @defaultValue ''
201
- * @public
202
- */ _define_property(_this, "caption", void 0), /**
203
- * 隐藏标题
204
- * @defaultValue false
205
- * @public
206
- */ _define_property(_this, "isHideCaption", void 0), /**
207
- * 显示气泡提示
208
- * @defaultValue false
209
- * @public
210
- */ _define_property(_this, "isShowCaptionTip", void 0), /**
211
- * 气泡提示语
212
- * @defaultValue ''
213
- * @public
214
- */ _define_property(_this, "captionTip", void 0), /**
215
- * 标题布局
216
- * @defaultValue ''
217
- * @public
218
- */ _define_property(_this, "labelPosition", void 0), /**
219
- * 绑定数据项
220
- * @public
221
- */ _define_property(_this, "dataBind", void 0), /**
222
- * 默认值
223
- * @public
224
- */ _define_property(_this, "defaultValue", void 0), /**
225
- * 提示文字
226
- * @defaultValue ''
227
- * @public
228
- */ _define_property(_this, "placeholder", void 0), /**
229
- * 默认状态
230
- * @defaultValue 'default'
231
- * @public
232
- */ _define_property(_this, "defaultState", void 0), /**
233
- * 必填
234
- * @defaultValue false
235
- * @public
236
- */ _define_property(_this, "required", void 0), /**
237
- * 必填提示文案
238
- * @defaultValue ''
198
+ ]), /**
199
+ * 标题
200
+ * @defaultValue ''
201
+ * @public
202
+ */ _define_property(_this, "caption", void 0), /**
203
+ * 隐藏标题
204
+ * @defaultValue false
205
+ * @public
206
+ */ _define_property(_this, "isHideCaption", void 0), /**
207
+ * 显示气泡提示
208
+ * @defaultValue false
209
+ * @public
210
+ */ _define_property(_this, "isShowCaptionTip", void 0), /**
211
+ * 气泡提示语
212
+ * @defaultValue ''
213
+ * @public
214
+ */ _define_property(_this, "captionTip", void 0), /**
215
+ * 标题布局
216
+ * @defaultValue ''
217
+ * @public
218
+ */ _define_property(_this, "labelPosition", void 0), /**
219
+ * 绑定数据项
220
+ * @public
221
+ */ _define_property(_this, "dataBind", void 0), /**
222
+ * 默认值
223
+ * @public
224
+ */ _define_property(_this, "defaultValue", void 0), /**
225
+ * 提示文字
226
+ * @defaultValue ''
227
+ * @public
228
+ */ _define_property(_this, "placeholder", void 0), /**
229
+ * 默认状态
230
+ * @defaultValue 'default'
231
+ * @public
232
+ */ _define_property(_this, "defaultState", void 0), /**
233
+ * 必填
234
+ * @defaultValue false
235
+ * @public
236
+ */ _define_property(_this, "required", void 0), /**
237
+ * 必填提示文案
238
+ * @defaultValue ''
239
239
  */ _define_property(_this, "requiredMessage", void 0);
240
240
  var _props_caption;
241
241
  _this.caption = (_props_caption = props === null || props === void 0 ? void 0 : props.caption) !== null && _props_caption !== void 0 ? _props_caption : '';
@@ -208,7 +208,7 @@ function _is_native_reflect_construct() {
208
208
  })();
209
209
  }
210
210
  function _ts_generator(thisArg, body) {
211
- var f, y, t, g, _ = {
211
+ var f, y, t, _ = {
212
212
  label: 0,
213
213
  sent: function() {
214
214
  if (t[0] & 1) throw t[1];
@@ -216,12 +216,8 @@ function _ts_generator(thisArg, body) {
216
216
  },
217
217
  trys: [],
218
218
  ops: []
219
- };
220
- return g = {
221
- next: verb(0),
222
- "throw": verb(1),
223
- "return": verb(2)
224
- }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
219
+ }, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
220
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
225
221
  return this;
226
222
  }), g;
227
223
  function verb(n) {
@@ -234,7 +230,7 @@ function _ts_generator(thisArg, body) {
234
230
  }
235
231
  function step(op) {
236
232
  if (f) throw new TypeError("Generator is already executing.");
237
- while(_)try {
233
+ while(g && (g = 0, op[0] && (_ = 0)), _)try {
238
234
  if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
239
235
  if (y = 0, t) op = [
240
236
  op[0] & 2,
@@ -360,7 +356,7 @@ var LayoutControl = /*#__PURE__*/ function _target(DesignerControl) {
360
356
  _state.sent();
361
357
  return [
362
358
  4,
363
- Promise.all(_this1.children.map(function(child) {
359
+ Promise.all(this.children.map(function(child) {
364
360
  return child.validate(messages, ignore);
365
361
  }))
366
362
  ];
@@ -372,7 +368,7 @@ var LayoutControl = /*#__PURE__*/ function _target(DesignerControl) {
372
368
  ];
373
369
  }
374
370
  });
375
- })();
371
+ }).call(this);
376
372
  }
377
373
  },
378
374
  {
@@ -201,7 +201,7 @@ function _is_native_reflect_construct() {
201
201
  })();
202
202
  }
203
203
  function _ts_generator(thisArg, body) {
204
- var f, y, t, g, _ = {
204
+ var f, y, t, _ = {
205
205
  label: 0,
206
206
  sent: function() {
207
207
  if (t[0] & 1) throw t[1];
@@ -209,12 +209,8 @@ function _ts_generator(thisArg, body) {
209
209
  },
210
210
  trys: [],
211
211
  ops: []
212
- };
213
- return g = {
214
- next: verb(0),
215
- "throw": verb(1),
216
- "return": verb(2)
217
- }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
212
+ }, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
213
+ return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
218
214
  return this;
219
215
  }), g;
220
216
  function verb(n) {
@@ -227,7 +223,7 @@ function _ts_generator(thisArg, body) {
227
223
  }
228
224
  function step(op) {
229
225
  if (f) throw new TypeError("Generator is already executing.");
230
- while(_)try {
226
+ while(g && (g = 0, op[0] && (_ = 0)), _)try {
231
227
  if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
232
228
  if (y = 0, t) op = [
233
229
  op[0] & 2,
@@ -330,7 +326,7 @@ var ListControl = /*#__PURE__*/ function(DesignerControl) {
330
326
  _state.sent();
331
327
  return [
332
328
  4,
333
- Promise.all(_this1.props.headers.map(function(child) {
329
+ Promise.all(this.props.headers.map(function(child) {
334
330
  return child.validate(messages, ignore);
335
331
  }))
336
332
  ];
@@ -342,7 +338,7 @@ var ListControl = /*#__PURE__*/ function(DesignerControl) {
342
338
  ];
343
339
  }
344
340
  });
345
- })();
341
+ }).call(this);
346
342
  }
347
343
  },
348
344
  {
@@ -1,4 +1,5 @@
1
1
  import Schema from 'async-validator';
2
+ // @i18n-translate-ignore
2
3
  var messages = {
3
4
  required: '%s 必填',
4
5
  maxLength: '%s 超出最大长度限制',