@graphcommerce/magento-product-bundle 9.0.0-canary.55 → 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 +17 -18
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.57
4
+
5
+ ## 9.0.0-canary.56
6
+
3
7
  ## 9.0.0-canary.55
4
8
 
5
9
  ## 9.0.0-canary.54
@@ -184,19 +188,15 @@
184
188
 
185
189
  ### Minor Changes
186
190
 
187
- - [#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.
188
- ([@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))
189
192
 
190
- - [#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/>`
191
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
193
+ - [#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))
192
194
 
193
195
  ### Patch Changes
194
196
 
195
- - [#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.
196
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
197
+ - [#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))
197
198
 
198
- - [#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
199
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
199
+ - [#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))
200
200
 
201
201
  ## 8.0.0-canary.100
202
202
 
@@ -260,8 +260,7 @@
260
260
 
261
261
  ### Minor Changes
262
262
 
263
- - [#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
264
- ([@Jessevdpoel](https://github.com/Jessevdpoel))
263
+ - [#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))
265
264
 
266
265
  ## 8.0.0-canary.70
267
266
 
@@ -1550,31 +1549,31 @@
1550
1549
  All occurences of `<Trans>` and `t` need to be replaced:
1551
1550
 
1552
1551
  ```tsx
1553
- import { Trans, t } from "@lingui/macro";
1552
+ import { Trans, t } from '@lingui/macro'
1554
1553
 
1555
1554
  function MyComponent() {
1556
- const foo = "bar";
1555
+ const foo = 'bar'
1557
1556
  return (
1558
1557
  <div aria-label={t`Account ${foo}`}>
1559
1558
  <Trans>My Translation {foo}</Trans>
1560
1559
  </div>
1561
- );
1560
+ )
1562
1561
  }
1563
1562
  ```
1564
1563
 
1565
1564
  Needs to be replaced with:
1566
1565
 
1567
1566
  ```tsx
1568
- import { Trans } from "@lingui/react";
1569
- import { i18n } from "@lingui/core";
1567
+ import { Trans } from '@lingui/react'
1568
+ import { i18n } from '@lingui/core'
1570
1569
 
1571
1570
  function MyComponent() {
1572
- const foo = "bar";
1571
+ const foo = 'bar'
1573
1572
  return (
1574
1573
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1575
- <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1574
+ <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1576
1575
  </div>
1577
- );
1576
+ )
1578
1577
  }
1579
1578
  ```
1580
1579
 
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": "9.0.0-canary.55",
5
+ "version": "9.0.0-canary.57",
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": "^9.0.0-canary.55",
16
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.55",
17
- "@graphcommerce/graphql": "^9.0.0-canary.55",
18
- "@graphcommerce/image": "^9.0.0-canary.55",
19
- "@graphcommerce/magento-cart": "^9.0.0-canary.55",
20
- "@graphcommerce/magento-cart-items": "^9.0.0-canary.55",
21
- "@graphcommerce/magento-product": "^9.0.0-canary.55",
22
- "@graphcommerce/magento-product-simple": "^9.0.0-canary.55",
23
- "@graphcommerce/magento-product-virtual": "^9.0.0-canary.55",
24
- "@graphcommerce/magento-store": "^9.0.0-canary.55",
25
- "@graphcommerce/next-ui": "^9.0.0-canary.55",
26
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.55",
27
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.55",
15
+ "@graphcommerce/ecommerce-ui": "^9.0.0-canary.57",
16
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
17
+ "@graphcommerce/graphql": "^9.0.0-canary.57",
18
+ "@graphcommerce/image": "^9.0.0-canary.57",
19
+ "@graphcommerce/magento-cart": "^9.0.0-canary.57",
20
+ "@graphcommerce/magento-cart-items": "^9.0.0-canary.57",
21
+ "@graphcommerce/magento-product": "^9.0.0-canary.57",
22
+ "@graphcommerce/magento-product-simple": "^9.0.0-canary.57",
23
+ "@graphcommerce/magento-product-virtual": "^9.0.0-canary.57",
24
+ "@graphcommerce/magento-store": "^9.0.0-canary.57",
25
+ "@graphcommerce/next-ui": "^9.0.0-canary.57",
26
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
27
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
28
28
  "@lingui/core": "^4.2.1",
29
29
  "@lingui/macro": "^4.2.1",
30
30
  "@lingui/react": "^4.2.1",