Latest updates from IceHrmPro
This commit is contained in:
56
web/node_modules/antd/es/button/LoadingIcon.js
generated
vendored
Normal file
56
web/node_modules/antd/es/button/LoadingIcon.js
generated
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
import * as React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import CSSMotion from "rc-animate/es/CSSMotion";
|
||||
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
||||
|
||||
var getCollapsedWidth = function getCollapsedWidth() {
|
||||
return {
|
||||
width: 0,
|
||||
opacity: 0,
|
||||
transform: 'scale(0)'
|
||||
};
|
||||
};
|
||||
|
||||
var getRealWidth = function getRealWidth(node) {
|
||||
return {
|
||||
width: node.scrollWidth,
|
||||
opacity: 1,
|
||||
transform: 'scale(1)'
|
||||
};
|
||||
};
|
||||
|
||||
export default function LoadingIcon(_ref) {
|
||||
var prefixCls = _ref.prefixCls,
|
||||
loading = _ref.loading,
|
||||
existIcon = _ref.existIcon;
|
||||
var visible = !!loading;
|
||||
|
||||
if (existIcon) {
|
||||
return /*#__PURE__*/React.createElement("span", {
|
||||
className: "".concat(prefixCls, "-loading-icon")
|
||||
}, /*#__PURE__*/React.createElement(LoadingOutlined, null));
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement(CSSMotion, {
|
||||
visible: visible // We do not really use this motionName
|
||||
,
|
||||
motionName: "".concat(prefixCls, "-loading-icon-motion"),
|
||||
removeOnLeave: true,
|
||||
onAppearStart: getCollapsedWidth,
|
||||
onAppearActive: getRealWidth,
|
||||
onEnterStart: getCollapsedWidth,
|
||||
onEnterActive: getRealWidth,
|
||||
onLeaveStart: getRealWidth,
|
||||
onLeaveActive: getCollapsedWidth
|
||||
}, function (_ref2, ref) {
|
||||
var className = _ref2.className,
|
||||
style = _ref2.style;
|
||||
return /*#__PURE__*/React.createElement("span", {
|
||||
className: "".concat(prefixCls, "-loading-icon"),
|
||||
style: style,
|
||||
ref: ref
|
||||
}, /*#__PURE__*/React.createElement(LoadingOutlined, {
|
||||
className: classNames(className)
|
||||
}));
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user