@graphcommerce/next-ui 6.0.0-canary.30 → 6.0.0-canary.31
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 +6 -0
- package/Footer/Footer.tsx +4 -4
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.0-canary.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1825](https://github.com/graphcommerce-org/graphcommerce/pull/1825) [`27302739e`](https://github.com/graphcommerce-org/graphcommerce/commit/27302739e5dcd8791e7a3df06855f6450b0a6d10) - Show mobile footer on tablet to prevent cart fab overlapping footer content ([@bramvanderholst](https://github.com/bramvanderholst))
|
|
8
|
+
|
|
3
9
|
## 6.0.0-canary.30
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/Footer/Footer.tsx
CHANGED
|
@@ -46,7 +46,7 @@ export function Footer(props: FooterProps) {
|
|
|
46
46
|
gap: theme.spacings.md,
|
|
47
47
|
'& > *': { maxWidth: 'max-content' },
|
|
48
48
|
|
|
49
|
-
[theme.breakpoints.up('
|
|
49
|
+
[theme.breakpoints.up('md')]: {
|
|
50
50
|
gap: theme.spacings.sm,
|
|
51
51
|
gridTemplateAreas: `
|
|
52
52
|
'social switcher'
|
|
@@ -84,7 +84,7 @@ export function Footer(props: FooterProps) {
|
|
|
84
84
|
sx={(theme) => ({
|
|
85
85
|
gridArea: 'switcher',
|
|
86
86
|
justifySelf: 'end',
|
|
87
|
-
[theme.breakpoints.down('
|
|
87
|
+
[theme.breakpoints.down('md')]: {
|
|
88
88
|
justifySelf: 'center',
|
|
89
89
|
},
|
|
90
90
|
})}
|
|
@@ -96,7 +96,7 @@ export function Footer(props: FooterProps) {
|
|
|
96
96
|
sx={(theme) => ({
|
|
97
97
|
gridArea: 'support',
|
|
98
98
|
justifySelf: 'flex-end',
|
|
99
|
-
[theme.breakpoints.down('
|
|
99
|
+
[theme.breakpoints.down('md')]: {
|
|
100
100
|
justifySelf: 'center',
|
|
101
101
|
},
|
|
102
102
|
})}
|
|
@@ -112,7 +112,7 @@ export function Footer(props: FooterProps) {
|
|
|
112
112
|
alignContent: 'center',
|
|
113
113
|
gridArea: 'links',
|
|
114
114
|
gap: theme.spacings.sm,
|
|
115
|
-
[theme.breakpoints.down('
|
|
115
|
+
[theme.breakpoints.down('md')]: {
|
|
116
116
|
gridAutoFlow: 'row',
|
|
117
117
|
textAlign: 'center',
|
|
118
118
|
gap: `8px`,
|
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": "6.0.0-canary.
|
|
5
|
+
"version": "6.0.0-canary.31",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"sideEffects": false,
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"@emotion/react": "^11.10.6",
|
|
19
19
|
"@emotion/server": "^11.4.0",
|
|
20
20
|
"@emotion/styled": "^11.10.6",
|
|
21
|
-
"@graphcommerce/framer-next-pages": "6.0.0-canary.
|
|
22
|
-
"@graphcommerce/framer-scroller": "6.0.0-canary.
|
|
23
|
-
"@graphcommerce/framer-utils": "6.0.0-canary.
|
|
24
|
-
"@graphcommerce/image": "6.0.0-canary.
|
|
21
|
+
"@graphcommerce/framer-next-pages": "6.0.0-canary.31",
|
|
22
|
+
"@graphcommerce/framer-scroller": "6.0.0-canary.31",
|
|
23
|
+
"@graphcommerce/framer-utils": "6.0.0-canary.31",
|
|
24
|
+
"@graphcommerce/image": "6.0.0-canary.31",
|
|
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": "6.0.0-canary.
|
|
31
|
-
"@graphcommerce/prettier-config-pwa": "6.0.0-canary.
|
|
32
|
-
"@graphcommerce/typescript-config-pwa": "6.0.0-canary.
|
|
30
|
+
"@graphcommerce/eslint-config-pwa": "6.0.0-canary.31",
|
|
31
|
+
"@graphcommerce/prettier-config-pwa": "6.0.0-canary.31",
|
|
32
|
+
"@graphcommerce/typescript-config-pwa": "6.0.0-canary.31",
|
|
33
33
|
"@types/cookie": "^0.5.1",
|
|
34
34
|
"@types/react-is": "^17.0.3",
|
|
35
35
|
"typescript": "4.9.5"
|