@graphcommerce/magento-cart-pickup 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -10
  2. package/package.json +13 -13
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,8 +78,7 @@
74
78
 
75
79
  ### Patch Changes
76
80
 
77
- - [#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.
78
- ([@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))
79
82
 
80
83
  ## 8.0.0-canary.100
81
84
 
@@ -1312,31 +1315,31 @@
1312
1315
  All occurences of `<Trans>` and `t` need to be replaced:
1313
1316
 
1314
1317
  ```tsx
1315
- import { Trans, t } from "@lingui/macro";
1318
+ import { Trans, t } from '@lingui/macro'
1316
1319
 
1317
1320
  function MyComponent() {
1318
- const foo = "bar";
1321
+ const foo = 'bar'
1319
1322
  return (
1320
1323
  <div aria-label={t`Account ${foo}`}>
1321
1324
  <Trans>My Translation {foo}</Trans>
1322
1325
  </div>
1323
- );
1326
+ )
1324
1327
  }
1325
1328
  ```
1326
1329
 
1327
1330
  Needs to be replaced with:
1328
1331
 
1329
1332
  ```tsx
1330
- import { Trans } from "@lingui/react";
1331
- import { i18n } from "@lingui/core";
1333
+ import { Trans } from '@lingui/react'
1334
+ import { i18n } from '@lingui/core'
1332
1335
 
1333
1336
  function MyComponent() {
1334
- const foo = "bar";
1337
+ const foo = 'bar'
1335
1338
  return (
1336
1339
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1337
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1340
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1338
1341
  </div>
1339
- );
1342
+ )
1340
1343
  }
1341
1344
  ```
1342
1345
 
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",
5
+ "version": "8.0.8",
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",
16
- "@graphcommerce/eslint-config-pwa": "^8.0.6",
17
- "@graphcommerce/graphql": "^8.0.6",
18
- "@graphcommerce/graphql-mesh": "^8.0.6",
19
- "@graphcommerce/image": "^8.0.6",
20
- "@graphcommerce/magento-cart": "^8.0.6",
21
- "@graphcommerce/magento-cart-shipping-method": "^8.0.6",
22
- "@graphcommerce/magento-store": "^8.0.6",
23
- "@graphcommerce/next-ui": "^8.0.6",
24
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
25
- "@graphcommerce/react-hook-form": "^8.0.6",
26
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
15
+ "@graphcommerce/ecommerce-ui": "^8.0.8",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.8",
17
+ "@graphcommerce/graphql": "^8.0.8",
18
+ "@graphcommerce/graphql-mesh": "^8.0.8",
19
+ "@graphcommerce/image": "^8.0.8",
20
+ "@graphcommerce/magento-cart": "^8.0.8",
21
+ "@graphcommerce/magento-cart-shipping-method": "^8.0.8",
22
+ "@graphcommerce/magento-store": "^8.0.8",
23
+ "@graphcommerce/next-ui": "^8.0.8",
24
+ "@graphcommerce/prettier-config-pwa": "^8.0.8",
25
+ "@graphcommerce/react-hook-form": "^8.0.8",
26
+ "@graphcommerce/typescript-config-pwa": "^8.0.8",
27
27
  "@lingui/core": "^4.2.1",
28
28
  "@lingui/macro": "^4.2.1",
29
29
  "@lingui/react": "^4.2.1",