@ue-too/board 0.15.0 → 0.17.0
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.
|
@@ -85,6 +85,7 @@ export type KmtInputEventMapping = {
|
|
|
85
85
|
leftPointerMove: PointerEventPayload;
|
|
86
86
|
spacebarDown: EmptyPayload;
|
|
87
87
|
spacebarUp: EmptyPayload;
|
|
88
|
+
escapeKey: EmptyPayload;
|
|
88
89
|
stayIdle: EmptyPayload;
|
|
89
90
|
cursorOnElement: EmptyPayload;
|
|
90
91
|
scroll: ScrollWithCtrlEventPayload;
|
|
@@ -95,6 +96,11 @@ export type KmtInputEventMapping = {
|
|
|
95
96
|
disable: EmptyPayload;
|
|
96
97
|
enable: EmptyPayload;
|
|
97
98
|
pointerMove: PointerEventPayload;
|
|
99
|
+
arrowUp: EmptyPayload;
|
|
100
|
+
arrowDown: EmptyPayload;
|
|
101
|
+
F: EmptyPayload;
|
|
102
|
+
G: EmptyPayload;
|
|
103
|
+
Q: EmptyPayload;
|
|
98
104
|
};
|
|
99
105
|
/**
|
|
100
106
|
* Output events produced by the KMT state machine for the orchestrator.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ue-too/board",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.17.0",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./index.d.ts",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"types": "./index.d.ts",
|
|
15
15
|
"module": "./index.js",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@ue-too/being": "^0.
|
|
18
|
-
"@ue-too/math": "^0.
|
|
17
|
+
"@ue-too/being": "^0.17.0",
|
|
18
|
+
"@ue-too/math": "^0.17.0"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|