-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathindex.axml
42 lines (42 loc) · 1.02 KB
/
index.axml
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
<ant-picker
className="ant-date-picker"
popClassName="ant-date-picker-popup {{ popClassName || '' }}"
visible="{{ visible }}"
style="{{ style }}"
popStyle="{{ popStyle }}"
animationType="{{ animationType }}"
options="{{ columns }}"
value="{{ currentValue }}"
disabled="{{ disabled }}"
readonly="{{ readonly }}"
title="{{ title }}"
placeholder="{{ placeholder }}"
okText="{{ okText }}"
cancelText="{{ cancelText }}"
maskStyle="{{ maskStyle }}"
maskClassName="{{ maskClassName }}"
indicatorStyle="{{ indicatorStyle }}"
indicatorClassName="{{ indicatorClassName }}"
onChange="onChange"
onCancel="onCancel"
onOk="onOk"
formattedValueText="{{ formattedValueText }}"
onVisibleChange="onVisibleChange"
maskClosable="{{ maskClosable }}">
<slot
name="content-header"
slot="content-header"
/>
<slot
name="content"
slot="content" />
<slot
name="title"
slot="title" />
<slot
name="prefix"
slot="prefix" />
<slot
name="suffix"
slot="suffix" />
</ant-picker>