@nexus-cross/dapp-ui 1.3.3-beta.2 → 1.3.3-beta.4
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 +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +21 -21
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1016,7 +1016,10 @@ interface WalletPortfolioBodyProps {
|
|
|
1016
1016
|
env?: Environment;
|
|
1017
1017
|
theme?: Theme;
|
|
1018
1018
|
walletAddress: string;
|
|
1019
|
-
/**
|
|
1019
|
+
/**
|
|
1020
|
+
* 헤더 좌측 아바타 옆에 표시할 지갑 이름 (예: "Account 1").
|
|
1021
|
+
* 전달되지 않으면 텍스트는 숨겨지고 아바타만 표시된다.
|
|
1022
|
+
*/
|
|
1020
1023
|
walletName?: string;
|
|
1021
1024
|
/** 왼쪽 상단 back 버튼 클릭 핸들러. 없으면 back 버튼 숨김. */
|
|
1022
1025
|
onBack?: () => void;
|
|
@@ -1046,7 +1049,7 @@ interface WalletPortfolioBodyProps {
|
|
|
1046
1049
|
*/
|
|
1047
1050
|
stakingRewardsReader?: StakingRewardsReaderFn;
|
|
1048
1051
|
}
|
|
1049
|
-
declare function WalletPortfolioBody({ env, theme, walletAddress, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1052
|
+
declare function WalletPortfolioBody({ env, theme, walletAddress, walletName, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1050
1053
|
|
|
1051
1054
|
declare function CROSSxIcon(): react_jsx_runtime.JSX.Element;
|
|
1052
1055
|
declare function MetaMaskIcon(): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1016,7 +1016,10 @@ interface WalletPortfolioBodyProps {
|
|
|
1016
1016
|
env?: Environment;
|
|
1017
1017
|
theme?: Theme;
|
|
1018
1018
|
walletAddress: string;
|
|
1019
|
-
/**
|
|
1019
|
+
/**
|
|
1020
|
+
* 헤더 좌측 아바타 옆에 표시할 지갑 이름 (예: "Account 1").
|
|
1021
|
+
* 전달되지 않으면 텍스트는 숨겨지고 아바타만 표시된다.
|
|
1022
|
+
*/
|
|
1020
1023
|
walletName?: string;
|
|
1021
1024
|
/** 왼쪽 상단 back 버튼 클릭 핸들러. 없으면 back 버튼 숨김. */
|
|
1022
1025
|
onBack?: () => void;
|
|
@@ -1046,7 +1049,7 @@ interface WalletPortfolioBodyProps {
|
|
|
1046
1049
|
*/
|
|
1047
1050
|
stakingRewardsReader?: StakingRewardsReaderFn;
|
|
1048
1051
|
}
|
|
1049
|
-
declare function WalletPortfolioBody({ env, theme, walletAddress, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1052
|
+
declare function WalletPortfolioBody({ env, theme, walletAddress, walletName, onBack, showHeader, variant, className, onOutlink, lpBalanceReader, stakingRewardsReader, }: WalletPortfolioBodyProps): react_jsx_runtime.JSX.Element;
|
|
1050
1053
|
|
|
1051
1054
|
declare function CROSSxIcon(): react_jsx_runtime.JSX.Element;
|
|
1052
1055
|
declare function MetaMaskIcon(): react_jsx_runtime.JSX.Element;
|