@ape.swap/bonds-sdk 1.1.0-test.63 → 1.1.0-test.66

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.
Files changed (52) hide show
  1. package/dist/components/Toast/index.d.ts +7 -0
  2. package/dist/components/Toast/styles.d.ts +3 -0
  3. package/dist/config/constants/queryKeys.d.ts +4 -2
  4. package/dist/contexts/Popups.d.ts +5 -0
  5. package/dist/hooks/useMonitorTxHash.d.ts +5 -0
  6. package/dist/main.d.ts +1 -2
  7. package/dist/main.js +17645 -17354
  8. package/dist/state/bonds/useGetBondRecommendations.d.ts +27 -0
  9. package/dist/state/bonds/useUserApiStats.d.ts +22 -0
  10. package/dist/state/popups/usePopups.d.ts +14 -0
  11. package/dist/state/useSDKConfig.d.ts +8 -0
  12. package/dist/state/zap/useSoulZapBondQuote.d.ts +1 -1
  13. package/dist/state/zap/useSoulZapTokenQuote.d.ts +1 -1
  14. package/dist/styles.css +1315 -0
  15. package/dist/utils/displayHelpers.d.ts +11 -0
  16. package/dist/views/BondModal/BondModal.d.ts +0 -1
  17. package/dist/views/BondModal/index.d.ts +4 -1
  18. package/dist/views/Bonds/Bonds.d.ts +0 -1
  19. package/dist/views/Bonds/components/BondRows/BondRow.d.ts +1 -2
  20. package/dist/views/Bonds/components/BondRows/BondRowsByChain.d.ts +0 -1
  21. package/dist/views/Bonds/components/BondRows/BondRowsWithTitle.d.ts +0 -1
  22. package/dist/views/Bonds/components/BuyAgainRow/index.d.ts +3 -0
  23. package/dist/views/Bonds/components/HotBondCards/HotBondCard.d.ts +1 -2
  24. package/dist/views/Bonds/components/HotBondCards/index.d.ts +1 -3
  25. package/dist/views/Bonds/components/RecommendationCards/SmallRecommendationCard.d.ts +13 -0
  26. package/dist/views/Bonds/components/RecommendationCards/index.d.ts +11 -0
  27. package/dist/views/Bonds/components/RecommendationCards/styles.d.ts +2 -0
  28. package/dist/views/Bonds/index.d.ts +4 -1
  29. package/dist/views/FullBondsView/index.d.ts +2 -1
  30. package/dist/views/YourBonds/index.d.ts +2 -1
  31. package/package.json +7 -8
  32. package/dist/config/localization/languages.d.ts +0 -11
  33. package/dist/contexts/Localization/Provider.d.ts +0 -7
  34. package/dist/contexts/Localization/helpers.d.ts +0 -3
  35. package/dist/contexts/Localization/index.d.ts +0 -3
  36. package/dist/contexts/Localization/types.d.ts +0 -21
  37. package/dist/contexts/Localization/useTranslation.d.ts +0 -2
  38. package/dist/scss/AccordionText.scss +0 -11
  39. package/dist/scss/BondMenu.scss +0 -29
  40. package/dist/scss/BondModal.scss +0 -480
  41. package/dist/scss/BondRow.scss +0 -91
  42. package/dist/scss/BondRowHeader.scss +0 -115
  43. package/dist/scss/BondRowsByChain.scss +0 -5
  44. package/dist/scss/BondRowsWithTitle.scss +0 -4
  45. package/dist/scss/Bonds.scss +0 -15
  46. package/dist/scss/ProgressBar.scss +0 -13
  47. package/dist/scss/TokenInfoName.scss +0 -44
  48. package/dist/scss/YourBonds.scss +0 -200
  49. package/dist/scss/YourBondsModal.scss +0 -308
  50. package/dist/scss/index.scss +0 -12
  51. package/dist/views/BondModal/helper.d.ts +0 -10
  52. /package/dist/hooks/{useTopThreeTags.d.ts → useTopTags.d.ts} +0 -0
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { PopupProps } from '../../state/popups/usePopups';
3
+ declare const Toast: ({ popIndex, popup }: {
4
+ popIndex: number;
5
+ popup: PopupProps;
6
+ }) => React.JSX.Element;
7
+ export default Toast;
@@ -0,0 +1,3 @@
1
+ import { ThemeUIStyleObject } from 'theme-ui';
2
+ declare const styles: Record<'alert' | 'content' | 'link', ThemeUIStyleObject>;
3
+ export default styles;
@@ -11,12 +11,13 @@ export declare const QUERY_KEYS: {
11
11
  TOKEN_HISTORIC: string;
12
12
  BONDS_LANDING: string;
13
13
  BOND_POST_REFERENCE: string;
14
- BOND_RECOMMENDATIONS: string;
15
14
  TIERS: string;
16
15
  BOND_STATS: string;
17
- USER_STATS: string;
18
16
  AB_TEST_VALUE: string;
19
17
  USE_CURRENCY_NEW: string;
18
+ SDK_CONFIG: string;
19
+ BOND_RECOMMENDATIONS: string;
20
+ USER_STATS: string;
20
21
  BONDS_DATA: string;
21
22
  BONDS_LIST: string;
22
23
  USER_BONDS: string;
@@ -31,4 +32,5 @@ export declare const QUERY_KEYS: {
31
32
  ZAP_BOND_QUOTE: string;
32
33
  CHAIN_FILTER_OPTION: string;
33
34
  FAVORITE_TOKENS: string;
35
+ POP_UPS: string;
34
36
  };
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ declare const Popups: ({ children }: {
3
+ children: React.ReactNode;
4
+ }) => React.JSX.Element;
5
+ export default Popups;
@@ -0,0 +1,5 @@
1
+ import { ChainId } from '@ape.swap/apeswap-lists';
2
+ export declare const useMonitorTxHash: (txHash?: string | null, chainId?: ChainId) => {
3
+ isLoading: boolean;
4
+ isSuccess: boolean;
5
+ };
package/dist/main.d.ts CHANGED
@@ -2,6 +2,5 @@ import Bonds from './views/Bonds';
2
2
  import YourBonds from './views/YourBonds';
3
3
  import BondModal from './views/BondModal';
4
4
  import FullBondsView from './views/FullBondsView';
5
- import YourBondsModal from './views/YourBondsModal/YourBondsModal';
6
5
  import './scss/index.scss';
7
- export { Bonds, BondModal, YourBonds, YourBondsModal, FullBondsView };
6
+ export { Bonds, BondModal, YourBonds, FullBondsView };