File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed
generatedTypes/components Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,13 @@ interface Props {
104
104
* Custom value of any type to pass on to the component and receive back in the action callbacks
105
105
*/
106
106
customValue ?: any ;
107
+ /**
108
+ * Used as testing identifier
109
+ */
110
+ testID ?: string ;
107
111
}
108
112
export declare type DrawerProps = Props ;
113
+ export declare type DrawerItemProps = ItemProps ;
109
114
/**
110
115
* @description : Drawer Component
111
116
* @important : If your app works with RNN, your screen must be wrapped
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ export interface FloatingButtonProps {
29
29
* Whether to show background overlay
30
30
*/
31
31
hideBackgroundOverlay ?: boolean ;
32
+ /**
33
+ * Used as testing identifier
34
+ */
35
+ testID ?: string ;
32
36
}
33
37
declare const _default : React . ComponentClass < FloatingButtonProps & {
34
38
useCustomTheme ?: boolean | undefined ;
Original file line number Diff line number Diff line change @@ -118,6 +118,10 @@ interface Props {
118
118
* Custom value of any type to pass on to the component and receive back in the action callbacks
119
119
*/
120
120
customValue ?: any ;
121
+ /**
122
+ * Used as testing identifier
123
+ */
124
+ testID ?: string ;
121
125
}
122
126
123
127
export type DrawerProps = Props ;
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ export interface FloatingButtonProps {
37
37
* Whether to show background overlay
38
38
*/
39
39
hideBackgroundOverlay ?: boolean ;
40
+ /**
41
+ * Used as testing identifier
42
+ */
43
+ testID ?: string ;
40
44
}
41
45
42
46
const SHOW_ANIMATION_DELAY = 350 ;
You can’t perform that action at this time.
0 commit comments