@stellar-expert/ui-framework 1.13.9 → 1.14.1

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.
@@ -73,6 +73,7 @@
73
73
 
74
74
  tr {
75
75
  display: block;
76
+ padding: .4em;
76
77
  }
77
78
 
78
79
  td {
@@ -29,6 +29,7 @@
29
29
  border-radius: $border-radius-input;
30
30
  box-shadow: 0 2px 4px 0 var(--color-modal-bg);
31
31
  padding: $space-micro $space-standard $space-standard;
32
+ max-width: 32em;
32
33
  }
33
34
  }
34
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar-expert/ui-framework",
3
- "version": "1.13.9",
3
+ "version": "1.14.1",
4
4
  "description": "StellarExpert shared UI components library",
5
5
  "main": "index.js",
6
6
  "module": "./index.js",
@@ -923,7 +923,7 @@ const typeMapping = {
923
923
  liquidityPoolDeposit: DepositLiquidityDescriptionView,
924
924
  liquidityPoolWithdraw: WithdrawLiquidityDescriptionView,
925
925
  invokeHostFunction: InvokeHostFunctionView,
926
- extendFootprintTTL: ExtendFootprintTTLView,
926
+ extendFootprintTtl: ExtendFootprintTTLView,
927
927
  restoreFootprint: RestoreFootprintView
928
928
  }
929
929
 
package/tx/op-icon.js CHANGED
@@ -44,7 +44,7 @@ const opIconMapping = {
44
44
  liquidityPoolDeposit: 'droplet',
45
45
  liquidityPoolWithdraw: 'droplet-half',
46
46
  invokeHostFunction: 'flash',
47
- bumpFootprintExpiration: 'upload',
47
+ extendFootprintTtl: 'upload',
48
48
  restoreFootprint: 'upload'
49
49
  }
50
50
 
@@ -186,7 +186,7 @@ export default class TxMatcher {
186
186
  case 'bumpSequence':
187
187
  case 'endSponsoringFutureReserves':
188
188
  case 'clawbackClaimableBalance':
189
- case 'bumpFootprintExpiration':
189
+ case 'extendFootprintTtl':
190
190
  case 'restoreFootprint':
191
191
  matchingProps.account = new Set()
192
192
  break