forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
342 lines (275 loc) · 6.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/// <reference types="react" />
import * as React from 'react';
import CommonProps from '../util';
interface HTMLAttributesWeak extends React.InputHTMLAttributes<HTMLElement> {
defaultValue?: any;
onChange?: any;
onKeyDown?: any;
size?: any;
}
export interface TextAreaProps extends HTMLAttributesWeak, CommonProps {
/**
* 当前值
*/
value?: string | number;
/**
* 初始化值
*/
defaultValue?: string | number;
/**
* 发生改变的时候触发的回调
*/
onChange?: (value: string, e: React.ChangeEvent<HTMLTextAreaElement>) => void;
/**
* 键盘按下的时候触发的回调
*/
onKeyDown?: (e: React.KeyboardEvent<HTMLTextAreaElement>, opts: {}) => void;
/**
* 禁用状态
*/
disabled?: boolean;
/**
* 最大长度
*/
maxLength?: number;
/**
* 是否展现最大长度样式
*/
hasLimitHint?: boolean;
showLimitHint?: boolean;
/**
* 当设置了maxLength时,是否截断超出字符串
*/
cutString?: boolean;
/**
* 只读
*/
readOnly?: boolean;
/**
* onChange返回会自动去除头尾空字符
*/
trim?: boolean;
/**
* 输入提示
*/
placeholder?: string;
/**
* 获取焦点时候触发的回调
*/
onFocus?: (e: React.FocusEvent<HTMLTextAreaElement>) => void;
/**
* 失去焦点时候触发的回调
*/
onBlur?: (e: React.FocusEvent<HTMLTextAreaElement>) => void;
/**
* 自定义字符串计算长度方式
*/
getValueLength?: (value: string) => number;
/**
* 自定义class
*/
className?: string;
/**
* 自定义内联样式
*/
style?: React.CSSProperties;
/**
* 原生type
*/
htmlType?: string;
/**
* name
*/
name?: string;
/**
* 状态
*/
state?: 'error' | 'warning';
/**
* 是否有边框
*/
hasBorder?: boolean;
/**
* 自动高度 true / {minRows: 2, maxRows: 4}
*/
autoHeight?: boolean | {};
/**
* 多行文本框高度 <br />(不要直接用height设置多行文本框的高度, ie9 10会有兼容性问题)
*/
rows?: number;
}
export class TextArea extends React.Component<TextAreaProps, any> {}
export interface GroupProps extends React.HTMLAttributes<HTMLElement>, CommonProps {
/**
* 样式前缀
*/
prefix?: string;
/**
* 输入框前附加内容
*/
addonBefore?: React.ReactNode;
/**
* 输入框前附加内容css
*/
addonBeforeClassName?: string;
/**
* 输入框后附加内容
*/
addonAfter?: React.ReactNode;
/**
* 输入框后额外css
*/
addonAfterClassName?: string;
/**
* rtl
*/
rtl?: boolean;
}
export class Group extends React.Component<GroupProps, any> {}
export interface InputProps extends HTMLAttributesWeak, CommonProps {
/**
* 当前值
*/
value?: string | number;
/**
* 初始化值
*/
defaultValue?: string | number;
/**
* 发生改变的时候触发的回调
*/
onChange?: (value: string, e: React.ChangeEvent<HTMLInputElement>) => void;
/**
* 键盘按下的时候触发的回调
*/
onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>, opts: {}) => void;
/**
* 禁用状态
*/
disabled?: boolean;
/**
* 最大长度
*/
maxLength?: number;
/**
* 是否展现最大长度样式
*/
hasLimitHint?: boolean;
showLimitHint?: boolean;
/**
* 当设置了maxLength时,是否截断超出字符串
*/
cutString?: boolean;
/**
* 只读
*/
readOnly?: boolean;
/**
* onChange返回会自动去除头尾空字符
*/
trim?: boolean;
/**
* 输入提示
*/
placeholder?: string;
/**
* 获取焦点时候触发的回调
*/
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
/**
* 失去焦点时候触发的回调
*/
onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
/**
* 自定义字符串计算长度方式
*/
getValueLength?: (value: string) => number;
/**
* 自定义class
*/
className?: string;
/**
* 自定义内联样式
*/
style?: React.CSSProperties;
/**
* 原生type
*/
htmlType?: string;
/**
* name
*/
name?: string;
/**
* 状态
*/
state?: 'error' | 'loading' | 'success' | 'warning';
/**
* label
*/
label?: React.ReactNode;
/**
* 是否出现clear按钮
*/
hasClear?: boolean;
/**
* 是否有边框
*/
hasBorder?: boolean;
/**
* 尺寸
*/
size?: 'small' | 'medium' | 'large';
/**
* 按下回车的回调
*/
onPressEnter?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
/**
* 水印 (Icon的type类型,和hasClear占用一个地方)
*/
hint?: string | React.ReactNode;
/**
* 文字前附加内容
*/
innerBefore?: React.ReactNode;
/**
* 文字后附加内容
*/
innerAfter?: React.ReactNode;
/**
* 输入框前附加内容
*/
addonBefore?: React.ReactNode;
/**
* 输入框后附加内容
*/
addonAfter?: React.ReactNode;
/**
* 输入框前附加文字
*/
addonTextBefore?: React.ReactNode;
/**
* 输入框后附加文字
*/
addonTextAfter?: React.ReactNode;
/**
* (原生input支持)
*/
autoComplete?: string;
/**
* 自动聚焦(原生input支持)
*/
autoFocus?: boolean;
}
export interface PasswordProps extends InputProps {
/**
* 是否展示切换按钮
*/
showToggle?: boolean;
}
export class Password extends React.Component<PasswordProps, any> {}
export default class Input extends React.Component<InputProps, any> {
static TextArea: typeof TextArea;
static Group: typeof Group;
static Password: typeof Password;
}