@deframe-sdk/components 0.1.34 → 0.1.36

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.d.mts CHANGED
@@ -2306,6 +2306,7 @@ interface EarnTokenSelectorViewProps {
2306
2306
  chainDisabledTitle?: string;
2307
2307
  isNetworkDisabled?: boolean;
2308
2308
  currentNetworkSelected?: ChainItem | null;
2309
+ className?: string;
2309
2310
  }
2310
2311
  declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
2311
2312
 
@@ -2921,10 +2922,26 @@ declare function OnchainWithdrawFailedView({ tokenSymbol, tokenLogoURI, formatte
2921
2922
 
2922
2923
  declare function WithdrawFailedIcon(): react_jsx_runtime.JSX.Element;
2923
2924
 
2925
+ interface EarnFormSkeletonProps {
2926
+ headerTitle?: string;
2927
+ tokenSymbol?: string;
2928
+ tokenLogoURI?: string | null;
2929
+ chainLabel?: string;
2930
+ chainImage?: string;
2931
+ amount?: string;
2932
+ dollarAmount?: string;
2933
+ availableBalance?: string;
2934
+ cancelLabel?: string;
2935
+ submitLabel?: string;
2936
+ }
2937
+
2924
2938
  interface OnchainWithdrawProcessingViewProps {
2925
2939
  onClose?: () => void;
2926
2940
  }
2927
- declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingViewProps>;
2941
+ interface OnchainWithdrawProcessingSimpleViewProps extends OnchainWithdrawProcessingViewProps {
2942
+ formData?: EarnFormSkeletonProps;
2943
+ }
2944
+ declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingSimpleViewProps>;
2928
2945
 
2929
2946
  interface OnchainWithdrawSignatureWarningViewProps {
2930
2947
  tokenSymbol: string;
package/dist/index.d.ts CHANGED
@@ -2306,6 +2306,7 @@ interface EarnTokenSelectorViewProps {
2306
2306
  chainDisabledTitle?: string;
2307
2307
  isNetworkDisabled?: boolean;
2308
2308
  currentNetworkSelected?: ChainItem | null;
2309
+ className?: string;
2309
2310
  }
2310
2311
  declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
2311
2312
 
@@ -2921,10 +2922,26 @@ declare function OnchainWithdrawFailedView({ tokenSymbol, tokenLogoURI, formatte
2921
2922
 
2922
2923
  declare function WithdrawFailedIcon(): react_jsx_runtime.JSX.Element;
2923
2924
 
2925
+ interface EarnFormSkeletonProps {
2926
+ headerTitle?: string;
2927
+ tokenSymbol?: string;
2928
+ tokenLogoURI?: string | null;
2929
+ chainLabel?: string;
2930
+ chainImage?: string;
2931
+ amount?: string;
2932
+ dollarAmount?: string;
2933
+ availableBalance?: string;
2934
+ cancelLabel?: string;
2935
+ submitLabel?: string;
2936
+ }
2937
+
2924
2938
  interface OnchainWithdrawProcessingViewProps {
2925
2939
  onClose?: () => void;
2926
2940
  }
2927
- declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingViewProps>;
2941
+ interface OnchainWithdrawProcessingSimpleViewProps extends OnchainWithdrawProcessingViewProps {
2942
+ formData?: EarnFormSkeletonProps;
2943
+ }
2944
+ declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingSimpleViewProps>;
2928
2945
 
2929
2946
  interface OnchainWithdrawSignatureWarningViewProps {
2930
2947
  tokenSymbol: string;