linkmore-design 1.1.22-beta.2 → 1.1.22-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.umd.js +123 -118
- package/dist/index.umd.min.js +5 -5
- package/es/LmTable/Table.js +1 -1
- package/es/LmTable/expression.js +5 -1
- package/es/LmTable/virTual/VirtualTable.js +16 -5
- package/lib/LmTable/Table.js +1 -1
- package/lib/LmTable/expression.js +5 -1
- package/lib/LmTable/virTual/VirtualTable.js +16 -5
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -224159,10 +224159,12 @@
|
|
|
224159
224159
|
return React.useReducer(reducer$4, initialState$1);
|
|
224160
224160
|
};
|
|
224161
224161
|
|
|
224162
|
+
var _excluded$1Y = ["className", "isEmpty"];
|
|
224162
224163
|
var VirtualTable = /*#__PURE__*/React__default['default'].memo(function (tableProps) {
|
|
224163
|
-
var _bodyRef$current, _bodyRef$current2,
|
|
224164
|
+
var _bodyRef$current, _bodyRef$current2, _rest$children$2, _rest$children$2$prop;
|
|
224164
224165
|
var className = tableProps.className,
|
|
224165
|
-
isEmpty = tableProps.isEmpty
|
|
224166
|
+
isEmpty = tableProps.isEmpty,
|
|
224167
|
+
rest = _objectWithoutProperties$1(tableProps, _excluded$1Y);
|
|
224166
224168
|
var bodyRef = React.useRef(null);
|
|
224167
224169
|
var _useRealive = useRealive(),
|
|
224168
224170
|
_useRealive2 = _slicedToArray$1(_useRealive, 2),
|
|
@@ -224187,9 +224189,9 @@
|
|
|
224187
224189
|
current: bodyRef === null || bodyRef === void 0 ? void 0 : (_bodyRef$current2 = bodyRef.current) === null || _bodyRef$current2 === void 0 ? void 0 : _bodyRef$current2.parentNode
|
|
224188
224190
|
},
|
|
224189
224191
|
estimateSize: React__default['default'].useCallback(function (i) {
|
|
224190
|
-
var
|
|
224191
|
-
return
|
|
224192
|
-
}, [(
|
|
224192
|
+
var _rest$children$, _rest$children$$props;
|
|
224193
|
+
return rest === null || rest === void 0 ? void 0 : (_rest$children$ = rest.children[0]) === null || _rest$children$ === void 0 ? void 0 : (_rest$children$$props = _rest$children$.props) === null || _rest$children$$props === void 0 ? void 0 : _rest$children$$props.colWidths[i];
|
|
224194
|
+
}, [(_rest$children$2 = rest.children[0]) === null || _rest$children$2 === void 0 ? void 0 : (_rest$children$2$prop = _rest$children$2.props) === null || _rest$children$2$prop === void 0 ? void 0 : _rest$children$2$prop.colWidths]),
|
|
224193
224195
|
overscan: 5
|
|
224194
224196
|
});
|
|
224195
224197
|
var instance = {
|
|
@@ -224205,17 +224207,17 @@
|
|
|
224205
224207
|
}, isEmpty ? /*#__PURE__*/React__default['default'].createElement("table", _objectSpread({
|
|
224206
224208
|
className: _classnames_2_3_2_classnames('lm_virtual_table', className),
|
|
224207
224209
|
ref: bodyRef
|
|
224208
|
-
},
|
|
224210
|
+
}, rest), /*#__PURE__*/React__default['default'].createElement("tbody", null, /*#__PURE__*/React__default['default'].createElement("tr", null, /*#__PURE__*/React__default['default'].createElement("td", null, /*#__PURE__*/React__default['default'].createElement(CustomizeRenderEmpty, null))))) : /*#__PURE__*/React__default['default'].createElement("table", _objectSpread({
|
|
224209
224211
|
className: _classnames_2_3_2_classnames('lm_virtual_table', className),
|
|
224210
224212
|
ref: bodyRef
|
|
224211
|
-
},
|
|
224213
|
+
}, rest)));
|
|
224212
224214
|
});
|
|
224213
224215
|
|
|
224214
|
-
var _excluded$
|
|
224216
|
+
var _excluded$1Z = ["children"];
|
|
224215
224217
|
var VirtualWrapper = /*#__PURE__*/React__default['default'].memo(function (wrapperProps) {
|
|
224216
224218
|
var _virtualItems$, _virtualItems;
|
|
224217
224219
|
var children = wrapperProps.children,
|
|
224218
|
-
resetProps = _objectWithoutProperties$1(wrapperProps, _excluded$
|
|
224220
|
+
resetProps = _objectWithoutProperties$1(wrapperProps, _excluded$1Z);
|
|
224219
224221
|
var _useStore = useStore(),
|
|
224220
224222
|
state = _useStore.state,
|
|
224221
224223
|
dispatch = _useStore.dispatch,
|
|
@@ -224253,10 +224255,10 @@
|
|
|
224253
224255
|
})));
|
|
224254
224256
|
});
|
|
224255
224257
|
|
|
224256
|
-
var _excluded$
|
|
224258
|
+
var _excluded$1_ = ["children"];
|
|
224257
224259
|
var VirtualRow = /*#__PURE__*/React__default['default'].memo(function (_ref, ref) {
|
|
224258
224260
|
var children = _ref.children,
|
|
224259
|
-
resetProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
224261
|
+
resetProps = _objectWithoutProperties$1(_ref, _excluded$1_);
|
|
224260
224262
|
var _useStore = useStore(),
|
|
224261
224263
|
state = _useStore.state,
|
|
224262
224264
|
dispatch = _useStore.dispatch,
|
|
@@ -224344,7 +224346,11 @@
|
|
|
224344
224346
|
expression = _dkey[1];
|
|
224345
224347
|
item.children.forEach(function (subItem) {
|
|
224346
224348
|
if (key in subItem) {
|
|
224347
|
-
|
|
224349
|
+
var value = Number(subItem[key]);
|
|
224350
|
+
if (Number.isNaN(value)) {
|
|
224351
|
+
return;
|
|
224352
|
+
}
|
|
224353
|
+
sum += value;
|
|
224348
224354
|
}
|
|
224349
224355
|
});
|
|
224350
224356
|
if (!sum) {
|
|
@@ -224577,7 +224583,7 @@
|
|
|
224577
224583
|
}, attributes, listeners), title);
|
|
224578
224584
|
}
|
|
224579
224585
|
|
|
224580
|
-
var _excluded$
|
|
224586
|
+
var _excluded$1$ = ["columns", "dataSource", "autoSize", "rowClick", "onDoubleClick", "checkConfig", "summary", "pagination", "hiddenPage", "loading", "virtual", "sortOpen", "colSortOpen", "resizeable", "customCheck", "components", "rowSelection", "columnsState", "onChange", "filterChange", "tableRowType", "size", "openSheet", "editSheet", "dataChange", "openColGroup", "colGroupTitle", "openRowGroup", "rowGroupTitle", "groupWidth", "onGroupChange", "emptyProps"],
|
|
224581
224587
|
_excluded2$r = ["className", "style"],
|
|
224582
224588
|
_excluded3$6 = ["onResize", "width", "dataIndex", "onResizeStop"];
|
|
224583
224589
|
var Summary$1 = ProviderWarp.Summary;
|
|
@@ -224654,7 +224660,7 @@
|
|
|
224654
224660
|
_props$onGroupChange = props.onGroupChange,
|
|
224655
224661
|
onGroupChange = _props$onGroupChange === void 0 ? function () {} : _props$onGroupChange,
|
|
224656
224662
|
emptyProps = props.emptyProps,
|
|
224657
|
-
resetProps = _objectWithoutProperties$1(props, _excluded$
|
|
224663
|
+
resetProps = _objectWithoutProperties$1(props, _excluded$1$);
|
|
224658
224664
|
var _resetProps$rowKey = resetProps.rowKey,
|
|
224659
224665
|
rowKey = _resetProps$rowKey === void 0 ? 'id' : _resetProps$rowKey;
|
|
224660
224666
|
var _React$useContext = React__default['default'].useContext(ConfigContext$5),
|
|
@@ -225465,7 +225471,6 @@
|
|
|
225465
225471
|
width: groupWidth || 100,
|
|
225466
225472
|
fixed: true
|
|
225467
225473
|
}].concat(_toConsumableArray$1(innerColumns));
|
|
225468
|
-
console.log(groupWidth);
|
|
225469
225474
|
}
|
|
225470
225475
|
return sortOpen ? [sortDefaultColumnItem].concat(_toConsumableArray$1(innerColumns)) : innerColumns;
|
|
225471
225476
|
}, [useColumns, sortOpen, selectIng, dataSource, groupRowKeys, commitIng]);
|
|
@@ -225763,7 +225768,7 @@
|
|
|
225763
225768
|
cell: openSheet ? SheelTabelCell : null
|
|
225764
225769
|
}, body)
|
|
225765
225770
|
};
|
|
225766
|
-
}, [sortOpen, resizeable, components, colSortOpen]);
|
|
225771
|
+
}, [sortOpen, resizeable, components, colSortOpen, customizeDataSource]);
|
|
225767
225772
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
225768
225773
|
style: {
|
|
225769
225774
|
height: '100%',
|
|
@@ -226103,7 +226108,7 @@
|
|
|
226103
226108
|
return !Comp ? null : isReactComponent$1(Comp) ? /*#__PURE__*/React__default['default'].createElement(Comp, _objectSpread({}, props)) : Comp;
|
|
226104
226109
|
};
|
|
226105
226110
|
|
|
226106
|
-
var _excluded$
|
|
226111
|
+
var _excluded$20 = ["item"],
|
|
226107
226112
|
_excluded2$s = ["item"],
|
|
226108
226113
|
_excluded3$7 = ["type"];
|
|
226109
226114
|
var imgEmpty = require('./icon_placeholder.png');
|
|
@@ -226165,7 +226170,7 @@
|
|
|
226165
226170
|
className: "filter_list"
|
|
226166
226171
|
}, function (_ref2) {
|
|
226167
226172
|
var item = _ref2.item,
|
|
226168
|
-
resetProps = _objectWithoutProperties$1(_ref2, _excluded$
|
|
226173
|
+
resetProps = _objectWithoutProperties$1(_ref2, _excluded$20);
|
|
226169
226174
|
return /*#__PURE__*/React__default['default'].createElement("div", _objectSpread(_objectSpread({}, resetProps), {}, {
|
|
226170
226175
|
className: _classnames_2_3_2_classnames('filter_item', {
|
|
226171
226176
|
checked: item.value === getFilterValue
|
|
@@ -226556,7 +226561,7 @@
|
|
|
226556
226561
|
})))));
|
|
226557
226562
|
};
|
|
226558
226563
|
|
|
226559
|
-
var _excluded$
|
|
226564
|
+
var _excluded$21 = ["item"];
|
|
226560
226565
|
var imgEmpty$1 = require('./icon_placeholder.png');
|
|
226561
226566
|
var FilterEmpty$1 = function FilterEmpty() {
|
|
226562
226567
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
@@ -226641,7 +226646,7 @@
|
|
|
226641
226646
|
className: "filter_list"
|
|
226642
226647
|
}, function (_ref4) {
|
|
226643
226648
|
var item = _ref4.item,
|
|
226644
|
-
resetProps = _objectWithoutProperties$1(_ref4, _excluded$
|
|
226649
|
+
resetProps = _objectWithoutProperties$1(_ref4, _excluded$21);
|
|
226645
226650
|
return /*#__PURE__*/React__default['default'].createElement("div", _objectSpread(_objectSpread({}, resetProps), {}, {
|
|
226646
226651
|
className: _classnames_2_3_2_classnames('filter_item', {
|
|
226647
226652
|
checked: checkedValues.includes(item.value),
|
|
@@ -226657,7 +226662,7 @@
|
|
|
226657
226662
|
}), !renderOptions.length && /*#__PURE__*/React__default['default'].createElement(FilterEmpty$1, null)));
|
|
226658
226663
|
};
|
|
226659
226664
|
|
|
226660
|
-
var _excluded$
|
|
226665
|
+
var _excluded$22 = ["children", "className", "dropdownClassName", "type", "options", "showSearch"];
|
|
226661
226666
|
var prefixCls$4 = 'lm_select';
|
|
226662
226667
|
// 不同类型Select, 不同的默认配置
|
|
226663
226668
|
var config = {
|
|
@@ -226681,7 +226686,7 @@
|
|
|
226681
226686
|
type = _props$type === void 0 ? 'select' : _props$type,
|
|
226682
226687
|
options = props.options,
|
|
226683
226688
|
showSearch = props.showSearch,
|
|
226684
|
-
others = _objectWithoutProperties$1(props, _excluded$
|
|
226689
|
+
others = _objectWithoutProperties$1(props, _excluded$22);
|
|
226685
226690
|
var _React$useState = React__default['default'].useState(others.defaultValue || []),
|
|
226686
226691
|
_React$useState2 = _slicedToArray$1(_React$useState, 2),
|
|
226687
226692
|
checkedValues = _React$useState2[0],
|
|
@@ -226731,10 +226736,10 @@
|
|
|
226731
226736
|
}), children);
|
|
226732
226737
|
});
|
|
226733
226738
|
|
|
226734
|
-
var _excluded$
|
|
226739
|
+
var _excluded$23 = ["ghost"];
|
|
226735
226740
|
var CLMSelect = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
226736
226741
|
var ghost = props.ghost,
|
|
226737
|
-
others = _objectWithoutProperties$1(props, _excluded$
|
|
226742
|
+
others = _objectWithoutProperties$1(props, _excluded$23);
|
|
226738
226743
|
if (ghost) {
|
|
226739
226744
|
return /*#__PURE__*/React__default['default'].createElement(Index$a, _objectSpread({}, others));
|
|
226740
226745
|
}
|
|
@@ -226766,7 +226771,7 @@
|
|
|
226766
226771
|
return runtimeLocale$1;
|
|
226767
226772
|
}
|
|
226768
226773
|
|
|
226769
|
-
var _excluded$
|
|
226774
|
+
var _excluded$24 = ["wrapClassName", "size", "onOk", "onCancel", "visible", "open"];
|
|
226770
226775
|
var prefixCls$5 = 'lm_modal';
|
|
226771
226776
|
var CLMModal = function CLMModal(props) {
|
|
226772
226777
|
var wrapClassName = props.wrapClassName,
|
|
@@ -226776,7 +226781,7 @@
|
|
|
226776
226781
|
onCancel = props.onCancel,
|
|
226777
226782
|
visible = props.visible,
|
|
226778
226783
|
open = props.open,
|
|
226779
|
-
other = _objectWithoutProperties$1(props, _excluded$
|
|
226784
|
+
other = _objectWithoutProperties$1(props, _excluded$24);
|
|
226780
226785
|
var defaultFooterSize = React__default['default'].useContext(SizeContext$1) || 'middle';
|
|
226781
226786
|
var defaultFooter = /*#__PURE__*/React__default['default'].createElement(LocaleReceiver$1, {
|
|
226782
226787
|
componentName: "Modal",
|
|
@@ -226840,13 +226845,13 @@
|
|
|
226840
226845
|
LMModal.destroyAll = Modal$1.destroyAll;
|
|
226841
226846
|
LMModal.config = Modal$1.config;
|
|
226842
226847
|
|
|
226843
|
-
var _excluded$
|
|
226848
|
+
var _excluded$25 = ["children", "className"];
|
|
226844
226849
|
var ConfigContext$6 = ConfigProvider$1.ConfigContext;
|
|
226845
226850
|
var prefixCls$6 = 'lm_pagination';
|
|
226846
226851
|
var LMPagination = function LMPagination(props) {
|
|
226847
226852
|
var children = props.children,
|
|
226848
226853
|
className = props.className,
|
|
226849
|
-
others = _objectWithoutProperties$1(props, _excluded$
|
|
226854
|
+
others = _objectWithoutProperties$1(props, _excluded$25);
|
|
226850
226855
|
var _React$useContext = React__default['default'].useContext(ConfigContext$6),
|
|
226851
226856
|
locale = _React$useContext.locale;
|
|
226852
226857
|
// 更改中文语言包内容显示
|
|
@@ -226868,11 +226873,11 @@
|
|
|
226868
226873
|
}));
|
|
226869
226874
|
};
|
|
226870
226875
|
|
|
226871
|
-
var _excluded$
|
|
226876
|
+
var _excluded$26 = ["children"],
|
|
226872
226877
|
_excluded2$t = ["children", "size", "buttonStyle", "direction", "className"];
|
|
226873
226878
|
var LMRadio = function LMRadio(props) {
|
|
226874
226879
|
var children = props.children,
|
|
226875
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
226880
|
+
restProps = _objectWithoutProperties$1(props, _excluded$26);
|
|
226876
226881
|
return /*#__PURE__*/React__default['default'].createElement(Radio$1, _extends$2({
|
|
226877
226882
|
className: "lm-radio"
|
|
226878
226883
|
}, restProps), children);
|
|
@@ -226893,7 +226898,7 @@
|
|
|
226893
226898
|
};
|
|
226894
226899
|
LMRadio.Button = Radio$1.Button;
|
|
226895
226900
|
|
|
226896
|
-
var _excluded$
|
|
226901
|
+
var _excluded$27 = ["children", "className", "size", "disabled", "dropdownClassName", "options", "value", "defaultLabel", "suffix", "icon", "iconClick"];
|
|
226897
226902
|
var prefixCls$7 = 'lm_select';
|
|
226898
226903
|
var CLMSelect$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
226899
226904
|
var children = props.children,
|
|
@@ -226907,7 +226912,7 @@
|
|
|
226907
226912
|
suffix = props.suffix,
|
|
226908
226913
|
icon = props.icon,
|
|
226909
226914
|
iconClick = props.iconClick,
|
|
226910
|
-
rest = _objectWithoutProperties$1(props, _excluded$
|
|
226915
|
+
rest = _objectWithoutProperties$1(props, _excluded$27);
|
|
226911
226916
|
// ===================== Size =====================
|
|
226912
226917
|
var size = customizeSize || React__default['default'].useContext(SizeContext$1) || 'middle';
|
|
226913
226918
|
// ===================== Disabled =====================
|
|
@@ -227044,7 +227049,7 @@
|
|
|
227044
227049
|
|
|
227045
227050
|
var build$1 = hexToRgba;
|
|
227046
227051
|
|
|
227047
|
-
var _excluded$
|
|
227052
|
+
var _excluded$28 = ["className", "color"],
|
|
227048
227053
|
_excluded2$u = ["className", "color", "checked"];
|
|
227049
227054
|
var CheckableTag$1 = Tag.CheckableTag;
|
|
227050
227055
|
var PresetColorTypes$1 = ['pink', 'red', 'yellow', 'orange', 'cyan', 'green', 'blue', 'purple', 'geekblue', 'magenta', 'volcano', 'gold', 'lime', 'theme'];
|
|
@@ -227052,7 +227057,7 @@
|
|
|
227052
227057
|
var LmTag = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
227053
227058
|
var className = props.className,
|
|
227054
227059
|
color = props.color,
|
|
227055
|
-
rest = _objectWithoutProperties$1(props, _excluded$
|
|
227060
|
+
rest = _objectWithoutProperties$1(props, _excluded$28);
|
|
227056
227061
|
return /*#__PURE__*/React__default['default'].createElement(Tag, _objectSpread(_objectSpread({
|
|
227057
227062
|
ref: ref
|
|
227058
227063
|
}, rest), {}, {
|
|
@@ -227641,7 +227646,7 @@
|
|
|
227641
227646
|
TabPane$2.displayName = 'TabPane';
|
|
227642
227647
|
}
|
|
227643
227648
|
|
|
227644
|
-
var _excluded$
|
|
227649
|
+
var _excluded$29 = ["key", "forceRender", "style", "className"];
|
|
227645
227650
|
function TabPanelList$1(_ref) {
|
|
227646
227651
|
var id = _ref.id,
|
|
227647
227652
|
activeKey = _ref.activeKey,
|
|
@@ -227664,7 +227669,7 @@
|
|
|
227664
227669
|
forceRender = _ref2.forceRender,
|
|
227665
227670
|
paneStyle = _ref2.style,
|
|
227666
227671
|
paneClassName = _ref2.className,
|
|
227667
|
-
restTabProps = _objectWithoutProperties(_ref2, _excluded$
|
|
227672
|
+
restTabProps = _objectWithoutProperties(_ref2, _excluded$29);
|
|
227668
227673
|
|
|
227669
227674
|
var active = key === activeKey;
|
|
227670
227675
|
return /*#__PURE__*/React.createElement(CSSMotion, _extends({
|
|
@@ -228826,12 +228831,12 @@
|
|
|
228826
228831
|
|
|
228827
228832
|
var TabNavList$3 = /*#__PURE__*/React.forwardRef(TabNavList$2);
|
|
228828
228833
|
|
|
228829
|
-
var _excluded$
|
|
228834
|
+
var _excluded$2a = ["renderTabBar"],
|
|
228830
228835
|
_excluded2$v = ["label", "key"];
|
|
228831
228836
|
|
|
228832
228837
|
function TabNavListWrapper(_ref) {
|
|
228833
228838
|
var renderTabBar = _ref.renderTabBar,
|
|
228834
|
-
restProps = _objectWithoutProperties(_ref, _excluded$
|
|
228839
|
+
restProps = _objectWithoutProperties(_ref, _excluded$2a);
|
|
228835
228840
|
|
|
228836
228841
|
var _useContext = React.useContext(TabContext$1),
|
|
228837
228842
|
tabs = _useContext.tabs;
|
|
@@ -228897,7 +228902,7 @@
|
|
|
228897
228902
|
return mergedAnimated;
|
|
228898
228903
|
}
|
|
228899
228904
|
|
|
228900
|
-
var _excluded$
|
|
228905
|
+
var _excluded$2b = ["id", "prefixCls", "className", "items", "direction", "activeKey", "defaultActiveKey", "editable", "animated", "tabPosition", "tabBarGutter", "tabBarStyle", "tabBarExtraContent", "locale", "moreIcon", "moreTransitionName", "destroyInactiveTabPane", "renderTabBar", "onChange", "onTabClick", "onTabScroll", "getPopupContainer", "popupClassName"];
|
|
228901
228906
|
/**
|
|
228902
228907
|
* Should added antd:
|
|
228903
228908
|
* - type
|
|
@@ -228939,7 +228944,7 @@
|
|
|
228939
228944
|
onTabScroll = _ref.onTabScroll,
|
|
228940
228945
|
getPopupContainer = _ref.getPopupContainer,
|
|
228941
228946
|
popupClassName = _ref.popupClassName,
|
|
228942
|
-
restProps = _objectWithoutProperties(_ref, _excluded$
|
|
228947
|
+
restProps = _objectWithoutProperties(_ref, _excluded$2b);
|
|
228943
228948
|
|
|
228944
228949
|
var tabs = React.useMemo(function () {
|
|
228945
228950
|
return (items || []).filter(function (item) {
|
|
@@ -229201,7 +229206,7 @@
|
|
|
229201
229206
|
|
|
229202
229207
|
var toArray$a = /*@__PURE__*/getDefaultExportFromCjs(toArray_1);
|
|
229203
229208
|
|
|
229204
|
-
var _excluded$
|
|
229209
|
+
var _excluded$2c = ["tab"];
|
|
229205
229210
|
function filter(items) {
|
|
229206
229211
|
return items.filter(function (item) {
|
|
229207
229212
|
return item;
|
|
@@ -229218,7 +229223,7 @@
|
|
|
229218
229223
|
props = node.props;
|
|
229219
229224
|
var _ref = props || {},
|
|
229220
229225
|
tab = _ref.tab,
|
|
229221
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
229226
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$2c);
|
|
229222
229227
|
var item = _objectSpread(_objectSpread({
|
|
229223
229228
|
key: String(key)
|
|
229224
229229
|
}, restProps), {}, {
|
|
@@ -229238,7 +229243,7 @@
|
|
|
229238
229243
|
TabPane$3.displayName = 'DeprecatedTabPane';
|
|
229239
229244
|
}
|
|
229240
229245
|
|
|
229241
|
-
var _excluded$
|
|
229246
|
+
var _excluded$2d = ["type", "className", "size", "onEdit", "hideAdd", "centered", "addIcon", "children", "items", "animated"];
|
|
229242
229247
|
function Tabs$3(_ref) {
|
|
229243
229248
|
var type = _ref.type,
|
|
229244
229249
|
className = _ref.className,
|
|
@@ -229250,7 +229255,7 @@
|
|
|
229250
229255
|
children = _ref.children,
|
|
229251
229256
|
items = _ref.items,
|
|
229252
229257
|
animated = _ref.animated,
|
|
229253
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
229258
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2d);
|
|
229254
229259
|
var customizePrefixCls = props.prefixCls,
|
|
229255
229260
|
_props$moreIcon = props.moreIcon,
|
|
229256
229261
|
moreIcon = _props$moreIcon === void 0 ? /*#__PURE__*/React.createElement(EllipsisOutlined$4, null) : _props$moreIcon;
|
|
@@ -229294,12 +229299,12 @@
|
|
|
229294
229299
|
Tabs$3.TabPane = TabPane$3;
|
|
229295
229300
|
Tabs$3.AntdTabs = Tabs$1;
|
|
229296
229301
|
|
|
229297
|
-
var _excluded$
|
|
229302
|
+
var _excluded$2e = ["size", "className"];
|
|
229298
229303
|
var Switch$2 = function Switch(props) {
|
|
229299
229304
|
var _props$size = props.size,
|
|
229300
229305
|
size = _props$size === void 0 ? 'default' : _props$size,
|
|
229301
229306
|
className = props.className,
|
|
229302
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
229307
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2e);
|
|
229303
229308
|
var classs = _classnames_2_3_2_classnames('lm-switch', className, _defineProperty$1({}, "lm-switch-".concat(size), size));
|
|
229304
229309
|
return /*#__PURE__*/React__default['default'].createElement(Switch$1, _objectSpread(_objectSpread({
|
|
229305
229310
|
className: classs
|
|
@@ -230620,7 +230625,7 @@
|
|
|
230620
230625
|
return replaceElement$1(element, element, props);
|
|
230621
230626
|
}
|
|
230622
230627
|
|
|
230623
|
-
var _excluded$
|
|
230628
|
+
var _excluded$2f = ["getPopupContainer"];
|
|
230624
230629
|
var splitObject$1 = function splitObject(obj, keys) {
|
|
230625
230630
|
var picked = {};
|
|
230626
230631
|
var omitted = _objectSpread({}, obj);
|
|
@@ -230739,7 +230744,7 @@
|
|
|
230739
230744
|
return overlay || title || '';
|
|
230740
230745
|
};
|
|
230741
230746
|
var getPopupContainer = props.getPopupContainer,
|
|
230742
|
-
otherProps = _objectWithoutProperties$1(props, _excluded$
|
|
230747
|
+
otherProps = _objectWithoutProperties$1(props, _excluded$2f);
|
|
230743
230748
|
var customizePrefixCls = props.prefixCls,
|
|
230744
230749
|
openClassName = props.openClassName,
|
|
230745
230750
|
getTooltipContainer = props.getTooltipContainer,
|
|
@@ -231545,7 +231550,7 @@
|
|
|
231545
231550
|
return list;
|
|
231546
231551
|
}
|
|
231547
231552
|
|
|
231548
|
-
var _excluded$
|
|
231553
|
+
var _excluded$2g = ["component", "children", "onVisibleChanged", "onAllRemoved"],
|
|
231549
231554
|
_excluded2$w = ["status"];
|
|
231550
231555
|
var MOTION_PROP_NAMES$1 = ['eventProps', 'visible', 'children', 'motionName', 'motionAppear', 'motionEnter', 'motionLeave', 'motionLeaveImmediately', 'motionDeadline', 'removeOnLeave', 'leavedClassName', 'onAppearStart', 'onAppearActive', 'onAppearEnd', 'onEnterStart', 'onEnterActive', 'onEnterEnd', 'onLeaveStart', 'onLeaveActive', 'onLeaveEnd'];
|
|
231551
231556
|
/**
|
|
@@ -231610,7 +231615,7 @@
|
|
|
231610
231615
|
children = _this$props.children,
|
|
231611
231616
|
_onVisibleChanged = _this$props.onVisibleChanged,
|
|
231612
231617
|
onAllRemoved = _this$props.onAllRemoved,
|
|
231613
|
-
restProps = _objectWithoutProperties(_this$props, _excluded$
|
|
231618
|
+
restProps = _objectWithoutProperties(_this$props, _excluded$2g);
|
|
231614
231619
|
|
|
231615
231620
|
var Component = component || React.Fragment;
|
|
231616
231621
|
var motionProps = {};
|
|
@@ -231830,7 +231835,7 @@
|
|
|
231830
231835
|
|
|
231831
231836
|
var RowContext$1 = /*#__PURE__*/React.createContext({});
|
|
231832
231837
|
|
|
231833
|
-
var _excluded$
|
|
231838
|
+
var _excluded$2h = ["prefixCls", "span", "order", "offset", "push", "pull", "className", "children", "flex", "style"];
|
|
231834
231839
|
function parseFlex$1(flex) {
|
|
231835
231840
|
if (typeof flex === 'number') {
|
|
231836
231841
|
return "".concat(flex, " ").concat(flex, " auto");
|
|
@@ -231860,7 +231865,7 @@
|
|
|
231860
231865
|
children = props.children,
|
|
231861
231866
|
flex = props.flex,
|
|
231862
231867
|
style = props.style,
|
|
231863
|
-
others = _objectWithoutProperties$1(props, _excluded$
|
|
231868
|
+
others = _objectWithoutProperties$1(props, _excluded$2h);
|
|
231864
231869
|
var prefixCls = getPrefixCls('col', customizePrefixCls);
|
|
231865
231870
|
var sizeClassObj = {};
|
|
231866
231871
|
sizes$1.forEach(function (size) {
|
|
@@ -232074,7 +232079,7 @@
|
|
|
232074
232079
|
return flexible;
|
|
232075
232080
|
});
|
|
232076
232081
|
|
|
232077
|
-
var _excluded$
|
|
232082
|
+
var _excluded$2i = ["prefixCls", "justify", "align", "className", "style", "children", "gutter", "wrap"];
|
|
232078
232083
|
var RowAligns$1 = tuple$2('top', 'middle', 'bottom', 'stretch');
|
|
232079
232084
|
var RowJustify$1 = tuple$2('start', 'end', 'center', 'space-around', 'space-between', 'space-evenly');
|
|
232080
232085
|
var Row$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
@@ -232088,7 +232093,7 @@
|
|
|
232088
232093
|
_props$gutter = props.gutter,
|
|
232089
232094
|
gutter = _props$gutter === void 0 ? 0 : _props$gutter,
|
|
232090
232095
|
wrap = props.wrap,
|
|
232091
|
-
others = _objectWithoutProperties$1(props, _excluded$
|
|
232096
|
+
others = _objectWithoutProperties$1(props, _excluded$2i);
|
|
232092
232097
|
var _React$useContext = React.useContext(ConfigContext),
|
|
232093
232098
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
232094
232099
|
direction = _React$useContext.direction;
|
|
@@ -233927,7 +233932,7 @@
|
|
|
233927
233932
|
return NextArrow;
|
|
233928
233933
|
}(React__default['default'].PureComponent);
|
|
233929
233934
|
|
|
233930
|
-
var _excluded$
|
|
233935
|
+
var _excluded$2j = ["animating"];
|
|
233931
233936
|
var InnerSlider = /*#__PURE__*/function (_React$Component) {
|
|
233932
233937
|
_inherits(InnerSlider, _React$Component);
|
|
233933
233938
|
|
|
@@ -234343,7 +234348,7 @@
|
|
|
234343
234348
|
if (!nextState) return;
|
|
234344
234349
|
_this.animationEndCallback = setTimeout(function () {
|
|
234345
234350
|
var animating = nextState.animating,
|
|
234346
|
-
firstBatch = _objectWithoutProperties(nextState, _excluded$
|
|
234351
|
+
firstBatch = _objectWithoutProperties(nextState, _excluded$2j);
|
|
234347
234352
|
|
|
234348
234353
|
_this.setState(firstBatch, function () {
|
|
234349
234354
|
_this.callbackTimers.push(setTimeout(function () {
|
|
@@ -236039,7 +236044,7 @@
|
|
|
236039
236044
|
return update;
|
|
236040
236045
|
}
|
|
236041
236046
|
|
|
236042
|
-
var _excluded$
|
|
236047
|
+
var _excluded$2k = ["prefixCls", "className", "style", "prefix", "split", "notFoundContent", "value", "defaultValue", "children", "open", "validateSearch", "filterOption", "onChange", "onKeyDown", "onKeyUp", "onPressEnter", "onSearch", "onSelect", "onFocus", "onBlur", "transitionName", "placement", "direction", "getPopupContainer", "dropdownClassName"];
|
|
236043
236048
|
var Mentions = /*#__PURE__*/React__default['default'].forwardRef(function (props, ref) {
|
|
236044
236049
|
var prefixCls = props.prefixCls,
|
|
236045
236050
|
className = props.className,
|
|
@@ -236066,7 +236071,7 @@
|
|
|
236066
236071
|
direction = props.direction,
|
|
236067
236072
|
getPopupContainer = props.getPopupContainer,
|
|
236068
236073
|
dropdownClassName = props.dropdownClassName,
|
|
236069
|
-
restProps = _objectWithoutProperties(props, _excluded$
|
|
236074
|
+
restProps = _objectWithoutProperties(props, _excluded$2k);
|
|
236070
236075
|
|
|
236071
236076
|
var mergedPrefix = Array.isArray(prefix) ? prefix : [prefix];
|
|
236072
236077
|
|
|
@@ -236704,7 +236709,7 @@
|
|
|
236704
236709
|
});
|
|
236705
236710
|
}
|
|
236706
236711
|
|
|
236707
|
-
var _excluded$
|
|
236712
|
+
var _excluded$2l = ["prefixCls", "direction", "options", "disabled", "defaultValue", "value", "onChange", "className", "motionName"];
|
|
236708
236713
|
|
|
236709
236714
|
function getValidTitle(option) {
|
|
236710
236715
|
if (typeof option.title !== 'undefined') {
|
|
@@ -236783,7 +236788,7 @@
|
|
|
236783
236788
|
className = _props$className === void 0 ? '' : _props$className,
|
|
236784
236789
|
_props$motionName = props.motionName,
|
|
236785
236790
|
motionName = _props$motionName === void 0 ? 'thumb-motion' : _props$motionName,
|
|
236786
|
-
restProps = _objectWithoutProperties(props, _excluded$
|
|
236791
|
+
restProps = _objectWithoutProperties(props, _excluded$2l);
|
|
236787
236792
|
|
|
236788
236793
|
var containerRef = React.useRef(null);
|
|
236789
236794
|
var mergedRef = React.useMemo(function () {
|
|
@@ -238340,7 +238345,7 @@
|
|
|
238340
238345
|
})))));
|
|
238341
238346
|
};
|
|
238342
238347
|
|
|
238343
|
-
var _excluded$
|
|
238348
|
+
var _excluded$2m = ["prefixCls", "className", "size", "disabled", "form", "colon", "labelAlign", "labelWrap", "labelCol", "wrapperCol", "hideRequiredMark", "layout", "scrollToFirstError", "requiredMark", "onFinishFailed", "name", "responsive", "children"];
|
|
238344
238349
|
var InternalForm$2 = function InternalForm(props, ref) {
|
|
238345
238350
|
var _classNames;
|
|
238346
238351
|
var contextSize = React.useContext(SizeContext$1);
|
|
@@ -238371,7 +238376,7 @@
|
|
|
238371
238376
|
name = props.name,
|
|
238372
238377
|
responsive = props.responsive,
|
|
238373
238378
|
customizeChildren = props.children,
|
|
238374
|
-
restFormProps = _objectWithoutProperties$1(props, _excluded$
|
|
238379
|
+
restFormProps = _objectWithoutProperties$1(props, _excluded$2m);
|
|
238375
238380
|
var children = customizeChildren;
|
|
238376
238381
|
var mergedRequiredMark = React.useMemo(function () {
|
|
238377
238382
|
if (requiredMark !== undefined) {
|
|
@@ -239016,7 +239021,7 @@
|
|
|
239016
239021
|
|
|
239017
239022
|
var QuestionCircleOutlined$4 = /*@__PURE__*/getDefaultExportFromCjs(QuestionCircleOutlined$3);
|
|
239018
239023
|
|
|
239019
|
-
var _excluded$
|
|
239024
|
+
var _excluded$2n = ["icon"];
|
|
239020
239025
|
function toTooltipProps$1(tooltip) {
|
|
239021
239026
|
if (!tooltip) {
|
|
239022
239027
|
return null;
|
|
@@ -239068,7 +239073,7 @@
|
|
|
239068
239073
|
if (tooltipProps) {
|
|
239069
239074
|
var _tooltipProps$icon = tooltipProps.icon,
|
|
239070
239075
|
icon = _tooltipProps$icon === void 0 ? /*#__PURE__*/React.createElement(QuestionCircleOutlined$4, null) : _tooltipProps$icon,
|
|
239071
|
-
restTooltipProps = _objectWithoutProperties$1(tooltipProps, _excluded$
|
|
239076
|
+
restTooltipProps = _objectWithoutProperties$1(tooltipProps, _excluded$2n);
|
|
239072
239077
|
var tooltipNode = /*#__PURE__*/React.createElement(Tooltip$3, _objectSpread({}, restTooltipProps), /*#__PURE__*/React.cloneElement(icon, {
|
|
239073
239078
|
className: "".concat(prefixCls, "-item-tooltip"),
|
|
239074
239079
|
title: ''
|
|
@@ -239164,7 +239169,7 @@
|
|
|
239164
239169
|
}), dom));
|
|
239165
239170
|
};
|
|
239166
239171
|
|
|
239167
|
-
var _excluded$
|
|
239172
|
+
var _excluded$2o = ["prefixCls", "className", "style", "help", "errors", "warnings", "validateStatus", "meta", "hasFeedback", "hidden", "children", "fieldId", "isRequired", "responsive", "errorPlacement", "onSubItemMetaChange"];
|
|
239168
239173
|
var iconMap$1 = {
|
|
239169
239174
|
success: CheckCircleFilled$4,
|
|
239170
239175
|
warning: ExclamationCircleFilled$4,
|
|
@@ -239190,7 +239195,7 @@
|
|
|
239190
239195
|
_props$errorPlacement = props.errorPlacement,
|
|
239191
239196
|
errorPlacement = _props$errorPlacement === void 0 ? 'default' : _props$errorPlacement,
|
|
239192
239197
|
onSubItemMetaChange = props.onSubItemMetaChange,
|
|
239193
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
239198
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2o);
|
|
239194
239199
|
var itemPrefixCls = "".concat(prefixCls, "-item");
|
|
239195
239200
|
var _React$useContext = React.useContext(FormContext$2),
|
|
239196
239201
|
requiredMark = _React$useContext.requiredMark;
|
|
@@ -239533,11 +239538,11 @@
|
|
|
239533
239538
|
var FormItem$1 = InternalFormItem$2;
|
|
239534
239539
|
FormItem$1.useStatus = useFormItemStatus$1;
|
|
239535
239540
|
|
|
239536
|
-
var _excluded$
|
|
239541
|
+
var _excluded$2p = ["prefixCls", "children"];
|
|
239537
239542
|
var FormList$1 = function FormList(_ref) {
|
|
239538
239543
|
var customizePrefixCls = _ref.prefixCls,
|
|
239539
239544
|
children = _ref.children,
|
|
239540
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
239545
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2p);
|
|
239541
239546
|
warning$6(!!props.name, 'Form.List', 'Miss `name` prop.');
|
|
239542
239547
|
var _React$useContext = React.useContext(ConfigContext$1),
|
|
239543
239548
|
getPrefixCls = _React$useContext.getPrefixCls;
|
|
@@ -239675,12 +239680,12 @@
|
|
|
239675
239680
|
}, children);
|
|
239676
239681
|
};
|
|
239677
239682
|
|
|
239678
|
-
var _excluded$
|
|
239683
|
+
var _excluded$2q = ["data-row-key", "children", "className"];
|
|
239679
239684
|
var SortableItem$1 = function SortableItem(props) {
|
|
239680
239685
|
var key = props['data-row-key'],
|
|
239681
239686
|
children = props.children,
|
|
239682
239687
|
className = props.className,
|
|
239683
|
-
resetField = _objectWithoutProperties$1(props, _excluded$
|
|
239688
|
+
resetField = _objectWithoutProperties$1(props, _excluded$2q);
|
|
239684
239689
|
var _useSortable = useSortable({
|
|
239685
239690
|
id: key
|
|
239686
239691
|
}),
|
|
@@ -239699,11 +239704,11 @@
|
|
|
239699
239704
|
}, attributes), children);
|
|
239700
239705
|
};
|
|
239701
239706
|
|
|
239702
|
-
var _excluded$
|
|
239707
|
+
var _excluded$2r = ["children"];
|
|
239703
239708
|
var Item$5 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
239704
239709
|
var _children$props;
|
|
239705
239710
|
var children = _ref.children,
|
|
239706
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
239711
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2r);
|
|
239707
239712
|
return /*#__PURE__*/React__default['default'].createElement("th", _objectSpread(_objectSpread({}, props), {}, {
|
|
239708
239713
|
ref: ref
|
|
239709
239714
|
}), (children === null || children === void 0 ? void 0 : (_children$props = children.props) === null || _children$props === void 0 ? void 0 : _children$props.children) || children);
|
|
@@ -239798,7 +239803,7 @@
|
|
|
239798
239803
|
return res;
|
|
239799
239804
|
}
|
|
239800
239805
|
|
|
239801
|
-
var _excluded$
|
|
239806
|
+
var _excluded$2s = ["index"],
|
|
239802
239807
|
_excluded2$x = ["index"],
|
|
239803
239808
|
_excluded3$8 = ["value", "onChange", "record", "rowIndex", "colIndex", "validator"],
|
|
239804
239809
|
_excluded4$1 = ["record", "rowKey", "isEdit", "col", "rowIndex", "colIndex", "handleTableRowDelete", "handleTableRowAdd", "quickOpetateClearAll", "getLength", "isHoverEdit", "editEnum", "valueType", "children", "handleSave", "handleAdd", "handleDelete", "handleCopy", "itemProps", "setValid", "reWriteOriginSource"],
|
|
@@ -239809,7 +239814,7 @@
|
|
|
239809
239814
|
// 表格行
|
|
239810
239815
|
var EditableRow$1 = function EditableRow(_ref) {
|
|
239811
239816
|
var index = _ref.index,
|
|
239812
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
239817
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2s);
|
|
239813
239818
|
var _Form$useForm = Form$4.useForm(),
|
|
239814
239819
|
_Form$useForm2 = _slicedToArray$1(_Form$useForm, 1),
|
|
239815
239820
|
form = _Form$useForm2[0];
|
|
@@ -241599,7 +241604,7 @@
|
|
|
241599
241604
|
}
|
|
241600
241605
|
}
|
|
241601
241606
|
|
|
241602
|
-
var _excluded$
|
|
241607
|
+
var _excluded$2t = ["prefixCls", "getPopupContainer", "className", "placement", "size", "disabled", "bordered", "placeholder", "status"];
|
|
241603
241608
|
function generateRangePicker$1(generateConfig) {
|
|
241604
241609
|
var RangePicker$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
241605
241610
|
var customizePrefixCls = props.prefixCls,
|
|
@@ -241612,7 +241617,7 @@
|
|
|
241612
241617
|
bordered = _props$bordered === void 0 ? true : _props$bordered,
|
|
241613
241618
|
placeholder = props.placeholder,
|
|
241614
241619
|
customStatus = props.status,
|
|
241615
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
241620
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2t);
|
|
241616
241621
|
var innerRef = React.useRef(null);
|
|
241617
241622
|
var _useContext = React.useContext(ConfigContext),
|
|
241618
241623
|
getPrefixCls = _useContext.getPrefixCls,
|
|
@@ -241705,7 +241710,7 @@
|
|
|
241705
241710
|
return RangePicker$1;
|
|
241706
241711
|
}
|
|
241707
241712
|
|
|
241708
|
-
var _excluded$
|
|
241713
|
+
var _excluded$2u = ["prefixCls", "getPopupContainer", "className", "size", "bordered", "placement", "placeholder", "disabled", "status"];
|
|
241709
241714
|
function generatePicker$2(generateConfig) {
|
|
241710
241715
|
function getPicker(picker, displayName) {
|
|
241711
241716
|
var Picker$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
@@ -241719,7 +241724,7 @@
|
|
|
241719
241724
|
placeholder = props.placeholder,
|
|
241720
241725
|
customDisabled = props.disabled,
|
|
241721
241726
|
customStatus = props.status,
|
|
241722
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
241727
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2u);
|
|
241723
241728
|
warning$6(picker !== 'quarter', displayName, "DatePicker.".concat(displayName, " is legacy usage. Please use DatePicker[picker='").concat(picker, "'] directly."));
|
|
241724
241729
|
var _useContext = React.useContext(ConfigContext$1),
|
|
241725
241730
|
getPrefixCls = _useContext.getPrefixCls,
|
|
@@ -241913,13 +241918,13 @@
|
|
|
241913
241918
|
return propValue;
|
|
241914
241919
|
};
|
|
241915
241920
|
|
|
241916
|
-
var _excluded$
|
|
241921
|
+
var _excluded$2v = ["prefixCls", "title", "content", "_overlay"];
|
|
241917
241922
|
var Popover$1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
241918
241923
|
var customizePrefixCls = _ref.prefixCls,
|
|
241919
241924
|
title = _ref.title,
|
|
241920
241925
|
content = _ref.content,
|
|
241921
241926
|
_overlay = _ref._overlay,
|
|
241922
|
-
otherProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
241927
|
+
otherProps = _objectWithoutProperties$1(_ref, _excluded$2v);
|
|
241923
241928
|
var _React$useContext = React.useContext(ConfigContext),
|
|
241924
241929
|
getPrefixCls = _React$useContext.getPrefixCls;
|
|
241925
241930
|
var getOverlay = function getOverlay(prefixCls) {
|
|
@@ -242763,7 +242768,7 @@
|
|
|
242763
242768
|
|
|
242764
242769
|
var KeyCode$1 = /*@__PURE__*/getDefaultExportFromCjs(KeyCode_1);
|
|
242765
242770
|
|
|
242766
|
-
var _excluded$
|
|
242771
|
+
var _excluded$2w = ["style", "noStyle", "disabled"];
|
|
242767
242772
|
var inlineStyle$1 = {
|
|
242768
242773
|
border: 0,
|
|
242769
242774
|
background: 'transparent',
|
|
@@ -242788,7 +242793,7 @@
|
|
|
242788
242793
|
var style = props.style,
|
|
242789
242794
|
noStyle = props.noStyle,
|
|
242790
242795
|
disabled = props.disabled,
|
|
242791
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
242796
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2w);
|
|
242792
242797
|
var mergedStyle = {};
|
|
242793
242798
|
if (!noStyle) {
|
|
242794
242799
|
mergedStyle = _objectSpread({}, inlineStyle$1);
|
|
@@ -242982,7 +242987,7 @@
|
|
|
242982
242987
|
}, conditions);
|
|
242983
242988
|
});
|
|
242984
242989
|
|
|
242985
|
-
var _excluded$
|
|
242990
|
+
var _excluded$2x = ["prefixCls", "component", "className", "aria-label", "setContentRef", "children"];
|
|
242986
242991
|
var Typography$2 = function Typography(_ref, ref) {
|
|
242987
242992
|
var customizePrefixCls = _ref.prefixCls,
|
|
242988
242993
|
_ref$component = _ref.component,
|
|
@@ -242991,7 +242996,7 @@
|
|
|
242991
242996
|
ariaLabel = _ref['aria-label'],
|
|
242992
242997
|
setContentRef = _ref.setContentRef,
|
|
242993
242998
|
children = _ref.children,
|
|
242994
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
242999
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$2x);
|
|
242995
243000
|
var _React$useContext = React.useContext(ConfigContext),
|
|
242996
243001
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
242997
243002
|
direction = _React$useContext.direction;
|
|
@@ -243198,7 +243203,7 @@
|
|
|
243198
243203
|
EllipsisTooltip$1.displayName = 'EllipsisTooltip';
|
|
243199
243204
|
}
|
|
243200
243205
|
|
|
243201
|
-
var _excluded$
|
|
243206
|
+
var _excluded$2y = ["prefixCls", "className", "style", "type", "disabled", "children", "ellipsis", "editable", "copyable", "component", "title"];
|
|
243202
243207
|
function wrapperDecorations$1(_ref, content) {
|
|
243203
243208
|
var mark = _ref.mark,
|
|
243204
243209
|
code = _ref.code,
|
|
@@ -243243,7 +243248,7 @@
|
|
|
243243
243248
|
copyable = props.copyable,
|
|
243244
243249
|
component = props.component,
|
|
243245
243250
|
title = props.title,
|
|
243246
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
243251
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2y);
|
|
243247
243252
|
var _React$useContext = React.useContext(ConfigContext),
|
|
243248
243253
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
243249
243254
|
direction = _React$useContext.direction;
|
|
@@ -243603,11 +243608,11 @@
|
|
|
243603
243608
|
});
|
|
243604
243609
|
});
|
|
243605
243610
|
|
|
243606
|
-
var _excluded$
|
|
243611
|
+
var _excluded$2z = ["ellipsis", "rel"];
|
|
243607
243612
|
var Link$2 = function Link(_ref, ref) {
|
|
243608
243613
|
var ellipsis = _ref.ellipsis,
|
|
243609
243614
|
rel = _ref.rel,
|
|
243610
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
243615
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$2z);
|
|
243611
243616
|
warning$6(_typeof$1(ellipsis) !== 'object', 'Typography.Link', '`ellipsis` only supports boolean value.');
|
|
243612
243617
|
var baseRef = React.useRef(null);
|
|
243613
243618
|
React.useImperativeHandle(ref, function () {
|
|
@@ -243636,10 +243641,10 @@
|
|
|
243636
243641
|
};
|
|
243637
243642
|
var Paragraph$7 = /*#__PURE__*/React.forwardRef(Paragraph$6);
|
|
243638
243643
|
|
|
243639
|
-
var _excluded$
|
|
243644
|
+
var _excluded$2A = ["ellipsis"];
|
|
243640
243645
|
var Text$2 = function Text(_ref, ref) {
|
|
243641
243646
|
var ellipsis = _ref.ellipsis,
|
|
243642
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
243647
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$2A);
|
|
243643
243648
|
var mergedEllipsis = React.useMemo(function () {
|
|
243644
243649
|
if (ellipsis && _typeof$1(ellipsis) === 'object') {
|
|
243645
243650
|
return omit$3(ellipsis, ['expandable', 'rows']);
|
|
@@ -243656,12 +243661,12 @@
|
|
|
243656
243661
|
};
|
|
243657
243662
|
var Text$3 = /*#__PURE__*/React.forwardRef(Text$2);
|
|
243658
243663
|
|
|
243659
|
-
var _excluded$
|
|
243664
|
+
var _excluded$2B = ["level"];
|
|
243660
243665
|
var TITLE_ELE_LIST$1 = tupleNum$1(1, 2, 3, 4, 5);
|
|
243661
243666
|
var Title$4 = function Title(props, ref) {
|
|
243662
243667
|
var _props$level = props.level,
|
|
243663
243668
|
level = _props$level === void 0 ? 1 : _props$level,
|
|
243664
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
243669
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2B);
|
|
243665
243670
|
var component;
|
|
243666
243671
|
if (TITLE_ELE_LIST$1.indexOf(level) !== -1) {
|
|
243667
243672
|
component = "h".concat(level);
|
|
@@ -243753,7 +243758,7 @@
|
|
|
243753
243758
|
RefAutoComplete$1.Option = Option;
|
|
243754
243759
|
RefAutoComplete$1.AntdAutoComplete = RefAutoComplete;
|
|
243755
243760
|
|
|
243756
|
-
var _excluded$
|
|
243761
|
+
var _excluded$2C = ["children", "treeData", "value", "defaultLabel", "disabled", "size"];
|
|
243757
243762
|
var CLMTreeSelect = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
243758
243763
|
var children = props.children,
|
|
243759
243764
|
treeData = props.treeData,
|
|
@@ -243761,7 +243766,7 @@
|
|
|
243761
243766
|
defaultLabel = props.defaultLabel,
|
|
243762
243767
|
customDisabled = props.disabled,
|
|
243763
243768
|
customizeSize = props.size,
|
|
243764
|
-
resetProps = _objectWithoutProperties$1(props, _excluded$
|
|
243769
|
+
resetProps = _objectWithoutProperties$1(props, _excluded$2C);
|
|
243765
243770
|
// ===================== Disabled =====================
|
|
243766
243771
|
var disabled = React__default['default'].useContext(DisabledContext$1);
|
|
243767
243772
|
var mergedDisabled = customDisabled || disabled;
|
|
@@ -243879,7 +243884,7 @@
|
|
|
243879
243884
|
return ErrorBoundary;
|
|
243880
243885
|
}(React.Component);
|
|
243881
243886
|
|
|
243882
|
-
var _excluded$
|
|
243887
|
+
var _excluded$2D = ["description", "prefixCls", "message", "banner", "className", "style", "onMouseEnter", "onMouseLeave", "onClick", "afterClose", "showIcon", "closable", "closeText", "closeIcon", "action", "duration"];
|
|
243883
243888
|
var iconMapFilled$1 = {
|
|
243884
243889
|
success: CheckCircleFilled$2,
|
|
243885
243890
|
info: InfoCircleFilled$2,
|
|
@@ -243946,7 +243951,7 @@
|
|
|
243946
243951
|
closeIcon = _ref$closeIcon === void 0 ? /*#__PURE__*/React.createElement(CloseOutlined$2, null) : _ref$closeIcon,
|
|
243947
243952
|
action = _ref.action,
|
|
243948
243953
|
duration = _ref.duration,
|
|
243949
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
243954
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2D);
|
|
243950
243955
|
var _React$useState = React.useState(false),
|
|
243951
243956
|
_React$useState2 = _slicedToArray$1(_React$useState, 2),
|
|
243952
243957
|
closed = _React$useState2[0],
|
|
@@ -244311,7 +244316,7 @@
|
|
|
244311
244316
|
};
|
|
244312
244317
|
};
|
|
244313
244318
|
|
|
244314
|
-
var _excluded$
|
|
244319
|
+
var _excluded$2E = ["className", "onUrge", "onDeleteComment"];
|
|
244315
244320
|
var prefixCls$b = 'lm_approval';
|
|
244316
244321
|
var colors = ['#36BCF1', '#AE86DC', '#8BD248', '#F5A173'];
|
|
244317
244322
|
var cacheColorMap = new Map();
|
|
@@ -244670,7 +244675,7 @@
|
|
|
244670
244675
|
onUrge = _props$onUrge === void 0 ? function () {} : _props$onUrge,
|
|
244671
244676
|
_props$onDeleteCommen2 = props.onDeleteComment,
|
|
244672
244677
|
onDeleteComment = _props$onDeleteCommen2 === void 0 ? function () {} : _props$onDeleteCommen2,
|
|
244673
|
-
others = _objectWithoutProperties$1(props, _excluded$
|
|
244678
|
+
others = _objectWithoutProperties$1(props, _excluded$2E);
|
|
244674
244679
|
var _useState = React.useState(false),
|
|
244675
244680
|
_useState2 = _slicedToArray$1(_useState, 2),
|
|
244676
244681
|
update = _useState2[0],
|
|
@@ -244789,7 +244794,7 @@
|
|
|
244789
244794
|
|
|
244790
244795
|
var Indent$3 = /*#__PURE__*/React.memo(Indent$2);
|
|
244791
244796
|
|
|
244792
|
-
var _excluded$
|
|
244797
|
+
var _excluded$2F = ["children"];
|
|
244793
244798
|
function getKey$3(key, pos) {
|
|
244794
244799
|
if (key !== null && key !== undefined) {
|
|
244795
244800
|
return key;
|
|
@@ -244852,7 +244857,7 @@
|
|
|
244852
244857
|
|
|
244853
244858
|
var _treeNode$props = treeNode.props,
|
|
244854
244859
|
children = _treeNode$props.children,
|
|
244855
|
-
rest = _objectWithoutProperties(_treeNode$props, _excluded$
|
|
244860
|
+
rest = _objectWithoutProperties(_treeNode$props, _excluded$2F);
|
|
244856
244861
|
|
|
244857
244862
|
var dataNode = _objectSpread2({
|
|
244858
244863
|
key: key
|
|
@@ -245160,7 +245165,7 @@
|
|
|
245160
245165
|
return eventData;
|
|
245161
245166
|
}
|
|
245162
245167
|
|
|
245163
|
-
var _excluded$
|
|
245168
|
+
var _excluded$2G = ["eventKey", "className", "style", "dragOver", "dragOverGapTop", "dragOverGapBottom", "isLeaf", "isStart", "isEnd", "expanded", "selected", "checked", "halfChecked", "loading", "domRef", "active", "data", "onMouseMove", "selectable"];
|
|
245164
245169
|
var ICON_OPEN$1 = 'open';
|
|
245165
245170
|
var ICON_CLOSE$1 = 'close';
|
|
245166
245171
|
var defaultTitle$1 = '---';
|
|
@@ -245594,7 +245599,7 @@
|
|
|
245594
245599
|
data = _this$props8.data,
|
|
245595
245600
|
onMouseMove = _this$props8.onMouseMove,
|
|
245596
245601
|
selectable = _this$props8.selectable,
|
|
245597
|
-
otherProps = _objectWithoutProperties(_this$props8, _excluded$
|
|
245602
|
+
otherProps = _objectWithoutProperties(_this$props8, _excluded$2G);
|
|
245598
245603
|
|
|
245599
245604
|
var _this$props$context5 = this.props.context,
|
|
245600
245605
|
prefixCls = _this$props$context5.prefixCls,
|
|
@@ -245933,7 +245938,7 @@
|
|
|
245933
245938
|
return _toConsumableArray(expandedKeys);
|
|
245934
245939
|
}
|
|
245935
245940
|
|
|
245936
|
-
var _excluded$
|
|
245941
|
+
var _excluded$2H = ["className", "style", "motion", "motionNodes", "motionType", "onMotionStart", "onMotionEnd", "active", "treeNodeRequiredProps"];
|
|
245937
245942
|
|
|
245938
245943
|
var MotionTreeNode$1 = function MotionTreeNode(_ref, ref) {
|
|
245939
245944
|
var className = _ref.className,
|
|
@@ -245945,7 +245950,7 @@
|
|
|
245945
245950
|
onOriginMotionEnd = _ref.onMotionEnd,
|
|
245946
245951
|
active = _ref.active,
|
|
245947
245952
|
treeNodeRequiredProps = _ref.treeNodeRequiredProps,
|
|
245948
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
245953
|
+
props = _objectWithoutProperties(_ref, _excluded$2H);
|
|
245949
245954
|
|
|
245950
245955
|
var _React$useState = React.useState(true),
|
|
245951
245956
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
@@ -246086,7 +246091,7 @@
|
|
|
246086
246091
|
return longer.slice(longerStartIndex + 1);
|
|
246087
246092
|
}
|
|
246088
246093
|
|
|
246089
|
-
var _excluded$
|
|
246094
|
+
var _excluded$2I = ["prefixCls", "data", "selectable", "checkable", "expandedKeys", "selectedKeys", "checkedKeys", "loadedKeys", "loadingKeys", "halfCheckedKeys", "keyEntities", "disabled", "dragging", "dragOverNodeKey", "dropPosition", "motion", "height", "itemHeight", "virtual", "focusable", "activeItem", "focused", "tabIndex", "onKeyDown", "onFocus", "onBlur", "onActiveChange", "onListChangeStart", "onListChangeEnd"];
|
|
246090
246095
|
var HIDDEN_STYLE$3 = {
|
|
246091
246096
|
width: 0,
|
|
246092
246097
|
height: 0,
|
|
@@ -246184,7 +246189,7 @@
|
|
|
246184
246189
|
onActiveChange = props.onActiveChange,
|
|
246185
246190
|
onListChangeStart = props.onListChangeStart,
|
|
246186
246191
|
onListChangeEnd = props.onListChangeEnd,
|
|
246187
|
-
domProps = _objectWithoutProperties(props, _excluded$
|
|
246192
|
+
domProps = _objectWithoutProperties(props, _excluded$2I); // =============================== Ref ================================
|
|
246188
246193
|
|
|
246189
246194
|
|
|
246190
246195
|
var listRef = React.useRef(null);
|
|
@@ -249599,7 +249604,7 @@
|
|
|
249599
249604
|
return nodes;
|
|
249600
249605
|
}
|
|
249601
249606
|
|
|
249602
|
-
var _excluded$
|
|
249607
|
+
var _excluded$2J = ["defaultExpandAll", "defaultExpandParent", "defaultExpandedKeys"],
|
|
249603
249608
|
_excluded2$y = ["prefixCls", "className"];
|
|
249604
249609
|
var ConfigContext$7 = ConfigProvider$1.ConfigContext;
|
|
249605
249610
|
function getIcon$1(props) {
|
|
@@ -249619,7 +249624,7 @@
|
|
|
249619
249624
|
var defaultExpandAll = _ref2.defaultExpandAll,
|
|
249620
249625
|
defaultExpandParent = _ref2.defaultExpandParent,
|
|
249621
249626
|
defaultExpandedKeys = _ref2.defaultExpandedKeys,
|
|
249622
|
-
props = _objectWithoutProperties$1(_ref2, _excluded$
|
|
249627
|
+
props = _objectWithoutProperties$1(_ref2, _excluded$2J);
|
|
249623
249628
|
// Shift click usage
|
|
249624
249629
|
var lastSelectedKey = React.useRef();
|
|
249625
249630
|
var cachedSelectedKeys = React.useRef();
|
|
@@ -250070,11 +250075,11 @@
|
|
|
250070
250075
|
blockNode: false
|
|
250071
250076
|
};
|
|
250072
250077
|
|
|
250073
|
-
var _excluded$
|
|
250078
|
+
var _excluded$2K = ["className"];
|
|
250074
250079
|
var prefixCls$c = 'lm_tree';
|
|
250075
250080
|
var LmTree = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
250076
250081
|
var className = props.className,
|
|
250077
|
-
rest = _objectWithoutProperties$1(props, _excluded$
|
|
250082
|
+
rest = _objectWithoutProperties$1(props, _excluded$2K);
|
|
250078
250083
|
return /*#__PURE__*/React__default['default'].createElement(Tree$3, _objectSpread(_objectSpread({
|
|
250079
250084
|
ref: ref
|
|
250080
250085
|
}, rest), {}, {
|
|
@@ -251104,7 +251109,7 @@
|
|
|
251104
251109
|
}, unitNodes);
|
|
251105
251110
|
}
|
|
251106
251111
|
|
|
251107
|
-
var _excluded$
|
|
251112
|
+
var _excluded$2L = ["prefixCls", "count", "className", "motionClassName", "style", "title", "show", "component", "children"];
|
|
251108
251113
|
var ScrollNumber$1 = function ScrollNumber(_ref) {
|
|
251109
251114
|
var customizePrefixCls = _ref.prefixCls,
|
|
251110
251115
|
count = _ref.count,
|
|
@@ -251116,7 +251121,7 @@
|
|
|
251116
251121
|
_ref$component = _ref.component,
|
|
251117
251122
|
component = _ref$component === void 0 ? 'sup' : _ref$component,
|
|
251118
251123
|
children = _ref.children,
|
|
251119
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
251124
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$2L);
|
|
251120
251125
|
var _React$useContext = React.useContext(ConfigContext$1),
|
|
251121
251126
|
getPrefixCls = _React$useContext.getPrefixCls;
|
|
251122
251127
|
var prefixCls = getPrefixCls('scroll-number', customizePrefixCls);
|
|
@@ -251159,7 +251164,7 @@
|
|
|
251159
251164
|
return /*#__PURE__*/React.createElement(component, newProps, numberNodes);
|
|
251160
251165
|
};
|
|
251161
251166
|
|
|
251162
|
-
var _excluded$
|
|
251167
|
+
var _excluded$2M = ["prefixCls", "scrollNumberPrefixCls", "children", "status", "text", "color", "count", "overflowCount", "dot", "size", "title", "offset", "style", "className", "showZero"];
|
|
251163
251168
|
var Badge$1 = function Badge(_ref) {
|
|
251164
251169
|
var _classNames, _classNames2;
|
|
251165
251170
|
var customizePrefixCls = _ref.prefixCls,
|
|
@@ -251182,7 +251187,7 @@
|
|
|
251182
251187
|
className = _ref.className,
|
|
251183
251188
|
_ref$showZero = _ref.showZero,
|
|
251184
251189
|
showZero = _ref$showZero === void 0 ? false : _ref$showZero,
|
|
251185
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
251190
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$2M);
|
|
251186
251191
|
var _React$useContext = React.useContext(ConfigContext$1),
|
|
251187
251192
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
251188
251193
|
direction = _React$useContext.direction;
|
|
@@ -251298,7 +251303,7 @@
|
|
|
251298
251303
|
};
|
|
251299
251304
|
Badge$1.Ribbon = Ribbon$1;
|
|
251300
251305
|
|
|
251301
|
-
var _excluded$
|
|
251306
|
+
var _excluded$2N = ["prefixCls", "type", "orientation", "orientationMargin", "className", "children", "dashed", "plain"];
|
|
251302
251307
|
var Divider$2 = function Divider(props) {
|
|
251303
251308
|
var _classNames;
|
|
251304
251309
|
var _React$useContext = React.useContext(ConfigContext$1),
|
|
@@ -251314,7 +251319,7 @@
|
|
|
251314
251319
|
children = props.children,
|
|
251315
251320
|
dashed = props.dashed,
|
|
251316
251321
|
plain = props.plain,
|
|
251317
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
251322
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2N);
|
|
251318
251323
|
var prefixCls = getPrefixCls('divider', customizePrefixCls);
|
|
251319
251324
|
var orientationPrefix = orientation.length > 0 ? "-".concat(orientation) : orientation;
|
|
251320
251325
|
var hasChildren = !!children;
|
|
@@ -253768,13 +253773,13 @@
|
|
|
253768
253773
|
};
|
|
253769
253774
|
var Body$1 = /*#__PURE__*/React__default['default'].memo(Index$b);
|
|
253770
253775
|
|
|
253771
|
-
var _excluded$
|
|
253776
|
+
var _excluded$2O = ["value", "onChange", "leftIcon", "rightIcon"];
|
|
253772
253777
|
var ResetSlider = function ResetSlider(_ref) {
|
|
253773
253778
|
var value = _ref.value,
|
|
253774
253779
|
_onChange = _ref.onChange,
|
|
253775
253780
|
leftIcon = _ref.leftIcon,
|
|
253776
253781
|
rightIcon = _ref.rightIcon,
|
|
253777
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
253782
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2O);
|
|
253778
253783
|
// 减
|
|
253779
253784
|
var decrement = function decrement() {
|
|
253780
253785
|
if (!(value > props.min)) return;
|