Skip to content

Commit b1c4ed5

Browse files
authored
chore: release 1.11.7 (#421)
# Release Version 1.11.7 Also in this PR I fixed incorrect event in generic params on Android. Most likely last release for 1.11.x version.
1 parent e2d7310 commit b1c4ed5

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

FabricExample/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ PODS:
964964
- React-Mapbuffer (0.73.6):
965965
- glog
966966
- React-debug
967-
- react-native-keyboard-controller (1.11.6):
967+
- react-native-keyboard-controller (1.11.7):
968968
- glog
969969
- hermes-engine
970970
- RCT-Folly (= 2022.05.16.00)
@@ -1558,7 +1558,7 @@ EXTERNAL SOURCES:
15581558
SPEC CHECKSUMS:
15591559
boost: d3f49c53809116a5d38da093a8aa78bf551aed09
15601560
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
1561-
DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
1561+
DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
15621562
FBLazyVector: f64d1e2ea739b4d8f7e4740cde18089cd97fe864
15631563
Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44
15641564
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
@@ -1597,7 +1597,7 @@ SPEC CHECKSUMS:
15971597
React-jsitracing: 4fed160d939e93a39049481f47744af246a7ac2c
15981598
React-logger: 3eb80a977f0d9669468ef641a5e1fabbc50a09ec
15991599
React-Mapbuffer: 84ea43c6c6232049135b1550b8c60b2faac19fab
1600-
react-native-keyboard-controller: 444fcb1487bbeb38cbd2c112ac813be1d78ed26d
1600+
react-native-keyboard-controller: 7ac0083f3f16b3587d1d305e9ed75e4d759a84b8
16011601
react-native-safe-area-context: 1e374c51edf537be56313b893b6e96b0e254ddfe
16021602
React-nativeconfig: b4d4e9901d4cabb57be63053fd2aa6086eb3c85f
16031603
React-NativeModulesApple: cd26e56d56350e123da0c1e3e4c76cb58a05e1ee

android/src/main/java/com/reactnativekeyboardcontroller/events/FocusedInputLayoutChangedEvent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class FocusedInputLayoutChangedEvent(
1919
surfaceId: Int,
2020
viewId: Int,
2121
private val event: FocusedInputLayoutChangedEventData,
22-
) : Event<KeyboardTransitionEvent>(surfaceId, viewId) {
22+
) : Event<FocusedInputLayoutChangedEvent>(surfaceId, viewId) {
2323
override fun getEventName() = "topFocusedInputLayoutChanged"
2424

2525
// All events for a given view can be coalesced

android/src/main/java/com/reactnativekeyboardcontroller/events/FocusedInputTextChangedEvent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class FocusedInputTextChangedEvent(
88
surfaceId: Int,
99
viewId: Int,
1010
private val text: String,
11-
) : Event<KeyboardTransitionEvent>(surfaceId, viewId) {
11+
) : Event<FocusedInputTextChangedEvent>(surfaceId, viewId) {
1212
override fun getEventName() = "topFocusedInputTextChanged"
1313

1414
// All events for a given view can be coalesced

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ PODS:
951951
- React-Mapbuffer (0.73.6):
952952
- glog
953953
- React-debug
954-
- react-native-keyboard-controller (1.11.6):
954+
- react-native-keyboard-controller (1.11.7):
955955
- glog
956956
- RCT-Folly (= 2022.05.16.00)
957957
- React-Core
@@ -1405,7 +1405,7 @@ SPEC CHECKSUMS:
14051405
React-jsinspector: 85583ef014ce53d731a98c66a0e24496f7a83066
14061406
React-logger: 3eb80a977f0d9669468ef641a5e1fabbc50a09ec
14071407
React-Mapbuffer: 84ea43c6c6232049135b1550b8c60b2faac19fab
1408-
react-native-keyboard-controller: d7eb6a5884e1b193c902e02f2ca298e53cad3a77
1408+
react-native-keyboard-controller: 43348036c16b2092851272a4cb4190f2a6b8f605
14091409
react-native-safe-area-context: b97eb6f9e3b7f437806c2ce5983f479f8eb5de4b
14101410
react-native-text-input-mask: 22ca8eeef84d42a896f79428f7d175a5eb8b1c4e
14111411
React-nativeconfig: b4d4e9901d4cabb57be63053fd2aa6086eb3c85f

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-keyboard-controller",
3-
"version": "1.11.6",
3+
"version": "1.11.7",
44
"description": "Keyboard manager which works in identical way on both iOS and Android",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)