add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

31
node_modules/antd/es/modal/components/ConfirmOkBtn.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use client";
import React, { useContext } from 'react';
import ActionButton from '../../_util/ActionButton';
import { ModalContext } from '../context';
const ConfirmOkBtn = () => {
const {
autoFocusButton,
close,
isSilent,
okButtonProps,
rootPrefixCls,
okTextLocale,
okType,
onConfirm,
onOk
} = useContext(ModalContext);
return /*#__PURE__*/React.createElement(ActionButton, {
isSilent: isSilent,
type: okType || 'primary',
actionFn: onOk,
close: (...args) => {
close === null || close === void 0 ? void 0 : close.apply(void 0, args);
onConfirm === null || onConfirm === void 0 ? void 0 : onConfirm(true);
},
autoFocus: autoFocusButton === 'ok',
buttonProps: okButtonProps,
prefixCls: `${rootPrefixCls}-btn`
}, okTextLocale);
};
export default ConfirmOkBtn;