@graphcommerce/magento-search 7.1.0-canary.9 → 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 +116 -8
- package/package.json +12 -16
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
|
@@ -933,31 +1041,31 @@
|
|
933
1041
|
All occurences of `<Trans>` and `t` need to be replaced:
|
934
1042
|
|
935
1043
|
```tsx
|
936
|
-
import { Trans, t } from
|
1044
|
+
import { Trans, t } from "@lingui/macro";
|
937
1045
|
|
938
1046
|
function MyComponent() {
|
939
|
-
const foo =
|
1047
|
+
const foo = "bar";
|
940
1048
|
return (
|
941
1049
|
<div aria-label={t`Account ${foo}`}>
|
942
1050
|
<Trans>My Translation {foo}</Trans>
|
943
1051
|
</div>
|
944
|
-
)
|
1052
|
+
);
|
945
1053
|
}
|
946
1054
|
```
|
947
1055
|
|
948
1056
|
Needs to be replaced with:
|
949
1057
|
|
950
1058
|
```tsx
|
951
|
-
import { Trans } from
|
952
|
-
import { i18n } from
|
1059
|
+
import { Trans } from "@lingui/react";
|
1060
|
+
import { i18n } from "@lingui/core";
|
953
1061
|
|
954
1062
|
function MyComponent() {
|
955
|
-
const foo =
|
1063
|
+
const foo = "bar";
|
956
1064
|
return (
|
957
1065
|
<div aria-label={i18n._(/* i18n */ `Account {foo}`, { foo })}>
|
958
|
-
<Trans key=
|
1066
|
+
<Trans key="My Translation {foo}" values={{ foo }}></Trans>
|
959
1067
|
</div>
|
960
|
-
)
|
1068
|
+
);
|
961
1069
|
}
|
962
1070
|
```
|
963
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": "
|
5
|
+
"version": "8.0.0-canary.69",
|
6
6
|
"sideEffects": false,
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
8
8
|
"eslintConfig": {
|
@@ -11,25 +11,21 @@
|
|
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/image": "7.1.0-canary.9",
|
23
|
-
"@graphcommerce/magento-product": "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
|
-
"@
|
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",
|
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
|
-
"next": "
|
28
|
+
"next": "*",
|
33
29
|
"react": "^18.2.0",
|
34
30
|
"react-dom": "^18.2.0"
|
35
31
|
}
|