@graphcommerce/magento-newsletter 7.1.0-canary.9 → 8.0.0-canary.69

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,113 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.0.0-canary.69
4
+
5
+ ## 7.1.0-canary.68
6
+
7
+ ## 7.1.0-canary.67
8
+
9
+ ## 7.1.0-canary.66
10
+
11
+ ## 7.1.0-canary.65
12
+
13
+ ## 7.1.0-canary.64
14
+
15
+ ## 7.1.0-canary.63
16
+
17
+ ## 7.1.0-canary.62
18
+
19
+ ## 7.1.0-canary.61
20
+
21
+ ## 7.1.0-canary.60
22
+
23
+ ## 7.1.0-canary.59
24
+
25
+ ## 7.1.0-canary.58
26
+
27
+ ## 7.1.0-canary.57
28
+
29
+ ## 7.1.0-canary.56
30
+
31
+ ## 7.1.0-canary.55
32
+
33
+ ## 7.1.0-canary.54
34
+
35
+ ## 7.1.0-canary.53
36
+
37
+ ## 7.1.0-canary.52
38
+
39
+ ## 7.1.0-canary.51
40
+
41
+ ## 7.1.0-canary.50
42
+
43
+ ## 7.1.0-canary.49
44
+
45
+ ## 7.1.0-canary.48
46
+
47
+ ## 7.1.0-canary.47
48
+
49
+ ## 7.1.0-canary.46
50
+
51
+ ## 7.1.0-canary.45
52
+
53
+ ## 7.1.0-canary.38
54
+
55
+ ## 7.1.0-canary.37
56
+
57
+ ## 7.1.0-canary.36
58
+
59
+ ## 7.1.0-canary.35
60
+
61
+ ## 7.1.0-canary.34
62
+
63
+ ## 7.1.0-canary.33
64
+
65
+ ## 7.1.0-canary.32
66
+
67
+ ## 7.1.0-canary.31
68
+
69
+ ## 7.1.0-canary.30
70
+
71
+ ## 7.1.0-canary.29
72
+
73
+ ## 7.1.0-canary.28
74
+
75
+ ## 7.1.0-canary.27
76
+
77
+ ## 7.1.0-canary.26
78
+
79
+ ## 7.1.0-canary.25
80
+
81
+ ## 7.1.0-canary.24
82
+
83
+ ## 7.1.0-canary.23
84
+
85
+ ## 7.1.0-canary.22
86
+
87
+ ## 7.1.0-canary.21
88
+
89
+ ## 7.1.0-canary.20
90
+
91
+ ## 7.1.0-canary.19
92
+
93
+ ## 7.1.0-canary.18
94
+
95
+ ## 7.1.0-canary.17
96
+
97
+ ## 7.1.0-canary.16
98
+
99
+ ## 7.1.0-canary.15
100
+
101
+ ## 7.1.0-canary.14
102
+
103
+ ## 7.1.0-canary.13
104
+
105
+ ## 7.1.0-canary.12
106
+
107
+ ## 7.1.0-canary.11
108
+
109
+ ## 7.1.0-canary.10
110
+
3
111
  ## 7.1.0-canary.9
4
112
 
5
113
  ## 7.1.0-canary.8
@@ -1037,31 +1145,31 @@
1037
1145
  All occurences of `<Trans>` and `t` need to be replaced:
1038
1146
 
1039
1147
  ```tsx
1040
- import { Trans, t } from '@lingui/macro'
1148
+ import { Trans, t } from "@lingui/macro";
1041
1149
 
1042
1150
  function MyComponent() {
1043
- const foo = 'bar'
1151
+ const foo = "bar";
1044
1152
  return (
1045
1153
  <div aria-label={t`Account ${foo}`}>
1046
1154
  <Trans>My Translation {foo}</Trans>
1047
1155
  </div>
1048
- )
1156
+ );
1049
1157
  }
1050
1158
  ```
1051
1159
 
1052
1160
  Needs to be replaced with:
1053
1161
 
1054
1162
  ```tsx
1055
- import { Trans } from '@lingui/react'
1056
- import { i18n } from '@lingui/core'
1163
+ import { Trans } from "@lingui/react";
1164
+ import { i18n } from "@lingui/core";
1057
1165
 
1058
1166
  function MyComponent() {
1059
- const foo = 'bar'
1167
+ const foo = "bar";
1060
1168
  return (
1061
1169
  <div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
1062
- <Trans key='My Translation {foo}' values={{ foo }}></Trans>
1170
+ <Trans key="My Translation {foo}" values={{ foo }}></Trans>
1063
1171
  </div>
1064
- )
1172
+ );
1065
1173
  }
1066
1174
  ```
1067
1175
 
@@ -54,6 +54,7 @@ export function GuestNewsletter(props: GuestNewsletterProps) {
54
54
  <MessageSnackbar
55
55
  open={submittedWithoutErrors}
56
56
  variant='pill'
57
+ severity='success'
57
58
  action={
58
59
  <Button size='medium' variant='pill' color='secondary' fullWidth>
59
60
  <Trans id='Ok' />
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": "7.1.0-canary.9",
5
+ "version": "8.0.0-canary.69",
6
6
  "sideEffects": false,
7
7
  "prettier": "@graphcommerce/prettier-config-pwa",
8
8
  "eslintConfig": {
@@ -11,26 +11,22 @@
11
11
  "project": "./tsconfig.json"
12
12
  }
13
13
  },
14
- "devDependencies": {
15
- "@graphcommerce/eslint-config-pwa": "7.1.0-canary.9",
16
- "@graphcommerce/prettier-config-pwa": "7.1.0-canary.9",
17
- "@graphcommerce/typescript-config-pwa": "7.1.0-canary.9"
18
- },
19
- "dependencies": {
20
- "@graphcommerce/ecommerce-ui": "7.1.0-canary.9",
21
- "@graphcommerce/graphql": "7.1.0-canary.9",
22
- "@graphcommerce/magento-cart": "7.1.0-canary.9",
23
- "@graphcommerce/magento-customer": "7.1.0-canary.9",
24
- "@graphcommerce/next-ui": "7.1.0-canary.9",
25
- "@graphcommerce/react-hook-form": "7.1.0-canary.9"
26
- },
27
14
  "peerDependencies": {
28
- "@lingui/react": "^4.2.1",
15
+ "@graphcommerce/ecommerce-ui": "^8.0.0-canary.69",
16
+ "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.69",
17
+ "@graphcommerce/graphql": "^8.0.0-canary.69",
18
+ "@graphcommerce/magento-cart": "^8.0.0-canary.69",
19
+ "@graphcommerce/magento-customer": "^8.0.0-canary.69",
20
+ "@graphcommerce/next-ui": "^8.0.0-canary.69",
21
+ "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.69",
22
+ "@graphcommerce/react-hook-form": "^8.0.0-canary.69",
23
+ "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.69",
29
24
  "@lingui/core": "^4.2.1",
30
25
  "@lingui/macro": "^4.2.1",
26
+ "@lingui/react": "^4.2.1",
31
27
  "@mui/material": "^5.10.16",
32
28
  "framer-motion": "^10.0.0",
33
- "next": "^13.2.0",
29
+ "next": "*",
34
30
  "react": "^18.2.0",
35
31
  "react-dom": "^18.2.0"
36
32
  }