forked from oblador/react-native-collapsible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccordion.d.ts
104 lines (88 loc) · 2.33 KB
/
Accordion.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
import * as React from 'react';
import { EasingMode } from './index';
export interface AccordionProps {
/**
* An array of sections passed to the render methods
*/
sections: any[];
/**
* A function that should return a renderable representing the header
*/
renderHeader(
content: any,
index: number,
isActive: boolean,
sections: any[]
): React.ReactElement<{}>;
/**
* A function that should return a renderable representing the section title above the touchable
*/
renderSectionTitle?(
content: any,
index: number,
isActive: boolean,
sections: any[]
): React.ReactElement<{}>;
/**
* A function that should return a renderable representing the content
*/
renderContent(
content: any,
index: number,
isActive: boolean,
sections: any[]
): React.ReactElement<{}>;
/**
* An optional function that is called when currently active section is changed, index === false when collapsed
*/
onChange?(index: number): void;
/**
* Expand content from the bottom instead of the top
*
* @default false
*/
expandFromBottom?: boolean;
/**
* Set which index in the sections array is initially open. Defaults to none.
*/
initiallyActiveSection?: number;
/**
* Control which index in the sections array is currently open. Defaults to none. If false, closes all sections.
*/
activeSection?: boolean | number;
/**
* The color of the underlay that will show through when tapping on headers.
*
* @default black
*/
underlayColor?: string;
/**
* Alignment of the content when transitioning, can be top, center or bottom
*
* @default top
*/
align?: 'top' | 'center' | 'bottom';
/**
* Duration of transition in milliseconds
*
* @default 300
*/
duration?: number;
/**
* Function or function name from Easing (or tween-functions if < RN 0.8). Collapsible will try to combine Easing functions for you if you name them like tween-functions.
*
* @default easeOutCubic
*/
easing?: EasingMode | any;
/**
* Component to use for the Touchable
*
* @default TouchableHighlight
*/
touchableComponent?: React.ComponentClass;
/**
* Object of props to pass to the touchable component
*/
touchableProps?: {};
}
export default class Accordion extends React.Component<AccordionProps, any> {}