@applicaster/zapp-react-dom-app 15.0.0-rc.25 → 15.0.0-rc.27

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.
@@ -524,8 +524,16 @@ class InteractionManagerClass extends React.Component<Props, State> {
524
524
  }
525
525
 
526
526
  onKeyDown(event) {
527
- const { displayState, setDisplayState, navigator } = this.props;
527
+ const { displayState, setDisplayState, navigator, xray } = this.props;
528
528
  const { isDialogVisible } = confirmationDialogStore.getState();
529
+ const { isKeyboardVisible } = this.state;
530
+
531
+ if (
532
+ xray?.isPromptEnabled ||
533
+ (isKeyboardVisible && shouldUseOnScreenKeyboard())
534
+ ) {
535
+ return;
536
+ }
529
537
 
530
538
  if (keyCode(event).matches("Backspace")) {
531
539
  this.onBackspacePress(event);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-dom-app",
3
- "version": "15.0.0-rc.25",
3
+ "version": "15.0.0-rc.27",
4
4
  "description": "Zapp App Component for Applicaster's Quick Brick React Native App",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "homepage": "https://github.com/applicaster/zapp-react-dom-app#readme",
24
24
  "dependencies": {
25
- "@applicaster/zapp-react-dom-ui-components": "15.0.0-rc.25",
26
- "@applicaster/zapp-react-native-bridge": "15.0.0-rc.25",
27
- "@applicaster/zapp-react-native-redux": "15.0.0-rc.25",
28
- "@applicaster/zapp-react-native-ui-components": "15.0.0-rc.25",
29
- "@applicaster/zapp-react-native-utils": "15.0.0-rc.25",
25
+ "@applicaster/zapp-react-dom-ui-components": "15.0.0-rc.27",
26
+ "@applicaster/zapp-react-native-bridge": "15.0.0-rc.27",
27
+ "@applicaster/zapp-react-native-redux": "15.0.0-rc.27",
28
+ "@applicaster/zapp-react-native-ui-components": "15.0.0-rc.27",
29
+ "@applicaster/zapp-react-native-utils": "15.0.0-rc.27",
30
30
  "abortcontroller-polyfill": "^1.7.5",
31
31
  "typeface-montserrat": "^0.0.54",
32
32
  "video.js": "7.14.3",