@nexus-cross/dapp-ui 1.1.0 → 1.1.1-beta.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/dist/index.cjs +6 -6
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -677,6 +677,11 @@ interface WalletPortfolioBodyProps {
|
|
|
677
677
|
env?: Environment;
|
|
678
678
|
theme?: Theme;
|
|
679
679
|
walletAddress: string;
|
|
680
|
+
/**
|
|
681
|
+
* 헤더 좌측 아바타 옆에 표시할 지갑 이름 (예: "Account 1").
|
|
682
|
+
* 전달되지 않으면 텍스트는 숨겨지고 아바타만 표시된다.
|
|
683
|
+
*/
|
|
684
|
+
walletName?: string;
|
|
680
685
|
/** 왼쪽 상단 back 버튼 클릭 핸들러. 없으면 back 버튼 숨김. */
|
|
681
686
|
onBack?: () => void;
|
|
682
687
|
/** 헤더 노출 여부. embed 시 외부 헤더를 쓰면 false로 숨길 수 있음. */
|
|
@@ -702,7 +707,7 @@ interface WalletPortfolioBodyProps {
|
|
|
702
707
|
*/
|
|
703
708
|
onOutlink?: OnOutlink;
|
|
704
709
|
}
|
|
705
|
-
declare function WalletPortfolioBody({ env, theme, walletAddress, onBack, showHeader, variant, className, sendTransaction, getTransactionReceipt, onOutlink, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
710
|
+
declare function WalletPortfolioBody({ env, theme, walletAddress, walletName, onBack, showHeader, variant, className, sendTransaction, getTransactionReceipt, onOutlink, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
706
711
|
|
|
707
712
|
declare function CROSSxIcon(): react_jsx_runtime.JSX.Element;
|
|
708
713
|
declare function MetaMaskIcon(): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -677,6 +677,11 @@ interface WalletPortfolioBodyProps {
|
|
|
677
677
|
env?: Environment;
|
|
678
678
|
theme?: Theme;
|
|
679
679
|
walletAddress: string;
|
|
680
|
+
/**
|
|
681
|
+
* 헤더 좌측 아바타 옆에 표시할 지갑 이름 (예: "Account 1").
|
|
682
|
+
* 전달되지 않으면 텍스트는 숨겨지고 아바타만 표시된다.
|
|
683
|
+
*/
|
|
684
|
+
walletName?: string;
|
|
680
685
|
/** 왼쪽 상단 back 버튼 클릭 핸들러. 없으면 back 버튼 숨김. */
|
|
681
686
|
onBack?: () => void;
|
|
682
687
|
/** 헤더 노출 여부. embed 시 외부 헤더를 쓰면 false로 숨길 수 있음. */
|
|
@@ -702,7 +707,7 @@ interface WalletPortfolioBodyProps {
|
|
|
702
707
|
*/
|
|
703
708
|
onOutlink?: OnOutlink;
|
|
704
709
|
}
|
|
705
|
-
declare function WalletPortfolioBody({ env, theme, walletAddress, onBack, showHeader, variant, className, sendTransaction, getTransactionReceipt, onOutlink, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
710
|
+
declare function WalletPortfolioBody({ env, theme, walletAddress, walletName, onBack, showHeader, variant, className, sendTransaction, getTransactionReceipt, onOutlink, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
706
711
|
|
|
707
712
|
declare function CROSSxIcon(): react_jsx_runtime.JSX.Element;
|
|
708
713
|
declare function MetaMaskIcon(): react_jsx_runtime.JSX.Element;
|