@broxus/evm-connect 1.14.6 → 1.15.0
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1059 -1153
- package/dist/index.mjs +1059 -1153
- package/dist/inheritance.min.css +1 -3
- package/dist/react.d.mts +346 -9
- package/dist/react.d.ts +346 -9
- package/dist/sdk.d.mts +54 -54
- package/dist/sdk.d.ts +54 -54
- package/dist/standalone.min.css +1 -1
- package/dist/uikit.min.css +1 -1
- package/lib/cjs/styles/inheritance.css +2 -0
- package/lib/cjs/styles/standalone.css +2 -0
- package/lib/cjs/styles/uikit.css +24 -0
- package/lib/esm/context/EvmWalletServiceContext.d.ts +1 -1
- package/lib/esm/styles/inheritance.css +2 -0
- package/lib/esm/styles/standalone.css +2 -0
- package/lib/esm/styles/uikit.css +24 -0
- package/package.json +18 -12
- package/lib/cjs/styles/inheritance.js +0 -4
- package/lib/cjs/styles/standalone.js +0 -4
- package/lib/cjs/styles/uikit.js +0 -3
- package/lib/esm/styles/inheritance.d.ts +0 -2
- package/lib/esm/styles/inheritance.js +0 -2
- package/lib/esm/styles/standalone.d.ts +0 -2
- package/lib/esm/styles/standalone.js +0 -2
- package/lib/esm/styles/uikit.d.ts +0 -1
- package/lib/esm/styles/uikit.js +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -420,7 +420,7 @@ interface EvmWalletProviderProps {
|
|
|
420
420
|
recentMetaStorageKey?: string;
|
|
421
421
|
wallet?: EvmWalletService;
|
|
422
422
|
}
|
|
423
|
-
declare function EvmWalletServiceProvider({ agreementsNote, children, params, recentMetaStorageKey, wallet, }: React.PropsWithChildren<EvmWalletProviderProps>): React.
|
|
423
|
+
declare function EvmWalletServiceProvider({ agreementsNote, children, params, recentMetaStorageKey, wallet, }: React.PropsWithChildren<EvmWalletProviderProps>): React.ReactElement;
|
|
424
424
|
|
|
425
425
|
declare function useContext<T>(Context: React.Context<T>): NonNullable<T>;
|
|
426
426
|
|
package/dist/index.d.ts
CHANGED
|
@@ -420,7 +420,7 @@ interface EvmWalletProviderProps {
|
|
|
420
420
|
recentMetaStorageKey?: string;
|
|
421
421
|
wallet?: EvmWalletService;
|
|
422
422
|
}
|
|
423
|
-
declare function EvmWalletServiceProvider({ agreementsNote, children, params, recentMetaStorageKey, wallet, }: React.PropsWithChildren<EvmWalletProviderProps>): React.
|
|
423
|
+
declare function EvmWalletServiceProvider({ agreementsNote, children, params, recentMetaStorageKey, wallet, }: React.PropsWithChildren<EvmWalletProviderProps>): React.ReactElement;
|
|
424
424
|
|
|
425
425
|
declare function useContext<T>(Context: React.Context<T>): NonNullable<T>;
|
|
426
426
|
|