@funkit/connect 8.1.0 → 8.2.0

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 (45) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/dist/__generated__/default_configs.d.ts +7 -6
  3. package/dist/{chunk-IVO7KGHT.js → chunk-JIC2XXGY.js} +7 -2
  4. package/dist/{chunk-5GV4UXWB.js → chunk-QHRAQNOB.js} +7 -2
  5. package/dist/{chunk-RJAD5CZH.js → chunk-WIDI2TYC.js} +28 -2
  6. package/dist/clients/fanatics.css +10067 -0
  7. package/dist/clients/fanatics.d.ts +31 -0
  8. package/dist/clients/fanatics.js +525 -0
  9. package/dist/components/Box/Box.d.ts +47 -46
  10. package/dist/components/Dialog/Dialog.d.ts +1 -1
  11. package/dist/components/FunBottomBar/FunBottomBar.d.ts +2 -1
  12. package/dist/components/FunButton/FunIconButton.d.ts +1 -1
  13. package/dist/components/FunInfoBanner/FunInfoBanner.d.ts +5 -1
  14. package/dist/components/FunInput/FunInput.d.ts +1 -0
  15. package/dist/components/FunOptionBox/FunOptionBox.css.d.ts +1 -1
  16. package/dist/components/FunOptionBox/FunOptionBox.d.ts +2 -1
  17. package/dist/components/Icons/BitcoinIcon.d.ts +4 -0
  18. package/dist/components/Icons/New/CashIcon.d.ts +4 -0
  19. package/dist/components/Tabs/Tabs.d.ts +10 -0
  20. package/dist/consts/customers.d.ts +1 -0
  21. package/dist/css/sprinkles.css.d.ts +136 -49
  22. package/dist/hooks/queries/useWithdrawalQuote.d.ts +2 -1
  23. package/dist/hooks/usePaymentSources.d.ts +3 -1
  24. package/dist/index.css +3710 -3090
  25. package/dist/index.d.ts +1 -1
  26. package/dist/index.js +3450 -3157
  27. package/dist/modals/CheckoutModal/InputAmount/useAmountInput.d.ts +1 -0
  28. package/dist/modals/CheckoutModal/SourceChange/CryptoCashToggle.d.ts +9 -0
  29. package/dist/modals/CheckoutModal/SourceChange/DefaultSourceList.d.ts +12 -0
  30. package/dist/modals/CheckoutModal/SourceChange/FanaticsSourceList.d.ts +15 -0
  31. package/dist/modals/CheckoutModal/SourceChange/PayPal.d.ts +2 -0
  32. package/dist/modals/CheckoutModal/SourceChange/SourceChange.d.ts +1 -1
  33. package/dist/modals/CheckoutModal/SourceChange/sourceChange.css.d.ts +1 -0
  34. package/dist/providers/FunkitConfigContext.d.ts +43 -4
  35. package/dist/providers/FunkitThemeProvider.d.ts +132 -3
  36. package/dist/themes/baseTheme.d.ts +2 -1
  37. package/dist/themes/baseTheme.js +1 -1
  38. package/dist/themes/darkTheme.js +2 -2
  39. package/dist/themes/lightTheme.js +2 -2
  40. package/dist/utils/flags/config.d.ts +3 -42
  41. package/dist/utils/flags/resolver.d.ts +34 -0
  42. package/dist/utils/funLogger.d.ts +2 -1
  43. package/dist/wallets/walletConnectors/index.js +21 -21
  44. package/package.json +5 -4
  45. package/dist/utils/flags/patches/enable-bitcoin-patch.d.ts +0 -13
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Custom slot components for Fanatics checkout modal.
3
+ * Utilize uiCustomizations[screenName].customTopComponent to customize the top component of the screen.
4
+ */
5
+ import React from 'react';
6
+ /**
7
+ * Custom banner component for Fanatics source change screen
8
+ * This component will be displayed at the top of the source change screen
9
+ */
10
+ export declare function FanaticsSourceScreenBanner(): React.JSX.Element;
11
+ /**
12
+ * Custom banner component for Fanatics select token screen
13
+ * This component will be displayed at the top of the select asset screen
14
+ */
15
+ export declare function FanaticsSelectTokenBanner(): React.JSX.Element;
16
+ /**
17
+ * Custom banner component for Fanatics select brokerage screen
18
+ * This component will be displayed at the top of the select brokerage screen
19
+ */
20
+ export declare function FanaticsSelectBrokerageBanner(): React.JSX.Element;
21
+ /**
22
+ * Custom banner component for Fanatics transfer crypto screen
23
+ * This component will be displayed at the top of the transfer crypto screen (QR code / deposit screen)
24
+ */
25
+ export declare function FanaticsTransferCryptoBanner(): React.JSX.Element;
26
+ /**
27
+ * Custom banner component for Fanatics connect exchange screen
28
+ * This component will be displayed at the top of the connect exchange screen
29
+ * Shows detailed security information about connecting to the exchange
30
+ */
31
+ export declare function FanaticsConnectExchangeBanner(): React.JSX.Element;