feat: customize all-notes note list columns

This commit is contained in:
lucaronin
2026-04-16 02:18:43 +02:00
parent f3ee593dee
commit bbf98d6112
11 changed files with 629 additions and 167 deletions

View File

@@ -132,6 +132,11 @@ export interface InboxConfig {
explicitOrganization?: boolean | null
}
/** Vault-scoped UI configuration stored locally per vault path. */
export interface AllNotesConfig {
noteListProperties: string[] | null
}
/** Vault-scoped UI configuration stored locally per vault path. */
export interface VaultConfig {
zoom: number | null
@@ -141,6 +146,7 @@ export interface VaultConfig {
status_colors: Record<string, string> | null
property_display_modes: Record<string, string> | null
inbox?: InboxConfig | null
allNotes?: AllNotesConfig | null
}
export interface PulseFile {