Skip to content

Releases: dmuy/MDTimePicker

v2.0.1

30 Apr 05:45
Compare
Choose a tag to compare

Minor Updates

  • added Vue 3 support: plugin
  • upgraded dev dependencies

MDTimePicker v2.0.0

02 Oct 03:20
ae09f92
Compare
Choose a tag to compare

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 and hidden
  • 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

20 Sep 17:10
Compare
Choose a tag to compare

Major Update

  • Removed jQuery dependency
  • Converted into a js project using node and rollup; used scss for the styles (src folder)
  • Added events configuration containing the following callback functions: timeChanged, ready, shown and hidden

MDTimePicker v1.0.2

18 Sep 13:40
Compare
Choose a tag to compare

Updates (since v1.0.1)

  • Minimum time restriction
    • minTime configuration or data-mintime attribute
  • Maximum time restriction
    • maxTime configuration or data-maxtime attribute
  • Added is24hour config to use 24-hour format in the UI and default format config (as 'hh:mm')
  • Removed keydown (for handling Esc 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

31 Aug 20:33
Compare
Choose a tag to compare

Updates

  • Added is24hour config to use 24-hour format in the UI and default format config (as 'hh:mm')
  • Removed keydown (for handling Esc key) on document; added to time picker wrapper instead
  • Minor fixes/improvements

MDTimePicker v1.0.2-rc

21 Aug 17:00
Compare
Choose a tag to compare

Updates

  • Minimum time restriction
    • minTime configuration or data-mintime attribute
  • Maximum time restriction
    • maxTime configuration or data-maxtime attribute
  • Removed readOnly configuration

MDTimePicker v1.0.1

09 May 03:52
Compare
Choose a tag to compare

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

06 Dec 00:40
Compare
Choose a tag to compare

Initial plugin release