From 9e2d2010ba031e624bef2e18e8523ca823773f2c Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sun, 16 Aug 2026 21:58:04 +0900 Subject: [PATCH] feat(fe): Apply form field navigation to all input components - KsNumberField: Enter -> next field - KsMoneyField: Enter -> next field - KsMultiSelect: Enter (when closed) -> next field - Complete Tab-like Enter key behavior across all form inputs - Enables seamless form navigation with Enter key (matching grid behavior) --- frontend/src/shared/ui/components/KsMoneyField.vue | 9 +++++++++ frontend/src/shared/ui/components/KsMultiSelect.vue | 7 +++++++ frontend/src/shared/ui/components/KsNumberField.vue | 9 +++++++++ 3 files changed, 25 insertions(+) diff --git a/frontend/src/shared/ui/components/KsMoneyField.vue b/frontend/src/shared/ui/components/KsMoneyField.vue index 66405229..be1c0e8f 100644 --- a/frontend/src/shared/ui/components/KsMoneyField.vue +++ b/frontend/src/shared/ui/components/KsMoneyField.vue @@ -1,5 +1,6 @@