-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
fix(form-input): bug fixes and add new features #2100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #2100 +/- ##
==========================================
- Coverage 64.61% 64.58% -0.03%
==========================================
Files 154 156 +2
Lines 2922 2948 +26
Branches 805 809 +4
==========================================
+ Hits 1888 1904 +16
- Misses 744 755 +11
+ Partials 290 289 -1
Continue to review full report at Codecov.
|
By dynamically adding/removing listeners as needed
Exposes input properties and methods for form inputs
Mixin for exposing the form input's validity properties and methods.
Add ID to no-wheel input
Add tests for no-wheel prop
Document events
This is GREAT @tmorehouse ❤️ |
Took a while to get used to the new Vue Test Utils, but I like it. |
Hello. Is this fix in bootstrap-vue@2.0.0-rc.11? |
It is currently only available in the |
Changes should address some of the issues reported with b-form-input:
fixes #2061, fixes #1988, fixes #1951, fixes #1881, fixes #1863, fixes #1855, fixes #1852, #fixes #1642
May address #2098, #1908, #1518, #2104 , #2131, #2124
Adds new
no-wheel
prop to disable mouse wheel incrementing number inputs. (fixes #1872)Adds new mixins for exposing native
<input>
selection (fixes #2026), range and validity on the component. Also addsfocus
andblur
methods.Additional tests added.
Similar changes could be made with
b-form-textarea
once this PR is merged.