Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`LogBoxNotificationContainer should render both an error and warning notification 1`] = `
<RCTSafeAreaView
<SafeAreaView
style={
Object {
"bottom": 20,
Expand Down Expand Up @@ -101,7 +101,7 @@ exports[`LogBoxNotificationContainer should render both an error and warning not
totalLogCount={1}
/>
</View>
</RCTSafeAreaView>
</SafeAreaView>
`;

exports[`LogBoxNotificationContainer should render null with no logs 1`] = `null`;
Expand All @@ -113,7 +113,7 @@ exports[`LogBoxNotificationContainer should render selected fatal error even whe
exports[`LogBoxNotificationContainer should render selected syntax error even when disabled 1`] = `null`;

exports[`LogBoxNotificationContainer should render the latest error notification 1`] = `
<RCTSafeAreaView
<SafeAreaView
style={
Object {
"bottom": 20,
Expand Down Expand Up @@ -168,11 +168,11 @@ exports[`LogBoxNotificationContainer should render the latest error notification
totalLogCount={2}
/>
</View>
</RCTSafeAreaView>
</SafeAreaView>
`;

exports[`LogBoxNotificationContainer should render the latest warning notification 1`] = `
<RCTSafeAreaView
<SafeAreaView
style={
Object {
"bottom": 20,
Expand Down Expand Up @@ -227,5 +227,5 @@ exports[`LogBoxNotificationContainer should render the latest warning notificati
totalLogCount={2}
/>
</View>
</RCTSafeAreaView>
</SafeAreaView>
`;
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,4 @@ type RCTActivityIndicatorViewNativeProps = Readonly<{

export default codegenNativeComponent<RCTActivityIndicatorViewNativeProps>(
'ActivityIndicatorView',
{
paperComponentName: 'RCTActivityIndicatorView',
},
) as HostComponent<RCTActivityIndicatorViewNativeProps>;
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,5 @@ export default codegenNativeComponent<RCTModalHostViewNativeProps>(
'ModalHostView',
{
interfaceOnly: true,
paperComponentName: 'RCTModalHostView',
},
) as HostComponent<RCTModalHostViewNativeProps>;
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
export default codegenNativeComponent<PullToRefreshNativeProps>(
'PullToRefreshView',
{
paperComponentName: 'RCTRefreshControl',
excludedPlatforms: ['android'],
},
) as HostComponent<PullToRefreshNativeProps>;
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ type RCTSafeAreaViewNativeProps = Readonly<{
export default codegenNativeComponent<RCTSafeAreaViewNativeProps>(
'SafeAreaView',
{
paperComponentName: 'RCTSafeAreaView',
interfaceOnly: true,
},
) as HostComponent<RCTSafeAreaViewNativeProps>;
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
});

export default codegenNativeComponent<SwitchNativeProps>('Switch', {
paperComponentName: 'RCTSwitch',
excludedPlatforms: ['android'],
interfaceOnly: true,
}) as ComponentType;
Loading