@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/styles.css CHANGED
@@ -580,9 +580,9 @@ span.flex-inline {
580
580
  }
581
581
 
582
582
  .footer-details {
583
- margin-left: -10px !important;
584
- margin-right: -10px !important;
585
- margin-bottom: -10px !important;
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 {
@@ -6,7 +6,6 @@ export interface BondModalProps {
6
6
  handlePurchasedBond?: (hash: string) => void;
7
7
  accordionTitle?: string;
8
8
  accordionBody?: string;
9
- accordionVisible?: boolean;
10
9
  }
11
10
  declare const BondModal: React.FC<BondModalProps>;
12
11
  export default BondModal;
@@ -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 "../../../../types/yourbonds";
1
+ import { UserBillNftData } from '../../../../types/yourbonds';
2
2
  export declare function generateImageFromTemplate(bondNFTData: UserBillNftData | undefined, link: string, apiUrl: string): Promise<void>;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ape Bond SDK",
4
4
  "author": "Ape Bond",
5
5
  "license": "MIT",
6
- "version": "2.0.7-test.4",
6
+ "version": "2.0.8-seedify",
7
7
  "module": "dist/main.js",
8
8
  "type": "module",
9
9
  "types": "dist/main.d.ts",