@graphcommerce/magento-payment-braintree 8.0.0-canary.40 → 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 +56 -10
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
@@ -1,8 +1,54 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## 8.0.0-canary.
|
3
|
+
## 8.0.0-canary.69
|
4
4
|
|
5
|
-
## 7.1.0-canary.
|
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
|
6
52
|
|
7
53
|
## 7.1.0-canary.38
|
8
54
|
|
@@ -1198,31 +1244,31 @@
|
|
1198
1244
|
All occurences of `<Trans>` and `t` need to be replaced:
|
1199
1245
|
|
1200
1246
|
```tsx
|
1201
|
-
import { Trans, t } from
|
1247
|
+
import { Trans, t } from "@lingui/macro";
|
1202
1248
|
|
1203
1249
|
function MyComponent() {
|
1204
|
-
const foo =
|
1250
|
+
const foo = "bar";
|
1205
1251
|
return (
|
1206
1252
|
<div aria-label={t`Account ${foo}`}>
|
1207
1253
|
<Trans>My Translation {foo}</Trans>
|
1208
1254
|
</div>
|
1209
|
-
)
|
1255
|
+
);
|
1210
1256
|
}
|
1211
1257
|
```
|
1212
1258
|
|
1213
1259
|
Needs to be replaced with:
|
1214
1260
|
|
1215
1261
|
```tsx
|
1216
|
-
import { Trans } from
|
1217
|
-
import { i18n } from
|
1262
|
+
import { Trans } from "@lingui/react";
|
1263
|
+
import { i18n } from "@lingui/core";
|
1218
1264
|
|
1219
1265
|
function MyComponent() {
|
1220
|
-
const foo =
|
1266
|
+
const foo = "bar";
|
1221
1267
|
return (
|
1222
1268
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1223
|
-
<Trans key=
|
1269
|
+
<Trans key="My Translation {foo}" values={{ foo }}></Trans>
|
1224
1270
|
</div>
|
1225
|
-
)
|
1271
|
+
);
|
1226
1272
|
}
|
1227
1273
|
```
|
1228
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": "8.0.0-canary.
|
5
|
+
"version": "8.0.0-canary.69",
|
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
|
-
"@types/braintree-web": "^3.96.
|
15
|
+
"@types/braintree-web": "^3.96.10"
|
16
16
|
},
|
17
17
|
"dependencies": {
|
18
|
-
"braintree-web": "^3.97.
|
18
|
+
"braintree-web": "^3.97.4"
|
19
19
|
},
|
20
20
|
"peerDependencies": {
|
21
|
-
"@graphcommerce/eslint-config-pwa": "8.0.0-canary.
|
22
|
-
"@graphcommerce/graphql": "8.0.0-canary.
|
23
|
-
"@graphcommerce/image": "8.0.0-canary.
|
24
|
-
"@graphcommerce/magento-cart": "8.0.0-canary.
|
25
|
-
"@graphcommerce/magento-cart-payment-method": "8.0.0-canary.
|
26
|
-
"@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.
|
27
|
-
"@graphcommerce/magento-product": "8.0.0-canary.
|
28
|
-
"@graphcommerce/magento-product-configurable": "8.0.0-canary.
|
29
|
-
"@graphcommerce/magento-store": "8.0.0-canary.
|
30
|
-
"@graphcommerce/next-ui": "8.0.0-canary.
|
31
|
-
"@graphcommerce/prettier-config-pwa": "8.0.0-canary.
|
32
|
-
"@graphcommerce/react-hook-form": "8.0.0-canary.
|
33
|
-
"@graphcommerce/typescript-config-pwa": "8.0.0-canary.
|
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",
|