@reown/appkit 1.4.1 → 1.5.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/esm/exports/constants.js +1 -1
- package/dist/esm/package.json +2 -2
- package/dist/esm/src/client.js +32 -72
- package/dist/esm/src/client.js.map +1 -1
- package/dist/esm/src/universal-adapter/client.js +21 -5
- package/dist/esm/src/universal-adapter/client.js.map +1 -1
- package/dist/esm/src/utils/HelpersUtil.js +1 -1
- package/dist/esm/src/utils/HelpersUtil.js.map +1 -1
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/exports/constants.d.ts +1 -1
- package/dist/types/src/client.d.ts +1 -0
- package/dist/types/src/library/vue/index.d.ts +1 -1
- package/package.json +10 -10
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "1.
|
|
1
|
+
export declare const PACKAGE_VERSION = "1.5.1";
|
|
@@ -118,6 +118,7 @@ export declare class AppKit {
|
|
|
118
118
|
setClientId: (typeof BlockchainApiController)['setClientId'];
|
|
119
119
|
getConnectorImage: (typeof AssetUtil)['getConnectorImage'];
|
|
120
120
|
handleUnsafeRPCRequest: () => void;
|
|
121
|
+
disconnect(): Promise<void>;
|
|
121
122
|
private initControllers;
|
|
122
123
|
private getDefaultMetaData;
|
|
123
124
|
private extendCaipNetworks;
|
|
@@ -12,7 +12,7 @@ type OpenOptions = {
|
|
|
12
12
|
};
|
|
13
13
|
type ThemeModeOptions = AppKitOptions['themeMode'];
|
|
14
14
|
type ThemeVariablesOptions = AppKitOptions['themeVariables'];
|
|
15
|
-
declare module '
|
|
15
|
+
declare module 'vue' {
|
|
16
16
|
interface ComponentCustomProperties {
|
|
17
17
|
AppKitButton: Pick<AppKitButton, 'size' | 'label' | 'loadingLabel' | 'disabled' | 'balance'>;
|
|
18
18
|
AppKitConnectButton: Pick<AppKitConnectButton, 'size' | 'label' | 'loadingLabel'>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reown/appkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/esm/exports/index.js",
|
|
6
6
|
"types": "./dist/types/exports/index.d.ts",
|
|
@@ -95,14 +95,13 @@
|
|
|
95
95
|
"bs58": "6.0.0",
|
|
96
96
|
"valtio": "1.11.2",
|
|
97
97
|
"viem": "2.x",
|
|
98
|
-
"@reown/appkit-common": "1.
|
|
99
|
-
"@reown/appkit-core": "1.
|
|
100
|
-
"@reown/appkit-polyfills": "1.
|
|
101
|
-
"@reown/appkit-scaffold-ui": "1.
|
|
102
|
-
"@reown/appkit-
|
|
103
|
-
"@reown/appkit-
|
|
104
|
-
"@reown/appkit-
|
|
105
|
-
"@reown/appkit-wallet": "1.4.1"
|
|
98
|
+
"@reown/appkit-common": "1.5.1",
|
|
99
|
+
"@reown/appkit-core": "1.5.1",
|
|
100
|
+
"@reown/appkit-polyfills": "1.5.1",
|
|
101
|
+
"@reown/appkit-scaffold-ui": "1.5.1",
|
|
102
|
+
"@reown/appkit-ui": "1.5.1",
|
|
103
|
+
"@reown/appkit-utils": "1.5.1",
|
|
104
|
+
"@reown/appkit-wallet": "1.5.1"
|
|
106
105
|
},
|
|
107
106
|
"devDependencies": {
|
|
108
107
|
"@types/react": "18.3.1",
|
|
@@ -114,7 +113,8 @@
|
|
|
114
113
|
"react": "18.3.1",
|
|
115
114
|
"react-dom": "18.3.1",
|
|
116
115
|
"vitest": "2.1.3",
|
|
117
|
-
"vue": "3.x"
|
|
116
|
+
"vue": "3.x",
|
|
117
|
+
"@reown/appkit-siwe": "1.5.1"
|
|
118
118
|
},
|
|
119
119
|
"author": "Reown <support@reown.com> (https://reown.com)",
|
|
120
120
|
"license": "Apache-2.0",
|