@matchain/matchid-sdk-react 0.1.53-alpha.6 → 0.1.53-alpha.7
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/assets/icon/index.d.mts +1 -1
- package/dist/assets/icon/index.d.ts +1 -1
- package/dist/{chunk-V2S54LGG.mjs → chunk-AYMVU44P.mjs} +44 -2
- package/dist/chunk-AYMVU44P.mjs.map +1 -0
- package/dist/{chunk-Z7DMYFH5.mjs → chunk-W7CCPGOT.mjs} +5553 -5375
- package/dist/chunk-W7CCPGOT.mjs.map +1 -0
- package/dist/components/index.d.mts +3 -3
- package/dist/components/index.d.ts +3 -3
- package/dist/components/index.js +421 -274
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +6 -4
- package/dist/hooks/api/index.d.mts +2 -2
- package/dist/hooks/api/index.d.ts +2 -2
- package/dist/hooks/api/index.js +103 -33
- package/dist/hooks/api/index.js.map +1 -1
- package/dist/hooks/api/index.mjs +7 -7
- package/dist/hooks/index.d.mts +2 -2
- package/dist/hooks/index.d.ts +2 -2
- package/dist/hooks/index.js +180 -159
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +4 -4
- package/dist/{index-Dt92N6yZ.d.ts → index-BIvPr81B.d.ts} +18 -3
- package/dist/{index-D_UNctDI.d.mts → index-BXNFULAw.d.mts} +10 -4
- package/dist/{index-CFqk8eNo.d.ts → index-BkWS_v10.d.mts} +1 -1
- package/dist/{index-wqqEUufi.d.mts → index-C2-EMz0t.d.ts} +25 -5
- package/dist/{index-DaXXoRxr.d.ts → index-CZHjwqDb.d.ts} +1 -1
- package/dist/{index-C5StsjWY.d.ts → index-DDCyj-Fl.d.ts} +10 -4
- package/dist/{index-BhU3hF7y.d.ts → index-DKFnMFMm.d.mts} +25 -5
- package/dist/{index-Bpd2gBNh.d.mts → index-DYkN9eDY.d.mts} +1 -1
- package/dist/{index-W6yjuOKT.d.mts → index-TVbqpk9T.d.mts} +18 -3
- package/dist/{index-D1QeVZyN.d.ts → index-TsJwrYwh.d.mts} +3 -2
- package/dist/{index-mxbJ8CFx.d.mts → index-tFT-63LO.d.ts} +1 -1
- package/dist/{index-BaYTgL99.d.mts → index-uhLehOUk.d.ts} +3 -2
- package/dist/index.css +115 -15
- package/dist/index.d.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +560 -412
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -7
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/{types-Bx_FJ11s.d.mts → types-i_ugbm5B.d.mts} +7 -1
- package/dist/{types-Bx_FJ11s.d.ts → types-i_ugbm5B.d.ts} +7 -1
- package/dist/ui/index.d.mts +3 -3
- package/dist/ui/index.d.ts +3 -3
- package/dist/ui/index.js +44 -2
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +7 -3
- package/example/src/App.tsx +30 -7
- package/example/src/pages/Contact/index.tsx +4 -0
- package/example/src/pages/UI/components/Tabs.tsx +18 -0
- package/example/src/pages/UI/index.tsx +2 -0
- package/package.json +4 -1
- package/dist/chunk-UDXKFDXO.mjs +0 -97
- package/dist/chunk-UDXKFDXO.mjs.map +0 -1
- package/dist/chunk-V2S54LGG.mjs.map +0 -1
- package/dist/chunk-Z7DMYFH5.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
|
-
import { I as IMatchEvents, a as IEnvConfigType, L as LocaleType, W as WalletConfigType } from './types-
|
|
3
|
-
export { i as Hooks, M as ModalProvider, T as ToastProvider } from './index-
|
|
4
|
-
export { i as Components } from './index-
|
|
5
|
-
export { i as UI } from './index-
|
|
6
|
-
export { i as Api } from './index-
|
|
2
|
+
import { I as IMatchEvents, a as IEnvConfigType, L as LocaleType, W as WalletConfigType } from './types-i_ugbm5B.mjs';
|
|
3
|
+
export { i as Hooks, M as ModalProvider, T as ToastProvider } from './index-BkWS_v10.mjs';
|
|
4
|
+
export { i as Components } from './index-BXNFULAw.mjs';
|
|
5
|
+
export { i as UI } from './index-DKFnMFMm.mjs';
|
|
6
|
+
export { i as Api } from './index-TVbqpk9T.mjs';
|
|
7
7
|
export { i as Chains } from './index-DXRGMAbv.mjs';
|
|
8
|
-
export { i as Types } from './index-
|
|
8
|
+
export { i as Types } from './index-TsJwrYwh.mjs';
|
|
9
9
|
import '@tanstack/react-query/src/types';
|
|
10
10
|
import 'viem';
|
|
11
11
|
import 'viem/types/misc';
|
|
@@ -13,7 +13,7 @@ import 'abitype';
|
|
|
13
13
|
import 'react/jsx-runtime';
|
|
14
14
|
import 'viem/_types/actions/siwe/verifySiweMessage';
|
|
15
15
|
import '@tanstack/react-query';
|
|
16
|
-
import './index-
|
|
16
|
+
import './index-DYkN9eDY.mjs';
|
|
17
17
|
|
|
18
18
|
type MatchContextType = {
|
|
19
19
|
appid: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
|
-
import { I as IMatchEvents, a as IEnvConfigType, L as LocaleType, W as WalletConfigType } from './types-
|
|
3
|
-
export { i as Hooks, M as ModalProvider, T as ToastProvider } from './index-
|
|
4
|
-
export { i as Components } from './index-
|
|
5
|
-
export { i as UI } from './index-
|
|
6
|
-
export { i as Api } from './index-
|
|
2
|
+
import { I as IMatchEvents, a as IEnvConfigType, L as LocaleType, W as WalletConfigType } from './types-i_ugbm5B.js';
|
|
3
|
+
export { i as Hooks, M as ModalProvider, T as ToastProvider } from './index-tFT-63LO.js';
|
|
4
|
+
export { i as Components } from './index-DDCyj-Fl.js';
|
|
5
|
+
export { i as UI } from './index-C2-EMz0t.js';
|
|
6
|
+
export { i as Api } from './index-BIvPr81B.js';
|
|
7
7
|
export { i as Chains } from './index-DXRGMAbv.js';
|
|
8
|
-
export { i as Types } from './index-
|
|
8
|
+
export { i as Types } from './index-uhLehOUk.js';
|
|
9
9
|
import '@tanstack/react-query/src/types';
|
|
10
10
|
import 'viem';
|
|
11
11
|
import 'viem/types/misc';
|
|
@@ -13,7 +13,7 @@ import 'abitype';
|
|
|
13
13
|
import 'react/jsx-runtime';
|
|
14
14
|
import 'viem/_types/actions/siwe/verifySiweMessage';
|
|
15
15
|
import '@tanstack/react-query';
|
|
16
|
-
import './index-
|
|
16
|
+
import './index-CZHjwqDb.js';
|
|
17
17
|
|
|
18
18
|
type MatchContextType = {
|
|
19
19
|
appid: string;
|