@graphcommerce/magento-product-bundle 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -18
  2. package/package.json +14 -14
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,19 +78,15 @@
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
- - [#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))
83
+ - [#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
84
 
83
85
  ### Patch Changes
84
86
 
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))
87
+ - [#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
88
 
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))
89
+ - [#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
90
 
91
91
  ## 8.0.0-canary.100
92
92
 
@@ -150,8 +150,7 @@
150
150
 
151
151
  ### Minor Changes
152
152
 
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))
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 ([@Jessevdpoel](https://github.com/Jessevdpoel))
155
154
 
156
155
  ## 8.0.0-canary.70
157
156
 
@@ -1440,31 +1439,31 @@
1440
1439
  All occurences of `<Trans>` and `t` need to be replaced:
1441
1440
 
1442
1441
  ```tsx
1443
- import { Trans, t } from "@lingui/macro";
1442
+ import { Trans, t } from '@lingui/macro'
1444
1443
 
1445
1444
  function MyComponent() {
1446
- const foo = "bar";
1445
+ const foo = 'bar'
1447
1446
  return (
1448
1447
  <div aria-label={t`Account ${foo}`}>
1449
1448
  <Trans>My Translation {foo}</Trans>
1450
1449
  </div>
1451
- );
1450
+ )
1452
1451
  }
1453
1452
  ```
1454
1453
 
1455
1454
  Needs to be replaced with:
1456
1455
 
1457
1456
  ```tsx
1458
- import { Trans } from "@lingui/react";
1459
- import { i18n } from "@lingui/core";
1457
+ import { Trans } from '@lingui/react'
1458
+ import { i18n } from '@lingui/core'
1460
1459
 
1461
1460
  function MyComponent() {
1462
- const foo = "bar";
1461
+ const foo = 'bar'
1463
1462
  return (
1464
1463
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1465
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1464
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1466
1465
  </div>
1467
- );
1466
+ )
1468
1467
  }
1469
1468
  ```
1470
1469
 
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.8",
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.8",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.8",
17
+ "@graphcommerce/graphql": "^8.0.8",
18
+ "@graphcommerce/image": "^8.0.8",
19
+ "@graphcommerce/magento-cart": "^8.0.8",
20
+ "@graphcommerce/magento-cart-items": "^8.0.8",
21
+ "@graphcommerce/magento-product": "^8.0.8",
22
+ "@graphcommerce/magento-product-simple": "^8.0.8",
23
+ "@graphcommerce/magento-product-virtual": "^8.0.8",
24
+ "@graphcommerce/magento-store": "^8.0.8",
25
+ "@graphcommerce/next-ui": "^8.0.8",
26
+ "@graphcommerce/prettier-config-pwa": "^8.0.8",
27
+ "@graphcommerce/typescript-config-pwa": "^8.0.8",
28
28
  "@lingui/core": "^4.2.1",
29
29
  "@lingui/macro": "^4.2.1",
30
30
  "@lingui/react": "^4.2.1",