@ape.swap/bonds-sdk 1.0.12-seedify → 1.0.13-seedify
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.
- package/dist/main.js +1 -1
- package/dist/scss/BondModal.scss +3 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -72623,7 +72623,7 @@ const Bonds = ({ chains = [], modalVariant = 'standard' }) => {
|
|
|
72623
72623
|
const handleChangeFilterOption = useCallback((newOption) => {
|
|
72624
72624
|
setFilterOption(newOption);
|
|
72625
72625
|
}, []);
|
|
72626
|
-
return (jsxs(Flex$1, { className: "bonds-container table-container", children: [jsx$2(CheckUrl, {}), jsx$2(BondRowHeader, { searchQuery: searchQuery, setSearchQuery: setSearchQuery, setChainFilterOption: setChainFilterOption, chainFilterOption: chainFilterOption !== null && chainFilterOption !== void 0 ? chainFilterOption : ['All Chains'], filterOptions: filterOptions, filterOption: filterOption, setFilterOption: handleChangeFilterOption, onSort: handleSortOptions }), (billsToRender === null || billsToRender === void 0 ? void 0 : billsToRender.length) > 0 ? (jsx$2(BondRowsByChain, { chains: chains, bonds: billsToRender, hotBonds: hotBonds, hideTitles: searchQuery !== '', modalVariant:
|
|
72626
|
+
return (jsxs(Flex$1, { className: "bonds-container table-container", children: [jsx$2(CheckUrl, {}), jsx$2(BondRowHeader, { searchQuery: searchQuery, setSearchQuery: setSearchQuery, setChainFilterOption: setChainFilterOption, chainFilterOption: chainFilterOption !== null && chainFilterOption !== void 0 ? chainFilterOption : ['All Chains'], filterOptions: filterOptions, filterOption: filterOption, setFilterOption: handleChangeFilterOption, onSort: handleSortOptions }), (billsToRender === null || billsToRender === void 0 ? void 0 : billsToRender.length) > 0 ? (jsx$2(BondRowsByChain, { chains: chains, bonds: billsToRender, hotBonds: hotBonds, hideTitles: searchQuery !== '', modalVariant: 'alt' })) : searchQuery ? (jsx$2(Fragment$1, { children: "No results" })) : (jsx$2(Flex$1, { className: "bonds-spinner", children: jsx$2(Spinner, { size: 100 }) }))] }));
|
|
72627
72627
|
};
|
|
72628
72628
|
|
|
72629
72629
|
var BondsViewOptions;
|
package/dist/scss/BondModal.scss
CHANGED
|
@@ -491,11 +491,13 @@ span.flex-inline {
|
|
|
491
491
|
.footer-details {
|
|
492
492
|
margin-left: -20px !important;
|
|
493
493
|
margin-right: -20px !important;
|
|
494
|
-
margin-bottom: -
|
|
494
|
+
margin-bottom: -20px !important;
|
|
495
495
|
margin-top: 20px !important;
|
|
496
496
|
height: 50px;
|
|
497
497
|
align-items: center;
|
|
498
498
|
border-top: 1px solid #FFFFFF;
|
|
499
|
+
border-bottom-left-radius: 10px !important;
|
|
500
|
+
border-bottom-right-radius: 10px !important;
|
|
499
501
|
}
|
|
500
502
|
|
|
501
503
|
.expand-icon {
|