@byteluck-fe/model-driven-core 2.22.3-beta.1 → 2.22.3-beta.6

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 (51) hide show
  1. package/README.md +69 -69
  2. package/dist/esm/common/BaseControl/designer.js +11 -11
  3. package/dist/esm/common/BaseControl/property.js +15 -15
  4. package/dist/esm/common/ColumnControl/property.js +34 -34
  5. package/dist/esm/common/FormControl/property.js +59 -58
  6. package/dist/esm/common/initLinkOperationRules.js +2 -2
  7. package/dist/esm/common/initOptionAndDataSourceRules.js +31 -30
  8. package/dist/esm/framework/index.js +364 -364
  9. package/dist/index.umd.js +1 -1
  10. package/dist/types/api-doc-index.d.ts +4 -4
  11. package/dist/types/common/BaseControl/designer.d.ts +71 -71
  12. package/dist/types/common/BaseControl/index.d.ts +13 -13
  13. package/dist/types/common/BaseControl/property.d.ts +44 -44
  14. package/dist/types/common/BaseControl/runtime.d.ts +23 -23
  15. package/dist/types/common/BaseControl/types.d.ts +35 -35
  16. package/dist/types/common/ColumnControl/designer.d.ts +20 -20
  17. package/dist/types/common/ColumnControl/index.d.ts +12 -12
  18. package/dist/types/common/ColumnControl/property.d.ts +74 -74
  19. package/dist/types/common/ColumnControl/runtime.d.ts +11 -11
  20. package/dist/types/common/ControlArray.d.ts +9 -9
  21. package/dist/types/common/FormControl/designer.d.ts +13 -13
  22. package/dist/types/common/FormControl/index.d.ts +12 -12
  23. package/dist/types/common/FormControl/property.d.ts +100 -100
  24. package/dist/types/common/FormControl/runtime.d.ts +11 -11
  25. package/dist/types/common/LayoutControl/designer.d.ts +21 -21
  26. package/dist/types/common/LayoutControl/index.d.ts +12 -12
  27. package/dist/types/common/LayoutControl/property.d.ts +6 -6
  28. package/dist/types/common/LayoutControl/runtime.d.ts +11 -11
  29. package/dist/types/common/ListControl/designer.d.ts +16 -16
  30. package/dist/types/common/ListControl/index.d.ts +12 -12
  31. package/dist/types/common/ListControl/property.d.ts +18 -18
  32. package/dist/types/common/ListControl/runtime.d.ts +12 -12
  33. package/dist/types/common/SearchViewControl/designer.d.ts +11 -11
  34. package/dist/types/common/SearchViewControl/index.d.ts +12 -12
  35. package/dist/types/common/SearchViewControl/property.d.ts +8 -8
  36. package/dist/types/common/SearchViewControl/runtime.d.ts +11 -11
  37. package/dist/types/common/Validator.d.ts +15 -15
  38. package/dist/types/common/WrapControl/designer.d.ts +11 -11
  39. package/dist/types/common/WrapControl/index.d.ts +12 -12
  40. package/dist/types/common/WrapControl/property.d.ts +6 -6
  41. package/dist/types/common/WrapControl/runtime.d.ts +11 -11
  42. package/dist/types/common/controlHooksEmitter.d.ts +4 -4
  43. package/dist/types/common/index.d.ts +12 -12
  44. package/dist/types/common/initLinkOperationRules.d.ts +6 -6
  45. package/dist/types/common/initOptionAndDataSourceRules.d.ts +10 -10
  46. package/dist/types/framework/RegisterControls.d.ts +37 -37
  47. package/dist/types/framework/index.d.ts +925 -925
  48. package/dist/types/framework/isDataBind.d.ts +2 -2
  49. package/dist/types/index.d.ts +4 -4
  50. package/dist/types/type.d.ts +91 -91
  51. 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
+ ```
@@ -502,10 +502,10 @@ _define_property(Control, "removeSettingItem", removeSetting);
502
502
  _define_property(Control, "updateSettingItem", updateSetting);
503
503
  export default Control;
504
504
  export { Control as DesignerControl };
505
- /**
506
- * @function 删除控件或者实例上的setting的方法
507
- * @description 其中的this可能是DesignerControl的类,也可以是实例
508
- * @param keys 需要删除的key或key组成的数组
505
+ /**
506
+ * @function 删除控件或者实例上的setting的方法
507
+ * @description 其中的this可能是DesignerControl的类,也可以是实例
508
+ * @param keys 需要删除的key或key组成的数组
509
509
  * */ function removeSetting(keys) {
510
510
  var _this = this;
511
511
  var deleteKeys = Array.isArray(keys) ? keys : [
@@ -533,13 +533,13 @@ export { Control as DesignerControl };
533
533
  }
534
534
  });
535
535
  }
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新增
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新增
543
543
  * */ function updateSetting(settingKey, value) {
544
544
  var _this = this;
545
545
  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;
@@ -71,9 +71,9 @@ function _is_native_reflect_construct() {
71
71
  })();
72
72
  }
73
73
  import { Property, PropertyRules } from '../BaseControl';
74
- import { RulesMessage } from '@byteluck-fe/model-driven-shared';
75
74
  import { initOptionAndDataSourceRules } from '../initOptionAndDataSourceRules';
76
75
  import { DataBind, AutoWidth } from '../../framework';
76
+ import { getLocaleText } from '@byteluck-fe/locale-message';
77
77
  var ColumnControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
78
78
  "use strict";
79
79
  _inherits(ColumnControlPropertyRules, PropertyRules);
@@ -85,20 +85,20 @@ var ColumnControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
85
85
  ]), _define_property(_this, "caption", {
86
86
  type: 'string',
87
87
  required: true,
88
- message: RulesMessage.getMessage('pleaseEnterCaption')
88
+ message: getLocaleText('CMD.pleaseEnterCaption', null, '请输入标题')
89
89
  }), _define_property(_this, "width", {
90
90
  type: 'number',
91
91
  required: false,
92
- message: RulesMessage.getMessage('pleaseEnterColumnWidth')
92
+ message: getLocaleText('CMD.pleaseEnterColumnWidth', null, '请输入列宽')
93
93
  });
94
94
  _this.width.required = props.widthType === 'px';
95
95
  return _this;
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;
@@ -168,16 +168,16 @@ var ColumnOptionAndDataSourcePropertyRules = /*#__PURE__*/ function(ColumnContro
168
168
  'datasource',
169
169
  'none'
170
170
  ],
171
- message: RulesMessage.getMessage('PleaseSelectTheCorrectOptionSettings')
171
+ message: getLocaleText('CMD.PleaseSelectTheCorrectOptionSettings', null, '请选择正确的选项设置')
172
172
  }), _define_property(_this, "options", [
173
173
  {
174
174
  type: 'array',
175
- message: RulesMessage.getMessage('isNotArray')
175
+ message: getLocaleText('CMD.isNotArray', null, '请输入一个数组')
176
176
  }
177
177
  ]), _define_property(_this, "datasourceBind", [
178
178
  {
179
179
  type: 'object',
180
- message: RulesMessage.getMessage('isNotObject')
180
+ message: getLocaleText('CMD.isNotObject', null, '请输入一个对象')
181
181
  }
182
182
  ]);
183
183
  initOptionAndDataSourceRules.call(_this, props);
@@ -70,11 +70,12 @@ function _is_native_reflect_construct() {
70
70
  return !!result;
71
71
  })();
72
72
  }
73
- import { RulesMessage, JSONCopy } from '@byteluck-fe/model-driven-shared';
73
+ import { JSONCopy } from '@byteluck-fe/model-driven-shared';
74
74
  import { Property, PropertyRules, PropertyRuntimeRules } from '../BaseControl';
75
75
  import { initOptionAndDataSourceRules } from '../initOptionAndDataSourceRules';
76
76
  import { DataBind } from '../../framework';
77
77
  import { isDataBind } from '../../framework/isDataBind';
78
+ import { getLocaleText } from '@byteluck-fe/locale-message';
78
79
  var BaseControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
79
80
  "use strict";
80
81
  _inherits(BaseControlPropertyRules, PropertyRules);
@@ -86,7 +87,7 @@ var BaseControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
86
87
  ]), _define_property(_this, "dataBind", {}), _define_property(_this, "caption", {
87
88
  type: 'string',
88
89
  required: true,
89
- message: RulesMessage.getMessage('pleaseEnterCaption')
90
+ message: getLocaleText('CMD.pleaseEnterCaption', null, '请输入标题')
90
91
  }), _define_property(_this, "isHideCaption", {
91
92
  type: 'boolean'
92
93
  }), _define_property(_this, "labelPosition", {
@@ -99,7 +100,7 @@ var BaseControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
99
100
  // public placeholder: RuleItem = {
100
101
  // required: true,
101
102
  // type: 'string',
102
- // message: RulesMessage.getMessage('pleaseEnterPlaceholder'),
103
+ // message: getLocaleText('CMD.pleaseEnterPlaceholder',null,'请输入提示文字'),
103
104
  // }
104
105
  _define_property(_this, "defaultState", {
105
106
  type: 'enum',
@@ -112,19 +113,19 @@ var BaseControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
112
113
  }), _define_property(_this, "captionTip", {
113
114
  type: 'string',
114
115
  required: false,
115
- message: RulesMessage.getMessage('pleaseEnterCaptionTip')
116
+ message: getLocaleText('CMD.pleaseEnterCaptionTip', null, '请输入气泡提示语')
116
117
  });
117
118
  // 初始化dataBind的校验规则
118
119
  var validateFields = {
119
120
  fieldCode: {
120
121
  type: 'string',
121
122
  required: true,
122
- message: RulesMessage.getMessage('pleaseEnterFieldCode')
123
+ message: getLocaleText('CMD.pleaseEnterFieldCode', null, '请绑定数据项')
123
124
  },
124
125
  dataCode: {
125
126
  type: 'string',
126
127
  required: true,
127
- message: RulesMessage.getMessage('pleaseEnterFieldCode')
128
+ message: getLocaleText('CMD.pleaseEnterFieldCode', null, '请绑定数据项')
128
129
  }
129
130
  };
130
131
  // if (props.dataBind instanceof DataBind) {
@@ -133,14 +134,14 @@ var BaseControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
133
134
  type: 'object',
134
135
  required: true,
135
136
  fields: JSONCopy(validateFields),
136
- message: RulesMessage.getMessage('pleaseEnterFieldCode')
137
+ message: getLocaleText('CMD.pleaseEnterFieldCode', null, '请绑定数据项')
137
138
  };
138
139
  } else {
139
140
  var dataBind = {
140
141
  type: 'object',
141
142
  required: true,
142
143
  fields: {},
143
- message: RulesMessage.getMessage('pleaseEnterFieldCode')
144
+ message: getLocaleText('CMD.pleaseEnterFieldCode', null, '请绑定数据项')
144
145
  };
145
146
  Object.keys(props.dataBind).forEach(function(key) {
146
147
  ;
@@ -148,7 +149,7 @@ var BaseControlPropertyRules = /*#__PURE__*/ function(PropertyRules) {
148
149
  type: 'object',
149
150
  required: true,
150
151
  fields: JSONCopy(validateFields),
151
- message: RulesMessage.getMessage('pleaseEnterFieldCode')
152
+ message: getLocaleText('CMD.pleaseEnterFieldCode', null, '请绑定数据项')
152
153
  };
153
154
  });
154
155
  _this.dataBind = dataBind;
@@ -174,18 +175,18 @@ var BaseControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntimeRule
174
175
  _this.push({
175
176
  type: 'string',
176
177
  required: isRequired,
177
- message: props.requiredMessage !== '' ? props.requiredMessage : RulesMessage.getMessage('runtimeRequired', {
178
+ message: props.requiredMessage !== '' ? props.requiredMessage : getLocaleText('CMD.runtimeRequired', {
178
179
  caption: props.caption
179
- })
180
+ }, '{caption}必填')
180
181
  });
181
182
  }
182
183
  return _this;
183
184
  }
184
185
  return BaseControlPropertyRuntimeRules;
185
186
  }(PropertyRuntimeRules);
186
- /**
187
- * 表单控件公共属性
188
- * @public
187
+ /**
188
+ * 表单控件公共属性
189
+ * @public
189
190
  */ var BaseControlProperty = /*#__PURE__*/ function(Property) {
190
191
  "use strict";
191
192
  _inherits(BaseControlProperty, Property);
@@ -194,47 +195,47 @@ var BaseControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntimeRule
194
195
  var _this;
195
196
  _this = _call_super(this, BaseControlProperty, [
196
197
  props
197
- ]), /**
198
- * 标题
199
- * @defaultValue ''
200
- * @public
201
- */ _define_property(_this, "caption", void 0), /**
202
- * 隐藏标题
203
- * @defaultValue false
204
- * @public
205
- */ _define_property(_this, "isHideCaption", void 0), /**
206
- * 显示气泡提示
207
- * @defaultValue false
208
- * @public
209
- */ _define_property(_this, "isShowCaptionTip", void 0), /**
210
- * 气泡提示语
211
- * @defaultValue ''
212
- * @public
213
- */ _define_property(_this, "captionTip", void 0), /**
214
- * 标题布局
215
- * @defaultValue ''
216
- * @public
217
- */ _define_property(_this, "labelPosition", void 0), /**
218
- * 绑定数据项
219
- * @public
220
- */ _define_property(_this, "dataBind", void 0), /**
221
- * 默认值
222
- * @public
223
- */ _define_property(_this, "defaultValue", void 0), /**
224
- * 提示文字
225
- * @defaultValue ''
226
- * @public
227
- */ _define_property(_this, "placeholder", void 0), /**
228
- * 默认状态
229
- * @defaultValue 'default'
230
- * @public
231
- */ _define_property(_this, "defaultState", void 0), /**
232
- * 必填
233
- * @defaultValue false
234
- * @public
235
- */ _define_property(_this, "required", void 0), /**
236
- * 必填提示文案
237
- * @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 ''
238
239
  */ _define_property(_this, "requiredMessage", void 0);
239
240
  var _props_caption;
240
241
  _this.caption = (_props_caption = props === null || props === void 0 ? void 0 : props.caption) !== null && _props_caption !== void 0 ? _props_caption : '';
@@ -278,16 +279,16 @@ var OptionAndDataSourcePropertyRules = /*#__PURE__*/ function(BaseControlPropert
278
279
  'custom',
279
280
  'datasource'
280
281
  ],
281
- message: RulesMessage.getMessage('PleaseSelectTheCorrectOptionSettings')
282
+ message: getLocaleText('CMD.PleaseSelectTheCorrectOptionSettings', null, '请选择正确的选项设置')
282
283
  }), _define_property(_this, "options", [
283
284
  {
284
285
  type: 'array',
285
- message: RulesMessage.getMessage('isNotArray')
286
+ message: getLocaleText('CMD.isNotArray', null, '请输入一个数组')
286
287
  }
287
288
  ]), _define_property(_this, "datasourceBind", [
288
289
  {
289
290
  type: 'object',
290
- message: RulesMessage.getMessage('isNotObject')
291
+ message: getLocaleText('CMD.isNotObject', null, '请输入一个对象')
291
292
  }
292
293
  ]);
293
294
  initOptionAndDataSourceRules.call(_this, props);
@@ -1,4 +1,4 @@
1
- import { RulesMessage } from '@byteluck-fe/model-driven-shared';
1
+ import { getLocaleText } from '@byteluck-fe/locale-message';
2
2
  export function initLinkOperationRules(props) {
3
3
  if (props.hasOwnProperty('linkOperationOption') && props.hasOwnProperty('showLinkOperation') && props.showLinkOperation) {
4
4
  this.linkOperationOption = [
@@ -8,7 +8,7 @@ export function initLinkOperationRules(props) {
8
8
  formKey: {
9
9
  type: 'string',
10
10
  required: true,
11
- message: RulesMessage.getMessage('pleaseEnterForm')
11
+ message: getLocaleText('CMD.pleaseEnterForm', null, '请绑定表单')
12
12
  }
13
13
  }
14
14
  }