@funkit/connect 9.3.2 → 9.4.1

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 (33) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/dist/{chunk-MXNOQTKX.js → chunk-BSF2AKBC.js} +16 -0
  3. package/dist/{chunk-AGBRSMZ7.js → chunk-DBRUJYOQ.js} +12 -1
  4. package/dist/{chunk-RHUOOPDI.js → chunk-IZC4ZKKQ.js} +12 -1
  5. package/dist/clients/fanatics.css +5263 -4393
  6. package/dist/clients/fanatics.js +2 -2
  7. package/dist/clients/polymarket.d.ts +5 -1
  8. package/dist/clients/polymarket.js +11 -15
  9. package/dist/components/Box/Box.d.ts +40 -40
  10. package/dist/components/Dropdown/BaseDropdown.css.d.ts +2 -0
  11. package/dist/components/Dropdown/BaseDropdown.d.ts +49 -6
  12. package/dist/components/FunCheckoutBlocked/FunCheckoutBlocked.d.ts +2 -2
  13. package/dist/components/FunInput/FunInput.css.d.ts +1 -0
  14. package/dist/components/Tabs/Tabs.d.ts +1 -0
  15. package/dist/components/Tabs/tabs.css.d.ts +1 -1
  16. package/dist/config/getDefaultConfig.d.ts +1 -1
  17. package/dist/css/sprinkles.css.d.ts +108 -40
  18. package/dist/hooks/useMainnetEnsAvatar.d.ts +1 -1
  19. package/dist/hooks/useScrollDivider.d.ts +10 -2
  20. package/dist/index.css +5321 -4400
  21. package/dist/index.d.ts +1 -0
  22. package/dist/index.js +863 -570
  23. package/dist/modals/CheckoutModal/CheckoutBlockedReason.d.ts +1 -0
  24. package/dist/modals/CheckoutModal/useCheckoutBlocked.d.ts +18 -0
  25. package/dist/providers/FunkitCheckoutContext/types.d.ts +5 -0
  26. package/dist/providers/FunkitThemeProvider.d.ts +102 -0
  27. package/dist/providers/GeneralWalletProvider.d.ts +5 -5
  28. package/dist/themes/baseTheme.js +1 -1
  29. package/dist/themes/darkTheme.js +2 -2
  30. package/dist/themes/lightTheme.js +2 -2
  31. package/dist/utils/checkout.d.ts +1 -1
  32. package/dist/wallets/walletConnectors/index.js +45 -45
  33. package/package.json +5 -5
@@ -1,2 +1,2 @@
1
1
  import { type GetEnsNameReturnType } from 'viem/ens';
2
- export declare function useMainnetEnsAvatar(name: GetEnsNameReturnType | undefined): import("viem/ens").GetEnsAvatarReturnType | undefined;
2
+ export declare function useMainnetEnsAvatar(name: GetEnsNameReturnType | undefined): import("viem").GetEnsAvatarReturnType | undefined;
@@ -1,11 +1,19 @@
1
+ export type UseScrollDividerResult = {
2
+ hasBottomDivider: boolean;
3
+ hasTopDivider: boolean;
4
+ isAtBottom: boolean;
5
+ isScrollable: boolean;
6
+ isScrolling: boolean;
7
+ ref: (node: HTMLElement | null) => void;
8
+ };
1
9
  /**
2
10
  * @returns information about which dividers to display based on whether an observed content is scrolled to the top or bottom
3
11
  */
4
12
  export declare const useScrollDivider: () => {
5
- ref: import("react").RefObject<HTMLInputElement | null>;
13
+ ref: (node: HTMLElement | null) => void;
6
14
  hasTopDivider: boolean;
7
15
  hasBottomDivider: boolean;
16
+ isAtBottom: boolean;
8
17
  isScrolling: boolean;
9
18
  isScrollable: boolean;
10
- isAtBottom: boolean;
11
19
  };