@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.
Files changed (34) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/{chunk-PFIXC5YK.js → chunk-36KVHK22.js} +5 -2
  3. package/dist/{chunk-6K4U3Z4Z.js → chunk-4YEAUICE.js} +5 -0
  4. package/dist/{chunk-NBECXHBY.js → chunk-67BKQQNG.js} +5 -2
  5. package/dist/clients/chunk-52NKHZS2.js +69 -0
  6. package/dist/clients/{chunk-CSONEKIF.js → chunk-KSSSSWR6.js} +1 -1
  7. package/dist/clients/{chunk-47AQXZQE.js → chunk-NCCAYPLO.js} +1 -1
  8. package/dist/clients/{chunk-JOM2J5WB.js → chunk-OWXKWC7I.js} +27 -16
  9. package/dist/clients/{chunk-UNCVGPTD.js → chunk-ZMVXBMON.js} +1 -1
  10. package/dist/clients/fanatics.css +2891 -2702
  11. package/dist/clients/fanatics.js +5 -5
  12. package/dist/clients/lighter.css +2891 -2702
  13. package/dist/clients/lighter.js +3 -3
  14. package/dist/clients/nado.d.ts +78 -0
  15. package/dist/clients/nado.js +107 -0
  16. package/dist/clients/polymarket/PolymarketDepositAccountDropdown.css +2900 -2708
  17. package/dist/clients/polymarket/PolymarketDepositAccountDropdown.js +5 -5
  18. package/dist/clients/polymarket/index.css +2900 -2708
  19. package/dist/clients/polymarket/index.js +5 -5
  20. package/dist/components/Box/Box.d.ts +21 -21
  21. package/dist/components/FunButton/FunButton.css.d.ts +1 -0
  22. package/dist/components/FunOptionBox/FunOptionBox.css.d.ts +1 -1
  23. package/dist/css/sprinkles.css.d.ts +33 -21
  24. package/dist/index.css +2900 -2708
  25. package/dist/index.js +176 -150
  26. package/dist/modals/WithdrawalModal/WithdrawalContent.d.ts +7 -0
  27. package/dist/providers/FunkitThemeProvider.d.ts +18 -0
  28. package/dist/themes/baseTheme.d.ts +3 -1
  29. package/dist/themes/baseTheme.js +1 -1
  30. package/dist/themes/darkTheme.js +2 -2
  31. package/dist/themes/lightTheme.js +2 -2
  32. package/dist/wallets/walletConnectors/index.js +32 -32
  33. package/package.json +2 -2
  34. package/dist/clients/chunk-JVTKIEOP.js +0 -69
@@ -2,14 +2,14 @@
2
2
  import {
3
3
  AsyncImage,
4
4
  preloadRemoteImages
5
- } from "./chunk-47AQXZQE.js";
5
+ } from "./chunk-NCCAYPLO.js";
6
6
  import {
7
7
  Text
8
- } from "./chunk-CSONEKIF.js";
8
+ } from "./chunk-KSSSSWR6.js";
9
9
  import {
10
10
  Box,
11
11
  useFunkitTranslation
12
- } from "./chunk-JVTKIEOP.js";
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: "_1rsrm2f29m _1rsrm2f29t _1rsrm2f1rf", defaultModeNotActiveBorder: "_1rsrm2f29y _1rsrm2f2a5 _1rsrm2f1rf _1rsrm2f1n", activeBorder: "_1rsrm2f1ra", disabledOptionBorder: "_1rsrm2f1ta", defaultBackground: "_1rsrm2f1ia _1rsrm2f11t", activeBackground: "_1rsrm2f1ia _1rsrm2f18n _1rsrm2f18o", uninteractiveBackground: "_1rsrm2f1ig" };
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);