@byteluck-fe/model-driven-core 2.5.0-alpha.16 → 2.5.0-alpha.19
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.
- package/dist/esm/framework/index.js +114 -105
- package/dist/index.umd.js +1 -1
- package/dist/types/framework/index.d.ts +19 -0
- package/package.json +2 -2
|
@@ -349,20 +349,27 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
349
349
|
/**
|
|
350
350
|
* 给filters和orders赋值
|
|
351
351
|
* */ function callFiltersAndOrders(props) {
|
|
352
|
-
var ref;
|
|
353
|
-
var
|
|
354
|
-
this.filters = (
|
|
352
|
+
var ref, ref37;
|
|
353
|
+
var ref38;
|
|
354
|
+
this.filters = (ref38 = props === null || props === void 0 ? void 0 : (ref = props.filters) === null || ref === void 0 ? void 0 : ref.map(function(item) {
|
|
355
|
+
if (item.children !== undefined) {
|
|
356
|
+
return new FieldFilterConditions(item);
|
|
357
|
+
}
|
|
358
|
+
return new FieldFilterCondition(item);
|
|
359
|
+
})) !== null && ref38 !== void 0 ? ref38 : [];
|
|
360
|
+
var ref39;
|
|
361
|
+
this.viewFilters = (ref39 = props === null || props === void 0 ? void 0 : (ref37 = props.viewFilters) === null || ref37 === void 0 ? void 0 : ref37.map(function(item) {
|
|
355
362
|
if (item.children !== undefined) {
|
|
356
363
|
return new FieldFilterConditions(item);
|
|
357
364
|
}
|
|
358
365
|
return new FieldFilterCondition(item);
|
|
359
|
-
})) !== null &&
|
|
366
|
+
})) !== null && ref39 !== void 0 ? ref39 : [];
|
|
360
367
|
if (_instanceof(this, DataSourceBind) || _instanceof(this, FillPayloadBind)) {
|
|
361
|
-
var
|
|
362
|
-
var
|
|
363
|
-
this.orders = (
|
|
368
|
+
var ref40, ref41;
|
|
369
|
+
var ref42;
|
|
370
|
+
this.orders = (ref42 = (ref40 = props) === null || ref40 === void 0 ? void 0 : (ref41 = ref40.orders) === null || ref41 === void 0 ? void 0 : ref41.map(function(item) {
|
|
364
371
|
return new DataSourceOrderItem(item);
|
|
365
|
-
})) !== null &&
|
|
372
|
+
})) !== null && ref42 !== void 0 ? ref42 : [];
|
|
366
373
|
}
|
|
367
374
|
}
|
|
368
375
|
/**
|
|
@@ -371,13 +378,15 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
371
378
|
*/ export var DataSourceBind = function DataSourceBind(props) {
|
|
372
379
|
"use strict";
|
|
373
380
|
_classCallCheck(this, DataSourceBind);
|
|
374
|
-
var
|
|
375
|
-
this.dataCode = (
|
|
376
|
-
var
|
|
377
|
-
this.appId = (
|
|
378
|
-
var
|
|
379
|
-
this.valueFieldCode = (
|
|
381
|
+
var ref48;
|
|
382
|
+
this.dataCode = (ref48 = props === null || props === void 0 ? void 0 : props.dataCode) !== null && ref48 !== void 0 ? ref48 : '';
|
|
383
|
+
var ref43;
|
|
384
|
+
this.appId = (ref43 = props === null || props === void 0 ? void 0 : props.appId) !== null && ref43 !== void 0 ? ref43 : '';
|
|
385
|
+
var ref44;
|
|
386
|
+
this.valueFieldCode = (ref44 = props === null || props === void 0 ? void 0 : props.valueFieldCode) !== null && ref44 !== void 0 ? ref44 : '';
|
|
380
387
|
this.displayBoList = [];
|
|
388
|
+
var ref45;
|
|
389
|
+
this.isOpenViewFilters = (ref45 = props === null || props === void 0 ? void 0 : props.isOpenViewFilters) !== null && ref45 !== void 0 ? ref45 : 0;
|
|
381
390
|
if (Array.isArray(props === null || props === void 0 ? void 0 : props.displayBoList)) {
|
|
382
391
|
var _this = this;
|
|
383
392
|
props === null || props === void 0 ? void 0 : props.displayBoList.map(function(item) {
|
|
@@ -385,10 +394,10 @@ export var DataSourceParamItem = function DataSourceParamItem(props) {
|
|
|
385
394
|
(ref = _this.displayBoList) === null || ref === void 0 ? void 0 : ref.push(new DisplayBoListItem(item));
|
|
386
395
|
});
|
|
387
396
|
}
|
|
388
|
-
var
|
|
389
|
-
this.showOrder = (
|
|
390
|
-
var
|
|
391
|
-
this.svcCode = (
|
|
397
|
+
var ref46;
|
|
398
|
+
this.showOrder = (ref46 = props === null || props === void 0 ? void 0 : props.showOrder) !== null && ref46 !== void 0 ? ref46 : true;
|
|
399
|
+
var ref47;
|
|
400
|
+
this.svcCode = (ref47 = props === null || props === void 0 ? void 0 : props.svcCode) !== null && ref47 !== void 0 ? ref47 : '';
|
|
392
401
|
callFiltersAndOrders.call(this, props);
|
|
393
402
|
};
|
|
394
403
|
export var SelectedContentConfig = function SelectedContentConfig(props) {
|
|
@@ -396,45 +405,45 @@ export var SelectedContentConfig = function SelectedContentConfig(props) {
|
|
|
396
405
|
_classCallCheck(this, SelectedContentConfig);
|
|
397
406
|
var ref;
|
|
398
407
|
this.dataCode = (ref = props === null || props === void 0 ? void 0 : props.dataCode) !== null && ref !== void 0 ? ref : '';
|
|
399
|
-
var
|
|
400
|
-
this.displayBoList = (
|
|
408
|
+
var ref49;
|
|
409
|
+
this.displayBoList = (ref49 = props === null || props === void 0 ? void 0 : props.displayBoList) !== null && ref49 !== void 0 ? ref49 : [];
|
|
401
410
|
};
|
|
402
411
|
export var LinkOperationOption = function LinkOperationOption(props) {
|
|
403
412
|
"use strict";
|
|
404
413
|
_classCallCheck(this, LinkOperationOption);
|
|
405
414
|
var ref;
|
|
406
415
|
this.code = (ref = props === null || props === void 0 ? void 0 : props.code) !== null && ref !== void 0 ? ref : 'view';
|
|
407
|
-
var ref47;
|
|
408
|
-
this.color = (ref47 = props === null || props === void 0 ? void 0 : props.color) !== null && ref47 !== void 0 ? ref47 : 'primary';
|
|
409
|
-
var ref48;
|
|
410
|
-
this.command = (ref48 = props === null || props === void 0 ? void 0 : props.command) !== null && ref48 !== void 0 ? ref48 : 'view';
|
|
411
|
-
var ref49;
|
|
412
|
-
this.confirmMessage = (ref49 = props === null || props === void 0 ? void 0 : props.confirmMessage) !== null && ref49 !== void 0 ? ref49 : undefined;
|
|
413
416
|
var ref50;
|
|
414
|
-
this.
|
|
417
|
+
this.color = (ref50 = props === null || props === void 0 ? void 0 : props.color) !== null && ref50 !== void 0 ? ref50 : 'primary';
|
|
415
418
|
var ref51;
|
|
416
|
-
this.
|
|
419
|
+
this.command = (ref51 = props === null || props === void 0 ? void 0 : props.command) !== null && ref51 !== void 0 ? ref51 : 'view';
|
|
417
420
|
var ref52;
|
|
418
|
-
this.
|
|
421
|
+
this.confirmMessage = (ref52 = props === null || props === void 0 ? void 0 : props.confirmMessage) !== null && ref52 !== void 0 ? ref52 : undefined;
|
|
419
422
|
var ref53;
|
|
420
|
-
this.
|
|
423
|
+
this.defaultState = (ref53 = props === null || props === void 0 ? void 0 : props.defaultState) !== null && ref53 !== void 0 ? ref53 : 'default';
|
|
421
424
|
var ref54;
|
|
422
|
-
this.
|
|
425
|
+
this.formKey = (ref54 = props === null || props === void 0 ? void 0 : props.formKey) !== null && ref54 !== void 0 ? ref54 : undefined;
|
|
423
426
|
var ref55;
|
|
424
|
-
this.
|
|
427
|
+
this.icon = (ref55 = props === null || props === void 0 ? void 0 : props.icon) !== null && ref55 !== void 0 ? ref55 : 'iconliulan1';
|
|
428
|
+
var ref56;
|
|
429
|
+
this.needConfirm = (ref56 = props === null || props === void 0 ? void 0 : props.needConfirm) !== null && ref56 !== void 0 ? ref56 : false;
|
|
430
|
+
var ref57;
|
|
431
|
+
this.openType = (ref57 = props === null || props === void 0 ? void 0 : props.openType) !== null && ref57 !== void 0 ? ref57 : 'modal';
|
|
432
|
+
var ref58;
|
|
433
|
+
this.priorityProcess = (ref58 = props === null || props === void 0 ? void 0 : props.priorityProcess) !== null && ref58 !== void 0 ? ref58 : true;
|
|
425
434
|
};
|
|
426
435
|
export var CustomAttributeItem = function CustomAttributeItem(props) {
|
|
427
436
|
"use strict";
|
|
428
437
|
_classCallCheck(this, CustomAttributeItem);
|
|
429
438
|
var ref;
|
|
430
|
-
var
|
|
431
|
-
this.name = (
|
|
432
|
-
var
|
|
433
|
-
this.key = (
|
|
434
|
-
var
|
|
435
|
-
this.value = (
|
|
439
|
+
var ref59;
|
|
440
|
+
this.name = (ref59 = props === null || props === void 0 ? void 0 : props.name) !== null && ref59 !== void 0 ? ref59 : '';
|
|
441
|
+
var ref60;
|
|
442
|
+
this.key = (ref60 = props === null || props === void 0 ? void 0 : props.key) !== null && ref60 !== void 0 ? ref60 : '';
|
|
443
|
+
var ref61;
|
|
444
|
+
this.value = (ref61 = props === null || props === void 0 ? void 0 : (ref = props.value) === null || ref === void 0 ? void 0 : ref.map(function(item) {
|
|
436
445
|
return new DisplayBoListItem(item);
|
|
437
|
-
})) !== null &&
|
|
446
|
+
})) !== null && ref61 !== void 0 ? ref61 : [];
|
|
438
447
|
};
|
|
439
448
|
export var SuperDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
|
|
440
449
|
"use strict";
|
|
@@ -445,10 +454,10 @@ export var SuperDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
|
|
|
445
454
|
var _this;
|
|
446
455
|
var ref;
|
|
447
456
|
_this = _super.call(this, props);
|
|
448
|
-
var
|
|
449
|
-
_this.attributes = (
|
|
457
|
+
var ref62;
|
|
458
|
+
_this.attributes = (ref62 = props === null || props === void 0 ? void 0 : (ref = props.attributes) === null || ref === void 0 ? void 0 : ref.map(function(item) {
|
|
450
459
|
return new CustomAttributeItem(item);
|
|
451
|
-
})) !== null &&
|
|
460
|
+
})) !== null && ref62 !== void 0 ? ref62 : [];
|
|
452
461
|
return _this;
|
|
453
462
|
}
|
|
454
463
|
return SuperDataSourceBind;
|
|
@@ -462,12 +471,12 @@ export var OrganizationDataSourceBind = /*#__PURE__*/ function(DataSourceBind) {
|
|
|
462
471
|
var _this;
|
|
463
472
|
var ref;
|
|
464
473
|
_this = _super.call(this, props);
|
|
465
|
-
var
|
|
466
|
-
_this.attributes = (
|
|
474
|
+
var ref63;
|
|
475
|
+
_this.attributes = (ref63 = props === null || props === void 0 ? void 0 : (ref = props.attributes) === null || ref === void 0 ? void 0 : ref.map(function(item) {
|
|
467
476
|
return new CustomAttributeItem(item);
|
|
468
|
-
})) !== null &&
|
|
469
|
-
var
|
|
470
|
-
_this.formCode = (
|
|
477
|
+
})) !== null && ref63 !== void 0 ? ref63 : [];
|
|
478
|
+
var ref64;
|
|
479
|
+
_this.formCode = (ref64 = props === null || props === void 0 ? void 0 : props.formCode) !== null && ref64 !== void 0 ? ref64 : '';
|
|
471
480
|
return _this;
|
|
472
481
|
}
|
|
473
482
|
return OrganizationDataSourceBind;
|
|
@@ -491,14 +500,14 @@ var FillBind = function FillBind(props) {
|
|
|
491
500
|
"use strict";
|
|
492
501
|
_classCallCheck(this, FillBind);
|
|
493
502
|
var ref;
|
|
494
|
-
var
|
|
495
|
-
this.dataCode = (
|
|
496
|
-
var
|
|
497
|
-
this.appId = (
|
|
498
|
-
var
|
|
499
|
-
this.fillList = (
|
|
503
|
+
var ref65;
|
|
504
|
+
this.dataCode = (ref65 = props === null || props === void 0 ? void 0 : props.dataCode) !== null && ref65 !== void 0 ? ref65 : '';
|
|
505
|
+
var ref66;
|
|
506
|
+
this.appId = (ref66 = props === null || props === void 0 ? void 0 : props.appId) !== null && ref66 !== void 0 ? ref66 : '';
|
|
507
|
+
var ref67;
|
|
508
|
+
this.fillList = (ref67 = props === null || props === void 0 ? void 0 : (ref = props.fillList) === null || ref === void 0 ? void 0 : ref.map(function(item) {
|
|
500
509
|
return new MultistageFillingItem(item);
|
|
501
|
-
})) !== null &&
|
|
510
|
+
})) !== null && ref67 !== void 0 ? ref67 : [];
|
|
502
511
|
};
|
|
503
512
|
/**
|
|
504
513
|
* FillPayloadBind 填充配置
|
|
@@ -530,8 +539,8 @@ var FillBind = function FillBind(props) {
|
|
|
530
539
|
_this = _super.call(this, props);
|
|
531
540
|
var ref;
|
|
532
541
|
_this.mode = (ref = props === null || props === void 0 ? void 0 : props.mode) !== null && ref !== void 0 ? ref : 'current';
|
|
533
|
-
var
|
|
534
|
-
_this.multiple = (
|
|
542
|
+
var ref68;
|
|
543
|
+
_this.multiple = (ref68 = props === null || props === void 0 ? void 0 : props.multiple) !== null && ref68 !== void 0 ? ref68 : false;
|
|
535
544
|
return _this;
|
|
536
545
|
}
|
|
537
546
|
return FillBackBind;
|
|
@@ -541,20 +550,20 @@ export var Language = function Language(props) {
|
|
|
541
550
|
_classCallCheck(this, Language);
|
|
542
551
|
var ref;
|
|
543
552
|
this.zh = (ref = props === null || props === void 0 ? void 0 : props.zh) !== null && ref !== void 0 ? ref : '';
|
|
544
|
-
var
|
|
545
|
-
this.en = (
|
|
546
|
-
var
|
|
547
|
-
this.ja = (
|
|
553
|
+
var ref69;
|
|
554
|
+
this.en = (ref69 = props === null || props === void 0 ? void 0 : props.en) !== null && ref69 !== void 0 ? ref69 : '';
|
|
555
|
+
var ref70;
|
|
556
|
+
this.ja = (ref70 = props === null || props === void 0 ? void 0 : props.ja) !== null && ref70 !== void 0 ? ref70 : '';
|
|
548
557
|
};
|
|
549
558
|
export var RegularRules = function RegularRules(props) {
|
|
550
559
|
"use strict";
|
|
551
560
|
_classCallCheck(this, RegularRules);
|
|
552
561
|
var ref;
|
|
553
562
|
this.stencilName = (ref = props === null || props === void 0 ? void 0 : props.stencilName) !== null && ref !== void 0 ? ref : '';
|
|
554
|
-
var
|
|
555
|
-
this.expression = (
|
|
556
|
-
var
|
|
557
|
-
this.errMessage = (
|
|
563
|
+
var ref71;
|
|
564
|
+
this.expression = (ref71 = props === null || props === void 0 ? void 0 : props.expression) !== null && ref71 !== void 0 ? ref71 : '';
|
|
565
|
+
var ref72;
|
|
566
|
+
this.errMessage = (ref72 = props === null || props === void 0 ? void 0 : props.errMessage) !== null && ref72 !== void 0 ? ref72 : '';
|
|
558
567
|
};
|
|
559
568
|
/**
|
|
560
569
|
* 选项设置-自定义选项
|
|
@@ -564,10 +573,10 @@ export var RegularRules = function RegularRules(props) {
|
|
|
564
573
|
_classCallCheck(this, OptionSetting);
|
|
565
574
|
var ref;
|
|
566
575
|
this.id = (ref = props === null || props === void 0 ? void 0 : props.id) !== null && ref !== void 0 ? ref : genNonDuplicateId(8);
|
|
567
|
-
var
|
|
568
|
-
this.label = (
|
|
569
|
-
var
|
|
570
|
-
this.value = (
|
|
576
|
+
var ref73;
|
|
577
|
+
this.label = (ref73 = props === null || props === void 0 ? void 0 : props.label) !== null && ref73 !== void 0 ? ref73 : '';
|
|
578
|
+
var ref74;
|
|
579
|
+
this.value = (ref74 = props === null || props === void 0 ? void 0 : props.value) !== null && ref74 !== void 0 ? ref74 : this.label;
|
|
571
580
|
};
|
|
572
581
|
export var ImageOptionSetting = /*#__PURE__*/ function(OptionSetting) {
|
|
573
582
|
"use strict";
|
|
@@ -579,8 +588,8 @@ export var ImageOptionSetting = /*#__PURE__*/ function(OptionSetting) {
|
|
|
579
588
|
_this = _super.call(this, props);
|
|
580
589
|
var ref;
|
|
581
590
|
_this.image = (ref = props === null || props === void 0 ? void 0 : props.image) !== null && ref !== void 0 ? ref : '';
|
|
582
|
-
var
|
|
583
|
-
_this.type = (
|
|
591
|
+
var ref75;
|
|
592
|
+
_this.type = (ref75 = props === null || props === void 0 ? void 0 : props.type) !== null && ref75 !== void 0 ? ref75 : 'src';
|
|
584
593
|
return _this;
|
|
585
594
|
}
|
|
586
595
|
return ImageOptionSetting;
|
|
@@ -620,8 +629,8 @@ export var AmountValue = function AmountValue(props) {
|
|
|
620
629
|
_classCallCheck(this, AmountValue);
|
|
621
630
|
var ref;
|
|
622
631
|
this.amount = (ref = props === null || props === void 0 ? void 0 : props.amount) !== null && ref !== void 0 ? ref : '';
|
|
623
|
-
var
|
|
624
|
-
this.currency = (
|
|
632
|
+
var ref76;
|
|
633
|
+
this.currency = (ref76 = props === null || props === void 0 ? void 0 : props.currency) !== null && ref76 !== void 0 ? ref76 : AMOUNT_TYPE.CNY;
|
|
625
634
|
};
|
|
626
635
|
export var RangeDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
627
636
|
"use strict";
|
|
@@ -642,24 +651,24 @@ export var RangeDateValue = function RangeDateValue(props) {
|
|
|
642
651
|
_classCallCheck(this, RangeDateValue);
|
|
643
652
|
var ref;
|
|
644
653
|
this.min = (ref = props === null || props === void 0 ? void 0 : props.min) !== null && ref !== void 0 ? ref : '';
|
|
645
|
-
var
|
|
646
|
-
this.max = (
|
|
654
|
+
var ref77;
|
|
655
|
+
this.max = (ref77 = props === null || props === void 0 ? void 0 : props.max) !== null && ref77 !== void 0 ? ref77 : '';
|
|
647
656
|
};
|
|
648
657
|
export var AddressValue = function AddressValue(props) {
|
|
649
658
|
"use strict";
|
|
650
659
|
_classCallCheck(this, AddressValue);
|
|
651
660
|
var ref;
|
|
652
661
|
this.city = (ref = props === null || props === void 0 ? void 0 : props.city) !== null && ref !== void 0 ? ref : '';
|
|
653
|
-
var ref75;
|
|
654
|
-
this.cityDisplay = (ref75 = props === null || props === void 0 ? void 0 : props.cityDisplay) !== null && ref75 !== void 0 ? ref75 : '';
|
|
655
|
-
var ref76;
|
|
656
|
-
this.district = (ref76 = props === null || props === void 0 ? void 0 : props.district) !== null && ref76 !== void 0 ? ref76 : '';
|
|
657
|
-
var ref77;
|
|
658
|
-
this.districtDisplay = (ref77 = props === null || props === void 0 ? void 0 : props.districtDisplay) !== null && ref77 !== void 0 ? ref77 : '';
|
|
659
662
|
var ref78;
|
|
660
|
-
this.
|
|
663
|
+
this.cityDisplay = (ref78 = props === null || props === void 0 ? void 0 : props.cityDisplay) !== null && ref78 !== void 0 ? ref78 : '';
|
|
661
664
|
var ref79;
|
|
662
|
-
this.
|
|
665
|
+
this.district = (ref79 = props === null || props === void 0 ? void 0 : props.district) !== null && ref79 !== void 0 ? ref79 : '';
|
|
666
|
+
var ref80;
|
|
667
|
+
this.districtDisplay = (ref80 = props === null || props === void 0 ? void 0 : props.districtDisplay) !== null && ref80 !== void 0 ? ref80 : '';
|
|
668
|
+
var ref81;
|
|
669
|
+
this.province = (ref81 = props === null || props === void 0 ? void 0 : props.province) !== null && ref81 !== void 0 ? ref81 : '';
|
|
670
|
+
var ref82;
|
|
671
|
+
this.provinceDisplay = (ref82 = props === null || props === void 0 ? void 0 : props.provinceDisplay) !== null && ref82 !== void 0 ? ref82 : '';
|
|
663
672
|
};
|
|
664
673
|
export var CalcDataBind = /*#__PURE__*/ function(ObjectDataBind) {
|
|
665
674
|
"use strict";
|
|
@@ -680,8 +689,8 @@ export var CalcValue = function CalcValue(props) {
|
|
|
680
689
|
_classCallCheck(this, CalcValue);
|
|
681
690
|
var ref;
|
|
682
691
|
this.result = (ref = props === null || props === void 0 ? void 0 : props.result) !== null && ref !== void 0 ? ref : 0;
|
|
683
|
-
var
|
|
684
|
-
this.unit = (
|
|
692
|
+
var ref83;
|
|
693
|
+
this.unit = (ref83 = props === null || props === void 0 ? void 0 : props.unit) !== null && ref83 !== void 0 ? ref83 : '';
|
|
685
694
|
};
|
|
686
695
|
export var AMOUNT_TYPE;
|
|
687
696
|
(function(AMOUNT_TYPE) {
|
|
@@ -760,29 +769,29 @@ export var PAGE_STATUS;
|
|
|
760
769
|
_classCallCheck(this, OperationItem);
|
|
761
770
|
var ref;
|
|
762
771
|
this.isShow = (ref = props === null || props === void 0 ? void 0 : props.isShow) !== null && ref !== void 0 ? ref : true;
|
|
763
|
-
var ref81;
|
|
764
|
-
this.content = (ref81 = props === null || props === void 0 ? void 0 : props.content) !== null && ref81 !== void 0 ? ref81 : '';
|
|
765
|
-
var ref82;
|
|
766
|
-
this.formKey = (ref82 = props === null || props === void 0 ? void 0 : props.formKey) !== null && ref82 !== void 0 ? ref82 : '';
|
|
767
|
-
var ref83;
|
|
768
|
-
this.openType = (ref83 = props === null || props === void 0 ? void 0 : props.openType) !== null && ref83 !== void 0 ? ref83 : 'modal';
|
|
769
772
|
var ref84;
|
|
770
|
-
this.
|
|
773
|
+
this.content = (ref84 = props === null || props === void 0 ? void 0 : props.content) !== null && ref84 !== void 0 ? ref84 : '';
|
|
771
774
|
var ref85;
|
|
772
|
-
this.
|
|
775
|
+
this.formKey = (ref85 = props === null || props === void 0 ? void 0 : props.formKey) !== null && ref85 !== void 0 ? ref85 : '';
|
|
776
|
+
var ref86;
|
|
777
|
+
this.openType = (ref86 = props === null || props === void 0 ? void 0 : props.openType) !== null && ref86 !== void 0 ? ref86 : 'modal';
|
|
778
|
+
var ref87;
|
|
779
|
+
this.type = (ref87 = props === null || props === void 0 ? void 0 : props.type) !== null && ref87 !== void 0 ? ref87 : '';
|
|
780
|
+
var ref88;
|
|
781
|
+
this.priorityProcess = (ref88 = props === null || props === void 0 ? void 0 : props.priorityProcess) !== null && ref88 !== void 0 ? ref88 : false;
|
|
773
782
|
};
|
|
774
783
|
export var ViewOperationItem = function ViewOperationItem(props) {
|
|
775
784
|
"use strict";
|
|
776
785
|
_classCallCheck(this, ViewOperationItem);
|
|
777
786
|
var ref;
|
|
778
|
-
var
|
|
779
|
-
this.id = (
|
|
780
|
-
var
|
|
781
|
-
this.title = (
|
|
782
|
-
var
|
|
783
|
-
this.headers = (
|
|
787
|
+
var ref89;
|
|
788
|
+
this.id = (ref89 = props === null || props === void 0 ? void 0 : props.id) !== null && ref89 !== void 0 ? ref89 : genNonDuplicateId(8);
|
|
789
|
+
var ref90;
|
|
790
|
+
this.title = (ref90 = props === null || props === void 0 ? void 0 : props.title) !== null && ref90 !== void 0 ? ref90 : '';
|
|
791
|
+
var ref91;
|
|
792
|
+
this.headers = (ref91 = props === null || props === void 0 ? void 0 : (ref = props.headers) === null || ref === void 0 ? void 0 : ref.map(function(item) {
|
|
784
793
|
return new ListBindHeaderItem(item);
|
|
785
|
-
})) !== null &&
|
|
794
|
+
})) !== null && ref91 !== void 0 ? ref91 : [];
|
|
786
795
|
callFiltersAndOrders.call(this, props);
|
|
787
796
|
};
|
|
788
797
|
/**
|
|
@@ -800,10 +809,10 @@ export var BaseStyle = function BaseStyle(props) {
|
|
|
800
809
|
_classCallCheck(this, BaseStyle);
|
|
801
810
|
var ref;
|
|
802
811
|
this.width = (ref = props === null || props === void 0 ? void 0 : props.width) !== null && ref !== void 0 ? ref : '';
|
|
803
|
-
var
|
|
804
|
-
this.height = (
|
|
805
|
-
var
|
|
806
|
-
this.widthConfig = (
|
|
807
|
-
var
|
|
808
|
-
this.heightConfig = (
|
|
812
|
+
var ref92;
|
|
813
|
+
this.height = (ref92 = props === null || props === void 0 ? void 0 : props.height) !== null && ref92 !== void 0 ? ref92 : '';
|
|
814
|
+
var ref93;
|
|
815
|
+
this.widthConfig = (ref93 = props === null || props === void 0 ? void 0 : props.widthConfig) !== null && ref93 !== void 0 ? ref93 : 'fill';
|
|
816
|
+
var ref94;
|
|
817
|
+
this.heightConfig = (ref94 = props === null || props === void 0 ? void 0 : props.heightConfig) !== null && ref94 !== void 0 ? ref94 : 'fill';
|
|
809
818
|
};
|
package/dist/index.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var Ms=Object.defineProperty,Ls=Object.defineProperties;var $s=Object.getOwnPropertyDescriptors;var pt=Object.getOwnPropertySymbols;var qs=Object.prototype.hasOwnProperty,Ps=Object.prototype.propertyIsEnumerable;var en=(s,S,M)=>S in s?Ms(s,S,{enumerable:!0,configurable:!0,writable:!0,value:M}):s[S]=M,G=(s,S)=>{for(var M in S||(S={}))qs.call(S,M)&&en(s,M,S[M]);if(pt)for(var M of pt(S))Ps.call(S,M)&&en(s,M,S[M]);return s},Ae=(s,S)=>Ls(s,$s(S));var re=(s,S,M)=>new Promise((se,le)=>{var Ce=_=>{try{Z(M.next(_))}catch(Q){le(Q)}},Fe=_=>{try{Z(M.throw(_))}catch(Q){le(Q)}},Z=_=>_.done?se(_.value):Promise.resolve(_.value).then(Ce,Fe);Z((M=M.apply(s,S)).next())});(function(s,S){typeof exports=="object"&&typeof module!="undefined"?S(exports,require("regenerator-runtime")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime"],S):(s=typeof globalThis!="undefined"?globalThis:s||self,S(s.modelDrivenCore={},s.regeneratorRuntime))})(this,function(s,S){"use strict";function M(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}var se=M(S),le="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Ce="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Z="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",_="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Q="{caption}\u5FC5\u586B",tn="\u8BF7\u8F93\u5165\u6807\u9898",nn="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",un="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",an="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",rn="\u8BF7\u7ED1\u5B9A\u8868\u5355",sn="\u8BF7\u7ED1\u5B9A\u5217\u8868",ln="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",on="\u8BF7\u8F93\u5165\u663E\u793A\u503C",cn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",dn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",fn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",hn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",mn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",gn="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",yn="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",En="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",vn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Bn="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",An="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Cn="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Fn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Dn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",bn="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Sn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",wn="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",In="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Rn="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Mn="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ln="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",$n="\u8BF7\u7ED1\u5B9A\u670D\u52A1",qn="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Pn="\u8BF7\u9009\u62E9\u7701",Vn="\u8BF7\u9009\u62E9\u5E02",On="\u8BF7\u9009\u62E9\u533A",Nn="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",jn="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Un="\u8BF7\u8F93\u5165\u5217\u5BBD",_n="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",xn="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Hn="\u8BF7\u9009\u62E9\u63A7\u4EF6",Tn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Wn="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Kn="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",kn="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",zn="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Xn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Jn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Gn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Zn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Qn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Yn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",pn="\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",tu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",nu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",uu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",au="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",iu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ru="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",su="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",lu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ou={isNotNumber:le,isNotString:Ce,isNotObject:Fe,isNotArray:Z,isNotBoolean:_,runtimeRequired:Q,pleaseEnterCaption:tn,pleaseEnterCaptionTip:nn,pleaseEnterPlaceholder:un,pleaseEnterFieldCode:an,pleaseEnterForm:rn,pleaseEnterList:sn,pleaseEnterProcess:ln,pleaseEnterLabel:on,pleaseEnterValue:cn,bizKeyNotBindFiled:dn,pleaseSelectOneField:fn,pleaseEnterNumberRange:hn,pleaseEnterAValueGreaterThanMin:mn,pleaseEnterAValueLessThanMax:gn,numberRangeSetError:yn,stringRangeError:En,attachmentMaxSize:vn,pleaseEnterTotalScoreSetting:Bn,theTotalScoreMustNotBeLessThan1:An,scoreDefaultValueRange:Cn,attachmentLimitError:Fn,PleaseReselectTheOptionalQuantity:Dn,TheMaximumLengthIsGreaterThanTheMinimumLength:bn,TheMinimumLengthIsGreaterThanTheMaximumLength:Sn,PleaseSelectTheCorrectOptionSettings:wn,optionIdIsRepeat:In,optionIsRequired:Rn,pleaseEnterDataCode:Mn,pleaseEnterValueFieldCode:Ln,pleaseEnterSvcCode:$n,pleaseBindAtLeastOneDisplayValue:qn,pleaseSelectProvince:Pn,pleaseSelectCity:Vn,pleaseSelectDistrict:On,limitRowsCannotBeLessThan0:Nn,TheNumberOfRowsCannotBeLessThanMinRows:jn,pleaseEnterColumnWidth:Un,pleaseSetTheLogicalRelationshipOfAllRuleConditions:_n,pleaseCompleteAllRulesAndConditions:xn,pleaseSelectControl:Hn,pleaseSelectAtLeastOneColumn:Tn,pleaseSelectFillBackMode:Wn,pleaseSelectDashboard:Kn,rootNodeIsRequired:kn,theViewNameCannotBeEmpty:zn,pleaseSelectOcrType:Xn,pleaseSelectAtLeastOneFieldToFillIn:Jn,pleaseChooseAtLeastOne:Gn,pleaseEnterButtonContent:Zn,pleaseEnterDataCodeInDataSetting:Qn,pleaseEnterValueFieldCodeInDataSetting:Yn,pleaseEnterSvcCodeInDataSetting:pn,pleaseBindAtLeastOneDisplayValueInDataSetting:eu,rootNodeIsRequiredInDataSetting:tu,pleaseEnterMaxHeight:nu,pleaseEnter:uu,pleaseEnterWatermark:au,pleaseEnterFileName:iu,pleaseUploadAtLeastOnePrintTemplate:ru,pleaseAssignBusiness:su,pleaseAssignExternal:lu},cu="Please enter a number",du="Please enter a string",fu="Please enter an object",hu="Please enter an array",mu="Please enter a boolean",gu="{caption} Required",yu="Please enter the title",Eu="Please enter the bubble prompt",vu="Please enter the prompt text",Bu="Please bind data items",Au="Please bind the form",Cu="Please bind the list",Fu="Please bind the process",Du="Please enter the displayed value",bu="Please enter the stored value",Su="The document number is not bound to the data item",wu="Please select at least one display field",Iu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Ru="Please enter a value greater than or equal to {min}",Mu="Please enter a value less than or equal to {max}",Lu="The value range is set incorrectly",$u="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",qu="The attachment size must be between 0MB and 1000MB",Pu="Please fill in the total score setting",Vu="The total score cannot be less than 1",Ou="The default value must be between {min} and {max}",Nu="The number of attachments uploaded must be between {min} and {max}",ju="Please re-select the optional quantity",Uu="The maximum length of the control must be greater than the minimum length",_u="The minimum length of the control must be less than the maximum length",xu="Please select the correct option setting",Hu="Option ID cannot be repeated",Tu="Please enter at least one option",Wu="Please bind the data source",Ku="Please bind the stored value",ku="Please bind the service",zu="At least one display value must be bound",Xu="Please select a province",Ju="Please select a city",Gu="Please select a district",Zu="The minimum number of lines to fill in cannot be less than 0",Qu="The number of rows cannot be less than {min} rows",Yu="Please enter the column width",pu="Please set the logical relationship of all rule conditions",ea="Please complete all rules and conditions",ta="please select control",na="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ua="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",aa="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ia="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ra="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",sa="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",la="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",oa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",da="\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",ha="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ma="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ga="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ya="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ea="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",va="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ba="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Aa={isNotNumber:cu,isNotString:du,isNotObject:fu,isNotArray:hu,isNotBoolean:mu,runtimeRequired:gu,pleaseEnterCaption:yu,pleaseEnterCaptionTip:Eu,pleaseEnterPlaceholder:vu,pleaseEnterFieldCode:Bu,pleaseEnterForm:Au,pleaseEnterList:Cu,pleaseEnterProcess:Fu,pleaseEnterLabel:Du,pleaseEnterValue:bu,bizKeyNotBindFiled:Su,pleaseSelectOneField:wu,pleaseEnterNumberRange:Iu,pleaseEnterAValueGreaterThanMin:Ru,pleaseEnterAValueLessThanMax:Mu,numberRangeSetError:Lu,stringRangeError:$u,attachmentMaxSize:qu,pleaseEnterTotalScoreSetting:Pu,theTotalScoreMustNotBeLessThan1:Vu,scoreDefaultValueRange:Ou,attachmentLimitError:Nu,PleaseReselectTheOptionalQuantity:ju,TheMaximumLengthIsGreaterThanTheMinimumLength:Uu,TheMinimumLengthIsGreaterThanTheMaximumLength:_u,PleaseSelectTheCorrectOptionSettings:xu,optionIdIsRepeat:Hu,optionIsRequired:Tu,pleaseEnterDataCode:Wu,pleaseEnterValueFieldCode:Ku,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:zu,pleaseSelectProvince:Xu,pleaseSelectCity:Ju,pleaseSelectDistrict:Gu,limitRowsCannotBeLessThan0:Zu,TheNumberOfRowsCannotBeLessThanMinRows:Qu,pleaseEnterColumnWidth:Yu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:pu,pleaseCompleteAllRulesAndConditions:ea,pleaseSelectControl:ta,pleaseSelectDashboard:na,theViewNameCannotBeEmpty:ua,pleaseSelectOcrType:aa,pleaseSelectAtLeastOneFieldToFillIn:ia,pleaseChooseAtLeastOne:ra,pleaseEnterButtonContent:sa,pleaseEnterDataCodeInDataSetting:la,pleaseEnterValueFieldCodeInDataSetting:oa,pleaseEnterSvcCodeInDataSetting:ca,pleaseBindAtLeastOneDisplayValueInDataSetting:da,rootNodeIsRequiredInDataSetting:fa,pleaseEnterMaxHeight:ha,pleaseEnter:ma,pleaseEnterWatermark:ga,pleaseEnterFileName:ya,pleaseUploadAtLeastOnePrintTemplate:Ea,pleaseAssignBusiness:va,pleaseAssignExternal:Ba},Ca="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fa="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Da="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Sa="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wa="{caption}\u5FC5\u9808",Ia="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ra="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ma="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",La="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$a="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qa="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Pa="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Va="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oa="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Na="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",ja="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ua="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_a="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xa="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ha="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ta="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Wa="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ka="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ka="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",za="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Xa="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ja="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ga="\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",Za="\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",Qa="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ya="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",pa="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ei="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ti="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ni="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ui="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ai="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ii="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ri="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",si="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",li="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",oi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ci="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",di="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",fi="please select control",hi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",mi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",gi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",yi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ei="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",vi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Bi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ai="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ci="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Fi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Di="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",bi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Si="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",wi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ii="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ri="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Mi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Li="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",$i={isNotNumber:Ca,isNotString:Fa,isNotObject:Da,isNotArray:ba,isNotBoolean:Sa,runtimeRequired:wa,pleaseEnterCaption:Ia,pleaseEnterCaptionTip:Ra,pleaseEnterPlaceholder:Ma,pleaseEnterFieldCode:La,pleaseEnterForm:$a,pleaseEnterList:qa,pleaseEnterProcess:Pa,pleaseEnterLabel:Va,pleaseEnterValue:Oa,bizKeyNotBindFiled:Na,pleaseSelectOneField:ja,pleaseEnterNumberRange:Ua,pleaseEnterAValueGreaterThanMin:_a,pleaseEnterAValueLessThanMax:xa,numberRangeSetError:Ha,stringRangeError:Ta,attachmentMaxSize:Wa,pleaseEnterTotalScoreSetting:Ka,theTotalScoreMustNotBeLessThan1:ka,scoreDefaultValueRange:za,attachmentLimitError:Xa,PleaseReselectTheOptionalQuantity:Ja,TheMaximumLengthIsGreaterThanTheMinimumLength:Ga,TheMinimumLengthIsGreaterThanTheMaximumLength:Za,PleaseSelectTheCorrectOptionSettings:Qa,optionIdIsRepeat:Ya,optionIsRequired:pa,pleaseEnterDataCode:ei,pleaseEnterValueFieldCode:ti,pleaseEnterSvcCode:ni,pleaseBindAtLeastOneDisplayValue:ui,pleaseSelectProvince:ai,pleaseSelectCity:ii,pleaseSelectDistrict:ri,limitRowsCannotBeLessThan0:si,TheNumberOfRowsCannotBeLessThanMinRows:li,pleaseEnterColumnWidth:oi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ci,pleaseCompleteAllRulesAndConditions:di,pleaseSelectControl:fi,pleaseSelectDashboard:hi,theViewNameCannotBeEmpty:mi,pleaseSelectOcrType:gi,pleaseSelectAtLeastOneFieldToFillIn:yi,pleaseChooseAtLeastOne:Ei,pleaseEnterButtonContent:vi,pleaseEnterDataCodeInDataSetting:Bi,pleaseEnterValueFieldCodeInDataSetting:Ai,pleaseEnterSvcCodeInDataSetting:Ci,pleaseBindAtLeastOneDisplayValueInDataSetting:Fi,rootNodeIsRequiredInDataSetting:Di,pleaseEnterMaxHeight:bi,pleaseEnter:Si,pleaseEnterWatermark:wi,pleaseEnterFileName:Ii,pleaseUploadAtLeastOnePrintTemplate:Ri,pleaseAssignBusiness:Mi,pleaseAssignExternal:Li},qi={zhCN:ou,enUS:Aa,jaJP:$i},it;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(it||(it={}));var rt;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(rt||(rt={}));var Pi="zh-CN";function P(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var k;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(k||(k={}));var L;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.EMPLOYEE_COLUMN="employee-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2"})(L||(L={}));var R;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.RELATION="relation",t.LIST="list",t.RELATION_FIELD="relation-field",t.REFERENCE_FIELD="reference-field",t.CALC_FIELD="calc",t.JSON="json",t.BIGINT="bigint",t.ANY="ANY",t.ENCRYPTED_FIELD="encrypted_field"})(R||(R={}));var $;$={},P($,R.ARRAY,L.ARRAY_COLUMN),P($,R.AUTO_NUMBER,L.AUTO_NUMBER_COLUMN),P($,R.DECIMAL,L.DECIMAL_COLUMN),P($,R.DEPARTMENTS,L.DEPARTMENT_COLUMN),P($,R.FILE,L.FILE_COLUMN),P($,R.IMAGE,L.IMAGE_COLUMN),P($,R.ADDRESS,L.LOCATION_COLUMN),P($,R.EMPLOYEES,L.EMPLOYEE_COLUMN),P($,R.TEXT,L.TEXT_COLUMN),P($,R.TIMESCOPE,L.TIMESCOPE_COLUMN),P($,R.TIMESTAMP,L.TIMESTAMP_COLUMN),P($,R.VARCHAR,L.VARCHAR_COLUMN),P($,R.RELATION,L.VARCHAR_COLUMN);var st;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATETIME="datetime"})(st||(st={}));var lt="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Vi=lt+"0123456789";function W(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",n=0;n<t;n++){var u=n===0?lt:Vi,a=Math.random()*u.length;e+=u[parseInt(String(a),10)]}return e}function De(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function Oi(t){if(Array.isArray(t))return De(t)}function Ni(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function ot(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ji(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function oe(t,e,n){return ji()?oe=Reflect.construct:oe=function(a,i,r){var o=[null];o.push.apply(o,i);var d=Function.bind.apply(a,o),c=new d;return r&&p(c,r.prototype),c},oe.apply(null,arguments)}function Y(t){return Y=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Y(t)}function ct(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&p(t,e)}function Ui(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function _i(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function xi(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Hi(t,e){return e&&(Ti(e)==="object"||typeof e=="function")?e:Ni(t)}function p(t,e){return p=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},p(t,e)}function dt(t){return Oi(t)||_i(t)||Wi(t)||xi()}var Ti=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function Wi(t,e){if(!!t){if(typeof t=="string")return De(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return De(t,e)}}function be(t){var e=typeof Map=="function"?new Map:void 0;return be=function(u){if(u===null||!Ui(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return oe(u,arguments,Y(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),p(a,u)},be(t)}function Ki(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function ft(t){var e=Ki();return function(){var u=Y(t),a;if(e){var i=Y(this).constructor;a=Reflect.construct(u,arguments,i)}else a=u.apply(this,arguments);return Hi(this,a)}}var Se=console;function we(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Se).warn.apply(u,["\u{1F9D0} Driven Warning:"+e[0]].concat(dt(a)))}function ht(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=Se).log.apply(u,["\u{1F680} Driven Log:"+e[0]].concat(dt(a)))}function ki(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Ie=function(t){ct(n,t);var e=ft(n);function n(u){ot(this,n);var a;return a=e.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?ki(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return n}(be(Error)),zi=function(t){ct(n,t);var e=ft(n);function n(u){ot(this,n);var a;return a=e.call(this,u),a.name="\u{1F6A8} Driven Reference Error",a}return n}(Ie);function Re(t){throw new Ie(t)}function mt(t){throw new zi(t)}function Xi(t){Se.error(new Ie(t))}var Ji=Object.prototype.toString;function gt(t,e){return Ji.call(t)==="[object "+e+"]"}function Gi(t){return gt(t,"String")}function Zi(t){return gt(t,"Promise")}var Qi=function(){function t(e){var n,u;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((u=(n=e.messages)!==null&&n!==void 0?n:this.getPreImport(e.locale))!==null&&u!==void 0?u:{}),e.variableRegExp&&(this.variableRegExp=e.variableRegExp),this.setLocale(e.locale)}return t.prototype.setLocale=function(e){var n=this;this.locale=e,this._messageCache.clear();var u=this.getMessageData();Zi(u)?u.then(function(a){n._messageCache.clear(),n.messages[n.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=u},t.prototype.getMessageData=function(){var e=this._messages[this.localeInMessageKey];return typeof e=="function"?e():e},t.prototype.translate=function(e,n,u){var a=this.getMessage(e);return a?this.formatMessage(a,u):this.formatMessage(n,u)},t.prototype.getMessage=function(e){if(this._messageCache.has(e))return this._messageCache.get(e);var n=this.getPathArray(e),u=n.reduce(function(a,i,r,o){if(a!==void 0){var d=a[i];if(!(r===o.length-1&&!Gi(d)))return d}},this.message);return this._messageCache.set(e,u),u},t.prototype.formatMessage=function(e,n){return n?e.replace(this.variableRegExp,function(u,a){var i=n[a];return i!==void 0?String(i):u}):e},t.prototype.getPreImport=function(e){var n;if(window.okI18nPreImport){var u=this.getLocaleInMessageKey(e);return window.okI18nPreImport.hasOwnProperty(u)?window.okI18nPreImport:(n={},n[u]=window.okI18nPreImport,n)}},t.prototype.getPathArray=function(e){return e.split(".")},t.prototype.getLocaleInMessageKey=function(e){return e.replace(/-/g,"")},Object.defineProperty(t.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"message",{get:function(){var e;return(e=this.messages[this.localeInMessageKey])!==null&&e!==void 0?e:{}},enumerable:!1,configurable:!0}),t}();function Yi(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function yt(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function pi(t,e,n){return e&&yt(t.prototype,e),n&&yt(t,n),t}var f=function(){function t(){Yi(this,t)}return pi(t,null,[{key:"getMessage",value:function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",u)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Pi;return new Qi({locale:n,messages:qi})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),t}();f.$i18n=f.resetI18n();function er(t,e,n){var u=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return u.reduce(function(i,r,o,d){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){we("Can not set ".concat(e,"'s ").concat(r," property in current %o, Because there is no ").concat(r," property on the %o"),i,i);return}return o===d.length-1&&!Object.is(c[r],n)&&(c[r]=n,a=!0),c[r]}},t),a}var tr=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},nr={exports:{}};(function(t){(function(e){var n=function(l,g,h){if(!c(g)||v(g)||C(g)||b(g)||d(g))return g;var D,w=0,j=0;if(E(g))for(D=[],j=g.length;w<j;w++)D.push(n(l,g[w],h));else{D={};for(var A in g)Object.prototype.hasOwnProperty.call(g,A)&&(D[l(A,h)]=n(l,g[A],h))}return D},u=function(l,g){g=g||{};var h=g.separator||"_",D=g.split||/(?=[A-Z])/;return l.split(D).join(h)},a=function(l){return F(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(g,h){return h?h.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},i=function(l){var g=a(l);return g.substr(0,1).toUpperCase()+g.substr(1)},r=function(l,g){return u(l,g).toLowerCase()},o=Object.prototype.toString,d=function(l){return typeof l=="function"},c=function(l){return l===Object(l)},E=function(l){return o.call(l)=="[object Array]"},v=function(l){return o.call(l)=="[object Date]"},C=function(l){return o.call(l)=="[object RegExp]"},b=function(l){return o.call(l)=="[object Boolean]"},F=function(l){return l=l-0,l===l},m=function(l,g){var h=g&&"process"in g?g.process:g;return typeof h!="function"?l:function(D,w){return h(D,l,w)}},B={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(l,g){return n(m(a,g),l)},decamelizeKeys:function(l,g){return n(m(r,g),l,g)},pascalizeKeys:function(l,g){return n(m(i,g),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=B:e.humps=B})(tr)})(nr);var Et={};Object.defineProperty(Et,"__esModule",{value:!0});function Me(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:Me(e));{const e={};for(const n in t){const u=t[n];e[n]=typeof u!="object"||u===null?u:Me(u)}return e}}var ur=Et.default=Me;function K(t){if(t!==void 0)return typeof t=="object"?ur(t):t}function ar(t){return Object.prototype.toString.call(t)==="[object Object]"}function ir(t){return Array.isArray(t)}function rr(t){return t.reduce(function(e,n){return e.includes(n)||e.push(n),e},[])}function Le(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function sr(t){if(Array.isArray(t))return Le(t)}function vt(t,e,n,u,a,i,r){try{var o=t[i](r),d=o.value}catch(c){n(c);return}o.done?e(d):Promise.resolve(d).then(u,a)}function lr(t){return function(){var e=this,n=arguments;return new Promise(function(u,a){var i=t.apply(e,n);function r(d){vt(i,u,a,r,o,"next",d)}function o(d){vt(i,u,a,r,o,"throw",d)}r(void 0)})}}function or(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Bt(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function cr(t,e,n){return e&&Bt(t.prototype,e),n&&Bt(t,n),t}function dr(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function fr(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function $e(t){return sr(t)||dr(t)||hr(t)||fr()}function hr(t,e){if(!!t){if(typeof t=="string")return Le(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Le(t,e)}}var mr=function(){function t(){or(this,t),this._events=new Map,this.debug=!1}return cr(t,[{key:"emit",value:function(n){for(var u=arguments.length,a=new Array(u>1?u-1:0),i=1;i<u;i++)a[i-1]=arguments[i];var r=this;return lr(se.default.mark(function o(){var d,c,E,v,C,b,F,m,B,l;return se.default.wrap(function(h){for(;;)switch(h.prev=h.next){case 0:if(d=r._events.get(n),c=[],!d){h.next=42;break}E=d.slice(),v=!0,C=!1,b=void 0,h.prev=5,F=E[Symbol.iterator]();case 7:if(v=(m=F.next()).done){h.next=28;break}if(B=m.value,d.includes(B)){h.next=11;break}return h.abrupt("continue",25);case 11:return h.prev=11,r.debug&&ht.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat($e(a))),h.next=15,B.apply(null,$e(a));case 15:if(l=h.sent,r.debug&&ht.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat($e(a),[l])),c.push(l),l!==!1){h.next=20;break}return h.abrupt("break",28);case 20:h.next=25;break;case 22:h.prev=22,h.t0=h.catch(11),Xi(String(h.t0)+":"+String(h.t0.stack));case 25:v=!0,h.next=7;break;case 28:h.next=34;break;case 30:h.prev=30,h.t1=h.catch(5),C=!0,b=h.t1;case 34:h.prev=34,h.prev=35,!v&&F.return!=null&&F.return();case 37:if(h.prev=37,!C){h.next=40;break}throw b;case 40:return h.finish(37);case 41:return h.finish(34);case 42:return h.abrupt("return",c);case 43:case"end":return h.stop()}},o,null,[[5,30,34,42],[11,22],[35,,37,41]])}))()}},{key:"on",value:function(n,u){if(this._events.has(n)){var a;(a=this._events.get(n))===null||a===void 0||a.push(u)}else this._events.set(n,[u])}},{key:"off",value:function(n,u){if(this._events.has(n)){var a=this._events.get(n),i=a==null?void 0:a.indexOf(u);a==null||a.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),t}();const At=[];class ce{constructor(e){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=e,this._initControls(e)}registerControlConfig(e,n){return this.controlConfigMap.set(e,n),this}getControlConfig(e){return this.controlConfigMap.get(e)}static register(e){const{Designer:n,Runtime:u}=e;(!n||!u||!n.__is_control__||!u.__is_control__)&&Re(`${e} is can't register as a Control`);const a=this.staticControls.findIndex(i=>i.Designer.controlType===n.controlType);return a>-1&&(we(`The ${n.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(n.controlType),this.staticControls.push(e),this}getControls(){return this._controls}register(e){e.__is_control__||Re(`${e.name} is not a Control`);const n=this._controls.findIndex(u=>u.controlType===e.controlType);return n>-1&&(we(`The ${e.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(n,1)),this.registeredControlTypes.add(e.controlType),this._controls.push(e),this}isLayoutControl(e){return e.controlType===k.LAYOUT}isFormControl(e){return e.controlType===k.FORM}isListControl(e){return e.controlType===k.LIST}isColumnControl(e){return e.controlType===k.COLUMN}createControl(e,n){if(Array.isArray(e))return e.map(a=>this.createControl(a,n));e.children&&(e.children=e.children.map(a=>this.createControl(a,n))),this.isListControl(e)&&e.props.headers&&(e.props.headers=e.props.headers.map(a=>this.createControl(a,n)));const u=this.getControlFormType(e.type);if(u){let a=e;if(typeof n=="function"){const r=n(a);r&&(a=r)}return new u(a)}else Re(`The constructor of ${e.type} could not be found, please confirm that the constructor has been registered`)}createControlInstance(e,n){const u=this.getControlFormType(e);if(u)return new u(n)}getControlFormType(e){return this._controls.find(n=>n.controlType===e)}_initControls(e){this.constructor.staticControls.forEach(n=>{this.register(n[e])})}}ce.staticControls=At,ce.staticRegisteredTypes=new Set(At.map(t=>t.Designer.controlType)),ce.staticRegisteredConfigs=new Map;class O{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:""}}class qe{constructor(e){var n,u;this.minWidth=(n=e==null?void 0:e.minWidth)!=null?n:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(u=e==null?void 0:e.flex)!=null?u:1}}class de extends qe{constructor(e){super(e);var n,u;this.width=(n=e==null?void 0:e.width)!=null?n:240,this.widthType=(u=e==null?void 0:e.widthType)!=null?u:"auto"}}class gr{constructor(e){this.pc=new de(e==null?void 0:e.pc),this.mobile=(e==null?void 0:e.mobile)?new de(e==null?void 0:e.mobile):new de({width:130,minWidth:180})}}class yr{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"firstThree",this.customOptions=(u=e==null?void 0:e.customOptions)!=null?u:[]}}class fe{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class Er extends fe{constructor(e){super(e);var n;this.primaryControlId=(n=e==null?void 0:e.primaryControlId)!=null?n:""}}class Ct{constructor(e){var n;this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:""}}class vr{constructor(e){var n,u,a,i;this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[]}}class Ft{constructor(e){var n,u,a;this.fieldName=(n=e==null?void 0:e.fieldName)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:R.VARCHAR}}class Dt extends fe{constructor(e){super(e);var n,u,a,i;this.title=(n=e==null?void 0:e.title)!=null?n:"",this.svcCode=(u=e==null?void 0:e.svcCode)!=null?u:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(i=e==null?void 0:e.filters)!=null?i:[]}}class Br{constructor(e){var n,u,a,i;this.type="sublist-page",this.formBind=new fe(e==null?void 0:e.formBind),this.displayFields=(u=(n=e==null?void 0:e.displayFields)==null?void 0:n.map(r=>new Ft(r)))!=null?u:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new Dt(r)))!=null?i:[]}}class bt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value}}class Pe{constructor(e){var n,u,a;this.type=(n=e==null?void 0:e.type)!=null?n:"custom",this.value=(u=e==null?void 0:e.value)!=null?u:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class he{constructor(e){var n,u,a,i;this.type="conditions",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(i=e==null?void 0:e.value)!=null?i:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(r=>{var o,d;if(r.children!==void 0){const c=new he(r);(o=this.children)==null||o.push(c)}else{const c=new Ve(r);(d=this.children)==null||d.push(c)}}))}}class Ve{constructor(e){var n,u,a,i,r;this.type="condition",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(i=e==null?void 0:e.checked)!=null?i:!1,this.describe=(r=e==null?void 0:e.describe)!=null?r:"",this.leftVariableBo=new bt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new Pe(e==null?void 0:e.rightVariableBo)}}class St{constructor(e){var n,u,a,i;this.controlId=(n=e==null?void 0:e.controlId)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(i=e==null?void 0:e.propName)!=null?i:""}}class Oe{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"FIELD",this.value=(u=e==null?void 0:e.value)!=null?u:"",this.fieldType=e==null?void 0:e.fieldType}}class Ne{constructor(e){var n,u;this.columnName=(n=e.columnName)!=null?n:"",this.desc=(u=e.desc)!=null?u:!1}}class wt{constructor(e){var n,u,a;this.code=(n=e.code)!=null?n:"",this.value=(u=e.value)!=null?u:"",this.field_type=(a=e.field_type)!=null?a:R.ANY}}class Ar{constructor(e){var n,u,a,i,r,o,d;this.id=(n=e.id)!=null?n:"",this.limit=(u=e.limit)!=null?u:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(r=(i=e.orders)==null?void 0:i.map(c=>new Ne(c)))!=null?r:[],this.dataSet=(d=(o=e.dataSet)==null?void 0:o.map(c=>new wt(c)))!=null?d:[]}}function je(t){var e,n,u,a;this.filters=(n=(e=t==null?void 0:t.filters)==null?void 0:e.map(i=>i.children!==void 0?new he(i):new Ve(i)))!=null?n:[],(this instanceof me||this instanceof Mt)&&(this.orders=(a=(u=t==null?void 0:t.orders)==null?void 0:u.map(i=>new Ne(i)))!=null?a:[])}class me{constructor(e){var n,u,a,i,r;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(o=>{var d;(d=this.displayBoList)==null||d.push(new Oe(o))})),this.showOrder=(i=e==null?void 0:e.showOrder)!=null?i:!0,this.svcCode=(r=e==null?void 0:e.svcCode)!=null?r:"",je.call(this,e)}}class Cr{constructor(e){var n,u;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.displayBoList=(u=e==null?void 0:e.displayBoList)!=null?u:[]}}class Fr{constructor(e){var n,u,a,i,r,o,d,c,E,v;this.code=(n=e==null?void 0:e.code)!=null?n:"view",this.color=(u=e==null?void 0:e.color)!=null?u:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(i=e==null?void 0:e.confirmMessage)!=null?i:void 0,this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.formKey=(o=e==null?void 0:e.formKey)!=null?o:void 0,this.icon=(d=e==null?void 0:e.icon)!=null?d:"iconliulan1",this.needConfirm=(c=e==null?void 0:e.needConfirm)!=null?c:!1,this.openType=(E=e==null?void 0:e.openType)!=null?E:"modal",this.priorityProcess=(v=e==null?void 0:e.priorityProcess)!=null?v:!0}}class Ue{constructor(e){var n,u,a,i;this.name=(n=e==null?void 0:e.name)!=null?n:"",this.key=(u=e==null?void 0:e.key)!=null?u:"",this.value=(i=(a=e==null?void 0:e.value)==null?void 0:a.map(r=>new Oe(r)))!=null?i:[]}}class It extends me{constructor(e){super(e);var n,u;this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(a=>new Ue(a)))!=null?u:[]}}class Dr extends me{constructor(e){super(e);var n,u,a;this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(i=>new Ue(i)))!=null?u:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class br extends It{constructor(e){super(e);var n;this.rootNode=new Pe(e==null?void 0:e.rootNode),this.filterCode=(n=e==null?void 0:e.filterCode)!=null?n:""}}class Rt{constructor(e){var n,u,a,i;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.fillList=(i=(a=e==null?void 0:e.fillList)==null?void 0:a.map(r=>new St(r)))!=null?i:[]}}class Mt extends Rt{constructor(e){super(e);je.call(this,e)}}class Sr extends Rt{constructor(e){super(e);var n,u;this.mode=(n=e==null?void 0:e.mode)!=null?n:"current",this.multiple=(u=e==null?void 0:e.multiple)!=null?u:!1}}class wr{constructor(e){var n,u,a;this.zh=(n=e==null?void 0:e.zh)!=null?n:"",this.en=(u=e==null?void 0:e.en)!=null?u:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class Ir{constructor(e){var n,u,a;this.stencilName=(n=e==null?void 0:e.stencilName)!=null?n:"",this.expression=(u=e==null?void 0:e.expression)!=null?u:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class _e{constructor(e){var n,u,a;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.label=(u=e==null?void 0:e.label)!=null?u:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class Lt extends _e{constructor(e){super(e);var n,u;this.image=(n=e==null?void 0:e.image)!=null?n:"",this.type=(u=e==null?void 0:e.type)!=null?u:"src"}}function Rr(t){var e;return(e=t==null?void 0:t.map(n=>new _e(n)))!=null?e:[]}function Mr(t){var e;return(e=t==null?void 0:t.map(n=>new Lt(n)))!=null?e:[]}class ge{}class Lr extends ge{constructor(e){super();this.amount=new O(e==null?void 0:e.amount),this.currency=new O(e==null?void 0:e.currency)}}class $r{constructor(e){var n,u;this.amount=(n=e==null?void 0:e.amount)!=null?n:"",this.currency=(u=e==null?void 0:e.currency)!=null?u:xe.CNY}}class qr extends ge{constructor(e){super();this.min=new O(e==null?void 0:e.min),this.max=new O(e==null?void 0:e.max)}}class Pr{constructor(e){var n,u;this.min=(n=e==null?void 0:e.min)!=null?n:"",this.max=(u=e==null?void 0:e.max)!=null?u:""}}class Vr{constructor(e){var n,u,a,i,r,o;this.city=(n=e==null?void 0:e.city)!=null?n:"",this.cityDisplay=(u=e==null?void 0:e.cityDisplay)!=null?u:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(i=e==null?void 0:e.districtDisplay)!=null?i:"",this.province=(r=e==null?void 0:e.province)!=null?r:"",this.provinceDisplay=(o=e==null?void 0:e.provinceDisplay)!=null?o:""}}class Or extends ge{constructor(e){super();this.result=new O(e==null?void 0:e.result),this.unit=new O(e==null?void 0:e.unit)}}class Nr{constructor(e){var n,u;this.result=(n=e==null?void 0:e.result)!=null?n:0,this.unit=(u=e==null?void 0:e.unit)!=null?u:""}}var xe=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(xe||{}),$t=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t))($t||{}),He=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(He||{});class jr{constructor(e){var n,u,a,i,r,o;this.isShow=(n=e==null?void 0:e.isShow)!=null?n:!0,this.content=(u=e==null?void 0:e.content)!=null?u:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(i=e==null?void 0:e.openType)!=null?i:"modal",this.type=(r=e==null?void 0:e.type)!=null?r:"",this.priorityProcess=(o=e==null?void 0:e.priorityProcess)!=null?o:!1}}class Ur{constructor(e){var n,u,a,i;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[],je.call(this,e)}}class _r{constructor(e){var n,u;this.key=(n=e.key)!=null?n:W(8),this.caption=(u=e.caption)!=null?u:""}}class qt{constructor(e){var n,u,a,i;this.width=(n=e==null?void 0:e.width)!=null?n:"",this.height=(u=e==null?void 0:e.height)!=null?u:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(i=e==null?void 0:e.heightConfig)!=null?i:"fill"}}class ye{constructor(e){this.isHide={type:"boolean"}}}class Te extends Array{constructor(e){super()}}class x{constructor(e,n=""){var u,a;this.isHide=(u=e==null?void 0:e.isHide)!=null?u:!1,this.style=new qt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:n}}x.Rules=ye,x.RuntimeRules=Te;function N(){return N=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var u in n)Object.prototype.hasOwnProperty.call(n,u)&&(t[u]=n[u])}return t},N.apply(this,arguments)}function xr(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function We(t){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(t)}function Ee(t,e){return Ee=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},Ee(t,e)}function Hr(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function ve(t,e,n){return Hr()?ve=Reflect.construct:ve=function(a,i,r){var o=[null];o.push.apply(o,i);var d=Function.bind.apply(a,o),c=new d;return r&&Ee(c,r.prototype),c},ve.apply(null,arguments)}function Tr(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Ke(t){var e=typeof Map=="function"?new Map:void 0;return Ke=function(u){if(u===null||!Tr(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return ve(u,arguments,We(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Ee(a,u)},Ke(t)}var Wr=/%[sdj%]/g,Pt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Pt=function(e,n){typeof console!="undefined"&&console.warn&&n.every(function(u){return typeof u=="string"})&&console.warn(e,n)});function ke(t){if(!t||!t.length)return null;var e={};return t.forEach(function(n){var u=n.field;e[u]=e[u]||[],e[u].push(n)}),e}function V(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u=1,a=e[0],i=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var r=String(a).replace(Wr,function(o){if(o==="%%")return"%";if(u>=i)return o;switch(o){case"%s":return String(e[u++]);case"%d":return Number(e[u++]);case"%j":try{return JSON.stringify(e[u++])}catch(d){return"[Circular]"}break;default:return o}});return r}return a}function Kr(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function I(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||Kr(e)&&typeof t=="string"&&!t)}function kr(t,e,n){var u=[],a=0,i=t.length;function r(o){u.push.apply(u,o),a++,a===i&&n(u)}t.forEach(function(o){e(o,r)})}function Vt(t,e,n){var u=0,a=t.length;function i(r){if(r&&r.length){n(r);return}var o=u;u=u+1,o<a?e(t[o],i):n([])}i([])}function zr(t){var e=[];return Object.keys(t).forEach(function(n){e.push.apply(e,t[n])}),e}var Ot=function(t){xr(e,t);function e(n,u){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=n,a.fields=u,a}return e}(Ke(Error));function Xr(t,e,n,u){if(e.first){var a=new Promise(function(v,C){var b=function(B){return u(B),B.length?C(new Ot(B,ke(B))):v()},F=zr(t);Vt(F,n,b)});return a.catch(function(v){return v}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),o=r.length,d=0,c=[],E=new Promise(function(v,C){var b=function(m){if(c.push.apply(c,m),d++,d===o)return u(c),c.length?C(new Ot(c,ke(c))):v()};r.length||(u(c),v()),r.forEach(function(F){var m=t[F];i.indexOf(F)!==-1?Vt(m,n,b):kr(m,n,b)})});return E.catch(function(v){return v}),E}function Nt(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function jt(t,e){if(e){for(var n in e)if(e.hasOwnProperty(n)){var u=e[n];typeof u=="object"&&typeof t[n]=="object"?t[n]=N(N({},t[n]),u):t[n]=u}}return t}function Ut(t,e,n,u,a,i){t.required&&(!n.hasOwnProperty(t.field)||I(e,i||t.type))&&u.push(V(a.messages.required,t.fullField))}function Jr(t,e,n,u,a){(/^\s+$/.test(e)||e==="")&&u.push(V(a.messages.whitespace,t.fullField))}var ze={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},ee={integer:function(e){return ee.number(e)&&parseInt(e,10)===e},float:function(e){return ee.number(e)&&!ee.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(n){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!ee.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(ze.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(ze.url)},hex:function(e){return typeof e=="string"&&!!e.match(ze.hex)}};function Gr(t,e,n,u,a){if(t.required&&e===void 0){Ut(t,e,n,u,a);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],r=t.type;i.indexOf(r)>-1?ee[r](e)||u.push(V(a.messages.types[r],t.fullField,t.type)):r&&typeof e!==t.type&&u.push(V(a.messages.types[r],t.fullField,t.type))}function Zr(t,e,n,u,a){var i=typeof t.len=="number",r=typeof t.min=="number",o=typeof t.max=="number",d=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=e,E=null,v=typeof e=="number",C=typeof e=="string",b=Array.isArray(e);if(v?E="number":C?E="string":b&&(E="array"),!E)return!1;b&&(c=e.length),C&&(c=e.replace(d,"_").length),i?c!==t.len&&u.push(V(a.messages[E].len,t.fullField,t.len)):r&&!o&&c<t.min?u.push(V(a.messages[E].min,t.fullField,t.min)):o&&!r&&c>t.max?u.push(V(a.messages[E].max,t.fullField,t.max)):r&&o&&(c<t.min||c>t.max)&&u.push(V(a.messages[E].range,t.fullField,t.min,t.max))}var z="enum";function Qr(t,e,n,u,a){t[z]=Array.isArray(t[z])?t[z]:[],t[z].indexOf(e)===-1&&u.push(V(a.messages[z],t.fullField,t[z].join(", ")))}function Yr(t,e,n,u,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var i=new RegExp(t.pattern);i.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var y={required:Ut,whitespace:Jr,type:Gr,range:Zr,enum:Qr,pattern:Yr};function pr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a,"string"),I(e,"string")||(y.type(t,e,u,i,a),y.range(t,e,u,i,a),y.pattern(t,e,u,i,a),t.whitespace===!0&&y.whitespace(t,e,u,i,a))}n(i)}function es(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function ts(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ns(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function us(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),I(e)||y.type(t,e,u,i,a)}n(i)}function as(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function is(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function rs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e==null&&!t.required)return n();y.required(t,e,u,i,a,"array"),e!=null&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ss(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}var ls="enum";function os(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y[ls](t,e,u,i,a)}n(i)}function cs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a),I(e,"string")||y.pattern(t,e,u,i,a)}n(i)}function ds(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"date")&&!t.required)return n();if(y.required(t,e,u,i,a),!I(e,"date")){var o;e instanceof Date?o=e:o=new Date(e),y.type(t,o,u,i,a),o&&y.range(t,o.getTime(),u,i,a)}}n(i)}function fs(t,e,n,u,a){var i=[],r=Array.isArray(e)?"array":typeof e;y.required(t,e,u,i,a,r),n(i)}function Xe(t,e,n,u,a){var i=t.type,r=[],o=t.required||!t.required&&u.hasOwnProperty(t.field);if(o){if(I(e,i)&&!t.required)return n();y.required(t,e,u,r,a,i),I(e,i)||y.type(t,e,u,r,a)}n(r)}function hs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a)}n(i)}var te={string:pr,method:es,number:ts,boolean:ns,regexp:us,integer:as,float:is,array:rs,object:ss,enum:os,pattern:cs,date:ds,url:Xe,hex:Xe,email:Xe,required:fs,any:hs};function Je(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var Ge=Je();function H(t){this.rules=null,this._messages=Ge,this.define(t)}H.prototype={messages:function(e){return e&&(this._messages=jt(Je(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var n,u;for(n in e)e.hasOwnProperty(n)&&(u=e[n],this.rules[n]=Array.isArray(u)?u:[u])},validate:function(e,n,u){var a=this;n===void 0&&(n={}),u===void 0&&(u=function(){});var i=e,r=n,o=u;if(typeof r=="function"&&(o=r,r={}),!this.rules||Object.keys(this.rules).length===0)return o&&o(),Promise.resolve();function d(m){var B,l=[],g={};function h(D){if(Array.isArray(D)){var w;l=(w=l).concat.apply(w,D)}else l.push(D)}for(B=0;B<m.length;B++)h(m[B]);l.length?g=ke(l):(l=null,g=null),o(l,g)}if(r.messages){var c=this.messages();c===Ge&&(c=Je()),jt(c,r.messages),r.messages=c}else r.messages=this.messages();var E,v,C={},b=r.keys||Object.keys(this.rules);b.forEach(function(m){E=a.rules[m],v=i[m],E.forEach(function(B){var l=B;typeof l.transform=="function"&&(i===e&&(i=N({},i)),v=i[m]=l.transform(v)),typeof l=="function"?l={validator:l}:l=N({},l),l.validator=a.getValidationMethod(l),l.field=m,l.fullField=l.fullField||m,l.type=a.getType(l),!!l.validator&&(C[m]=C[m]||[],C[m].push({rule:l,value:v,source:i,field:m}))})});var F={};return Xr(C,r,function(m,B){var l=m.rule,g=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");g=g&&(l.required||!l.required&&m.value),l.field=m.field;function h(j,A){return N(N({},A),{},{fullField:l.fullField+"."+j})}function D(j){j===void 0&&(j=[]);var A=j;if(Array.isArray(A)||(A=[A]),!r.suppressWarning&&A.length&&H.warning("async-validator:",A),A.length&&l.message!==void 0&&(A=[].concat(l.message)),A=A.map(Nt(l)),r.first&&A.length)return F[l.field]=1,B(A);if(!g)B(A);else{if(l.required&&!m.value)return l.message!==void 0?A=[].concat(l.message).map(Nt(l)):r.error&&(A=[r.error(l,V(r.messages.required,l.field))]),B(A);var U={};if(l.defaultField)for(var Qt in m.value)m.value.hasOwnProperty(Qt)&&(U[Qt]=l.defaultField);U=N(N({},U),m.rule.fields);for(var X in U)if(U.hasOwnProperty(X)){var Rs=Array.isArray(U[X])?U[X]:[U[X]];U[X]=Rs.map(h.bind(null,X))}var Yt=new H(U);Yt.messages(r.messages),m.rule.options&&(m.rule.options.messages=r.messages,m.rule.options.error=r.error),Yt.validate(m.value,m.rule.options||r,function(at){var J=[];A&&A.length&&J.push.apply(J,A),at&&at.length&&J.push.apply(J,at),B(J.length?J:null)})}}var w;l.asyncValidator?w=l.asyncValidator(l,m.value,D,m.source,r):l.validator&&(w=l.validator(l,m.value,D,m.source,r),w===!0?D():w===!1?D(l.message||l.field+" fails"):w instanceof Array?D(w):w instanceof Error&&D(w.message)),w&&w.then&&w.then(function(){return D()},function(j){return D(j)})},function(m){d(m)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!te.hasOwnProperty(e.type))throw new Error(V("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var n=Object.keys(e),u=n.indexOf("message");return u!==-1&&n.splice(u,1),n.length===1&&n[0]==="required"?te.required:te[this.getType(e)]||!1}},H.register=function(e,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");te[e]=n},H.warning=Pt,H.messages=Ge,H.validators=te;const ms={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function _t(t,e={}){const n=new H(t);return n.messages(Object.assign(ms,e)),n}const xt=new mr;class q{constructor(e){var E,v,C,b;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Tt,this.removeSetting=Ht,this._callControlHooks("preInstance",e);const{controlName:n,controlIcon:u,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:o,name:d,setting:c}=new.target;n&&u&&a||mt(`The ${d} controlName,controlIcon,controlType is not define`),this.id=(E=e==null?void 0:e.id)!=null?E:W(10),this.name=n,this.icon=u,this.type=(v=e==null?void 0:e.type)!=null?v:a,this.props=new x(e==null?void 0:e.props,new.target.controlName),this.controlType=(C=e==null?void 0:e.controlType)!=null?C:"base",this.setting=K(c),this.fieldType=(b=e==null?void 0:e.fieldType)!=null?b:i,this.eventKeys=K(r),this.customEvents=K(o),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[n,...u]=e;return xt.emit(n,this,...u)}preUpdate(e,n){this._callControlHooks("preUpdateProps",e,n)}postUpdate(e,n){this._callControlHooks("postUpdateProps",e,n)}updateProps(e,n){this.preUpdate(e,n),er(this.props,e,n),this.postUpdate(e,n)}preValidate(){return re(this,null,function*(){const e=G({},this.rules),n=yield this._callControlHooks("preValidate",e),u=n[n.length-1];return u===!1?void 0:u})}validate(e,n){return re(this,null,function*(){const u=yield this.preValidate(),a=u!==void 0?u:G({},this.rules);Array.isArray(n)&&n.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=_t(a,e);try{return yield i.validate(this.props),!0}catch(r){throw r.control||(r.control=this),r}})}toDataBindModel(e=null){const n=this.fieldType,u=this.id,a=this.type,{dataBind:i,datasourceBind:r,optionConfig:o,caption:d,required:c,maxLength:E,options:v,encrypted:C,encryptedMode:b}=this.props;if(!n&&!i&&!r)return;const F={parentId:e,fieldType:n,controlId:u,caption:d,type:a,props:{}};switch(i&&(F.dataBind=i),o){case"datasource":case void 0:r&&(F.datasourceBind=r);break;case"custom":F.props.options=v;break}return c!==void 0&&(F.required=c),E!==void 0&&(F.maxLength=E),C!==void 0&&(F.encrypted=C),b!==void 0&&(F.encryptedMode=b),F}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:K(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,n){e==="setting"&&(n.add&&this.setting.push(...n.add),n.remove&&this.removeSettingItem(n.remove),n.update)}}q.controlName="\u63A7\u4EF6",q.controlIcon="icon",q.controlType="control",q.controlEventKeys=[],q.controlCustomEvents=[],q.setting=[],q.__is_control__=!0,q.removeSettingItem=Ht,q.updateSettingItem=Tt;function Ht(t){(Array.isArray(t)?t:[t]).forEach(n=>{var i,r;const u=typeof n!="string",a=this.setting.findIndex(o=>o.key===(u?n.key:n));a!==-1&&(u?this.setting[a].showItems=(i=this.setting[a].showItems)==null?void 0:i.filter(o=>!n.hideItems.includes(o)):this.setting.splice(a,1),u&&!((r=this.setting[a].showItems)==null?void 0:r.length)&&this.setting.splice(a,1))})}function Tt(t,e){(typeof t=="string"?[t]:t).forEach(u=>{var i;const a=this.setting.find(r=>r.key===u);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((i=e.type)!=null?i:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class T{constructor(e){var r,o,d,c,E;this.customEvents=[],this.parent=null;const{controlType:n,controlFieldType:u,name:a,controlCustomEvents:i}=new.target;n||mt(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:W(10),this.type=(o=e==null?void 0:e.type)!=null?o:n,this.props=new x(e==null?void 0:e.props),this.customEvents=i,this.controlType=(d=e==null?void 0:e.controlType)!=null?d:"base",this.fieldType=(c=e==null?void 0:e.fieldType)!=null?c:u,this.pageStatus=(E=e==null?void 0:e.pageStatus)!=null?E:He.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const n=new e(this.props);return Array.from(n)}return[]}}T.controlType="control",T.__is_control__=!0,T.controlCustomEvents=[];function Ze(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:f.getMessage("pleaseEnterLabel")},value:{type:"string",required:!0,message:f.getMessage("pleaseEnterValue")}}}},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("optionIsRequired")),u()}},{type:"array",validator(e,n,u){const a=n.map(r=>r.value),i=rr(a);a.length!==i.length?u(f.getMessage("optionIdIsRepeat")):u()},message:f.getMessage("optionIdIsRepeat")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterSvcCode")},displayBoList:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("pleaseBindAtLeastOneDisplayValue")),u()},message:f.getMessage("pleaseBindAtLeastOneDisplayValue")}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}])}function gs(t,e,n=!1){this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterDataCodeInDataSetting":"pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterValueFieldCodeInDataSetting":"pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterSvcCodeInDataSetting":"pleaseEnterSvcCode")},attributes:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:f.getMessage("isNotString")},key:{type:"string",required:!0,message:f.getMessage("isNotString")},value:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(u,a,i){a.length===0&&i(f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")),i()},message:f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")}]}}}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}]}class Qe extends ye{constructor(e){super(e);this.dataBind={},this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:f.getMessage("pleaseEnterCaptionTip")};const n={fieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")}};if(e.dataBind instanceof O)this.dataBind={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")};else{let u={type:"object",required:!0,fields:{},message:f.getMessage("pleaseEnterFieldCode")};Object.keys(e.dataBind).forEach(a=>{u.fields[a]={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")}}),this.dataBind=u}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class Wt extends Te{constructor(e){super(e);this.push({type:"string",required:e.isHide?!1:e.required,message:e.requiredMessage!==""?e.requiredMessage:f.getMessage("runtimeRequired",{caption:e.caption})})}}class ne extends x{constructor(e){super(e);var n,u,a,i,r,o,d,c,E,v;this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.isHideCaption=(u=e==null?void 0:e.isHideCaption)!=null?u:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(i=e==null?void 0:e.captionTip)!=null?i:"",this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.labelPosition=(o=e==null?void 0:e.labelPosition)!=null?o:"top",this.placeholder=(d=e==null?void 0:e.placeholder)!=null?d:"",this.required=(c=e==null?void 0:e.required)!=null?c:!1,this.requiredMessage=(E=e==null?void 0:e.requiredMessage)!=null?E:"",this.dataBind=new O(e==null?void 0:e.dataBind),this.defaultValue=(v=e==null?void 0:e.defaultValue)!=null?v:""}}ne.Rules=Qe,ne.RuntimeRules=Wt;class ys extends Qe{constructor(e){super(e);this.optionConfig={type:"enum",enum:["custom","datasource"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Ze.call(this,e)}}class Kt extends q{constructor(e){super(e);this.controlType="form",this.props=new ne(e==null?void 0:e.props)}}Kt.controlEventKeys=["on_change","on_focus","on_blur"];class Es extends T{constructor(e){super(e);this.controlType="form",this.props=new ne(e==null?void 0:e.props)}}class ue extends x{constructor(e){super(e)}}function kt(t,e){var n;((n=Object.getOwnPropertyDescriptors(t)[e])==null?void 0:n.enumerable)&&Object.defineProperty(t,e,{enumerable:!1})}function Ye(t,e){t.parent=e,kt(t,"parent")}function zt(t,e){t.forEach(n=>{Ye(n,e)})}const Xt=Symbol("targetKey");function Jt(t){var e;return(e=t[Xt])!=null?e:t}function Gt(t,e){return zt(t,e),new Proxy(t,{get(n,u,...a){return u===Xt?n:Reflect.get(n,u,...a)},set(n,u,a,...i){if(ir(t)&&u==="length"&&a===t.length)return!0;const r=Reflect.set(n,u,a,...i);return ar(a)&&Ye(a,e),r}})}function ae(t,e,n,u){const a=u!=null?u:t;let i=Gt(Jt(n!=null?n:[]),a);Object.defineProperty(t,e,{get(){return i},set(r){i=Gt(Jt(r),a)},enumerable:!0})}const vs=1e4;class ie extends q{constructor(e){super(e);this.controlType="layout";const{excludes:n,childrenMaxLength:u}=new.target;this.props=new ue(e==null?void 0:e.props),ae(this,"children",e==null?void 0:e.children),this.excludes=K(n),this.childrenMaxLength=u}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const n=this.judgeExcludesChildren(e);return n&&this.childrenMaxLength>this.children.length}validate(e,n){var u=a=>super[a];return re(this,null,function*(){return yield u("validate").call(this,e,n),yield Promise.all(this.children.map(i=>i.validate(e,n))),!0})}toDataBindModel(e=null){const n=super.toDataBindModel(),u=n?[n]:[];return this.children.reduce((a,i)=>{const r=i.toDataBindModel(e);if(Array.isArray(r)){const o=r.filter(d=>!!d);return[...a,...o]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),n=this.children.map(u=>u.toSchema());return Ae(G({},e),{children:n})}}ie.excludes=!1,ie.childrenMaxLength=vs;class pe extends T{constructor(e){super(e);this.controlType="layout",this.props=new ue(e==null?void 0:e.props),ae(this,"children",e==null?void 0:e.children)}}class et extends x{constructor(e,n){super(n);ae(this,"headers",n==null?void 0:n.headers,e)}}class Zt extends q{constructor(e){super(e);this.controlType="list",this.props=new et(this,e==null?void 0:e.props)}validate(e,n){var u=a=>super[a];return re(this,null,function*(){return yield u("validate").call(this,e),yield Promise.all(this.props.headers.map(i=>i.validate(e,n))),!0})}toDataBindModel(){const e=super.toDataBindModel(),n=e?[e]:[],u=this.id;return this.props.headers.reduce((a,i)=>{const r=i.toDataBindModel(u);if(Array.isArray(r)){const o=r.filter(d=>!!d);return[...a,...o]}return r&&a.push(r),a},n)}toSchema(){const e=super.toSchema(),n=this.props.headers.map(u=>u.toSchema());return Ae(G({},e),{props:Ae(G({},this.props),{headers:n})})}}Zt.controlFieldType=R.LIST;class Bs extends T{constructor(e){super(e);this.controlType="list",this.props=new et(this,e==null?void 0:e.props),ae(this,"children",e==null?void 0:e.children)}get length(){return this.children.length}}class tt extends ye{constructor(e){super(e);this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.width={type:"number",required:!1,message:f.getMessage("pleaseEnterColumnWidth")},this.width.required=e.widthType==="px"}}class Be extends x{constructor(e){super(e);var n,u,a,i,r;this.width=(n=e==null?void 0:e.width)!=null?n:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new qe(e==null?void 0:e.autoWidth),this.dataBind=new O(e==null?void 0:e.dataBind),this.sort=(i=e==null?void 0:e.sort)!=null?i:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(r=e==null?void 0:e.autoHeight)!=null?r:!1}}Be.Rules=tt;class As extends tt{constructor(e){super(e);this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Ze.call(this,e)}}class Cs extends q{constructor(e){super(e);this.controlType="column",this.props=new Be(e==null?void 0:e.props)}}class Fs extends T{constructor(e){super(e);this.controlType="column",this.props=new Be(e==null?void 0:e.props)}}class nt extends ue{constructor(e){super(e);this.dataBind=new O(e==null?void 0:e.dataBind)}}class Ds extends ie{constructor(e){super(e);this.controlType="search",this.props=new nt(e==null?void 0:e.props)}}class bs extends pe{constructor(e){super(e);this.controlType="search",this.props=new nt(e==null?void 0:e.props)}}class ut extends ue{constructor(e){super(e)}}class Ss extends ie{constructor(e){super(e);this.controlType="wrap",this.props=new ut(e==null?void 0:e.props)}}class ws extends pe{constructor(e){super(e);this.controlType="wrap",this.props=new ut(e==null?void 0:e.props)}}function Is(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:f.getMessage("pleaseEnterForm")}}}])}s.AMOUNT_TYPE=xe,s.AddressValue=Vr,s.AmountDataBind=Lr,s.AmountValue=$r,s.AutoWidth=qe,s.BaseControlProperty=ne,s.BaseControlPropertyRules=Qe,s.BaseControlPropertyRuntimeRules=Wt,s.BaseStyle=qt,s.COMMON_SETTING_TYPE=$t,s.CalcDataBind=Or,s.CalcValue=Nr,s.ColumnControlProperty=Be,s.ColumnControlPropertyRules=tt,s.ColumnOptionAndDataSourcePropertyRules=As,s.CustomAttributeItem=Ue,s.CustomPermissionItem=_r,s.DataBind=O,s.DataSourceBind=me,s.DataSourceDataSetValue=wt,s.DataSourceOrderItem=Ne,s.DataSourceParamItem=Ar,s.DataStorageDoc=yr,s.DesignerColumnControl=Cs,s.DesignerControl=q,s.DesignerFormControl=Kt,s.DesignerLayoutControl=ie,s.DesignerListControl=Zt,s.DesignerSearchControl=Ds,s.DesignerWrapControl=Ss,s.DisplayBoListItem=Oe,s.FieldBindItem=Ft,s.FieldFilterCondition=Ve,s.FieldFilterConditions=he,s.FillBackBind=Sr,s.FillPayloadBind=Mt,s.FormBind=fe,s.FormSelectBind=Er,s.ImageOptionSetting=Lt,s.Language=wr,s.LayoutControlProperty=ue,s.LeftVariable=bt,s.LinkOperationOption=Fr,s.ListBind=vr,s.ListControlProperty=et,s.MetaAutoWidth=gr,s.MetaWidth=de,s.MultistageFillingItem=St,s.ObjectDataBind=ge,s.OperationItem=jr,s.OptionAndDataSourcePropertyRules=ys,s.OptionSetting=_e,s.OrganizationDataSourceBind=Dr,s.PAGE_STATUS=He,s.Property=x,s.PropertyRules=ye,s.PropertyRuntimeRules=Te,s.RangeDataBind=qr,s.RangeDateValue=Pr,s.RegisterControls=ce,s.RegularRules=Ir,s.RightVariable=Pe,s.RuntimeColumnControl=Fs,s.RuntimeControl=T,s.RuntimeFormControl=Es,s.RuntimeLayoutControl=pe,s.RuntimeListControl=Bs,s.RuntimeSearchControl=bs,s.RuntimeWrapControl=ws,s.SearchControlProperty=nt,s.SelectedContentConfig=Cr,s.SubListItem=Dt,s.SubListPageConfig=Br,s.SuperDataSourceBind=It,s.TreeDataSourceBind=br,s.ViewOperationItem=Ur,s.WrapControlProperty=ut,s.controlHooksEmitter=xt,s.createValidator=_t,s.defineArrayParent=zt,s.defineControlArrayToProperty=ae,s.defineParent=Ye,s.initImageOptions=Mr,s.initLinkOperationRules=Is,s.initOptionAndDataSourceRules=Ze,s.initOptions=Rr,s.initSuperDataSourceRules=gs,s.setPropertyDontEnum=kt,Object.defineProperty(s,"__esModule",{value:!0})});
|
|
1
|
+
var Ms=Object.defineProperty,Ls=Object.defineProperties;var $s=Object.getOwnPropertyDescriptors;var pt=Object.getOwnPropertySymbols;var qs=Object.prototype.hasOwnProperty,Ps=Object.prototype.propertyIsEnumerable;var en=(s,S,M)=>S in s?Ms(s,S,{enumerable:!0,configurable:!0,writable:!0,value:M}):s[S]=M,G=(s,S)=>{for(var M in S||(S={}))qs.call(S,M)&&en(s,M,S[M]);if(pt)for(var M of pt(S))Ps.call(S,M)&&en(s,M,S[M]);return s},Ce=(s,S)=>Ls(s,$s(S));var se=(s,S,M)=>new Promise((le,oe)=>{var Fe=_=>{try{Z(M.next(_))}catch(Q){oe(Q)}},De=_=>{try{Z(M.throw(_))}catch(Q){oe(Q)}},Z=_=>_.done?le(_.value):Promise.resolve(_.value).then(Fe,De);Z((M=M.apply(s,S)).next())});(function(s,S){typeof exports=="object"&&typeof module!="undefined"?S(exports,require("regenerator-runtime")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime"],S):(s=typeof globalThis!="undefined"?globalThis:s||self,S(s.modelDrivenCore={},s.regeneratorRuntime))})(this,function(s,S){"use strict";function M(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}var le=M(S),oe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",De="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Z="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",_="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Q="{caption}\u5FC5\u586B",tn="\u8BF7\u8F93\u5165\u6807\u9898",nn="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",un="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",an="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",rn="\u8BF7\u7ED1\u5B9A\u8868\u5355",sn="\u8BF7\u7ED1\u5B9A\u5217\u8868",ln="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",on="\u8BF7\u8F93\u5165\u663E\u793A\u503C",cn="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",dn="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",fn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",hn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",mn="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",gn="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",yn="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",En="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",vn="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",Bn="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",An="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Cn="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Fn="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Dn="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",bn="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Sn="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",wn="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",In="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Rn="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Mn="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ln="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",$n="\u8BF7\u7ED1\u5B9A\u670D\u52A1",qn="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Pn="\u8BF7\u9009\u62E9\u7701",Vn="\u8BF7\u9009\u62E9\u5E02",On="\u8BF7\u9009\u62E9\u533A",Nn="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",jn="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Un="\u8BF7\u8F93\u5165\u5217\u5BBD",_n="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",xn="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Hn="\u8BF7\u9009\u62E9\u63A7\u4EF6",Tn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Wn="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",Kn="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",kn="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",zn="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Xn="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Jn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Gn="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Zn="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Qn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Yn="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",pn="\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",tu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",nu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",uu="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",au="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",iu="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ru="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",su="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",lu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ou={isNotNumber:oe,isNotString:Fe,isNotObject:De,isNotArray:Z,isNotBoolean:_,runtimeRequired:Q,pleaseEnterCaption:tn,pleaseEnterCaptionTip:nn,pleaseEnterPlaceholder:un,pleaseEnterFieldCode:an,pleaseEnterForm:rn,pleaseEnterList:sn,pleaseEnterProcess:ln,pleaseEnterLabel:on,pleaseEnterValue:cn,bizKeyNotBindFiled:dn,pleaseSelectOneField:fn,pleaseEnterNumberRange:hn,pleaseEnterAValueGreaterThanMin:mn,pleaseEnterAValueLessThanMax:gn,numberRangeSetError:yn,stringRangeError:En,attachmentMaxSize:vn,pleaseEnterTotalScoreSetting:Bn,theTotalScoreMustNotBeLessThan1:An,scoreDefaultValueRange:Cn,attachmentLimitError:Fn,PleaseReselectTheOptionalQuantity:Dn,TheMaximumLengthIsGreaterThanTheMinimumLength:bn,TheMinimumLengthIsGreaterThanTheMaximumLength:Sn,PleaseSelectTheCorrectOptionSettings:wn,optionIdIsRepeat:In,optionIsRequired:Rn,pleaseEnterDataCode:Mn,pleaseEnterValueFieldCode:Ln,pleaseEnterSvcCode:$n,pleaseBindAtLeastOneDisplayValue:qn,pleaseSelectProvince:Pn,pleaseSelectCity:Vn,pleaseSelectDistrict:On,limitRowsCannotBeLessThan0:Nn,TheNumberOfRowsCannotBeLessThanMinRows:jn,pleaseEnterColumnWidth:Un,pleaseSetTheLogicalRelationshipOfAllRuleConditions:_n,pleaseCompleteAllRulesAndConditions:xn,pleaseSelectControl:Hn,pleaseSelectAtLeastOneColumn:Tn,pleaseSelectFillBackMode:Wn,pleaseSelectDashboard:Kn,rootNodeIsRequired:kn,theViewNameCannotBeEmpty:zn,pleaseSelectOcrType:Xn,pleaseSelectAtLeastOneFieldToFillIn:Jn,pleaseChooseAtLeastOne:Gn,pleaseEnterButtonContent:Zn,pleaseEnterDataCodeInDataSetting:Qn,pleaseEnterValueFieldCodeInDataSetting:Yn,pleaseEnterSvcCodeInDataSetting:pn,pleaseBindAtLeastOneDisplayValueInDataSetting:eu,rootNodeIsRequiredInDataSetting:tu,pleaseEnterMaxHeight:nu,pleaseEnter:uu,pleaseEnterWatermark:au,pleaseEnterFileName:iu,pleaseUploadAtLeastOnePrintTemplate:ru,pleaseAssignBusiness:su,pleaseAssignExternal:lu},cu="Please enter a number",du="Please enter a string",fu="Please enter an object",hu="Please enter an array",mu="Please enter a boolean",gu="{caption} Required",yu="Please enter the title",Eu="Please enter the bubble prompt",vu="Please enter the prompt text",Bu="Please bind data items",Au="Please bind the form",Cu="Please bind the list",Fu="Please bind the process",Du="Please enter the displayed value",bu="Please enter the stored value",Su="The document number is not bound to the data item",wu="Please select at least one display field",Iu="Please enter a value greater than or equal to {min} and less than or equal to {max}",Ru="Please enter a value greater than or equal to {min}",Mu="Please enter a value less than or equal to {max}",Lu="The value range is set incorrectly",$u="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",qu="The attachment size must be between 0MB and 1000MB",Pu="Please fill in the total score setting",Vu="The total score cannot be less than 1",Ou="The default value must be between {min} and {max}",Nu="The number of attachments uploaded must be between {min} and {max}",ju="Please re-select the optional quantity",Uu="The maximum length of the control must be greater than the minimum length",_u="The minimum length of the control must be less than the maximum length",xu="Please select the correct option setting",Hu="Option ID cannot be repeated",Tu="Please enter at least one option",Wu="Please bind the data source",Ku="Please bind the stored value",ku="Please bind the service",zu="At least one display value must be bound",Xu="Please select a province",Ju="Please select a city",Gu="Please select a district",Zu="The minimum number of lines to fill in cannot be less than 0",Qu="The number of rows cannot be less than {min} rows",Yu="Please enter the column width",pu="Please set the logical relationship of all rule conditions",ea="Please complete all rules and conditions",ta="please select control",na="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ua="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",aa="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ia="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",ra="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",sa="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",la="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",oa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",da="\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",ha="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ma="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ga="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ya="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ea="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",va="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ba="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Aa={isNotNumber:cu,isNotString:du,isNotObject:fu,isNotArray:hu,isNotBoolean:mu,runtimeRequired:gu,pleaseEnterCaption:yu,pleaseEnterCaptionTip:Eu,pleaseEnterPlaceholder:vu,pleaseEnterFieldCode:Bu,pleaseEnterForm:Au,pleaseEnterList:Cu,pleaseEnterProcess:Fu,pleaseEnterLabel:Du,pleaseEnterValue:bu,bizKeyNotBindFiled:Su,pleaseSelectOneField:wu,pleaseEnterNumberRange:Iu,pleaseEnterAValueGreaterThanMin:Ru,pleaseEnterAValueLessThanMax:Mu,numberRangeSetError:Lu,stringRangeError:$u,attachmentMaxSize:qu,pleaseEnterTotalScoreSetting:Pu,theTotalScoreMustNotBeLessThan1:Vu,scoreDefaultValueRange:Ou,attachmentLimitError:Nu,PleaseReselectTheOptionalQuantity:ju,TheMaximumLengthIsGreaterThanTheMinimumLength:Uu,TheMinimumLengthIsGreaterThanTheMaximumLength:_u,PleaseSelectTheCorrectOptionSettings:xu,optionIdIsRepeat:Hu,optionIsRequired:Tu,pleaseEnterDataCode:Wu,pleaseEnterValueFieldCode:Ku,pleaseEnterSvcCode:ku,pleaseBindAtLeastOneDisplayValue:zu,pleaseSelectProvince:Xu,pleaseSelectCity:Ju,pleaseSelectDistrict:Gu,limitRowsCannotBeLessThan0:Zu,TheNumberOfRowsCannotBeLessThanMinRows:Qu,pleaseEnterColumnWidth:Yu,pleaseSetTheLogicalRelationshipOfAllRuleConditions:pu,pleaseCompleteAllRulesAndConditions:ea,pleaseSelectControl:ta,pleaseSelectDashboard:na,theViewNameCannotBeEmpty:ua,pleaseSelectOcrType:aa,pleaseSelectAtLeastOneFieldToFillIn:ia,pleaseChooseAtLeastOne:ra,pleaseEnterButtonContent:sa,pleaseEnterDataCodeInDataSetting:la,pleaseEnterValueFieldCodeInDataSetting:oa,pleaseEnterSvcCodeInDataSetting:ca,pleaseBindAtLeastOneDisplayValueInDataSetting:da,rootNodeIsRequiredInDataSetting:fa,pleaseEnterMaxHeight:ha,pleaseEnter:ma,pleaseEnterWatermark:ga,pleaseEnterFileName:ya,pleaseUploadAtLeastOnePrintTemplate:Ea,pleaseAssignBusiness:va,pleaseAssignExternal:Ba},Ca="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fa="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Da="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Sa="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wa="{caption}\u5FC5\u9808",Ia="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ra="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ma="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",La="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",$a="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",qa="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Pa="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Va="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Oa="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Na="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",ja="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ua="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",_a="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",xa="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ha="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ta="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Wa="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ka="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ka="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",za="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Xa="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Ja="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ga="\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",Za="\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",Qa="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ya="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",pa="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",ei="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ti="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ni="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ui="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ai="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ii="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ri="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",si="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",li="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",oi="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ci="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",di="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",fi="please select control",hi="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",mi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",gi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",yi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ei="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",vi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Bi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Ai="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Ci="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Fi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Di="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",bi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Si="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",wi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Ii="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ri="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Mi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Li="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",$i={isNotNumber:Ca,isNotString:Fa,isNotObject:Da,isNotArray:ba,isNotBoolean:Sa,runtimeRequired:wa,pleaseEnterCaption:Ia,pleaseEnterCaptionTip:Ra,pleaseEnterPlaceholder:Ma,pleaseEnterFieldCode:La,pleaseEnterForm:$a,pleaseEnterList:qa,pleaseEnterProcess:Pa,pleaseEnterLabel:Va,pleaseEnterValue:Oa,bizKeyNotBindFiled:Na,pleaseSelectOneField:ja,pleaseEnterNumberRange:Ua,pleaseEnterAValueGreaterThanMin:_a,pleaseEnterAValueLessThanMax:xa,numberRangeSetError:Ha,stringRangeError:Ta,attachmentMaxSize:Wa,pleaseEnterTotalScoreSetting:Ka,theTotalScoreMustNotBeLessThan1:ka,scoreDefaultValueRange:za,attachmentLimitError:Xa,PleaseReselectTheOptionalQuantity:Ja,TheMaximumLengthIsGreaterThanTheMinimumLength:Ga,TheMinimumLengthIsGreaterThanTheMaximumLength:Za,PleaseSelectTheCorrectOptionSettings:Qa,optionIdIsRepeat:Ya,optionIsRequired:pa,pleaseEnterDataCode:ei,pleaseEnterValueFieldCode:ti,pleaseEnterSvcCode:ni,pleaseBindAtLeastOneDisplayValue:ui,pleaseSelectProvince:ai,pleaseSelectCity:ii,pleaseSelectDistrict:ri,limitRowsCannotBeLessThan0:si,TheNumberOfRowsCannotBeLessThanMinRows:li,pleaseEnterColumnWidth:oi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ci,pleaseCompleteAllRulesAndConditions:di,pleaseSelectControl:fi,pleaseSelectDashboard:hi,theViewNameCannotBeEmpty:mi,pleaseSelectOcrType:gi,pleaseSelectAtLeastOneFieldToFillIn:yi,pleaseChooseAtLeastOne:Ei,pleaseEnterButtonContent:vi,pleaseEnterDataCodeInDataSetting:Bi,pleaseEnterValueFieldCodeInDataSetting:Ai,pleaseEnterSvcCodeInDataSetting:Ci,pleaseBindAtLeastOneDisplayValueInDataSetting:Fi,rootNodeIsRequiredInDataSetting:Di,pleaseEnterMaxHeight:bi,pleaseEnter:Si,pleaseEnterWatermark:wi,pleaseEnterFileName:Ii,pleaseUploadAtLeastOnePrintTemplate:Ri,pleaseAssignBusiness:Mi,pleaseAssignExternal:Li},qi={zhCN:ou,enUS:Aa,jaJP:$i},it;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(it||(it={}));var rt;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(rt||(rt={}));var Pi="zh-CN";function P(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var k;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(k||(k={}));var L;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.ORGANIZATION_SELECTION="organization-selection",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.EMPLOYEE_COLUMN="employee-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2"})(L||(L={}));var R;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.RELATION="relation",t.LIST="list",t.RELATION_FIELD="relation-field",t.REFERENCE_FIELD="reference-field",t.CALC_FIELD="calc",t.JSON="json",t.BIGINT="bigint",t.ANY="ANY",t.ENCRYPTED_FIELD="encrypted_field"})(R||(R={}));var $;$={},P($,R.ARRAY,L.ARRAY_COLUMN),P($,R.AUTO_NUMBER,L.AUTO_NUMBER_COLUMN),P($,R.DECIMAL,L.DECIMAL_COLUMN),P($,R.DEPARTMENTS,L.DEPARTMENT_COLUMN),P($,R.FILE,L.FILE_COLUMN),P($,R.IMAGE,L.IMAGE_COLUMN),P($,R.ADDRESS,L.LOCATION_COLUMN),P($,R.EMPLOYEES,L.EMPLOYEE_COLUMN),P($,R.TEXT,L.TEXT_COLUMN),P($,R.TIMESCOPE,L.TIMESCOPE_COLUMN),P($,R.TIMESTAMP,L.TIMESTAMP_COLUMN),P($,R.VARCHAR,L.VARCHAR_COLUMN),P($,R.RELATION,L.VARCHAR_COLUMN);var st;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATETIME="datetime"})(st||(st={}));var lt="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Vi=lt+"0123456789";function W(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",n=0;n<t;n++){var u=n===0?lt:Vi,a=Math.random()*u.length;e+=u[parseInt(String(a),10)]}return e}function be(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function Oi(t){if(Array.isArray(t))return be(t)}function Ni(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function ot(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ji(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function ce(t,e,n){return ji()?ce=Reflect.construct:ce=function(a,i,r){var o=[null];o.push.apply(o,i);var d=Function.bind.apply(a,o),c=new d;return r&&p(c,r.prototype),c},ce.apply(null,arguments)}function Y(t){return Y=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Y(t)}function ct(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&p(t,e)}function Ui(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function _i(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function xi(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Hi(t,e){return e&&(Ti(e)==="object"||typeof e=="function")?e:Ni(t)}function p(t,e){return p=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},p(t,e)}function dt(t){return Oi(t)||_i(t)||Wi(t)||xi()}var Ti=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function Wi(t,e){if(!!t){if(typeof t=="string")return be(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return be(t,e)}}function Se(t){var e=typeof Map=="function"?new Map:void 0;return Se=function(u){if(u===null||!Ui(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return ce(u,arguments,Y(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),p(a,u)},Se(t)}function Ki(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function ft(t){var e=Ki();return function(){var u=Y(t),a;if(e){var i=Y(this).constructor;a=Reflect.construct(u,arguments,i)}else a=u.apply(this,arguments);return Hi(this,a)}}var we=console;function Ie(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=we).warn.apply(u,["\u{1F9D0} Driven Warning:"+e[0]].concat(dt(a)))}function ht(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u,a=e.slice(1);(u=we).log.apply(u,["\u{1F680} Driven Log:"+e[0]].concat(dt(a)))}function ki(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var Re=function(t){ct(n,t);var e=ft(n);function n(u){ot(this,n);var a;return a=e.call(this,u),a.name="\u{1F4A5} Driven Error",a.message=u?ki(u):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",a}return n}(Se(Error)),zi=function(t){ct(n,t);var e=ft(n);function n(u){ot(this,n);var a;return a=e.call(this,u),a.name="\u{1F6A8} Driven Reference Error",a}return n}(Re);function Me(t){throw new Re(t)}function mt(t){throw new zi(t)}function Xi(t){we.error(new Re(t))}var Ji=Object.prototype.toString;function gt(t,e){return Ji.call(t)==="[object "+e+"]"}function Gi(t){return gt(t,"String")}function Zi(t){return gt(t,"Promise")}var Qi=function(){function t(e){var n,u;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((u=(n=e.messages)!==null&&n!==void 0?n:this.getPreImport(e.locale))!==null&&u!==void 0?u:{}),e.variableRegExp&&(this.variableRegExp=e.variableRegExp),this.setLocale(e.locale)}return t.prototype.setLocale=function(e){var n=this;this.locale=e,this._messageCache.clear();var u=this.getMessageData();Zi(u)?u.then(function(a){n._messageCache.clear(),n.messages[n.localeInMessageKey]=a}):this.messages[this.localeInMessageKey]=u},t.prototype.getMessageData=function(){var e=this._messages[this.localeInMessageKey];return typeof e=="function"?e():e},t.prototype.translate=function(e,n,u){var a=this.getMessage(e);return a?this.formatMessage(a,u):this.formatMessage(n,u)},t.prototype.getMessage=function(e){if(this._messageCache.has(e))return this._messageCache.get(e);var n=this.getPathArray(e),u=n.reduce(function(a,i,r,o){if(a!==void 0){var d=a[i];if(!(r===o.length-1&&!Gi(d)))return d}},this.message);return this._messageCache.set(e,u),u},t.prototype.formatMessage=function(e,n){return n?e.replace(this.variableRegExp,function(u,a){var i=n[a];return i!==void 0?String(i):u}):e},t.prototype.getPreImport=function(e){var n;if(window.okI18nPreImport){var u=this.getLocaleInMessageKey(e);return window.okI18nPreImport.hasOwnProperty(u)?window.okI18nPreImport:(n={},n[u]=window.okI18nPreImport,n)}},t.prototype.getPathArray=function(e){return e.split(".")},t.prototype.getLocaleInMessageKey=function(e){return e.replace(/-/g,"")},Object.defineProperty(t.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"message",{get:function(){var e;return(e=this.messages[this.localeInMessageKey])!==null&&e!==void 0?e:{}},enumerable:!1,configurable:!0}),t}();function Yi(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function yt(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function pi(t,e,n){return e&&yt(t.prototype,e),n&&yt(t,n),t}var f=function(){function t(){Yi(this,t)}return pi(t,null,[{key:"getMessage",value:function(n){var u=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",u)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Pi;return new Qi({locale:n,messages:qi})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),t}();f.$i18n=f.resetI18n();function er(t,e,n){var u=e.replace(/\[(\d)]/g,function(i,r){return"."+r}).split("."),a=!1;return u.reduce(function(i,r,o,d){var c=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,r)){Ie("Can not set ".concat(e,"'s ").concat(r," property in current %o, Because there is no ").concat(r," property on the %o"),i,i);return}return o===d.length-1&&!Object.is(c[r],n)&&(c[r]=n,a=!0),c[r]}},t),a}var tr=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},nr={exports:{}};(function(t){(function(e){var n=function(l,g,h){if(!c(g)||v(g)||C(g)||b(g)||d(g))return g;var D,w=0,j=0;if(E(g))for(D=[],j=g.length;w<j;w++)D.push(n(l,g[w],h));else{D={};for(var A in g)Object.prototype.hasOwnProperty.call(g,A)&&(D[l(A,h)]=n(l,g[A],h))}return D},u=function(l,g){g=g||{};var h=g.separator||"_",D=g.split||/(?=[A-Z])/;return l.split(D).join(h)},a=function(l){return F(l)?l:(l=l.replace(/[\-_\s]+(.)?/g,function(g,h){return h?h.toUpperCase():""}),l.substr(0,1).toLowerCase()+l.substr(1))},i=function(l){var g=a(l);return g.substr(0,1).toUpperCase()+g.substr(1)},r=function(l,g){return u(l,g).toLowerCase()},o=Object.prototype.toString,d=function(l){return typeof l=="function"},c=function(l){return l===Object(l)},E=function(l){return o.call(l)=="[object Array]"},v=function(l){return o.call(l)=="[object Date]"},C=function(l){return o.call(l)=="[object RegExp]"},b=function(l){return o.call(l)=="[object Boolean]"},F=function(l){return l=l-0,l===l},m=function(l,g){var h=g&&"process"in g?g.process:g;return typeof h!="function"?l:function(D,w){return h(D,l,w)}},B={camelize:a,decamelize:r,pascalize:i,depascalize:r,camelizeKeys:function(l,g){return n(m(a,g),l)},decamelizeKeys:function(l,g){return n(m(r,g),l,g)},pascalizeKeys:function(l,g){return n(m(i,g),l)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=B:e.humps=B})(tr)})(nr);var Et={};Object.defineProperty(Et,"__esModule",{value:!0});function Le(t){if(typeof t!="object"||t===null)return t;if(Array.isArray(t))return t.map(e=>typeof e!="object"||e===null?e:Le(e));{const e={};for(const n in t){const u=t[n];e[n]=typeof u!="object"||u===null?u:Le(u)}return e}}var ur=Et.default=Le;function K(t){if(t!==void 0)return typeof t=="object"?ur(t):t}function ar(t){return Object.prototype.toString.call(t)==="[object Object]"}function ir(t){return Array.isArray(t)}function rr(t){return t.reduce(function(e,n){return e.includes(n)||e.push(n),e},[])}function $e(t,e){(e==null||e>t.length)&&(e=t.length);for(var n=0,u=new Array(e);n<e;n++)u[n]=t[n];return u}function sr(t){if(Array.isArray(t))return $e(t)}function vt(t,e,n,u,a,i,r){try{var o=t[i](r),d=o.value}catch(c){n(c);return}o.done?e(d):Promise.resolve(d).then(u,a)}function lr(t){return function(){var e=this,n=arguments;return new Promise(function(u,a){var i=t.apply(e,n);function r(d){vt(i,u,a,r,o,"next",d)}function o(d){vt(i,u,a,r,o,"throw",d)}r(void 0)})}}function or(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Bt(t,e){for(var n=0;n<e.length;n++){var u=e[n];u.enumerable=u.enumerable||!1,u.configurable=!0,"value"in u&&(u.writable=!0),Object.defineProperty(t,u.key,u)}}function cr(t,e,n){return e&&Bt(t.prototype,e),n&&Bt(t,n),t}function dr(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function fr(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function qe(t){return sr(t)||dr(t)||hr(t)||fr()}function hr(t,e){if(!!t){if(typeof t=="string")return $e(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);if(n==="Object"&&t.constructor&&(n=t.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return $e(t,e)}}var mr=function(){function t(){or(this,t),this._events=new Map,this.debug=!1}return cr(t,[{key:"emit",value:function(n){for(var u=arguments.length,a=new Array(u>1?u-1:0),i=1;i<u;i++)a[i-1]=arguments[i];var r=this;return lr(le.default.mark(function o(){var d,c,E,v,C,b,F,m,B,l;return le.default.wrap(function(h){for(;;)switch(h.prev=h.next){case 0:if(d=r._events.get(n),c=[],!d){h.next=42;break}E=d.slice(),v=!0,C=!1,b=void 0,h.prev=5,F=E[Symbol.iterator]();case 7:if(v=(m=F.next()).done){h.next=28;break}if(B=m.value,d.includes(B)){h.next=11;break}return h.abrupt("continue",25);case 11:return h.prev=11,r.debug&&ht.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat(qe(a))),h.next=15,B.apply(null,qe(a));case 15:if(l=h.sent,r.debug&&ht.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(B.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+B.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(qe(a),[l])),c.push(l),l!==!1){h.next=20;break}return h.abrupt("break",28);case 20:h.next=25;break;case 22:h.prev=22,h.t0=h.catch(11),Xi(String(h.t0)+":"+String(h.t0.stack));case 25:v=!0,h.next=7;break;case 28:h.next=34;break;case 30:h.prev=30,h.t1=h.catch(5),C=!0,b=h.t1;case 34:h.prev=34,h.prev=35,!v&&F.return!=null&&F.return();case 37:if(h.prev=37,!C){h.next=40;break}throw b;case 40:return h.finish(37);case 41:return h.finish(34);case 42:return h.abrupt("return",c);case 43:case"end":return h.stop()}},o,null,[[5,30,34,42],[11,22],[35,,37,41]])}))()}},{key:"on",value:function(n,u){if(this._events.has(n)){var a;(a=this._events.get(n))===null||a===void 0||a.push(u)}else this._events.set(n,[u])}},{key:"off",value:function(n,u){if(this._events.has(n)){var a=this._events.get(n),i=a==null?void 0:a.indexOf(u);a==null||a.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),t}();const At=[];class de{constructor(e){this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=e,this._initControls(e)}registerControlConfig(e,n){return this.controlConfigMap.set(e,n),this}getControlConfig(e){return this.controlConfigMap.get(e)}static register(e){const{Designer:n,Runtime:u}=e;(!n||!u||!n.__is_control__||!u.__is_control__)&&Me(`${e} is can't register as a Control`);const a=this.staticControls.findIndex(i=>i.Designer.controlType===n.controlType);return a>-1&&(Ie(`The ${n.controlType} is repeat register, So it overwrites the one that was registered before.`),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(n.controlType),this.staticControls.push(e),this}getControls(){return this._controls}register(e){e.__is_control__||Me(`${e.name} is not a Control`);const n=this._controls.findIndex(u=>u.controlType===e.controlType);return n>-1&&(Ie(`The ${e.controlType} is repeat register, So it overwrites the one that was registered before.`),this._controls.splice(n,1)),this.registeredControlTypes.add(e.controlType),this._controls.push(e),this}isLayoutControl(e){return e.controlType===k.LAYOUT}isFormControl(e){return e.controlType===k.FORM}isListControl(e){return e.controlType===k.LIST}isColumnControl(e){return e.controlType===k.COLUMN}createControl(e,n){if(Array.isArray(e))return e.map(a=>this.createControl(a,n));e.children&&(e.children=e.children.map(a=>this.createControl(a,n))),this.isListControl(e)&&e.props.headers&&(e.props.headers=e.props.headers.map(a=>this.createControl(a,n)));const u=this.getControlFormType(e.type);if(u){let a=e;if(typeof n=="function"){const r=n(a);r&&(a=r)}return new u(a)}else Me(`The constructor of ${e.type} could not be found, please confirm that the constructor has been registered`)}createControlInstance(e,n){const u=this.getControlFormType(e);if(u)return new u(n)}getControlFormType(e){return this._controls.find(n=>n.controlType===e)}_initControls(e){this.constructor.staticControls.forEach(n=>{this.register(n[e])})}}de.staticControls=At,de.staticRegisteredTypes=new Set(At.map(t=>t.Designer.controlType)),de.staticRegisteredConfigs=new Map;class O{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:""}}class Pe{constructor(e){var n,u;this.minWidth=(n=e==null?void 0:e.minWidth)!=null?n:150,this.maxWidth=e==null?void 0:e.maxWidth,this.flex=(u=e==null?void 0:e.flex)!=null?u:1}}class fe extends Pe{constructor(e){super(e);var n,u;this.width=(n=e==null?void 0:e.width)!=null?n:240,this.widthType=(u=e==null?void 0:e.widthType)!=null?u:"auto"}}class gr{constructor(e){this.pc=new fe(e==null?void 0:e.pc),this.mobile=(e==null?void 0:e.mobile)?new fe(e==null?void 0:e.mobile):new fe({width:130,minWidth:180})}}class yr{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"firstThree",this.customOptions=(u=e==null?void 0:e.customOptions)!=null?u:[]}}class he{constructor(e){var n,u,a;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.appId=(a=e==null?void 0:e.appId)!=null?a:""}}class Er extends he{constructor(e){super(e);var n;this.primaryControlId=(n=e==null?void 0:e.primaryControlId)!=null?n:""}}class Ct{constructor(e){var n;this.fieldCode=(n=e==null?void 0:e.fieldCode)!=null?n:""}}class vr{constructor(e){var n,u,a,i;this.appId=(n=e==null?void 0:e.appId)!=null?n:"",this.formKey=(u=e==null?void 0:e.formKey)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[]}}class Ft{constructor(e){var n,u,a;this.fieldName=(n=e==null?void 0:e.fieldName)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:R.VARCHAR}}class Dt extends he{constructor(e){super(e);var n,u,a,i;this.title=(n=e==null?void 0:e.title)!=null?n:"",this.svcCode=(u=e==null?void 0:e.svcCode)!=null?u:"",this.isOpenFilter=(a=e==null?void 0:e.isOpenFilter)!=null?a:!1,this.filters=(i=e==null?void 0:e.filters)!=null?i:[]}}class Br{constructor(e){var n,u,a,i;this.type="sublist-page",this.formBind=new he(e==null?void 0:e.formBind),this.displayFields=(u=(n=e==null?void 0:e.displayFields)==null?void 0:n.map(r=>new Ft(r)))!=null?u:[],this.sublists=(i=(a=e==null?void 0:e.sublists)==null?void 0:a.map(r=>new Dt(r)))!=null?i:[]}}class bt{constructor(e){this.type=e==null?void 0:e.type,this.value=e==null?void 0:e.value}}class Ve{constructor(e){var n,u,a;this.type=(n=e==null?void 0:e.type)!=null?n:"custom",this.value=(u=e==null?void 0:e.value)!=null?u:[],this.displayBos=(a=e==null?void 0:e.displayBos)!=null?a:[]}}class ee{constructor(e){var n,u,a,i;this.type="conditions",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.level=(a=e==null?void 0:e.level)!=null?a:0,this.value=(i=e==null?void 0:e.value)!=null?i:"and",this.children=[],Array.isArray(e==null?void 0:e.children)&&(e==null||e.children.map(r=>{var o,d;if(r.children!==void 0){const c=new ee(r);(o=this.children)==null||o.push(c)}else{const c=new me(r);(d=this.children)==null||d.push(c)}}))}}class me{constructor(e){var n,u,a,i,r;this.type="condition",this.id=(n=e==null?void 0:e.id)!=null?n:W(),this.ruleId=(u=e==null?void 0:e.ruleId)!=null?u:new Date().valueOf(),this.symbol=(a=e==null?void 0:e.symbol)!=null?a:"",this.checked=(i=e==null?void 0:e.checked)!=null?i:!1,this.describe=(r=e==null?void 0:e.describe)!=null?r:"",this.leftVariableBo=new bt(e==null?void 0:e.leftVariableBo),this.rightVariableBo=new Ve(e==null?void 0:e.rightVariableBo)}}class St{constructor(e){var n,u,a,i;this.controlId=(n=e==null?void 0:e.controlId)!=null?n:"",this.fieldCode=(u=e==null?void 0:e.fieldCode)!=null?u:"",this.fieldType=(a=e==null?void 0:e.fieldType)!=null?a:"",this.propName=(i=e==null?void 0:e.propName)!=null?i:""}}class Oe{constructor(e){var n,u;this.type=(n=e==null?void 0:e.type)!=null?n:"FIELD",this.value=(u=e==null?void 0:e.value)!=null?u:"",this.fieldType=e==null?void 0:e.fieldType}}class Ne{constructor(e){var n,u;this.columnName=(n=e.columnName)!=null?n:"",this.desc=(u=e.desc)!=null?u:!1}}class wt{constructor(e){var n,u,a;this.code=(n=e.code)!=null?n:"",this.value=(u=e.value)!=null?u:"",this.field_type=(a=e.field_type)!=null?a:R.ANY}}class Ar{constructor(e){var n,u,a,i,r,o,d;this.id=(n=e.id)!=null?n:"",this.limit=(u=e.limit)!=null?u:20,this.formKey=(a=e.formKey)!=null?a:"",this.orders=(r=(i=e.orders)==null?void 0:i.map(c=>new Ne(c)))!=null?r:[],this.dataSet=(d=(o=e.dataSet)==null?void 0:o.map(c=>new wt(c)))!=null?d:[]}}function je(t){var e,n,u,a,i,r;this.filters=(n=(e=t==null?void 0:t.filters)==null?void 0:e.map(o=>o.children!==void 0?new ee(o):new me(o)))!=null?n:[],this.viewFilters=(a=(u=t==null?void 0:t.viewFilters)==null?void 0:u.map(o=>o.children!==void 0?new ee(o):new me(o)))!=null?a:[],(this instanceof ge||this instanceof Mt)&&(this.orders=(r=(i=t==null?void 0:t.orders)==null?void 0:i.map(o=>new Ne(o)))!=null?r:[])}class ge{constructor(e){var n,u,a,i,r,o;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.valueFieldCode=(a=e==null?void 0:e.valueFieldCode)!=null?a:"",this.displayBoList=[],this.isOpenViewFilters=(i=e==null?void 0:e.isOpenViewFilters)!=null?i:0,Array.isArray(e==null?void 0:e.displayBoList)&&(e==null||e.displayBoList.map(d=>{var c;(c=this.displayBoList)==null||c.push(new Oe(d))})),this.showOrder=(r=e==null?void 0:e.showOrder)!=null?r:!0,this.svcCode=(o=e==null?void 0:e.svcCode)!=null?o:"",je.call(this,e)}}class Cr{constructor(e){var n,u;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.displayBoList=(u=e==null?void 0:e.displayBoList)!=null?u:[]}}class Fr{constructor(e){var n,u,a,i,r,o,d,c,E,v;this.code=(n=e==null?void 0:e.code)!=null?n:"view",this.color=(u=e==null?void 0:e.color)!=null?u:"primary",this.command=(a=e==null?void 0:e.command)!=null?a:"view",this.confirmMessage=(i=e==null?void 0:e.confirmMessage)!=null?i:void 0,this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.formKey=(o=e==null?void 0:e.formKey)!=null?o:void 0,this.icon=(d=e==null?void 0:e.icon)!=null?d:"iconliulan1",this.needConfirm=(c=e==null?void 0:e.needConfirm)!=null?c:!1,this.openType=(E=e==null?void 0:e.openType)!=null?E:"modal",this.priorityProcess=(v=e==null?void 0:e.priorityProcess)!=null?v:!0}}class Ue{constructor(e){var n,u,a,i;this.name=(n=e==null?void 0:e.name)!=null?n:"",this.key=(u=e==null?void 0:e.key)!=null?u:"",this.value=(i=(a=e==null?void 0:e.value)==null?void 0:a.map(r=>new Oe(r)))!=null?i:[]}}class It extends ge{constructor(e){super(e);var n,u;this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(a=>new Ue(a)))!=null?u:[]}}class Dr extends ge{constructor(e){super(e);var n,u,a;this.attributes=(u=(n=e==null?void 0:e.attributes)==null?void 0:n.map(i=>new Ue(i)))!=null?u:[],this.formCode=(a=e==null?void 0:e.formCode)!=null?a:""}}class br extends It{constructor(e){super(e);var n;this.rootNode=new Ve(e==null?void 0:e.rootNode),this.filterCode=(n=e==null?void 0:e.filterCode)!=null?n:""}}class Rt{constructor(e){var n,u,a,i;this.dataCode=(n=e==null?void 0:e.dataCode)!=null?n:"",this.appId=(u=e==null?void 0:e.appId)!=null?u:"",this.fillList=(i=(a=e==null?void 0:e.fillList)==null?void 0:a.map(r=>new St(r)))!=null?i:[]}}class Mt extends Rt{constructor(e){super(e);je.call(this,e)}}class Sr extends Rt{constructor(e){super(e);var n,u;this.mode=(n=e==null?void 0:e.mode)!=null?n:"current",this.multiple=(u=e==null?void 0:e.multiple)!=null?u:!1}}class wr{constructor(e){var n,u,a;this.zh=(n=e==null?void 0:e.zh)!=null?n:"",this.en=(u=e==null?void 0:e.en)!=null?u:"",this.ja=(a=e==null?void 0:e.ja)!=null?a:""}}class Ir{constructor(e){var n,u,a;this.stencilName=(n=e==null?void 0:e.stencilName)!=null?n:"",this.expression=(u=e==null?void 0:e.expression)!=null?u:"",this.errMessage=(a=e==null?void 0:e.errMessage)!=null?a:""}}class _e{constructor(e){var n,u,a;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.label=(u=e==null?void 0:e.label)!=null?u:"",this.value=(a=e==null?void 0:e.value)!=null?a:this.label}}class Lt extends _e{constructor(e){super(e);var n,u;this.image=(n=e==null?void 0:e.image)!=null?n:"",this.type=(u=e==null?void 0:e.type)!=null?u:"src"}}function Rr(t){var e;return(e=t==null?void 0:t.map(n=>new _e(n)))!=null?e:[]}function Mr(t){var e;return(e=t==null?void 0:t.map(n=>new Lt(n)))!=null?e:[]}class ye{}class Lr extends ye{constructor(e){super();this.amount=new O(e==null?void 0:e.amount),this.currency=new O(e==null?void 0:e.currency)}}class $r{constructor(e){var n,u;this.amount=(n=e==null?void 0:e.amount)!=null?n:"",this.currency=(u=e==null?void 0:e.currency)!=null?u:xe.CNY}}class qr extends ye{constructor(e){super();this.min=new O(e==null?void 0:e.min),this.max=new O(e==null?void 0:e.max)}}class Pr{constructor(e){var n,u;this.min=(n=e==null?void 0:e.min)!=null?n:"",this.max=(u=e==null?void 0:e.max)!=null?u:""}}class Vr{constructor(e){var n,u,a,i,r,o;this.city=(n=e==null?void 0:e.city)!=null?n:"",this.cityDisplay=(u=e==null?void 0:e.cityDisplay)!=null?u:"",this.district=(a=e==null?void 0:e.district)!=null?a:"",this.districtDisplay=(i=e==null?void 0:e.districtDisplay)!=null?i:"",this.province=(r=e==null?void 0:e.province)!=null?r:"",this.provinceDisplay=(o=e==null?void 0:e.provinceDisplay)!=null?o:""}}class Or extends ye{constructor(e){super();this.result=new O(e==null?void 0:e.result),this.unit=new O(e==null?void 0:e.unit)}}class Nr{constructor(e){var n,u;this.result=(n=e==null?void 0:e.result)!=null?n:0,this.unit=(u=e==null?void 0:e.unit)!=null?u:""}}var xe=(t=>(t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP",t))(xe||{}),$t=(t=>(t.DEFAULT_DISPLAY="defaultDisplay",t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.VIEW_FORM_MODEL_TYPE="viewFormModelType",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit",t.REVISIONS_MODE="revisionsMode",t.ALLOW_COPY_OPTIONS="allowCopyOptions",t))($t||{}),He=(t=>(t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT",t))(He||{});class jr{constructor(e){var n,u,a,i,r,o;this.isShow=(n=e==null?void 0:e.isShow)!=null?n:!0,this.content=(u=e==null?void 0:e.content)!=null?u:"",this.formKey=(a=e==null?void 0:e.formKey)!=null?a:"",this.openType=(i=e==null?void 0:e.openType)!=null?i:"modal",this.type=(r=e==null?void 0:e.type)!=null?r:"",this.priorityProcess=(o=e==null?void 0:e.priorityProcess)!=null?o:!1}}class Ur{constructor(e){var n,u,a,i;this.id=(n=e==null?void 0:e.id)!=null?n:W(8),this.title=(u=e==null?void 0:e.title)!=null?u:"",this.headers=(i=(a=e==null?void 0:e.headers)==null?void 0:a.map(r=>new Ct(r)))!=null?i:[],je.call(this,e)}}class _r{constructor(e){var n,u;this.key=(n=e.key)!=null?n:W(8),this.caption=(u=e.caption)!=null?u:""}}class qt{constructor(e){var n,u,a,i;this.width=(n=e==null?void 0:e.width)!=null?n:"",this.height=(u=e==null?void 0:e.height)!=null?u:"",this.widthConfig=(a=e==null?void 0:e.widthConfig)!=null?a:"fill",this.heightConfig=(i=e==null?void 0:e.heightConfig)!=null?i:"fill"}}class Ee{constructor(e){this.isHide={type:"boolean"}}}class Te extends Array{constructor(e){super()}}class x{constructor(e,n=""){var u,a;this.isHide=(u=e==null?void 0:e.isHide)!=null?u:!1,this.style=new qt(e==null?void 0:e.style),this.caption=(a=e==null?void 0:e.caption)!=null?a:n}}x.Rules=Ee,x.RuntimeRules=Te;function N(){return N=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var u in n)Object.prototype.hasOwnProperty.call(n,u)&&(t[u]=n[u])}return t},N.apply(this,arguments)}function xr(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function We(t){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},We(t)}function ve(t,e){return ve=Object.setPrototypeOf||function(u,a){return u.__proto__=a,u},ve(t,e)}function Hr(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(t){return!1}}function Be(t,e,n){return Hr()?Be=Reflect.construct:Be=function(a,i,r){var o=[null];o.push.apply(o,i);var d=Function.bind.apply(a,o),c=new d;return r&&ve(c,r.prototype),c},Be.apply(null,arguments)}function Tr(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Ke(t){var e=typeof Map=="function"?new Map:void 0;return Ke=function(u){if(u===null||!Tr(u))return u;if(typeof u!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(u))return e.get(u);e.set(u,a)}function a(){return Be(u,arguments,We(this).constructor)}return a.prototype=Object.create(u.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),ve(a,u)},Ke(t)}var Wr=/%[sdj%]/g,Pt=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Pt=function(e,n){typeof console!="undefined"&&console.warn&&n.every(function(u){return typeof u=="string"})&&console.warn(e,n)});function ke(t){if(!t||!t.length)return null;var e={};return t.forEach(function(n){var u=n.field;e[u]=e[u]||[],e[u].push(n)}),e}function V(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];var u=1,a=e[0],i=e.length;if(typeof a=="function")return a.apply(null,e.slice(1));if(typeof a=="string"){var r=String(a).replace(Wr,function(o){if(o==="%%")return"%";if(u>=i)return o;switch(o){case"%s":return String(e[u++]);case"%d":return Number(e[u++]);case"%j":try{return JSON.stringify(e[u++])}catch(d){return"[Circular]"}break;default:return o}});return r}return a}function Kr(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function I(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||Kr(e)&&typeof t=="string"&&!t)}function kr(t,e,n){var u=[],a=0,i=t.length;function r(o){u.push.apply(u,o),a++,a===i&&n(u)}t.forEach(function(o){e(o,r)})}function Vt(t,e,n){var u=0,a=t.length;function i(r){if(r&&r.length){n(r);return}var o=u;u=u+1,o<a?e(t[o],i):n([])}i([])}function zr(t){var e=[];return Object.keys(t).forEach(function(n){e.push.apply(e,t[n])}),e}var Ot=function(t){xr(e,t);function e(n,u){var a;return a=t.call(this,"Async Validation Error")||this,a.errors=n,a.fields=u,a}return e}(Ke(Error));function Xr(t,e,n,u){if(e.first){var a=new Promise(function(v,C){var b=function(B){return u(B),B.length?C(new Ot(B,ke(B))):v()},F=zr(t);Vt(F,n,b)});return a.catch(function(v){return v}),a}var i=e.firstFields||[];i===!0&&(i=Object.keys(t));var r=Object.keys(t),o=r.length,d=0,c=[],E=new Promise(function(v,C){var b=function(m){if(c.push.apply(c,m),d++,d===o)return u(c),c.length?C(new Ot(c,ke(c))):v()};r.length||(u(c),v()),r.forEach(function(F){var m=t[F];i.indexOf(F)!==-1?Vt(m,n,b):kr(m,n,b)})});return E.catch(function(v){return v}),E}function Nt(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function jt(t,e){if(e){for(var n in e)if(e.hasOwnProperty(n)){var u=e[n];typeof u=="object"&&typeof t[n]=="object"?t[n]=N(N({},t[n]),u):t[n]=u}}return t}function Ut(t,e,n,u,a,i){t.required&&(!n.hasOwnProperty(t.field)||I(e,i||t.type))&&u.push(V(a.messages.required,t.fullField))}function Jr(t,e,n,u,a){(/^\s+$/.test(e)||e==="")&&u.push(V(a.messages.whitespace,t.fullField))}var ze={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},te={integer:function(e){return te.number(e)&&parseInt(e,10)===e},float:function(e){return te.number(e)&&!te.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(n){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!te.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(ze.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(ze.url)},hex:function(e){return typeof e=="string"&&!!e.match(ze.hex)}};function Gr(t,e,n,u,a){if(t.required&&e===void 0){Ut(t,e,n,u,a);return}var i=["integer","float","array","regexp","object","method","email","number","date","url","hex"],r=t.type;i.indexOf(r)>-1?te[r](e)||u.push(V(a.messages.types[r],t.fullField,t.type)):r&&typeof e!==t.type&&u.push(V(a.messages.types[r],t.fullField,t.type))}function Zr(t,e,n,u,a){var i=typeof t.len=="number",r=typeof t.min=="number",o=typeof t.max=="number",d=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=e,E=null,v=typeof e=="number",C=typeof e=="string",b=Array.isArray(e);if(v?E="number":C?E="string":b&&(E="array"),!E)return!1;b&&(c=e.length),C&&(c=e.replace(d,"_").length),i?c!==t.len&&u.push(V(a.messages[E].len,t.fullField,t.len)):r&&!o&&c<t.min?u.push(V(a.messages[E].min,t.fullField,t.min)):o&&!r&&c>t.max?u.push(V(a.messages[E].max,t.fullField,t.max)):r&&o&&(c<t.min||c>t.max)&&u.push(V(a.messages[E].range,t.fullField,t.min,t.max))}var z="enum";function Qr(t,e,n,u,a){t[z]=Array.isArray(t[z])?t[z]:[],t[z].indexOf(e)===-1&&u.push(V(a.messages[z],t.fullField,t[z].join(", ")))}function Yr(t,e,n,u,a){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var i=new RegExp(t.pattern);i.test(e)||u.push(V(a.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var y={required:Ut,whitespace:Jr,type:Gr,range:Zr,enum:Qr,pattern:Yr};function pr(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a,"string"),I(e,"string")||(y.type(t,e,u,i,a),y.range(t,e,u,i,a),y.pattern(t,e,u,i,a),t.whitespace===!0&&y.whitespace(t,e,u,i,a))}n(i)}function es(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function ts(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e===""&&(e=void 0),I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ns(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}function us(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),I(e)||y.type(t,e,u,i,a)}n(i)}function as(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function is(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function rs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(e==null&&!t.required)return n();y.required(t,e,u,i,a,"array"),e!=null&&(y.type(t,e,u,i,a),y.range(t,e,u,i,a))}n(i)}function ss(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y.type(t,e,u,i,a)}n(i)}var ls="enum";function os(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a),e!==void 0&&y[ls](t,e,u,i,a)}n(i)}function cs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"string")&&!t.required)return n();y.required(t,e,u,i,a),I(e,"string")||y.pattern(t,e,u,i,a)}n(i)}function ds(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e,"date")&&!t.required)return n();if(y.required(t,e,u,i,a),!I(e,"date")){var o;e instanceof Date?o=e:o=new Date(e),y.type(t,o,u,i,a),o&&y.range(t,o.getTime(),u,i,a)}}n(i)}function fs(t,e,n,u,a){var i=[],r=Array.isArray(e)?"array":typeof e;y.required(t,e,u,i,a,r),n(i)}function Xe(t,e,n,u,a){var i=t.type,r=[],o=t.required||!t.required&&u.hasOwnProperty(t.field);if(o){if(I(e,i)&&!t.required)return n();y.required(t,e,u,r,a,i),I(e,i)||y.type(t,e,u,r,a)}n(r)}function hs(t,e,n,u,a){var i=[],r=t.required||!t.required&&u.hasOwnProperty(t.field);if(r){if(I(e)&&!t.required)return n();y.required(t,e,u,i,a)}n(i)}var ne={string:pr,method:es,number:ts,boolean:ns,regexp:us,integer:as,float:is,array:rs,object:ss,enum:os,pattern:cs,date:ds,url:Xe,hex:Xe,email:Xe,required:fs,any:hs};function Je(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var Ge=Je();function H(t){this.rules=null,this._messages=Ge,this.define(t)}H.prototype={messages:function(e){return e&&(this._messages=jt(Je(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var n,u;for(n in e)e.hasOwnProperty(n)&&(u=e[n],this.rules[n]=Array.isArray(u)?u:[u])},validate:function(e,n,u){var a=this;n===void 0&&(n={}),u===void 0&&(u=function(){});var i=e,r=n,o=u;if(typeof r=="function"&&(o=r,r={}),!this.rules||Object.keys(this.rules).length===0)return o&&o(),Promise.resolve();function d(m){var B,l=[],g={};function h(D){if(Array.isArray(D)){var w;l=(w=l).concat.apply(w,D)}else l.push(D)}for(B=0;B<m.length;B++)h(m[B]);l.length?g=ke(l):(l=null,g=null),o(l,g)}if(r.messages){var c=this.messages();c===Ge&&(c=Je()),jt(c,r.messages),r.messages=c}else r.messages=this.messages();var E,v,C={},b=r.keys||Object.keys(this.rules);b.forEach(function(m){E=a.rules[m],v=i[m],E.forEach(function(B){var l=B;typeof l.transform=="function"&&(i===e&&(i=N({},i)),v=i[m]=l.transform(v)),typeof l=="function"?l={validator:l}:l=N({},l),l.validator=a.getValidationMethod(l),l.field=m,l.fullField=l.fullField||m,l.type=a.getType(l),!!l.validator&&(C[m]=C[m]||[],C[m].push({rule:l,value:v,source:i,field:m}))})});var F={};return Xr(C,r,function(m,B){var l=m.rule,g=(l.type==="object"||l.type==="array")&&(typeof l.fields=="object"||typeof l.defaultField=="object");g=g&&(l.required||!l.required&&m.value),l.field=m.field;function h(j,A){return N(N({},A),{},{fullField:l.fullField+"."+j})}function D(j){j===void 0&&(j=[]);var A=j;if(Array.isArray(A)||(A=[A]),!r.suppressWarning&&A.length&&H.warning("async-validator:",A),A.length&&l.message!==void 0&&(A=[].concat(l.message)),A=A.map(Nt(l)),r.first&&A.length)return F[l.field]=1,B(A);if(!g)B(A);else{if(l.required&&!m.value)return l.message!==void 0?A=[].concat(l.message).map(Nt(l)):r.error&&(A=[r.error(l,V(r.messages.required,l.field))]),B(A);var U={};if(l.defaultField)for(var Qt in m.value)m.value.hasOwnProperty(Qt)&&(U[Qt]=l.defaultField);U=N(N({},U),m.rule.fields);for(var X in U)if(U.hasOwnProperty(X)){var Rs=Array.isArray(U[X])?U[X]:[U[X]];U[X]=Rs.map(h.bind(null,X))}var Yt=new H(U);Yt.messages(r.messages),m.rule.options&&(m.rule.options.messages=r.messages,m.rule.options.error=r.error),Yt.validate(m.value,m.rule.options||r,function(at){var J=[];A&&A.length&&J.push.apply(J,A),at&&at.length&&J.push.apply(J,at),B(J.length?J:null)})}}var w;l.asyncValidator?w=l.asyncValidator(l,m.value,D,m.source,r):l.validator&&(w=l.validator(l,m.value,D,m.source,r),w===!0?D():w===!1?D(l.message||l.field+" fails"):w instanceof Array?D(w):w instanceof Error&&D(w.message)),w&&w.then&&w.then(function(){return D()},function(j){return D(j)})},function(m){d(m)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!ne.hasOwnProperty(e.type))throw new Error(V("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var n=Object.keys(e),u=n.indexOf("message");return u!==-1&&n.splice(u,1),n.length===1&&n[0]==="required"?ne.required:ne[this.getType(e)]||!1}},H.register=function(e,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");ne[e]=n},H.warning=Pt,H.messages=Ge,H.validators=ne;const ms={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function _t(t,e={}){const n=new H(t);return n.messages(Object.assign(ms,e)),n}const xt=new mr;class q{constructor(e){var E,v,C,b;this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Tt,this.removeSetting=Ht,this._callControlHooks("preInstance",e);const{controlName:n,controlIcon:u,controlType:a,controlFieldType:i,controlEventKeys:r,controlCustomEvents:o,name:d,setting:c}=new.target;n&&u&&a||mt(`The ${d} controlName,controlIcon,controlType is not define`),this.id=(E=e==null?void 0:e.id)!=null?E:W(10),this.name=n,this.icon=u,this.type=(v=e==null?void 0:e.type)!=null?v:a,this.props=new x(e==null?void 0:e.props,new.target.controlName),this.controlType=(C=e==null?void 0:e.controlType)!=null?C:"base",this.setting=K(c),this.fieldType=(b=e==null?void 0:e.fieldType)!=null?b:i,this.eventKeys=K(r),this.customEvents=K(o),Promise.resolve().then(()=>{this._callControlHooks("postInstance",e)})}get rules(){const e=this.props.constructor.Rules;return e?new e(this.props):{}}_callControlHooks(...e){const[n,...u]=e;return xt.emit(n,this,...u)}preUpdate(e,n){this._callControlHooks("preUpdateProps",e,n)}postUpdate(e,n){this._callControlHooks("postUpdateProps",e,n)}updateProps(e,n){this.preUpdate(e,n),er(this.props,e,n),this.postUpdate(e,n)}preValidate(){return se(this,null,function*(){const e=G({},this.rules),n=yield this._callControlHooks("preValidate",e),u=n[n.length-1];return u===!1?void 0:u})}validate(e,n){return se(this,null,function*(){const u=yield this.preValidate(),a=u!==void 0?u:G({},this.rules);Array.isArray(n)&&n.forEach(r=>{a.hasOwnProperty(r)&&delete a[r]});const i=_t(a,e);try{return yield i.validate(this.props),!0}catch(r){throw r.control||(r.control=this),r}})}toDataBindModel(e=null){const n=this.fieldType,u=this.id,a=this.type,{dataBind:i,datasourceBind:r,optionConfig:o,caption:d,required:c,maxLength:E,options:v,encrypted:C,encryptedMode:b}=this.props;if(!n&&!i&&!r)return;const F={parentId:e,fieldType:n,controlId:u,caption:d,type:a,props:{}};switch(i&&(F.dataBind=i),o){case"datasource":case void 0:r&&(F.datasourceBind=r);break;case"custom":F.props.options=v;break}return c!==void 0&&(F.required=c),E!==void 0&&(F.maxLength=E),C!==void 0&&(F.encrypted=C),b!==void 0&&(F.encryptedMode=b),F}preToSchema(){this._callControlHooks("preToSchema",this)}toSchema(){return this.preToSchema(),{id:this.id,type:this.type,props:K(this.props),fieldType:this.fieldType,controlType:this.controlType}}static updateBasicControl(e,n){e==="setting"&&(n.add&&this.setting.push(...n.add),n.remove&&this.removeSettingItem(n.remove),n.update)}}q.controlName="\u63A7\u4EF6",q.controlIcon="icon",q.controlType="control",q.controlEventKeys=[],q.controlCustomEvents=[],q.setting=[],q.__is_control__=!0,q.removeSettingItem=Ht,q.updateSettingItem=Tt;function Ht(t){(Array.isArray(t)?t:[t]).forEach(n=>{var i,r;const u=typeof n!="string",a=this.setting.findIndex(o=>o.key===(u?n.key:n));a!==-1&&(u?this.setting[a].showItems=(i=this.setting[a].showItems)==null?void 0:i.filter(o=>!n.hideItems.includes(o)):this.setting.splice(a,1),u&&!((r=this.setting[a].showItems)==null?void 0:r.length)&&this.setting.splice(a,1))})}function Tt(t,e){(typeof t=="string"?[t]:t).forEach(u=>{var i;const a=this.setting.find(r=>r.key===u);a&&(typeof e=="boolean"?a.visible=e:typeof e=="object"&&(((i=e.type)!=null?i:"replace")==="replace"?a.showItems=e.showItems:a.showItems.push(...e.showItems)))})}class T{constructor(e){var r,o,d,c,E;this.customEvents=[],this.parent=null;const{controlType:n,controlFieldType:u,name:a,controlCustomEvents:i}=new.target;n||mt(`The ${a} controlType is not define`),this.id=(r=e==null?void 0:e.id)!=null?r:W(10),this.type=(o=e==null?void 0:e.type)!=null?o:n,this.props=new x(e==null?void 0:e.props),this.customEvents=i,this.controlType=(d=e==null?void 0:e.controlType)!=null?d:"base",this.fieldType=(c=e==null?void 0:e.fieldType)!=null?c:u,this.pageStatus=(E=e==null?void 0:e.pageStatus)!=null?E:He.UNKNOWN}get rules(){const e=this.props.constructor.RuntimeRules;if(e){const n=new e(this.props);return Array.from(n)}return[]}}T.controlType="control",T.__is_control__=!0,T.controlCustomEvents=[];function Ze(t){t.hasOwnProperty("optionConfig")||(this.optionConfig={type:"any"}),t.hasOwnProperty("options")||(this.options={type:"any"}),t.hasOwnProperty("datasourceBind")||(this.datasourceBind={type:"any"}),t.hasOwnProperty("options")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="custom")?this.options=[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{label:{type:"string",required:!0,message:f.getMessage("pleaseEnterLabel")},value:{type:"string",required:!0,message:f.getMessage("pleaseEnterValue")}}}},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("optionIsRequired")),u()}},{type:"array",validator(e,n,u){const a=n.map(r=>r.value),i=rr(a);a.length!==i.length?u(f.getMessage("optionIdIsRepeat")):u()},message:f.getMessage("optionIdIsRepeat")}]:t.hasOwnProperty("datasourceBind")&&(!t.hasOwnProperty("optionConfig")||t.hasOwnProperty("optionConfig")&&t.optionConfig==="datasource")&&(this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterSvcCode")},displayBoList:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(e,n,u){n.length===0&&u(f.getMessage("pleaseBindAtLeastOneDisplayValue")),u()},message:f.getMessage("pleaseBindAtLeastOneDisplayValue")}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}])}function gs(t,e,n=!1){this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")},{type:"object",fields:{dataCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterDataCodeInDataSetting":"pleaseEnterDataCode")},valueFieldCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterValueFieldCodeInDataSetting":"pleaseEnterValueFieldCode")},svcCode:{type:"string",required:!0,message:f.getMessage(n?"pleaseEnterSvcCodeInDataSetting":"pleaseEnterSvcCode")},attributes:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{name:{type:"string",required:!0,message:f.getMessage("isNotString")},key:{type:"string",required:!0,message:f.getMessage("isNotString")},value:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",validator(u,a,i){a.length===0&&i(f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")),i()},message:f.getMessage(n?"pleaseBindAtLeastOneDisplayValueInDataSetting":"pleaseBindAtLeastOneDisplayValue")}]}}}],orders:[{type:"array",message:f.getMessage("isNotArray")},{type:"array",defaultField:{type:"object",fields:{columnName:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},desc:{type:"boolean",message:f.getMessage("isNotBoolean")}}}}]}}]}class Qe extends Ee{constructor(e){super(e);this.dataBind={},this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.isHideCaption={type:"boolean"},this.labelPosition={type:"enum",enum:["top","left"]},this.defaultState={type:"enum",enum:["default","readonly"]},this.required={type:"boolean"},this.captionTip={type:"string",required:!1,message:f.getMessage("pleaseEnterCaptionTip")};const n={fieldCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:f.getMessage("pleaseEnterFieldCode")}};if(e.dataBind instanceof O)this.dataBind={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")};else{let u={type:"object",required:!0,fields:{},message:f.getMessage("pleaseEnterFieldCode")};Object.keys(e.dataBind).forEach(a=>{u.fields[a]={type:"object",required:!0,fields:K(n),message:f.getMessage("pleaseEnterFieldCode")}}),this.dataBind=u}e.isShowCaptionTip&&(this.captionTip.required=!0)}}class Wt extends Te{constructor(e){super(e);this.push({type:"string",required:e.isHide?!1:e.required,message:e.requiredMessage!==""?e.requiredMessage:f.getMessage("runtimeRequired",{caption:e.caption})})}}class ue extends x{constructor(e){super(e);var n,u,a,i,r,o,d,c,E,v;this.caption=(n=e==null?void 0:e.caption)!=null?n:"",this.isHideCaption=(u=e==null?void 0:e.isHideCaption)!=null?u:!1,this.isShowCaptionTip=(a=e==null?void 0:e.isShowCaptionTip)!=null?a:!1,this.captionTip=(i=e==null?void 0:e.captionTip)!=null?i:"",this.defaultState=(r=e==null?void 0:e.defaultState)!=null?r:"default",this.labelPosition=(o=e==null?void 0:e.labelPosition)!=null?o:"top",this.placeholder=(d=e==null?void 0:e.placeholder)!=null?d:"",this.required=(c=e==null?void 0:e.required)!=null?c:!1,this.requiredMessage=(E=e==null?void 0:e.requiredMessage)!=null?E:"",this.dataBind=new O(e==null?void 0:e.dataBind),this.defaultValue=(v=e==null?void 0:e.defaultValue)!=null?v:""}}ue.Rules=Qe,ue.RuntimeRules=Wt;class ys extends Qe{constructor(e){super(e);this.optionConfig={type:"enum",enum:["custom","datasource"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Ze.call(this,e)}}class Kt extends q{constructor(e){super(e);this.controlType="form",this.props=new ue(e==null?void 0:e.props)}}Kt.controlEventKeys=["on_change","on_focus","on_blur"];class Es extends T{constructor(e){super(e);this.controlType="form",this.props=new ue(e==null?void 0:e.props)}}class ae extends x{constructor(e){super(e)}}function kt(t,e){var n;((n=Object.getOwnPropertyDescriptors(t)[e])==null?void 0:n.enumerable)&&Object.defineProperty(t,e,{enumerable:!1})}function Ye(t,e){t.parent=e,kt(t,"parent")}function zt(t,e){t.forEach(n=>{Ye(n,e)})}const Xt=Symbol("targetKey");function Jt(t){var e;return(e=t[Xt])!=null?e:t}function Gt(t,e){return zt(t,e),new Proxy(t,{get(n,u,...a){return u===Xt?n:Reflect.get(n,u,...a)},set(n,u,a,...i){if(ir(t)&&u==="length"&&a===t.length)return!0;const r=Reflect.set(n,u,a,...i);return ar(a)&&Ye(a,e),r}})}function ie(t,e,n,u){const a=u!=null?u:t;let i=Gt(Jt(n!=null?n:[]),a);Object.defineProperty(t,e,{get(){return i},set(r){i=Gt(Jt(r),a)},enumerable:!0})}const vs=1e4;class re extends q{constructor(e){super(e);this.controlType="layout";const{excludes:n,childrenMaxLength:u}=new.target;this.props=new ae(e==null?void 0:e.props),ie(this,"children",e==null?void 0:e.children),this.excludes=K(n),this.childrenMaxLength=u}judgeExcludesChildren(e){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(e)}judgeJoinChildren(e){const n=this.judgeExcludesChildren(e);return n&&this.childrenMaxLength>this.children.length}validate(e,n){var u=a=>super[a];return se(this,null,function*(){return yield u("validate").call(this,e,n),yield Promise.all(this.children.map(i=>i.validate(e,n))),!0})}toDataBindModel(e=null){const n=super.toDataBindModel(),u=n?[n]:[];return this.children.reduce((a,i)=>{const r=i.toDataBindModel(e);if(Array.isArray(r)){const o=r.filter(d=>!!d);return[...a,...o]}return r&&a.push(r),a},u)}toSchema(){const e=super.toSchema(),n=this.children.map(u=>u.toSchema());return Ce(G({},e),{children:n})}}re.excludes=!1,re.childrenMaxLength=vs;class pe extends T{constructor(e){super(e);this.controlType="layout",this.props=new ae(e==null?void 0:e.props),ie(this,"children",e==null?void 0:e.children)}}class et extends x{constructor(e,n){super(n);ie(this,"headers",n==null?void 0:n.headers,e)}}class Zt extends q{constructor(e){super(e);this.controlType="list",this.props=new et(this,e==null?void 0:e.props)}validate(e,n){var u=a=>super[a];return se(this,null,function*(){return yield u("validate").call(this,e),yield Promise.all(this.props.headers.map(i=>i.validate(e,n))),!0})}toDataBindModel(){const e=super.toDataBindModel(),n=e?[e]:[],u=this.id;return this.props.headers.reduce((a,i)=>{const r=i.toDataBindModel(u);if(Array.isArray(r)){const o=r.filter(d=>!!d);return[...a,...o]}return r&&a.push(r),a},n)}toSchema(){const e=super.toSchema(),n=this.props.headers.map(u=>u.toSchema());return Ce(G({},e),{props:Ce(G({},this.props),{headers:n})})}}Zt.controlFieldType=R.LIST;class Bs extends T{constructor(e){super(e);this.controlType="list",this.props=new et(this,e==null?void 0:e.props),ie(this,"children",e==null?void 0:e.children)}get length(){return this.children.length}}class tt extends Ee{constructor(e){super(e);this.caption={type:"string",required:!0,message:f.getMessage("pleaseEnterCaption")},this.width={type:"number",required:!1,message:f.getMessage("pleaseEnterColumnWidth")},this.width.required=e.widthType==="px"}}class Ae extends x{constructor(e){super(e);var n,u,a,i,r;this.width=(n=e==null?void 0:e.width)!=null?n:150,this.widthType=(e==null?void 0:e.widthType)||"auto",this.caption=(u=e==null?void 0:e.caption)!=null?u:"",this.fixed=(a=e==null?void 0:e.fixed)!=null?a:"none",this.autoWidth=new Pe(e==null?void 0:e.autoWidth),this.dataBind=new O(e==null?void 0:e.dataBind),this.sort=(i=e==null?void 0:e.sort)!=null?i:!0,this.align=e==null?void 0:e.align,this.colSpan=e==null?void 0:e.colSpan,this.autoHeight=(r=e==null?void 0:e.autoHeight)!=null?r:!1}}Ae.Rules=tt;class As extends tt{constructor(e){super(e);this.optionConfig={type:"enum",enum:["custom","datasource","none"],message:f.getMessage("PleaseSelectTheCorrectOptionSettings")},this.options=[{type:"array",message:f.getMessage("isNotArray")}],this.datasourceBind=[{type:"object",message:f.getMessage("isNotObject")}],Ze.call(this,e)}}class Cs extends q{constructor(e){super(e);this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class Fs extends T{constructor(e){super(e);this.controlType="column",this.props=new Ae(e==null?void 0:e.props)}}class nt extends ae{constructor(e){super(e);this.dataBind=new O(e==null?void 0:e.dataBind)}}class Ds extends re{constructor(e){super(e);this.controlType="search",this.props=new nt(e==null?void 0:e.props)}}class bs extends pe{constructor(e){super(e);this.controlType="search",this.props=new nt(e==null?void 0:e.props)}}class ut extends ae{constructor(e){super(e)}}class Ss extends re{constructor(e){super(e);this.controlType="wrap",this.props=new ut(e==null?void 0:e.props)}}class ws extends pe{constructor(e){super(e);this.controlType="wrap",this.props=new ut(e==null?void 0:e.props)}}function Is(t){t.hasOwnProperty("linkOperationOption")&&t.hasOwnProperty("showLinkOperation")&&t.showLinkOperation&&(this.linkOperationOption=[{type:"object",fields:{formKey:{type:"string",required:!0,message:f.getMessage("pleaseEnterForm")}}}])}s.AMOUNT_TYPE=xe,s.AddressValue=Vr,s.AmountDataBind=Lr,s.AmountValue=$r,s.AutoWidth=Pe,s.BaseControlProperty=ue,s.BaseControlPropertyRules=Qe,s.BaseControlPropertyRuntimeRules=Wt,s.BaseStyle=qt,s.COMMON_SETTING_TYPE=$t,s.CalcDataBind=Or,s.CalcValue=Nr,s.ColumnControlProperty=Ae,s.ColumnControlPropertyRules=tt,s.ColumnOptionAndDataSourcePropertyRules=As,s.CustomAttributeItem=Ue,s.CustomPermissionItem=_r,s.DataBind=O,s.DataSourceBind=ge,s.DataSourceDataSetValue=wt,s.DataSourceOrderItem=Ne,s.DataSourceParamItem=Ar,s.DataStorageDoc=yr,s.DesignerColumnControl=Cs,s.DesignerControl=q,s.DesignerFormControl=Kt,s.DesignerLayoutControl=re,s.DesignerListControl=Zt,s.DesignerSearchControl=Ds,s.DesignerWrapControl=Ss,s.DisplayBoListItem=Oe,s.FieldBindItem=Ft,s.FieldFilterCondition=me,s.FieldFilterConditions=ee,s.FillBackBind=Sr,s.FillPayloadBind=Mt,s.FormBind=he,s.FormSelectBind=Er,s.ImageOptionSetting=Lt,s.Language=wr,s.LayoutControlProperty=ae,s.LeftVariable=bt,s.LinkOperationOption=Fr,s.ListBind=vr,s.ListControlProperty=et,s.MetaAutoWidth=gr,s.MetaWidth=fe,s.MultistageFillingItem=St,s.ObjectDataBind=ye,s.OperationItem=jr,s.OptionAndDataSourcePropertyRules=ys,s.OptionSetting=_e,s.OrganizationDataSourceBind=Dr,s.PAGE_STATUS=He,s.Property=x,s.PropertyRules=Ee,s.PropertyRuntimeRules=Te,s.RangeDataBind=qr,s.RangeDateValue=Pr,s.RegisterControls=de,s.RegularRules=Ir,s.RightVariable=Ve,s.RuntimeColumnControl=Fs,s.RuntimeControl=T,s.RuntimeFormControl=Es,s.RuntimeLayoutControl=pe,s.RuntimeListControl=Bs,s.RuntimeSearchControl=bs,s.RuntimeWrapControl=ws,s.SearchControlProperty=nt,s.SelectedContentConfig=Cr,s.SubListItem=Dt,s.SubListPageConfig=Br,s.SuperDataSourceBind=It,s.TreeDataSourceBind=br,s.ViewOperationItem=Ur,s.WrapControlProperty=ut,s.controlHooksEmitter=xt,s.createValidator=_t,s.defineArrayParent=zt,s.defineControlArrayToProperty=ie,s.defineParent=Ye,s.initImageOptions=Mr,s.initLinkOperationRules=Is,s.initOptionAndDataSourceRules=Ze,s.initOptions=Rr,s.initSuperDataSourceRules=gs,s.setPropertyDontEnum=kt,Object.defineProperty(s,"__esModule",{value:!0})});
|
|
@@ -232,6 +232,18 @@ export declare class DataSourceBind {
|
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
234
|
filters?: Array<FieldFilterCondition | FieldFilterConditions>;
|
|
235
|
+
/**
|
|
236
|
+
* 过滤条件-查看过滤
|
|
237
|
+
* @defaultValue []
|
|
238
|
+
* @public
|
|
239
|
+
*/
|
|
240
|
+
viewFilters?: Array<FieldFilterCondition | FieldFilterConditions>;
|
|
241
|
+
/**
|
|
242
|
+
* 是否开启查看过滤
|
|
243
|
+
* @defaultValue 0:未开启;1:开启
|
|
244
|
+
* @public
|
|
245
|
+
*/
|
|
246
|
+
isOpenViewFilters?: number;
|
|
235
247
|
/**
|
|
236
248
|
* 排序
|
|
237
249
|
* @defaultValue []
|
|
@@ -323,6 +335,12 @@ export declare class FillPayloadBind extends FillBind {
|
|
|
323
335
|
* @public
|
|
324
336
|
**/
|
|
325
337
|
filters: Array<FieldFilterCondition | FieldFilterConditions>;
|
|
338
|
+
/**
|
|
339
|
+
* 数据源过滤条件-查看
|
|
340
|
+
* @defaultValue []
|
|
341
|
+
* @public
|
|
342
|
+
**/
|
|
343
|
+
viewFilters: Array<FieldFilterCondition | FieldFilterConditions>;
|
|
326
344
|
/**
|
|
327
345
|
* 数据源排序条件
|
|
328
346
|
* @defaultValue []
|
|
@@ -556,6 +574,7 @@ export declare class ViewOperationItem {
|
|
|
556
574
|
id: string;
|
|
557
575
|
title: string;
|
|
558
576
|
filters: Array<FieldFilterCondition | FieldFilterConditions>;
|
|
577
|
+
viewFilters: Array<FieldFilterCondition | FieldFilterConditions>;
|
|
559
578
|
headers: ListBindHeaderItem[];
|
|
560
579
|
constructor(props: Partial<ViewOperationItem>);
|
|
561
580
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-core",
|
|
3
|
-
"version": "2.5.0-alpha.
|
|
3
|
+
"version": "2.5.0-alpha.19",
|
|
4
4
|
"description": "model engine core",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"async-validator": "3.5.1",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "ebc82a19e52e2ceec2ab2f48b250375bd9268428"
|
|
34
34
|
}
|