You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
441 B

import { ListKeyManager } from './_list-key-manager-chunk.mjs';
class ActiveDescendantKeyManager extends ListKeyManager {
setActiveItem(index) {
if (this.activeItem) {
this.activeItem.setInactiveStyles();
}
super.setActiveItem(index);
if (this.activeItem) {
this.activeItem.setActiveStyles();
}
}
}
export { ActiveDescendantKeyManager };
//# sourceMappingURL=_activedescendant-key-manager-chunk.mjs.map