@graphcommerce/magento-cart-shipping-method 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 +12 -12
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.7
|
|
4
|
+
|
|
3
5
|
## 8.0.6
|
|
4
6
|
|
|
5
7
|
## 8.0.5
|
|
@@ -74,11 +76,9 @@
|
|
|
74
76
|
|
|
75
77
|
### Patch Changes
|
|
76
78
|
|
|
77
|
-
- [#2093](https://github.com/graphcommerce-org/graphcommerce/pull/2093) [`112b041`](https://github.com/graphcommerce-org/graphcommerce/commit/112b041f01a33fbd521ce3eb3955844f96b29917) - Created a new experimental mutation abort feature inside `useFormGql`. This will allow redundant mutations to be canceled. This is enabled when the `experimental_useV2` prop on the `useFormGql` hook is used.
|
|
78
|
-
([@mikekeehnen](https://github.com/mikekeehnen))
|
|
79
|
+
- [#2093](https://github.com/graphcommerce-org/graphcommerce/pull/2093) [`112b041`](https://github.com/graphcommerce-org/graphcommerce/commit/112b041f01a33fbd521ce3eb3955844f96b29917) - Created a new experimental mutation abort feature inside `useFormGql`. This will allow redundant mutations to be canceled. This is enabled when the `experimental_useV2` prop on the `useFormGql` hook is used. ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
79
80
|
|
|
80
|
-
- [#2115](https://github.com/graphcommerce-org/graphcommerce/pull/2115) [`105a1af`](https://github.com/graphcommerce-org/graphcommerce/commit/105a1af8b820de8873e430ae398f1922d39a9110) - Disabled ripple animations on all ActionCard ‘Select’ and ‘Change’ so the rendering is more subtle during checkout.
|
|
81
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
81
|
+
- [#2115](https://github.com/graphcommerce-org/graphcommerce/pull/2115) [`105a1af`](https://github.com/graphcommerce-org/graphcommerce/commit/105a1af8b820de8873e430ae398f1922d39a9110) - Disabled ripple animations on all ActionCard ‘Select’ and ‘Change’ so the rendering is more subtle during checkout. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
82
82
|
|
|
83
83
|
## 8.0.0-canary.100
|
|
84
84
|
|
|
@@ -1410,31 +1410,31 @@
|
|
|
1410
1410
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1411
1411
|
|
|
1412
1412
|
```tsx
|
|
1413
|
-
import { Trans, t } from
|
|
1413
|
+
import { Trans, t } from '@lingui/macro'
|
|
1414
1414
|
|
|
1415
1415
|
function MyComponent() {
|
|
1416
|
-
const foo =
|
|
1416
|
+
const foo = 'bar'
|
|
1417
1417
|
return (
|
|
1418
1418
|
<div aria-label={t`Account ${foo}`}>
|
|
1419
1419
|
<Trans>My Translation {foo}</Trans>
|
|
1420
1420
|
</div>
|
|
1421
|
-
)
|
|
1421
|
+
)
|
|
1422
1422
|
}
|
|
1423
1423
|
```
|
|
1424
1424
|
|
|
1425
1425
|
Needs to be replaced with:
|
|
1426
1426
|
|
|
1427
1427
|
```tsx
|
|
1428
|
-
import { Trans } from
|
|
1429
|
-
import { i18n } from
|
|
1428
|
+
import { Trans } from '@lingui/react'
|
|
1429
|
+
import { i18n } from '@lingui/core'
|
|
1430
1430
|
|
|
1431
1431
|
function MyComponent() {
|
|
1432
|
-
const foo =
|
|
1432
|
+
const foo = 'bar'
|
|
1433
1433
|
return (
|
|
1434
1434
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1435
|
-
<Trans key=
|
|
1435
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1436
1436
|
</div>
|
|
1437
|
-
)
|
|
1437
|
+
)
|
|
1438
1438
|
}
|
|
1439
1439
|
```
|
|
1440
1440
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-cart-shipping-method",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.0.
|
|
5
|
+
"version": "8.0.7",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
16
|
-
"@graphcommerce/framer-scroller": "^8.0.
|
|
17
|
-
"@graphcommerce/graphql": "^8.0.
|
|
18
|
-
"@graphcommerce/image": "^8.0.
|
|
19
|
-
"@graphcommerce/magento-cart": "^8.0.
|
|
20
|
-
"@graphcommerce/magento-cart-shipping-address": "^8.0.
|
|
21
|
-
"@graphcommerce/magento-store": "^8.0.
|
|
22
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
23
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
24
|
-
"@graphcommerce/react-hook-form": "^8.0.
|
|
25
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.7",
|
|
16
|
+
"@graphcommerce/framer-scroller": "^8.0.7",
|
|
17
|
+
"@graphcommerce/graphql": "^8.0.7",
|
|
18
|
+
"@graphcommerce/image": "^8.0.7",
|
|
19
|
+
"@graphcommerce/magento-cart": "^8.0.7",
|
|
20
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.0.7",
|
|
21
|
+
"@graphcommerce/magento-store": "^8.0.7",
|
|
22
|
+
"@graphcommerce/next-ui": "^8.0.7",
|
|
23
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
|
24
|
+
"@graphcommerce/react-hook-form": "^8.0.7",
|
|
25
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
|
26
26
|
"@lingui/core": "^4.2.1",
|
|
27
27
|
"@lingui/macro": "^4.2.1",
|
|
28
28
|
"@lingui/react": "^4.2.1",
|