@thi.ng/rstream-gestures 5.0.142 → 5.0.146
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/package.json +101 -101
- package/CHANGELOG.md +0 -44
package/package.json
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
}
|
|
2
|
+
"name": "@thi.ng/rstream-gestures",
|
|
3
|
+
"version": "5.0.146",
|
|
4
|
+
"description": "Unified mouse, mouse wheel & multi-touch event stream abstraction",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "./index.js",
|
|
7
|
+
"typings": "./index.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/thi-ng/umbrella.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://thi.ng/rstream-gestures",
|
|
14
|
+
"funding": [
|
|
15
|
+
{
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/postspectacular"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "patreon",
|
|
21
|
+
"url": "https://patreon.com/thing_umbrella"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "liberapay",
|
|
25
|
+
"url": "https://liberapay.com/thi.ng"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"author": "Karsten Schmidt (https://thi.ng)",
|
|
29
|
+
"contributors": [
|
|
30
|
+
"Arthur Carabott (https://github.com/acarabott)",
|
|
31
|
+
"Matei Adriel (https://github.com/Mateiadrielrafael)"
|
|
32
|
+
],
|
|
33
|
+
"license": "Apache-2.0",
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "yarn build:esbuild && yarn build:decl",
|
|
36
|
+
"build:decl": "tsc --declaration --emitDeclarationOnly",
|
|
37
|
+
"build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
|
|
38
|
+
"clean": "bun ../../tools/src/clean-package.ts",
|
|
39
|
+
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
|
|
40
|
+
"doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
|
|
41
|
+
"pub": "npm publish --access public",
|
|
42
|
+
"test": "bun test",
|
|
43
|
+
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@thi.ng/api": "^8.12.6",
|
|
47
|
+
"@thi.ng/checks": "^3.7.22",
|
|
48
|
+
"@thi.ng/math": "^5.13.3",
|
|
49
|
+
"@thi.ng/rstream": "^9.3.3",
|
|
50
|
+
"@thi.ng/transducers": "^9.6.14"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"esbuild": "^0.25.11",
|
|
54
|
+
"typedoc": "^0.28.14",
|
|
55
|
+
"typescript": "^5.9.3"
|
|
56
|
+
},
|
|
57
|
+
"keywords": [
|
|
58
|
+
"animation",
|
|
59
|
+
"dataflow",
|
|
60
|
+
"event",
|
|
61
|
+
"interaction",
|
|
62
|
+
"mouse",
|
|
63
|
+
"mousewheel",
|
|
64
|
+
"multitouch",
|
|
65
|
+
"reactive",
|
|
66
|
+
"rstream",
|
|
67
|
+
"stream",
|
|
68
|
+
"touch",
|
|
69
|
+
"typescript"
|
|
70
|
+
],
|
|
71
|
+
"publishConfig": {
|
|
72
|
+
"access": "public"
|
|
73
|
+
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=18"
|
|
76
|
+
},
|
|
77
|
+
"files": [
|
|
78
|
+
"./*.js",
|
|
79
|
+
"./*.d.ts"
|
|
80
|
+
],
|
|
81
|
+
"exports": {
|
|
82
|
+
".": {
|
|
83
|
+
"default": "./index.js"
|
|
84
|
+
},
|
|
85
|
+
"./api": {
|
|
86
|
+
"default": "./api.js"
|
|
87
|
+
},
|
|
88
|
+
"./gesture-stream": {
|
|
89
|
+
"default": "./gesture-stream.js"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"thi.ng": {
|
|
93
|
+
"alias": "gest",
|
|
94
|
+
"parent": "@thi.ng/rstream",
|
|
95
|
+
"related": [
|
|
96
|
+
"hdom",
|
|
97
|
+
"rdom"
|
|
98
|
+
],
|
|
99
|
+
"year": 2018
|
|
100
|
+
},
|
|
101
|
+
"gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
|
|
102
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
- **Last updated**: 2025-09-25T11:10:32Z
|
|
4
|
-
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
|
-
|
|
6
|
-
All notable changes to this project will be documented in this file.
|
|
7
|
-
Only versions published since **2022-01-01** are listed here.
|
|
8
|
-
Please consult the Git history for older version information.
|
|
9
|
-
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
|
10
|
-
|
|
11
|
-
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
|
-
and/or version bumps of transitive dependencies.
|
|
13
|
-
|
|
14
|
-
### [5.0.75](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-gestures@5.0.75) (2024-06-21)
|
|
15
|
-
|
|
16
|
-
#### ♻️ Refactoring
|
|
17
|
-
|
|
18
|
-
- enforce uniform naming convention of internal functions ([56992b2](https://github.com/thi-ng/umbrella/commit/56992b2))
|
|
19
|
-
|
|
20
|
-
### [5.0.71](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-gestures@5.0.71) (2024-04-20)
|
|
21
|
-
|
|
22
|
-
#### ♻️ Refactoring
|
|
23
|
-
|
|
24
|
-
- update type usage ([3116bab](https://github.com/thi-ng/umbrella/commit/3116bab))
|
|
25
|
-
|
|
26
|
-
### [5.0.31](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-gestures@5.0.31) (2023-11-09)
|
|
27
|
-
|
|
28
|
-
#### ♻️ Refactoring
|
|
29
|
-
|
|
30
|
-
- update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
|
|
31
|
-
|
|
32
|
-
# [5.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-gestures@5.0.0) (2023-04-08)
|
|
33
|
-
|
|
34
|
-
#### 🛑 Breaking changes
|
|
35
|
-
|
|
36
|
-
- support zoom reset via subscription ([03b1621](https://github.com/thi-ng/umbrella/commit/03b1621))
|
|
37
|
-
- BREAKING CHANGE: Original DOM event **might** not anymore be present in all cases
|
|
38
|
-
- update GestureStreamOpts.zoom to accept subscription
|
|
39
|
-
- update gestureStream() to support resetting of zoom value via subscription
|
|
40
|
-
- update docs
|
|
41
|
-
|
|
42
|
-
#### ♻️ Refactoring
|
|
43
|
-
|
|
44
|
-
- update stream ID handling ([2c9fa02](https://github.com/thi-ng/umbrella/commit/2c9fa02))
|