@dynamic-labs/locale 4.91.0 → 4.91.1
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 +19 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +1 -0
- package/src/lib/en/translation.d.ts +1 -0
- package/src/lib/en/translation.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.91.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.0...v4.91.1) (2026-06-24)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **aleo:** update sendBalance with individual and marketplace logic ([#11709](https://github.com/dynamic-labs/dynamic-auth/issues/11709)) ([f8dfc48](https://github.com/dynamic-labs/dynamic-auth/commit/f8dfc488ae607fbbbcc3432a3ef69f746f0b7df0))
|
|
8
|
+
* **sdk-react-core:** surface shielded address in Midnight deposit view ([#11698](https://github.com/dynamic-labs/dynamic-auth/issues/11698)) ([79c5402](https://github.com/dynamic-labs/dynamic-auth/commit/79c54029b1d8f722cf9f1d8b4c11977898442ac0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* display actual error message for WaaS export failures instead of generic fallback ([#11498](https://github.com/dynamic-labs/dynamic-auth/issues/11498)) ([373c931](https://github.com/dynamic-labs/dynamic-auth/commit/373c931eb96c88e484c557ee8f2934660d028f97))
|
|
14
|
+
* **wallet-book:** guard replaceKey and remove stale override ([#11682](https://github.com/dynamic-labs/dynamic-auth/issues/11682)) ([13947d9](https://github.com/dynamic-labs/dynamic-auth/commit/13947d972ed1f8227712bfc01af9cc2be616a78a))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Performance Improvements
|
|
18
|
+
|
|
19
|
+
* **e2e:** prebuild Expo web bundle for RN e2e tests ([#11674](https://github.com/dynamic-labs/dynamic-auth/issues/11674)) ([16e002d](https://github.com/dynamic-labs/dynamic-auth/commit/16e002d59b2035e3f2c116879a78418a959da8bc))
|
|
20
|
+
|
|
2
21
|
## [4.91.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.90.0...v4.91.0) (2026-06-23)
|
|
3
22
|
|
|
4
23
|
|
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.91.
|
|
3
|
+
"version": "4.91.1",
|
|
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.91.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.91.1"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -59,6 +59,7 @@ const translation = {
|
|
|
59
59
|
midnight_shielded_balance: 'Shielded balance',
|
|
60
60
|
midnight_unshielded_balance: 'Unshielded balance',
|
|
61
61
|
midnight_dust_generating: 'DUST generating',
|
|
62
|
+
midnight_dust_not_registered: 'DUST',
|
|
62
63
|
midnight_dust_syncing: 'DUST syncing…',
|
|
63
64
|
midnight_register_dust: 'Register DUST',
|
|
64
65
|
midnight_toggle_addresses: 'Show dust and shielded addresses',
|
|
@@ -53,6 +53,7 @@ export declare const translation: {
|
|
|
53
53
|
midnight_shielded_balance: string;
|
|
54
54
|
midnight_unshielded_balance: string;
|
|
55
55
|
midnight_dust_generating: string;
|
|
56
|
+
midnight_dust_not_registered: string;
|
|
56
57
|
midnight_dust_syncing: string;
|
|
57
58
|
midnight_register_dust: string;
|
|
58
59
|
midnight_toggle_addresses: string;
|
|
@@ -55,6 +55,7 @@ const translation = {
|
|
|
55
55
|
midnight_shielded_balance: 'Shielded balance',
|
|
56
56
|
midnight_unshielded_balance: 'Unshielded balance',
|
|
57
57
|
midnight_dust_generating: 'DUST generating',
|
|
58
|
+
midnight_dust_not_registered: 'DUST',
|
|
58
59
|
midnight_dust_syncing: 'DUST syncing…',
|
|
59
60
|
midnight_register_dust: 'Register DUST',
|
|
60
61
|
midnight_toggle_addresses: 'Show dust and shielded addresses',
|