react-native-external-keyboard 0.8.4-rc → 0.8.4-rc1
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
|
}
|
package/package.json
CHANGED