mirror of
https://github.com/zadam/trilium.git
synced 2025-11-17 18:50:41 +01:00
Merge remote-tracking branch 'origin/main' into react/type_widgets
; Conflicts: ; apps/client/src/layouts/desktop_layout.tsx ; apps/client/src/layouts/mobile_layout.tsx ; apps/client/src/widgets/note_detail.ts ; apps/client/src/widgets/react/hooks.tsx
This commit is contained in:
@@ -6,7 +6,9 @@ enum Command {
|
||||
createNoteIntoInbox,
|
||||
showRecentChanges,
|
||||
showOptions,
|
||||
createAiChat
|
||||
createAiChat,
|
||||
commandPalette,
|
||||
toggleZenMode
|
||||
}
|
||||
|
||||
export interface HiddenSubtreeAttribute {
|
||||
@@ -41,7 +43,9 @@ export interface HiddenSubtreeItem {
|
||||
| "protectedSession"
|
||||
| "calendar"
|
||||
| "quickSearch"
|
||||
| "aiChatLauncher";
|
||||
| "aiChatLauncher"
|
||||
| "commandPalette"
|
||||
| "toggleZenMode";
|
||||
command?: keyof typeof Command;
|
||||
/**
|
||||
* If set to true, then branches will be enforced to be in the correct place.
|
||||
|
||||
@@ -82,6 +82,7 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
|
||||
autoReadonlySizeText: number;
|
||||
autoReadonlySizeCode: number;
|
||||
maxContentWidth: number;
|
||||
centerContent: boolean;
|
||||
minTocHeadings: number;
|
||||
eraseUnusedAttachmentsAfterSeconds: number;
|
||||
eraseUnusedAttachmentsAfterTimeScale: number;
|
||||
|
||||
@@ -12,7 +12,7 @@ export interface AttachmentRow {
|
||||
isProtected?: boolean;
|
||||
dateModified?: string;
|
||||
utcDateModified?: string;
|
||||
utcDateScheduledForErasureSince?: string;
|
||||
utcDateScheduledForErasureSince?: string | null;
|
||||
isDeleted?: boolean;
|
||||
deleteId?: string;
|
||||
contentLength?: number;
|
||||
|
||||
Reference in New Issue
Block a user