@dynamic-labs/iconic 4.63.1 → 4.65.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,27 @@
1
1
 
2
+ ## [4.65.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.64.0...v4.65.0) (2026-02-27)
3
+
4
+
5
+ ### Features
6
+
7
+ * add CSP nonce support for style and link tags ([#10514](https://github.com/dynamic-labs/dynamic-auth/issues/10514)) ([62128f5](https://github.com/dynamic-labs/dynamic-auth/commit/62128f5eddfd2a037c2ed6e9320b5009d350c0b5))
8
+ * add setPassword method for initial wallet password setup ([#10534](https://github.com/dynamic-labs/dynamic-auth/issues/10534)) ([87d1e5f](https://github.com/dynamic-labs/dynamic-auth/commit/87d1e5f3c41fe4417320f6971566526e8bf07e99))
9
+ * add step-up authentication and walletsVerify API ([#10482](https://github.com/dynamic-labs/dynamic-auth/issues/10482)) ([e762a63](https://github.com/dynamic-labs/dynamic-auth/commit/e762a634e9782c34926f5947db5446ad95617064))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **react-native:** ensure items are saved to storage successfully ([#10538](https://github.com/dynamic-labs/dynamic-auth/issues/10538)) ([60bfd5e](https://github.com/dynamic-labs/dynamic-auth/commit/60bfd5e4bf1e7265e754c222839662ff615495b2))
15
+ * **sdk-react-core:** add stellar to compareChains to prevent duplicate wallet creation ([#10526](https://github.com/dynamic-labs/dynamic-auth/issues/10526)) ([89f4498](https://github.com/dynamic-labs/dynamic-auth/commit/89f449892a5153dc8032e0e8ea61cf453e0a2b23))
16
+ * show password setup button for all WaaS wallets regardless of passcodeRequired ([#10532](https://github.com/dynamic-labs/dynamic-auth/issues/10532)) ([615cbf2](https://github.com/dynamic-labs/dynamic-auth/commit/615cbf25fcf95cb5b82a118a2d5d37285e8b5b83))
17
+
18
+ ## [4.64.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.63.1...v4.64.0) (2026-02-25)
19
+
20
+
21
+ ### Features
22
+
23
+ * add addTrustline method to the stellar wallet ([#10510](https://github.com/dynamic-labs/dynamic-auth/issues/10510)) ([e8690e8](https://github.com/dynamic-labs/dynamic-auth/commit/e8690e821dfe867355618d970380568487c3dd36))
24
+
2
25
  ### [4.63.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.63.0...v4.63.1) (2026-02-24)
3
26
 
4
27
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.63.1";
6
+ var version = "4.65.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.63.1";
2
+ var version = "4.65.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "4.63.1",
3
+ "version": "4.65.0",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -22,8 +22,8 @@
22
22
  "react-dom": ">=18.0.0 <20.0.0"
23
23
  },
24
24
  "dependencies": {
25
- "@dynamic-labs/assert-package-version": "4.63.1",
26
- "@dynamic-labs/logger": "4.63.1",
25
+ "@dynamic-labs/assert-package-version": "4.65.0",
26
+ "@dynamic-labs/logger": "4.65.0",
27
27
  "sharp": "0.33.5",
28
28
  "url": "0.11.0"
29
29
  }
@@ -85,6 +85,11 @@ const GoerliIcon = Iconic.createIconic({
85
85
  iconName: 'goerli',
86
86
  sourcePath: 'icons/chains/goerli.svg',
87
87
  });
88
+ const MidnightIcon = Iconic.createIconic({
89
+ alt: 'Midnight Chain',
90
+ iconName: 'midnight',
91
+ sourcePath: 'icons/chains/midnight.svg',
92
+ });
88
93
  const OptimismIcon = Iconic.createIconic({
89
94
  alt: 'Optimism Chain',
90
95
  iconName: 'optimism',
@@ -167,6 +172,7 @@ exports.EthereumIcon = EthereumIcon;
167
172
  exports.FlowIcon = FlowIcon;
168
173
  exports.GnosisIcon = GnosisIcon;
169
174
  exports.GoerliIcon = GoerliIcon;
175
+ exports.MidnightIcon = MidnightIcon;
170
176
  exports.OptimismIcon = OptimismIcon;
171
177
  exports.OsmosisIcon = OsmosisIcon;
172
178
  exports.PalmIcon = PalmIcon;
@@ -15,6 +15,7 @@ export declare const EthereumIcon: Iconic;
15
15
  export declare const FlowIcon: Iconic;
16
16
  export declare const GnosisIcon: Iconic;
17
17
  export declare const GoerliIcon: Iconic;
18
+ export declare const MidnightIcon: Iconic;
18
19
  export declare const OptimismIcon: Iconic;
19
20
  export declare const OsmosisIcon: Iconic;
20
21
  export declare const PalmIcon: Iconic;
@@ -81,6 +81,11 @@ const GoerliIcon = createIconic({
81
81
  iconName: 'goerli',
82
82
  sourcePath: 'icons/chains/goerli.svg',
83
83
  });
84
+ const MidnightIcon = createIconic({
85
+ alt: 'Midnight Chain',
86
+ iconName: 'midnight',
87
+ sourcePath: 'icons/chains/midnight.svg',
88
+ });
84
89
  const OptimismIcon = createIconic({
85
90
  alt: 'Optimism Chain',
86
91
  iconName: 'optimism',
@@ -147,4 +152,4 @@ const ZkSyncIcon = createIconic({
147
152
  sourcePath: 'icons/chains/zkSync.svg',
148
153
  });
149
154
 
150
- export { AleoIcon, AlgorandIcon, AptosIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, SparkIcon, StarknetIcon, StellarIcon, SuiIcon, TonIcon, TronIcon, ZkSyncIcon };
155
+ export { AleoIcon, AlgorandIcon, AptosIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, MidnightIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, SparkIcon, StarknetIcon, StellarIcon, SuiIcon, TonIcon, TronIcon, ZkSyncIcon };
package/src/index.cjs CHANGED
@@ -41,6 +41,7 @@ exports.EthereumIcon = index$1.EthereumIcon;
41
41
  exports.FlowIcon = index$1.FlowIcon;
42
42
  exports.GnosisIcon = index$1.GnosisIcon;
43
43
  exports.GoerliIcon = index$1.GoerliIcon;
44
+ exports.MidnightIcon = index$1.MidnightIcon;
44
45
  exports.OptimismIcon = index$1.OptimismIcon;
45
46
  exports.OsmosisIcon = index$1.OsmosisIcon;
46
47
  exports.PalmIcon = index$1.PalmIcon;
package/src/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
3
3
  import { version } from '../package.js';
4
4
  export { BraveIcon, ChromeIcon, EdgeIcon, FirefoxIcon, OperaIcon, SafariIcon } from './icons/browsers/index.js';
5
- export { AleoIcon, AlgorandIcon, AptosIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, SparkIcon, StarknetIcon, StellarIcon, SuiIcon, TonIcon, TronIcon, ZkSyncIcon } from './icons/chains/index.js';
5
+ export { AleoIcon, AlgorandIcon, AptosIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EclipseIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, MidnightIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SeiIcon, SolanaIcon, SparkIcon, StarknetIcon, StellarIcon, SuiIcon, TonIcon, TronIcon, ZkSyncIcon } from './icons/chains/index.js';
6
6
  export { BanxaIcon, CoinbasePayIcon, CryptoDotComIcon } from './icons/onramps/index.js';
7
7
  export { AppleDarkSocialIcon, AppleSocialIcon, BinanceSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, KrakenDarkIcon, KrakenIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OktaIcon, OnePasswordDarkIcon, OnePasswordIcon, ShopifyIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
8
8
  export { AbstractIcon, AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, ByBitIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, DynamicWaasIcon, EdenOnlineIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FlowWalletIcon, FordefiIcon, FortmaticIcon, FrameIcon, FreighterIcon, GamestopIcon, GlowIcon, ImTokenWallet, InfinexIcon, InjectedWalletIcon, IntersendIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, LobstrIcon, MagicEdenIcon, MagicLinkIcon, MathWalletIcon, MaticIcon, MetaMaskIcon, MetaMaskStarknetIcon, MissingIcon, MyalgoIcon, NightlyIcon, OkxIcon, OmniIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, OylIcon, PasskeysWalletIcon, PeraIcon, PhantomIcon, PontemIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SlushIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuietIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TronLinkIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnknownWalletIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon } from './icons/wallets/index.js';