@dynamic-labs/iconic 4.96.3 → 4.97.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,26 @@
1
1
 
2
+ ## [4.97.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.96.4...v4.97.0) (2026-08-27)
3
+
4
+
5
+ ### Features
6
+
7
+ * **screening:** connected-wallet transaction screening [v4 backport] (DYNT-1663) ([#12284](https://github.com/dynamic-labs/dynamic-auth/issues/12284)) ([294adba](https://github.com/dynamic-labs/dynamic-auth/commit/294adba7dba8f321f3b1e8413f73545701e51252)), closes [#12160](https://github.com/dynamic-labs/dynamic-auth/issues/12160) [#12167](https://github.com/dynamic-labs/dynamic-auth/issues/12167) [#12168](https://github.com/dynamic-labs/dynamic-auth/issues/12168) [#12169](https://github.com/dynamic-labs/dynamic-auth/issues/12169) [#12172](https://github.com/dynamic-labs/dynamic-auth/issues/12172)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **screening:** wire connected-wallet screening into the Send Balance UI (DYNT-1663) ([#12289](https://github.com/dynamic-labs/dynamic-auth/issues/12289)) ([1587cd8](https://github.com/dynamic-labs/dynamic-auth/commit/1587cd833370e18fa383f942521500e4c1576390))
13
+
14
+ ### [4.96.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.96.3...v4.96.4) (2026-08-26)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * remediate high-severity tar, nanoid and js-yaml vulnerabilities (v4) ([#12269](https://github.com/dynamic-labs/dynamic-auth/issues/12269)) ([15a32fe](https://github.com/dynamic-labs/dynamic-auth/commit/15a32fe023038efaa3298d6792997a86b5f0cb0b))
20
+ * **transaction-card:** use walletConnector prop for network/fee instead of primaryWallet [v4 backport] ([#12065](https://github.com/dynamic-labs/dynamic-auth/issues/12065)) ([699c42b](https://github.com/dynamic-labs/dynamic-auth/commit/699c42b876eba7e1b0129eda27fa096ba7e567fc)), closes [#12063](https://github.com/dynamic-labs/dynamic-auth/issues/12063)
21
+ * **waas-svm:** instrument sponsorship retry attempts [v4 backport] ([#12282](https://github.com/dynamic-labs/dynamic-auth/issues/12282)) ([b2f2392](https://github.com/dynamic-labs/dynamic-auth/commit/b2f23929093ebb48214c1ddb65b3e56a58e9f8da))
22
+ * **wallet-connect:** reopen WalletConnect IndexedDB when the browser closes the connection (v4 backport) ([#12263](https://github.com/dynamic-labs/dynamic-auth/issues/12263)) ([4d0105d](https://github.com/dynamic-labs/dynamic-auth/commit/4d0105d2343c5bf75f89382e4be01b75413569e7))
23
+
2
24
  ### [4.96.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.96.2...v4.96.3) (2026-08-19)
3
25
 
4
26
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.96.3";
6
+ var version = "4.97.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.96.3";
2
+ var version = "4.97.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.96.3",
3
+ "version": "4.97.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.96.3",
26
- "@dynamic-labs/logger": "4.96.3",
25
+ "@dynamic-labs/assert-package-version": "4.97.0",
26
+ "@dynamic-labs/logger": "4.97.0",
27
27
  "sharp": "0.35.0",
28
28
  "url": "0.11.0"
29
29
  }
@@ -25,6 +25,11 @@ const FarcasterIcon = Iconic.createIconic({
25
25
  iconName: 'farcaster',
26
26
  sourcePath: 'icons/social/farcaster.svg',
27
27
  });
28
+ const GeminiIcon = Iconic.createIconic({
29
+ alt: 'Gemini',
30
+ iconName: 'gemini',
31
+ sourcePath: 'icons/social/gemini.svg',
32
+ });
28
33
  const GithubIcon = Iconic.createIconic({
29
34
  alt: 'Github',
30
35
  iconName: 'github',
@@ -212,6 +217,7 @@ exports.EpicGamesDarkIcon = EpicGamesDarkIcon;
212
217
  exports.EpicGamesIcon = EpicGamesIcon;
213
218
  exports.FacebookIcon = FacebookIcon;
214
219
  exports.FarcasterIcon = FarcasterIcon;
220
+ exports.GeminiIcon = GeminiIcon;
215
221
  exports.GithubDarkIcon = GithubDarkIcon;
216
222
  exports.GithubIcon = GithubIcon;
217
223
  exports.GitlabIcon = GitlabIcon;
@@ -3,6 +3,7 @@ export declare const BitbucketIcon: Iconic;
3
3
  export declare const DiscordIcon: Iconic;
4
4
  export declare const FacebookIcon: Iconic;
5
5
  export declare const FarcasterIcon: Iconic;
6
+ export declare const GeminiIcon: Iconic;
6
7
  export declare const GithubIcon: Iconic;
7
8
  export declare const GithubDarkIcon: Iconic;
8
9
  export declare const GitlabIcon: Iconic;
@@ -21,6 +21,11 @@ const FarcasterIcon = createIconic({
21
21
  iconName: 'farcaster',
22
22
  sourcePath: 'icons/social/farcaster.svg',
23
23
  });
24
+ const GeminiIcon = createIconic({
25
+ alt: 'Gemini',
26
+ iconName: 'gemini',
27
+ sourcePath: 'icons/social/gemini.svg',
28
+ });
24
29
  const GithubIcon = createIconic({
25
30
  alt: 'Github',
26
31
  iconName: 'github',
@@ -197,4 +202,4 @@ const OktaIcon = createIconic({
197
202
  sourcePath: 'icons/social/okta.svg',
198
203
  });
199
204
 
200
- 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 };
205
+ export { AppleDarkSocialIcon, AppleSocialIcon, BinanceSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GeminiIcon, 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 };
package/src/index.cjs CHANGED
@@ -71,6 +71,7 @@ exports.EpicGamesDarkIcon = index$3.EpicGamesDarkIcon;
71
71
  exports.EpicGamesIcon = index$3.EpicGamesIcon;
72
72
  exports.FacebookIcon = index$3.FacebookIcon;
73
73
  exports.FarcasterIcon = index$3.FarcasterIcon;
74
+ exports.GeminiIcon = index$3.GeminiIcon;
74
75
  exports.GithubDarkIcon = index$3.GithubDarkIcon;
75
76
  exports.GithubIcon = index$3.GithubIcon;
76
77
  exports.GitlabIcon = index$3.GitlabIcon;
package/src/index.js CHANGED
@@ -4,7 +4,7 @@ import { version } from '../package.js';
4
4
  export { BraveIcon, ChromeIcon, EdgeIcon, FirefoxIcon, OperaIcon, SafariIcon } from './icons/browsers/index.js';
5
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, TempoIcon, TonIcon, TronIcon, ZkSyncIcon } from './icons/chains/index.js';
6
6
  export { BanxaIcon, CoinbasePayIcon, CryptoDotComIcon, MoonpayIcon } from './icons/onramps/index.js';
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';
7
+ export { AppleDarkSocialIcon, AppleSocialIcon, BinanceSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GeminiIcon, 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, 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, OneAMIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, OylIcon, PasskeysWalletIcon, PeraIcon, PhantomIcon, PontemIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, ShieldIcon, 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';
9
9
  export { AndroidIcon, AppleIcon } from './icons/mobile/index.js';
10
10
  export { ArrowSendIcon, CaptchaWaveIcon, UserProfileIcon } from './icons/misc/index.js';