feat: remap key on all keymaps / layers (#668)

* add: popover checkboxs

* feat: add KeyActionRemap

* fix: template driven form checkbox name

* fix: delete key action only if it SwitchLayerAction

* feat: use remap on all keymaps/layers checkbox values in SAVE_KEY action

* feat: set default value to the remapOnAllKeymap and remapOnAllLayer checkbox

* fix: layer mapping
This commit is contained in:
Róbert Kiss
2018-06-10 21:50:49 +02:00
committed by László Monda
parent 83b9f0d1e9
commit f34cb2df56
10 changed files with 158 additions and 53 deletions
@@ -0,0 +1,7 @@
import { KeyAction } from 'uhk-common';
export interface KeyActionRemap {
remapOnAllKeymap: boolean;
remapOnAllLayer: boolean;
action: KeyAction;
}