@dynamic-labs/iconic 3.4.3 → 3.4.5
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 +14 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +3 -3
- package/src/icons/social/index.cjs +42 -0
- package/src/icons/social/index.d.ts +7 -0
- package/src/icons/social/index.js +36 -1
- package/src/index.cjs +7 -0
- package/src/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
### [3.4.5](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.4...v3.4.5) (2024-10-30)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add support for epicgames social ([#7222](https://github.com/dynamic-labs/DynamicAuth/issues/7222)) ([f34f027](https://github.com/dynamic-labs/DynamicAuth/commit/f34f02738a4d163792ff457dfe053335a4d57328))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* show connect view when user selects a wallet to connect with ([#7211](https://github.com/dynamic-labs/DynamicAuth/issues/7211)) ([c7d3ab0](https://github.com/dynamic-labs/DynamicAuth/commit/c7d3ab00d4ced00128e0e7bde908165707a15a5c))
|
|
13
|
+
|
|
14
|
+
### [3.4.4](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.3...v3.4.4) (2024-10-24)
|
|
15
|
+
|
|
2
16
|
### [3.4.3](https://github.com/dynamic-labs/DynamicAuth/compare/v3.4.2...v3.4.3) (2024-10-23)
|
|
3
17
|
|
|
4
18
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/iconic",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"react-dom": "^18.0.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@dynamic-labs/assert-package-version": "3.4.
|
|
34
|
-
"@dynamic-labs/logger": "3.4.
|
|
33
|
+
"@dynamic-labs/assert-package-version": "3.4.5",
|
|
34
|
+
"@dynamic-labs/logger": "3.4.5",
|
|
35
35
|
"sharp": "0.33.2"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -140,6 +140,41 @@ const EpicGamesDarkIcon = Iconic.createIconic({
|
|
|
140
140
|
iconName: 'epicgames-dark',
|
|
141
141
|
sourcePath: 'icons/social/epicgames-dark.svg',
|
|
142
142
|
});
|
|
143
|
+
const SpotifyIcon = Iconic.createIconic({
|
|
144
|
+
alt: 'spotify',
|
|
145
|
+
iconName: 'spotify',
|
|
146
|
+
sourcePath: 'icons/social/spotify.svg',
|
|
147
|
+
});
|
|
148
|
+
const SpotifyDarkIcon = Iconic.createIconic({
|
|
149
|
+
alt: 'spotify-dark',
|
|
150
|
+
iconName: 'spotify-dark',
|
|
151
|
+
sourcePath: 'icons/social/spotify-dark.svg',
|
|
152
|
+
});
|
|
153
|
+
const SteamIcon = Iconic.createIconic({
|
|
154
|
+
alt: 'steam',
|
|
155
|
+
iconName: 'steam',
|
|
156
|
+
sourcePath: 'icons/social/steam.svg',
|
|
157
|
+
});
|
|
158
|
+
const SteamDarkIcon = Iconic.createIconic({
|
|
159
|
+
alt: 'steam-dark',
|
|
160
|
+
iconName: 'steam-dark',
|
|
161
|
+
sourcePath: 'icons/social/steam-dark.svg',
|
|
162
|
+
});
|
|
163
|
+
const TikTokIcon = Iconic.createIconic({
|
|
164
|
+
alt: 'tiktok',
|
|
165
|
+
iconName: 'tiktok',
|
|
166
|
+
sourcePath: 'icons/social/tiktok.svg',
|
|
167
|
+
});
|
|
168
|
+
const TikTokDarkIcon = Iconic.createIconic({
|
|
169
|
+
alt: 'tiktok-dark',
|
|
170
|
+
iconName: 'tiktok-dark',
|
|
171
|
+
sourcePath: 'icons/social/tiktok-dark.svg',
|
|
172
|
+
});
|
|
173
|
+
const LineIcon = Iconic.createIconic({
|
|
174
|
+
alt: 'line',
|
|
175
|
+
iconName: 'line',
|
|
176
|
+
sourcePath: 'icons/social/line.svg',
|
|
177
|
+
});
|
|
143
178
|
|
|
144
179
|
exports.AppleDarkSocialIcon = AppleDarkSocialIcon;
|
|
145
180
|
exports.AppleSocialIcon = AppleSocialIcon;
|
|
@@ -157,12 +192,19 @@ exports.GitlabIcon = GitlabIcon;
|
|
|
157
192
|
exports.GoogleIcon = GoogleIcon;
|
|
158
193
|
exports.HelpdeskIcon = HelpdeskIcon;
|
|
159
194
|
exports.InstagramIcon = InstagramIcon;
|
|
195
|
+
exports.LineIcon = LineIcon;
|
|
160
196
|
exports.LinkedinIcon = LinkedinIcon;
|
|
161
197
|
exports.MicrosoftIcon = MicrosoftIcon;
|
|
162
198
|
exports.OnePasswordDarkIcon = OnePasswordDarkIcon;
|
|
163
199
|
exports.OnePasswordIcon = OnePasswordIcon;
|
|
164
200
|
exports.SlackIcon = SlackIcon;
|
|
201
|
+
exports.SpotifyDarkIcon = SpotifyDarkIcon;
|
|
202
|
+
exports.SpotifyIcon = SpotifyIcon;
|
|
203
|
+
exports.SteamDarkIcon = SteamDarkIcon;
|
|
204
|
+
exports.SteamIcon = SteamIcon;
|
|
165
205
|
exports.TelegramIcon = TelegramIcon;
|
|
206
|
+
exports.TikTokDarkIcon = TikTokDarkIcon;
|
|
207
|
+
exports.TikTokIcon = TikTokIcon;
|
|
166
208
|
exports.TwitchDarkIcon = TwitchDarkIcon;
|
|
167
209
|
exports.TwitchIcon = TwitchIcon;
|
|
168
210
|
exports.TwitterDarkIcon = TwitterDarkIcon;
|
|
@@ -26,3 +26,10 @@ export declare const OnePasswordIcon: Iconic;
|
|
|
26
26
|
export declare const OnePasswordDarkIcon: Iconic;
|
|
27
27
|
export declare const EpicGamesIcon: Iconic;
|
|
28
28
|
export declare const EpicGamesDarkIcon: Iconic;
|
|
29
|
+
export declare const SpotifyIcon: Iconic;
|
|
30
|
+
export declare const SpotifyDarkIcon: Iconic;
|
|
31
|
+
export declare const SteamIcon: Iconic;
|
|
32
|
+
export declare const SteamDarkIcon: Iconic;
|
|
33
|
+
export declare const TikTokIcon: Iconic;
|
|
34
|
+
export declare const TikTokDarkIcon: Iconic;
|
|
35
|
+
export declare const LineIcon: Iconic;
|
|
@@ -136,5 +136,40 @@ const EpicGamesDarkIcon = createIconic({
|
|
|
136
136
|
iconName: 'epicgames-dark',
|
|
137
137
|
sourcePath: 'icons/social/epicgames-dark.svg',
|
|
138
138
|
});
|
|
139
|
+
const SpotifyIcon = createIconic({
|
|
140
|
+
alt: 'spotify',
|
|
141
|
+
iconName: 'spotify',
|
|
142
|
+
sourcePath: 'icons/social/spotify.svg',
|
|
143
|
+
});
|
|
144
|
+
const SpotifyDarkIcon = createIconic({
|
|
145
|
+
alt: 'spotify-dark',
|
|
146
|
+
iconName: 'spotify-dark',
|
|
147
|
+
sourcePath: 'icons/social/spotify-dark.svg',
|
|
148
|
+
});
|
|
149
|
+
const SteamIcon = createIconic({
|
|
150
|
+
alt: 'steam',
|
|
151
|
+
iconName: 'steam',
|
|
152
|
+
sourcePath: 'icons/social/steam.svg',
|
|
153
|
+
});
|
|
154
|
+
const SteamDarkIcon = createIconic({
|
|
155
|
+
alt: 'steam-dark',
|
|
156
|
+
iconName: 'steam-dark',
|
|
157
|
+
sourcePath: 'icons/social/steam-dark.svg',
|
|
158
|
+
});
|
|
159
|
+
const TikTokIcon = createIconic({
|
|
160
|
+
alt: 'tiktok',
|
|
161
|
+
iconName: 'tiktok',
|
|
162
|
+
sourcePath: 'icons/social/tiktok.svg',
|
|
163
|
+
});
|
|
164
|
+
const TikTokDarkIcon = createIconic({
|
|
165
|
+
alt: 'tiktok-dark',
|
|
166
|
+
iconName: 'tiktok-dark',
|
|
167
|
+
sourcePath: 'icons/social/tiktok-dark.svg',
|
|
168
|
+
});
|
|
169
|
+
const LineIcon = createIconic({
|
|
170
|
+
alt: 'line',
|
|
171
|
+
iconName: 'line',
|
|
172
|
+
sourcePath: 'icons/social/line.svg',
|
|
173
|
+
});
|
|
139
174
|
|
|
140
|
-
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, TelegramIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon };
|
|
175
|
+
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon };
|
package/src/index.cjs
CHANGED
|
@@ -132,12 +132,19 @@ exports.GitlabIcon = index$4.GitlabIcon;
|
|
|
132
132
|
exports.GoogleIcon = index$4.GoogleIcon;
|
|
133
133
|
exports.HelpdeskIcon = index$4.HelpdeskIcon;
|
|
134
134
|
exports.InstagramIcon = index$4.InstagramIcon;
|
|
135
|
+
exports.LineIcon = index$4.LineIcon;
|
|
135
136
|
exports.LinkedinIcon = index$4.LinkedinIcon;
|
|
136
137
|
exports.MicrosoftIcon = index$4.MicrosoftIcon;
|
|
137
138
|
exports.OnePasswordDarkIcon = index$4.OnePasswordDarkIcon;
|
|
138
139
|
exports.OnePasswordIcon = index$4.OnePasswordIcon;
|
|
139
140
|
exports.SlackIcon = index$4.SlackIcon;
|
|
141
|
+
exports.SpotifyDarkIcon = index$4.SpotifyDarkIcon;
|
|
142
|
+
exports.SpotifyIcon = index$4.SpotifyIcon;
|
|
143
|
+
exports.SteamDarkIcon = index$4.SteamDarkIcon;
|
|
144
|
+
exports.SteamIcon = index$4.SteamIcon;
|
|
140
145
|
exports.TelegramIcon = index$4.TelegramIcon;
|
|
146
|
+
exports.TikTokDarkIcon = index$4.TikTokDarkIcon;
|
|
147
|
+
exports.TikTokIcon = index$4.TikTokIcon;
|
|
141
148
|
exports.TwitchDarkIcon = index$4.TwitchDarkIcon;
|
|
142
149
|
exports.TwitchIcon = index$4.TwitchIcon;
|
|
143
150
|
exports.TwitterDarkIcon = index$4.TwitterDarkIcon;
|
package/src/index.js
CHANGED
|
@@ -5,7 +5,7 @@ export { BraveIcon, ChromeIcon, EdgeIcon, FirefoxIcon, OperaIcon, SafariIcon } f
|
|
|
5
5
|
export { AlgorandIcon, ArbitrumIcon, AuroraIcon, AxelarIcon, BaseChainIcon, BerachainIcon, BitcoinIcon, BnbIcon, CosmosIcon, EthereumIcon, FlowIcon, GnosisIcon, GoerliIcon, OptimismIcon, OsmosisIcon, PalmIcon, PolygonIcon, SolanaIcon, StarknetIcon, ZkSyncIcon } from './icons/chains/index.js';
|
|
6
6
|
export { AmbireIcon, ArgentMobile, ArgentWebWallet, ArgentXIcon, BackpackIcon, BinanceIcon, BitGetWalletIcon, BitPayIcon, BloctoIcon, BraavosIcon, CloverWalletIcon, Coin98Icon, CoinbaseIcon, CoinbaseWaaSIcon, CryptoIcon, DapperIcon, DawnIcon, DefaultIcon, EmailSignIcon, ExodusIcon, FireblocksIcon, FortmaticIcon, FrameIcon, GamestopIcon, GlowIcon, ImTokenWallet, InjectedWalletIcon, KeplrIcon, LeatherIcon, LedgerIcon, LilicoIcon, LinenIcon, MagicEdenIcon, MagicLinkIcon, MathWalletIcon, MaticIcon, MetaMaskIcon, MetaMaskStarknetIcon, MissingIcon, MyalgoIcon, NightlyIcon, OkxIcon, OmniIcon, OneInchIcon, OneKeyIcon, OpeanSeaIcon, PeraIcon, PhantomIcon, RabbyIcon, RainbowIcon, SafeIcon, SequenceIcon, SignInWithEmailIcon, SmartWalletIcon, SolflareIcon, SpotIcon, StrokeIcon, SuperbIcon, TallyCashIcon, TerraIcon, TorusIcon, TrustIcon, TurnkeyIcon, UnisatIcon, UnstoppableIcon, VenlyIcon, WalletConnectIcon, XverseEdenIcon, ZengoIcon, ZeroDevIcon } from './icons/wallets/index.js';
|
|
7
7
|
export { AndroidIcon, AppleIcon } from './icons/mobile/index.js';
|
|
8
|
-
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, TelegramIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
|
|
8
|
+
export { AppleDarkSocialIcon, AppleSocialIcon, BitbucketIcon, CoinbaseSocialDarkIcon, CoinbaseSocialIcon, DiscordIcon, EpicGamesDarkIcon, EpicGamesIcon, FacebookIcon, FarcasterIcon, GithubDarkIcon, GithubIcon, GitlabIcon, GoogleIcon, HelpdeskIcon, InstagramIcon, LineIcon, LinkedinIcon, MicrosoftIcon, OnePasswordDarkIcon, OnePasswordIcon, SlackIcon, SpotifyDarkIcon, SpotifyIcon, SteamDarkIcon, SteamIcon, TelegramIcon, TikTokDarkIcon, TikTokIcon, TwitchDarkIcon, TwitchIcon, TwitterDarkIcon, TwitterIcon, YouTubeIcon } from './icons/social/index.js';
|
|
9
9
|
export { ArrowSendIcon, CaptchaWaveIcon, UserProfileIcon } from './icons/misc/index.js';
|
|
10
10
|
export { SocialIcon } from './components/SocialIcon.js';
|
|
11
11
|
export { getSocialIcon } from './components/getSocialIcon.js';
|