@graphcommerce/magento-payment-braintree 7.1.0-canary.64 → 7.1.0-canary.66
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -8
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 7.1.0-canary.66
|
4
|
+
|
5
|
+
## 7.1.0-canary.65
|
6
|
+
|
3
7
|
## 7.1.0-canary.64
|
4
8
|
|
5
9
|
## 7.1.0-canary.63
|
@@ -1234,31 +1238,31 @@
|
|
1234
1238
|
All occurences of `<Trans>` and `t` need to be replaced:
|
1235
1239
|
|
1236
1240
|
```tsx
|
1237
|
-
import { Trans, t } from
|
1241
|
+
import { Trans, t } from "@lingui/macro";
|
1238
1242
|
|
1239
1243
|
function MyComponent() {
|
1240
|
-
const foo =
|
1244
|
+
const foo = "bar";
|
1241
1245
|
return (
|
1242
1246
|
<div aria-label={t`Account ${foo}`}>
|
1243
1247
|
<Trans>My Translation {foo}</Trans>
|
1244
1248
|
</div>
|
1245
|
-
)
|
1249
|
+
);
|
1246
1250
|
}
|
1247
1251
|
```
|
1248
1252
|
|
1249
1253
|
Needs to be replaced with:
|
1250
1254
|
|
1251
1255
|
```tsx
|
1252
|
-
import { Trans } from
|
1253
|
-
import { i18n } from
|
1256
|
+
import { Trans } from "@lingui/react";
|
1257
|
+
import { i18n } from "@lingui/core";
|
1254
1258
|
|
1255
1259
|
function MyComponent() {
|
1256
|
-
const foo =
|
1260
|
+
const foo = "bar";
|
1257
1261
|
return (
|
1258
1262
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1259
|
-
<Trans key=
|
1263
|
+
<Trans key="My Translation {foo}" values={{ foo }}></Trans>
|
1260
1264
|
</div>
|
1261
|
-
)
|
1265
|
+
);
|
1262
1266
|
}
|
1263
1267
|
```
|
1264
1268
|
|
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": "7.1.0-canary.
|
5
|
+
"version": "7.1.0-canary.66",
|
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
|
-
"@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": "^7.1.0-canary.
|
22
|
-
"@graphcommerce/graphql": "^7.1.0-canary.
|
23
|
-
"@graphcommerce/image": "^7.1.0-canary.
|
24
|
-
"@graphcommerce/magento-cart": "^7.1.0-canary.
|
25
|
-
"@graphcommerce/magento-cart-payment-method": "^7.1.0-canary.
|
26
|
-
"@graphcommerce/magento-cart-shipping-address": "^7.1.0-canary.
|
27
|
-
"@graphcommerce/magento-product": "^7.1.0-canary.
|
28
|
-
"@graphcommerce/magento-product-configurable": "^7.1.0-canary.
|
29
|
-
"@graphcommerce/magento-store": "^7.1.0-canary.
|
30
|
-
"@graphcommerce/next-ui": "^7.1.0-canary.
|
31
|
-
"@graphcommerce/prettier-config-pwa": "^7.1.0-canary.
|
32
|
-
"@graphcommerce/react-hook-form": "^7.1.0-canary.
|
33
|
-
"@graphcommerce/typescript-config-pwa": "^7.1.0-canary.
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^7.1.0-canary.66",
|
22
|
+
"@graphcommerce/graphql": "^7.1.0-canary.66",
|
23
|
+
"@graphcommerce/image": "^7.1.0-canary.66",
|
24
|
+
"@graphcommerce/magento-cart": "^7.1.0-canary.66",
|
25
|
+
"@graphcommerce/magento-cart-payment-method": "^7.1.0-canary.66",
|
26
|
+
"@graphcommerce/magento-cart-shipping-address": "^7.1.0-canary.66",
|
27
|
+
"@graphcommerce/magento-product": "^7.1.0-canary.66",
|
28
|
+
"@graphcommerce/magento-product-configurable": "^7.1.0-canary.66",
|
29
|
+
"@graphcommerce/magento-store": "^7.1.0-canary.66",
|
30
|
+
"@graphcommerce/next-ui": "^7.1.0-canary.66",
|
31
|
+
"@graphcommerce/prettier-config-pwa": "^7.1.0-canary.66",
|
32
|
+
"@graphcommerce/react-hook-form": "^7.1.0-canary.66",
|
33
|
+
"@graphcommerce/typescript-config-pwa": "^7.1.0-canary.66",
|
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
|
}
|