@syncfusion/ej2-schedule 19.3.53 → 19.3.55

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 : 19.3.53
3
+ * version : 19.3.55
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.3.48",
3
+ "_id": "@syncfusion/ej2-schedule@19.3.53",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-tmNQX9deB3R92SS5zDEuhGnyFnqd5qLAqz2kmcmNDsKf2VEsHJnq7WR84K4X8jnpn0bde4vzmZjPWOAnRZ/jDw==",
5
+ "_integrity": "sha512-l9SFCIS0AjYdIx4gQVYoSLVZ5wJoLlbx5ojoPG5bJOz04xTOpuCZYqQK17JjFvLU0YcxVfLC/mGt9rBpnGfqdg==",
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/@syncfusion/ej2-schedule/-/ej2-schedule-19.3.48.tgz",
27
- "_shasum": "17e2d899f19992f39da451429ae6fa5263debb83",
26
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-schedule/-/ej2-schedule-19.3.53.tgz",
27
+ "_shasum": "1b65095a4c89600df4cc0a6a3763dcafcd38d8d1",
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": "~19.3.53",
38
+ "@syncfusion/ej2-base": "~19.3.54",
39
39
  "@syncfusion/ej2-buttons": "~19.3.53",
40
- "@syncfusion/ej2-calendars": "~19.3.53",
40
+ "@syncfusion/ej2-calendars": "~19.3.55",
41
41
  "@syncfusion/ej2-data": "~19.3.53",
42
- "@syncfusion/ej2-dropdowns": "~19.3.53",
42
+ "@syncfusion/ej2-dropdowns": "~19.3.55",
43
43
  "@syncfusion/ej2-excel-export": "~19.3.53",
44
44
  "@syncfusion/ej2-inputs": "~19.3.53",
45
45
  "@syncfusion/ej2-lists": "~19.3.53",
46
- "@syncfusion/ej2-navigations": "~19.3.53",
46
+ "@syncfusion/ej2-navigations": "~19.3.54",
47
47
  "@syncfusion/ej2-popups": "~19.3.53"
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": "19.3.53",
84
+ "version": "19.3.55",
85
85
  "sideEffects": false
86
86
  }
@@ -275,8 +275,8 @@ function weeklyType(startDate, endDate, data, ruleObject) {
275
275
  var weekstartDate = addDays(tempDate, -startDateDiff);
276
276
  var weekendDate = addDays(weekstartDate, 6);
277
277
  var compareTempDate = new Date(tempDate.getTime());
278
- resetTime(weekendDate);
279
- resetTime(compareTempDate);
278
+ weekendDate = resetTime(weekendDate);
279
+ compareTempDate = resetTime(compareTempDate);
280
280
  while (weekendDate >= compareTempDate) {
281
281
  if (expectedDays.indexOf(DAYINDEX[tempDate.getDay()]) > -1) {
282
282
  weekCollection.push([tempDate.getTime()]);
@@ -286,7 +286,7 @@ function weeklyType(startDate, endDate, data, ruleObject) {
286
286
  }
287
287
  tempDate.setDate(tempDate.getDate() + 1);
288
288
  compareTempDate = new Date(tempDate.getTime());
289
- resetTime(compareTempDate);
289
+ compareTempDate = resetTime(compareTempDate);
290
290
  }
291
291
  tempDate.setDate(tempDate.getDate() - 1);
292
292
  if (expectedCount && (data.length + ruleObject.recExceptionCount) >= expectedCount) {