@yahoo/uds-mobile 2.2.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +92 -0
- package/dist/_virtual/_rolldown/runtime.cjs +14 -0
- package/dist/_virtual/_rolldown/runtime.js +19 -0
- package/dist/jest/index.cjs +27 -0
- package/dist/jest/index.d.cts +19 -0
- package/dist/jest/index.d.cts.map +1 -0
- package/dist/jest/index.d.ts +19 -0
- package/dist/jest/index.d.ts.map +1 -0
- package/dist/jest/index.js +25 -0
- package/dist/jest/index.js.map +1 -0
- package/dist/jest/mocks/icons.cjs +56 -0
- package/dist/jest/mocks/icons.d.cts +24 -0
- package/dist/jest/mocks/icons.d.cts.map +1 -0
- package/dist/jest/mocks/icons.d.ts +24 -0
- package/dist/jest/mocks/icons.d.ts.map +1 -0
- package/dist/jest/mocks/icons.js +46 -0
- package/dist/jest/mocks/icons.js.map +1 -0
- package/dist/jest/mocks/react-native.cjs +212 -0
- package/dist/jest/mocks/react-native.d.cts +293 -0
- package/dist/jest/mocks/react-native.d.cts.map +1 -0
- package/dist/jest/mocks/react-native.d.ts +293 -0
- package/dist/jest/mocks/react-native.d.ts.map +1 -0
- package/dist/jest/mocks/react-native.js +180 -0
- package/dist/jest/mocks/react-native.js.map +1 -0
- package/dist/jest/mocks/reanimated.cjs +249 -0
- package/dist/jest/mocks/reanimated.d.cts +150 -0
- package/dist/jest/mocks/reanimated.d.cts.map +1 -0
- package/dist/jest/mocks/reanimated.d.ts +150 -0
- package/dist/jest/mocks/reanimated.d.ts.map +1 -0
- package/dist/jest/mocks/reanimated.js +210 -0
- package/dist/jest/mocks/reanimated.js.map +1 -0
- package/dist/jest/mocks/styles.cjs +327 -0
- package/dist/jest/mocks/styles.d.cts +33 -0
- package/dist/jest/mocks/styles.d.cts.map +1 -0
- package/dist/jest/mocks/styles.d.ts +33 -0
- package/dist/jest/mocks/styles.d.ts.map +1 -0
- package/dist/jest/mocks/styles.js +310 -0
- package/dist/jest/mocks/styles.js.map +1 -0
- package/dist/jest/mocks/svg.cjs +133 -0
- package/dist/jest/mocks/svg.d.cts +137 -0
- package/dist/jest/mocks/svg.d.cts.map +1 -0
- package/dist/jest/mocks/svg.d.ts +137 -0
- package/dist/jest/mocks/svg.d.ts.map +1 -0
- package/dist/jest/mocks/svg.js +100 -0
- package/dist/jest/mocks/svg.js.map +1 -0
- package/dist/jest/mocks/unistyles.cjs +143 -0
- package/dist/jest/mocks/unistyles.d.cts +197 -0
- package/dist/jest/mocks/unistyles.d.cts.map +1 -0
- package/dist/jest/mocks/unistyles.d.ts +197 -0
- package/dist/jest/mocks/unistyles.d.ts.map +1 -0
- package/dist/jest/mocks/unistyles.js +132 -0
- package/dist/jest/mocks/unistyles.js.map +1 -0
- package/dist/jest/setup.cjs +40 -0
- package/dist/jest/setup.d.cts +11 -0
- package/dist/jest/setup.d.cts.map +1 -0
- package/dist/jest/setup.d.ts +11 -0
- package/dist/jest/setup.d.ts.map +1 -0
- package/dist/jest/setup.js +39 -0
- package/dist/jest/setup.js.map +1 -0
- package/package.json +11 -1
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
|
|
2
|
+
import React, { ReactNode } from "react";
|
|
3
|
+
|
|
4
|
+
//#region src/jest/mocks/react-native.d.ts
|
|
5
|
+
interface MockComponentProps {
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
style?: object;
|
|
8
|
+
testID?: string;
|
|
9
|
+
accessibilityRole?: string;
|
|
10
|
+
accessibilityLabel?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
}
|
|
13
|
+
declare const View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
14
|
+
declare const Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
15
|
+
declare const Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
16
|
+
declare const ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
17
|
+
declare const TextInput: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
18
|
+
declare const TouchableOpacity: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
19
|
+
declare const TouchableHighlight: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
20
|
+
declare const TouchableWithoutFeedback: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
21
|
+
declare const Pressable: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
22
|
+
declare const FlatList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
23
|
+
declare const SectionList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
24
|
+
declare const ActivityIndicator: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
25
|
+
declare const SafeAreaView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
26
|
+
declare const Modal: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
27
|
+
declare const Switch: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
28
|
+
declare const RefreshControl: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
29
|
+
declare const KeyboardAvoidingView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
30
|
+
declare const StyleSheet: {
|
|
31
|
+
create: <T extends Record<string, object>>(styles: T) => T;
|
|
32
|
+
flatten: (style: object | object[]) => object;
|
|
33
|
+
compose: (style1: object, style2: object) => object[];
|
|
34
|
+
hairlineWidth: number;
|
|
35
|
+
absoluteFill: {
|
|
36
|
+
position: string;
|
|
37
|
+
left: number;
|
|
38
|
+
right: number;
|
|
39
|
+
top: number;
|
|
40
|
+
bottom: number;
|
|
41
|
+
};
|
|
42
|
+
absoluteFillObject: {
|
|
43
|
+
position: string;
|
|
44
|
+
left: number;
|
|
45
|
+
right: number;
|
|
46
|
+
top: number;
|
|
47
|
+
bottom: number;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
declare const Platform: {
|
|
51
|
+
OS: "ios";
|
|
52
|
+
Version: number;
|
|
53
|
+
select: <T extends Record<string, unknown>>(config: T) => T[keyof T] | undefined;
|
|
54
|
+
isTV: boolean;
|
|
55
|
+
isPad: boolean;
|
|
56
|
+
isVision: boolean;
|
|
57
|
+
isTesting: boolean;
|
|
58
|
+
constants: {
|
|
59
|
+
reactNativeVersion: {
|
|
60
|
+
major: number;
|
|
61
|
+
minor: number;
|
|
62
|
+
patch: number;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
declare const Dimensions: {
|
|
67
|
+
get: (_dim: "window" | "screen") => {
|
|
68
|
+
width: number;
|
|
69
|
+
height: number;
|
|
70
|
+
scale: number;
|
|
71
|
+
fontScale: number;
|
|
72
|
+
};
|
|
73
|
+
set: jest.Mock<any, any, any>;
|
|
74
|
+
addEventListener: jest.Mock<{
|
|
75
|
+
remove: jest.Mock<any, any, any>;
|
|
76
|
+
}, [], any>;
|
|
77
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
78
|
+
};
|
|
79
|
+
declare const PixelRatio: {
|
|
80
|
+
get: () => number;
|
|
81
|
+
getFontScale: () => number;
|
|
82
|
+
getPixelSizeForLayoutSize: (size: number) => number;
|
|
83
|
+
roundToNearestPixel: (size: number) => number;
|
|
84
|
+
};
|
|
85
|
+
declare const Animated: {
|
|
86
|
+
View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
87
|
+
Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
88
|
+
Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
89
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
90
|
+
Value: {
|
|
91
|
+
new (value: number): {
|
|
92
|
+
_value: number;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
timing: jest.Mock<{
|
|
96
|
+
start: jest.Mock<any, any, any>;
|
|
97
|
+
}, [], any>;
|
|
98
|
+
spring: jest.Mock<{
|
|
99
|
+
start: jest.Mock<any, any, any>;
|
|
100
|
+
}, [], any>;
|
|
101
|
+
createAnimatedComponent: (Component: React.ComponentType) => React.ComponentType<{}>;
|
|
102
|
+
};
|
|
103
|
+
declare const Keyboard: {
|
|
104
|
+
dismiss: jest.Mock<any, any, any>;
|
|
105
|
+
addListener: jest.Mock<{
|
|
106
|
+
remove: jest.Mock<any, any, any>;
|
|
107
|
+
}, [], any>;
|
|
108
|
+
removeListener: jest.Mock<any, any, any>;
|
|
109
|
+
isVisible: jest.Mock<boolean, [], any>;
|
|
110
|
+
};
|
|
111
|
+
declare const Linking: {
|
|
112
|
+
openURL: jest.Mock<any, any, any>;
|
|
113
|
+
canOpenURL: jest.Mock<any, any, any>;
|
|
114
|
+
getInitialURL: jest.Mock<any, any, any>;
|
|
115
|
+
addEventListener: jest.Mock<{
|
|
116
|
+
remove: jest.Mock<any, any, any>;
|
|
117
|
+
}, [], any>;
|
|
118
|
+
};
|
|
119
|
+
declare const AppState: {
|
|
120
|
+
currentState: string;
|
|
121
|
+
addEventListener: jest.Mock<{
|
|
122
|
+
remove: jest.Mock<any, any, any>;
|
|
123
|
+
}, [], any>;
|
|
124
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
125
|
+
};
|
|
126
|
+
declare const AccessibilityInfo: {
|
|
127
|
+
isReduceMotionEnabled: jest.Mock<any, any, any>;
|
|
128
|
+
isScreenReaderEnabled: jest.Mock<any, any, any>;
|
|
129
|
+
addEventListener: jest.Mock<{
|
|
130
|
+
remove: jest.Mock<any, any, any>;
|
|
131
|
+
}, [], any>;
|
|
132
|
+
};
|
|
133
|
+
declare class NativeEventEmitter {
|
|
134
|
+
addListener: jest.Mock<{
|
|
135
|
+
remove: jest.Mock<any, any, any>;
|
|
136
|
+
}, [], any>;
|
|
137
|
+
removeListener: jest.Mock<any, any, any>;
|
|
138
|
+
removeAllListeners: jest.Mock<any, any, any>;
|
|
139
|
+
}
|
|
140
|
+
declare const Appearance: {
|
|
141
|
+
getColorScheme: () => "light";
|
|
142
|
+
addChangeListener: jest.Mock<{
|
|
143
|
+
remove: jest.Mock<any, any, any>;
|
|
144
|
+
}, [], any>;
|
|
145
|
+
removeChangeListener: jest.Mock<any, any, any>;
|
|
146
|
+
};
|
|
147
|
+
declare const useColorScheme: () => "light";
|
|
148
|
+
declare const useWindowDimensions: () => {
|
|
149
|
+
width: number;
|
|
150
|
+
height: number;
|
|
151
|
+
scale: number;
|
|
152
|
+
fontScale: number;
|
|
153
|
+
};
|
|
154
|
+
declare const ReactNative: {
|
|
155
|
+
View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
156
|
+
Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
157
|
+
Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
158
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
159
|
+
TextInput: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
160
|
+
TouchableOpacity: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
161
|
+
TouchableHighlight: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
162
|
+
TouchableWithoutFeedback: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
163
|
+
Pressable: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
164
|
+
FlatList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
165
|
+
SectionList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
166
|
+
ActivityIndicator: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
167
|
+
SafeAreaView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
168
|
+
Modal: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
169
|
+
Switch: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
170
|
+
RefreshControl: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
171
|
+
KeyboardAvoidingView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
172
|
+
StyleSheet: {
|
|
173
|
+
create: <T extends Record<string, object>>(styles: T) => T;
|
|
174
|
+
flatten: (style: object | object[]) => object;
|
|
175
|
+
compose: (style1: object, style2: object) => object[];
|
|
176
|
+
hairlineWidth: number;
|
|
177
|
+
absoluteFill: {
|
|
178
|
+
position: string;
|
|
179
|
+
left: number;
|
|
180
|
+
right: number;
|
|
181
|
+
top: number;
|
|
182
|
+
bottom: number;
|
|
183
|
+
};
|
|
184
|
+
absoluteFillObject: {
|
|
185
|
+
position: string;
|
|
186
|
+
left: number;
|
|
187
|
+
right: number;
|
|
188
|
+
top: number;
|
|
189
|
+
bottom: number;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
Platform: {
|
|
193
|
+
OS: "ios";
|
|
194
|
+
Version: number;
|
|
195
|
+
select: <T extends Record<string, unknown>>(config: T) => T[keyof T] | undefined;
|
|
196
|
+
isTV: boolean;
|
|
197
|
+
isPad: boolean;
|
|
198
|
+
isVision: boolean;
|
|
199
|
+
isTesting: boolean;
|
|
200
|
+
constants: {
|
|
201
|
+
reactNativeVersion: {
|
|
202
|
+
major: number;
|
|
203
|
+
minor: number;
|
|
204
|
+
patch: number;
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
Dimensions: {
|
|
209
|
+
get: (_dim: "window" | "screen") => {
|
|
210
|
+
width: number;
|
|
211
|
+
height: number;
|
|
212
|
+
scale: number;
|
|
213
|
+
fontScale: number;
|
|
214
|
+
};
|
|
215
|
+
set: jest.Mock<any, any, any>;
|
|
216
|
+
addEventListener: jest.Mock<{
|
|
217
|
+
remove: jest.Mock<any, any, any>;
|
|
218
|
+
}, [], any>;
|
|
219
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
220
|
+
};
|
|
221
|
+
PixelRatio: {
|
|
222
|
+
get: () => number;
|
|
223
|
+
getFontScale: () => number;
|
|
224
|
+
getPixelSizeForLayoutSize: (size: number) => number;
|
|
225
|
+
roundToNearestPixel: (size: number) => number;
|
|
226
|
+
};
|
|
227
|
+
Animated: {
|
|
228
|
+
View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
229
|
+
Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
230
|
+
Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
231
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
232
|
+
Value: {
|
|
233
|
+
new (value: number): {
|
|
234
|
+
_value: number;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
timing: jest.Mock<{
|
|
238
|
+
start: jest.Mock<any, any, any>;
|
|
239
|
+
}, [], any>;
|
|
240
|
+
spring: jest.Mock<{
|
|
241
|
+
start: jest.Mock<any, any, any>;
|
|
242
|
+
}, [], any>;
|
|
243
|
+
createAnimatedComponent: (Component: React.ComponentType) => React.ComponentType<{}>;
|
|
244
|
+
};
|
|
245
|
+
Keyboard: {
|
|
246
|
+
dismiss: jest.Mock<any, any, any>;
|
|
247
|
+
addListener: jest.Mock<{
|
|
248
|
+
remove: jest.Mock<any, any, any>;
|
|
249
|
+
}, [], any>;
|
|
250
|
+
removeListener: jest.Mock<any, any, any>;
|
|
251
|
+
isVisible: jest.Mock<boolean, [], any>;
|
|
252
|
+
};
|
|
253
|
+
Linking: {
|
|
254
|
+
openURL: jest.Mock<any, any, any>;
|
|
255
|
+
canOpenURL: jest.Mock<any, any, any>;
|
|
256
|
+
getInitialURL: jest.Mock<any, any, any>;
|
|
257
|
+
addEventListener: jest.Mock<{
|
|
258
|
+
remove: jest.Mock<any, any, any>;
|
|
259
|
+
}, [], any>;
|
|
260
|
+
};
|
|
261
|
+
AppState: {
|
|
262
|
+
currentState: string;
|
|
263
|
+
addEventListener: jest.Mock<{
|
|
264
|
+
remove: jest.Mock<any, any, any>;
|
|
265
|
+
}, [], any>;
|
|
266
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
267
|
+
};
|
|
268
|
+
AccessibilityInfo: {
|
|
269
|
+
isReduceMotionEnabled: jest.Mock<any, any, any>;
|
|
270
|
+
isScreenReaderEnabled: jest.Mock<any, any, any>;
|
|
271
|
+
addEventListener: jest.Mock<{
|
|
272
|
+
remove: jest.Mock<any, any, any>;
|
|
273
|
+
}, [], any>;
|
|
274
|
+
};
|
|
275
|
+
NativeEventEmitter: typeof NativeEventEmitter;
|
|
276
|
+
Appearance: {
|
|
277
|
+
getColorScheme: () => "light";
|
|
278
|
+
addChangeListener: jest.Mock<{
|
|
279
|
+
remove: jest.Mock<any, any, any>;
|
|
280
|
+
}, [], any>;
|
|
281
|
+
removeChangeListener: jest.Mock<any, any, any>;
|
|
282
|
+
};
|
|
283
|
+
useColorScheme: () => "light";
|
|
284
|
+
useWindowDimensions: () => {
|
|
285
|
+
width: number;
|
|
286
|
+
height: number;
|
|
287
|
+
scale: number;
|
|
288
|
+
fontScale: number;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
//#endregion
|
|
292
|
+
export { AccessibilityInfo, ActivityIndicator, Animated, AppState, Appearance, Dimensions, FlatList, Image, Keyboard, KeyboardAvoidingView, Linking, Modal, NativeEventEmitter, PixelRatio, Platform, Pressable, RefreshControl, SafeAreaView, ScrollView, SectionList, StyleSheet, Switch, Text, TextInput, TouchableHighlight, TouchableOpacity, TouchableWithoutFeedback, View, ReactNative as default, useColorScheme, useWindowDimensions };
|
|
293
|
+
//# sourceMappingURL=react-native.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-native.d.cts","names":[],"sources":["../../../src/jest/mocks/react-native.tsx"],"mappings":"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"}
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
|
|
2
|
+
import React, { ReactNode } from "react";
|
|
3
|
+
|
|
4
|
+
//#region src/jest/mocks/react-native.d.ts
|
|
5
|
+
interface MockComponentProps {
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
style?: object;
|
|
8
|
+
testID?: string;
|
|
9
|
+
accessibilityRole?: string;
|
|
10
|
+
accessibilityLabel?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
}
|
|
13
|
+
declare const View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
14
|
+
declare const Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
15
|
+
declare const Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
16
|
+
declare const ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
17
|
+
declare const TextInput: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
18
|
+
declare const TouchableOpacity: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
19
|
+
declare const TouchableHighlight: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
20
|
+
declare const TouchableWithoutFeedback: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
21
|
+
declare const Pressable: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
22
|
+
declare const FlatList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
23
|
+
declare const SectionList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
24
|
+
declare const ActivityIndicator: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
25
|
+
declare const SafeAreaView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
26
|
+
declare const Modal: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
27
|
+
declare const Switch: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
28
|
+
declare const RefreshControl: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
29
|
+
declare const KeyboardAvoidingView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
30
|
+
declare const StyleSheet: {
|
|
31
|
+
create: <T extends Record<string, object>>(styles: T) => T;
|
|
32
|
+
flatten: (style: object | object[]) => object;
|
|
33
|
+
compose: (style1: object, style2: object) => object[];
|
|
34
|
+
hairlineWidth: number;
|
|
35
|
+
absoluteFill: {
|
|
36
|
+
position: string;
|
|
37
|
+
left: number;
|
|
38
|
+
right: number;
|
|
39
|
+
top: number;
|
|
40
|
+
bottom: number;
|
|
41
|
+
};
|
|
42
|
+
absoluteFillObject: {
|
|
43
|
+
position: string;
|
|
44
|
+
left: number;
|
|
45
|
+
right: number;
|
|
46
|
+
top: number;
|
|
47
|
+
bottom: number;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
declare const Platform: {
|
|
51
|
+
OS: "ios";
|
|
52
|
+
Version: number;
|
|
53
|
+
select: <T extends Record<string, unknown>>(config: T) => T[keyof T] | undefined;
|
|
54
|
+
isTV: boolean;
|
|
55
|
+
isPad: boolean;
|
|
56
|
+
isVision: boolean;
|
|
57
|
+
isTesting: boolean;
|
|
58
|
+
constants: {
|
|
59
|
+
reactNativeVersion: {
|
|
60
|
+
major: number;
|
|
61
|
+
minor: number;
|
|
62
|
+
patch: number;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
declare const Dimensions: {
|
|
67
|
+
get: (_dim: "window" | "screen") => {
|
|
68
|
+
width: number;
|
|
69
|
+
height: number;
|
|
70
|
+
scale: number;
|
|
71
|
+
fontScale: number;
|
|
72
|
+
};
|
|
73
|
+
set: jest.Mock<any, any, any>;
|
|
74
|
+
addEventListener: jest.Mock<{
|
|
75
|
+
remove: jest.Mock<any, any, any>;
|
|
76
|
+
}, [], any>;
|
|
77
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
78
|
+
};
|
|
79
|
+
declare const PixelRatio: {
|
|
80
|
+
get: () => number;
|
|
81
|
+
getFontScale: () => number;
|
|
82
|
+
getPixelSizeForLayoutSize: (size: number) => number;
|
|
83
|
+
roundToNearestPixel: (size: number) => number;
|
|
84
|
+
};
|
|
85
|
+
declare const Animated: {
|
|
86
|
+
View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
87
|
+
Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
88
|
+
Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
89
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
90
|
+
Value: {
|
|
91
|
+
new (value: number): {
|
|
92
|
+
_value: number;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
timing: jest.Mock<{
|
|
96
|
+
start: jest.Mock<any, any, any>;
|
|
97
|
+
}, [], any>;
|
|
98
|
+
spring: jest.Mock<{
|
|
99
|
+
start: jest.Mock<any, any, any>;
|
|
100
|
+
}, [], any>;
|
|
101
|
+
createAnimatedComponent: (Component: React.ComponentType) => React.ComponentType<{}>;
|
|
102
|
+
};
|
|
103
|
+
declare const Keyboard: {
|
|
104
|
+
dismiss: jest.Mock<any, any, any>;
|
|
105
|
+
addListener: jest.Mock<{
|
|
106
|
+
remove: jest.Mock<any, any, any>;
|
|
107
|
+
}, [], any>;
|
|
108
|
+
removeListener: jest.Mock<any, any, any>;
|
|
109
|
+
isVisible: jest.Mock<boolean, [], any>;
|
|
110
|
+
};
|
|
111
|
+
declare const Linking: {
|
|
112
|
+
openURL: jest.Mock<any, any, any>;
|
|
113
|
+
canOpenURL: jest.Mock<any, any, any>;
|
|
114
|
+
getInitialURL: jest.Mock<any, any, any>;
|
|
115
|
+
addEventListener: jest.Mock<{
|
|
116
|
+
remove: jest.Mock<any, any, any>;
|
|
117
|
+
}, [], any>;
|
|
118
|
+
};
|
|
119
|
+
declare const AppState: {
|
|
120
|
+
currentState: string;
|
|
121
|
+
addEventListener: jest.Mock<{
|
|
122
|
+
remove: jest.Mock<any, any, any>;
|
|
123
|
+
}, [], any>;
|
|
124
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
125
|
+
};
|
|
126
|
+
declare const AccessibilityInfo: {
|
|
127
|
+
isReduceMotionEnabled: jest.Mock<any, any, any>;
|
|
128
|
+
isScreenReaderEnabled: jest.Mock<any, any, any>;
|
|
129
|
+
addEventListener: jest.Mock<{
|
|
130
|
+
remove: jest.Mock<any, any, any>;
|
|
131
|
+
}, [], any>;
|
|
132
|
+
};
|
|
133
|
+
declare class NativeEventEmitter {
|
|
134
|
+
addListener: jest.Mock<{
|
|
135
|
+
remove: jest.Mock<any, any, any>;
|
|
136
|
+
}, [], any>;
|
|
137
|
+
removeListener: jest.Mock<any, any, any>;
|
|
138
|
+
removeAllListeners: jest.Mock<any, any, any>;
|
|
139
|
+
}
|
|
140
|
+
declare const Appearance: {
|
|
141
|
+
getColorScheme: () => "light";
|
|
142
|
+
addChangeListener: jest.Mock<{
|
|
143
|
+
remove: jest.Mock<any, any, any>;
|
|
144
|
+
}, [], any>;
|
|
145
|
+
removeChangeListener: jest.Mock<any, any, any>;
|
|
146
|
+
};
|
|
147
|
+
declare const useColorScheme: () => "light";
|
|
148
|
+
declare const useWindowDimensions: () => {
|
|
149
|
+
width: number;
|
|
150
|
+
height: number;
|
|
151
|
+
scale: number;
|
|
152
|
+
fontScale: number;
|
|
153
|
+
};
|
|
154
|
+
declare const ReactNative: {
|
|
155
|
+
View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
156
|
+
Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
157
|
+
Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
158
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
159
|
+
TextInput: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
160
|
+
TouchableOpacity: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
161
|
+
TouchableHighlight: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
162
|
+
TouchableWithoutFeedback: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
163
|
+
Pressable: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
164
|
+
FlatList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
165
|
+
SectionList: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
166
|
+
ActivityIndicator: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
167
|
+
SafeAreaView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
168
|
+
Modal: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
169
|
+
Switch: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
170
|
+
RefreshControl: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
171
|
+
KeyboardAvoidingView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
172
|
+
StyleSheet: {
|
|
173
|
+
create: <T extends Record<string, object>>(styles: T) => T;
|
|
174
|
+
flatten: (style: object | object[]) => object;
|
|
175
|
+
compose: (style1: object, style2: object) => object[];
|
|
176
|
+
hairlineWidth: number;
|
|
177
|
+
absoluteFill: {
|
|
178
|
+
position: string;
|
|
179
|
+
left: number;
|
|
180
|
+
right: number;
|
|
181
|
+
top: number;
|
|
182
|
+
bottom: number;
|
|
183
|
+
};
|
|
184
|
+
absoluteFillObject: {
|
|
185
|
+
position: string;
|
|
186
|
+
left: number;
|
|
187
|
+
right: number;
|
|
188
|
+
top: number;
|
|
189
|
+
bottom: number;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
Platform: {
|
|
193
|
+
OS: "ios";
|
|
194
|
+
Version: number;
|
|
195
|
+
select: <T extends Record<string, unknown>>(config: T) => T[keyof T] | undefined;
|
|
196
|
+
isTV: boolean;
|
|
197
|
+
isPad: boolean;
|
|
198
|
+
isVision: boolean;
|
|
199
|
+
isTesting: boolean;
|
|
200
|
+
constants: {
|
|
201
|
+
reactNativeVersion: {
|
|
202
|
+
major: number;
|
|
203
|
+
minor: number;
|
|
204
|
+
patch: number;
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
Dimensions: {
|
|
209
|
+
get: (_dim: "window" | "screen") => {
|
|
210
|
+
width: number;
|
|
211
|
+
height: number;
|
|
212
|
+
scale: number;
|
|
213
|
+
fontScale: number;
|
|
214
|
+
};
|
|
215
|
+
set: jest.Mock<any, any, any>;
|
|
216
|
+
addEventListener: jest.Mock<{
|
|
217
|
+
remove: jest.Mock<any, any, any>;
|
|
218
|
+
}, [], any>;
|
|
219
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
220
|
+
};
|
|
221
|
+
PixelRatio: {
|
|
222
|
+
get: () => number;
|
|
223
|
+
getFontScale: () => number;
|
|
224
|
+
getPixelSizeForLayoutSize: (size: number) => number;
|
|
225
|
+
roundToNearestPixel: (size: number) => number;
|
|
226
|
+
};
|
|
227
|
+
Animated: {
|
|
228
|
+
View: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
229
|
+
Text: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
230
|
+
Image: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
231
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<MockComponentProps, "ref"> & React.RefAttributes<unknown>>;
|
|
232
|
+
Value: {
|
|
233
|
+
new (value: number): {
|
|
234
|
+
_value: number;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
timing: jest.Mock<{
|
|
238
|
+
start: jest.Mock<any, any, any>;
|
|
239
|
+
}, [], any>;
|
|
240
|
+
spring: jest.Mock<{
|
|
241
|
+
start: jest.Mock<any, any, any>;
|
|
242
|
+
}, [], any>;
|
|
243
|
+
createAnimatedComponent: (Component: React.ComponentType) => React.ComponentType<{}>;
|
|
244
|
+
};
|
|
245
|
+
Keyboard: {
|
|
246
|
+
dismiss: jest.Mock<any, any, any>;
|
|
247
|
+
addListener: jest.Mock<{
|
|
248
|
+
remove: jest.Mock<any, any, any>;
|
|
249
|
+
}, [], any>;
|
|
250
|
+
removeListener: jest.Mock<any, any, any>;
|
|
251
|
+
isVisible: jest.Mock<boolean, [], any>;
|
|
252
|
+
};
|
|
253
|
+
Linking: {
|
|
254
|
+
openURL: jest.Mock<any, any, any>;
|
|
255
|
+
canOpenURL: jest.Mock<any, any, any>;
|
|
256
|
+
getInitialURL: jest.Mock<any, any, any>;
|
|
257
|
+
addEventListener: jest.Mock<{
|
|
258
|
+
remove: jest.Mock<any, any, any>;
|
|
259
|
+
}, [], any>;
|
|
260
|
+
};
|
|
261
|
+
AppState: {
|
|
262
|
+
currentState: string;
|
|
263
|
+
addEventListener: jest.Mock<{
|
|
264
|
+
remove: jest.Mock<any, any, any>;
|
|
265
|
+
}, [], any>;
|
|
266
|
+
removeEventListener: jest.Mock<any, any, any>;
|
|
267
|
+
};
|
|
268
|
+
AccessibilityInfo: {
|
|
269
|
+
isReduceMotionEnabled: jest.Mock<any, any, any>;
|
|
270
|
+
isScreenReaderEnabled: jest.Mock<any, any, any>;
|
|
271
|
+
addEventListener: jest.Mock<{
|
|
272
|
+
remove: jest.Mock<any, any, any>;
|
|
273
|
+
}, [], any>;
|
|
274
|
+
};
|
|
275
|
+
NativeEventEmitter: typeof NativeEventEmitter;
|
|
276
|
+
Appearance: {
|
|
277
|
+
getColorScheme: () => "light";
|
|
278
|
+
addChangeListener: jest.Mock<{
|
|
279
|
+
remove: jest.Mock<any, any, any>;
|
|
280
|
+
}, [], any>;
|
|
281
|
+
removeChangeListener: jest.Mock<any, any, any>;
|
|
282
|
+
};
|
|
283
|
+
useColorScheme: () => "light";
|
|
284
|
+
useWindowDimensions: () => {
|
|
285
|
+
width: number;
|
|
286
|
+
height: number;
|
|
287
|
+
scale: number;
|
|
288
|
+
fontScale: number;
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
//#endregion
|
|
292
|
+
export { AccessibilityInfo, ActivityIndicator, Animated, AppState, Appearance, Dimensions, FlatList, Image, Keyboard, KeyboardAvoidingView, Linking, Modal, NativeEventEmitter, PixelRatio, Platform, Pressable, RefreshControl, SafeAreaView, ScrollView, SectionList, StyleSheet, Switch, Text, TextInput, TouchableHighlight, TouchableOpacity, TouchableWithoutFeedback, View, ReactNative as default, useColorScheme, useWindowDimensions };
|
|
293
|
+
//# sourceMappingURL=react-native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-native.d.ts","names":[],"sources":["../../../src/jest/mocks/react-native.tsx"],"mappings":"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"}
|