diff --git a/docgen/README.md b/docgen/README.md index 90d02d4f75f..9c0c105f1eb 100644 --- a/docgen/README.md +++ b/docgen/README.md @@ -8,6 +8,12 @@ For development use only. This script will pull down the current docs from maste ### Usage +First, install dependencies: + +``` +npm install +``` + Run the following command locally: ``` @@ -16,14 +22,21 @@ GIT_USER=your_git_user GITHUB_USERNAME=facebook GITHUB_REPONAME=react-native nod This will perform a sparse checkout of the `docs/` folder from `master`, generating a clean set of markdown docs in the local `docs/` folder. It will also write to disk an updated `sidebars.json` file based on these docs. -## build-autodocs-markdownjs +## build.js Runs the usual autodocs generation scripts used by the `react-page-middleware` variant of the React Native website, but provides markdown instead of HTML. Run this script prior to building the website. ### Usage -Run the following commands locally (the generate script needs to run first): +Run the following command locally: ``` +node server/build.js +``` + +The build script performs some cleanup, then runs the following scripts in order: +``` +node server/generate.js node server/build-autodocs-markdown.js -``` \ No newline at end of file +node server/build-autodocs-sidebar.js +``` diff --git a/docgen/server/build-autodocs-markdown.js b/docgen/server/build-autodocs-markdown.js old mode 100755 new mode 100644 index b5a531c7d58..6c2d6eb564d --- a/docgen/server/build-autodocs-markdown.js +++ b/docgen/server/build-autodocs-markdown.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2015-present, Facebook, Inc. + * Copyright (c) 2017-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the @@ -8,23 +8,139 @@ */ "use strict"; -const { cd, cp, echo, exec, exit, ls, mkdir, rm, which } = require("shelljs"); +var fs = require("fs"); +var glob = require("glob"); +var Promise = require("bluebird"); +var mkdirp = require("mkdirp"); +var slugify = require("../core/slugify"); +var jsdom = require("jsdom"); -cd(`../../docs`); -rm(`-rf`, `autogen_*.md`); -cd(`..`); -cd(`docgen`); -rm(`-rf`, `build`); -rm(`-rf`, `src`); -mkdir(`-p`, `build`); -mkdir(`-p`, `src`); +const { JSDOM } = jsdom; -if (exec(`node server/generate.js`).code !== 0) { - echo(`Error: Generating HTML failed`); - exit(1); +var queue = Promise.resolve(); + +function bodyContentFromDOM(dom) { + const el = dom.window.document.querySelector("#componentContent"); + if (el) { + return el.innerHTML; + } else { + return null; + } } -if (exec(`node server/build.js`).code !== 0) { - echo(`Error: Generating Markdown failed`); - exit(1); +function componentNameFromDOM(dom) { + const el = dom.window.document.querySelector("title"); + if (el) { + return el.innerHTML; + } else { + return "Component"; + } } + +function componentCategoryFromDOM(dom) { + const el = dom.window.document.querySelector('meta[property="rn:category"]'); + if (el) { + return el.content; + } else { + return "Components"; + } +} + +/** + * Generates a markdown formatted file, including frontmatter. + * + * @param {*} dom + */ +function generateMarkdownFromDOM(dom) { + const body = bodyContentFromDOM(dom); + if (!body) { + return; + } + const componentName = componentNameFromDOM(dom); + const slug = slugify(componentName); + let category = "Components"; + const componentCategory = componentCategoryFromDOM(dom); + if (componentCategory) { + category = componentCategory; + } + const metadata = { id: slug, category: category }; + const res = [ + "---", + "id: " + slug, + "title: " + componentName, + "category: " + category, + "permalink: docs/" + slug + ".html", + "---", + body + ] + .filter(function(line) { + return line; + }) + .join("\n"); + const targetFile = "../docs/autogen_" + componentName + ".md"; + mkdirp.sync(targetFile.replace(new RegExp("/[^/]*$"), "")); + console.log("Writing " + targetFile); + fs.writeFileSync(targetFile, res); + return metadata; +} + +function generateMetatadaFile(categories) { + const categoriesMetadataFile = "build/sidebar-metadata.json"; + fs.writeFileSync(categoriesMetadataFile, JSON.stringify(categories)); +} + +/** + * Updates sidebar.json with the autogenerated API docs, without overwriting existing sections/categories. + * + * @param {*} categories + */ +function updateSidebarSync() { + const categoriesMetadataFile = "build/sidebar-metadata.json"; + const categories = JSON.parse(fs.readFileSync(categoriesMetadataFile)); + const sidebarFile = "../website/sidebars.json"; + let sidebarContent = { SIDEBAR_AUTODOCS_SECTION: {} }; + if (fs.existsSync(sidebarFile)) { + sidebarContent = JSON.parse(fs.readFileSync(sidebarFile)); + } + + let sortedCategories = {}; + for (var category in categories) { + const sortedCategory = categories[category].sort(); + sortedCategories[category] = sortedCategory; + } + + const newSidebarContent = Object.assign({}, sidebarContent, { + API: sortedCategories + }); + + fs.writeFileSync(sidebarFile, JSON.stringify(newSidebarContent)); + console.log(`Updated ${sidebarFile}`); +} + +// Generate HTML for each non-source code JS file +glob("build/**/*.html", function(er, files) { + let categories = {}; + files.forEach(function(file) { + queue = queue + .then(function() { + return JSDOM.fromFile(file); + }) + .then(function(dom) { + const metadata = generateMarkdownFromDOM(dom); + if (categories[metadata.category]) { + categories[metadata.category].push(metadata.id); + } else { + categories[metadata.category] = [metadata.id]; + } + }); + }); + + queue = queue.then(function() { + console.log("Generated Markdown files from HTML"); + generateMetatadaFile(categories); + }) + .catch(function(e) { + console.error(e); + process.exit(1); + }); +}); diff --git a/docgen/server/build-autodocs-sidebar.js b/docgen/server/build-autodocs-sidebar.js new file mode 100644 index 00000000000..a72a52087e5 --- /dev/null +++ b/docgen/server/build-autodocs-sidebar.js @@ -0,0 +1,32 @@ +/** + * Copyright (c) 2017-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + */ +"use strict"; + +var fs = require("fs"); + +const categoriesMetadataFile = "build/sidebar-metadata.json"; +const categories = JSON.parse(fs.readFileSync(categoriesMetadataFile)); +const sidebarFile = "../website/sidebars.json"; +let sidebarContent = { SIDEBAR_AUTODOCS_SECTION: {} }; +if (fs.existsSync(sidebarFile)) { + sidebarContent = JSON.parse(fs.readFileSync(sidebarFile)); +} + +let sortedCategories = {}; +for (var category in categories) { + const sortedCategory = categories[category].sort(); + sortedCategories[category] = sortedCategory; +} + +const newSidebarContent = Object.assign({}, sidebarContent, { + API: sortedCategories +}); + +fs.writeFileSync(sidebarFile, JSON.stringify(newSidebarContent)); +console.log(`Updated ${sidebarFile}`); diff --git a/docgen/server/build.js b/docgen/server/build.js old mode 100644 new mode 100755 index 810750bd035..c93cd8f1037 --- a/docgen/server/build.js +++ b/docgen/server/build.js @@ -1,5 +1,5 @@ /** - * Copyright (c) 2017-present, Facebook, Inc. + * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the @@ -8,146 +8,29 @@ */ "use strict"; -var fs = require("fs"); -var glob = require("glob"); -var Promise = require("bluebird"); -var mkdirp = require("mkdirp"); -var slugify = require("../core/slugify"); -var jsdom = require("jsdom"); +const { cd, cp, echo, exec, exit, ls, mkdir, rm, which } = require("shelljs"); -const { JSDOM } = jsdom; +cd(process.cwd()); -var queue = Promise.resolve(); +cd(`../docs`); +rm(`-rf`, `autogen_*.md`); +cd(`../docgen`); +rm(`-rf`, `build`); +rm(`-rf`, `src`); +mkdir(`-p`, `build`); +mkdir(`-p`, `src`); -function bodyContentFromDOM(dom) { - const el = dom.window.document.querySelector("#componentContent"); - if (el) { - return el.innerHTML; - } else { - return null; - } +if (exec(`node server/generate.js`).code !== 0) { + echo(`Error: Rendering Autodocs to HTML failed`); + exit(1); } -function componentNameFromDOM(dom) { - const el = dom.window.document.querySelector("title"); - if (el) { - return el.innerHTML; - } else { - return "Component"; - } +if (exec(`node server/build-autodocs-markdown.js`).code !== 0) { + echo(`Error: Generating Autodocs Markdown failed`); + exit(1); } -function componentCategoryFromDOM(dom) { - const el = dom.window.document.querySelector('meta[property="rn:category"]'); - if (el) { - return el.content; - } else { - return "Components"; - } +if (exec(`node server/build-autodocs-sidebar.js`).code !== 0) { + echo(`Error: Generating Autodocs Sidebar failed`); + exit(1); } - -/** - * Updates sidebar.json with the autogenerated API docs, without overwriting existing sections/categories. - * - * @param {*} categories - */ -function updateSidebarSync(categories) { - const sidebarFile = "../website/sidebars.json"; - let sidebarContent = { SIDEBAR_AUTODOCS_SECTION: {} }; - if (fs.existsSync(sidebarFile)) { - sidebarContent = JSON.parse(fs.readFileSync(sidebarFile)); - } - - let sortedCategories = {}; - for (var category in categories) { - const sortedCategory = categories[category].sort(); - sortedCategories[category] = sortedCategory; - // TODO: replace with spread once babelized? - } - - const newSidebarContent = Object.assign({}, sidebarContent, { - API: sortedCategories - }); - - fs.writeFileSync(sidebarFile, JSON.stringify(newSidebarContent)); -} - -// Generate HTML for each non-source code JS file -glob("build/**/*.html", function(er, files) { - let categories = {}; - files.forEach(function(file) { - queue = queue - .then(function() { - return JSDOM.fromFile(file); - }) - .then(function(dom) { - const body = bodyContentFromDOM(dom); - if (!body) { - console.log("Skipping " + file); - return; - } - const componentName = componentNameFromDOM(dom); - const slug = slugify(componentName); - let category = "Components"; - const componentCategory = componentCategoryFromDOM(dom); - if (componentCategory) { - category = componentCategory; - } - const metadata = { id: slug, category: category }; - const res = [ - "---", - "id: " + slug, - "title: " + componentName, - "sidebar: api", - "category: " + category, - "permalink: docs/" + slug + ".html", - "---", - body - ] - .filter(function(line) { - return line; - }) - .join("\n"); - const targetFile = "../docs/autogen_" + componentName + ".md"; - mkdirp.sync(targetFile.replace(new RegExp("/[^/]*$"), "")); - console.log("Writing " + targetFile); - fs.writeFileSync(targetFile, res); - if (categories[category]) { - categories[category].push(slug); - } else { - categories[category] = [slug]; - } - }) - .catch(function(error) { - console.error("Skipping " + targetFile + ": " + error); - }); - }); - - queue = queue - .then(function() { - console.log("Generated Markdown files from HTML"); - updateSidebarSync(categories); - }) - .catch(function(e) { - console.error(e); - process.exit(1); - }); -}); - -// TODO: Generate a sidebar. Looks like this: -/* -{ - "docs": { - "The Basics": ["doc1"], - "Guides": ["doc2"], - "Components": ["doc3"], - "APIs": ["doc3"] - }, - "docs-other": { - "First Category": ["doc4", "doc5"] - } -} -I'm guessing for API/Components we can just do it alphabetically. -For everything else, we can get an initial order from the frontmatter, and bake it into the sidebar. -Then we can make sure that the build script only updates the API and Components keys, leaving Guides/The Basics untouched. -*/ diff --git a/docgen/server/import-existing-docs.js b/docgen/server/import-existing-docs.js index a6eb9e9ead6..3e4706e2f5e 100644 --- a/docgen/server/import-existing-docs.js +++ b/docgen/server/import-existing-docs.js @@ -73,7 +73,7 @@ function checkOutDocs() { shell.exit(1); } - shell.echo("Checked out react-native-docs"); + shell.echo(`Checked out ${targetDir}`); shell.cd(`../..`); } @@ -125,7 +125,6 @@ function generateDocsMetadata(files) { } if (metadata.permalink.match(/^https?:/)) { - // skips non-local docs? console.log(`Skipping ${file} as its permalink is external`); return; } diff --git a/docgen/src/react-native/docs/alertios.js b/docgen/src/react-native/docs/alertios.js index 4f012a44b4f..e6bda49ed07 100644 --- a/docgen/src/react-native/docs/alertios.js +++ b/docgen/src/react-native/docs/alertios.js @@ -132,7 +132,7 @@ var content = `\{ 500, 724 ], - "filename": "xlbud4cpt8cpr2l1wuq0d.js", + "filename": "isfgru4opc880no2vxn6g.js", "lineno": 27, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{} @@ -181,7 +181,7 @@ var content = `\{ 1301, 6425 ], - "filename": "xlbud4cpt8cpr2l1wuq0d.js", + "filename": "isfgru4opc880no2vxn6g.js", "lineno": 64, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -205,7 +205,7 @@ var content = `\{ 1320, 2364 ], - "filename": "xlbud4cpt8cpr2l1wuq0d.js", + "filename": "isfgru4opc880no2vxn6g.js", "lineno": 65, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{} @@ -280,7 +280,7 @@ var content = `\{ 2746, 4559 ], - "filename": "xlbud4cpt8cpr2l1wuq0d.js", + "filename": "isfgru4opc880no2vxn6g.js", "lineno": 101, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{} diff --git a/docgen/src/react-native/docs/asyncstorage.js b/docgen/src/react-native/docs/asyncstorage.js index 976e5661fbe..c73bfebf090 100644 --- a/docgen/src/react-native/docs/asyncstorage.js +++ b/docgen/src/react-native/docs/asyncstorage.js @@ -11,7 +11,7 @@ var content = `\{ 1920, 14385 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 62, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -35,7 +35,7 @@ var content = `\{ 2285, 2786 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 75, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -92,7 +92,7 @@ var content = `\{ 3094, 3459 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 99, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -158,7 +158,7 @@ var content = `\{ 3725, 4080 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 120, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -215,7 +215,7 @@ var content = `\{ 5240, 5609 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 169, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -284,7 +284,7 @@ var content = `\{ 5934, 6263 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 190, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -332,7 +332,7 @@ var content = `\{ 6547, 6875 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 211, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -380,7 +380,7 @@ var content = `\{ 7392, 8575 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 235, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -429,7 +429,7 @@ var content = `\{ 9513, 10248 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 292, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -492,7 +492,7 @@ var content = `\{ 10805, 11163 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 341, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -549,7 +549,7 @@ var content = `\{ 11710, 12056 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 371, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ @@ -609,7 +609,7 @@ var content = `\{ 14021, 14383 ], - "filename": "4c30ra99ajhb8q4jcdobwp.js", + "filename": "a2jrn3oa55vf06dqkrx0yt.js", "lineno": 443, "path": "/var/folders/82/w8hcc_tj7yq80482srkc1r2x0bj21j/T", "code": \{ diff --git a/docs/autogen_AccessibilityInfo.md b/docs/autogen_AccessibilityInfo.md index 42c011a4f50..45b1ec53571 100644 --- a/docs/autogen_AccessibilityInfo.md +++ b/docs/autogen_AccessibilityInfo.md @@ -1,7 +1,6 @@ --- id: accessibilityinfo title: AccessibilityInfo -sidebar: api category: APIs permalink: docs/accessibilityinfo.html --- diff --git a/docs/autogen_ActionSheetIOS.md b/docs/autogen_ActionSheetIOS.md index 8caded00165..cf31476db05 100644 --- a/docs/autogen_ActionSheetIOS.md +++ b/docs/autogen_ActionSheetIOS.md @@ -1,7 +1,6 @@ --- id: actionsheetios title: ActionSheetIOS -sidebar: api category: APIs permalink: docs/actionsheetios.html --- diff --git a/docs/autogen_ActivityIndicator.md b/docs/autogen_ActivityIndicator.md index 5ca9b3e0983..2f8d0c2cd6c 100644 --- a/docs/autogen_ActivityIndicator.md +++ b/docs/autogen_ActivityIndicator.md @@ -1,7 +1,6 @@ --- id: activityindicator title: ActivityIndicator -sidebar: api category: Components permalink: docs/activityindicator.html --- diff --git a/docs/autogen_Alert.md b/docs/autogen_Alert.md index ac511b3f424..fd681be9b3a 100644 --- a/docs/autogen_Alert.md +++ b/docs/autogen_Alert.md @@ -1,7 +1,6 @@ --- id: alert title: Alert -sidebar: api category: APIs permalink: docs/alert.html --- diff --git a/docs/autogen_AlertIOS.md b/docs/autogen_AlertIOS.md index f1e0cda38c0..908558ce0c6 100644 --- a/docs/autogen_AlertIOS.md +++ b/docs/autogen_AlertIOS.md @@ -1,7 +1,6 @@ --- id: alertios title: AlertIOS -sidebar: api category: APIs permalink: docs/alertios.html --- diff --git a/docs/autogen_Animated.md b/docs/autogen_Animated.md index 0e970677326..e5c130c3679 100644 --- a/docs/autogen_Animated.md +++ b/docs/autogen_Animated.md @@ -1,7 +1,6 @@ --- id: animated title: Animated -sidebar: api category: APIs permalink: docs/animated.html --- diff --git a/docs/autogen_AppRegistry.md b/docs/autogen_AppRegistry.md index 2a02bf5345d..a8a5c0853e3 100644 --- a/docs/autogen_AppRegistry.md +++ b/docs/autogen_AppRegistry.md @@ -1,7 +1,6 @@ --- id: appregistry title: AppRegistry -sidebar: api category: APIs permalink: docs/appregistry.html --- diff --git a/docs/autogen_AppState.md b/docs/autogen_AppState.md index de60cd1e2e2..78d83bcd52c 100644 --- a/docs/autogen_AppState.md +++ b/docs/autogen_AppState.md @@ -1,7 +1,6 @@ --- id: appstate title: AppState -sidebar: api category: APIs permalink: docs/appstate.html --- diff --git a/docs/autogen_AsyncStorage.md b/docs/autogen_AsyncStorage.md index 49a6201726f..870a5eaa436 100644 --- a/docs/autogen_AsyncStorage.md +++ b/docs/autogen_AsyncStorage.md @@ -1,7 +1,6 @@ --- id: asyncstorage title: AsyncStorage -sidebar: api category: APIs permalink: docs/asyncstorage.html --- diff --git a/docs/autogen_BackAndroid.md b/docs/autogen_BackAndroid.md index 938e07359ad..02361716e6d 100644 --- a/docs/autogen_BackAndroid.md +++ b/docs/autogen_BackAndroid.md @@ -1,7 +1,6 @@ --- id: backandroid title: BackAndroid -sidebar: api category: APIs permalink: docs/backandroid.html --- diff --git a/docs/autogen_BackHandler.md b/docs/autogen_BackHandler.md index 4f0e8a1d6d7..840c477edef 100644 --- a/docs/autogen_BackHandler.md +++ b/docs/autogen_BackHandler.md @@ -1,7 +1,6 @@ --- id: backhandler title: BackHandler -sidebar: api category: APIs permalink: docs/backhandler.html --- diff --git a/docs/autogen_Button.md b/docs/autogen_Button.md index e10dcaf3369..b85f93a53d6 100644 --- a/docs/autogen_Button.md +++ b/docs/autogen_Button.md @@ -1,7 +1,6 @@ --- id: button title: Button -sidebar: api category: Components permalink: docs/button.html --- diff --git a/docs/autogen_CameraRoll.md b/docs/autogen_CameraRoll.md index 82ec5581d47..1a3b7a95e3e 100644 --- a/docs/autogen_CameraRoll.md +++ b/docs/autogen_CameraRoll.md @@ -1,7 +1,6 @@ --- id: cameraroll title: CameraRoll -sidebar: api category: APIs permalink: docs/cameraroll.html --- diff --git a/docs/autogen_Clipboard.md b/docs/autogen_Clipboard.md index ae5e19d59fc..67531c76fcc 100644 --- a/docs/autogen_Clipboard.md +++ b/docs/autogen_Clipboard.md @@ -1,7 +1,6 @@ --- id: clipboard title: Clipboard -sidebar: api category: APIs permalink: docs/clipboard.html --- diff --git a/docs/autogen_DatePickerAndroid.md b/docs/autogen_DatePickerAndroid.md index 3df48f4ce4e..e27cae6c22c 100644 --- a/docs/autogen_DatePickerAndroid.md +++ b/docs/autogen_DatePickerAndroid.md @@ -1,7 +1,6 @@ --- id: datepickerandroid title: DatePickerAndroid -sidebar: api category: APIs permalink: docs/datepickerandroid.html --- diff --git a/docs/autogen_DatePickerIOS.md b/docs/autogen_DatePickerIOS.md index d595f61661a..3ac66949fe1 100644 --- a/docs/autogen_DatePickerIOS.md +++ b/docs/autogen_DatePickerIOS.md @@ -1,7 +1,6 @@ --- id: datepickerios title: DatePickerIOS -sidebar: api category: Components permalink: docs/datepickerios.html --- diff --git a/docs/autogen_Dimensions.md b/docs/autogen_Dimensions.md index 0f5fc007b06..476b6c3441a 100644 --- a/docs/autogen_Dimensions.md +++ b/docs/autogen_Dimensions.md @@ -1,7 +1,6 @@ --- id: dimensions title: Dimensions -sidebar: api category: APIs permalink: docs/dimensions.html --- diff --git a/docs/autogen_DrawerLayoutAndroid.md b/docs/autogen_DrawerLayoutAndroid.md index a2b3a0df3c0..4571f0be72b 100644 --- a/docs/autogen_DrawerLayoutAndroid.md +++ b/docs/autogen_DrawerLayoutAndroid.md @@ -1,7 +1,6 @@ --- id: drawerlayoutandroid title: DrawerLayoutAndroid -sidebar: api category: Components permalink: docs/drawerlayoutandroid.html --- diff --git a/docs/autogen_Easing.md b/docs/autogen_Easing.md index 75e03b826d9..f9defb21cf6 100644 --- a/docs/autogen_Easing.md +++ b/docs/autogen_Easing.md @@ -1,7 +1,6 @@ --- id: easing title: Easing -sidebar: api category: APIs permalink: docs/easing.html --- diff --git a/docs/autogen_FlatList.md b/docs/autogen_FlatList.md index 7efbf2e9bfa..180838e8cf5 100644 --- a/docs/autogen_FlatList.md +++ b/docs/autogen_FlatList.md @@ -1,7 +1,6 @@ --- id: flatlist title: FlatList -sidebar: api category: Components permalink: docs/flatlist.html --- diff --git a/docs/autogen_Geolocation.md b/docs/autogen_Geolocation.md index 7f45e3c6888..efc6967a41f 100644 --- a/docs/autogen_Geolocation.md +++ b/docs/autogen_Geolocation.md @@ -1,7 +1,6 @@ --- id: geolocation title: Geolocation -sidebar: api category: APIs permalink: docs/geolocation.html --- diff --git a/docs/autogen_Image.md b/docs/autogen_Image.md index 7821df2f06b..3c322fe0bbd 100644 --- a/docs/autogen_Image.md +++ b/docs/autogen_Image.md @@ -1,7 +1,6 @@ --- id: image title: Image -sidebar: api category: Components permalink: docs/image.html --- diff --git a/docs/autogen_ImageEditor.md b/docs/autogen_ImageEditor.md index 6e4ac456f98..6a615ab7716 100644 --- a/docs/autogen_ImageEditor.md +++ b/docs/autogen_ImageEditor.md @@ -1,7 +1,6 @@ --- id: imageeditor title: ImageEditor -sidebar: api category: APIs permalink: docs/imageeditor.html --- diff --git a/docs/autogen_ImagePickerIOS.md b/docs/autogen_ImagePickerIOS.md index 2fd9f72eca8..0270d2e374c 100644 --- a/docs/autogen_ImagePickerIOS.md +++ b/docs/autogen_ImagePickerIOS.md @@ -1,7 +1,6 @@ --- id: imagepickerios title: ImagePickerIOS -sidebar: api category: APIs permalink: docs/imagepickerios.html --- diff --git a/docs/autogen_ImageStore.md b/docs/autogen_ImageStore.md index 2ff62745a7a..3d3cfb0d000 100644 --- a/docs/autogen_ImageStore.md +++ b/docs/autogen_ImageStore.md @@ -1,7 +1,6 @@ --- id: imagestore title: ImageStore -sidebar: api category: APIs permalink: docs/imagestore.html --- diff --git a/docs/autogen_ImageStylePropTypes.md b/docs/autogen_ImageStylePropTypes.md index e99e88ce5d0..19315a113d7 100644 --- a/docs/autogen_ImageStylePropTypes.md +++ b/docs/autogen_ImageStylePropTypes.md @@ -1,7 +1,6 @@ --- id: imagestyleproptypes title: ImageStylePropTypes -sidebar: api category: APIs permalink: docs/imagestyleproptypes.html --- diff --git a/docs/autogen_InteractionManager.md b/docs/autogen_InteractionManager.md index 20abf3b54b3..0a484bfb3dc 100644 --- a/docs/autogen_InteractionManager.md +++ b/docs/autogen_InteractionManager.md @@ -1,7 +1,6 @@ --- id: interactionmanager title: InteractionManager -sidebar: api category: APIs permalink: docs/interactionmanager.html --- diff --git a/docs/autogen_Keyboard.md b/docs/autogen_Keyboard.md index b50de7fceff..6f5f33071b1 100644 --- a/docs/autogen_Keyboard.md +++ b/docs/autogen_Keyboard.md @@ -1,7 +1,6 @@ --- id: keyboard title: Keyboard -sidebar: api category: APIs permalink: docs/keyboard.html --- diff --git a/docs/autogen_KeyboardAvoidingView.md b/docs/autogen_KeyboardAvoidingView.md index 2a4ad5e1e62..8710bdf91b7 100644 --- a/docs/autogen_KeyboardAvoidingView.md +++ b/docs/autogen_KeyboardAvoidingView.md @@ -1,7 +1,6 @@ --- id: keyboardavoidingview title: KeyboardAvoidingView -sidebar: api category: Components permalink: docs/keyboardavoidingview.html --- diff --git a/docs/autogen_Layout Props.md b/docs/autogen_Layout Props.md index b75812c42b9..bdd839d6ddd 100644 --- a/docs/autogen_Layout Props.md +++ b/docs/autogen_Layout Props.md @@ -1,7 +1,6 @@ --- id: layout-props title: Layout Props -sidebar: api category: APIs permalink: docs/layout-props.html --- diff --git a/docs/autogen_LayoutAnimation.md b/docs/autogen_LayoutAnimation.md index 1880234a2d5..330d725d352 100644 --- a/docs/autogen_LayoutAnimation.md +++ b/docs/autogen_LayoutAnimation.md @@ -1,7 +1,6 @@ --- id: layoutanimation title: LayoutAnimation -sidebar: api category: APIs permalink: docs/layoutanimation.html --- diff --git a/docs/autogen_Linking.md b/docs/autogen_Linking.md index ddbcd2f18f4..f711804674c 100644 --- a/docs/autogen_Linking.md +++ b/docs/autogen_Linking.md @@ -1,7 +1,6 @@ --- id: linking title: Linking -sidebar: api category: APIs permalink: docs/linking.html --- diff --git a/docs/autogen_ListView.md b/docs/autogen_ListView.md index b9380bb3fb7..521e77c22bf 100644 --- a/docs/autogen_ListView.md +++ b/docs/autogen_ListView.md @@ -1,7 +1,6 @@ --- id: listview title: ListView -sidebar: api category: Components permalink: docs/listview.html --- diff --git a/docs/autogen_ListViewDataSource.md b/docs/autogen_ListViewDataSource.md index a928110b08c..0beb003efeb 100644 --- a/docs/autogen_ListViewDataSource.md +++ b/docs/autogen_ListViewDataSource.md @@ -1,7 +1,6 @@ --- id: listviewdatasource title: ListViewDataSource -sidebar: api category: APIs permalink: docs/listviewdatasource.html --- diff --git a/docs/autogen_MaskedViewIOS.md b/docs/autogen_MaskedViewIOS.md index 471366f1e40..f875ab23df6 100644 --- a/docs/autogen_MaskedViewIOS.md +++ b/docs/autogen_MaskedViewIOS.md @@ -1,7 +1,6 @@ --- id: maskedviewios title: MaskedViewIOS -sidebar: api category: Components permalink: docs/maskedviewios.html --- diff --git a/docs/autogen_Modal.md b/docs/autogen_Modal.md index f4476f33efd..6d8e001f10a 100644 --- a/docs/autogen_Modal.md +++ b/docs/autogen_Modal.md @@ -1,7 +1,6 @@ --- id: modal title: Modal -sidebar: api category: Components permalink: docs/modal.html --- diff --git a/docs/autogen_NavigatorIOS.md b/docs/autogen_NavigatorIOS.md index 83f7089004f..624a7f7de71 100644 --- a/docs/autogen_NavigatorIOS.md +++ b/docs/autogen_NavigatorIOS.md @@ -1,7 +1,6 @@ --- id: navigatorios title: NavigatorIOS -sidebar: api category: Components permalink: docs/navigatorios.html --- diff --git a/docs/autogen_NetInfo.md b/docs/autogen_NetInfo.md index 24633b6b9ae..b5a63825ec9 100644 --- a/docs/autogen_NetInfo.md +++ b/docs/autogen_NetInfo.md @@ -1,7 +1,6 @@ --- id: netinfo title: NetInfo -sidebar: api category: APIs permalink: docs/netinfo.html --- diff --git a/docs/autogen_PanResponder.md b/docs/autogen_PanResponder.md index bf8ce906320..0e33940cf76 100644 --- a/docs/autogen_PanResponder.md +++ b/docs/autogen_PanResponder.md @@ -1,7 +1,6 @@ --- id: panresponder title: PanResponder -sidebar: api category: APIs permalink: docs/panresponder.html --- diff --git a/docs/autogen_PermissionsAndroid.md b/docs/autogen_PermissionsAndroid.md index 915ad4f1482..4b31eb79a48 100644 --- a/docs/autogen_PermissionsAndroid.md +++ b/docs/autogen_PermissionsAndroid.md @@ -1,7 +1,6 @@ --- id: permissionsandroid title: PermissionsAndroid -sidebar: api category: APIs permalink: docs/permissionsandroid.html --- diff --git a/docs/autogen_Picker.md b/docs/autogen_Picker.md index 7c096284195..c324d92c4ac 100644 --- a/docs/autogen_Picker.md +++ b/docs/autogen_Picker.md @@ -1,7 +1,6 @@ --- id: picker title: Picker -sidebar: api category: Components permalink: docs/picker.html --- diff --git a/docs/autogen_PickerIOS.md b/docs/autogen_PickerIOS.md index 015c3f45e48..54fa8ec75fc 100644 --- a/docs/autogen_PickerIOS.md +++ b/docs/autogen_PickerIOS.md @@ -1,7 +1,6 @@ --- id: pickerios title: PickerIOS -sidebar: api category: Components permalink: docs/pickerios.html --- diff --git a/docs/autogen_PixelRatio.md b/docs/autogen_PixelRatio.md index 6373997fbda..e8a0c92aabb 100644 --- a/docs/autogen_PixelRatio.md +++ b/docs/autogen_PixelRatio.md @@ -1,7 +1,6 @@ --- id: pixelratio title: PixelRatio -sidebar: api category: APIs permalink: docs/pixelratio.html --- diff --git a/docs/autogen_ProgressBarAndroid.md b/docs/autogen_ProgressBarAndroid.md index 083a20f7107..f064549795a 100644 --- a/docs/autogen_ProgressBarAndroid.md +++ b/docs/autogen_ProgressBarAndroid.md @@ -1,7 +1,6 @@ --- id: progressbarandroid title: ProgressBarAndroid -sidebar: api category: Components permalink: docs/progressbarandroid.html --- diff --git a/docs/autogen_ProgressViewIOS.md b/docs/autogen_ProgressViewIOS.md index c2aa36fff6f..1b22b21422e 100644 --- a/docs/autogen_ProgressViewIOS.md +++ b/docs/autogen_ProgressViewIOS.md @@ -1,7 +1,6 @@ --- id: progressviewios title: ProgressViewIOS -sidebar: api category: Components permalink: docs/progressviewios.html --- diff --git a/docs/autogen_PushNotificationIOS.md b/docs/autogen_PushNotificationIOS.md index df412516fdd..db9a4fc59c9 100644 --- a/docs/autogen_PushNotificationIOS.md +++ b/docs/autogen_PushNotificationIOS.md @@ -1,7 +1,6 @@ --- id: pushnotificationios title: PushNotificationIOS -sidebar: api category: APIs permalink: docs/pushnotificationios.html --- diff --git a/docs/autogen_RefreshControl.md b/docs/autogen_RefreshControl.md index 468f068d2e8..88640115174 100644 --- a/docs/autogen_RefreshControl.md +++ b/docs/autogen_RefreshControl.md @@ -1,7 +1,6 @@ --- id: refreshcontrol title: RefreshControl -sidebar: api category: Components permalink: docs/refreshcontrol.html --- diff --git a/docs/autogen_ScrollView.md b/docs/autogen_ScrollView.md index cff745b558a..f0d48b42da8 100644 --- a/docs/autogen_ScrollView.md +++ b/docs/autogen_ScrollView.md @@ -1,7 +1,6 @@ --- id: scrollview title: ScrollView -sidebar: api category: Components permalink: docs/scrollview.html --- diff --git a/docs/autogen_SectionList.md b/docs/autogen_SectionList.md index 4f232027177..2566ac6ee08 100644 --- a/docs/autogen_SectionList.md +++ b/docs/autogen_SectionList.md @@ -1,7 +1,6 @@ --- id: sectionlist title: SectionList -sidebar: api category: Components permalink: docs/sectionlist.html --- diff --git a/docs/autogen_SegmentedControlIOS.md b/docs/autogen_SegmentedControlIOS.md index a17f8098fcc..8fdf3d06a88 100644 --- a/docs/autogen_SegmentedControlIOS.md +++ b/docs/autogen_SegmentedControlIOS.md @@ -1,7 +1,6 @@ --- id: segmentedcontrolios title: SegmentedControlIOS -sidebar: api category: Components permalink: docs/segmentedcontrolios.html --- diff --git a/docs/autogen_Settings.md b/docs/autogen_Settings.md index 8e6d5547f27..7053ccdc6b5 100644 --- a/docs/autogen_Settings.md +++ b/docs/autogen_Settings.md @@ -1,7 +1,6 @@ --- id: settings title: Settings -sidebar: api category: APIs permalink: docs/settings.html --- diff --git a/docs/autogen_Shadow Props.md b/docs/autogen_Shadow Props.md index 632b7442a61..751a7701e64 100644 --- a/docs/autogen_Shadow Props.md +++ b/docs/autogen_Shadow Props.md @@ -1,7 +1,6 @@ --- id: shadow-props title: Shadow Props -sidebar: api category: APIs permalink: docs/shadow-props.html --- diff --git a/docs/autogen_Share.md b/docs/autogen_Share.md index bfd3bb7ac85..855e93e4215 100644 --- a/docs/autogen_Share.md +++ b/docs/autogen_Share.md @@ -1,7 +1,6 @@ --- id: share title: Share -sidebar: api category: APIs permalink: docs/share.html --- diff --git a/docs/autogen_Slider.md b/docs/autogen_Slider.md index 45257e8e9eb..7eba3df5b05 100644 --- a/docs/autogen_Slider.md +++ b/docs/autogen_Slider.md @@ -1,7 +1,6 @@ --- id: slider title: Slider -sidebar: api category: Components permalink: docs/slider.html --- diff --git a/docs/autogen_SnapshotViewIOS.md b/docs/autogen_SnapshotViewIOS.md index d3d98eeb458..91d5bd6d943 100644 --- a/docs/autogen_SnapshotViewIOS.md +++ b/docs/autogen_SnapshotViewIOS.md @@ -1,7 +1,6 @@ --- id: snapshotviewios title: SnapshotViewIOS -sidebar: api category: Components permalink: docs/snapshotviewios.html --- diff --git a/docs/autogen_StatusBar.md b/docs/autogen_StatusBar.md index 116318faee9..1507fb3a8af 100644 --- a/docs/autogen_StatusBar.md +++ b/docs/autogen_StatusBar.md @@ -1,7 +1,6 @@ --- id: statusbar title: StatusBar -sidebar: api category: Components permalink: docs/statusbar.html --- diff --git a/docs/autogen_StatusBarIOS.md b/docs/autogen_StatusBarIOS.md index 0a41510cf76..74e5320c650 100644 --- a/docs/autogen_StatusBarIOS.md +++ b/docs/autogen_StatusBarIOS.md @@ -1,7 +1,6 @@ --- id: statusbarios title: StatusBarIOS -sidebar: api category: APIs permalink: docs/statusbarios.html --- diff --git a/docs/autogen_StyleSheet.md b/docs/autogen_StyleSheet.md index e46e91c5887..2ee1aa7173b 100644 --- a/docs/autogen_StyleSheet.md +++ b/docs/autogen_StyleSheet.md @@ -1,7 +1,6 @@ --- id: stylesheet title: StyleSheet -sidebar: api category: APIs permalink: docs/stylesheet.html --- diff --git a/docs/autogen_Switch.md b/docs/autogen_Switch.md index 04777da1ed3..dd753ac6f23 100644 --- a/docs/autogen_Switch.md +++ b/docs/autogen_Switch.md @@ -1,7 +1,6 @@ --- id: switch title: Switch -sidebar: api category: Components permalink: docs/switch.html --- diff --git a/docs/autogen_Systrace.md b/docs/autogen_Systrace.md index 7dc3538671e..743f8e42620 100644 --- a/docs/autogen_Systrace.md +++ b/docs/autogen_Systrace.md @@ -1,7 +1,6 @@ --- id: systrace title: Systrace -sidebar: api category: APIs permalink: docs/systrace.html --- diff --git a/docs/autogen_TabBarIOS.Item.md b/docs/autogen_TabBarIOS.Item.md index 4979ec3649c..5763617ae3a 100644 --- a/docs/autogen_TabBarIOS.Item.md +++ b/docs/autogen_TabBarIOS.Item.md @@ -1,7 +1,6 @@ --- id: tabbarios-item title: TabBarIOS.Item -sidebar: api category: Components permalink: docs/tabbarios-item.html --- diff --git a/docs/autogen_TabBarIOS.md b/docs/autogen_TabBarIOS.md index 64ccb29739e..2bcd5515e7d 100644 --- a/docs/autogen_TabBarIOS.md +++ b/docs/autogen_TabBarIOS.md @@ -1,7 +1,6 @@ --- id: tabbarios title: TabBarIOS -sidebar: api category: Components permalink: docs/tabbarios.html --- diff --git a/docs/autogen_Text.md b/docs/autogen_Text.md index ba598ea5ec4..b288a9a0952 100644 --- a/docs/autogen_Text.md +++ b/docs/autogen_Text.md @@ -1,7 +1,6 @@ --- id: text title: Text -sidebar: api category: Components permalink: docs/text.html --- diff --git a/docs/autogen_TextInput.md b/docs/autogen_TextInput.md index 108f47aea11..b728670c285 100644 --- a/docs/autogen_TextInput.md +++ b/docs/autogen_TextInput.md @@ -1,7 +1,6 @@ --- id: textinput title: TextInput -sidebar: api category: Components permalink: docs/textinput.html --- diff --git a/docs/autogen_TextStylePropTypes.md b/docs/autogen_TextStylePropTypes.md index 0bfae179b2a..957ca70e9c5 100644 --- a/docs/autogen_TextStylePropTypes.md +++ b/docs/autogen_TextStylePropTypes.md @@ -1,7 +1,6 @@ --- id: textstyleproptypes title: TextStylePropTypes -sidebar: api category: APIs permalink: docs/textstyleproptypes.html --- diff --git a/docs/autogen_TimePickerAndroid.md b/docs/autogen_TimePickerAndroid.md index 0605b815777..fb03757aee1 100644 --- a/docs/autogen_TimePickerAndroid.md +++ b/docs/autogen_TimePickerAndroid.md @@ -1,7 +1,6 @@ --- id: timepickerandroid title: TimePickerAndroid -sidebar: api category: APIs permalink: docs/timepickerandroid.html --- diff --git a/docs/autogen_ToastAndroid.md b/docs/autogen_ToastAndroid.md index 5b8fcba629f..73093baa78a 100644 --- a/docs/autogen_ToastAndroid.md +++ b/docs/autogen_ToastAndroid.md @@ -1,7 +1,6 @@ --- id: toastandroid title: ToastAndroid -sidebar: api category: APIs permalink: docs/toastandroid.html --- diff --git a/docs/autogen_ToolbarAndroid.md b/docs/autogen_ToolbarAndroid.md index d616d4f01e6..9c240a62979 100644 --- a/docs/autogen_ToolbarAndroid.md +++ b/docs/autogen_ToolbarAndroid.md @@ -1,7 +1,6 @@ --- id: toolbarandroid title: ToolbarAndroid -sidebar: api category: Components permalink: docs/toolbarandroid.html --- diff --git a/docs/autogen_TouchableHighlight.md b/docs/autogen_TouchableHighlight.md index 96a540f657f..26ec207ea26 100644 --- a/docs/autogen_TouchableHighlight.md +++ b/docs/autogen_TouchableHighlight.md @@ -1,7 +1,6 @@ --- id: touchablehighlight title: TouchableHighlight -sidebar: api category: Components permalink: docs/touchablehighlight.html --- diff --git a/docs/autogen_TouchableNativeFeedback.md b/docs/autogen_TouchableNativeFeedback.md index b841d75eb89..30c3a02bc20 100644 --- a/docs/autogen_TouchableNativeFeedback.md +++ b/docs/autogen_TouchableNativeFeedback.md @@ -1,7 +1,6 @@ --- id: touchablenativefeedback title: TouchableNativeFeedback -sidebar: api category: Components permalink: docs/touchablenativefeedback.html --- diff --git a/docs/autogen_TouchableOpacity.md b/docs/autogen_TouchableOpacity.md index 7c14a35f480..13c514b85b3 100644 --- a/docs/autogen_TouchableOpacity.md +++ b/docs/autogen_TouchableOpacity.md @@ -1,7 +1,6 @@ --- id: touchableopacity title: TouchableOpacity -sidebar: api category: Components permalink: docs/touchableopacity.html --- diff --git a/docs/autogen_TouchableWithoutFeedback.md b/docs/autogen_TouchableWithoutFeedback.md index fa255acb8bc..64c71da84ab 100644 --- a/docs/autogen_TouchableWithoutFeedback.md +++ b/docs/autogen_TouchableWithoutFeedback.md @@ -1,7 +1,6 @@ --- id: touchablewithoutfeedback title: TouchableWithoutFeedback -sidebar: api category: Components permalink: docs/touchablewithoutfeedback.html --- diff --git a/docs/autogen_Transforms.md b/docs/autogen_Transforms.md index d74f0665660..698b6ead74f 100644 --- a/docs/autogen_Transforms.md +++ b/docs/autogen_Transforms.md @@ -1,7 +1,6 @@ --- id: transforms title: Transforms -sidebar: api category: APIs permalink: docs/transforms.html --- diff --git a/docs/autogen_Vibration.md b/docs/autogen_Vibration.md index 45d4d960c05..fd110300ab1 100644 --- a/docs/autogen_Vibration.md +++ b/docs/autogen_Vibration.md @@ -1,7 +1,6 @@ --- id: vibration title: Vibration -sidebar: api category: APIs permalink: docs/vibration.html --- diff --git a/docs/autogen_VibrationIOS.md b/docs/autogen_VibrationIOS.md index e9c4ff41a59..ac817e92bc5 100644 --- a/docs/autogen_VibrationIOS.md +++ b/docs/autogen_VibrationIOS.md @@ -1,7 +1,6 @@ --- id: vibrationios title: VibrationIOS -sidebar: api category: APIs permalink: docs/vibrationios.html --- diff --git a/docs/autogen_View.md b/docs/autogen_View.md index b8eace5bc71..50b49a9889d 100644 --- a/docs/autogen_View.md +++ b/docs/autogen_View.md @@ -1,7 +1,6 @@ --- id: view title: View -sidebar: api category: Components permalink: docs/view.html --- diff --git a/docs/autogen_ViewPagerAndroid.md b/docs/autogen_ViewPagerAndroid.md index a22a7505421..15dbecc2953 100644 --- a/docs/autogen_ViewPagerAndroid.md +++ b/docs/autogen_ViewPagerAndroid.md @@ -1,7 +1,6 @@ --- id: viewpagerandroid title: ViewPagerAndroid -sidebar: api category: Components permalink: docs/viewpagerandroid.html --- diff --git a/docs/autogen_ViewPropTypes.md b/docs/autogen_ViewPropTypes.md index c17a47c219f..a85bb3eb5e5 100644 --- a/docs/autogen_ViewPropTypes.md +++ b/docs/autogen_ViewPropTypes.md @@ -1,7 +1,6 @@ --- id: viewproptypes title: ViewPropTypes -sidebar: api category: APIs permalink: docs/viewproptypes.html --- diff --git a/docs/autogen_ViewStylePropTypes.md b/docs/autogen_ViewStylePropTypes.md index 4ec10271f02..27b5f2445fe 100644 --- a/docs/autogen_ViewStylePropTypes.md +++ b/docs/autogen_ViewStylePropTypes.md @@ -1,7 +1,6 @@ --- id: viewstyleproptypes title: ViewStylePropTypes -sidebar: api category: APIs permalink: docs/viewstyleproptypes.html --- diff --git a/docs/autogen_VirtualizedList.md b/docs/autogen_VirtualizedList.md index d0d2a7988fd..7a47287a946 100644 --- a/docs/autogen_VirtualizedList.md +++ b/docs/autogen_VirtualizedList.md @@ -1,7 +1,6 @@ --- id: virtualizedlist title: VirtualizedList -sidebar: api category: Components permalink: docs/virtualizedlist.html --- diff --git a/docs/autogen_WebView.md b/docs/autogen_WebView.md index 3ee693d96c7..5f3d4b2f681 100644 --- a/docs/autogen_WebView.md +++ b/docs/autogen_WebView.md @@ -1,7 +1,6 @@ --- id: webview title: WebView -sidebar: api category: Components permalink: docs/webview.html --- diff --git a/website/sidebar.json b/website/sidebar.json deleted file mode 100644 index d899b1de9a2..00000000000 --- a/website/sidebar.json +++ /dev/null @@ -1 +0,0 @@ -{"SIDEBAR_AUTODOCS_SECTION":{},"API":{"APIs":["accessibilityinfo","actionsheetios","alert","alertios","animated","appregistry","appstate","asyncstorage","backandroid","backhandler","cameraroll","clipboard","datepickerandroid","dimensions","easing","geolocation","imageeditor","imagepickerios","imagestore","imagestyleproptypes","interactionmanager","keyboard","layout-props","layoutanimation","linking","listviewdatasource","netinfo","panresponder","permissionsandroid","pixelratio","pushnotificationios","settings","shadow-props","share","statusbarios","stylesheet","systrace","textstyleproptypes","timepickerandroid","toastandroid","transforms","vibration","vibrationios","viewproptypes","viewstyleproptypes"],"Components":["activityindicator","button","datepickerios","drawerlayoutandroid","flatlist","image","keyboardavoidingview","listview","maskedviewios","modal","navigatorios","picker","pickerios","progressbarandroid","progressviewios","refreshcontrol","scrollview","sectionlist","segmentedcontrolios","slider","snapshotviewios","statusbar","switch","tabbarios","tabbarios-item","text","textinput","toolbarandroid","touchablehighlight","touchablenativefeedback","touchableopacity","touchablewithoutfeedback","view","viewpagerandroid","virtualizedlist","webview"]}} \ No newline at end of file diff --git a/website/sidebar_full.json b/website/sidebar_full.json deleted file mode 100644 index b50088c27e6..00000000000 --- a/website/sidebar_full.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "docs": { - "Guides": ["accessibility", "animations"] - }, - "API Reference": { - "APIs": [ - "accessibilityinfo", - "actionsheetios", - "alert", - "alertios", - "animated", - "appregistry", - "appstate", - "asyncstorage", - "backandroid", - "backhandler", - "cameraroll", - "clipboard", - "datepickerandroid", - "dimensions", - "easing", - "geolocation", - "imageeditor", - "imagepickerios", - "imagestore", - "imagestyleproptypes", - "interactionmanager", - "keyboard", - "layout-props", - "layoutanimation", - "linking", - "listviewdatasource", - "netinfo", - "panresponder", - "permissionsandroid", - "pixelratio", - "pushnotificationios", - "settings", - "shadow-props", - "share", - "statusbarios", - "stylesheet", - "systrace", - "textstyleproptypes", - "timepickerandroid", - "toastandroid", - "transforms", - "vibration", - "vibrationios", - "viewproptypes", - "viewstyleproptypes" - ], - "Components": [ - "activityindicator", - "button", - "datepickerios", - "drawerlayoutandroid", - "flatlist", - "image", - "keyboardavoidingview", - "listview", - "maskedviewios", - "modal", - "navigatorios", - "picker", - "pickerios", - "progressbarandroid", - "progressviewios", - "refreshcontrol", - "scrollview", - "sectionlist", - "segmentedcontrolios", - "slider", - "snapshotviewios", - "statusbar", - "switch", - "tabbarios", - "tabbarios-item", - "text", - "textinput", - "toolbarandroid", - "touchablehighlight", - "touchablenativefeedback", - "touchableopacity", - "touchablewithoutfeedback", - "view", - "viewpagerandroid", - "virtualizedlist", - "webview" - ] - } -} \ No newline at end of file