Skip to content

Releases: nhn/tui.time-picker

v2.0.0

05 Aug 01:14
Compare
Choose a tag to compare

Features

Bug Fixes

Documentation

Breaking Changes

  • In v2.0.0, jQuery is removed. It might cause other components to fail if they pass a jQuery object as a container. See the detail here.

v1.5.2

02 Apr 01:56
Compare
Choose a tag to compare

Documentation

  • Change company name(nhnent -> nhn)

v1.5.1

13 Feb 01:26
Compare
Choose a tag to compare

Feature

  • Apply to new design of documents.

v1.5.0

19 Dec 15:53
Compare
Choose a tag to compare

Changed

  • Update tui.code-snippet to v1.5.0

v1.4.0

17 May 02:32
Compare
Choose a tag to compare

ADD

  • The format option

    • Can change the time display format to hh:mm or h:m.
     var tpSelectbox = new tui.TimePicker('#timepicker-selectbox', {
             format: 'hh:mm', // default 'h:m'
              ...
      });
    
  • The disabledHours option

    • If you put the time in the disabledHours array, it will be displayed as disabled on the screen.
     var tpSelectbox = new tui.TimePicker('#timepicker-selectbox', {
              disabledHours: [1, 2, 14],
              ...
      });
    

v1.3.0

03 Apr 09:23
Compare
Choose a tag to compare

Add

  • The usageStatistics option
    • send hostname to google analytics [default value is true]

v1.2.0

13 Dec 11:52
Compare
Choose a tag to compare

Add

  • The meridiemPosition option set position of AM/PM element and this element is created in front of the hour element when the value is set to left
  • Internationalization (i18n) (ref.)
    • language option : Set default texts on time picker when creating instance
    • localeTexts property : This is static value and set texts by matching language key
    • changeLanguage(language) API : Change current setting language

v1.1.1

05 Dec 12:27
Compare
Choose a tag to compare

Fix

  • Fixed that the time is not changed when the minute set 0 and called getHour API

v1.1.0

05 Dec 07:17
Compare
Choose a tag to compare

Add

  • Set step of hours or minutes
    • Options : hourStep, minuteStep
    • API : setHourStep(value), getHourStep(), setMinuteStep(value), setMinuteStep()

v1.0.0

11 Aug 07:39
Compare
Choose a tag to compare

New Release

This component is separated from TUI DatePicker component.