hr-design-system-handlebars 0.49.7 → 0.49.8
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,3 +1,15 @@
|
|
|
1
|
+
# v0.49.8 (Thu Jul 07 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- adds listener for touchmove (mobile) [#265](https://github.com/mumprod/hr-design-system-handlebars/pull/265) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.49.7 (Wed Jul 06 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -41,6 +41,7 @@ document.addEventListener('alpine:init', () => {
|
|
|
41
41
|
window.userScroll = true;
|
|
42
42
|
}
|
|
43
43
|
window.addEventListener('wheel', mouseEvent, false);
|
|
44
|
+
window.addEventListener('touchmove', mouseEvent, false)
|
|
44
45
|
|
|
45
46
|
window.addEventListener('scroll', this.debounce( () => {
|
|
46
47
|
let winScroll = document.body.scrollTop || document.documentElement.scrollTop
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "0.49.
|
|
9
|
+
"version": "0.49.8",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -41,6 +41,7 @@ document.addEventListener('alpine:init', () => {
|
|
|
41
41
|
window.userScroll = true;
|
|
42
42
|
}
|
|
43
43
|
window.addEventListener('wheel', mouseEvent, false);
|
|
44
|
+
window.addEventListener('touchmove', mouseEvent, false)
|
|
44
45
|
|
|
45
46
|
window.addEventListener('scroll', this.debounce( () => {
|
|
46
47
|
let winScroll = document.body.scrollTop || document.documentElement.scrollTop
|