feat(fe): Add form field navigation - Enter key moves to next field

- Create useFormFieldNavigation composable for Tab-like Enter behavior
- KsTextField: Enter -> next field
- KsTextArea: Ctrl+Enter for newline, Enter -> next field
- KsSelect: Enter -> next field after selection
- Implements standard form navigation pattern across input components
This commit is contained in:
2026-08-16 21:50:50 +09:00
parent 5213ea142b
commit b12fc7411d
25 changed files with 1105 additions and 85 deletions
+10
View File
@@ -77,6 +77,15 @@ const menuItems: MenuItem[] = [
{ id: 'market-data', label: '시장 데이터 수집', icon: '💾', path: '/ops/market-data-ingestion' },
],
},
{
id: 'system',
label: '시스템 설정',
icon: '⚙️',
path: '/system/common-codes',
children: [
{ id: 'sys-common-codes', label: '공통코드 관리', icon: '🔤', path: '/system/common-codes' },
],
},
{
id: 'ui-catalog',
label: 'UI 컴포넌트 갤러리',
@@ -85,6 +94,7 @@ const menuItems: MenuItem[] = [
},
]
// Auto-expand sections based on current active route
onMounted(() => {
menuItems.forEach(item => {