-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlegacy-properties.d.ts
266 lines (201 loc) · 8.61 KB
/
legacy-properties.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
import {
TextProps,
TextPropsIOS,
TextPropsAndroid,
AccessibilityProps,
AccessibilityPropsIOS,
AccessibilityPropsAndroid,
TextInputProps,
TextInputIOSProps,
TextInputAndroidProps,
ViewProps,
ViewPropsIOS,
ViewPropsAndroid,
ToolbarAndroidProps,
ViewPagerAndroidProps,
SegmentedControlIOSProps,
ScrollViewProps,
ScrollViewPropsIOS,
ScrollViewPropsAndroid,
InputAccessoryViewProps,
NavigatorIOSProps,
ActivityIndicatorProps,
ActivityIndicatorIOSProps,
DatePickerIOSProps,
DrawerLayoutAndroidProps,
PickerItemProps,
PickerIOSItemProps,
PickerProps,
PickerPropsIOS,
PickerPropsAndroid,
PickerIOSProps,
ProgressBarAndroidProps,
ProgressViewIOSProps,
RefreshControlProps,
RefreshControlPropsIOS,
RefreshControlPropsAndroid,
RecyclerViewBackedScrollViewProps,
SliderProps,
SliderPropsIOS,
SliderPropsAndroid,
SwitchIOSProps,
ImageSourcePropType,
ImageProps,
ImagePropsIOS,
ImagePropsAndroid,
ImageBackgroundProps,
FlatListProps,
VirtualizedListProps,
SectionListProps,
ListViewProps,
MaskedViewIOSProps,
ModalProps,
TouchableWithoutFeedbackProps,
TouchableHighlightProps,
TouchableOpacityProps,
TouchableNativeFeedbackProps,
TabBarIOSItemProps,
TabBarIOSProps,
SnapshotViewIOSProps,
ButtonProps,
StatusBarProps,
StatusBarPropsIOS,
StatusBarPropsAndroid,
SwitchProps,
SwitchPropsIOS,
} from 'react-native';
declare module 'react-native' {
/*
* Previously, props interfaces where named *Properties
* They have been renamed to *Props to match React Native documentation
* The following lines ensure compatibility with *Properties and should be removed in the future
*/
/** @deprecated Use TextProps */
export type TextProperties = TextProps;
/** @deprecated Use TextPropsIOS */
export type TextPropertiesIOS = TextPropsIOS;
/** @deprecated Use TextPropsAndroid */
export type TextPropertiesAndroid = TextPropsAndroid;
/** @deprecated Use AccessibilityProps */
export type AccessibilityProperties = AccessibilityProps;
/** @deprecated Use AccessibilityPropsIOS */
export type AccessibilityPropertiesIOS = AccessibilityPropsIOS;
/** @deprecated Use AccessibilityPropsAndroid */
export type AccessibilityPropertiesAndroid = AccessibilityPropsAndroid;
/** @deprecated Use TextInputProps */
export type TextInputProperties = TextInputProps;
/** @deprecated Use TextInputIOSProps */
export type TextInputIOSProperties = TextInputIOSProps;
/** @deprecated Use TextInputAndroidProps */
export type TextInputAndroidProperties = TextInputAndroidProps;
/** @deprecated Use ViewProps */
export type ViewProperties = ViewProps;
/** @deprecated Use ViewPropsIOS */
export type ViewPropertiesIOS = ViewPropsIOS;
/** @deprecated Use ViewPropsAndroid */
export type ViewPropertiesAndroid = ViewPropsAndroid;
/** @deprecated Use ToolbarAndroidProps */
export type ToolbarAndroidProperties = ToolbarAndroidProps;
/** @deprecated Use ViewPagerAndroidProps */
export type ViewPagerAndroidProperties = ViewPagerAndroidProps;
/** @deprecated Use SegmentedControlIOSProps */
export type SegmentedControlIOSProperties = SegmentedControlIOSProps;
/** @deprecated Use ScrollViewProps */
export type ScrollViewProperties = ScrollViewProps;
/** @deprecated Use ScrollViewPropsIOS */
export type ScrollViewPropertiesIOS = ScrollViewPropsIOS;
/** @deprecated Use ScrollViewPropsAndroid */
export type ScrollViewPropertiesAndroid = ScrollViewPropsAndroid;
/** @deprecated Use InputAccessoryViewProps */
export type InputAccessoryViewProperties = InputAccessoryViewProps;
/** @deprecated Use NavigatorIOSProps */
export type NavigatorIOSProperties = NavigatorIOSProps;
/** @deprecated Use ActivityIndicatorProps */
export type ActivityIndicatorProperties = ActivityIndicatorProps;
/** @deprecated Use ActivityIndicatorIOSProps */
export type ActivityIndicatorIOSProperties = ActivityIndicatorIOSProps;
/** @deprecated Use DatePickerIOSProps */
export type DatePickerIOSProperties = DatePickerIOSProps;
/** @deprecated Use DrawerLayoutAndroidProps */
export type DrawerLayoutAndroidProperties = DrawerLayoutAndroidProps;
/** @deprecated Use PickerItemProps */
export type PickerItemProperties = PickerItemProps;
/** @deprecated Use PickerIOSItemProps */
export type PickerIOSItemProperties = PickerIOSItemProps;
/** @deprecated Use PickerProps */
export type PickerProperties = PickerProps;
/** @deprecated Use PickerPropsIOS */
export type PickerPropertiesIOS = PickerPropsIOS;
/** @deprecated Use PickerPropsAndroid */
export type PickerPropertiesAndroid = PickerPropsAndroid;
/** @deprecated Use PickerIOSProps */
export type PickerIOSProperties = PickerIOSProps;
/** @deprecated Use ProgressBarAndroidProps */
export type ProgressBarAndroidProperties = ProgressBarAndroidProps;
/** @deprecated Use ProgressViewIOSProps */
export type ProgressViewIOSProperties = ProgressViewIOSProps;
/** @deprecated Use RefreshControlProps */
export type RefreshControlProperties = RefreshControlProps;
/** @deprecated Use RefreshControlPropsIOS */
export type RefreshControlPropertiesIOS = RefreshControlPropsIOS;
/** @deprecated Use RefreshControlPropsAndroid */
export type RefreshControlPropertiesAndroid = RefreshControlPropsAndroid;
/** @deprecated Use RecyclerViewBackedScrollViewProps */
export type RecyclerViewBackedScrollViewProperties = RecyclerViewBackedScrollViewProps;
/** @deprecated Use SliderProps */
export type SliderProperties = SliderProps;
/** @deprecated Use SliderPropsIOS */
export type SliderPropertiesIOS = SliderPropsIOS;
/** @deprecated Use SliderPropsAndroid */
export type SliderPropertiesAndroid = SliderPropsAndroid;
/** @deprecated Use SwitchIOSProps */
export type SwitchIOSProperties = SwitchIOSProps;
/** @deprecated Use ImageSourcePropType */
export type ImagePropertiesSourceOptions = ImageSourcePropType;
/** @deprecated Use ImageProps */
export type ImageProperties = ImageProps;
/** @deprecated Use ImagePropsIOS */
export type ImagePropertiesIOS = ImagePropsIOS;
/** @deprecated Use ImagePropsAndroid */
export type ImagePropertiesAndroid = ImagePropsAndroid;
/** @deprecated Use ImageBackgroundProps */
export type ImageBackgroundProperties = ImageBackgroundProps;
/** @deprecated Use FlatListProps */
export type FlatListProperties<ItemT> = FlatListProps<ItemT>;
/** @deprecated Use VirtualizedListProps */
export type VirtualizedListProperties<ItemT> = VirtualizedListProps<ItemT>;
/** @deprecated Use SectionListProps */
export type SectionListProperties<ItemT> = SectionListProps<ItemT>;
/** @deprecated Use ListViewProps */
export type ListViewProperties = ListViewProps;
/** @deprecated Use MaskedViewIOSProps */
export type MaskedViewIOSProperties = MaskedViewIOSProps;
/** @deprecated Use ModalProps */
export type ModalProperties = ModalProps;
/** @deprecated Use TouchableWithoutFeedbackProps */
export type TouchableWithoutFeedbackProperties = TouchableWithoutFeedbackProps;
/** @deprecated Use TouchableHighlightProps */
export type TouchableHighlightProperties = TouchableHighlightProps;
/** @deprecated Use TouchableOpacityProps */
export type TouchableOpacityProperties = TouchableOpacityProps;
/** @deprecated Use TouchableNativeFeedbackProps */
export type TouchableNativeFeedbackProperties = TouchableNativeFeedbackProps;
/** @deprecated Use TabBarIOSItemProps */
export type TabBarIOSItemProperties = TabBarIOSItemProps;
/** @deprecated Use TabBarIOSProps */
export type TabBarIOSProperties = TabBarIOSProps;
/** @deprecated Use SnapshotViewIOSProps */
export type SnapshotViewIOSProperties = SnapshotViewIOSProps;
/** @deprecated Use ButtonProps */
export type ButtonProperties = ButtonProps;
/** @deprecated Use StatusBarProps */
export type StatusBarProperties = StatusBarProps;
/** @deprecated Use StatusBarPropsIOS */
export type StatusBarPropertiesIOS = StatusBarPropsIOS;
/** @deprecated Use StatusBarPropsAndroid */
export type StatusBarPropertiesAndroid = StatusBarPropsAndroid;
/** @deprecated Use SwitchProps */
export type SwitchProperties = SwitchProps;
/** @deprecated Use SwitchPropsIOS */
export type SwitchPropertiesIOS = SwitchPropsIOS;
}