@graphcommerce/magento-cart-shipping-method 9.0.0-canary.55 → 9.0.0-canary.57

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