@nexus-cross/dapp-ui 1.3.3-beta.1 → 1.3.3-beta.10
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/index.cjs +21 -21
- package/dist/index.d.cts +19 -4
- package/dist/index.d.ts +19 -4
- package/dist/index.js +21 -21
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -705,6 +705,18 @@ interface WalletInfoProps {
|
|
|
705
705
|
* 차단된 경우 안내 메시지 전달용.
|
|
706
706
|
*/
|
|
707
707
|
onBuyDisabledMessage?: string;
|
|
708
|
+
/**
|
|
709
|
+
* Bridge 카드를 시각적으로 비활성 상태로 표시하고, 클릭하면 이 메시지를
|
|
710
|
+
* 토스트로 띄운다. 예: 연결된 지갑이 CROSSx 계열이 아니라 브릿지를
|
|
711
|
+
* 지원하지 않는 경우.
|
|
712
|
+
*/
|
|
713
|
+
onBridgeDisabledMessage?: string;
|
|
714
|
+
/**
|
|
715
|
+
* Send 카드(및 토큰 행 탭으로 진입하는 전송 플로우)를 시각적으로 비활성
|
|
716
|
+
* 상태로 표시하고, 클릭하면 이 메시지를 토스트로 띄운다. 예: 연결된 지갑이
|
|
717
|
+
* CROSSx 계열이 아닌 경우.
|
|
718
|
+
*/
|
|
719
|
+
onSendDisabledMessage?: string;
|
|
708
720
|
/**
|
|
709
721
|
* 지정 시 기본 Disconnect 버튼이 Footer에 노출됨. `WalletInfo.Footer` 슬롯이
|
|
710
722
|
* 있으면 해당 슬롯이 메인 영역을 대체한다. Terms/Privacy 링크는 둘 중 무엇을
|
|
@@ -792,7 +804,7 @@ interface WalletInfoProps {
|
|
|
792
804
|
style?: WalletInfoStyle;
|
|
793
805
|
children: React.ReactNode;
|
|
794
806
|
}
|
|
795
|
-
declare function WalletInfoRoot({ env, theme, mobileBreakpoint, drawerDirection, modal, showBalance, showForgeToken, showGameToken, showQR, showBridge, qrLogoSrc, walletAddress, accountName, sendAccounts, profileImageUrl, connectorId, connectorName: connectorNameProp, connectorIconUrl: connectorIconUrlProp, preferredTokens, onSelectWallet, onCopyAddress, onBuy, onBuyDisabledMessage, onDisconnect, disconnectLabel, termsUrl, termsLabel, privacyUrl, privacyLabel, open: propOpen, onOpenChange, showPortfolio, portfolioTitle, showTotalAssets, totalAssetsLabel, sendTransaction, getTransactionReceipt, estimateGas, onOutlink, lpBalanceReader, stakingRewardsReader, bridgeTokens, bridgeHistory, getBridgeQuote, getBridgeToTokens, getBridgeApproval, approveBridge, submitBridge, onReceive, onBridge, onSend, style, children, }: WalletInfoProps): react_jsx_runtime.JSX.Element;
|
|
807
|
+
declare function WalletInfoRoot({ env, theme, mobileBreakpoint, drawerDirection, modal, showBalance, showForgeToken, showGameToken, showQR, showBridge, qrLogoSrc, walletAddress, accountName, sendAccounts, profileImageUrl, connectorId, connectorName: connectorNameProp, connectorIconUrl: connectorIconUrlProp, preferredTokens, onSelectWallet, onCopyAddress, onBuy, onBuyDisabledMessage, onBridgeDisabledMessage, onSendDisabledMessage, onDisconnect, disconnectLabel, termsUrl, termsLabel, privacyUrl, privacyLabel, open: propOpen, onOpenChange, showPortfolio, portfolioTitle, showTotalAssets, totalAssetsLabel, sendTransaction, getTransactionReceipt, estimateGas, onOutlink, lpBalanceReader, stakingRewardsReader, bridgeTokens, bridgeHistory, getBridgeQuote, getBridgeToTokens, getBridgeApproval, approveBridge, submitBridge, onReceive, onBridge, onSend, style, children, }: WalletInfoProps): react_jsx_runtime.JSX.Element;
|
|
796
808
|
declare const WalletInfo: typeof WalletInfoRoot & {
|
|
797
809
|
Trigger: typeof WalletInfoTrigger;
|
|
798
810
|
Content: typeof WalletInfoContent;
|
|
@@ -1016,7 +1028,10 @@ interface WalletPortfolioBodyProps {
|
|
|
1016
1028
|
env?: Environment;
|
|
1017
1029
|
theme?: Theme;
|
|
1018
1030
|
walletAddress: string;
|
|
1019
|
-
/**
|
|
1031
|
+
/**
|
|
1032
|
+
* 헤더 좌측 아바타 옆에 표시할 지갑 이름 (예: "Account 1").
|
|
1033
|
+
* 전달되지 않으면 텍스트는 숨겨지고 아바타만 표시된다.
|
|
1034
|
+
*/
|
|
1020
1035
|
walletName?: string;
|
|
1021
1036
|
/** 왼쪽 상단 back 버튼 클릭 핸들러. 없으면 back 버튼 숨김. */
|
|
1022
1037
|
onBack?: () => void;
|
|
@@ -1046,7 +1061,7 @@ interface WalletPortfolioBodyProps {
|
|
|
1046
1061
|
*/
|
|
1047
1062
|
stakingRewardsReader?: StakingRewardsReaderFn;
|
|
1048
1063
|
}
|
|
1049
|
-
declare function WalletPortfolioBody({ env, theme, walletAddress, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1064
|
+
declare function WalletPortfolioBody({ env, theme, walletAddress, walletName, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1050
1065
|
|
|
1051
1066
|
declare function CROSSxIcon(): react_jsx_runtime.JSX.Element;
|
|
1052
1067
|
declare function MetaMaskIcon(): react_jsx_runtime.JSX.Element;
|
|
@@ -1465,7 +1480,7 @@ interface SkillsButtonProps {
|
|
|
1465
1480
|
type?: "button" | "submit" | "reset";
|
|
1466
1481
|
}
|
|
1467
1482
|
|
|
1468
|
-
declare const DEFAULT_SKILLS_HREF = "https://
|
|
1483
|
+
declare const DEFAULT_SKILLS_HREF = "https://www.onechain.nexus/skills";
|
|
1469
1484
|
declare function SkillsButton({ label, href, onClick, className, style, theme, disabled, isLoading, loadingLabel, openInNewTab, type, }: SkillsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1470
1485
|
|
|
1471
1486
|
export { APPLE_ICON, AppLauncher, AppLauncherContent, type AppLauncherContentProps, type AppLauncherProps, AppLauncherTrigger, type AppLauncherTriggerProps, type AppLauncherTriggerStyle, type AppLauncherUsageMode, BINANCE_ICON, type BridgeAmountSource, type BridgeApprovalInfo, type BridgeApproveFn, type BridgeFailedInfo, BridgeFlow, type BridgeFlowProps, type BridgeGetApprovalFn, type BridgeGetToTokensFn, type BridgeHistoryItem, type BridgeInfoRow, type BridgeInfoTokenRef, type BridgeLiquidityInfo, type BridgePathType, type BridgeQuoteFn, type BridgeQuoteInput, type BridgeQuoteResult, type BridgeStatus, type BridgeStep, type BridgeSubmitFn, type BridgeSubmittedInfo, type BridgeToken, type BridgeTxSummary, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainId, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, DEFAULT_SKILLS_HREF, type DrawerDirection$1 as DrawerDirection, type Environment, type EstimateGasArgs, type EstimateGasFn, GOOGLE_ICON, type GameSwapPool, type GameSwapTokenRef, type GasEstimate, type GetTransactionReceiptArgs, type GetTransactionReceiptFn, type GlobalMenu, type GlobalMenuItem, type GlobalMenuItemUrl, type LpBalanceInfo, type LpBalanceReaderFn, METAMASK_ICON, type OnOutlink, type OutlinkCategory, type OutlinkContext, type OutlinkOrigin, type PreferredToken, type RecentSendAddress, SOCIAL_REGISTRY, type SendAccount, type SendAsset, SendFlow, type SendFlowProps, type SendPageProps, type SendStatus, type SendTransactionArgs, type SendTransactionFn, SkillsButton, type SkillsButtonProps, type SkillsButtonStyle, type SocialConfig, type SocialHandlers, type SocialId, type StakingRewardsInfo, type StakingRewardsReaderFn, TOKEN_STATS_QUERY_KEY, type Theme, type TokenBalance, type TokenBalanceResponse, type TokenStats, type TokenStatsResponse, type TransactionReceiptResult, USER_BALANCE_QUERY_KEY, WALLET_REGISTRY, type WalletConfig, WalletConnectModal, type WalletConnectModalContentProps, type WalletConnectModalProps, type WalletConnectModalStyle, type WalletConnectModalTriggerProps, type WalletHandlers, type WalletId, WalletInfo, type WalletInfoContentProps, type WalletInfoFooterProps, type WalletInfoNavProps, type WalletInfoProps, type WalletInfoStyle, type WalletInfoTriggerProps, WalletPortfolio, WalletPortfolioBody, type WalletPortfolioBodyProps, type WalletPortfolioContentProps, type WalletPortfolioProps, type WalletPortfolioTriggerProps, type WalletProvider, announceAppLauncherUsage, resolveEnvironment, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|
package/dist/index.d.ts
CHANGED
|
@@ -705,6 +705,18 @@ interface WalletInfoProps {
|
|
|
705
705
|
* 차단된 경우 안내 메시지 전달용.
|
|
706
706
|
*/
|
|
707
707
|
onBuyDisabledMessage?: string;
|
|
708
|
+
/**
|
|
709
|
+
* Bridge 카드를 시각적으로 비활성 상태로 표시하고, 클릭하면 이 메시지를
|
|
710
|
+
* 토스트로 띄운다. 예: 연결된 지갑이 CROSSx 계열이 아니라 브릿지를
|
|
711
|
+
* 지원하지 않는 경우.
|
|
712
|
+
*/
|
|
713
|
+
onBridgeDisabledMessage?: string;
|
|
714
|
+
/**
|
|
715
|
+
* Send 카드(및 토큰 행 탭으로 진입하는 전송 플로우)를 시각적으로 비활성
|
|
716
|
+
* 상태로 표시하고, 클릭하면 이 메시지를 토스트로 띄운다. 예: 연결된 지갑이
|
|
717
|
+
* CROSSx 계열이 아닌 경우.
|
|
718
|
+
*/
|
|
719
|
+
onSendDisabledMessage?: string;
|
|
708
720
|
/**
|
|
709
721
|
* 지정 시 기본 Disconnect 버튼이 Footer에 노출됨. `WalletInfo.Footer` 슬롯이
|
|
710
722
|
* 있으면 해당 슬롯이 메인 영역을 대체한다. Terms/Privacy 링크는 둘 중 무엇을
|
|
@@ -792,7 +804,7 @@ interface WalletInfoProps {
|
|
|
792
804
|
style?: WalletInfoStyle;
|
|
793
805
|
children: React.ReactNode;
|
|
794
806
|
}
|
|
795
|
-
declare function WalletInfoRoot({ env, theme, mobileBreakpoint, drawerDirection, modal, showBalance, showForgeToken, showGameToken, showQR, showBridge, qrLogoSrc, walletAddress, accountName, sendAccounts, profileImageUrl, connectorId, connectorName: connectorNameProp, connectorIconUrl: connectorIconUrlProp, preferredTokens, onSelectWallet, onCopyAddress, onBuy, onBuyDisabledMessage, onDisconnect, disconnectLabel, termsUrl, termsLabel, privacyUrl, privacyLabel, open: propOpen, onOpenChange, showPortfolio, portfolioTitle, showTotalAssets, totalAssetsLabel, sendTransaction, getTransactionReceipt, estimateGas, onOutlink, lpBalanceReader, stakingRewardsReader, bridgeTokens, bridgeHistory, getBridgeQuote, getBridgeToTokens, getBridgeApproval, approveBridge, submitBridge, onReceive, onBridge, onSend, style, children, }: WalletInfoProps): react_jsx_runtime.JSX.Element;
|
|
807
|
+
declare function WalletInfoRoot({ env, theme, mobileBreakpoint, drawerDirection, modal, showBalance, showForgeToken, showGameToken, showQR, showBridge, qrLogoSrc, walletAddress, accountName, sendAccounts, profileImageUrl, connectorId, connectorName: connectorNameProp, connectorIconUrl: connectorIconUrlProp, preferredTokens, onSelectWallet, onCopyAddress, onBuy, onBuyDisabledMessage, onBridgeDisabledMessage, onSendDisabledMessage, onDisconnect, disconnectLabel, termsUrl, termsLabel, privacyUrl, privacyLabel, open: propOpen, onOpenChange, showPortfolio, portfolioTitle, showTotalAssets, totalAssetsLabel, sendTransaction, getTransactionReceipt, estimateGas, onOutlink, lpBalanceReader, stakingRewardsReader, bridgeTokens, bridgeHistory, getBridgeQuote, getBridgeToTokens, getBridgeApproval, approveBridge, submitBridge, onReceive, onBridge, onSend, style, children, }: WalletInfoProps): react_jsx_runtime.JSX.Element;
|
|
796
808
|
declare const WalletInfo: typeof WalletInfoRoot & {
|
|
797
809
|
Trigger: typeof WalletInfoTrigger;
|
|
798
810
|
Content: typeof WalletInfoContent;
|
|
@@ -1016,7 +1028,10 @@ interface WalletPortfolioBodyProps {
|
|
|
1016
1028
|
env?: Environment;
|
|
1017
1029
|
theme?: Theme;
|
|
1018
1030
|
walletAddress: string;
|
|
1019
|
-
/**
|
|
1031
|
+
/**
|
|
1032
|
+
* 헤더 좌측 아바타 옆에 표시할 지갑 이름 (예: "Account 1").
|
|
1033
|
+
* 전달되지 않으면 텍스트는 숨겨지고 아바타만 표시된다.
|
|
1034
|
+
*/
|
|
1020
1035
|
walletName?: string;
|
|
1021
1036
|
/** 왼쪽 상단 back 버튼 클릭 핸들러. 없으면 back 버튼 숨김. */
|
|
1022
1037
|
onBack?: () => void;
|
|
@@ -1046,7 +1061,7 @@ interface WalletPortfolioBodyProps {
|
|
|
1046
1061
|
*/
|
|
1047
1062
|
stakingRewardsReader?: StakingRewardsReaderFn;
|
|
1048
1063
|
}
|
|
1049
|
-
declare function WalletPortfolioBody({ env, theme, walletAddress, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1064
|
+
declare function WalletPortfolioBody({ env, theme, walletAddress, walletName, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1050
1065
|
|
|
1051
1066
|
declare function CROSSxIcon(): react_jsx_runtime.JSX.Element;
|
|
1052
1067
|
declare function MetaMaskIcon(): react_jsx_runtime.JSX.Element;
|
|
@@ -1465,7 +1480,7 @@ interface SkillsButtonProps {
|
|
|
1465
1480
|
type?: "button" | "submit" | "reset";
|
|
1466
1481
|
}
|
|
1467
1482
|
|
|
1468
|
-
declare const DEFAULT_SKILLS_HREF = "https://
|
|
1483
|
+
declare const DEFAULT_SKILLS_HREF = "https://www.onechain.nexus/skills";
|
|
1469
1484
|
declare function SkillsButton({ label, href, onClick, className, style, theme, disabled, isLoading, loadingLabel, openInNewTab, type, }: SkillsButtonProps): react_jsx_runtime.JSX.Element;
|
|
1470
1485
|
|
|
1471
1486
|
export { APPLE_ICON, AppLauncher, AppLauncherContent, type AppLauncherContentProps, type AppLauncherProps, AppLauncherTrigger, type AppLauncherTriggerProps, type AppLauncherTriggerStyle, type AppLauncherUsageMode, BINANCE_ICON, type BridgeAmountSource, type BridgeApprovalInfo, type BridgeApproveFn, type BridgeFailedInfo, BridgeFlow, type BridgeFlowProps, type BridgeGetApprovalFn, type BridgeGetToTokensFn, type BridgeHistoryItem, type BridgeInfoRow, type BridgeInfoTokenRef, type BridgeLiquidityInfo, type BridgePathType, type BridgeQuoteFn, type BridgeQuoteInput, type BridgeQuoteResult, type BridgeStatus, type BridgeStep, type BridgeSubmitFn, type BridgeSubmittedInfo, type BridgeToken, type BridgeTxSummary, CONNECTOR_REGISTRY, CROSSX_ICON, type ChainId, ConnectButton, type ConnectButtonProps, type ConnectButtonStyle, ConnectorId, type ConnectorMeta, DEFAULT_SKILLS_HREF, type DrawerDirection$1 as DrawerDirection, type Environment, type EstimateGasArgs, type EstimateGasFn, GOOGLE_ICON, type GameSwapPool, type GameSwapTokenRef, type GasEstimate, type GetTransactionReceiptArgs, type GetTransactionReceiptFn, type GlobalMenu, type GlobalMenuItem, type GlobalMenuItemUrl, type LpBalanceInfo, type LpBalanceReaderFn, METAMASK_ICON, type OnOutlink, type OutlinkCategory, type OutlinkContext, type OutlinkOrigin, type PreferredToken, type RecentSendAddress, SOCIAL_REGISTRY, type SendAccount, type SendAsset, SendFlow, type SendFlowProps, type SendPageProps, type SendStatus, type SendTransactionArgs, type SendTransactionFn, SkillsButton, type SkillsButtonProps, type SkillsButtonStyle, type SocialConfig, type SocialHandlers, type SocialId, type StakingRewardsInfo, type StakingRewardsReaderFn, TOKEN_STATS_QUERY_KEY, type Theme, type TokenBalance, type TokenBalanceResponse, type TokenStats, type TokenStatsResponse, type TransactionReceiptResult, USER_BALANCE_QUERY_KEY, WALLET_REGISTRY, type WalletConfig, WalletConnectModal, type WalletConnectModalContentProps, type WalletConnectModalProps, type WalletConnectModalStyle, type WalletConnectModalTriggerProps, type WalletHandlers, type WalletId, WalletInfo, type WalletInfoContentProps, type WalletInfoFooterProps, type WalletInfoNavProps, type WalletInfoProps, type WalletInfoStyle, type WalletInfoTriggerProps, WalletPortfolio, WalletPortfolioBody, type WalletPortfolioBodyProps, type WalletPortfolioContentProps, type WalletPortfolioProps, type WalletPortfolioTriggerProps, type WalletProvider, announceAppLauncherUsage, resolveEnvironment, useGlobalMenu, useTokenBalance, useTokenStats, useWalletDetect };
|