@automattic/jetpack-components 0.46.0 → 0.47.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 +5 -0
- package/components/gridicon/index.tsx +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
### This is a list detailing changes for the Jetpack RNA Components package releases.
|
|
4
4
|
|
|
5
|
+
## [0.47.0] - 2024-01-18
|
|
6
|
+
### Added
|
|
7
|
+
- My Jetpack: add a Jetpack Manage banner. [#35078]
|
|
8
|
+
|
|
5
9
|
## [0.46.0] - 2024-01-18
|
|
6
10
|
### Changed
|
|
7
11
|
- Use blog ID for links instead of site slug. [#34950]
|
|
@@ -921,6 +925,7 @@
|
|
|
921
925
|
### Changed
|
|
922
926
|
- Update node version requirement to 14.16.1
|
|
923
927
|
|
|
928
|
+
[0.47.0]: https://github.com/Automattic/jetpack-components/compare/0.46.0...0.47.0
|
|
924
929
|
[0.46.0]: https://github.com/Automattic/jetpack-components/compare/0.45.10...0.46.0
|
|
925
930
|
[0.45.10]: https://github.com/Automattic/jetpack-components/compare/0.45.9...0.45.10
|
|
926
931
|
[0.45.9]: https://github.com/Automattic/jetpack-components/compare/0.45.8...0.45.9
|
|
@@ -272,6 +272,12 @@ class Gridicon extends Component< GridiconProps > {
|
|
|
272
272
|
<g id="Layer_1"></g>
|
|
273
273
|
</>
|
|
274
274
|
);
|
|
275
|
+
case 'gridicons-external':
|
|
276
|
+
return (
|
|
277
|
+
<g>
|
|
278
|
+
<path d="M19 13v6c0 1.105-.895 2-2 2H5c-1.105 0-2-.895-2-2V7c0-1.105.895-2 2-2h6v2H5v12h12v-6h2zM13 3v2h4.586l-7.793 7.793 1.414 1.414L19 6.414V11h2V3h-8z" />
|
|
279
|
+
</g>
|
|
280
|
+
);
|
|
275
281
|
}
|
|
276
282
|
}
|
|
277
283
|
|