@dynamic-labs/sdk-react-core 4.19.4 → 4.19.5
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 +7 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +11 -11
- package/src/lib/locale/en/translation.cjs +23 -0
- package/src/lib/locale/en/translation.d.ts +23 -0
- package/src/lib/locale/en/translation.js +23 -0
- package/src/lib/styles/index.shadow.cjs +1 -1
- package/src/lib/styles/index.shadow.js +1 -1
- package/src/lib/views/SessionKeyApprovalView/SessionKeyApprovalView.d.ts +8 -0
- package/src/lib/views/SessionKeyApprovalView/index.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.19.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.4...v4.19.5) (2025-06-02)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add cleanup for waas connectors ([#8849](https://github.com/dynamic-labs/dynamic-auth/issues/8849)) ([5899169](https://github.com/dynamic-labs/dynamic-auth/commit/5899169abaf7ce86add2b1393cfd9b967da5e388))
|
|
8
|
+
|
|
2
9
|
### [4.19.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.3...v4.19.4) (2025-05-31)
|
|
3
10
|
|
|
4
11
|
### [4.19.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.2...v4.19.3) (2025-05-28)
|
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.5",
|
|
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.5",
|
|
18
|
+
"@dynamic-labs/iconic": "4.19.5",
|
|
19
|
+
"@dynamic-labs/logger": "4.19.5",
|
|
20
|
+
"@dynamic-labs/multi-wallet": "4.19.5",
|
|
21
|
+
"@dynamic-labs/rpc-providers": "4.19.5",
|
|
22
|
+
"@dynamic-labs/store": "4.19.5",
|
|
23
|
+
"@dynamic-labs/types": "4.19.5",
|
|
24
|
+
"@dynamic-labs/utils": "4.19.5",
|
|
25
|
+
"@dynamic-labs/wallet-book": "4.19.5",
|
|
26
|
+
"@dynamic-labs/wallet-connector-core": "4.19.5",
|
|
27
27
|
"eventemitter3": "5.0.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
@@ -2022,6 +2022,29 @@ const translation = {
|
|
|
2022
2022
|
using_hardware_wallet_toggle_label: 'Using Ledger with {{chainName}}',
|
|
2023
2023
|
button: 'Connect',
|
|
2024
2024
|
},
|
|
2025
|
+
/**
|
|
2026
|
+
* @description copy keys for session key approval view
|
|
2027
|
+
* @default
|
|
2028
|
+
* {
|
|
2029
|
+
aria: {
|
|
2030
|
+
close_button_label: 'Close',
|
|
2031
|
+
},
|
|
2032
|
+
title: 'Approve Access',
|
|
2033
|
+
description:
|
|
2034
|
+
'You’re granting this site access. Review the permissions before confirming.',
|
|
2035
|
+
approve_button: 'Approve',
|
|
2036
|
+
reject_button: 'Deny',
|
|
2037
|
+
}
|
|
2038
|
+
*/
|
|
2039
|
+
dyn_session_key_approval: {
|
|
2040
|
+
aria: {
|
|
2041
|
+
close_button_label: 'Close',
|
|
2042
|
+
},
|
|
2043
|
+
title: 'Approve Access',
|
|
2044
|
+
description: 'You’re granting this site access. Review the permissions before confirming.',
|
|
2045
|
+
approve_button: 'Approve',
|
|
2046
|
+
reject_button: 'Deny',
|
|
2047
|
+
},
|
|
2025
2048
|
/**
|
|
2026
2049
|
* @description copy keys for session management view
|
|
2027
2050
|
* @default
|
|
@@ -2018,6 +2018,29 @@ export declare const translation: {
|
|
|
2018
2018
|
using_hardware_wallet_toggle_label: string;
|
|
2019
2019
|
button: string;
|
|
2020
2020
|
};
|
|
2021
|
+
/**
|
|
2022
|
+
* @description copy keys for session key approval view
|
|
2023
|
+
* @default
|
|
2024
|
+
* {
|
|
2025
|
+
aria: {
|
|
2026
|
+
close_button_label: 'Close',
|
|
2027
|
+
},
|
|
2028
|
+
title: 'Approve Access',
|
|
2029
|
+
description:
|
|
2030
|
+
'You’re granting this site access. Review the permissions before confirming.',
|
|
2031
|
+
approve_button: 'Approve',
|
|
2032
|
+
reject_button: 'Deny',
|
|
2033
|
+
}
|
|
2034
|
+
*/
|
|
2035
|
+
dyn_session_key_approval: {
|
|
2036
|
+
aria: {
|
|
2037
|
+
close_button_label: string;
|
|
2038
|
+
};
|
|
2039
|
+
title: string;
|
|
2040
|
+
description: string;
|
|
2041
|
+
approve_button: string;
|
|
2042
|
+
reject_button: string;
|
|
2043
|
+
};
|
|
2021
2044
|
/**
|
|
2022
2045
|
* @description copy keys for session management view
|
|
2023
2046
|
* @default
|
|
@@ -2018,6 +2018,29 @@ const translation = {
|
|
|
2018
2018
|
using_hardware_wallet_toggle_label: 'Using Ledger with {{chainName}}',
|
|
2019
2019
|
button: 'Connect',
|
|
2020
2020
|
},
|
|
2021
|
+
/**
|
|
2022
|
+
* @description copy keys for session key approval view
|
|
2023
|
+
* @default
|
|
2024
|
+
* {
|
|
2025
|
+
aria: {
|
|
2026
|
+
close_button_label: 'Close',
|
|
2027
|
+
},
|
|
2028
|
+
title: 'Approve Access',
|
|
2029
|
+
description:
|
|
2030
|
+
'You’re granting this site access. Review the permissions before confirming.',
|
|
2031
|
+
approve_button: 'Approve',
|
|
2032
|
+
reject_button: 'Deny',
|
|
2033
|
+
}
|
|
2034
|
+
*/
|
|
2035
|
+
dyn_session_key_approval: {
|
|
2036
|
+
aria: {
|
|
2037
|
+
close_button_label: 'Close',
|
|
2038
|
+
},
|
|
2039
|
+
title: 'Approve Access',
|
|
2040
|
+
description: 'You’re granting this site access. Review the permissions before confirming.',
|
|
2041
|
+
approve_button: 'Approve',
|
|
2042
|
+
reject_button: 'Deny',
|
|
2043
|
+
},
|
|
2021
2044
|
/**
|
|
2022
2045
|
* @description copy keys for session management view
|
|
2023
2046
|
* @default
|