fix(deps): update dependency vue-autosuggest to v2 #115
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.8.3
->2.0.2
Release Notes
darrenjennings/vue-autosuggest
v2.0.2
Compare Source
v2.0.1
Compare Source
Fixes #129 where in some cases, re-renders would cause the default autocomplete="off" to be unset. Users could get around this by setting
inputProp.autocomplete = 'off'
explicitly, but that wasn't very nice. Thanks to @cdwmhcc for reporting!v2.0.0
Compare Source
Fixes #52, Fixes #96, Fixes #92, Fixes #109, Fixes #99, Fixes #95,
Long await v-model support. Use v-model and remove internal searchInput watcher
switch to
@input
event handler for v-model support / more intuitive native<input />
methodaddresses outstanding TODOs for 2.0 breaking changes such as removing deprecated events
onInputChange
,onClick
,onBlur
,onFocus
, andonSelected
remove
initialValue
prop as now it can be set viav-model
perf(*) remove watcher, use computed for sections, section lists, size etc.
you can now configure the
type
attribute on the<input>
viainputProps.type
Improved naming/classnames to follow BEM style:
autosuggest__input-open
-->autosuggest__input--open
autosuggest__results_item
-->autosuggest__results-item
autosuggest__results_item-1
-->autosuggest__results-item--1
autosuggest__results_item-highlighted
-->autosuggest__results_item-highlighted
autosuggest__results_title_${this.section.name}
-->autosuggest__results-before--${this.section.name}
New slots:
<!-- WARNING PSEUDO CODE, NOT RUNNING CODE OR REAL CLASS NAMES --> <vue-autosuggest> <slot name="before-input"/> <input /> <slot name="after-input"/> <div class="container"> <div class="results"> <slot name="before-suggestions" /> <ul class="suggestions"> <slot name="before-section-<section.name>" /> <li><slot name="default" /></li> <slot name="after-section-{section.name}" /> <slot name="after-section-default" /> </ul> </div> <slot name="after-suggestions" /> </div> </vue-autosuggest>
Renovate configuration
📅 Schedule: "every weekend" in timezone Europe/Paris.
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot. View repository job log here.