@graphcommerce/magento-cart-pickup 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.
- package/CHANGELOG.md +13 -10
- package/package.json +13 -13
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
|
|
@@ -184,8 +188,7 @@
|
|
|
184
188
|
|
|
185
189
|
### Patch Changes
|
|
186
190
|
|
|
187
|
-
- [#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.
|
|
188
|
-
([@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))
|
|
189
192
|
|
|
190
193
|
## 8.0.0-canary.100
|
|
191
194
|
|
|
@@ -1422,31 +1425,31 @@
|
|
|
1422
1425
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1423
1426
|
|
|
1424
1427
|
```tsx
|
|
1425
|
-
import { Trans, t } from
|
|
1428
|
+
import { Trans, t } from '@lingui/macro'
|
|
1426
1429
|
|
|
1427
1430
|
function MyComponent() {
|
|
1428
|
-
const foo =
|
|
1431
|
+
const foo = 'bar'
|
|
1429
1432
|
return (
|
|
1430
1433
|
<div aria-label={t`Account ${foo}`}>
|
|
1431
1434
|
<Trans>My Translation {foo}</Trans>
|
|
1432
1435
|
</div>
|
|
1433
|
-
)
|
|
1436
|
+
)
|
|
1434
1437
|
}
|
|
1435
1438
|
```
|
|
1436
1439
|
|
|
1437
1440
|
Needs to be replaced with:
|
|
1438
1441
|
|
|
1439
1442
|
```tsx
|
|
1440
|
-
import { Trans } from
|
|
1441
|
-
import { i18n } from
|
|
1443
|
+
import { Trans } from '@lingui/react'
|
|
1444
|
+
import { i18n } from '@lingui/core'
|
|
1442
1445
|
|
|
1443
1446
|
function MyComponent() {
|
|
1444
|
-
const foo =
|
|
1447
|
+
const foo = 'bar'
|
|
1445
1448
|
return (
|
|
1446
1449
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1447
|
-
<Trans key=
|
|
1450
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1448
1451
|
</div>
|
|
1449
|
-
)
|
|
1452
|
+
)
|
|
1450
1453
|
}
|
|
1451
1454
|
```
|
|
1452
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",
|