107
107
isOptionDeselectable(option) && index === typeAheadPointer,
108
108
'vs__dropdown-option--selected': isOptionSelected(option),
109
109
'vs__dropdown-option--highlight': index === typeAheadPointer,
110
+ 'vs__dropdown-option--kb-focus':
111
+ isKeyboardNavigation && index === typeAheadPointer,
110
112
'vs__dropdown-option--disabled': !selectable(option),
111
113
}"
112
114
:aria-selected =" index === typeAheadPointer ? true : null"
113
- @mouseover =" selectable (option) ? (typeAheadPointer = index) : null "
115
+ @mouseover =" onMouseOver (option, index)"
114
116
@click.prevent.stop =" selectable(option) ? select(option) : null"
115
117
>
116
118
<slot name =" option" v-bind =" normalizeOptionForSlot(option)" >
@@ -675,6 +677,7 @@ export default {
675
677
search: ' ' ,
676
678
open: false ,
677
679
isComposing: false ,
680
+ isKeyboardNavigation: false ,
678
681
pushedTags: [],
679
682
// eslint-disable-next-line vue/no-reserved-keys
680
683
_value: [], // Internal value managed by Vue Select if no `value` prop is passed
@@ -1309,6 +1312,20 @@ export default {
1309
1312
this .mousedown = false
1310
1313
},
1311
1314
1315
+ /**
1316
+ * Event-Handler for option mouseover
1317
+ * @param {Object|String} option
1318
+ * @param {Number} index
1319
+ * @return {void}
1320
+ */
1321
+ onMouseOver (option , index ) {
1322
+ this .isKeyboardNavigation = false
1323
+ if (! this .selectable (option)) {
1324
+ return
1325
+ }
1326
+ this .typeAheadPointer = index
1327
+ },
1328
+
1312
1329
/**
1313
1330
* Search <input> KeyBoardEvent handler.
1314
1331
* @param {KeyboardEvent} e
@@ -1330,6 +1347,7 @@ export default {
1330
1347
// up.prevent
1331
1348
38 : (e ) => {
1332
1349
e .preventDefault ()
1350
+ this .isKeyboardNavigation = true
1333
1351
if (! this .open ) {
1334
1352
this .open = true
1335
1353
return
@@ -1339,6 +1357,7 @@ export default {
1339
1357
// down.prevent
1340
1358
40 : (e ) => {
1341
1359
e .preventDefault ()
1360
+ this .isKeyboardNavigation = true
1342
1361
if (! this .open ) {
1343
1362
this .open = true
1344
1363
return
0 commit comments