Phase 8 마무리: HistoryPage 날짜 그룹핑 + AppConfig 음성 모드 필드

- HistoryPage: 평면 리스트 → TODAY/YESTERDAY/날짜 그룹핑 (DashboardPage와 동일 패턴)
- AppConfig: dictationEnabled, agentModeEnabled, handsFreeEnabled 필드 추가
- ConfigService: 기본값 설정 (dictation=true, agent=false, handsFree=false)
- recording-tip: 에러 아이콘 색상 #D32F2F → #ef4444 (d3roPalette.tag.red)
This commit is contained in:
Yun Chan 2026-04-05 09:58:28 +09:00
parent 28371a9d1a
commit 5741d55c0b
4 changed files with 98 additions and 41 deletions

View file

@ -374,6 +374,12 @@ export interface AppConfig {
insertMethod: 'clipboard' | 'keyboard'
autoInsert: boolean
maxHistoryEntries: number
/** 받아쓰기 모드 활성화 (hold-to-talk) */
dictationEnabled: boolean
/** Agent 모드 활성화 (더블프레스, dictation 의존) */
agentModeEnabled: boolean
/** 핸즈프리 모드 활성화 (토글) */
handsFreeEnabled: boolean
}
export interface ConfigGetParams {