@syncfusion/ej2-schedule 23.2.4 → 23.2.7

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 : 23.2.4
3
+ * version : 23.2.7
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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@23.1.44",
3
+ "_id": "@syncfusion/ej2-schedule@23.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-PthK0cIsxjGcDi1aGMvz5/KdydIBkhe815WmhpEXOW9Ly5ch5PFEKHtuVAeQ1ywevatpEv+7Z8iz30n9lv3lXg==",
5
+ "_integrity": "sha512-MubdFwUgutBqXNnindH9QOeHhjl+93mI33578Ati1Yi9mhyxRAlxYf9/fkujUMiPwjvzw6LPOHSXYhGmDMRxqQ==",
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-23.1.44.tgz",
27
- "_shasum": "878cfb0462f5d587e27452d1345e8e30adf10f3d",
26
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-23.2.4.tgz",
27
+ "_shasum": "e7fad4c2553a7a5afdb615fbb67a67c2fafad48b",
28
28
  "_spec": "@syncfusion/ej2-schedule@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
30
30
  "author": {
@@ -35,15 +35,15 @@
35
35
  },
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
- "@syncfusion/ej2-base": "~23.2.4",
39
- "@syncfusion/ej2-buttons": "~23.2.4",
40
- "@syncfusion/ej2-calendars": "~23.2.4",
38
+ "@syncfusion/ej2-base": "~23.2.6",
39
+ "@syncfusion/ej2-buttons": "~23.2.7",
40
+ "@syncfusion/ej2-calendars": "~23.2.7",
41
41
  "@syncfusion/ej2-data": "~23.2.4",
42
- "@syncfusion/ej2-dropdowns": "~23.2.4",
42
+ "@syncfusion/ej2-dropdowns": "~23.2.7",
43
43
  "@syncfusion/ej2-excel-export": "~23.2.4",
44
44
  "@syncfusion/ej2-inputs": "~23.2.4",
45
45
  "@syncfusion/ej2-lists": "~23.2.4",
46
- "@syncfusion/ej2-navigations": "~23.2.4",
46
+ "@syncfusion/ej2-navigations": "~23.2.7",
47
47
  "@syncfusion/ej2-popups": "~23.2.4"
48
48
  },
49
49
  "deprecated": false,
@@ -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": "23.2.4",
76
+ "version": "23.2.7",
77
77
  "sideEffects": false
78
78
  }
@@ -588,6 +588,11 @@ var YearEvent = /** @class */ (function (_super) {
588
588
  (util.resetTime(appStart).getTime() >= dateStart) && (util.resetTime(appEnd).getTime() <= dateEnd)) {
589
589
  appointmentsList.push(app);
590
590
  }
591
+ else if (this.parent.activeViewOptions.orientation === 'Vertical') {
592
+ if (util.resetTime(appStart).getTime() >= dateStart && util.resetTime(appEnd).getTime() >= dateEnd) {
593
+ appointmentsList.push(app);
594
+ }
595
+ }
591
596
  }
592
597
  return appointmentsList;
593
598
  };
@@ -979,7 +979,7 @@ var EventWindow = /** @class */ (function () {
979
979
  this.eventData = this.eventCrudData ? this.eventData : eventData;
980
980
  var eventObj = extend({}, eventData, null, true);
981
981
  var formElements = this.getFormElements(cls.EVENT_WINDOW_DIALOG_CLASS);
982
- if (this.parent.isReact && formElements.length < 1) {
982
+ if (this.parent.isReact && formElements.length < 1 && !this.cellClickAction) {
983
983
  this.eventCrudData = eventObj;
984
984
  return;
985
985
  }