vue-typeahead-bootstrap
Advanced tools
Comparing version 2.5.1 to 2.5.2
@@ -0,1 +1,4 @@ | ||
## 2.5.2 - 28 Sep 2020 | ||
- Fix IE dropdowns closing | ||
## 2.5.1 - 08 Aug 2020 | ||
@@ -2,0 +5,0 @@ - Fix broken key handling events |
{ | ||
"name": "vue-typeahead-bootstrap", | ||
"version": "2.5.1", | ||
"version": "2.5.2", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "A typeahead/autocomplete component for Vue 2 using Bootstrap 4", |
@@ -82,3 +82,3 @@ import { mount } from '@vue/test-utils' | ||
describe ('key press handling', () =>{ | ||
describe('key press handling', () => { | ||
it('Emits a keyup.enter event when enter is pressed on the input field', () => { | ||
@@ -94,3 +94,3 @@ let input = wrapper.find('input') | ||
let child = wrapper.find(VueTypeaheadBootstrapList) | ||
const hitActive = spyOn(child.vm, "hitActiveListItem") | ||
const hitActive = spyOn(child.vm, 'hitActiveListItem') | ||
let input = wrapper.find('input') | ||
@@ -105,3 +105,3 @@ | ||
let child = wrapper.find(VueTypeaheadBootstrapList) | ||
const selectNextListItem = spyOn(child.vm, "selectNextListItem") | ||
const selectNextListItem = spyOn(child.vm, 'selectNextListItem') | ||
let input = wrapper.find('input') | ||
@@ -116,3 +116,3 @@ | ||
let child = wrapper.find(VueTypeaheadBootstrapList) | ||
const selectPreviousListItem = spyOn(child.vm, "selectPreviousListItem") | ||
const selectPreviousListItem = spyOn(child.vm, 'selectPreviousListItem') | ||
let input = wrapper.find('input') | ||
@@ -119,0 +119,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
8295582
81441