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