@graphcommerce/next-ui 5.2.0-canary.4 → 5.2.0-canary.6

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
+ ## 5.2.0-canary.6
4
+
5
+ ## 5.2.0-canary.5
6
+
7
+ ### Patch Changes
8
+
9
+ - [#1776](https://github.com/graphcommerce-org/graphcommerce/pull/1776) [`09f7312ae`](https://github.com/graphcommerce-org/graphcommerce/commit/09f7312ae44fae531947f9ce64711b7ac5983fc1) - add media query guard to category menu behaviour. ([@FrankHarland](https://github.com/FrankHarland))
10
+
3
11
  ## 5.2.0-canary.4
4
12
 
5
13
  ## 5.2.0-canary.3
@@ -114,7 +114,7 @@ export const NavigationItem = React.memo<NavigationItemProps>((props) => {
114
114
  tabIndex={tabIndex}
115
115
  onClick={(e) => {
116
116
  e.preventDefault()
117
- if (!isSelected && !animating.get()) {
117
+ if (!isSelected && !(matchMedia.up('md') && animating.get())) {
118
118
  selection.set(itemPath)
119
119
  }
120
120
  }}
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": "5.2.0-canary.4",
5
+ "version": "5.2.0-canary.6",
6
6
  "author": "",
7
7
  "license": "MIT",
8
8
  "sideEffects": false,
@@ -18,18 +18,18 @@
18
18
  "@emotion/react": "^11.10.5",
19
19
  "@emotion/server": "^11.4.0",
20
20
  "@emotion/styled": "^11.10.5",
21
- "@graphcommerce/framer-next-pages": "5.2.0-canary.4",
22
- "@graphcommerce/framer-scroller": "5.2.0-canary.4",
23
- "@graphcommerce/framer-utils": "5.2.0-canary.4",
24
- "@graphcommerce/image": "5.2.0-canary.4",
21
+ "@graphcommerce/framer-next-pages": "5.2.0-canary.6",
22
+ "@graphcommerce/framer-scroller": "5.2.0-canary.6",
23
+ "@graphcommerce/framer-utils": "5.2.0-canary.6",
24
+ "@graphcommerce/image": "5.2.0-canary.6",
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": "5.2.0-canary.4",
31
- "@graphcommerce/prettier-config-pwa": "5.2.0-canary.4",
32
- "@graphcommerce/typescript-config-pwa": "5.2.0-canary.4",
30
+ "@graphcommerce/eslint-config-pwa": "5.2.0-canary.6",
31
+ "@graphcommerce/prettier-config-pwa": "5.2.0-canary.6",
32
+ "@graphcommerce/typescript-config-pwa": "5.2.0-canary.6",
33
33
  "@types/cookie": "^0.5.1",
34
34
  "@types/react-is": "^17.0.3",
35
35
  "typescript": "4.9.4"