@matchain/matchid-sdk-react 0.1.33 → 0.1.35
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.css +406 -235
- package/dist/index.d.mts +17 -6
- package/dist/index.d.ts +17 -6
- package/dist/index.js +178 -122
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +160 -104
- package/dist/index.mjs.map +1 -1
- package/example/src/components/Login/index.tsx +2 -2
- package/package.json +1 -1
|
@@ -38,7 +38,7 @@ export default function Login(){
|
|
|
38
38
|
}}/>
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
<LoginModal isOpen={loginOpen} onClose={() => setLoginOpen(false)} methods={[
|
|
41
|
+
<LoginModal isOpen={loginOpen} walletMethods={["evm","sol"]} onClose={() => setLoginOpen(false)} methods={[
|
|
42
42
|
'telegram',
|
|
43
43
|
'twitter',
|
|
44
44
|
'discord',
|
|
@@ -65,7 +65,7 @@ export default function Login(){
|
|
|
65
65
|
<div className={`font-bold text-xl`}>Components</div>
|
|
66
66
|
<div className={`font-bold text-lg`}>LoginBox</div>
|
|
67
67
|
<div className={`bg-gray-100 p-10`}>
|
|
68
|
-
<div className={`bg-white`}><LoginBox/></div>
|
|
68
|
+
<div className={`bg-white`}><LoginBox walletMethods={["evm","sol"]}/></div>
|
|
69
69
|
</div>
|
|
70
70
|
<div className={`font-bold text-lg`}>LoginPanel</div>
|
|
71
71
|
<div className={`bg-gray-100 p-10`}>
|