@byteluck-fe/model-driven-core 2.23.0-beta.12 → 2.23.0-beta.14

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