rn-css 1.7.0 → 1.8.1
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/CHANGELOG.md +9 -0
- package/README.md +13 -2
- package/dist/convertStyle.d.ts +2 -3
- package/dist/convertUnits.js +1 -1
- package/dist/cssToRN/index.d.ts +1 -1
- package/dist/index.d.ts +157 -156
- package/dist/rnToCss.d.ts +3 -0
- package/dist/rnToCss.js +8 -0
- package/dist/styleComponent.d.ts +13 -13
- package/dist/styleComponent.js +9 -1
- package/dist/types.d.ts +4 -2
- package/package.json +1 -1
- package/src/convertStyle.tsx +5 -5
- package/src/convertUnits.ts +1 -1
- package/src/index.tsx +2 -1
- package/src/rnToCss.ts +11 -0
- package/src/styleComponent.tsx +27 -17
- package/src/types.ts +6 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,776 +1,777 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import * as RN from 'react-native';
|
|
3
3
|
import './polyfill';
|
|
4
|
+
import { AnyStyle } from './types';
|
|
4
5
|
export { cssToRNStyle } from './cssToRN';
|
|
5
6
|
export { SharedValue, FontSizeContext, RemContext, DefaultTheme } from './styleComponent';
|
|
6
7
|
export * from './useTheme';
|
|
7
8
|
declare const styled: {
|
|
8
9
|
<T>(Component: React.ComponentType<T>): {
|
|
9
|
-
<S>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S & T & {
|
|
10
|
+
<S>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S & T & {
|
|
10
11
|
rnCSS?: string | undefined;
|
|
11
12
|
shared: unknown;
|
|
12
13
|
theme: import("./styleComponent").DefaultTheme;
|
|
13
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<T & S & {
|
|
14
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<T & S & {
|
|
14
15
|
rnCSS?: `${string};` | undefined;
|
|
15
16
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
16
17
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
17
18
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
18
19
|
children?: React.ReactNode;
|
|
19
|
-
style?:
|
|
20
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
20
21
|
} & {
|
|
21
22
|
ref?: React.Ref<any> | undefined;
|
|
22
23
|
}>;
|
|
23
|
-
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 & {
|
|
24
|
+
attrs<S_1>(opts: Partial<S_1 & T> | ((props: S_1 & T) => Partial<S_1 & T>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_1 & T & {
|
|
24
25
|
rnCSS?: string | undefined;
|
|
25
26
|
shared: unknown;
|
|
26
27
|
theme: import("./styleComponent").DefaultTheme;
|
|
27
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(T | S_1) & {
|
|
28
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(T | S_1) & {
|
|
28
29
|
rnCSS?: `${string};` | undefined;
|
|
29
30
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
30
31
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
31
32
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
32
33
|
children?: React.ReactNode;
|
|
33
|
-
style?:
|
|
34
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
34
35
|
} & {
|
|
35
36
|
ref?: React.Ref<any> | undefined;
|
|
36
37
|
}>;
|
|
37
38
|
};
|
|
38
39
|
ActivityIndicator: {
|
|
39
|
-
<S_2>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_2 & RN.ActivityIndicatorProps & {
|
|
40
|
+
<S_2>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_2 & RN.ActivityIndicatorProps & {
|
|
40
41
|
rnCSS?: string | undefined;
|
|
41
42
|
shared: unknown;
|
|
42
43
|
theme: import("./styleComponent").DefaultTheme;
|
|
43
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ActivityIndicatorProps & S_2 & {
|
|
44
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ActivityIndicatorProps & S_2 & {
|
|
44
45
|
rnCSS?: `${string};` | undefined;
|
|
45
46
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
46
47
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
47
48
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
48
49
|
children?: React.ReactNode;
|
|
49
|
-
style?:
|
|
50
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
50
51
|
} & {
|
|
51
52
|
ref?: React.Ref<any> | undefined;
|
|
52
53
|
}>;
|
|
53
|
-
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 & {
|
|
54
|
+
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 | import("./types").CompleteStyle | null | undefined) | ((arg: S_3 & RN.ActivityIndicatorProps & {
|
|
54
55
|
rnCSS?: string | undefined;
|
|
55
56
|
shared: unknown;
|
|
56
57
|
theme: import("./styleComponent").DefaultTheme;
|
|
57
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ActivityIndicatorProps | S_3) & {
|
|
58
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ActivityIndicatorProps | S_3) & {
|
|
58
59
|
rnCSS?: `${string};` | undefined;
|
|
59
60
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
60
61
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
61
62
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
62
63
|
children?: React.ReactNode;
|
|
63
|
-
style?:
|
|
64
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
64
65
|
} & {
|
|
65
66
|
ref?: React.Ref<any> | undefined;
|
|
66
67
|
}>;
|
|
67
68
|
};
|
|
68
69
|
Button: {
|
|
69
|
-
<S_4>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_4 & RN.ButtonProps & {
|
|
70
|
+
<S_4>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_4 & RN.ButtonProps & {
|
|
70
71
|
rnCSS?: string | undefined;
|
|
71
72
|
shared: unknown;
|
|
72
73
|
theme: import("./styleComponent").DefaultTheme;
|
|
73
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ButtonProps & S_4 & {
|
|
74
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ButtonProps & S_4 & {
|
|
74
75
|
rnCSS?: `${string};` | undefined;
|
|
75
76
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
76
77
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
77
78
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
78
79
|
children?: React.ReactNode;
|
|
79
|
-
style?:
|
|
80
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
80
81
|
} & {
|
|
81
82
|
ref?: React.Ref<any> | undefined;
|
|
82
83
|
}>;
|
|
83
|
-
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 & {
|
|
84
|
+
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 | import("./types").CompleteStyle | null | undefined) | ((arg: S_5 & RN.ButtonProps & {
|
|
84
85
|
rnCSS?: string | undefined;
|
|
85
86
|
shared: unknown;
|
|
86
87
|
theme: import("./styleComponent").DefaultTheme;
|
|
87
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ButtonProps | S_5) & {
|
|
88
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ButtonProps | S_5) & {
|
|
88
89
|
rnCSS?: `${string};` | undefined;
|
|
89
90
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
90
91
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
91
92
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
92
93
|
children?: React.ReactNode;
|
|
93
|
-
style?:
|
|
94
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
94
95
|
} & {
|
|
95
96
|
ref?: React.Ref<any> | undefined;
|
|
96
97
|
}>;
|
|
97
98
|
};
|
|
98
99
|
DrawerLayoutAndroid: {
|
|
99
|
-
<S_6>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_6 & RN.DrawerLayoutAndroidProps & {
|
|
100
|
+
<S_6>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_6 & RN.DrawerLayoutAndroidProps & {
|
|
100
101
|
rnCSS?: string | undefined;
|
|
101
102
|
shared: unknown;
|
|
102
103
|
theme: import("./styleComponent").DefaultTheme;
|
|
103
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.DrawerLayoutAndroidProps & S_6 & {
|
|
104
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.DrawerLayoutAndroidProps & S_6 & {
|
|
104
105
|
rnCSS?: `${string};` | undefined;
|
|
105
106
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
106
107
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
107
108
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
108
109
|
children?: React.ReactNode;
|
|
109
|
-
style?:
|
|
110
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
110
111
|
} & {
|
|
111
112
|
ref?: React.Ref<any> | undefined;
|
|
112
113
|
}>;
|
|
113
|
-
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 & {
|
|
114
|
+
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 | import("./types").CompleteStyle | null | undefined) | ((arg: S_7 & RN.DrawerLayoutAndroidProps & {
|
|
114
115
|
rnCSS?: string | undefined;
|
|
115
116
|
shared: unknown;
|
|
116
117
|
theme: import("./styleComponent").DefaultTheme;
|
|
117
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.DrawerLayoutAndroidProps | S_7) & {
|
|
118
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.DrawerLayoutAndroidProps | S_7) & {
|
|
118
119
|
rnCSS?: `${string};` | undefined;
|
|
119
120
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
120
121
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
121
122
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
122
123
|
children?: React.ReactNode;
|
|
123
|
-
style?:
|
|
124
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
124
125
|
} & {
|
|
125
126
|
ref?: React.Ref<any> | undefined;
|
|
126
127
|
}>;
|
|
127
128
|
};
|
|
128
129
|
Image: {
|
|
129
|
-
<S_8>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_8 & RN.ImageProps & {
|
|
130
|
+
<S_8>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_8 & RN.ImageProps & {
|
|
130
131
|
rnCSS?: string | undefined;
|
|
131
132
|
shared: unknown;
|
|
132
133
|
theme: import("./styleComponent").DefaultTheme;
|
|
133
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ImageProps & S_8 & {
|
|
134
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ImageProps & S_8 & {
|
|
134
135
|
rnCSS?: `${string};` | undefined;
|
|
135
136
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
136
137
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
137
138
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
138
139
|
children?: React.ReactNode;
|
|
139
|
-
style?:
|
|
140
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
140
141
|
} & {
|
|
141
142
|
ref?: React.Ref<any> | undefined;
|
|
142
143
|
}>;
|
|
143
|
-
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 & {
|
|
144
|
+
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 | import("./types").CompleteStyle | null | undefined) | ((arg: S_9 & RN.ImageProps & {
|
|
144
145
|
rnCSS?: string | undefined;
|
|
145
146
|
shared: unknown;
|
|
146
147
|
theme: import("./styleComponent").DefaultTheme;
|
|
147
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ImageProps | S_9) & {
|
|
148
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ImageProps | S_9) & {
|
|
148
149
|
rnCSS?: `${string};` | undefined;
|
|
149
150
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
150
151
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
151
152
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
152
153
|
children?: React.ReactNode;
|
|
153
|
-
style?:
|
|
154
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
154
155
|
} & {
|
|
155
156
|
ref?: React.Ref<any> | undefined;
|
|
156
157
|
}>;
|
|
157
158
|
};
|
|
158
159
|
ImageBackground: {
|
|
159
|
-
<S_10>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_10 & RN.ImageBackgroundProps & {
|
|
160
|
+
<S_10>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_10 & RN.ImageBackgroundProps & {
|
|
160
161
|
rnCSS?: string | undefined;
|
|
161
162
|
shared: unknown;
|
|
162
163
|
theme: import("./styleComponent").DefaultTheme;
|
|
163
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ImageBackgroundProps & S_10 & {
|
|
164
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ImageBackgroundProps & S_10 & {
|
|
164
165
|
rnCSS?: `${string};` | undefined;
|
|
165
166
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
166
167
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
167
168
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
168
169
|
children?: React.ReactNode;
|
|
169
|
-
style?:
|
|
170
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
170
171
|
} & {
|
|
171
172
|
ref?: React.Ref<any> | undefined;
|
|
172
173
|
}>;
|
|
173
|
-
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 & {
|
|
174
|
+
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 | import("./types").CompleteStyle | null | undefined) | ((arg: S_11 & RN.ImageBackgroundProps & {
|
|
174
175
|
rnCSS?: string | undefined;
|
|
175
176
|
shared: unknown;
|
|
176
177
|
theme: import("./styleComponent").DefaultTheme;
|
|
177
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ImageBackgroundProps | S_11) & {
|
|
178
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ImageBackgroundProps | S_11) & {
|
|
178
179
|
rnCSS?: `${string};` | undefined;
|
|
179
180
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
180
181
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
181
182
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
182
183
|
children?: React.ReactNode;
|
|
183
|
-
style?:
|
|
184
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
184
185
|
} & {
|
|
185
186
|
ref?: React.Ref<any> | undefined;
|
|
186
187
|
}>;
|
|
187
188
|
};
|
|
188
189
|
KeyboardAvoidingView: {
|
|
189
|
-
<S_12>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_12 & RN.KeyboardAvoidingViewProps & {
|
|
190
|
+
<S_12>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_12 & RN.KeyboardAvoidingViewProps & {
|
|
190
191
|
rnCSS?: string | undefined;
|
|
191
192
|
shared: unknown;
|
|
192
193
|
theme: import("./styleComponent").DefaultTheme;
|
|
193
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.KeyboardAvoidingViewProps & S_12 & {
|
|
194
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.KeyboardAvoidingViewProps & S_12 & {
|
|
194
195
|
rnCSS?: `${string};` | undefined;
|
|
195
196
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
196
197
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
197
198
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
198
199
|
children?: React.ReactNode;
|
|
199
|
-
style?:
|
|
200
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
200
201
|
} & {
|
|
201
202
|
ref?: React.Ref<any> | undefined;
|
|
202
203
|
}>;
|
|
203
|
-
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 & {
|
|
204
|
+
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 | import("./types").CompleteStyle | null | undefined) | ((arg: S_13 & RN.KeyboardAvoidingViewProps & {
|
|
204
205
|
rnCSS?: string | undefined;
|
|
205
206
|
shared: unknown;
|
|
206
207
|
theme: import("./styleComponent").DefaultTheme;
|
|
207
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.KeyboardAvoidingViewProps | S_13) & {
|
|
208
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.KeyboardAvoidingViewProps | S_13) & {
|
|
208
209
|
rnCSS?: `${string};` | undefined;
|
|
209
210
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
210
211
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
211
212
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
212
213
|
children?: React.ReactNode;
|
|
213
|
-
style?:
|
|
214
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
214
215
|
} & {
|
|
215
216
|
ref?: React.Ref<any> | undefined;
|
|
216
217
|
}>;
|
|
217
218
|
};
|
|
218
219
|
Modal: {
|
|
219
|
-
<S_14>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_14 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
220
|
+
<S_14>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_14 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
220
221
|
rnCSS?: string | undefined;
|
|
221
222
|
shared: unknown;
|
|
222
223
|
theme: import("./styleComponent").DefaultTheme;
|
|
223
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & S_14 & {
|
|
224
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & S_14 & {
|
|
224
225
|
rnCSS?: `${string};` | undefined;
|
|
225
226
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
226
227
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
227
228
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
228
229
|
children?: React.ReactNode;
|
|
229
|
-
style?:
|
|
230
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
230
231
|
} & {
|
|
231
232
|
ref?: React.Ref<any> | undefined;
|
|
232
233
|
}>;
|
|
233
|
-
attrs<S_15>(opts: Partial<S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps> | ((props: S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps) => Partial<S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
234
|
+
attrs<S_15>(opts: Partial<S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps> | ((props: S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps) => Partial<S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_15 & RN.ModalBaseProps & RN.ModalPropsIOS & RN.ModalPropsAndroid & RN.ViewProps & {
|
|
234
235
|
rnCSS?: string | undefined;
|
|
235
236
|
shared: unknown;
|
|
236
237
|
theme: import("./styleComponent").DefaultTheme;
|
|
237
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ModalProps | S_15) & {
|
|
238
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ModalProps | S_15) & {
|
|
238
239
|
rnCSS?: `${string};` | undefined;
|
|
239
240
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
240
241
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
241
242
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
242
243
|
children?: React.ReactNode;
|
|
243
|
-
style?:
|
|
244
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
244
245
|
} & {
|
|
245
246
|
ref?: React.Ref<any> | undefined;
|
|
246
247
|
}>;
|
|
247
248
|
};
|
|
248
249
|
NavigatorIOS: {
|
|
249
|
-
<S_16>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_16 & RN.NavigatorIOSProps & {
|
|
250
|
+
<S_16>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_16 & RN.NavigatorIOSProps & {
|
|
250
251
|
rnCSS?: string | undefined;
|
|
251
252
|
shared: unknown;
|
|
252
253
|
theme: import("./styleComponent").DefaultTheme;
|
|
253
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.NavigatorIOSProps & S_16 & {
|
|
254
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.NavigatorIOSProps & S_16 & {
|
|
254
255
|
rnCSS?: `${string};` | undefined;
|
|
255
256
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
256
257
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
257
258
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
258
259
|
children?: React.ReactNode;
|
|
259
|
-
style?:
|
|
260
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
260
261
|
} & {
|
|
261
262
|
ref?: React.Ref<any> | undefined;
|
|
262
263
|
}>;
|
|
263
|
-
attrs<S_17>(opts: Partial<S_17 & RN.NavigatorIOSProps> | ((props: S_17 & RN.NavigatorIOSProps) => Partial<S_17 & RN.NavigatorIOSProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_17 & RN.NavigatorIOSProps & {
|
|
264
|
+
attrs<S_17>(opts: Partial<S_17 & RN.NavigatorIOSProps> | ((props: S_17 & RN.NavigatorIOSProps) => Partial<S_17 & RN.NavigatorIOSProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_17 & RN.NavigatorIOSProps & {
|
|
264
265
|
rnCSS?: string | undefined;
|
|
265
266
|
shared: unknown;
|
|
266
267
|
theme: import("./styleComponent").DefaultTheme;
|
|
267
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.NavigatorIOSProps | S_17) & {
|
|
268
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.NavigatorIOSProps | S_17) & {
|
|
268
269
|
rnCSS?: `${string};` | undefined;
|
|
269
270
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
270
271
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
271
272
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
272
273
|
children?: React.ReactNode;
|
|
273
|
-
style?:
|
|
274
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
274
275
|
} & {
|
|
275
276
|
ref?: React.Ref<any> | undefined;
|
|
276
277
|
}>;
|
|
277
278
|
};
|
|
278
279
|
ScrollView: {
|
|
279
|
-
<S_18>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_18 & RN.ScrollViewProps & {
|
|
280
|
+
<S_18>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_18 & RN.ScrollViewProps & {
|
|
280
281
|
rnCSS?: string | undefined;
|
|
281
282
|
shared: unknown;
|
|
282
283
|
theme: import("./styleComponent").DefaultTheme;
|
|
283
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ScrollViewProps & S_18 & {
|
|
284
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ScrollViewProps & S_18 & {
|
|
284
285
|
rnCSS?: `${string};` | undefined;
|
|
285
286
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
286
287
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
287
288
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
288
289
|
children?: React.ReactNode;
|
|
289
|
-
style?:
|
|
290
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
290
291
|
} & {
|
|
291
292
|
ref?: React.Ref<any> | undefined;
|
|
292
293
|
}>;
|
|
293
|
-
attrs<S_19>(opts: Partial<S_19 & RN.ScrollViewProps> | ((props: S_19 & RN.ScrollViewProps) => Partial<S_19 & RN.ScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_19 & RN.ScrollViewProps & {
|
|
294
|
+
attrs<S_19>(opts: Partial<S_19 & RN.ScrollViewProps> | ((props: S_19 & RN.ScrollViewProps) => Partial<S_19 & RN.ScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_19 & RN.ScrollViewProps & {
|
|
294
295
|
rnCSS?: string | undefined;
|
|
295
296
|
shared: unknown;
|
|
296
297
|
theme: import("./styleComponent").DefaultTheme;
|
|
297
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ScrollViewProps | S_19) & {
|
|
298
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ScrollViewProps | S_19) & {
|
|
298
299
|
rnCSS?: `${string};` | undefined;
|
|
299
300
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
300
301
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
301
302
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
302
303
|
children?: React.ReactNode;
|
|
303
|
-
style?:
|
|
304
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
304
305
|
} & {
|
|
305
306
|
ref?: React.Ref<any> | undefined;
|
|
306
307
|
}>;
|
|
307
308
|
};
|
|
308
309
|
SnapshotViewIOS: {
|
|
309
|
-
<S_20>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_20 & RN.SnapshotViewIOSProps & {
|
|
310
|
+
<S_20>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_20 & RN.SnapshotViewIOSProps & {
|
|
310
311
|
rnCSS?: string | undefined;
|
|
311
312
|
shared: unknown;
|
|
312
313
|
theme: import("./styleComponent").DefaultTheme;
|
|
313
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.SnapshotViewIOSProps & S_20 & {
|
|
314
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.SnapshotViewIOSProps & S_20 & {
|
|
314
315
|
rnCSS?: `${string};` | undefined;
|
|
315
316
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
316
317
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
317
318
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
318
319
|
children?: React.ReactNode;
|
|
319
|
-
style?:
|
|
320
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
320
321
|
} & {
|
|
321
322
|
ref?: React.Ref<any> | undefined;
|
|
322
323
|
}>;
|
|
323
|
-
attrs<S_21>(opts: Partial<S_21 & RN.SnapshotViewIOSProps> | ((props: S_21 & RN.SnapshotViewIOSProps) => Partial<S_21 & RN.SnapshotViewIOSProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_21 & RN.SnapshotViewIOSProps & {
|
|
324
|
+
attrs<S_21>(opts: Partial<S_21 & RN.SnapshotViewIOSProps> | ((props: S_21 & RN.SnapshotViewIOSProps) => Partial<S_21 & RN.SnapshotViewIOSProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_21 & RN.SnapshotViewIOSProps & {
|
|
324
325
|
rnCSS?: string | undefined;
|
|
325
326
|
shared: unknown;
|
|
326
327
|
theme: import("./styleComponent").DefaultTheme;
|
|
327
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.SnapshotViewIOSProps | S_21) & {
|
|
328
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.SnapshotViewIOSProps | S_21) & {
|
|
328
329
|
rnCSS?: `${string};` | undefined;
|
|
329
330
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
330
331
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
331
332
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
332
333
|
children?: React.ReactNode;
|
|
333
|
-
style?:
|
|
334
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
334
335
|
} & {
|
|
335
336
|
ref?: React.Ref<any> | undefined;
|
|
336
337
|
}>;
|
|
337
338
|
};
|
|
338
339
|
Switch: {
|
|
339
|
-
<S_22>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_22 & RN.SwitchProps & {
|
|
340
|
+
<S_22>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_22 & RN.SwitchProps & {
|
|
340
341
|
rnCSS?: string | undefined;
|
|
341
342
|
shared: unknown;
|
|
342
343
|
theme: import("./styleComponent").DefaultTheme;
|
|
343
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.SwitchProps & S_22 & {
|
|
344
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.SwitchProps & S_22 & {
|
|
344
345
|
rnCSS?: `${string};` | undefined;
|
|
345
346
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
346
347
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
347
348
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
348
349
|
children?: React.ReactNode;
|
|
349
|
-
style?:
|
|
350
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
350
351
|
} & {
|
|
351
352
|
ref?: React.Ref<any> | undefined;
|
|
352
353
|
}>;
|
|
353
|
-
attrs<S_23>(opts: Partial<S_23 & RN.SwitchProps> | ((props: S_23 & RN.SwitchProps) => Partial<S_23 & RN.SwitchProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_23 & RN.SwitchProps & {
|
|
354
|
+
attrs<S_23>(opts: Partial<S_23 & RN.SwitchProps> | ((props: S_23 & RN.SwitchProps) => Partial<S_23 & RN.SwitchProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_23 & RN.SwitchProps & {
|
|
354
355
|
rnCSS?: string | undefined;
|
|
355
356
|
shared: unknown;
|
|
356
357
|
theme: import("./styleComponent").DefaultTheme;
|
|
357
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.SwitchProps | S_23) & {
|
|
358
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.SwitchProps | S_23) & {
|
|
358
359
|
rnCSS?: `${string};` | undefined;
|
|
359
360
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
360
361
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
361
362
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
362
363
|
children?: React.ReactNode;
|
|
363
|
-
style?:
|
|
364
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
364
365
|
} & {
|
|
365
366
|
ref?: React.Ref<any> | undefined;
|
|
366
367
|
}>;
|
|
367
368
|
};
|
|
368
369
|
RecyclerViewBackedScrollView: {
|
|
369
|
-
<S_24>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_24 & RN.RecyclerViewBackedScrollViewProps & {
|
|
370
|
+
<S_24>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_24 & RN.RecyclerViewBackedScrollViewProps & {
|
|
370
371
|
rnCSS?: string | undefined;
|
|
371
372
|
shared: unknown;
|
|
372
373
|
theme: import("./styleComponent").DefaultTheme;
|
|
373
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.RecyclerViewBackedScrollViewProps & S_24 & {
|
|
374
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.RecyclerViewBackedScrollViewProps & S_24 & {
|
|
374
375
|
rnCSS?: `${string};` | undefined;
|
|
375
376
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
376
377
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
377
378
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
378
379
|
children?: React.ReactNode;
|
|
379
|
-
style?:
|
|
380
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
380
381
|
} & {
|
|
381
382
|
ref?: React.Ref<any> | undefined;
|
|
382
383
|
}>;
|
|
383
|
-
attrs<S_25>(opts: Partial<S_25 & RN.RecyclerViewBackedScrollViewProps> | ((props: S_25 & RN.RecyclerViewBackedScrollViewProps) => Partial<S_25 & RN.RecyclerViewBackedScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_25 & RN.RecyclerViewBackedScrollViewProps & {
|
|
384
|
+
attrs<S_25>(opts: Partial<S_25 & RN.RecyclerViewBackedScrollViewProps> | ((props: S_25 & RN.RecyclerViewBackedScrollViewProps) => Partial<S_25 & RN.RecyclerViewBackedScrollViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_25 & RN.RecyclerViewBackedScrollViewProps & {
|
|
384
385
|
rnCSS?: string | undefined;
|
|
385
386
|
shared: unknown;
|
|
386
387
|
theme: import("./styleComponent").DefaultTheme;
|
|
387
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.RecyclerViewBackedScrollViewProps | S_25) & {
|
|
388
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.RecyclerViewBackedScrollViewProps | S_25) & {
|
|
388
389
|
rnCSS?: `${string};` | undefined;
|
|
389
390
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
390
391
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
391
392
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
392
393
|
children?: React.ReactNode;
|
|
393
|
-
style?:
|
|
394
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
394
395
|
} & {
|
|
395
396
|
ref?: React.Ref<any> | undefined;
|
|
396
397
|
}>;
|
|
397
398
|
};
|
|
398
399
|
RefreshControl: {
|
|
399
|
-
<S_26>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_26 & RN.RefreshControlProps & {
|
|
400
|
+
<S_26>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_26 & RN.RefreshControlProps & {
|
|
400
401
|
rnCSS?: string | undefined;
|
|
401
402
|
shared: unknown;
|
|
402
403
|
theme: import("./styleComponent").DefaultTheme;
|
|
403
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.RefreshControlProps & S_26 & {
|
|
404
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.RefreshControlProps & S_26 & {
|
|
404
405
|
rnCSS?: `${string};` | undefined;
|
|
405
406
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
406
407
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
407
408
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
408
409
|
children?: React.ReactNode;
|
|
409
|
-
style?:
|
|
410
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
410
411
|
} & {
|
|
411
412
|
ref?: React.Ref<any> | undefined;
|
|
412
413
|
}>;
|
|
413
|
-
attrs<S_27>(opts: Partial<S_27 & RN.RefreshControlProps> | ((props: S_27 & RN.RefreshControlProps) => Partial<S_27 & RN.RefreshControlProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_27 & RN.RefreshControlProps & {
|
|
414
|
+
attrs<S_27>(opts: Partial<S_27 & RN.RefreshControlProps> | ((props: S_27 & RN.RefreshControlProps) => Partial<S_27 & RN.RefreshControlProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_27 & RN.RefreshControlProps & {
|
|
414
415
|
rnCSS?: string | undefined;
|
|
415
416
|
shared: unknown;
|
|
416
417
|
theme: import("./styleComponent").DefaultTheme;
|
|
417
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.RefreshControlProps | S_27) & {
|
|
418
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.RefreshControlProps | S_27) & {
|
|
418
419
|
rnCSS?: `${string};` | undefined;
|
|
419
420
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
420
421
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
421
422
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
422
423
|
children?: React.ReactNode;
|
|
423
|
-
style?:
|
|
424
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
424
425
|
} & {
|
|
425
426
|
ref?: React.Ref<any> | undefined;
|
|
426
427
|
}>;
|
|
427
428
|
};
|
|
428
429
|
SafeAreaView: {
|
|
429
|
-
<S_28>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_28 & RN.ViewProps & {
|
|
430
|
+
<S_28>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_28 & RN.ViewProps & {
|
|
430
431
|
rnCSS?: string | undefined;
|
|
431
432
|
shared: unknown;
|
|
432
433
|
theme: import("./styleComponent").DefaultTheme;
|
|
433
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ViewProps & S_28 & {
|
|
434
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ViewProps & S_28 & {
|
|
434
435
|
rnCSS?: `${string};` | undefined;
|
|
435
436
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
436
437
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
437
438
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
438
439
|
children?: React.ReactNode;
|
|
439
|
-
style?:
|
|
440
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
440
441
|
} & {
|
|
441
442
|
ref?: React.Ref<any> | undefined;
|
|
442
443
|
}>;
|
|
443
|
-
attrs<S_29>(opts: Partial<S_29 & RN.ViewProps> | ((props: S_29 & RN.ViewProps) => Partial<S_29 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_29 & RN.ViewProps & {
|
|
444
|
+
attrs<S_29>(opts: Partial<S_29 & RN.ViewProps> | ((props: S_29 & RN.ViewProps) => Partial<S_29 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_29 & RN.ViewProps & {
|
|
444
445
|
rnCSS?: string | undefined;
|
|
445
446
|
shared: unknown;
|
|
446
447
|
theme: import("./styleComponent").DefaultTheme;
|
|
447
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ViewProps | S_29) & {
|
|
448
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ViewProps | S_29) & {
|
|
448
449
|
rnCSS?: `${string};` | undefined;
|
|
449
450
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
450
451
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
451
452
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
452
453
|
children?: React.ReactNode;
|
|
453
|
-
style?:
|
|
454
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
454
455
|
} & {
|
|
455
456
|
ref?: React.Ref<any> | undefined;
|
|
456
457
|
}>;
|
|
457
458
|
};
|
|
458
459
|
StatusBar: {
|
|
459
|
-
<S_30>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_30 & RN.StatusBarProps & {
|
|
460
|
+
<S_30>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_30 & RN.StatusBarProps & {
|
|
460
461
|
rnCSS?: string | undefined;
|
|
461
462
|
shared: unknown;
|
|
462
463
|
theme: import("./styleComponent").DefaultTheme;
|
|
463
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.StatusBarProps & S_30 & {
|
|
464
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.StatusBarProps & S_30 & {
|
|
464
465
|
rnCSS?: `${string};` | undefined;
|
|
465
466
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
466
467
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
467
468
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
468
469
|
children?: React.ReactNode;
|
|
469
|
-
style?:
|
|
470
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
470
471
|
} & {
|
|
471
472
|
ref?: React.Ref<any> | undefined;
|
|
472
473
|
}>;
|
|
473
|
-
attrs<S_31>(opts: Partial<S_31 & RN.StatusBarProps> | ((props: S_31 & RN.StatusBarProps) => Partial<S_31 & RN.StatusBarProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_31 & RN.StatusBarProps & {
|
|
474
|
+
attrs<S_31>(opts: Partial<S_31 & RN.StatusBarProps> | ((props: S_31 & RN.StatusBarProps) => Partial<S_31 & RN.StatusBarProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_31 & RN.StatusBarProps & {
|
|
474
475
|
rnCSS?: string | undefined;
|
|
475
476
|
shared: unknown;
|
|
476
477
|
theme: import("./styleComponent").DefaultTheme;
|
|
477
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.StatusBarProps | S_31) & {
|
|
478
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.StatusBarProps | S_31) & {
|
|
478
479
|
rnCSS?: `${string};` | undefined;
|
|
479
480
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
480
481
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
481
482
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
482
483
|
children?: React.ReactNode;
|
|
483
|
-
style?:
|
|
484
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
484
485
|
} & {
|
|
485
486
|
ref?: React.Ref<any> | undefined;
|
|
486
487
|
}>;
|
|
487
488
|
};
|
|
488
489
|
Text: {
|
|
489
|
-
<S_32>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_32 & RN.TextProps & {
|
|
490
|
+
<S_32>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_32 & RN.TextProps & {
|
|
490
491
|
rnCSS?: string | undefined;
|
|
491
492
|
shared: unknown;
|
|
492
493
|
theme: import("./styleComponent").DefaultTheme;
|
|
493
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TextProps & S_32 & {
|
|
494
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.TextProps & S_32 & {
|
|
494
495
|
rnCSS?: `${string};` | undefined;
|
|
495
496
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
496
497
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
497
498
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
498
499
|
children?: React.ReactNode;
|
|
499
|
-
style?:
|
|
500
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
500
501
|
} & {
|
|
501
502
|
ref?: React.Ref<any> | undefined;
|
|
502
503
|
}>;
|
|
503
|
-
attrs<S_33>(opts: Partial<S_33 & RN.TextProps> | ((props: S_33 & RN.TextProps) => Partial<S_33 & RN.TextProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_33 & RN.TextProps & {
|
|
504
|
+
attrs<S_33>(opts: Partial<S_33 & RN.TextProps> | ((props: S_33 & RN.TextProps) => Partial<S_33 & RN.TextProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_33 & RN.TextProps & {
|
|
504
505
|
rnCSS?: string | undefined;
|
|
505
506
|
shared: unknown;
|
|
506
507
|
theme: import("./styleComponent").DefaultTheme;
|
|
507
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TextProps | S_33) & {
|
|
508
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TextProps | S_33) & {
|
|
508
509
|
rnCSS?: `${string};` | undefined;
|
|
509
510
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
510
511
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
511
512
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
512
513
|
children?: React.ReactNode;
|
|
513
|
-
style?:
|
|
514
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
514
515
|
} & {
|
|
515
516
|
ref?: React.Ref<any> | undefined;
|
|
516
517
|
}>;
|
|
517
518
|
};
|
|
518
519
|
TextInput: {
|
|
519
|
-
<S_34>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_34 & RN.TextInputProps & {
|
|
520
|
+
<S_34>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_34 & RN.TextInputProps & {
|
|
520
521
|
rnCSS?: string | undefined;
|
|
521
522
|
shared: unknown;
|
|
522
523
|
theme: import("./styleComponent").DefaultTheme;
|
|
523
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TextInputProps & S_34 & {
|
|
524
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.TextInputProps & S_34 & {
|
|
524
525
|
rnCSS?: `${string};` | undefined;
|
|
525
526
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
526
527
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
527
528
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
528
529
|
children?: React.ReactNode;
|
|
529
|
-
style?:
|
|
530
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
530
531
|
} & {
|
|
531
532
|
ref?: React.Ref<any> | undefined;
|
|
532
533
|
}>;
|
|
533
|
-
attrs<S_35>(opts: Partial<S_35 & RN.TextInputProps> | ((props: S_35 & RN.TextInputProps) => Partial<S_35 & RN.TextInputProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_35 & RN.TextInputProps & {
|
|
534
|
+
attrs<S_35>(opts: Partial<S_35 & RN.TextInputProps> | ((props: S_35 & RN.TextInputProps) => Partial<S_35 & RN.TextInputProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_35 & RN.TextInputProps & {
|
|
534
535
|
rnCSS?: string | undefined;
|
|
535
536
|
shared: unknown;
|
|
536
537
|
theme: import("./styleComponent").DefaultTheme;
|
|
537
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TextInputProps | S_35) & {
|
|
538
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TextInputProps | S_35) & {
|
|
538
539
|
rnCSS?: `${string};` | undefined;
|
|
539
540
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
540
541
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
541
542
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
542
543
|
children?: React.ReactNode;
|
|
543
|
-
style?:
|
|
544
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
544
545
|
} & {
|
|
545
546
|
ref?: React.Ref<any> | undefined;
|
|
546
547
|
}>;
|
|
547
548
|
};
|
|
548
549
|
TouchableHighlight: {
|
|
549
|
-
<S_36>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_36 & RN.TouchableHighlightProps & {
|
|
550
|
+
<S_36>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_36 & RN.TouchableHighlightProps & {
|
|
550
551
|
rnCSS?: string | undefined;
|
|
551
552
|
shared: unknown;
|
|
552
553
|
theme: import("./styleComponent").DefaultTheme;
|
|
553
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableHighlightProps & S_36 & {
|
|
554
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableHighlightProps & S_36 & {
|
|
554
555
|
rnCSS?: `${string};` | undefined;
|
|
555
556
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
556
557
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
557
558
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
558
559
|
children?: React.ReactNode;
|
|
559
|
-
style?:
|
|
560
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
560
561
|
} & {
|
|
561
562
|
ref?: React.Ref<any> | undefined;
|
|
562
563
|
}>;
|
|
563
|
-
attrs<S_37>(opts: Partial<S_37 & RN.TouchableHighlightProps> | ((props: S_37 & RN.TouchableHighlightProps) => Partial<S_37 & RN.TouchableHighlightProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_37 & RN.TouchableHighlightProps & {
|
|
564
|
+
attrs<S_37>(opts: Partial<S_37 & RN.TouchableHighlightProps> | ((props: S_37 & RN.TouchableHighlightProps) => Partial<S_37 & RN.TouchableHighlightProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_37 & RN.TouchableHighlightProps & {
|
|
564
565
|
rnCSS?: string | undefined;
|
|
565
566
|
shared: unknown;
|
|
566
567
|
theme: import("./styleComponent").DefaultTheme;
|
|
567
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableHighlightProps | S_37) & {
|
|
568
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableHighlightProps | S_37) & {
|
|
568
569
|
rnCSS?: `${string};` | undefined;
|
|
569
570
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
570
571
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
571
572
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
572
573
|
children?: React.ReactNode;
|
|
573
|
-
style?:
|
|
574
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
574
575
|
} & {
|
|
575
576
|
ref?: React.Ref<any> | undefined;
|
|
576
577
|
}>;
|
|
577
578
|
};
|
|
578
579
|
TouchableNativeFeedback: {
|
|
579
|
-
<S_38>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_38 & RN.TouchableNativeFeedbackProps & {
|
|
580
|
+
<S_38>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_38 & RN.TouchableNativeFeedbackProps & {
|
|
580
581
|
rnCSS?: string | undefined;
|
|
581
582
|
shared: unknown;
|
|
582
583
|
theme: import("./styleComponent").DefaultTheme;
|
|
583
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableNativeFeedbackProps & S_38 & {
|
|
584
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableNativeFeedbackProps & S_38 & {
|
|
584
585
|
rnCSS?: `${string};` | undefined;
|
|
585
586
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
586
587
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
587
588
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
588
589
|
children?: React.ReactNode;
|
|
589
|
-
style?:
|
|
590
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
590
591
|
} & {
|
|
591
592
|
ref?: React.Ref<any> | undefined;
|
|
592
593
|
}>;
|
|
593
|
-
attrs<S_39>(opts: Partial<S_39 & RN.TouchableNativeFeedbackProps> | ((props: S_39 & RN.TouchableNativeFeedbackProps) => Partial<S_39 & RN.TouchableNativeFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_39 & RN.TouchableNativeFeedbackProps & {
|
|
594
|
+
attrs<S_39>(opts: Partial<S_39 & RN.TouchableNativeFeedbackProps> | ((props: S_39 & RN.TouchableNativeFeedbackProps) => Partial<S_39 & RN.TouchableNativeFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_39 & RN.TouchableNativeFeedbackProps & {
|
|
594
595
|
rnCSS?: string | undefined;
|
|
595
596
|
shared: unknown;
|
|
596
597
|
theme: import("./styleComponent").DefaultTheme;
|
|
597
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableNativeFeedbackProps | S_39) & {
|
|
598
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableNativeFeedbackProps | S_39) & {
|
|
598
599
|
rnCSS?: `${string};` | undefined;
|
|
599
600
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
600
601
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
601
602
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
602
603
|
children?: React.ReactNode;
|
|
603
|
-
style?:
|
|
604
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
604
605
|
} & {
|
|
605
606
|
ref?: React.Ref<any> | undefined;
|
|
606
607
|
}>;
|
|
607
608
|
};
|
|
608
609
|
TouchableOpacity: {
|
|
609
|
-
<S_40>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_40 & RN.TouchableOpacityProps & {
|
|
610
|
+
<S_40>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_40 & RN.TouchableOpacityProps & {
|
|
610
611
|
rnCSS?: string | undefined;
|
|
611
612
|
shared: unknown;
|
|
612
613
|
theme: import("./styleComponent").DefaultTheme;
|
|
613
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableOpacityProps & S_40 & {
|
|
614
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableOpacityProps & S_40 & {
|
|
614
615
|
rnCSS?: `${string};` | undefined;
|
|
615
616
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
616
617
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
617
618
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
618
619
|
children?: React.ReactNode;
|
|
619
|
-
style?:
|
|
620
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
620
621
|
} & {
|
|
621
622
|
ref?: React.Ref<any> | undefined;
|
|
622
623
|
}>;
|
|
623
|
-
attrs<S_41>(opts: Partial<S_41 & RN.TouchableOpacityProps> | ((props: S_41 & RN.TouchableOpacityProps) => Partial<S_41 & RN.TouchableOpacityProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_41 & RN.TouchableOpacityProps & {
|
|
624
|
+
attrs<S_41>(opts: Partial<S_41 & RN.TouchableOpacityProps> | ((props: S_41 & RN.TouchableOpacityProps) => Partial<S_41 & RN.TouchableOpacityProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_41 & RN.TouchableOpacityProps & {
|
|
624
625
|
rnCSS?: string | undefined;
|
|
625
626
|
shared: unknown;
|
|
626
627
|
theme: import("./styleComponent").DefaultTheme;
|
|
627
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableOpacityProps | S_41) & {
|
|
628
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableOpacityProps | S_41) & {
|
|
628
629
|
rnCSS?: `${string};` | undefined;
|
|
629
630
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
630
631
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
631
632
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
632
633
|
children?: React.ReactNode;
|
|
633
|
-
style?:
|
|
634
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
634
635
|
} & {
|
|
635
636
|
ref?: React.Ref<any> | undefined;
|
|
636
637
|
}>;
|
|
637
638
|
};
|
|
638
639
|
TouchableWithoutFeedback: {
|
|
639
|
-
<S_42>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_42 & RN.TouchableWithoutFeedbackProps & {
|
|
640
|
+
<S_42>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_42 & RN.TouchableWithoutFeedbackProps & {
|
|
640
641
|
rnCSS?: string | undefined;
|
|
641
642
|
shared: unknown;
|
|
642
643
|
theme: import("./styleComponent").DefaultTheme;
|
|
643
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableWithoutFeedbackProps & S_42 & {
|
|
644
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.TouchableWithoutFeedbackProps & S_42 & {
|
|
644
645
|
rnCSS?: `${string};` | undefined;
|
|
645
646
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
646
647
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
647
648
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
648
649
|
children?: React.ReactNode;
|
|
649
|
-
style?:
|
|
650
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
650
651
|
} & {
|
|
651
652
|
ref?: React.Ref<any> | undefined;
|
|
652
653
|
}>;
|
|
653
|
-
attrs<S_43>(opts: Partial<S_43 & RN.TouchableWithoutFeedbackProps> | ((props: S_43 & RN.TouchableWithoutFeedbackProps) => Partial<S_43 & RN.TouchableWithoutFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_43 & RN.TouchableWithoutFeedbackProps & {
|
|
654
|
+
attrs<S_43>(opts: Partial<S_43 & RN.TouchableWithoutFeedbackProps> | ((props: S_43 & RN.TouchableWithoutFeedbackProps) => Partial<S_43 & RN.TouchableWithoutFeedbackProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_43 & RN.TouchableWithoutFeedbackProps & {
|
|
654
655
|
rnCSS?: string | undefined;
|
|
655
656
|
shared: unknown;
|
|
656
657
|
theme: import("./styleComponent").DefaultTheme;
|
|
657
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableWithoutFeedbackProps | S_43) & {
|
|
658
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.TouchableWithoutFeedbackProps | S_43) & {
|
|
658
659
|
rnCSS?: `${string};` | undefined;
|
|
659
660
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
660
661
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
661
662
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
662
663
|
children?: React.ReactNode;
|
|
663
|
-
style?:
|
|
664
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
664
665
|
} & {
|
|
665
666
|
ref?: React.Ref<any> | undefined;
|
|
666
667
|
}>;
|
|
667
668
|
};
|
|
668
669
|
View: {
|
|
669
|
-
<S_28>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_28 & RN.ViewProps & {
|
|
670
|
+
<S_28>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_28 & RN.ViewProps & {
|
|
670
671
|
rnCSS?: string | undefined;
|
|
671
672
|
shared: unknown;
|
|
672
673
|
theme: import("./styleComponent").DefaultTheme;
|
|
673
|
-
}) => string | number | boolean | null | undefined))[]): React.ForwardRefExoticComponent<RN.ViewProps & S_28 & {
|
|
674
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): React.ForwardRefExoticComponent<RN.ViewProps & S_28 & {
|
|
674
675
|
rnCSS?: `${string};` | undefined;
|
|
675
676
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
676
677
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
677
678
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
678
679
|
children?: React.ReactNode;
|
|
679
|
-
style?:
|
|
680
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
680
681
|
} & {
|
|
681
682
|
ref?: React.Ref<any> | undefined;
|
|
682
683
|
}>;
|
|
683
|
-
attrs<S_29>(opts: Partial<S_29 & RN.ViewProps> | ((props: S_29 & RN.ViewProps) => Partial<S_29 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_29 & RN.ViewProps & {
|
|
684
|
+
attrs<S_29>(opts: Partial<S_29 & RN.ViewProps> | ((props: S_29 & RN.ViewProps) => Partial<S_29 & RN.ViewProps>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_29 & RN.ViewProps & {
|
|
684
685
|
rnCSS?: string | undefined;
|
|
685
686
|
shared: unknown;
|
|
686
687
|
theme: import("./styleComponent").DefaultTheme;
|
|
687
|
-
}) => string | number | boolean | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ViewProps | S_29) & {
|
|
688
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => React.ForwardRefExoticComponent<(RN.ViewProps | S_29) & {
|
|
688
689
|
rnCSS?: `${string};` | undefined;
|
|
689
690
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
690
691
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
691
692
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
692
693
|
children?: React.ReactNode;
|
|
693
|
-
style?:
|
|
694
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
694
695
|
} & {
|
|
695
696
|
ref?: React.Ref<any> | undefined;
|
|
696
697
|
}>;
|
|
697
698
|
};
|
|
698
699
|
FlatList: {
|
|
699
|
-
<S_44>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_44 & {
|
|
700
|
+
<S_44>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_44 & {
|
|
700
701
|
rnCSS?: string | undefined;
|
|
701
702
|
shared: unknown;
|
|
702
703
|
theme: import("./styleComponent").DefaultTheme;
|
|
703
|
-
}) => string | number | boolean | null | undefined))[]): <Type>(props: S_44 & RN.FlatListProps<Type> & {
|
|
704
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): <Type>(props: S_44 & RN.FlatListProps<Type> & {
|
|
704
705
|
rnCSS?: `${string};` | undefined;
|
|
705
706
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
706
707
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
707
708
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
708
709
|
children?: React.ReactNode;
|
|
709
|
-
style?:
|
|
710
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
710
711
|
}) => JSX.Element;
|
|
711
|
-
attrs<S_45>(opts: Partial<S_45 & RN.FlatListProps<any>> | ((props: S_45 & RN.FlatListProps<any>) => Partial<S_45 & RN.FlatListProps<any>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_45 & RN.FlatListProps<any> & {
|
|
712
|
+
attrs<S_45>(opts: Partial<S_45 & RN.FlatListProps<any>> | ((props: S_45 & RN.FlatListProps<any>) => Partial<S_45 & RN.FlatListProps<any>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_45 & RN.FlatListProps<any> & {
|
|
712
713
|
rnCSS?: string | undefined;
|
|
713
714
|
shared: unknown;
|
|
714
715
|
theme: import("./styleComponent").DefaultTheme;
|
|
715
|
-
}) => string | number | boolean | null | undefined))[]) => <Props>(componentProps: S_45 & RN.FlatListProps<Props> & {
|
|
716
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => <Props>(componentProps: S_45 & RN.FlatListProps<Props> & {
|
|
716
717
|
rnCSS?: `${string};` | undefined;
|
|
717
718
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
718
719
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
719
720
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
720
721
|
children?: React.ReactNode;
|
|
721
|
-
style?:
|
|
722
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
722
723
|
}) => JSX.Element;
|
|
723
724
|
};
|
|
724
725
|
SectionList: {
|
|
725
|
-
<S_46>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_46 & {
|
|
726
|
+
<S_46>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_46 & {
|
|
726
727
|
rnCSS?: string | undefined;
|
|
727
728
|
shared: unknown;
|
|
728
729
|
theme: import("./styleComponent").DefaultTheme;
|
|
729
|
-
}) => string | number | boolean | null | undefined))[]): <Type_1>(props: S_46 & RN.SectionListProps<Type_1, RN.DefaultSectionT> & {
|
|
730
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): <Type_1>(props: S_46 & RN.SectionListProps<Type_1, RN.DefaultSectionT> & {
|
|
730
731
|
rnCSS?: `${string};` | undefined;
|
|
731
732
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
732
733
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
733
734
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
734
735
|
children?: React.ReactNode;
|
|
735
|
-
style?:
|
|
736
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
736
737
|
}) => JSX.Element;
|
|
737
|
-
attrs<S_47>(opts: Partial<S_47 & RN.SectionListProps<any, RN.DefaultSectionT>> | ((props: S_47 & RN.SectionListProps<any, RN.DefaultSectionT>) => Partial<S_47 & RN.SectionListProps<any, RN.DefaultSectionT>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_47 & RN.SectionListProps<any, RN.DefaultSectionT> & {
|
|
738
|
+
attrs<S_47>(opts: Partial<S_47 & RN.SectionListProps<any, RN.DefaultSectionT>> | ((props: S_47 & RN.SectionListProps<any, RN.DefaultSectionT>) => Partial<S_47 & RN.SectionListProps<any, RN.DefaultSectionT>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_47 & RN.SectionListProps<any, RN.DefaultSectionT> & {
|
|
738
739
|
rnCSS?: string | undefined;
|
|
739
740
|
shared: unknown;
|
|
740
741
|
theme: import("./styleComponent").DefaultTheme;
|
|
741
|
-
}) => string | number | boolean | null | undefined))[]) => <Props_1>(componentProps: S_47 & RN.SectionListProps<Props_1, RN.DefaultSectionT> & {
|
|
742
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => <Props_1>(componentProps: S_47 & RN.SectionListProps<Props_1, RN.DefaultSectionT> & {
|
|
742
743
|
rnCSS?: `${string};` | undefined;
|
|
743
744
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
744
745
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
745
746
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
746
747
|
children?: React.ReactNode;
|
|
747
|
-
style?:
|
|
748
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
748
749
|
}) => JSX.Element;
|
|
749
750
|
};
|
|
750
751
|
VirtualizedList: {
|
|
751
|
-
<S_48>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_48 & {
|
|
752
|
+
<S_48>(chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_48 & {
|
|
752
753
|
rnCSS?: string | undefined;
|
|
753
754
|
shared: unknown;
|
|
754
755
|
theme: import("./styleComponent").DefaultTheme;
|
|
755
|
-
}) => string | number | boolean | null | undefined))[]): <Type_2>(props: S_48 & RN.VirtualizedListProps<Type_2> & {
|
|
756
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]): <Type_2>(props: S_48 & RN.VirtualizedListProps<Type_2> & {
|
|
756
757
|
rnCSS?: `${string};` | undefined;
|
|
757
758
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
758
759
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
759
760
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
760
761
|
children?: React.ReactNode;
|
|
761
|
-
style?:
|
|
762
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
762
763
|
}) => JSX.Element;
|
|
763
|
-
attrs<S_49>(opts: Partial<S_49 & RN.VirtualizedListProps<any>> | ((props: S_49 & RN.VirtualizedListProps<any>) => Partial<S_49 & RN.VirtualizedListProps<any>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | null | undefined) | ((arg: S_49 & RN.VirtualizedListProps<any> & {
|
|
764
|
+
attrs<S_49>(opts: Partial<S_49 & RN.VirtualizedListProps<any>> | ((props: S_49 & RN.VirtualizedListProps<any>) => Partial<S_49 & RN.VirtualizedListProps<any>>)): (chunks: TemplateStringsArray, ...functs: ((string | number | boolean | import("./types").CompleteStyle | null | undefined) | ((arg: S_49 & RN.VirtualizedListProps<any> & {
|
|
764
765
|
rnCSS?: string | undefined;
|
|
765
766
|
shared: unknown;
|
|
766
767
|
theme: import("./styleComponent").DefaultTheme;
|
|
767
|
-
}) => string | number | boolean | null | undefined))[]) => <Props_2>(componentProps: S_49 & RN.VirtualizedListProps<Props_2> & {
|
|
768
|
+
}) => string | number | boolean | import("./types").CompleteStyle | null | undefined))[]) => <Props_2>(componentProps: S_49 & RN.VirtualizedListProps<Props_2> & {
|
|
768
769
|
rnCSS?: `${string};` | undefined;
|
|
769
770
|
onMouseEnter?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
770
771
|
onMouseLeave?: ((event: React.MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
771
772
|
onLayout?: ((event: RN.LayoutChangeEvent) => void) | undefined;
|
|
772
773
|
children?: React.ReactNode;
|
|
773
|
-
style?:
|
|
774
|
+
style?: RN.StyleProp<AnyStyle>;
|
|
774
775
|
}) => JSX.Element;
|
|
775
776
|
};
|
|
776
777
|
};
|