@graphcommerce/next-ui 7.1.0-canary.28 → 7.1.0-canary.30
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,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 7.1.0-canary.30
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2105](https://github.com/graphcommerce-org/graphcommerce/pull/2105) [`185f9ddeb`](https://github.com/graphcommerce-org/graphcommerce/commit/185f9ddebff0eaf1f388faebe88a5d400294512a) - Fixed bug where the mobile menu wouldn't open after the first selected level ([@mikekeehnen](https://github.com/mikekeehnen))
|
|
8
|
+
|
|
9
|
+
## 7.1.0-canary.29
|
|
10
|
+
|
|
3
11
|
## 7.1.0-canary.28
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -178,6 +178,7 @@ export const NavigationOverlay = React.memo((props: NavigationOverlayProps) => {
|
|
|
178
178
|
(theme) => ({
|
|
179
179
|
display: 'grid',
|
|
180
180
|
alignItems: !stretchColumns ? 'start' : undefined,
|
|
181
|
+
justifyContent: 'end',
|
|
181
182
|
[theme.breakpoints.down('md')]: {
|
|
182
183
|
width:
|
|
183
184
|
sizeSm !== 'floating'
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
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.30",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"sideEffects": false,
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"@emotion/react": "^11.11.1",
|
|
19
19
|
"@emotion/server": "^11.11.0",
|
|
20
20
|
"@emotion/styled": "^11.11.0",
|
|
21
|
-
"@graphcommerce/framer-next-pages": "7.1.0-canary.
|
|
22
|
-
"@graphcommerce/framer-scroller": "7.1.0-canary.
|
|
23
|
-
"@graphcommerce/framer-utils": "7.1.0-canary.
|
|
24
|
-
"@graphcommerce/image": "7.1.0-canary.
|
|
21
|
+
"@graphcommerce/framer-next-pages": "7.1.0-canary.30",
|
|
22
|
+
"@graphcommerce/framer-scroller": "7.1.0-canary.30",
|
|
23
|
+
"@graphcommerce/framer-utils": "7.1.0-canary.30",
|
|
24
|
+
"@graphcommerce/image": "7.1.0-canary.30",
|
|
25
25
|
"cookie": "^0.5.0",
|
|
26
26
|
"react-is": "^18.2.0",
|
|
27
27
|
"schema-dts": "^1.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@graphcommerce/eslint-config-pwa": "7.1.0-canary.
|
|
31
|
-
"@graphcommerce/prettier-config-pwa": "7.1.0-canary.
|
|
32
|
-
"@graphcommerce/typescript-config-pwa": "7.1.0-canary.
|
|
30
|
+
"@graphcommerce/eslint-config-pwa": "7.1.0-canary.30",
|
|
31
|
+
"@graphcommerce/prettier-config-pwa": "7.1.0-canary.30",
|
|
32
|
+
"@graphcommerce/typescript-config-pwa": "7.1.0-canary.30",
|
|
33
33
|
"@types/cookie": "^0.5.2",
|
|
34
34
|
"@types/react-is": "^18.2.1",
|
|
35
35
|
"typescript": "5.2.2"
|