@matchain/matchid-sdk-react 0.1.31 → 0.1.33
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 +3 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +46 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +46 -12
- package/dist/index.mjs.map +1 -1
- package/example/src/components/Login/index.tsx +2 -2
- package/example/src/config/index.ts +2 -1
- package/example/src/pages/User.tsx +1 -1
- package/package.json +1 -1
|
@@ -44,7 +44,7 @@ export default function Login(){
|
|
|
44
44
|
'discord',
|
|
45
45
|
'github',
|
|
46
46
|
'facebook',
|
|
47
|
-
'
|
|
47
|
+
'youtube'
|
|
48
48
|
]}/>
|
|
49
49
|
|
|
50
50
|
</div>
|
|
@@ -69,7 +69,7 @@ export default function Login(){
|
|
|
69
69
|
</div>
|
|
70
70
|
<div className={`font-bold text-lg`}>LoginPanel</div>
|
|
71
71
|
<div className={`bg-gray-100 p-10`}>
|
|
72
|
-
<div className={`bg-white`}><LoginPanel onClose={() => console.log('onLoginPanelClose')} methods={['telegram','twitter','discord','github','facebook','
|
|
72
|
+
<div className={`bg-white`}><LoginPanel onClose={() => console.log('onLoginPanelClose')} methods={['telegram','twitter','discord','github','facebook','youtube']}/></div>
|
|
73
73
|
</div>
|
|
74
74
|
</div>
|
|
75
75
|
);
|
|
@@ -141,7 +141,7 @@ export default function User() {
|
|
|
141
141
|
<div className={`font-bold text-lg`}>LoginButton</div>
|
|
142
142
|
|
|
143
143
|
<div className={`bg-gray-100 p-5 mt-5`}>
|
|
144
|
-
<LoginButton methods={[ "twitter", 'facebook',"discord","github","
|
|
144
|
+
<LoginButton methods={[ "twitter", 'facebook',"discord","github","youtube","telegram"]} popoverPosition={"left"}/>
|
|
145
145
|
</div>
|
|
146
146
|
<RoutePrivate>
|
|
147
147
|
<LoginContent/>
|