You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
The Number input needs some keyboard controls to be usable without the mouse:
down / down: change by onepoint up or down,
shift+up / shift+ down: change by tenpoints up or down.
Where a point is a step which makes sense in the scenario:
with int values: 1 (with shift this becomes 10)
with float values, where the absolute maximum value is 1: 0.01f (with shift this becomes 0.1f),
with float values, where the absolute maximum value is bigger than 1: 0.1f (with shift this becomes 1f.
All of this needs to work not only on the TextField, but also the stepper if the keyboard tab navigation focuses it. When the focus is on stepper up/down buttons, both space and enter need to simulate click, and shift+space or shift+enter need to simulate ten clicks, similar to points described above.
Makes sense?
The text was updated successfully, but these errors were encountered:
It would be a great user interface feature. You know, I am coming from design application world, where this is a usual thing, it improves how an app could be controlled with the keyboard. In the end, if Proppy is used with iOS, Android or any other visual designers/editors, we'd implement design-like behavior.
Just worth bearing in mind - we are undergoing thorough accessibility testing at the moment so tasks like this may benefit from getting those results in first. We might be able to roll up a bunch of changes in one go :)
The Number input needs some keyboard controls to be usable without the mouse:
Where a point is a step which makes sense in the scenario:
int
values:1
(with shift this becomes10
)float
values, where the absolute maximum value is1
:0.01f
(with shift this becomes0.1f
),float
values, where the absolute maximum value is bigger than1
:0.1f
(with shift this becomes1f
.All of this needs to work not only on the
TextField
, but also the stepper if the keyboard tab navigation focuses it. When the focus is on stepper up/down buttons, both space and enter need to simulate click, and shift+space or shift+enter need to simulate ten clicks, similar to points described above.Makes sense?
The text was updated successfully, but these errors were encountered: