Remove NewAppScreen from public API test (#47707)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/47707

NewAppScreen should be removed from public API test

Changelog: [Internal]

Reviewed By: cipolleschi, blakef

Differential Revision: D66165484

fbshipit-source-id: 2b72a874e443447a2b444921f25cec729bcb89c5
This commit is contained in:
Alan Lee
2024-11-20 11:06:31 -08:00
committed by Facebook GitHub Bot
parent 102062fbc7
commit de82b15b0d
2 changed files with 1 additions and 43 deletions
@@ -6903,49 +6903,6 @@ exports[`public API should not change unintentionally Libraries/Network/fetch.js
"
`;
exports[`public API should not change unintentionally Libraries/NewAppScreen/components/Colors.js 1`] = `
"declare export default {
primary: \\"#1292B4\\",
white: \\"#FFF\\",
lighter: \\"#F3F3F3\\",
light: \\"#DAE1E7\\",
dark: \\"#444\\",
darker: \\"#222\\",
black: \\"#000\\",
};
"
`;
exports[`public API should not change unintentionally Libraries/NewAppScreen/components/DebugInstructions.js 1`] = `
"declare const DebugInstructions: () => Node;
declare export default typeof DebugInstructions;
"
`;
exports[`public API should not change unintentionally Libraries/NewAppScreen/components/Header.js 1`] = `
"declare const Header: () => Node;
declare export default typeof Header;
"
`;
exports[`public API should not change unintentionally Libraries/NewAppScreen/components/HermesBadge.js 1`] = `
"declare const HermesBadge: () => Node;
declare export default typeof HermesBadge;
"
`;
exports[`public API should not change unintentionally Libraries/NewAppScreen/components/LearnMoreLinks.js 1`] = `
"declare const LinkList: () => Node;
declare export default typeof LinkList;
"
`;
exports[`public API should not change unintentionally Libraries/NewAppScreen/components/ReloadInstructions.js 1`] = `
"declare const ReloadInstructions: () => Node;
declare export default typeof ReloadInstructions;
"
`;
exports[`public API should not change unintentionally Libraries/NewAppScreen/index.js 1`] = `
"export {
Colors,
@@ -26,6 +26,7 @@ const IGNORE_PATTERNS = [
'**/*.fb.js',
'**/*.macos.js',
'**/*.windows.js',
'Libraries/NewAppScreen/components/**',
// Non source files
'Libraries/Renderer/implementations/**',
'Libraries/Renderer/shims/**',