@b3dotfun/sdk 0.1.70-alpha.13 → 0.1.70-alpha.15
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/dist/cjs/anyspend/react/components/AnySpend.js +11 -11
- package/dist/cjs/global-account/react/components/B3Provider/B3ConfigProvider.d.ts +11 -0
- package/dist/cjs/global-account/react/components/B3Provider/B3ConfigProvider.js +12 -0
- package/dist/cjs/global-account/react/components/index.d.ts +1 -0
- package/dist/cjs/global-account/react/components/index.js +5 -3
- package/dist/esm/anyspend/react/components/AnySpend.js +11 -11
- package/dist/esm/global-account/react/components/B3Provider/B3ConfigProvider.d.ts +11 -0
- package/dist/esm/global-account/react/components/B3Provider/B3ConfigProvider.js +11 -0
- package/dist/esm/global-account/react/components/index.d.ts +1 -0
- package/dist/esm/global-account/react/components/index.js +1 -0
- package/dist/types/global-account/react/components/B3Provider/B3ConfigProvider.d.ts +11 -0
- package/dist/types/global-account/react/components/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/anyspend/react/components/AnySpend.tsx +11 -11
- package/src/global-account/react/components/B3Provider/B3ConfigProvider.tsx +12 -0
- package/src/global-account/react/components/index.ts +1 -0
|
@@ -559,12 +559,15 @@ function AnySpendInner({ sourceChainId, destinationTokenAddress, destinationToke
|
|
|
559
559
|
anyspendQuote.data.currencyOut?.amount &&
|
|
560
560
|
anyspendQuote.data.currencyOut?.currency?.decimals) {
|
|
561
561
|
if (isSrcInputDirty) {
|
|
562
|
-
//
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
562
|
+
// The user is driving the SOURCE (exact-in): reflect the quote's OUTPUT even
|
|
563
|
+
// when a fixed destinationTokenAmount pre-filled the receive. That lock only
|
|
564
|
+
// governs the INITIAL exact-out state (untouched source → compute the pay for
|
|
565
|
+
// the fixed receive). Once the user edits the pay, keeping the receive pinned
|
|
566
|
+
// shows a value that doesn't match the quote — the URL amount "overrides" the
|
|
567
|
+
// real output, an invalid mismatched swap.
|
|
568
|
+
const amount = anyspendQuote.data.currencyOut.amount;
|
|
569
|
+
const decimals = anyspendQuote.data.currencyOut.currency.decimals;
|
|
570
|
+
setDstAmount((0, number_1.formatTokenAmount)(BigInt(amount), decimals, 6, false));
|
|
568
571
|
}
|
|
569
572
|
else {
|
|
570
573
|
const amount = anyspendQuote.data.currencyIn.amount;
|
|
@@ -574,16 +577,13 @@ function AnySpendInner({ sourceChainId, destinationTokenAddress, destinationToke
|
|
|
574
577
|
}
|
|
575
578
|
else {
|
|
576
579
|
if (isSrcInputDirty) {
|
|
577
|
-
|
|
578
|
-
if (!destinationTokenAmount) {
|
|
579
|
-
setDstAmount("");
|
|
580
|
-
}
|
|
580
|
+
setDstAmount("");
|
|
581
581
|
}
|
|
582
582
|
else {
|
|
583
583
|
setSrcAmount("");
|
|
584
584
|
}
|
|
585
585
|
}
|
|
586
|
-
}, [anyspendQuote, isSrcInputDirty
|
|
586
|
+
}, [anyspendQuote, isSrcInputDirty]);
|
|
587
587
|
// Call onSuccess when order is executed
|
|
588
588
|
(0, useOnOrderSuccess_1.useOnOrderSuccess)({ orderData: oat, orderId, onSuccess });
|
|
589
589
|
// Clear all persisted selection state once an order is submitted — next open starts fresh
|
|
@@ -30,3 +30,14 @@ export declare function B3ConfigProvider({ children, accountOverride, environmen
|
|
|
30
30
|
authStrategy?: AuthStrategy;
|
|
31
31
|
}): import("react/jsx-runtime").JSX.Element;
|
|
32
32
|
export declare function useB3Config(): B3ConfigContextType;
|
|
33
|
+
/**
|
|
34
|
+
* Overrides ONLY `partnerId` for a subtree, inheriting every other config value from the parent
|
|
35
|
+
* B3ConfigProvider. Lets a single route attribute its AnySpend orders/quotes to a different partner
|
|
36
|
+
* (e.g. `/b3os-deposit` → the b3os partner) without standing up a second B3Provider — the config
|
|
37
|
+
* context is separate from the wallet/modal machinery, so nothing re-initializes. Must be rendered
|
|
38
|
+
* inside an existing B3ConfigProvider.
|
|
39
|
+
*/
|
|
40
|
+
export declare function B3ConfigPartnerOverride({ partnerId, children }: {
|
|
41
|
+
partnerId: string;
|
|
42
|
+
children: React.ReactNode;
|
|
43
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.B3ConfigProvider = B3ConfigProvider;
|
|
4
4
|
exports.useB3Config = useB3Config;
|
|
5
|
+
exports.B3ConfigPartnerOverride = B3ConfigPartnerOverride;
|
|
5
6
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
6
7
|
const react_1 = require("react");
|
|
7
8
|
/**
|
|
@@ -35,3 +36,14 @@ function useB3Config() {
|
|
|
35
36
|
}
|
|
36
37
|
return context;
|
|
37
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* Overrides ONLY `partnerId` for a subtree, inheriting every other config value from the parent
|
|
41
|
+
* B3ConfigProvider. Lets a single route attribute its AnySpend orders/quotes to a different partner
|
|
42
|
+
* (e.g. `/b3os-deposit` → the b3os partner) without standing up a second B3Provider — the config
|
|
43
|
+
* context is separate from the wallet/modal machinery, so nothing re-initializes. Must be rendered
|
|
44
|
+
* inside an existing B3ConfigProvider.
|
|
45
|
+
*/
|
|
46
|
+
function B3ConfigPartnerOverride({ partnerId, children }) {
|
|
47
|
+
const parent = useB3Config();
|
|
48
|
+
return (0, jsx_runtime_1.jsx)(B3ConfigContext.Provider, { value: { ...parent, partnerId }, children: children });
|
|
49
|
+
}
|
|
@@ -5,6 +5,7 @@ export { RelayKitProviderWrapper } from "./B3Provider/RelayKitProviderWrapper";
|
|
|
5
5
|
export { useB3 } from "./B3Provider/useB3";
|
|
6
6
|
export { useB3Account } from "./B3Provider/useB3Account";
|
|
7
7
|
export { useB3Config } from "./B3Provider/useB3Config";
|
|
8
|
+
export { B3ConfigPartnerOverride } from "./B3Provider/B3ConfigProvider";
|
|
8
9
|
export { StyleRoot } from "./StyleRoot";
|
|
9
10
|
export { BetterAuthResetPassword, type BetterAuthResetPasswordProps } from "./SignInWithB3/BetterAuthResetPassword";
|
|
10
11
|
export { BetterAuthSignIn, type BetterAuthSignInProps } from "./SignInWithB3/BetterAuthSignIn";
|
|
@@ -3,9 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.WalletImage = exports.useToastContext = exports.ToastProvider = exports.ToastContainer = exports.Toast = exports.toast = exports.AnimatedLottie = exports.TransitionPanel = void 0;
|
|
6
|
+
exports.CommandShortcut = exports.CommandSeparator = exports.CommandList = exports.CommandItem = exports.CommandInput = exports.CommandGroup = exports.CommandEmpty = exports.CommandDialog = exports.Command = exports.buttonVariants = exports.Button = exports.badgeVariants = exports.Badge = exports.WalletConnectorIcon = exports.StaggeredFadeLoader = exports.CopyToClipboard = exports.ClientOnly = exports.customButtonVariants = exports.CustomButton = exports.SingleUserSearchSelector = exports.SendERC20Button = exports.SendETHButton = exports.MintButton = exports.AccountAssets = exports.RequestPermissionsButton = exports.RequestPermissions = exports.IPFSMediaRenderer = exports.Send = exports.Deposit = exports.UserAvatar = exports.ManageAccount = exports.isWalletType = exports.getConnectOptionsFromStrategy = exports.LoginStepContainer = exports.SignInWithB3Flow = exports.SignInWithB3 = exports.WalletRow = exports.PermissionItem = exports.AuthButton = exports.BetterAuthVerifyEmail = exports.BetterAuthSignIn = exports.BetterAuthResetPassword = exports.StyleRoot = exports.B3ConfigPartnerOverride = exports.useB3Config = exports.useB3Account = exports.useB3 = exports.RelayKitProviderWrapper = exports.B3Provider = exports.B3DynamicModal = void 0;
|
|
7
|
+
exports.TooltipProvider = exports.TooltipContent = exports.Tooltip = exports.TextShimmer = exports.TextLoop = exports.TabTrigger = exports.TabsTransitionWrapper = exports.TabsList = exports.TabsContent = exports.Tabs = exports.TabTriggerPrimitive = exports.TabsPrimitive = exports.TabsListPrimitive = exports.TabsContentPrimitive = exports.Skeleton = exports.ShinyButton = exports.ScrollBar = exports.ScrollArea = exports.PopoverTrigger = exports.PopoverContent = exports.Popover = exports.Loading = exports.Input = exports.GlareCardRounded = exports.GlareCard = exports.DropdownMenuTrigger = exports.DropdownMenuSeparator = exports.DropdownMenuItem = exports.DropdownMenuContent = exports.DropdownMenu = exports.DrawerTrigger = exports.DrawerTitle = exports.DrawerPortal = exports.DrawerOverlay = exports.DrawerHeader = exports.DrawerFooter = exports.DrawerDescription = exports.DrawerContent = exports.DrawerClose = exports.Drawer = exports.DialogTrigger = exports.DialogTitle = exports.DialogPortal = exports.DialogOverlay = exports.DialogHeader = exports.DialogFooter = exports.DialogDescription = exports.DialogContent = exports.DialogClose = exports.Dialog = void 0;
|
|
8
|
+
exports.WalletImage = exports.useToastContext = exports.ToastProvider = exports.ToastContainer = exports.Toast = exports.toast = exports.AnimatedLottie = exports.TransitionPanel = exports.TooltipTrigger = void 0;
|
|
9
9
|
// TODO woj: Barrel file for all components, this might be reason of bundle size issues
|
|
10
10
|
// Core Components
|
|
11
11
|
var B3DynamicModal_1 = require("./B3DynamicModal");
|
|
@@ -20,6 +20,8 @@ var useB3Account_1 = require("./B3Provider/useB3Account");
|
|
|
20
20
|
Object.defineProperty(exports, "useB3Account", { enumerable: true, get: function () { return useB3Account_1.useB3Account; } });
|
|
21
21
|
var useB3Config_1 = require("./B3Provider/useB3Config");
|
|
22
22
|
Object.defineProperty(exports, "useB3Config", { enumerable: true, get: function () { return useB3Config_1.useB3Config; } });
|
|
23
|
+
var B3ConfigProvider_1 = require("./B3Provider/B3ConfigProvider");
|
|
24
|
+
Object.defineProperty(exports, "B3ConfigPartnerOverride", { enumerable: true, get: function () { return B3ConfigProvider_1.B3ConfigPartnerOverride; } });
|
|
23
25
|
var StyleRoot_1 = require("./StyleRoot");
|
|
24
26
|
Object.defineProperty(exports, "StyleRoot", { enumerable: true, get: function () { return StyleRoot_1.StyleRoot; } });
|
|
25
27
|
// SignInWithB3 Components
|
|
@@ -552,12 +552,15 @@ function AnySpendInner({ sourceChainId, destinationTokenAddress, destinationToke
|
|
|
552
552
|
anyspendQuote.data.currencyOut?.amount &&
|
|
553
553
|
anyspendQuote.data.currencyOut?.currency?.decimals) {
|
|
554
554
|
if (isSrcInputDirty) {
|
|
555
|
-
//
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
555
|
+
// The user is driving the SOURCE (exact-in): reflect the quote's OUTPUT even
|
|
556
|
+
// when a fixed destinationTokenAmount pre-filled the receive. That lock only
|
|
557
|
+
// governs the INITIAL exact-out state (untouched source → compute the pay for
|
|
558
|
+
// the fixed receive). Once the user edits the pay, keeping the receive pinned
|
|
559
|
+
// shows a value that doesn't match the quote — the URL amount "overrides" the
|
|
560
|
+
// real output, an invalid mismatched swap.
|
|
561
|
+
const amount = anyspendQuote.data.currencyOut.amount;
|
|
562
|
+
const decimals = anyspendQuote.data.currencyOut.currency.decimals;
|
|
563
|
+
setDstAmount(formatTokenAmount(BigInt(amount), decimals, 6, false));
|
|
561
564
|
}
|
|
562
565
|
else {
|
|
563
566
|
const amount = anyspendQuote.data.currencyIn.amount;
|
|
@@ -567,16 +570,13 @@ function AnySpendInner({ sourceChainId, destinationTokenAddress, destinationToke
|
|
|
567
570
|
}
|
|
568
571
|
else {
|
|
569
572
|
if (isSrcInputDirty) {
|
|
570
|
-
|
|
571
|
-
if (!destinationTokenAmount) {
|
|
572
|
-
setDstAmount("");
|
|
573
|
-
}
|
|
573
|
+
setDstAmount("");
|
|
574
574
|
}
|
|
575
575
|
else {
|
|
576
576
|
setSrcAmount("");
|
|
577
577
|
}
|
|
578
578
|
}
|
|
579
|
-
}, [anyspendQuote, isSrcInputDirty
|
|
579
|
+
}, [anyspendQuote, isSrcInputDirty]);
|
|
580
580
|
// Call onSuccess when order is executed
|
|
581
581
|
useOnOrderSuccess({ orderData: oat, orderId, onSuccess });
|
|
582
582
|
// Clear all persisted selection state once an order is submitted — next open starts fresh
|
|
@@ -30,3 +30,14 @@ export declare function B3ConfigProvider({ children, accountOverride, environmen
|
|
|
30
30
|
authStrategy?: AuthStrategy;
|
|
31
31
|
}): import("react/jsx-runtime").JSX.Element;
|
|
32
32
|
export declare function useB3Config(): B3ConfigContextType;
|
|
33
|
+
/**
|
|
34
|
+
* Overrides ONLY `partnerId` for a subtree, inheriting every other config value from the parent
|
|
35
|
+
* B3ConfigProvider. Lets a single route attribute its AnySpend orders/quotes to a different partner
|
|
36
|
+
* (e.g. `/b3os-deposit` → the b3os partner) without standing up a second B3Provider — the config
|
|
37
|
+
* context is separate from the wallet/modal machinery, so nothing re-initializes. Must be rendered
|
|
38
|
+
* inside an existing B3ConfigProvider.
|
|
39
|
+
*/
|
|
40
|
+
export declare function B3ConfigPartnerOverride({ partnerId, children }: {
|
|
41
|
+
partnerId: string;
|
|
42
|
+
children: React.ReactNode;
|
|
43
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -31,3 +31,14 @@ export function useB3Config() {
|
|
|
31
31
|
}
|
|
32
32
|
return context;
|
|
33
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* Overrides ONLY `partnerId` for a subtree, inheriting every other config value from the parent
|
|
36
|
+
* B3ConfigProvider. Lets a single route attribute its AnySpend orders/quotes to a different partner
|
|
37
|
+
* (e.g. `/b3os-deposit` → the b3os partner) without standing up a second B3Provider — the config
|
|
38
|
+
* context is separate from the wallet/modal machinery, so nothing re-initializes. Must be rendered
|
|
39
|
+
* inside an existing B3ConfigProvider.
|
|
40
|
+
*/
|
|
41
|
+
export function B3ConfigPartnerOverride({ partnerId, children }) {
|
|
42
|
+
const parent = useB3Config();
|
|
43
|
+
return _jsx(B3ConfigContext.Provider, { value: { ...parent, partnerId }, children: children });
|
|
44
|
+
}
|
|
@@ -5,6 +5,7 @@ export { RelayKitProviderWrapper } from "./B3Provider/RelayKitProviderWrapper";
|
|
|
5
5
|
export { useB3 } from "./B3Provider/useB3";
|
|
6
6
|
export { useB3Account } from "./B3Provider/useB3Account";
|
|
7
7
|
export { useB3Config } from "./B3Provider/useB3Config";
|
|
8
|
+
export { B3ConfigPartnerOverride } from "./B3Provider/B3ConfigProvider";
|
|
8
9
|
export { StyleRoot } from "./StyleRoot";
|
|
9
10
|
export { BetterAuthResetPassword, type BetterAuthResetPasswordProps } from "./SignInWithB3/BetterAuthResetPassword";
|
|
10
11
|
export { BetterAuthSignIn, type BetterAuthSignInProps } from "./SignInWithB3/BetterAuthSignIn";
|
|
@@ -6,6 +6,7 @@ export { RelayKitProviderWrapper } from "./B3Provider/RelayKitProviderWrapper.js
|
|
|
6
6
|
export { useB3 } from "./B3Provider/useB3.js";
|
|
7
7
|
export { useB3Account } from "./B3Provider/useB3Account.js";
|
|
8
8
|
export { useB3Config } from "./B3Provider/useB3Config.js";
|
|
9
|
+
export { B3ConfigPartnerOverride } from "./B3Provider/B3ConfigProvider.js";
|
|
9
10
|
export { StyleRoot } from "./StyleRoot.js";
|
|
10
11
|
// SignInWithB3 Components
|
|
11
12
|
export { BetterAuthResetPassword } from "./SignInWithB3/BetterAuthResetPassword.js";
|
|
@@ -30,3 +30,14 @@ export declare function B3ConfigProvider({ children, accountOverride, environmen
|
|
|
30
30
|
authStrategy?: AuthStrategy;
|
|
31
31
|
}): import("react/jsx-runtime").JSX.Element;
|
|
32
32
|
export declare function useB3Config(): B3ConfigContextType;
|
|
33
|
+
/**
|
|
34
|
+
* Overrides ONLY `partnerId` for a subtree, inheriting every other config value from the parent
|
|
35
|
+
* B3ConfigProvider. Lets a single route attribute its AnySpend orders/quotes to a different partner
|
|
36
|
+
* (e.g. `/b3os-deposit` → the b3os partner) without standing up a second B3Provider — the config
|
|
37
|
+
* context is separate from the wallet/modal machinery, so nothing re-initializes. Must be rendered
|
|
38
|
+
* inside an existing B3ConfigProvider.
|
|
39
|
+
*/
|
|
40
|
+
export declare function B3ConfigPartnerOverride({ partnerId, children }: {
|
|
41
|
+
partnerId: string;
|
|
42
|
+
children: React.ReactNode;
|
|
43
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,6 +5,7 @@ export { RelayKitProviderWrapper } from "./B3Provider/RelayKitProviderWrapper";
|
|
|
5
5
|
export { useB3 } from "./B3Provider/useB3";
|
|
6
6
|
export { useB3Account } from "./B3Provider/useB3Account";
|
|
7
7
|
export { useB3Config } from "./B3Provider/useB3Config";
|
|
8
|
+
export { B3ConfigPartnerOverride } from "./B3Provider/B3ConfigProvider";
|
|
8
9
|
export { StyleRoot } from "./StyleRoot";
|
|
9
10
|
export { BetterAuthResetPassword, type BetterAuthResetPasswordProps } from "./SignInWithB3/BetterAuthResetPassword";
|
|
10
11
|
export { BetterAuthSignIn, type BetterAuthSignInProps } from "./SignInWithB3/BetterAuthSignIn";
|
package/package.json
CHANGED
|
@@ -807,12 +807,15 @@ function AnySpendInner({
|
|
|
807
807
|
anyspendQuote.data.currencyOut?.currency?.decimals
|
|
808
808
|
) {
|
|
809
809
|
if (isSrcInputDirty) {
|
|
810
|
-
//
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
810
|
+
// The user is driving the SOURCE (exact-in): reflect the quote's OUTPUT even
|
|
811
|
+
// when a fixed destinationTokenAmount pre-filled the receive. That lock only
|
|
812
|
+
// governs the INITIAL exact-out state (untouched source → compute the pay for
|
|
813
|
+
// the fixed receive). Once the user edits the pay, keeping the receive pinned
|
|
814
|
+
// shows a value that doesn't match the quote — the URL amount "overrides" the
|
|
815
|
+
// real output, an invalid mismatched swap.
|
|
816
|
+
const amount = anyspendQuote.data.currencyOut.amount;
|
|
817
|
+
const decimals = anyspendQuote.data.currencyOut.currency.decimals;
|
|
818
|
+
setDstAmount(formatTokenAmount(BigInt(amount), decimals, 6, false));
|
|
816
819
|
} else {
|
|
817
820
|
const amount = anyspendQuote.data.currencyIn.amount;
|
|
818
821
|
const decimals = anyspendQuote.data.currencyIn.currency.decimals;
|
|
@@ -820,15 +823,12 @@ function AnySpendInner({
|
|
|
820
823
|
}
|
|
821
824
|
} else {
|
|
822
825
|
if (isSrcInputDirty) {
|
|
823
|
-
|
|
824
|
-
if (!destinationTokenAmount) {
|
|
825
|
-
setDstAmount("");
|
|
826
|
-
}
|
|
826
|
+
setDstAmount("");
|
|
827
827
|
} else {
|
|
828
828
|
setSrcAmount("");
|
|
829
829
|
}
|
|
830
830
|
}
|
|
831
|
-
}, [anyspendQuote, isSrcInputDirty
|
|
831
|
+
}, [anyspendQuote, isSrcInputDirty]);
|
|
832
832
|
|
|
833
833
|
// Call onSuccess when order is executed
|
|
834
834
|
useOnOrderSuccess({ orderData: oat, orderId, onSuccess });
|
|
@@ -84,3 +84,15 @@ export function useB3Config(): B3ConfigContextType {
|
|
|
84
84
|
}
|
|
85
85
|
return context;
|
|
86
86
|
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Overrides ONLY `partnerId` for a subtree, inheriting every other config value from the parent
|
|
90
|
+
* B3ConfigProvider. Lets a single route attribute its AnySpend orders/quotes to a different partner
|
|
91
|
+
* (e.g. `/b3os-deposit` → the b3os partner) without standing up a second B3Provider — the config
|
|
92
|
+
* context is separate from the wallet/modal machinery, so nothing re-initializes. Must be rendered
|
|
93
|
+
* inside an existing B3ConfigProvider.
|
|
94
|
+
*/
|
|
95
|
+
export function B3ConfigPartnerOverride({ partnerId, children }: { partnerId: string; children: React.ReactNode }) {
|
|
96
|
+
const parent = useB3Config();
|
|
97
|
+
return <B3ConfigContext.Provider value={{ ...parent, partnerId }}>{children}</B3ConfigContext.Provider>;
|
|
98
|
+
}
|
|
@@ -7,6 +7,7 @@ export { RelayKitProviderWrapper } from "./B3Provider/RelayKitProviderWrapper";
|
|
|
7
7
|
export { useB3 } from "./B3Provider/useB3";
|
|
8
8
|
export { useB3Account } from "./B3Provider/useB3Account";
|
|
9
9
|
export { useB3Config } from "./B3Provider/useB3Config";
|
|
10
|
+
export { B3ConfigPartnerOverride } from "./B3Provider/B3ConfigProvider";
|
|
10
11
|
export { StyleRoot } from "./StyleRoot";
|
|
11
12
|
|
|
12
13
|
// SignInWithB3 Components
|