@graphcommerce/magento-cart-pickup 9.0.0-canary.56 → 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.
- package/CHANGELOG.md +11 -10
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.0.0-canary.57
|
|
4
|
+
|
|
3
5
|
## 9.0.0-canary.56
|
|
4
6
|
|
|
5
7
|
## 9.0.0-canary.55
|
|
@@ -186,8 +188,7 @@
|
|
|
186
188
|
|
|
187
189
|
### Patch Changes
|
|
188
190
|
|
|
189
|
-
- [#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.
|
|
190
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
191
|
+
- [#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))
|
|
191
192
|
|
|
192
193
|
## 8.0.0-canary.100
|
|
193
194
|
|
|
@@ -1424,31 +1425,31 @@
|
|
|
1424
1425
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1425
1426
|
|
|
1426
1427
|
```tsx
|
|
1427
|
-
import { Trans, t } from
|
|
1428
|
+
import { Trans, t } from '@lingui/macro'
|
|
1428
1429
|
|
|
1429
1430
|
function MyComponent() {
|
|
1430
|
-
const foo =
|
|
1431
|
+
const foo = 'bar'
|
|
1431
1432
|
return (
|
|
1432
1433
|
<div aria-label={t`Account ${foo}`}>
|
|
1433
1434
|
<Trans>My Translation {foo}</Trans>
|
|
1434
1435
|
</div>
|
|
1435
|
-
)
|
|
1436
|
+
)
|
|
1436
1437
|
}
|
|
1437
1438
|
```
|
|
1438
1439
|
|
|
1439
1440
|
Needs to be replaced with:
|
|
1440
1441
|
|
|
1441
1442
|
```tsx
|
|
1442
|
-
import { Trans } from
|
|
1443
|
-
import { i18n } from
|
|
1443
|
+
import { Trans } from '@lingui/react'
|
|
1444
|
+
import { i18n } from '@lingui/core'
|
|
1444
1445
|
|
|
1445
1446
|
function MyComponent() {
|
|
1446
|
-
const foo =
|
|
1447
|
+
const foo = 'bar'
|
|
1447
1448
|
return (
|
|
1448
1449
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1449
|
-
<Trans key=
|
|
1450
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1450
1451
|
</div>
|
|
1451
|
-
)
|
|
1452
|
+
)
|
|
1452
1453
|
}
|
|
1453
1454
|
```
|
|
1454
1455
|
|
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": "9.0.0-canary.
|
|
5
|
+
"version": "9.0.0-canary.57",
|
|
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": "^9.0.0-canary.
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
|
17
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
|
18
|
-
"@graphcommerce/graphql-mesh": "^9.0.0-canary.
|
|
19
|
-
"@graphcommerce/image": "^9.0.0-canary.
|
|
20
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
|
21
|
-
"@graphcommerce/magento-cart-shipping-method": "^9.0.0-canary.
|
|
22
|
-
"@graphcommerce/magento-store": "^9.0.0-canary.
|
|
23
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
|
24
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
25
|
-
"@graphcommerce/react-hook-form": "^9.0.0-canary.
|
|
26
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
|
15
|
+
"@graphcommerce/ecommerce-ui": "^9.0.0-canary.57",
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
|
|
17
|
+
"@graphcommerce/graphql": "^9.0.0-canary.57",
|
|
18
|
+
"@graphcommerce/graphql-mesh": "^9.0.0-canary.57",
|
|
19
|
+
"@graphcommerce/image": "^9.0.0-canary.57",
|
|
20
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.57",
|
|
21
|
+
"@graphcommerce/magento-cart-shipping-method": "^9.0.0-canary.57",
|
|
22
|
+
"@graphcommerce/magento-store": "^9.0.0-canary.57",
|
|
23
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.57",
|
|
24
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
|
|
25
|
+
"@graphcommerce/react-hook-form": "^9.0.0-canary.57",
|
|
26
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
|
|
27
27
|
"@lingui/core": "^4.2.1",
|
|
28
28
|
"@lingui/macro": "^4.2.1",
|
|
29
29
|
"@lingui/react": "^4.2.1",
|