@ant-design/pro-components 2.3.6 → 2.3.7
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.js +92 -54
- package/dist/components.min.js +1 -1
- package/es/version.js +10 -10
- package/package.json +10 -10
package/dist/components.js
CHANGED
|
@@ -24975,6 +24975,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
24975
24975
|
"useMountMergeState": function() { return /* reexport */ useMergedState/* default */.Z; },
|
|
24976
24976
|
"usePrevious": function() { return /* reexport */ usePrevious; },
|
|
24977
24977
|
"useRefFunction": function() { return /* reexport */ useRefFunction; },
|
|
24978
|
+
"useSafeState": function() { return /* reexport */ useSafeState; },
|
|
24978
24979
|
"useStyle": function() { return /* reexport */ useStyle; },
|
|
24979
24980
|
"useToken": function() { return /* reexport */ useStyle_useToken; },
|
|
24980
24981
|
"version": function() { return /* reexport */ version_version; },
|
|
@@ -32560,7 +32561,7 @@ var FilterDropdown = function FilterDropdown(props) {
|
|
|
32560
32561
|
wrapSSR = _useStyle.wrapSSR,
|
|
32561
32562
|
hashId = _useStyle.hashId;
|
|
32562
32563
|
|
|
32563
|
-
var dropdownOpenProps = compareVersions(external_antd_.version, '4.23.0') ? {
|
|
32564
|
+
var dropdownOpenProps = compareVersions(external_antd_.version, '4.23.0') > -1 ? {
|
|
32564
32565
|
visible: open || visible,
|
|
32565
32566
|
onVisibleChange: onOpenChange || onVisibleChange
|
|
32566
32567
|
} : {
|
|
@@ -32745,7 +32746,7 @@ var InlineErrorFormItemPopover = function InlineErrorFormItemPopover(_ref) {
|
|
|
32745
32746
|
setErrorList(inputProps.errors);
|
|
32746
32747
|
}
|
|
32747
32748
|
}, [inputProps.errors, inputProps.validateStatus]);
|
|
32748
|
-
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') ? {
|
|
32749
|
+
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') > -1 ? {
|
|
32749
32750
|
open: errorStringList.length < 1 ? false : open,
|
|
32750
32751
|
onOpenChange: function onOpenChange(changeOpen) {
|
|
32751
32752
|
if (changeOpen === open) return;
|
|
@@ -35560,6 +35561,40 @@ function useEditableMap(props) {
|
|
|
35560
35561
|
cancelEditable: cancelEditable
|
|
35561
35562
|
};
|
|
35562
35563
|
}
|
|
35564
|
+
;// CONCATENATED MODULE: ./packages/utils/es/useSafeState/index.js
|
|
35565
|
+
|
|
35566
|
+
|
|
35567
|
+
/**
|
|
35568
|
+
* Same as React.useState but `setState` accept `ignoreDestroy` param to not to setState after destroyed.
|
|
35569
|
+
* We do not make this auto is to avoid real memory leak.
|
|
35570
|
+
* Developer should confirm it's safe to ignore themselves.
|
|
35571
|
+
*/
|
|
35572
|
+
|
|
35573
|
+
function useSafeState(defaultValue) {
|
|
35574
|
+
var destroyRef = external_React_.useRef(false);
|
|
35575
|
+
|
|
35576
|
+
var _React$useState = external_React_.useState(defaultValue),
|
|
35577
|
+
_React$useState2 = slicedToArray_slicedToArray(_React$useState, 2),
|
|
35578
|
+
value = _React$useState2[0],
|
|
35579
|
+
setValue = _React$useState2[1];
|
|
35580
|
+
|
|
35581
|
+
external_React_.useEffect(function () {
|
|
35582
|
+
destroyRef.current = false;
|
|
35583
|
+
return function () {
|
|
35584
|
+
destroyRef.current = true;
|
|
35585
|
+
};
|
|
35586
|
+
}, []);
|
|
35587
|
+
|
|
35588
|
+
function safeSetState(updater, ignoreDestroy) {
|
|
35589
|
+
if (ignoreDestroy && destroyRef.current) {
|
|
35590
|
+
return;
|
|
35591
|
+
}
|
|
35592
|
+
|
|
35593
|
+
setValue(updater);
|
|
35594
|
+
}
|
|
35595
|
+
|
|
35596
|
+
return [value, safeSetState];
|
|
35597
|
+
}
|
|
35563
35598
|
;// CONCATENATED MODULE: ./packages/utils/es/index.js
|
|
35564
35599
|
|
|
35565
35600
|
|
|
@@ -35603,6 +35638,7 @@ function useEditableMap(props) {
|
|
|
35603
35638
|
|
|
35604
35639
|
|
|
35605
35640
|
|
|
35641
|
+
|
|
35606
35642
|
|
|
35607
35643
|
|
|
35608
35644
|
;// CONCATENATED MODULE: ./node_modules/omit.js/es/index.js
|
|
@@ -35957,9 +35993,9 @@ var CheckCard_style_genProStyle = function genProStyle(token) {
|
|
|
35957
35993
|
width: 0,
|
|
35958
35994
|
height: 0,
|
|
35959
35995
|
border: "6px solid ".concat(token.colorPrimary),
|
|
35960
|
-
|
|
35961
|
-
|
|
35962
|
-
|
|
35996
|
+
borderBlockEnd: '6px solid transparent',
|
|
35997
|
+
borderInlineStart: '6px solid transparent',
|
|
35998
|
+
borderStartEndRadius: '2px',
|
|
35963
35999
|
content: "''"
|
|
35964
36000
|
}
|
|
35965
36001
|
})), defineProperty_defineProperty(_token$componentCls, '&-disabled', proCheckCardDisabled(token)), defineProperty_defineProperty(_token$componentCls, '&[disabled]', proCheckCardDisabled(token)), defineProperty_defineProperty(_token$componentCls, '&-lg', {
|
|
@@ -52312,7 +52348,7 @@ function DrawerForm(_ref) {
|
|
|
52312
52348
|
return _ref3.apply(this, arguments);
|
|
52313
52349
|
};
|
|
52314
52350
|
}());
|
|
52315
|
-
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') ? {
|
|
52351
|
+
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') > -1 ? {
|
|
52316
52352
|
open: open,
|
|
52317
52353
|
onOpenChange: onVisibleChange
|
|
52318
52354
|
} : {
|
|
@@ -52951,7 +52987,7 @@ function ModalForm(_ref) {
|
|
|
52951
52987
|
return _ref5.apply(this, arguments);
|
|
52952
52988
|
};
|
|
52953
52989
|
}(), [onFinish, setOpen, submitTimeout]);
|
|
52954
|
-
var modalOpenProps = compareVersions(external_antd_.version, '4.23.0') ? {
|
|
52990
|
+
var modalOpenProps = compareVersions(external_antd_.version, '4.23.0') > -1 ? {
|
|
52955
52991
|
open: open
|
|
52956
52992
|
} : {
|
|
52957
52993
|
visible: open
|
|
@@ -58390,7 +58426,7 @@ var ListSkeleton = function ListSkeleton(_ref4) {
|
|
|
58390
58426
|
}), actionButton !== false && (0,jsx_runtime.jsx)(external_antd_.Card, {
|
|
58391
58427
|
bordered: false,
|
|
58392
58428
|
style: {
|
|
58393
|
-
|
|
58429
|
+
borderStartEndRadius: 0,
|
|
58394
58430
|
borderTopLeftRadius: 0
|
|
58395
58431
|
},
|
|
58396
58432
|
bodyStyle: {
|
|
@@ -58773,7 +58809,7 @@ var DescriptionsSkeleton = function DescriptionsSkeleton(_ref5) {
|
|
|
58773
58809
|
return (0,jsx_runtime.jsxs)(external_antd_.Card, {
|
|
58774
58810
|
bordered: false,
|
|
58775
58811
|
style: {
|
|
58776
|
-
|
|
58812
|
+
borderStartEndRadius: 0,
|
|
58777
58813
|
borderTopLeftRadius: 0
|
|
58778
58814
|
},
|
|
58779
58815
|
children: [(0,jsx_runtime.jsx)(external_antd_.Skeleton.Button, {
|
|
@@ -59740,8 +59776,6 @@ var ArrowLeftOutlined_default = /*#__PURE__*/__webpack_require__.n(ArrowLeftOutl
|
|
|
59740
59776
|
// EXTERNAL MODULE: ./node_modules/@ant-design/icons/ArrowRightOutlined.js
|
|
59741
59777
|
var ArrowRightOutlined = __webpack_require__(2406);
|
|
59742
59778
|
var ArrowRightOutlined_default = /*#__PURE__*/__webpack_require__.n(ArrowRightOutlined);
|
|
59743
|
-
// EXTERNAL MODULE: ./node_modules/rc-util/lib/hooks/useState.js
|
|
59744
|
-
var hooks_useState = __webpack_require__(8594);
|
|
59745
59779
|
;// CONCATENATED MODULE: ./packages/layout/es/components/PageHeader/style/index.js
|
|
59746
59780
|
|
|
59747
59781
|
|
|
@@ -59994,10 +60028,10 @@ var renderChildren = function renderChildren(prefixCls, children, hashId) {
|
|
|
59994
60028
|
var PageHeader = function PageHeader(props) {
|
|
59995
60029
|
var _breadcrumbRender, _classNames;
|
|
59996
60030
|
|
|
59997
|
-
var
|
|
59998
|
-
|
|
59999
|
-
compact =
|
|
60000
|
-
updateCompact =
|
|
60031
|
+
var _useSafeState = useSafeState(false),
|
|
60032
|
+
_useSafeState2 = slicedToArray_slicedToArray(_useSafeState, 2),
|
|
60033
|
+
compact = _useSafeState2[0],
|
|
60034
|
+
updateCompact = _useSafeState2[1];
|
|
60001
60035
|
|
|
60002
60036
|
var onResize = function onResize(_ref) {
|
|
60003
60037
|
var width = _ref.width;
|
|
@@ -61391,7 +61425,7 @@ var AppsLogoComponents = function AppsLogoComponents(props) {
|
|
|
61391
61425
|
});
|
|
61392
61426
|
}, [appList, baseClassName, hashId]);
|
|
61393
61427
|
if (!(props === null || props === void 0 ? void 0 : (_props$appList = props.appList) === null || _props$appList === void 0 ? void 0 : _props$appList.length)) return null;
|
|
61394
|
-
var popoverOpenProps = compareVersions(external_antd_.version, '4.23.0') ? {
|
|
61428
|
+
var popoverOpenProps = compareVersions(external_antd_.version, '4.23.0') > -1 ? {
|
|
61395
61429
|
onOpenChange: setOpen
|
|
61396
61430
|
} : {
|
|
61397
61431
|
onVisibleChange: function onVisibleChange() {
|
|
@@ -61769,7 +61803,13 @@ var genProLayoutBaseMenuStyle = function genProLayoutBaseMenuStyle(token) {
|
|
|
61769
61803
|
borderRadius: token.radiusBase
|
|
61770
61804
|
}), defineProperty_defineProperty(_collapsed, "".concat(token.componentCls, "-group"), defineProperty_defineProperty({}, "".concat(token.antCls, "-menu-item-group-title"), {
|
|
61771
61805
|
paddingInline: 0
|
|
61772
|
-
})), _collapsed)), defineProperty_defineProperty(_$concat4,
|
|
61806
|
+
})), _collapsed)), defineProperty_defineProperty(_$concat4, "".concat(token.componentCls, "-item-icon"), {
|
|
61807
|
+
height: '14px',
|
|
61808
|
+
'.anticon': {
|
|
61809
|
+
lineHeight: '14px',
|
|
61810
|
+
height: '14px'
|
|
61811
|
+
}
|
|
61812
|
+
}), defineProperty_defineProperty(_$concat4, '& &-item-title', defineProperty_defineProperty({
|
|
61773
61813
|
display: 'flex',
|
|
61774
61814
|
flexDirection: 'row',
|
|
61775
61815
|
alignItems: 'center',
|
|
@@ -61866,15 +61906,12 @@ var getIcon = function getIcon(icon) {
|
|
|
61866
61906
|
|
|
61867
61907
|
if (typeof icon === 'string' && icon !== '') {
|
|
61868
61908
|
if (isUrl(icon) || isImg(icon)) {
|
|
61869
|
-
return (0,jsx_runtime.jsx)(
|
|
61870
|
-
|
|
61871
|
-
|
|
61872
|
-
|
|
61873
|
-
|
|
61874
|
-
|
|
61875
|
-
});
|
|
61876
|
-
}
|
|
61877
|
-
});
|
|
61909
|
+
return (0,jsx_runtime.jsx)("img", {
|
|
61910
|
+
width: 16,
|
|
61911
|
+
src: icon,
|
|
61912
|
+
alt: "icon",
|
|
61913
|
+
className: className
|
|
61914
|
+
}, icon);
|
|
61878
61915
|
}
|
|
61879
61916
|
|
|
61880
61917
|
if (icon.startsWith(iconPrefixes)) {
|
|
@@ -61937,7 +61974,7 @@ var MenuUtil = /*#__PURE__*/_createClass(function MenuUtil(props) {
|
|
|
61937
61974
|
|
|
61938
61975
|
var shouldHasIcon = level === 0 || isGroup && level === 1; // get defaultTitle by menuItemRender
|
|
61939
61976
|
|
|
61940
|
-
var iconDom = getIcon(item.icon, iconPrefixes, "".concat(baseClassName, "-icon ").concat((_this$props2 = _this.props) === null || _this$props2 === void 0 ? void 0 : _this$props2.hashId));
|
|
61977
|
+
var iconDom = getIcon(item.icon, iconPrefixes, "action ".concat(baseClassName, "-icon ").concat((_this$props2 = _this.props) === null || _this$props2 === void 0 ? void 0 : _this$props2.hashId));
|
|
61941
61978
|
/**
|
|
61942
61979
|
* 如果没有icon在收起的时候用首字母代替
|
|
61943
61980
|
*/
|
|
@@ -62054,7 +62091,7 @@ var MenuUtil = /*#__PURE__*/_createClass(function MenuUtil(props) {
|
|
|
62054
62091
|
className: classnames_default()("".concat(baseClassName, "-item-text"), (_this$props12 = _this.props) === null || _this$props12 === void 0 ? void 0 : _this$props12.hashId, defineProperty_defineProperty({}, "".concat(baseClassName, "-item-text-has-icon"), hasIcon && (icon || defaultIcon))),
|
|
62055
62092
|
children: name
|
|
62056
62093
|
})]
|
|
62057
|
-
});
|
|
62094
|
+
}, itemPath);
|
|
62058
62095
|
|
|
62059
62096
|
var isHttpUrl = isUrl(itemPath); // Is it a http link
|
|
62060
62097
|
|
|
@@ -62076,7 +62113,7 @@ var MenuUtil = /*#__PURE__*/_createClass(function MenuUtil(props) {
|
|
|
62076
62113
|
className: classnames_default()("".concat(baseClassName, "-item-text"), (_this$props15 = _this.props) === null || _this$props15 === void 0 ? void 0 : _this$props15.hashId, defineProperty_defineProperty({}, "".concat(baseClassName, "-item-text-has-icon"), hasIcon && (icon || defaultIcon))),
|
|
62077
62114
|
children: name
|
|
62078
62115
|
})]
|
|
62079
|
-
});
|
|
62116
|
+
}, itemPath);
|
|
62080
62117
|
}
|
|
62081
62118
|
|
|
62082
62119
|
if (menuItemRender) {
|
|
@@ -62941,8 +62978,8 @@ var TopNavHeader = function TopNavHeader(props) {
|
|
|
62941
62978
|
hashed: ((_process$env$NODE_ENV = "production") === null || _process$env$NODE_ENV === void 0 ? void 0 : _process$env$NODE_ENV.toLowerCase()) !== 'test',
|
|
62942
62979
|
override: {
|
|
62943
62980
|
Menu: {
|
|
62944
|
-
colorItemBg: 'transparent',
|
|
62945
|
-
colorSubItemBg: 'transparent',
|
|
62981
|
+
colorItemBg: header.colorBgHeader || 'transparent',
|
|
62982
|
+
colorSubItemBg: header.colorBgHeader || 'transparent',
|
|
62946
62983
|
radiusItem: 4,
|
|
62947
62984
|
colorItemBgSelected: header.colorBgMenuItemSelected || 'rgba(0, 0, 0, 0.04)',
|
|
62948
62985
|
colorItemBgActive: header.colorBgMenuItemHover || 'rgba(0, 0, 0, 0.04)',
|
|
@@ -62975,7 +63012,7 @@ var TopNavHeader = function TopNavHeader(props) {
|
|
|
62975
63012
|
}
|
|
62976
63013
|
|
|
62977
63014
|
return defaultDom;
|
|
62978
|
-
}, [hashId, header.colorBgMenuItemHover, header.colorBgMenuItemSelected, header.colorTextMenu, header.colorTextMenuActive, header.colorTextMenuSelected, headerContentRender, prefixCls, props]);
|
|
63015
|
+
}, [hashId, header.colorBgHeader, header.colorBgMenuItemHover, header.colorBgMenuItemSelected, header.colorTextMenu, header.colorTextMenuActive, header.colorTextMenuSelected, headerContentRender, prefixCls, props]);
|
|
62979
63016
|
return wrapSSR((0,jsx_runtime.jsx)("div", {
|
|
62980
63017
|
className: classnames_default()(prefixCls, hashId, propsClassName, defineProperty_defineProperty({}, "".concat(prefixCls, "-light"), true)),
|
|
62981
63018
|
style: style,
|
|
@@ -63032,7 +63069,7 @@ var genGlobalHeaderStyle = function genGlobalHeaderStyle(token) {
|
|
|
63032
63069
|
marginInlineEnd: 16
|
|
63033
63070
|
}), defineProperty_defineProperty(_token$componentCls, '&-collapsed-button', {
|
|
63034
63071
|
minHeight: '22px',
|
|
63035
|
-
color: token.
|
|
63072
|
+
color: token.colorHeaderTitle,
|
|
63036
63073
|
fontSize: '22px',
|
|
63037
63074
|
marginInlineStart: '16px'
|
|
63038
63075
|
}), defineProperty_defineProperty(_token$componentCls, '&-logo', {
|
|
@@ -63076,7 +63113,8 @@ function GlobalHeader_style_useStyle(prefixCls) {
|
|
|
63076
63113
|
return useStyle('pro-layout-global-header', function (token) {
|
|
63077
63114
|
var GlobalHeaderToken = objectSpread2_objectSpread2(objectSpread2_objectSpread2({}, token), {}, {
|
|
63078
63115
|
componentCls: ".".concat(prefixCls),
|
|
63079
|
-
heightLayoutHeader: header.heightLayoutHeader
|
|
63116
|
+
heightLayoutHeader: header.heightLayoutHeader,
|
|
63117
|
+
colorHeaderTitle: header.colorHeaderTitle
|
|
63080
63118
|
});
|
|
63081
63119
|
|
|
63082
63120
|
return [genGlobalHeaderStyle(GlobalHeaderToken)];
|
|
@@ -64700,7 +64738,7 @@ var SettingDrawer = function SettingDrawer(props) {
|
|
|
64700
64738
|
wrapSSR = _useStyle.wrapSSR,
|
|
64701
64739
|
hashId = _useStyle.hashId;
|
|
64702
64740
|
|
|
64703
|
-
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') ? {
|
|
64741
|
+
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') > -1 ? {
|
|
64704
64742
|
open: open,
|
|
64705
64743
|
onClose: function onClose() {
|
|
64706
64744
|
return setOpen(false);
|
|
@@ -67250,7 +67288,7 @@ var SiderMenuWrapper = function SiderMenuWrapper(props) {
|
|
|
67250
67288
|
return null;
|
|
67251
67289
|
}
|
|
67252
67290
|
|
|
67253
|
-
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') ? {
|
|
67291
|
+
var drawerOpenProps = compareVersions(external_antd_.version, '4.23.0') > -1 ? {
|
|
67254
67292
|
open: !collapsed,
|
|
67255
67293
|
onClose: function onClose() {
|
|
67256
67294
|
return onCollapse === null || onCollapse === void 0 ? void 0 : onCollapse(true);
|
|
@@ -80138,7 +80176,7 @@ function conductCheck(keyList, checked, keyEntities, getCheckDisabled) {
|
|
|
80138
80176
|
* Developer should confirm it's safe to ignore themselves.
|
|
80139
80177
|
*/
|
|
80140
80178
|
|
|
80141
|
-
function
|
|
80179
|
+
function useState_useSafeState(defaultValue) {
|
|
80142
80180
|
var destroyRef = external_React_.useRef(false);
|
|
80143
80181
|
|
|
80144
80182
|
var _React$useState = external_React_.useState(defaultValue),
|
|
@@ -80195,7 +80233,7 @@ function useMergedState_useMergedState(defaultStateValue, option) {
|
|
|
80195
80233
|
postState = _ref.postState; // ======================= Init =======================
|
|
80196
80234
|
|
|
80197
80235
|
|
|
80198
|
-
var _useState =
|
|
80236
|
+
var _useState = useState_useSafeState(function () {
|
|
80199
80237
|
var finalValue = undefined;
|
|
80200
80238
|
var source;
|
|
80201
80239
|
|
|
@@ -82085,7 +82123,7 @@ function isActive(step) {
|
|
|
82085
82123
|
return step === STEP_ACTIVE || step === STEP_ACTIVATED;
|
|
82086
82124
|
}
|
|
82087
82125
|
/* harmony default export */ var useStepQueue = (function (status, callback) {
|
|
82088
|
-
var _useState =
|
|
82126
|
+
var _useState = useState_useSafeState(STEP_NONE),
|
|
82089
82127
|
_useState2 = slicedToArray_slicedToArray(_useState, 2),
|
|
82090
82128
|
step = _useState2[0],
|
|
82091
82129
|
setStep = _useState2[1];
|
|
@@ -82211,17 +82249,17 @@ function useStatus(supportMotion, visible, getElement, _ref) {
|
|
|
82211
82249
|
onLeaveEnd = _ref.onLeaveEnd,
|
|
82212
82250
|
onVisibleChanged = _ref.onVisibleChanged; // Used for outer render usage to avoid `visible: false & status: none` to render nothing
|
|
82213
82251
|
|
|
82214
|
-
var _useState =
|
|
82252
|
+
var _useState = useState_useSafeState(),
|
|
82215
82253
|
_useState2 = slicedToArray_slicedToArray(_useState, 2),
|
|
82216
82254
|
asyncVisible = _useState2[0],
|
|
82217
82255
|
setAsyncVisible = _useState2[1];
|
|
82218
82256
|
|
|
82219
|
-
var _useState3 =
|
|
82257
|
+
var _useState3 = useState_useSafeState(STATUS_NONE),
|
|
82220
82258
|
_useState4 = slicedToArray_slicedToArray(_useState3, 2),
|
|
82221
82259
|
status = _useState4[0],
|
|
82222
82260
|
setStatus = _useState4[1];
|
|
82223
82261
|
|
|
82224
|
-
var _useState5 =
|
|
82262
|
+
var _useState5 = useState_useSafeState(null),
|
|
82225
82263
|
_useState6 = slicedToArray_slicedToArray(_useState5, 2),
|
|
82226
82264
|
style = _useState6[0],
|
|
82227
82265
|
setStyle = _useState6[1];
|
|
@@ -84549,7 +84587,7 @@ RcAlign.displayName = 'Align';
|
|
|
84549
84587
|
|
|
84550
84588
|
var StatusQueue = ['measure', 'alignPre', 'align', null, 'motion'];
|
|
84551
84589
|
/* harmony default export */ var useVisibleStatus = (function (visible, doMeasure) {
|
|
84552
|
-
var _useState =
|
|
84590
|
+
var _useState = useState_useSafeState(null),
|
|
84553
84591
|
_useState2 = slicedToArray_slicedToArray(_useState, 2),
|
|
84554
84592
|
status = _useState2[0],
|
|
84555
84593
|
setInternalStatus = _useState2[1];
|
|
@@ -90152,7 +90190,7 @@ Item.displayName = 'Item';
|
|
|
90152
90190
|
*/
|
|
90153
90191
|
|
|
90154
90192
|
function useBatchFrameState() {
|
|
90155
|
-
var _useState =
|
|
90193
|
+
var _useState = useState_useSafeState({}),
|
|
90156
90194
|
_useState2 = slicedToArray_slicedToArray(_useState, 2),
|
|
90157
90195
|
forceUpdate = _useState2[1];
|
|
90158
90196
|
|
|
@@ -97094,17 +97132,17 @@ function BaseProList(props) {
|
|
|
97094
97132
|
/* harmony default export */ var list_es = ((/* unused pure expression or super */ null && (ProList)));
|
|
97095
97133
|
;// CONCATENATED MODULE: ./packages/components/src/version.ts
|
|
97096
97134
|
var version_version = {
|
|
97097
|
-
"@ant-design/pro-card": "2.0.
|
|
97098
|
-
"@ant-design/pro-components": "2.3.
|
|
97099
|
-
"@ant-design/pro-descriptions": "2.0.
|
|
97100
|
-
"@ant-design/pro-field": "2.0.
|
|
97101
|
-
"@ant-design/pro-form": "2.0.
|
|
97102
|
-
"@ant-design/pro-layout": "7.0.
|
|
97103
|
-
"@ant-design/pro-list": "2.0.
|
|
97104
|
-
"@ant-design/pro-provider": "2.0.
|
|
97135
|
+
"@ant-design/pro-card": "2.0.4",
|
|
97136
|
+
"@ant-design/pro-components": "2.3.6",
|
|
97137
|
+
"@ant-design/pro-descriptions": "2.0.5",
|
|
97138
|
+
"@ant-design/pro-field": "2.0.5",
|
|
97139
|
+
"@ant-design/pro-form": "2.0.5",
|
|
97140
|
+
"@ant-design/pro-layout": "7.0.4",
|
|
97141
|
+
"@ant-design/pro-list": "2.0.5",
|
|
97142
|
+
"@ant-design/pro-provider": "2.0.3",
|
|
97105
97143
|
"@ant-design/pro-skeleton": "2.0.2",
|
|
97106
|
-
"@ant-design/pro-table": "3.0.
|
|
97107
|
-
"@ant-design/pro-utils": "2.0.
|
|
97144
|
+
"@ant-design/pro-table": "3.0.5",
|
|
97145
|
+
"@ant-design/pro-utils": "2.0.3"
|
|
97108
97146
|
};
|
|
97109
97147
|
;// CONCATENATED MODULE: ./packages/components/src/index.tsx
|
|
97110
97148
|
|