@graphcommerce/magento-product-simple 8.0.6-canary.4 → 8.0.7
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 +12 -20
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 8.0.
|
|
3
|
+
## 8.0.7
|
|
4
4
|
|
|
5
|
-
## 8.0.6
|
|
6
|
-
|
|
7
|
-
## 8.0.6-canary.2
|
|
8
|
-
|
|
9
|
-
## 8.0.6-canary.1
|
|
10
|
-
|
|
11
|
-
## 8.0.6-canary.0
|
|
5
|
+
## 8.0.6
|
|
12
6
|
|
|
13
7
|
## 8.0.5
|
|
14
8
|
|
|
@@ -82,8 +76,7 @@
|
|
|
82
76
|
|
|
83
77
|
### Minor Changes
|
|
84
78
|
|
|
85
|
-
- [#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.
|
|
86
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
79
|
+
- [#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))
|
|
87
80
|
|
|
88
81
|
## 8.0.0-canary.100
|
|
89
82
|
|
|
@@ -147,8 +140,7 @@
|
|
|
147
140
|
|
|
148
141
|
### Minor Changes
|
|
149
142
|
|
|
150
|
-
- [#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
|
|
151
|
-
([@Jessevdpoel](https://github.com/Jessevdpoel))
|
|
143
|
+
- [#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))
|
|
152
144
|
|
|
153
145
|
## 8.0.0-canary.70
|
|
154
146
|
|
|
@@ -1244,31 +1236,31 @@
|
|
|
1244
1236
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1245
1237
|
|
|
1246
1238
|
```tsx
|
|
1247
|
-
import { Trans, t } from
|
|
1239
|
+
import { Trans, t } from '@lingui/macro'
|
|
1248
1240
|
|
|
1249
1241
|
function MyComponent() {
|
|
1250
|
-
const foo =
|
|
1242
|
+
const foo = 'bar'
|
|
1251
1243
|
return (
|
|
1252
1244
|
<div aria-label={t`Account ${foo}`}>
|
|
1253
1245
|
<Trans>My Translation {foo}</Trans>
|
|
1254
1246
|
</div>
|
|
1255
|
-
)
|
|
1247
|
+
)
|
|
1256
1248
|
}
|
|
1257
1249
|
```
|
|
1258
1250
|
|
|
1259
1251
|
Needs to be replaced with:
|
|
1260
1252
|
|
|
1261
1253
|
```tsx
|
|
1262
|
-
import { Trans } from
|
|
1263
|
-
import { i18n } from
|
|
1254
|
+
import { Trans } from '@lingui/react'
|
|
1255
|
+
import { i18n } from '@lingui/core'
|
|
1264
1256
|
|
|
1265
1257
|
function MyComponent() {
|
|
1266
|
-
const foo =
|
|
1258
|
+
const foo = 'bar'
|
|
1267
1259
|
return (
|
|
1268
1260
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
|
1269
|
-
<Trans key=
|
|
1261
|
+
<Trans key='My Translation {foo}' values={{ foo }}></Trans>
|
|
1270
1262
|
</div>
|
|
1271
|
-
)
|
|
1263
|
+
)
|
|
1272
1264
|
}
|
|
1273
1265
|
```
|
|
1274
1266
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/magento-product-simple",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.0.
|
|
5
|
+
"version": "8.0.7",
|
|
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.7",
|
|
16
|
+
"@graphcommerce/graphql": "^8.0.7",
|
|
17
|
+
"@graphcommerce/magento-cart": "^8.0.7",
|
|
18
|
+
"@graphcommerce/magento-cart-items": "^8.0.7",
|
|
19
|
+
"@graphcommerce/magento-product": "^8.0.7",
|
|
20
|
+
"@graphcommerce/next-ui": "^8.0.7",
|
|
21
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
|
22
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
|
23
23
|
"@lingui/core": "^4.2.1",
|
|
24
24
|
"@lingui/macro": "^4.2.1",
|
|
25
25
|
"@lingui/react": "^4.2.1",
|