@applicaster/zapp-react-dom-app 14.0.2 → 14.0.3-alpha.4921684395

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);
@@ -122,6 +122,10 @@ export const AnalyticsBridge = (function () {
122
122
  return;
123
123
  }
124
124
 
125
+ log_debug(`AnalyticsBridge postEvent called: ${eventName}`, {
126
+ payload,
127
+ });
128
+
125
129
  const updatedPayload = {
126
130
  ...prepareEventPayload(),
127
131
  ...payload,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-dom-app",
3
- "version": "14.0.2",
3
+ "version": "14.0.3-alpha.4921684395",
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": "14.0.2",
26
- "@applicaster/zapp-react-native-bridge": "14.0.2",
27
- "@applicaster/zapp-react-native-redux": "14.0.2",
28
- "@applicaster/zapp-react-native-ui-components": "14.0.2",
29
- "@applicaster/zapp-react-native-utils": "14.0.2",
25
+ "@applicaster/zapp-react-dom-ui-components": "14.0.3-alpha.4921684395",
26
+ "@applicaster/zapp-react-native-bridge": "14.0.3-alpha.4921684395",
27
+ "@applicaster/zapp-react-native-redux": "14.0.3-alpha.4921684395",
28
+ "@applicaster/zapp-react-native-ui-components": "14.0.3-alpha.4921684395",
29
+ "@applicaster/zapp-react-native-utils": "14.0.3-alpha.4921684395",
30
30
  "abortcontroller-polyfill": "^1.7.5",
31
31
  "typeface-montserrat": "^0.0.54",
32
32
  "video.js": "7.14.3",