Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/element-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion docs/text-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/blog/2024-10-23-the-new-architecture-is-here.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ This change allows you to read layout information synchronously and update the U
</figure>
</div>

For more information, see the docs for [Synchronous Layout and Effects](/docs/0.75/the-new-architecture/landing-page#synchronous-layout-and-effects).
For more information, see the docs for [Synchronous Layout and Effects](/architecture/landing-page#synchronous-layout-and-effects).

### Full Support for Suspense

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ In React Native 0.80, we're introducing two significant changes to React Native'
**Quick takeaways:**

- **Deep imports deprecation**: From 0.80, we're introducing deprecation warnings for deep imports from the `react-native` package.
- **Opt-in Strict TypeScript API**: We are moving to from-source TypeScript types and a new public API baseline under TypeScript. These enable stronger and more futureproof type accuracy, and will be a one-time breaking change. [Opt in](/blog/2025/06/12/moving-towards-a-stable-javascript-api#strict-typescript-api) via `compilerOptions` in your project's `tsconfig.json`.
- **Opt-in Strict TypeScript API**: We are moving to from-source TypeScript types and a new public API baseline under TypeScript. These enable stronger and more futureproof type accuracy, and will be a one-time breaking change. [Opt in](/blog/2025/06/12/moving-towards-a-stable-javascript-api#future--strict-typescript-api-by-default) via `compilerOptions` in your project's `tsconfig.json`.
- We'll work with the community over time to ensure that these changes work for everyone, before enabling the Strict TypeScript API by default in a future React Native release.

{/* truncate */}
Expand Down Expand Up @@ -310,20 +310,20 @@ Thanks also to [Pieter Vanderwerff](https://github.com/pieterv), [Rubén Norte](
:::note[Learn more]

<div style={{display: 'flex', alignItems: 'center', gap: 40}}>
<div style={{flex: 1}}>
<strong
style={{display: 'block', marginTop: 8, marginBottom: 8}}>
<div style={{flex: 1, gap: 8}}>
<strong style={{display: 'block', marginBottom: 8}}>
Watch the talk!
</strong>
<span style={{display: 'block', marginBottom: 8}}>
<span>
We shared a deep dive into our motivations and the work
behind the Strict TypeScript API at{' '}
<strong>App.js 2025</strong>.
</span>
<p style={{marginBottom: 8}}>
**[View on
YouTube](https://www.youtube.com/live/UTaJlqhTk2g?si=SDRmj80kss7hXuGG&t=6520)**
</p>
<a
href="https://www.youtube.com/live/UTaJlqhTk2g?si=SDRmj80kss7hXuGG&t=6520"
target="_blank">
<strong>View on YouTube</strong>
</a>
</div>
<img
src="/blog/assets/0.80-js-stable-api-appjs.jpg"
Expand Down
1 change: 1 addition & 0 deletions website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ const config: Config = {
'/blog/tags/**',
'/blog/archive',
'/blog/authors',
'/releases',
'/search',
],
},
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.82/element-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.82/text-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.83/element-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.83/text-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.84/element-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.84/text-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.85/element-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.85/text-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)
Expand Down
Loading