@ape.swap/bonds-sdk 3.0.5 → 3.0.6
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/{TagXmasFlashBond/TagXmasFlashBond.d.ts → TagMinTierFlashBond/TagMinTierFlashBond.d.ts} +3 -3
- package/dist/components/TokenInfoAndName/MinTierRow.d.ts +5 -0
- package/dist/components/uikit-sdk/TooltipBubble/types.d.ts +2 -1
- package/dist/components/uikit-sdk/index.d.ts +1 -0
- package/dist/main.js +319 -301
- package/dist/state/zap/useSoulZapBondQuote.d.ts +1 -1
- package/dist/styles.css +8 -107
- package/dist/views/BondModal/components/BondModalMinTierHeader.d.ts +5 -0
- package/dist/views/BondModal/components/Estimations.d.ts +3 -6
- package/dist/views/BondModal/components/NewRateModal/NewRateModal.d.ts +14 -0
- package/dist/views/Bonds/components/BondRows/BondRowsByChain.d.ts +0 -1
- package/package.json +1 -1
- /package/dist/views/BondModal/{NoBonusModal.d.ts → components/NoBonusModal/NoBonusModal.d.ts} +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { LaunchBondTiers } from '@ape.swap/apeswap-lists';
|
|
3
|
-
interface
|
|
3
|
+
interface MinTierBondProps {
|
|
4
4
|
userTier: LaunchBondTiers | null;
|
|
5
5
|
minTier: number | undefined;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export default
|
|
7
|
+
declare const TagMinTierBond: React.FC<MinTierBondProps>;
|
|
8
|
+
export default TagMinTierBond;
|
|
@@ -5,7 +5,8 @@ export declare enum placements {
|
|
|
5
5
|
TOPLEFT = "topLeft",
|
|
6
6
|
BOTTOMRIGHT = "bottomRight",
|
|
7
7
|
BOTTOMLEFT = "bottomLeft",
|
|
8
|
-
ONLYCONTAINERRIGHT = "onlyContainerRight"
|
|
8
|
+
ONLYCONTAINERRIGHT = "onlyContainerRight",
|
|
9
|
+
LEFT = "left"
|
|
9
10
|
}
|
|
10
11
|
export type placementProps = `${placements}`;
|
|
11
12
|
export interface TooltipProps extends BoxProps {
|
|
@@ -8,6 +8,7 @@ export { default as Modal } from './Modal';
|
|
|
8
8
|
export { default as Toggle } from './Toggle';
|
|
9
9
|
export { default as SwiperDots } from './SwiperDots';
|
|
10
10
|
export { default as LoadingDots } from './LoadingDots';
|
|
11
|
+
export { default as Checkbox } from './Checkbox';
|
|
11
12
|
export { Button, IconButton } from './Button';
|
|
12
13
|
export { Select, SelectItem } from './Select';
|
|
13
14
|
export { ListTag } from './Tag';
|