Releases: dmuy/MDTimePicker
Releases · dmuy/MDTimePicker
v2.0.1
MDTimePicker v2.0.0
Major Update
- Removed jQuery dependency
- Converted into a js project using node and rollup; used scss for the styles - src
Updates
- Added
events
configuration containing the following callback functions:timeChanged
,ready
,shown
andhidden
- Added plugin script for Vue
- Updated README file and moved documentation to Wiki
Fixes
- Fixed time changed event name (was not calling
timechanged
)
Above are updates since v1.0.2
MDTimePicker v2.0.0-rc
Major Update
- Removed jQuery dependency
- Converted into a js project using
node
androllup
; usedscss
for the styles (src
folder) - Added
events
configuration containing the following callback functions:timeChanged
,ready
,shown
andhidden
MDTimePicker v1.0.2
Updates (since v1.0.1)
- Minimum time restriction
minTime
configuration ordata-mintime
attribute
- Maximum time restriction
maxTime
configuration ordata-maxtime
attribute
- Added
is24hour
config to use 24-hour format in the UI and defaultformat
config (as'hh:mm'
) - Removed
keydown
(for handlingEsc
key) on document; added to time picker wrapper instead - Removed
readOnly
configuration
Fixes
- Fixed bug on time disabling where it prevents the OK button from working on the hour view
- General bug fixes
Note: This will be the last version of the plugin with jQuery dependency. Next version will jump to 2.0 (vanilla js).
MDTimePicker v1.0.2-rc2
Updates
- Added
is24hour
config to use 24-hour format in the UI and defaultformat
config (as'hh:mm'
) - Removed
keydown
(for handlingEsc
key) on document; added to time picker wrapper instead - Minor fixes/improvements
MDTimePicker v1.0.2-rc
Updates
- Minimum time restriction
minTime
configuration ordata-mintime
attribute
- Maximum time restriction
maxTime
configuration ordata-maxtime
attribute
- Removed
readOnly
configuration
MDTimePicker v1.0.1
Change log
- Added
dark
theme; and allowed config to specify custom theme name; added custom theme format (mdtimepicker-theme.css) - Added
clearBtn
config to show clear button - Minor code fixes/improvements
Script improvement on calling built-in functions
// setting the value
$('#timepicker').mdtimepicker('setValue', '3:30 PM');
// calling the `show` and `hide` functions
$('#timepicker').mdtimepicker('show');
$('#timepicker').mdtimepicker('hide');
// destroying the timepicker
$('#timepicker').mdtimepicker('destroy');
MDTimePicker v1.0
Initial plugin release