-
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(listeners): add support for native listeners
* feat(listeners): added transparent wrappers and deprecated inputProps.onClick, onBlur, onFocus. users can now use native @keyup.tab @Focus @blur etc on root vue-autosuggest component to bind native events to the input. * docs(1.4.0): version bump, readme update * style(code): prettier semi and double quotes addedwq * packages(vue): upgraded packages vue, vue-test-utils etc. From #31 #34
- Loading branch information
1 parent
3591aaf
commit 5469898
Showing
10 changed files
with
545 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
// .prettierrc.js | ||
module.exports = { | ||
printWidth: 100 | ||
printWidth: 100, | ||
singleQuote: false, | ||
semi: true | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.