@syncfusion/ej2-schedule 20.4.48 → 20.4.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.4.48
3
+ * version : 20.4.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.4.44",
3
+ "_id": "@syncfusion/ej2-schedule@20.4.49",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-Chq8toDzHoZudpLLXZJKy5ukF5rES4F/VFTDj6WA4uPjMKy9rjXd5yVDSy5qyZr5B9jr2rpBzaRALo6KlTaG3w==",
5
+ "_integrity": "sha512-Nu8YXi+Di/9E0KirN+psTMmAFQipk6sjwGn2y6jT3AiZr7NKOxCc4krK7f6cdkYW4z7Z7qDhkKEOzsU+GFbQwQ==",
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": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.4.44.tgz",
27
- "_shasum": "8b8beacb4ec2f56791c78378307c65f2c4da000b",
26
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.4.49.tgz",
27
+ "_shasum": "e1f74d7d23088c7289c279b9e73137615635f614",
28
28
  "_spec": "@syncfusion/ej2-schedule@*",
29
29
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
30
30
  "author": {
@@ -36,15 +36,15 @@
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
38
  "@syncfusion/ej2-base": "~20.4.48",
39
- "@syncfusion/ej2-buttons": "~20.4.48",
39
+ "@syncfusion/ej2-buttons": "~20.4.50",
40
40
  "@syncfusion/ej2-calendars": "~20.4.48",
41
41
  "@syncfusion/ej2-data": "~20.4.48",
42
- "@syncfusion/ej2-dropdowns": "~20.4.48",
42
+ "@syncfusion/ej2-dropdowns": "~20.4.50",
43
43
  "@syncfusion/ej2-excel-export": "~20.4.48",
44
44
  "@syncfusion/ej2-inputs": "~20.4.48",
45
- "@syncfusion/ej2-lists": "~20.4.48",
46
- "@syncfusion/ej2-navigations": "~20.4.48",
47
- "@syncfusion/ej2-popups": "~20.4.48"
45
+ "@syncfusion/ej2-lists": "~20.4.50",
46
+ "@syncfusion/ej2-navigations": "~20.4.49",
47
+ "@syncfusion/ej2-popups": "~20.4.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.",
@@ -73,6 +73,6 @@
73
73
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
74
74
  },
75
75
  "typings": "index.d.ts",
76
- "version": "20.4.48",
76
+ "version": "20.4.50",
77
77
  "sideEffects": false
78
78
  }
@@ -262,7 +262,9 @@ var EventWindow = /** @class */ (function () {
262
262
  var tempEle = [].slice.call(this.parent.getEditorTemplate()(args || {}, this.parent, 'editorTemplate', templateId, false));
263
263
  append(tempEle, form);
264
264
  this.parent.renderTemplates(function () {
265
- _this.applyFormValidation();
265
+ if (_this.element) {
266
+ _this.applyFormValidation();
267
+ }
266
268
  });
267
269
  }
268
270
  else {
@@ -1506,7 +1508,7 @@ var EventWindow = /** @class */ (function () {
1506
1508
  var _this = this;
1507
1509
  var lastResourceData = this.parent.resourceBase.resourceCollection.slice(-1)[0];
1508
1510
  var resourceData = eventObj[lastResourceData.field];
1509
- resourceData = (resourceData instanceof Array) ? resourceData : [resourceData];
1511
+ resourceData = (resourceData instanceof Array) ? resourceData.reverse() : [resourceData].reverse();
1510
1512
  var lastLevel = this.parent.resourceBase.lastResourceLevel;
1511
1513
  var eventList = [];
1512
1514
  var _loop_2 = function (i) {