@graphcommerce/magento-product-configurable 4.0.2 → 4.0.5

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 CHANGED
@@ -1,5 +1,67 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1292](https://github.com/ho-nl/m2-pwa/pull/1292)
8
+ [`5a1ba9e66`](https://github.com/ho-nl/m2-pwa/commit/5a1ba9e664abbac89c4f5f71f7d6d6ed1aefa5c0)
9
+ Thanks [@paales](https://github.com/paales)! - Renamed SvgIcon to IconSvg to prevent collisions
10
+ with MUI
11
+
12
+ - Updated dependencies
13
+ [[`5a1ba9e66`](https://github.com/ho-nl/m2-pwa/commit/5a1ba9e664abbac89c4f5f71f7d6d6ed1aefa5c0),
14
+ [`990df655b`](https://github.com/ho-nl/m2-pwa/commit/990df655b73b469718d6cb5837ee65dfe2ad6a1d),
15
+ [`63f9b56eb`](https://github.com/ho-nl/m2-pwa/commit/63f9b56eb68ba790567ff1427e599fd2c3c8f1ee)]:
16
+ - @graphcommerce/magento-cart@4.1.3
17
+ - @graphcommerce/magento-cart-items@3.0.4
18
+ - @graphcommerce/magento-customer@4.1.3
19
+ - @graphcommerce/magento-product@4.0.5
20
+ - @graphcommerce/next-ui@4.2.0
21
+
22
+ ## 4.0.4
23
+
24
+ ### Patch Changes
25
+
26
+ - [#1285](https://github.com/ho-nl/m2-pwa/pull/1285)
27
+ [`c85294ba6`](https://github.com/ho-nl/m2-pwa/commit/c85294ba6d742ce78c074559a1e95409b25a5017)
28
+ Thanks [@paales](https://github.com/paales)! - upgraded dependencies
29
+
30
+ - Updated dependencies
31
+ [[`ed9703b06`](https://github.com/ho-nl/m2-pwa/commit/ed9703b062d23ee01b1605ff9917c0ac3247fc25),
32
+ [`c85294ba6`](https://github.com/ho-nl/m2-pwa/commit/c85294ba6d742ce78c074559a1e95409b25a5017)]:
33
+ - @graphcommerce/magento-store@4.1.0
34
+ - @graphcommerce/magento-product@4.0.4
35
+ - @graphcommerce/next-ui@4.1.3
36
+
37
+ ## 4.0.3
38
+
39
+ ### Patch Changes
40
+
41
+ - [`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96)
42
+ Thanks [@paales](https://github.com/paales)! - made packages public
43
+
44
+ * [#1278](https://github.com/ho-nl/m2-pwa/pull/1278)
45
+ [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20)
46
+ Thanks [@ErwinOtten](https://github.com/ErwinOtten)! - Upgraded dependencies to the latest version
47
+
48
+ * Updated dependencies
49
+ [[`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96),
50
+ [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20),
51
+ [`3a719c88c`](https://github.com/ho-nl/m2-pwa/commit/3a719c88cad1eab58602de28c41adc0fc4827e1d),
52
+ [`5ffcb56bf`](https://github.com/ho-nl/m2-pwa/commit/5ffcb56bfcbe49ebeaf24f9341e819a145ab9a14)]:
53
+ - @graphcommerce/graphql@3.0.3
54
+ - @graphcommerce/image@3.1.0
55
+ - @graphcommerce/magento-cart@4.1.2
56
+ - @graphcommerce/magento-cart-items@3.0.3
57
+ - @graphcommerce/magento-category@4.0.3
58
+ - @graphcommerce/magento-customer@4.1.2
59
+ - @graphcommerce/magento-product@4.0.3
60
+ - @graphcommerce/magento-product-simple@4.0.3
61
+ - @graphcommerce/magento-store@4.0.3
62
+ - @graphcommerce/next-ui@4.1.2
63
+ - @graphcommerce/react-hook-form@3.0.3
64
+
3
65
  ## 4.0.2
4
66
 
5
67
  ### Patch Changes
@@ -6,7 +6,7 @@ import {
6
6
  extendableComponent,
7
7
  iconChevronRight,
8
8
  MessageSnackbar,
9
- SvgIcon,
9
+ IconSvg,
10
10
  TextInputNumber,
11
11
  } from '@graphcommerce/next-ui'
12
12
  import { Trans } from '@lingui/macro'
@@ -110,7 +110,7 @@ export default function ConfigurableProductAddToCart(props: ConfigurableProductA
110
110
  width: '100%',
111
111
  })}
112
112
  >
113
- Add to Cart
113
+ <Trans>Add to Cart</Trans>
114
114
  </Button>
115
115
 
116
116
  <ApolloCartErrorAlert error={error} />
@@ -137,9 +137,9 @@ export default function ConfigurableProductAddToCart(props: ConfigurableProductA
137
137
  size='medium'
138
138
  variant='pill'
139
139
  color='secondary'
140
- endIcon={<SvgIcon src={iconChevronRight} />}
140
+ endIcon={<IconSvg src={iconChevronRight} />}
141
141
  >
142
- View shopping cart
142
+ <Trans>View shopping cart</Trans>
143
143
  </Button>
144
144
  </PageLink>
145
145
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-product-configurable",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.0.2",
5
+ "version": "4.0.5",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,25 +12,25 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^4.0.2",
16
- "@graphcommerce/prettier-config-pwa": "^4.0.1",
17
- "@graphcommerce/typescript-config-pwa": "^4.0.1",
15
+ "@graphcommerce/eslint-config-pwa": "^4.0.4",
16
+ "@graphcommerce/prettier-config-pwa": "^4.0.2",
17
+ "@graphcommerce/typescript-config-pwa": "^4.0.2",
18
18
  "@playwright/test": "^1.19.1",
19
19
  "react": "^17.0.1"
20
20
  },
21
21
  "dependencies": {
22
- "@graphcommerce/graphql": "^3.0.2",
23
- "@graphcommerce/image": "^3.0.2",
24
- "@graphcommerce/magento-cart": "^4.1.1",
25
- "@graphcommerce/magento-cart-items": "^3.0.2",
26
- "@graphcommerce/magento-category": "^4.0.2",
27
- "@graphcommerce/magento-customer": "^4.1.1",
28
- "@graphcommerce/magento-product": "^4.0.2",
29
- "@graphcommerce/magento-product-simple": "^4.0.2",
30
- "@graphcommerce/magento-store": "^4.0.2",
31
- "@graphcommerce/next-ui": "^4.1.1",
32
- "@graphcommerce/react-hook-form": "^3.0.2",
33
- "type-fest": "^2.11.2"
22
+ "@graphcommerce/graphql": "^3.0.3",
23
+ "@graphcommerce/image": "^3.1.0",
24
+ "@graphcommerce/magento-cart": "^4.1.3",
25
+ "@graphcommerce/magento-cart-items": "^3.0.4",
26
+ "@graphcommerce/magento-category": "^4.0.3",
27
+ "@graphcommerce/magento-customer": "^4.1.3",
28
+ "@graphcommerce/magento-product": "^4.0.5",
29
+ "@graphcommerce/magento-product-simple": "^4.0.3",
30
+ "@graphcommerce/magento-store": "^4.1.0",
31
+ "@graphcommerce/next-ui": "^4.2.0",
32
+ "@graphcommerce/react-hook-form": "^3.0.3",
33
+ "type-fest": "^2.12.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@lingui/macro": "^3.13.2",