UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

45 lines (40 loc) 1.19 kB
import PropTypes from '../../_util/vue-types'; const IProps = { width: PropTypes.any, height: PropTypes.any, defaultOpen: PropTypes.looseBool, firstEnter: PropTypes.looseBool, open: PropTypes.looseBool, prefixCls: PropTypes.string, placement: PropTypes.string, level: PropTypes.oneOfType([PropTypes.string, PropTypes.array]), levelMove: PropTypes.oneOfType([PropTypes.number, PropTypes.func, PropTypes.array]), ease: PropTypes.string, duration: PropTypes.string, handler: PropTypes.any, showMask: PropTypes.looseBool, maskStyle: PropTypes.object, className: PropTypes.string, wrapStyle: PropTypes.object, maskClosable: PropTypes.looseBool, afterVisibleChange: PropTypes.func, keyboard: PropTypes.looseBool, }; const IDrawerProps = { ...IProps, wrapperClassName: PropTypes.string, forceRender: PropTypes.looseBool, getContainer: PropTypes.oneOfType([ PropTypes.string, PropTypes.func, PropTypes.object, PropTypes.looseBool, ]), }; const IDrawerChildProps = { ...IProps, getContainer: PropTypes.func, getOpenCount: PropTypes.func, switchScrollingEffect: PropTypes.func, }; export { IDrawerProps, IDrawerChildProps };