UNPKG

@yuntijs/ui

Version:

☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps

11 lines (10 loc) 407 B
import { DrawerProps } from 'antd'; import React from 'react'; import type { ControlPosition } from 'react-draggable'; export interface DragPanelProps extends DrawerProps { /** 面板默认位置 */ defaultPosition?: ControlPosition; /** 面板位置改变的回调函数 */ onPositionChange?: (position: ControlPosition) => void; } export declare const DragPanel: React.FC<DragPanelProps>;