@aptos-labs/wallet-adapter-mui-design 4.0.10 → 4.0.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @aptos-labs/wallet-adapter-mui-design
2
2
 
3
+ ## 4.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - @aptos-labs/wallet-adapter-react@5.0.2
8
+
3
9
  ## 4.0.10
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1,13 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { WalletSortingOptions } from '@aptos-labs/wallet-adapter-react';
3
+ import { Breakpoint } from '@mui/material';
4
+
5
+ interface WalletConnectorProps extends WalletSortingOptions {
6
+ networkSupport?: string;
7
+ handleNavigate?: () => void;
8
+ /** The max width of the wallet selector modal. Defaults to `xs`. */
9
+ modalMaxWidth?: Breakpoint;
10
+ }
11
+ declare function WalletConnector({ networkSupport, handleNavigate, modalMaxWidth, ...walletSortingOptions }: WalletConnectorProps): react_jsx_runtime.JSX.Element;
12
+
13
+ export { WalletConnector, type WalletConnectorProps };
package/dist/index.d.ts CHANGED
@@ -10,4 +10,4 @@ interface WalletConnectorProps extends WalletSortingOptions {
10
10
  }
11
11
  declare function WalletConnector({ networkSupport, handleNavigate, modalMaxWidth, ...walletSortingOptions }: WalletConnectorProps): react_jsx_runtime.JSX.Element;
12
12
 
13
- export { WalletConnector, WalletConnectorProps };
13
+ export { WalletConnector, type WalletConnectorProps };