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
eventsconfiguration containing the following callback functions:timeChanged,ready,shownandhidden - 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
nodeandrollup; usedscssfor the styles (srcfolder) - Added
eventsconfiguration containing the following callback functions:timeChanged,ready,shownandhidden
MDTimePicker v1.0.2
Updates (since v1.0.1)
- Minimum time restriction
minTimeconfiguration ordata-mintimeattribute
- Maximum time restriction
maxTimeconfiguration ordata-maxtimeattribute
- Added
is24hourconfig to use 24-hour format in the UI and defaultformatconfig (as'hh:mm') - Removed
keydown(for handlingEsckey) on document; added to time picker wrapper instead - Removed
readOnlyconfiguration
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
is24hourconfig to use 24-hour format in the UI and defaultformatconfig (as'hh:mm') - Removed
keydown(for handlingEsckey) on document; added to time picker wrapper instead - Minor fixes/improvements
MDTimePicker v1.0.2-rc
Updates
- Minimum time restriction
minTimeconfiguration ordata-mintimeattribute
- Maximum time restriction
maxTimeconfiguration ordata-maxtimeattribute
- Removed
readOnlyconfiguration
MDTimePicker v1.0.1
Change log
- Added
darktheme; and allowed config to specify custom theme name; added custom theme format (mdtimepicker-theme.css) - Added
clearBtnconfig 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