@graphcommerce/magento-search 8.0.0-canary.40 → 8.0.0-canary.69
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 +56 -10
- package/package.json +10 -10
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
|
|
@@ -995,31 +1041,31 @@
|
|
995
1041
|
All occurences of `<Trans>` and `t` need to be replaced:
|
996
1042
|
|
997
1043
|
```tsx
|
998
|
-
import { Trans, t } from
|
1044
|
+
import { Trans, t } from "@lingui/macro";
|
999
1045
|
|
1000
1046
|
function MyComponent() {
|
1001
|
-
const foo =
|
1047
|
+
const foo = "bar";
|
1002
1048
|
return (
|
1003
1049
|
<div aria-label={t`Account ${foo}`}>
|
1004
1050
|
<Trans>My Translation {foo}</Trans>
|
1005
1051
|
</div>
|
1006
|
-
)
|
1052
|
+
);
|
1007
1053
|
}
|
1008
1054
|
```
|
1009
1055
|
|
1010
1056
|
Needs to be replaced with:
|
1011
1057
|
|
1012
1058
|
```tsx
|
1013
|
-
import { Trans } from
|
1014
|
-
import { i18n } from
|
1059
|
+
import { Trans } from "@lingui/react";
|
1060
|
+
import { i18n } from "@lingui/core";
|
1015
1061
|
|
1016
1062
|
function MyComponent() {
|
1017
|
-
const foo =
|
1063
|
+
const foo = "bar";
|
1018
1064
|
return (
|
1019
1065
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
1020
|
-
<Trans key=
|
1066
|
+
<Trans key="My Translation {foo}" values={{ foo }}></Trans>
|
1021
1067
|
</div>
|
1022
|
-
)
|
1068
|
+
);
|
1023
1069
|
}
|
1024
1070
|
```
|
1025
1071
|
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/magento-search",
|
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,15 +12,15 @@
|
|
12
12
|
}
|
13
13
|
},
|
14
14
|
"peerDependencies": {
|
15
|
-
"@graphcommerce/ecommerce-ui": "8.0.0-canary.
|
16
|
-
"@graphcommerce/eslint-config-pwa": "8.0.0-canary.
|
17
|
-
"@graphcommerce/graphql": "8.0.0-canary.
|
18
|
-
"@graphcommerce/image": "8.0.0-canary.
|
19
|
-
"@graphcommerce/magento-product": "8.0.0-canary.
|
20
|
-
"@graphcommerce/next-ui": "8.0.0-canary.
|
21
|
-
"@graphcommerce/prettier-config-pwa": "8.0.0-canary.
|
22
|
-
"@graphcommerce/react-hook-form": "8.0.0-canary.
|
23
|
-
"@graphcommerce/typescript-config-pwa": "8.0.0-canary.
|
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/image": "^8.0.0-canary.69",
|
19
|
+
"@graphcommerce/magento-product": "^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",
|
24
24
|
"@lingui/core": "^4.2.1",
|
25
25
|
"@lingui/macro": "^4.2.1",
|
26
26
|
"@lingui/react": "^4.2.1",
|