@graphcommerce/magento-product 4.8.1 → 4.8.3

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,31 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.8.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1688](https://github.com/graphcommerce-org/graphcommerce/pull/1688) [`f105d4223`](https://github.com/graphcommerce-org/graphcommerce/commit/f105d4223aa68df30970149e51ae72897e489bf9) Thanks [@paales](https://github.com/paales)! - Remove redunant confirmation button on ErrorSnackbar implementations
8
+
9
+ - Updated dependencies [[`8393cb266`](https://github.com/graphcommerce-org/graphcommerce/commit/8393cb2662860be0c2aa5df432447bb73c427d8e), [`f544401c7`](https://github.com/graphcommerce-org/graphcommerce/commit/f544401c7b653fda39c7c260ad0dcfb3bf543b65), [`f105d4223`](https://github.com/graphcommerce-org/graphcommerce/commit/f105d4223aa68df30970149e51ae72897e489bf9)]:
10
+ - @graphcommerce/next-ui@4.29.3
11
+ - @graphcommerce/ecommerce-ui@1.5.8
12
+ - @graphcommerce/framer-scroller@2.1.45
13
+ - @graphcommerce/magento-cart@4.9.4
14
+ - @graphcommerce/magento-store@4.3.6
15
+
16
+ ## 4.8.2
17
+
18
+ ### Patch Changes
19
+
20
+ - [#1686](https://github.com/graphcommerce-org/graphcommerce/pull/1686) [`1953c7e27`](https://github.com/graphcommerce-org/graphcommerce/commit/1953c7e27eb606a825fce1ad361393b3c781c6da) Thanks [@paales](https://github.com/paales)! - Product page markup and sticky product image when the sidebar is fairly large
21
+
22
+ - Updated dependencies [[`1953c7e27`](https://github.com/graphcommerce-org/graphcommerce/commit/1953c7e27eb606a825fce1ad361393b3c781c6da)]:
23
+ - @graphcommerce/next-ui@4.29.2
24
+ - @graphcommerce/ecommerce-ui@1.5.7
25
+ - @graphcommerce/framer-scroller@2.1.44
26
+ - @graphcommerce/magento-cart@4.9.3
27
+ - @graphcommerce/magento-store@4.3.5
28
+
3
29
  ## 4.8.1
4
30
 
5
31
  ### Patch Changes
@@ -14,6 +14,7 @@ export function AddProductsToCartQuantity(props: AddToCartQuantityProps) {
14
14
  <NumberFieldElement
15
15
  variant='outlined'
16
16
  size='small'
17
+ color='primary'
17
18
  {...props}
18
19
  required
19
20
  inputProps={{ min: 1 }}
@@ -37,17 +37,7 @@ export function AddProductsToCartSnackbar(props: AddProductsToCartSnackbarProps)
37
37
  {error && <ApolloCartErrorSnackbar error={error} />}
38
38
 
39
39
  {showErrorSnackbar && (
40
- <ErrorSnackbar
41
- variant='pill'
42
- severity='error'
43
- action={
44
- <Button size='medium' variant='pill' color='secondary'>
45
- <Trans id='Ok' />
46
- </Button>
47
- }
48
- {...errorSnackbar}
49
- open={showErrorSnackbar}
50
- >
40
+ <ErrorSnackbar variant='pill' severity='error' {...errorSnackbar} open={showErrorSnackbar}>
51
41
  <>{data?.addProductsToCart?.user_errors?.map((e) => e?.message).join(', ')}</>
52
42
  </ErrorSnackbar>
53
43
  )}
@@ -26,6 +26,7 @@ const CustomizableAreaOption = React.memo<
26
26
  value={uid}
27
27
  />
28
28
  <TextFieldElement
29
+ color='primary'
29
30
  multiline
30
31
  minRows={3}
31
32
  control={control}
@@ -53,6 +54,7 @@ const CustomizableDropDownOption = React.memo<
53
54
  value={uid}
54
55
  />
55
56
  <SelectElement
57
+ color='primary'
56
58
  control={control}
57
59
  name={`cartItems.${index}.entered_options.${optionIndex}.value`}
58
60
  label={title}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-product",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.8.1",
5
+ "version": "4.8.3",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -19,15 +19,15 @@
19
19
  "type-fest": "^2.12.2"
20
20
  },
21
21
  "dependencies": {
22
- "@graphcommerce/ecommerce-ui": "1.5.6",
23
- "@graphcommerce/framer-scroller": "2.1.43",
22
+ "@graphcommerce/ecommerce-ui": "1.5.8",
23
+ "@graphcommerce/framer-scroller": "2.1.45",
24
24
  "@graphcommerce/framer-next-pages": "3.3.2",
25
25
  "@graphcommerce/graphql": "3.5.0",
26
26
  "@graphcommerce/graphql-mesh": "4.2.0",
27
27
  "@graphcommerce/image": "3.1.10",
28
- "@graphcommerce/magento-cart": "4.9.2",
29
- "@graphcommerce/magento-store": "4.3.4",
30
- "@graphcommerce/next-ui": "4.29.1",
28
+ "@graphcommerce/magento-cart": "4.9.4",
29
+ "@graphcommerce/magento-store": "4.3.6",
30
+ "@graphcommerce/next-ui": "4.29.3",
31
31
  "schema-dts": "^1.1.0"
32
32
  },
33
33
  "peerDependencies": {