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

50
node_modules/antd/es/drawer/DrawerPanel.d.ts generated vendored Normal file
View File

@@ -0,0 +1,50 @@
import * as React from 'react';
import type { DrawerProps as RCDrawerProps } from 'rc-drawer';
import type { ClosableType } from '../_util/hooks';
export interface DrawerClassNames extends NonNullable<RCDrawerProps['classNames']> {
header?: string;
body?: string;
footer?: string;
}
export interface DrawerStyles extends NonNullable<RCDrawerProps['styles']> {
header?: React.CSSProperties;
body?: React.CSSProperties;
footer?: React.CSSProperties;
}
export interface DrawerPanelProps {
prefixCls: string;
ariaId?: string;
title?: React.ReactNode;
footer?: React.ReactNode;
extra?: React.ReactNode;
/**
* Recommend to use closeIcon instead
*
* e.g.
*
* `<Drawer closeIcon={false} />`
*/
closable?: boolean | (Extract<ClosableType, object> & {
placement?: 'start' | 'end';
});
closeIcon?: React.ReactNode;
onClose?: RCDrawerProps['onClose'];
children?: React.ReactNode;
classNames?: DrawerClassNames;
styles?: DrawerStyles;
loading?: boolean;
/** @deprecated Please use `styles.header` instead */
headerStyle?: React.CSSProperties;
/** @deprecated Please use `styles.body` instead */
bodyStyle?: React.CSSProperties;
/** @deprecated Please use `styles.footer` instead */
footerStyle?: React.CSSProperties;
/** @deprecated Please use `styles.wrapper` instead */
contentWrapperStyle?: React.CSSProperties;
/** @deprecated Please use `styles.mask` instead */
maskStyle?: React.CSSProperties;
/** @deprecated Please use `styles.content` instead */
drawerStyle?: React.CSSProperties;
}
declare const DrawerPanel: React.FC<DrawerPanelProps>;
export default DrawerPanel;