Skip to content

Commit

Permalink
[RNMobile][iOS] Fix scroll update when typing in RichText component (#…
Browse files Browse the repository at this point in the history
…36914)

* Use target id from native event object

* Standarize react-native-editor changelog format

* Add entry to react-native-editor changelog
  • Loading branch information
fluiddot committed Nov 26, 2021
1 parent ee89a1b commit 8f38fa2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/react-native-aztec/src/AztecView.js
Expand Up @@ -170,7 +170,7 @@ class AztecView extends Component {
) {
const caretY = event.nativeEvent.selectionEndCaretY;
this.props.onCaretVerticalPositionChange(
event.target,
event.nativeEvent.target,
caretY,
this.selectionEndCaretY
);
Expand Down
13 changes: 7 additions & 6 deletions packages/react-native-editor/CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@ For each user feature we should also add a importance categorization label to i
-->

## Unreleased
- [**] [iOS] Fix scroll update when typing in RichText component [#36914]

## 1.67.0
- [**] Adds Clipboard Link Suggestion to Image block and Button block [#35972]
Expand All @@ -23,14 +24,14 @@ For each user feature we should also add a importance categorization label to i
- [*] Fixed a race condition when autosaving content (Android) [#36072]

## 1.65.1
- [**] Fixed a crash that could occur when copying lists from Microsoft Word. [https://github.com/WordPress/gutenberg/pull/36019]
- [**] Fixed a crash that could occur when copying lists from Microsoft Word. [https://github.com/WordPress/gutenberg/pull/36019]

## 1.65.0
- [**] Search block - Text and background color support [#35511]
- [*] [Embed Block] Fix loading glitch with resolver resolution approach [#35798]
* [*] Fixed an issue where the Help screens may not respect an iOS device's notch. [#35570]
- [**] Block inserter indicates newly available block types [#35201]
- [*] Add support for the Mark HTML tag [#35956]
- [**] Search block - Text and background color support [#35511]
- [*] [Embed Block] Fix loading glitch with resolver resolution approach [#35798]
- [*] Fixed an issue where the Help screens may not respect an iOS device's notch. [#35570]
- [**] Block inserter indicates newly available block types [#35201]
- [*] Add support for the Mark HTML tag [#35956]

## 1.64.1
- [**] Fix updating the block list after block removal [#35721]
Expand Down

0 comments on commit 8f38fa2

Please sign in to comment.