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
1 change: 0 additions & 1 deletion docs/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion docs/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ More details about `resize` and `scale` can be found at https://frescolib.org/do
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion docs/the-new-architecture/create-module-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export default NativeSampleModule;
```

3. Copy the native module over:

- Replace the code in the `android/src/main/java/com/<name-of-the-module>` with the code you wrote in the app for your native module, if any.
- Replace the code in the `ios` folder with the code you wrote in your app for your native module, if any.
- Replace the code in the `cpp` folder with the code you wrote in your app for your native module, if any.
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
},
"dependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-mdx": "^3.2.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-yml": "^1.17.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-yml": "^1.18.0",
"husky": "^9.1.7",
"netlify-plugin-cache": "^1.0.3",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1"
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2"
},
"packageManager": "yarn@4.9.2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ With this update, when you allow RTL layout for your app:
## Making an App RTL-ready

1. To support RTL, you should first add the RTL language bundles to your app.

- See the general guides from [iOS](https://developer.apple.com/library/ios/documentation/MacOSX/Conceptual/BPInternational/LocalizingYourApp/LocalizingYourApp.html#//apple_ref/doc/uid/10000171i-CH5-SW1) and [Android](https://developer.android.com/training/basics/supporting-devices/languages.html).

2. Allow RTL layout for your app by calling the `allowRTL()` function at the beginning of native code. We provided this utility to only apply to an RTL layout when your app is ready. Here is an example:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,24 @@ Thank you to all the community members who have participated. You are truly movi
- [Added talkback support for TouchableNativeFeedback accessibility: disabled prop #31224](https://github.com/facebook/react-native/pull/31224) closed by [@kyamashiro73](https://twitter.com/kyamashiro73)

- [Accessibility/button test #31189](https://github.com/facebook/react-native/pull/31189) closed by [@huzaifaaak ](https://twitter.com/huzaifaaak)

- Adds a test for accessibilityState for button

## Fixes

- `Button` component (fixed by [#31001](https://github.com/facebook/react-native/pull/31001)):

- Now announces when it is disabled

- Disables click functionality for screen readers when the button is disabled

- Announces the selected state of the button

- `TextInput` component (fixed by [#31144](https://github.com/facebook/react-native/pull/31144)):

- Announces "selected" when the "selected" accessibilityState is set to true and the element is focused

- `TouchableHighlight` component (fixed by [#31135](https://github.com/facebook/react-native/pull/31135)):

- Disables click functionality for screen readers when the component is disabled

- `TouchableNativeFeedback` component (fixed by [#31224](https://github.com/facebook/react-native/pull/31224)):

- Disables click functionality for screen readers when the component is disabled

## Other Progress
Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.73/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.73/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ A string indicating which referrer to use when fetching the resource. Sets the v
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.73/pushnotificationios.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ React Native versions lower than 0.60.0:
Add the PushNotificationIOS library to your Podfile: ./ios/Podfile

- CocoaPods:

- Add the PushNotificationIOS library to your Podfile: ./ios/Podfile

```ruby
Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.74/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.74/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ A string indicating which referrer to use when fetching the resource. Sets the v
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.75/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.75/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ A string indicating which referrer to use when fetching the resource. Sets the v
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.76/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.76/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ More details about `resize` and `scale` can be found at https://frescolib.org/do
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export default NativeSampleModule;
```

3. Copy the native module over:

- Replace the code in the `android/src/main/java/com/<name-of-the-module>` with the code you wrote in the app for your native module, if any.
- Replace the code in the `ios` folder with the code you wrote in your app for your native module, if any.
- Replace the code in the `cpp` folder with the code you wrote in your app for your native module, if any.
Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.77/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.77/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ More details about `resize` and `scale` can be found at https://frescolib.org/do
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export default NativeSampleModule;
```

3. Copy the native module over:

- Replace the code in the `android/src/main/java/com/<name-of-the-module>` with the code you wrote in the app for your native module, if any.
- Replace the code in the `ios` folder with the code you wrote in your app for your native module, if any.
- Replace the code in the `cpp` folder with the code you wrote in your app for your native module, if any.
Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.78/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.78/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ More details about `resize` and `scale` can be found at https://frescolib.org/do
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export default NativeSampleModule;
```

3. Copy the native module over:

- Replace the code in the `android/src/main/java/com/<name-of-the-module>` with the code you wrote in the app for your native module, if any.
- Replace the code in the `ios` folder with the code you wrote in your app for your native module, if any.
- Replace the code in the `cpp` folder with the code you wrote in your app for your native module, if any.
Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.79/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.79/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ More details about `resize` and `scale` can be found at https://frescolib.org/do
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export default NativeSampleModule;
```

3. Copy the native module over:

- Replace the code in the `android/src/main/java/com/<name-of-the-module>` with the code you wrote in the app for your native module, if any.
- Replace the code in the `ios` folder with the code you wrote in your app for your native module, if any.
- Replace the code in the `cpp` folder with the code you wrote in your app for your native module, if any.
Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.80/image-style-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ For details of how this works under the hood, see [Fresco documentation](https:/
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that:

- Both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- At least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
1 change: 0 additions & 1 deletion website/versioned_docs/version-0.80/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ More details about `resize` and `scale` can be found at https://frescolib.org/do
Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`.

- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that

- both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding)
- at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ export default NativeSampleModule;
```

3. Copy the native module over:

- Replace the code in the `android/src/main/java/com/<name-of-the-module>` with the code you wrote in the app for your native module, if any.
- Replace the code in the `ios` folder with the code you wrote in your app for your native module, if any.
- Replace the code in the `cpp` folder with the code you wrote in your app for your native module, if any.
Expand Down
Loading