Feat/open input not focus (#811)

* Fixed click outside

* Finished

* Fixed tests
This commit is contained in:
Lucas Bordeau
2023-07-22 07:09:02 +02:00
committed by GitHub
parent 0f3f6fa948
commit 62720944fa
15 changed files with 192 additions and 88 deletions

View File

@ -0,0 +1,11 @@
import { atomFamily } from 'recoil';
import { HotkeyScope } from '../../../hotkey/types/HotkeyScope';
export const customCellHotkeyScopeScopedState = atomFamily<
HotkeyScope | null,
string
>({
key: 'customCellHotkeyScopeScopedState',
default: null,
});