@graphcommerce/framer-scroller 1.1.23 → 1.1.24

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
@@ -3,6 +3,17 @@
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
+ ## [1.1.24](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/framer-scroller@1.1.23...@graphcommerce/framer-scroller@1.1.24) (2021-12-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **framer-next-pages:** closing is janky, caused by setting pointer-events to none, trying without resetting the pointerevents ([9247fa3](https://github.com/ho-nl/m2-pwa/commit/9247fa312926416802abd68ea04b1e6b52531f2c))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.1.22](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/framer-scroller@1.1.21...@graphcommerce/framer-scroller@1.1.22) (2021-12-22)
7
18
 
8
19
 
@@ -14,6 +14,10 @@ export function useScrollTo() {
14
14
  // In the future we want to move to browser native scrolling behavior, but since it is too slow we're not moving to that yet.
15
15
  // if ('scrollBehavior' in document.documentElement.style) {
16
16
  // scrollerRef.current.scrollTo({ left: to.x, top: to.y, behavior: 'smooth' })
17
+ // await new Promise((onComplete) => {
18
+ // setTimeout(onComplete, 2000)
19
+ // })
20
+ // return
17
21
  // }
18
22
 
19
23
  const xDone = new Promise<void>((onComplete) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/framer-scroller",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "sideEffects": false,
5
5
  "scripts": {
6
6
  "dev": "tsc -W"
@@ -18,7 +18,7 @@
18
18
  "dependencies": {
19
19
  "@graphcommerce/framer-utils": "^2.103.20",
20
20
  "@graphcommerce/image": "^2.105.11",
21
- "@graphcommerce/next-ui": "^3.21.13",
21
+ "@graphcommerce/next-ui": "^3.21.14",
22
22
  "@material-ui/core": "^4.12.3",
23
23
  "popmotion": "11.0.3"
24
24
  },
@@ -36,5 +36,5 @@
36
36
  "react-dom": "^17.0.2",
37
37
  "type-fest": "^2.8.0"
38
38
  },
39
- "gitHead": "2c255f0b276983c31b7c727743f93c1ae558b4c5"
39
+ "gitHead": "ce4499b06791f3b2e54a7e88bfca40abbcd1401c"
40
40
  }