@thi.ng/rstream-gestures 4.1.4 → 4.1.7
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 +1 -1
- package/README.md +1 -1
- package/api.d.ts +2 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/api.d.ts
CHANGED
|
@@ -112,7 +112,8 @@ export interface GestureStreamOpts extends IID<string> {
|
|
|
112
112
|
*/
|
|
113
113
|
maxZoom: number;
|
|
114
114
|
/**
|
|
115
|
-
* Scaling factor for zoom changes. Default: 1
|
|
115
|
+
* Scaling factor for zoom changes. Default: 1. If given a negative value,
|
|
116
|
+
* the sign/direction of wheel event Y-scroll values will flipped.
|
|
116
117
|
*/
|
|
117
118
|
smooth: number;
|
|
118
119
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream-gestures",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.7",
|
|
4
4
|
"description": "Unified mouse, mouse wheel & multi-touch event stream abstraction",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.3.
|
|
38
|
-
"@thi.ng/checks": "^3.1.
|
|
39
|
-
"@thi.ng/math": "^5.2
|
|
40
|
-
"@thi.ng/rstream": "^7.2.
|
|
41
|
-
"@thi.ng/transducers": "^8.2
|
|
37
|
+
"@thi.ng/api": "^8.3.6",
|
|
38
|
+
"@thi.ng/checks": "^3.1.6",
|
|
39
|
+
"@thi.ng/math": "^5.3.2",
|
|
40
|
+
"@thi.ng/rstream": "^7.2.5",
|
|
41
|
+
"@thi.ng/transducers": "^8.3.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@microsoft/api-extractor": "^7.
|
|
45
|
-
"@thi.ng/testament": "^0.2.
|
|
44
|
+
"@microsoft/api-extractor": "^7.23.1",
|
|
45
|
+
"@thi.ng/testament": "^0.2.6",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
47
|
"tools": "^0.0.1",
|
|
48
|
-
"typedoc": "^0.22.
|
|
49
|
-
"typescript": "^4.
|
|
48
|
+
"typedoc": "^0.22.15",
|
|
49
|
+
"typescript": "^4.6.4"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"animation",
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
],
|
|
75
75
|
"exports": {
|
|
76
76
|
".": {
|
|
77
|
-
"
|
|
77
|
+
"default": "./index.js"
|
|
78
78
|
},
|
|
79
79
|
"./api": {
|
|
80
|
-
"
|
|
80
|
+
"default": "./api.js"
|
|
81
81
|
},
|
|
82
82
|
"./gesture-stream": {
|
|
83
|
-
"
|
|
83
|
+
"default": "./gesture-stream.js"
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
"thi.ng": {
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
],
|
|
92
92
|
"year": 2018
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "cf084be5fd5932226054d2dd32bad35481379f5d\n"
|
|
95
95
|
}
|