Skip to content

Commit

Permalink
1.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dohyung Ahn committed Jan 5, 2022
1 parent 6f68545 commit 9b467a0
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dist/tui-calendar.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion dist/tui-calendar.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* TOAST UI Calendar
* @version 1.15.1 | Mon Nov 15 2021
* @version 1.15.2 | Wed Jan 05 2022
* @author NHN FE Development Lab <dl_javascript@nhn.com>
* @license MIT
*/
Expand Down Expand Up @@ -9101,6 +9101,10 @@ Base.prototype.updateSchedule = function(schedule, options) {
schedule.set('attendees', options.attendees);
}

if (options.recurrenceRule) {
schedule.set('recurrenceRule', options.recurrenceRule);
}

this._removeFromMatrix(schedule);
this._addToMatrix(schedule);

Expand Down Expand Up @@ -12061,6 +12065,10 @@ Calendar.prototype.setOptions = function(options, silent) {

this._setAdditionalInternalOptions(options);

if (util.isObject(options.timezone) && util.isArray(options.timezone.zones)) {
this._options.timezones = options.timezone.zones;
}

if (!silent) {
this.changeView(this._viewName, true);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/tui-calendar.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tui-calendar.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tui-calendar.min.css.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/tui-calendar.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tui-calendar.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for TOAST UI Calendar v1.15.1
// Type definitions for TOAST UI Calendar v1.15.2
// TypeScript Version: 3.2.1

export type DateType = string | Date | TZDate;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tui-calendar",
"author": "NHN FE Development Lab <dl_javascript@nhn.com>",
"version": "1.15.1",
"version": "1.15.2",
"main": "dist/tui-calendar.js",
"types": "index.d.ts",
"license": "MIT",
Expand Down

0 comments on commit 9b467a0

Please sign in to comment.