@graphcommerce/magento-product-bundle 8.0.6 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -18
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.0.7
4
+
3
5
  ## 8.0.6
4
6
 
5
7
  ## 8.0.5
@@ -74,19 +76,15 @@
74
76
 
75
77
  ### Minor Changes
76
78
 
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))
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))
79
80
 
80
- - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e4`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the `<ActionCardLayout/>`
81
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
81
+ - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`13e23e4`](https://github.com/graphcommerce-org/graphcommerce/commit/13e23e4265bac70fb4d0830e4661019e71ce299f) - Wishlist will now support configurable products and uses the `<ActionCardLayout/>` ([@Jessevdpoel](https://github.com/Jessevdpoel))
82
82
 
83
83
  ### Patch Changes
84
84
 
85
- - [#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.
86
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
85
+ - [#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))
87
86
 
88
- - [#2028](https://github.com/graphcommerce-org/graphcommerce/pull/2028) [`dd5499d`](https://github.com/graphcommerce-org/graphcommerce/commit/dd5499daedb0a5cd38081f2bd7892df40bb23e16) - Solved an issue where the quantity selector was not working for bundled products
89
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
87
+ - [#2028](https://github.com/graphcommerce-org/graphcommerce/pull/2028) [`dd5499d`](https://github.com/graphcommerce-org/graphcommerce/commit/dd5499daedb0a5cd38081f2bd7892df40bb23e16) - Solved an issue where the quantity selector was not working for bundled products ([@Jessevdpoel](https://github.com/Jessevdpoel))
90
88
 
91
89
  ## 8.0.0-canary.100
92
90
 
@@ -150,8 +148,7 @@
150
148
 
151
149
  ### Minor Changes
152
150
 
153
- - [#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
154
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
151
+ - [#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))
155
152
 
156
153
  ## 8.0.0-canary.70
157
154
 
@@ -1440,31 +1437,31 @@
1440
1437
  All occurences of `<Trans>` and `t` need to be replaced:
1441
1438
 
1442
1439
  ```tsx
1443
- import { Trans, t } from "@lingui/macro";
1440
+ import { Trans, t } from '@lingui/macro'
1444
1441
 
1445
1442
  function MyComponent() {
1446
- const foo = "bar";
1443
+ const foo = 'bar'
1447
1444
  return (
1448
1445
  <div aria-label={t`Account ${foo}`}>
1449
1446
  <Trans>My Translation {foo}</Trans>
1450
1447
  </div>
1451
- );
1448
+ )
1452
1449
  }
1453
1450
  ```
1454
1451
 
1455
1452
  Needs to be replaced with:
1456
1453
 
1457
1454
  ```tsx
1458
- import { Trans } from "@lingui/react";
1459
- import { i18n } from "@lingui/core";
1455
+ import { Trans } from '@lingui/react'
1456
+ import { i18n } from '@lingui/core'
1460
1457
 
1461
1458
  function MyComponent() {
1462
- const foo = "bar";
1459
+ const foo = 'bar'
1463
1460
  return (
1464
1461
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1465
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1462
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1466
1463
  </div>
1467
- );
1464
+ )
1468
1465
  }
1469
1466
  ```
1470
1467
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-product-bundle",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "8.0.6",
5
+ "version": "8.0.7",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,19 +12,19 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@graphcommerce/ecommerce-ui": "^8.0.6",
16
- "@graphcommerce/eslint-config-pwa": "^8.0.6",
17
- "@graphcommerce/graphql": "^8.0.6",
18
- "@graphcommerce/image": "^8.0.6",
19
- "@graphcommerce/magento-cart": "^8.0.6",
20
- "@graphcommerce/magento-cart-items": "^8.0.6",
21
- "@graphcommerce/magento-product": "^8.0.6",
22
- "@graphcommerce/magento-product-simple": "^8.0.6",
23
- "@graphcommerce/magento-product-virtual": "^8.0.6",
24
- "@graphcommerce/magento-store": "^8.0.6",
25
- "@graphcommerce/next-ui": "^8.0.6",
26
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
27
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
15
+ "@graphcommerce/ecommerce-ui": "^8.0.7",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.7",
17
+ "@graphcommerce/graphql": "^8.0.7",
18
+ "@graphcommerce/image": "^8.0.7",
19
+ "@graphcommerce/magento-cart": "^8.0.7",
20
+ "@graphcommerce/magento-cart-items": "^8.0.7",
21
+ "@graphcommerce/magento-product": "^8.0.7",
22
+ "@graphcommerce/magento-product-simple": "^8.0.7",
23
+ "@graphcommerce/magento-product-virtual": "^8.0.7",
24
+ "@graphcommerce/magento-store": "^8.0.7",
25
+ "@graphcommerce/next-ui": "^8.0.7",
26
+ "@graphcommerce/prettier-config-pwa": "^8.0.7",
27
+ "@graphcommerce/typescript-config-pwa": "^8.0.7",
28
28
  "@lingui/core": "^4.2.1",
29
29
  "@lingui/macro": "^4.2.1",
30
30
  "@lingui/react": "^4.2.1",