wargerm 0.7.81 → 0.7.83
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/components/Tree/example/demo1.d.ts +2 -0
- package/dist/components/Tree/index.d.ts +13 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +348 -74
- package/dist/index.js +347 -72
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -3490,7 +3490,257 @@ var WCheckboxGroup = function WCheckboxGroup(props) {
|
|
3490
3490
|
};
|
3491
3491
|
WCheckboxGroup.defaultProps = {};
|
3492
3492
|
|
3493
|
-
var _excluded$b = ["
|
3493
|
+
var _excluded$b = ["request", "params", "onCheck", "dataSource", "value", "onChange"];
|
3494
|
+
var findParent = function findParent(data, id) {
|
3495
|
+
var parent = null;
|
3496
|
+
var loop = function loop(node, arr) {
|
3497
|
+
for (var i = 0; i < arr.length; i++) {
|
3498
|
+
var _item$children;
|
3499
|
+
var item = arr[i];
|
3500
|
+
if (item.id == id) return parent = node;
|
3501
|
+
if ((_item$children = item.children) === null || _item$children === void 0 ? void 0 : _item$children.length) {
|
3502
|
+
loop(item, item.children);
|
3503
|
+
}
|
3504
|
+
}
|
3505
|
+
};
|
3506
|
+
loop(null, data);
|
3507
|
+
return parent;
|
3508
|
+
};
|
3509
|
+
var removeId = function removeId(arr, id) {
|
3510
|
+
var index = arr.indexOf(id);
|
3511
|
+
if (index > -1) {
|
3512
|
+
arr.splice(index, 1);
|
3513
|
+
}
|
3514
|
+
return arr;
|
3515
|
+
};
|
3516
|
+
var flatChildren = function flatChildren(data) {
|
3517
|
+
var childrenList = [];
|
3518
|
+
var loop = function loop(arr) {
|
3519
|
+
for (var i = 0; i < arr.length; i++) {
|
3520
|
+
var _item$children2;
|
3521
|
+
var item = arr[i];
|
3522
|
+
childrenList.push(item);
|
3523
|
+
if ((_item$children2 = item.children) === null || _item$children2 === void 0 ? void 0 : _item$children2.length) {
|
3524
|
+
loop(item.children);
|
3525
|
+
}
|
3526
|
+
}
|
3527
|
+
};
|
3528
|
+
loop(data);
|
3529
|
+
return childrenList;
|
3530
|
+
};
|
3531
|
+
var handleCheck = function handleCheck(_ref) {
|
3532
|
+
var parentIds = _ref.parentIds,
|
3533
|
+
id = _ref.id,
|
3534
|
+
values = _ref.values,
|
3535
|
+
treeData = _ref.treeData;
|
3536
|
+
var currentId = id;
|
3537
|
+
while (currentId) {
|
3538
|
+
var _ref2 = findParent(treeData, currentId) || {},
|
3539
|
+
_id = _ref2.id,
|
3540
|
+
children = _ref2.children;
|
3541
|
+
var ids = children === null || children === void 0 ? void 0 : children.map(function (item) {
|
3542
|
+
return item.id;
|
3543
|
+
});
|
3544
|
+
if (!ids) {
|
3545
|
+
currentId = null;
|
3546
|
+
break;
|
3547
|
+
}
|
3548
|
+
if (!ids.every(function (item) {
|
3549
|
+
return values.checked.includes(item);
|
3550
|
+
})) {
|
3551
|
+
// 检查每个父 id 都在 checked list 里面,不在则 push半选
|
3552
|
+
if (!values.halfChecked.includes(_id)) {
|
3553
|
+
// 判断是否存在
|
3554
|
+
values.halfChecked.push(_id);
|
3555
|
+
}
|
3556
|
+
removeId(values.checked, _id);
|
3557
|
+
} else if (!values.checked.includes(_id)) {
|
3558
|
+
// 每个父 id 是否已存在 checked list ,不在则 push checked list, 并且清空 半选
|
3559
|
+
values.checked.push(_id);
|
3560
|
+
removeId(values.halfChecked, _id);
|
3561
|
+
}
|
3562
|
+
if (!ids.some(function (item) {
|
3563
|
+
return [].concat(_toConsumableArray(values.checked), _toConsumableArray(values.halfChecked)).includes(item);
|
3564
|
+
})) {
|
3565
|
+
// 检查每个父 id 都不在 checked list 里面,不在则 清空半选
|
3566
|
+
removeId(values.halfChecked, _id);
|
3567
|
+
}
|
3568
|
+
currentId = parentIds.pop();
|
3569
|
+
}
|
3570
|
+
return values;
|
3571
|
+
};
|
3572
|
+
var WTree = function WTree(props, ref) {
|
3573
|
+
var request = props.request,
|
3574
|
+
params = props.params,
|
3575
|
+
_onCheck = props.onCheck,
|
3576
|
+
dataSource = props.dataSource,
|
3577
|
+
value = props.value,
|
3578
|
+
onChange = props.onChange,
|
3579
|
+
extraProps = _objectWithoutProperties(props, _excluded$b);
|
3580
|
+
var _useState = React.useState([]),
|
3581
|
+
_useState2 = _slicedToArray(_useState, 2),
|
3582
|
+
treeData = _useState2[0],
|
3583
|
+
setTreeData = _useState2[1];
|
3584
|
+
var _useState3 = React.useState([]),
|
3585
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
3586
|
+
expandedKeys = _useState4[0],
|
3587
|
+
setExpandedKeys = _useState4[1];
|
3588
|
+
var _useState5 = React.useState([]),
|
3589
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
3590
|
+
checkedKeys = _useState6[0],
|
3591
|
+
setCheckedKeys = _useState6[1];
|
3592
|
+
var _useState7 = React.useState([]),
|
3593
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
3594
|
+
selectedData = _useState8[0],
|
3595
|
+
setSelectedData = _useState8[1];
|
3596
|
+
var allKeysRef = React.useRef([]);
|
3597
|
+
React.useEffect(function () {
|
3598
|
+
setSelectedData(value);
|
3599
|
+
}, [value]);
|
3600
|
+
React.useImperativeHandle(ref, function () {
|
3601
|
+
return {
|
3602
|
+
checkedKeys: checkedKeys,
|
3603
|
+
expandedKeys: expandedKeys,
|
3604
|
+
treeData: treeData,
|
3605
|
+
setTreeData: setTreeData,
|
3606
|
+
setExpandedKeys: setExpandedKeys,
|
3607
|
+
setCheckedKeys: setCheckedKeys,
|
3608
|
+
value: selectedData
|
3609
|
+
};
|
3610
|
+
});
|
3611
|
+
React.useEffect(function () {
|
3612
|
+
var isMounted = true;
|
3613
|
+
_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
3614
|
+
var data, checked, values, deepFn, treeList, _checked, _values, _deepFn, _treeList;
|
3615
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
3616
|
+
while (1) switch (_context.prev = _context.next) {
|
3617
|
+
case 0:
|
3618
|
+
if (!request) {
|
3619
|
+
_context.next = 13;
|
3620
|
+
break;
|
3621
|
+
}
|
3622
|
+
_context.next = 3;
|
3623
|
+
return request(params);
|
3624
|
+
case 3:
|
3625
|
+
data = _context.sent;
|
3626
|
+
if (isMounted) {
|
3627
|
+
_context.next = 6;
|
3628
|
+
break;
|
3629
|
+
}
|
3630
|
+
return _context.abrupt("return");
|
3631
|
+
case 6:
|
3632
|
+
checked = selectedData || [];
|
3633
|
+
values = {
|
3634
|
+
checked: checked,
|
3635
|
+
halfChecked: []
|
3636
|
+
};
|
3637
|
+
deepFn = function deepFn(arr) {
|
3638
|
+
return arr.map(function (item) {
|
3639
|
+
var _item$children3, _ref4, _item$origin, _item$origin2;
|
3640
|
+
if (((_item$children3 = item.children) === null || _item$children3 === void 0 ? void 0 : _item$children3.length) > 0) {
|
3641
|
+
item.children = deepFn(item.children);
|
3642
|
+
}
|
3643
|
+
allKeysRef.current = [].concat(_toConsumableArray(allKeysRef.current), [item.key]);
|
3644
|
+
handleCheck({
|
3645
|
+
parentIds: (_ref4 = (item === null || item === void 0 ? void 0 : item.parentIds) || ((_item$origin = item.origin) === null || _item$origin === void 0 ? void 0 : _item$origin.parentIds)) === null || _ref4 === void 0 ? void 0 : _ref4.split(',').slice(1),
|
3646
|
+
id: (item === null || item === void 0 ? void 0 : item.id) || ((_item$origin2 = item.origin) === null || _item$origin2 === void 0 ? void 0 : _item$origin2.id),
|
3647
|
+
values: values,
|
3648
|
+
treeData: treeData
|
3649
|
+
});
|
3650
|
+
return _objectSpread2(_objectSpread2(_objectSpread2({}, item), item.origin), {}, {
|
3651
|
+
title: item.label
|
3652
|
+
});
|
3653
|
+
});
|
3654
|
+
};
|
3655
|
+
treeList = deepFn(data);
|
3656
|
+
setExpandedKeys(allKeysRef.current);
|
3657
|
+
setTreeData(treeList);
|
3658
|
+
setCheckedKeys(values);
|
3659
|
+
case 13:
|
3660
|
+
if (dataSource) {
|
3661
|
+
_checked = selectedData || [];
|
3662
|
+
_values = {
|
3663
|
+
checked: _checked,
|
3664
|
+
halfChecked: []
|
3665
|
+
};
|
3666
|
+
_deepFn = function _deepFn(arr) {
|
3667
|
+
return arr.map(function (item) {
|
3668
|
+
var _item$children4, _ref5, _item$origin3, _item$origin4;
|
3669
|
+
if (((_item$children4 = item.children) === null || _item$children4 === void 0 ? void 0 : _item$children4.length) > 0) {
|
3670
|
+
item.children = _deepFn(item.children);
|
3671
|
+
}
|
3672
|
+
allKeysRef.current = [].concat(_toConsumableArray(allKeysRef.current), [item.key]);
|
3673
|
+
handleCheck({
|
3674
|
+
parentIds: (_ref5 = (item === null || item === void 0 ? void 0 : item.parentIds) || ((_item$origin3 = item.origin) === null || _item$origin3 === void 0 ? void 0 : _item$origin3.parentIds)) === null || _ref5 === void 0 ? void 0 : _ref5.split(',').slice(1),
|
3675
|
+
id: (item === null || item === void 0 ? void 0 : item.id) || ((_item$origin4 = item.origin) === null || _item$origin4 === void 0 ? void 0 : _item$origin4.id),
|
3676
|
+
values: _values,
|
3677
|
+
treeData: dataSource
|
3678
|
+
});
|
3679
|
+
return _objectSpread2(_objectSpread2(_objectSpread2({}, item), item.origin), {}, {
|
3680
|
+
title: item.label
|
3681
|
+
});
|
3682
|
+
});
|
3683
|
+
};
|
3684
|
+
_treeList = _deepFn(dataSource);
|
3685
|
+
setExpandedKeys(allKeysRef.current);
|
3686
|
+
setTreeData(_treeList);
|
3687
|
+
setCheckedKeys(_values);
|
3688
|
+
}
|
3689
|
+
case 14:
|
3690
|
+
case "end":
|
3691
|
+
return _context.stop();
|
3692
|
+
}
|
3693
|
+
}, _callee);
|
3694
|
+
}))();
|
3695
|
+
return function () {
|
3696
|
+
isMounted = false;
|
3697
|
+
};
|
3698
|
+
}, [JSON.stringify(params || {}), selectedData, dataSource]);
|
3699
|
+
return /*#__PURE__*/React__default['default'].createElement(antd.Tree, _objectSpread2({
|
3700
|
+
className: 'w100p',
|
3701
|
+
height: 500,
|
3702
|
+
checkable: true,
|
3703
|
+
checkStrictly: true,
|
3704
|
+
checkedKeys: checkedKeys,
|
3705
|
+
expandedKeys: expandedKeys,
|
3706
|
+
onExpand: function onExpand(values) {
|
3707
|
+
return setExpandedKeys(values);
|
3708
|
+
},
|
3709
|
+
onCheck: function onCheck(values, info) {
|
3710
|
+
var _info$node, _info$node$parentIds, _info$node2;
|
3711
|
+
var checked = info === null || info === void 0 ? void 0 : info.checked;
|
3712
|
+
var parentIds = info === null || info === void 0 ? void 0 : (_info$node = info.node) === null || _info$node === void 0 ? void 0 : (_info$node$parentIds = _info$node.parentIds) === null || _info$node$parentIds === void 0 ? void 0 : _info$node$parentIds.split(',').slice(1);
|
3713
|
+
var currentId = info === null || info === void 0 ? void 0 : info.node.id;
|
3714
|
+
handleCheck({
|
3715
|
+
parentIds: parentIds,
|
3716
|
+
id: currentId,
|
3717
|
+
values: values,
|
3718
|
+
treeData: treeData
|
3719
|
+
});
|
3720
|
+
var childrenIds = flatChildren((info === null || info === void 0 ? void 0 : (_info$node2 = info.node) === null || _info$node2 === void 0 ? void 0 : _info$node2.children) || []).map(function (item) {
|
3721
|
+
return item.id;
|
3722
|
+
});
|
3723
|
+
// TODO 全选反选
|
3724
|
+
if (checked) {
|
3725
|
+
values.checked = _toConsumableArray(new Set([].concat(_toConsumableArray(values.checked), _toConsumableArray(childrenIds))));
|
3726
|
+
} else {
|
3727
|
+
values.checked = values.checked.filter(function (item) {
|
3728
|
+
return !childrenIds.includes(item);
|
3729
|
+
});
|
3730
|
+
values.halfChecked = values.halfChecked.filter(function (item) {
|
3731
|
+
return !childrenIds.includes(item);
|
3732
|
+
});
|
3733
|
+
}
|
3734
|
+
setCheckedKeys(values);
|
3735
|
+
_onCheck && _onCheck(values, info);
|
3736
|
+
onChange && onChange(values, info);
|
3737
|
+
},
|
3738
|
+
treeData: treeData
|
3739
|
+
}, extraProps));
|
3740
|
+
};
|
3741
|
+
var Tree = /*#__PURE__*/React__default['default'].forwardRef(WTree);
|
3742
|
+
|
3743
|
+
var _excluded$c = ["columns", "extraColumns", "className", "style", "search", "disabled", "disabledHideInSearch", "disabledRuler", "onFormChange", "onSubmit", "onReset", "setForm", "deps"];
|
3494
3744
|
var RangePicker$2 = Index$6.RangePicker;
|
3495
3745
|
var WForm = function WForm(props, ref) {
|
3496
3746
|
var columns = props.columns,
|
@@ -3506,7 +3756,7 @@ var WForm = function WForm(props, ref) {
|
|
3506
3756
|
onReset = props.onReset,
|
3507
3757
|
setForm = props.setForm,
|
3508
3758
|
deps = props.deps,
|
3509
|
-
extraProps = _objectWithoutProperties(props, _excluded$
|
3759
|
+
extraProps = _objectWithoutProperties(props, _excluded$c);
|
3510
3760
|
var _Form$useForm = antd.Form.useForm(),
|
3511
3761
|
_Form$useForm2 = _slicedToArray(_Form$useForm, 1),
|
3512
3762
|
form = _Form$useForm2[0];
|
@@ -3686,13 +3936,37 @@ var WForm = function WForm(props, ref) {
|
|
3686
3936
|
placeholder: "\u8BF7\u9009\u62E9",
|
3687
3937
|
onLoad: function onLoad(opt) {}
|
3688
3938
|
}, c.fieldProps), _extraProps3))));
|
3689
|
-
} else if (c.valueType
|
3939
|
+
} else if (c.valueType == 'tree') {
|
3940
|
+
var _extraProps4 = {};
|
3941
|
+
if (c.request) {
|
3942
|
+
_extraProps4.request = c.request;
|
3943
|
+
}
|
3690
3944
|
var _labelCol4 = {};
|
3691
3945
|
if (search && search.labelWidth) {
|
3692
3946
|
_labelCol4.style = {
|
3693
3947
|
width: search.labelWidth
|
3694
3948
|
};
|
3695
3949
|
}
|
3950
|
+
return /*#__PURE__*/React__default['default'].createElement(antd.Col, _objectSpread2(_objectSpread2({
|
3951
|
+
className: "pl12 pr12"
|
3952
|
+
}, colProps), {}, {
|
3953
|
+
key: c.dataIndex
|
3954
|
+
}), /*#__PURE__*/React__default['default'].createElement(antd.Form.Item, _objectSpread2(_objectSpread2({
|
3955
|
+
initialValue: c.initialValue
|
3956
|
+
}, c.formItemProps), {}, {
|
3957
|
+
name: c.dataIndex,
|
3958
|
+
label: c.title,
|
3959
|
+
labelCol: _labelCol4
|
3960
|
+
}), /*#__PURE__*/React__default['default'].createElement(Tree, _objectSpread2(_objectSpread2({
|
3961
|
+
disabled: disabled
|
3962
|
+
}, c.fieldProps), _extraProps4))));
|
3963
|
+
} else if (c.valueType && ['date', 'dateTime', 'dateMonth', 'dateYear'].includes(c.valueType)) {
|
3964
|
+
var _labelCol5 = {};
|
3965
|
+
if (search && search.labelWidth) {
|
3966
|
+
_labelCol5.style = {
|
3967
|
+
width: search.labelWidth
|
3968
|
+
};
|
3969
|
+
}
|
3696
3970
|
var showTime = {};
|
3697
3971
|
var picker = {};
|
3698
3972
|
if (c.valueType == 'dateTime') {
|
@@ -3721,15 +3995,15 @@ var WForm = function WForm(props, ref) {
|
|
3721
3995
|
}, c.formItemProps), {}, {
|
3722
3996
|
name: c.dataIndex,
|
3723
3997
|
label: c.title,
|
3724
|
-
labelCol:
|
3998
|
+
labelCol: _labelCol5
|
3725
3999
|
}), /*#__PURE__*/React__default['default'].createElement(Index$6, _objectSpread2(_objectSpread2(_objectSpread2({
|
3726
4000
|
disabled: disabled,
|
3727
4001
|
placeholder: "\u8BF7\u8F93\u5165"
|
3728
4002
|
}, picker), showTime), c.fieldProps))));
|
3729
4003
|
} else if (c.valueType === 'dateRange' || c.valueType === 'dateTimeRange') {
|
3730
|
-
var
|
4004
|
+
var _labelCol6 = {};
|
3731
4005
|
if (search && search.labelWidth) {
|
3732
|
-
|
4006
|
+
_labelCol6.style = {
|
3733
4007
|
width: search.labelWidth
|
3734
4008
|
};
|
3735
4009
|
}
|
@@ -3750,22 +4024,22 @@ var WForm = function WForm(props, ref) {
|
|
3750
4024
|
}, c.formItemProps), {}, {
|
3751
4025
|
name: c.dataIndex,
|
3752
4026
|
label: c.title,
|
3753
|
-
labelCol:
|
4027
|
+
labelCol: _labelCol6
|
3754
4028
|
}), /*#__PURE__*/React__default['default'].createElement(RangePicker$2, _objectSpread2(_objectSpread2({
|
3755
4029
|
disabled: disabled
|
3756
4030
|
}, _showTime), c.fieldProps))));
|
3757
4031
|
} else if (c.valueType === 'checkbox') {
|
3758
|
-
var
|
4032
|
+
var _extraProps5 = {};
|
3759
4033
|
if (c.request) {
|
3760
|
-
|
4034
|
+
_extraProps5.request = c.request;
|
3761
4035
|
} else if (c.valueEnum) {
|
3762
|
-
|
4036
|
+
_extraProps5.valueEnum = c.valueEnum;
|
3763
4037
|
} else {
|
3764
|
-
|
4038
|
+
_extraProps5.options = c.options;
|
3765
4039
|
}
|
3766
|
-
var
|
4040
|
+
var _labelCol7 = {};
|
3767
4041
|
if (search && search.labelWidth) {
|
3768
|
-
|
4042
|
+
_labelCol7.style = {
|
3769
4043
|
width: search.labelWidth
|
3770
4044
|
};
|
3771
4045
|
}
|
@@ -3783,7 +4057,7 @@ var WForm = function WForm(props, ref) {
|
|
3783
4057
|
}, c.formItemProps), {}, {
|
3784
4058
|
name: c.dataIndex,
|
3785
4059
|
label: c.title,
|
3786
|
-
labelCol:
|
4060
|
+
labelCol: _labelCol7
|
3787
4061
|
}), /*#__PURE__*/React__default['default'].createElement(WCheckboxGroup, _objectSpread2(_objectSpread2({
|
3788
4062
|
onLoad: function onLoad(opt) {
|
3789
4063
|
setColumnsFields(function (preColumnsFields) {
|
@@ -3791,19 +4065,19 @@ var WForm = function WForm(props, ref) {
|
|
3791
4065
|
});
|
3792
4066
|
},
|
3793
4067
|
disabled: disabled
|
3794
|
-
}, c.fieldProps),
|
4068
|
+
}, c.fieldProps), _extraProps5))));
|
3795
4069
|
} else if (c.valueType === 'radio' || c.valueType === 'radioButton') {
|
3796
|
-
var
|
4070
|
+
var _extraProps6 = {};
|
3797
4071
|
if (c.request) {
|
3798
|
-
|
4072
|
+
_extraProps6.request = c.request;
|
3799
4073
|
} else if (c.valueEnum) {
|
3800
|
-
|
4074
|
+
_extraProps6.valueEnum = c.valueEnum;
|
3801
4075
|
} else {
|
3802
|
-
|
4076
|
+
_extraProps6.options = c.options;
|
3803
4077
|
}
|
3804
|
-
var
|
4078
|
+
var _labelCol8 = {};
|
3805
4079
|
if (search && search.labelWidth) {
|
3806
|
-
|
4080
|
+
_labelCol8.style = {
|
3807
4081
|
width: search.labelWidth
|
3808
4082
|
};
|
3809
4083
|
}
|
@@ -3828,7 +4102,7 @@ var WForm = function WForm(props, ref) {
|
|
3828
4102
|
}, c.formItemProps), {}, {
|
3829
4103
|
name: c.dataIndex,
|
3830
4104
|
label: c.title,
|
3831
|
-
labelCol:
|
4105
|
+
labelCol: _labelCol8
|
3832
4106
|
}), /*#__PURE__*/React__default['default'].createElement(WRadioGroup, _objectSpread2(_objectSpread2(_objectSpread2({
|
3833
4107
|
onLoad: function onLoad(opt) {
|
3834
4108
|
setColumnsFields(function (preColumnsFields) {
|
@@ -3836,7 +4110,7 @@ var WForm = function WForm(props, ref) {
|
|
3836
4110
|
});
|
3837
4111
|
},
|
3838
4112
|
disabled: disabled
|
3839
|
-
}, radioButtonProps), c.fieldProps),
|
4113
|
+
}, radioButtonProps), c.fieldProps), _extraProps6))));
|
3840
4114
|
} else if (c.valueType === 'switch') {
|
3841
4115
|
var options = [];
|
3842
4116
|
if (c.valueEnum) {
|
@@ -3848,9 +4122,9 @@ var WForm = function WForm(props, ref) {
|
|
3848
4122
|
});
|
3849
4123
|
}
|
3850
4124
|
}
|
3851
|
-
var
|
4125
|
+
var _labelCol9 = {};
|
3852
4126
|
if (search && search.labelWidth) {
|
3853
|
-
|
4127
|
+
_labelCol9.style = {
|
3854
4128
|
width: search.labelWidth
|
3855
4129
|
};
|
3856
4130
|
}
|
@@ -3870,14 +4144,14 @@ var WForm = function WForm(props, ref) {
|
|
3870
4144
|
}, c.formItemProps), {}, {
|
3871
4145
|
name: c.dataIndex,
|
3872
4146
|
label: c.title,
|
3873
|
-
labelCol:
|
4147
|
+
labelCol: _labelCol9
|
3874
4148
|
}), /*#__PURE__*/React__default['default'].createElement(WSwitch, _objectSpread2({
|
3875
4149
|
disabled: disabled
|
3876
4150
|
}, c.fieldProps))));
|
3877
4151
|
} else if (c.valueType === 'digit') {
|
3878
|
-
var
|
4152
|
+
var _labelCol10 = {};
|
3879
4153
|
if (search && search.labelWidth) {
|
3880
|
-
|
4154
|
+
_labelCol10.style = {
|
3881
4155
|
width: search.labelWidth
|
3882
4156
|
};
|
3883
4157
|
}
|
@@ -3890,15 +4164,15 @@ var WForm = function WForm(props, ref) {
|
|
3890
4164
|
}, c.formItemProps), {}, {
|
3891
4165
|
name: c.dataIndex,
|
3892
4166
|
label: c.title,
|
3893
|
-
labelCol:
|
4167
|
+
labelCol: _labelCol10
|
3894
4168
|
}), /*#__PURE__*/React__default['default'].createElement(NumericInput, _objectSpread2({
|
3895
4169
|
disabled: disabled,
|
3896
4170
|
placeholder: "\u8BF7\u8F93\u5165\u53C2\u6570(double/int)"
|
3897
4171
|
}, c.fieldProps))));
|
3898
4172
|
} else if (c.renderFormItem) {
|
3899
|
-
var
|
4173
|
+
var _labelCol11 = {};
|
3900
4174
|
if (search && search.labelWidth) {
|
3901
|
-
|
4175
|
+
_labelCol11.style = {
|
3902
4176
|
width: search.labelWidth
|
3903
4177
|
};
|
3904
4178
|
}
|
@@ -3918,12 +4192,12 @@ var WForm = function WForm(props, ref) {
|
|
3918
4192
|
}, c.formItemProps), {}, {
|
3919
4193
|
name: c.dataIndex,
|
3920
4194
|
label: c.title,
|
3921
|
-
labelCol:
|
4195
|
+
labelCol: _labelCol11
|
3922
4196
|
}), baseitem))) : null;
|
3923
4197
|
} else if (c.valueType === 'textarea') {
|
3924
|
-
var
|
4198
|
+
var _labelCol12 = {};
|
3925
4199
|
if (search && search.labelWidth) {
|
3926
|
-
|
4200
|
+
_labelCol12.style = {
|
3927
4201
|
width: search.labelWidth
|
3928
4202
|
};
|
3929
4203
|
}
|
@@ -3936,16 +4210,16 @@ var WForm = function WForm(props, ref) {
|
|
3936
4210
|
}, c.formItemProps), {}, {
|
3937
4211
|
name: c.dataIndex,
|
3938
4212
|
label: c.title,
|
3939
|
-
labelCol:
|
4213
|
+
labelCol: _labelCol12
|
3940
4214
|
}), /*#__PURE__*/React__default['default'].createElement(Index.TextArea, _objectSpread2({
|
3941
4215
|
rows: 4,
|
3942
4216
|
disabled: disabled,
|
3943
4217
|
placeholder: "\u8BF7\u8F93\u5165"
|
3944
4218
|
}, c.fieldProps))));
|
3945
4219
|
} else if (c.valueType === 'inputNumber') {
|
3946
|
-
var
|
4220
|
+
var _labelCol13 = {};
|
3947
4221
|
if (search && search.labelWidth) {
|
3948
|
-
|
4222
|
+
_labelCol13.style = {
|
3949
4223
|
width: search.labelWidth
|
3950
4224
|
};
|
3951
4225
|
}
|
@@ -3958,15 +4232,15 @@ var WForm = function WForm(props, ref) {
|
|
3958
4232
|
}, c.formItemProps), {}, {
|
3959
4233
|
name: c.dataIndex,
|
3960
4234
|
label: c.title,
|
3961
|
-
labelCol:
|
4235
|
+
labelCol: _labelCol13
|
3962
4236
|
}), /*#__PURE__*/React__default['default'].createElement(WInputNumber, _objectSpread2({
|
3963
4237
|
disabled: disabled,
|
3964
4238
|
placeholder: "\u8BF7\u8F93\u5165"
|
3965
4239
|
}, c.fieldProps))));
|
3966
4240
|
} else {
|
3967
|
-
var
|
4241
|
+
var _labelCol14 = {};
|
3968
4242
|
if (search && search.labelWidth) {
|
3969
|
-
|
4243
|
+
_labelCol14.style = {
|
3970
4244
|
width: search.labelWidth
|
3971
4245
|
};
|
3972
4246
|
}
|
@@ -3979,7 +4253,7 @@ var WForm = function WForm(props, ref) {
|
|
3979
4253
|
}, c.formItemProps), {}, {
|
3980
4254
|
name: c.dataIndex,
|
3981
4255
|
label: c.title,
|
3982
|
-
labelCol:
|
4256
|
+
labelCol: _labelCol14
|
3983
4257
|
}), /*#__PURE__*/React__default['default'].createElement(Index, _objectSpread2({
|
3984
4258
|
disabled: disabled,
|
3985
4259
|
placeholder: "\u8BF7\u8F93\u5165"
|
@@ -4256,7 +4530,7 @@ var WForm = function WForm(props, ref) {
|
|
4256
4530
|
};
|
4257
4531
|
var WForm$1 = /*#__PURE__*/React__default['default'].forwardRef(WForm);
|
4258
4532
|
|
4259
|
-
var _excluded$
|
4533
|
+
var _excluded$d = ["columns", "dataSource", "request", "onLoad", "params", "onSubmit", "rowKey", "onRow", "className", "rowClassName", "rowSelection", "style", "tbodyStyle", "thStyle", "border", "scroll", "pagination", "search", "frameBoxTable", "frameBoxDirection", "formRef", "none"];
|
4260
4534
|
function Table(_ref) {
|
4261
4535
|
var _formSearchRef$curren4, _columns$, _columns$2;
|
4262
4536
|
var columns = _ref.columns,
|
@@ -4287,7 +4561,7 @@ function Table(_ref) {
|
|
4287
4561
|
frameBoxDirection = _ref$frameBoxDirectio === void 0 ? 'out' : _ref$frameBoxDirectio,
|
4288
4562
|
formRef = _ref.formRef,
|
4289
4563
|
none = _ref.none,
|
4290
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
4564
|
+
props = _objectWithoutProperties(_ref, _excluded$d);
|
4291
4565
|
var _useState = React.useState(_toConsumableArray((rowSelection === null || rowSelection === void 0 ? void 0 : rowSelection.selectedRowKeys) || [])),
|
4292
4566
|
_useState2 = _slicedToArray(_useState, 2),
|
4293
4567
|
selectedRowKeys = _useState2[0],
|
@@ -4774,7 +5048,7 @@ Table.defaultProps = {
|
|
4774
5048
|
};
|
4775
5049
|
var index = /*#__PURE__*/React.memo(Table);
|
4776
5050
|
|
4777
|
-
var _excluded$
|
5051
|
+
var _excluded$e = ["value", "renderDom", "onLoad", "params", "onChange", "request"];
|
4778
5052
|
function Index$8(props, ref) {
|
4779
5053
|
var value = props.value,
|
4780
5054
|
renderDom = props.renderDom,
|
@@ -4782,7 +5056,7 @@ function Index$8(props, ref) {
|
|
4782
5056
|
params = props.params,
|
4783
5057
|
onChange = props.onChange,
|
4784
5058
|
request = props.request,
|
4785
|
-
rest = _objectWithoutProperties(props, _excluded$
|
5059
|
+
rest = _objectWithoutProperties(props, _excluded$e);
|
4786
5060
|
var _useState = React.useState(''),
|
4787
5061
|
_useState2 = _slicedToArray(_useState, 2),
|
4788
5062
|
areaValue = _useState2[0],
|
@@ -4837,7 +5111,7 @@ function Index$8(props, ref) {
|
|
4837
5111
|
}
|
4838
5112
|
var index$1 = /*#__PURE__*/React__default['default'].forwardRef(Index$8);
|
4839
5113
|
|
4840
|
-
var _excluded$
|
5114
|
+
var _excluded$f = ["height", "width", "count", "style", "numberStyle"],
|
4841
5115
|
_excluded2$2 = ["count", "numberCount", "width", "height", "marginRight"];
|
4842
5116
|
var Number$1 = function Number(_ref) {
|
4843
5117
|
var height = _ref.height,
|
@@ -4846,7 +5120,7 @@ var Number$1 = function Number(_ref) {
|
|
4846
5120
|
count = _ref$count === void 0 ? 0 : _ref$count,
|
4847
5121
|
style = _ref.style,
|
4848
5122
|
numberStyle = _ref.numberStyle,
|
4849
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
5123
|
+
props = _objectWithoutProperties(_ref, _excluded$f);
|
4850
5124
|
// 上次的值
|
4851
5125
|
var _useState = React.useState(0),
|
4852
5126
|
_useState2 = _slicedToArray(_useState, 2),
|
@@ -4996,12 +5270,12 @@ var Index$9 = function Index(props) {
|
|
4996
5270
|
}));
|
4997
5271
|
};
|
4998
5272
|
|
4999
|
-
var _excluded$
|
5273
|
+
var _excluded$g = ["duration", "className"];
|
5000
5274
|
var Index$a = function Index(props) {
|
5001
5275
|
var _props$duration = props.duration,
|
5002
5276
|
duration = _props$duration === void 0 ? 2.75 : _props$duration,
|
5003
5277
|
className = props.className,
|
5004
|
-
extraProps = _objectWithoutProperties(props, _excluded$
|
5278
|
+
extraProps = _objectWithoutProperties(props, _excluded$g);
|
5005
5279
|
return /*#__PURE__*/React__default['default'].createElement(CountUp__default['default'], _objectSpread2(_objectSpread2({
|
5006
5280
|
duration: duration
|
5007
5281
|
}, extraProps), {}, {
|
@@ -5010,7 +5284,7 @@ var Index$a = function Index(props) {
|
|
5010
5284
|
};
|
5011
5285
|
Index$a.defaultProps = {};
|
5012
5286
|
|
5013
|
-
var _excluded$
|
5287
|
+
var _excluded$h = ["list", "render", "none", "partSize"];
|
5014
5288
|
function AutoScroll(props) {
|
5015
5289
|
var inner1 = React.useRef();
|
5016
5290
|
var inner2 = React.useRef();
|
@@ -5087,7 +5361,7 @@ var Index$b = function Index(_ref) {
|
|
5087
5361
|
none = _ref.none,
|
5088
5362
|
_ref$partSize = _ref.partSize,
|
5089
5363
|
partSize = _ref$partSize === void 0 ? 4 : _ref$partSize,
|
5090
|
-
otherProps = _objectWithoutProperties(_ref, _excluded$
|
5364
|
+
otherProps = _objectWithoutProperties(_ref, _excluded$h);
|
5091
5365
|
var _useState = React.useState([]),
|
5092
5366
|
_useState2 = _slicedToArray(_useState, 2),
|
5093
5367
|
partA = _useState2[0],
|
@@ -5161,7 +5435,7 @@ var Index$b = function Index(_ref) {
|
|
5161
5435
|
}, none || '暂无数据'));
|
5162
5436
|
};
|
5163
5437
|
|
5164
|
-
var _excluded$
|
5438
|
+
var _excluded$i = ["data", "onClick", "slidesPerView", "rowKey", "onSwiperChange", "renderItem", "noMove"];
|
5165
5439
|
// install Swiper modules
|
5166
5440
|
SwiperCore__default['default'].use([SwiperCore.Pagination, SwiperCore.Navigation, SwiperCore.Autoplay, SwiperCore.Virtual]);
|
5167
5441
|
var Index$c = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
@@ -5173,7 +5447,7 @@ var Index$c = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
5173
5447
|
onSwiperChange = props.onSwiperChange,
|
5174
5448
|
renderItem = props.renderItem,
|
5175
5449
|
noMove = props.noMove,
|
5176
|
-
extraProps = _objectWithoutProperties(props, _excluded$
|
5450
|
+
extraProps = _objectWithoutProperties(props, _excluded$i);
|
5177
5451
|
var _useState = React.useState(null),
|
5178
5452
|
_useState2 = _slicedToArray(_useState, 2),
|
5179
5453
|
controlledSwiper = _useState2[0],
|
@@ -5822,7 +6096,7 @@ function createBrowserHistory(props) {
|
|
5822
6096
|
return history;
|
5823
6097
|
}
|
5824
6098
|
|
5825
|
-
var _excluded$
|
6099
|
+
var _excluded$j = ["routes", "className"];
|
5826
6100
|
var history = createBrowserHistory();
|
5827
6101
|
function itemRender(route, params, routes, paths) {
|
5828
6102
|
var last = routes.indexOf(route) === routes.length - 1;
|
@@ -5838,7 +6112,7 @@ function itemRender(route, params, routes, paths) {
|
|
5838
6112
|
var Index$d = function Index(_ref) {
|
5839
6113
|
var routes = _ref.routes,
|
5840
6114
|
className = _ref.className,
|
5841
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
6115
|
+
props = _objectWithoutProperties(_ref, _excluded$j);
|
5842
6116
|
return /*#__PURE__*/React__default['default'].createElement(antd.Breadcrumb, _objectSpread2({
|
5843
6117
|
className: className || 'default',
|
5844
6118
|
separator: ">>",
|
@@ -5847,7 +6121,7 @@ var Index$d = function Index(_ref) {
|
|
5847
6121
|
}, props));
|
5848
6122
|
};
|
5849
6123
|
|
5850
|
-
var _excluded$
|
6124
|
+
var _excluded$k = ["title", "className", "headerTail", "headerCenter", "sliderTabs"];
|
5851
6125
|
var Index$e = function Index(_ref, ref) {
|
5852
6126
|
var _sliderTabs$component, _sliderTabs$tabs;
|
5853
6127
|
var title = _ref.title,
|
@@ -5856,7 +6130,7 @@ var Index$e = function Index(_ref, ref) {
|
|
5856
6130
|
headerTail = _ref.headerTail,
|
5857
6131
|
headerCenter = _ref.headerCenter,
|
5858
6132
|
sliderTabs = _ref.sliderTabs,
|
5859
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
6133
|
+
props = _objectWithoutProperties(_ref, _excluded$k);
|
5860
6134
|
React.useImperativeHandle(ref, function () {
|
5861
6135
|
return {
|
5862
6136
|
activeTab: activeTab
|
@@ -6072,7 +6346,7 @@ function DialogModel(props, ref) {
|
|
6072
6346
|
}
|
6073
6347
|
var Dialog = /*#__PURE__*/React__default['default'].forwardRef(DialogModel);
|
6074
6348
|
|
6075
|
-
var _excluded$
|
6349
|
+
var _excluded$l = ["open", "width", "closeCb", "onClose", "className", "style", "isDrag", "wrapClassName"],
|
6076
6350
|
_excluded2$3 = ["open"];
|
6077
6351
|
var Modal = /*#__PURE__*/function (_React$PureComponent) {
|
6078
6352
|
_inherits(Modal, _React$PureComponent);
|
@@ -6204,7 +6478,7 @@ var Modal = /*#__PURE__*/function (_React$PureComponent) {
|
|
6204
6478
|
style = _this$props4.style,
|
6205
6479
|
isDrag = _this$props4.isDrag,
|
6206
6480
|
wrapClassName = _this$props4.wrapClassName,
|
6207
|
-
other = _objectWithoutProperties(_this$props4, _excluded$
|
6481
|
+
other = _objectWithoutProperties(_this$props4, _excluded$l);
|
6208
6482
|
return /*#__PURE__*/React__default['default'].createElement(Dialog, _objectSpread2({
|
6209
6483
|
ref: this.containerRef,
|
6210
6484
|
closeCb: closeCb,
|
@@ -6369,7 +6643,7 @@ function DialogModel$1(props) {
|
|
6369
6643
|
return renderChildren;
|
6370
6644
|
}
|
6371
6645
|
|
6372
|
-
var _excluded$
|
6646
|
+
var _excluded$m = ["open"];
|
6373
6647
|
var Modal$1 = /*#__PURE__*/function (_React$PureComponent) {
|
6374
6648
|
_inherits(Modal, _React$PureComponent);
|
6375
6649
|
var _super = _createSuper(Modal);
|
@@ -6491,7 +6765,7 @@ Modal$1.show = function (config) {
|
|
6491
6765
|
setShow = _useState2[1];
|
6492
6766
|
manager.setShow = setShow;
|
6493
6767
|
var open = props.open,
|
6494
|
-
trueProps = _objectWithoutProperties(props, _excluded$
|
6768
|
+
trueProps = _objectWithoutProperties(props, _excluded$m);
|
6495
6769
|
React.useEffect(function () {
|
6496
6770
|
manager.mounted = true;
|
6497
6771
|
setShow(open);
|
@@ -6663,7 +6937,7 @@ function DragBox(_ref) {
|
|
6663
6937
|
}, children))) : ( /*#__PURE__*/React__default['default'].createElement(React__default['default'].Fragment, null));
|
6664
6938
|
}
|
6665
6939
|
|
6666
|
-
var _excluded$
|
6940
|
+
var _excluded$n = ["columns", "extraColumns", "search", "open", "setOpen", "modalFormOpend", "disabled", "submitMethod", "onSubmitSuccess", "title", "record", "onFormChange", "formItemChild", "onCancel", "modalHeaderSlot", "modalFooterSlot", "formProps"];
|
6667
6941
|
var ModalForm = function ModalForm(props, ref) {
|
6668
6942
|
var columns = props.columns,
|
6669
6943
|
extraColumns = props.extraColumns,
|
@@ -6682,7 +6956,7 @@ var ModalForm = function ModalForm(props, ref) {
|
|
6682
6956
|
modalHeaderSlot = props.modalHeaderSlot,
|
6683
6957
|
modalFooterSlot = props.modalFooterSlot,
|
6684
6958
|
formProps = props.formProps,
|
6685
|
-
extraProps = _objectWithoutProperties(props, _excluded$
|
6959
|
+
extraProps = _objectWithoutProperties(props, _excluded$n);
|
6686
6960
|
var formRef = React.useRef(null);
|
6687
6961
|
var _useState = React.useState(false),
|
6688
6962
|
_useState2 = _slicedToArray(_useState, 2),
|
@@ -6807,7 +7081,7 @@ var ModalForm = function ModalForm(props, ref) {
|
|
6807
7081
|
};
|
6808
7082
|
var ModalForm$1 = /*#__PURE__*/React__default['default'].forwardRef(ModalForm);
|
6809
7083
|
|
6810
|
-
var _excluded$
|
7084
|
+
var _excluded$o = ["columns", "extraColumns", "request", "modalFormSearch", "search", "tableAction", "filterAction", "renderTableBar", "renderTableBarDeps", "className", "style", "onFormChange", "modalConfig", "searchFormConfig", "optionColumnConfig", "pagination", "noBordered", "showIndex", "searchTableSlot"];
|
6811
7085
|
var TabelCard = function TabelCard(props, ref) {
|
6812
7086
|
var columns = props.columns,
|
6813
7087
|
extraColumns = props.extraColumns,
|
@@ -6831,7 +7105,7 @@ var TabelCard = function TabelCard(props, ref) {
|
|
6831
7105
|
noBordered = props.noBordered,
|
6832
7106
|
showIndex = props.showIndex,
|
6833
7107
|
searchTableSlot = props.searchTableSlot,
|
6834
|
-
extraProps = _objectWithoutProperties(props, _excluded$
|
7108
|
+
extraProps = _objectWithoutProperties(props, _excluded$o);
|
6835
7109
|
var actionRef = React.useRef();
|
6836
7110
|
var modalFormRef = React.useRef(null);
|
6837
7111
|
var searchFormRef = React.useRef(null);
|
@@ -11097,7 +11371,7 @@ function DhPlayer(_ref, ref) {
|
|
11097
11371
|
}
|
11098
11372
|
var index$6 = /*#__PURE__*/React.forwardRef(DhPlayer);
|
11099
11373
|
|
11100
|
-
var _excluded$
|
11374
|
+
var _excluded$p = ["id", "videoUrls", "definitionList", "isLoop", "muted", "currentIndex", "setCurrentIndex", "className", "style", "open", "autoplay", "videoInit", "enableMemory", "lastPlayTimeHideDelay"];
|
11101
11375
|
// 默认速度控制
|
11102
11376
|
var DEFAULT_PLAY_BACK_RATE = [0.5, 0.75, 1, 1.5, 2];
|
11103
11377
|
// 默认记忆提示文字展示时长(s)
|
@@ -11128,7 +11402,7 @@ var index$7 = (function (_ref) {
|
|
11128
11402
|
enableMemory = _ref$enableMemory === void 0 ? false : _ref$enableMemory,
|
11129
11403
|
_ref$lastPlayTimeHide = _ref.lastPlayTimeHideDelay,
|
11130
11404
|
lastPlayTimeHideDelay = _ref$lastPlayTimeHide === void 0 ? DEFAULT_LAST_PLAY_TIME_DELAY : _ref$lastPlayTimeHide,
|
11131
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
11405
|
+
props = _objectWithoutProperties(_ref, _excluded$p);
|
11132
11406
|
var player = React.useRef();
|
11133
11407
|
var currentPlayerIndex = React.useRef(0);
|
11134
11408
|
// 内置的 index 状态管理
|
@@ -11298,7 +11572,7 @@ var index$7 = (function (_ref) {
|
|
11298
11572
|
});
|
11299
11573
|
});
|
11300
11574
|
|
11301
|
-
var _excluded$
|
11575
|
+
var _excluded$q = ["className", "frameStyle", "style", "direction", "children"];
|
11302
11576
|
function FrameBox$1(_ref) {
|
11303
11577
|
var className = _ref.className,
|
11304
11578
|
frameStyle = _ref.frameStyle,
|
@@ -11306,7 +11580,7 @@ function FrameBox$1(_ref) {
|
|
11306
11580
|
_ref$direction = _ref.direction,
|
11307
11581
|
direction = _ref$direction === void 0 ? 'in' : _ref$direction,
|
11308
11582
|
children = _ref.children,
|
11309
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
11583
|
+
props = _objectWithoutProperties(_ref, _excluded$q);
|
11310
11584
|
return /*#__PURE__*/React__default['default'].createElement("div", _objectSpread2({
|
11311
11585
|
className: classnames__default['default'](_defineProperty(_defineProperty({}, 'frame', true), className || '', true)),
|
11312
11586
|
style: style
|
@@ -11333,7 +11607,7 @@ function FrameBox$1(_ref) {
|
|
11333
11607
|
}), children);
|
11334
11608
|
}
|
11335
11609
|
|
11336
|
-
var _excluded$
|
11610
|
+
var _excluded$r = ["columns", "dataSource", "request", "onLoad", "params", "onSubmit", "rowKey", "onRow", "className", "rowClassName", "rowSelection", "style", "tbodyStyle", "thStyle", "border", "scroll", "pagination", "search", "frameBoxTable", "frameBoxDirection", "formRef", "none"];
|
11337
11611
|
function NtTable(_ref, ref) {
|
11338
11612
|
var _formSearchRef$curren4, _columns$, _columns$2;
|
11339
11613
|
var columns = _ref.columns,
|
@@ -11364,7 +11638,7 @@ function NtTable(_ref, ref) {
|
|
11364
11638
|
frameBoxDirection = _ref$frameBoxDirectio === void 0 ? 'out' : _ref$frameBoxDirectio,
|
11365
11639
|
formRef = _ref.formRef,
|
11366
11640
|
none = _ref.none,
|
11367
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
11641
|
+
props = _objectWithoutProperties(_ref, _excluded$r);
|
11368
11642
|
var _useState = React.useState(_toConsumableArray((rowSelection === null || rowSelection === void 0 ? void 0 : rowSelection.selectedRowKeys) || [])),
|
11369
11643
|
_useState2 = _slicedToArray(_useState, 2),
|
11370
11644
|
selectedRowKeys = _useState2[0],
|
@@ -12620,7 +12894,7 @@ function WaterLevelCharts(config) {
|
|
12620
12894
|
/*
|
12621
12895
|
* @Author: lijin
|
12622
12896
|
* @Date: 2021-09-09 11:02:54
|
12623
|
-
* @LastEditTime:
|
12897
|
+
* @LastEditTime: 2024-01-02 18:08:42
|
12624
12898
|
* @LastEditors: lijin
|
12625
12899
|
* @Description:
|
12626
12900
|
* @FilePath: \wargerm\src\index.ts
|
@@ -12663,6 +12937,7 @@ exports.Switch = WSwitch;
|
|
12663
12937
|
exports.TabelCard = index$3;
|
12664
12938
|
exports.Table = index;
|
12665
12939
|
exports.TableEdit = TableEdit;
|
12940
|
+
exports.Tree = Tree;
|
12666
12941
|
exports.TreeSelect = Index$7;
|
12667
12942
|
exports.Upload = Upload;
|
12668
12943
|
exports.Video = index$7;
|