@dynamic-labs/iconic 2.0.0-alpha.10 → 2.0.0-alpha.12

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,43 @@
1
1
 
2
+ ## [2.0.0-alpha.12](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2024-03-13)
3
+
4
+
5
+ ### Features
6
+
7
+ * add sign-in with farcaster ([#4947](https://github.com/dynamic-labs/DynamicAuth/issues/4947)) ([3927d24](https://github.com/dynamic-labs/DynamicAuth/commit/3927d24392a8944997ca05431c6ab54757be62d9))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * wallet connect links with query params ([#4948](https://github.com/dynamic-labs/DynamicAuth/issues/4948)) ([0738130](https://github.com/dynamic-labs/DynamicAuth/commit/0738130f82473a197e035b8dd74d996bdbb24c11))
13
+
14
+ ## [2.0.0-alpha.11](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2024-03-12)
15
+
16
+
17
+ ### ⚠ BREAKING CHANGES
18
+
19
+ * rename FetchPublicAddressOpts to GetAddressOpts (#4910)
20
+ * remove use effect in useWalletEventListeners (#4843)
21
+ * rename fetchPublicAddress to getAddress (#4851)
22
+
23
+ ### Features
24
+
25
+ * Add farcaster to iconic ([#4925](https://github.com/dynamic-labs/DynamicAuth/issues/4925)) ([ab282dc](https://github.com/dynamic-labs/DynamicAuth/commit/ab282dc9cdcc0fe11f014d002b056ef4d3b34234))
26
+ * use transaction confirmation ui on signAndSendTransaction for solana embedded wallets ([#4909](https://github.com/dynamic-labs/DynamicAuth/issues/4909)) ([d77e89e](https://github.com/dynamic-labs/DynamicAuth/commit/d77e89ecff9dfc67ed48537f541a9995b2662e1e))
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * add back connect button css variables ([#4922](https://github.com/dynamic-labs/DynamicAuth/issues/4922)) ([1119d62](https://github.com/dynamic-labs/DynamicAuth/commit/1119d62c2db6504952393060930524c3823e4a00))
32
+ * keep adaptive wallet list height ([#4916](https://github.com/dynamic-labs/DynamicAuth/issues/4916)) ([62aa54e](https://github.com/dynamic-labs/DynamicAuth/commit/62aa54e81d563082f7aa519f2ff2b5132e7dd83d))
33
+ * pass account and chain to walletClient ([#4865](https://github.com/dynamic-labs/DynamicAuth/issues/4865)) ([17a143f](https://github.com/dynamic-labs/DynamicAuth/commit/17a143f87a77e56227b2517038c20cf67f8e08bf))
34
+ * update walletbook to fix zerion in-app browser detection issue ([#4917](https://github.com/dynamic-labs/DynamicAuth/issues/4917)) ([48b05d7](https://github.com/dynamic-labs/DynamicAuth/commit/48b05d78e4f7add09787b64505723d4eca34d3e0))
35
+
36
+
37
+ * remove use effect in useWalletEventListeners ([#4843](https://github.com/dynamic-labs/DynamicAuth/issues/4843)) ([2e948bb](https://github.com/dynamic-labs/DynamicAuth/commit/2e948bbca0dbdceab7460a844d0988eacd47f581))
38
+ * rename fetchPublicAddress to getAddress ([#4851](https://github.com/dynamic-labs/DynamicAuth/issues/4851)) ([668e7dd](https://github.com/dynamic-labs/DynamicAuth/commit/668e7dd62e1f323dbe64209b5c59c2cd0ee45d61))
39
+ * rename FetchPublicAddressOpts to GetAddressOpts ([#4910](https://github.com/dynamic-labs/DynamicAuth/issues/4910)) ([e5e4b1b](https://github.com/dynamic-labs/DynamicAuth/commit/e5e4b1b08a4e010afa44f8abb0bf6af7f236a86a))
40
+
2
41
  ## [2.0.0-alpha.10](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.9...v2.0.0-alpha.10) (2024-03-08)
3
42
 
4
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "2.0.0-alpha.10",
3
+ "version": "2.0.0-alpha.12",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -30,7 +30,7 @@
30
30
  "react-dom": "^18.0.0"
31
31
  },
32
32
  "dependencies": {
33
- "@dynamic-labs/logger": "2.0.0-alpha.10",
33
+ "@dynamic-labs/logger": "2.0.0-alpha.12",
34
34
  "sharp": "0.33.2"
35
35
  }
36
36
  }
@@ -19,6 +19,11 @@ const FacebookIcon = Iconic.createIconic({
19
19
  iconName: 'facebook',
20
20
  sourcePath: 'icons/social/facebook.svg',
21
21
  });
22
+ const FarcasterIcon = Iconic.createIconic({
23
+ alt: 'Farcaster',
24
+ iconName: 'farcaster',
25
+ sourcePath: 'icons/social/farcaster.svg',
26
+ });
22
27
  const GithubIcon = Iconic.createIconic({
23
28
  alt: 'Github',
24
29
  iconName: 'github',
@@ -132,6 +137,7 @@ exports.CoinbaseSocialDarkIcon = CoinbaseSocialDarkIcon;
132
137
  exports.CoinbaseSocialIcon = CoinbaseSocialIcon;
133
138
  exports.DiscordIcon = DiscordIcon;
134
139
  exports.FacebookIcon = FacebookIcon;
140
+ exports.FarcasterIcon = FarcasterIcon;
135
141
  exports.GithubDarkIcon = GithubDarkIcon;
136
142
  exports.GithubIcon = GithubIcon;
137
143
  exports.GitlabIcon = GitlabIcon;
@@ -2,6 +2,7 @@ import { type Iconic } from '../../Iconic';
2
2
  export declare const BitbucketIcon: Iconic;
3
3
  export declare const DiscordIcon: Iconic;
4
4
  export declare const FacebookIcon: Iconic;
5
+ export declare const FarcasterIcon: Iconic;
5
6
  export declare const GithubIcon: Iconic;
6
7
  export declare const GithubDarkIcon: Iconic;
7
8
  export declare const GitlabIcon: Iconic;
@@ -15,6 +15,11 @@ const FacebookIcon = createIconic({
15
15
  iconName: 'facebook',
16
16
  sourcePath: 'icons/social/facebook.svg',
17
17
  });
18
+ const FarcasterIcon = createIconic({
19
+ alt: 'Farcaster',
20
+ iconName: 'farcaster',
21
+ sourcePath: 'icons/social/farcaster.svg',
22
+ });
18
23
  const GithubIcon = createIconic({
19
24
  alt: 'Github',
20
25
  iconName: 'github',
@@ -121,4 +126,4 @@ const OnePasswordDarkIcon = createIconic({
121
126
  sourcePath: 'icons/social/onePassword-dark.svg',
122
127
  });
123
128
 
124
- export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, FacebookIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, TelegramIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon };
129
+ export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, TelegramIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon };
package/src/index.cjs CHANGED
@@ -112,6 +112,7 @@ exports.CoinbaseSocialDarkIcon = index$4.CoinbaseSocialDarkIcon;
112
112
  exports.CoinbaseSocialIcon = index$4.CoinbaseSocialIcon;
113
113
  exports.DiscordIcon = index$4.DiscordIcon;
114
114
  exports.FacebookIcon = index$4.FacebookIcon;
115
+ exports.FarcasterIcon = index$4.FarcasterIcon;
115
116
  exports.GithubDarkIcon = index$4.GithubDarkIcon;
116
117
  exports.GithubIcon = index$4.GithubIcon;
117
118
  exports.GitlabIcon = index$4.GitlabIcon;
package/src/index.js CHANGED
@@ -2,7 +2,7 @@ export { BraveIcon, ChromeIcon, EdgeIcon, FirefoxIcon, OperaIcon, SafariIcon } f
2
2
  export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SolanaIcon, StarknetIcon, ZkSyncIcon } from './icons/chains/index.js';
3
3
  export { ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitPayIcon, BloctoIcon, BraavosIcon, Coin90Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FortmaticIcon, FrameIcon, GamestopIcon, GlowIcon, ImTokenWallet, InjectedWalletIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, MagicEdenIcon, MagicLinkIcon, MaticIcon, MetaMaskIcon, MissingIcon, MyalgoIcon, OkxIcon, OmniIcon, OneInchIcon, OpeanSeaIcon, PeraIcon, PhantomIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SlopeIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon } from './icons/wallets/index.js';
4
4
  export { AndroidIcon, AppleIcon } from './icons/mobile/index.js';
5
- export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, FacebookIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, TelegramIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
5
+ export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, TelegramIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
6
6
  export { ArrowSendIcon, CaptchaWaveIcon, UserProfileIcon } from './icons/misc/index.js';
7
7
  export { SocialIcon } from './components/SocialIcon.js';
8
8
  export { getSocialIcon } from './components/getSocialIcon.js';