@graphcommerce/magento-cart-pickup 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -18
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,14 +1,8 @@
1
1
  # Change Log
2
2
 
3
- ## 8.0.6-canary.4
3
+ ## 8.0.7
4
4
 
5
- ## 8.0.6-canary.3
6
-
7
- ## 8.0.6-canary.2
8
-
9
- ## 8.0.6-canary.1
10
-
11
- ## 8.0.6-canary.0
5
+ ## 8.0.6
12
6
 
13
7
  ## 8.0.5
14
8
 
@@ -82,8 +76,7 @@
82
76
 
83
77
  ### Patch Changes
84
78
 
85
- - [#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.
86
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
79
+ - [#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))
87
80
 
88
81
  ## 8.0.0-canary.100
89
82
 
@@ -1320,31 +1313,31 @@
1320
1313
  All occurences of `<Trans>` and `t` need to be replaced:
1321
1314
 
1322
1315
  ```tsx
1323
- import { Trans, t } from "@lingui/macro";
1316
+ import { Trans, t } from '@lingui/macro'
1324
1317
 
1325
1318
  function MyComponent() {
1326
- const foo = "bar";
1319
+ const foo = 'bar'
1327
1320
  return (
1328
1321
  <div aria-label={t`Account ${foo}`}>
1329
1322
  <Trans>My Translation {foo}</Trans>
1330
1323
  </div>
1331
- );
1324
+ )
1332
1325
  }
1333
1326
  ```
1334
1327
 
1335
1328
  Needs to be replaced with:
1336
1329
 
1337
1330
  ```tsx
1338
- import { Trans } from "@lingui/react";
1339
- import { i18n } from "@lingui/core";
1331
+ import { Trans } from '@lingui/react'
1332
+ import { i18n } from '@lingui/core'
1340
1333
 
1341
1334
  function MyComponent() {
1342
- const foo = "bar";
1335
+ const foo = 'bar'
1343
1336
  return (
1344
1337
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1345
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1338
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1346
1339
  </div>
1347
- );
1340
+ )
1348
1341
  }
1349
1342
  ```
1350
1343
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-cart-pickup",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "8.0.6-canary.4",
5
+ "version": "8.0.7",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,18 +12,18 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^8.0.6-canary.4",
16
- "@graphcommerce/eslint-config-pwa": "^8.0.6-canary.4",
17
- "@graphcommerce/graphql": "^8.0.6-canary.4",
18
- "@graphcommerce/graphql-mesh": "^8.0.6-canary.4",
19
- "@graphcommerce/image": "^8.0.6-canary.4",
20
- "@graphcommerce/magento-cart": "^8.0.6-canary.4",
21
- "@graphcommerce/magento-cart-shipping-method": "^8.0.6-canary.4",
22
- "@graphcommerce/magento-store": "^8.0.6-canary.4",
23
- "@graphcommerce/next-ui": "^8.0.6-canary.4",
24
- "@graphcommerce/prettier-config-pwa": "^8.0.6-canary.4",
25
- "@graphcommerce/react-hook-form": "^8.0.6-canary.4",
26
- "@graphcommerce/typescript-config-pwa": "^8.0.6-canary.4",
15
+ "@graphcommerce/ecommerce-ui": "^8.0.7",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.7",
17
+ "@graphcommerce/graphql": "^8.0.7",
18
+ "@graphcommerce/graphql-mesh": "^8.0.7",
19
+ "@graphcommerce/image": "^8.0.7",
20
+ "@graphcommerce/magento-cart": "^8.0.7",
21
+ "@graphcommerce/magento-cart-shipping-method": "^8.0.7",
22
+ "@graphcommerce/magento-store": "^8.0.7",
23
+ "@graphcommerce/next-ui": "^8.0.7",
24
+ "@graphcommerce/prettier-config-pwa": "^8.0.7",
25
+ "@graphcommerce/react-hook-form": "^8.0.7",
26
+ "@graphcommerce/typescript-config-pwa": "^8.0.7",
27
27
  "@lingui/core": "^4.2.1",
28
28
  "@lingui/macro": "^4.2.1",
29
29
  "@lingui/react": "^4.2.1",