@graphcommerce/magento-payment-braintree 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 +116 -8
- package/package.json +17 -17
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
|
@@ -1136,31 +1244,31 @@
|
|
1136
1244
|
All occurences of `<Trans>` and `t` need to be replaced:
|
1137
1245
|
|
1138
1246
|
```tsx
|
1139
|
-
import { Trans, t } from
|
1247
|
+
import { Trans, t } from "@lingui/macro";
|
1140
1248
|
|
1141
1249
|
function MyComponent() {
|
1142
|
-
const foo =
|
1250
|
+
const foo = "bar";
|
1143
1251
|
return (
|
1144
1252
|
<div aria-label={t`Account ${foo}`}>
|
1145
1253
|
<Trans>My Translation {foo}</Trans>
|
1146
1254
|
</div>
|
1147
|
-
)
|
1255
|
+
);
|
1148
1256
|
}
|
1149
1257
|
```
|
1150
1258
|
|
1151
1259
|
Needs to be replaced with:
|
1152
1260
|
|
1153
1261
|
```tsx
|
1154
|
-
import { Trans } from
|
1155
|
-
import { i18n } from
|
1262
|
+
import { Trans } from "@lingui/react";
|
1263
|
+
import { i18n } from "@lingui/core";
|
1156
1264
|
|
1157
1265
|
function MyComponent() {
|
1158
|
-
const foo =
|
1266
|
+
const foo = "bar";
|
1159
1267
|
return (
|
1160
1268
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1161
|
-
<Trans key=
|
1269
|
+
<Trans key="My Translation {foo}" values={{ foo }}></Trans>
|
1162
1270
|
</div>
|
1163
|
-
)
|
1271
|
+
);
|
1164
1272
|
}
|
1165
1273
|
```
|
1166
1274
|
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/magento-payment-braintree",
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
5
|
-
"version": "
|
5
|
+
"version": "8.0.0-canary.69",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -12,31 +12,31 @@
|
|
12
12
|
}
|
13
13
|
},
|
14
14
|
"devDependencies": {
|
15
|
-
"@
|
16
|
-
"@graphcommerce/magento-cart-shipping-address": "7.1.0-canary.9",
|
17
|
-
"@graphcommerce/magento-product": "7.1.0-canary.9",
|
18
|
-
"@graphcommerce/magento-product-configurable": "7.1.0-canary.9",
|
19
|
-
"@graphcommerce/prettier-config-pwa": "7.1.0-canary.9",
|
20
|
-
"@graphcommerce/typescript-config-pwa": "7.1.0-canary.9",
|
21
|
-
"@types/braintree-web": "^3.96.4"
|
15
|
+
"@types/braintree-web": "^3.96.10"
|
22
16
|
},
|
23
17
|
"dependencies": {
|
24
|
-
"
|
25
|
-
"@graphcommerce/image": "7.1.0-canary.9",
|
26
|
-
"@graphcommerce/magento-cart": "7.1.0-canary.9",
|
27
|
-
"@graphcommerce/magento-cart-payment-method": "7.1.0-canary.9",
|
28
|
-
"@graphcommerce/magento-store": "7.1.0-canary.9",
|
29
|
-
"@graphcommerce/next-ui": "7.1.0-canary.9",
|
30
|
-
"@graphcommerce/react-hook-form": "7.1.0-canary.9",
|
31
|
-
"braintree-web": "^3.95.0-beta-3ds.1"
|
18
|
+
"braintree-web": "^3.97.4"
|
32
19
|
},
|
33
20
|
"peerDependencies": {
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.0-canary.69",
|
22
|
+
"@graphcommerce/graphql": "^8.0.0-canary.69",
|
23
|
+
"@graphcommerce/image": "^8.0.0-canary.69",
|
24
|
+
"@graphcommerce/magento-cart": "^8.0.0-canary.69",
|
25
|
+
"@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.69",
|
26
|
+
"@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.69",
|
27
|
+
"@graphcommerce/magento-product": "^8.0.0-canary.69",
|
28
|
+
"@graphcommerce/magento-product-configurable": "^8.0.0-canary.69",
|
29
|
+
"@graphcommerce/magento-store": "^8.0.0-canary.69",
|
30
|
+
"@graphcommerce/next-ui": "^8.0.0-canary.69",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.0-canary.69",
|
32
|
+
"@graphcommerce/react-hook-form": "^8.0.0-canary.69",
|
33
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.0-canary.69",
|
34
34
|
"@lingui/core": "^4.2.1",
|
35
35
|
"@lingui/macro": "^4.2.1",
|
36
36
|
"@lingui/react": "^4.2.1",
|
37
37
|
"@mui/material": "^5.10.16",
|
38
38
|
"framer-motion": "^10.0.0",
|
39
|
-
"next": "
|
39
|
+
"next": "*",
|
40
40
|
"react": "^18.2.0",
|
41
41
|
"react-dom": "^18.2.0"
|
42
42
|
}
|