Skip to content

v1.2.0

Compare
Choose a tag to compare
@wpdas wpdas released this 07 Apr 10:37
· 78 commits to main since this release
affd70b
  • Fixed issue where localStorage was not available inside VM
  • Fixed bug where hydrate-view request was failing
  • Auto refresh fixed
  • Added Spinner to be used as default Fallback
  • Added a palliative feature to fix a bug that happens with react.
    When content inside an iframe is updated, react adds an iframe covering the entire
    screen using the maximum z-index, thus making any interaction with the application impossible.
  • Widget NearSocialBridgeCore updated. An issue while fetching data with Storage API was fixed.
    The Utils.promisify method was also updated, now it's possible to set the timeout manually.
  • Added Spinner component to be used as default Fallback for createStackNavigator and NearSocialBridgeProvider.

E.g:

var myTimeout = 3000; // 3 sec
Utils.promisify(() => getCachedObject(), (res) => console.log(res), (err) => console.log(err), myTimeout)