@funkit/connect 9.20.0 → 9.21.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.
- package/CHANGELOG.md +21 -0
- package/dist/{chunk-PFIXC5YK.js → chunk-36KVHK22.js} +5 -2
- package/dist/{chunk-6K4U3Z4Z.js → chunk-4YEAUICE.js} +5 -0
- package/dist/{chunk-NBECXHBY.js → chunk-67BKQQNG.js} +5 -2
- package/dist/clients/chunk-52NKHZS2.js +69 -0
- package/dist/clients/{chunk-CSONEKIF.js → chunk-KSSSSWR6.js} +1 -1
- package/dist/clients/{chunk-47AQXZQE.js → chunk-NCCAYPLO.js} +1 -1
- package/dist/clients/{chunk-JOM2J5WB.js → chunk-OWXKWC7I.js} +27 -16
- package/dist/clients/{chunk-UNCVGPTD.js → chunk-ZMVXBMON.js} +1 -1
- package/dist/clients/fanatics.css +2891 -2702
- package/dist/clients/fanatics.js +5 -5
- package/dist/clients/lighter.css +2891 -2702
- package/dist/clients/lighter.js +3 -3
- package/dist/clients/nado.d.ts +78 -0
- package/dist/clients/nado.js +107 -0
- package/dist/clients/polymarket/PolymarketDepositAccountDropdown.css +2900 -2708
- package/dist/clients/polymarket/PolymarketDepositAccountDropdown.js +5 -5
- package/dist/clients/polymarket/index.css +2900 -2708
- package/dist/clients/polymarket/index.js +5 -5
- package/dist/components/Box/Box.d.ts +21 -21
- package/dist/components/FunButton/FunButton.css.d.ts +1 -0
- package/dist/components/FunOptionBox/FunOptionBox.css.d.ts +1 -1
- package/dist/css/sprinkles.css.d.ts +33 -21
- package/dist/index.css +2900 -2708
- package/dist/index.js +176 -150
- package/dist/modals/WithdrawalModal/WithdrawalContent.d.ts +7 -0
- package/dist/providers/FunkitThemeProvider.d.ts +18 -0
- package/dist/themes/baseTheme.d.ts +3 -1
- package/dist/themes/baseTheme.js +1 -1
- package/dist/themes/darkTheme.js +2 -2
- package/dist/themes/lightTheme.js +2 -2
- package/dist/wallets/walletConnectors/index.js +32 -32
- package/package.json +2 -2
- package/dist/clients/chunk-JVTKIEOP.js +0 -69
package/dist/clients/fanatics.js
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import {
|
|
3
3
|
AsyncImage,
|
|
4
4
|
preloadRemoteImages
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-NCCAYPLO.js";
|
|
6
6
|
import {
|
|
7
7
|
Text
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-KSSSSWR6.js";
|
|
9
9
|
import {
|
|
10
10
|
Box,
|
|
11
11
|
useFunkitTranslation
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-52NKHZS2.js";
|
|
13
13
|
import "./chunk-UUHGOBKZ.js";
|
|
14
14
|
|
|
15
15
|
// src/clients/fanatics.tsx
|
|
@@ -20,7 +20,7 @@ import clsx from "clsx";
|
|
|
20
20
|
import React, { useRef } from "react";
|
|
21
21
|
|
|
22
22
|
// src/components/FunOptionBox/FunOptionBox.css.ts
|
|
23
|
-
var funOptionBoxStyle = { baseStyle: "_1rfcluh0", compactListStyle: "_1rfcluh1", defaultBorder: "
|
|
23
|
+
var funOptionBoxStyle = { baseStyle: "_1rfcluh0", compactListStyle: "_1rfcluh1", defaultBorder: "_1rsrm2f2aa _1rsrm2f2ah _1rsrm2f1rx", defaultModeNotActiveBorder: "_1rsrm2f2am _1rsrm2f2at _1rsrm2f1rx _1rsrm2f1n", activeBorder: "_1rsrm2f1rs", disabledOptionBorder: "_1rsrm2f1ts", defaultBackground: "_1rsrm2f1ia _1rsrm2f11t", borderedBackground: "_1rsrm2f1ig _1rsrm2f11t", activeBackground: "_1rsrm2f1ia _1rsrm2f18n _1rsrm2f18o", uninteractiveBackground: "_1rsrm2f1im" };
|
|
24
24
|
|
|
25
25
|
// src/components/FunOptionBox/FunOptionBox.tsx
|
|
26
26
|
function FunOptionBox({
|
|
@@ -72,7 +72,7 @@ function FunOptionBox({
|
|
|
72
72
|
type === "default" ? funOptionBoxStyle.defaultModeNotActiveBorder : funOptionBoxStyle.defaultBorder
|
|
73
73
|
),
|
|
74
74
|
disabled && funOptionBoxStyle.disabledOptionBorder,
|
|
75
|
-
isClickable ? isActive ? funOptionBoxStyle.activeBackground : funOptionBoxStyle.defaultBackground : funOptionBoxStyle.uninteractiveBackground
|
|
75
|
+
isClickable ? isActive ? funOptionBoxStyle.activeBackground : type === "bordered" ? funOptionBoxStyle.borderedBackground : funOptionBoxStyle.defaultBackground : funOptionBoxStyle.uninteractiveBackground
|
|
76
76
|
),
|
|
77
77
|
onClick: isClickable ? (event) => {
|
|
78
78
|
onClick(event);
|