@byteluck-fe/model-driven-core 2.23.0-beta.2 → 2.23.0-beta.21

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 (68) 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 +25 -38
  4. package/dist/esm/common/ColumnControl/designer.js +13 -27
  5. package/dist/esm/common/ColumnControl/property.js +56 -81
  6. package/dist/esm/common/ColumnControl/runtime.js +13 -27
  7. package/dist/esm/common/FormControl/designer.js +12 -25
  8. package/dist/esm/common/FormControl/property.js +90 -117
  9. package/dist/esm/common/FormControl/runtime.js +12 -26
  10. package/dist/esm/common/LayoutControl/designer.js +13 -29
  11. package/dist/esm/common/LayoutControl/property.js +12 -23
  12. package/dist/esm/common/LayoutControl/runtime.js +13 -27
  13. package/dist/esm/common/ListControl/designer.js +13 -26
  14. package/dist/esm/common/ListControl/property.js +14 -31
  15. package/dist/esm/common/ListControl/runtime.js +14 -28
  16. package/dist/esm/common/SearchViewControl/designer.js +12 -25
  17. package/dist/esm/common/SearchViewControl/property.js +12 -24
  18. package/dist/esm/common/SearchViewControl/runtime.js +12 -25
  19. package/dist/esm/common/WrapControl/designer.js +12 -25
  20. package/dist/esm/common/WrapControl/property.js +12 -23
  21. package/dist/esm/common/WrapControl/runtime.js +12 -25
  22. package/dist/esm/common/initLinkOperationRules.js +2 -2
  23. package/dist/esm/common/initOptionAndDataSourceRules.js +31 -30
  24. package/dist/esm/framework/RegisterControls.js +1 -0
  25. package/dist/esm/framework/index.js +406 -435
  26. package/dist/index.umd.js +1 -45
  27. package/dist/types/api-doc-index.d.ts +4 -4
  28. package/dist/types/common/BaseControl/designer.d.ts +71 -71
  29. package/dist/types/common/BaseControl/index.d.ts +13 -13
  30. package/dist/types/common/BaseControl/property.d.ts +44 -44
  31. package/dist/types/common/BaseControl/runtime.d.ts +23 -23
  32. package/dist/types/common/BaseControl/types.d.ts +35 -35
  33. package/dist/types/common/ColumnControl/designer.d.ts +20 -20
  34. package/dist/types/common/ColumnControl/index.d.ts +12 -12
  35. package/dist/types/common/ColumnControl/property.d.ts +74 -74
  36. package/dist/types/common/ColumnControl/runtime.d.ts +11 -11
  37. package/dist/types/common/ControlArray.d.ts +9 -9
  38. package/dist/types/common/FormControl/designer.d.ts +13 -13
  39. package/dist/types/common/FormControl/index.d.ts +12 -12
  40. package/dist/types/common/FormControl/property.d.ts +100 -100
  41. package/dist/types/common/FormControl/runtime.d.ts +11 -11
  42. package/dist/types/common/LayoutControl/designer.d.ts +21 -21
  43. package/dist/types/common/LayoutControl/index.d.ts +12 -12
  44. package/dist/types/common/LayoutControl/property.d.ts +6 -6
  45. package/dist/types/common/LayoutControl/runtime.d.ts +11 -11
  46. package/dist/types/common/ListControl/designer.d.ts +16 -16
  47. package/dist/types/common/ListControl/index.d.ts +12 -12
  48. package/dist/types/common/ListControl/property.d.ts +18 -18
  49. package/dist/types/common/ListControl/runtime.d.ts +12 -12
  50. package/dist/types/common/SearchViewControl/designer.d.ts +11 -11
  51. package/dist/types/common/SearchViewControl/index.d.ts +12 -12
  52. package/dist/types/common/SearchViewControl/property.d.ts +8 -8
  53. package/dist/types/common/SearchViewControl/runtime.d.ts +11 -11
  54. package/dist/types/common/Validator.d.ts +15 -15
  55. package/dist/types/common/WrapControl/designer.d.ts +11 -11
  56. package/dist/types/common/WrapControl/index.d.ts +12 -12
  57. package/dist/types/common/WrapControl/property.d.ts +6 -6
  58. package/dist/types/common/WrapControl/runtime.d.ts +11 -11
  59. package/dist/types/common/controlHooksEmitter.d.ts +4 -4
  60. package/dist/types/common/index.d.ts +12 -12
  61. package/dist/types/common/initLinkOperationRules.d.ts +6 -6
  62. package/dist/types/common/initOptionAndDataSourceRules.d.ts +10 -10
  63. package/dist/types/framework/RegisterControls.d.ts +37 -37
  64. package/dist/types/framework/index.d.ts +925 -923
  65. package/dist/types/framework/isDataBind.d.ts +2 -2
  66. package/dist/types/index.d.ts +4 -4
  67. package/dist/types/type.d.ts +91 -91
  68. package/package.json +3 -3
@@ -4,6 +4,10 @@ function _assert_this_initialized(self) {
4
4
  }
5
5
  return self;
6
6
  }
7
+ function _call_super(_this, derived, args) {
8
+ derived = _get_prototype_of(derived);
9
+ return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
10
+ }
7
11
  function _class_call_check(instance, Constructor) {
8
12
  if (!(instance instanceof Constructor)) {
9
13
  throw new TypeError("Cannot call a class as a function");
@@ -59,56 +63,40 @@ function _type_of(obj) {
59
63
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
60
64
  }
61
65
  function _is_native_reflect_construct() {
62
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
- if (Reflect.construct.sham) return false;
64
- if (typeof Proxy === "function") return true;
65
66
  try {
66
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
67
- return true;
68
- } catch (e) {
69
- return false;
70
- }
71
- }
72
- function _create_super(Derived) {
73
- var hasNativeReflectConstruct = _is_native_reflect_construct();
74
- return function _createSuperInternal() {
75
- var Super = _get_prototype_of(Derived), result;
76
- if (hasNativeReflectConstruct) {
77
- var NewTarget = _get_prototype_of(this).constructor;
78
- result = Reflect.construct(Super, arguments, NewTarget);
79
- } else {
80
- result = Super.apply(this, arguments);
81
- }
82
- return _possible_constructor_return(this, result);
83
- };
67
+ var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
68
+ } catch (_) {}
69
+ return (_is_native_reflect_construct = function() {
70
+ return !!result;
71
+ })();
84
72
  }
85
73
  import { FieldTypes, genNonDuplicateId } from '@byteluck-fe/model-driven-shared';
86
74
  export * from './RegisterControls';
87
- /**
88
- * 数据绑定配置
89
- * @public
75
+ /**
76
+ * 数据绑定配置
77
+ * @public
90
78
  */ export var DataBind = function DataBind(props) {
91
79
  "use strict";
92
80
  _class_call_check(this, DataBind);
93
- /**
94
- * 数据模型编码
95
- * @defaultValue ''
96
- * @public
81
+ /**
82
+ * 数据模型编码
83
+ * @defaultValue ''
84
+ * @public
97
85
  */ _define_property(this, "dataCode", void 0);
98
- /**
99
- * 字段编码
100
- * @defaultValue ''
101
- * @public
86
+ /**
87
+ * 字段编码
88
+ * @defaultValue ''
89
+ * @public
102
90
  */ _define_property(this, "fieldCode", void 0);
103
- /**
104
- * 字段类型
105
- * @defaultValue ''
106
- * @public
91
+ /**
92
+ * 字段类型
93
+ * @defaultValue ''
94
+ * @public
107
95
  */ _define_property(this, "fieldType", void 0);
108
- /**
109
- * 表别名
110
- * @defaultValue undefined
111
- * @public
96
+ /**
97
+ * 表别名
98
+ * @defaultValue undefined
99
+ * @public
112
100
  */ _define_property(this, "aliasCode", void 0);
113
101
  var _props_dataCode;
114
102
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
@@ -157,13 +145,12 @@ export var MetaRowHeight = function MetaRowHeight(props) {
157
145
  export var MetaWidth = /*#__PURE__*/ function(AutoWidth) {
158
146
  "use strict";
159
147
  _inherits(MetaWidth, AutoWidth);
160
- var _super = _create_super(MetaWidth);
161
148
  function MetaWidth(props) {
162
149
  _class_call_check(this, MetaWidth);
163
150
  var _this;
164
- _this = _super.call(this, props);
165
- _define_property(_assert_this_initialized(_this), "width", void 0);
166
- _define_property(_assert_this_initialized(_this), "widthType", void 0);
151
+ _this = _call_super(this, MetaWidth, [
152
+ props
153
+ ]), _define_property(_this, "width", void 0), _define_property(_this, "widthType", void 0);
167
154
  var _props_width;
168
155
  _this.width = (_props_width = props === null || props === void 0 ? void 0 : props.width) !== null && _props_width !== void 0 ? _props_width : 240;
169
156
  var _props_widthType;
@@ -209,27 +196,27 @@ export var FormBind = function FormBind(props) {
209
196
  export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
210
197
  "use strict";
211
198
  _inherits(FormSelectBind, FormBind);
212
- var _super = _create_super(FormSelectBind);
213
199
  function FormSelectBind(props) {
214
200
  _class_call_check(this, FormSelectBind);
215
201
  var _this;
216
- _this = _super.call(this, props);
217
- _define_property(_assert_this_initialized(_this), "primaryControlId", void 0);
202
+ _this = _call_super(this, FormSelectBind, [
203
+ props
204
+ ]), _define_property(_this, "primaryControlId", void 0);
218
205
  var _props_primaryControlId;
219
206
  _this.primaryControlId = (_props_primaryControlId = props === null || props === void 0 ? void 0 : props.primaryControlId) !== null && _props_primaryControlId !== void 0 ? _props_primaryControlId : '';
220
207
  return _this;
221
208
  }
222
209
  return FormSelectBind;
223
210
  }(FormBind);
224
- /**
225
- * 列表绑定字段项
226
- * @public
211
+ /**
212
+ * 列表绑定字段项
213
+ * @public
227
214
  */ var ListBindHeaderItem = function ListBindHeaderItem(props) {
228
215
  "use strict";
229
216
  _class_call_check(this, ListBindHeaderItem);
230
- /**
231
- * 字段
232
- * @defaultValue ''
217
+ /**
218
+ * 字段
219
+ * @defaultValue ''
233
220
  */ _define_property(this, "fieldCode", void 0);
234
221
  _define_property(this, "dataCode", void 0);
235
222
  var _props_fieldCode;
@@ -237,23 +224,23 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
237
224
  var _props_dataCode;
238
225
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
239
226
  };
240
- /**
241
- * 列表绑定配置
227
+ /**
228
+ * 列表绑定配置
242
229
  */ export var ListBind = function ListBind(props) {
243
230
  "use strict";
244
231
  _class_call_check(this, ListBind);
245
232
  var _props_headers;
246
- /**
247
- * 应用ID
248
- * @public
233
+ /**
234
+ * 应用ID
235
+ * @public
249
236
  */ _define_property(this, "appId", void 0);
250
- /**
251
- * 表单ID
252
- * @public
237
+ /**
238
+ * 表单ID
239
+ * @public
253
240
  */ _define_property(this, "formKey", void 0);
254
- /**
255
- * 显示字段
256
- * @public
241
+ /**
242
+ * 显示字段
243
+ * @public
257
244
  */ _define_property(this, "headers", void 0);
258
245
  var _props_appId;
259
246
  this.appId = (_props_appId = props === null || props === void 0 ? void 0 : props.appId) !== null && _props_appId !== void 0 ? _props_appId : '';
@@ -280,15 +267,12 @@ export var FieldBindItem = function FieldBindItem(props) {
280
267
  export var SubListItem = /*#__PURE__*/ function(FormBind) {
281
268
  "use strict";
282
269
  _inherits(SubListItem, FormBind);
283
- var _super = _create_super(SubListItem);
284
270
  function SubListItem(props) {
285
271
  _class_call_check(this, SubListItem);
286
272
  var _this;
287
- _this = _super.call(this, props);
288
- _define_property(_assert_this_initialized(_this), "title", void 0);
289
- _define_property(_assert_this_initialized(_this), "svcCode", void 0);
290
- _define_property(_assert_this_initialized(_this), "isOpenFilter", void 0);
291
- _define_property(_assert_this_initialized(_this), "filters", void 0);
273
+ _this = _call_super(this, SubListItem, [
274
+ props
275
+ ]), _define_property(_this, "title", void 0), _define_property(_this, "svcCode", void 0), _define_property(_this, "isOpenFilter", void 0), _define_property(_this, "filters", void 0);
292
276
  var _props_title;
293
277
  _this.title = (_props_title = props === null || props === void 0 ? void 0 : props.title) !== null && _props_title !== void 0 ? _props_title : '';
294
278
  var _props_svcCode;
@@ -342,36 +326,36 @@ export var RightVariable = function RightVariable(props) {
342
326
  var _props_displayBos;
343
327
  this.displayBos = (_props_displayBos = props === null || props === void 0 ? void 0 : props.displayBos) !== null && _props_displayBos !== void 0 ? _props_displayBos : [];
344
328
  };
345
- /**
346
- * 连接符条件
347
- * @public
329
+ /**
330
+ * 连接符条件
331
+ * @public
348
332
  */ export var FieldFilterConditions = function FieldFilterConditions(props) {
349
333
  "use strict";
350
334
  var _this = this;
351
335
  _class_call_check(this, FieldFilterConditions);
352
- /**
353
- * 编号
354
- * @defaultValue ''
336
+ /**
337
+ * 编号
338
+ * @defaultValue ''
355
339
  */ _define_property(this, "id", void 0);
356
- /**
357
- * 规则编号
358
- * @defaultValue Timestamp
340
+ /**
341
+ * 规则编号
342
+ * @defaultValue Timestamp
359
343
  */ _define_property(this, "ruleId", void 0);
360
- /**
361
- * 类型:连接符条件
362
- * @defaultValue 'conditions'
344
+ /**
345
+ * 类型:连接符条件
346
+ * @defaultValue 'conditions'
363
347
  */ _define_property(this, "type", 'conditions');
364
- /**
365
- * 深度
366
- * @defaultValue 0
348
+ /**
349
+ * 深度
350
+ * @defaultValue 0
367
351
  */ _define_property(this, "level", void 0);
368
- /**
369
- * 连接符值
370
- * @defaultValue 'and'
352
+ /**
353
+ * 连接符值
354
+ * @defaultValue 'and'
371
355
  */ _define_property(this, "value", void 0);
372
- /**
373
- * 包含子项
374
- * @defaultValue []
356
+ /**
357
+ * 包含子项
358
+ * @defaultValue []
375
359
  */ _define_property(this, "children", void 0);
376
360
  var _props_id;
377
361
  this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
@@ -396,34 +380,34 @@ export var RightVariable = function RightVariable(props) {
396
380
  });
397
381
  }
398
382
  };
399
- /**
400
- * 字段过滤条件
401
- * @public
383
+ /**
384
+ * 字段过滤条件
385
+ * @public
402
386
  */ export var FieldFilterCondition = function FieldFilterCondition(props) {
403
387
  "use strict";
404
388
  _class_call_check(this, FieldFilterCondition);
405
- /**
406
- * 唯一编号
407
- * @defaultValue ''
389
+ /**
390
+ * 唯一编号
391
+ * @defaultValue ''
408
392
  */ _define_property(this, "id", void 0);
409
- /**
410
- * 规则编号
411
- * @defaultValue Timestamp
393
+ /**
394
+ * 规则编号
395
+ * @defaultValue Timestamp
412
396
  */ _define_property(this, "ruleId", void 0);
413
- /**
414
- * 类型
415
- * @defaultValue 'condition'
397
+ /**
398
+ * 类型
399
+ * @defaultValue 'condition'
416
400
  */ _define_property(this, "type", 'condition');
417
- /**
418
- * 符号
401
+ /**
402
+ * 符号
419
403
  */ _define_property(this, "symbol", void 0);
420
404
  _define_property(this, "checked", void 0);
421
405
  _define_property(this, "describe", void 0);
422
- /**
423
- * 左值
406
+ /**
407
+ * 左值
424
408
  */ _define_property(this, "leftVariableBo", void 0);
425
- /**
426
- * 右值
409
+ /**
410
+ * 右值
427
411
  */ _define_property(this, "rightVariableBo", void 0);
428
412
  var _props_id;
429
413
  this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
@@ -450,31 +434,31 @@ export var JoinRelation = function JoinRelation(props) {
450
434
  var _props_relationFields;
451
435
  this.relationFields = (_props_relationFields = props === null || props === void 0 ? void 0 : props.relationFields) !== null && _props_relationFields !== void 0 ? _props_relationFields : [];
452
436
  };
453
- /**
454
- * 数据填充项
455
- * @public
437
+ /**
438
+ * 数据填充项
439
+ * @public
456
440
  */ export var MultistageFillingItem = function MultistageFillingItem(props) {
457
441
  "use strict";
458
442
  _class_call_check(this, MultistageFillingItem);
459
- /**
460
- * 控件ID
461
- * @defaultValue ''
462
- * @public
443
+ /**
444
+ * 控件ID
445
+ * @defaultValue ''
446
+ * @public
463
447
  */ _define_property(this, "controlId", void 0);
464
- /**
465
- * 字段
466
- * @defaultValue ''
467
- * @public
448
+ /**
449
+ * 字段
450
+ * @defaultValue ''
451
+ * @public
468
452
  */ _define_property(this, "fieldCode", void 0);
469
- /**
470
- * 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
471
- * @defaultValue ''
472
- * @public
453
+ /**
454
+ * 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
455
+ * @defaultValue ''
456
+ * @public
473
457
  */ _define_property(this, "fieldType", void 0);
474
- /**
475
- * 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
476
- * @defaultValue ''
477
- * @public
458
+ /**
459
+ * 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
460
+ * @defaultValue ''
461
+ * @public
478
462
  * */ _define_property(this, "propName", void 0);
479
463
  var _props_controlId;
480
464
  this.controlId = (_props_controlId = props === null || props === void 0 ? void 0 : props.controlId) !== null && _props_controlId !== void 0 ? _props_controlId : '';
@@ -485,22 +469,22 @@ export var JoinRelation = function JoinRelation(props) {
485
469
  var _props_propName;
486
470
  this.propName = (_props_propName = props === null || props === void 0 ? void 0 : props.propName) !== null && _props_propName !== void 0 ? _props_propName : '';
487
471
  };
488
- /**
489
- * 显示项
490
- * @public
472
+ /**
473
+ * 显示项
474
+ * @public
491
475
  */ export var DisplayBoListItem = function DisplayBoListItem(props) {
492
476
  "use strict";
493
477
  _class_call_check(this, DisplayBoListItem);
494
- /**
495
- * 显示项类型:字段 | 符号
496
- * @defaultValue 'FIELD'
497
- * @public
478
+ /**
479
+ * 显示项类型:字段 | 符号
480
+ * @defaultValue 'FIELD'
481
+ * @public
498
482
  */ _define_property(this, "type", void 0);
499
- /**
500
- * 值
483
+ /**
484
+ * 值
501
485
  */ _define_property(this, "value", void 0);
502
- /**
503
- * 字段数据类型
486
+ /**
487
+ * 字段数据类型
504
488
  */ _define_property(this, "fieldType", void 0);
505
489
  var _props_type;
506
490
  this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : 'FIELD';
@@ -511,30 +495,30 @@ export var JoinRelation = function JoinRelation(props) {
511
495
  export var OptionDisplayConfigItem = function OptionDisplayConfigItem(props) {
512
496
  "use strict";
513
497
  _class_call_check(this, OptionDisplayConfigItem);
514
- /**
515
- * 标题
498
+ /**
499
+ * 标题
516
500
  */ _define_property(this, "title", void 0);
517
- /**
518
- * 字段数据类型
501
+ /**
502
+ * 字段数据类型
519
503
  */ _define_property(this, "displayBoList", void 0);
520
504
  var _props_title;
521
505
  this.title = (_props_title = props === null || props === void 0 ? void 0 : props.title) !== null && _props_title !== void 0 ? _props_title : '';
522
506
  var _props_displayBoList;
523
507
  this.displayBoList = (_props_displayBoList = props === null || props === void 0 ? void 0 : props.displayBoList) !== null && _props_displayBoList !== void 0 ? _props_displayBoList : [];
524
508
  };
525
- /**
526
- * 数据源排序项
527
- * @public
509
+ /**
510
+ * 数据源排序项
511
+ * @public
528
512
  */ export var DataSourceOrderItem = function DataSourceOrderItem(props) {
529
513
  "use strict";
530
514
  _class_call_check(this, DataSourceOrderItem);
531
- /**
532
- * 列名
533
- * @defaultValue ''
515
+ /**
516
+ * 列名
517
+ * @defaultValue ''
534
518
  */ _define_property(this, "columnName", void 0);
535
- /**
536
- * 倒序
537
- * @defaultValue false
519
+ /**
520
+ * 倒序
521
+ * @defaultValue false
538
522
  */ _define_property(this, "desc", void 0);
539
523
  var _props_columnName;
540
524
  this.columnName = (_props_columnName = props.columnName) !== null && _props_columnName !== void 0 ? _props_columnName : '';
@@ -561,8 +545,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
561
545
  "use strict";
562
546
  _class_call_check(this, DataSourceParamItem);
563
547
  var _props_orders, _props_dataSet;
564
- /**
565
- * 字段ID
548
+ /**
549
+ * 字段ID
566
550
  */ _define_property(this, "id", void 0);
567
551
  _define_property(this, "limit", void 0);
568
552
  _define_property(this, "orders", void 0);
@@ -584,8 +568,8 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
584
568
  return new DataSourceDataSetValue(item);
585
569
  })) !== null && _props_dataSet_map !== void 0 ? _props_dataSet_map : [];
586
570
  };
587
- /**
588
- * 给filters和orders赋值
571
+ /**
572
+ * 给filters和orders赋值
589
573
  * */ function callFiltersAndOrders(props) {
590
574
  var _props_filters, _props_viewFilters, _props_orders;
591
575
  var _props_filters_map;
@@ -608,68 +592,68 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
608
592
  })) !== null && _props_orders_map !== void 0 ? _props_orders_map : [];
609
593
  // }
610
594
  }
611
- /**
612
- * 数据源绑定配置
613
- * @public
595
+ /**
596
+ * 数据源绑定配置
597
+ * @public
614
598
  */ export var DataSourceBind = function DataSourceBind(props) {
615
599
  "use strict";
616
600
  var _this = this;
617
601
  _class_call_check(this, DataSourceBind);
618
- /**
619
- * 绑定数据源id
620
- * @defaultValue ''
621
- * @public
602
+ /**
603
+ * 绑定数据源id
604
+ * @defaultValue ''
605
+ * @public
622
606
  */ _define_property(this, "dataCode", void 0);
623
- /**
624
- * 存储值
625
- * @defaultValue ''
626
- * @public
607
+ /**
608
+ * 存储值
609
+ * @defaultValue ''
610
+ * @public
627
611
  */ _define_property(this, "valueFieldCode", void 0);
628
- /**
629
- * 显示值
630
- * @defaultValue []
631
- * @public
612
+ /**
613
+ * 显示值
614
+ * @defaultValue []
615
+ * @public
632
616
  */ _define_property(this, "displayBoList", void 0);
633
- /**
634
- * 查询关键字参数映射
635
- * @defaultValue ''
636
- * @public
617
+ /**
618
+ * 查询关键字参数映射
619
+ * @defaultValue ''
620
+ * @public
637
621
  */ _define_property(this, "keywordMapping", void 0);
638
- /**
639
- * 绑定服务
640
- * @defaultValue ''
641
- * @public
622
+ /**
623
+ * 绑定服务
624
+ * @defaultValue ''
625
+ * @public
642
626
  */ _define_property(this, "svcCode", void 0);
643
- /**
644
- * 应用Id
645
- * @defaultValue ''
646
- * @public
627
+ /**
628
+ * 应用Id
629
+ * @defaultValue ''
630
+ * @public
647
631
  */ _define_property(this, "appId", void 0);
648
- /**
649
- * 过滤条件
650
- * @defaultValue []
651
- * @public
632
+ /**
633
+ * 过滤条件
634
+ * @defaultValue []
635
+ * @public
652
636
  */ _define_property(this, "filters", void 0);
653
637
  // 过滤
654
- /**
655
- * 过滤条件-查看过滤
656
- * @defaultValue []
657
- * @public
638
+ /**
639
+ * 过滤条件-查看过滤
640
+ * @defaultValue []
641
+ * @public
658
642
  */ _define_property(this, "viewFilters", void 0);
659
- /**
660
- * 是否开启查看过滤
661
- * @defaultValue 0:未开启;1:开启
662
- * @public
643
+ /**
644
+ * 是否开启查看过滤
645
+ * @defaultValue 0:未开启;1:开启
646
+ * @public
663
647
  */ _define_property(this, "isOpenViewFilters", void 0);
664
- /**
665
- * 排序
666
- * @defaultValue []
667
- * @public
648
+ /**
649
+ * 排序
650
+ * @defaultValue []
651
+ * @public
668
652
  */ _define_property(this, "orders", void 0);
669
- /**
670
- * 显示排序
671
- * @defaultValue true
672
- * @public
653
+ /**
654
+ * 显示排序
655
+ * @defaultValue true
656
+ * @public
673
657
  */ _define_property(this, "showOrder", void 0);
674
658
  var _props_dataCode;
675
659
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
@@ -697,15 +681,15 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
697
681
  export var SelectedContentConfig = function SelectedContentConfig(props) {
698
682
  "use strict";
699
683
  _class_call_check(this, SelectedContentConfig);
700
- /**
701
- * 展示已选内容
702
- * @defaultValue ''
703
- * @public
684
+ /**
685
+ * 展示已选内容
686
+ * @defaultValue ''
687
+ * @public
704
688
  */ _define_property(this, "dataCode", void 0);
705
- /**
706
- * 展示已选明细
707
- * @defaultValue []
708
- * @public
689
+ /**
690
+ * 展示已选明细
691
+ * @defaultValue []
692
+ * @public
709
693
  */ _define_property(this, "displayBoList", void 0);
710
694
  var _props_dataCode;
711
695
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
@@ -767,13 +751,13 @@ export var CustomAttributeItem = function CustomAttributeItem(props) {
767
751
  export var SuperDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
768
752
  "use strict";
769
753
  _inherits(SuperDataSourceBind, DataSourceBind);
770
- var _super = _create_super(SuperDataSourceBind);
771
754
  function SuperDataSourceBind(props) {
772
755
  _class_call_check(this, SuperDataSourceBind);
773
756
  var _this;
774
757
  var _props_attributes;
775
- _this = _super.call(this, props);
776
- _define_property(_assert_this_initialized(_this), "attributes", void 0);
758
+ _this = _call_super(this, SuperDataSourceBind, [
759
+ props
760
+ ]), _define_property(_this, "attributes", void 0);
777
761
  var _props_attributes_map;
778
762
  _this.attributes = (_props_attributes_map = props === null || props === void 0 ? void 0 : (_props_attributes = props.attributes) === null || _props_attributes === void 0 ? void 0 : _props_attributes.map(function(item) {
779
763
  return new CustomAttributeItem(item);
@@ -785,14 +769,13 @@ export var SuperDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
785
769
  export var OrganizationDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
786
770
  "use strict";
787
771
  _inherits(OrganizationDataSourceBind, DataSourceBind);
788
- var _super = _create_super(OrganizationDataSourceBind);
789
772
  function OrganizationDataSourceBind(props) {
790
773
  _class_call_check(this, OrganizationDataSourceBind);
791
774
  var _this;
792
775
  var _props_attributes;
793
- _this = _super.call(this, props);
794
- _define_property(_assert_this_initialized(_this), "attributes", void 0);
795
- _define_property(_assert_this_initialized(_this), "formCode", void 0);
776
+ _this = _call_super(this, OrganizationDataSourceBind, [
777
+ props
778
+ ]), _define_property(_this, "attributes", void 0), _define_property(_this, "formCode", void 0);
796
779
  var _props_attributes_map;
797
780
  _this.attributes = (_props_attributes_map = props === null || props === void 0 ? void 0 : (_props_attributes = props.attributes) === null || _props_attributes === void 0 ? void 0 : _props_attributes.map(function(item) {
798
781
  return new CustomAttributeItem(item);
@@ -806,13 +789,12 @@ export var OrganizationDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
806
789
  export var TreeDataSourceBind = /*#__PURE__*/ function(SuperDataSourceBind) {
807
790
  "use strict";
808
791
  _inherits(TreeDataSourceBind, SuperDataSourceBind);
809
- var _super = _create_super(TreeDataSourceBind);
810
792
  function TreeDataSourceBind(props) {
811
793
  _class_call_check(this, TreeDataSourceBind);
812
794
  var _this;
813
- _this = _super.call(this, props);
814
- _define_property(_assert_this_initialized(_this), "rootNode", void 0);
815
- _define_property(_assert_this_initialized(_this), "filterCode", void 0);
795
+ _this = _call_super(this, TreeDataSourceBind, [
796
+ props
797
+ ]), _define_property(_this, "rootNode", void 0), _define_property(_this, "filterCode", void 0);
816
798
  _this.rootNode = new RightVariable(props === null || props === void 0 ? void 0 : props.rootNode);
817
799
  var _props_filterCode;
818
800
  _this.filterCode = (_props_filterCode = props === null || props === void 0 ? void 0 : props.filterCode) !== null && _props_filterCode !== void 0 ? _props_filterCode : '';
@@ -824,14 +806,14 @@ var FillBind = function FillBind(props) {
824
806
  "use strict";
825
807
  _class_call_check(this, FillBind);
826
808
  var _props_fillList;
827
- /*
828
- * 需要被填充的数据源
809
+ /*
810
+ * 需要被填充的数据源
829
811
  * */ _define_property(this, "dataCode", void 0);
830
- /*
831
- * appId
812
+ /*
813
+ * appId
832
814
  * */ _define_property(this, "appId", void 0);
833
- /*
834
- * 执行填充的数据项和控件
815
+ /*
816
+ * 执行填充的数据项和控件
835
817
  * */ _define_property(this, "fillList", void 0);
836
818
  var _props_dataCode;
837
819
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : '';
@@ -842,59 +824,56 @@ var FillBind = function FillBind(props) {
842
824
  return new MultistageFillingItem(item);
843
825
  })) !== null && _props_fillList_map !== void 0 ? _props_fillList_map : [];
844
826
  };
845
- /**
846
- * FillPayloadBind 填充配置
847
- * 填充的配置和需要携带的数据
848
- * @public
827
+ /**
828
+ * FillPayloadBind 填充配置
829
+ * 填充的配置和需要携带的数据
830
+ * @public
849
831
  * */ export var FillPayloadBind = /*#__PURE__*/ function(FillBind) {
850
832
  "use strict";
851
833
  _inherits(FillPayloadBind, FillBind);
852
- var _super = _create_super(FillPayloadBind);
853
834
  function FillPayloadBind(props) {
854
835
  _class_call_check(this, FillPayloadBind);
855
836
  var _this;
856
- _this = _super.call(this, props);
857
- /**
858
- * 数据源过滤条件
859
- * @defaultValue []
860
- * @public
861
- **/ _define_property(_assert_this_initialized(_this), "filters", void 0);
862
- /**
863
- * 数据源过滤条件-查看
864
- * @defaultValue []
865
- * @public
866
- **/ _define_property(_assert_this_initialized(_this), "viewFilters", void 0);
867
- /**
868
- * 数据源排序条件
869
- * @defaultValue []
870
- * @public
871
- **/ _define_property(_assert_this_initialized(_this), "orders", void 0);
872
- callFiltersAndOrders.call(_assert_this_initialized(_this), props);
837
+ _this = _call_super(this, FillPayloadBind, [
838
+ props
839
+ ]), /**
840
+ * 数据源过滤条件
841
+ * @defaultValue []
842
+ * @public
843
+ **/ _define_property(_this, "filters", void 0), /**
844
+ * 数据源过滤条件-查看
845
+ * @defaultValue []
846
+ * @public
847
+ **/ _define_property(_this, "viewFilters", void 0), /**
848
+ * 数据源排序条件
849
+ * @defaultValue []
850
+ * @public
851
+ **/ _define_property(_this, "orders", void 0);
852
+ callFiltersAndOrders.call(_this, props);
873
853
  return _this;
874
854
  }
875
855
  return FillPayloadBind;
876
856
  }(FillBind);
877
- /**
878
- * FillBackBind 回填需要的配置和参数
879
- * @public
857
+ /**
858
+ * FillBackBind 回填需要的配置和参数
859
+ * @public
880
860
  */ export var FillBackBind = /*#__PURE__*/ function(FillBind) {
881
861
  "use strict";
882
862
  _inherits(FillBackBind, FillBind);
883
- var _super = _create_super(FillBackBind);
884
863
  function FillBackBind(props) {
885
864
  _class_call_check(this, FillBackBind);
886
865
  var _this;
887
- _this = _super.call(this, props);
888
- /**
889
- * 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
890
- * @defaultValue 'current'
891
- * @public
892
- * */ _define_property(_assert_this_initialized(_this), "mode", void 0);
893
- /**
894
- * 多选
895
- * @defaultValue false
896
- * @public
897
- */ _define_property(_assert_this_initialized(_this), "multiple", void 0);
866
+ _this = _call_super(this, FillBackBind, [
867
+ props
868
+ ]), /**
869
+ * 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
870
+ * @defaultValue 'current'
871
+ * @public
872
+ * */ _define_property(_this, "mode", void 0), /**
873
+ * 多选
874
+ * @defaultValue false
875
+ * @public
876
+ */ _define_property(_this, "multiple", void 0);
898
877
  var _props_mode;
899
878
  _this.mode = (_props_mode = props === null || props === void 0 ? void 0 : props.mode) !== null && _props_mode !== void 0 ? _props_mode : 'current';
900
879
  var _props_multiple;
@@ -916,23 +895,23 @@ export var Language = function Language(props) {
916
895
  var _props_ja;
917
896
  this.ja = (_props_ja = props === null || props === void 0 ? void 0 : props.ja) !== null && _props_ja !== void 0 ? _props_ja : '';
918
897
  };
919
- /**
920
- * 正则校验
921
- * @public
898
+ /**
899
+ * 正则校验
900
+ * @public
922
901
  */ export var RegularRules = function RegularRules(props) {
923
902
  "use strict";
924
903
  _class_call_check(this, RegularRules);
925
- /**
926
- * 内置模版
927
- * @defaultValue ''
904
+ /**
905
+ * 内置模版
906
+ * @defaultValue ''
928
907
  */ _define_property(this, "stencilName", void 0);
929
- /**
930
- * 正则表达式
931
- * @defaultValue ''
908
+ /**
909
+ * 正则表达式
910
+ * @defaultValue ''
932
911
  */ _define_property(this, "expression", void 0);
933
- /**
934
- * 校验错误提示信息
935
- * @defaultValue ''
912
+ /**
913
+ * 校验错误提示信息
914
+ * @defaultValue ''
936
915
  */ _define_property(this, "errMessage", void 0);
937
916
  var _props_stencilName;
938
917
  this.stencilName = (_props_stencilName = props === null || props === void 0 ? void 0 : props.stencilName) !== null && _props_stencilName !== void 0 ? _props_stencilName : '';
@@ -941,22 +920,22 @@ export var Language = function Language(props) {
941
920
  var _props_errMessage;
942
921
  this.errMessage = (_props_errMessage = props === null || props === void 0 ? void 0 : props.errMessage) !== null && _props_errMessage !== void 0 ? _props_errMessage : '';
943
922
  };
944
- /**
945
- * 选项设置-自定义选项
946
- * @public
923
+ /**
924
+ * 选项设置-自定义选项
925
+ * @public
947
926
  */ export var OptionSetting = function OptionSetting(props) {
948
927
  "use strict";
949
928
  _class_call_check(this, OptionSetting);
950
929
  _define_property(this, "id", void 0);
951
- /**
952
- * 显示值
953
- * @defaultValue ''
954
- * @public
930
+ /**
931
+ * 显示值
932
+ * @defaultValue ''
933
+ * @public
955
934
  */ _define_property(this, "label", void 0);
956
- /**
957
- * 选项ID
958
- * @defaultValue this.label
959
- * @public
935
+ /**
936
+ * 选项ID
937
+ * @defaultValue this.label
938
+ * @public
960
939
  */ _define_property(this, "value", void 0);
961
940
  var _props_id;
962
941
  this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(8);
@@ -968,13 +947,12 @@ export var Language = function Language(props) {
968
947
  export var ImageOptionSetting = /*#__PURE__*/ function(OptionSetting) {
969
948
  "use strict";
970
949
  _inherits(ImageOptionSetting, OptionSetting);
971
- var _super = _create_super(ImageOptionSetting);
972
950
  function ImageOptionSetting(props) {
973
951
  _class_call_check(this, ImageOptionSetting);
974
952
  var _this;
975
- _this = _super.call(this, props);
976
- _define_property(_assert_this_initialized(_this), "image", void 0);
977
- _define_property(_assert_this_initialized(_this), "type", void 0);
953
+ _this = _call_super(this, ImageOptionSetting, [
954
+ props
955
+ ]), _define_property(_this, "image", void 0), _define_property(_this, "type", void 0);
978
956
  var _props_image;
979
957
  _this.image = (_props_image = props === null || props === void 0 ? void 0 : props.image) !== null && _props_image !== void 0 ? _props_image : '';
980
958
  var _props_type;
@@ -995,126 +973,120 @@ export function initImageOptions(options) {
995
973
  return new ImageOptionSetting(item);
996
974
  })) !== null && _options_map !== void 0 ? _options_map : [];
997
975
  }
998
- /**
999
- * 对象类型数据绑定配置
1000
- * @public
976
+ /**
977
+ * 对象类型数据绑定配置
978
+ * @public
1001
979
  */ export var ObjectDataBind = function ObjectDataBind() {
1002
980
  "use strict";
1003
981
  _class_call_check(this, ObjectDataBind);
1004
982
  };
1005
- /**
1006
- * 金额控件数据绑定配置
1007
- * @public
983
+ /**
984
+ * 金额控件数据绑定配置
985
+ * @public
1008
986
  */ export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
1009
987
  "use strict";
1010
988
  _inherits(AmountDataBind, ObjectDataBind);
1011
- var _super = _create_super(AmountDataBind);
1012
989
  function AmountDataBind(props) {
1013
990
  _class_call_check(this, AmountDataBind);
1014
991
  var _this;
1015
- _this = _super.call(this);
1016
- /**
1017
- * 金额字段绑定配置
1018
- */ _define_property(_assert_this_initialized(_this), "amount", void 0);
1019
- /**
1020
- * 币种字段绑定配置
1021
- */ _define_property(_assert_this_initialized(_this), "currency", void 0);
992
+ _this = _call_super(this, AmountDataBind), /**
993
+ * 金额字段绑定配置
994
+ */ _define_property(_this, "amount", void 0), /**
995
+ * 币种字段绑定配置
996
+ */ _define_property(_this, "currency", void 0);
1022
997
  _this.amount = new DataBind(props === null || props === void 0 ? void 0 : props.amount);
1023
998
  _this.currency = new DataBind(props === null || props === void 0 ? void 0 : props.currency);
1024
999
  return _this;
1025
1000
  }
1026
1001
  return AmountDataBind;
1027
1002
  }(ObjectDataBind);
1028
- /**
1029
- * 金额控件值
1030
- * @public
1003
+ /**
1004
+ * 金额控件值
1005
+ * @public
1031
1006
  */ export var AmountValue = function AmountValue(props) {
1032
1007
  "use strict";
1033
1008
  _class_call_check(this, AmountValue);
1034
- /**
1035
- * 金额值
1036
- * @defaultValue ''
1009
+ /**
1010
+ * 金额值
1011
+ * @defaultValue ''
1037
1012
  */ _define_property(this, "amount", void 0);
1038
- /**
1039
- * 货币值
1040
- * @defaultValue 'CNY'
1013
+ /**
1014
+ * 货币值
1015
+ * @defaultValue 'CNY'
1041
1016
  */ _define_property(this, "currency", void 0);
1042
1017
  var _props_amount;
1043
1018
  this.amount = (_props_amount = props === null || props === void 0 ? void 0 : props.amount) !== null && _props_amount !== void 0 ? _props_amount : '';
1044
1019
  var _props_currency;
1045
1020
  this.currency = (_props_currency = props === null || props === void 0 ? void 0 : props.currency) !== null && _props_currency !== void 0 ? _props_currency : "CNY";
1046
1021
  };
1047
- /**
1048
- * 日期区间数据绑定项
1049
- * @public
1022
+ /**
1023
+ * 日期区间数据绑定项
1024
+ * @public
1050
1025
  */ export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
1051
1026
  "use strict";
1052
1027
  _inherits(RangeDataBind, ObjectDataBind);
1053
- var _super = _create_super(RangeDataBind);
1054
1028
  function RangeDataBind(props) {
1055
1029
  _class_call_check(this, RangeDataBind);
1056
1030
  var _this;
1057
- _this = _super.call(this);
1058
- /**
1059
- * 开始日期字段绑定项
1060
- */ _define_property(_assert_this_initialized(_this), "min", void 0);
1061
- /**
1062
- * 结束日期字段绑定项
1063
- */ _define_property(_assert_this_initialized(_this), "max", void 0);
1031
+ _this = _call_super(this, RangeDataBind), /**
1032
+ * 开始日期字段绑定项
1033
+ */ _define_property(_this, "min", void 0), /**
1034
+ * 结束日期字段绑定项
1035
+ */ _define_property(_this, "max", void 0);
1064
1036
  _this.min = new DataBind(props === null || props === void 0 ? void 0 : props.min);
1065
1037
  _this.max = new DataBind(props === null || props === void 0 ? void 0 : props.max);
1066
1038
  return _this;
1067
1039
  }
1068
1040
  return RangeDataBind;
1069
1041
  }(ObjectDataBind);
1070
- /**
1071
- * 日期区间值
1072
- * @public
1042
+ /**
1043
+ * 日期区间值
1044
+ * @public
1073
1045
  */ export var RangeDateValue = function RangeDateValue(props) {
1074
1046
  "use strict";
1075
1047
  _class_call_check(this, RangeDateValue);
1076
- /**
1077
- * 开始日期值
1078
- * @defaultValue ''
1048
+ /**
1049
+ * 开始日期值
1050
+ * @defaultValue ''
1079
1051
  */ _define_property(this, "min", void 0);
1080
- /**
1081
- * 结束日期值
1082
- * @defaultValue ''
1052
+ /**
1053
+ * 结束日期值
1054
+ * @defaultValue ''
1083
1055
  */ _define_property(this, "max", void 0);
1084
1056
  var _props_min;
1085
1057
  this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : '';
1086
1058
  var _props_max;
1087
1059
  this.max = (_props_max = props === null || props === void 0 ? void 0 : props.max) !== null && _props_max !== void 0 ? _props_max : '';
1088
1060
  };
1089
- /**
1090
- * 地址值
1091
- * @public
1061
+ /**
1062
+ * 地址值
1063
+ * @public
1092
1064
  */ export var AddressValue = function AddressValue(props) {
1093
1065
  "use strict";
1094
1066
  _class_call_check(this, AddressValue);
1095
- /**
1096
- * 市编码
1097
- * @defaultValue ''
1067
+ /**
1068
+ * 市编码
1069
+ * @defaultValue ''
1098
1070
  */ _define_property(this, "city", void 0);
1099
- /**
1100
- * 市显示文字
1101
- * @defaultValue ''
1071
+ /**
1072
+ * 市显示文字
1073
+ * @defaultValue ''
1102
1074
  */ _define_property(this, "cityDisplay", void 0);
1103
- /**
1104
- * 区编码
1105
- * @defaultValue ''
1075
+ /**
1076
+ * 区编码
1077
+ * @defaultValue ''
1106
1078
  */ _define_property(this, "district", void 0);
1107
- /**
1108
- * 区显示文字
1109
- * @defaultValue ''
1079
+ /**
1080
+ * 区显示文字
1081
+ * @defaultValue ''
1110
1082
  */ _define_property(this, "districtDisplay", void 0);
1111
- /**
1112
- * 省编码
1113
- * @defaultValue ''
1083
+ /**
1084
+ * 省编码
1085
+ * @defaultValue ''
1114
1086
  */ _define_property(this, "province", void 0);
1115
- /**
1116
- * 省显示文字
1117
- * @defaultValue ''
1087
+ /**
1088
+ * 省显示文字
1089
+ * @defaultValue ''
1118
1090
  */ _define_property(this, "provinceDisplay", void 0);
1119
1091
  var _props_city;
1120
1092
  this.city = (_props_city = props === null || props === void 0 ? void 0 : props.city) !== null && _props_city !== void 0 ? _props_city : '';
@@ -1129,42 +1101,39 @@ export function initImageOptions(options) {
1129
1101
  var _props_provinceDisplay;
1130
1102
  this.provinceDisplay = (_props_provinceDisplay = props === null || props === void 0 ? void 0 : props.provinceDisplay) !== null && _props_provinceDisplay !== void 0 ? _props_provinceDisplay : '';
1131
1103
  };
1132
- /**
1133
- * 计算公式数据绑定项
1134
- * @public
1104
+ /**
1105
+ * 计算公式数据绑定项
1106
+ * @public
1135
1107
  */ export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
1136
1108
  "use strict";
1137
1109
  _inherits(CalcDataBind, ObjectDataBind);
1138
- var _super = _create_super(CalcDataBind);
1139
1110
  function CalcDataBind(props) {
1140
1111
  _class_call_check(this, CalcDataBind);
1141
1112
  var _this;
1142
- _this = _super.call(this);
1143
- /**
1144
- * 计算结果字段绑定项
1145
- */ _define_property(_assert_this_initialized(_this), "result", void 0);
1146
- /**
1147
- * 单位字段绑定项
1148
- */ _define_property(_assert_this_initialized(_this), "unit", void 0);
1113
+ _this = _call_super(this, CalcDataBind), /**
1114
+ * 计算结果字段绑定项
1115
+ */ _define_property(_this, "result", void 0), /**
1116
+ * 单位字段绑定项
1117
+ */ _define_property(_this, "unit", void 0);
1149
1118
  _this.result = new DataBind(props === null || props === void 0 ? void 0 : props.result);
1150
1119
  _this.unit = new DataBind(props === null || props === void 0 ? void 0 : props.unit);
1151
1120
  return _this;
1152
1121
  }
1153
1122
  return CalcDataBind;
1154
1123
  }(ObjectDataBind);
1155
- /**
1156
- * 计算公式值
1157
- * @public
1124
+ /**
1125
+ * 计算公式值
1126
+ * @public
1158
1127
  */ export var CalcValue = function CalcValue(props) {
1159
1128
  "use strict";
1160
1129
  _class_call_check(this, CalcValue);
1161
- /**
1162
- * 计算结果值
1163
- * @defaultValue 0
1130
+ /**
1131
+ * 计算结果值
1132
+ * @defaultValue 0
1164
1133
  */ _define_property(this, "result", void 0);
1165
- /**
1166
- * 单位
1167
- * @defaultValue ''
1134
+ /**
1135
+ * 单位
1136
+ * @defaultValue ''
1168
1137
  */ _define_property(this, "unit", void 0);
1169
1138
  var _props_result;
1170
1139
  this.result = (_props_result = props === null || props === void 0 ? void 0 : props.result) !== null && _props_result !== void 0 ? _props_result : 0;
@@ -1235,6 +1204,8 @@ export var COMMON_SETTING_TYPE;
1235
1204
  COMMON_SETTING_TYPE["ALLOW_COPY_OPTIONS"] = "allowCopyOptions";
1236
1205
  COMMON_SETTING_TYPE["IS_PASTE"] = "isPaste";
1237
1206
  COMMON_SETTING_TYPE["SORTABLE"] = "sortable";
1207
+ COMMON_SETTING_TYPE["IS_SHOW_SIMPLE_SEARCH"] = "isShowSimpleSearch";
1208
+ COMMON_SETTING_TYPE["IS_SHOW_TOOL_BAE"] = "isShowToolbar";
1238
1209
  })(COMMON_SETTING_TYPE || (COMMON_SETTING_TYPE = {}));
1239
1210
  export var PAGE_STATUS;
1240
1211
  (function(PAGE_STATUS) {
@@ -1243,36 +1214,36 @@ export var PAGE_STATUS;
1243
1214
  PAGE_STATUS[PAGE_STATUS["EDITABLE"] = 2] = "EDITABLE";
1244
1215
  PAGE_STATUS[PAGE_STATUS["PRINT"] = 5] = "PRINT";
1245
1216
  })(PAGE_STATUS || (PAGE_STATUS = {}));
1246
- /**
1247
- * 操作按钮
1248
- * @public
1217
+ /**
1218
+ * 操作按钮
1219
+ * @public
1249
1220
  */ export var OperationItem = function OperationItem(props) {
1250
1221
  "use strict";
1251
1222
  _class_call_check(this, OperationItem);
1252
- /**
1253
- * 是否显示
1254
- * @defaultValue true
1255
- * @public
1223
+ /**
1224
+ * 是否显示
1225
+ * @defaultValue true
1226
+ * @public
1256
1227
  */ _define_property(this, "isShow", void 0);
1257
- /**
1258
- * 优先访问流程表单
1259
- * @defaultValue false
1260
- * @public
1228
+ /**
1229
+ * 优先访问流程表单
1230
+ * @defaultValue false
1231
+ * @public
1261
1232
  */ _define_property(this, "priorityProcess", void 0);
1262
- /**
1263
- * 表单ID
1264
- * @defaultValue ''
1265
- * @public
1233
+ /**
1234
+ * 表单ID
1235
+ * @defaultValue ''
1236
+ * @public
1266
1237
  */ _define_property(this, "formKey", void 0);
1267
- /**
1268
- * 显示文字
1269
- * @defaultValue ''
1270
- * @public
1238
+ /**
1239
+ * 显示文字
1240
+ * @defaultValue ''
1241
+ * @public
1271
1242
  */ _define_property(this, "content", void 0);
1272
- /**
1273
- * 打开方式
1274
- * @defaultValue 'modal'
1275
- * @public
1243
+ /**
1244
+ * 打开方式
1245
+ * @defaultValue 'modal'
1246
+ * @public
1276
1247
  */ _define_property(this, "openType", void 0);
1277
1248
  _define_property(this, "type", void 0);
1278
1249
  var _props_isShow;
@@ -1307,16 +1278,16 @@ export var ViewOperationItem = function ViewOperationItem(props) {
1307
1278
  })) !== null && _props_headers_map !== void 0 ? _props_headers_map : [];
1308
1279
  callFiltersAndOrders.call(this, props);
1309
1280
  };
1310
- /**
1311
- * 自定义权限项,用于Vue容器上,注册自定义的权限
1281
+ /**
1282
+ * 自定义权限项,用于Vue容器上,注册自定义的权限
1312
1283
  */ export var CustomPermissionItem = function CustomPermissionItem(props) {
1313
1284
  "use strict";
1314
1285
  _class_call_check(this, CustomPermissionItem);
1315
- /**
1316
- * 人工输入的权限key
1286
+ /**
1287
+ * 人工输入的权限key
1317
1288
  */ _define_property(this, "key", void 0);
1318
- /**
1319
- * 权限名称
1289
+ /**
1290
+ * 权限名称
1320
1291
  */ _define_property(this, "caption", void 0);
1321
1292
  var _props_key;
1322
1293
  this.key = (_props_key = props.key) !== null && _props_key !== void 0 ? _props_key : genNonDuplicateId(8);
@@ -1342,15 +1313,15 @@ export var BaseStyle = function BaseStyle(props) {
1342
1313
  export var OptObject = function OptObject(props) {
1343
1314
  "use strict";
1344
1315
  _class_call_check(this, OptObject);
1345
- /**
1346
- * 操作项编码
1347
- * @defaultValue ''
1348
- * @public
1316
+ /**
1317
+ * 操作项编码
1318
+ * @defaultValue ''
1319
+ * @public
1349
1320
  */ _define_property(this, "optCode", void 0);
1350
- /**
1351
- * 操作项类型
1352
- * @defaultValue ''
1353
- * @public
1321
+ /**
1322
+ * 操作项类型
1323
+ * @defaultValue ''
1324
+ * @public
1354
1325
  */ _define_property(this, "optType", void 0);
1355
1326
  var _props_optCode;
1356
1327
  this.optCode = (_props_optCode = props === null || props === void 0 ? void 0 : props.optCode) !== null && _props_optCode !== void 0 ? _props_optCode : '';
@@ -1361,21 +1332,21 @@ export var RowStyleRule = function RowStyleRule(props) {
1361
1332
  "use strict";
1362
1333
  _class_call_check(this, RowStyleRule);
1363
1334
  var _props_filters, _props_settings;
1364
- /**
1365
- * 规则编号
1366
- * @defaultValue guid
1367
- * @public
1335
+ /**
1336
+ * 规则编号
1337
+ * @defaultValue guid
1338
+ * @public
1368
1339
  */ _define_property(this, "id", void 0);
1369
- /**
1370
- * 规则名称
1371
- * @defaultValue ''
1372
- * @public
1340
+ /**
1341
+ * 规则名称
1342
+ * @defaultValue ''
1343
+ * @public
1373
1344
  */ _define_property(this, "name", void 0);
1374
1345
  _define_property(this, "settings", void 0);
1375
- /**
1376
- * 过滤条件
1377
- * @defaultValue []
1378
- * @public
1346
+ /**
1347
+ * 过滤条件
1348
+ * @defaultValue []
1349
+ * @public
1379
1350
  */ _define_property(this, "filters", void 0);
1380
1351
  // 过滤
1381
1352
  _define_property(this, "script", void 0);
@@ -1399,19 +1370,19 @@ export var RowStyleRule = function RowStyleRule(props) {
1399
1370
  export var RowStyleSettings = function RowStyleSettings(props) {
1400
1371
  "use strict";
1401
1372
  _class_call_check(this, RowStyleSettings);
1402
- /**
1403
- * 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
1404
- * @defaultValue 'theme'
1405
- * @public
1373
+ /**
1374
+ * 颜色值。theme:跟随主题色;#4c78fc:具体颜色值
1375
+ * @defaultValue 'theme'
1376
+ * @public
1406
1377
  */ _define_property(this, "color", void 0);
1407
- /**
1408
- * 生效列字段
1378
+ /**
1379
+ * 生效列字段
1409
1380
  */ _define_property(this, "fieldCodes", void 0);
1410
- /**
1411
- * 样式类型,background单元格背景色,fontColor单元格字体色
1381
+ /**
1382
+ * 样式类型,background单元格背景色,fontColor单元格字体色
1412
1383
  */ _define_property(this, "type", void 0);
1413
- /**
1414
- * 作用范围,row整行,col整列
1384
+ /**
1385
+ * 作用范围,row整行,col整列
1415
1386
  */ _define_property(this, "scope", void 0);
1416
1387
  var _props_type;
1417
1388
  this.type = (_props_type = props.type) !== null && _props_type !== void 0 ? _props_type : 'background';