first commit
This commit is contained in:
40
frontend/node_modules/antd/es/modal/index.js
generated
vendored
Normal file
40
frontend/node_modules/antd/es/modal/index.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
"use client";
|
||||
|
||||
import confirm, { modalGlobalConfig, withConfirm, withError, withInfo, withSuccess, withWarn } from './confirm';
|
||||
import destroyFns from './destroyFns';
|
||||
import OriginModal from './Modal';
|
||||
import PurePanel from './PurePanel';
|
||||
import useModal from './useModal';
|
||||
function modalWarn(props) {
|
||||
return confirm(withWarn(props));
|
||||
}
|
||||
const Modal = OriginModal;
|
||||
Modal.useModal = useModal;
|
||||
Modal.info = function infoFn(props) {
|
||||
return confirm(withInfo(props));
|
||||
};
|
||||
Modal.success = function successFn(props) {
|
||||
return confirm(withSuccess(props));
|
||||
};
|
||||
Modal.error = function errorFn(props) {
|
||||
return confirm(withError(props));
|
||||
};
|
||||
Modal.warning = modalWarn;
|
||||
Modal.warn = modalWarn;
|
||||
Modal.confirm = function confirmFn(props) {
|
||||
return confirm(withConfirm(props));
|
||||
};
|
||||
Modal.destroyAll = function destroyAllFn() {
|
||||
while (destroyFns.length) {
|
||||
const close = destroyFns.pop();
|
||||
if (close) {
|
||||
close();
|
||||
}
|
||||
}
|
||||
};
|
||||
Modal.config = modalGlobalConfig;
|
||||
Modal._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
Modal.displayName = 'Modal';
|
||||
}
|
||||
export default Modal;
|
||||
Reference in New Issue
Block a user