react-native 0.71.7 → 0.71.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/Libraries/Text/TextInput/RCTBackedTextInputDelegateAdapter.m +3 -3
- package/React/Base/RCTVersion.m +1 -1
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/package.json +2 -2
- package/sdks/hermesc/linux64-bin/hermesc +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/template/package.json +1 -1
|
@@ -256,21 +256,21 @@ static void *TextFieldSelectionObservingContext = &TextFieldSelectionObservingCo
|
|
|
256
256
|
|
|
257
257
|
- (void)textViewDidChange:(__unused UITextView *)textView
|
|
258
258
|
{
|
|
259
|
-
if (_ignoreNextTextInputCall
|
|
259
|
+
if (_ignoreNextTextInputCall) {
|
|
260
260
|
_ignoreNextTextInputCall = NO;
|
|
261
261
|
return;
|
|
262
262
|
}
|
|
263
|
-
_lastStringStateWasUpdatedWith = _backedTextInputView.attributedText;
|
|
264
263
|
_textDidChangeIsComing = NO;
|
|
265
264
|
[_backedTextInputView.textInputDelegate textInputDidChange];
|
|
266
265
|
}
|
|
267
266
|
|
|
268
267
|
- (void)textViewDidChangeSelection:(__unused UITextView *)textView
|
|
269
268
|
{
|
|
270
|
-
if (![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
|
|
269
|
+
if (_lastStringStateWasUpdatedWith && ![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
|
|
271
270
|
[self textViewDidChange:_backedTextInputView];
|
|
272
271
|
_ignoreNextTextInputCall = YES;
|
|
273
272
|
}
|
|
273
|
+
_lastStringStateWasUpdatedWith = _backedTextInputView.attributedText;
|
|
274
274
|
[self textViewProbablyDidChangeSelection];
|
|
275
275
|
}
|
|
276
276
|
|
package/React/Base/RCTVersion.m
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.8",
|
|
4
4
|
"bin": "./cli.js",
|
|
5
5
|
"description": "A framework for building native apps using React",
|
|
6
6
|
"license": "MIT",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"pretty-format": "^26.5.2",
|
|
134
134
|
"promise": "^8.3.0",
|
|
135
135
|
"react-devtools-core": "^4.26.1",
|
|
136
|
-
"react-native-gradle-plugin": "^0.71.
|
|
136
|
+
"react-native-gradle-plugin": "^0.71.18",
|
|
137
137
|
"react-refresh": "^0.4.0",
|
|
138
138
|
"react-shallow-renderer": "^16.15.0",
|
|
139
139
|
"regenerator-runtime": "^0.13.2",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|