@stellar-expert/ui-framework 1.11.2 → 1.11.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.
@@ -20,11 +20,11 @@
20
20
 
21
21
  .option {
22
22
  &.expanded {
23
- .accordion-header:before {
23
+ > .accordion-header:before {
24
24
  content: attr(data-expanded);
25
25
  }
26
26
 
27
- .accordion-collapse {
27
+ > .accordion-collapse {
28
28
  height: auto;
29
29
  }
30
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stellar-expert/ui-framework",
3
- "version": "1.11.2",
3
+ "version": "1.11.4",
4
4
  "description": "StellarExpert shared UI components library",
5
5
  "main": "index.js",
6
6
  "module": "./index.js",
@@ -109,8 +109,8 @@ export const TxOperationsList = React.memo(function TxOperationsList({
109
109
  {effectsExpanded && <OpEffectsView effects={op.operation.effects}/>}
110
110
  </div>)}
111
111
  {showFees && <TxChargedFee {...{parsedTx, compact}}/>}
112
- {(opsExpanded || opdiff > 0) && <Spoiler expanded={opsExpanded} onChange={toggleAdditionalOps}
113
- showMore={`${opdiff} more operation${opdiff > 1 && 's'} hidden`} showLess="Hide extra operations"/>}
114
112
  </div>
113
+ {(opsExpanded || opdiff > 0) && <Spoiler className="text-tiny" expanded={opsExpanded} onChange={toggleAdditionalOps}
114
+ showMore={`${opdiff} more operation${opdiff > 1 && 's'} in this transaction`} showLess="Hide additional operations"/>}
115
115
  </div>
116
116
  })