Skip to content

Commit 2699700

Browse files
authored
small fixes based on the deployment logs (#5052)
1 parent 29066a8 commit 2699700

13 files changed

Lines changed: 21 additions & 20 deletions

docs/element-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
115115
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
116116
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
117117
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
118-
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
118+
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
119119
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
120120
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
121121
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)

docs/text-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
7373
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
7474
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
7575
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
76-
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
76+
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
7777
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
7878
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
7979
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)

website/blog/2024-10-23-the-new-architecture-is-here.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ This change allows you to read layout information synchronously and update the U
351351
</figure>
352352
</div>
353353

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

356356
### Full Support for Suspense
357357

website/blog/2025-06-12-moving-towards-a-stable-javascript-api.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In React Native 0.80, we're introducing two significant changes to React Native'
1010
**Quick takeaways:**
1111

1212
- **Deep imports deprecation**: From 0.80, we're introducing deprecation warnings for deep imports from the `react-native` package.
13-
- **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`.
13+
- **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`.
1414
- 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.
1515

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

312312
<div style={{display: 'flex', alignItems: 'center', gap: 40}}>
313-
<div style={{flex: 1}}>
314-
<strong
315-
style={{display: 'block', marginTop: 8, marginBottom: 8}}>
313+
<div style={{flex: 1, gap: 8}}>
314+
<strong style={{display: 'block', marginBottom: 8}}>
316315
Watch the talk!
317316
</strong>
318-
<span style={{display: 'block', marginBottom: 8}}>
317+
<span>
319318
We shared a deep dive into our motivations and the work
320319
behind the Strict TypeScript API at{' '}
321320
<strong>App.js 2025</strong>.
322321
</span>
323-
<p style={{marginBottom: 8}}>
324-
**[View on
325-
YouTube](https://www.youtube.com/live/UTaJlqhTk2g?si=SDRmj80kss7hXuGG&t=6520)**
326-
</p>
322+
<a
323+
href="https://www.youtube.com/live/UTaJlqhTk2g?si=SDRmj80kss7hXuGG&t=6520"
324+
target="_blank">
325+
<strong>View on YouTube</strong>
326+
</a>
327327
</div>
328328
<img
329329
src="/blog/assets/0.80-js-stable-api-appjs.jpg"

website/docusaurus.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ const config: Config = {
359359
'/blog/tags/**',
360360
'/blog/archive',
361361
'/blog/authors',
362+
'/releases',
362363
'/search',
363364
],
364365
},

website/versioned_docs/version-0.82/element-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
115115
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
116116
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
117117
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
118-
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
118+
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
119119
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
120120
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
121121
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)

website/versioned_docs/version-0.82/text-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
7373
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
7474
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
7575
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
76-
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
76+
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
7777
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
7878
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
7979
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)

website/versioned_docs/version-0.83/element-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
115115
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
116116
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
117117
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
118-
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
118+
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
119119
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
120120
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
121121
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)

website/versioned_docs/version-0.83/text-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
7373
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
7474
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
7575
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
76-
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
76+
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
7777
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
7878
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
7979
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)

website/versioned_docs/version-0.84/element-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ From [`Node`](https://developer.mozilla.org/en-US/docs/Web/API/Node):
115115
- [`nodeType`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType)
116116
- [`nodeValue`](https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeValue)
117117
- [`ownerDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Node/ownerDocument)
118-
- ℹ️ Will return the [document instance](/docs/next/document-instances) where this component was rendered.
118+
- ℹ️ Will return the [document node](/docs/next/document-nodes) where this component was rendered.
119119
- [`parentElement`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentElement)
120120
- [`parentNode`](https://developer.mozilla.org/en-US/docs/Web/API/Node/parentNode)
121121
- [`previousSibling`](https://developer.mozilla.org/en-US/docs/Web/API/Node/previousSibling)

0 commit comments

Comments
 (0)