@graphcommerce/magento-wishlist 8.0.6 → 8.0.7
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 +13 -14
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @graphcommerce/magento-wishlist
|
|
2
2
|
|
|
3
|
+
## 8.0.7
|
|
4
|
+
|
|
3
5
|
## 8.0.6
|
|
4
6
|
|
|
5
7
|
## 8.0.5
|
|
@@ -36,8 +38,7 @@
|
|
|
36
38
|
|
|
37
39
|
### Patch Changes
|
|
38
40
|
|
|
39
|
-
- [#2208](https://github.com/graphcommerce-org/graphcommerce/pull/2208) [`3228ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/3228ba893a8f1b70b99f05492c53d6a0feda80c3) - Images are not spread anymore but instead are contained within the borders of the image container.
|
|
40
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
41
|
+
- [#2208](https://github.com/graphcommerce-org/graphcommerce/pull/2208) [`3228ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/3228ba893a8f1b70b99f05492c53d6a0feda80c3) - Images are not spread anymore but instead are contained within the borders of the image container. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
41
42
|
|
|
42
43
|
## 8.0.3-canary.6
|
|
43
44
|
|
|
@@ -55,8 +56,7 @@
|
|
|
55
56
|
|
|
56
57
|
### Patch Changes
|
|
57
58
|
|
|
58
|
-
- [#2208](https://github.com/graphcommerce-org/graphcommerce/pull/2208) [`3228ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/3228ba893a8f1b70b99f05492c53d6a0feda80c3) - Images are not spread anymore but instead are contained within the borders of the image container.
|
|
59
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
59
|
+
- [#2208](https://github.com/graphcommerce-org/graphcommerce/pull/2208) [`3228ba8`](https://github.com/graphcommerce-org/graphcommerce/commit/3228ba893a8f1b70b99f05492c53d6a0feda80c3) - Images are not spread anymore but instead are contained within the borders of the image container. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
60
60
|
|
|
61
61
|
## 8.0.2
|
|
62
62
|
|
|
@@ -84,8 +84,7 @@
|
|
|
84
84
|
|
|
85
85
|
### Minor Changes
|
|
86
86
|
|
|
87
|
-
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e4`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the `<ActionCardLayout/>`
|
|
88
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
87
|
+
- [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e4`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the `<ActionCardLayout/>` ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
89
88
|
|
|
90
89
|
## 8.0.0-canary.100
|
|
91
90
|
|
|
@@ -1574,31 +1573,31 @@
|
|
|
1574
1573
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1575
1574
|
|
|
1576
1575
|
```tsx
|
|
1577
|
-
import { Trans, t } from
|
|
1576
|
+
import { Trans, t } from '@lingui/macro'
|
|
1578
1577
|
|
|
1579
1578
|
function MyComponent() {
|
|
1580
|
-
const foo =
|
|
1579
|
+
const foo = 'bar'
|
|
1581
1580
|
return (
|
|
1582
1581
|
<div aria-label={t`Account ${foo}`}>
|
|
1583
1582
|
<Trans>My Translation {foo}</Trans>
|
|
1584
1583
|
</div>
|
|
1585
|
-
)
|
|
1584
|
+
)
|
|
1586
1585
|
}
|
|
1587
1586
|
```
|
|
1588
1587
|
|
|
1589
1588
|
Needs to be replaced with:
|
|
1590
1589
|
|
|
1591
1590
|
```tsx
|
|
1592
|
-
import { Trans } from
|
|
1593
|
-
import { i18n } from
|
|
1591
|
+
import { Trans } from '@lingui/react'
|
|
1592
|
+
import { i18n } from '@lingui/core'
|
|
1594
1593
|
|
|
1595
1594
|
function MyComponent() {
|
|
1596
|
-
const foo =
|
|
1595
|
+
const foo = 'bar'
|
|
1597
1596
|
return (
|
|
1598
1597
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1599
|
-
<Trans key=
|
|
1598
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1600
1599
|
</div>
|
|
1601
|
-
)
|
|
1600
|
+
)
|
|
1602
1601
|
}
|
|
1603
1602
|
```
|
|
1604
1603
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-wishlist",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.7",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
6
6
|
"browserslist": [
|
|
@@ -13,20 +13,20 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@graphcommerce/ecommerce-ui": "^8.0.
|
|
17
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
18
|
-
"@graphcommerce/graphql": "^8.0.
|
|
19
|
-
"@graphcommerce/graphql-mesh": "^8.0.
|
|
20
|
-
"@graphcommerce/image": "^8.0.
|
|
21
|
-
"@graphcommerce/magento-cart": "^8.0.
|
|
22
|
-
"@graphcommerce/magento-customer": "^8.0.
|
|
23
|
-
"@graphcommerce/magento-product": "^8.0.
|
|
24
|
-
"@graphcommerce/magento-product-configurable": "^8.0.
|
|
25
|
-
"@graphcommerce/magento-store": "^8.0.
|
|
26
|
-
"@graphcommerce/next-config": "^8.0.
|
|
27
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
28
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
29
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
16
|
+
"@graphcommerce/ecommerce-ui": "^8.0.7",
|
|
17
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.7",
|
|
18
|
+
"@graphcommerce/graphql": "^8.0.7",
|
|
19
|
+
"@graphcommerce/graphql-mesh": "^8.0.7",
|
|
20
|
+
"@graphcommerce/image": "^8.0.7",
|
|
21
|
+
"@graphcommerce/magento-cart": "^8.0.7",
|
|
22
|
+
"@graphcommerce/magento-customer": "^8.0.7",
|
|
23
|
+
"@graphcommerce/magento-product": "^8.0.7",
|
|
24
|
+
"@graphcommerce/magento-product-configurable": "^8.0.7",
|
|
25
|
+
"@graphcommerce/magento-store": "^8.0.7",
|
|
26
|
+
"@graphcommerce/next-config": "^8.0.7",
|
|
27
|
+
"@graphcommerce/next-ui": "^8.0.7",
|
|
28
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
|
29
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
|
30
30
|
"@lingui/core": "^4.2.1",
|
|
31
31
|
"@lingui/macro": "^4.2.1",
|
|
32
32
|
"@lingui/react": "^4.2.1",
|