Skip to content

Releases: nhn/tui.calendar

v0.9.3

28 Mar 16:22
Compare
Choose a tag to compare

Features

  • 450f359 Feat: add toggle button at all-day panel (closes: #27)

Bug Fixes

  • a87c1cc Fix: creation failure of new all-day by clicking at right space( close #46)

Enhancement

  • 7267b58 Refactor: code review, remove duplicate line (ref #46)

v0.9.2

26 Mar 13:30
Compare
Choose a tag to compare

Bug Fixes

  • d72355a: fix: default height of task panel is too wide (fixes: #42)

v0.9.1

26 Mar 12:16
Compare
Choose a tag to compare

Bug Fixes

  • dfe8788 Fix: stack the all-day and time schedule from the top (fix #29)
  • 3b825d2 Fix: some all-day schedule is rendered using task template (fix #40)
  • a345dba Fix: all-day block width is wrong when resizing it (close #43)

Documentation

  • 1f708bd Doc: add alldayViewType option
  • d45754c Doc: add alldayViewType option to jsdoc
  • 516e963 Docs: code review, parameter default value of jsdoc

v0.9.0

26 Mar 01:11
Compare
Choose a tag to compare

Features

  • 4ece43f: add "expandable and collapsable" view type to allday panel (resolves: #27)

By options

var cal = new Calendar('#calendar', {
    week: {
        alldayViewType: 'toggle' /* default: 'scroll' */
    }
});

toggle
allday-toggle

scroll(default)
allday-scroll

v0.8.0

21 Mar 02:00
Compare
Choose a tag to compare

Features

  • 862707c Feat: show only milestone, task view (close #22)

By api

// hide 'AllDay', 'TimeGrid' view panels to show only 'Milestone', 'Task'
calendar.toggleScheduleView(false);

// show 'AllDay', 'TimeGrid' view panels.
calendar.toggleScheduleView(true);

By options

var cal = new Calendar('#calendar', {
    taskView: true,
    scheduleView: true
});
  • 95682c6 Feat: Support drag and drop the task schedules (close #23)

Bug Fixes

  • 918cf2e Fix: show original schedule after cancel dragging allday, task
  • c6886ad Fix: dragging schedule element left, widt error
  • cf487a2 Fix: test code of allday moveguide and code review

Enhancement

  • 3cf02ee Refactor: change declaration varaible position (ref #22)

v0.7.2

14 Mar 13:47
Compare
Choose a tag to compare

Bug Fixes

  • 1aa88ab Fix: end of summer time(PDT)

v0.7.1

14 Mar 12:17
Compare
Choose a tag to compare

Bug Fixes

  • e3be971 Fix: error weekly, monthly view in summer time issue(PDT)

v0.7.0

14 Mar 09:47
Compare
Choose a tag to compare

Features

  • 3411959 feat: add custom timezone offset callback function
    • setTimezoneOffsetCallback()

Bug Fixes

  • 1046014 Fix: timezone offset during DST(summer time)

v0.6.6

09 Mar 09:27
Compare
Choose a tag to compare

Bug Fixes

v0.6.5

08 Mar 09:11
Compare
Choose a tag to compare

Bug Fixes

  • 42d878c Fix: Wrong date parameter of beforeCreateSchedule callback near 24 o'click (fix #16)

Documentation

  • 42a9f7f Docs: Add features demo image