@graphcommerce/magento-product-virtual 9.0.0-canary.56 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -12
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.57
4
+
3
5
  ## 9.0.0-canary.56
4
6
 
5
7
  ## 9.0.0-canary.55
@@ -186,8 +188,7 @@
186
188
 
187
189
  ### Minor Changes
188
190
 
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))
191
+ - [#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
192
 
192
193
  ## 8.0.0-canary.100
193
194
 
@@ -251,8 +252,7 @@
251
252
 
252
253
  ### Minor Changes
253
254
 
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))
255
+ - [#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
256
 
257
257
  ## 8.0.0-canary.70
258
258
 
@@ -1350,31 +1350,31 @@
1350
1350
  All occurences of `<Trans>` and `t` need to be replaced:
1351
1351
 
1352
1352
  ```tsx
1353
- import { Trans, t } from "@lingui/macro";
1353
+ import { Trans, t } from '@lingui/macro'
1354
1354
 
1355
1355
  function MyComponent() {
1356
- const foo = "bar";
1356
+ const foo = 'bar'
1357
1357
  return (
1358
1358
  <div aria-label={t`Account ${foo}`}>
1359
1359
  <Trans>My Translation {foo}</Trans>
1360
1360
  </div>
1361
- );
1361
+ )
1362
1362
  }
1363
1363
  ```
1364
1364
 
1365
1365
  Needs to be replaced with:
1366
1366
 
1367
1367
  ```tsx
1368
- import { Trans } from "@lingui/react";
1369
- import { i18n } from "@lingui/core";
1368
+ import { Trans } from '@lingui/react'
1369
+ import { i18n } from '@lingui/core'
1370
1370
 
1371
1371
  function MyComponent() {
1372
- const foo = "bar";
1372
+ const foo = 'bar'
1373
1373
  return (
1374
1374
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1375
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1375
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1376
1376
  </div>
1377
- );
1377
+ )
1378
1378
  }
1379
1379
  ```
1380
1380
 
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.56",
5
+ "version": "9.0.0-canary.57",
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.56",
16
- "@graphcommerce/graphql": "^9.0.0-canary.56",
17
- "@graphcommerce/magento-cart": "^9.0.0-canary.56",
18
- "@graphcommerce/magento-cart-items": "^9.0.0-canary.56",
19
- "@graphcommerce/magento-product": "^9.0.0-canary.56",
20
- "@graphcommerce/next-ui": "^9.0.0-canary.56",
21
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
22
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
15
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
16
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
17
+ "@graphcommerce/magento-cart": "^9.0.0-canary.57",
18
+ "@graphcommerce/magento-cart-items": "^9.0.0-canary.57",
19
+ "@graphcommerce/magento-product": "^9.0.0-canary.57",
20
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
21
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
22
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
23
23
  "@lingui/core": "^4.2.1",
24
24
  "@lingui/macro": "^4.2.1",
25
25
  "@lingui/react": "^4.2.1",