@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.
- package/CHANGELOG.md +32 -0
- package/dist/{chunk-MXNOQTKX.js → chunk-BSF2AKBC.js} +16 -0
- package/dist/{chunk-AGBRSMZ7.js → chunk-DBRUJYOQ.js} +12 -1
- package/dist/{chunk-RHUOOPDI.js → chunk-IZC4ZKKQ.js} +12 -1
- package/dist/clients/fanatics.css +5263 -4393
- package/dist/clients/fanatics.js +2 -2
- package/dist/clients/polymarket.d.ts +5 -1
- package/dist/clients/polymarket.js +11 -15
- package/dist/components/Box/Box.d.ts +40 -40
- package/dist/components/Dropdown/BaseDropdown.css.d.ts +2 -0
- package/dist/components/Dropdown/BaseDropdown.d.ts +49 -6
- package/dist/components/FunCheckoutBlocked/FunCheckoutBlocked.d.ts +2 -2
- package/dist/components/FunInput/FunInput.css.d.ts +1 -0
- package/dist/components/Tabs/Tabs.d.ts +1 -0
- package/dist/components/Tabs/tabs.css.d.ts +1 -1
- package/dist/config/getDefaultConfig.d.ts +1 -1
- package/dist/css/sprinkles.css.d.ts +108 -40
- package/dist/hooks/useMainnetEnsAvatar.d.ts +1 -1
- package/dist/hooks/useScrollDivider.d.ts +10 -2
- package/dist/index.css +5321 -4400
- package/dist/index.d.ts +1 -0
- package/dist/index.js +863 -570
- package/dist/modals/CheckoutModal/CheckoutBlockedReason.d.ts +1 -0
- package/dist/modals/CheckoutModal/useCheckoutBlocked.d.ts +18 -0
- package/dist/providers/FunkitCheckoutContext/types.d.ts +5 -0
- package/dist/providers/FunkitThemeProvider.d.ts +102 -0
- package/dist/providers/GeneralWalletProvider.d.ts +5 -5
- package/dist/themes/baseTheme.js +1 -1
- package/dist/themes/darkTheme.js +2 -2
- package/dist/themes/lightTheme.js +2 -2
- package/dist/utils/checkout.d.ts +1 -1
- package/dist/wallets/walletConnectors/index.js +45 -45
- 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
|
|
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:
|
|
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
|
};
|