@byteluck-fe/model-driven-core 2.3.1 → 2.5.0-alpha.4

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.
@@ -1,15 +1,15 @@
1
- function _assertThisInitialized(self) {
1
+ function _assert_this_initialized(self) {
2
2
  if (self === void 0) {
3
3
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
4
4
  }
5
5
  return self;
6
6
  }
7
- function _classCallCheck(instance, Constructor) {
7
+ function _class_call_check(instance, Constructor) {
8
8
  if (!(instance instanceof Constructor)) {
9
9
  throw new TypeError("Cannot call a class as a function");
10
10
  }
11
11
  }
12
- function _defineProperty(obj, key, value) {
12
+ function _define_property(obj, key, value) {
13
13
  if (key in obj) {
14
14
  Object.defineProperty(obj, key, {
15
15
  value: value,
@@ -22,11 +22,11 @@ function _defineProperty(obj, key, value) {
22
22
  }
23
23
  return obj;
24
24
  }
25
- function _getPrototypeOf(o) {
26
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
25
+ function _get_prototype_of(o) {
26
+ _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
27
27
  return o.__proto__ || Object.getPrototypeOf(o);
28
28
  };
29
- return _getPrototypeOf(o);
29
+ return _get_prototype_of(o);
30
30
  }
31
31
  function _inherits(subClass, superClass) {
32
32
  if (typeof superClass !== "function" && superClass !== null) {
@@ -39,7 +39,7 @@ function _inherits(subClass, superClass) {
39
39
  configurable: true
40
40
  }
41
41
  });
42
- if (superClass) _setPrototypeOf(subClass, superClass);
42
+ if (superClass) _set_prototype_of(subClass, superClass);
43
43
  }
44
44
  function _instanceof(left, right) {
45
45
  if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
@@ -48,24 +48,24 @@ function _instanceof(left, right) {
48
48
  return left instanceof right;
49
49
  }
50
50
  }
51
- function _possibleConstructorReturn(self, call) {
52
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
51
+ function _possible_constructor_return(self, call) {
52
+ if (call && (_type_of(call) === "object" || typeof call === "function")) {
53
53
  return call;
54
54
  }
55
- return _assertThisInitialized(self);
55
+ return _assert_this_initialized(self);
56
56
  }
57
- function _setPrototypeOf(o, p) {
58
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
57
+ function _set_prototype_of(o, p) {
58
+ _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
59
59
  o.__proto__ = p;
60
60
  return o;
61
61
  };
62
- return _setPrototypeOf(o, p);
62
+ return _set_prototype_of(o, p);
63
63
  }
64
- var _typeof = function(obj) {
64
+ function _type_of(obj) {
65
65
  "@swc/helpers - typeof";
66
66
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
67
- };
68
- function _isNativeReflectConstruct() {
67
+ }
68
+ function _is_native_reflect_construct() {
69
69
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
70
70
  if (Reflect.construct.sham) return false;
71
71
  if (typeof Proxy === "function") return true;
@@ -76,17 +76,17 @@ function _isNativeReflectConstruct() {
76
76
  return false;
77
77
  }
78
78
  }
79
- function _createSuper(Derived) {
80
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
79
+ function _create_super(Derived) {
80
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
81
81
  return function _createSuperInternal() {
82
- var Super = _getPrototypeOf(Derived), result;
82
+ var Super = _get_prototype_of(Derived), result;
83
83
  if (hasNativeReflectConstruct) {
84
- var NewTarget = _getPrototypeOf(this).constructor;
84
+ var NewTarget = _get_prototype_of(this).constructor;
85
85
  result = Reflect.construct(Super, arguments, NewTarget);
86
86
  } else {
87
87
  result = Super.apply(this, arguments);
88
88
  }
89
- return _possibleConstructorReturn(this, result);
89
+ return _possible_constructor_return(this, result);
90
90
  };
91
91
  }
92
92
  import { FieldTypes, genNonDuplicateId } from "@byteluck-fe/model-driven-shared";
@@ -96,22 +96,22 @@ export * from "./RegisterControls";
96
96
  * @public
97
97
  */ export var DataBind = function DataBind(props) {
98
98
  "use strict";
99
- _classCallCheck(this, DataBind);
99
+ _class_call_check(this, DataBind);
100
100
  /**
101
101
  * 数据模型编码
102
102
  * @defaultValue ''
103
103
  * @public
104
- */ _defineProperty(this, "dataCode", void 0);
104
+ */ _define_property(this, "dataCode", void 0);
105
105
  /**
106
106
  * 字段编码
107
107
  * @defaultValue ''
108
108
  * @public
109
- */ _defineProperty(this, "fieldCode", void 0);
109
+ */ _define_property(this, "fieldCode", void 0);
110
110
  /**
111
111
  * 字段类型
112
112
  * @defaultValue ''
113
113
  * @public
114
- */ _defineProperty(this, "fieldType", void 0);
114
+ */ _define_property(this, "fieldType", void 0);
115
115
  var _props_dataCode;
116
116
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
117
117
  var _props_fieldCode;
@@ -121,10 +121,10 @@ export * from "./RegisterControls";
121
121
  };
122
122
  export var AutoWidth = function AutoWidth(props) {
123
123
  "use strict";
124
- _classCallCheck(this, AutoWidth);
125
- _defineProperty(this, "minWidth", void 0);
126
- _defineProperty(this, "maxWidth", void 0);
127
- _defineProperty(this, "flex", void 0);
124
+ _class_call_check(this, AutoWidth);
125
+ _define_property(this, "minWidth", void 0);
126
+ _define_property(this, "maxWidth", void 0);
127
+ _define_property(this, "flex", void 0);
128
128
  var _props_minWidth;
129
129
  this.minWidth = (_props_minWidth = props === null || props === void 0 ? void 0 : props.minWidth) !== null && _props_minWidth !== void 0 ? _props_minWidth : 150;
130
130
  this.maxWidth = props === null || props === void 0 ? void 0 : props.maxWidth;
@@ -134,13 +134,13 @@ export var AutoWidth = function AutoWidth(props) {
134
134
  export var MetaWidth = /*#__PURE__*/ function(AutoWidth) {
135
135
  "use strict";
136
136
  _inherits(MetaWidth, AutoWidth);
137
- var _super = _createSuper(MetaWidth);
137
+ var _super = _create_super(MetaWidth);
138
138
  function MetaWidth(props) {
139
- _classCallCheck(this, MetaWidth);
139
+ _class_call_check(this, MetaWidth);
140
140
  var _this;
141
141
  _this = _super.call(this, props);
142
- _defineProperty(_assertThisInitialized(_this), "width", void 0);
143
- _defineProperty(_assertThisInitialized(_this), "widthType", void 0);
142
+ _define_property(_assert_this_initialized(_this), "width", void 0);
143
+ _define_property(_assert_this_initialized(_this), "widthType", void 0);
144
144
  var _props_width;
145
145
  _this.width = (_props_width = props === null || props === void 0 ? void 0 : props.width) !== null && _props_width !== void 0 ? _props_width : 240;
146
146
  var _props_widthType;
@@ -151,9 +151,9 @@ export var MetaWidth = /*#__PURE__*/ function(AutoWidth) {
151
151
  }(AutoWidth);
152
152
  export var MetaAutoWidth = function MetaAutoWidth(props) {
153
153
  "use strict";
154
- _classCallCheck(this, MetaAutoWidth);
155
- _defineProperty(this, "pc", void 0);
156
- _defineProperty(this, "mobile", void 0);
154
+ _class_call_check(this, MetaAutoWidth);
155
+ _define_property(this, "pc", void 0);
156
+ _define_property(this, "mobile", void 0);
157
157
  this.pc = new MetaWidth(props === null || props === void 0 ? void 0 : props.pc);
158
158
  this.mobile = (props === null || props === void 0 ? void 0 : props.mobile) ? new MetaWidth(props === null || props === void 0 ? void 0 : props.mobile) : new MetaWidth({
159
159
  width: 130,
@@ -162,9 +162,9 @@ export var MetaAutoWidth = function MetaAutoWidth(props) {
162
162
  };
163
163
  export var DataStorageDoc = function DataStorageDoc(props) {
164
164
  "use strict";
165
- _classCallCheck(this, DataStorageDoc);
166
- _defineProperty(this, "type", void 0);
167
- _defineProperty(this, "customOptions", void 0);
165
+ _class_call_check(this, DataStorageDoc);
166
+ _define_property(this, "type", void 0);
167
+ _define_property(this, "customOptions", void 0);
168
168
  var _props_type;
169
169
  this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : "firstThree";
170
170
  var _props_customOptions;
@@ -172,10 +172,10 @@ export var DataStorageDoc = function DataStorageDoc(props) {
172
172
  };
173
173
  export var FormBind = function FormBind(props) {
174
174
  "use strict";
175
- _classCallCheck(this, FormBind);
176
- _defineProperty(this, "dataCode", void 0);
177
- _defineProperty(this, "formKey", void 0);
178
- _defineProperty(this, "appId", void 0);
175
+ _class_call_check(this, FormBind);
176
+ _define_property(this, "dataCode", void 0);
177
+ _define_property(this, "formKey", void 0);
178
+ _define_property(this, "appId", void 0);
179
179
  var _props_dataCode;
180
180
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
181
181
  var _props_formKey;
@@ -186,12 +186,12 @@ export var FormBind = function FormBind(props) {
186
186
  export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
187
187
  "use strict";
188
188
  _inherits(FormSelectBind, FormBind);
189
- var _super = _createSuper(FormSelectBind);
189
+ var _super = _create_super(FormSelectBind);
190
190
  function FormSelectBind(props) {
191
- _classCallCheck(this, FormSelectBind);
191
+ _class_call_check(this, FormSelectBind);
192
192
  var _this;
193
193
  _this = _super.call(this, props);
194
- _defineProperty(_assertThisInitialized(_this), "primaryControlId", void 0);
194
+ _define_property(_assert_this_initialized(_this), "primaryControlId", void 0);
195
195
  var _props_primaryControlId;
196
196
  _this.primaryControlId = (_props_primaryControlId = props === null || props === void 0 ? void 0 : props.primaryControlId) !== null && _props_primaryControlId !== void 0 ? _props_primaryControlId : "";
197
197
  return _this;
@@ -200,8 +200,8 @@ export var FormSelectBind = /*#__PURE__*/ function(FormBind) {
200
200
  }(FormBind);
201
201
  var ListBindHeaderItem = function ListBindHeaderItem(props) {
202
202
  "use strict";
203
- _classCallCheck(this, ListBindHeaderItem);
204
- _defineProperty(this, "fieldCode", void 0);
203
+ _class_call_check(this, ListBindHeaderItem);
204
+ _define_property(this, "fieldCode", void 0);
205
205
  var _props_fieldCode;
206
206
  this.fieldCode = (_props_fieldCode = props === null || props === void 0 ? void 0 : props.fieldCode) !== null && _props_fieldCode !== void 0 ? _props_fieldCode : "";
207
207
  };
@@ -209,20 +209,20 @@ var ListBindHeaderItem = function ListBindHeaderItem(props) {
209
209
  * 列表绑定配置
210
210
  */ export var ListBind = function ListBind(props) {
211
211
  "use strict";
212
- _classCallCheck(this, ListBind);
212
+ _class_call_check(this, ListBind);
213
213
  var _props_headers;
214
214
  /**
215
215
  * 应用ID
216
216
  * @public
217
- */ _defineProperty(this, "appId", void 0);
217
+ */ _define_property(this, "appId", void 0);
218
218
  /**
219
219
  * 表单ID
220
220
  * @public
221
- */ _defineProperty(this, "formKey", void 0);
221
+ */ _define_property(this, "formKey", void 0);
222
222
  /**
223
223
  * 显示字段
224
224
  * @public
225
- */ _defineProperty(this, "headers", void 0);
225
+ */ _define_property(this, "headers", void 0);
226
226
  var _props_appId;
227
227
  this.appId = (_props_appId = props === null || props === void 0 ? void 0 : props.appId) !== null && _props_appId !== void 0 ? _props_appId : "";
228
228
  var _props_formKey;
@@ -234,10 +234,10 @@ var ListBindHeaderItem = function ListBindHeaderItem(props) {
234
234
  };
235
235
  export var FieldBindItem = function FieldBindItem(props) {
236
236
  "use strict";
237
- _classCallCheck(this, FieldBindItem);
238
- _defineProperty(this, "fieldName", void 0);
239
- _defineProperty(this, "fieldCode", void 0);
240
- _defineProperty(this, "fieldType", void 0);
237
+ _class_call_check(this, FieldBindItem);
238
+ _define_property(this, "fieldName", void 0);
239
+ _define_property(this, "fieldCode", void 0);
240
+ _define_property(this, "fieldType", void 0);
241
241
  var _props_fieldName;
242
242
  this.fieldName = (_props_fieldName = props === null || props === void 0 ? void 0 : props.fieldName) !== null && _props_fieldName !== void 0 ? _props_fieldName : "";
243
243
  var _props_fieldCode;
@@ -248,15 +248,15 @@ export var FieldBindItem = function FieldBindItem(props) {
248
248
  export var SubListItem = /*#__PURE__*/ function(FormBind) {
249
249
  "use strict";
250
250
  _inherits(SubListItem, FormBind);
251
- var _super = _createSuper(SubListItem);
251
+ var _super = _create_super(SubListItem);
252
252
  function SubListItem(props) {
253
- _classCallCheck(this, SubListItem);
253
+ _class_call_check(this, SubListItem);
254
254
  var _this;
255
255
  _this = _super.call(this, props);
256
- _defineProperty(_assertThisInitialized(_this), "title", void 0);
257
- _defineProperty(_assertThisInitialized(_this), "svcCode", void 0);
258
- _defineProperty(_assertThisInitialized(_this), "isOpenFilter", void 0);
259
- _defineProperty(_assertThisInitialized(_this), "filters", void 0);
256
+ _define_property(_assert_this_initialized(_this), "title", void 0);
257
+ _define_property(_assert_this_initialized(_this), "svcCode", void 0);
258
+ _define_property(_assert_this_initialized(_this), "isOpenFilter", void 0);
259
+ _define_property(_assert_this_initialized(_this), "filters", void 0);
260
260
  var _props_title;
261
261
  _this.title = (_props_title = props === null || props === void 0 ? void 0 : props.title) !== null && _props_title !== void 0 ? _props_title : "";
262
262
  var _props_svcCode;
@@ -271,12 +271,12 @@ export var SubListItem = /*#__PURE__*/ function(FormBind) {
271
271
  }(FormBind);
272
272
  export var SubListPageConfig = function SubListPageConfig(props) {
273
273
  "use strict";
274
- _classCallCheck(this, SubListPageConfig);
274
+ _class_call_check(this, SubListPageConfig);
275
275
  var _props_displayFields, _props_sublists;
276
- _defineProperty(this, "type", "sublist-page");
277
- _defineProperty(this, "formBind", void 0);
278
- _defineProperty(this, "displayFields", void 0);
279
- _defineProperty(this, "sublists", void 0);
276
+ _define_property(this, "type", "sublist-page");
277
+ _define_property(this, "formBind", void 0);
278
+ _define_property(this, "displayFields", void 0);
279
+ _define_property(this, "sublists", void 0);
280
280
  this.formBind = new FormBind(props === null || props === void 0 ? void 0 : props.formBind);
281
281
  var _props_displayFields_map;
282
282
  this.displayFields = (_props_displayFields_map = props === null || props === void 0 ? void 0 : (_props_displayFields = props.displayFields) === null || _props_displayFields === void 0 ? void 0 : _props_displayFields.map(function(item) {
@@ -289,18 +289,18 @@ export var SubListPageConfig = function SubListPageConfig(props) {
289
289
  };
290
290
  export var LeftVariable = function LeftVariable(props) {
291
291
  "use strict";
292
- _classCallCheck(this, LeftVariable);
293
- _defineProperty(this, "type", void 0);
294
- _defineProperty(this, "value", void 0);
292
+ _class_call_check(this, LeftVariable);
293
+ _define_property(this, "type", void 0);
294
+ _define_property(this, "value", void 0);
295
295
  this.type = props === null || props === void 0 ? void 0 : props.type;
296
296
  this.value = props === null || props === void 0 ? void 0 : props.value;
297
297
  };
298
298
  export var RightVariable = function RightVariable(props) {
299
299
  "use strict";
300
- _classCallCheck(this, RightVariable);
301
- _defineProperty(this, "type", void 0);
302
- _defineProperty(this, "value", void 0);
303
- _defineProperty(this, "displayBos", void 0);
300
+ _class_call_check(this, RightVariable);
301
+ _define_property(this, "type", void 0);
302
+ _define_property(this, "value", void 0);
303
+ _define_property(this, "displayBos", void 0);
304
304
  var _props_type;
305
305
  this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : "custom";
306
306
  var _props_value;
@@ -311,13 +311,13 @@ export var RightVariable = function RightVariable(props) {
311
311
  export var FieldFilterConditions = function FieldFilterConditions(props) {
312
312
  "use strict";
313
313
  var _this = this;
314
- _classCallCheck(this, FieldFilterConditions);
315
- _defineProperty(this, "id", void 0);
316
- _defineProperty(this, "ruleId", void 0);
317
- _defineProperty(this, "type", "conditions");
318
- _defineProperty(this, "level", void 0);
319
- _defineProperty(this, "value", void 0);
320
- _defineProperty(this, "children", void 0);
314
+ _class_call_check(this, FieldFilterConditions);
315
+ _define_property(this, "id", void 0);
316
+ _define_property(this, "ruleId", void 0);
317
+ _define_property(this, "type", "conditions");
318
+ _define_property(this, "level", void 0);
319
+ _define_property(this, "value", void 0);
320
+ _define_property(this, "children", void 0);
321
321
  var _props_id;
322
322
  this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
323
323
  var _props_ruleId;
@@ -343,15 +343,15 @@ export var FieldFilterConditions = function FieldFilterConditions(props) {
343
343
  };
344
344
  export var FieldFilterCondition = function FieldFilterCondition(props) {
345
345
  "use strict";
346
- _classCallCheck(this, FieldFilterCondition);
347
- _defineProperty(this, "id", void 0);
348
- _defineProperty(this, "ruleId", void 0);
349
- _defineProperty(this, "type", "condition");
350
- _defineProperty(this, "symbol", void 0);
351
- _defineProperty(this, "checked", void 0);
352
- _defineProperty(this, "describe", void 0);
353
- _defineProperty(this, "leftVariableBo", void 0);
354
- _defineProperty(this, "rightVariableBo", void 0);
346
+ _class_call_check(this, FieldFilterCondition);
347
+ _define_property(this, "id", void 0);
348
+ _define_property(this, "ruleId", void 0);
349
+ _define_property(this, "type", "condition");
350
+ _define_property(this, "symbol", void 0);
351
+ _define_property(this, "checked", void 0);
352
+ _define_property(this, "describe", void 0);
353
+ _define_property(this, "leftVariableBo", void 0);
354
+ _define_property(this, "rightVariableBo", void 0);
355
355
  var _props_id;
356
356
  this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId();
357
357
  var _props_ruleId;
@@ -370,27 +370,27 @@ export var FieldFilterCondition = function FieldFilterCondition(props) {
370
370
  * @public
371
371
  */ export var MultistageFillingItem = function MultistageFillingItem(props) {
372
372
  "use strict";
373
- _classCallCheck(this, MultistageFillingItem);
373
+ _class_call_check(this, MultistageFillingItem);
374
374
  /**
375
375
  * 控件ID
376
376
  * @defaultValue ''
377
377
  * @public
378
- */ _defineProperty(this, "controlId", void 0);
378
+ */ _define_property(this, "controlId", void 0);
379
379
  /**
380
380
  * 字段
381
381
  * @defaultValue ''
382
382
  * @public
383
- */ _defineProperty(this, "fieldCode", void 0);
383
+ */ _define_property(this, "fieldCode", void 0);
384
384
  /**
385
385
  * 字段类型。事件在填充时,需要根据数据类型进行判断处理动作。
386
386
  * @defaultValue ''
387
387
  * @public
388
- */ _defineProperty(this, "fieldType", void 0);
388
+ */ _define_property(this, "fieldType", void 0);
389
389
  /**
390
390
  * 属性名称。如果是ObjectDataBind的控件,可以指定填充到哪个数据项。
391
391
  * @defaultValue ''
392
392
  * @public
393
- * */ _defineProperty(this, "propName", void 0);
393
+ * */ _define_property(this, "propName", void 0);
394
394
  var _props_controlId;
395
395
  this.controlId = (_props_controlId = props === null || props === void 0 ? void 0 : props.controlId) !== null && _props_controlId !== void 0 ? _props_controlId : "";
396
396
  var _props_fieldCode;
@@ -402,10 +402,10 @@ export var FieldFilterCondition = function FieldFilterCondition(props) {
402
402
  };
403
403
  export var DisplayBoListItem = function DisplayBoListItem(props) {
404
404
  "use strict";
405
- _classCallCheck(this, DisplayBoListItem);
406
- _defineProperty(this, "type", void 0);
407
- _defineProperty(this, "value", void 0);
408
- _defineProperty(this, "fieldType", void 0);
405
+ _class_call_check(this, DisplayBoListItem);
406
+ _define_property(this, "type", void 0);
407
+ _define_property(this, "value", void 0);
408
+ _define_property(this, "fieldType", void 0);
409
409
  var _props_type;
410
410
  this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : "FIELD";
411
411
  var _props_value;
@@ -414,9 +414,9 @@ export var DisplayBoListItem = function DisplayBoListItem(props) {
414
414
  };
415
415
  export var DataSourceOrderItem = function DataSourceOrderItem(props) {
416
416
  "use strict";
417
- _classCallCheck(this, DataSourceOrderItem);
418
- _defineProperty(this, "columnName", void 0);
419
- _defineProperty(this, "desc", void 0);
417
+ _class_call_check(this, DataSourceOrderItem);
418
+ _define_property(this, "columnName", void 0);
419
+ _define_property(this, "desc", void 0);
420
420
  var _props_columnName;
421
421
  this.columnName = (_props_columnName = props.columnName) !== null && _props_columnName !== void 0 ? _props_columnName : "";
422
422
  var _props_desc;
@@ -424,13 +424,13 @@ export var DataSourceOrderItem = function DataSourceOrderItem(props) {
424
424
  };
425
425
  export var DataSourceDataSetValue = function DataSourceDataSetValue(props) {
426
426
  "use strict";
427
- _classCallCheck(this, DataSourceDataSetValue);
427
+ _class_call_check(this, DataSourceDataSetValue);
428
428
  // fieldCode
429
- _defineProperty(this, "code", void 0);
429
+ _define_property(this, "code", void 0);
430
430
  // 值
431
- _defineProperty(this, "value", void 0);
431
+ _define_property(this, "value", void 0);
432
432
  // 数据类型
433
- _defineProperty(this, "field_type", void 0);
433
+ _define_property(this, "field_type", void 0);
434
434
  var _props_code;
435
435
  this.code = (_props_code = props.code) !== null && _props_code !== void 0 ? _props_code : "";
436
436
  var _props_value;
@@ -440,15 +440,15 @@ export var DataSourceDataSetValue = function DataSourceDataSetValue(props) {
440
440
  };
441
441
  export var DataSourceParamItem = function DataSourceParamItem(props) {
442
442
  "use strict";
443
- _classCallCheck(this, DataSourceParamItem);
443
+ _class_call_check(this, DataSourceParamItem);
444
444
  var _props_orders, _props_dataSet;
445
445
  /**
446
446
  * 字段ID
447
- */ _defineProperty(this, "id", void 0);
448
- _defineProperty(this, "limit", void 0);
449
- _defineProperty(this, "orders", void 0);
450
- _defineProperty(this, "formKey", void 0);
451
- _defineProperty(this, "dataSet", void 0);
447
+ */ _define_property(this, "id", void 0);
448
+ _define_property(this, "limit", void 0);
449
+ _define_property(this, "orders", void 0);
450
+ _define_property(this, "formKey", void 0);
451
+ _define_property(this, "dataSet", void 0);
452
452
  var _props_id;
453
453
  //字段ID,不可以当作随机数生成唯一编号
454
454
  this.id = (_props_id = props.id) !== null && _props_id !== void 0 ? _props_id : "";
@@ -490,48 +490,48 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
490
490
  */ export var DataSourceBind = function DataSourceBind(props) {
491
491
  "use strict";
492
492
  var _this = this;
493
- _classCallCheck(this, DataSourceBind);
493
+ _class_call_check(this, DataSourceBind);
494
494
  /**
495
495
  * 绑定数据源id
496
496
  * @defaultValue ''
497
497
  * @public
498
- */ _defineProperty(this, "dataCode", void 0);
498
+ */ _define_property(this, "dataCode", void 0);
499
499
  /**
500
500
  * 存储值
501
501
  * @defaultValue ''
502
502
  * @public
503
- */ _defineProperty(this, "valueFieldCode", void 0);
503
+ */ _define_property(this, "valueFieldCode", void 0);
504
504
  /**
505
505
  * 显示值
506
506
  * @defaultValue []
507
507
  * @public
508
- */ _defineProperty(this, "displayBoList", void 0);
508
+ */ _define_property(this, "displayBoList", void 0);
509
509
  /**
510
510
  * 绑定服务
511
511
  * @defaultValue ''
512
512
  * @public
513
- */ _defineProperty(this, "svcCode", void 0);
513
+ */ _define_property(this, "svcCode", void 0);
514
514
  /**
515
515
  * 应用Id
516
516
  * @defaultValue ''
517
517
  * @public
518
- */ _defineProperty(this, "appId", void 0);
518
+ */ _define_property(this, "appId", void 0);
519
519
  /**
520
520
  * 过滤条件
521
521
  * @defaultValue []
522
522
  * @public
523
- */ _defineProperty(this, "filters", void 0);
523
+ */ _define_property(this, "filters", void 0);
524
524
  // 过滤
525
525
  /**
526
526
  * 排序
527
527
  * @defaultValue []
528
528
  * @public
529
- */ _defineProperty(this, "orders", void 0);
529
+ */ _define_property(this, "orders", void 0);
530
530
  /**
531
531
  * 显示排序
532
532
  * @defaultValue true
533
533
  * @public
534
- */ _defineProperty(this, "showOrder", void 0);
534
+ */ _define_property(this, "showOrder", void 0);
535
535
  var _props_dataCode;
536
536
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
537
537
  var _props_appId;
@@ -551,13 +551,47 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
551
551
  this.svcCode = (_props_svcCode = props === null || props === void 0 ? void 0 : props.svcCode) !== null && _props_svcCode !== void 0 ? _props_svcCode : "";
552
552
  callFiltersAndOrders.call(this, props);
553
553
  };
554
+ export var LinkOperationOption = function LinkOperationOption(props) {
555
+ "use strict";
556
+ _class_call_check(this, LinkOperationOption);
557
+ _define_property(this, "code", void 0);
558
+ _define_property(this, "color", void 0);
559
+ _define_property(this, "command", void 0);
560
+ _define_property(this, "confirmMessage", void 0);
561
+ _define_property(this, "defaultState", void 0);
562
+ _define_property(this, "formKey", void 0);
563
+ _define_property(this, "icon", void 0);
564
+ _define_property(this, "needConfirm", void 0);
565
+ _define_property(this, "openType", void 0);
566
+ _define_property(this, "priorityProcess", void 0);
567
+ var _props_code;
568
+ this.code = (_props_code = props === null || props === void 0 ? void 0 : props.code) !== null && _props_code !== void 0 ? _props_code : "view";
569
+ var _props_color;
570
+ this.color = (_props_color = props === null || props === void 0 ? void 0 : props.color) !== null && _props_color !== void 0 ? _props_color : "primary";
571
+ var _props_command;
572
+ this.command = (_props_command = props === null || props === void 0 ? void 0 : props.command) !== null && _props_command !== void 0 ? _props_command : "view";
573
+ var _props_confirmMessage;
574
+ this.confirmMessage = (_props_confirmMessage = props === null || props === void 0 ? void 0 : props.confirmMessage) !== null && _props_confirmMessage !== void 0 ? _props_confirmMessage : undefined;
575
+ var _props_defaultState;
576
+ this.defaultState = (_props_defaultState = props === null || props === void 0 ? void 0 : props.defaultState) !== null && _props_defaultState !== void 0 ? _props_defaultState : "default";
577
+ var _props_formKey;
578
+ this.formKey = (_props_formKey = props === null || props === void 0 ? void 0 : props.formKey) !== null && _props_formKey !== void 0 ? _props_formKey : undefined;
579
+ var _props_icon;
580
+ this.icon = (_props_icon = props === null || props === void 0 ? void 0 : props.icon) !== null && _props_icon !== void 0 ? _props_icon : "iconliulan1";
581
+ var _props_needConfirm;
582
+ this.needConfirm = (_props_needConfirm = props === null || props === void 0 ? void 0 : props.needConfirm) !== null && _props_needConfirm !== void 0 ? _props_needConfirm : false;
583
+ var _props_openType;
584
+ this.openType = (_props_openType = props === null || props === void 0 ? void 0 : props.openType) !== null && _props_openType !== void 0 ? _props_openType : "modal";
585
+ var _props_priorityProcess;
586
+ this.priorityProcess = (_props_priorityProcess = props === null || props === void 0 ? void 0 : props.priorityProcess) !== null && _props_priorityProcess !== void 0 ? _props_priorityProcess : true;
587
+ };
554
588
  export var CustomAttributeItem = function CustomAttributeItem(props) {
555
589
  "use strict";
556
- _classCallCheck(this, CustomAttributeItem);
590
+ _class_call_check(this, CustomAttributeItem);
557
591
  var _props_value;
558
- _defineProperty(this, "name", void 0);
559
- _defineProperty(this, "key", void 0);
560
- _defineProperty(this, "value", void 0);
592
+ _define_property(this, "name", void 0);
593
+ _define_property(this, "key", void 0);
594
+ _define_property(this, "value", void 0);
561
595
  var _props_name;
562
596
  this.name = (_props_name = props === null || props === void 0 ? void 0 : props.name) !== null && _props_name !== void 0 ? _props_name : "";
563
597
  var _props_key;
@@ -570,13 +604,13 @@ export var CustomAttributeItem = function CustomAttributeItem(props) {
570
604
  export var SuperDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
571
605
  "use strict";
572
606
  _inherits(SuperDataSourceBind, DataSourceBind);
573
- var _super = _createSuper(SuperDataSourceBind);
607
+ var _super = _create_super(SuperDataSourceBind);
574
608
  function SuperDataSourceBind(props) {
575
- _classCallCheck(this, SuperDataSourceBind);
609
+ _class_call_check(this, SuperDataSourceBind);
576
610
  var _this;
577
611
  var _props_attributes;
578
612
  _this = _super.call(this, props);
579
- _defineProperty(_assertThisInitialized(_this), "attributes", void 0);
613
+ _define_property(_assert_this_initialized(_this), "attributes", void 0);
580
614
  var _props_attributes_map;
581
615
  _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) {
582
616
  return new CustomAttributeItem(item);
@@ -588,12 +622,12 @@ export var SuperDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
588
622
  export var TreeDataSourceBind = /*#__PURE__*/ function(SuperDataSourceBind) {
589
623
  "use strict";
590
624
  _inherits(TreeDataSourceBind, SuperDataSourceBind);
591
- var _super = _createSuper(TreeDataSourceBind);
625
+ var _super = _create_super(TreeDataSourceBind);
592
626
  function TreeDataSourceBind(props) {
593
- _classCallCheck(this, TreeDataSourceBind);
627
+ _class_call_check(this, TreeDataSourceBind);
594
628
  var _this;
595
629
  _this = _super.call(this, props);
596
- _defineProperty(_assertThisInitialized(_this), "rootNode", void 0);
630
+ _define_property(_assert_this_initialized(_this), "rootNode", void 0);
597
631
  _this.rootNode = new RightVariable(props === null || props === void 0 ? void 0 : props.rootNode);
598
632
  return _this;
599
633
  }
@@ -601,17 +635,17 @@ export var TreeDataSourceBind = /*#__PURE__*/ function(SuperDataSourceBind) {
601
635
  }(SuperDataSourceBind);
602
636
  var FillBind = function FillBind(props) {
603
637
  "use strict";
604
- _classCallCheck(this, FillBind);
638
+ _class_call_check(this, FillBind);
605
639
  var _props_fillList;
606
640
  /*
607
641
  * 需要被填充的数据源
608
- * */ _defineProperty(this, "dataCode", void 0);
642
+ * */ _define_property(this, "dataCode", void 0);
609
643
  /*
610
644
  * appId
611
- * */ _defineProperty(this, "appId", void 0);
645
+ * */ _define_property(this, "appId", void 0);
612
646
  /*
613
647
  * 执行填充的数据项和控件
614
- * */ _defineProperty(this, "fillList", void 0);
648
+ * */ _define_property(this, "fillList", void 0);
615
649
  var _props_dataCode;
616
650
  this.dataCode = (_props_dataCode = props === null || props === void 0 ? void 0 : props.dataCode) !== null && _props_dataCode !== void 0 ? _props_dataCode : "";
617
651
  var _props_appId;
@@ -628,22 +662,22 @@ var FillBind = function FillBind(props) {
628
662
  * */ export var FillPayloadBind = /*#__PURE__*/ function(FillBind) {
629
663
  "use strict";
630
664
  _inherits(FillPayloadBind, FillBind);
631
- var _super = _createSuper(FillPayloadBind);
665
+ var _super = _create_super(FillPayloadBind);
632
666
  function FillPayloadBind(props) {
633
- _classCallCheck(this, FillPayloadBind);
667
+ _class_call_check(this, FillPayloadBind);
634
668
  var _this;
635
669
  _this = _super.call(this, props);
636
670
  /**
637
671
  * 数据源过滤条件
638
672
  * @defaultValue []
639
673
  * @public
640
- **/ _defineProperty(_assertThisInitialized(_this), "filters", void 0);
674
+ **/ _define_property(_assert_this_initialized(_this), "filters", void 0);
641
675
  /**
642
676
  * 数据源排序条件
643
677
  * @defaultValue []
644
678
  * @public
645
- **/ _defineProperty(_assertThisInitialized(_this), "orders", void 0);
646
- callFiltersAndOrders.call(_assertThisInitialized(_this), props);
679
+ **/ _define_property(_assert_this_initialized(_this), "orders", void 0);
680
+ callFiltersAndOrders.call(_assert_this_initialized(_this), props);
647
681
  return _this;
648
682
  }
649
683
  return FillPayloadBind;
@@ -654,21 +688,21 @@ var FillBind = function FillBind(props) {
654
688
  */ export var FillBackBind = /*#__PURE__*/ function(FillBind) {
655
689
  "use strict";
656
690
  _inherits(FillBackBind, FillBind);
657
- var _super = _createSuper(FillBackBind);
691
+ var _super = _create_super(FillBackBind);
658
692
  function FillBackBind(props) {
659
- _classCallCheck(this, FillBackBind);
693
+ _class_call_check(this, FillBackBind);
660
694
  var _this;
661
695
  _this = _super.call(this, props);
662
696
  /**
663
697
  * 回填模式。current 当前表(根据按钮所在位置来区分,而不是通过主表和子表来区分)| subtable 子表
664
698
  * @defaultValue 'current'
665
699
  * @public
666
- * */ _defineProperty(_assertThisInitialized(_this), "mode", void 0);
700
+ * */ _define_property(_assert_this_initialized(_this), "mode", void 0);
667
701
  /**
668
702
  * 多选
669
703
  * @defaultValue false
670
704
  * @public
671
- */ _defineProperty(_assertThisInitialized(_this), "multiple", void 0);
705
+ */ _define_property(_assert_this_initialized(_this), "multiple", void 0);
672
706
  var _props_mode;
673
707
  _this.mode = (_props_mode = props === null || props === void 0 ? void 0 : props.mode) !== null && _props_mode !== void 0 ? _props_mode : "current";
674
708
  var _props_multiple;
@@ -679,10 +713,10 @@ var FillBind = function FillBind(props) {
679
713
  }(FillBind);
680
714
  export var Language = function Language(props) {
681
715
  "use strict";
682
- _classCallCheck(this, Language);
683
- _defineProperty(this, "zh", void 0);
684
- _defineProperty(this, "en", void 0);
685
- _defineProperty(this, "ja", void 0);
716
+ _class_call_check(this, Language);
717
+ _define_property(this, "zh", void 0);
718
+ _define_property(this, "en", void 0);
719
+ _define_property(this, "ja", void 0);
686
720
  var _props_zh;
687
721
  this.zh = (_props_zh = props === null || props === void 0 ? void 0 : props.zh) !== null && _props_zh !== void 0 ? _props_zh : "";
688
722
  var _props_en;
@@ -692,10 +726,10 @@ export var Language = function Language(props) {
692
726
  };
693
727
  export var RegularRules = function RegularRules(props) {
694
728
  "use strict";
695
- _classCallCheck(this, RegularRules);
696
- _defineProperty(this, "stencilName", void 0);
697
- _defineProperty(this, "expression", void 0);
698
- _defineProperty(this, "errMessage", void 0);
729
+ _class_call_check(this, RegularRules);
730
+ _define_property(this, "stencilName", void 0);
731
+ _define_property(this, "expression", void 0);
732
+ _define_property(this, "errMessage", void 0);
699
733
  var _props_stencilName;
700
734
  this.stencilName = (_props_stencilName = props === null || props === void 0 ? void 0 : props.stencilName) !== null && _props_stencilName !== void 0 ? _props_stencilName : "";
701
735
  var _props_expression;
@@ -708,18 +742,18 @@ export var RegularRules = function RegularRules(props) {
708
742
  * @public
709
743
  */ export var OptionSetting = function OptionSetting(props) {
710
744
  "use strict";
711
- _classCallCheck(this, OptionSetting);
712
- _defineProperty(this, "id", void 0);
745
+ _class_call_check(this, OptionSetting);
746
+ _define_property(this, "id", void 0);
713
747
  /**
714
748
  * 显示值
715
749
  * @defaultValue ''
716
750
  * @public
717
- */ _defineProperty(this, "label", void 0);
751
+ */ _define_property(this, "label", void 0);
718
752
  /**
719
753
  * 选项ID
720
754
  * @defaultValue this.label
721
755
  * @public
722
- */ _defineProperty(this, "value", void 0);
756
+ */ _define_property(this, "value", void 0);
723
757
  var _props_id;
724
758
  this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(8);
725
759
  var _props_label;
@@ -730,13 +764,13 @@ export var RegularRules = function RegularRules(props) {
730
764
  export var ImageOptionSetting = /*#__PURE__*/ function(OptionSetting) {
731
765
  "use strict";
732
766
  _inherits(ImageOptionSetting, OptionSetting);
733
- var _super = _createSuper(ImageOptionSetting);
767
+ var _super = _create_super(ImageOptionSetting);
734
768
  function ImageOptionSetting(props) {
735
- _classCallCheck(this, ImageOptionSetting);
769
+ _class_call_check(this, ImageOptionSetting);
736
770
  var _this;
737
771
  _this = _super.call(this, props);
738
- _defineProperty(_assertThisInitialized(_this), "image", void 0);
739
- _defineProperty(_assertThisInitialized(_this), "type", void 0);
772
+ _define_property(_assert_this_initialized(_this), "image", void 0);
773
+ _define_property(_assert_this_initialized(_this), "type", void 0);
740
774
  var _props_image;
741
775
  _this.image = (_props_image = props === null || props === void 0 ? void 0 : props.image) !== null && _props_image !== void 0 ? _props_image : "";
742
776
  var _props_type;
@@ -759,18 +793,18 @@ export function initImageOptions(options) {
759
793
  }
760
794
  export var ObjectDataBind = function ObjectDataBind() {
761
795
  "use strict";
762
- _classCallCheck(this, ObjectDataBind);
796
+ _class_call_check(this, ObjectDataBind);
763
797
  };
764
798
  export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
765
799
  "use strict";
766
800
  _inherits(AmountDataBind, ObjectDataBind);
767
- var _super = _createSuper(AmountDataBind);
801
+ var _super = _create_super(AmountDataBind);
768
802
  function AmountDataBind(props) {
769
- _classCallCheck(this, AmountDataBind);
803
+ _class_call_check(this, AmountDataBind);
770
804
  var _this;
771
805
  _this = _super.call(this);
772
- _defineProperty(_assertThisInitialized(_this), "amount", void 0);
773
- _defineProperty(_assertThisInitialized(_this), "currency", void 0);
806
+ _define_property(_assert_this_initialized(_this), "amount", void 0);
807
+ _define_property(_assert_this_initialized(_this), "currency", void 0);
774
808
  _this.amount = new DataBind(props === null || props === void 0 ? void 0 : props.amount);
775
809
  _this.currency = new DataBind(props === null || props === void 0 ? void 0 : props.currency);
776
810
  return _this;
@@ -779,9 +813,9 @@ export var AmountDataBind = /*#__PURE__*/ function(ObjectDataBind) {
779
813
  }(ObjectDataBind);
780
814
  export var AmountValue = function AmountValue(props) {
781
815
  "use strict";
782
- _classCallCheck(this, AmountValue);
783
- _defineProperty(this, "amount", void 0);
784
- _defineProperty(this, "currency", void 0);
816
+ _class_call_check(this, AmountValue);
817
+ _define_property(this, "amount", void 0);
818
+ _define_property(this, "currency", void 0);
785
819
  var _props_amount;
786
820
  this.amount = (_props_amount = props === null || props === void 0 ? void 0 : props.amount) !== null && _props_amount !== void 0 ? _props_amount : "";
787
821
  var _props_currency;
@@ -790,13 +824,13 @@ export var AmountValue = function AmountValue(props) {
790
824
  export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
791
825
  "use strict";
792
826
  _inherits(RangeDataBind, ObjectDataBind);
793
- var _super = _createSuper(RangeDataBind);
827
+ var _super = _create_super(RangeDataBind);
794
828
  function RangeDataBind(props) {
795
- _classCallCheck(this, RangeDataBind);
829
+ _class_call_check(this, RangeDataBind);
796
830
  var _this;
797
831
  _this = _super.call(this);
798
- _defineProperty(_assertThisInitialized(_this), "min", void 0);
799
- _defineProperty(_assertThisInitialized(_this), "max", void 0);
832
+ _define_property(_assert_this_initialized(_this), "min", void 0);
833
+ _define_property(_assert_this_initialized(_this), "max", void 0);
800
834
  _this.min = new DataBind(props === null || props === void 0 ? void 0 : props.min);
801
835
  _this.max = new DataBind(props === null || props === void 0 ? void 0 : props.max);
802
836
  return _this;
@@ -805,9 +839,9 @@ export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
805
839
  }(ObjectDataBind);
806
840
  export var RangeDateValue = function RangeDateValue(props) {
807
841
  "use strict";
808
- _classCallCheck(this, RangeDateValue);
809
- _defineProperty(this, "min", void 0);
810
- _defineProperty(this, "max", void 0);
842
+ _class_call_check(this, RangeDateValue);
843
+ _define_property(this, "min", void 0);
844
+ _define_property(this, "max", void 0);
811
845
  var _props_min;
812
846
  this.min = (_props_min = props === null || props === void 0 ? void 0 : props.min) !== null && _props_min !== void 0 ? _props_min : "";
813
847
  var _props_max;
@@ -815,13 +849,13 @@ export var RangeDateValue = function RangeDateValue(props) {
815
849
  };
816
850
  export var AddressValue = function AddressValue(props) {
817
851
  "use strict";
818
- _classCallCheck(this, AddressValue);
819
- _defineProperty(this, "city", void 0);
820
- _defineProperty(this, "cityDisplay", void 0);
821
- _defineProperty(this, "district", void 0);
822
- _defineProperty(this, "districtDisplay", void 0);
823
- _defineProperty(this, "province", void 0);
824
- _defineProperty(this, "provinceDisplay", void 0);
852
+ _class_call_check(this, AddressValue);
853
+ _define_property(this, "city", void 0);
854
+ _define_property(this, "cityDisplay", void 0);
855
+ _define_property(this, "district", void 0);
856
+ _define_property(this, "districtDisplay", void 0);
857
+ _define_property(this, "province", void 0);
858
+ _define_property(this, "provinceDisplay", void 0);
825
859
  var _props_city;
826
860
  this.city = (_props_city = props === null || props === void 0 ? void 0 : props.city) !== null && _props_city !== void 0 ? _props_city : "";
827
861
  var _props_cityDisplay;
@@ -838,13 +872,13 @@ export var AddressValue = function AddressValue(props) {
838
872
  export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
839
873
  "use strict";
840
874
  _inherits(CalcDataBind, ObjectDataBind);
841
- var _super = _createSuper(CalcDataBind);
875
+ var _super = _create_super(CalcDataBind);
842
876
  function CalcDataBind(props) {
843
- _classCallCheck(this, CalcDataBind);
877
+ _class_call_check(this, CalcDataBind);
844
878
  var _this;
845
879
  _this = _super.call(this);
846
- _defineProperty(_assertThisInitialized(_this), "result", void 0);
847
- _defineProperty(_assertThisInitialized(_this), "unit", void 0);
880
+ _define_property(_assert_this_initialized(_this), "result", void 0);
881
+ _define_property(_assert_this_initialized(_this), "unit", void 0);
848
882
  _this.result = new DataBind(props === null || props === void 0 ? void 0 : props.result);
849
883
  _this.unit = new DataBind(props === null || props === void 0 ? void 0 : props.unit);
850
884
  return _this;
@@ -853,9 +887,9 @@ export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
853
887
  }(ObjectDataBind);
854
888
  export var CalcValue = function CalcValue(props) {
855
889
  "use strict";
856
- _classCallCheck(this, CalcValue);
857
- _defineProperty(this, "result", void 0);
858
- _defineProperty(this, "unit", void 0);
890
+ _class_call_check(this, CalcValue);
891
+ _define_property(this, "result", void 0);
892
+ _define_property(this, "unit", void 0);
859
893
  var _props_result;
860
894
  this.result = (_props_result = props === null || props === void 0 ? void 0 : props.result) !== null && _props_result !== void 0 ? _props_result : 0;
861
895
  var _props_unit;
@@ -893,6 +927,7 @@ export var AMOUNT_TYPE;
893
927
  })(AMOUNT_TYPE || (AMOUNT_TYPE = {}));
894
928
  export var COMMON_SETTING_TYPE;
895
929
  (function(COMMON_SETTING_TYPE) {
930
+ COMMON_SETTING_TYPE["DEFAULT_DISPLAY"] = "defaultDisplay";
896
931
  COMMON_SETTING_TYPE["REQUIRED"] = "required";
897
932
  COMMON_SETTING_TYPE["IS_HIDE"] = "isHide";
898
933
  COMMON_SETTING_TYPE["IS_SHOW_UNIT"] = "isShowUnit";
@@ -933,33 +968,33 @@ export var PAGE_STATUS;
933
968
  * @public
934
969
  */ export var OperationItem = function OperationItem(props) {
935
970
  "use strict";
936
- _classCallCheck(this, OperationItem);
971
+ _class_call_check(this, OperationItem);
937
972
  /**
938
973
  * 是否显示
939
974
  * @defaultValue true
940
975
  * @public
941
- */ _defineProperty(this, "isShow", void 0);
976
+ */ _define_property(this, "isShow", void 0);
942
977
  /**
943
978
  * 优先访问流程表单
944
979
  * @defaultValue false
945
980
  * @public
946
- */ _defineProperty(this, "priorityProcess", void 0);
981
+ */ _define_property(this, "priorityProcess", void 0);
947
982
  /**
948
983
  * 表单ID
949
984
  * @defaultValue ''
950
985
  * @public
951
- */ _defineProperty(this, "formKey", void 0);
986
+ */ _define_property(this, "formKey", void 0);
952
987
  /**
953
988
  * 显示文字
954
989
  * @defaultValue ''
955
990
  * @public
956
- */ _defineProperty(this, "content", void 0);
991
+ */ _define_property(this, "content", void 0);
957
992
  /**
958
993
  * 打开方式
959
994
  * @defaultValue 'modal'
960
995
  * @public
961
- */ _defineProperty(this, "openType", void 0);
962
- _defineProperty(this, "type", void 0);
996
+ */ _define_property(this, "openType", void 0);
997
+ _define_property(this, "type", void 0);
963
998
  var _props_isShow;
964
999
  this.isShow = (_props_isShow = props === null || props === void 0 ? void 0 : props.isShow) !== null && _props_isShow !== void 0 ? _props_isShow : true;
965
1000
  var _props_content;
@@ -975,12 +1010,12 @@ export var PAGE_STATUS;
975
1010
  };
976
1011
  export var ViewOperationItem = function ViewOperationItem(props) {
977
1012
  "use strict";
978
- _classCallCheck(this, ViewOperationItem);
1013
+ _class_call_check(this, ViewOperationItem);
979
1014
  var _props_headers;
980
- _defineProperty(this, "id", void 0);
981
- _defineProperty(this, "title", void 0);
982
- _defineProperty(this, "filters", void 0);
983
- _defineProperty(this, "headers", void 0);
1015
+ _define_property(this, "id", void 0);
1016
+ _define_property(this, "title", void 0);
1017
+ _define_property(this, "filters", void 0);
1018
+ _define_property(this, "headers", void 0);
984
1019
  var _props_id;
985
1020
  this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(8);
986
1021
  var _props_title;
@@ -995,13 +1030,13 @@ export var ViewOperationItem = function ViewOperationItem(props) {
995
1030
  * 自定义权限项,用于Vue容器上,注册自定义的权限
996
1031
  */ export var CustomPermissionItem = function CustomPermissionItem(props) {
997
1032
  "use strict";
998
- _classCallCheck(this, CustomPermissionItem);
1033
+ _class_call_check(this, CustomPermissionItem);
999
1034
  /**
1000
1035
  * 人工输入的权限key
1001
- */ _defineProperty(this, "key", void 0);
1036
+ */ _define_property(this, "key", void 0);
1002
1037
  /**
1003
1038
  * 权限名称
1004
- */ _defineProperty(this, "caption", void 0);
1039
+ */ _define_property(this, "caption", void 0);
1005
1040
  var _props_key;
1006
1041
  this.key = (_props_key = props.key) !== null && _props_key !== void 0 ? _props_key : genNonDuplicateId(8);
1007
1042
  var _props_caption;
@@ -1009,11 +1044,11 @@ export var ViewOperationItem = function ViewOperationItem(props) {
1009
1044
  };
1010
1045
  export var BaseStyle = function BaseStyle(props) {
1011
1046
  "use strict";
1012
- _classCallCheck(this, BaseStyle);
1013
- _defineProperty(this, "width", void 0);
1014
- _defineProperty(this, "height", void 0);
1015
- _defineProperty(this, "widthConfig", void 0);
1016
- _defineProperty(this, "heightConfig", void 0);
1047
+ _class_call_check(this, BaseStyle);
1048
+ _define_property(this, "width", void 0);
1049
+ _define_property(this, "height", void 0);
1050
+ _define_property(this, "widthConfig", void 0);
1051
+ _define_property(this, "heightConfig", void 0);
1017
1052
  var _props_width;
1018
1053
  this.width = (_props_width = props === null || props === void 0 ? void 0 : props.width) !== null && _props_width !== void 0 ? _props_width : "";
1019
1054
  var _props_height;