@matchain/matchid-sdk-react 0.1.53-alpha.25 → 0.1.53-alpha.27
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/{chunk-F7N2JPEQ.mjs → chunk-ZPBHHXEE.mjs} +251 -451
- package/dist/chunk-ZPBHHXEE.mjs.map +1 -0
- package/dist/components/index.d.mts +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +3 -241
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +2 -4
- package/dist/hooks/api/index.js +81 -94
- package/dist/hooks/api/index.js.map +1 -1
- package/dist/hooks/api/index.mjs +2 -2
- package/dist/hooks/index.js +140 -155
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/{index-DromP9ET.d.mts → index-CPwcm70o.d.mts} +2 -9
- package/dist/{index-D3BHrg4-.d.ts → index-Dj1K-UdZ.d.ts} +2 -9
- package/dist/index.css +1 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +252 -451
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/ui/index.js +52 -65
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +2 -2
- package/example/src/App.tsx +0 -8
- package/package.json +1 -1
- package/dist/chunk-F7N2JPEQ.mjs.map +0 -1
- package/example/src/pages/Message/index.tsx +0 -5
package/dist/ui/index.mjs
CHANGED
|
@@ -15,11 +15,11 @@ import {
|
|
|
15
15
|
Skeleton_default,
|
|
16
16
|
Switch,
|
|
17
17
|
Tabs
|
|
18
|
-
} from "../chunk-
|
|
18
|
+
} from "../chunk-ZPBHHXEE.mjs";
|
|
19
19
|
import "../chunk-UA6XHZHX.mjs";
|
|
20
20
|
import "../chunk-IZOOVZAD.mjs";
|
|
21
|
-
import "../chunk-FKXS2XRG.mjs";
|
|
22
21
|
import "../chunk-JX73EY6V.mjs";
|
|
22
|
+
import "../chunk-FKXS2XRG.mjs";
|
|
23
23
|
import "../chunk-J5LGTIGS.mjs";
|
|
24
24
|
export {
|
|
25
25
|
AlphaAvatar,
|
package/example/src/App.tsx
CHANGED
|
@@ -15,7 +15,6 @@ import {LoginButton} from "@matchain/matchid-sdk-react/components";
|
|
|
15
15
|
import UI from "@/pages/UI";
|
|
16
16
|
import TgApp from "@/pages/TgApp";
|
|
17
17
|
import Contact from "./pages/Contact";
|
|
18
|
-
import Message from "@/pages/Message";
|
|
19
18
|
import {WagmiProvider} from "wagmi";
|
|
20
19
|
|
|
21
20
|
|
|
@@ -61,12 +60,6 @@ function Nav() {
|
|
|
61
60
|
onActive: location.pathname === '/contact',
|
|
62
61
|
hidden: !isLogin
|
|
63
62
|
},
|
|
64
|
-
{
|
|
65
|
-
name: 'Message',
|
|
66
|
-
url: '/message',
|
|
67
|
-
onActive: location.pathname === '/message',
|
|
68
|
-
hidden: !isLogin
|
|
69
|
-
}
|
|
70
63
|
]
|
|
71
64
|
return list
|
|
72
65
|
}, [location.pathname, isLogin])
|
|
@@ -158,7 +151,6 @@ function RouterApp() {
|
|
|
158
151
|
<Route path="/user" element={<User/>}/>
|
|
159
152
|
<Route path="/wallet" element={<Wallet/>}/>
|
|
160
153
|
<Route path="/contact" element={<Contact/>}/>
|
|
161
|
-
<Route path="/message" element={<Message/>}/>
|
|
162
154
|
</Route>
|
|
163
155
|
</Routes>
|
|
164
156
|
</div>
|