feat: Implement basic general folder support (#2051)

- Related: #1748
This commit is contained in:
Dermot Duffy
2025-05-21 19:59:21 -07:00
committed by GitHub
parent 2eb0d9e35e
commit c6a4c8aea2
350 changed files with 12837 additions and 4509 deletions
+8 -10
View File
@@ -36,16 +36,14 @@ const keyboardShortcutsSchema = z.object({
});
export type KeyboardShortcuts = z.infer<typeof keyboardShortcutsSchema>;
const KEYBOARD_SHORTCUT_PTZ_NAMES = [
'ptz_down',
'ptz_home',
'ptz_left',
'ptz_right',
'ptz_up',
'ptz_zoom_in',
'ptz_zoom_out',
] as const;
export type PTZKeyboardShortcutName = (typeof KEYBOARD_SHORTCUT_PTZ_NAMES)[number];
export type PTZKeyboardShortcutName =
| 'ptz_down'
| 'ptz_home'
| 'ptz_left'
| 'ptz_right'
| 'ptz_up'
| 'ptz_zoom_in'
| 'ptz_zoom_out';
export const viewConfigDefault = {
default: VIEW_DEFAULT,