@stellar-expert/ui-framework 1.15.0 → 1.15.2

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.
@@ -10,7 +10,6 @@ import {AssetLink} from '../asset/asset-link'
10
10
  import {Amount} from '../asset/amount'
11
11
  import {CopyToClipboard} from '../interaction/copy-to-clipboard'
12
12
  import {ScVal} from '../contract/sc-val'
13
- import {InfoTooltip} from '../controls/info-tooltip'
14
13
  import InvocationInfoView from '../contract/invocation-info-view'
15
14
 
16
15
  /**
@@ -328,10 +327,10 @@ function ContractCodeWasm({wasm}) {
328
327
  </>
329
328
  }
330
329
 
331
- function ClaimableBalance(effect) {
330
+ function ClaimableBalance({effect}) {
332
331
  const {balance} = effect
333
332
  return <>
334
- {shortenString(balance)} <CopyToClipboard text={wasmHash}/>{/*<InfoTooltip icon="icon-plus">
333
+ {shortenString(balance)} <CopyToClipboard text={balance}/>{/*<InfoTooltip icon="icon-plus">
335
334
  <CopyToClipboard text={balance}>{balance}</CopyToClipboard>
336
335
  </InfoTooltip>*/}
337
336
  </>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar-expert/ui-framework",
3
- "version": "1.15.0",
3
+ "version": "1.15.2",
4
4
  "description": "StellarExpert shared UI components library",
5
5
  "main": "index.js",
6
6
  "module": "./index.js",