diff --git a/Libraries/Renderer/REVISION b/Libraries/Renderer/REVISION index 2ef55796759cfe..b808372b01808f 100644 --- a/Libraries/Renderer/REVISION +++ b/Libraries/Renderer/REVISION @@ -1 +1 @@ -48b687fc95a172cec8f305312a27d105e5719581 \ No newline at end of file +fccf3a9fba5fd778c678657c556344b333111cfb \ No newline at end of file diff --git a/Libraries/Renderer/shims/ReactNativeTypes.js b/Libraries/Renderer/shims/ReactNativeTypes.js index 39ecaf5257a8b1..403452ef41a5d6 100644 --- a/Libraries/Renderer/shims/ReactNativeTypes.js +++ b/Libraries/Renderer/shims/ReactNativeTypes.js @@ -6,7 +6,7 @@ * * @noformat * @flow strict - * @generated SignedSource<> + * @generated SignedSource<<265b342f0d29323bebb711ba0bc882ec>> * * This file was sync'd from the facebook/react repository. */ @@ -51,7 +51,7 @@ export type AttributeConfiguration = $ReadOnly<{ [propName: string]: AnyAttributeType, style: $ReadOnly<{ [propName: string]: AnyAttributeType, - ..., + ... }>, ... }>; @@ -60,7 +60,7 @@ export type PartialAttributeConfiguration = $ReadOnly<{ [propName: string]: AnyAttributeType, style?: $ReadOnly<{ [propName: string]: AnyAttributeType, - ..., + ... }>, ... }>; @@ -79,13 +79,13 @@ export type ViewConfig = $ReadOnly<{ skipBubbling?: ?boolean, }>, }>, - ..., + ... }>, directEventTypes?: $ReadOnly<{ [eventName: string]: $ReadOnly<{ registrationName: string, }>, - ..., + ... }>, uiViewClassName: string, validAttributes: AttributeConfiguration, @@ -122,7 +122,7 @@ type SecretInternalsType = { type InspectorDataProps = $ReadOnly<{ [propName: string]: string, - ..., + ... }>; type InspectorDataSource = $ReadOnly<{ diff --git a/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js b/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js index 95538e69da24a8..6fd96f25659a2d 100644 --- a/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +++ b/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js @@ -6,7 +6,7 @@ * * @noformat * @flow strict-local - * @generated SignedSource<<7b69bfde64e35b7f706c2f6b9ef91e7c>> + * @generated SignedSource<<47ba85d7f43c9b591d6804827322d00e>> * * This file was sync'd from the facebook/react repository. */ @@ -25,13 +25,13 @@ const customBubblingEventTypes: { skipBubbling?: ?boolean, }>, }>, - ..., + ... } = {}; const customDirectEventTypes: { [eventName: string]: $ReadOnly<{ registrationName: string, }>, - ..., + ... } = {}; exports.customBubblingEventTypes = customBubblingEventTypes; @@ -78,7 +78,7 @@ function processEventTypes(viewConfig: ViewConfig): void { * A callback is provided to load the view config from UIManager. * The callback is deferred until the view is actually rendered. */ -exports.register = function(name: string, callback: () => ViewConfig): string { +exports.register = function (name: string, callback: () => ViewConfig): string { invariant( !viewConfigCallbacks.has(name), 'Tried to register two views with the same name %s', @@ -99,7 +99,7 @@ exports.register = function(name: string, callback: () => ViewConfig): string { * If this is the first time the view has been used, * This configuration will be lazy-loaded from UIManager. */ -exports.get = function(name: string): ViewConfig { +exports.get = function (name: string): ViewConfig { let viewConfig; if (!viewConfigs.has(name)) { const callback = viewConfigCallbacks.get(name); diff --git a/Libraries/Renderer/shims/createReactNativeComponentClass.js b/Libraries/Renderer/shims/createReactNativeComponentClass.js index e1aee01e405d83..0b97635aa67869 100644 --- a/Libraries/Renderer/shims/createReactNativeComponentClass.js +++ b/Libraries/Renderer/shims/createReactNativeComponentClass.js @@ -6,7 +6,7 @@ * * @noformat * @flow strict-local - * @generated SignedSource<<7d3d4090dadea2daa09d92e5e66f6e5d>> + * @generated SignedSource<> * * This file was sync'd from the facebook/react repository. */ @@ -26,7 +26,7 @@ const {register} = ReactNativeViewConfigRegistry; * @param {string} config iOS View configuration. * @private */ -const createReactNativeComponentClass = function( +const createReactNativeComponentClass = function ( name: string, callback: () => ViewConfig, ): string {