react-native-external-keyboard 0.8.4-rc → 0.8.4-rc2

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.
@@ -257,6 +257,11 @@ public class ExternalKeyboardViewManager extends com.externalkeyboard.ExternalKe
257
257
  //stub
258
258
  }
259
259
 
260
+ @Override
261
+ public void setEnableContextMenu(ExternalKeyboardView view, boolean value) {
262
+ //stub
263
+ }
264
+
260
265
  @Override
261
266
  public void setGroup(ExternalKeyboardView view, boolean value) {
262
267
  //stub
@@ -64,4 +64,6 @@ public abstract class ExternalKeyboardViewManagerSpec<T extends ViewGroup> exten
64
64
  public abstract void setOrderFirst(ExternalKeyboardView view, @Nullable String value);
65
65
 
66
66
  public abstract void setOrderLast(ExternalKeyboardView view, @Nullable String value);
67
+
68
+ public abstract void setEnableContextMenu(ExternalKeyboardView view, boolean value);
67
69
  }
@@ -91,6 +91,7 @@ NS_ASSUME_NONNULL_END
91
91
  @property NSString* orderLast;
92
92
  @property NSString* orderFirst;
93
93
  @property BOOL isLinked;
94
+ @property BOOL enableContextMenu;
94
95
 
95
96
  - (UIView*)getFocusTargetView;
96
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-external-keyboard",
3
- "version": "0.8.4-rc",
3
+ "version": "0.8.4-rc2",
4
4
  "description": "Toolkit for improving physical keyboard support in React Native",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",