orgnote-api 0.4.0 → 0.5.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.
- package/models/default-commands.ts +10 -0
- package/package.json +1 -1
|
@@ -27,4 +27,14 @@ export enum DefaultCommands {
|
|
|
27
27
|
RESET_THEME = 'reset theme',
|
|
28
28
|
TOGGLE_DARK_MODE = 'toggle dark mode',
|
|
29
29
|
TOGGLE_DEBUG_MODE = 'toggle debug mode',
|
|
30
|
+
SELECT_THEME = 'select theme',
|
|
31
|
+
|
|
32
|
+
// Routing
|
|
33
|
+
OPEN_MY_NOTES = 'my notes',
|
|
34
|
+
OPEN_DASHBOARD = 'dashboard',
|
|
35
|
+
OPEN_PUBLIC_NOTE_LIST = 'public note list',
|
|
36
|
+
OPEN_NOTE_EDITOR = 'edit mode',
|
|
37
|
+
OPEN_NOTE_VIEWER = 'view mode',
|
|
38
|
+
OPEN_GRAPH = 'graph',
|
|
39
|
+
OPEN_EXTENSIONS = 'extensions',
|
|
30
40
|
}
|