@byteluck-fe/model-driven-shared 2.3.1-beta.6 → 2.3.1

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.
@@ -3,6 +3,33 @@ function _classCallCheck(instance, Constructor) {
3
3
  throw new TypeError("Cannot call a class as a function");
4
4
  }
5
5
  }
6
+ function _defineProperties(target, props) {
7
+ for(var i = 0; i < props.length; i++){
8
+ var descriptor = props[i];
9
+ descriptor.enumerable = descriptor.enumerable || false;
10
+ descriptor.configurable = true;
11
+ if ("value" in descriptor) descriptor.writable = true;
12
+ Object.defineProperty(target, descriptor.key, descriptor);
13
+ }
14
+ }
15
+ function _createClass(Constructor, protoProps, staticProps) {
16
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
17
+ if (staticProps) _defineProperties(Constructor, staticProps);
18
+ return Constructor;
19
+ }
20
+ function _defineProperty(obj, key, value) {
21
+ if (key in obj) {
22
+ Object.defineProperty(obj, key, {
23
+ value: value,
24
+ enumerable: true,
25
+ configurable: true,
26
+ writable: true
27
+ });
28
+ } else {
29
+ obj[key] = value;
30
+ }
31
+ return obj;
32
+ }
6
33
  // type InnerEventCode = 'click' | 'click-finish' | 'change'
7
34
  var eventMap = [
8
35
  {
@@ -126,15 +153,19 @@ export var EventLogic = /*#__PURE__*/ function() {
126
153
  function EventLogic() {
127
154
  _classCallCheck(this, EventLogic);
128
155
  }
129
- var _proto = EventLogic.prototype;
130
- _proto.getEventsFromKeys = function getEventsFromKeys(keys) {
131
- var eventKeys = typeof keys === "string" ? [
132
- keys
133
- ] : keys;
134
- return EventLogic.events.filter(function(item) {
135
- return eventKeys.includes(item.key);
136
- });
137
- };
156
+ _createClass(EventLogic, [
157
+ {
158
+ key: "getEventsFromKeys",
159
+ value: function getEventsFromKeys(keys) {
160
+ var eventKeys = typeof keys === "string" ? [
161
+ keys
162
+ ] : keys;
163
+ return EventLogic.events.filter(function(item) {
164
+ return eventKeys.includes(item.key);
165
+ });
166
+ }
167
+ }
168
+ ]);
138
169
  return EventLogic;
139
170
  }();
140
- EventLogic.events = eventMap;
171
+ _defineProperty(EventLogic, "events", eventMap);
@@ -3,6 +3,33 @@ function _classCallCheck(instance, Constructor) {
3
3
  throw new TypeError("Cannot call a class as a function");
4
4
  }
5
5
  }
6
+ function _defineProperties(target, props) {
7
+ for(var i = 0; i < props.length; i++){
8
+ var descriptor = props[i];
9
+ descriptor.enumerable = descriptor.enumerable || false;
10
+ descriptor.configurable = true;
11
+ if ("value" in descriptor) descriptor.writable = true;
12
+ Object.defineProperty(target, descriptor.key, descriptor);
13
+ }
14
+ }
15
+ function _createClass(Constructor, protoProps, staticProps) {
16
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
17
+ if (staticProps) _defineProperties(Constructor, staticProps);
18
+ return Constructor;
19
+ }
20
+ function _defineProperty(obj, key, value) {
21
+ if (key in obj) {
22
+ Object.defineProperty(obj, key, {
23
+ value: value,
24
+ enumerable: true,
25
+ configurable: true,
26
+ writable: true
27
+ });
28
+ } else {
29
+ obj[key] = value;
30
+ }
31
+ return obj;
32
+ }
6
33
  import OkI18n from "ok-i18n";
7
34
  import messages from "./locales";
8
35
  import { DEFAULT_LOCALE } from "./constant";
@@ -11,20 +38,31 @@ export var RulesMessage = /*#__PURE__*/ function() {
11
38
  function RulesMessage() {
12
39
  _classCallCheck(this, RulesMessage);
13
40
  }
14
- RulesMessage.getMessage = function getMessage(messageKey) {
15
- var variable = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
16
- return this.$i18n.$t(messageKey, "", variable);
17
- };
18
- RulesMessage.resetI18n = function resetI18n() {
19
- var locale = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : DEFAULT_LOCALE;
20
- return new OkI18n({
21
- locale: locale,
22
- messages: messages
23
- });
24
- };
25
- RulesMessage.setLocale = function setLocale(locale) {
26
- return this.$i18n.setLocale(locale);
27
- };
41
+ _createClass(RulesMessage, null, [
42
+ {
43
+ key: "getMessage",
44
+ value: function getMessage(messageKey) {
45
+ var variable = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
46
+ return this.$i18n.$t(messageKey, "", variable);
47
+ }
48
+ },
49
+ {
50
+ key: "resetI18n",
51
+ value: function resetI18n() {
52
+ var locale = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : DEFAULT_LOCALE;
53
+ return new OkI18n({
54
+ locale: locale,
55
+ messages: messages
56
+ });
57
+ }
58
+ },
59
+ {
60
+ key: "setLocale",
61
+ value: function setLocale(locale) {
62
+ return this.$i18n.setLocale(locale);
63
+ }
64
+ }
65
+ ]);
28
66
  return RulesMessage;
29
67
  }();
30
- RulesMessage.$i18n = RulesMessage.resetI18n();
68
+ _defineProperty(RulesMessage, "$i18n", RulesMessage.resetI18n());
package/dist/esm/calc.js CHANGED
@@ -3,6 +3,19 @@ function _classCallCheck(instance, Constructor) {
3
3
  throw new TypeError("Cannot call a class as a function");
4
4
  }
5
5
  }
6
+ function _defineProperty(obj, key, value) {
7
+ if (key in obj) {
8
+ Object.defineProperty(obj, key, {
9
+ value: value,
10
+ enumerable: true,
11
+ configurable: true,
12
+ writable: true
13
+ });
14
+ } else {
15
+ obj[key] = value;
16
+ }
17
+ return obj;
18
+ }
6
19
  export var CALC_TOKEN_TYPE;
7
20
  (function(CALC_TOKEN_TYPE) {
8
21
  CALC_TOKEN_TYPE[/**
@@ -45,6 +58,24 @@ export var CALC_AGGREGATE_TYPE;
45
58
  export var CalcScriptEchoItem = function CalcScriptEchoItem(props) {
46
59
  "use strict";
47
60
  _classCallCheck(this, CalcScriptEchoItem);
61
+ /**
62
+ * 变量名称或者公式符号或者数值
63
+ * */ _defineProperty(this, "name", void 0);
64
+ /**
65
+ * 如果是变量的话,id为控件id
66
+ * */ _defineProperty(this, "id", void 0);
67
+ /**
68
+ * 当前值的类型
69
+ * */ _defineProperty(this, "type", void 0);
70
+ /**
71
+ * 绑定的是明细子表变量时,必须有subTableId
72
+ * */ _defineProperty(this, "subTableId", void 0);
73
+ /**
74
+ * 绑定的是明细子表内变量时,必须有subTableName
75
+ * */ _defineProperty(this, "subTableName", void 0);
76
+ /**
77
+ * 绑定的是其它明细子表内变量时,必须有aggregateType
78
+ * */ _defineProperty(this, "aggregateType", void 0);
48
79
  var _props_name;
49
80
  this.name = (_props_name = props === null || props === void 0 ? void 0 : props.name) !== null && _props_name !== void 0 ? _props_name : "";
50
81
  var _props_id;
@@ -6,7 +6,27 @@
6
6
  throw new TypeError("Cannot call a class as a function");
7
7
  }
8
8
  }
9
+ function _defineProperty(obj, key, value) {
10
+ if (key in obj) {
11
+ Object.defineProperty(obj, key, {
12
+ value: value,
13
+ enumerable: true,
14
+ configurable: true,
15
+ writable: true
16
+ });
17
+ } else {
18
+ obj[key] = value;
19
+ }
20
+ return obj;
21
+ }
9
22
  export var DepartmentEntity = function DepartmentEntity() {
10
23
  "use strict";
11
24
  _classCallCheck(this, DepartmentEntity);
25
+ _defineProperty(this, "department_en_name", void 0);
26
+ /**
27
+ * 部门编号
28
+ */ _defineProperty(this, "department_id", void 0);
29
+ /**
30
+ * 部门名称
31
+ */ _defineProperty(this, "department_name", void 0);
12
32
  };
@@ -6,7 +6,81 @@
6
6
  throw new TypeError("Cannot call a class as a function");
7
7
  }
8
8
  }
9
+ function _defineProperty(obj, key, value) {
10
+ if (key in obj) {
11
+ Object.defineProperty(obj, key, {
12
+ value: value,
13
+ enumerable: true,
14
+ configurable: true,
15
+ writable: true
16
+ });
17
+ } else {
18
+ obj[key] = value;
19
+ }
20
+ return obj;
21
+ }
9
22
  export var UserEntity = function UserEntity() {
10
23
  "use strict";
11
24
  _classCallCheck(this, UserEntity);
25
+ _defineProperty(this, "avatar_big", void 0);
26
+ _defineProperty(this, "avatar_small", void 0);
27
+ /**
28
+ * 员工头像地址
29
+ */ _defineProperty(this, "avatar_url", void 0);
30
+ /**
31
+ * 归属部门英文名称
32
+ */ _defineProperty(this, "belong_dept_en_name", void 0);
33
+ _defineProperty(this, "belong_dept_id_list", void 0);
34
+ /**
35
+ * 归属部门ID
36
+ */ _defineProperty(this, "belong_dept_ids", void 0);
37
+ /**
38
+ * 归属部门名称
39
+ */ _defineProperty(this, "belong_dept_name", void 0);
40
+ /**
41
+ * 当前语言版本
42
+ */ _defineProperty(this, "cookie_language_enum", void 0);
43
+ /**
44
+ * 部门id
45
+ */ _defineProperty(this, "department_id", void 0);
46
+ /**
47
+ * 部门名称
48
+ */ _defineProperty(this, "department_name", void 0);
49
+ /**
50
+ * 员工邮箱
51
+ */ _defineProperty(this, "email", void 0);
52
+ /**
53
+ * 工号
54
+ */ _defineProperty(this, "employee_card", void 0);
55
+ /**
56
+ * 英文名
57
+ */ _defineProperty(this, "employee_en_name", void 0);
58
+ /**
59
+ * 员工编号
60
+ */ _defineProperty(this, "employee_id", void 0);
61
+ /**
62
+ * 员工姓名
63
+ */ _defineProperty(this, "employee_name", void 0);
64
+ _defineProperty(this, "external_user", void 0);
65
+ /**
66
+ * 性别
67
+ */ _defineProperty(this, "gender", void 0);
68
+ _defineProperty(this, "is_show_chat_group", void 0);
69
+ /**
70
+ * 负责部门英文名称
71
+ */ _defineProperty(this, "manage_dept_en_name", void 0);
72
+ /**
73
+ * 负责部门ID
74
+ */ _defineProperty(this, "manage_dept_ids", void 0);
75
+ /**
76
+ * 负责部门名称
77
+ */ _defineProperty(this, "manage_dept_name", void 0);
78
+ _defineProperty(this, "msg_relation_type", void 0);
79
+ /**
80
+ * 职级
81
+ */ _defineProperty(this, "sequence", void 0);
82
+ /**
83
+ * 固定电话
84
+ */ _defineProperty(this, "telephone", void 0);
85
+ _defineProperty(this, "tenant_id", void 0);
12
86
  };
@@ -40,6 +40,33 @@ function _classCallCheck(instance, Constructor) {
40
40
  throw new TypeError("Cannot call a class as a function");
41
41
  }
42
42
  }
43
+ function _defineProperties(target, props) {
44
+ for(var i = 0; i < props.length; i++){
45
+ var descriptor = props[i];
46
+ descriptor.enumerable = descriptor.enumerable || false;
47
+ descriptor.configurable = true;
48
+ if ("value" in descriptor) descriptor.writable = true;
49
+ Object.defineProperty(target, descriptor.key, descriptor);
50
+ }
51
+ }
52
+ function _createClass(Constructor, protoProps, staticProps) {
53
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
54
+ if (staticProps) _defineProperties(Constructor, staticProps);
55
+ return Constructor;
56
+ }
57
+ function _defineProperty(obj, key, value) {
58
+ if (key in obj) {
59
+ Object.defineProperty(obj, key, {
60
+ value: value,
61
+ enumerable: true,
62
+ configurable: true,
63
+ writable: true
64
+ });
65
+ } else {
66
+ obj[key] = value;
67
+ }
68
+ return obj;
69
+ }
43
70
  function _iterableToArray(iter) {
44
71
  if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
45
72
  }
@@ -159,166 +186,182 @@ var Watcher = /*#__PURE__*/ function() {
159
186
  function Watcher() {
160
187
  _classCallCheck(this, Watcher);
161
188
  // 全局事件维护
162
- this._events = new Map();
163
- this.debug = false;
189
+ _defineProperty(this, "_events", new Map());
190
+ _defineProperty(this, "debug", false);
164
191
  }
165
- var _proto = Watcher.prototype;
166
- // 发布,触发事件
167
- _proto.emit = function emit(key) {
168
- for(var _len = arguments.length, payload = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
169
- payload[_key - 1] = arguments[_key];
170
- }
171
- var _this = this;
172
- return _asyncToGenerator(function() {
173
- var callbacksOrigin, results, _callbacks, _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, callback, result, e, err;
174
- return __generator(this, function(_state) {
175
- switch(_state.label){
176
- case 0:
177
- callbacksOrigin = _this._events.get(key);
178
- results = [];
179
- if (!callbacksOrigin) return [
180
- 3,
181
- 10
182
- ];
183
- _callbacks = callbacksOrigin.slice();
184
- _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
185
- _state.label = 1;
186
- case 1:
187
- _state.trys.push([
188
- 1,
189
- 8,
190
- 9,
191
- 10
192
- ]);
193
- _iterator = _callbacks[Symbol.iterator]();
194
- _state.label = 2;
195
- case 2:
196
- if (!!(_iteratorNormalCompletion = (_step = _iterator.next()).done)) return [
197
- 3,
198
- 7
199
- ];
200
- callback = _step.value;
201
- // 如果在执行期间卸载了对应的事件,则callback在origin里就不存在了,就不再执行
202
- if (!callbacksOrigin.includes(callback)) {
203
- return [
204
- 3,
205
- 6
206
- ];
207
- }
208
- _state.label = 3;
209
- case 3:
210
- _state.trys.push([
211
- 3,
212
- 5,
213
- ,
214
- 6
215
- ]);
216
- _this.debug && log.apply(void 0, [
217
- "正在执行 ".concat(key, " 事件: ").concat(callback.applyingPluginName ? "当前执行的插件为:" + callback.applyingPluginName : "", ", 当前执行函数的参数为").concat(payload.map(function() {
218
- return "%o";
219
- }).join(","), "。")
220
- ].concat(_toConsumableArray(payload)));
221
- return [
222
- 4,
223
- callback.apply(null, _toConsumableArray(payload))
224
- ];
225
- case 4:
226
- result = _state.sent();
227
- _this.debug && log.apply(void 0, [
228
- "正在执行 ".concat(key, " 事件: ").concat(callback.applyingPluginName ? "当前执行的插件为:" + callback.applyingPluginName : "", ", 当前执行函数的参数为").concat(payload.map(function() {
229
- return "%o";
230
- }).join(","), "; 函数的返回结果为%o")
231
- ].concat(_toConsumableArray(payload), [
232
- result
233
- ]));
234
- results.push(result);
235
- if (result === false) {
236
- return [
237
- 3,
238
- 7
239
- ];
240
- }
241
- return [
242
- 3,
243
- 6
244
- ];
245
- case 5:
246
- e = _state.sent();
247
- logerror(String(e));
248
- return [
249
- 3,
250
- 6
251
- ];
252
- case 6:
253
- _iteratorNormalCompletion = true;
254
- return [
255
- 3,
256
- 2
257
- ];
258
- case 7:
259
- return [
260
- 3,
261
- 10
262
- ];
263
- case 8:
264
- err = _state.sent();
265
- _didIteratorError = true;
266
- _iteratorError = err;
267
- return [
268
- 3,
269
- 10
270
- ];
271
- case 9:
272
- try {
273
- if (!_iteratorNormalCompletion && _iterator.return != null) {
274
- _iterator.return();
275
- }
276
- } finally{
277
- if (_didIteratorError) {
278
- throw _iteratorError;
279
- }
192
+ _createClass(Watcher, [
193
+ {
194
+ key: "emit",
195
+ value: // 发布,触发事件
196
+ function emit(key) {
197
+ for(var _len = arguments.length, payload = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
198
+ payload[_key - 1] = arguments[_key];
199
+ }
200
+ var _this = this;
201
+ return _asyncToGenerator(function() {
202
+ var callbacksOrigin, results, _callbacks, _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, callback, result, e, err;
203
+ return __generator(this, function(_state) {
204
+ switch(_state.label){
205
+ case 0:
206
+ callbacksOrigin = _this._events.get(key);
207
+ results = [];
208
+ if (!callbacksOrigin) return [
209
+ 3,
210
+ 10
211
+ ];
212
+ _callbacks = callbacksOrigin.slice();
213
+ _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
214
+ _state.label = 1;
215
+ case 1:
216
+ _state.trys.push([
217
+ 1,
218
+ 8,
219
+ 9,
220
+ 10
221
+ ]);
222
+ _iterator = _callbacks[Symbol.iterator]();
223
+ _state.label = 2;
224
+ case 2:
225
+ if (!!(_iteratorNormalCompletion = (_step = _iterator.next()).done)) return [
226
+ 3,
227
+ 7
228
+ ];
229
+ callback = _step.value;
230
+ // 如果在执行期间卸载了对应的事件,则callback在origin里就不存在了,就不再执行
231
+ if (!callbacksOrigin.includes(callback)) {
232
+ return [
233
+ 3,
234
+ 6
235
+ ];
236
+ }
237
+ _state.label = 3;
238
+ case 3:
239
+ _state.trys.push([
240
+ 3,
241
+ 5,
242
+ ,
243
+ 6
244
+ ]);
245
+ _this.debug && log.apply(void 0, [
246
+ "正在执行 ".concat(key, " 事件: ").concat(callback.applyingPluginName ? "当前执行的插件为:" + callback.applyingPluginName : "", ", 当前执行函数的参数为").concat(payload.map(function() {
247
+ return "%o";
248
+ }).join(","), "。")
249
+ ].concat(_toConsumableArray(payload)));
250
+ return [
251
+ 4,
252
+ callback.apply(null, _toConsumableArray(payload))
253
+ ];
254
+ case 4:
255
+ result = _state.sent();
256
+ _this.debug && log.apply(void 0, [
257
+ "正在执行 ".concat(key, " 事件: ").concat(callback.applyingPluginName ? "当前执行的插件为:" + callback.applyingPluginName : "", ", 当前执行函数的参数为").concat(payload.map(function() {
258
+ return "%o";
259
+ }).join(","), "; 函数的返回结果为%o")
260
+ ].concat(_toConsumableArray(payload), [
261
+ result
262
+ ]));
263
+ results.push(result);
264
+ if (result === false) {
265
+ return [
266
+ 3,
267
+ 7
268
+ ];
269
+ }
270
+ return [
271
+ 3,
272
+ 6
273
+ ];
274
+ case 5:
275
+ e = _state.sent();
276
+ logerror(String(e) + ":" + String(e.stack));
277
+ return [
278
+ 3,
279
+ 6
280
+ ];
281
+ case 6:
282
+ _iteratorNormalCompletion = true;
283
+ return [
284
+ 3,
285
+ 2
286
+ ];
287
+ case 7:
288
+ return [
289
+ 3,
290
+ 10
291
+ ];
292
+ case 8:
293
+ err = _state.sent();
294
+ _didIteratorError = true;
295
+ _iteratorError = err;
296
+ return [
297
+ 3,
298
+ 10
299
+ ];
300
+ case 9:
301
+ try {
302
+ if (!_iteratorNormalCompletion && _iterator.return != null) {
303
+ _iterator.return();
304
+ }
305
+ } finally{
306
+ if (_didIteratorError) {
307
+ throw _iteratorError;
308
+ }
309
+ }
310
+ return [
311
+ 7
312
+ ];
313
+ case 10:
314
+ return [
315
+ 2,
316
+ results
317
+ ];
280
318
  }
281
- return [
282
- 7
283
- ];
284
- case 10:
285
- return [
286
- 2,
287
- results
288
- ];
319
+ });
320
+ })();
321
+ }
322
+ },
323
+ {
324
+ key: "on",
325
+ value: // 订阅事件
326
+ function on(key, callback) {
327
+ if (this._events.has(key)) {
328
+ var _this__events_get;
329
+ (_this__events_get = this._events.get(key)) === null || _this__events_get === void 0 ? void 0 : _this__events_get.push(callback);
330
+ } else {
331
+ this._events.set(key, [
332
+ callback
333
+ ]);
289
334
  }
290
- });
291
- })();
292
- };
293
- // 订阅事件
294
- _proto.on = function on(key, callback) {
295
- if (this._events.has(key)) {
296
- var _this__events_get;
297
- (_this__events_get = this._events.get(key)) === null || _this__events_get === void 0 ? void 0 : _this__events_get.push(callback);
298
- } else {
299
- this._events.set(key, [
300
- callback
301
- ]);
302
- }
303
- };
304
- // 关闭指定的订阅中某一个回调
305
- _proto.off = function off(key, callback) {
306
- if (this._events.has(key)) {
307
- var callbacks = this._events.get(key);
308
- var index = callbacks === null || callbacks === void 0 ? void 0 : callbacks.indexOf(callback);
309
- callbacks === null || callbacks === void 0 ? void 0 : callbacks.splice(index, 1);
310
- }
311
- };
312
- // 清空指定订阅
313
- _proto.delete = function _delete(key) {
314
- if (this._events.has(key)) {
315
- this._events.delete(key);
335
+ }
336
+ },
337
+ {
338
+ key: "off",
339
+ value: // 关闭指定的订阅中某一个回调
340
+ function off(key, callback) {
341
+ if (this._events.has(key)) {
342
+ var callbacks = this._events.get(key);
343
+ var index = callbacks === null || callbacks === void 0 ? void 0 : callbacks.indexOf(callback);
344
+ callbacks === null || callbacks === void 0 ? void 0 : callbacks.splice(index, 1);
345
+ }
346
+ }
347
+ },
348
+ {
349
+ key: "delete",
350
+ value: // 清空指定订阅
351
+ function _delete(key) {
352
+ if (this._events.has(key)) {
353
+ this._events.delete(key);
354
+ }
355
+ }
356
+ },
357
+ {
358
+ key: "clear",
359
+ value: // 清空所有订阅
360
+ function clear() {
361
+ this._events = new Map();
362
+ }
316
363
  }
317
- };
318
- // 清空所有订阅
319
- _proto.clear = function clear() {
320
- this._events = new Map();
321
- };
364
+ ]);
322
365
  return Watcher;
323
366
  }();
324
367
  export { Watcher };
package/dist/index.umd.js CHANGED
@@ -1 +1 @@
1
- var te=(n,m,A)=>new Promise((f,g)=>{var b=B=>{try{h(A.next(B))}catch(d){g(d)}},S=B=>{try{h(A.throw(B))}catch(d){g(d)}},h=B=>B.done?f(B.value):Promise.resolve(B.value).then(b,S);h((A=A.apply(n,m)).next())});(function(n,m){typeof exports=="object"&&typeof module!="undefined"?m(exports):typeof define=="function"&&define.amd?define(["exports"],m):(n=typeof globalThis!="undefined"?globalThis:n||self,m(n.modelDrivenShared={}))})(this,function(n){"use strict";class m{}class A{}var f="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",g="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",b="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",S="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",h="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",B="{caption}\u5FC5\u586B",d="\u8BF7\u8F93\u5165\u6807\u9898",ae="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ne="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",re="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",se="\u8BF7\u7ED1\u5B9A\u8868\u5355",le="\u8BF7\u7ED1\u5B9A\u5217\u8868",ie="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",oe="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Ee="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ce="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Be="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Fe="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",me="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Ae="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",pe="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",he="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",de="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",ve="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",De="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",ge="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Ce="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",fe="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",be="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Se="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Ie="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",ye="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Me="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",$e="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",we="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Le="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ne="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",_e="\u8BF7\u9009\u62E9\u7701",Re="\u8BF7\u9009\u62E9\u5E02",Ue="\u8BF7\u9009\u62E9\u533A",Ve="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",ke="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Te="\u8BF7\u8F93\u5165\u5217\u5BBD",ze="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",je="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",xe="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ge="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ke="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Pe="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",qe="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",He="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",We="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Xe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Je="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Oe="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Qe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ze="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ye="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",tu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",au="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",nu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ru="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",su="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",lu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",iu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ou={isNotNumber:f,isNotString:g,isNotObject:b,isNotArray:S,isNotBoolean:h,runtimeRequired:B,pleaseEnterCaption:d,pleaseEnterCaptionTip:ae,pleaseEnterPlaceholder:ne,pleaseEnterFieldCode:re,pleaseEnterForm:se,pleaseEnterList:le,pleaseEnterProcess:ie,pleaseEnterLabel:oe,pleaseEnterValue:Ee,bizKeyNotBindFiled:ce,pleaseSelectOneField:Be,pleaseEnterNumberRange:Fe,pleaseEnterAValueGreaterThanMin:me,pleaseEnterAValueLessThanMax:Ae,numberRangeSetError:pe,stringRangeError:he,attachmentMaxSize:de,pleaseEnterTotalScoreSetting:ve,theTotalScoreMustNotBeLessThan1:De,scoreDefaultValueRange:ge,attachmentLimitError:Ce,PleaseReselectTheOptionalQuantity:fe,TheMaximumLengthIsGreaterThanTheMinimumLength:be,TheMinimumLengthIsGreaterThanTheMaximumLength:Se,PleaseSelectTheCorrectOptionSettings:Ie,optionIdIsRepeat:ye,optionIsRequired:Me,pleaseEnterDataCode:$e,pleaseEnterValueFieldCode:we,pleaseEnterSvcCode:Le,pleaseBindAtLeastOneDisplayValue:Ne,pleaseSelectProvince:_e,pleaseSelectCity:Re,pleaseSelectDistrict:Ue,limitRowsCannotBeLessThan0:Ve,TheNumberOfRowsCannotBeLessThanMinRows:ke,pleaseEnterColumnWidth:Te,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ze,pleaseCompleteAllRulesAndConditions:je,pleaseSelectControl:xe,pleaseSelectAtLeastOneColumn:Ge,pleaseSelectFillBackMode:Ke,pleaseSelectDashboard:Pe,rootNodeIsRequired:qe,theViewNameCannotBeEmpty:He,pleaseSelectOcrType:We,pleaseSelectAtLeastOneFieldToFillIn:Xe,pleaseChooseAtLeastOne:Je,pleaseEnterButtonContent:Oe,pleaseEnterDataCodeInDataSetting:Qe,pleaseEnterValueFieldCodeInDataSetting:Ze,pleaseEnterSvcCodeInDataSetting:Ye,pleaseBindAtLeastOneDisplayValueInDataSetting:eu,rootNodeIsRequiredInDataSetting:uu,pleaseEnterMaxHeight:tu,pleaseEnter:au,pleaseEnterWatermark:nu,pleaseEnterFileName:ru,pleaseUploadAtLeastOnePrintTemplate:su,pleaseAssignBusiness:lu,pleaseAssignExternal:iu},Eu="Please enter a number",cu="Please enter a string",Bu="Please enter an object",Fu="Please enter an array",mu="Please enter a boolean",Au="{caption} Required",pu="Please enter the title",hu="Please enter the bubble prompt",du="Please enter the prompt text",vu="Please bind data items",Du="Please bind the form",gu="Please bind the list",Cu="Please bind the process",fu="Please enter the displayed value",bu="Please enter the stored value",Su="The document number is not bound to the data item",Iu="Please select at least one display field",yu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Mu="Please enter a value greater than or equal to {min}",$u="Please enter a value less than or equal to {max}",wu="The value range is set incorrectly",Lu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Nu="The attachment size must be between 0MB and 1000MB",_u="Please fill in the total score setting",Ru="The total score cannot be less than 1",Uu="The default value must be between {min} and {max}",Vu="The number of attachments uploaded must be between {min} and {max}",ku="Please re-select the optional quantity",Tu="The maximum length of the control must be greater than the minimum length",zu="The minimum length of the control must be less than the maximum length",ju="Please select the correct option setting",xu="Option ID cannot be repeated",Gu="Please enter at least one option",Ku="Please bind the data source",Pu="Please bind the stored value",qu="Please bind the service",Hu="At least one display value must be bound",Wu="Please select a province",Xu="Please select a city",Ju="Please select a district",Ou="The minimum number of lines to fill in cannot be less than 0",Qu="The number of rows cannot be less than {min} rows",Zu="Please enter the column width",Yu="Please set the logical relationship of all rule conditions",et="Please complete all rules and conditions",ut="please select control",tt="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",at="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",nt="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",rt="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",st="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",lt="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",it="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ot="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Et="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ct="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Bt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ft="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",mt="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",At="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",pt="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ht="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",dt="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",vt="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Dt={isNotNumber:Eu,isNotString:cu,isNotObject:Bu,isNotArray:Fu,isNotBoolean:mu,runtimeRequired:Au,pleaseEnterCaption:pu,pleaseEnterCaptionTip:hu,pleaseEnterPlaceholder:du,pleaseEnterFieldCode:vu,pleaseEnterForm:Du,pleaseEnterList:gu,pleaseEnterProcess:Cu,pleaseEnterLabel:fu,pleaseEnterValue:bu,bizKeyNotBindFiled:Su,pleaseSelectOneField:Iu,pleaseEnterNumberRange:yu,pleaseEnterAValueGreaterThanMin:Mu,pleaseEnterAValueLessThanMax:$u,numberRangeSetError:wu,stringRangeError:Lu,attachmentMaxSize:Nu,pleaseEnterTotalScoreSetting:_u,theTotalScoreMustNotBeLessThan1:Ru,scoreDefaultValueRange:Uu,attachmentLimitError:Vu,PleaseReselectTheOptionalQuantity:ku,TheMaximumLengthIsGreaterThanTheMinimumLength:Tu,TheMinimumLengthIsGreaterThanTheMaximumLength:zu,PleaseSelectTheCorrectOptionSettings:ju,optionIdIsRepeat:xu,optionIsRequired:Gu,pleaseEnterDataCode:Ku,pleaseEnterValueFieldCode:Pu,pleaseEnterSvcCode:qu,pleaseBindAtLeastOneDisplayValue:Hu,pleaseSelectProvince:Wu,pleaseSelectCity:Xu,pleaseSelectDistrict:Ju,limitRowsCannotBeLessThan0:Ou,TheNumberOfRowsCannotBeLessThanMinRows:Qu,pleaseEnterColumnWidth:Zu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Yu,pleaseCompleteAllRulesAndConditions:et,pleaseSelectControl:ut,pleaseSelectDashboard:tt,theViewNameCannotBeEmpty:at,pleaseSelectOcrType:nt,pleaseSelectAtLeastOneFieldToFillIn:rt,pleaseChooseAtLeastOne:st,pleaseEnterButtonContent:lt,pleaseEnterDataCodeInDataSetting:it,pleaseEnterValueFieldCodeInDataSetting:ot,pleaseEnterSvcCodeInDataSetting:Et,pleaseBindAtLeastOneDisplayValueInDataSetting:ct,rootNodeIsRequiredInDataSetting:Bt,pleaseEnterMaxHeight:Ft,pleaseEnter:mt,pleaseEnterWatermark:At,pleaseEnterFileName:pt,pleaseUploadAtLeastOnePrintTemplate:ht,pleaseAssignBusiness:dt,pleaseAssignExternal:vt},gt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ct="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ft="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bt="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",St="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",It="{caption}\u5FC5\u9808",yt="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mt="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",$t="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wt="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Lt="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Nt="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",_t="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Rt="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ut="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vt="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",kt="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Tt="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zt="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",jt="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xt="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Gt="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Kt="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Pt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ht="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wt="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Xt="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Jt="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ot="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Qt="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zt="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Yt="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ea="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ua="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ta="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",aa="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",na="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ra="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sa="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",la="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ia="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",oa="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ea="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ca="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ba="please select control",Fa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ma="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Aa="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",pa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ha="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",da="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",va="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Da="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ga="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ba="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Sa="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ia="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ya="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ma="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",$a="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",wa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",La={isNotNumber:gt,isNotString:Ct,isNotObject:ft,isNotArray:bt,isNotBoolean:St,runtimeRequired:It,pleaseEnterCaption:yt,pleaseEnterCaptionTip:Mt,pleaseEnterPlaceholder:$t,pleaseEnterFieldCode:wt,pleaseEnterForm:Lt,pleaseEnterList:Nt,pleaseEnterProcess:_t,pleaseEnterLabel:Rt,pleaseEnterValue:Ut,bizKeyNotBindFiled:Vt,pleaseSelectOneField:kt,pleaseEnterNumberRange:Tt,pleaseEnterAValueGreaterThanMin:zt,pleaseEnterAValueLessThanMax:jt,numberRangeSetError:xt,stringRangeError:Gt,attachmentMaxSize:Kt,pleaseEnterTotalScoreSetting:Pt,theTotalScoreMustNotBeLessThan1:qt,scoreDefaultValueRange:Ht,attachmentLimitError:Wt,PleaseReselectTheOptionalQuantity:Xt,TheMaximumLengthIsGreaterThanTheMinimumLength:Jt,TheMinimumLengthIsGreaterThanTheMaximumLength:Ot,PleaseSelectTheCorrectOptionSettings:Qt,optionIdIsRepeat:Zt,optionIsRequired:Yt,pleaseEnterDataCode:ea,pleaseEnterValueFieldCode:ua,pleaseEnterSvcCode:ta,pleaseBindAtLeastOneDisplayValue:aa,pleaseSelectProvince:na,pleaseSelectCity:ra,pleaseSelectDistrict:sa,limitRowsCannotBeLessThan0:la,TheNumberOfRowsCannotBeLessThanMinRows:ia,pleaseEnterColumnWidth:oa,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ea,pleaseCompleteAllRulesAndConditions:ca,pleaseSelectControl:Ba,pleaseSelectDashboard:Fa,theViewNameCannotBeEmpty:ma,pleaseSelectOcrType:Aa,pleaseSelectAtLeastOneFieldToFillIn:pa,pleaseChooseAtLeastOne:ha,pleaseEnterButtonContent:da,pleaseEnterDataCodeInDataSetting:va,pleaseEnterValueFieldCodeInDataSetting:Da,pleaseEnterSvcCodeInDataSetting:ga,pleaseBindAtLeastOneDisplayValueInDataSetting:Ca,rootNodeIsRequiredInDataSetting:fa,pleaseEnterMaxHeight:ba,pleaseEnter:Sa,pleaseEnterWatermark:Ia,pleaseEnterFileName:ya,pleaseUploadAtLeastOnePrintTemplate:Ma,pleaseAssignBusiness:$a,pleaseAssignExternal:wa},Na={zhCN:ou,enUS:Dt,jaJP:La},V=(e=>(e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable",e))(V||{}),k=(e=>(e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN",e))(k||{});class _a{constructor(u){var t,a,l,o,i,E;this.name=(t=u==null?void 0:u.name)!=null?t:"",this.id=(a=u==null?void 0:u.id)!=null?a:"",this.type=(l=u==null?void 0:u.type)!=null?l:"Number",this.subTableId=(o=u==null?void 0:u.subTableId)!=null?o:void 0,this.subTableName=(i=u==null?void 0:u.subTableId)!=null?i:void 0,this.aggregateType=(E=u==null?void 0:u.aggregateType)!=null?E:void 0}}const T="zh-CN",Ra=()=>{};var z=(e=>(e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e))(z||{}),I=(e=>(e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e))(I||{}),j=(e=>(e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field",e))(j||{});const Ua={array:"array-column",auto_number:"auto-number-column",decimal:"decimal-column",department:"department-column",file:"file-column",image:"image-column",location:"location-column",people:"employee-column",text:"text-column",timescope:"timescope-column",timestamp:"timestamp-column",varchar:"varchar-column",relation:"varchar-column"};var x=(e=>(e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime",e))(x||{});const G="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Va=G+"0123456789";function ka(e=15){let u="";for(let t=0;t<e;t++){const a=t===0?G:Va,l=Math.random()*a.length;u+=a[parseInt(String(l),10)]}return u}const y=console;function K(...e){const u=e.slice(1);y.warn("\u{1F9D0} Driven Warning:"+e[0],...u)}function M(...e){const u=e.slice(1);y.log("\u{1F680} Driven Log:"+e[0],...u)}function Ta(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}class $ extends Error{constructor(u){super(u),this.name="\u{1F4A5} Driven Error",this.message=u?Ta(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}"}}class za extends ${constructor(u){super(u),this.name="\u{1F6A8} Driven Reference Error"}}function ja(e){throw new $(e)}function xa(e){throw new za(e)}function P(e){y.error(new $(e))}function w(e,u){Array.isArray(e)&&e.map(t=>{switch(t.controlType){case"layout":w(t==null?void 0:t.children,u);break;case"search":w(t==null?void 0:t.children,u);break;case"form":u(t)}})}var Ga=Object.prototype.toString;function q(e,u){return Ga.call(e)==="[object "+u+"]"}function Ka(e){return q(e,"String")}function Pa(e){return q(e,"Promise")}var qa=function(){function e(u){var t,a;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((a=(t=u.messages)!==null&&t!==void 0?t:this.getPreImport(u.locale))!==null&&a!==void 0?a:{}),u.variableRegExp&&(this.variableRegExp=u.variableRegExp),this.setLocale(u.locale)}return e.prototype.setLocale=function(u){var t=this;this.locale=u,this._messageCache.clear();var a=this.getMessageData();Pa(a)?a.then(function(l){t._messageCache.clear(),t.messages[t.localeInMessageKey]=l}):this.messages[this.localeInMessageKey]=a},e.prototype.getMessageData=function(){var u=this._messages[this.localeInMessageKey];return typeof u=="function"?u():u},e.prototype.translate=function(u,t,a){var l=this.getMessage(u);return l?this.formatMessage(l,a):this.formatMessage(t,a)},e.prototype.getMessage=function(u){if(this._messageCache.has(u))return this._messageCache.get(u);var t=this.getPathArray(u),a=t.reduce(function(l,o,i,E){if(l!==void 0){var p=l[o];if(!(i===E.length-1&&!Ka(p)))return p}},this.message);return this._messageCache.set(u,a),a},e.prototype.formatMessage=function(u,t){return t?u.replace(this.variableRegExp,function(a,l){var o=t[l];return o!==void 0?String(o):a}):u},e.prototype.getPreImport=function(u){var t;if(window.okI18nPreImport){var a=this.getLocaleInMessageKey(u);return window.okI18nPreImport.hasOwnProperty(a)?window.okI18nPreImport:(t={},t[a]=window.okI18nPreImport,t)}},e.prototype.getPathArray=function(u){return u.split(".")},e.prototype.getLocaleInMessageKey=function(u){return u.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var u;return(u=this.messages[this.localeInMessageKey])!==null&&u!==void 0?u:{}},enumerable:!1,configurable:!0}),e}();const H=class{static getMessage(e,u={}){return this.$i18n.$t(e,"",u)}static resetI18n(e=T){return new qa({locale:e,messages:Na})}static setLocale(e){return this.$i18n.setLocale(e)}};let W=H;W.$i18n=H.resetI18n();function Ha(e,u,t){const a=u.replace(/\[(\d)]/g,(o,i)=>"."+i).split(".");let l=!1;return a.reduce((o,i,E,p)=>{const v=o;if(!!o){if(!Object.prototype.hasOwnProperty.call(o,i)){K(`Can not set ${u}'s ${i} property in current %o, Because there is no ${i} property on the %o`,o,o);return}return E===p.length-1&&!Object.is(v[i],t)&&(v[i]=t,l=!0),v[i]}},e),l}var Wa=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},L={exports:{}};(function(e){(function(u){var t=function(r,s,c){if(!v(s)||An(s)||pn(s)||hn(s)||p(s))return s;var F,D=0,ue=0;if(mn(s))for(F=[],ue=s.length;D<ue;D++)F.push(t(r,s[D],c));else{F={};for(var U in s)Object.prototype.hasOwnProperty.call(s,U)&&(F[r(U,c)]=t(r,s[U],c))}return F},a=function(r,s){s=s||{};var c=s.separator||"_",F=s.split||/(?=[A-Z])/;return r.split(F).join(c)},l=function(r){return dn(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(s,c){return c?c.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},o=function(r){var s=l(r);return s.substr(0,1).toUpperCase()+s.substr(1)},i=function(r,s){return a(r,s).toLowerCase()},E=Object.prototype.toString,p=function(r){return typeof r=="function"},v=function(r){return r===Object(r)},mn=function(r){return E.call(r)=="[object Array]"},An=function(r){return E.call(r)=="[object Date]"},pn=function(r){return E.call(r)=="[object RegExp]"},hn=function(r){return E.call(r)=="[object Boolean]"},dn=function(r){return r=r-0,r===r},R=function(r,s){var c=s&&"process"in s?s.process:s;return typeof c!="function"?r:function(F,D){return c(F,r,D)}},ee={camelize:l,decamelize:i,pascalize:o,depascalize:i,camelizeKeys:function(r,s){return t(R(l,s),r)},decamelizeKeys:function(r,s){return t(R(i,s),r,s)},pascalizeKeys:function(r,s){return t(R(o,s),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=ee:u.humps=ee})(Wa)})(L);var X={};Object.defineProperty(X,"__esModule",{value:!0});function N(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(u=>typeof u!="object"||u===null?u:N(u));{const u={};for(const t in e){const a=e[t];u[t]=typeof a!="object"||a===null?a:N(a)}return u}}var Xa=X.default=N;function Ja(e){if(e!==void 0)return typeof e=="object"?Xa(e):e}function Oa(e){return J(e)&&"zh"in e}function J(e){return Object.prototype.toString.call(e)==="[object Object]"}function Qa(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function C(e){return Array.isArray(e)}function O(e){return typeof e=="string"}function _(e){return typeof e=="number"}function Za(e){return typeof e=="function"}function Ya(e){return C(e)&&e.every(u=>O(u))}function en(e){return C(e)&&e.every(u=>_(u))}function un(e){return C(e)&&e.every(u=>_(u)||u==="")}function tn(e){return/^\[.*?]$/.test(e)}function an(e){return/^{.*?}$/.test(e)}function nn(e){return isNaN(parseFloat(e))?"":Number(e)}function rn(e){return e.reduce((u,t)=>(u.includes(t)||u.push(t),u),[])}function sn(e,u=500){let t;return function(...a){t||(t=setTimeout(()=>{e.apply(this,a),clearTimeout(t),t=null},u))}}function ln(e=0){return new Promise(u=>{setTimeout(u,e)})}function Q(e,u){let t=[];return Array.isArray(e)&&(t=e.map(a=>{let l=a;return Array.isArray(a==null?void 0:a.children)&&(l.children=Q(a.children,u)),u(l)})),t}function on(e){return L.exports.camelizeKeys(e)}function En(e){return L.exports.decamelizeKeys(e)}function cn(e){return Object.values(I).includes(e)}class Bn{constructor(){this._events=new Map,this.debug=!1}emit(u,...t){return te(this,null,function*(){const a=this._events.get(u),l=[];if(a){const o=a.slice();for(const i of o)if(!!a.includes(i))try{this.debug&&M(`\u6B63\u5728\u6267\u884C ${u} \u4E8B\u4EF6: ${i.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+i.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${t.map(()=>"%o").join(",")}\u3002`,...t);const E=yield i.apply(null,[...t]);if(this.debug&&M(`\u6B63\u5728\u6267\u884C ${u} \u4E8B\u4EF6: ${i.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+i.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${t.map(()=>"%o").join(",")}; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o`,...t,E),l.push(E),E===!1)break}catch(E){P(String(E))}}return l})}on(u,t){var a;this._events.has(u)?(a=this._events.get(u))==null||a.push(t):this._events.set(u,[t])}off(u,t){if(this._events.has(u)){const a=this._events.get(u),l=a==null?void 0:a.indexOf(t);a==null||a.splice(l,1)}}delete(u){this._events.has(u)&&this._events.delete(u)}clear(){this._events=new Map}}const Fn=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],Z=class{getEventsFromKeys(e){const u=typeof e=="string"?[e]:e;return Z.events.filter(t=>u.includes(t.key))}};let Y=Z;Y.events=Fn,n.CALC_AGGREGATE_TYPE=k,n.CALC_TOKEN_TYPE=V,n.CONTROL_BASE_TYPE=z,n.CONTROL_TYPE=I,n.CalcScriptEchoItem=_a,n.DEFAULT_LOCALE=T,n.DateType=x,n.DepartmentEntity=m,n.EventLogic=Y,n.FieldTypeToColumnType=Ua,n.FieldTypes=j,n.JSONCopy=Ja,n.RulesMessage=W,n.UserEntity=A,n.Watcher=Bn,n.camelizeKeys=on,n.debounce=sn,n.decamelizeKeys=En,n.error=ja,n.genNonDuplicateId=ka,n.getNotRepeatItems=rn,n.isArray=C,n.isBuiltInControls=cn,n.isFunction=Za,n.isJSONArray=tn,n.isJSONObject=an,n.isLanguageObject=Oa,n.isNumber=_,n.isNumberAndEmptyStringArray=un,n.isNumberArray=en,n.isObject=Qa,n.isPlainObject=J,n.isString=O,n.isStringArray=Ya,n.log=M,n.logerror=P,n.loop=Q,n.loopFormSchema=w,n.noop=Ra,n.referenceError=xa,n.toNumberOrEmpty=nn,n.updateValueFromKeys=Ha,n.wait=ln,n.warn=K,Object.defineProperty(n,"__esModule",{value:!0})});
1
+ var te=(n,m,A)=>new Promise((f,g)=>{var b=B=>{try{h(A.next(B))}catch(d){g(d)}},S=B=>{try{h(A.throw(B))}catch(d){g(d)}},h=B=>B.done?f(B.value):Promise.resolve(B.value).then(b,S);h((A=A.apply(n,m)).next())});(function(n,m){typeof exports=="object"&&typeof module!="undefined"?m(exports):typeof define=="function"&&define.amd?define(["exports"],m):(n=typeof globalThis!="undefined"?globalThis:n||self,m(n.modelDrivenShared={}))})(this,function(n){"use strict";class m{}class A{}var f="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",g="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",b="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",S="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",h="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",B="{caption}\u5FC5\u586B",d="\u8BF7\u8F93\u5165\u6807\u9898",ae="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",ne="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",re="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",se="\u8BF7\u7ED1\u5B9A\u8868\u5355",le="\u8BF7\u7ED1\u5B9A\u5217\u8868",ie="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",oe="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Ee="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ce="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Be="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",Fe="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",me="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",Ae="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",pe="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",he="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",de="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",ve="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",De="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",ge="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Ce="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",fe="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",be="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Se="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Ie="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",ye="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Me="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",$e="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",we="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Le="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ne="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",_e="\u8BF7\u9009\u62E9\u7701",Re="\u8BF7\u9009\u62E9\u5E02",Ue="\u8BF7\u9009\u62E9\u533A",Ve="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",ke="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Te="\u8BF7\u8F93\u5165\u5217\u5BBD",ze="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",je="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",xe="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ge="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ke="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Pe="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",qe="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",He="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",We="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Xe="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Je="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Oe="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Qe="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ze="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ye="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",uu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",tu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",au="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",nu="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ru="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",su="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",lu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",iu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ou={isNotNumber:f,isNotString:g,isNotObject:b,isNotArray:S,isNotBoolean:h,runtimeRequired:B,pleaseEnterCaption:d,pleaseEnterCaptionTip:ae,pleaseEnterPlaceholder:ne,pleaseEnterFieldCode:re,pleaseEnterForm:se,pleaseEnterList:le,pleaseEnterProcess:ie,pleaseEnterLabel:oe,pleaseEnterValue:Ee,bizKeyNotBindFiled:ce,pleaseSelectOneField:Be,pleaseEnterNumberRange:Fe,pleaseEnterAValueGreaterThanMin:me,pleaseEnterAValueLessThanMax:Ae,numberRangeSetError:pe,stringRangeError:he,attachmentMaxSize:de,pleaseEnterTotalScoreSetting:ve,theTotalScoreMustNotBeLessThan1:De,scoreDefaultValueRange:ge,attachmentLimitError:Ce,PleaseReselectTheOptionalQuantity:fe,TheMaximumLengthIsGreaterThanTheMinimumLength:be,TheMinimumLengthIsGreaterThanTheMaximumLength:Se,PleaseSelectTheCorrectOptionSettings:Ie,optionIdIsRepeat:ye,optionIsRequired:Me,pleaseEnterDataCode:$e,pleaseEnterValueFieldCode:we,pleaseEnterSvcCode:Le,pleaseBindAtLeastOneDisplayValue:Ne,pleaseSelectProvince:_e,pleaseSelectCity:Re,pleaseSelectDistrict:Ue,limitRowsCannotBeLessThan0:Ve,TheNumberOfRowsCannotBeLessThanMinRows:ke,pleaseEnterColumnWidth:Te,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ze,pleaseCompleteAllRulesAndConditions:je,pleaseSelectControl:xe,pleaseSelectAtLeastOneColumn:Ge,pleaseSelectFillBackMode:Ke,pleaseSelectDashboard:Pe,rootNodeIsRequired:qe,theViewNameCannotBeEmpty:He,pleaseSelectOcrType:We,pleaseSelectAtLeastOneFieldToFillIn:Xe,pleaseChooseAtLeastOne:Je,pleaseEnterButtonContent:Oe,pleaseEnterDataCodeInDataSetting:Qe,pleaseEnterValueFieldCodeInDataSetting:Ze,pleaseEnterSvcCodeInDataSetting:Ye,pleaseBindAtLeastOneDisplayValueInDataSetting:eu,rootNodeIsRequiredInDataSetting:uu,pleaseEnterMaxHeight:tu,pleaseEnter:au,pleaseEnterWatermark:nu,pleaseEnterFileName:ru,pleaseUploadAtLeastOnePrintTemplate:su,pleaseAssignBusiness:lu,pleaseAssignExternal:iu},Eu="Please enter a number",cu="Please enter a string",Bu="Please enter an object",Fu="Please enter an array",mu="Please enter a boolean",Au="{caption} Required",pu="Please enter the title",hu="Please enter the bubble prompt",du="Please enter the prompt text",vu="Please bind data items",Du="Please bind the form",gu="Please bind the list",Cu="Please bind the process",fu="Please enter the displayed value",bu="Please enter the stored value",Su="The document number is not bound to the data item",Iu="Please select at least one display field",yu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Mu="Please enter a value greater than or equal to {min}",$u="Please enter a value less than or equal to {max}",wu="The value range is set incorrectly",Lu="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Nu="The attachment size must be between 0MB and 1000MB",_u="Please fill in the total score setting",Ru="The total score cannot be less than 1",Uu="The default value must be between {min} and {max}",Vu="The number of attachments uploaded must be between {min} and {max}",ku="Please re-select the optional quantity",Tu="The maximum length of the control must be greater than the minimum length",zu="The minimum length of the control must be less than the maximum length",ju="Please select the correct option setting",xu="Option ID cannot be repeated",Gu="Please enter at least one option",Ku="Please bind the data source",Pu="Please bind the stored value",qu="Please bind the service",Hu="At least one display value must be bound",Wu="Please select a province",Xu="Please select a city",Ju="Please select a district",Ou="The minimum number of lines to fill in cannot be less than 0",Qu="The number of rows cannot be less than {min} rows",Zu="Please enter the column width",Yu="Please set the logical relationship of all rule conditions",et="Please complete all rules and conditions",ut="please select control",tt="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",at="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",nt="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",rt="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",st="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",lt="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",it="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ot="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Et="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ct="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Bt="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Ft="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",mt="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",At="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",pt="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ht="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",dt="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",vt="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Dt={isNotNumber:Eu,isNotString:cu,isNotObject:Bu,isNotArray:Fu,isNotBoolean:mu,runtimeRequired:Au,pleaseEnterCaption:pu,pleaseEnterCaptionTip:hu,pleaseEnterPlaceholder:du,pleaseEnterFieldCode:vu,pleaseEnterForm:Du,pleaseEnterList:gu,pleaseEnterProcess:Cu,pleaseEnterLabel:fu,pleaseEnterValue:bu,bizKeyNotBindFiled:Su,pleaseSelectOneField:Iu,pleaseEnterNumberRange:yu,pleaseEnterAValueGreaterThanMin:Mu,pleaseEnterAValueLessThanMax:$u,numberRangeSetError:wu,stringRangeError:Lu,attachmentMaxSize:Nu,pleaseEnterTotalScoreSetting:_u,theTotalScoreMustNotBeLessThan1:Ru,scoreDefaultValueRange:Uu,attachmentLimitError:Vu,PleaseReselectTheOptionalQuantity:ku,TheMaximumLengthIsGreaterThanTheMinimumLength:Tu,TheMinimumLengthIsGreaterThanTheMaximumLength:zu,PleaseSelectTheCorrectOptionSettings:ju,optionIdIsRepeat:xu,optionIsRequired:Gu,pleaseEnterDataCode:Ku,pleaseEnterValueFieldCode:Pu,pleaseEnterSvcCode:qu,pleaseBindAtLeastOneDisplayValue:Hu,pleaseSelectProvince:Wu,pleaseSelectCity:Xu,pleaseSelectDistrict:Ju,limitRowsCannotBeLessThan0:Ou,TheNumberOfRowsCannotBeLessThanMinRows:Qu,pleaseEnterColumnWidth:Zu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Yu,pleaseCompleteAllRulesAndConditions:et,pleaseSelectControl:ut,pleaseSelectDashboard:tt,theViewNameCannotBeEmpty:at,pleaseSelectOcrType:nt,pleaseSelectAtLeastOneFieldToFillIn:rt,pleaseChooseAtLeastOne:st,pleaseEnterButtonContent:lt,pleaseEnterDataCodeInDataSetting:it,pleaseEnterValueFieldCodeInDataSetting:ot,pleaseEnterSvcCodeInDataSetting:Et,pleaseBindAtLeastOneDisplayValueInDataSetting:ct,rootNodeIsRequiredInDataSetting:Bt,pleaseEnterMaxHeight:Ft,pleaseEnter:mt,pleaseEnterWatermark:At,pleaseEnterFileName:pt,pleaseUploadAtLeastOnePrintTemplate:ht,pleaseAssignBusiness:dt,pleaseAssignExternal:vt},gt="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ct="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ft="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bt="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",St="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",It="{caption}\u5FC5\u9808",yt="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Mt="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",$t="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wt="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Lt="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Nt="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",_t="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Rt="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ut="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Vt="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",kt="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Tt="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",zt="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",jt="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xt="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Gt="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Kt="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Pt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qt="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ht="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Wt="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Xt="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Jt="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ot="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Qt="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zt="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Yt="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ea="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ua="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ta="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",aa="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",na="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ra="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",sa="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",la="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ia="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",oa="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ea="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ca="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ba="please select control",Fa="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ma="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Aa="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",pa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ha="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",da="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",va="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Da="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ga="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ba="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Sa="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Ia="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ya="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ma="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",$a="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",wa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",La={isNotNumber:gt,isNotString:Ct,isNotObject:ft,isNotArray:bt,isNotBoolean:St,runtimeRequired:It,pleaseEnterCaption:yt,pleaseEnterCaptionTip:Mt,pleaseEnterPlaceholder:$t,pleaseEnterFieldCode:wt,pleaseEnterForm:Lt,pleaseEnterList:Nt,pleaseEnterProcess:_t,pleaseEnterLabel:Rt,pleaseEnterValue:Ut,bizKeyNotBindFiled:Vt,pleaseSelectOneField:kt,pleaseEnterNumberRange:Tt,pleaseEnterAValueGreaterThanMin:zt,pleaseEnterAValueLessThanMax:jt,numberRangeSetError:xt,stringRangeError:Gt,attachmentMaxSize:Kt,pleaseEnterTotalScoreSetting:Pt,theTotalScoreMustNotBeLessThan1:qt,scoreDefaultValueRange:Ht,attachmentLimitError:Wt,PleaseReselectTheOptionalQuantity:Xt,TheMaximumLengthIsGreaterThanTheMinimumLength:Jt,TheMinimumLengthIsGreaterThanTheMaximumLength:Ot,PleaseSelectTheCorrectOptionSettings:Qt,optionIdIsRepeat:Zt,optionIsRequired:Yt,pleaseEnterDataCode:ea,pleaseEnterValueFieldCode:ua,pleaseEnterSvcCode:ta,pleaseBindAtLeastOneDisplayValue:aa,pleaseSelectProvince:na,pleaseSelectCity:ra,pleaseSelectDistrict:sa,limitRowsCannotBeLessThan0:la,TheNumberOfRowsCannotBeLessThanMinRows:ia,pleaseEnterColumnWidth:oa,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Ea,pleaseCompleteAllRulesAndConditions:ca,pleaseSelectControl:Ba,pleaseSelectDashboard:Fa,theViewNameCannotBeEmpty:ma,pleaseSelectOcrType:Aa,pleaseSelectAtLeastOneFieldToFillIn:pa,pleaseChooseAtLeastOne:ha,pleaseEnterButtonContent:da,pleaseEnterDataCodeInDataSetting:va,pleaseEnterValueFieldCodeInDataSetting:Da,pleaseEnterSvcCodeInDataSetting:ga,pleaseBindAtLeastOneDisplayValueInDataSetting:Ca,rootNodeIsRequiredInDataSetting:fa,pleaseEnterMaxHeight:ba,pleaseEnter:Sa,pleaseEnterWatermark:Ia,pleaseEnterFileName:ya,pleaseUploadAtLeastOnePrintTemplate:Ma,pleaseAssignBusiness:$a,pleaseAssignExternal:wa},Na={zhCN:ou,enUS:Dt,jaJP:La},V=(e=>(e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable",e))(V||{}),k=(e=>(e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN",e))(k||{});class _a{constructor(u){var t,a,l,o,i,E;this.name=(t=u==null?void 0:u.name)!=null?t:"",this.id=(a=u==null?void 0:u.id)!=null?a:"",this.type=(l=u==null?void 0:u.type)!=null?l:"Number",this.subTableId=(o=u==null?void 0:u.subTableId)!=null?o:void 0,this.subTableName=(i=u==null?void 0:u.subTableId)!=null?i:void 0,this.aggregateType=(E=u==null?void 0:u.aggregateType)!=null?E:void 0}}const T="zh-CN",Ra=()=>{};var z=(e=>(e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search",e))(z||{}),I=(e=>(e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2",e))(I||{}),j=(e=>(e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field",e))(j||{});const Ua={array:"array-column",auto_number:"auto-number-column",decimal:"decimal-column",department:"department-column",file:"file-column",image:"image-column",location:"location-column",people:"employee-column",text:"text-column",timescope:"timescope-column",timestamp:"timestamp-column",varchar:"varchar-column",relation:"varchar-column"};var x=(e=>(e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime",e))(x||{});const G="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Va=G+"0123456789";function ka(e=15){let u="";for(let t=0;t<e;t++){const a=t===0?G:Va,l=Math.random()*a.length;u+=a[parseInt(String(l),10)]}return u}const y=console;function K(...e){const u=e.slice(1);y.warn("\u{1F9D0} Driven Warning:"+e[0],...u)}function M(...e){const u=e.slice(1);y.log("\u{1F680} Driven Log:"+e[0],...u)}function Ta(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}class $ extends Error{constructor(u){super(u),this.name="\u{1F4A5} Driven Error",this.message=u?Ta(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}"}}class za extends ${constructor(u){super(u),this.name="\u{1F6A8} Driven Reference Error"}}function ja(e){throw new $(e)}function xa(e){throw new za(e)}function P(e){y.error(new $(e))}function w(e,u){Array.isArray(e)&&e.map(t=>{switch(t.controlType){case"layout":w(t==null?void 0:t.children,u);break;case"search":w(t==null?void 0:t.children,u);break;case"form":u(t)}})}var Ga=Object.prototype.toString;function q(e,u){return Ga.call(e)==="[object "+u+"]"}function Ka(e){return q(e,"String")}function Pa(e){return q(e,"Promise")}var qa=function(){function e(u){var t,a;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((a=(t=u.messages)!==null&&t!==void 0?t:this.getPreImport(u.locale))!==null&&a!==void 0?a:{}),u.variableRegExp&&(this.variableRegExp=u.variableRegExp),this.setLocale(u.locale)}return e.prototype.setLocale=function(u){var t=this;this.locale=u,this._messageCache.clear();var a=this.getMessageData();Pa(a)?a.then(function(l){t._messageCache.clear(),t.messages[t.localeInMessageKey]=l}):this.messages[this.localeInMessageKey]=a},e.prototype.getMessageData=function(){var u=this._messages[this.localeInMessageKey];return typeof u=="function"?u():u},e.prototype.translate=function(u,t,a){var l=this.getMessage(u);return l?this.formatMessage(l,a):this.formatMessage(t,a)},e.prototype.getMessage=function(u){if(this._messageCache.has(u))return this._messageCache.get(u);var t=this.getPathArray(u),a=t.reduce(function(l,o,i,E){if(l!==void 0){var p=l[o];if(!(i===E.length-1&&!Ka(p)))return p}},this.message);return this._messageCache.set(u,a),a},e.prototype.formatMessage=function(u,t){return t?u.replace(this.variableRegExp,function(a,l){var o=t[l];return o!==void 0?String(o):a}):u},e.prototype.getPreImport=function(u){var t;if(window.okI18nPreImport){var a=this.getLocaleInMessageKey(u);return window.okI18nPreImport.hasOwnProperty(a)?window.okI18nPreImport:(t={},t[a]=window.okI18nPreImport,t)}},e.prototype.getPathArray=function(u){return u.split(".")},e.prototype.getLocaleInMessageKey=function(u){return u.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var u;return(u=this.messages[this.localeInMessageKey])!==null&&u!==void 0?u:{}},enumerable:!1,configurable:!0}),e}();const H=class{static getMessage(e,u={}){return this.$i18n.$t(e,"",u)}static resetI18n(e=T){return new qa({locale:e,messages:Na})}static setLocale(e){return this.$i18n.setLocale(e)}};let W=H;W.$i18n=H.resetI18n();function Ha(e,u,t){const a=u.replace(/\[(\d)]/g,(o,i)=>"."+i).split(".");let l=!1;return a.reduce((o,i,E,p)=>{const v=o;if(!!o){if(!Object.prototype.hasOwnProperty.call(o,i)){K(`Can not set ${u}'s ${i} property in current %o, Because there is no ${i} property on the %o`,o,o);return}return E===p.length-1&&!Object.is(v[i],t)&&(v[i]=t,l=!0),v[i]}},e),l}var Wa=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},L={exports:{}};(function(e){(function(u){var t=function(r,s,c){if(!v(s)||An(s)||pn(s)||hn(s)||p(s))return s;var F,D=0,ue=0;if(mn(s))for(F=[],ue=s.length;D<ue;D++)F.push(t(r,s[D],c));else{F={};for(var U in s)Object.prototype.hasOwnProperty.call(s,U)&&(F[r(U,c)]=t(r,s[U],c))}return F},a=function(r,s){s=s||{};var c=s.separator||"_",F=s.split||/(?=[A-Z])/;return r.split(F).join(c)},l=function(r){return dn(r)?r:(r=r.replace(/[\-_\s]+(.)?/g,function(s,c){return c?c.toUpperCase():""}),r.substr(0,1).toLowerCase()+r.substr(1))},o=function(r){var s=l(r);return s.substr(0,1).toUpperCase()+s.substr(1)},i=function(r,s){return a(r,s).toLowerCase()},E=Object.prototype.toString,p=function(r){return typeof r=="function"},v=function(r){return r===Object(r)},mn=function(r){return E.call(r)=="[object Array]"},An=function(r){return E.call(r)=="[object Date]"},pn=function(r){return E.call(r)=="[object RegExp]"},hn=function(r){return E.call(r)=="[object Boolean]"},dn=function(r){return r=r-0,r===r},R=function(r,s){var c=s&&"process"in s?s.process:s;return typeof c!="function"?r:function(F,D){return c(F,r,D)}},ee={camelize:l,decamelize:i,pascalize:o,depascalize:i,camelizeKeys:function(r,s){return t(R(l,s),r)},decamelizeKeys:function(r,s){return t(R(i,s),r,s)},pascalizeKeys:function(r,s){return t(R(o,s),r)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=ee:u.humps=ee})(Wa)})(L);var X={};Object.defineProperty(X,"__esModule",{value:!0});function N(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(u=>typeof u!="object"||u===null?u:N(u));{const u={};for(const t in e){const a=e[t];u[t]=typeof a!="object"||a===null?a:N(a)}return u}}var Xa=X.default=N;function Ja(e){if(e!==void 0)return typeof e=="object"?Xa(e):e}function Oa(e){return J(e)&&"zh"in e}function J(e){return Object.prototype.toString.call(e)==="[object Object]"}function Qa(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function C(e){return Array.isArray(e)}function O(e){return typeof e=="string"}function _(e){return typeof e=="number"}function Za(e){return typeof e=="function"}function Ya(e){return C(e)&&e.every(u=>O(u))}function en(e){return C(e)&&e.every(u=>_(u))}function un(e){return C(e)&&e.every(u=>_(u)||u==="")}function tn(e){return/^\[.*?]$/.test(e)}function an(e){return/^{.*?}$/.test(e)}function nn(e){return isNaN(parseFloat(e))?"":Number(e)}function rn(e){return e.reduce((u,t)=>(u.includes(t)||u.push(t),u),[])}function sn(e,u=500){let t;return function(...a){t||(t=setTimeout(()=>{e.apply(this,a),clearTimeout(t),t=null},u))}}function ln(e=0){return new Promise(u=>{setTimeout(u,e)})}function Q(e,u){let t=[];return Array.isArray(e)&&(t=e.map(a=>{let l=a;return Array.isArray(a==null?void 0:a.children)&&(l.children=Q(a.children,u)),u(l)})),t}function on(e){return L.exports.camelizeKeys(e)}function En(e){return L.exports.decamelizeKeys(e)}function cn(e){return Object.values(I).includes(e)}class Bn{constructor(){this._events=new Map,this.debug=!1}emit(u,...t){return te(this,null,function*(){const a=this._events.get(u),l=[];if(a){const o=a.slice();for(const i of o)if(!!a.includes(i))try{this.debug&&M(`\u6B63\u5728\u6267\u884C ${u} \u4E8B\u4EF6: ${i.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+i.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${t.map(()=>"%o").join(",")}\u3002`,...t);const E=yield i.apply(null,[...t]);if(this.debug&&M(`\u6B63\u5728\u6267\u884C ${u} \u4E8B\u4EF6: ${i.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+i.applyingPluginName:""}, \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A${t.map(()=>"%o").join(",")}; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o`,...t,E),l.push(E),E===!1)break}catch(E){P(String(E)+":"+String(E.stack))}}return l})}on(u,t){var a;this._events.has(u)?(a=this._events.get(u))==null||a.push(t):this._events.set(u,[t])}off(u,t){if(this._events.has(u)){const a=this._events.get(u),l=a==null?void 0:a.indexOf(t);a==null||a.splice(l,1)}}delete(u){this._events.has(u)&&this._events.delete(u)}clear(){this._events=new Map}}const Fn=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],Z=class{getEventsFromKeys(e){const u=typeof e=="string"?[e]:e;return Z.events.filter(t=>u.includes(t.key))}};let Y=Z;Y.events=Fn,n.CALC_AGGREGATE_TYPE=k,n.CALC_TOKEN_TYPE=V,n.CONTROL_BASE_TYPE=z,n.CONTROL_TYPE=I,n.CalcScriptEchoItem=_a,n.DEFAULT_LOCALE=T,n.DateType=x,n.DepartmentEntity=m,n.EventLogic=Y,n.FieldTypeToColumnType=Ua,n.FieldTypes=j,n.JSONCopy=Ja,n.RulesMessage=W,n.UserEntity=A,n.Watcher=Bn,n.camelizeKeys=on,n.debounce=sn,n.decamelizeKeys=En,n.error=ja,n.genNonDuplicateId=ka,n.getNotRepeatItems=rn,n.isArray=C,n.isBuiltInControls=cn,n.isFunction=Za,n.isJSONArray=tn,n.isJSONObject=an,n.isLanguageObject=Oa,n.isNumber=_,n.isNumberAndEmptyStringArray=un,n.isNumberArray=en,n.isObject=Qa,n.isPlainObject=J,n.isString=O,n.isStringArray=Ya,n.log=M,n.logerror=P,n.loop=Q,n.loopFormSchema=w,n.noop=Ra,n.referenceError=xa,n.toNumberOrEmpty=nn,n.updateValueFromKeys=Ha,n.wait=ln,n.warn=K,Object.defineProperty(n,"__esModule",{value:!0})});
@@ -1,6 +1,6 @@
1
1
  import OkI18n from 'ok-i18n';
2
2
  import messages from './locales';
3
- type Message = Partial<typeof messages['zhCN']>;
3
+ type Message = Partial<(typeof messages)['zhCN']>;
4
4
  type Keys = 'caption' | 'placeholder' | 'max' | 'min';
5
5
  type Variable = {
6
6
  [key in Keys]?: string | number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-shared",
3
- "version": "2.3.1-beta.6",
3
+ "version": "2.3.1",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -30,5 +30,5 @@
30
30
  "humps": "^2.0.1",
31
31
  "ok-i18n": "^3.0.0"
32
32
  },
33
- "gitHead": "32d5ebc4eaf5d5d610271eb56ac806355881ad01"
33
+ "gitHead": "13fe5ff8c2f35d372919c3cab94053fbb896f3d5"
34
34
  }