@graphcommerce/magento-cart-shipping-method 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 +14 -12
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.0.8
|
|
4
|
+
|
|
5
|
+
## 8.0.7
|
|
6
|
+
|
|
3
7
|
## 8.0.6
|
|
4
8
|
|
|
5
9
|
## 8.0.5
|
|
@@ -74,11 +78,9 @@
|
|
|
74
78
|
|
|
75
79
|
### Patch Changes
|
|
76
80
|
|
|
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))
|
|
81
|
+
- [#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
82
|
|
|
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))
|
|
83
|
+
- [#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
84
|
|
|
83
85
|
## 8.0.0-canary.100
|
|
84
86
|
|
|
@@ -1410,31 +1412,31 @@
|
|
|
1410
1412
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1411
1413
|
|
|
1412
1414
|
```tsx
|
|
1413
|
-
import { Trans, t } from
|
|
1415
|
+
import { Trans, t } from '@lingui/macro'
|
|
1414
1416
|
|
|
1415
1417
|
function MyComponent() {
|
|
1416
|
-
const foo =
|
|
1418
|
+
const foo = 'bar'
|
|
1417
1419
|
return (
|
|
1418
1420
|
<div aria-label={t`Account ${foo}`}>
|
|
1419
1421
|
<Trans>My Translation {foo}</Trans>
|
|
1420
1422
|
</div>
|
|
1421
|
-
)
|
|
1423
|
+
)
|
|
1422
1424
|
}
|
|
1423
1425
|
```
|
|
1424
1426
|
|
|
1425
1427
|
Needs to be replaced with:
|
|
1426
1428
|
|
|
1427
1429
|
```tsx
|
|
1428
|
-
import { Trans } from
|
|
1429
|
-
import { i18n } from
|
|
1430
|
+
import { Trans } from '@lingui/react'
|
|
1431
|
+
import { i18n } from '@lingui/core'
|
|
1430
1432
|
|
|
1431
1433
|
function MyComponent() {
|
|
1432
|
-
const foo =
|
|
1434
|
+
const foo = 'bar'
|
|
1433
1435
|
return (
|
|
1434
1436
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1435
|
-
<Trans key=
|
|
1437
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1436
1438
|
</div>
|
|
1437
|
-
)
|
|
1439
|
+
)
|
|
1438
1440
|
}
|
|
1439
1441
|
```
|
|
1440
1442
|
|
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.8",
|
|
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.8",
|
|
16
|
+
"@graphcommerce/framer-scroller": "^8.0.8",
|
|
17
|
+
"@graphcommerce/graphql": "^8.0.8",
|
|
18
|
+
"@graphcommerce/image": "^8.0.8",
|
|
19
|
+
"@graphcommerce/magento-cart": "^8.0.8",
|
|
20
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.0.8",
|
|
21
|
+
"@graphcommerce/magento-store": "^8.0.8",
|
|
22
|
+
"@graphcommerce/next-ui": "^8.0.8",
|
|
23
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.8",
|
|
24
|
+
"@graphcommerce/react-hook-form": "^8.0.8",
|
|
25
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.8",
|
|
26
26
|
"@lingui/core": "^4.2.1",
|
|
27
27
|
"@lingui/macro": "^4.2.1",
|
|
28
28
|
"@lingui/react": "^4.2.1",
|