@graphcommerce/ecommerce-ui 1.1.9 → 1.1.12
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
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @graphcommerce/ecommerce-ui
|
|
2
2
|
|
|
3
|
+
## 1.1.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`1f7ee6f6c`](https://github.com/graphcommerce-org/graphcommerce/commit/1f7ee6f6cfb28544439ed36e10929ac530d1b2b7), [`707dbc73d`](https://github.com/graphcommerce-org/graphcommerce/commit/707dbc73d181204d88fdbbd2e09340e25b2b5f7b), [`5c5645e6e`](https://github.com/graphcommerce-org/graphcommerce/commit/5c5645e6eaf5314c063f05547707fcd4b34a8717)]:
|
|
8
|
+
- @graphcommerce/next-ui@4.21.0
|
|
9
|
+
- @graphcommerce/framer-utils@3.1.5
|
|
10
|
+
- @graphcommerce/graphql@3.4.6
|
|
11
|
+
|
|
12
|
+
## 1.1.11
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`43822fd61`](https://github.com/graphcommerce-org/graphcommerce/commit/43822fd61c949215b8ddce9fb37d09f29b638426), [`3a619b70d`](https://github.com/graphcommerce-org/graphcommerce/commit/3a619b70d082804b8de46a8e8232f9431479a8b7)]:
|
|
17
|
+
- @graphcommerce/next-ui@4.20.0
|
|
18
|
+
|
|
19
|
+
## 1.1.10
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [[`b6d3a3c13`](https://github.com/graphcommerce-org/graphcommerce/commit/b6d3a3c13ea63ef0f691f497507f07c0e094de5b)]:
|
|
24
|
+
- @graphcommerce/next-ui@4.19.0
|
|
25
|
+
|
|
3
26
|
## 1.1.9
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -18,12 +18,12 @@ export function ApolloErrorAlert(props: ApolloErrorAlertProps) {
|
|
|
18
18
|
return (
|
|
19
19
|
<AnimatePresence initial={false}>
|
|
20
20
|
{error && (
|
|
21
|
-
<AnimatedRow key='alerts'>
|
|
21
|
+
<AnimatedRow layout key='alerts'>
|
|
22
22
|
<Box sx={sx} className={classes.root}>
|
|
23
23
|
<AnimatePresence initial={false}>
|
|
24
24
|
{error.graphQLErrors.map((e, index) => (
|
|
25
25
|
// eslint-disable-next-line react/no-array-index-key
|
|
26
|
-
<AnimatedRow key={index}>
|
|
26
|
+
<AnimatedRow layout key={index}>
|
|
27
27
|
<div className={classes.alert}>
|
|
28
28
|
<Alert severity='error' {...graphqlErrorAlertProps}>
|
|
29
29
|
{e.message}
|
|
@@ -32,7 +32,7 @@ export function ApolloErrorAlert(props: ApolloErrorAlertProps) {
|
|
|
32
32
|
</AnimatedRow>
|
|
33
33
|
))}
|
|
34
34
|
{error.networkError && (
|
|
35
|
-
<AnimatedRow key='networkError'>
|
|
35
|
+
<AnimatedRow layout key='networkError'>
|
|
36
36
|
<Box
|
|
37
37
|
sx={(theme) => ({
|
|
38
38
|
paddingTop: theme.spacings.xxs,
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/ecommerce-ui",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.12",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
8
8
|
"eslintConfig": {
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@graphcommerce/framer-utils": "3.1.
|
|
16
|
-
"@graphcommerce/next-ui": "4.
|
|
15
|
+
"@graphcommerce/framer-utils": "3.1.5",
|
|
16
|
+
"@graphcommerce/next-ui": "4.21.0",
|
|
17
17
|
"@graphcommerce/react-hook-form": "3.3.2",
|
|
18
|
-
"@graphcommerce/graphql": "3.4.
|
|
18
|
+
"@graphcommerce/graphql": "3.4.6"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@graphcommerce/eslint-config-pwa": "^4.1.
|
|
21
|
+
"@graphcommerce/eslint-config-pwa": "^4.1.10",
|
|
22
22
|
"@graphcommerce/prettier-config-pwa": "^4.0.6",
|
|
23
23
|
"@graphcommerce/typescript-config-pwa": "^4.0.4",
|
|
24
24
|
"@playwright/test": "^1.21.1"
|