forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
73 lines (67 loc) · 2.37 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/// <reference types="react" />
import * as React from 'react';
import { PopupProps } from '../overlay';
import { CloseMode } from '../dialog';
import CommonProps from '../util';
interface HTMLAttributesWeak extends PopupProps {
title?: any;
onClose?: any;
}
export interface DrawerProps extends HTMLAttributesWeak, CommonProps {
/**
* [废弃]同closeMode, 控制对话框关闭的方式,值可以为字符串或者布尔值,其中字符串是由以下值组成:
* **mask** 表示点击遮罩区域可以关闭对话框
* **esc** 表示按下 esc 键可以关闭对话框
* 如 'mask' 或 'esc,mask'
* 如果设置为 true,则以上关闭方式全部生效
* 如果设置为 false,则以上关闭方式全部失效
*/
closeable?: 'close' | 'mask' | 'esc' | boolean | 'close,mask' | 'close,esc' | 'mask,esc';
/**
* [推荐]控制对话框关闭的方式,值可以为字符串或者数组,其中字符串、数组均为以下值的枚举:
* **close** 表示点击关闭按钮可以关闭对话框
* **mask** 表示点击遮罩区域可以关闭对话框
* **esc** 表示按下 esc 键可以关闭对话框
* 如 'close' 或 ['close','esc','mask'], []
*/
closeMode?: CloseMode[] | 'close' | 'mask' | 'esc';
/**
* 隐藏时是否保留子节点,不销毁
*/
cache?: boolean;
/**
* 标题
*/
title?: React.ReactNode;
/**
* body上的样式
*/
bodyStyle?: React.CSSProperties;
headerStyle?: React.CSSProperties;
/**
* 显示隐藏时动画的播放方式
* @property {String} in 进场动画
* @property {String} out 出场动画
*/
animation?: { in: string; out: string; } | boolean;
visible?: boolean;
/**
* 宽度,仅在 placement是 left right 的时候生效
*/
width?: number | string;
/**
* 高度,仅在 placement是 top bottom 的时候生效
*/
height?: number | string;
/**
* 受控模式下(没有 trigger 的时候),只会在关闭时触发,相当于onClose
*/
onVisibleChange?: (visible: boolean, reason: string) => void;
onClose?: (reason: string, e: React.MouseEvent) => void;
/**
* 位于页面的位置
*/
placement?: 'top' | 'right' | 'bottom' | 'left';
}
export default class Drawer extends React.Component<DrawerProps, any> {
}