chayns-api 2.4.25 → 2.4.26

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.
@@ -248,7 +248,7 @@ class AppWrapper {
248
248
  this.appCall(60, {}, {
249
249
  callback: v => {
250
250
  (0, _apiListenerHelper.dispatchApiEvent)('visibilityChangeListener', {
251
- isVisible: v.tappEvent === _IChaynsReact.TappEvent.OnShow,
251
+ isVisible: v.tappEvent !== _IChaynsReact.TappEvent.OnHide,
252
252
  tappEvent: v.tappEvent
253
253
  });
254
254
  }
@@ -210,7 +210,7 @@ export class AppWrapper {
210
210
  this.appCall(60, {}, {
211
211
  callback: v => {
212
212
  dispatchApiEvent('visibilityChangeListener', {
213
- isVisible: v.tappEvent === TappEvent.OnShow,
213
+ isVisible: v.tappEvent !== TappEvent.OnHide,
214
214
  tappEvent: v.tappEvent
215
215
  });
216
216
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "2.4.25",
3
+ "version": "2.4.26",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",