@automattic/jetpack-components 0.60.0 → 0.61.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 +10 -12
- package/components/gridicon/index.tsx +9 -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.61.0] - 2024-11-18
|
|
6
|
+
### Added
|
|
7
|
+
- Gridicon Component: Add support for help-outline icon. [#39867]
|
|
8
|
+
|
|
5
9
|
## [0.60.0] - 2024-11-14
|
|
6
10
|
### Added
|
|
7
11
|
- Adds tooltips for each ThreatFixerButton state [#40111]
|
|
@@ -17,9 +21,7 @@
|
|
|
17
21
|
|
|
18
22
|
### Changed
|
|
19
23
|
- Add ToggleGroupControl to ThreatsDataViews for easily toggling between Active and Historical threats [#39901]
|
|
20
|
-
- Updated package dependencies. [#39999]
|
|
21
|
-
- Updated package dependencies. [#40000]
|
|
22
|
-
- Updated package dependencies. [#40060]
|
|
24
|
+
- Updated package dependencies. [#39999] [#40000] [#40060]
|
|
23
25
|
|
|
24
26
|
## [0.58.1] - 2024-11-04
|
|
25
27
|
### Added
|
|
@@ -189,9 +191,7 @@
|
|
|
189
191
|
- Social | Wired up confirmation UI with connect button [#37295]
|
|
190
192
|
|
|
191
193
|
### Changed
|
|
192
|
-
- Updated package dependencies. [#37379]
|
|
193
|
-
- Updated package dependencies. [#37380]
|
|
194
|
-
- Updated package dependencies. [#37382]
|
|
194
|
+
- Updated package dependencies. [#37379] [#37380] [#37382]
|
|
195
195
|
|
|
196
196
|
## [0.53.2] - 2024-05-13
|
|
197
197
|
### Added
|
|
@@ -416,8 +416,7 @@
|
|
|
416
416
|
|
|
417
417
|
## [0.42.1] - 2023-09-04
|
|
418
418
|
### Changed
|
|
419
|
-
- Updated package dependencies. [#32803]
|
|
420
|
-
- Updated package dependencies. [#32804]
|
|
419
|
+
- Updated package dependencies. [#32803] [#32804]
|
|
421
420
|
|
|
422
421
|
## [0.42.0] - 2023-09-01
|
|
423
422
|
### Added
|
|
@@ -467,8 +466,7 @@
|
|
|
467
466
|
## [0.40.1] - 2023-07-05
|
|
468
467
|
### Changed
|
|
469
468
|
- Adjust component pricing slider border and box-shadow styling. [#31593]
|
|
470
|
-
- Updated package dependencies. [#31659]
|
|
471
|
-
- Updated package dependencies. [#31661]
|
|
469
|
+
- Updated package dependencies. [#31659] [#31661]
|
|
472
470
|
- Update storybook mdx to use `@storybook/blocks` directly rather than `@storybook/addon-docs`. [#31607]
|
|
473
471
|
|
|
474
472
|
### Fixed
|
|
@@ -746,8 +744,7 @@
|
|
|
746
744
|
- Fix ProductPrice layout for long prices [#26595]
|
|
747
745
|
- IconTooltip: Use click instead of mouseover for summoning [#26457]
|
|
748
746
|
- Refactor props for structure consistency with JetpackLogo component. [#26510]
|
|
749
|
-
- Updated package dependencies. [#26568]
|
|
750
|
-
- Updated package dependencies. [#26583]
|
|
747
|
+
- Updated package dependencies. [#26568] [#26583]
|
|
751
748
|
|
|
752
749
|
### Fixed
|
|
753
750
|
- Components: fix the positio of TOS component of the PricingTable cmp [#26509]
|
|
@@ -1221,6 +1218,7 @@
|
|
|
1221
1218
|
### Changed
|
|
1222
1219
|
- Update node version requirement to 14.16.1
|
|
1223
1220
|
|
|
1221
|
+
[0.61.0]: https://github.com/Automattic/jetpack-components/compare/0.60.0...0.61.0
|
|
1224
1222
|
[0.60.0]: https://github.com/Automattic/jetpack-components/compare/0.59.0...0.60.0
|
|
1225
1223
|
[0.59.0]: https://github.com/Automattic/jetpack-components/compare/0.58.1...0.59.0
|
|
1226
1224
|
[0.58.1]: https://github.com/Automattic/jetpack-components/compare/0.58.0...0.58.1
|
|
@@ -24,6 +24,7 @@ class Gridicon extends Component< GridiconProps > {
|
|
|
24
24
|
'gridicons-calendar',
|
|
25
25
|
'gridicons-cart',
|
|
26
26
|
'gridicons-folder',
|
|
27
|
+
'gridicons-help-outline',
|
|
27
28
|
'gridicons-info',
|
|
28
29
|
'gridicons-info-outline',
|
|
29
30
|
'gridicons-posts',
|
|
@@ -66,6 +67,8 @@ class Gridicon extends Component< GridiconProps > {
|
|
|
66
67
|
return __( 'Toggle search filters.', 'jetpack' );
|
|
67
68
|
case 'gridicons-folder':
|
|
68
69
|
return __( 'Category', 'jetpack' );
|
|
70
|
+
case 'gridicons-help-outline':
|
|
71
|
+
return __( 'Help', 'jetpack' );
|
|
69
72
|
case 'gridicons-info':
|
|
70
73
|
case 'gridicons-info-outline':
|
|
71
74
|
return __( 'Information.', 'jetpack' );
|
|
@@ -181,6 +184,12 @@ class Gridicon extends Component< GridiconProps > {
|
|
|
181
184
|
<path d="M18 19H6c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2h7c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2z" />
|
|
182
185
|
</g>
|
|
183
186
|
);
|
|
187
|
+
case 'gridicons-help-outline':
|
|
188
|
+
return (
|
|
189
|
+
<g>
|
|
190
|
+
<path d="M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 13h-2v2h2v-2zm-1.962-2v-.528c0-.4.082-.74.246-1.017.163-.276.454-.546.87-.808.333-.21.572-.397.717-.565.146-.168.22-.36.22-.577 0-.172-.078-.308-.234-.41-.156-.1-.358-.15-.608-.15-.62 0-1.34.22-2.168.658l-.854-1.67c1.02-.58 2.084-.872 3.194-.872.913 0 1.63.202 2.15.603.52.4.78.948.78 1.64 0 .495-.116.924-.347 1.287-.23.362-.6.705-1.11 1.03-.43.278-.7.48-.807.61-.108.13-.163.282-.163.458V13h-1.885z" />
|
|
191
|
+
</g>
|
|
192
|
+
);
|
|
184
193
|
case 'gridicons-image':
|
|
185
194
|
return (
|
|
186
195
|
<g>
|