Fe 7725 date time numeric input behaviour fix - #8154
Open
ibutakova wants to merge 3 commits into
Open
Conversation
DipperTheDan
previously approved these changes
Aug 28, 2026
edleeks87
previously approved these changes
Sep 1, 2026
ibutakova
marked this pull request as ready for review
September 1, 2026 09:43
ibutakova
dismissed stale reviews from edleeks87 and DipperTheDan
via
September 3, 2026 13:53
8c305e6
ibutakova
force-pushed
the
FE-7725-date-time-numeric-input-behaviour-fix
branch
from
September 3, 2026 13:53
4c250b1 to
8c305e6
Compare
edleeks87
previously approved these changes
Sep 4, 2026
DipperTheDan
previously approved these changes
Sep 4, 2026
|
Tested and passes |
ibutakova
dismissed stale reviews from DipperTheDan and edleeks87
via
September 8, 2026 09:42
d1eb998
ibutakova
force-pushed
the
FE-7725-date-time-numeric-input-behaviour-fix
branch
from
September 8, 2026 09:44
d1eb998 to
7eed12f
Compare
edleeks87
approved these changes
Sep 8, 2026
divyajindel
marked this pull request as draft
September 8, 2026 12:28
divyajindel
marked this pull request as ready for review
September 8, 2026 12:28
divyajindel
approved these changes
Sep 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proposed behaviour
Numeral Date allows standard keyboard editing commands, including copy, paste, selection, and caret navigation.
All three date fields forward unrestricted raw text without length limits. Consumers remain responsible for parsing and accepting values such as localized month names.
Time exposes numeric inputMode, so supporting devices can display a numeric virtual keyboard.
Decimal exposes decimal inputMode, so supporting devices can display a numeric virtual keyboard with a locale-appropriate decimal separator. Consumers can override inputMode property.
The following HTML inputmode attributes provided:
numerictextnumericdecimalby default, with consumerinputModeoverrides supportedNumeral Date retains its advisory numeric-range validation. Non-numeric and incomplete raw values do not produce numeric-range errors. When raw Month or Year values prevent calendar-specific Day validation, only the universal 1–31 Day range is applied.
Current behaviour
Numeral Date prevents most
keydownevents, which blocks standard keyboard copy, paste, selection, and caret-navigation commands.Date fields also enforce character-length limits and only support short numeric values.
Time and Decimal do not provide explicit virtual-keyboard hints.
Checklist
d.tsfile added or updated if requiredQA
Additional context
This is a behavioral and accessibility change. No visual styling or layout changes are expected.
inputmodeis a virtual-keyboard hint only. It does not restrict hardware keyboard, assistive-technology, or pasted input.Testing instructions