@syncfusion/ej2-schedule 28.2.7 → 28.2.11
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/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 +6 -2
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +6 -2
- 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 +12 -12
- package/src/recurrence-editor/recurrence-editor.js +2 -2
- package/src/schedule/actions/drag.js +3 -0
- package/src/schedule/actions/resize.js +1 -0
|
@@ -12196,10 +12196,10 @@ let RecurrenceEditor = class RecurrenceEditor extends Component {
|
|
|
12196
12196
|
this.repeatType.setProperties({ index: this.selectedType });
|
|
12197
12197
|
break;
|
|
12198
12198
|
case 'minDate':
|
|
12199
|
-
this.untilDateObj.setProperties({
|
|
12199
|
+
this.untilDateObj.setProperties({ min: this.minDate });
|
|
12200
12200
|
break;
|
|
12201
12201
|
case 'maxDate':
|
|
12202
|
-
this.untilDateObj.setProperties({
|
|
12202
|
+
this.untilDateObj.setProperties({ max: this.maxDate });
|
|
12203
12203
|
break;
|
|
12204
12204
|
case 'value':
|
|
12205
12205
|
if (this.getRecurrenceRule() !== this.value) {
|
|
@@ -20884,6 +20884,7 @@ class Resize extends ActionBase {
|
|
|
20884
20884
|
!closest(e.target, '.' + APPOINTMENT_BORDER))) {
|
|
20885
20885
|
return;
|
|
20886
20886
|
}
|
|
20887
|
+
this.parent.eventBase.removeSelectedAppointmentClass();
|
|
20887
20888
|
this.actionObj.action = 'resize';
|
|
20888
20889
|
this.actionObj.slotInterval = this.parent.activeViewOptions.timeScale.interval / this.parent.activeViewOptions.timeScale.slotCount;
|
|
20889
20890
|
this.actionObj.interval = this.actionObj.slotInterval;
|
|
@@ -22192,6 +22193,9 @@ class DragAndDrop extends ActionBase {
|
|
|
22192
22193
|
if (!isNullOrUndefined(eventObj)) {
|
|
22193
22194
|
this.startTime = eventObj[this.parent.eventFields.startTime].getTime();
|
|
22194
22195
|
}
|
|
22196
|
+
if (!this.parent.allowMultiDrag) {
|
|
22197
|
+
this.parent.eventBase.removeSelectedAppointmentClass();
|
|
22198
|
+
}
|
|
22195
22199
|
const dragArgs = {
|
|
22196
22200
|
cancel: false,
|
|
22197
22201
|
data: eventObj,
|