Compare commits

..

2 Commits

Author SHA1 Message Date
4ec8707596 2.0.12 2022-04-21 19:16:07 +02:00
69e1b52e72 fix(core): update 2022-04-21 19:16:06 +02:00
3 changed files with 5 additions and 3 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@designestate/dees-domtools",
"version": "2.0.11",
"version": "2.0.12",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@designestate/dees-domtools",
"version": "2.0.11",
"version": "2.0.12",
"license": "MIT",
"dependencies": {
"@apiglobal/typedrequest": "^2.0.3",

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-domtools",
"version": "2.0.11",
"version": "2.0.12",
"private": false,
"description": "tools to simplify complex css structures",
"main": "dist_ts/index.js",

View File

@ -138,6 +138,8 @@ export class Keyboard {
this.startListening();
}
public keyEnum = Key;
public on(keys: Key[] | KeyCombo[]) {
const combos = this.toCombos(keys);
const subject = new plugins.smartrx.rxjs.Subject<KeyboardEvent>();