mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
commit
1e70511ee0
1 changed files with 4 additions and 0 deletions
|
@ -73,6 +73,10 @@ export default {
|
|||
this.moveToPrev(event);
|
||||
} else if (event.inputType === 'insertText' || event.inputType === 'deleteContentForward') {
|
||||
this.moveToNext(event);
|
||||
} else if (event instanceof CustomEvent) {
|
||||
// iOS/macOS one-time-code autocomplete uses CustomEvent vs. InputEvent for each character in the code
|
||||
// If moveToNext is not called, it will continue to append the next value after the first character
|
||||
this.moveToNext(event);
|
||||
}
|
||||
},
|
||||
updateModel(event) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue