@syncfusion/ej2-schedule 20.1.47 → 20.1.48

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.1.47
3
+ * version : 20.1.48
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@19.17.32",
3
+ "_id": "@syncfusion/ej2-schedule@20.1.47",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-4FHdUSAgXuBaBtXh874obmuZajDCyXhm0DWafIQzUuBzXMzaPGjtQvAWyy5FHJ8nT8hm8XkmfHZQP7HiBZUuiw==",
5
+ "_integrity": "sha512-ojT9XmuGF0+ejBEwCKwTClKpaOcVuZ1fj0UX3L+rue4iHVlaiTuUmdOecrFN+yneZxH0j4zD9r9mUx/sY+4yCg==",
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-release/@syncfusion/ej2-schedule/-/ej2-schedule-19.17.32.tgz",
27
- "_shasum": "fcd93d1277377068fff0cce62d697ac67af1bd7e",
26
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.1.47.tgz",
27
+ "_shasum": "a18869a56012417f10f3fec19b7b80c70435a1b4",
28
28
  "_spec": "@syncfusion/ej2-schedule@*",
29
29
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
30
30
  "author": {
@@ -35,15 +35,15 @@
35
35
  },
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
- "@syncfusion/ej2-base": "~20.1.47",
38
+ "@syncfusion/ej2-base": "~20.1.48",
39
39
  "@syncfusion/ej2-buttons": "~20.1.47",
40
40
  "@syncfusion/ej2-calendars": "~20.1.47",
41
41
  "@syncfusion/ej2-data": "~20.1.47",
42
42
  "@syncfusion/ej2-dropdowns": "~20.1.47",
43
- "@syncfusion/ej2-excel-export": "~20.1.47",
44
- "@syncfusion/ej2-inputs": "~20.1.47",
43
+ "@syncfusion/ej2-excel-export": "~20.1.48",
44
+ "@syncfusion/ej2-inputs": "~20.1.48",
45
45
  "@syncfusion/ej2-lists": "~20.1.47",
46
- "@syncfusion/ej2-navigations": "~20.1.47",
46
+ "@syncfusion/ej2-navigations": "~20.1.48",
47
47
  "@syncfusion/ej2-popups": "~20.1.47"
48
48
  },
49
49
  "deprecated": false,
@@ -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.1.47",
84
+ "version": "20.1.48",
85
85
  "sideEffects": false
86
86
  }
@@ -726,8 +726,9 @@ var VerticalView = /** @class */ (function (_super) {
726
726
  var msStartHour = startHour.getTime();
727
727
  var msEndHour = endHour.getTime();
728
728
  if (msStartHour !== msEndHour) {
729
+ var duration = this.parent.activeViewOptions.timeScale.interval / this.parent.activeViewOptions.timeScale.slotCount;
729
730
  length = (Math.abs(msEndHour - msStartHour) / msInterval) - ((new Date(msEndHour).getTimezoneOffset()
730
- - new Date(msStartHour).getTimezoneOffset()) / (60 / this.parent.activeViewOptions.timeScale.slotCount));
731
+ - new Date(msStartHour).getTimezoneOffset()) / duration);
731
732
  }
732
733
  if (!this.parent.activeViewOptions.timeScale.enable) {
733
734
  length = 1;