@stellar-expert/ui-framework 1.14.2 → 1.14.4

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.
@@ -49,7 +49,10 @@ export const SystemDialog = React.memo(function SystemDialog() {
49
49
  return new Promise((resolve, reject) => {
50
50
  function setResult(result) {
51
51
  setContent(undefined)
52
- resolve(result)
52
+ if (result)
53
+ resolve(true)
54
+ else
55
+ reject()
53
56
  window.removeEventListener('keydown', keyHandler, true)
54
57
  }
55
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar-expert/ui-framework",
3
- "version": "1.14.2",
3
+ "version": "1.14.4",
4
4
  "description": "StellarExpert shared UI components library",
5
5
  "main": "index.js",
6
6
  "module": "./index.js",
@@ -22,7 +22,7 @@
22
22
  "@stellar-expert/contract-wasm-interface-parser": "^3.1.0",
23
23
  "@stellar-expert/formatter": "^2.3.0",
24
24
  "@stellar-expert/navigation": "github:stellar-expert/navigation#v1.0.2",
25
- "@stellar-expert/tx-meta-effects-parser": "6.2.0",
25
+ "@stellar-expert/tx-meta-effects-parser": "6.3.1",
26
26
  "classnames": ">=2",
27
27
  "prop-types": ">=15",
28
28
  "qrcode.react": "^3.1.0",