@graphcommerce/magento-wishlist 8.0.6 → 8.0.8
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 +15 -14
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @graphcommerce/magento-wishlist
|
|
2
2
|
|
|
3
|
+
## 8.0.8
|
|
4
|
+
|
|
5
|
+
## 8.0.7
|
|
6
|
+
|
|
3
7
|
## 8.0.6
|
|
4
8
|
|
|
5
9
|
## 8.0.5
|
|
@@ -36,8 +40,7 @@
|
|
|
36
40
|
|
|
37
41
|
### Patch Changes
|
|
38
42
|
|
|
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))
|
|
43
|
+
- [#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
44
|
|
|
42
45
|
## 8.0.3-canary.6
|
|
43
46
|
|
|
@@ -55,8 +58,7 @@
|
|
|
55
58
|
|
|
56
59
|
### Patch Changes
|
|
57
60
|
|
|
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))
|
|
61
|
+
- [#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
62
|
|
|
61
63
|
## 8.0.2
|
|
62
64
|
|
|
@@ -84,8 +86,7 @@
|
|
|
84
86
|
|
|
85
87
|
### Minor Changes
|
|
86
88
|
|
|
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))
|
|
89
|
+
- [#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
90
|
|
|
90
91
|
## 8.0.0-canary.100
|
|
91
92
|
|
|
@@ -1574,31 +1575,31 @@
|
|
|
1574
1575
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1575
1576
|
|
|
1576
1577
|
```tsx
|
|
1577
|
-
import { Trans, t } from
|
|
1578
|
+
import { Trans, t } from '@lingui/macro'
|
|
1578
1579
|
|
|
1579
1580
|
function MyComponent() {
|
|
1580
|
-
const foo =
|
|
1581
|
+
const foo = 'bar'
|
|
1581
1582
|
return (
|
|
1582
1583
|
<div aria-label={t`Account ${foo}`}>
|
|
1583
1584
|
<Trans>My Translation {foo}</Trans>
|
|
1584
1585
|
</div>
|
|
1585
|
-
)
|
|
1586
|
+
)
|
|
1586
1587
|
}
|
|
1587
1588
|
```
|
|
1588
1589
|
|
|
1589
1590
|
Needs to be replaced with:
|
|
1590
1591
|
|
|
1591
1592
|
```tsx
|
|
1592
|
-
import { Trans } from
|
|
1593
|
-
import { i18n } from
|
|
1593
|
+
import { Trans } from '@lingui/react'
|
|
1594
|
+
import { i18n } from '@lingui/core'
|
|
1594
1595
|
|
|
1595
1596
|
function MyComponent() {
|
|
1596
|
-
const foo =
|
|
1597
|
+
const foo = 'bar'
|
|
1597
1598
|
return (
|
|
1598
1599
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1599
|
-
<Trans key=
|
|
1600
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1600
1601
|
</div>
|
|
1601
|
-
)
|
|
1602
|
+
)
|
|
1602
1603
|
}
|
|
1603
1604
|
```
|
|
1604
1605
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/magento-wishlist",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.8",
|
|
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.8",
|
|
17
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.8",
|
|
18
|
+
"@graphcommerce/graphql": "^8.0.8",
|
|
19
|
+
"@graphcommerce/graphql-mesh": "^8.0.8",
|
|
20
|
+
"@graphcommerce/image": "^8.0.8",
|
|
21
|
+
"@graphcommerce/magento-cart": "^8.0.8",
|
|
22
|
+
"@graphcommerce/magento-customer": "^8.0.8",
|
|
23
|
+
"@graphcommerce/magento-product": "^8.0.8",
|
|
24
|
+
"@graphcommerce/magento-product-configurable": "^8.0.8",
|
|
25
|
+
"@graphcommerce/magento-store": "^8.0.8",
|
|
26
|
+
"@graphcommerce/next-config": "^8.0.8",
|
|
27
|
+
"@graphcommerce/next-ui": "^8.0.8",
|
|
28
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.8",
|
|
29
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.8",
|
|
30
30
|
"@lingui/core": "^4.2.1",
|
|
31
31
|
"@lingui/macro": "^4.2.1",
|
|
32
32
|
"@lingui/react": "^4.2.1",
|