|
@@ -599,11 +599,16 @@ export interface OptionsSideMenu {
|
599
|
599
|
openGestureMode?: 'entireScreen' | 'bezel';
|
600
|
600
|
}
|
601
|
601
|
|
602
|
|
-export interface OptionsOverlay {
|
|
602
|
+export interface OverlayOptions {
|
603
|
603
|
/**
|
604
|
604
|
* Capture touches outside of the Component View
|
605
|
605
|
*/
|
606
|
606
|
interceptTouchOutside?: boolean;
|
|
607
|
+ /**
|
|
608
|
+ * Control wether this Overlay should handle Keyboard events.
|
|
609
|
+ * Set this to true if your Overlay contains a TextInput.
|
|
610
|
+ */
|
|
611
|
+ handleKeyboardEvents?: boolean;
|
607
|
612
|
}
|
608
|
613
|
|
609
|
614
|
export interface OptionsPreviewAction {
|