@graphcommerce/magento-cart-shipping-method 9.0.0-canary.56 → 9.0.0-canary.58

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -16
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.58
4
+
5
+ ## 9.0.0-canary.57
6
+
3
7
  ## 9.0.0-canary.56
4
8
 
5
9
  ## 9.0.0-canary.55
@@ -78,8 +82,7 @@
78
82
 
79
83
  ### Patch Changes
80
84
 
81
- - [#2264](https://github.com/graphcommerce-org/graphcommerce/pull/2264) [`e5291a4`](https://github.com/graphcommerce-org/graphcommerce/commit/e5291a426c57635f69fb9ec44f4abe150f04c9ed) - prevent rendering 'null' when method_title is not provided
82
- ([@carlocarels90](https://github.com/carlocarels90))
85
+ - [#2264](https://github.com/graphcommerce-org/graphcommerce/pull/2264) [`e5291a4`](https://github.com/graphcommerce-org/graphcommerce/commit/e5291a426c57635f69fb9ec44f4abe150f04c9ed) - prevent rendering 'null' when method_title is not provided ([@carlocarels90](https://github.com/carlocarels90))
83
86
 
84
87
  ## 8.1.0-canary.18
85
88
 
@@ -117,8 +120,7 @@
117
120
 
118
121
  ### Patch Changes
119
122
 
120
- - [#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.
121
- ([@FrankHarland](https://github.com/FrankHarland))
123
+ - [#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. ([@FrankHarland](https://github.com/FrankHarland))
122
124
 
123
125
  ## 8.0.6-canary.1
124
126
 
@@ -196,11 +198,9 @@
196
198
 
197
199
  ### Patch Changes
198
200
 
199
- - [#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.
200
- ([@mikekeehnen](https://github.com/mikekeehnen))
201
+ - [#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))
201
202
 
202
- - [#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.
203
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
203
+ - [#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))
204
204
 
205
205
  ## 8.0.0-canary.100
206
206
 
@@ -1532,31 +1532,31 @@
1532
1532
  All occurences of `<Trans>` and `t` need to be replaced:
1533
1533
 
1534
1534
  ```tsx
1535
- import { Trans, t } from "@lingui/macro";
1535
+ import { Trans, t } from '@lingui/macro'
1536
1536
 
1537
1537
  function MyComponent() {
1538
- const foo = "bar";
1538
+ const foo = 'bar'
1539
1539
  return (
1540
1540
  <div aria-label={t`Account ${foo}`}>
1541
1541
  <Trans>My Translation {foo}</Trans>
1542
1542
  </div>
1543
- );
1543
+ )
1544
1544
  }
1545
1545
  ```
1546
1546
 
1547
1547
  Needs to be replaced with:
1548
1548
 
1549
1549
  ```tsx
1550
- import { Trans } from "@lingui/react";
1551
- import { i18n } from "@lingui/core";
1550
+ import { Trans } from '@lingui/react'
1551
+ import { i18n } from '@lingui/core'
1552
1552
 
1553
1553
  function MyComponent() {
1554
- const foo = "bar";
1554
+ const foo = 'bar'
1555
1555
  return (
1556
1556
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1557
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1557
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1558
1558
  </div>
1559
- );
1559
+ )
1560
1560
  }
1561
1561
  ```
1562
1562
 
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": "9.0.0-canary.56",
5
+ "version": "9.0.0-canary.58",
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": "^9.0.0-canary.56",
16
- "@graphcommerce/framer-scroller": "^9.0.0-canary.56",
17
- "@graphcommerce/graphql": "^9.0.0-canary.56",
18
- "@graphcommerce/image": "^9.0.0-canary.56",
19
- "@graphcommerce/magento-cart": "^9.0.0-canary.56",
20
- "@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.56",
21
- "@graphcommerce/magento-store": "^9.0.0-canary.56",
22
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
23
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
24
- "@graphcommerce/react-hook-form": "^9.0.0-canary.56",
25
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
15
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.58",
16
+ "@graphcommerce/framer-scroller": "^9.0.0-canary.58",
17
+ "@graphcommerce/graphql": "^9.0.0-canary.58",
18
+ "@graphcommerce/image": "^9.0.0-canary.58",
19
+ "@graphcommerce/magento-cart": "^9.0.0-canary.58",
20
+ "@graphcommerce/magento-cart-shipping-address": "^9.0.0-canary.58",
21
+ "@graphcommerce/magento-store": "^9.0.0-canary.58",
22
+ "@graphcommerce/next-ui": "^9.0.0-canary.58",
23
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.58",
24
+ "@graphcommerce/react-hook-form": "^9.0.0-canary.58",
25
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.58",
26
26
  "@lingui/core": "^4.2.1",
27
27
  "@lingui/macro": "^4.2.1",
28
28
  "@lingui/react": "^4.2.1",