feat: MVP-5 P2 - Export/Import, Settings, Tests y Validaciones

- Ticket 10: Navegación completa de listas por teclado (↑↓ Enter E F P)
- Ticket 13: Historial de navegación contextual con recent-context-list
- Ticket 17: Exportación mejorada a Markdown con frontmatter
- Ticket 18: Exportación HTML simple y legible
- Ticket 19: Importador Markdown mejorado con frontmatter, tags, wiki links
- Ticket 20: Importador Obsidian-compatible (wiki links, #tags inline)
- Ticket 21: Centro de respaldo y portabilidad en Settings
- Ticket 22: Configuración visible de feature flags
- Ticket 24: Tests de command palette y captura externa
- Ticket 25: Harden de validaciones y límites (50MB backup, 10K notas, etc)
This commit is contained in:
2026-03-22 19:39:55 -03:00
parent 8d56f34d68
commit e66a678160
24 changed files with 1286 additions and 42 deletions
+4 -2
View File
@@ -1,5 +1,6 @@
import { prisma } from '@/lib/prisma'
import { NoteList } from '@/components/note-list'
import { KeyboardNavigableNoteList } from '@/components/keyboard-navigable-note-list'
import { KeyboardHint } from '@/components/keyboard-hint'
import { SearchBar } from '@/components/search-bar'
import { TagFilter } from '@/components/tag-filter'
import { NoteType } from '@/types/note'
@@ -86,7 +87,8 @@ export default async function NotesPage({ searchParams }: { searchParams: Promis
</div>
)}
<NoteList notes={notesWithTags} />
<KeyboardNavigableNoteList notes={notesWithTags} />
<KeyboardHint />
</main>
)
}