Releases: dhershman1/vue-debounce
Releases · dhershman1/vue-debounce
v2.0.0
v1.3.0
v1.2.0
- Added ability to send an array of events to have the elments listen to
- Removed deprecated
keyCode
in favor of justkey
listenTo
is no longer case sensitive- Added ability to listen for the
debounce-events
attribute
v1.1.0
- Tweaked the Syntax of the debounce function
- Added additional tests
- Updated dependencies
- Added ability to set the event to listen to in options
v1.0.0
No breaking changes introduces with a 1.0 release. I just feel like it's pretty close to just complete as there isn't much more needed.
- Some small tweaks to code nothing breaking
- Removed the long deleted
min
from the regex check - Removed unused code
- Mainly to just get it to v1.0.0 no breaking changes added
v0.2.0
- Slight Tweaks to optimization
- Removed unused data pieces
- Switched the event to
keyup
instead ofinput
for key events - Added some options and modifiers support (See next tick)
- Pressing enter on a debounced input now automatically fires the desired function
- You can disable this by using the
.lock
modifier on the directive - You can also disable it by passing
lock
to the directive as an option, however this will disable it for ALL debounced inputs - If you are using the lock option and want to make an exception for an input you can use the
.unlock
modifier to do so
- You can disable this by using the
- Removed support for minutes
v0.1.1
- Fixed issue when we didn't default to milliseconds if no format is specified
v0.1.0
Initial Release