@graphcommerce/magento-product-virtual 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.
- 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
|
+
## 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
|
### Minor Changes
|
|
76
80
|
|
|
77
|
-
- [#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.
|
|
78
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
81
|
+
- [#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))
|
|
79
82
|
|
|
80
83
|
## 8.0.0-canary.100
|
|
81
84
|
|
|
@@ -139,8 +142,7 @@
|
|
|
139
142
|
|
|
140
143
|
### Minor Changes
|
|
141
144
|
|
|
142
|
-
- [#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
|
|
143
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
145
|
+
- [#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))
|
|
144
146
|
|
|
145
147
|
## 8.0.0-canary.70
|
|
146
148
|
|
|
@@ -1238,31 +1240,31 @@
|
|
|
1238
1240
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1239
1241
|
|
|
1240
1242
|
```tsx
|
|
1241
|
-
import { Trans, t } from
|
|
1243
|
+
import { Trans, t } from '@lingui/macro'
|
|
1242
1244
|
|
|
1243
1245
|
function MyComponent() {
|
|
1244
|
-
const foo =
|
|
1246
|
+
const foo = 'bar'
|
|
1245
1247
|
return (
|
|
1246
1248
|
<div aria-label={t`Account ${foo}`}>
|
|
1247
1249
|
<Trans>My Translation {foo}</Trans>
|
|
1248
1250
|
</div>
|
|
1249
|
-
)
|
|
1251
|
+
)
|
|
1250
1252
|
}
|
|
1251
1253
|
```
|
|
1252
1254
|
|
|
1253
1255
|
Needs to be replaced with:
|
|
1254
1256
|
|
|
1255
1257
|
```tsx
|
|
1256
|
-
import { Trans } from
|
|
1257
|
-
import { i18n } from
|
|
1258
|
+
import { Trans } from '@lingui/react'
|
|
1259
|
+
import { i18n } from '@lingui/core'
|
|
1258
1260
|
|
|
1259
1261
|
function MyComponent() {
|
|
1260
|
-
const foo =
|
|
1262
|
+
const foo = 'bar'
|
|
1261
1263
|
return (
|
|
1262
1264
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1263
|
-
<Trans key=
|
|
1265
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1264
1266
|
</div>
|
|
1265
|
-
)
|
|
1267
|
+
)
|
|
1266
1268
|
}
|
|
1267
1269
|
```
|
|
1268
1270
|
|
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": "8.0.
|
|
5
|
+
"version": "8.0.8",
|
|
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": "^8.0.
|
|
16
|
-
"@graphcommerce/graphql": "^8.0.
|
|
17
|
-
"@graphcommerce/magento-cart": "^8.0.
|
|
18
|
-
"@graphcommerce/magento-cart-items": "^8.0.
|
|
19
|
-
"@graphcommerce/magento-product": "^8.0.
|
|
20
|
-
"@graphcommerce/next-ui": "^8.0.
|
|
21
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
22
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
15
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.8",
|
|
16
|
+
"@graphcommerce/graphql": "^8.0.8",
|
|
17
|
+
"@graphcommerce/magento-cart": "^8.0.8",
|
|
18
|
+
"@graphcommerce/magento-cart-items": "^8.0.8",
|
|
19
|
+
"@graphcommerce/magento-product": "^8.0.8",
|
|
20
|
+
"@graphcommerce/next-ui": "^8.0.8",
|
|
21
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.8",
|
|
22
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.8",
|
|
23
23
|
"@lingui/core": "^4.2.1",
|
|
24
24
|
"@lingui/macro": "^4.2.1",
|
|
25
25
|
"@lingui/react": "^4.2.1",
|