@syncfusion/ej2-schedule 20.3.56 → 20.3.57
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.
- package/CHANGELOG.md +9 -0
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +4 -6
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +4 -6
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +10 -10
- package/src/schedule/actions/crud.js +0 -3
- package/src/schedule/actions/resize.js +4 -3
- package/styles/bootstrap-dark.css +5 -5
- package/styles/bootstrap.css +5 -5
- package/styles/bootstrap4.css +5 -5
- package/styles/bootstrap5-dark.css +5 -5
- package/styles/bootstrap5.css +5 -5
- package/styles/fabric-dark.css +5 -5
- package/styles/fabric.css +5 -5
- package/styles/fluent-dark.css +5 -5
- package/styles/fluent.css +5 -5
- package/styles/highcontrast-light.css +5 -5
- package/styles/highcontrast.css +5 -5
- package/styles/material-dark.css +5 -5
- package/styles/material.css +5 -5
- package/styles/recurrence-editor/bootstrap-dark.css +5 -5
- package/styles/recurrence-editor/bootstrap.css +5 -5
- package/styles/recurrence-editor/bootstrap4.css +5 -5
- package/styles/recurrence-editor/bootstrap5-dark.css +5 -5
- package/styles/recurrence-editor/bootstrap5.css +5 -5
- package/styles/recurrence-editor/fabric-dark.css +5 -5
- package/styles/recurrence-editor/fabric.css +5 -5
- package/styles/recurrence-editor/fluent-dark.css +5 -5
- package/styles/recurrence-editor/fluent.css +5 -5
- package/styles/recurrence-editor/highcontrast-light.css +5 -5
- package/styles/recurrence-editor/highcontrast.css +5 -5
- package/styles/recurrence-editor/material-dark.css +5 -5
- package/styles/recurrence-editor/material.css +5 -5
- package/styles/recurrence-editor/tailwind-dark.css +5 -5
- package/styles/recurrence-editor/tailwind.css +5 -5
- package/styles/tailwind-dark.css +5 -5
- package/styles/tailwind.css +5 -5
|
@@ -14148,9 +14148,6 @@ class Crud {
|
|
|
14148
14148
|
const deletedEvents = eventCollections.follow.concat(eventCollections.occurrence);
|
|
14149
14149
|
switch (action) {
|
|
14150
14150
|
case 'EditSeries':
|
|
14151
|
-
if ((childEvent[fields.startTime] > parentEvent[fields.startTime]) && childEvent[fields.recurrenceRule]) {
|
|
14152
|
-
this.processRecurrenceRule(parentEvent, childEvent);
|
|
14153
|
-
}
|
|
14154
14151
|
childEvent[fields.id] = parentEvent[fields.id];
|
|
14155
14152
|
childEvent[fields.recurrenceID] = null;
|
|
14156
14153
|
childEvent[fields.followingID] = null;
|
|
@@ -19304,11 +19301,13 @@ class Resize extends ActionBase {
|
|
|
19304
19301
|
resizeTime.setHours(eventEnd.getHours(), eventEnd.getMinutes(), eventEnd.getSeconds());
|
|
19305
19302
|
}
|
|
19306
19303
|
}
|
|
19304
|
+
const isNotHourSlot = ['TimelineMonth', 'Year', 'Month', 'Week', 'Date'].indexOf(headerName) !== -1 ||
|
|
19305
|
+
!this.parent.activeViewOptions.timeScale.enable;
|
|
19307
19306
|
if (isLeft) {
|
|
19308
19307
|
if ((eventEnd.getTime() - resizeTime.getTime()) <= 0) {
|
|
19309
19308
|
resizeTime = isWithoutScale ? resetTime(eventEnd) : eventStart;
|
|
19310
19309
|
}
|
|
19311
|
-
this.actionObj.start =
|
|
19310
|
+
this.actionObj.start = !isNotHourSlot ? this.calculateIntervalTime(resizeTime) : resizeTime;
|
|
19312
19311
|
}
|
|
19313
19312
|
else {
|
|
19314
19313
|
const isTimeScaleViews = isTimeViews && this.parent.activeViewOptions.timeScale.enable;
|
|
@@ -19317,8 +19316,7 @@ class Resize extends ActionBase {
|
|
|
19317
19316
|
if (isWithoutScale && (resizeEnd.getTime() - eventStart.getTime()) <= 0) {
|
|
19318
19317
|
resizeEnd = addDays(resetTime(eventStart), 1);
|
|
19319
19318
|
}
|
|
19320
|
-
this.actionObj.end =
|
|
19321
|
-
this.calculateIntervalTime(resizeEnd) : resizeEnd;
|
|
19319
|
+
this.actionObj.end = !isNotHourSlot ? this.calculateIntervalTime(resizeEnd) : resizeEnd;
|
|
19322
19320
|
}
|
|
19323
19321
|
}
|
|
19324
19322
|
getTopBottomStyles(e, isTop) {
|