rn-css 1.3.0 → 1.4.2
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 +25 -11
- package/dist/cssToRN/index.js +5 -4
- package/dist/features.d.ts +1 -1
- package/dist/features.js +6 -1
- package/dist/index.d.ts +270 -522
- package/dist/styleComponent.d.ts +12 -14
- package/dist/styleComponent.js +4 -4
- package/package.json +7 -7
- package/src/cssToRN/index.ts +5 -4
- package/src/features.tsx +5 -1
- package/src/styleComponent.tsx +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,1058 +5,806 @@ export { FontSizeContext } from './features';
|
|
|
5
5
|
export { SharedValue } from './styleComponent';
|
|
6
6
|
declare const styled: {
|
|
7
7
|
<T>(Component: React.ComponentType<T>): {
|
|
8
|
-
<S>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S & T & {
|
|
8
|
+
<S>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S & T & {
|
|
9
9
|
rnCSS?: string | undefined;
|
|
10
10
|
shared: unknown;
|
|
11
|
-
}) => string | number | boolean | null | undefined)
|
|
12
|
-
rnCSS?: string | undefined;
|
|
11
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<T & S & {
|
|
12
|
+
rnCSS?: `${string};` | undefined;
|
|
13
13
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
14
14
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
15
15
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
16
16
|
children?: React.ReactNode;
|
|
17
17
|
style?: any;
|
|
18
18
|
} & {
|
|
19
|
-
ref?:
|
|
19
|
+
ref?: React.Ref<any> | undefined;
|
|
20
20
|
}>;
|
|
21
|
-
attrs<S_1>(opts: Partial<S_1 & T> | ((props: S_1 & T) => Partial<S_1 & T>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_1 & T & {
|
|
21
|
+
attrs<S_1>(opts: Partial<S_1 & T> | ((props: S_1 & T) => Partial<S_1 & T>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_1 & T & {
|
|
22
22
|
rnCSS?: string | undefined;
|
|
23
23
|
shared: unknown;
|
|
24
|
-
}) => string | number | boolean | null | undefined)
|
|
25
|
-
rnCSS?: string | undefined;
|
|
26
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
27
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
28
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
29
|
-
children?: React.ReactNode;
|
|
30
|
-
style?: any;
|
|
31
|
-
} & {
|
|
32
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
33
|
-
}) | (S_1 & {
|
|
34
|
-
rnCSS?: string | undefined;
|
|
24
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(T | S_1) & {
|
|
25
|
+
rnCSS?: `${string};` | undefined;
|
|
35
26
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
36
27
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
37
28
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
38
29
|
children?: React.ReactNode;
|
|
39
30
|
style?: any;
|
|
40
31
|
} & {
|
|
41
|
-
ref?:
|
|
42
|
-
}
|
|
32
|
+
ref?: React.Ref<any> | undefined;
|
|
33
|
+
}>;
|
|
43
34
|
};
|
|
44
35
|
ActivityIndicator: {
|
|
45
|
-
<S_2>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_2 & RN.ActivityIndicatorProps & {
|
|
36
|
+
<S_2>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_2 & RN.ActivityIndicatorProps & {
|
|
46
37
|
rnCSS?: string | undefined;
|
|
47
38
|
shared: unknown;
|
|
48
|
-
}) => string | number | boolean | null | undefined)
|
|
49
|
-
rnCSS?: string | undefined;
|
|
39
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ActivityIndicatorProps & S_2 & {
|
|
40
|
+
rnCSS?: `${string};` | undefined;
|
|
50
41
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
51
42
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
52
43
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
53
44
|
children?: React.ReactNode;
|
|
54
45
|
style?: any;
|
|
55
46
|
} & {
|
|
56
|
-
ref?:
|
|
47
|
+
ref?: React.Ref<any> | undefined;
|
|
57
48
|
}>;
|
|
58
|
-
attrs<S_3>(opts: Partial<S_3 & RN.ActivityIndicatorProps> | ((props: S_3 & RN.ActivityIndicatorProps) => Partial<S_3 & RN.ActivityIndicatorProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_3 & RN.ActivityIndicatorProps & {
|
|
49
|
+
attrs<S_3>(opts: Partial<S_3 & RN.ActivityIndicatorProps> | ((props: S_3 & RN.ActivityIndicatorProps) => Partial<S_3 & RN.ActivityIndicatorProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_3 & RN.ActivityIndicatorProps & {
|
|
59
50
|
rnCSS?: string | undefined;
|
|
60
51
|
shared: unknown;
|
|
61
|
-
}) => string | number | boolean | null | undefined)
|
|
62
|
-
rnCSS?: string | undefined;
|
|
63
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
64
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
65
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
66
|
-
children?: React.ReactNode;
|
|
67
|
-
style?: any;
|
|
68
|
-
} & {
|
|
69
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
70
|
-
}) | (S_3 & {
|
|
71
|
-
rnCSS?: string | undefined;
|
|
52
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ActivityIndicatorProps | S_3) & {
|
|
53
|
+
rnCSS?: `${string};` | undefined;
|
|
72
54
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
73
55
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
74
56
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
75
57
|
children?: React.ReactNode;
|
|
76
58
|
style?: any;
|
|
77
59
|
} & {
|
|
78
|
-
ref?:
|
|
79
|
-
}
|
|
60
|
+
ref?: React.Ref<any> | undefined;
|
|
61
|
+
}>;
|
|
80
62
|
};
|
|
81
63
|
Button: {
|
|
82
|
-
<S_4>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_4 & RN.ButtonProps & {
|
|
64
|
+
<S_4>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_4 & RN.ButtonProps & {
|
|
83
65
|
rnCSS?: string | undefined;
|
|
84
66
|
shared: unknown;
|
|
85
|
-
}) => string | number | boolean | null | undefined)
|
|
86
|
-
rnCSS?: string | undefined;
|
|
67
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ButtonProps & S_4 & {
|
|
68
|
+
rnCSS?: `${string};` | undefined;
|
|
87
69
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
88
70
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
89
71
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
90
72
|
children?: React.ReactNode;
|
|
91
73
|
style?: any;
|
|
92
74
|
} & {
|
|
93
|
-
ref?:
|
|
75
|
+
ref?: React.Ref<any> | undefined;
|
|
94
76
|
}>;
|
|
95
|
-
attrs<S_5>(opts: Partial<S_5 & RN.ButtonProps> | ((props: S_5 & RN.ButtonProps) => Partial<S_5 & RN.ButtonProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_5 & RN.ButtonProps & {
|
|
77
|
+
attrs<S_5>(opts: Partial<S_5 & RN.ButtonProps> | ((props: S_5 & RN.ButtonProps) => Partial<S_5 & RN.ButtonProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_5 & RN.ButtonProps & {
|
|
96
78
|
rnCSS?: string | undefined;
|
|
97
79
|
shared: unknown;
|
|
98
|
-
}) => string | number | boolean | null | undefined)
|
|
99
|
-
rnCSS?: string | undefined;
|
|
100
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
101
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
102
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
103
|
-
children?: React.ReactNode;
|
|
104
|
-
style?: any;
|
|
105
|
-
} & {
|
|
106
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
107
|
-
}) | (S_5 & {
|
|
108
|
-
rnCSS?: string | undefined;
|
|
80
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ButtonProps | S_5) & {
|
|
81
|
+
rnCSS?: `${string};` | undefined;
|
|
109
82
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
110
83
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
111
84
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
112
85
|
children?: React.ReactNode;
|
|
113
86
|
style?: any;
|
|
114
87
|
} & {
|
|
115
|
-
ref?:
|
|
116
|
-
}
|
|
88
|
+
ref?: React.Ref<any> | undefined;
|
|
89
|
+
}>;
|
|
117
90
|
};
|
|
118
91
|
DrawerLayoutAndroid: {
|
|
119
|
-
<S_6>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_6 & RN.DrawerLayoutAndroidProps & {
|
|
92
|
+
<S_6>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_6 & RN.DrawerLayoutAndroidProps & {
|
|
120
93
|
rnCSS?: string | undefined;
|
|
121
94
|
shared: unknown;
|
|
122
|
-
}) => string | number | boolean | null | undefined)
|
|
123
|
-
rnCSS?: string | undefined;
|
|
95
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.DrawerLayoutAndroidProps & S_6 & {
|
|
96
|
+
rnCSS?: `${string};` | undefined;
|
|
124
97
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
125
98
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
126
99
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
127
100
|
children?: React.ReactNode;
|
|
128
101
|
style?: any;
|
|
129
102
|
} & {
|
|
130
|
-
ref?:
|
|
103
|
+
ref?: React.Ref<any> | undefined;
|
|
131
104
|
}>;
|
|
132
|
-
attrs<S_7>(opts: Partial<S_7 & RN.DrawerLayoutAndroidProps> | ((props: S_7 & RN.DrawerLayoutAndroidProps) => Partial<S_7 & RN.DrawerLayoutAndroidProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_7 & RN.DrawerLayoutAndroidProps & {
|
|
105
|
+
attrs<S_7>(opts: Partial<S_7 & RN.DrawerLayoutAndroidProps> | ((props: S_7 & RN.DrawerLayoutAndroidProps) => Partial<S_7 & RN.DrawerLayoutAndroidProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_7 & RN.DrawerLayoutAndroidProps & {
|
|
133
106
|
rnCSS?: string | undefined;
|
|
134
107
|
shared: unknown;
|
|
135
|
-
}) => string | number | boolean | null | undefined)
|
|
136
|
-
rnCSS?: string | undefined;
|
|
137
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
138
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
139
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
140
|
-
children?: React.ReactNode;
|
|
141
|
-
style?: any;
|
|
142
|
-
} & {
|
|
143
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
144
|
-
}) | (S_7 & {
|
|
145
|
-
rnCSS?: string | undefined;
|
|
108
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.DrawerLayoutAndroidProps | S_7) & {
|
|
109
|
+
rnCSS?: `${string};` | undefined;
|
|
146
110
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
147
111
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
148
112
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
149
113
|
children?: React.ReactNode;
|
|
150
114
|
style?: any;
|
|
151
115
|
} & {
|
|
152
|
-
ref?:
|
|
153
|
-
}
|
|
116
|
+
ref?: React.Ref<any> | undefined;
|
|
117
|
+
}>;
|
|
154
118
|
};
|
|
155
119
|
Image: {
|
|
156
|
-
<S_8>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_8 & RN.ImageProps & {
|
|
120
|
+
<S_8>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_8 & RN.ImageProps & {
|
|
157
121
|
rnCSS?: string | undefined;
|
|
158
122
|
shared: unknown;
|
|
159
|
-
}) => string | number | boolean | null | undefined)
|
|
160
|
-
rnCSS?: string | undefined;
|
|
123
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ImageProps & S_8 & {
|
|
124
|
+
rnCSS?: `${string};` | undefined;
|
|
161
125
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
162
126
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
163
127
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
164
128
|
children?: React.ReactNode;
|
|
165
129
|
style?: any;
|
|
166
130
|
} & {
|
|
167
|
-
ref?:
|
|
131
|
+
ref?: React.Ref<any> | undefined;
|
|
168
132
|
}>;
|
|
169
|
-
attrs<S_9>(opts: Partial<S_9 & RN.ImageProps> | ((props: S_9 & RN.ImageProps) => Partial<S_9 & RN.ImageProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_9 & RN.ImageProps & {
|
|
133
|
+
attrs<S_9>(opts: Partial<S_9 & RN.ImageProps> | ((props: S_9 & RN.ImageProps) => Partial<S_9 & RN.ImageProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_9 & RN.ImageProps & {
|
|
170
134
|
rnCSS?: string | undefined;
|
|
171
135
|
shared: unknown;
|
|
172
|
-
}) => string | number | boolean | null | undefined)
|
|
173
|
-
rnCSS?: string | undefined;
|
|
174
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
175
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
176
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
177
|
-
children?: React.ReactNode;
|
|
178
|
-
style?: any;
|
|
179
|
-
} & {
|
|
180
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
181
|
-
}) | (S_9 & {
|
|
182
|
-
rnCSS?: string | undefined;
|
|
136
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ImageProps | S_9) & {
|
|
137
|
+
rnCSS?: `${string};` | undefined;
|
|
183
138
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
184
139
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
185
140
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
186
141
|
children?: React.ReactNode;
|
|
187
142
|
style?: any;
|
|
188
143
|
} & {
|
|
189
|
-
ref?:
|
|
190
|
-
}
|
|
144
|
+
ref?: React.Ref<any> | undefined;
|
|
145
|
+
}>;
|
|
191
146
|
};
|
|
192
147
|
ImageBackground: {
|
|
193
|
-
<S_10>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_10 & RN.ImageBackgroundProps & {
|
|
148
|
+
<S_10>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_10 & RN.ImageBackgroundProps & {
|
|
194
149
|
rnCSS?: string | undefined;
|
|
195
150
|
shared: unknown;
|
|
196
|
-
}) => string | number | boolean | null | undefined)
|
|
197
|
-
rnCSS?: string | undefined;
|
|
151
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ImageBackgroundProps & S_10 & {
|
|
152
|
+
rnCSS?: `${string};` | undefined;
|
|
198
153
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
199
154
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
200
155
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
201
156
|
children?: React.ReactNode;
|
|
202
157
|
style?: any;
|
|
203
158
|
} & {
|
|
204
|
-
ref?:
|
|
159
|
+
ref?: React.Ref<any> | undefined;
|
|
205
160
|
}>;
|
|
206
|
-
attrs<S_11>(opts: Partial<S_11 & RN.ImageBackgroundProps> | ((props: S_11 & RN.ImageBackgroundProps) => Partial<S_11 & RN.ImageBackgroundProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_11 & RN.ImageBackgroundProps & {
|
|
161
|
+
attrs<S_11>(opts: Partial<S_11 & RN.ImageBackgroundProps> | ((props: S_11 & RN.ImageBackgroundProps) => Partial<S_11 & RN.ImageBackgroundProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_11 & RN.ImageBackgroundProps & {
|
|
207
162
|
rnCSS?: string | undefined;
|
|
208
163
|
shared: unknown;
|
|
209
|
-
}) => string | number | boolean | null | undefined)
|
|
210
|
-
rnCSS?: string | undefined;
|
|
211
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
212
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
213
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
214
|
-
children?: React.ReactNode;
|
|
215
|
-
style?: any;
|
|
216
|
-
} & {
|
|
217
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
218
|
-
}) | (S_11 & {
|
|
219
|
-
rnCSS?: string | undefined;
|
|
164
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ImageBackgroundProps | S_11) & {
|
|
165
|
+
rnCSS?: `${string};` | undefined;
|
|
220
166
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
221
167
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
222
168
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
223
169
|
children?: React.ReactNode;
|
|
224
170
|
style?: any;
|
|
225
171
|
} & {
|
|
226
|
-
ref?:
|
|
227
|
-
}
|
|
172
|
+
ref?: React.Ref<any> | undefined;
|
|
173
|
+
}>;
|
|
228
174
|
};
|
|
229
175
|
KeyboardAvoidingView: {
|
|
230
|
-
<S_12>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_12 & RN.KeyboardAvoidingViewProps & {
|
|
176
|
+
<S_12>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_12 & RN.KeyboardAvoidingViewProps & {
|
|
231
177
|
rnCSS?: string | undefined;
|
|
232
178
|
shared: unknown;
|
|
233
|
-
}) => string | number | boolean | null | undefined)
|
|
234
|
-
rnCSS?: string | undefined;
|
|
179
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.KeyboardAvoidingViewProps & S_12 & {
|
|
180
|
+
rnCSS?: `${string};` | undefined;
|
|
235
181
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
236
182
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
237
183
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
238
184
|
children?: React.ReactNode;
|
|
239
185
|
style?: any;
|
|
240
186
|
} & {
|
|
241
|
-
ref?:
|
|
187
|
+
ref?: React.Ref<any> | undefined;
|
|
242
188
|
}>;
|
|
243
|
-
attrs<S_13>(opts: Partial<S_13 & RN.KeyboardAvoidingViewProps> | ((props: S_13 & RN.KeyboardAvoidingViewProps) => Partial<S_13 & RN.KeyboardAvoidingViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_13 & RN.KeyboardAvoidingViewProps & {
|
|
189
|
+
attrs<S_13>(opts: Partial<S_13 & RN.KeyboardAvoidingViewProps> | ((props: S_13 & RN.KeyboardAvoidingViewProps) => Partial<S_13 & RN.KeyboardAvoidingViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_13 & RN.KeyboardAvoidingViewProps & {
|
|
244
190
|
rnCSS?: string | undefined;
|
|
245
191
|
shared: unknown;
|
|
246
|
-
}) => string | number | boolean | null | undefined)
|
|
247
|
-
rnCSS?: string | undefined;
|
|
248
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
249
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
250
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
251
|
-
children?: React.ReactNode;
|
|
252
|
-
style?: any;
|
|
253
|
-
} & {
|
|
254
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
255
|
-
}) | (S_13 & {
|
|
256
|
-
rnCSS?: string | undefined;
|
|
192
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.KeyboardAvoidingViewProps | S_13) & {
|
|
193
|
+
rnCSS?: `${string};` | undefined;
|
|
257
194
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
258
195
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
259
196
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
260
197
|
children?: React.ReactNode;
|
|
261
198
|
style?: any;
|
|
262
199
|
} & {
|
|
263
|
-
ref?:
|
|
264
|
-
}
|
|
200
|
+
ref?: React.Ref<any> | undefined;
|
|
201
|
+
}>;
|
|
265
202
|
};
|
|
266
203
|
ListView: {
|
|
267
|
-
<S_14>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_14 & RN.ListViewProps & {
|
|
204
|
+
<S_14>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_14 & RN.ListViewProps & {
|
|
268
205
|
rnCSS?: string | undefined;
|
|
269
206
|
shared: unknown;
|
|
270
|
-
}) => string | number | boolean | null | undefined)
|
|
271
|
-
rnCSS?: string | undefined;
|
|
207
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ListViewProps & S_14 & {
|
|
208
|
+
rnCSS?: `${string};` | undefined;
|
|
272
209
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
273
210
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
274
211
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
275
212
|
children?: React.ReactNode;
|
|
276
213
|
style?: any;
|
|
277
214
|
} & {
|
|
278
|
-
ref?:
|
|
215
|
+
ref?: React.Ref<any> | undefined;
|
|
279
216
|
}>;
|
|
280
|
-
attrs<S_15>(opts: Partial<S_15 & RN.ListViewProps> | ((props: S_15 & RN.ListViewProps) => Partial<S_15 & RN.ListViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_15 & RN.ListViewProps & {
|
|
217
|
+
attrs<S_15>(opts: Partial<S_15 & RN.ListViewProps> | ((props: S_15 & RN.ListViewProps) => Partial<S_15 & RN.ListViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_15 & RN.ListViewProps & {
|
|
281
218
|
rnCSS?: string | undefined;
|
|
282
219
|
shared: unknown;
|
|
283
|
-
}) => string | number | boolean | null | undefined)
|
|
284
|
-
rnCSS?: string | undefined;
|
|
220
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ListViewProps | S_15) & {
|
|
221
|
+
rnCSS?: `${string};` | undefined;
|
|
285
222
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
286
223
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
287
224
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
288
225
|
children?: React.ReactNode;
|
|
289
226
|
style?: any;
|
|
290
227
|
} & {
|
|
291
|
-
ref?:
|
|
292
|
-
}
|
|
293
|
-
rnCSS?: string | undefined;
|
|
294
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
295
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
296
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
297
|
-
children?: React.ReactNode;
|
|
298
|
-
style?: any;
|
|
299
|
-
} & {
|
|
300
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
301
|
-
})>;
|
|
228
|
+
ref?: React.Ref<any> | undefined;
|
|
229
|
+
}>;
|
|
302
230
|
};
|
|
303
231
|
Modal: {
|
|
304
|
-
<S_16>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_16 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
232
|
+
<S_16>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_16 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
305
233
|
rnCSS?: string | undefined;
|
|
306
234
|
shared: unknown;
|
|
307
|
-
}) => string | number | boolean | null | undefined)
|
|
308
|
-
rnCSS?: string | undefined;
|
|
235
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & S_16 & {
|
|
236
|
+
rnCSS?: `${string};` | undefined;
|
|
309
237
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
310
238
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
311
239
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
312
240
|
children?: React.ReactNode;
|
|
313
241
|
style?: any;
|
|
314
242
|
} & {
|
|
315
|
-
ref?:
|
|
243
|
+
ref?: React.Ref<any> | undefined;
|
|
316
244
|
}>;
|
|
317
|
-
attrs<S_17>(opts: Partial<S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps> | ((props: S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps) => Partial<S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
245
|
+
attrs<S_17>(opts: Partial<S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps> | ((props: S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps) => Partial<S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_17 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
318
246
|
rnCSS?: string | undefined;
|
|
319
247
|
shared: unknown;
|
|
320
|
-
}) => string | number | boolean | null | undefined)
|
|
321
|
-
rnCSS?: string | undefined;
|
|
248
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ModalProps | S_17) & {
|
|
249
|
+
rnCSS?: `${string};` | undefined;
|
|
322
250
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
323
251
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
324
252
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
325
253
|
children?: React.ReactNode;
|
|
326
254
|
style?: any;
|
|
327
255
|
} & {
|
|
328
|
-
ref?:
|
|
329
|
-
}
|
|
330
|
-
rnCSS?: string | undefined;
|
|
331
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
332
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
333
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
334
|
-
children?: React.ReactNode;
|
|
335
|
-
style?: any;
|
|
336
|
-
} & {
|
|
337
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
338
|
-
})>;
|
|
256
|
+
ref?: React.Ref<any> | undefined;
|
|
257
|
+
}>;
|
|
339
258
|
};
|
|
340
259
|
NavigatorIOS: {
|
|
341
|
-
<S_18>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_18 & RN.NavigatorIOSProps & {
|
|
260
|
+
<S_18>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_18 & RN.NavigatorIOSProps & {
|
|
342
261
|
rnCSS?: string | undefined;
|
|
343
262
|
shared: unknown;
|
|
344
|
-
}) => string | number | boolean | null | undefined)
|
|
345
|
-
rnCSS?: string | undefined;
|
|
263
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.NavigatorIOSProps & S_18 & {
|
|
264
|
+
rnCSS?: `${string};` | undefined;
|
|
346
265
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
347
266
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
348
267
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
349
268
|
children?: React.ReactNode;
|
|
350
269
|
style?: any;
|
|
351
270
|
} & {
|
|
352
|
-
ref?:
|
|
271
|
+
ref?: React.Ref<any> | undefined;
|
|
353
272
|
}>;
|
|
354
|
-
attrs<S_19>(opts: Partial<S_19 & RN.NavigatorIOSProps> | ((props: S_19 & RN.NavigatorIOSProps) => Partial<S_19 & RN.NavigatorIOSProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_19 & RN.NavigatorIOSProps & {
|
|
273
|
+
attrs<S_19>(opts: Partial<S_19 & RN.NavigatorIOSProps> | ((props: S_19 & RN.NavigatorIOSProps) => Partial<S_19 & RN.NavigatorIOSProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_19 & RN.NavigatorIOSProps & {
|
|
355
274
|
rnCSS?: string | undefined;
|
|
356
275
|
shared: unknown;
|
|
357
|
-
}) => string | number | boolean | null | undefined)
|
|
358
|
-
rnCSS?: string | undefined;
|
|
359
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
360
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
361
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
362
|
-
children?: React.ReactNode;
|
|
363
|
-
style?: any;
|
|
364
|
-
} & {
|
|
365
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
366
|
-
}) | (S_19 & {
|
|
367
|
-
rnCSS?: string | undefined;
|
|
276
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.NavigatorIOSProps | S_19) & {
|
|
277
|
+
rnCSS?: `${string};` | undefined;
|
|
368
278
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
369
279
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
370
280
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
371
281
|
children?: React.ReactNode;
|
|
372
282
|
style?: any;
|
|
373
283
|
} & {
|
|
374
|
-
ref?:
|
|
375
|
-
}
|
|
284
|
+
ref?: React.Ref<any> | undefined;
|
|
285
|
+
}>;
|
|
376
286
|
};
|
|
377
287
|
ScrollView: {
|
|
378
|
-
<S_20>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_20 & RN.ScrollViewProps & {
|
|
288
|
+
<S_20>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_20 & RN.ScrollViewProps & {
|
|
379
289
|
rnCSS?: string | undefined;
|
|
380
290
|
shared: unknown;
|
|
381
|
-
}) => string | number | boolean | null | undefined)
|
|
382
|
-
rnCSS?: string | undefined;
|
|
291
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ScrollViewProps & S_20 & {
|
|
292
|
+
rnCSS?: `${string};` | undefined;
|
|
383
293
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
384
294
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
385
295
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
386
296
|
children?: React.ReactNode;
|
|
387
297
|
style?: any;
|
|
388
298
|
} & {
|
|
389
|
-
ref?:
|
|
299
|
+
ref?: React.Ref<any> | undefined;
|
|
390
300
|
}>;
|
|
391
|
-
attrs<S_21>(opts: Partial<S_21 & RN.ScrollViewProps> | ((props: S_21 & RN.ScrollViewProps) => Partial<S_21 & RN.ScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_21 & RN.ScrollViewProps & {
|
|
301
|
+
attrs<S_21>(opts: Partial<S_21 & RN.ScrollViewProps> | ((props: S_21 & RN.ScrollViewProps) => Partial<S_21 & RN.ScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_21 & RN.ScrollViewProps & {
|
|
392
302
|
rnCSS?: string | undefined;
|
|
393
303
|
shared: unknown;
|
|
394
|
-
}) => string | number | boolean | null | undefined)
|
|
395
|
-
rnCSS?: string | undefined;
|
|
304
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ScrollViewProps | S_21) & {
|
|
305
|
+
rnCSS?: `${string};` | undefined;
|
|
396
306
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
397
307
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
398
308
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
399
309
|
children?: React.ReactNode;
|
|
400
310
|
style?: any;
|
|
401
311
|
} & {
|
|
402
|
-
ref?:
|
|
403
|
-
}
|
|
404
|
-
rnCSS?: string | undefined;
|
|
405
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
406
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
407
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
408
|
-
children?: React.ReactNode;
|
|
409
|
-
style?: any;
|
|
410
|
-
} & {
|
|
411
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
412
|
-
})>;
|
|
312
|
+
ref?: React.Ref<any> | undefined;
|
|
313
|
+
}>;
|
|
413
314
|
};
|
|
414
315
|
SnapshotViewIOS: {
|
|
415
|
-
<S_22>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_22 & RN.SnapshotViewIOSProps & {
|
|
316
|
+
<S_22>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_22 & RN.SnapshotViewIOSProps & {
|
|
416
317
|
rnCSS?: string | undefined;
|
|
417
318
|
shared: unknown;
|
|
418
|
-
}) => string | number | boolean | null | undefined)
|
|
419
|
-
rnCSS?: string | undefined;
|
|
319
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.SnapshotViewIOSProps & S_22 & {
|
|
320
|
+
rnCSS?: `${string};` | undefined;
|
|
420
321
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
421
322
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
422
323
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
423
324
|
children?: React.ReactNode;
|
|
424
325
|
style?: any;
|
|
425
326
|
} & {
|
|
426
|
-
ref?:
|
|
327
|
+
ref?: React.Ref<any> | undefined;
|
|
427
328
|
}>;
|
|
428
|
-
attrs<S_23>(opts: Partial<S_23 & RN.SnapshotViewIOSProps> | ((props: S_23 & RN.SnapshotViewIOSProps) => Partial<S_23 & RN.SnapshotViewIOSProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_23 & RN.SnapshotViewIOSProps & {
|
|
329
|
+
attrs<S_23>(opts: Partial<S_23 & RN.SnapshotViewIOSProps> | ((props: S_23 & RN.SnapshotViewIOSProps) => Partial<S_23 & RN.SnapshotViewIOSProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_23 & RN.SnapshotViewIOSProps & {
|
|
429
330
|
rnCSS?: string | undefined;
|
|
430
331
|
shared: unknown;
|
|
431
|
-
}) => string | number | boolean | null | undefined)
|
|
432
|
-
rnCSS?: string | undefined;
|
|
433
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
434
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
435
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
436
|
-
children?: React.ReactNode;
|
|
437
|
-
style?: any;
|
|
438
|
-
} & {
|
|
439
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
440
|
-
}) | (S_23 & {
|
|
441
|
-
rnCSS?: string | undefined;
|
|
332
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.SnapshotViewIOSProps | S_23) & {
|
|
333
|
+
rnCSS?: `${string};` | undefined;
|
|
442
334
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
443
335
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
444
336
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
445
337
|
children?: React.ReactNode;
|
|
446
338
|
style?: any;
|
|
447
339
|
} & {
|
|
448
|
-
ref?:
|
|
449
|
-
}
|
|
340
|
+
ref?: React.Ref<any> | undefined;
|
|
341
|
+
}>;
|
|
450
342
|
};
|
|
451
343
|
Switch: {
|
|
452
|
-
<S_24>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_24 & RN.SwitchProps & {
|
|
344
|
+
<S_24>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_24 & RN.SwitchProps & {
|
|
453
345
|
rnCSS?: string | undefined;
|
|
454
346
|
shared: unknown;
|
|
455
|
-
}) => string | number | boolean | null | undefined)
|
|
456
|
-
rnCSS?: string | undefined;
|
|
347
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.SwitchProps & S_24 & {
|
|
348
|
+
rnCSS?: `${string};` | undefined;
|
|
457
349
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
458
350
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
459
351
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
460
352
|
children?: React.ReactNode;
|
|
461
353
|
style?: any;
|
|
462
354
|
} & {
|
|
463
|
-
ref?:
|
|
355
|
+
ref?: React.Ref<any> | undefined;
|
|
464
356
|
}>;
|
|
465
|
-
attrs<S_25>(opts: Partial<S_25 & RN.SwitchProps> | ((props: S_25 & RN.SwitchProps) => Partial<S_25 & RN.SwitchProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_25 & RN.SwitchProps & {
|
|
357
|
+
attrs<S_25>(opts: Partial<S_25 & RN.SwitchProps> | ((props: S_25 & RN.SwitchProps) => Partial<S_25 & RN.SwitchProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_25 & RN.SwitchProps & {
|
|
466
358
|
rnCSS?: string | undefined;
|
|
467
359
|
shared: unknown;
|
|
468
|
-
}) => string | number | boolean | null | undefined)
|
|
469
|
-
rnCSS?: string | undefined;
|
|
360
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.SwitchProps | S_25) & {
|
|
361
|
+
rnCSS?: `${string};` | undefined;
|
|
470
362
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
471
363
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
472
364
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
473
365
|
children?: React.ReactNode;
|
|
474
366
|
style?: any;
|
|
475
367
|
} & {
|
|
476
|
-
ref?:
|
|
477
|
-
}
|
|
478
|
-
rnCSS?: string | undefined;
|
|
479
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
480
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
481
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
482
|
-
children?: React.ReactNode;
|
|
483
|
-
style?: any;
|
|
484
|
-
} & {
|
|
485
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
486
|
-
})>;
|
|
368
|
+
ref?: React.Ref<any> | undefined;
|
|
369
|
+
}>;
|
|
487
370
|
};
|
|
488
371
|
RecyclerViewBackedScrollView: {
|
|
489
|
-
<S_26>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_26 & RN.RecyclerViewBackedScrollViewProps & {
|
|
372
|
+
<S_26>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_26 & RN.RecyclerViewBackedScrollViewProps & {
|
|
490
373
|
rnCSS?: string | undefined;
|
|
491
374
|
shared: unknown;
|
|
492
|
-
}) => string | number | boolean | null | undefined)
|
|
493
|
-
rnCSS?: string | undefined;
|
|
375
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.RecyclerViewBackedScrollViewProps & S_26 & {
|
|
376
|
+
rnCSS?: `${string};` | undefined;
|
|
494
377
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
495
378
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
496
379
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
497
380
|
children?: React.ReactNode;
|
|
498
381
|
style?: any;
|
|
499
382
|
} & {
|
|
500
|
-
ref?:
|
|
383
|
+
ref?: React.Ref<any> | undefined;
|
|
501
384
|
}>;
|
|
502
|
-
attrs<S_27>(opts: Partial<S_27 & RN.RecyclerViewBackedScrollViewProps> | ((props: S_27 & RN.RecyclerViewBackedScrollViewProps) => Partial<S_27 & RN.RecyclerViewBackedScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_27 & RN.RecyclerViewBackedScrollViewProps & {
|
|
385
|
+
attrs<S_27>(opts: Partial<S_27 & RN.RecyclerViewBackedScrollViewProps> | ((props: S_27 & RN.RecyclerViewBackedScrollViewProps) => Partial<S_27 & RN.RecyclerViewBackedScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_27 & RN.RecyclerViewBackedScrollViewProps & {
|
|
503
386
|
rnCSS?: string | undefined;
|
|
504
387
|
shared: unknown;
|
|
505
|
-
}) => string | number | boolean | null | undefined)
|
|
506
|
-
rnCSS?: string | undefined;
|
|
388
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.RecyclerViewBackedScrollViewProps | S_27) & {
|
|
389
|
+
rnCSS?: `${string};` | undefined;
|
|
507
390
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
508
391
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
509
392
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
510
393
|
children?: React.ReactNode;
|
|
511
394
|
style?: any;
|
|
512
395
|
} & {
|
|
513
|
-
ref?:
|
|
514
|
-
}
|
|
515
|
-
rnCSS?: string | undefined;
|
|
516
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
517
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
518
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
519
|
-
children?: React.ReactNode;
|
|
520
|
-
style?: any;
|
|
521
|
-
} & {
|
|
522
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
523
|
-
})>;
|
|
396
|
+
ref?: React.Ref<any> | undefined;
|
|
397
|
+
}>;
|
|
524
398
|
};
|
|
525
399
|
RefreshControl: {
|
|
526
|
-
<S_28>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_28 & RN.RefreshControlProps & {
|
|
400
|
+
<S_28>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_28 & RN.RefreshControlProps & {
|
|
527
401
|
rnCSS?: string | undefined;
|
|
528
402
|
shared: unknown;
|
|
529
|
-
}) => string | number | boolean | null | undefined)
|
|
530
|
-
rnCSS?: string | undefined;
|
|
403
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.RefreshControlProps & S_28 & {
|
|
404
|
+
rnCSS?: `${string};` | undefined;
|
|
531
405
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
532
406
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
533
407
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
534
408
|
children?: React.ReactNode;
|
|
535
409
|
style?: any;
|
|
536
410
|
} & {
|
|
537
|
-
ref?:
|
|
411
|
+
ref?: React.Ref<any> | undefined;
|
|
538
412
|
}>;
|
|
539
|
-
attrs<S_29>(opts: Partial<S_29 & RN.RefreshControlProps> | ((props: S_29 & RN.RefreshControlProps) => Partial<S_29 & RN.RefreshControlProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_29 & RN.RefreshControlProps & {
|
|
413
|
+
attrs<S_29>(opts: Partial<S_29 & RN.RefreshControlProps> | ((props: S_29 & RN.RefreshControlProps) => Partial<S_29 & RN.RefreshControlProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_29 & RN.RefreshControlProps & {
|
|
540
414
|
rnCSS?: string | undefined;
|
|
541
415
|
shared: unknown;
|
|
542
|
-
}) => string | number | boolean | null | undefined)
|
|
543
|
-
rnCSS?: string | undefined;
|
|
544
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
545
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
546
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
547
|
-
children?: React.ReactNode;
|
|
548
|
-
style?: any;
|
|
549
|
-
} & {
|
|
550
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
551
|
-
}) | (S_29 & {
|
|
552
|
-
rnCSS?: string | undefined;
|
|
416
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.RefreshControlProps | S_29) & {
|
|
417
|
+
rnCSS?: `${string};` | undefined;
|
|
553
418
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
554
419
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
555
420
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
556
421
|
children?: React.ReactNode;
|
|
557
422
|
style?: any;
|
|
558
423
|
} & {
|
|
559
|
-
ref?:
|
|
560
|
-
}
|
|
424
|
+
ref?: React.Ref<any> | undefined;
|
|
425
|
+
}>;
|
|
561
426
|
};
|
|
562
427
|
SafeAreaView: {
|
|
563
|
-
<S_30>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_30 & RN.ViewProps & {
|
|
428
|
+
<S_30>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_30 & RN.ViewProps & {
|
|
564
429
|
rnCSS?: string | undefined;
|
|
565
430
|
shared: unknown;
|
|
566
|
-
}) => string | number | boolean | null | undefined)
|
|
567
|
-
rnCSS?: string | undefined;
|
|
431
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ViewProps & S_30 & {
|
|
432
|
+
rnCSS?: `${string};` | undefined;
|
|
568
433
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
569
434
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
570
435
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
571
436
|
children?: React.ReactNode;
|
|
572
437
|
style?: any;
|
|
573
438
|
} & {
|
|
574
|
-
ref?:
|
|
439
|
+
ref?: React.Ref<any> | undefined;
|
|
575
440
|
}>;
|
|
576
|
-
attrs<S_31>(opts: Partial<S_31 & RN.ViewProps> | ((props: S_31 & RN.ViewProps) => Partial<S_31 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_31 & RN.ViewProps & {
|
|
441
|
+
attrs<S_31>(opts: Partial<S_31 & RN.ViewProps> | ((props: S_31 & RN.ViewProps) => Partial<S_31 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_31 & RN.ViewProps & {
|
|
577
442
|
rnCSS?: string | undefined;
|
|
578
443
|
shared: unknown;
|
|
579
|
-
}) => string | number | boolean | null | undefined)
|
|
580
|
-
rnCSS?: string | undefined;
|
|
444
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ViewProps | S_31) & {
|
|
445
|
+
rnCSS?: `${string};` | undefined;
|
|
581
446
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
582
447
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
583
448
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
584
449
|
children?: React.ReactNode;
|
|
585
450
|
style?: any;
|
|
586
451
|
} & {
|
|
587
|
-
ref?:
|
|
588
|
-
}
|
|
589
|
-
rnCSS?: string | undefined;
|
|
590
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
591
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
592
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
593
|
-
children?: React.ReactNode;
|
|
594
|
-
style?: any;
|
|
595
|
-
} & {
|
|
596
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
597
|
-
})>;
|
|
452
|
+
ref?: React.Ref<any> | undefined;
|
|
453
|
+
}>;
|
|
598
454
|
};
|
|
599
455
|
StatusBar: {
|
|
600
|
-
<S_32>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_32 & RN.StatusBarProps & {
|
|
456
|
+
<S_32>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_32 & RN.StatusBarProps & {
|
|
601
457
|
rnCSS?: string | undefined;
|
|
602
458
|
shared: unknown;
|
|
603
|
-
}) => string | number | boolean | null | undefined)
|
|
604
|
-
rnCSS?: string | undefined;
|
|
459
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.StatusBarProps & S_32 & {
|
|
460
|
+
rnCSS?: `${string};` | undefined;
|
|
605
461
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
606
462
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
607
463
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
608
464
|
children?: React.ReactNode;
|
|
609
465
|
style?: any;
|
|
610
466
|
} & {
|
|
611
|
-
ref?:
|
|
467
|
+
ref?: React.Ref<any> | undefined;
|
|
612
468
|
}>;
|
|
613
|
-
attrs<S_33>(opts: Partial<S_33 & RN.StatusBarProps> | ((props: S_33 & RN.StatusBarProps) => Partial<S_33 & RN.StatusBarProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_33 & RN.StatusBarProps & {
|
|
469
|
+
attrs<S_33>(opts: Partial<S_33 & RN.StatusBarProps> | ((props: S_33 & RN.StatusBarProps) => Partial<S_33 & RN.StatusBarProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_33 & RN.StatusBarProps & {
|
|
614
470
|
rnCSS?: string | undefined;
|
|
615
471
|
shared: unknown;
|
|
616
|
-
}) => string | number | boolean | null | undefined)
|
|
617
|
-
rnCSS?: string | undefined;
|
|
472
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.StatusBarProps | S_33) & {
|
|
473
|
+
rnCSS?: `${string};` | undefined;
|
|
618
474
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
619
475
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
620
476
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
621
477
|
children?: React.ReactNode;
|
|
622
478
|
style?: any;
|
|
623
479
|
} & {
|
|
624
|
-
ref?:
|
|
625
|
-
}
|
|
626
|
-
rnCSS?: string | undefined;
|
|
627
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
628
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
629
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
630
|
-
children?: React.ReactNode;
|
|
631
|
-
style?: any;
|
|
632
|
-
} & {
|
|
633
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
634
|
-
})>;
|
|
480
|
+
ref?: React.Ref<any> | undefined;
|
|
481
|
+
}>;
|
|
635
482
|
};
|
|
636
483
|
SwipeableListView: {
|
|
637
|
-
<S_34>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_34 & RN.SwipeableListViewProps & {
|
|
484
|
+
<S_34>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_34 & RN.SwipeableListViewProps & {
|
|
638
485
|
rnCSS?: string | undefined;
|
|
639
486
|
shared: unknown;
|
|
640
|
-
}) => string | number | boolean | null | undefined)
|
|
641
|
-
rnCSS?: string | undefined;
|
|
487
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.SwipeableListViewProps & S_34 & {
|
|
488
|
+
rnCSS?: `${string};` | undefined;
|
|
642
489
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
643
490
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
644
491
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
645
492
|
children?: React.ReactNode;
|
|
646
493
|
style?: any;
|
|
647
494
|
} & {
|
|
648
|
-
ref?:
|
|
495
|
+
ref?: React.Ref<any> | undefined;
|
|
649
496
|
}>;
|
|
650
|
-
attrs<S_35>(opts: Partial<S_35 & RN.SwipeableListViewProps> | ((props: S_35 & RN.SwipeableListViewProps) => Partial<S_35 & RN.SwipeableListViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_35 & RN.SwipeableListViewProps & {
|
|
497
|
+
attrs<S_35>(opts: Partial<S_35 & RN.SwipeableListViewProps> | ((props: S_35 & RN.SwipeableListViewProps) => Partial<S_35 & RN.SwipeableListViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_35 & RN.SwipeableListViewProps & {
|
|
651
498
|
rnCSS?: string | undefined;
|
|
652
499
|
shared: unknown;
|
|
653
|
-
}) => string | number | boolean | null | undefined)
|
|
654
|
-
rnCSS?: string | undefined;
|
|
655
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
656
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
657
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
658
|
-
children?: React.ReactNode;
|
|
659
|
-
style?: any;
|
|
660
|
-
} & {
|
|
661
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
662
|
-
}) | (S_35 & {
|
|
663
|
-
rnCSS?: string | undefined;
|
|
500
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.SwipeableListViewProps | S_35) & {
|
|
501
|
+
rnCSS?: `${string};` | undefined;
|
|
664
502
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
665
503
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
666
504
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
667
505
|
children?: React.ReactNode;
|
|
668
506
|
style?: any;
|
|
669
507
|
} & {
|
|
670
|
-
ref?:
|
|
671
|
-
}
|
|
508
|
+
ref?: React.Ref<any> | undefined;
|
|
509
|
+
}>;
|
|
672
510
|
};
|
|
673
511
|
TabBarIOS: {
|
|
674
|
-
<S_36>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_36 & RN.TabBarIOSProps & {
|
|
512
|
+
<S_36>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_36 & RN.TabBarIOSProps & {
|
|
675
513
|
rnCSS?: string | undefined;
|
|
676
514
|
shared: unknown;
|
|
677
|
-
}) => string | number | boolean | null | undefined)
|
|
678
|
-
rnCSS?: string | undefined;
|
|
515
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TabBarIOSProps & S_36 & {
|
|
516
|
+
rnCSS?: `${string};` | undefined;
|
|
679
517
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
680
518
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
681
519
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
682
520
|
children?: React.ReactNode;
|
|
683
521
|
style?: any;
|
|
684
522
|
} & {
|
|
685
|
-
ref?:
|
|
523
|
+
ref?: React.Ref<any> | undefined;
|
|
686
524
|
}>;
|
|
687
|
-
attrs<S_37>(opts: Partial<S_37 & RN.TabBarIOSProps> | ((props: S_37 & RN.TabBarIOSProps) => Partial<S_37 & RN.TabBarIOSProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_37 & RN.TabBarIOSProps & {
|
|
525
|
+
attrs<S_37>(opts: Partial<S_37 & RN.TabBarIOSProps> | ((props: S_37 & RN.TabBarIOSProps) => Partial<S_37 & RN.TabBarIOSProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_37 & RN.TabBarIOSProps & {
|
|
688
526
|
rnCSS?: string | undefined;
|
|
689
527
|
shared: unknown;
|
|
690
|
-
}) => string | number | boolean | null | undefined)
|
|
691
|
-
rnCSS?: string | undefined;
|
|
692
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
693
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
694
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
695
|
-
children?: React.ReactNode;
|
|
696
|
-
style?: any;
|
|
697
|
-
} & {
|
|
698
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
699
|
-
}) | (S_37 & {
|
|
700
|
-
rnCSS?: string | undefined;
|
|
528
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TabBarIOSProps | S_37) & {
|
|
529
|
+
rnCSS?: `${string};` | undefined;
|
|
701
530
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
702
531
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
703
532
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
704
533
|
children?: React.ReactNode;
|
|
705
534
|
style?: any;
|
|
706
535
|
} & {
|
|
707
|
-
ref?:
|
|
708
|
-
}
|
|
536
|
+
ref?: React.Ref<any> | undefined;
|
|
537
|
+
}>;
|
|
709
538
|
};
|
|
710
539
|
Text: {
|
|
711
|
-
<S_38>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_38 & RN.TextProps & {
|
|
540
|
+
<S_38>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_38 & RN.TextProps & {
|
|
712
541
|
rnCSS?: string | undefined;
|
|
713
542
|
shared: unknown;
|
|
714
|
-
}) => string | number | boolean | null | undefined)
|
|
715
|
-
rnCSS?: string | undefined;
|
|
543
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TextProps & S_38 & {
|
|
544
|
+
rnCSS?: `${string};` | undefined;
|
|
716
545
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
717
546
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
718
547
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
719
548
|
children?: React.ReactNode;
|
|
720
549
|
style?: any;
|
|
721
550
|
} & {
|
|
722
|
-
ref?:
|
|
551
|
+
ref?: React.Ref<any> | undefined;
|
|
723
552
|
}>;
|
|
724
|
-
attrs<S_39>(opts: Partial<S_39 & RN.TextProps> | ((props: S_39 & RN.TextProps) => Partial<S_39 & RN.TextProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_39 & RN.TextProps & {
|
|
553
|
+
attrs<S_39>(opts: Partial<S_39 & RN.TextProps> | ((props: S_39 & RN.TextProps) => Partial<S_39 & RN.TextProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_39 & RN.TextProps & {
|
|
725
554
|
rnCSS?: string | undefined;
|
|
726
555
|
shared: unknown;
|
|
727
|
-
}) => string | number | boolean | null | undefined)
|
|
728
|
-
rnCSS?: string | undefined;
|
|
729
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
730
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
731
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
732
|
-
children?: React.ReactNode;
|
|
733
|
-
style?: any;
|
|
734
|
-
} & {
|
|
735
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
736
|
-
}) | (S_39 & {
|
|
737
|
-
rnCSS?: string | undefined;
|
|
556
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TextProps | S_39) & {
|
|
557
|
+
rnCSS?: `${string};` | undefined;
|
|
738
558
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
739
559
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
740
560
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
741
561
|
children?: React.ReactNode;
|
|
742
562
|
style?: any;
|
|
743
563
|
} & {
|
|
744
|
-
ref?:
|
|
745
|
-
}
|
|
564
|
+
ref?: React.Ref<any> | undefined;
|
|
565
|
+
}>;
|
|
746
566
|
};
|
|
747
567
|
TextInput: {
|
|
748
|
-
<S_40>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_40 & RN.TextInputProps & {
|
|
568
|
+
<S_40>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_40 & RN.TextInputProps & {
|
|
749
569
|
rnCSS?: string | undefined;
|
|
750
570
|
shared: unknown;
|
|
751
|
-
}) => string | number | boolean | null | undefined)
|
|
752
|
-
rnCSS?: string | undefined;
|
|
571
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TextInputProps & S_40 & {
|
|
572
|
+
rnCSS?: `${string};` | undefined;
|
|
753
573
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
754
574
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
755
575
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
756
576
|
children?: React.ReactNode;
|
|
757
577
|
style?: any;
|
|
758
578
|
} & {
|
|
759
|
-
ref?:
|
|
579
|
+
ref?: React.Ref<any> | undefined;
|
|
760
580
|
}>;
|
|
761
|
-
attrs<S_41>(opts: Partial<S_41 & RN.TextInputProps> | ((props: S_41 & RN.TextInputProps) => Partial<S_41 & RN.TextInputProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_41 & RN.TextInputProps & {
|
|
581
|
+
attrs<S_41>(opts: Partial<S_41 & RN.TextInputProps> | ((props: S_41 & RN.TextInputProps) => Partial<S_41 & RN.TextInputProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_41 & RN.TextInputProps & {
|
|
762
582
|
rnCSS?: string | undefined;
|
|
763
583
|
shared: unknown;
|
|
764
|
-
}) => string | number | boolean | null | undefined)
|
|
765
|
-
rnCSS?: string | undefined;
|
|
766
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
767
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
768
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
769
|
-
children?: React.ReactNode;
|
|
770
|
-
style?: any;
|
|
771
|
-
} & {
|
|
772
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
773
|
-
}) | (S_41 & {
|
|
774
|
-
rnCSS?: string | undefined;
|
|
584
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TextInputProps | S_41) & {
|
|
585
|
+
rnCSS?: `${string};` | undefined;
|
|
775
586
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
776
587
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
777
588
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
778
589
|
children?: React.ReactNode;
|
|
779
590
|
style?: any;
|
|
780
591
|
} & {
|
|
781
|
-
ref?:
|
|
782
|
-
}
|
|
592
|
+
ref?: React.Ref<any> | undefined;
|
|
593
|
+
}>;
|
|
783
594
|
};
|
|
784
595
|
ToolbarAndroid: {
|
|
785
|
-
<S_42>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_42 & RN.ToolbarAndroidProps & {
|
|
596
|
+
<S_42>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_42 & RN.ToolbarAndroidProps & {
|
|
786
597
|
rnCSS?: string | undefined;
|
|
787
598
|
shared: unknown;
|
|
788
|
-
}) => string | number | boolean | null | undefined)
|
|
789
|
-
rnCSS?: string | undefined;
|
|
599
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ToolbarAndroidProps & S_42 & {
|
|
600
|
+
rnCSS?: `${string};` | undefined;
|
|
790
601
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
791
602
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
792
603
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
793
604
|
children?: React.ReactNode;
|
|
794
605
|
style?: any;
|
|
795
606
|
} & {
|
|
796
|
-
ref?:
|
|
607
|
+
ref?: React.Ref<any> | undefined;
|
|
797
608
|
}>;
|
|
798
|
-
attrs<S_43>(opts: Partial<S_43 & RN.ToolbarAndroidProps> | ((props: S_43 & RN.ToolbarAndroidProps) => Partial<S_43 & RN.ToolbarAndroidProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_43 & RN.ToolbarAndroidProps & {
|
|
609
|
+
attrs<S_43>(opts: Partial<S_43 & RN.ToolbarAndroidProps> | ((props: S_43 & RN.ToolbarAndroidProps) => Partial<S_43 & RN.ToolbarAndroidProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_43 & RN.ToolbarAndroidProps & {
|
|
799
610
|
rnCSS?: string | undefined;
|
|
800
611
|
shared: unknown;
|
|
801
|
-
}) => string | number | boolean | null | undefined)
|
|
802
|
-
rnCSS?: string | undefined;
|
|
612
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ToolbarAndroidProps | S_43) & {
|
|
613
|
+
rnCSS?: `${string};` | undefined;
|
|
803
614
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
804
615
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
805
616
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
806
617
|
children?: React.ReactNode;
|
|
807
618
|
style?: any;
|
|
808
619
|
} & {
|
|
809
|
-
ref?:
|
|
810
|
-
}
|
|
811
|
-
rnCSS?: string | undefined;
|
|
812
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
813
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
814
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
815
|
-
children?: React.ReactNode;
|
|
816
|
-
style?: any;
|
|
817
|
-
} & {
|
|
818
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
819
|
-
})>;
|
|
620
|
+
ref?: React.Ref<any> | undefined;
|
|
621
|
+
}>;
|
|
820
622
|
};
|
|
821
623
|
TouchableHighlight: {
|
|
822
|
-
<S_44>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_44 & RN.TouchableHighlightProps & {
|
|
624
|
+
<S_44>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_44 & RN.TouchableHighlightProps & {
|
|
823
625
|
rnCSS?: string | undefined;
|
|
824
626
|
shared: unknown;
|
|
825
|
-
}) => string | number | boolean | null | undefined)
|
|
826
|
-
rnCSS?: string | undefined;
|
|
627
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableHighlightProps & S_44 & {
|
|
628
|
+
rnCSS?: `${string};` | undefined;
|
|
827
629
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
828
630
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
829
631
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
830
632
|
children?: React.ReactNode;
|
|
831
633
|
style?: any;
|
|
832
634
|
} & {
|
|
833
|
-
ref?:
|
|
635
|
+
ref?: React.Ref<any> | undefined;
|
|
834
636
|
}>;
|
|
835
|
-
attrs<S_45>(opts: Partial<S_45 & RN.TouchableHighlightProps> | ((props: S_45 & RN.TouchableHighlightProps) => Partial<S_45 & RN.TouchableHighlightProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_45 & RN.TouchableHighlightProps & {
|
|
637
|
+
attrs<S_45>(opts: Partial<S_45 & RN.TouchableHighlightProps> | ((props: S_45 & RN.TouchableHighlightProps) => Partial<S_45 & RN.TouchableHighlightProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_45 & RN.TouchableHighlightProps & {
|
|
836
638
|
rnCSS?: string | undefined;
|
|
837
639
|
shared: unknown;
|
|
838
|
-
}) => string | number | boolean | null | undefined)
|
|
839
|
-
rnCSS?: string | undefined;
|
|
840
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
841
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
842
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
843
|
-
children?: React.ReactNode;
|
|
844
|
-
style?: any;
|
|
845
|
-
} & {
|
|
846
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
847
|
-
}) | (S_45 & {
|
|
848
|
-
rnCSS?: string | undefined;
|
|
640
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableHighlightProps | S_45) & {
|
|
641
|
+
rnCSS?: `${string};` | undefined;
|
|
849
642
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
850
643
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
851
644
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
852
645
|
children?: React.ReactNode;
|
|
853
646
|
style?: any;
|
|
854
647
|
} & {
|
|
855
|
-
ref?:
|
|
856
|
-
}
|
|
648
|
+
ref?: React.Ref<any> | undefined;
|
|
649
|
+
}>;
|
|
857
650
|
};
|
|
858
651
|
TouchableNativeFeedback: {
|
|
859
|
-
<S_46>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_46 & RN.TouchableNativeFeedbackProps & {
|
|
652
|
+
<S_46>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_46 & RN.TouchableNativeFeedbackProps & {
|
|
860
653
|
rnCSS?: string | undefined;
|
|
861
654
|
shared: unknown;
|
|
862
|
-
}) => string | number | boolean | null | undefined)
|
|
863
|
-
rnCSS?: string | undefined;
|
|
655
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableNativeFeedbackProps & S_46 & {
|
|
656
|
+
rnCSS?: `${string};` | undefined;
|
|
864
657
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
865
658
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
866
659
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
867
660
|
children?: React.ReactNode;
|
|
868
661
|
style?: any;
|
|
869
662
|
} & {
|
|
870
|
-
ref?:
|
|
663
|
+
ref?: React.Ref<any> | undefined;
|
|
871
664
|
}>;
|
|
872
|
-
attrs<S_47>(opts: Partial<S_47 & RN.TouchableNativeFeedbackProps> | ((props: S_47 & RN.TouchableNativeFeedbackProps) => Partial<S_47 & RN.TouchableNativeFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_47 & RN.TouchableNativeFeedbackProps & {
|
|
665
|
+
attrs<S_47>(opts: Partial<S_47 & RN.TouchableNativeFeedbackProps> | ((props: S_47 & RN.TouchableNativeFeedbackProps) => Partial<S_47 & RN.TouchableNativeFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_47 & RN.TouchableNativeFeedbackProps & {
|
|
873
666
|
rnCSS?: string | undefined;
|
|
874
667
|
shared: unknown;
|
|
875
|
-
}) => string | number | boolean | null | undefined)
|
|
876
|
-
rnCSS?: string | undefined;
|
|
877
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
878
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
879
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
880
|
-
children?: React.ReactNode;
|
|
881
|
-
style?: any;
|
|
882
|
-
} & {
|
|
883
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
884
|
-
}) | (S_47 & {
|
|
885
|
-
rnCSS?: string | undefined;
|
|
668
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableNativeFeedbackProps | S_47) & {
|
|
669
|
+
rnCSS?: `${string};` | undefined;
|
|
886
670
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
887
671
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
888
672
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
889
673
|
children?: React.ReactNode;
|
|
890
674
|
style?: any;
|
|
891
675
|
} & {
|
|
892
|
-
ref?:
|
|
893
|
-
}
|
|
676
|
+
ref?: React.Ref<any> | undefined;
|
|
677
|
+
}>;
|
|
894
678
|
};
|
|
895
679
|
TouchableOpacity: {
|
|
896
|
-
<S_48>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_48 & RN.TouchableOpacityProps & {
|
|
680
|
+
<S_48>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_48 & RN.TouchableOpacityProps & {
|
|
897
681
|
rnCSS?: string | undefined;
|
|
898
682
|
shared: unknown;
|
|
899
|
-
}) => string | number | boolean | null | undefined)
|
|
900
|
-
rnCSS?: string | undefined;
|
|
683
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableOpacityProps & S_48 & {
|
|
684
|
+
rnCSS?: `${string};` | undefined;
|
|
901
685
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
902
686
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
903
687
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
904
688
|
children?: React.ReactNode;
|
|
905
689
|
style?: any;
|
|
906
690
|
} & {
|
|
907
|
-
ref?:
|
|
691
|
+
ref?: React.Ref<any> | undefined;
|
|
908
692
|
}>;
|
|
909
|
-
attrs<S_49>(opts: Partial<S_49 & RN.TouchableOpacityProps> | ((props: S_49 & RN.TouchableOpacityProps) => Partial<S_49 & RN.TouchableOpacityProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_49 & RN.TouchableOpacityProps & {
|
|
693
|
+
attrs<S_49>(opts: Partial<S_49 & RN.TouchableOpacityProps> | ((props: S_49 & RN.TouchableOpacityProps) => Partial<S_49 & RN.TouchableOpacityProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_49 & RN.TouchableOpacityProps & {
|
|
910
694
|
rnCSS?: string | undefined;
|
|
911
695
|
shared: unknown;
|
|
912
|
-
}) => string | number | boolean | null | undefined)
|
|
913
|
-
rnCSS?: string | undefined;
|
|
696
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableOpacityProps | S_49) & {
|
|
697
|
+
rnCSS?: `${string};` | undefined;
|
|
914
698
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
915
699
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
916
700
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
917
701
|
children?: React.ReactNode;
|
|
918
702
|
style?: any;
|
|
919
703
|
} & {
|
|
920
|
-
ref?:
|
|
921
|
-
}
|
|
922
|
-
rnCSS?: string | undefined;
|
|
923
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
924
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
925
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
926
|
-
children?: React.ReactNode;
|
|
927
|
-
style?: any;
|
|
928
|
-
} & {
|
|
929
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
930
|
-
})>;
|
|
704
|
+
ref?: React.Ref<any> | undefined;
|
|
705
|
+
}>;
|
|
931
706
|
};
|
|
932
707
|
TouchableWithoutFeedback: {
|
|
933
|
-
<S_50>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_50 & RN.TouchableWithoutFeedbackProps & {
|
|
708
|
+
<S_50>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_50 & RN.TouchableWithoutFeedbackProps & {
|
|
934
709
|
rnCSS?: string | undefined;
|
|
935
710
|
shared: unknown;
|
|
936
|
-
}) => string | number | boolean | null | undefined)
|
|
937
|
-
rnCSS?: string | undefined;
|
|
711
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableWithoutFeedbackProps & S_50 & {
|
|
712
|
+
rnCSS?: `${string};` | undefined;
|
|
938
713
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
939
714
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
940
715
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
941
716
|
children?: React.ReactNode;
|
|
942
717
|
style?: any;
|
|
943
718
|
} & {
|
|
944
|
-
ref?:
|
|
719
|
+
ref?: React.Ref<any> | undefined;
|
|
945
720
|
}>;
|
|
946
|
-
attrs<S_51>(opts: Partial<S_51 & RN.TouchableWithoutFeedbackProps> | ((props: S_51 & RN.TouchableWithoutFeedbackProps) => Partial<S_51 & RN.TouchableWithoutFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_51 & RN.TouchableWithoutFeedbackProps & {
|
|
721
|
+
attrs<S_51>(opts: Partial<S_51 & RN.TouchableWithoutFeedbackProps> | ((props: S_51 & RN.TouchableWithoutFeedbackProps) => Partial<S_51 & RN.TouchableWithoutFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_51 & RN.TouchableWithoutFeedbackProps & {
|
|
947
722
|
rnCSS?: string | undefined;
|
|
948
723
|
shared: unknown;
|
|
949
|
-
}) => string | number | boolean | null | undefined)
|
|
950
|
-
rnCSS?: string | undefined;
|
|
724
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableWithoutFeedbackProps | S_51) & {
|
|
725
|
+
rnCSS?: `${string};` | undefined;
|
|
951
726
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
952
727
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
953
728
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
954
729
|
children?: React.ReactNode;
|
|
955
730
|
style?: any;
|
|
956
731
|
} & {
|
|
957
|
-
ref?:
|
|
958
|
-
}
|
|
959
|
-
rnCSS?: string | undefined;
|
|
960
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
961
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
962
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
963
|
-
children?: React.ReactNode;
|
|
964
|
-
style?: any;
|
|
965
|
-
} & {
|
|
966
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
967
|
-
})>;
|
|
732
|
+
ref?: React.Ref<any> | undefined;
|
|
733
|
+
}>;
|
|
968
734
|
};
|
|
969
735
|
View: {
|
|
970
|
-
<S_30>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_30 & RN.ViewProps & {
|
|
736
|
+
<S_30>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_30 & RN.ViewProps & {
|
|
971
737
|
rnCSS?: string | undefined;
|
|
972
738
|
shared: unknown;
|
|
973
|
-
}) => string | number | boolean | null | undefined)
|
|
974
|
-
rnCSS?: string | undefined;
|
|
739
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ViewProps & S_30 & {
|
|
740
|
+
rnCSS?: `${string};` | undefined;
|
|
975
741
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
976
742
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
977
743
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
978
744
|
children?: React.ReactNode;
|
|
979
745
|
style?: any;
|
|
980
746
|
} & {
|
|
981
|
-
ref?:
|
|
747
|
+
ref?: React.Ref<any> | undefined;
|
|
982
748
|
}>;
|
|
983
|
-
attrs<S_31>(opts: Partial<S_31 & RN.ViewProps> | ((props: S_31 & RN.ViewProps) => Partial<S_31 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_31 & RN.ViewProps & {
|
|
749
|
+
attrs<S_31>(opts: Partial<S_31 & RN.ViewProps> | ((props: S_31 & RN.ViewProps) => Partial<S_31 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_31 & RN.ViewProps & {
|
|
984
750
|
rnCSS?: string | undefined;
|
|
985
751
|
shared: unknown;
|
|
986
|
-
}) => string | number | boolean | null | undefined)
|
|
987
|
-
rnCSS?: string | undefined;
|
|
988
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
989
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
990
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
991
|
-
children?: React.ReactNode;
|
|
992
|
-
style?: any;
|
|
993
|
-
} & {
|
|
994
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
995
|
-
}) | (S_31 & {
|
|
996
|
-
rnCSS?: string | undefined;
|
|
752
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ViewProps | S_31) & {
|
|
753
|
+
rnCSS?: `${string};` | undefined;
|
|
997
754
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
998
755
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
999
756
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
1000
757
|
children?: React.ReactNode;
|
|
1001
758
|
style?: any;
|
|
1002
759
|
} & {
|
|
1003
|
-
ref?:
|
|
1004
|
-
}
|
|
760
|
+
ref?: React.Ref<any> | undefined;
|
|
761
|
+
}>;
|
|
1005
762
|
};
|
|
1006
763
|
ViewPagerAndroid: {
|
|
1007
|
-
<S_52>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_52 & RN.ViewPagerAndroidProps & {
|
|
764
|
+
<S_52>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_52 & RN.ViewPagerAndroidProps & {
|
|
1008
765
|
rnCSS?: string | undefined;
|
|
1009
766
|
shared: unknown;
|
|
1010
|
-
}) => string | number | boolean | null | undefined)
|
|
1011
|
-
rnCSS?: string | undefined;
|
|
767
|
+
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ViewPagerAndroidProps & S_52 & {
|
|
768
|
+
rnCSS?: `${string};` | undefined;
|
|
1012
769
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1013
770
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1014
771
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
1015
772
|
children?: React.ReactNode;
|
|
1016
773
|
style?: any;
|
|
1017
774
|
} & {
|
|
1018
|
-
ref?:
|
|
775
|
+
ref?: React.Ref<any> | undefined;
|
|
1019
776
|
}>;
|
|
1020
|
-
attrs<S_53>(opts: Partial<S_53 & RN.ViewPagerAndroidProps> | ((props: S_53 & RN.ViewPagerAndroidProps) => Partial<S_53 & RN.ViewPagerAndroidProps>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_53 & RN.ViewPagerAndroidProps & {
|
|
777
|
+
attrs<S_53>(opts: Partial<S_53 & RN.ViewPagerAndroidProps> | ((props: S_53 & RN.ViewPagerAndroidProps) => Partial<S_53 & RN.ViewPagerAndroidProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_53 & RN.ViewPagerAndroidProps & {
|
|
1021
778
|
rnCSS?: string | undefined;
|
|
1022
779
|
shared: unknown;
|
|
1023
|
-
}) => string | number | boolean | null | undefined)
|
|
1024
|
-
rnCSS?: string | undefined;
|
|
780
|
+
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ViewPagerAndroidProps | S_53) & {
|
|
781
|
+
rnCSS?: `${string};` | undefined;
|
|
1025
782
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1026
783
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1027
784
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
1028
785
|
children?: React.ReactNode;
|
|
1029
786
|
style?: any;
|
|
1030
787
|
} & {
|
|
1031
|
-
ref?:
|
|
1032
|
-
}
|
|
1033
|
-
rnCSS?: string | undefined;
|
|
1034
|
-
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1035
|
-
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1036
|
-
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
1037
|
-
children?: React.ReactNode;
|
|
1038
|
-
style?: any;
|
|
1039
|
-
} & {
|
|
1040
|
-
ref?: ((instance: any) => void) | React.RefObject<any> | null | undefined;
|
|
1041
|
-
})>;
|
|
788
|
+
ref?: React.Ref<any> | undefined;
|
|
789
|
+
}>;
|
|
1042
790
|
};
|
|
1043
791
|
FlatList: {
|
|
1044
|
-
<S_54>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_54 & {
|
|
792
|
+
<S_54>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_54 & {
|
|
1045
793
|
rnCSS?: string | undefined;
|
|
1046
794
|
shared: unknown;
|
|
1047
|
-
}) => string | number | boolean | null | undefined)
|
|
1048
|
-
rnCSS?: string | undefined;
|
|
795
|
+
}) => string | number | boolean | null | undefined))[]): <Type>(props: S_54 & RN.FlatListProps<Type> & {
|
|
796
|
+
rnCSS?: `${string};` | undefined;
|
|
1049
797
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1050
798
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1051
799
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
1052
800
|
children?: React.ReactNode;
|
|
1053
801
|
style?: any;
|
|
1054
802
|
}) => JSX.Element;
|
|
1055
|
-
attrs<S_55>(opts: Partial<S_55 & RN.FlatListProps<any>> | ((props: S_55 & RN.FlatListProps<any>) => Partial<S_55 & RN.FlatListProps<any>>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_55 & RN.FlatListProps<any> & {
|
|
803
|
+
attrs<S_55>(opts: Partial<S_55 & RN.FlatListProps<any>> | ((props: S_55 & RN.FlatListProps<any>) => Partial<S_55 & RN.FlatListProps<any>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_55 & RN.FlatListProps<any> & {
|
|
1056
804
|
rnCSS?: string | undefined;
|
|
1057
805
|
shared: unknown;
|
|
1058
|
-
}) => string | number | boolean | null | undefined)
|
|
1059
|
-
rnCSS?: string | undefined;
|
|
806
|
+
}) => string | number | boolean | null | undefined))[]) => <Props>(componentProps: S_55 & RN.FlatListProps<Props> & {
|
|
807
|
+
rnCSS?: `${string};` | undefined;
|
|
1060
808
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1061
809
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1062
810
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
@@ -1065,22 +813,22 @@ declare const styled: {
|
|
|
1065
813
|
}) => JSX.Element;
|
|
1066
814
|
};
|
|
1067
815
|
SectionList: {
|
|
1068
|
-
<S_56>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_56 & {
|
|
816
|
+
<S_56>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_56 & {
|
|
1069
817
|
rnCSS?: string | undefined;
|
|
1070
818
|
shared: unknown;
|
|
1071
|
-
}) => string | number | boolean | null | undefined)
|
|
1072
|
-
rnCSS?: string | undefined;
|
|
819
|
+
}) => string | number | boolean | null | undefined))[]): <Type_1>(props: S_56 & RN.SectionListProps<Type_1, RN.DefaultSectionT> & {
|
|
820
|
+
rnCSS?: `${string};` | undefined;
|
|
1073
821
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1074
822
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1075
823
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
1076
824
|
children?: React.ReactNode;
|
|
1077
825
|
style?: any;
|
|
1078
826
|
}) => JSX.Element;
|
|
1079
|
-
attrs<S_57>(opts: Partial<S_57 & RN.SectionListProps<any, RN.DefaultSectionT>> | ((props: S_57 & RN.SectionListProps<any, RN.DefaultSectionT>) => Partial<S_57 & RN.SectionListProps<any, RN.DefaultSectionT>>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_57 & RN.SectionListProps<any, RN.DefaultSectionT> & {
|
|
827
|
+
attrs<S_57>(opts: Partial<S_57 & RN.SectionListProps<any, RN.DefaultSectionT>> | ((props: S_57 & RN.SectionListProps<any, RN.DefaultSectionT>) => Partial<S_57 & RN.SectionListProps<any, RN.DefaultSectionT>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_57 & RN.SectionListProps<any, RN.DefaultSectionT> & {
|
|
1080
828
|
rnCSS?: string | undefined;
|
|
1081
829
|
shared: unknown;
|
|
1082
|
-
}) => string | number | boolean | null | undefined)
|
|
1083
|
-
rnCSS?: string | undefined;
|
|
830
|
+
}) => string | number | boolean | null | undefined))[]) => <Props_1>(componentProps: S_57 & RN.SectionListProps<Props_1, RN.DefaultSectionT> & {
|
|
831
|
+
rnCSS?: `${string};` | undefined;
|
|
1084
832
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1085
833
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1086
834
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
@@ -1089,22 +837,22 @@ declare const styled: {
|
|
|
1089
837
|
}) => JSX.Element;
|
|
1090
838
|
};
|
|
1091
839
|
VirtualizedList: {
|
|
1092
|
-
<S_58>(chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_58 & {
|
|
840
|
+
<S_58>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_58 & {
|
|
1093
841
|
rnCSS?: string | undefined;
|
|
1094
842
|
shared: unknown;
|
|
1095
|
-
}) => string | number | boolean | null | undefined)
|
|
1096
|
-
rnCSS?: string | undefined;
|
|
843
|
+
}) => string | number | boolean | null | undefined))[]): <Type_2>(props: S_58 & RN.VirtualizedListProps<Type_2> & {
|
|
844
|
+
rnCSS?: `${string};` | undefined;
|
|
1097
845
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1098
846
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1099
847
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
1100
848
|
children?: React.ReactNode;
|
|
1101
849
|
style?: any;
|
|
1102
850
|
}) => JSX.Element;
|
|
1103
|
-
attrs<S_59>(opts: Partial<S_59 & RN.VirtualizedListProps<any>> | ((props: S_59 & RN.VirtualizedListProps<any>) => Partial<S_59 & RN.VirtualizedListProps<any>>)): (chunks: TemplateStringsArray, ...functs: (string | number | boolean | ((arg: S_59 & RN.VirtualizedListProps<any> & {
|
|
851
|
+
attrs<S_59>(opts: Partial<S_59 & RN.VirtualizedListProps<any>> | ((props: S_59 & RN.VirtualizedListProps<any>) => Partial<S_59 & RN.VirtualizedListProps<any>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_59 & RN.VirtualizedListProps<any> & {
|
|
1104
852
|
rnCSS?: string | undefined;
|
|
1105
853
|
shared: unknown;
|
|
1106
|
-
}) => string | number | boolean | null | undefined)
|
|
1107
|
-
rnCSS?: string | undefined;
|
|
854
|
+
}) => string | number | boolean | null | undefined))[]) => <Props_2>(componentProps: S_59 & RN.VirtualizedListProps<Props_2> & {
|
|
855
|
+
rnCSS?: `${string};` | undefined;
|
|
1108
856
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1109
857
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
1110
858
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|