@dynamic-labs/sdk-react-core 4.19.0 → 4.19.2
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/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.19.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.1...v4.19.2) (2025-05-27)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* always set the current wallet address when creating WalletClient for that wallet ([#8800](https://github.com/dynamic-labs/dynamic-auth/issues/8800)) ([3282902](https://github.com/dynamic-labs/dynamic-auth/commit/3282902581d429b66c91c533f5573964174e43d6))
|
|
8
|
+
|
|
9
|
+
### [4.19.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.0...v4.19.1) (2025-05-26)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **react-native:** reload webview when disconnected ([#8765](https://github.com/dynamic-labs/dynamic-auth/issues/8765)) ([addf90b](https://github.com/dynamic-labs/dynamic-auth/commit/addf90b6fccbe4b883e9778cf7a07e0471f85318))
|
|
15
|
+
|
|
2
16
|
## [4.19.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.18.8...v4.19.0) (2025-05-23)
|
|
3
17
|
|
|
4
18
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/sdk-react-core",
|
|
3
|
-
"version": "4.19.
|
|
3
|
+
"version": "4.19.2",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@dynamic-labs/sdk-api-core": "0.0.672",
|
|
6
6
|
"@hcaptcha/react-hcaptcha": "1.4.4",
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
"yup": "0.32.11",
|
|
15
15
|
"react-international-phone": "4.2.5",
|
|
16
16
|
"bs58": "5.0.0",
|
|
17
|
-
"@dynamic-labs/assert-package-version": "4.19.
|
|
18
|
-
"@dynamic-labs/iconic": "4.19.
|
|
19
|
-
"@dynamic-labs/logger": "4.19.
|
|
20
|
-
"@dynamic-labs/multi-wallet": "4.19.
|
|
21
|
-
"@dynamic-labs/rpc-providers": "4.19.
|
|
22
|
-
"@dynamic-labs/store": "4.19.
|
|
23
|
-
"@dynamic-labs/types": "4.19.
|
|
24
|
-
"@dynamic-labs/utils": "4.19.
|
|
25
|
-
"@dynamic-labs/wallet-book": "4.19.
|
|
26
|
-
"@dynamic-labs/wallet-connector-core": "4.19.
|
|
17
|
+
"@dynamic-labs/assert-package-version": "4.19.2",
|
|
18
|
+
"@dynamic-labs/iconic": "4.19.2",
|
|
19
|
+
"@dynamic-labs/logger": "4.19.2",
|
|
20
|
+
"@dynamic-labs/multi-wallet": "4.19.2",
|
|
21
|
+
"@dynamic-labs/rpc-providers": "4.19.2",
|
|
22
|
+
"@dynamic-labs/store": "4.19.2",
|
|
23
|
+
"@dynamic-labs/types": "4.19.2",
|
|
24
|
+
"@dynamic-labs/utils": "4.19.2",
|
|
25
|
+
"@dynamic-labs/wallet-book": "4.19.2",
|
|
26
|
+
"@dynamic-labs/wallet-connector-core": "4.19.2",
|
|
27
27
|
"eventemitter3": "5.0.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
@@ -133,9 +133,7 @@ const SettingsView = () => {
|
|
|
133
133
|
const wallet = eoaWallet !== null && eoaWallet !== void 0 ? eoaWallet : primaryWallet;
|
|
134
134
|
const isMfaEnabled = Boolean((_c = (_b = projectSettings$1 === null || projectSettings$1 === void 0 ? void 0 : projectSettings$1.security) === null || _b === void 0 ? void 0 : _b.mfa) === null || _c === void 0 ? void 0 : _c.enabled);
|
|
135
135
|
const isEmbeddedWallet = Boolean(wallet && ((_e = (_d = wallet === null || wallet === void 0 ? void 0 : wallet.connector) === null || _d === void 0 ? void 0 : _d.key) === null || _e === void 0 ? void 0 : _e.startsWith('turnkey')));
|
|
136
|
-
const isV3WaasWallet = Boolean(wallet &&
|
|
137
|
-
((_g = (_f = wallet === null || wallet === void 0 ? void 0 : wallet.connector) === null || _f === void 0 ? void 0 : _f.key) === null || _g === void 0 ? void 0 : _g.startsWith('dynamicwaas')) &&
|
|
138
|
-
(wallet === null || wallet === void 0 ? void 0 : wallet.chain) === 'EVM');
|
|
136
|
+
const isV3WaasWallet = Boolean(wallet && ((_g = (_f = wallet === null || wallet === void 0 ? void 0 : wallet.connector) === null || _f === void 0 ? void 0 : _f.key) === null || _g === void 0 ? void 0 : _g.startsWith('dynamicwaas')));
|
|
139
137
|
const shouldShowAccountAndSecuritySettings = isMfaEnabled ||
|
|
140
138
|
isEmbeddedWallet ||
|
|
141
139
|
isV3WaasWallet ||
|
|
@@ -129,9 +129,7 @@ const SettingsView = () => {
|
|
|
129
129
|
const wallet = eoaWallet !== null && eoaWallet !== void 0 ? eoaWallet : primaryWallet;
|
|
130
130
|
const isMfaEnabled = Boolean((_c = (_b = projectSettings === null || projectSettings === void 0 ? void 0 : projectSettings.security) === null || _b === void 0 ? void 0 : _b.mfa) === null || _c === void 0 ? void 0 : _c.enabled);
|
|
131
131
|
const isEmbeddedWallet = Boolean(wallet && ((_e = (_d = wallet === null || wallet === void 0 ? void 0 : wallet.connector) === null || _d === void 0 ? void 0 : _d.key) === null || _e === void 0 ? void 0 : _e.startsWith('turnkey')));
|
|
132
|
-
const isV3WaasWallet = Boolean(wallet &&
|
|
133
|
-
((_g = (_f = wallet === null || wallet === void 0 ? void 0 : wallet.connector) === null || _f === void 0 ? void 0 : _f.key) === null || _g === void 0 ? void 0 : _g.startsWith('dynamicwaas')) &&
|
|
134
|
-
(wallet === null || wallet === void 0 ? void 0 : wallet.chain) === 'EVM');
|
|
132
|
+
const isV3WaasWallet = Boolean(wallet && ((_g = (_f = wallet === null || wallet === void 0 ? void 0 : wallet.connector) === null || _f === void 0 ? void 0 : _f.key) === null || _g === void 0 ? void 0 : _g.startsWith('dynamicwaas')));
|
|
135
133
|
const shouldShowAccountAndSecuritySettings = isMfaEnabled ||
|
|
136
134
|
isEmbeddedWallet ||
|
|
137
135
|
isV3WaasWallet ||
|