@automattic/jetpack-components 0.42.5 → 0.43.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 +6 -1
- package/components/icons/README.md +3 -0
- package/components/icons/index.tsx +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
### This is a list detailing changes for the Jetpack RNA Components package releases.
|
|
4
4
|
|
|
5
|
+
## [0.43.0] - 2023-10-03
|
|
6
|
+
### Added
|
|
7
|
+
- Added new sharing icon [#33244]
|
|
8
|
+
|
|
5
9
|
## [0.42.5] - 2023-09-25
|
|
6
10
|
### Added
|
|
7
11
|
- Added WhatsApp social icon. [#33074]
|
|
8
|
-
-
|
|
12
|
+
- Added CopyToClipboard component. [#33265]
|
|
9
13
|
|
|
10
14
|
## [0.42.4] - 2023-09-19
|
|
11
15
|
|
|
@@ -826,6 +830,7 @@
|
|
|
826
830
|
### Changed
|
|
827
831
|
- Update node version requirement to 14.16.1
|
|
828
832
|
|
|
833
|
+
[0.43.0]: https://github.com/Automattic/jetpack-components/compare/0.42.5...0.43.0
|
|
829
834
|
[0.42.5]: https://github.com/Automattic/jetpack-components/compare/0.42.4...0.42.5
|
|
830
835
|
[0.42.4]: https://github.com/Automattic/jetpack-components/compare/0.42.3...0.42.4
|
|
831
836
|
[0.42.3]: https://github.com/Automattic/jetpack-components/compare/0.42.2...0.42.3
|
|
@@ -48,6 +48,7 @@ return (
|
|
|
48
48
|
* StarIcon
|
|
49
49
|
* VideopressIcon
|
|
50
50
|
* JetpackIcon
|
|
51
|
+
* ShareIcon
|
|
51
52
|
* FacebookIcon
|
|
52
53
|
* TwitterIcon
|
|
53
54
|
* LinkedinIcon
|
|
@@ -67,6 +68,7 @@ import {
|
|
|
67
68
|
StarIcon,
|
|
68
69
|
VideoPressIcon,
|
|
69
70
|
JetpackIcon,
|
|
71
|
+
ShareIcon,
|
|
70
72
|
FacebookIcon,
|
|
71
73
|
TwitterIcon,
|
|
72
74
|
LinkedinIcon,
|
|
@@ -87,6 +89,7 @@ return (
|
|
|
87
89
|
<StarIcon />
|
|
88
90
|
<VideoPressIcon />
|
|
89
91
|
<JetpackIcon />
|
|
92
|
+
<ShareIcon />
|
|
90
93
|
<FacebookIcon />
|
|
91
94
|
<TwitterIcon />
|
|
92
95
|
<LinkedinIcon />
|
|
@@ -198,6 +198,19 @@ export const JetpackIcon: React.FC< BaseIconProps > = ( {
|
|
|
198
198
|
);
|
|
199
199
|
};
|
|
200
200
|
|
|
201
|
+
export const ShareIcon: React.FC< BaseIconProps > = ( { size = 16, className, color } ) => {
|
|
202
|
+
return (
|
|
203
|
+
<IconWrapper className={ className } size={ size } color={ color } viewBox="0 0 16 16">
|
|
204
|
+
<Path
|
|
205
|
+
fill="#161722"
|
|
206
|
+
fillRule="evenodd"
|
|
207
|
+
d="M8.3 4.66C3.85 5.308.727 9.75.034 13.69l-.02.117c-.137.842.809 1.232 1.446.68 2.013-1.745 3.648-2.475 5.318-2.719a10.482 10.482 0 011.524-.103v2.792c0 .694.82 1.041 1.3.55l6.176-6.307a.79.79 0 00.012-1.088L9.614 1.004C9.14.496 8.301.84 8.301 1.542v3.117zm1.525-1.175v1.85a.773.773 0 01-.654.77l-.655.096c-2.133.311-3.987 1.732-5.295 3.672-.472.7-.854 1.44-1.143 2.18a12.32 12.32 0 011.675-.972c1.58-.75 3.048-.972 4.548-.972h.762a.77.77 0 01.762.779v1.69l4.347-4.44-4.347-4.653z"
|
|
208
|
+
clipRule="evenodd"
|
|
209
|
+
></Path>
|
|
210
|
+
</IconWrapper>
|
|
211
|
+
);
|
|
212
|
+
};
|
|
213
|
+
|
|
201
214
|
/**
|
|
202
215
|
* Wrapper of the Social Icons. Adds a default CSS class.
|
|
203
216
|
*
|
|
@@ -342,6 +355,7 @@ const jetpackIcons = {
|
|
|
342
355
|
star: StarIcon,
|
|
343
356
|
videopress: VideopressIcon,
|
|
344
357
|
jetpack: JetpackIcon,
|
|
358
|
+
share: ShareIcon,
|
|
345
359
|
};
|
|
346
360
|
|
|
347
361
|
const socialIcons = {
|