@matchain/matchid-sdk-react 0.1.42-alpha.6 → 0.1.42-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/{chunk-MRGV6YS3.mjs → chunk-3IT55D2W.mjs} +33 -7
- package/dist/chunk-3IT55D2W.mjs.map +1 -0
- package/dist/{chunk-XPTMBR7D.mjs → chunk-YUGXHHVO.mjs} +2 -2
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/hooks/api/index.js.map +1 -1
- package/dist/hooks/api/index.mjs +2 -2
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.js +27 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-MRGV6YS3.mjs.map +0 -1
- /package/dist/{chunk-XPTMBR7D.mjs.map → chunk-YUGXHHVO.mjs.map} +0 -0
package/dist/hooks/index.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -5595,13 +5595,39 @@ var MatchProvider = ({
|
|
|
5595
5595
|
type: "UserPasscode"
|
|
5596
5596
|
}
|
|
5597
5597
|
}) => {
|
|
5598
|
-
const {
|
|
5598
|
+
const { login, endpoints: realEndPoints, locale: realLocale } = useInit({
|
|
5599
5599
|
theme,
|
|
5600
5600
|
appid,
|
|
5601
5601
|
events,
|
|
5602
5602
|
endpoints,
|
|
5603
5603
|
locale
|
|
5604
5604
|
});
|
|
5605
|
+
matchlog_default.log("config", {
|
|
5606
|
+
appid,
|
|
5607
|
+
events,
|
|
5608
|
+
theme,
|
|
5609
|
+
endpoints,
|
|
5610
|
+
locale,
|
|
5611
|
+
wallet
|
|
5612
|
+
});
|
|
5613
|
+
(0, import_react30.useEffect)(() => {
|
|
5614
|
+
console.log("appid", appid);
|
|
5615
|
+
}, [appid]);
|
|
5616
|
+
(0, import_react30.useEffect)(() => {
|
|
5617
|
+
console.log("events", events);
|
|
5618
|
+
}, [events]);
|
|
5619
|
+
(0, import_react30.useEffect)(() => {
|
|
5620
|
+
console.log("theme", theme);
|
|
5621
|
+
}, [theme]);
|
|
5622
|
+
(0, import_react30.useEffect)(() => {
|
|
5623
|
+
console.log("endpoints", endpoints);
|
|
5624
|
+
}, [endpoints]);
|
|
5625
|
+
(0, import_react30.useEffect)(() => {
|
|
5626
|
+
console.log("locale", locale);
|
|
5627
|
+
}, [locale]);
|
|
5628
|
+
(0, import_react30.useEffect)(() => {
|
|
5629
|
+
console.log("wallet", wallet);
|
|
5630
|
+
}, [wallet]);
|
|
5605
5631
|
useWalletInit({
|
|
5606
5632
|
config: wallet
|
|
5607
5633
|
});
|