@office-iss/react-native-win32 0.68.0 → 0.69.0-preview.3

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.
Files changed (183) hide show
  1. package/.eslintrc.js +1 -0
  2. package/.flowconfig +1 -3
  3. package/CHANGELOG.json +386 -32
  4. package/CHANGELOG.md +166 -19
  5. package/IntegrationTests/BUCK +4 -1
  6. package/Libraries/ActionSheetIOS/ActionSheetIOS.js +7 -0
  7. package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +1 -0
  8. package/Libraries/Alert/Alert.win32.js +1 -1
  9. package/Libraries/Animated/AnimatedImplementation.js +1 -1
  10. package/Libraries/Animated/NativeAnimatedHelper.js +55 -9
  11. package/Libraries/Animated/NativeAnimatedModule.js +1 -0
  12. package/Libraries/Animated/NativeAnimatedTurboModule.js +1 -0
  13. package/Libraries/Animated/animations/TimingAnimation.js +6 -11
  14. package/Libraries/Animated/createAnimatedComponent.js +2 -2
  15. package/Libraries/Animated/nodes/AnimatedColor.js +95 -29
  16. package/Libraries/Animated/nodes/AnimatedInterpolation.js +19 -22
  17. package/Libraries/Animated/nodes/AnimatedNode.js +2 -2
  18. package/Libraries/Animated/nodes/AnimatedValue.js +1 -1
  19. package/Libraries/AppState/AppState.js +1 -1
  20. package/Libraries/Blob/URL.js +7 -1
  21. package/Libraries/Components/Button.js +3 -0
  22. package/Libraries/Components/DatePickerAndroid/NativeDatePickerAndroid.js +5 -0
  23. package/Libraries/Components/Pressable/Pressable.js +3 -3
  24. package/Libraries/Components/Pressable/Pressable.win32.js +3 -3
  25. package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +47 -38
  26. package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +15 -7
  27. package/Libraries/Components/ScrollView/ScrollView.js +1 -1
  28. package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +16 -3
  29. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +3 -1
  30. package/Libraries/Components/Slider/Slider.js +0 -2
  31. package/Libraries/Components/Slider/SliderNativeComponent.js +0 -1
  32. package/Libraries/Components/StatusBar/StatusBar.js +6 -1
  33. package/Libraries/Components/Switch/Switch.js +11 -1
  34. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +114 -109
  35. package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +17 -9
  36. package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +13 -5
  37. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
  38. package/Libraries/Components/TextInput/TextInput.js +1 -8
  39. package/Libraries/Components/TextInput/TextInputState.js +10 -2
  40. package/Libraries/Components/TextInput/TextInputState.win32.js +10 -2
  41. package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js.map +1 -1
  42. package/Libraries/Components/Touchable/TouchableBounce.js +1 -0
  43. package/Libraries/Components/Touchable/TouchableHighlight.js +1 -0
  44. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -0
  45. package/Libraries/Components/Touchable/TouchableOpacity.js +7 -1
  46. package/Libraries/Components/Touchable/TouchableWin32.Props.d.ts +3 -1
  47. package/Libraries/Components/Touchable/TouchableWin32.Props.js.map +1 -1
  48. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +2 -0
  49. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -0
  50. package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +1 -0
  51. package/Libraries/Components/View/View.win32.js +33 -1
  52. package/Libraries/Components/View/ViewNativeComponent.js +68 -8
  53. package/Libraries/Components/View/ViewPropTypes.js +36 -4
  54. package/Libraries/Components/View/ViewPropTypes.win32.js +36 -4
  55. package/Libraries/Components/View/ViewWin32.Props.d.ts +1 -1
  56. package/Libraries/Components/View/ViewWin32.Props.js.map +1 -1
  57. package/Libraries/Core/Devtools/parseHermesStack.js +1 -1
  58. package/Libraries/Core/ExceptionsManager.js +1 -1
  59. package/Libraries/Core/RawEventEmitter.js +38 -0
  60. package/Libraries/Core/ReactNativeVersion.js +2 -2
  61. package/Libraries/Core/polyfillPromise.js +32 -0
  62. package/Libraries/Core/setUpReactDevTools.js +3 -2
  63. package/Libraries/EventEmitter/NativeEventEmitter.js +3 -3
  64. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +2 -1
  65. package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +3 -3
  66. package/Libraries/Events/CustomEvent.js +32 -0
  67. package/Libraries/Events/EventPolyfill.js +239 -0
  68. package/Libraries/Image/Image.android.js +0 -6
  69. package/Libraries/Image/Image.ios.js +0 -6
  70. package/Libraries/Image/Image.win32.js +2 -8
  71. package/Libraries/Image/ImageViewNativeComponent.js +18 -3
  72. package/Libraries/Image/TextInlineImageNativeComponent.js +23 -15
  73. package/Libraries/Image/resolveAssetSource.win32.js +1 -1
  74. package/Libraries/Inspector/Inspector.js +2 -4
  75. package/Libraries/Inspector/Inspector.win32.js +7 -9
  76. package/Libraries/Interaction/BridgeSpyStallHandler.js +4 -3
  77. package/Libraries/Interaction/InteractionManager.js +1 -12
  78. package/Libraries/Interaction/TaskQueue.js +5 -4
  79. package/Libraries/LayoutAnimation/LayoutAnimation.js +13 -0
  80. package/Libraries/Linking/Linking.js +1 -1
  81. package/Libraries/Lists/FlatList.js +27 -6
  82. package/Libraries/Lists/VirtualizedList.js +71 -55
  83. package/Libraries/Lists/VirtualizedListContext.js +7 -3
  84. package/Libraries/Lists/VirtualizedSectionList.js +2 -2
  85. package/Libraries/Lists/__tests__/{FillRateHelper-test.windows.js → FillRateHelper-test.js} +2 -2
  86. package/Libraries/Lists/__tests__/{FlatList-test.windows.js → FlatList-test.js} +2 -2
  87. package/Libraries/Lists/__tests__/{SectionList-test.windows.js → SectionList-test.js} +14 -14
  88. package/Libraries/Lists/__tests__/{VirtualizeUtils-test.windows.js → VirtualizeUtils-test.js} +3 -3
  89. package/Libraries/Lists/__tests__/{VirtualizedList-test.windows.js → VirtualizedList-test.js} +92 -43
  90. package/Libraries/Lists/__tests__/{VirtualizedSectionList-test.windows.js → VirtualizedSectionList-test.js} +16 -14
  91. package/Libraries/LogBox/Data/LogBoxData.js +2 -2
  92. package/Libraries/LogBox/Data/LogBoxLog.js +1 -1
  93. package/Libraries/LogBox/Data/LogBoxSymbolication.js +1 -1
  94. package/Libraries/LogBox/Data/parseLogBoxLog.js +1 -1
  95. package/Libraries/LogBox/LogBox.js +2 -21
  96. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +1 -0
  97. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +2 -1
  98. package/Libraries/NativeComponent/BaseViewConfig.android.js +295 -0
  99. package/Libraries/NativeComponent/BaseViewConfig.ios.js +333 -0
  100. package/Libraries/NativeComponent/BaseViewConfig.win32.js +334 -0
  101. package/Libraries/NativeComponent/NativeComponentRegistry.js +0 -2
  102. package/Libraries/NativeComponent/PlatformBaseViewConfig.js +24 -0
  103. package/Libraries/NativeComponent/StaticViewConfigValidator.js +7 -42
  104. package/Libraries/NativeComponent/ViewConfig.js +4 -4
  105. package/Libraries/NativeComponent/ViewConfigIgnore.js +54 -0
  106. package/Libraries/Network/FormData.js +7 -1
  107. package/Libraries/Network/RCTNetworking.win32.js +1 -1
  108. package/Libraries/Pressability/Pressability.js +115 -46
  109. package/Libraries/Pressability/Pressability.win32.js +174 -69
  110. package/Libraries/Pressability/PressabilityDebug.js +5 -9
  111. package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +1 -0
  112. package/Libraries/ReactNative/AppContainer.js +1 -1
  113. package/Libraries/ReactNative/{DummyUIManager.js → BridgelessUIManager.js} +62 -40
  114. package/Libraries/ReactNative/PaperUIManager.win32.js +5 -5
  115. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +39 -0
  116. package/Libraries/ReactNative/UIManager.js +2 -3
  117. package/Libraries/ReactNative/renderApplication.js +4 -0
  118. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +8 -0
  119. package/Libraries/Renderer/implementations/ReactFabric-dev.js +5908 -4906
  120. package/Libraries/Renderer/implementations/ReactFabric-prod.js +2100 -1918
  121. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +2567 -2352
  122. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +5610 -4844
  123. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +1710 -1556
  124. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +1830 -1639
  125. package/Libraries/Renderer/shims/ReactNativeTypes.js +2 -1
  126. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +2 -1
  127. package/Libraries/StyleSheet/EdgeInsetsPropType.js +4 -1
  128. package/Libraries/StyleSheet/StyleSheetTypes.js +59 -66
  129. package/Libraries/StyleSheet/normalizeColor.js +1 -1
  130. package/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.js +15 -0
  131. package/Libraries/StyleSheet/private/_TransformStyle.js +53 -0
  132. package/Libraries/Text/Text.js +13 -7
  133. package/Libraries/Text/TextNativeComponent.js +2 -0
  134. package/Libraries/Text/TextNativeComponent.win32.js +2 -0
  135. package/Libraries/Text/TextProps.js +10 -0
  136. package/Libraries/Types/CoreEventTypes.js +13 -1
  137. package/Libraries/Types/CoreEventTypes.win32.js +26 -1
  138. package/Libraries/Utilities/Appearance.js +0 -8
  139. package/Libraries/Utilities/HMRClient.js +1 -1
  140. package/Libraries/Utilities/ReactNativeTestTools.js +1 -0
  141. package/Libraries/Utilities/codegenNativeComponent.js +16 -6
  142. package/Libraries/Utilities/stringifySafe.js +4 -1
  143. package/Libraries/Utilities/useColorScheme.js +9 -15
  144. package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +3 -3
  145. package/Libraries/WebSocket/WebSocket.js +1 -1
  146. package/Libraries/vendor/emitter/_EmitterSubscription.js +1 -1
  147. package/Libraries/vendor/emitter/_EventEmitter.js +1 -1
  148. package/Libraries/vendor/emitter/_EventSubscription.js +1 -1
  149. package/flow/{use-subscription.js → use-sync-external-store.js} +4 -4
  150. package/index.js +30 -25
  151. package/index.win32.js +30 -25
  152. package/jest/preprocessor.js +24 -107
  153. package/jest/preprocessor_DO_NOT_USE.js +122 -0
  154. package/metro.config.js +3 -47
  155. package/overrides.json +39 -46
  156. package/package.json +32 -29
  157. package/rntypes/index.d.ts +19 -7
  158. package/src/Libraries/Components/Touchable/Tests/TouchableWin32Test.tsx +1 -1
  159. package/src/Libraries/Components/Touchable/TouchableWin32.Props.tsx +3 -1
  160. package/src/Libraries/Components/View/ViewWin32.Props.ts +1 -0
  161. package/src/Libraries/Lists/__tests__/__snapshots__/FlatList-test.js.snap +427 -0
  162. package/src/Libraries/Lists/__tests__/__snapshots__/SectionList-test.js.snap +391 -0
  163. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizeUtils-test.js.snap +3 -0
  164. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedList-test.js.snap +4565 -0
  165. package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedSectionList-test.js.snap +1153 -0
  166. package/src/rntypes/index.d.ts +19 -7
  167. package/typings-index.js +5 -1
  168. package/typings-index.js.map +1 -1
  169. package/Libraries/Components/SegmentedControlIOS/RCTSegmentedControlNativeComponent.js +0 -44
  170. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.android.js +0 -45
  171. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js +0 -123
  172. package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.js +0 -45
  173. package/Libraries/Components/View/ReactNativeViewViewConfig.js +0 -360
  174. package/Libraries/Components/View/ReactNativeViewViewConfig.win32.js +0 -401
  175. package/Libraries/Components/View/ReactNativeViewViewConfigAndroid.js +0 -83
  176. package/Libraries/ReactNative/UIManagerInjection.js +0 -15
  177. package/Libraries/Renderer/implementations/ReactFabric-dev.fb.js +0 -24527
  178. package/Libraries/Renderer/implementations/ReactFabric-prod.fb.js +0 -8309
  179. package/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js +0 -8961
  180. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js +0 -24948
  181. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js +0 -8400
  182. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js +0 -9049
  183. package/flow/Promise.js +0 -47
@@ -1,360 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @flow
8
- * @format
9
- */
10
-
11
- import type {ViewConfig} from '../../Renderer/shims/ReactNativeTypes';
12
- import ReactNativeViewViewConfigAndroid from './ReactNativeViewViewConfigAndroid';
13
- import {Platform} from 'react-native';
14
-
15
- const ReactNativeViewConfig: ViewConfig = {
16
- uiViewClassName: 'RCTView',
17
- baseModuleName: null,
18
- Manager: 'ViewManager',
19
- Commands: {},
20
- Constants: {},
21
- bubblingEventTypes: {
22
- ...ReactNativeViewViewConfigAndroid.bubblingEventTypes,
23
- topBlur: {
24
- phasedRegistrationNames: {
25
- bubbled: 'onBlur',
26
- captured: 'onBlurCapture',
27
- },
28
- },
29
- topChange: {
30
- phasedRegistrationNames: {
31
- bubbled: 'onChange',
32
- captured: 'onChangeCapture',
33
- },
34
- },
35
- topEndEditing: {
36
- phasedRegistrationNames: {
37
- bubbled: 'onEndEditing',
38
- captured: 'onEndEditingCapture',
39
- },
40
- },
41
- topFocus: {
42
- phasedRegistrationNames: {
43
- bubbled: 'onFocus',
44
- captured: 'onFocusCapture',
45
- },
46
- },
47
- topKeyPress: {
48
- phasedRegistrationNames: {
49
- bubbled: 'onKeyPress',
50
- captured: 'onKeyPressCapture',
51
- },
52
- },
53
- topPress: {
54
- phasedRegistrationNames: {
55
- bubbled: 'onPress',
56
- captured: 'onPressCapture',
57
- },
58
- },
59
- topSubmitEditing: {
60
- phasedRegistrationNames: {
61
- bubbled: 'onSubmitEditing',
62
- captured: 'onSubmitEditingCapture',
63
- },
64
- },
65
- topTouchCancel: {
66
- phasedRegistrationNames: {
67
- bubbled: 'onTouchCancel',
68
- captured: 'onTouchCancelCapture',
69
- },
70
- },
71
- topTouchEnd: {
72
- phasedRegistrationNames: {
73
- bubbled: 'onTouchEnd',
74
- captured: 'onTouchEndCapture',
75
- },
76
- },
77
- topTouchMove: {
78
- phasedRegistrationNames: {
79
- bubbled: 'onTouchMove',
80
- captured: 'onTouchMoveCapture',
81
- },
82
- },
83
- topTouchStart: {
84
- phasedRegistrationNames: {
85
- bubbled: 'onTouchStart',
86
- captured: 'onTouchStartCapture',
87
- },
88
- },
89
- },
90
- directEventTypes: {
91
- ...ReactNativeViewViewConfigAndroid.directEventTypes,
92
- topAccessibilityAction: {
93
- registrationName: 'onAccessibilityAction',
94
- },
95
- topAccessibilityEscape: {
96
- registrationName: 'onAccessibilityEscape',
97
- },
98
- topAccessibilityTap: {
99
- registrationName: 'onAccessibilityTap',
100
- },
101
- topLayout: {
102
- registrationName: 'onLayout',
103
- },
104
- topMagicTap: {
105
- registrationName: 'onMagicTap',
106
- },
107
- topPointerEnter: {
108
- registrationName: 'pointerenter',
109
- },
110
- topPointerLeave: {
111
- registrationName: 'pointerleave',
112
- },
113
- topPointerMove: {
114
- registrationName: 'pointermove',
115
- },
116
- // Events for react-native-gesture-handler (T45765076)
117
- // Remove once this library can handle JS View Configs
118
- onGestureHandlerEvent: {
119
- registrationName: 'onGestureHandlerEvent',
120
- },
121
- onGestureHandlerStateChange: {
122
- registrationName: 'onGestureHandlerStateChange',
123
- },
124
- },
125
- validAttributes: {
126
- ...ReactNativeViewViewConfigAndroid.validAttributes,
127
- accessibilityActions: true,
128
- accessibilityElementsHidden: true,
129
- accessibilityHint: true,
130
- accessibilityIgnoresInvertColors: true,
131
- accessibilityLabel: true,
132
- accessibilityLiveRegion: true,
133
- accessibilityRole: true,
134
- accessibilityState: true,
135
- accessibilityValue: true,
136
- accessibilityViewIsModal: true,
137
- accessible: true,
138
- alignContent: true,
139
- alignItems: true,
140
- alignSelf: true,
141
- aspectRatio: true,
142
- backfaceVisibility: true,
143
- backgroundColor: {process: require('../../StyleSheet/processColor')},
144
- borderBottomColor: {process: require('../../StyleSheet/processColor')},
145
- borderBottomEndRadius: true,
146
- borderBottomLeftRadius: true,
147
- borderBottomRightRadius: true,
148
- borderBottomStartRadius: true,
149
- borderBottomWidth: true,
150
- borderColor: {process: require('../../StyleSheet/processColor')},
151
- borderEndColor: {process: require('../../StyleSheet/processColor')},
152
- borderEndWidth: true,
153
- borderLeftColor: {process: require('../../StyleSheet/processColor')},
154
- borderLeftWidth: true,
155
- borderRadius: true,
156
- borderRightColor: {process: require('../../StyleSheet/processColor')},
157
- borderRightWidth: true,
158
- borderStartColor: {process: require('../../StyleSheet/processColor')},
159
- borderStartWidth: true,
160
- borderStyle: true,
161
- borderTopColor: {process: require('../../StyleSheet/processColor')},
162
- borderTopEndRadius: true,
163
- borderTopLeftRadius: true,
164
- borderTopRightRadius: true,
165
- borderTopStartRadius: true,
166
- borderTopWidth: true,
167
- borderWidth: true,
168
- bottom: true,
169
- clickable: true,
170
- collapsable: true,
171
- direction: true,
172
- display: true,
173
- elevation: true,
174
- end: true,
175
- flex: true,
176
- flexBasis: true,
177
- flexDirection: true,
178
- flexGrow: true,
179
- flexShrink: true,
180
- flexWrap: true,
181
- height: true,
182
- hitSlop: {diff: require('../../Utilities/differ/insetsDiffer')},
183
- importantForAccessibility: true,
184
- justifyContent: true,
185
- left: true,
186
- margin: true,
187
- marginBottom: true,
188
- marginEnd: true,
189
- marginHorizontal: true,
190
- marginLeft: true,
191
- marginRight: true,
192
- marginStart: true,
193
- marginTop: true,
194
- marginVertical: true,
195
- maxHeight: true,
196
- maxWidth: true,
197
- minHeight: true,
198
- minWidth: true,
199
- nativeID: true,
200
- needsOffscreenAlphaCompositing: true,
201
- onAccessibilityAction: true,
202
- onAccessibilityEscape: true,
203
- onAccessibilityTap: true,
204
- pointerenter: true,
205
- pointerleave: true,
206
- pointermove: true,
207
- onLayout: true,
208
- onMagicTap: true,
209
- opacity: true,
210
- overflow: true,
211
- padding: true,
212
- paddingBottom: true,
213
- paddingEnd: true,
214
- paddingHorizontal: true,
215
- paddingLeft: true,
216
- paddingRight: true,
217
- paddingStart: true,
218
- paddingTop: true,
219
- paddingVertical: true,
220
- pointerEvents: true,
221
- position: true,
222
- removeClippedSubviews: true,
223
- renderToHardwareTextureAndroid: true,
224
- right: true,
225
- rotation: true,
226
- scaleX: true,
227
- scaleY: true,
228
- shadowColor: {process: require('../../StyleSheet/processColor')},
229
- shadowOffset: {diff: require('../../Utilities/differ/sizesDiffer')},
230
- shadowOpacity: true,
231
- shadowRadius: true,
232
- shouldRasterizeIOS: true,
233
- start: true,
234
- style: {
235
- alignContent: true,
236
- alignItems: true,
237
- alignSelf: true,
238
- aspectRatio: true,
239
- backfaceVisibility: true,
240
- backgroundColor: {process: require('../../StyleSheet/processColor')},
241
- borderBottomColor: {process: require('../../StyleSheet/processColor')},
242
- borderBottomEndRadius: true,
243
- borderBottomLeftRadius: true,
244
- borderBottomRightRadius: true,
245
- borderBottomStartRadius: true,
246
- borderBottomWidth: true,
247
- borderColor: {process: require('../../StyleSheet/processColor')},
248
- borderEndColor: {process: require('../../StyleSheet/processColor')},
249
- borderEndWidth: true,
250
- borderLeftColor: {process: require('../../StyleSheet/processColor')},
251
- borderLeftWidth: true,
252
- borderRadius: true,
253
- borderRightColor: {process: require('../../StyleSheet/processColor')},
254
- borderRightWidth: true,
255
- borderStartColor: {process: require('../../StyleSheet/processColor')},
256
- borderStartWidth: true,
257
- borderStyle: true,
258
- borderTopColor: {process: require('../../StyleSheet/processColor')},
259
- borderTopEndRadius: true,
260
- borderTopLeftRadius: true,
261
- borderTopRightRadius: true,
262
- borderTopStartRadius: true,
263
- borderTopWidth: true,
264
- borderWidth: true,
265
- bottom: true,
266
- color: {process: require('../../StyleSheet/processColor')},
267
- decomposedMatrix: true,
268
- direction: true,
269
- display: true,
270
- elevation: true,
271
- end: true,
272
- flex: true,
273
- flexBasis: true,
274
- flexDirection: true,
275
- flexGrow: true,
276
- flexShrink: true,
277
- flexWrap: true,
278
- fontFamily: true,
279
- fontSize: true,
280
- fontStyle: true,
281
- fontVariant: true,
282
- fontWeight: true,
283
- height: true,
284
- includeFontPadding: true,
285
- justifyContent: true,
286
- left: true,
287
- letterSpacing: true,
288
- lineHeight: true,
289
- margin: true,
290
- marginBottom: true,
291
- marginEnd: true,
292
- marginHorizontal: true,
293
- marginLeft: true,
294
- marginRight: true,
295
- marginStart: true,
296
- marginTop: true,
297
- marginVertical: true,
298
- maxHeight: true,
299
- maxWidth: true,
300
- minHeight: true,
301
- minWidth: true,
302
- opacity: true,
303
- overflow: true,
304
- overlayColor: {process: require('../../StyleSheet/processColor')},
305
- padding: true,
306
- paddingBottom: true,
307
- paddingEnd: true,
308
- paddingHorizontal: true,
309
- paddingLeft: true,
310
- paddingRight: true,
311
- paddingStart: true,
312
- paddingTop: true,
313
- paddingVertical: true,
314
- position: true,
315
- resizeMode: true,
316
- right: true,
317
- rotation: true,
318
- scaleX: true,
319
- scaleY: true,
320
- shadowColor: {process: require('../../StyleSheet/processColor')},
321
- shadowOffset: {diff: require('../../Utilities/differ/sizesDiffer')},
322
- shadowOpacity: true,
323
- shadowRadius: true,
324
- start: true,
325
- textAlign: true,
326
- textAlignVertical: true,
327
- textDecorationColor: {process: require('../../StyleSheet/processColor')},
328
- textDecorationLine: true,
329
- textDecorationStyle: true,
330
- textShadowColor: {process: require('../../StyleSheet/processColor')},
331
- textShadowOffset: true,
332
- textShadowRadius: true,
333
- textTransform: true,
334
- tintColor: {process: require('../../StyleSheet/processColor')},
335
- top: true,
336
- transform:
337
- Platform.OS === 'ios'
338
- ? {diff: require('../../Utilities/differ/matricesDiffer')}
339
- : {process: require('../../StyleSheet/processTransform')},
340
- transformMatrix: true,
341
- translateX: true,
342
- translateY: true,
343
- width: true,
344
- writingDirection: true,
345
- zIndex: true,
346
- },
347
- testID: true,
348
- top: true,
349
- transform:
350
- Platform.OS === 'ios'
351
- ? {diff: require('../../Utilities/differ/matricesDiffer')}
352
- : {process: require('../../StyleSheet/processTransform')},
353
- translateX: true,
354
- translateY: true,
355
- width: true,
356
- zIndex: true,
357
- },
358
- };
359
-
360
- module.exports = ReactNativeViewConfig;