@graphcommerce/magento-newsletter 2.0.44 → 2.1.1

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,43 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @graphcommerce/magento-customer@4.10.1
9
+ - @graphcommerce/magento-cart@4.7.1
10
+
11
+ ## 2.1.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#1602](https://github.com/graphcommerce-org/graphcommerce/pull/1602) [`5f781a217`](https://github.com/graphcommerce-org/graphcommerce/commit/5f781a217ce63ed56bc1a9983487b04400a8a315) Thanks [@ErwinOtten](https://github.com/ErwinOtten)! - Default styles and layout fixes
16
+
17
+ - Scaled icons and fonts down. Size in typography is now more gradual: https://graphcommerce.vercel.app/test/typography
18
+ - Multiple accessibility fixes. Missing button/input labels, and fixed spacing issues resulting in high % appropriately sized tap targets
19
+ - Replaced responsiveVal usage with better performaning breakpointVal where possible
20
+ - All buttons are now Pill by default.
21
+ - Cleaned up checkout styles
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [[`04708dacc`](https://github.com/graphcommerce-org/graphcommerce/commit/04708daccc213c6ea927bc67fa3bd0d5b1fad619), [`bb94e7045`](https://github.com/graphcommerce-org/graphcommerce/commit/bb94e7045460cb671c45d612a0833731d7c20c30), [`b0dc4e2e1`](https://github.com/graphcommerce-org/graphcommerce/commit/b0dc4e2e1982d502d38dd50a0f493396360a7a15), [`4a5286dfe`](https://github.com/graphcommerce-org/graphcommerce/commit/4a5286dfeaa1719e594a0078f274fbab53969c4e), [`0ad5159eb`](https://github.com/graphcommerce-org/graphcommerce/commit/0ad5159ebef54b4ce7fee6f71b4bf710dba9ef8e), [`d46d5ed0c`](https://github.com/graphcommerce-org/graphcommerce/commit/d46d5ed0cc5794391b7527fc17bbb68ec2212e33), [`e573278e4`](https://github.com/graphcommerce-org/graphcommerce/commit/e573278e43506a6b17a2981e61d0e9fad41eb2eb), [`5f781a217`](https://github.com/graphcommerce-org/graphcommerce/commit/5f781a217ce63ed56bc1a9983487b04400a8a315), [`ac6eedbb1`](https://github.com/graphcommerce-org/graphcommerce/commit/ac6eedbb14d3abd8cf1231a98dc2a8b7f4659f1f)]:
26
+ - @graphcommerce/next-ui@4.22.0
27
+ - @graphcommerce/magento-customer@4.10.0
28
+ - @graphcommerce/magento-cart@4.7.0
29
+ - @graphcommerce/graphql@3.4.7
30
+
31
+ ## 2.0.45
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [[`1f7ee6f6c`](https://github.com/graphcommerce-org/graphcommerce/commit/1f7ee6f6cfb28544439ed36e10929ac530d1b2b7), [`707dbc73d`](https://github.com/graphcommerce-org/graphcommerce/commit/707dbc73d181204d88fdbbd2e09340e25b2b5f7b)]:
36
+ - @graphcommerce/next-ui@4.21.0
37
+ - @graphcommerce/graphql@3.4.6
38
+ - @graphcommerce/magento-cart@4.6.9
39
+ - @graphcommerce/magento-customer@4.9.5
40
+
3
41
  ## 2.0.44
4
42
 
5
43
  ### Patch Changes
@@ -27,7 +27,7 @@ export function SignupNewsletter(props: SignupNewsletterProps) {
27
27
  className={classes.signup}
28
28
  sx={[
29
29
  (theme) => ({
30
- background: theme.palette.background.paper,
30
+ background: theme.palette.background.default,
31
31
  display: 'grid',
32
32
  alignItems: 'center',
33
33
  gridAutoFlow: 'column',
@@ -43,10 +43,6 @@ export function SignupNewsletter(props: SignupNewsletterProps) {
43
43
  gridTemplateAreas: `"a b c"`,
44
44
  gridTemplateColumns: '2fr 1fr',
45
45
  },
46
-
47
- '&.loggedIn': {
48
- background: theme.palette.background.image,
49
- },
50
46
  }),
51
47
  ...(Array.isArray(sx) ? sx : [sx]),
52
48
  ]}
@@ -58,7 +54,7 @@ export function SignupNewsletter(props: SignupNewsletterProps) {
58
54
  className={classes.signupForm}
59
55
  sx={(theme) => ({
60
56
  display: 'flex',
61
- gap: 8,
57
+ gap: theme.spacings.sm,
62
58
  justifySelf: 'start',
63
59
  alignItems: 'center',
64
60
  [theme.breakpoints.up('sm')]: { justifySelf: 'end' },
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-newsletter",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "2.0.44",
5
+ "version": "2.1.1",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -12,16 +12,16 @@
12
12
  }
13
13
  },
14
14
  "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "^4.1.9",
15
+ "@graphcommerce/eslint-config-pwa": "^4.1.10",
16
16
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
17
17
  "@graphcommerce/typescript-config-pwa": "^4.0.4",
18
18
  "@playwright/test": "^1.21.1"
19
19
  },
20
20
  "dependencies": {
21
- "@graphcommerce/graphql": "3.4.5",
22
- "@graphcommerce/magento-cart": "4.6.8",
23
- "@graphcommerce/magento-customer": "4.9.4",
24
- "@graphcommerce/next-ui": "4.20.0",
21
+ "@graphcommerce/graphql": "3.4.7",
22
+ "@graphcommerce/magento-cart": "4.7.1",
23
+ "@graphcommerce/magento-customer": "4.10.1",
24
+ "@graphcommerce/next-ui": "4.22.0",
25
25
  "@graphcommerce/react-hook-form": "3.3.2"
26
26
  },
27
27
  "peerDependencies": {