@dynamic-labs/locale 4.53.1 → 4.54.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 CHANGED
@@ -1,4 +1,29 @@
1
1
 
2
+ ## [4.54.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.53.2...v4.54.0) (2026-01-16)
3
+
4
+
5
+ ### Features
6
+
7
+ * add iCloud backup method for wallet backup ([#10221](https://github.com/dynamic-labs/dynamic-auth/issues/10221)) ([36f5b8a](https://github.com/dynamic-labs/dynamic-auth/commit/36f5b8a0df50139fabbc6d6256f396a6d40313f4))
8
+ * add iCloud backup support for wallet key shares ([#10220](https://github.com/dynamic-labs/dynamic-auth/issues/10220)) ([f5f8135](https://github.com/dynamic-labs/dynamic-auth/commit/f5f813593d6ec834fc94f873fd7151b1f3e1a0ca))
9
+ * add legacyWalletId parameter to importPrivateKey ([#10244](https://github.com/dynamic-labs/dynamic-auth/issues/10244)) ([d281dd7](https://github.com/dynamic-labs/dynamic-auth/commit/d281dd7128ac1211e8ca0b72818e109ece7b9837))
10
+
11
+ ### [4.53.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.53.1...v4.53.2) (2026-01-16)
12
+
13
+
14
+ ### Features
15
+
16
+ * add iCloud backup functionality ([#10219](https://github.com/dynamic-labs/dynamic-auth/issues/10219)) ([44e95e5](https://github.com/dynamic-labs/dynamic-auth/commit/44e95e5a5dc99f83918a382ab1c69d452359c346))
17
+ * update PSBT building with Largest-First UTXO selection and fee priorities (high/medium/low) ([#10227](https://github.com/dynamic-labs/dynamic-auth/issues/10227)) ([94c5f5c](https://github.com/dynamic-labs/dynamic-auth/commit/94c5f5cb97432bb97374b754cb95bc23290dd184))
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * allow late registered solana wallets to appear in the wallet list ([#10224](https://github.com/dynamic-labs/dynamic-auth/issues/10224)) ([2f418d4](https://github.com/dynamic-labs/dynamic-auth/commit/2f418d4f3e0543bdd829a45807329f89da1e41a7))
23
+ * correctly show app name in wallet app for wallet connect evm connections ([#10218](https://github.com/dynamic-labs/dynamic-auth/issues/10218)) ([fec0009](https://github.com/dynamic-labs/dynamic-auth/commit/fec0009177439baa67015050b4ad799119615f4f))
24
+ * destructure wallets from getWalletStandardWallets before calling find ([#10234](https://github.com/dynamic-labs/dynamic-auth/issues/10234)) ([b59617a](https://github.com/dynamic-labs/dynamic-auth/commit/b59617a8579b9c7d8a5f744a2ea9363ccb4aee58))
25
+ * **react-native:** filter connectors by enabled chains and add chain parameter to connectWallet ([#10230](https://github.com/dynamic-labs/dynamic-auth/issues/10230)) ([a2bbd03](https://github.com/dynamic-labs/dynamic-auth/commit/a2bbd03ece52950711d2eda18cb2345df15710dd))
26
+
2
27
  ### [4.53.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.53.0...v4.53.1) (2026-01-14)
3
28
 
4
29
  ## [4.53.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.52.5...v4.53.0) (2026-01-13)
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.53.1";
6
+ var version = "4.54.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.53.1";
2
+ var version = "4.54.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/locale",
3
- "version": "4.53.1",
3
+ "version": "4.54.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.53.1"
23
+ "@dynamic-labs/assert-package-version": "4.54.0"
24
24
  },
25
25
  "peerDependencies": {}
26
26
  }
@@ -1318,6 +1318,11 @@ const translation = {
1318
1318
  cloud_backup_subtitle: 'Back up your first key share to a cloud provider',
1319
1319
  cloud_backup_header: 'Cloud Backup',
1320
1320
  backup_to_google_drive: 'Backup to Google Drive',
1321
+ backup_to_icloud: 'Backup to iCloud',
1322
+ icloud_ready_title: 'Sign in to backup',
1323
+ icloud_ready_subtitle: 'Sign in with your Apple ID below, then continue to backup your wallet.',
1324
+ sign_in_with_icloud: 'Sign in with iCloud',
1325
+ continue_backup: 'Continue',
1321
1326
  progress_title: 'Backing up {{current}} of {{total}} wallets...',
1322
1327
  progress_initializing: 'Preparing backup...',
1323
1328
  progress_subtitle: "Securely saving to your cloud. Don't close this window",
@@ -1314,6 +1314,11 @@ export declare const translation: {
1314
1314
  cloud_backup_subtitle: string;
1315
1315
  cloud_backup_header: string;
1316
1316
  backup_to_google_drive: string;
1317
+ backup_to_icloud: string;
1318
+ icloud_ready_title: string;
1319
+ icloud_ready_subtitle: string;
1320
+ sign_in_with_icloud: string;
1321
+ continue_backup: string;
1317
1322
  progress_title: string;
1318
1323
  progress_initializing: string;
1319
1324
  progress_subtitle: string;
@@ -1314,6 +1314,11 @@ const translation = {
1314
1314
  cloud_backup_subtitle: 'Back up your first key share to a cloud provider',
1315
1315
  cloud_backup_header: 'Cloud Backup',
1316
1316
  backup_to_google_drive: 'Backup to Google Drive',
1317
+ backup_to_icloud: 'Backup to iCloud',
1318
+ icloud_ready_title: 'Sign in to backup',
1319
+ icloud_ready_subtitle: 'Sign in with your Apple ID below, then continue to backup your wallet.',
1320
+ sign_in_with_icloud: 'Sign in with iCloud',
1321
+ continue_backup: 'Continue',
1317
1322
  progress_title: 'Backing up {{current}} of {{total}} wallets...',
1318
1323
  progress_initializing: 'Preparing backup...',
1319
1324
  progress_subtitle: "Securely saving to your cloud. Don't close this window",