@graphcommerce/magento-product-virtual 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 +14 -12
- package/package.json +9 -9
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
|
### Minor Changes
|
|
188
192
|
|
|
189
|
-
- [#2099](https://github.com/graphcommerce-org/graphcommerce/pull/2099) [`ff796b8`](https://github.com/graphcommerce-org/graphcommerce/commit/ff796b838fae6cb5e35b101500133b0235a8677d) - Support for all customizable product options (except file upload) on the product pages and in the cart.
|
|
190
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
193
|
+
- [#2099](https://github.com/graphcommerce-org/graphcommerce/pull/2099) [`ff796b8`](https://github.com/graphcommerce-org/graphcommerce/commit/ff796b838fae6cb5e35b101500133b0235a8677d) - Support for all customizable product options (except file upload) on the product pages and in the cart. ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
191
194
|
|
|
192
195
|
## 8.0.0-canary.100
|
|
193
196
|
|
|
@@ -251,8 +254,7 @@
|
|
|
251
254
|
|
|
252
255
|
### Minor Changes
|
|
253
256
|
|
|
254
|
-
- [#2099](https://github.com/graphcommerce-org/graphcommerce/pull/2099) [`ff796b8`](https://github.com/graphcommerce-org/graphcommerce/commit/ff796b838fae6cb5e35b101500133b0235a8677d) - Created UI for all customizable options except for the file upload customizable option
|
|
255
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
257
|
+
- [#2099](https://github.com/graphcommerce-org/graphcommerce/pull/2099) [`ff796b8`](https://github.com/graphcommerce-org/graphcommerce/commit/ff796b838fae6cb5e35b101500133b0235a8677d) - Created UI for all customizable options except for the file upload customizable option ([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
256
258
|
|
|
257
259
|
## 8.0.0-canary.70
|
|
258
260
|
|
|
@@ -1350,31 +1352,31 @@
|
|
|
1350
1352
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1351
1353
|
|
|
1352
1354
|
```tsx
|
|
1353
|
-
import { Trans, t } from
|
|
1355
|
+
import { Trans, t } from '@lingui/macro'
|
|
1354
1356
|
|
|
1355
1357
|
function MyComponent() {
|
|
1356
|
-
const foo =
|
|
1358
|
+
const foo = 'bar'
|
|
1357
1359
|
return (
|
|
1358
1360
|
<div aria-label={t`Account ${foo}`}>
|
|
1359
1361
|
<Trans>My Translation {foo}</Trans>
|
|
1360
1362
|
</div>
|
|
1361
|
-
)
|
|
1363
|
+
)
|
|
1362
1364
|
}
|
|
1363
1365
|
```
|
|
1364
1366
|
|
|
1365
1367
|
Needs to be replaced with:
|
|
1366
1368
|
|
|
1367
1369
|
```tsx
|
|
1368
|
-
import { Trans } from
|
|
1369
|
-
import { i18n } from
|
|
1370
|
+
import { Trans } from '@lingui/react'
|
|
1371
|
+
import { i18n } from '@lingui/core'
|
|
1370
1372
|
|
|
1371
1373
|
function MyComponent() {
|
|
1372
|
-
const foo =
|
|
1374
|
+
const foo = 'bar'
|
|
1373
1375
|
return (
|
|
1374
1376
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1375
|
-
<Trans key=
|
|
1377
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1376
1378
|
</div>
|
|
1377
|
-
)
|
|
1379
|
+
)
|
|
1378
1380
|
}
|
|
1379
1381
|
```
|
|
1380
1382
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-product-virtual",
|
|
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,14 +12,14 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
|
16
|
-
"@graphcommerce/graphql": "^9.0.0-canary.
|
|
17
|
-
"@graphcommerce/magento-cart": "^9.0.0-canary.
|
|
18
|
-
"@graphcommerce/magento-cart-items": "^9.0.0-canary.
|
|
19
|
-
"@graphcommerce/magento-product": "^9.0.0-canary.
|
|
20
|
-
"@graphcommerce/next-ui": "^9.0.0-canary.
|
|
21
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
22
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.58",
|
|
16
|
+
"@graphcommerce/graphql": "^9.0.0-canary.58",
|
|
17
|
+
"@graphcommerce/magento-cart": "^9.0.0-canary.58",
|
|
18
|
+
"@graphcommerce/magento-cart-items": "^9.0.0-canary.58",
|
|
19
|
+
"@graphcommerce/magento-product": "^9.0.0-canary.58",
|
|
20
|
+
"@graphcommerce/next-ui": "^9.0.0-canary.58",
|
|
21
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.58",
|
|
22
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.58",
|
|
23
23
|
"@lingui/core": "^4.2.1",
|
|
24
24
|
"@lingui/macro": "^4.2.1",
|
|
25
25
|
"@lingui/react": "^4.2.1",
|