@ape.swap/bonds-sdk 2.0.7-test.4 → 2.0.8-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/components/AccordionText/index.d.ts +0 -2
- package/dist/main.d.ts +1 -1
- package/dist/main.js +203 -989
- package/dist/styles.css +4 -3
- package/dist/views/BondModal/BondModal.d.ts +0 -1
- package/dist/views/BondModal/components/BondModalHeaderAlt.d.ts +8 -0
- package/dist/views/YourBondsModal/components/LinkShare/utils.d.ts +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -580,9 +580,9 @@ span.flex-inline {
|
|
|
580
580
|
}
|
|
581
581
|
|
|
582
582
|
.footer-details {
|
|
583
|
-
margin-left: -
|
|
584
|
-
margin-right: -
|
|
585
|
-
margin-bottom: -
|
|
583
|
+
margin-left: -20px !important;
|
|
584
|
+
margin-right: -20px !important;
|
|
585
|
+
margin-bottom: -20px !important;
|
|
586
586
|
margin-top: 20px !important;
|
|
587
587
|
height: 50px;
|
|
588
588
|
align-items: center;
|
|
@@ -1562,6 +1562,7 @@ span.flex-inline {
|
|
|
1562
1562
|
display: flex;
|
|
1563
1563
|
justify-content: space-between;
|
|
1564
1564
|
flex-direction: column;
|
|
1565
|
+
gap: 20px;
|
|
1565
1566
|
}
|
|
1566
1567
|
@media screen and (min-width: 1000px) {
|
|
1567
1568
|
.yourbondinfo.button-container {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BondsData } from '../../../types/bonds';
|
|
3
|
+
declare const BondModalHeaderAlt: ({ bondData, onDismiss, showProjectInfoButton, }: {
|
|
4
|
+
bondData: BondsData;
|
|
5
|
+
onDismiss?: () => void;
|
|
6
|
+
showProjectInfoButton?: boolean;
|
|
7
|
+
}) => React.JSX.Element;
|
|
8
|
+
export default BondModalHeaderAlt;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { UserBillNftData } from
|
|
1
|
+
import { UserBillNftData } from '../../../../types/yourbonds';
|
|
2
2
|
export declare function generateImageFromTemplate(bondNFTData: UserBillNftData | undefined, link: string, apiUrl: string): Promise<void>;
|