@syncfusion/ej2-schedule 20.2.45 → 20.2.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 20.2.45
3
+ * version : 20.2.50
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-schedule@*",
3
- "_id": "@syncfusion/ej2-schedule@20.2.40",
3
+ "_id": "@syncfusion/ej2-schedule@20.2.45",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-kU/0Be1pH5yFXhucutY7aGY+0JD6l+S/dOwICMpItjm794B1hhepBKqgexfw9BuGB0hDGOnNHsQEwVnZ+yXt+w==",
5
+ "_integrity": "sha512-8VH2Dhcf7AhCia6abWptHmvqzthCSReYZgBmqh6iZV8Q51DCemRwiJ6J+1+0sNCYE1AqaqglxCQNr/b6BwK31A==",
6
6
  "_location": "/@syncfusion/ej2-schedule",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -23,8 +23,8 @@
23
23
  "/@syncfusion/ej2-react-schedule",
24
24
  "/@syncfusion/ej2-vue-schedule"
25
25
  ],
26
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.2.40.tgz",
27
- "_shasum": "d9b88f81c4941440ba79cefcb0ec412a5b581ccb",
26
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.2.45.tgz",
27
+ "_shasum": "1d9375d2b3b02e314913926c44b4c33b4d02c28e",
28
28
  "_spec": "@syncfusion/ej2-schedule@*",
29
29
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
30
30
  "author": {
@@ -35,16 +35,16 @@
35
35
  },
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
- "@syncfusion/ej2-base": "~20.2.45",
39
- "@syncfusion/ej2-buttons": "~20.2.45",
40
- "@syncfusion/ej2-calendars": "~20.2.45",
38
+ "@syncfusion/ej2-base": "~20.2.48",
39
+ "@syncfusion/ej2-buttons": "~20.2.46",
40
+ "@syncfusion/ej2-calendars": "~20.2.50",
41
41
  "@syncfusion/ej2-data": "~20.2.45",
42
- "@syncfusion/ej2-dropdowns": "~20.2.45",
43
- "@syncfusion/ej2-excel-export": "~20.2.45",
44
- "@syncfusion/ej2-inputs": "~20.2.45",
45
- "@syncfusion/ej2-lists": "~20.2.45",
46
- "@syncfusion/ej2-navigations": "~20.2.45",
47
- "@syncfusion/ej2-popups": "~20.2.45"
42
+ "@syncfusion/ej2-dropdowns": "~20.2.50",
43
+ "@syncfusion/ej2-excel-export": "~20.2.48",
44
+ "@syncfusion/ej2-inputs": "~20.2.48",
45
+ "@syncfusion/ej2-lists": "~20.2.46",
46
+ "@syncfusion/ej2-navigations": "~20.2.50",
47
+ "@syncfusion/ej2-popups": "~20.2.49"
48
48
  },
49
49
  "deprecated": false,
50
50
  "description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support.",
@@ -81,6 +81,6 @@
81
81
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
82
82
  },
83
83
  "typings": "index.d.ts",
84
- "version": "20.2.45",
84
+ "version": "20.2.50",
85
85
  "sideEffects": false
86
86
  }
@@ -505,7 +505,7 @@ var HeaderRenderer = /** @class */ (function () {
505
505
  firstDate = util.getWeekFirstDate(util.resetTime(this.parent.selectedDate), this.parent.firstDayOfWeek);
506
506
  lastDate = util.addDays(firstDate, 7 * this.parent.activeViewOptions.interval);
507
507
  }
508
- if (this.parent.currentView === 'Month') {
508
+ else if (this.parent.currentView === 'Month') {
509
509
  var isCustomMonth = !isNullOrUndefined(this.parent.activeViewOptions.displayDate) ||
510
510
  this.parent.activeViewOptions.numberOfWeeks > 0;
511
511
  firstDate = isCustomMonth ? this.parent.activeView.getStartDate() : util.firstDateOfMonth(this.parent.selectedDate);
@@ -513,10 +513,10 @@ var HeaderRenderer = /** @class */ (function () {
513
513
  util.lastDateOfMonth(util.addMonths(firstDate, this.parent.activeViewOptions.interval - 1));
514
514
  }
515
515
  if (!isNullOrUndefined(prevNavEle)) {
516
- this.toolbarObj.enableItems(prevNavEle, firstDate > this.parent.minDate);
516
+ this.toolbarObj.enableItems(prevNavEle, firstDate > util.resetTime(this.parent.minDate));
517
517
  }
518
518
  if (!isNullOrUndefined(nextNavEle)) {
519
- this.toolbarObj.enableItems(nextNavEle, lastDate < this.parent.maxDate);
519
+ this.toolbarObj.enableItems(nextNavEle, lastDate < util.resetTime(this.parent.maxDate));
520
520
  }
521
521
  this.setCalendarMinMaxDate();
522
522
  };