@syncfusion/ej2-schedule
Advanced tools
Comparing version 20.3.56 to 20.3.57
@@ -9,2 +9,11 @@ # Changelog | ||
`#I415847` - An issue with Edit recurrence series to greater than its end date has been fixed. | ||
`#I415323` - An issue with timeline month view appointment flickers on initial resizing has been fixed. | ||
## 20.3.56 (2022-11-08) | ||
### Schedule | ||
#### Bug fixes | ||
- `#F178302` - An issue with being unable to inline edit when using `eventTemplate` has been fixed. | ||
@@ -11,0 +20,0 @@ - `#F178112` - An issue with "Misalignment occurring on zoom-in zoom-out with the scheduler" has been fixed |
/*! | ||
* filename: index.d.ts | ||
* version : 20.3.56 | ||
* version : 20.3.57 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-schedule@*", | ||
"_id": "@syncfusion/ej2-schedule@20.3.52", | ||
"_id": "@syncfusion/ej2-schedule@20.3.56", | ||
"_inBundle": false, | ||
"_integrity": "sha512-idn8cMrGvSMNy9ErcTnY9QxLRrqwfJyoHPjNLRHua0QRyuptXM7CWwDVMlivclyIKCf/Kg+YlRDhip0ENKaVVg==", | ||
"_integrity": "sha512-Da1CfTQleF5LW6DJcA0BIX9Inh2H3azMR7G+l3TijKwLxyvIekX6fpd303PiAuM+Xqt73s7hzHwuzgMi18lL0Q==", | ||
"_location": "/@syncfusion/ej2-schedule", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.3.52.tgz", | ||
"_shasum": "cfc82a924af573995a221596f0ad748fd392f0bf", | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-20.3.56.tgz", | ||
"_shasum": "eeaf4074bdbf42f7a1ae708c220a29a1e28d1527", | ||
"_spec": "@syncfusion/ej2-schedule@*", | ||
@@ -40,11 +40,11 @@ "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included", | ||
"@syncfusion/ej2-base": "~20.3.56", | ||
"@syncfusion/ej2-buttons": "~20.3.56", | ||
"@syncfusion/ej2-buttons": "~20.3.57", | ||
"@syncfusion/ej2-calendars": "~20.3.56", | ||
"@syncfusion/ej2-data": "~20.3.56", | ||
"@syncfusion/ej2-dropdowns": "~20.3.56", | ||
"@syncfusion/ej2-dropdowns": "~20.3.57", | ||
"@syncfusion/ej2-excel-export": "~20.3.56", | ||
"@syncfusion/ej2-inputs": "~20.3.56", | ||
"@syncfusion/ej2-inputs": "~20.3.57", | ||
"@syncfusion/ej2-lists": "~20.3.56", | ||
"@syncfusion/ej2-navigations": "~20.3.56", | ||
"@syncfusion/ej2-popups": "~20.3.56" | ||
"@syncfusion/ej2-navigations": "~20.3.57", | ||
"@syncfusion/ej2-popups": "~20.3.57" | ||
}, | ||
@@ -86,4 +86,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "20.3.56", | ||
"version": "20.3.57", | ||
"sideEffects": false | ||
} |
@@ -494,5 +494,2 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
case 'EditSeries': | ||
if ((childEvent[fields_2.startTime] > parentEvent[fields_2.startTime]) && childEvent[fields_2.recurrenceRule]) { | ||
_this.processRecurrenceRule(parentEvent, childEvent); | ||
} | ||
childEvent[fields_2.id] = parentEvent[fields_2.id]; | ||
@@ -499,0 +496,0 @@ childEvent[fields_2.recurrenceID] = null; |
@@ -444,2 +444,4 @@ var __extends = (this && this.__extends) || (function () { | ||
} | ||
var isNotHourSlot = ['TimelineMonth', 'Year', 'Month', 'Week', 'Date'].indexOf(headerName) !== -1 || | ||
!this.parent.activeViewOptions.timeScale.enable; | ||
if (isLeft) { | ||
@@ -449,3 +451,3 @@ if ((eventEnd.getTime() - resizeTime.getTime()) <= 0) { | ||
} | ||
this.actionObj.start = this.parent.activeViewOptions.timeScale.enable ? this.calculateIntervalTime(resizeTime) : resizeTime; | ||
this.actionObj.start = !isNotHourSlot ? this.calculateIntervalTime(resizeTime) : resizeTime; | ||
} | ||
@@ -459,4 +461,3 @@ else { | ||
} | ||
this.actionObj.end = this.parent.activeViewOptions.timeScale.enable && this.parent.currentView !== 'Month' ? | ||
this.calculateIntervalTime(resizeEnd) : resizeEnd; | ||
this.actionObj.end = !isNotHourSlot ? this.calculateIntervalTime(resizeEnd) : resizeEnd; | ||
} | ||
@@ -463,0 +464,0 @@ }; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19936649
221564
10
0