@dynamic-labs/locale 4.74.1 → 4.76.0
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 +21 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +2 -0
- package/src/lib/en/translation.d.ts +2 -0
- package/src/lib/en/translation.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.76.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.75.0...v4.76.0) (2026-04-06)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* handle credential_not_enabled_for_sign_in error across all sign-in methods ([#10819](https://github.com/dynamic-labs/dynamic-auth/issues/10819)) ([f694b85](https://github.com/dynamic-labs/dynamic-auth/commit/f694b857eab9d377626078d290473ca369652331))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* modal transition race condition (opacity stuck at 0) ([#10857](https://github.com/dynamic-labs/dynamic-auth/issues/10857)) ([6e9ec68](https://github.com/dynamic-labs/dynamic-auth/commit/6e9ec68040776cc5be333ad20ad0096374947b74))
|
|
13
|
+
* **react-native:** ensure session is correctly mapped ([#10860](https://github.com/dynamic-labs/dynamic-auth/issues/10860)) ([117b013](https://github.com/dynamic-labs/dynamic-auth/commit/117b013faf9a0d4bc6b8429a36d8e88dba546889))
|
|
14
|
+
|
|
15
|
+
## [4.75.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.74.1...v4.75.0) (2026-04-03)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **midnight:** add midnight base package scaffolding ([#10850](https://github.com/dynamic-labs/dynamic-auth/issues/10850)) ([5844849](https://github.com/dynamic-labs/dynamic-auth/commit/584484916cf49d7ec46ec5cf862e2e6b8308d90f))
|
|
21
|
+
* **tempo:** add FeeTokenSelector component for fee token selection ([#10842](https://github.com/dynamic-labs/dynamic-auth/issues/10842)) ([18bc637](https://github.com/dynamic-labs/dynamic-auth/commit/18bc6374bea6eeff6656edaa725b0620bc8b36dd))
|
|
22
|
+
|
|
2
23
|
### [4.74.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.74.0...v4.74.1) (2026-04-02)
|
|
3
24
|
|
|
4
25
|
This was a version bump only, there were no code changes.
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/locale",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.76.0",
|
|
4
4
|
"description": "Locale for Dynamic SDK",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"i18next": "23.4.6",
|
|
22
22
|
"react-i18next": "13.5.0",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.76.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -2340,6 +2340,7 @@ const translation = {
|
|
|
2340
2340
|
placeholder: 'Enter wallet address...',
|
|
2341
2341
|
},
|
|
2342
2342
|
fee_token_label: 'Pay fees with',
|
|
2343
|
+
fee_token_embedded_only: 'Fee token selection is only available with embedded wallets',
|
|
2343
2344
|
select_token: 'Select any token',
|
|
2344
2345
|
symbol_available: '{{symbol}} Available',
|
|
2345
2346
|
},
|
|
@@ -3149,6 +3150,7 @@ const translation = {
|
|
|
3149
3150
|
internal_error: 'There was an internal error. Please try again.',
|
|
3150
3151
|
account_already_linked_to_different_profile: 'This social account is already linked to a different profile.',
|
|
3151
3152
|
connection_rejected: 'Connection rejected. Please try again.',
|
|
3153
|
+
credential_not_enabled_for_sign_in: 'This credential cannot be used for sign-in. Please use your primary credential.',
|
|
3152
3154
|
missing_public_address: 'Connection cancelled. Please try again',
|
|
3153
3155
|
connection_proposal_expired: 'Connection proposal expired. Please try again.',
|
|
3154
3156
|
sei_not_enabled_in_keplr_wallet: 'Sei network is not enabled in Keplr. Please enable it and try again.',
|
|
@@ -2336,6 +2336,7 @@ export declare const translation: {
|
|
|
2336
2336
|
placeholder: string;
|
|
2337
2337
|
};
|
|
2338
2338
|
fee_token_label: string;
|
|
2339
|
+
fee_token_embedded_only: string;
|
|
2339
2340
|
select_token: string;
|
|
2340
2341
|
symbol_available: string;
|
|
2341
2342
|
};
|
|
@@ -3145,6 +3146,7 @@ export declare const translation: {
|
|
|
3145
3146
|
internal_error: string;
|
|
3146
3147
|
account_already_linked_to_different_profile: string;
|
|
3147
3148
|
connection_rejected: string;
|
|
3149
|
+
credential_not_enabled_for_sign_in: string;
|
|
3148
3150
|
missing_public_address: string;
|
|
3149
3151
|
connection_proposal_expired: string;
|
|
3150
3152
|
sei_not_enabled_in_keplr_wallet: string;
|
|
@@ -2336,6 +2336,7 @@ const translation = {
|
|
|
2336
2336
|
placeholder: 'Enter wallet address...',
|
|
2337
2337
|
},
|
|
2338
2338
|
fee_token_label: 'Pay fees with',
|
|
2339
|
+
fee_token_embedded_only: 'Fee token selection is only available with embedded wallets',
|
|
2339
2340
|
select_token: 'Select any token',
|
|
2340
2341
|
symbol_available: '{{symbol}} Available',
|
|
2341
2342
|
},
|
|
@@ -3145,6 +3146,7 @@ const translation = {
|
|
|
3145
3146
|
internal_error: 'There was an internal error. Please try again.',
|
|
3146
3147
|
account_already_linked_to_different_profile: 'This social account is already linked to a different profile.',
|
|
3147
3148
|
connection_rejected: 'Connection rejected. Please try again.',
|
|
3149
|
+
credential_not_enabled_for_sign_in: 'This credential cannot be used for sign-in. Please use your primary credential.',
|
|
3148
3150
|
missing_public_address: 'Connection cancelled. Please try again',
|
|
3149
3151
|
connection_proposal_expired: 'Connection proposal expired. Please try again.',
|
|
3150
3152
|
sei_not_enabled_in_keplr_wallet: 'Sei network is not enabled in Keplr. Please enable it and try again.',
|