👍 Vote with a thumbs up if this matters to you.
What
Replace event.keyCode with event.key ("ArrowDown", "ArrowUp", "Enter", "Tab", "Escape") in src/controllers/listController.js.
Why
event.keyCode is deprecated. event.key is the modern standard, more readable, and consistent across browsers and keyboard layouts.
Breaking change
Consumers overriding keyboard events with keyCode-based logic must migrate to event.key.
👍 Vote with a thumbs up if this matters to you.
What
Replace
event.keyCodewithevent.key("ArrowDown","ArrowUp","Enter","Tab","Escape") insrc/controllers/listController.js.Why
event.keyCodeis deprecated.event.keyis the modern standard, more readable, and consistent across browsers and keyboard layouts.Breaking change
Consumers overriding keyboard events with keyCode-based logic must migrate to
event.key.