Cleanup and split Enums

This commit is contained in:
djmaze 2021-01-24 22:58:06 +01:00
parent 864da66b5f
commit f3bfa0e8c1
31 changed files with 315 additions and 344 deletions

View file

@ -1,6 +1,7 @@
import ko from 'ko';
import { Capa, Focused, Layout, KeyState } from 'Common/Enums';
import { Capa, KeyState } from 'Common/Enums';
import { Focused, Layout } from 'Common/EnumsUser';
import { leftPanelDisabled, moveAction } from 'Common/Globals';
import { mailBox, settings } from 'Common/Links';
import { setFolderHash } from 'Common/Cache';

View file

@ -2,14 +2,17 @@ import ko from 'ko';
import {
Capa,
KeyState,
StorageResultType
} from 'Common/Enums';
import {
Layout,
Focused,
ComposeType,
FolderType,
MessageSetAction,
KeyState,
StorageResultType
} from 'Common/Enums';
MessageSetAction
} from 'Common/EnumsUser';
import { UNUSED_OPTION_VALUE } from 'Common/Consts';

View file

@ -4,14 +4,17 @@ import { UNUSED_OPTION_VALUE } from 'Common/Consts';
import {
Capa,
KeyState
} from 'Common/Enums';
import {
ComposeType,
ClientSideKeyName,
KeyState,
FolderType,
Focused,
Layout,
MessageSetAction
} from 'Common/Enums';
} from 'Common/EnumsUser';
import { $htmlCL, leftPanelDisabled, keyScopeReal, moveAction } from 'Common/Globals';