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
+1 -3
View File
@@ -76,14 +76,12 @@ onMounted(() => {
</main>
</div>
<!-- Footer -->
<KsFooter />
<!-- Notifications (toasts) -->
<KsNotifications />
</div>
</template>
<style scoped>
.ks-app-shell {
display: flex;