@graphcommerce/magento-wishlist 1.3.5 → 1.3.6
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,5 +1,19 @@
|
|
|
1
1
|
# @graphcommerce/magento-wishlist
|
|
2
2
|
|
|
3
|
+
## 1.3.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1538](https://github.com/graphcommerce-org/graphcommerce/pull/1538) [`fe4baa42d`](https://github.com/graphcommerce-org/graphcommerce/commit/fe4baa42db0081ed960d62aef688bd36a7ac974f) Thanks [@paales](https://github.com/paales)! - add missing translations
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`fe4baa42d`](https://github.com/graphcommerce-org/graphcommerce/commit/fe4baa42db0081ed960d62aef688bd36a7ac974f)]:
|
|
10
|
+
- @graphcommerce/magento-cart@4.4.8
|
|
11
|
+
- @graphcommerce/magento-customer@4.6.3
|
|
12
|
+
- @graphcommerce/next-ui@4.11.2
|
|
13
|
+
- @graphcommerce/magento-product@4.4.12
|
|
14
|
+
- @graphcommerce/magento-product-configurable@4.1.19
|
|
15
|
+
- @graphcommerce/magento-store@4.2.14
|
|
16
|
+
|
|
3
17
|
## 1.3.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -180,13 +180,13 @@ export function ProductWishlistChipBase(props: ProductWishlistChipProps) {
|
|
|
180
180
|
]}
|
|
181
181
|
title={
|
|
182
182
|
inWishlist
|
|
183
|
-
? i18n._(/* i18n */
|
|
184
|
-
: i18n._(/* i18n */
|
|
183
|
+
? i18n._(/* i18n */ 'Remove from wishlist')
|
|
184
|
+
: i18n._(/* i18n */ 'Add to wishlist')
|
|
185
185
|
}
|
|
186
186
|
aria-label={
|
|
187
187
|
inWishlist
|
|
188
|
-
? i18n._(/* i18n */
|
|
189
|
-
: i18n._(/* i18n */
|
|
188
|
+
? i18n._(/* i18n */ 'Remove from wishlist')
|
|
189
|
+
: i18n._(/* i18n */ 'Add to wishlist')
|
|
190
190
|
}
|
|
191
191
|
>
|
|
192
192
|
{inWishlist ? activeHeart : heart}
|
|
@@ -35,7 +35,7 @@ function WishlistFabContent(props: WishlistFabContentProps) {
|
|
|
35
35
|
<Fab
|
|
36
36
|
color='inherit'
|
|
37
37
|
data-test-id='wishlist-fab'
|
|
38
|
-
aria-label={i18n._(/* i18n */
|
|
38
|
+
aria-label={i18n._(/* i18n */ 'Wishlist')}
|
|
39
39
|
size='large'
|
|
40
40
|
className={classes.root}
|
|
41
41
|
{...FabProps}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-wishlist",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"@graphcommerce/graphql": "3.3.0",
|
|
23
23
|
"@graphcommerce/graphql-mesh": "4.1.4",
|
|
24
24
|
"@graphcommerce/image": "3.1.7",
|
|
25
|
-
"@graphcommerce/magento-cart": "4.4.
|
|
26
|
-
"@graphcommerce/magento-customer": "4.6.
|
|
27
|
-
"@graphcommerce/magento-product": "4.4.
|
|
28
|
-
"@graphcommerce/magento-product-configurable": "4.1.
|
|
29
|
-
"@graphcommerce/magento-store": "4.2.
|
|
30
|
-
"@graphcommerce/next-ui": "4.11.
|
|
25
|
+
"@graphcommerce/magento-cart": "4.4.8",
|
|
26
|
+
"@graphcommerce/magento-customer": "4.6.3",
|
|
27
|
+
"@graphcommerce/magento-product": "4.4.12",
|
|
28
|
+
"@graphcommerce/magento-product-configurable": "4.1.19",
|
|
29
|
+
"@graphcommerce/magento-store": "4.2.14",
|
|
30
|
+
"@graphcommerce/next-ui": "4.11.2"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@lingui/react": "^3.13.2",
|