@ape.swap/bonds-sdk 1.0.486 → 1.0.488
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.
|
@@ -240,7 +240,7 @@ var Bonds = function (_a) {
|
|
|
240
240
|
var handleInputChange = function (event) {
|
|
241
241
|
setInputValue(event.target.value);
|
|
242
242
|
};
|
|
243
|
-
var topTags = useTopTags(
|
|
243
|
+
var topTags = useTopTags(sortedBonds);
|
|
244
244
|
var filterOptions = __spreadArray(__spreadArray(['ALL'], topTags, true), ['SOLD OUT'], false);
|
|
245
245
|
var _l = useState(filterOptions[0]), filterOption = _l[0], setFilterOption = _l[1];
|
|
246
246
|
var handleChangeFilterOption = useCallback(function (newOption) {
|
|
@@ -5,17 +5,16 @@
|
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
width: 100%;
|
|
7
7
|
padding-top: 5px;
|
|
8
|
-
padding-left: 15px;
|
|
9
|
-
padding-right: 15px;
|
|
10
8
|
padding-bottom: 5px;
|
|
11
9
|
font-size: 11px;
|
|
12
|
-
color: #73728E;
|
|
13
10
|
}
|
|
14
11
|
|
|
15
12
|
.header-container.filters {
|
|
16
13
|
display: flex;
|
|
17
14
|
flex-direction: row;
|
|
18
15
|
align-items: center;
|
|
16
|
+
justify-content: end;
|
|
17
|
+
padding-bottom: 5px;
|
|
19
18
|
width: 100%;
|
|
20
19
|
}
|
|
21
20
|
|
package/dist/theme/colors.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const colors: {
|
|
2
2
|
white1: string;
|
|
3
3
|
white2: string;
|
|
4
4
|
white3: string;
|
|
@@ -7,6 +7,7 @@ declare const abondColors: {
|
|
|
7
7
|
brandPrimary140: string;
|
|
8
8
|
navBar: string;
|
|
9
9
|
primaryButton: string;
|
|
10
|
+
primaryShade: string;
|
|
10
11
|
secondary: string;
|
|
11
12
|
footer: string;
|
|
12
13
|
success: string;
|
|
@@ -85,4 +86,4 @@ declare const abondColors: {
|
|
|
85
86
|
bg2: string;
|
|
86
87
|
progressBar: string;
|
|
87
88
|
};
|
|
88
|
-
export default
|
|
89
|
+
export default colors;
|
package/dist/theme/colors.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var
|
|
1
|
+
var colors = {
|
|
2
2
|
// main background gradients
|
|
3
3
|
white1: '#0E0D16',
|
|
4
4
|
white2: '#161420',
|
|
@@ -8,6 +8,7 @@ var abondColors = {
|
|
|
8
8
|
brandPrimary140: '#C1BDE7',
|
|
9
9
|
navBar: 'rgba(22, 20, 32, 0.8)',
|
|
10
10
|
primaryButton: '#6560C5',
|
|
11
|
+
primaryShade: '#514CA133',
|
|
11
12
|
secondary: '#E69275',
|
|
12
13
|
footer: '#000000',
|
|
13
14
|
success: '#38A611',
|
|
@@ -89,4 +90,4 @@ var abondColors = {
|
|
|
89
90
|
bg2: 'linear-gradient(180deg, #FEFCEC 27.58%, #EEDFC7 79.74%, #FEFAE0 131.91%, #F5ECDD 154.81%)',
|
|
90
91
|
progressBar: 'linear-gradient(90deg, #312E7A 0%, #5C4FAE 41.5%, #AD6568 74.5%, #AD6E66 100%)',
|
|
91
92
|
};
|
|
92
|
-
export default
|
|
93
|
+
export default colors;
|