Releases: phoenixwong/vue2-timepicker
v1.0.8
Improvements
Keep the dropdown menu open when mouse drag on the hour/minute/second list's scrollbar handler.
v1.0.7
Fixes
Fixes placeholder
not dynamically updated issue in some cases (Thanks to @obsidiantech).
Improvements
Vertical alignment refined for the clear button across different browsers.
v1.0.6
New
Added auto-scroll
feature.
Improvements
On Advanced Keyboard mode, auto-focus on the selected value (if any) in priority.
v1.0.5
Fixes
Fixes the Advanced Keyboard tab navigating feature on Firefox
v1.0.4
Improvements
- Adjust the default value of blur-delay to 300ms. (#78, Thanks to @rjurado01).
- Added Array and Object types support to
input-class
. (#90)
v1.0.3
New
Added lazy
event mode. (#48, Thanks to @VictorCazanave)
v1.0.2
New
- Support customized labels for the hour, minute, second, and APM pickers (#83, Thanks to @maritaria).
- Support setting customized text to replace the
am
/pm
(AM
/PM
) string in the UI. - Added
input-width
property to help to adjust Timepicker's width with ease. (#81)
Improvements
Added more guiding notes for SSR usage. (Thanks to @oj-recit)
v1.0.1
v1.0.0
Breaking Changes
v1.0.0+
is different from the v0.x
versions.
From v1.0.0+
, CSS is excluded from the main source. Please import the CSS file separately.
// v1.0.0+
//
import VueTimepicker from 'vue2-timepicker'
// -> Imports JS file in UMD form
// CSS
import 'vue2-timepicker/dist/VueTimepicker.css'
Comparing to:
// While in the v0.x versions
import VueTimepicker from 'vue2-timepicker'
// -> Imports the *.vue Single File Component together with CSS
Please check the Documentation for more available import formats.
New
- Support using String value in
v-model
. (#58) - New
minute-range
andsecond-range
support. Companioned withhide-disabled-minutes
andhide-disabled-seconds
. (#64) - New
hide-disabled-items
property for hiding all excluded items (hour, minute and seconds) at a time. - New
close-on-complete
for automatically close the dropdown when the user finishes selecting all of the required fields. (#53) - Added
advanced-keyboard
support for Arrow Keys navigation and Space/Enter key selection. (#49) - New
tabindex
property support, which will be assigned to the<input type="text">
within the component. - Added
debug-mode
to help developers investigating the input -> output process.
Fixes
Added ES "module" and other version fields in package.json to resolving more loader issues. (#71, Thanks to @Trainmaster)
Improvements
When hour-range
is set in a 12-hour format Timepicker, recheck the selected hour's validity after user switching "AM/PM" from the dropdown.
v1.0.0-beta.2
New
- New
close-on-complete
for automatically close the dropdown when the user finishes selecting all of the required fields. - Added
advanced-keyboard
support for Arrow Keys navigation and Space/Enter key selection. - New
tabindex
property support, which will be assigned to the<input type="text">
within the component.
Improvements
When hour-range
is set in a 12-hour format Timepicker, recheck the selected hour's validity after user switching "AM/PM" from the dropdown.