@ape.swap/bonds-sdk 1.0.692 → 1.0.693
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.
|
@@ -255,7 +255,7 @@ var YourBonds = function (_a) {
|
|
|
255
255
|
setIsModalOpen(false);
|
|
256
256
|
};
|
|
257
257
|
return (_jsxs(ThemeUIProvider, { theme: defaultTheme, children: [isModalOpen &&
|
|
258
|
-
_jsx(YourBondsModal, { isOpen: true, onClose: closeModal, userBill: selectedBill }), toastMessage && (_jsx(Flex, { className: "toast", children: toastMessage })), bondsRendered && (_jsxs(Flex, { className: "yourbonds table-container", children: [_jsxs(Flex, { className: "yourbonds header-container", children: [_jsx(Flex, { className: "yourbonds column-tokens", children: _jsx(Flex, { className: "yourbonds column-search", sx: { width: '100%', maxWidth: ['200px', '200px', '200px', '340px'] }, children: _jsx(Input, { value: inputValue, onChange: handleInputChange, variant: "search", sx: { fontWeight: 400, background: 'white2', height: '30px', fontSize: '14px', color: 'white' }, width: '100%', placeholder: 'Search...' }) }) }), _jsxs(Flex, { className: "yourbonds column-bondinfo", children: [_jsxs(Flex, { className: "yourbonds header-claimable", children: [
|
|
258
|
+
_jsx(YourBondsModal, { isOpen: true, onClose: closeModal, userBill: selectedBill }), toastMessage && (_jsx(Flex, { className: "toast", children: toastMessage })), bondsRendered && (_jsxs(Flex, { className: "yourbonds table-container", children: [_jsxs(Flex, { className: "yourbonds header-container", children: [_jsx(Flex, { className: "yourbonds column-tokens", children: _jsx(Flex, { className: "yourbonds column-search", sx: { width: '100%', maxWidth: ['200px', '200px', '200px', '340px'] }, children: _jsx(Input, { value: inputValue, onChange: handleInputChange, variant: "search", sx: { fontWeight: 400, background: 'white2', height: '30px', fontSize: '14px', color: 'white' }, width: '100%', placeholder: 'Search...' }) }) }), _jsxs(Flex, { className: "yourbonds column-bondinfo", children: [_jsxs(Flex, { className: "yourbonds header-claimable", children: ["CLAIMABLE", _jsx(Flex, { className: "yourbonds header-icon", onClick: function () { return handleSort('claimable'); }, children: _jsx(Svg, { icon: "sort", width: "12px", color: "textDisabledButton" }) })] }), _jsxs(Flex, { className: "yourbonds header-pending", children: ["PENDING", _jsx(Flex, { className: "yourbonds header-icon", onClick: function () { return handleSort('pending'); }, children: _jsx(Svg, { icon: "sort", width: "12px", color: "textDisabledButton" }) })] }), _jsxs(Flex, { className: "yourbonds header-terms", children: ["TERMS", _jsx(Flex, { className: "yourbonds header-icon", onClick: function () { return handleSort('terms'); }, children: _jsx(Svg, { icon: "sort", width: "12px", color: "textDisabledButton" }) })] }), _jsx(Flex, { className: "yourbonds header-claimall" })] })] }), filteredBonds.map(function (bill) {
|
|
259
259
|
var _a, _b;
|
|
260
260
|
return (_jsxs(Flex, { className: "yourbonds bondrow-container", onClick: function () { return rowClick(bill); }, children: [_jsx(Flex, { className: "yourbonds column-tokens", children: _jsx(Flex, { className: "yourbonds column-tokeninfoname", children: _jsx(TokenInfoAndName, { bill: bill.bond, vestEnds: "Ends in ".concat(getPendingVesting(bill.lastBlockTimestamp, bill.vesting)) }) }) }), _jsxs(Flex, { className: "yourbonds column-bondinfo", children: [_jsxs(Flex, { className: "yourbonds column-claimable", children: [formatNumberSI(parseFloat(claimable(bill).toFixed(4)), 4), _jsx(Text, { sx: { opacity: '0.6', fontSize: '12px', paddingLeft: '5px' }, children: "($".concat((claimable(bill) * ((_a = parseFloat(earnTokenPrice(bill.bond))) !== null && _a !== void 0 ? _a : 0)).toFixed(2), ")") })] }), _jsxs(Flex, { className: "yourbonds column-pending", children: [formatNumberSI(parseFloat(totalPending(bill).toFixed(0)), 0), _jsx(Text, { sx: { opacity: '0.6', fontSize: '12px', paddingLeft: '5px' }, children: "($".concat((totalPending(bill) * ((_b = parseFloat(earnTokenPrice(bill.bond))) !== null && _b !== void 0 ? _b : 0)).toFixed(2), ")") })] }), _jsx(Flex, { className: "yourbonds column-terms", children: "".concat(vestingTimeRemaining(bill).days, "d, ").concat(vestingTimeRemaining(bill).hours, "h, ").concat(vestingTimeRemaining(bill).minutes, "m") }), _jsx(Flex, { className: "yourbonds column-claimall", children: _jsx(Button, { className: "claim-button", disabled: claimable(bill) === 0 || isPending, onClick: function (event) {
|
|
261
261
|
event.stopPropagation();
|
package/dist/scss/YourBonds.scss
CHANGED
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
flex-direction: row;
|
|
56
56
|
justify-content: start;
|
|
57
57
|
align-items: center;
|
|
58
|
+
padding-left: 20px;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.yourbonds.column-bondinfo {
|
|
@@ -69,6 +70,8 @@
|
|
|
69
70
|
justify-content: center;
|
|
70
71
|
align-items: center;
|
|
71
72
|
width: 25%;
|
|
73
|
+
font-size: 11px;
|
|
74
|
+
color: var(--theme-ui-colors-textDisabled)
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.yourbonds.header-pending {
|
|
@@ -76,6 +79,8 @@
|
|
|
76
79
|
justify-content: center;
|
|
77
80
|
align-items: center;
|
|
78
81
|
width: 25%;
|
|
82
|
+
font-size: 11px;
|
|
83
|
+
color: var(--theme-ui-colors-textDisabled)
|
|
79
84
|
}
|
|
80
85
|
|
|
81
86
|
.yourbonds.header-terms {
|
|
@@ -83,6 +88,8 @@
|
|
|
83
88
|
justify-content: center;
|
|
84
89
|
align-items: center;
|
|
85
90
|
width: 25%;
|
|
91
|
+
font-size: 11px;
|
|
92
|
+
color: var(--theme-ui-colors-textDisabled)
|
|
86
93
|
}
|
|
87
94
|
|
|
88
95
|
.yourbonds.header-claimall {
|
|
@@ -94,6 +101,13 @@
|
|
|
94
101
|
padding-bottom: 15px;
|
|
95
102
|
}
|
|
96
103
|
|
|
104
|
+
.yourbonds.header-icon {
|
|
105
|
+
padding-left: 5px;
|
|
106
|
+
align-items: start;
|
|
107
|
+
justify-content: space-around;
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
}
|
|
110
|
+
|
|
97
111
|
.yourbonds.column-claimable {
|
|
98
112
|
flex-direction: row;
|
|
99
113
|
justify-content: center;
|
|
@@ -123,13 +137,6 @@
|
|
|
123
137
|
padding-right: 20px;
|
|
124
138
|
}
|
|
125
139
|
|
|
126
|
-
.column-claimall.button {
|
|
127
|
-
flex-direction: column;
|
|
128
|
-
justify-content: center;
|
|
129
|
-
align-items: center;
|
|
130
|
-
width: 100%;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
140
|
.claim-button {
|
|
134
141
|
height: 36px;
|
|
135
142
|
line-height: 12px;
|