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:
@@ -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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user