* Update the `event.key` attribute that triggered the given event. * * `event.key` describes: * - the key name (if a non-printable character), * - or directly the character that result from the key press used to trigger the event. * * @link https://developer.mozilla.org
(e)
| 8674 | * @private |
| 8675 | */ |
| 8676 | _updateEventKeyInfo(e) { |
| 8677 | this.eventKey = AutoNumericHelper.character(e); |
| 8678 | } |
| 8679 | |
| 8680 | /** |
| 8681 | * Save the unformatted element value. |
no test coverage detected