diff --git a/docs/modal.md b/docs/modal.md
index 7f64f3332..2f8a407f6 100644
--- a/docs/modal.md
+++ b/docs/modal.md
@@ -132,7 +132,7 @@ The `backdropColor` of the modal (or background color of the modal's container.)
| Type | Default |
| --------------- | ------- |
-| [color](colors) | white |
+| [color]() | white |
---
diff --git a/docs/text.md b/docs/text.md
index 38a0bb6f1..c45c128bb 100644
--- a/docs/text.md
+++ b/docs/text.md
@@ -242,7 +242,7 @@ You can provide one state, no state, or multiple states. The states must be pass
| Type |
| ------------------------------------------------------ |
-| [AccessibilityState](accessibility#accessibilitystate) |
+| [AccessibilityState]() |
---
@@ -250,7 +250,7 @@ You can provide one state, no state, or multiple states. The states must be pass
Accessibility actions allow an assistive technology to programmatically invoke the actions of a component. The `accessibilityActions` property should contain a list of action objects. Each action object should contain the field name and label.
-See the [Accessibility guide](accessibility.md#accessibility-actions) for more information.
+See the [Accessibility guide]() for more information.
| Type | Required |
| ----- | -------- |
@@ -262,7 +262,7 @@ See the [Accessibility guide](accessibility.md#accessibility-actions) for more i
Invoked when the user performs the accessibility actions. The only argument to this function is an event containing the name of the action to perform.
-See the [Accessibility guide](accessibility.md#accessibility-actions) for more information.
+See the [Accessibility guide]() for more information.
| Type | Required |
| -------- | -------- |
@@ -591,17 +591,17 @@ When the scroll view is disabled, this defines how far your touch may move off o
| Type |
| -------------------- |
-| [Rect](rect), number |
+| [Rect](), number |
---
### `role`
-`role` communicates the purpose of a component to the user of an assistive technology. Has precedence over the [`accessibilityRole`](text#accessibilityrole) prop.
+`role` communicates the purpose of a component to the user of an assistive technology. Has precedence over the [`accessibilityRole`]() prop.
| Type |
| -------------------------- |
-| [Role](accessibility#role) |
+| [Role]() |
---
diff --git a/docs/textinput.md b/docs/textinput.md
index aec01e1a2..c4c6f42f2 100644
--- a/docs/textinput.md
+++ b/docs/textinput.md
@@ -668,7 +668,7 @@ Possible values for `textAlign` are:
Give the keyboard and the system information about the expected semantic meaning for the content that users enter.
:::note
-[`autoComplete`](#autocomplete), provides the same functionality and is available for all platforms. You can use [`Platform.select`](/docs/next/platform#select) for differing platform behaviors.
+[`autoComplete`](#autocomplete), provides the same functionality and is available for all platforms. You can use [`Platform.select`]() for differing platform behaviors.
Avoid using both `textContentType` and `autoComplete`. For backwards compatibility, `textContentType` takes precedence when both properties are set.
:::
@@ -729,7 +729,7 @@ Note that not all Text styles are supported, an incomplete list of what is not s
- `borderBottomRightRadius`
- `borderBottomLeftRadius`
-[Styles](style.md)
+[Styles]()
| Type |
| --------------------- |
diff --git a/docs/view-style-props.md b/docs/view-style-props.md
index c3ade51f3..13521da4a 100644
--- a/docs/view-style-props.md
+++ b/docs/view-style-props.md
@@ -67,7 +67,7 @@ export default App;
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -75,7 +75,7 @@ export default App;
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -155,7 +155,7 @@ export default App;
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -173,7 +173,7 @@ On iOS 13+, it is possible to change the corner curve of borders.
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -181,7 +181,7 @@ On iOS 13+, it is possible to change the corner curve of borders.
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -207,7 +207,7 @@ If the rounded border is not visible, try applying `overflow: 'hidden'` as well.
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -223,7 +223,7 @@ If the rounded border is not visible, try applying `overflow: 'hidden'` as well.
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -239,7 +239,7 @@ If the rounded border is not visible, try applying `overflow: 'hidden'` as well.
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
@@ -292,14 +292,13 @@ If the rounded border is not visible, try applying `overflow: 'hidden'` as well.
### `boxShadow`
:::note
-`boxShadow` is only available on the [New Architecture](/architecture/landing-page). Outset shadows are only supported on **Android 9+**. Inset shadows are only supported on **Android 10+**.
+`boxShadow` is only available on the [New Architecture](). Outset shadows are only supported on **Android 9+**. Inset shadows are only supported on **Android 10+**.
:::
-Adds a shadow effect to an element, with the ability to control the position, color, size, and blurriness of the shadow. This shadow either appears around the outside or inside of the border box of the element, depending on whether or not the shadow is _inset_. This is a spec-compliant implementation of the [web style prop of the same name](https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow). Read more about all the arguments available in the [BoxShadowValue](./boxshadowvalue) documentation.
These shadows can be composed together so that a single `boxShadow` can be comprised of multiple different shadows.
-`boxShadow` takes either a string which mimics the [web syntax](https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow#syntax) or an array of [BoxShadowValue](./boxshadowvalue) objects.
+`boxShadow` takes either a string which mimics the [web syntax]() or an array of [BoxShadowValue]() objects.
| Type |
| --------------------------- |
| array of BoxShadowValue ojects \| string |
@@ -316,7 +315,7 @@ On iOS 17+, Setting to `pointer` allows hover effects when a pointer (such as a
### `elevation`
Android
-Sets the elevation of a view, using Android's underlying [elevation API](https://developer.android.com/training/material/shadows-clipping.html#Elevation). This adds a drop shadow to the item and affects z-order for overlapping views. Only supported on Android 5.0+, has no effect on earlier versions.
+Sets the elevation of a view, using Android's underlying [elevation API](). This adds a drop shadow to the item and affects z-order for overlapping views. Only supported on Android 5.0+, has no effect on earlier versions.
| Type |
| ------ |
@@ -327,7 +326,7 @@ Sets the elevation of a view, using Android's underlying [elevation API](https:/
### `filter`
:::note
-`filter` is only available on the [New Architecture](/architecture/landing-page)
+`filter` is only available on the [New Architecture]()
:::
Adds a graphical filter to the `View`. This filter is comprised of any number of _filter functions_, which each represent some atomic change to the graphical composition of the `View`. The complete list of valid filter functions is defined below. `filter` will apply to descendants of the `View` as well as the `View` itself. `filter` implies `overflow: hidden`, so descendants will be clipped to fit the bounds of the `View`.
@@ -341,24 +340,9 @@ The following filter functions work across all platforms:
Due to issues with performance and spec compliance, these are the only two filter functions available on iOS. There are plans to explore some potential workarounds using SwiftUI instead of UIKit for this implementation.
:::
-
Android
-
-The following filter functions work on Android only:
-
-- `blur`: Blurs the `View` with a [Guassian blur](https://en.wikipedia.org/wiki/Gaussian_blur), where the specified length represents the radius used in the blurring algorithm. Any non-negative DIP value is valid (no percents). The larger the value, the blurrier the result.
-- `contrast`: Changes the contrast of the `View`. Takes a non-negative number or percentage.
-- `dropShadow`: Adds a shadow around the alpha mask of the `View` (only non-zero alpha pixels in the `View` will cast a shadow). Takes an optional color representing the shadow color, and 2 or 3 lengths. If 2 lengths are specified they are interperted as `offsetX` and `offsetY` which will translate the shadow in the X and Y dimensions respectfully. If a 3rd length is given it is interpreted as the standard deviation of the Guassian blur used on the shadow - so a larger value will blur the shadow more. Read more about the arguments in [DropShadowValue](./dropshadowvalue.md).
-- `grayscale`: Converts the `View` to [grayscale](https://en.wikipedia.org/wiki/Grayscale) by the specified amount. Takes a non-negative number or percentage, where `1` or `100%` represents complete grayscale.
-- `hueRotate`: Changes the [hue](https://en.wikipedia.org/wiki/Hue) of the View. The argument of this function defines the angle of a color wheel around which the hue will be rotated, so e.g., `360deg` would have no effect. This angle can have either `deg` or `rad` units.
-- `invert`: Inverts the colors in the `View`. Takes a non-negative number or percentage, where `1` or `100%` represents complete inversion.
-- `sepia`: Converts the `View` to [sepia](
). Takes a non-negative number or percentage, where `1` or `100%` represents complete sepia.
-- `saturate`: Changes the [saturation](https://en.wikipedia.org/wiki/Colorfulness) of the `View`. Takes a non-negative number or percentage.
-
:::note
`blur` and `dropShadow` are only supported on **Android 12+**
-:::
-`filter` takes either an array of objects comprising of the above filter functions or a string which mimics the [web syntax](https://developer.mozilla.org/en-US/docs/Web/CSS/filter#syntax).
| Type |
| ------ |
| array of objects: `{brightness: number\|string}`, `{opacity: number\|string}`, `{blur: number\|string}`, `{contrast: number\|string}`, `{dropShadow: DropShadowValue\|string}`, `{grayscale: number\|string}`, `{hueRotate: number\|string}`, `{invert: number\|string}`, `{sepia: number\|string}`, `{saturate: number\|string}` or string|
@@ -376,24 +360,22 @@ The following filter functions work on Android only:
### `outlineColor`
:::note
-`outlineColor` is only available on the [New Architecture](/architecture/landing-page)
+`outlineColor` is only available on the [New Architecture]()
:::
-Sets the color of an element's outline. See [web documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/outline-color) for more details.
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---
### `outlineOffset`
:::note
-`outlineOffset` is only available on the [New Architecture](/architecture/landing-page)
+`outlineOffset` is only available on the [New Architecture]()
:::
-Sets the amount of space between an outline and the bounds of an element. Does not affect layout. See [web documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/outline-offset) for more details.
| Type |
| ------ |
@@ -404,10 +386,9 @@ Sets the amount of space between an outline and the bounds of an element. Does n
### `outlineStyle`
:::note
-`outlineStyle` is only available on the [New Architecture](/architecture/landing-page)
+`outlineStyle` is only available on the [New Architecture]()
:::
-Sets the style of an element's outline. See [web documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/outline-style) for more details.
| Type |
| --------------------------------------- |
@@ -418,10 +399,9 @@ Sets the style of an element's outline. See [web documentation](https://develope
### `outlineWidth`
:::note
-`outlineWidth` is only available on the [New Architecture](/architecture/landing-page)
+`outlineWidth` is only available on the [New Architecture]()
:::
-The width of an outline which is drawn around an element, outside the border. Does not affect layout. See [web documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/outline-width) for more details.
| Type |
| ------ |
diff --git a/docs/view.md b/docs/view.md
index 4407b28b1..ebef35102 100644
--- a/docs/view.md
+++ b/docs/view.md
@@ -472,7 +472,7 @@ This is a reserved performance property exposed by `RCTView` and is useful for s
| Type |
| -------------------------- |
-| [Role](accessibility#role) |
+| [Role]() |
---
From 97fa6afbe6a5683d21f79c9231d5c91ec75c6889 Mon Sep 17 00:00:00 2001
From: Anupriya Verma <54227869+anupriya13@users.noreply.github.com>
Date: Sat, 19 Apr 2025 23:35:08 +0530
Subject: [PATCH 12/12] remove broken links
---
docs/text.md | 2 +-
docs/textinput.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/text.md b/docs/text.md
index c45c128bb..fed49d163 100644
--- a/docs/text.md
+++ b/docs/text.md
@@ -619,7 +619,7 @@ Lets the user select text, to use the native copy and paste functionality.
| Type |
| -------------------------------------------------------------------- |
-| [Text Style](text-style-props), [View Style Props](view-style-props) |
+| [Text Style](), [View Style Props](view-style-props) |
---
diff --git a/docs/textinput.md b/docs/textinput.md
index c4c6f42f2..22ae600d6 100644
--- a/docs/textinput.md
+++ b/docs/textinput.md
@@ -527,7 +527,7 @@ The text color of the placeholder string.
| Type |
| ------------------ |
-| [color](colors.md) |
+| [color]() |
---