@graphcommerce/magento-cart-shipping-method 8.0.6-canary.4 → 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
CHANGED
|
@@ -1,19 +1,8 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 8.0.
|
|
3
|
+
## 8.0.7
|
|
4
4
|
|
|
5
|
-
## 8.0.6
|
|
6
|
-
|
|
7
|
-
## 8.0.6-canary.2
|
|
8
|
-
|
|
9
|
-
### Patch Changes
|
|
10
|
-
|
|
11
|
-
- [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of useFormPersist to the <FormPersist/> component to prevent rerenders.
|
|
12
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
|
13
|
-
|
|
14
|
-
## 8.0.6-canary.1
|
|
15
|
-
|
|
16
|
-
## 8.0.6-canary.0
|
|
5
|
+
## 8.0.6
|
|
17
6
|
|
|
18
7
|
## 8.0.5
|
|
19
8
|
|
|
@@ -87,11 +76,9 @@
|
|
|
87
76
|
|
|
88
77
|
### Patch Changes
|
|
89
78
|
|
|
90
|
-
- [#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.
|
|
91
|
-
([@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))
|
|
92
80
|
|
|
93
|
-
- [#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.
|
|
94
|
-
([@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))
|
|
95
82
|
|
|
96
83
|
## 8.0.0-canary.100
|
|
97
84
|
|
|
@@ -1423,31 +1410,31 @@
|
|
|
1423
1410
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1424
1411
|
|
|
1425
1412
|
```tsx
|
|
1426
|
-
import { Trans, t } from
|
|
1413
|
+
import { Trans, t } from '@lingui/macro'
|
|
1427
1414
|
|
|
1428
1415
|
function MyComponent() {
|
|
1429
|
-
const foo =
|
|
1416
|
+
const foo = 'bar'
|
|
1430
1417
|
return (
|
|
1431
1418
|
<div aria-label={t`Account ${foo}`}>
|
|
1432
1419
|
<Trans>My Translation {foo}</Trans>
|
|
1433
1420
|
</div>
|
|
1434
|
-
)
|
|
1421
|
+
)
|
|
1435
1422
|
}
|
|
1436
1423
|
```
|
|
1437
1424
|
|
|
1438
1425
|
Needs to be replaced with:
|
|
1439
1426
|
|
|
1440
1427
|
```tsx
|
|
1441
|
-
import { Trans } from
|
|
1442
|
-
import { i18n } from
|
|
1428
|
+
import { Trans } from '@lingui/react'
|
|
1429
|
+
import { i18n } from '@lingui/core'
|
|
1443
1430
|
|
|
1444
1431
|
function MyComponent() {
|
|
1445
|
-
const foo =
|
|
1432
|
+
const foo = 'bar'
|
|
1446
1433
|
return (
|
|
1447
1434
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1448
|
-
<Trans key=
|
|
1435
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1449
1436
|
</div>
|
|
1450
|
-
)
|
|
1437
|
+
)
|
|
1451
1438
|
}
|
|
1452
1439
|
```
|
|
1453
1440
|
|
|
@@ -13,9 +13,11 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
FormAutoSubmit,
|
|
15
15
|
FormProvider,
|
|
16
|
+
useFormAutoSubmit,
|
|
16
17
|
useFormCompose,
|
|
17
18
|
UseFormComposeOptions,
|
|
18
19
|
UseFormGraphQlOptions,
|
|
20
|
+
useFormPersist,
|
|
19
21
|
useWatch,
|
|
20
22
|
} from '@graphcommerce/react-hook-form'
|
|
21
23
|
import { i18n } from '@lingui/core'
|
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",
|