@byteluck-fe/model-driven-core 4.34.0-lx3 → 4.36.0-lx1

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 (50) hide show
  1. package/README.md +69 -69
  2. package/dist/esm/common/BaseControl/designer.js +12 -13
  3. package/dist/esm/common/BaseControl/property.js +11 -11
  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 +56 -56
  7. package/dist/esm/framework/index.js +13 -0
  8. package/dist/index.umd.js +1 -1
  9. package/dist/types/api-doc-index.d.ts +4 -4
  10. package/dist/types/common/BaseControl/designer.d.ts +63 -63
  11. package/dist/types/common/BaseControl/index.d.ts +13 -13
  12. package/dist/types/common/BaseControl/property.d.ts +38 -38
  13. package/dist/types/common/BaseControl/runtime.d.ts +23 -23
  14. package/dist/types/common/BaseControl/types.d.ts +35 -35
  15. package/dist/types/common/ColumnControl/designer.d.ts +20 -20
  16. package/dist/types/common/ColumnControl/index.d.ts +12 -12
  17. package/dist/types/common/ColumnControl/property.d.ts +74 -74
  18. package/dist/types/common/ColumnControl/runtime.d.ts +11 -11
  19. package/dist/types/common/ControlArray.d.ts +9 -9
  20. package/dist/types/common/FormControl/designer.d.ts +13 -13
  21. package/dist/types/common/FormControl/index.d.ts +12 -12
  22. package/dist/types/common/FormControl/property.d.ts +118 -118
  23. package/dist/types/common/FormControl/runtime.d.ts +11 -11
  24. package/dist/types/common/LayoutControl/designer.d.ts +21 -21
  25. package/dist/types/common/LayoutControl/index.d.ts +12 -12
  26. package/dist/types/common/LayoutControl/property.d.ts +6 -6
  27. package/dist/types/common/LayoutControl/runtime.d.ts +11 -11
  28. package/dist/types/common/ListControl/designer.d.ts +16 -16
  29. package/dist/types/common/ListControl/index.d.ts +12 -12
  30. package/dist/types/common/ListControl/property.d.ts +18 -18
  31. package/dist/types/common/ListControl/runtime.d.ts +12 -12
  32. package/dist/types/common/SearchViewControl/designer.d.ts +11 -11
  33. package/dist/types/common/SearchViewControl/index.d.ts +12 -12
  34. package/dist/types/common/SearchViewControl/property.d.ts +8 -8
  35. package/dist/types/common/SearchViewControl/runtime.d.ts +11 -11
  36. package/dist/types/common/Validator.d.ts +15 -15
  37. package/dist/types/common/WrapControl/designer.d.ts +11 -11
  38. package/dist/types/common/WrapControl/index.d.ts +12 -12
  39. package/dist/types/common/WrapControl/property.d.ts +6 -6
  40. package/dist/types/common/WrapControl/runtime.d.ts +11 -11
  41. package/dist/types/common/controlHooksEmitter.d.ts +4 -4
  42. package/dist/types/common/index.d.ts +12 -12
  43. package/dist/types/common/initLinkOperationRules.d.ts +6 -6
  44. package/dist/types/common/initOptionAndDataSourceRules.d.ts +10 -10
  45. package/dist/types/framework/RegisterControls.d.ts +37 -37
  46. package/dist/types/framework/index.d.ts +898 -886
  47. package/dist/types/framework/isDataBind.d.ts +2 -2
  48. package/dist/types/index.d.ts +4 -4
  49. package/dist/types/type.d.ts +91 -91
  50. package/package.json +2 -2
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
+ ```
@@ -219,8 +219,7 @@ var Control = /*#__PURE__*/ function _target() {
219
219
  function Control(props) {
220
220
  var _this = this;
221
221
  _class_call_check(this, Control);
222
- _define_property(this, "id", void 0 // 唯一标识符
223
- );
222
+ _define_property(this, "id", void 0); // 唯一标识符
224
223
  _define_property(this, "name", void 0);
225
224
  _define_property(this, "icon", void 0);
226
225
  _define_property(this, "type", void 0);
@@ -490,10 +489,10 @@ _define_property(Control, "removeSettingItem", removeSetting);
490
489
  _define_property(Control, "updateSettingItem", updateSetting);
491
490
  export default Control;
492
491
  export { Control as DesignerControl };
493
- /**
494
- * @function 删除控件或者实例上的setting的方法
495
- * @description 其中的this可能是DesignerControl的类,也可以是实例
496
- * @param keys 需要删除的key或key组成的数组
492
+ /**
493
+ * @function 删除控件或者实例上的setting的方法
494
+ * @description 其中的this可能是DesignerControl的类,也可以是实例
495
+ * @param keys 需要删除的key或key组成的数组
497
496
  * */ function removeSetting(keys) {
498
497
  var _this = this;
499
498
  var deleteKeys = Array.isArray(keys) ? keys : [
@@ -521,13 +520,13 @@ export { Control as DesignerControl };
521
520
  }
522
521
  });
523
522
  }
524
- /**
525
- * @function 修改控件或者实例上的setting的方法
526
- * @description 其中的this可能是DesignerControl的类,也可以是实例
527
- * @param settingKey 需要修改的key或者key组成的数组
528
- * @param value 修改之后的visible值
529
- * @param value.showItems 需要添加或替换的showItems
530
- * @param value.type 默认是replace替换,可以更改为push新增
523
+ /**
524
+ * @function 修改控件或者实例上的setting的方法
525
+ * @description 其中的this可能是DesignerControl的类,也可以是实例
526
+ * @param settingKey 需要修改的key或者key组成的数组
527
+ * @param value 修改之后的visible值
528
+ * @param value.showItems 需要添加或替换的showItems
529
+ * @param value.type 默认是replace替换,可以更改为push新增
531
530
  * */ function updateSetting(settingKey, value) {
532
531
  var _this = this;
533
532
  var keys = typeof settingKey === 'string' ? [
@@ -133,24 +133,24 @@ 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
155
  var _props_isHide;
156
156
  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;
@@ -183,9 +183,9 @@ var BaseControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntimeRule
183
183
  }
184
184
  return BaseControlPropertyRuntimeRules;
185
185
  }(PropertyRuntimeRules);
186
- /**
187
- * 表单控件公共属性
188
- * @public
186
+ /**
187
+ * 表单控件公共属性
188
+ * @public
189
189
  */ var BaseControlProperty = /*#__PURE__*/ function(Property) {
190
190
  "use strict";
191
191
  _inherits(BaseControlProperty, Property);
@@ -194,59 +194,59 @@ var BaseControlPropertyRuntimeRules = /*#__PURE__*/ function(PropertyRuntimeRule
194
194
  var _this;
195
195
  _this = _call_super(this, BaseControlProperty, [
196
196
  props
197
- ]), /**
198
- * 标题
199
- * @defaultValue ''
200
- * @public
201
- */ _define_property(_this, "caption", void 0), /**
202
- * 标题大小
203
- * @defaultValue ''
204
- * @public
205
- */ _define_property(_this, "captionSize", void 0), /**
206
- * 标题颜色
207
- * @defaultValue ''
208
- * @public
209
- */ _define_property(_this, "captionColor", void 0), /**
210
- * 标题斜体
211
- * @defaultValue false
212
- * @public
213
- */ _define_property(_this, "isCaptionItalic", void 0), /**
214
- * 隐藏标题
215
- * @defaultValue false
216
- * @public
217
- */ _define_property(_this, "isHideCaption", void 0), /**
218
- * 显示气泡提示
219
- * @defaultValue false
220
- * @public
221
- */ _define_property(_this, "isShowCaptionTip", void 0), /**
222
- * 气泡提示语
223
- * @defaultValue ''
224
- * @public
225
- */ _define_property(_this, "captionTip", void 0), /**
226
- * 标题布局
227
- * @defaultValue ''
228
- * @public
229
- */ _define_property(_this, "labelPosition", void 0), /**
230
- * 绑定数据项
231
- * @public
232
- */ _define_property(_this, "dataBind", void 0), /**
233
- * 默认值
234
- * @public
235
- */ _define_property(_this, "defaultValue", void 0), /**
236
- * 提示文字
237
- * @defaultValue ''
238
- * @public
239
- */ _define_property(_this, "placeholder", void 0), /**
240
- * 默认状态
241
- * @defaultValue 'default'
242
- * @public
243
- */ _define_property(_this, "defaultState", void 0), /**
244
- * 必填
245
- * @defaultValue false
246
- * @public
247
- */ _define_property(_this, "required", void 0), /**
248
- * 必填提示文案
249
- * @defaultValue ''
197
+ ]), /**
198
+ * 标题
199
+ * @defaultValue ''
200
+ * @public
201
+ */ _define_property(_this, "caption", void 0), /**
202
+ * 标题大小
203
+ * @defaultValue ''
204
+ * @public
205
+ */ _define_property(_this, "captionSize", void 0), /**
206
+ * 标题颜色
207
+ * @defaultValue ''
208
+ * @public
209
+ */ _define_property(_this, "captionColor", void 0), /**
210
+ * 标题斜体
211
+ * @defaultValue false
212
+ * @public
213
+ */ _define_property(_this, "isCaptionItalic", void 0), /**
214
+ * 隐藏标题
215
+ * @defaultValue false
216
+ * @public
217
+ */ _define_property(_this, "isHideCaption", void 0), /**
218
+ * 显示气泡提示
219
+ * @defaultValue false
220
+ * @public
221
+ */ _define_property(_this, "isShowCaptionTip", void 0), /**
222
+ * 气泡提示语
223
+ * @defaultValue ''
224
+ * @public
225
+ */ _define_property(_this, "captionTip", void 0), /**
226
+ * 标题布局
227
+ * @defaultValue ''
228
+ * @public
229
+ */ _define_property(_this, "labelPosition", void 0), /**
230
+ * 绑定数据项
231
+ * @public
232
+ */ _define_property(_this, "dataBind", void 0), /**
233
+ * 默认值
234
+ * @public
235
+ */ _define_property(_this, "defaultValue", void 0), /**
236
+ * 提示文字
237
+ * @defaultValue ''
238
+ * @public
239
+ */ _define_property(_this, "placeholder", void 0), /**
240
+ * 默认状态
241
+ * @defaultValue 'default'
242
+ * @public
243
+ */ _define_property(_this, "defaultState", void 0), /**
244
+ * 必填
245
+ * @defaultValue false
246
+ * @public
247
+ */ _define_property(_this, "required", void 0), /**
248
+ * 必填提示文案
249
+ * @defaultValue ''
250
250
  */ _define_property(_this, "requiredMessage", void 0);
251
251
  var _props_caption;
252
252
  _this.caption = (_props_caption = props === null || props === void 0 ? void 0 : props.caption) !== null && _props_caption !== void 0 ? _props_caption : '';
@@ -617,6 +617,16 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
617
617
  * @defaultValue true
618
618
  * @public
619
619
  */ _define_property(this, "showOrder", void 0);
620
+ /**
621
+ * 部门或者人员指定部门配置
622
+ * @defaultValue {}
623
+ * @public
624
+ */ _define_property(this, "assignDepartment", void 0);
625
+ /**
626
+ * 部门或者人员指定部门配置是否开启
627
+ * @defaultValue {}
628
+ * @public
629
+ */ _define_property(this, "openAssignDepartment", void 0);
620
630
  var _props_dataCode;
621
631
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
622
632
  var _props_appId;
@@ -638,6 +648,9 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
638
648
  this.showOrder = (_props_showOrder = props === null || props === void 0 ? void 0 : props.showOrder) !== null && _props_showOrder !== void 0 ? _props_showOrder : true;
639
649
  var _props_svcCode;
640
650
  this.svcCode = (_props_svcCode = props === null || props === void 0 ? void 0 : props.svcCode) !== null && _props_svcCode !== void 0 ? _props_svcCode : '';
651
+ this.assignDepartment = new RightVariable(props === null || props === void 0 ? void 0 : props.assignDepartment);
652
+ var _props_openAssignDepartment;
653
+ this.openAssignDepartment = (_props_openAssignDepartment = props === null || props === void 0 ? void 0 : props.openAssignDepartment) !== null && _props_openAssignDepartment !== void 0 ? _props_openAssignDepartment : false;
641
654
  callFiltersAndOrders.call(this, props);
642
655
  };
643
656
  export var SelectedContentConfig = function SelectedContentConfig(props) {