@graphcommerce/next-ui 3.23.0 → 3.24.2
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/AppShell/GlobalHead.tsx
CHANGED
|
@@ -26,9 +26,10 @@ export function GlobalHead(props: GlobalHeadProps) {
|
|
|
26
26
|
<meta name='apple-mobile-web-app-title' content={name} key='apple-mobile-web-app-title' />
|
|
27
27
|
<meta name='format-detection' content='telephone=no' key='format-detection' />
|
|
28
28
|
<meta name='mobile-web-app-capable' content='yes' key='mobile-web-app-capable' />
|
|
29
|
-
<link rel='
|
|
29
|
+
<link rel='icon' href='/favicon.ico' sizes='any' />
|
|
30
|
+
<link rel='icon' href='/favicon.svg' type='image/svg+xml' />
|
|
31
|
+
<link rel='apple-touch-icon' href='/apple-touch-icon.png' />
|
|
30
32
|
<link rel='manifest' href='/manifest.webmanifest' key='manifest' />
|
|
31
|
-
<link rel='icon' href='/manifest/favicon.ico' key='icon' />
|
|
32
33
|
</Head>
|
|
33
34
|
)
|
|
34
35
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.24.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.24.1...@graphcommerce/next-ui@3.24.2) (2022-01-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* favicon.svg path ([fefe20b](https://github.com/ho-nl/m2-pwa/commit/fefe20bd1d8392b9d39632c6335395dd4931af2f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.24.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.24.0...@graphcommerce/next-ui@3.24.1) (2022-01-18)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* favicon and manifest ([304d6dd](https://github.com/ho-nl/m2-pwa/commit/304d6dd7769d349b02b06dfdfdc3f9d22a4af081))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.24.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.23.1...@graphcommerce/next-ui@3.24.0) (2022-01-17)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* manifest and favicon ([a82202c](https://github.com/ho-nl/m2-pwa/commit/a82202c0e572f005cbcfca815936af9356eb2767))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## [3.23.1](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.23.0...@graphcommerce/next-ui@3.23.1) (2022-01-04)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
* close button on mobile ([a0c6c07](https://github.com/ho-nl/m2-pwa/commit/a0c6c075a1ee2541c864a561cd5318ed5fb5760c))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
6
50
|
# [3.23.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/next-ui@3.22.2...@graphcommerce/next-ui@3.23.0) (2022-01-04)
|
|
7
51
|
|
|
8
52
|
|
|
@@ -14,8 +14,10 @@ export function useShowClose() {
|
|
|
14
14
|
|
|
15
15
|
const useStyles = makeStyles((theme: Theme) => ({
|
|
16
16
|
close: {
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
[theme.breakpoints.up('md')]: {
|
|
18
|
+
marginLeft: `calc(${responsiveVal(12, 22)} * -1)`,
|
|
19
|
+
marginRight: `calc(${responsiveVal(12, 22)} * -1)`,
|
|
20
|
+
},
|
|
19
21
|
},
|
|
20
22
|
}))
|
|
21
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphcommerce/next-ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.2",
|
|
4
4
|
"author": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@apollo/client": "^3.5.6",
|
|
13
13
|
"@graphcommerce/framer-next-pages": "^2.109.2",
|
|
14
|
-
"@graphcommerce/framer-scroller": "^1.2.
|
|
14
|
+
"@graphcommerce/framer-scroller": "^1.2.7",
|
|
15
15
|
"@graphcommerce/framer-utils": "^2.103.21",
|
|
16
16
|
"@graphcommerce/graphql": "^2.105.13",
|
|
17
17
|
"@graphcommerce/image": "^2.105.13",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"project": "./tsconfig.json"
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "75d3f01a066d04aa82515011971619e48048bfd4"
|
|
55
55
|
}
|