vue2-timepicker
Advanced tools
Changelog
v 1.0.8
Keep the dropdown menu open when mouse drag on the hour/minute/second list's scrollbar handler.
Changelog
v 1.0.7
Fixes placeholder
not dynamically updated issue in some cases (Thanks to @ObsidianTech).
Vertical alignment refined for the clear button across different browsers.
Changelog
v 1.0.6
Added auto-scroll
feature.
On Advanced Keyboard mode, auto-focus on the selected value (if any) in priority.
Changelog
v 1.0.5
Fixes the Advanced Keyboard tab navigating feature on Firefox
Changelog
v 1.0.4
blur-delay
to 300ms. (Thanks to @rjurado01).input-class
.Changelog
v 1.0.3
Added lazy
event mode. (Thanks to @VictorCazanave)
Changelog
v 1.0.2
am
/pm
(AM
/PM
) string in the UI.input-width
property to help to adjust Timepicker's width with ease.Added more guiding notes for SSR usage. (Thanks to @oj-recit)
Changelog
v 1.0.1
Fixes the String form v-model
support on Edge and Safari
Changelog
v 1.0.0
⚠️ IMPORTANT: The default import source in 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.
v-model
.minute-range
and second-range
support. Companioned with hide-disabled-minutes
and hide-disabled-seconds
.hide-disabled-items
property for hiding all excluded items (hour, minute and seconds) at a time.close-on-complete
for automatically close the dropdown when the user finishes selecting all of the required fields.advanced-keyboard
support for Arrow Keys navigation and Space/Enter key selection.tabindex
property support, which will be assigned to the <input type="text">
within the component.debug-mode
to help developers investigating the input -> output process.Added ES "module" and other version fields in package.json to resolving more loader issues. (Thanks to @Trainmaster)
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.